diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d42352840a..1dbceaaaeb 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -8,7 +8,7 @@ /Resources/ServerInfo/ @nikthechampiongr @crazybrain23 /Resources/ServerInfo/Guidebook/ServerRules/ @nikthechampiongr @crazybrain23 -/Resources/Prototypes/Maps/** @Emisse +/Resources/Prototypes/Maps/** @Emisse @ArtisticRoomba /Resources/Prototypes/Body/ @DrSmugleaf # suffering /Resources/Prototypes/Entities/Mobs/Player/ @DrSmugleaf diff --git a/.github/workflows/check-trailing-whitespace.yml b/.github/workflows/check-trailing-whitespace.yml new file mode 100644 index 0000000000..3f94738d26 --- /dev/null +++ b/.github/workflows/check-trailing-whitespace.yml @@ -0,0 +1,54 @@ +name: Trailing Whitespace Check + +on: + pull_request: + types: [ opened, reopened, synchronize, ready_for_review ] + +jobs: + build: + name: Trailing Whitespace Check + if: github.event.pull_request.draft == false + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4.2.2 + - name: Get changed text files + id: changed-files + uses: tj-actions/changed-files@v46.0.5 + with: + files: | + **.cs + **.yml + **.swsl + **.json + **.py + - name: Check for trailing whitespace and EOF newline + env: + ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} + run: | + has_trailing_whitespace=0 + has_missing_eof_newline=0 + + for file in ${ALL_CHANGED_FILES}; do + echo "Checking $file" + + # Check for trailing whitespace + if grep -qP '[ \t]+$' "$file"; then + echo "::error file=$file::Trailing whitespace found" + has_trailing_whitespace=1 + fi + + # Check for missing EOF newline + if [ -f "$file" ] && [ -s "$file" ]; then + last_char=$(tail -c 1 "$file") + if [ "$last_char" != "" ] && [ "$last_char" != $'\n' ]; then + echo "::error file=$file::Missing newline at end of file" + has_missing_eof_newline=1 + fi + fi + done + + if [ "$has_trailing_whitespace" -eq 1 ] || [ "$has_missing_eof_newline" -eq 1 ]; then + echo "Issues found: trailing whitespace or missing EOF newline." + echo "We recommend using an IDE to prevent this from happening." + exit 1 + fi diff --git a/.github/workflows/publish-testing.yml b/.github/workflows/publish-testing.yml index 506725551d..1cd87e8e85 100644 --- a/.github/workflows/publish-testing.yml +++ b/.github/workflows/publish-testing.yml @@ -2,6 +2,7 @@ concurrency: group: publish-testing + cancel-in-progress: true on: workflow_dispatch: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3b9edbfdf8..65a4dd539b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -2,6 +2,7 @@ name: Publish concurrency: group: publish + cancel-in-progress: true on: workflow_dispatch: @@ -68,18 +69,21 @@ jobs: DISCORD_WEBHOOK_URL: ${{ secrets.CHANGELOG_DISCORD_WEBHOOK_SUNRISE }} - name: Publish discord changelog (LUST) + continue-on-error: true run: Tools/_sunrise/actions_changelogs_since_last_run.py env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DISCORD_WEBHOOK_URL: ${{ secrets.CHANGELOG_DISCORD_WEBHOOK_LUST }} - name: Publish discord changelog (FISH) + continue-on-error: true run: Tools/_sunrise/actions_changelogs_since_last_run.py env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DISCORD_WEBHOOK_URL: ${{ secrets.CHANGELOG_DISCORD_WEBHOOK_FISH }} # - name: Publish changelog (RSS) +# continue-on-error: true # run: Tools/actions_changelog_rss.py # env: # CHANGELOG_RSS_KEY: ${{ secrets.CHANGELOG_RSS_KEY }} diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000000..8554c97ee8 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,40 @@ +# Space Station 14 Code of Conduct + +Space Station 14's staff and community is made up volunteers from all over the world, working on every aspect of the project - including development, teaching, and hosting integral tools. + +Diversity is one of our huge strengths, but it can also lead to communication issues and unhappiness. To that end, we have a few ground rules that we ask people to adhere to. This code applies equally to all levels of the project, from commenters to contributors to staff. + +This isn’t an exhaustive list of things that you can’t do. Rather, take it in the spirit in which it’s intended - a guide to make it easier to enrich all of us and the technical communities in which we participate. + +This code of conduct applies specifically to the Github repositories and its spaces managed by the Space Station 14 project or Space Wizards Federation. Some spaces, such as the Space Station 14 Discord or the official Wizard's Den game servers, have their own rules but are in spirit equal to what may be found in here. + +If you believe someone is violating the code of conduct, we ask that you report it by contacting a Maintainer, Project Manager or Wizard staff member through [Discord](https://discord.ss14.io/), [the forums](https://forum.spacestation14.com/), or emailing [telecommunications@spacestation14.com](mailto:telecommunications@spacestation14.com). + +- **Be friendly and patient.** +- **Be welcoming.** We strive to be a community that welcomes and supports people of all backgrounds and identities. This includes, but is not limited to members of any race, ethnicity, culture, national origin, colour, immigration status, social and economic class, educational level, sex, sexual orientation, gender identity and expression, age, size, family status, political belief, religion, and mental and physical ability. +- **Be considerate.** Your work will be used by other people, and you in turn will depend on the work of others. Any decision you take will affect users and contributors, and you should take those consequences into account when making decisions. Remember that we're a world-wide community, so you might not be communicating in someone else's primary language. We have contributors of all skill levels, some even making their first foray into a new field with this project, so keep that in mind when discussing someone's work. +- **Be respectful.** Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners. We might all experience some frustration now and then, but we cannot allow that frustration to turn into a personal attack. It’s important to remember that a community where people feel uncomfortable or threatened is not a productive one. Members of the Space Station 14 community should be respectful when dealing with other members as well as with people outside the Space Station 14 community. Assume contributions to the project, even those that do not end up being included, are made in good faith. +- **Be careful in the words that you choose.** We are a community of professionals, and we conduct ourselves professionally. Be kind to others. Do not insult or put down other participants. Harassment and other exclusionary behavior aren't acceptable. This includes, but is not limited to: + - Violent threats or language directed against another person. + - Discriminatory jokes and language. + - Posting sexually explicit or violent material. + - Posting (or threatening to post) other people's personally identifying information ("doxing"). + - Personal insults, especially those using racist or sexist terms. + - Unwelcome sexual attention. + - Advocating for, or encouraging, any of the above behavior. + - Repeated harassment of others. In general, if someone asks you to stop, then stop. +- **When we disagree, try to understand why.** Disagreements, both social and technical, happen all the time and Space Station 14 is no exception. It is important that we resolve disagreements and differing views constructively. Remember that we’re different. The strength of Space Station 14 comes from its varied community, people from a wide range of backgrounds. Different people have different perspectives on issues. Being unable to understand why someone holds a viewpoint doesn’t mean that they’re wrong. Don’t forget that it is human to make mistakes and blaming each other doesn’t get us anywhere. Instead, focus on helping to resolve issues and learning from mistakes. + +Original text courtesy of the [Speak Up! project](http://web.archive.org/web/20141109123859/http://speakup.io/coc.html). + +## On Comunity Moderation + +Deviating from the Code of Conduct on the Github repository may result in moderative actions taken by project Maintainers. This can involve your content being edited or deleted, and may result in a temporary or permanent block from the repository. + +This is to ensure Space Station 14 is a healthy community in which contributors feel encouraged and empowered to contribute, and to give you as a member of this community a chance to reflect on how you are interacting with it. While outright offensive and bigoted content will *always* be unacceptable on the repository, Maintainers are at liberty to take moderative actions against more ambiguous content that fail to provide constructive criticism, or that provides constructive criticism in a non-constructive manner. Examples of this include using hyperbole, bringing up PRs/changes unrelated to the discussion at hand, hostile tone, off-topic comments, creating PRs/Issues for the sole purpose of causing discussions, skirting the line of acceptable behavior, etc. Disagreeing with content or each other is fine and appreciated, but only as long as it's done with respect and in a constructive manner. + +Maintainers are expected to adhere to the guidelines as listed in the [Github Moderation Guidelines](https://docs.spacestation14.com/en/general-development/github-moderation-guidelines.html), though may deviate should they feel it's in the best interest of the community. If you believe you had an action incorrectly applied against you, you are encouraged to contact staff via [Discord](https://discord.ss14.io/) or [the forums](https://forum.spacestation14.com/), [appeal your Github ban](https://forum.spacestation14.com/c/ban-appeals/appeals-github/38), or make a [staff complaint](https://forum.spacestation14.com/t/staff-complaint-instructions-and-info/31). + +## Attribution + +This Code of Conduct is an edited version of the [Django Code of Conduct](https://www.djangoproject.com/conduct/), licensed under CC BY 3.0, for the Space Station 14 Github repository. diff --git a/Content.Benchmarks/ComponentQueryBenchmark.cs b/Content.Benchmarks/ComponentQueryBenchmark.cs index 49e9984c09..bfe367790a 100644 --- a/Content.Benchmarks/ComponentQueryBenchmark.cs +++ b/Content.Benchmarks/ComponentQueryBenchmark.cs @@ -29,7 +29,7 @@ namespace Content.Benchmarks; [CategoriesColumn] public class ComponentQueryBenchmark { - public const string Map = "Maps/atlas.yml"; + public const string Map = "Maps/saltern.yml"; private TestPair _pair = default!; private IEntityManager _entMan = default!; diff --git a/Content.Benchmarks/Program.cs b/Content.Benchmarks/Program.cs index 42a436597d..6f1f4e6f19 100644 --- a/Content.Benchmarks/Program.cs +++ b/Content.Benchmarks/Program.cs @@ -1,15 +1,7 @@ using System; -using System.Linq; -using System.Threading.Tasks; using BenchmarkDotNet.Running; -using Content.IntegrationTests; -using Content.Server.Maps; -#if DEBUG using BenchmarkDotNet.Configs; -#else using Robust.Benchmarks.Configs; -#endif -using Robust.Shared.Prototypes; namespace Content.Benchmarks { @@ -22,11 +14,15 @@ namespace Content.Benchmarks Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine("\nWARNING: YOU ARE RUNNING A DEBUG BUILD, USE A RELEASE BUILD FOR AN ACCURATE BENCHMARK"); Console.WriteLine("THE DEBUG BUILD IS ONLY GOOD FOR FIXING A CRASHING BENCHMARK\n"); - BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args, new DebugInProcessConfig()); + var baseConfig = new DebugInProcessConfig(); #else - var config = Environment.GetEnvironmentVariable("ROBUST_BENCHMARKS_ENABLE_SQL") != null ? DefaultSQLConfig.Instance : null; - BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args, config); + var baseConfig = Environment.GetEnvironmentVariable("ROBUST_BENCHMARKS_ENABLE_SQL") != null + ? DefaultSQLConfig.Instance + : DefaultConfig.Instance; #endif + var config = ManualConfig.Create(baseConfig); + config.BuildTimeout = TimeSpan.FromMinutes(5); + BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args, config); } } } diff --git a/Content.Benchmarks/RaiseEventBenchmark.cs b/Content.Benchmarks/RaiseEventBenchmark.cs new file mode 100644 index 0000000000..4c4e0d9125 --- /dev/null +++ b/Content.Benchmarks/RaiseEventBenchmark.cs @@ -0,0 +1,126 @@ +#nullable enable +using System.Runtime.CompilerServices; +using System.Threading.Tasks; +using BenchmarkDotNet.Attributes; +using Content.IntegrationTests; +using Content.IntegrationTests.Pair; +using Robust.Shared; +using Robust.Shared.Analyzers; +using Robust.Shared.GameObjects; + +namespace Content.Benchmarks; + +[Virtual] +public class RaiseEventBenchmark +{ + private TestPair _pair = default!; + private BenchSystem _sys = default!; + + [GlobalSetup] + public void Setup() + { + ProgramShared.PathOffset = "../../../../"; + PoolManager.Startup(typeof(BenchSystem).Assembly); + _pair = PoolManager.GetServerClient().GetAwaiter().GetResult(); + var entMan = _pair.Server.EntMan; + _sys = entMan.System(); + + _pair.Server.WaitPost(() => + { + var uid = entMan.Spawn(); + _sys.Ent = new(uid, entMan.GetComponent(uid)); + _sys.Ent2 = new(_sys.Ent.Owner, _sys.Ent.Comp); + }) + .GetAwaiter() + .GetResult(); + } + + [GlobalCleanup] + public async Task Cleanup() + { + await _pair.DisposeAsync(); + PoolManager.Shutdown(); + } + + [Benchmark(Baseline = true)] + public int RaiseEvent() + { + return _sys.RaiseEvent(); + } + + [Benchmark] + public int RaiseCompEvent() + { + return _sys.RaiseCompEvent(); + } + + [Benchmark] + public int RaiseICompEvent() + { + return _sys.RaiseICompEvent(); + } + + [Benchmark] + public int RaiseCSharpEvent() + { + return _sys.CSharpEvent(); + } + + public sealed class BenchSystem : EntitySystem + { + public Entity Ent; + public Entity Ent2; + + public delegate void EntityEventHandler(EntityUid uid, TransformComponent comp, ref BenchEv ev); + + public event EntityEventHandler? OnCSharpEvent; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnEvent); + OnCSharpEvent += OnEvent; + } + + public int RaiseEvent() + { + var ev = new BenchEv(); + RaiseLocalEvent(Ent.Owner, ref ev); + return ev.N; + } + + public int RaiseCompEvent() + { + var ev = new BenchEv(); + EntityManager.EventBus.RaiseComponentEvent(Ent.Owner, Ent.Comp, ref ev); + return ev.N; + } + + public int RaiseICompEvent() + { + // Raise with an IComponent instead of concrete type + var ev = new BenchEv(); + EntityManager.EventBus.RaiseComponentEvent(Ent2.Owner, Ent2.Comp, ref ev); + return ev.N; + } + + public int CSharpEvent() + { + var ev = new BenchEv(); + OnCSharpEvent?.Invoke(Ent.Owner, Ent.Comp, ref ev); + return ev.N; + } + + [MethodImpl(MethodImplOptions.NoInlining)] + private void OnEvent(EntityUid uid, TransformComponent component, ref BenchEv args) + { + args.N += uid.Id; + } + + [ByRefEvent] + public struct BenchEv + { + public int N; + } + } +} diff --git a/Content.Client/Access/UI/GroupedAccessLevelChecklist.xaml b/Content.Client/Access/UI/GroupedAccessLevelChecklist.xaml new file mode 100644 index 0000000000..84d581487d --- /dev/null +++ b/Content.Client/Access/UI/GroupedAccessLevelChecklist.xaml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/Content.Client/Access/UI/GroupedAccessLevelChecklist.xaml.cs b/Content.Client/Access/UI/GroupedAccessLevelChecklist.xaml.cs new file mode 100644 index 0000000000..da68653ce5 --- /dev/null +++ b/Content.Client/Access/UI/GroupedAccessLevelChecklist.xaml.cs @@ -0,0 +1,449 @@ +using Content.Client.Stylesheets; +using Content.Client.UserInterface.Controls; +using Content.Shared.Access; +using Robust.Client.AutoGenerated; +using Robust.Client.Graphics; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; +using System.Linq; +using System.Numerics; + +namespace Content.Client.Access.UI; + +[GenerateTypedNameReferences] +public sealed partial class GroupedAccessLevelChecklist : BoxContainer +{ + [Dependency] private readonly IPrototypeManager _protoManager = default!; + + private bool _isMonotone; + private string? _labelStyleClass; + + // Access data + private HashSet> _accessGroups = new(); + private HashSet> _accessLevels = new(); + private HashSet> _activeAccessLevels = new(); + + // Button groups + private readonly ButtonGroup _accessGroupsButtons = new(); + + // Temp values + private int _accessGroupTabIndex = 0; + private bool _canInteract = false; + private List _accessLevelsForTab = new(); + private readonly List _accessLevelEntries = new(); + private readonly Dictionary> _groupedAccessLevels = new(); + + // Events + public event Action>, bool>? OnAccessLevelsChangedEvent; + + /// + /// Creates a UI control for changing access levels. + /// Access levels are organized under a list of tabs by their associated access group. + /// + public GroupedAccessLevelChecklist() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + } + + private void ArrangeAccessControls() + { + // Create a list of known access groups with which to populate the UI + _groupedAccessLevels.Clear(); + + foreach (var accessGroup in _accessGroups) + { + if (!_protoManager.TryIndex(accessGroup, out var accessGroupProto)) + continue; + + _groupedAccessLevels.Add(accessGroupProto, new()); + } + + // Ensure that the 'general' access group is added to handle + // misc. access levels that aren't associated with any group + if (_protoManager.TryIndex("General", out var generalAccessProto)) + _groupedAccessLevels.TryAdd(generalAccessProto, new()); + + // Assign known access levels with their associated groups + foreach (var accessLevel in _accessLevels) + { + if (!_protoManager.TryIndex(accessLevel, out var accessLevelProto)) + continue; + + var assigned = false; + + foreach (var (accessGroup, accessLevels) in _groupedAccessLevels) + { + if (!accessGroup.Tags.Contains(accessLevelProto.ID)) + continue; + + assigned = true; + _groupedAccessLevels[accessGroup].Add(accessLevelProto); + } + + if (!assigned && generalAccessProto != null) + _groupedAccessLevels[generalAccessProto].Add(accessLevelProto); + } + + // Remove access groups that have no assigned access levels + foreach (var (group, accessLevels) in _groupedAccessLevels) + { + if (accessLevels.Count == 0) + _groupedAccessLevels.Remove(group); + } + } + + private bool TryRebuildAccessGroupControls() + { + AccessGroupList.DisposeAllChildren(); + AccessLevelChecklist.DisposeAllChildren(); + + // No access level prototypes were assigned to any of the access level groups. + // Either the turret controller has no assigned access levels or their names were invalid. + if (_groupedAccessLevels.Count == 0) + return false; + + // Reorder the access groups alphabetically + var orderedAccessGroups = _groupedAccessLevels.Keys.OrderBy(x => x.GetAccessGroupName()).ToList(); + + // Add group access buttons to the UI + foreach (var accessGroup in orderedAccessGroups) + { + var accessGroupButton = CreateAccessGroupButton(); + + // Button styling + if (_groupedAccessLevels.Count > 1) + { + if (AccessGroupList.ChildCount == 0) + accessGroupButton.AddStyleClass(StyleBase.ButtonOpenLeft); + else if (_groupedAccessLevels.Count > 1 && AccessGroupList.ChildCount == (_groupedAccessLevels.Count - 1)) + accessGroupButton.AddStyleClass(StyleBase.ButtonOpenRight); + else + accessGroupButton.AddStyleClass(StyleBase.ButtonOpenBoth); + } + + accessGroupButton.Pressed = _accessGroupTabIndex == orderedAccessGroups.IndexOf(accessGroup); + + // Label text and styling + if (_labelStyleClass != null) + accessGroupButton.Label.SetOnlyStyleClass(_labelStyleClass); + + var accessLevelPrototypes = _groupedAccessLevels[accessGroup]; + var prefix = accessLevelPrototypes.All(x => _activeAccessLevels.Contains(x)) + ? "»" + : accessLevelPrototypes.Any(x => _activeAccessLevels.Contains(x)) + ? "›" + : " "; + + var text = Loc.GetString( + "turret-controls-window-access-group-label", + ("prefix", prefix), + ("label", accessGroup.GetAccessGroupName()) + ); + + accessGroupButton.Text = text; + + // Button events + accessGroupButton.OnPressed += _ => OnAccessGroupChanged(accessGroupButton.GetPositionInParent()); + + AccessGroupList.AddChild(accessGroupButton); + } + + // Adjust the current tab index so it remains in range + if (_accessGroupTabIndex >= _groupedAccessLevels.Count) + _accessGroupTabIndex = _groupedAccessLevels.Count - 1; + + return true; + } + + /// + /// Rebuilds the checkbox list for the access level controls. + /// + public void RebuildAccessLevelsControls() + { + AccessLevelChecklist.DisposeAllChildren(); + _accessLevelEntries.Clear(); + + // No access level prototypes were assigned to any of the access level groups + // Either turret controller has no assigned access levels, or their names were invalid + if (_groupedAccessLevels.Count == 0) + return; + + // Reorder the access groups alphabetically + var orderedAccessGroups = _groupedAccessLevels.Keys.OrderBy(x => x.GetAccessGroupName()).ToList(); + + // Get the access levels associated with the current tab + var selectedAccessGroupTabProto = orderedAccessGroups[_accessGroupTabIndex]; + _accessLevelsForTab = _groupedAccessLevels[selectedAccessGroupTabProto]; + _accessLevelsForTab = _accessLevelsForTab.OrderBy(x => x.GetAccessLevelName()).ToList(); + + // Add an 'all' checkbox as the first child of the list if it has more than one access level + // Toggling this checkbox on will mark all other boxes below it on/off + var allCheckBox = CreateAccessLevelCheckbox(); + allCheckBox.Text = Loc.GetString("turret-controls-window-all-checkbox"); + + if (_labelStyleClass != null) + allCheckBox.Label.SetOnlyStyleClass(_labelStyleClass); + + // Add the 'all' checkbox events + allCheckBox.OnPressed += args => + { + SetCheckBoxPressedState(_accessLevelEntries, allCheckBox.Pressed); + + var accessLevels = new HashSet>(); + + foreach (var accessLevel in _accessLevelsForTab) + { + accessLevels.Add(accessLevel); + } + + OnAccessLevelsChangedEvent?.Invoke(accessLevels, allCheckBox.Pressed); + }; + + AccessLevelChecklist.AddChild(allCheckBox); + + // Hide the 'all' checkbox if the tab has only one access level + var allCheckBoxVisible = _accessLevelsForTab.Count > 1; + + allCheckBox.Visible = allCheckBoxVisible; + allCheckBox.Disabled = !_canInteract; + + // Add any remaining missing access level buttons to the UI + foreach (var accessLevel in _accessLevelsForTab) + { + // Create the entry + var accessLevelEntry = new AccessLevelEntry(_isMonotone); + + accessLevelEntry.AccessLevel = accessLevel; + accessLevelEntry.CheckBox.Text = accessLevel.GetAccessLevelName(); + accessLevelEntry.CheckBox.Pressed = _activeAccessLevels.Contains(accessLevel); + accessLevelEntry.CheckBox.Disabled = !_canInteract; + + if (_labelStyleClass != null) + accessLevelEntry.CheckBox.Label.SetOnlyStyleClass(_labelStyleClass); + + // Set the checkbox linkage lines + var isEndOfList = _accessLevelsForTab.IndexOf(accessLevel) == (_accessLevelsForTab.Count - 1); + + var lines = new List<(Vector2, Vector2)> + { + (new Vector2(0.5f, 0f), new Vector2(0.5f, isEndOfList ? 0.5f : 1f)), + (new Vector2(0.5f, 0.5f), new Vector2(1f, 0.5f)), + }; + + accessLevelEntry.UpdateCheckBoxLink(lines); + accessLevelEntry.CheckBoxLink.Visible = allCheckBoxVisible; + accessLevelEntry.CheckBoxLink.Modulate = !_canInteract ? Color.Gray : Color.White; + + // Add checkbox events + accessLevelEntry.CheckBox.OnPressed += args => + { + // If the checkbox and its siblings are checked, check the 'all' checkbox too + allCheckBox.Pressed = AreAllCheckBoxesPressed(_accessLevelEntries.Select(x => x.CheckBox)); + + OnAccessLevelsChangedEvent?.Invoke([accessLevelEntry.AccessLevel], accessLevelEntry.CheckBox.Pressed); + }; + + AccessLevelChecklist.AddChild(accessLevelEntry); + _accessLevelEntries.Add(accessLevelEntry); + } + + // Press the 'all' checkbox if all others are pressed + allCheckBox.Pressed = AreAllCheckBoxesPressed(_accessLevelEntries.Select(x => x.CheckBox)); + } + + private bool AreAllCheckBoxesPressed(IEnumerable checkBoxes) + { + foreach (var checkBox in checkBoxes) + { + if (!checkBox.Pressed) + return false; + } + + return true; + } + + private void SetCheckBoxPressedState(List accessLevelEntries, bool pressed) + { + foreach (var accessLevelEntry in accessLevelEntries) + { + accessLevelEntry.CheckBox.Pressed = pressed; + } + } + + + /// + /// Provides the UI with a list of access groups using which list of tabs should be populated. + /// + public void SetAccessGroups(HashSet> accessGroups) + { + _accessGroups = accessGroups; + + ArrangeAccessControls(); + + if (TryRebuildAccessGroupControls()) + RebuildAccessLevelsControls(); + } + + /// + /// Provides the UI with a list of access levels with which it can populate the currently selected tab. + /// + public void SetAccessLevels(HashSet> accessLevels) + { + _accessLevels = accessLevels; + + ArrangeAccessControls(); + + if (TryRebuildAccessGroupControls()) + RebuildAccessLevelsControls(); + } + + /// + /// Sets which access level checkboxes should be marked on the UI. + /// + public void SetActiveAccessLevels(HashSet> activeAccessLevels) + { + _activeAccessLevels = activeAccessLevels; + + if (TryRebuildAccessGroupControls()) + RebuildAccessLevelsControls(); + } + + /// + /// Sets whether the local player can interact with the checkboxes. + /// + public void SetLocalPlayerAccessibility(bool canInteract) + { + _canInteract = canInteract; + + if (TryRebuildAccessGroupControls()) + RebuildAccessLevelsControls(); + } + + /// + /// Sets whether the UI should use monotone buttons and checkboxes. + /// + public void SetMonotone(bool monotone) + { + _isMonotone = monotone; + + if (TryRebuildAccessGroupControls()) + RebuildAccessLevelsControls(); + } + + /// + /// Applies the specified style to the labels on the UI buttons and checkboxes. + /// + public void SetLabelStyleClass(string? styleClass) + { + _labelStyleClass = styleClass; + + if (TryRebuildAccessGroupControls()) + RebuildAccessLevelsControls(); + } + + private void OnAccessGroupChanged(int newTabIndex) + { + if (newTabIndex == _accessGroupTabIndex) + return; + + _accessGroupTabIndex = newTabIndex; + + if (TryRebuildAccessGroupControls()) + RebuildAccessLevelsControls(); + } + + private Button CreateAccessGroupButton() + { + var button = _isMonotone ? new MonotoneButton() : new Button(); + + button.ToggleMode = true; + button.Group = _accessGroupsButtons; + button.Label.HorizontalAlignment = HAlignment.Left; + + return button; + } + + private CheckBox CreateAccessLevelCheckbox() + { + var checkbox = _isMonotone ? new MonotoneCheckBox() : new CheckBox(); + + checkbox.Margin = new Thickness(0, 0, 0, 3); + checkbox.ToggleMode = true; + checkbox.ReservesSpace = false; + + return checkbox; + } + + private sealed class AccessLevelEntry : BoxContainer + { + public ProtoId AccessLevel; + public readonly CheckBox CheckBox; + public readonly LineRenderer CheckBoxLink; + + public AccessLevelEntry(bool monotone) + { + HorizontalExpand = true; + + CheckBoxLink = new LineRenderer + { + SetWidth = 22, + VerticalExpand = true, + Margin = new Thickness(0, -1), + ReservesSpace = false, + }; + + AddChild(CheckBoxLink); + + CheckBox = monotone ? new MonotoneCheckBox() : new CheckBox(); + CheckBox.ToggleMode = true; + CheckBox.Margin = new Thickness(0f, 0f, 0f, 3f); + + AddChild(CheckBox); + } + + public void UpdateCheckBoxLink(List<(Vector2, Vector2)> lines) + { + CheckBoxLink.Lines = lines; + } + } + + private sealed class LineRenderer : Control + { + /// + /// List of lines to render (their start and end x-y coordinates). + /// Position (0,0) is the top left corner of the control and + /// position (1,1) is the bottom right corner. + /// + /// + /// The color of the lines is inherited from the control. + /// + public List<(Vector2, Vector2)> Lines; + + public LineRenderer() + { + Lines = new List<(Vector2, Vector2)>(); + } + + public LineRenderer(List<(Vector2, Vector2)> lines) + { + Lines = lines; + } + + protected override void Draw(DrawingHandleScreen handle) + { + foreach (var line in Lines) + { + var start = PixelPosition + + new Vector2(PixelWidth * line.Item1.X, PixelHeight * line.Item1.Y); + + var end = PixelPosition + + new Vector2(PixelWidth * line.Item2.X, PixelHeight * line.Item2.Y); + + handle.DrawLine(start, end, ActualModulateSelf); + } + } + } +} diff --git a/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs b/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs index a321b4121e..f3a37f054e 100644 --- a/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs +++ b/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs @@ -1,8 +1,10 @@ using Content.Shared.Access; using Content.Shared.Access.Components; using Content.Shared.Access.Systems; +using Content.Shared.CCVar; using Content.Shared.Containers.ItemSlots; using Content.Shared.CrewManifest; +using Robust.Shared.Configuration; using Robust.Shared.Prototypes; using static Content.Shared.Access.Components.IdCardConsoleComponent; @@ -11,13 +13,21 @@ namespace Content.Client.Access.UI public sealed class IdCardConsoleBoundUserInterface : BoundUserInterface { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IConfigurationManager _cfgManager = default!; private readonly SharedIdCardConsoleSystem _idCardConsoleSystem = default!; private IdCardConsoleWindow? _window; + // CCVar. + private int _maxNameLength; + private int _maxIdJobLength; + public IdCardConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { _idCardConsoleSystem = EntMan.System(); + + _maxNameLength =_cfgManager.GetCVar(CCVars.MaxNameLength); + _maxIdJobLength = _cfgManager.GetCVar(CCVars.MaxIdJobLength); } protected override void Open() @@ -66,11 +76,11 @@ namespace Content.Client.Access.UI public void SubmitData(string newFullName, string newJobTitle, List> newAccessList, string newJobPrototype) { - if (newFullName.Length > MaxFullNameLength) - newFullName = newFullName[..MaxFullNameLength]; + if (newFullName.Length > _maxNameLength) + newFullName = newFullName[.._maxNameLength]; - if (newJobTitle.Length > MaxJobTitleLength) - newJobTitle = newJobTitle[..MaxJobTitleLength]; + if (newJobTitle.Length > _maxIdJobLength) + newJobTitle = newJobTitle[.._maxIdJobLength]; SendMessage(new WriteToTargetIdMessage( newFullName, diff --git a/Content.Client/Access/UI/IdCardConsoleWindow.xaml.cs b/Content.Client/Access/UI/IdCardConsoleWindow.xaml.cs index c133e0b107..48ae1b0ced 100644 --- a/Content.Client/Access/UI/IdCardConsoleWindow.xaml.cs +++ b/Content.Client/Access/UI/IdCardConsoleWindow.xaml.cs @@ -1,11 +1,13 @@ using System.Linq; using Content.Shared.Access; using Content.Shared.Access.Systems; +using Content.Shared.CCVar; using Content.Shared.Roles; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Configuration; using Robust.Shared.Prototypes; using static Content.Shared.Access.Components.IdCardConsoleComponent; @@ -14,12 +16,17 @@ namespace Content.Client.Access.UI [GenerateTypedNameReferences] public sealed partial class IdCardConsoleWindow : DefaultWindow { + [Dependency] private readonly IConfigurationManager _cfgManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly ILogManager _logManager = default!; private readonly ISawmill _logMill = default!; private readonly IdCardConsoleBoundUserInterface _owner; + // CCVar. + private int _maxNameLength; + private int _maxIdJobLength; + private AccessLevelControl _accessButtons = new(); private readonly List _jobPrototypeIds = new(); @@ -39,7 +46,11 @@ namespace Content.Client.Access.UI _owner = owner; + _maxNameLength = _cfgManager.GetCVar(CCVars.MaxNameLength); + _maxIdJobLength = _cfgManager.GetCVar(CCVars.MaxIdJobLength); + FullNameLineEdit.OnTextEntered += _ => SubmitData(); + FullNameLineEdit.IsValid = s => s.Length <= _maxNameLength; FullNameLineEdit.OnTextChanged += _ => { FullNameSaveButton.Disabled = FullNameSaveButton.Text == _lastFullName; @@ -47,6 +58,7 @@ namespace Content.Client.Access.UI FullNameSaveButton.OnPressed += _ => SubmitData(); JobTitleLineEdit.OnTextEntered += _ => SubmitData(); + JobTitleLineEdit.IsValid = s => s.Length <= _maxIdJobLength; JobTitleLineEdit.OnTextChanged += _ => { JobTitleSaveButton.Disabled = JobTitleLineEdit.Text == _lastJobTitle; diff --git a/Content.Client/Administration/Systems/KillSignSystem.cs b/Content.Client/Administration/Systems/KillSignSystem.cs index fb327236ca..c12f65f1f0 100644 --- a/Content.Client/Administration/Systems/KillSignSystem.cs +++ b/Content.Client/Administration/Systems/KillSignSystem.cs @@ -7,6 +7,8 @@ namespace Content.Client.Administration.Systems; public sealed class KillSignSystem : EntitySystem { + [Dependency] private readonly SpriteSystem _sprite = default!; + public override void Initialize() { SubscribeLocalEvent(KillSignAdded); @@ -18,10 +20,10 @@ public sealed class KillSignSystem : EntitySystem if (!TryComp(uid, out var sprite)) return; - if (!sprite.LayerMapTryGet(KillSignKey.Key, out var layer)) + if (!_sprite.LayerMapTryGet((uid, sprite), KillSignKey.Key, out var layer, false)) return; - sprite.RemoveLayer(layer); + _sprite.RemoveLayer((uid, sprite), layer); } private void KillSignAdded(EntityUid uid, KillSignComponent component, ComponentStartup args) @@ -29,15 +31,15 @@ public sealed class KillSignSystem : EntitySystem if (!TryComp(uid, out var sprite)) return; - if (sprite.LayerMapTryGet(KillSignKey.Key, out var _)) + if (_sprite.LayerMapTryGet((uid, sprite), KillSignKey.Key, out var _, false)) return; - var adj = sprite.Bounds.Height / 2 + ((1.0f/32) * 6.0f); + var adj = _sprite.GetLocalBounds((uid, sprite)).Height / 2 + ((1.0f / 32) * 6.0f); - var layer = sprite.AddLayer(new SpriteSpecifier.Rsi(new ResPath("Objects/Misc/killsign.rsi"), "sign")); - sprite.LayerMapSet(KillSignKey.Key, layer); + var layer = _sprite.AddLayer((uid, sprite), new SpriteSpecifier.Rsi(new ResPath("Objects/Misc/killsign.rsi"), "sign")); + _sprite.LayerMapSet((uid, sprite), KillSignKey.Key, layer); - sprite.LayerSetOffset(layer, new Vector2(0.0f, adj)); + _sprite.LayerSetOffset((uid, sprite), layer, new Vector2(0.0f, adj)); sprite.LayerSetShader(layer, "unshaded"); } diff --git a/Content.Client/Administration/UI/SpawnExplosion/SpawnExplosionWindow.xaml.cs b/Content.Client/Administration/UI/SpawnExplosion/SpawnExplosionWindow.xaml.cs index b0d8a946ec..287c17e422 100644 --- a/Content.Client/Administration/UI/SpawnExplosion/SpawnExplosionWindow.xaml.cs +++ b/Content.Client/Administration/UI/SpawnExplosion/SpawnExplosionWindow.xaml.cs @@ -19,10 +19,10 @@ namespace Content.Client.Administration.UI.SpawnExplosion; public sealed partial class SpawnExplosionWindow : DefaultWindow { [Dependency] private readonly IClientConsoleHost _conHost = default!; - [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IEntityManager _entMan = default!; + private readonly SharedMapSystem _mapSystem; private readonly SharedTransformSystem _transform = default!; private readonly SpawnExplosionEui _eui; @@ -38,6 +38,7 @@ public sealed partial class SpawnExplosionWindow : DefaultWindow { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + _mapSystem = _entMan.System(); _transform = _entMan.System(); _eui = eui; @@ -87,7 +88,7 @@ public sealed partial class SpawnExplosionWindow : DefaultWindow { _mapData.Clear(); MapOptions.Clear(); - foreach (var map in _mapManager.GetAllMapIds()) + foreach (var map in _mapSystem.GetAllMapIds()) { _mapData.Add(map); MapOptions.AddItem(map.ToString()); diff --git a/Content.Client/Administration/UI/Tabs/AdminbusTab/LoadBlueprintsWindow.xaml.cs b/Content.Client/Administration/UI/Tabs/AdminbusTab/LoadBlueprintsWindow.xaml.cs index 97c84e5d2f..12df72bdcf 100644 --- a/Content.Client/Administration/UI/Tabs/AdminbusTab/LoadBlueprintsWindow.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/AdminbusTab/LoadBlueprintsWindow.xaml.cs @@ -14,6 +14,9 @@ namespace Content.Client.Administration.UI.Tabs.AdminbusTab [UsedImplicitly] public sealed partial class LoadBlueprintsWindow : DefaultWindow { + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + public LoadBlueprintsWindow() { RobustXamlLoader.Load(this); @@ -21,9 +24,9 @@ namespace Content.Client.Administration.UI.Tabs.AdminbusTab protected override void EnteredTree() { - var mapManager = IoCManager.Resolve(); + var mapSystem = _entityManager.System(); - foreach (var mapId in mapManager.GetAllMapIds()) + foreach (var mapId in mapSystem.GetAllMapIds()) { MapOptions.AddItem(mapId.ToString(), (int) mapId); } @@ -39,21 +42,19 @@ namespace Content.Client.Administration.UI.Tabs.AdminbusTab private void Reset() { - var entManager = IoCManager.Resolve(); - var xformSystem = entManager.System(); - var playerManager = IoCManager.Resolve(); - var player = playerManager.LocalEntity; + var xformSystem = _entityManager.System(); + var player = _playerManager.LocalEntity; var currentMap = MapId.Nullspace; var position = Vector2.Zero; var rotation = Angle.Zero; - if (entManager.TryGetComponent(player, out var xform)) + if (_entityManager.TryGetComponent(player, out var xform)) { currentMap = xform.MapID; position = xformSystem.GetWorldPosition(xform); - if (entManager.TryGetComponent(xform.GridUid, out var gridXform)) + if (_entityManager.TryGetComponent(xform.GridUid, out var gridXform)) { rotation = xformSystem.GetWorldRotation(gridXform); } diff --git a/Content.Client/Administration/UI/Tabs/RoundTab.xaml b/Content.Client/Administration/UI/Tabs/RoundTab.xaml index 2c8a400ecd..36c06cab76 100644 --- a/Content.Client/Administration/UI/Tabs/RoundTab.xaml +++ b/Content.Client/Administration/UI/Tabs/RoundTab.xaml @@ -1,13 +1,13 @@  - - - - + + + + diff --git a/Content.Client/Administration/UI/Tabs/RoundTab.xaml.cs b/Content.Client/Administration/UI/Tabs/RoundTab.xaml.cs index 28073bc91d..70f12bb393 100644 --- a/Content.Client/Administration/UI/Tabs/RoundTab.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/RoundTab.xaml.cs @@ -1,10 +1,24 @@ using Robust.Client.AutoGenerated; +using Robust.Client.Console; using Robust.Client.UserInterface; +using Robust.Client.UserInterface.XAML; namespace Content.Client.Administration.UI.Tabs { [GenerateTypedNameReferences] public sealed partial class RoundTab : Control { + [Dependency] private readonly IClientConsoleHost _console = default!; + + public RoundTab() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + + StartRound.OnPressed += _ => _console.ExecuteCommand("startround"); + EndRound.OnPressed += _ => _console.ExecuteCommand("endround"); + RestartRound.OnPressed += _ => _console.ExecuteCommand("restartround"); + RestartRoundNow.OnPressed += _ => _console.ExecuteCommand("restartroundnow"); + } } } diff --git a/Content.Client/AlertLevel/AlertLevelDisplaySystem.cs b/Content.Client/AlertLevel/AlertLevelDisplaySystem.cs index fb093ff448..13e2ab3208 100644 --- a/Content.Client/AlertLevel/AlertLevelDisplaySystem.cs +++ b/Content.Client/AlertLevel/AlertLevelDisplaySystem.cs @@ -8,6 +8,8 @@ namespace Content.Client.AlertLevel; public sealed class AlertLevelDisplaySystem : EntitySystem { + [Dependency] private readonly SpriteSystem _sprite = default!; + public override void Initialize() { base.Initialize(); @@ -21,26 +23,26 @@ public sealed class AlertLevelDisplaySystem : EntitySystem { return; } - var layer = args.Sprite.LayerMapReserveBlank(AlertLevelDisplay.Layer); + var layer = _sprite.LayerMapReserve((uid, args.Sprite), AlertLevelDisplay.Layer); if (args.AppearanceData.TryGetValue(AlertLevelDisplay.Powered, out var poweredObject)) { - args.Sprite.LayerSetVisible(layer, poweredObject is true); + _sprite.LayerSetVisible((uid, args.Sprite), layer, poweredObject is true); } if (!args.AppearanceData.TryGetValue(AlertLevelDisplay.CurrentLevel, out var level)) { - args.Sprite.LayerSetState(layer, alertLevelDisplay.AlertVisuals.Values.First()); + _sprite.LayerSetRsiState((uid, args.Sprite), layer, alertLevelDisplay.AlertVisuals.Values.First()); return; } - if (alertLevelDisplay.AlertVisuals.TryGetValue((string) level, out var visual)) + if (alertLevelDisplay.AlertVisuals.TryGetValue((string)level, out var visual)) { - args.Sprite.LayerSetState(layer, visual); + _sprite.LayerSetRsiState((uid, args.Sprite), layer, visual); } else { - args.Sprite.LayerSetState(layer, alertLevelDisplay.AlertVisuals.Values.First()); + _sprite.LayerSetRsiState((uid, args.Sprite), layer, alertLevelDisplay.AlertVisuals.Values.First()); } } } diff --git a/Content.Client/Animations/EntityPickupAnimationSystem.cs b/Content.Client/Animations/EntityPickupAnimationSystem.cs index abeac664c7..58f1740e3c 100644 --- a/Content.Client/Animations/EntityPickupAnimationSystem.cs +++ b/Content.Client/Animations/EntityPickupAnimationSystem.cs @@ -15,6 +15,7 @@ public sealed class EntityPickupAnimationSystem : EntitySystem { [Dependency] private readonly AnimationPlayerSystem _animations = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; [Dependency] private readonly TransformSystem _transform = default!; public override void Initialize() @@ -56,8 +57,8 @@ public sealed class EntityPickupAnimationSystem : EntitySystem } var sprite = Comp(animatableClone); - sprite.CopyFrom(sprite0); - sprite.Visible = true; + _sprite.CopySprite((uid, sprite0), (animatableClone, sprite)); + _sprite.SetVisible((animatableClone, sprite), true); var animations = Comp(animatableClone); diff --git a/Content.Client/Anomaly/AnomalySystem.cs b/Content.Client/Anomaly/AnomalySystem.cs index 28c015f302..83f15a9086 100644 --- a/Content.Client/Anomaly/AnomalySystem.cs +++ b/Content.Client/Anomaly/AnomalySystem.cs @@ -11,6 +11,7 @@ public sealed class AnomalySystem : SharedAnomalySystem { [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly FloatingVisualizerSystem _floating = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; /// public override void Initialize() @@ -49,12 +50,12 @@ public sealed class AnomalySystem : SharedAnomalySystem if (HasComp(uid)) pulsing = true; - if (!sprite.LayerMapTryGet(AnomalyVisualLayers.Base, out var layer) || - !sprite.LayerMapTryGet(AnomalyVisualLayers.Animated, out var animatedLayer)) + if (!_sprite.LayerMapTryGet((uid, sprite), AnomalyVisualLayers.Base, out var layer, false) || + !_sprite.LayerMapTryGet((uid, sprite), AnomalyVisualLayers.Animated, out var animatedLayer, false)) return; - sprite.LayerSetVisible(layer, !pulsing); - sprite.LayerSetVisible(animatedLayer, pulsing); + _sprite.LayerSetVisible((uid, sprite), layer, !pulsing); + _sprite.LayerSetVisible((uid, sprite), animatedLayer, pulsing); } public override void Update(float frameTime) @@ -63,16 +64,16 @@ public sealed class AnomalySystem : SharedAnomalySystem var query = EntityQueryEnumerator(); - while (query.MoveNext(out var super, out var sprite)) + while (query.MoveNext(out var uid, out var super, out var sprite)) { - var completion = 1f - (float) ((super.EndTime - _timing.CurTime) / super.SupercriticalDuration); + var completion = 1f - (float)((super.EndTime - _timing.CurTime) / super.SupercriticalDuration); var scale = completion * (super.MaxScaleAmount - 1f) + 1f; - sprite.Scale = new Vector2(scale, scale); + _sprite.SetScale((uid, sprite), new Vector2(scale, scale)); - var transparency = (byte) (65 * (1f - completion) + 190); + var transparency = (byte)(65 * (1f - completion) + 190); if (transparency < sprite.Color.AByte) { - sprite.Color = sprite.Color.WithAlpha(transparency); + _sprite.SetColor((uid, sprite), sprite.Color.WithAlpha(transparency)); } } } @@ -82,7 +83,7 @@ public sealed class AnomalySystem : SharedAnomalySystem if (!TryComp(ent, out var sprite)) return; - sprite.Scale = Vector2.One; - sprite.Color = sprite.Color.WithAlpha(1f); + _sprite.SetScale((ent.Owner, sprite), Vector2.One); + _sprite.SetColor((ent.Owner, sprite), sprite.Color.WithAlpha(1f)); } } diff --git a/Content.Client/Anomaly/Effects/ClientInnerBodySystem.cs b/Content.Client/Anomaly/Effects/ClientInnerBodySystem.cs index efb1a8d46e..15ebc8a993 100644 --- a/Content.Client/Anomaly/Effects/ClientInnerBodySystem.cs +++ b/Content.Client/Anomaly/Effects/ClientInnerBodySystem.cs @@ -7,6 +7,8 @@ namespace Content.Client.Anomaly.Effects; public sealed class ClientInnerBodyAnomalySystem : SharedInnerBodyAnomalySystem { + [Dependency] private readonly SpriteSystem _sprite = default!; + public override void Initialize() { SubscribeLocalEvent(OnAfterHandleState); @@ -21,21 +23,20 @@ public sealed class ClientInnerBodyAnomalySystem : SharedInnerBodyAnomalySystem if (ent.Comp.FallbackSprite is null) return; - if (!sprite.LayerMapTryGet(ent.Comp.LayerMap, out var index)) - index = sprite.LayerMapReserveBlank(ent.Comp.LayerMap); + var index = _sprite.LayerMapReserve((ent.Owner, sprite), ent.Comp.LayerMap); if (TryComp(ent, out var body) && body.Prototype is not null && ent.Comp.SpeciesSprites.TryGetValue(body.Prototype.Value, out var speciesSprite)) { - sprite.LayerSetSprite(index, speciesSprite); + _sprite.LayerSetSprite((ent.Owner, sprite), index, speciesSprite); } else { - sprite.LayerSetSprite(index, ent.Comp.FallbackSprite); + _sprite.LayerSetSprite((ent.Owner, sprite), index, ent.Comp.FallbackSprite); } - sprite.LayerSetVisible(index, true); + _sprite.LayerSetVisible((ent.Owner, sprite), index, true); sprite.LayerSetShader(index, "unshaded"); } @@ -44,7 +45,7 @@ public sealed class ClientInnerBodyAnomalySystem : SharedInnerBodyAnomalySystem if (!TryComp(ent, out var sprite)) return; - var index = sprite.LayerMapGet(ent.Comp.LayerMap); - sprite.LayerSetVisible(index, false); + var index = _sprite.LayerMapGet((ent.Owner, sprite), ent.Comp.LayerMap); + _sprite.LayerSetVisible((ent.Owner, sprite), index, false); } } diff --git a/Content.Client/Atmos/EntitySystems/AtmosPipeAppearanceSystem.cs b/Content.Client/Atmos/EntitySystems/AtmosPipeAppearanceSystem.cs index 5c323d7dc1..2029cb9be5 100644 --- a/Content.Client/Atmos/EntitySystems/AtmosPipeAppearanceSystem.cs +++ b/Content.Client/Atmos/EntitySystems/AtmosPipeAppearanceSystem.cs @@ -11,6 +11,7 @@ namespace Content.Client.Atmos.EntitySystems; public sealed class AtmosPipeAppearanceSystem : EntitySystem { [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -25,21 +26,22 @@ public sealed class AtmosPipeAppearanceSystem : EntitySystem if (!TryComp(uid, out SpriteComponent? sprite)) return; - foreach (PipeConnectionLayer layerKey in Enum.GetValues(typeof(PipeConnectionLayer))) + foreach (var layerKey in Enum.GetValues()) { - sprite.LayerMapReserveBlank(layerKey); - var layer = sprite.LayerMapGet(layerKey); - sprite.LayerSetRSI(layer, component.Sprite.RsiPath); - sprite.LayerSetState(layer, component.Sprite.RsiState); - sprite.LayerSetDirOffset(layer, ToOffset(layerKey)); + var layer = _sprite.LayerMapReserve((uid, sprite), layerKey); + _sprite.LayerSetRsi((uid, sprite), layer, component.Sprite.RsiPath); + _sprite.LayerSetRsiState((uid, sprite), layer, component.Sprite.RsiState); + _sprite.LayerSetDirOffset((uid, sprite), layer, ToOffset(layerKey)); } } - private void HideAllPipeConnection(SpriteComponent sprite) + private void HideAllPipeConnection(Entity entity) { - foreach (PipeConnectionLayer layerKey in Enum.GetValues(typeof(PipeConnectionLayer))) + var sprite = entity.Comp; + + foreach (var layerKey in Enum.GetValues()) { - if (!sprite.LayerMapTryGet(layerKey, out var key)) + if (!_sprite.LayerMapTryGet(entity.AsNullable(), layerKey, out var key, false)) continue; var layer = sprite[key]; @@ -61,7 +63,7 @@ public sealed class AtmosPipeAppearanceSystem : EntitySystem if (!_appearance.TryGetData(uid, PipeVisuals.VisualState, out var worldConnectedDirections, args.Component)) { - HideAllPipeConnection(args.Sprite); + HideAllPipeConnection((uid, args.Sprite)); return; } @@ -71,13 +73,13 @@ public sealed class AtmosPipeAppearanceSystem : EntitySystem // transform connected directions to local-coordinates var connectedDirections = worldConnectedDirections.RotatePipeDirection(-Transform(uid).LocalRotation); - foreach (PipeConnectionLayer layerKey in Enum.GetValues(typeof(PipeConnectionLayer))) + foreach (var layerKey in Enum.GetValues()) { - if (!args.Sprite.LayerMapTryGet(layerKey, out var key)) + if (!_sprite.LayerMapTryGet((uid, args.Sprite), layerKey, out var key, false)) continue; var layer = args.Sprite[key]; - var dir = (PipeDirection) layerKey; + var dir = (PipeDirection)layerKey; var visible = connectedDirections.HasDirection(dir); layer.Visible &= visible; diff --git a/Content.Client/Atmos/EntitySystems/FireVisualizerSystem.cs b/Content.Client/Atmos/EntitySystems/FireVisualizerSystem.cs index 08522d1a42..431a598678 100644 --- a/Content.Client/Atmos/EntitySystems/FireVisualizerSystem.cs +++ b/Content.Client/Atmos/EntitySystems/FireVisualizerSystem.cs @@ -2,6 +2,7 @@ using Content.Client.Atmos.Components; using Content.Shared.Atmos; using Robust.Client.GameObjects; using Robust.Shared.Map; +using Robust.Shared.Utility; namespace Content.Client.Atmos.EntitySystems; @@ -31,9 +32,9 @@ public sealed class FireVisualizerSystem : VisualizerSystem(uid, out var sprite) && - sprite.LayerMapTryGet(FireVisualLayers.Fire, out var layer)) + SpriteSystem.LayerMapTryGet((uid, sprite), FireVisualLayers.Fire, out var layer, false)) { - sprite.RemoveLayer(layer); + SpriteSystem.RemoveLayer((uid, sprite), layer); } } @@ -42,11 +43,11 @@ public sealed class FireVisualizerSystem : VisualizerSystem(uid, out var sprite) || !TryComp(uid, out AppearanceComponent? appearance)) return; - sprite.LayerMapReserveBlank(FireVisualLayers.Fire); - sprite.LayerSetVisible(FireVisualLayers.Fire, false); + SpriteSystem.LayerMapReserve((uid, sprite), FireVisualLayers.Fire); + SpriteSystem.LayerSetVisible((uid, sprite), FireVisualLayers.Fire, false); sprite.LayerSetShader(FireVisualLayers.Fire, "unshaded"); if (component.Sprite != null) - sprite.LayerSetRSI(FireVisualLayers.Fire, component.Sprite); + SpriteSystem.LayerSetRsi((uid, sprite), FireVisualLayers.Fire, new ResPath(component.Sprite)); UpdateAppearance(uid, component, sprite, appearance); } @@ -59,12 +60,12 @@ public sealed class FireVisualizerSystem : VisualizerSystem(uid, FireVisuals.OnFire, out var onFire, appearance); AppearanceSystem.TryGetData(uid, FireVisuals.FireStacks, out var fireStacks, appearance); - sprite.LayerSetVisible(index, onFire); + SpriteSystem.LayerSetVisible((uid, sprite), index, onFire); if (!onFire) { @@ -78,9 +79,9 @@ public sealed class FireVisualizerSystem : VisualizerSystem component.FireStackAlternateState && !string.IsNullOrEmpty(component.AlternateState)) - sprite.LayerSetState(index, component.AlternateState); + SpriteSystem.LayerSetRsiState((uid, sprite), index, component.AlternateState); else - sprite.LayerSetState(index, component.NormalState); + SpriteSystem.LayerSetRsiState((uid, sprite), index, component.NormalState); component.LightEntity ??= Spawn(null, new EntityCoordinates(uid, default)); var light = EnsureComp(component.LightEntity.Value); diff --git a/Content.Client/Atmos/Monitor/AtmosAlarmableVisualsSystem.cs b/Content.Client/Atmos/Monitor/AtmosAlarmableVisualsSystem.cs index 18ca223475..472e1e3d34 100644 --- a/Content.Client/Atmos/Monitor/AtmosAlarmableVisualsSystem.cs +++ b/Content.Client/Atmos/Monitor/AtmosAlarmableVisualsSystem.cs @@ -9,7 +9,7 @@ public sealed class AtmosAlarmableVisualsSystem : VisualizerSystem diff --git a/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs b/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs index ed15579937..64680b5321 100644 --- a/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs +++ b/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs @@ -110,6 +110,8 @@ public sealed partial class AirAlarmWindow : FancyWindow { UpdateDeviceData(addr, dev); } + _modes.Visible = !state.PanicWireCut; + CModeSelectLocked.Visible = state.PanicWireCut; } public void UpdateModeSelector(AirAlarmMode mode) diff --git a/Content.Client/Atmos/Monitor/UI/Widgets/ScrubberControl.xaml.cs b/Content.Client/Atmos/Monitor/UI/Widgets/ScrubberControl.xaml.cs index d03ac77ab3..9762f63992 100644 --- a/Content.Client/Atmos/Monitor/UI/Widgets/ScrubberControl.xaml.cs +++ b/Content.Client/Atmos/Monitor/UI/Widgets/ScrubberControl.xaml.cs @@ -71,6 +71,7 @@ public sealed partial class ScrubberControl : BoxContainer _data.PumpDirection = (ScrubberPumpDirection) args.Id; ScrubberDataChanged?.Invoke(_address, _data); }; + _pumpDirection.Disabled = data.AirAlarmPanicWireCut; _copySettings.OnPressed += _ => { @@ -109,6 +110,7 @@ public sealed partial class ScrubberControl : BoxContainer _data.PumpDirection = data.PumpDirection; _pumpDirection.Select((int) _data.PumpDirection); + _pumpDirection.Disabled = data.AirAlarmPanicWireCut; _data.VolumeRate = data.VolumeRate; _volumeRate.Value = _data.VolumeRate; diff --git a/Content.Client/Atmos/Overlays/GasTileOverlay.cs b/Content.Client/Atmos/Overlays/GasTileOverlay.cs index 55aeaa12af..cdbcb5b3f6 100644 --- a/Content.Client/Atmos/Overlays/GasTileOverlay.cs +++ b/Content.Client/Atmos/Overlays/GasTileOverlay.cs @@ -21,6 +21,7 @@ namespace Content.Client.Atmos.Overlays { private readonly IEntityManager _entManager; private readonly IMapManager _mapManager; + private readonly SharedMapSystem _mapSystem; private readonly SharedTransformSystem _xformSys; public override OverlaySpace Space => OverlaySpace.WorldSpaceEntities | OverlaySpace.WorldSpaceBelowWorld; @@ -51,6 +52,7 @@ namespace Content.Client.Atmos.Overlays { _entManager = entManager; _mapManager = IoCManager.Resolve(); + _mapSystem = entManager.System(); _xformSys = xformSys; _shader = protoMan.Index("unshaded").Instance(); ZIndex = GasOverlayZIndex; @@ -163,7 +165,7 @@ namespace Content.Client.Atmos.Overlays xformQuery, _xformSys); - var mapUid = _mapManager.GetMapEntityId(args.MapId); + var mapUid = _mapSystem.GetMapOrInvalid(args.MapId); if (_entManager.TryGetComponent(mapUid, out var atmos)) DrawMapOverlay(drawHandle, args, mapUid, atmos); diff --git a/Content.Client/Atmos/Piping/Binary/Systems/GasValveSystem.cs b/Content.Client/Atmos/Piping/Binary/Systems/GasValveSystem.cs new file mode 100644 index 0000000000..61cb7d7eda --- /dev/null +++ b/Content.Client/Atmos/Piping/Binary/Systems/GasValveSystem.cs @@ -0,0 +1,8 @@ +using Content.Shared.Atmos.Piping.Binary.Systems; + +namespace Content.Client.Atmos.Piping.Binary.Systems; + +public sealed class GasValveSystem : SharedGasValveSystem +{ + +} diff --git a/Content.Client/Atmos/Piping/Unary/Systems/GasThermoMachineSystem.cs b/Content.Client/Atmos/Piping/Unary/Systems/GasThermoMachineSystem.cs new file mode 100644 index 0000000000..bd75fa0095 --- /dev/null +++ b/Content.Client/Atmos/Piping/Unary/Systems/GasThermoMachineSystem.cs @@ -0,0 +1,29 @@ +using Content.Client.Atmos.UI; +using Content.Shared.Atmos.Piping.Unary.Components; +using Content.Shared.Atmos.Piping.Unary.Systems; + +namespace Content.Client.Atmos.Piping.Unary.Systems; + +public sealed class GasThermoMachineSystem : SharedGasThermoMachineSystem +{ + [Dependency] private readonly SharedUserInterfaceSystem _ui = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnGasAfterState); + } + + private void OnGasAfterState(Entity ent, ref AfterAutoHandleStateEvent args) + { + DirtyUI(ent.Owner, ent.Comp); + } + + protected override void DirtyUI(EntityUid uid, GasThermoMachineComponent? thermoMachine, UserInterfaceComponent? ui = null) + { + if (_ui.TryGetOpenUi(uid, ThermomachineUiKey.Key, out var bui)) + { + bui.Update(); + } + } +} diff --git a/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs b/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs index d62be8f4bb..f9e1caf8f3 100644 --- a/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs @@ -1,5 +1,8 @@ -using Content.Shared.Atmos; +using Content.Client.Power.EntitySystems; +using Content.Shared.Atmos; using Content.Shared.Atmos.Piping.Unary.Components; +using Content.Shared.Atmos.Piping.Unary.Systems; +using Content.Shared.Power.Components; using JetBrains.Annotations; using Robust.Client.GameObjects; using Robust.Client.UserInterface; @@ -36,6 +39,8 @@ namespace Content.Client.Atmos.UI _window.ToggleStatusButton.OnPressed += _ => OnToggleStatusButtonPressed(); _window.TemperatureSpinbox.OnValueChanged += _ => OnTemperatureChanged(_window.TemperatureSpinbox.Value); + _window.Entity = Owner; + Update(); } private void OnToggleStatusButtonPressed() @@ -43,7 +48,7 @@ namespace Content.Client.Atmos.UI if (_window is null) return; _window.SetActive(!_window.Active); - SendMessage(new GasThermomachineToggleMessage()); + SendPredictedMessage(new GasThermomachineToggleMessage()); } private void OnTemperatureChanged(float value) @@ -60,25 +65,32 @@ namespace Content.Client.Atmos.UI return; } - SendMessage(new GasThermomachineChangeTemperatureMessage(actual)); + SendPredictedMessage(new GasThermomachineChangeTemperatureMessage(actual)); } - /// - /// Update the UI state based on server-sent info - /// - /// - protected override void UpdateState(BoundUserInterfaceState state) + public override void Update() { - base.UpdateState(state); - if (_window == null || state is not GasThermomachineBoundUserInterfaceState cast) + if (_window == null || !EntMan.TryGetComponent(Owner, out GasThermoMachineComponent? thermo)) return; - _minTemp = cast.MinTemperature; - _maxTemp = cast.MaxTemperature; - _isHeater = cast.IsHeater; + var system = EntMan.System(); + _minTemp = thermo.MinTemperature; + _maxTemp = thermo.MaxTemperature; + _isHeater = system.IsHeater(thermo); + + _window.SetTemperature(thermo.TargetTemperature); + + var receiverSys = EntMan.System(); + SharedApcPowerReceiverComponent? receiver = null; + + receiverSys.ResolveApc(Owner, ref receiver); + + // Also set in frameupdates. + if (receiver != null) + { + _window.SetActive(!receiver.PowerDisabled); + } - _window.SetTemperature(cast.Temperature); - _window.SetActive(cast.Enabled); _window.Title = _isHeater switch { false => Loc.GetString("comp-gas-thermomachine-ui-title-freezer"), diff --git a/Content.Client/Atmos/UI/GasThermomachineWindow.xaml b/Content.Client/Atmos/UI/GasThermomachineWindow.xaml index de3f8f8036..207c31f087 100644 --- a/Content.Client/Atmos/UI/GasThermomachineWindow.xaml +++ b/Content.Client/Atmos/UI/GasThermomachineWindow.xaml @@ -1,5 +1,6 @@ - @@ -11,4 +12,4 @@ - + diff --git a/Content.Client/Atmos/UI/GasThermomachineWindow.xaml.cs b/Content.Client/Atmos/UI/GasThermomachineWindow.xaml.cs index bc8cb14336..00d53dc9b6 100644 --- a/Content.Client/Atmos/UI/GasThermomachineWindow.xaml.cs +++ b/Content.Client/Atmos/UI/GasThermomachineWindow.xaml.cs @@ -1,19 +1,26 @@ +using Content.Client.Power.Components; +using Content.Client.UserInterface.Controls; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; -using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Timing; namespace Content.Client.Atmos.UI; [GenerateTypedNameReferences] -public sealed partial class GasThermomachineWindow : DefaultWindow +public sealed partial class GasThermomachineWindow : FancyWindow { + [Dependency] private readonly IEntityManager _entManager = default!; + public bool Active = true; public FloatSpinBox TemperatureSpinbox; + public EntityUid Entity; + public GasThermomachineWindow() { + IoCManager.InjectDependencies(this); RobustXamlLoader.Load(this); SpinboxHBox.AddChild( @@ -27,12 +34,10 @@ public sealed partial class GasThermomachineWindow : DefaultWindow if (active) { ToggleStatusButton.Text = Loc.GetString("comp-gas-thermomachine-ui-status-enabled"); - ToggleStatusButton.Pressed = true; } else { ToggleStatusButton.Text = Loc.GetString("comp-gas-thermomachine-ui-status-disabled"); - ToggleStatusButton.Pressed = false; } } @@ -40,4 +45,14 @@ public sealed partial class GasThermomachineWindow : DefaultWindow { TemperatureSpinbox.Value = temperature; } + + protected override void FrameUpdate(FrameEventArgs args) + { + base.FrameUpdate(args); + + if (_entManager.TryGetComponent(Entity, out ApcPowerReceiverComponent? receiver)) + { + SetActive(!receiver.PowerDisabled); + } + } } diff --git a/Content.Client/Atmos/Visualizers/PortableScrubberVisualsSystem.cs b/Content.Client/Atmos/Visualizers/PortableScrubberVisualsSystem.cs index 262c854a47..22ccf5dd2f 100644 --- a/Content.Client/Atmos/Visualizers/PortableScrubberVisualsSystem.cs +++ b/Content.Client/Atmos/Visualizers/PortableScrubberVisualsSystem.cs @@ -2,35 +2,35 @@ using Robust.Client.GameObjects; using Content.Shared.Atmos.Visuals; using Content.Client.Power; -namespace Content.Client.Atmos.Visualizers +namespace Content.Client.Atmos.Visualizers; + +/// +/// Controls client-side visuals for portable scrubbers. +/// +public sealed class PortableScrubberSystem : VisualizerSystem { - /// - /// Controls client-side visuals for portable scrubbers. - /// - public sealed class PortableScrubberSystem : VisualizerSystem + protected override void OnAppearanceChange(EntityUid uid, PortableScrubberVisualsComponent component, ref AppearanceChangeEvent args) { - protected override void OnAppearanceChange(EntityUid uid, PortableScrubberVisualsComponent component, ref AppearanceChangeEvent args) + if (args.Sprite == null) + return; + + if (AppearanceSystem.TryGetData(uid, PortableScrubberVisuals.IsFull, out var isFull, args.Component) + && AppearanceSystem.TryGetData(uid, PortableScrubberVisuals.IsRunning, out var isRunning, args.Component)) { - if (args.Sprite == null) - return; + var runningState = isRunning ? component.RunningState : component.IdleState; + SpriteSystem.LayerSetRsiState((uid, args.Sprite), PortableScrubberVisualLayers.IsRunning, runningState); - if (AppearanceSystem.TryGetData(uid, PortableScrubberVisuals.IsFull, out var isFull, args.Component) - && AppearanceSystem.TryGetData(uid, PortableScrubberVisuals.IsRunning, out var isRunning, args.Component)) - { - var runningState = isRunning ? component.RunningState : component.IdleState; - args.Sprite.LayerSetState(PortableScrubberVisualLayers.IsRunning, runningState); + var fullState = isFull ? component.FullState : component.ReadyState; + SpriteSystem.LayerSetRsiState((uid, args.Sprite), PowerDeviceVisualLayers.Powered, fullState); + } - var fullState = isFull ? component.FullState : component.ReadyState; - args.Sprite.LayerSetState(PowerDeviceVisualLayers.Powered, fullState); - } - - if (AppearanceSystem.TryGetData(uid, PortableScrubberVisuals.IsDraining, out var isDraining, args.Component)) - { - args.Sprite.LayerSetVisible(PortableScrubberVisualLayers.IsDraining, isDraining); - } + if (AppearanceSystem.TryGetData(uid, PortableScrubberVisuals.IsDraining, out var isDraining, args.Component)) + { + SpriteSystem.LayerSetVisible((uid, args.Sprite), PortableScrubberVisualLayers.IsDraining, isDraining); } } } + public enum PortableScrubberVisualLayers : byte { IsRunning, diff --git a/Content.Client/Audio/Jukebox/JukeboxSystem.cs b/Content.Client/Audio/Jukebox/JukeboxSystem.cs index dd4a5bbb9b..feb4aef3b2 100644 --- a/Content.Client/Audio/Jukebox/JukeboxSystem.cs +++ b/Content.Client/Audio/Jukebox/JukeboxSystem.cs @@ -12,6 +12,7 @@ public sealed class JukeboxSystem : SharedJukeboxSystem [Dependency] private readonly AnimationPlayerSystem _animationPlayer = default!; [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; [Dependency] private readonly SharedUserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -64,7 +65,7 @@ public sealed class JukeboxSystem : SharedJukeboxSystem visualState = JukeboxVisualState.On; } - UpdateAppearance(uid, visualState, component, sprite); + UpdateAppearance((uid, sprite), visualState, component); } private void OnAppearanceChange(EntityUid uid, JukeboxComponent component, ref AppearanceChangeEvent args) @@ -78,25 +79,25 @@ public sealed class JukeboxSystem : SharedJukeboxSystem visualState = JukeboxVisualState.On; } - UpdateAppearance(uid, visualState, component, args.Sprite); + UpdateAppearance((uid, args.Sprite), visualState, component); } - private void UpdateAppearance(EntityUid uid, JukeboxVisualState visualState, JukeboxComponent component, SpriteComponent sprite) + private void UpdateAppearance(Entity entity, JukeboxVisualState visualState, JukeboxComponent component) { - SetLayerState(JukeboxVisualLayers.Base, component.OffState, sprite); + SetLayerState(JukeboxVisualLayers.Base, component.OffState, entity); switch (visualState) { case JukeboxVisualState.On: - SetLayerState(JukeboxVisualLayers.Base, component.OnState, sprite); + SetLayerState(JukeboxVisualLayers.Base, component.OnState, entity); break; case JukeboxVisualState.Off: - SetLayerState(JukeboxVisualLayers.Base, component.OffState, sprite); + SetLayerState(JukeboxVisualLayers.Base, component.OffState, entity); break; case JukeboxVisualState.Select: - PlayAnimation(uid, JukeboxVisualLayers.Base, component.SelectState, 1.0f, sprite); + PlayAnimation(entity.Owner, JukeboxVisualLayers.Base, component.SelectState, 1.0f, entity); break; } } @@ -109,7 +110,7 @@ public sealed class JukeboxSystem : SharedJukeboxSystem if (!_animationPlayer.HasRunningAnimation(uid, state)) { var animation = GetAnimation(layer, state, animationTime); - sprite.LayerSetVisible(layer, true); + _sprite.LayerSetVisible((uid, sprite), layer, true); _animationPlayer.Play(uid, animation, state); } } @@ -133,13 +134,13 @@ public sealed class JukeboxSystem : SharedJukeboxSystem }; } - private void SetLayerState(JukeboxVisualLayers layer, string? state, SpriteComponent sprite) + private void SetLayerState(JukeboxVisualLayers layer, string? state, Entity sprite) { if (string.IsNullOrEmpty(state)) return; - sprite.LayerSetVisible(layer, true); - sprite.LayerSetAutoAnimated(layer, true); - sprite.LayerSetState(layer, state); + _sprite.LayerSetVisible(sprite.AsNullable(), layer, true); + _sprite.LayerSetAutoAnimated(sprite.AsNullable(), layer, true); + _sprite.LayerSetRsiState(sprite.AsNullable(), layer, state); } } diff --git a/Content.Client/BarSign/BarSignSystem.cs b/Content.Client/BarSign/BarSignSystem.cs index 9fd8ba2e4b..02e33861b7 100644 --- a/Content.Client/BarSign/BarSignSystem.cs +++ b/Content.Client/BarSign/BarSignSystem.cs @@ -41,12 +41,12 @@ public sealed class BarSignSystem : VisualizerSystem && sign.Current != null && _prototypeManager.TryIndex(sign.Current, out var proto)) { - sprite.LayerSetSprite(0, proto.Icon); + SpriteSystem.LayerSetSprite((id, sprite), 0, proto.Icon); sprite.LayerSetShader(0, "unshaded"); } else { - sprite.LayerSetState(0, "empty"); + SpriteSystem.LayerSetRsiState((id, sprite), 0, "empty"); sprite.LayerSetShader(0, null, null); } } diff --git a/Content.Client/Beam/BeamSystem.cs b/Content.Client/Beam/BeamSystem.cs index 4749d4d29b..66975d53a7 100644 --- a/Content.Client/Beam/BeamSystem.cs +++ b/Content.Client/Beam/BeamSystem.cs @@ -7,6 +7,8 @@ namespace Content.Client.Beam; public sealed class BeamSystem : SharedBeamSystem { + [Dependency] private readonly SpriteSystem _sprite = default!; + public override void Initialize() { base.Initialize(); @@ -21,11 +23,11 @@ public sealed class BeamSystem : SharedBeamSystem if (TryComp(beam, out var sprites)) { - sprites.Rotation = args.UserAngle; + _sprite.SetRotation((beam, sprites), args.UserAngle); if (args.BodyState != null) { - sprites.LayerSetState(0, args.BodyState); + _sprite.LayerSetRsiState((beam, sprites), 0, args.BodyState); sprites.LayerSetShader(0, args.Shader); } } diff --git a/Content.Client/Bed/BedSystem.cs b/Content.Client/Bed/BedSystem.cs new file mode 100644 index 0000000000..9c6f28290f --- /dev/null +++ b/Content.Client/Bed/BedSystem.cs @@ -0,0 +1,8 @@ +using Content.Shared.Bed; + +namespace Content.Client.Bed; + +public sealed class BedSystem : SharedBedSystem +{ + +} diff --git a/Content.Client/Bed/StasisBedSystem.cs b/Content.Client/Bed/StasisBedSystem.cs index 66ec2f3245..6065ec839f 100644 --- a/Content.Client/Bed/StasisBedSystem.cs +++ b/Content.Client/Bed/StasisBedSystem.cs @@ -10,7 +10,7 @@ public sealed class StasisBedSystem : VisualizerSystem(uid, StasisBedVisuals.IsOn, out var isOn, args.Component)) { - args.Sprite.LayerSetVisible(StasisBedVisualLayers.IsOn, isOn); + SpriteSystem.LayerSetVisible((uid, args.Sprite), StasisBedVisualLayers.IsOn, isOn); } } } diff --git a/Content.Client/Botany/PlantHolderVisualizerSystem.cs b/Content.Client/Botany/PlantHolderVisualizerSystem.cs index 963d259c40..bd5b5e56dc 100644 --- a/Content.Client/Botany/PlantHolderVisualizerSystem.cs +++ b/Content.Client/Botany/PlantHolderVisualizerSystem.cs @@ -1,6 +1,7 @@ using Content.Client.Botany.Components; using Content.Shared.Botany; using Robust.Client.GameObjects; +using Robust.Shared.Utility; namespace Content.Client.Botany; @@ -17,8 +18,8 @@ public sealed class PlantHolderVisualizerSystem : VisualizerSystem(uid, out var sprite)) return; - sprite.LayerMapReserveBlank(PlantHolderLayers.Plant); - sprite.LayerSetVisible(PlantHolderLayers.Plant, false); + SpriteSystem.LayerMapReserve((uid, sprite), PlantHolderLayers.Plant); + SpriteSystem.LayerSetVisible((uid, sprite), PlantHolderLayers.Plant, false); } protected override void OnAppearanceChange(EntityUid uid, PlantHolderVisualsComponent component, ref AppearanceChangeEvent args) @@ -31,12 +32,12 @@ public sealed class PlantHolderVisualizerSystem : VisualizerSystem(uid, ProduceVisuals.Potency, out var potency, args.Component)) { var scale = MathHelper.Lerp(component.MinimumScale, component.MaximumScale, potency / 100); - args.Sprite.Scale = new Vector2(scale, scale); + SpriteSystem.SetScale((uid, args.Sprite), new Vector2(scale, scale)); } } } diff --git a/Content.Client/Buckle/BuckleSystem.cs b/Content.Client/Buckle/BuckleSystem.cs index 90e12dcf54..97f50636f7 100644 --- a/Content.Client/Buckle/BuckleSystem.cs +++ b/Content.Client/Buckle/BuckleSystem.cs @@ -13,6 +13,7 @@ internal sealed class BuckleSystem : SharedBuckleSystem [Dependency] private readonly RotationVisualizerSystem _rotationVisualizerSystem = default!; [Dependency] private readonly IEyeManager _eye = default!; [Dependency] private readonly SharedTransformSystem _xformSystem = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -69,11 +70,11 @@ internal sealed class BuckleSystem : SharedBuckleSystem { // This will only assign if empty, it won't get overwritten by new depth on multiple calls, which do happen easily buckle.OriginalDrawDepth ??= buckledSprite.DrawDepth; - buckledSprite.DrawDepth = strapSprite.DrawDepth - 1; + _sprite.SetDrawDepth((buckledEntity, buckledSprite), strapSprite.DrawDepth - 1); } else if (buckle.OriginalDrawDepth.HasValue) { - buckledSprite.DrawDepth = buckle.OriginalDrawDepth.Value; + _sprite.SetDrawDepth((buckledEntity, buckledSprite), buckle.OriginalDrawDepth.Value); buckle.OriginalDrawDepth = null; } } @@ -97,7 +98,7 @@ internal sealed class BuckleSystem : SharedBuckleSystem return; ent.Comp.OriginalDrawDepth ??= buckledSprite.DrawDepth; - buckledSprite.DrawDepth = strapSprite.DrawDepth - 1; + _sprite.SetDrawDepth((ent.Owner, buckledSprite), strapSprite.DrawDepth - 1); } /// @@ -111,7 +112,7 @@ internal sealed class BuckleSystem : SharedBuckleSystem if (!ent.Comp.OriginalDrawDepth.HasValue) return; - buckledSprite.DrawDepth = ent.Comp.OriginalDrawDepth.Value; + _sprite.SetDrawDepth((ent.Owner, buckledSprite), ent.Comp.OriginalDrawDepth.Value); ent.Comp.OriginalDrawDepth = null; } diff --git a/Content.Client/CardboardBox/CardboardBoxSystem.cs b/Content.Client/CardboardBox/CardboardBoxSystem.cs index 925013db10..e52ce03a76 100644 --- a/Content.Client/CardboardBox/CardboardBoxSystem.cs +++ b/Content.Client/CardboardBox/CardboardBoxSystem.cs @@ -13,6 +13,7 @@ public sealed class CardboardBoxSystem : SharedCardboardBoxSystem [Dependency] private readonly EntityLookupSystem _entityLookup = default!; [Dependency] private readonly TransformSystem _transform = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; private EntityQuery _bodyQuery; @@ -74,7 +75,7 @@ public sealed class CardboardBoxSystem : SharedCardboardBoxSystem if (!xformQuery.TryGetComponent(ent, out var entTransform) || !TryComp(ent, out var sprite)) continue; - sprite.Offset = new Vector2(0, 1); + _sprite.SetOffset((ent, sprite), new Vector2(0, 1)); _transform.SetParent(ent, entTransform, mob); } diff --git a/Content.Client/Cargo/BUI/CargoOrderConsoleBoundUserInterface.cs b/Content.Client/Cargo/BUI/CargoOrderConsoleBoundUserInterface.cs index 52846cefdb..3bd220bfad 100644 --- a/Content.Client/Cargo/BUI/CargoOrderConsoleBoundUserInterface.cs +++ b/Content.Client/Cargo/BUI/CargoOrderConsoleBoundUserInterface.cs @@ -138,6 +138,11 @@ namespace Content.Client.Cargo.BUI AccountName = cState.Name; + if (_menu == null) + return; + + _menu.ProductCatalogue = cState.Products; + _menu?.UpdateStation(station); Populate(cState.Orders); } diff --git a/Content.Client/Cargo/Systems/CargoSystem.Telepad.cs b/Content.Client/Cargo/Systems/CargoSystem.Telepad.cs index 99f9b34387..85b2dbfb83 100644 --- a/Content.Client/Cargo/Systems/CargoSystem.Telepad.cs +++ b/Content.Client/Cargo/Systems/CargoSystem.Telepad.cs @@ -10,6 +10,7 @@ namespace Content.Client.Cargo.Systems; public sealed partial class CargoSystem { [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; private static readonly Animation CargoTelepadBeamAnimation = new() { @@ -80,12 +81,12 @@ public sealed partial class CargoSystem _player.Play((uid, player), CargoTelepadBeamAnimation, TelepadBeamKey); break; case CargoTelepadState.Unpowered: - sprite.LayerSetVisible(CargoTelepadLayers.Beam, false); + _sprite.LayerSetVisible((uid, sprite), CargoTelepadLayers.Beam, false); _player.Stop(uid, player, TelepadBeamKey); _player.Stop(uid, player, TelepadIdleKey); break; default: - sprite.LayerSetVisible(CargoTelepadLayers.Beam, true); + _sprite.LayerSetVisible((uid, sprite), CargoTelepadLayers.Beam, true); if (_player.HasRunningAnimation(uid, player, TelepadIdleKey) || _player.HasRunningAnimation(uid, player, TelepadBeamKey)) diff --git a/Content.Client/Cargo/UI/CargoConsoleMenu.xaml b/Content.Client/Cargo/UI/CargoConsoleMenu.xaml index 72d8cf7daf..940352dc48 100644 --- a/Content.Client/Cargo/UI/CargoConsoleMenu.xaml +++ b/Content.Client/Cargo/UI/CargoConsoleMenu.xaml @@ -38,9 +38,10 @@ - + + SizeFlagsStretchRatio="1" + Name="Orders"> diff --git a/Content.Client/Cargo/UI/CargoConsoleMenu.xaml.cs b/Content.Client/Cargo/UI/CargoConsoleMenu.xaml.cs index b837d59855..dfc61c0527 100644 --- a/Content.Client/Cargo/UI/CargoConsoleMenu.xaml.cs +++ b/Content.Client/Cargo/UI/CargoConsoleMenu.xaml.cs @@ -40,6 +40,8 @@ namespace Content.Client.Cargo.UI private readonly List _categoryStrings = new(); private string? _category; + public List> ProductCatalogue = new(); + public CargoConsoleMenu(EntityUid owner, IEntityManager entMan, IPrototypeManager protoManager, SpriteSystem spriteSystem) { RobustXamlLoader.Load(this); @@ -113,14 +115,16 @@ namespace Content.Client.Cargo.UI Categories.SelectId(id); } - public IEnumerable ProductPrototypes + private IEnumerable ProductPrototypes { get { var allowedGroups = _entityManager.GetComponentOrNull(_owner)?.AllowedGroups; - foreach (var cargoPrototype in _protoManager.EnumeratePrototypes()) + foreach (var cargoPrototypeId in ProductCatalogue) { + var cargoPrototype = _protoManager.Index(cargoPrototypeId); + if (!allowedGroups?.Contains(cargoPrototype.Group) ?? false) continue; @@ -208,6 +212,7 @@ namespace Content.Client.Cargo.UI var product = _protoManager.Index(order.ProductId); var productName = product.Name; + var account = _protoManager.Index(order.Account); var row = new CargoOrderRow { @@ -219,7 +224,9 @@ namespace Content.Client.Cargo.UI "cargo-console-menu-populate-orders-cargo-order-row-product-name-text", ("productName", productName), ("orderAmount", order.OrderQuantity), - ("orderRequester", order.Requester)) + ("orderRequester", order.Requester), + ("accountColor", account.Color), + ("account", Loc.GetString(account.Code))) }, Description = { @@ -282,6 +289,9 @@ namespace Content.Client.Cargo.UI AccountActionButton.Disabled = TransferSpinBox.Value <= 0 || TransferSpinBox.Value > bankAccount.Accounts[orderConsole.Account] * orderConsole.TransferLimit || _timing.CurTime < orderConsole.NextAccountActionTime; + + OrdersSpacer.Visible = !orderConsole.SlipPrinter; + Orders.Visible = !orderConsole.SlipPrinter; } } } diff --git a/Content.Client/Cargo/UI/CargoOrderRow.xaml b/Content.Client/Cargo/UI/CargoOrderRow.xaml index 22bd2291ae..e4ec95d981 100644 --- a/Content.Client/Cargo/UI/CargoOrderRow.xaml +++ b/Content.Client/Cargo/UI/CargoOrderRow.xaml @@ -11,11 +11,10 @@ - - private void UpdateOverlay(SpriteComponent spriteComponent, DamageVisualsComponent damageVisComp, string damageGroup, FixedPoint2 threshold) + private void UpdateOverlay(Entity entity, string damageGroup, FixedPoint2 threshold) { + var spriteComponent = entity.Comp1; + var damageVisComp = entity.Comp2; + if (damageVisComp.DamageOverlayGroups != null) { if (damageVisComp.DamageOverlayGroups.ContainsKey(damageGroup)) { - spriteComponent.LayerMapTryGet($"DamageOverlay{damageGroup}", out var spriteLayer); + SpriteSystem.LayerMapTryGet((entity, spriteComponent), $"DamageOverlay{damageGroup}", out var spriteLayer, false); - UpdateDamageLayerState(spriteComponent, + UpdateDamageLayerState( + (entity, spriteComponent), spriteLayer, $"DamageOverlay_{damageGroup}", threshold); @@ -683,19 +706,19 @@ public sealed class DamageVisualsSystem : VisualizerSystem - private void UpdateDamageLayerState(SpriteComponent spriteComponent, int spriteLayer, string statePrefix, FixedPoint2 threshold) + private void UpdateDamageLayerState(Entity spriteEnt, int spriteLayer, string statePrefix, FixedPoint2 threshold) { if (threshold == 0) { - spriteComponent.LayerSetVisible(spriteLayer, false); + SpriteSystem.LayerSetVisible(spriteEnt.AsNullable(), spriteLayer, false); } else { - if (!spriteComponent[spriteLayer].Visible) + if (!spriteEnt.Comp[spriteLayer].Visible) { - spriteComponent.LayerSetVisible(spriteLayer, true); + SpriteSystem.LayerSetVisible(spriteEnt.AsNullable(), spriteLayer, true); } - spriteComponent.LayerSetState(spriteLayer, $"{statePrefix}_{threshold}"); + SpriteSystem.LayerSetRsiState(spriteEnt.AsNullable(), spriteLayer, $"{statePrefix}_{threshold}"); } } } diff --git a/Content.Client/Damage/Systems/StaminaSystem.cs b/Content.Client/Damage/Systems/StaminaSystem.cs new file mode 100644 index 0000000000..69eb461a7d --- /dev/null +++ b/Content.Client/Damage/Systems/StaminaSystem.cs @@ -0,0 +1,7 @@ +using Content.Shared.Damage.Systems; + +namespace Content.Client.Damage.Systems; + +public sealed partial class StaminaSystem : SharedStaminaSystem +{ +} diff --git a/Content.Client/DamageState/DamageStateVisualizerSystem.cs b/Content.Client/DamageState/DamageStateVisualizerSystem.cs index 8ed18e7e42..441b09e2c1 100644 --- a/Content.Client/DamageState/DamageStateVisualizerSystem.cs +++ b/Content.Client/DamageState/DamageStateVisualizerSystem.cs @@ -21,34 +21,34 @@ public sealed class DamageStateVisualizerSystem : VisualizerSystem (int) DrawDepth.DeadMobs) + if (sprite.DrawDepth > (int)DrawDepth.DeadMobs) { component.OriginalDrawDepth = sprite.DrawDepth; - sprite.DrawDepth = (int) DrawDepth.DeadMobs; + SpriteSystem.SetDrawDepth((uid, sprite), (int)DrawDepth.DeadMobs); } } else if (component.OriginalDrawDepth != null) { - sprite.DrawDepth = component.OriginalDrawDepth.Value; + SpriteSystem.SetDrawDepth((uid, sprite), component.OriginalDrawDepth.Value); component.OriginalDrawDepth = null; } } diff --git a/Content.Client/Delivery/DeliveryVisualizerSystem.cs b/Content.Client/Delivery/DeliveryVisualizerSystem.cs index bf4a8f066b..846688149f 100644 --- a/Content.Client/Delivery/DeliveryVisualizerSystem.cs +++ b/Content.Client/Delivery/DeliveryVisualizerSystem.cs @@ -9,7 +9,6 @@ public sealed class DeliveryVisualizerSystem : VisualizerSystem UnknownIcon = "JobIconUnknown"; @@ -25,11 +24,11 @@ public sealed class DeliveryVisualizerSystem : VisualizerSystem(job, out var icon)) { - args.Sprite.LayerSetTexture(DeliveryVisualLayers.JobStamp, _sprite.Frame0(_prototype.Index("JobIconUnknown"))); + SpriteSystem.LayerSetTexture((uid, args.Sprite), DeliveryVisualLayers.JobStamp, SpriteSystem.Frame0(_prototype.Index("JobIconUnknown"))); return; } - args.Sprite.LayerSetTexture(DeliveryVisualLayers.JobStamp, _sprite.Frame0(icon.Icon)); + SpriteSystem.LayerSetTexture((uid, args.Sprite), DeliveryVisualLayers.JobStamp, SpriteSystem.Frame0(icon.Icon)); } } @@ -42,6 +41,8 @@ public enum DeliveryVisualLayers : byte PriorityTape, Breakage, Trash, + Bomb, + BombPrimed, } public enum DeliverySpawnerVisualLayers : byte diff --git a/Content.Client/Dice/DiceSystem.cs b/Content.Client/Dice/DiceSystem.cs index 2890de5f2f..2de552f375 100644 --- a/Content.Client/Dice/DiceSystem.cs +++ b/Content.Client/Dice/DiceSystem.cs @@ -5,6 +5,8 @@ namespace Content.Client.Dice; public sealed class DiceSystem : SharedDiceSystem { + [Dependency] private readonly SpriteSystem _sprite = default!; + public override void Initialize() { base.Initialize(); @@ -18,11 +20,11 @@ public sealed class DiceSystem : SharedDiceSystem return; // TODO maybe just move each die to its own RSI? - var state = sprite.LayerGetState(0).Name; + var state = _sprite.LayerGetRsiState((entity.Owner, sprite), 0).Name; if (state == null) return; var prefix = state.Substring(0, state.IndexOf('_')); - sprite.LayerSetState(0, $"{prefix}_{entity.Comp.CurrentValue}"); + _sprite.LayerSetRsiState((entity.Owner, sprite), 0, $"{prefix}_{entity.Comp.CurrentValue}"); } } diff --git a/Content.Client/DisplacementMap/DisplacementMapSystem.cs b/Content.Client/DisplacementMap/DisplacementMapSystem.cs index 9e9ad6135b..94dbc7f00c 100644 --- a/Content.Client/DisplacementMap/DisplacementMapSystem.cs +++ b/Content.Client/DisplacementMap/DisplacementMapSystem.cs @@ -8,18 +8,19 @@ namespace Content.Client.DisplacementMap; public sealed class DisplacementMapSystem : EntitySystem { [Dependency] private readonly ISerializationManager _serialization = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; /// /// Attempting to apply a displacement map to a specific layer of SpriteComponent /// /// Information package for applying the displacement map - /// SpriteComponent + /// Entity with SpriteComponent /// Index of the layer where the new map layer will be added /// Unique layer key, which will determine which layer to apply displacement map to /// The key of the new displacement map layer added by this function. /// public bool TryAddDisplacement(DisplacementData data, - SpriteComponent sprite, + Entity sprite, int index, object key, out string displacementKey) @@ -30,10 +31,9 @@ public sealed class DisplacementMapSystem : EntitySystem return false; if (data.ShaderOverride != null) - sprite.LayerSetShader(index, data.ShaderOverride); + sprite.Comp.LayerSetShader(index, data.ShaderOverride); - if (sprite.LayerMapTryGet(displacementKey, out var oldIndex)) - sprite.RemoveLayer(oldIndex); + _sprite.RemoveLayer(sprite.AsNullable(), displacementKey, false); //allows you not to write it every time in the YML foreach (var pair in data.SizeMaps) @@ -55,7 +55,7 @@ public sealed class DisplacementMapSystem : EntitySystem // We choose a displacement map from the possible ones, matching the size with the original layer size. // If there is no such a map, we use a standard 32 by 32 one var displacementDataLayer = data.SizeMaps[EyeManager.PixelsPerMeter]; - var actualRSI = sprite.LayerGetActualRSI(index); + var actualRSI = _sprite.LayerGetEffectiveRsi(sprite.AsNullable(), index); if (actualRSI is not null) { if (actualRSI.Size.X != actualRSI.Size.Y) @@ -72,9 +72,20 @@ public sealed class DisplacementMapSystem : EntitySystem var displacementLayer = _serialization.CreateCopy(displacementDataLayer, notNullableOverride: true); displacementLayer.CopyToShaderParameters!.LayerKey = key.ToString() ?? "this is impossible"; - sprite.AddLayer(displacementLayer, index); - sprite.LayerMapSet(displacementKey, index); + _sprite.AddLayer(sprite.AsNullable(), displacementLayer, index); + _sprite.LayerMapSet(sprite.AsNullable(), displacementKey, index); return true; } + + /// + [Obsolete("Use the Entity overload")] + public bool TryAddDisplacement(DisplacementData data, + SpriteComponent sprite, + int index, + object key, + out string displacementKey) + { + return TryAddDisplacement(data, (sprite.Owner, sprite), index, key, out displacementKey); + } } diff --git a/Content.Client/Disposal/Unit/DisposalUnitSystem.cs b/Content.Client/Disposal/Unit/DisposalUnitSystem.cs index 8c72cadff3..9e6d5e96a2 100644 --- a/Content.Client/Disposal/Unit/DisposalUnitSystem.cs +++ b/Content.Client/Disposal/Unit/DisposalUnitSystem.cs @@ -13,6 +13,7 @@ public sealed class DisposalUnitSystem : SharedDisposalUnitSystem [Dependency] private readonly AnimationPlayerSystem _animationSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly SharedUserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; private const string AnimationKey = "disposal_unit_animation"; @@ -67,13 +68,13 @@ public sealed class DisposalUnitSystem : SharedDisposalUnitSystem if (!_appearanceSystem.TryGetData(ent, DisposalUnitComponent.Visuals.VisualState, out var state, appearance)) return; - sprite.LayerSetVisible(DisposalUnitVisualLayers.Unanchored, state == DisposalUnitComponent.VisualState.UnAnchored); - sprite.LayerSetVisible(DisposalUnitVisualLayers.Base, state == DisposalUnitComponent.VisualState.Anchored); - sprite.LayerSetVisible(DisposalUnitVisualLayers.OverlayFlush, state == DisposalUnitComponent.VisualState.OverlayFlushing); - sprite.LayerSetVisible(DisposalUnitVisualLayers.BaseCharging, state == DisposalUnitComponent.VisualState.OverlayCharging); + _sprite.LayerSetVisible((ent, sprite), DisposalUnitVisualLayers.Unanchored, state == DisposalUnitComponent.VisualState.UnAnchored); + _sprite.LayerSetVisible((ent, sprite), DisposalUnitVisualLayers.Base, state == DisposalUnitComponent.VisualState.Anchored); + _sprite.LayerSetVisible((ent, sprite), DisposalUnitVisualLayers.OverlayFlush, state == DisposalUnitComponent.VisualState.OverlayFlushing); + _sprite.LayerSetVisible((ent, sprite), DisposalUnitVisualLayers.BaseCharging, state == DisposalUnitComponent.VisualState.OverlayCharging); - var chargingState = sprite.LayerMapTryGet(DisposalUnitVisualLayers.BaseCharging, out var chargingLayer) - ? sprite.LayerGetState(chargingLayer) + var chargingState = _sprite.LayerMapTryGet((ent, sprite), DisposalUnitVisualLayers.BaseCharging, out var chargingLayer, false) + ? _sprite.LayerGetRsiState((ent, sprite), chargingLayer) : new RSI.StateId(DefaultChargeState); // This is a transient state so not too worried about replaying in range. @@ -81,8 +82,8 @@ public sealed class DisposalUnitSystem : SharedDisposalUnitSystem { if (!_animationSystem.HasRunningAnimation(ent, AnimationKey)) { - var flushState = sprite.LayerMapTryGet(DisposalUnitVisualLayers.OverlayFlush, out var flushLayer) - ? sprite.LayerGetState(flushLayer) + var flushState = _sprite.LayerMapTryGet((ent, sprite), DisposalUnitVisualLayers.OverlayFlush, out var flushLayer, false) + ? _sprite.LayerGetRsiState((ent, sprite), flushLayer) : new RSI.StateId(DefaultFlushState); // Setup the flush animation to play @@ -124,16 +125,16 @@ public sealed class DisposalUnitSystem : SharedDisposalUnitSystem if (!_appearanceSystem.TryGetData(ent, DisposalUnitComponent.Visuals.Handle, out var handleState, appearance)) handleState = DisposalUnitComponent.HandleState.Normal; - sprite.LayerSetVisible(DisposalUnitVisualLayers.OverlayEngaged, handleState != DisposalUnitComponent.HandleState.Normal); + _sprite.LayerSetVisible((ent, sprite), DisposalUnitVisualLayers.OverlayEngaged, handleState != DisposalUnitComponent.HandleState.Normal); if (!_appearanceSystem.TryGetData(ent, DisposalUnitComponent.Visuals.Light, out var lightState, appearance)) lightState = DisposalUnitComponent.LightStates.Off; - sprite.LayerSetVisible(DisposalUnitVisualLayers.OverlayCharging, + _sprite.LayerSetVisible((ent, sprite), DisposalUnitVisualLayers.OverlayCharging, (lightState & DisposalUnitComponent.LightStates.Charging) != 0); - sprite.LayerSetVisible(DisposalUnitVisualLayers.OverlayReady, + _sprite.LayerSetVisible((ent, sprite), DisposalUnitVisualLayers.OverlayReady, (lightState & DisposalUnitComponent.LightStates.Ready) != 0); - sprite.LayerSetVisible(DisposalUnitVisualLayers.OverlayFull, + _sprite.LayerSetVisible((ent, sprite), DisposalUnitVisualLayers.OverlayFull, (lightState & DisposalUnitComponent.LightStates.Full) != 0); } } diff --git a/Content.Client/DoAfter/DoAfterOverlay.cs b/Content.Client/DoAfter/DoAfterOverlay.cs index a4565bb71a..6ecd758461 100644 --- a/Content.Client/DoAfter/DoAfterOverlay.cs +++ b/Content.Client/DoAfter/DoAfterOverlay.cs @@ -21,6 +21,7 @@ public sealed class DoAfterOverlay : Overlay private readonly MetaDataSystem _meta; private readonly ProgressColorSystem _progressColor; private readonly SharedContainerSystem _container; + private readonly SpriteSystem _sprite; private readonly Texture _barTexture; private readonly ShaderInstance _unshadedShader; @@ -45,6 +46,7 @@ public sealed class DoAfterOverlay : Overlay _meta = _entManager.EntitySysManager.GetEntitySystem(); _container = _entManager.EntitySysManager.GetEntitySystem(); _progressColor = _entManager.System(); + _sprite = _entManager.System(); var sprite = new SpriteSpecifier.Rsi(new("/Textures/Interface/Misc/progress_bar.rsi"), "icon"); _barTexture = _entManager.EntitySysManager.GetEntitySystem().Frame0(sprite); @@ -118,7 +120,7 @@ public sealed class DoAfterOverlay : Overlay // Use the sprite itself if we know its bounds. This means short or tall sprites don't get overlapped // by the bar. - float yOffset = sprite.Bounds.Height / 2f + 0.05f; + var yOffset = _sprite.GetLocalBounds((uid, sprite)).Height / 2f + 0.05f; // Position above the entity (we've already applied the matrix transform to the entity itself) // Offset by the texture size for every do_after we have. @@ -135,7 +137,7 @@ public sealed class DoAfterOverlay : Overlay if (doAfter.CancelledTime != null) { var elapsed = doAfter.CancelledTime.Value - doAfter.StartTime; - elapsedRatio = (float) Math.Min(1, elapsed.TotalSeconds / doAfter.Args.Delay.TotalSeconds); + elapsedRatio = (float)Math.Min(1, elapsed.TotalSeconds / doAfter.Args.Delay.TotalSeconds); var cancelElapsed = (time - doAfter.CancelledTime.Value).TotalSeconds; var flash = Math.Floor(cancelElapsed / FlashTime) % 2 == 0; color = GetProgressColor(0, flash ? alpha : 0); @@ -143,7 +145,7 @@ public sealed class DoAfterOverlay : Overlay else { var elapsed = time - doAfter.StartTime; - elapsedRatio = (float) Math.Min(1, elapsed.TotalSeconds / doAfter.Args.Delay.TotalSeconds); + elapsedRatio = (float)Math.Min(1, elapsed.TotalSeconds / doAfter.Args.Delay.TotalSeconds); color = GetProgressColor(elapsedRatio, alpha); } diff --git a/Content.Client/Doors/AirlockSystem.cs b/Content.Client/Doors/AirlockSystem.cs index 5d523ec8df..b2667bb705 100644 --- a/Content.Client/Doors/AirlockSystem.cs +++ b/Content.Client/Doors/AirlockSystem.cs @@ -10,6 +10,7 @@ namespace Content.Client.Doors; public sealed class AirlockSystem : SharedAirlockSystem { [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -21,7 +22,7 @@ public sealed class AirlockSystem : SharedAirlockSystem private void OnComponentStartup(EntityUid uid, AirlockComponent comp, ComponentStartup args) { // Has to be on component startup because we don't know what order components initialize in and running this before DoorComponent inits _will_ crash. - if(!TryComp(uid, out var door)) + if (!TryComp(uid, out var door)) return; if (comp.OpenUnlitVisible) // Otherwise there are flashes of the fallback sprite between clicking on the door and the door closing animation starting. @@ -31,17 +32,17 @@ public sealed class AirlockSystem : SharedAirlockSystem } ((Animation)door.OpeningAnimation).AnimationTracks.Add(new AnimationTrackSpriteFlick() - { - LayerKey = DoorVisualLayers.BaseUnlit, - KeyFrames = { new AnimationTrackSpriteFlick.KeyFrame(comp.OpeningSpriteState, 0f) }, - } + { + LayerKey = DoorVisualLayers.BaseUnlit, + KeyFrames = { new AnimationTrackSpriteFlick.KeyFrame(comp.OpeningSpriteState, 0f) }, + } ); ((Animation)door.ClosingAnimation).AnimationTracks.Add(new AnimationTrackSpriteFlick() - { - LayerKey = DoorVisualLayers.BaseUnlit, - KeyFrames = { new AnimationTrackSpriteFlick.KeyFrame(comp.ClosingSpriteState, 0f) }, - } + { + LayerKey = DoorVisualLayers.BaseUnlit, + KeyFrames = { new AnimationTrackSpriteFlick.KeyFrame(comp.ClosingSpriteState, 0f) }, + } ); door.DenyingAnimation = new Animation() @@ -57,19 +58,19 @@ public sealed class AirlockSystem : SharedAirlockSystem } }; - if(!comp.AnimatePanel) + if (!comp.AnimatePanel) return; ((Animation)door.OpeningAnimation).AnimationTracks.Add(new AnimationTrackSpriteFlick() { LayerKey = WiresVisualLayers.MaintenancePanel, - KeyFrames = {new AnimationTrackSpriteFlick.KeyFrame(comp.OpeningPanelSpriteState, 0f)}, + KeyFrames = { new AnimationTrackSpriteFlick.KeyFrame(comp.OpeningPanelSpriteState, 0f) }, }); ((Animation)door.ClosingAnimation).AnimationTracks.Add(new AnimationTrackSpriteFlick { LayerKey = WiresVisualLayers.MaintenancePanel, - KeyFrames = {new AnimationTrackSpriteFlick.KeyFrame(comp.ClosingPanelSpriteState, 0f)}, + KeyFrames = { new AnimationTrackSpriteFlick.KeyFrame(comp.ClosingPanelSpriteState, 0f) }, }); } @@ -101,11 +102,12 @@ public sealed class AirlockSystem : SharedAirlockSystem && !boltedVisible && !emergencyLightsVisible; } - args.Sprite.LayerSetVisible(DoorVisualLayers.BaseUnlit, unlitVisible); - args.Sprite.LayerSetVisible(DoorVisualLayers.BaseBolted, boltedVisible); + _sprite.LayerSetVisible((uid, args.Sprite), DoorVisualLayers.BaseUnlit, unlitVisible); + _sprite.LayerSetVisible((uid, args.Sprite), DoorVisualLayers.BaseBolted, boltedVisible); if (comp.EmergencyAccessLayer) { - args.Sprite.LayerSetVisible( + _sprite.LayerSetVisible( + (uid, args.Sprite), DoorVisualLayers.BaseEmergencyAccess, emergencyLightsVisible && state != DoorState.Open @@ -118,12 +120,12 @@ public sealed class AirlockSystem : SharedAirlockSystem switch (state) { case DoorState.Open: - args.Sprite.LayerSetState(DoorVisualLayers.BaseUnlit, comp.ClosingSpriteState); - args.Sprite.LayerSetAnimationTime(DoorVisualLayers.BaseUnlit, 0); + _sprite.LayerSetRsiState((uid, args.Sprite), DoorVisualLayers.BaseUnlit, comp.ClosingSpriteState); + _sprite.LayerSetAnimationTime((uid, args.Sprite), DoorVisualLayers.BaseUnlit, 0); break; case DoorState.Closed: - args.Sprite.LayerSetState(DoorVisualLayers.BaseUnlit, comp.OpeningSpriteState); - args.Sprite.LayerSetAnimationTime(DoorVisualLayers.BaseUnlit, 0); + _sprite.LayerSetRsiState((uid, args.Sprite), DoorVisualLayers.BaseUnlit, comp.OpeningSpriteState); + _sprite.LayerSetAnimationTime((uid, args.Sprite), DoorVisualLayers.BaseUnlit, 0); break; } } diff --git a/Content.Client/Doors/DoorSystem.cs b/Content.Client/Doors/DoorSystem.cs index 5e3de813d6..cb17cfaf21 100644 --- a/Content.Client/Doors/DoorSystem.cs +++ b/Content.Client/Doors/DoorSystem.cs @@ -11,6 +11,7 @@ public sealed class DoorSystem : SharedDoorSystem { [Dependency] private readonly AnimationPlayerSystem _animationSystem = default!; [Dependency] private readonly IResourceCache _resourceCache = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -85,7 +86,7 @@ public sealed class DoorSystem : SharedDoorSystem state = DoorState.Closed; if (AppearanceSystem.TryGetData(entity, DoorVisuals.BaseRSI, out var baseRsi, args.Component)) - UpdateSpriteLayers(args.Sprite, baseRsi); + UpdateSpriteLayers((entity.Owner, args.Sprite), baseRsi); if (_animationSystem.HasRunningAnimation(entity, DoorComponent.AnimationKey)) _animationSystem.Stop(entity.Owner, DoorComponent.AnimationKey); @@ -95,21 +96,21 @@ public sealed class DoorSystem : SharedDoorSystem private void UpdateAppearanceForDoorState(Entity entity, SpriteComponent sprite, DoorState state) { - sprite.DrawDepth = state is DoorState.Open ? entity.Comp.OpenDrawDepth : entity.Comp.ClosedDrawDepth; + _sprite.SetDrawDepth((entity.Owner, sprite), state is DoorState.Open ? entity.Comp.OpenDrawDepth : entity.Comp.ClosedDrawDepth); switch (state) { case DoorState.Open: foreach (var (layer, layerState) in entity.Comp.OpenSpriteStates) { - sprite.LayerSetState(layer, layerState); + _sprite.LayerSetRsiState((entity.Owner, sprite), layer, layerState); } return; case DoorState.Closed: foreach (var (layer, layerState) in entity.Comp.ClosedSpriteStates) { - sprite.LayerSetState(layer, layerState); + _sprite.LayerSetRsiState((entity.Owner, sprite), layer, layerState); } return; @@ -138,7 +139,7 @@ public sealed class DoorSystem : SharedDoorSystem } } - private void UpdateSpriteLayers(SpriteComponent sprite, string baseRsi) + private void UpdateSpriteLayers(Entity sprite, string baseRsi) { if (!_resourceCache.TryGetResource(SpriteSpecifierSerializer.TextureRoot / baseRsi, out var res)) { @@ -146,6 +147,6 @@ public sealed class DoorSystem : SharedDoorSystem return; } - sprite.BaseRSI = res.RSI; + _sprite.SetBaseRsi(sprite.AsNullable(), res.RSI); } } diff --git a/Content.Client/Doors/FirelockSystem.cs b/Content.Client/Doors/FirelockSystem.cs index 5d357c0c09..6960f14f32 100644 --- a/Content.Client/Doors/FirelockSystem.cs +++ b/Content.Client/Doors/FirelockSystem.cs @@ -8,6 +8,7 @@ namespace Content.Client.Doors; public sealed class FirelockSystem : SharedFirelockSystem { [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -18,7 +19,7 @@ public sealed class FirelockSystem : SharedFirelockSystem protected override void OnComponentStartup(Entity ent, ref ComponentStartup args) { base.OnComponentStartup(ent, ref args); - if(!TryComp(ent.Owner, out var door)) + if (!TryComp(ent.Owner, out var door)) return; door.ClosedSpriteStates.Add((DoorVisualLayers.BaseUnlit, ent.Comp.WarningLightSpriteState)); @@ -57,7 +58,7 @@ public sealed class FirelockSystem : SharedFirelockSystem || state == DoorState.Denying || (_appearanceSystem.TryGetData(uid, DoorVisuals.ClosedLights, out var closedLights, args.Component) && closedLights); - args.Sprite.LayerSetVisible(DoorVisualLayers.BaseUnlit, unlitVisible && !boltedVisible); - args.Sprite.LayerSetVisible(DoorVisualLayers.BaseBolted, boltedVisible); + _sprite.LayerSetVisible((uid, args.Sprite), DoorVisualLayers.BaseUnlit, unlitVisible && !boltedVisible); + _sprite.LayerSetVisible((uid, args.Sprite), DoorVisualLayers.BaseBolted, boltedVisible); } } diff --git a/Content.Client/Doors/TurnstileSystem.cs b/Content.Client/Doors/TurnstileSystem.cs index 6e76ce6aa0..4c1f79f047 100644 --- a/Content.Client/Doors/TurnstileSystem.cs +++ b/Content.Client/Doors/TurnstileSystem.cs @@ -13,8 +13,9 @@ namespace Content.Client.Doors; public sealed class TurnstileSystem : SharedTurnstileSystem { [Dependency] private readonly AnimationPlayerSystem _animationPlayer = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; - private static EntProtoId _examineArrow = "TurnstileArrow"; + private static readonly EntProtoId ExamineArrow = "TurnstileArrow"; private const string AnimationKey = "Turnstile"; @@ -33,12 +34,12 @@ public sealed class TurnstileSystem : SharedTurnstileSystem if (!TryComp(ent, out var sprite)) return; - sprite.LayerSetState(TurnstileVisualLayers.Base, new RSI.StateId(ent.Comp.DefaultState)); + _sprite.LayerSetRsiState((ent.Owner, sprite), TurnstileVisualLayers.Base, new RSI.StateId(ent.Comp.DefaultState)); } private void OnExamined(Entity ent, ref ExaminedEvent args) { - Spawn(_examineArrow, new EntityCoordinates(ent, 0, 0)); + Spawn(ExamineArrow, new EntityCoordinates(ent, 0, 0)); } protected override void PlayAnimation(EntityUid uid, string stateId) diff --git a/Content.Client/Dragon/DragonSystem.cs b/Content.Client/Dragon/DragonSystem.cs index e164798c1e..5a3b346458 100644 --- a/Content.Client/Dragon/DragonSystem.cs +++ b/Content.Client/Dragon/DragonSystem.cs @@ -7,6 +7,7 @@ namespace Content.Client.Dragon; public sealed class DragonSystem : EntitySystem { [Dependency] private readonly SharedPointLightSystem _lights = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -31,7 +32,7 @@ public sealed class DragonSystem : EntitySystem switch (state.State) { case DragonRiftState.Charging: - sprite?.LayerSetColor(0, Color.FromHex("#569fff")); + _sprite.LayerSetColor((uid, sprite), 0, Color.FromHex("#569fff")); if (light != null) { @@ -39,7 +40,7 @@ public sealed class DragonSystem : EntitySystem } break; case DragonRiftState.AlmostFinished: - sprite?.LayerSetColor(0, Color.FromHex("#cf4cff")); + _sprite.LayerSetColor((uid, sprite), 0, Color.FromHex("#cf4cff")); if (light != null) { @@ -47,7 +48,7 @@ public sealed class DragonSystem : EntitySystem } break; case DragonRiftState.Finished: - sprite?.LayerSetColor(0, Color.FromHex("#edbc36")); + _sprite.LayerSetColor((uid, sprite), 0, Color.FromHex("#edbc36")); if (light != null) { diff --git a/Content.Client/Drugs/DrugOverlaySystem.cs b/Content.Client/Drugs/DrugOverlaySystem.cs index 60fdf12f5e..608ae02842 100644 --- a/Content.Client/Drugs/DrugOverlaySystem.cs +++ b/Content.Client/Drugs/DrugOverlaySystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Drugs; using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Shared.Player; +using Robust.Shared.Random; namespace Content.Client.Drugs; @@ -12,6 +13,7 @@ public sealed class DrugOverlaySystem : EntitySystem { [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly IOverlayManager _overlayMan = default!; + [Dependency] private readonly IRobustRandom _random = default!; private RainbowOverlay _overlay = default!; @@ -45,7 +47,10 @@ public sealed class DrugOverlaySystem : EntitySystem private void OnInit(EntityUid uid, SeeingRainbowsComponent component, ComponentInit args) { if (_player.LocalEntity == uid) + { + _overlay.Phase = _random.NextFloat(MathF.Tau); // random starting phase for movement effect _overlayMan.AddOverlay(_overlay); + } } private void OnShutdown(EntityUid uid, SeeingRainbowsComponent component, ComponentShutdown args) diff --git a/Content.Client/Drugs/RainbowOverlay.cs b/Content.Client/Drugs/RainbowOverlay.cs index fb48c91010..4e0bed1264 100644 --- a/Content.Client/Drugs/RainbowOverlay.cs +++ b/Content.Client/Drugs/RainbowOverlay.cs @@ -24,16 +24,27 @@ public sealed class RainbowOverlay : Overlay public float Intoxication = 0.0f; public float TimeTicker = 0.0f; + public float Phase = 0.0f; private const float VisualThreshold = 10.0f; private const float PowerDivisor = 250.0f; + private float _timeScale = 0.0f; + private float _warpScale = 0.0f; private float EffectScale => Math.Clamp((Intoxication - VisualThreshold) / PowerDivisor, 0.0f, 1.0f); public RainbowOverlay() { IoCManager.InjectDependencies(this); + _rainbowShader = _prototypeManager.Index("Rainbow").InstanceUnique(); + _config.OnValueChanged(CCVars.ReducedMotion, OnReducedMotionChanged, invokeImmediately: true); + } + + private void OnReducedMotionChanged(bool reducedMotion) + { + _timeScale = reducedMotion ? 0.0f : 1.0f; + _warpScale = reducedMotion ? 0.0f : 1.0f; } protected override void FrameUpdate(FrameEventArgs args) @@ -51,7 +62,7 @@ public sealed class RainbowOverlay : Overlay if (!statusSys.TryGetTime(playerEntity.Value, DrugOverlaySystem.RainbowKey, out var time, status)) return; - var timeLeft = (float) (time.Value.Item2 - time.Value.Item1).TotalSeconds; + var timeLeft = (float)(time.Value.Item2 - time.Value.Item1).TotalSeconds; TimeTicker += args.DeltaSeconds; @@ -61,7 +72,7 @@ public sealed class RainbowOverlay : Overlay } else { - Intoxication -= Intoxication/(timeLeft - TimeTicker) * args.DeltaSeconds; + Intoxication -= Intoxication / (timeLeft - TimeTicker) * args.DeltaSeconds; } } @@ -78,16 +89,15 @@ public sealed class RainbowOverlay : Overlay protected override void Draw(in OverlayDrawArgs args) { - // TODO disable only the motion part or ike's idea (single static frame of the overlay) - if (_config.GetCVar(CCVars.ReducedMotion)) - return; - if (ScreenTexture == null) return; var handle = args.WorldHandle; _rainbowShader.SetParameter("SCREEN_TEXTURE", ScreenTexture); - _rainbowShader.SetParameter("effectScale", EffectScale); + _rainbowShader.SetParameter("colorScale", EffectScale); + _rainbowShader.SetParameter("timeScale", _timeScale); + _rainbowShader.SetParameter("warpScale", _warpScale * EffectScale); + _rainbowShader.SetParameter("phase", Phase); handle.UseShader(_rainbowShader); handle.DrawRect(args.WorldBounds, Color.White); handle.UseShader(null); diff --git a/Content.Client/Effects/ColorFlashEffectSystem.cs b/Content.Client/Effects/ColorFlashEffectSystem.cs index b584aa9ad1..10a0fbbc11 100644 --- a/Content.Client/Effects/ColorFlashEffectSystem.cs +++ b/Content.Client/Effects/ColorFlashEffectSystem.cs @@ -13,6 +13,7 @@ public sealed class ColorFlashEffectSystem : SharedColorFlashEffectSystem { [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly AnimationPlayerSystem _animation = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; /// /// It's a little on the long side but given we use multiple colours denoting what happened it makes it easier to register. @@ -44,7 +45,7 @@ public sealed class ColorFlashEffectSystem : SharedColorFlashEffectSystem if (TryComp(uid, out var sprite)) { - sprite.Color = component.Color; + _sprite.SetColor((uid, sprite), component.Color); } } diff --git a/Content.Client/Electrocution/ElectrocutionHUDVisualizerSystem.cs b/Content.Client/Electrocution/ElectrocutionHUDVisualizerSystem.cs index b95c0d585d..65b70727c0 100644 --- a/Content.Client/Electrocution/ElectrocutionHUDVisualizerSystem.cs +++ b/Content.Client/Electrocution/ElectrocutionHUDVisualizerSystem.cs @@ -53,15 +53,12 @@ public sealed class ElectrocutionHUDVisualizerSystem : VisualizerSystem(); - while (electrifiedQuery.MoveNext(out var uid, out var _, out var appearanceComp, out var spriteComp)) + while (electrifiedQuery.MoveNext(out var uid, out _, out var appearanceComp, out var spriteComp)) { if (!AppearanceSystem.TryGetData(uid, ElectrifiedVisuals.IsElectrified, out var electrified, appearanceComp)) continue; - if (electrified) - spriteComp.LayerSetVisible(ElectrifiedLayers.HUD, true); - else - spriteComp.LayerSetVisible(ElectrifiedLayers.HUD, false); + SpriteSystem.LayerSetVisible((uid, spriteComp), ElectrifiedLayers.HUD, electrified); } } @@ -70,10 +67,9 @@ public sealed class ElectrocutionHUDVisualizerSystem : VisualizerSystem(); - while (electrifiedQuery.MoveNext(out var uid, out var _, out var appearanceComp, out var spriteComp)) + while (electrifiedQuery.MoveNext(out var uid, out _, out _, out var spriteComp)) { - - spriteComp.LayerSetVisible(ElectrifiedLayers.HUD, false); + SpriteSystem.LayerSetVisible((uid, spriteComp), ElectrifiedLayers.HUD, false); } } @@ -87,9 +83,6 @@ public sealed class ElectrocutionHUDVisualizerSystem : VisualizerSystem(player)) - args.Sprite.LayerSetVisible(ElectrifiedLayers.HUD, true); - else - args.Sprite.LayerSetVisible(ElectrifiedLayers.HUD, false); + SpriteSystem.LayerSetVisible((uid, args.Sprite), ElectrifiedLayers.HUD, electrified && HasComp(player)); } } diff --git a/Content.Client/Ensnaring/EnsnareableSystem.cs b/Content.Client/Ensnaring/EnsnareableSystem.cs index 6861bd8f09..ae853fb55c 100644 --- a/Content.Client/Ensnaring/EnsnareableSystem.cs +++ b/Content.Client/Ensnaring/EnsnareableSystem.cs @@ -1,12 +1,14 @@ using Content.Shared.Ensnaring; using Content.Shared.Ensnaring.Components; using Robust.Client.GameObjects; +using Robust.Shared.Utility; namespace Content.Client.Ensnaring; public sealed class EnsnareableSystem : SharedEnsnareableSystem { [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -19,25 +21,25 @@ public sealed class EnsnareableSystem : SharedEnsnareableSystem { base.OnEnsnareInit(ent, ref args); - if(!TryComp(ent.Owner, out var sprite)) + if (!TryComp(ent.Owner, out var sprite)) return; // TODO remove this, this should just be in yaml. - sprite.LayerMapReserveBlank(EnsnaredVisualLayers.Ensnared); + _sprite.LayerMapReserve((ent.Owner, sprite), EnsnaredVisualLayers.Ensnared); } private void OnAppearanceChange(EntityUid uid, EnsnareableComponent component, ref AppearanceChangeEvent args) { - if (args.Sprite == null || !args.Sprite.LayerMapTryGet(EnsnaredVisualLayers.Ensnared, out var layer)) + if (args.Sprite == null || !_sprite.LayerMapTryGet((uid, args.Sprite), EnsnaredVisualLayers.Ensnared, out var layer, false)) return; if (_appearance.TryGetData(uid, EnsnareableVisuals.IsEnsnared, out var isEnsnared, args.Component)) { if (component.Sprite != null) { - args.Sprite.LayerSetRSI(layer, component.Sprite); - args.Sprite.LayerSetState(layer, component.State); - args.Sprite.LayerSetVisible(layer, isEnsnared); + _sprite.LayerSetRsi((uid, args.Sprite), layer, new ResPath(component.Sprite)); + _sprite.LayerSetRsiState((uid, args.Sprite), layer, component.State); + _sprite.LayerSetVisible((uid, args.Sprite), layer, isEnsnared); } } } diff --git a/Content.Client/Explosion/ClusterGrenadeVisualizerSystem.cs b/Content.Client/Explosion/ClusterGrenadeVisualizerSystem.cs index c8171742dc..025d72270e 100644 --- a/Content.Client/Explosion/ClusterGrenadeVisualizerSystem.cs +++ b/Content.Client/Explosion/ClusterGrenadeVisualizerSystem.cs @@ -12,6 +12,6 @@ public sealed class ClusterGrenadeVisualizerSystem : VisualizerSystem(uid, ClusterGrenadeVisuals.GrenadesCounter, out var grenadesCounter, args.Component)) - args.Sprite.LayerSetState(0, $"{comp.State}-{grenadesCounter}"); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), 0, $"{comp.State}-{grenadesCounter}"); } } diff --git a/Content.Client/Explosion/ExplosionOverlaySystem.cs b/Content.Client/Explosion/ExplosionOverlaySystem.cs index 7e43bbdc38..8a4ce99f14 100644 --- a/Content.Client/Explosion/ExplosionOverlaySystem.cs +++ b/Content.Client/Explosion/ExplosionOverlaySystem.cs @@ -4,7 +4,6 @@ using Robust.Client.Graphics; using Robust.Client.ResourceManagement; using Robust.Shared.GameStates; using Robust.Shared.Graphics.RSI; -using Robust.Shared.Map; using Robust.Shared.Prototypes; namespace Content.Client.Explosion; @@ -19,7 +18,7 @@ public sealed class ExplosionOverlaySystem : EntitySystem [Dependency] private readonly IResourceCache _resCache = default!; [Dependency] private readonly IOverlayManager _overlayMan = default!; [Dependency] private readonly SharedPointLightSystem _lights = default!; - [Dependency] private readonly IMapManager _mapMan = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; public override void Initialize() @@ -69,7 +68,7 @@ public sealed class ExplosionOverlaySystem : EntitySystem } // Map may have been deleted. - if (_mapMan.MapExists(component.Epicenter.MapId)) + if (_mapSystem.MapExists(component.Epicenter.MapId)) { // spawn in a client-side light source at the epicenter var lightEntity = Spawn("ExplosionLight", component.Epicenter); diff --git a/Content.Client/Explosion/TriggerSystem.Proximity.cs b/Content.Client/Explosion/TriggerSystem.Proximity.cs index 8f3ab86a70..d49f483664 100644 --- a/Content.Client/Explosion/TriggerSystem.Proximity.cs +++ b/Content.Client/Explosion/TriggerSystem.Proximity.cs @@ -9,6 +9,7 @@ public sealed partial class TriggerSystem { [Dependency] private readonly AnimationPlayerSystem _player = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; /* * Currently all of the appearance stuff is hardcoded for portable flashers @@ -79,7 +80,7 @@ public sealed partial class TriggerSystem if (!_appearance.TryGetData(uid, ProximityTriggerVisualState.State, out var state, appearance)) return; - if (!spriteComponent.LayerMapTryGet(ProximityTriggerVisualLayers.Base, out var layer)) + if (!_sprite.LayerMapTryGet((uid, spriteComponent), ProximityTriggerVisualLayers.Base, out var layer, false)) // Don't do anything if the sprite doesn't have the layer. return; @@ -89,7 +90,7 @@ public sealed partial class TriggerSystem // Don't interrupt the flash animation if (_player.HasRunningAnimation(uid, player, AnimKey)) return; _player.Stop(uid, player, AnimKey); - spriteComponent.LayerSetState(layer, "on"); + _sprite.LayerSetRsiState((uid, spriteComponent), layer, "on"); break; case ProximityTriggerVisuals.Active: if (_player.HasRunningAnimation(uid, player, AnimKey)) return; @@ -98,7 +99,7 @@ public sealed partial class TriggerSystem case ProximityTriggerVisuals.Off: default: _player.Stop(uid, player, AnimKey); - spriteComponent.LayerSetState(layer, "off"); + _sprite.LayerSetRsiState((uid, spriteComponent), layer, "off"); break; } } diff --git a/Content.Client/Fax/UI/FaxWindow.xaml b/Content.Client/Fax/UI/FaxWindow.xaml index 6de7d134c1..d78686ff70 100644 --- a/Content.Client/Fax/UI/FaxWindow.xaml +++ b/Content.Client/Fax/UI/FaxWindow.xaml @@ -1,45 +1,119 @@ - - - - - - - - - - - Sunrise-Edit <--> - - + + + + + + + + + + [UsedImplicitly, GenerateTypedNameReferences] -public sealed partial class GuideMicrowaveEmbed : PanelContainer, IDocumentTag, ISearchableControl +public sealed partial class GuideMicrowaveEmbed : PanelContainer, IDocumentTag, ISearchableControl, IPrototypeRepresentationControl { [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly ILogManager _logManager = default!; - private ISawmill _sawmill = default!; + private readonly ISawmill _sawmill = default!; + + public IPrototype? RepresentedPrototype { get; private set; } public GuideMicrowaveEmbed() { @@ -32,7 +34,7 @@ public sealed partial class GuideMicrowaveEmbed : PanelContainer, IDocumentTag, IoCManager.InjectDependencies(this); MouseFilter = MouseFilterMode.Stop; - _sawmill = _logManager.GetSawmill("guidemicrowaveembed"); + _sawmill = _logManager.GetSawmill("guidebook.microwave"); } public GuideMicrowaveEmbed(string recipe) : this() @@ -80,6 +82,8 @@ public sealed partial class GuideMicrowaveEmbed : PanelContainer, IDocumentTag, { var entity = _prototype.Index(recipe.Result); + RepresentedPrototype = entity; + IconContainer.AddChild(new GuideEntityEmbed(recipe.Result, false, false)); ResultName.SetMarkup(entity.Name); ResultDescription.SetMarkup(entity.Description); @@ -99,8 +103,9 @@ public sealed partial class GuideMicrowaveEmbed : PanelContainer, IDocumentTag, solidNameMsg.AddMarkupOrThrow(Loc.GetString("guidebook-microwave-solid-name-display", ("ingredient", ingredient.Name))); solidNameMsg.Pop(); - var solidNameLabel = new RichTextLabel(); + var solidNameLabel = new GuidebookRichPrototypeLink(); solidNameLabel.SetMessage(solidNameMsg); + solidNameLabel.LinkedPrototype = ingredient; IngredientsGrid.AddChild(solidNameLabel); @@ -129,9 +134,10 @@ public sealed partial class GuideMicrowaveEmbed : PanelContainer, IDocumentTag, liquidColorMsg.AddMarkupOrThrow(Loc.GetString("guidebook-microwave-reagent-color-display", ("color", reagent.SubstanceColor))); liquidColorMsg.Pop(); - var liquidColorLabel = new RichTextLabel(); + var liquidColorLabel = new GuidebookRichPrototypeLink(); liquidColorLabel.SetMessage(liquidColorMsg); liquidColorLabel.HorizontalAlignment = Control.HAlignment.Center; + liquidColorLabel.LinkedPrototype = reagent; IngredientsGrid.AddChild(liquidColorLabel); diff --git a/Content.Client/Guidebook/Controls/GuideMicrowaveGroupEmbed.cs b/Content.Client/Guidebook/Controls/GuideMicrowaveGroupEmbed.cs index 098e99459c..7c2a0ecfe1 100644 --- a/Content.Client/Guidebook/Controls/GuideMicrowaveGroupEmbed.cs +++ b/Content.Client/Guidebook/Controls/GuideMicrowaveGroupEmbed.cs @@ -15,12 +15,16 @@ namespace Content.Client.Guidebook.Controls; [UsedImplicitly] public sealed partial class GuideMicrowaveGroupEmbed : BoxContainer, IDocumentTag { + [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; + private readonly ISawmill _sawmill; + public GuideMicrowaveGroupEmbed() { Orientation = LayoutOrientation.Vertical; IoCManager.InjectDependencies(this); + _sawmill = _logManager.GetSawmill("guidebook.microwave_group"); MouseFilter = MouseFilterMode.Stop; } @@ -34,7 +38,7 @@ public sealed partial class GuideMicrowaveGroupEmbed : BoxContainer, IDocumentTa control = null; if (!args.TryGetValue("Group", out var group)) { - Logger.Error("Microwave group embed tag is missing group argument"); + _sawmill.Error("Microwave group embed tag is missing group argument"); return false; } diff --git a/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs b/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs index f8d1c7e972..29569e40e6 100644 --- a/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs +++ b/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs @@ -22,17 +22,22 @@ namespace Content.Client.Guidebook.Controls; /// Control for embedding a reagent into a guidebook. /// [UsedImplicitly, GenerateTypedNameReferences] -public sealed partial class GuideReagentEmbed : BoxContainer, IDocumentTag, ISearchableControl +public sealed partial class GuideReagentEmbed : BoxContainer, IDocumentTag, ISearchableControl, IPrototypeRepresentationControl { [Dependency] private readonly IEntitySystemManager _systemManager = default!; + [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; private readonly ChemistryGuideDataSystem _chemistryGuideData; + private readonly ISawmill _sawmill; + + public IPrototype? RepresentedPrototype { get; private set; } public GuideReagentEmbed() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + _sawmill = _logManager.GetSawmill("guidebook.reagent"); _chemistryGuideData = _systemManager.GetEntitySystem(); MouseFilter = MouseFilterMode.Stop; } @@ -62,13 +67,13 @@ public sealed partial class GuideReagentEmbed : BoxContainer, IDocumentTag, ISea control = null; if (!args.TryGetValue("Reagent", out var id)) { - Logger.Error("Reagent embed tag is missing reagent prototype argument"); + _sawmill.Error("Reagent embed tag is missing reagent prototype argument"); return false; } if (!_prototype.TryIndex(id, out var reagent)) { - Logger.Error($"Specified reagent prototype \"{id}\" is not a valid reagent prototype"); + _sawmill.Error($"Specified reagent prototype \"{id}\" is not a valid reagent prototype"); return false; } @@ -80,6 +85,8 @@ public sealed partial class GuideReagentEmbed : BoxContainer, IDocumentTag, ISea private void GenerateControl(ReagentPrototype reagent) { + RepresentedPrototype = reagent; + NameBackground.PanelOverride = new StyleBoxFlat { BackgroundColor = reagent.SubstanceColor diff --git a/Content.Client/Guidebook/Controls/GuideReagentGroupEmbed.xaml.cs b/Content.Client/Guidebook/Controls/GuideReagentGroupEmbed.xaml.cs index 0c9356eccb..5373034b42 100644 --- a/Content.Client/Guidebook/Controls/GuideReagentGroupEmbed.xaml.cs +++ b/Content.Client/Guidebook/Controls/GuideReagentGroupEmbed.xaml.cs @@ -17,12 +17,16 @@ namespace Content.Client.Guidebook.Controls; [UsedImplicitly, GenerateTypedNameReferences] public sealed partial class GuideReagentGroupEmbed : BoxContainer, IDocumentTag { + [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; + private readonly ISawmill _sawmill; + public GuideReagentGroupEmbed() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + _sawmill = _logManager.GetSawmill("guidebook.reagent_group"); MouseFilter = MouseFilterMode.Stop; } @@ -42,7 +46,7 @@ public sealed partial class GuideReagentGroupEmbed : BoxContainer, IDocumentTag control = null; if (!args.TryGetValue("Group", out var group)) { - Logger.Error("Reagent group embed tag is missing group argument"); + _sawmill.Error("Reagent group embed tag is missing group argument"); return false; } diff --git a/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml b/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml index 5b871644ea..b84d833628 100644 --- a/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml +++ b/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml @@ -4,13 +4,11 @@ HorizontalExpand="True" Margin="0 0 0 5"> - - + + + - + + + diff --git a/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml.cs b/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml.cs index 135dc5522a..29ed124422 100644 --- a/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml.cs +++ b/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml.cs @@ -34,16 +34,16 @@ public sealed partial class GuideReagentReaction : BoxContainer, ISearchableCont public GuideReagentReaction(ReactionPrototype prototype, IPrototypeManager protoMan, IEntitySystemManager sysMan) : this(protoMan) { - var reactantsLabel = ReactantsLabel; - SetReagents(prototype.Reactants, ref reactantsLabel, protoMan); - var productLabel = ProductsLabel; + Container container = ReactantsContainer; + SetReagents(prototype.Reactants, ref container, protoMan); + Container productContainer = ProductsContainer; var products = new Dictionary(prototype.Products); foreach (var (reagent, reactantProto) in prototype.Reactants) { if (reactantProto.Catalyst) products.Add(reagent, reactantProto.Amount); } - SetReagents(products, ref productLabel, protoMan); + SetReagents(products, ref productContainer, protoMan, false); var mixingCategories = new List(); if (prototype.MixingCategories != null) @@ -85,8 +85,8 @@ public sealed partial class GuideReagentReaction : BoxContainer, ISearchableCont entContainer.AddChild(nameLabel); ReactantsContainer.AddChild(entContainer); - var productLabel = ProductsLabel; - SetReagents(solution.Contents, ref productLabel, protoMan); + Container productContainer = ProductsContainer; + SetReagents(solution.Contents, ref productContainer, protoMan, false); SetMixingCategory(categories, null, sysMan); } @@ -95,75 +95,80 @@ public sealed partial class GuideReagentReaction : BoxContainer, ISearchableCont IPrototypeManager protoMan, IEntitySystemManager sysMan) : this(protoMan) { - ReactantsLabel.Visible = true; - ReactantsLabel.SetMarkup(Loc.GetString("guidebook-reagent-sources-gas-wrapper", + var label = new RichTextLabel(); + label.SetMarkup(Loc.GetString("guidebook-reagent-sources-gas-wrapper", ("name", Loc.GetString(prototype.Name).ToLower()))); + ReactantsContainer.Visible = true; + ReactantsContainer.AddChild(label); + if (prototype.Reagent != null) { var quantity = new Dictionary { { prototype.Reagent, FixedPoint2.New(0.21f) } }; - var productLabel = ProductsLabel; - SetReagents(quantity, ref productLabel, protoMan); + Container productContainer = ProductsContainer; + SetReagents(quantity, ref productContainer, protoMan, false); } SetMixingCategory(categories, null, sysMan); } - private void SetReagents(List reagents, ref RichTextLabel label, IPrototypeManager protoMan) + private void SetReagents(List reagents, ref Container container, IPrototypeManager protoMan, bool addLinks = true) { var amounts = new Dictionary(); foreach (var (reagent, quantity) in reagents) { amounts.Add(reagent.Prototype, quantity); } - SetReagents(amounts, ref label, protoMan); + SetReagents(amounts, ref container, protoMan, addLinks); } private void SetReagents( Dictionary reactants, - ref RichTextLabel label, - IPrototypeManager protoMan) + ref Container container, + IPrototypeManager protoMan, + bool addLinks = true) { var amounts = new Dictionary(); foreach (var (reagent, reactantPrototype) in reactants) { amounts.Add(reagent, reactantPrototype.Amount); } - SetReagents(amounts, ref label, protoMan); + SetReagents(amounts, ref container, protoMan, addLinks); } [PublicAPI] private void SetReagents( Dictionary, ReactantPrototype> reactants, - ref RichTextLabel label, - IPrototypeManager protoMan) + ref Container container, + IPrototypeManager protoMan, + bool addLinks = true) { var amounts = new Dictionary(); foreach (var (reagent, reactantPrototype) in reactants) { amounts.Add(reagent, reactantPrototype.Amount); } - SetReagents(amounts, ref label, protoMan); + SetReagents(amounts, ref container, protoMan, addLinks); } - private void SetReagents(Dictionary reagents, ref RichTextLabel label, IPrototypeManager protoMan) + private void SetReagents(Dictionary reagents, ref Container container, IPrototypeManager protoMan, bool addLinks = true) { - var msg = new FormattedMessage(); - var reagentCount = reagents.Count; - var i = 0; foreach (var (product, amount) in reagents.OrderByDescending(p => p.Value)) { + var productProto = protoMan.Index(product); + var msg = new FormattedMessage(); msg.AddMarkupOrThrow(Loc.GetString("guidebook-reagent-recipes-reagent-display", - ("reagent", protoMan.Index(product).LocalizedName), ("ratio", amount))); - i++; - if (i < reagentCount) - msg.PushNewline(); + ("reagent", productProto.LocalizedName), ("ratio", amount))); + + var label = new GuidebookRichPrototypeLink(); + if (addLinks) + label.LinkedPrototype = productProto; + label.SetMessage(msg); + container.AddChild(label); } - msg.Pop(); - label.SetMessage(msg); - label.Visible = true; + container.Visible = true; } private void SetMixingCategory(IReadOnlyList> mixingCategories, ReactionPrototype? prototype, IEntitySystemManager sysMan) diff --git a/Content.Client/Guidebook/Controls/GuideTechDisciplineEmbed.xaml.cs b/Content.Client/Guidebook/Controls/GuideTechDisciplineEmbed.xaml.cs index 88d264cb05..a01f2a8f17 100644 --- a/Content.Client/Guidebook/Controls/GuideTechDisciplineEmbed.xaml.cs +++ b/Content.Client/Guidebook/Controls/GuideTechDisciplineEmbed.xaml.cs @@ -17,12 +17,16 @@ namespace Content.Client.Guidebook.Controls; [UsedImplicitly, GenerateTypedNameReferences] public sealed partial class GuideTechDisciplineEmbed : BoxContainer, IDocumentTag { + [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; + private readonly ISawmill _sawmill; + public GuideTechDisciplineEmbed() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + _sawmill = _logManager.GetSawmill("guidebook.tech_discipline"); MouseFilter = MouseFilterMode.Stop; } @@ -42,7 +46,7 @@ public sealed partial class GuideTechDisciplineEmbed : BoxContainer, IDocumentTa control = null; if (!args.TryGetValue("Discipline", out var group)) { - Logger.Error("Technology discipline embed tag is missing discipline argument"); + _sawmill.Error("Technology discipline embed tag is missing discipline argument"); return false; } diff --git a/Content.Client/Guidebook/Controls/GuideTechnologyEmbed.xaml.cs b/Content.Client/Guidebook/Controls/GuideTechnologyEmbed.xaml.cs index d61cc2d961..7d205f7cea 100644 --- a/Content.Client/Guidebook/Controls/GuideTechnologyEmbed.xaml.cs +++ b/Content.Client/Guidebook/Controls/GuideTechnologyEmbed.xaml.cs @@ -22,10 +22,12 @@ namespace Content.Client.Guidebook.Controls; public sealed partial class GuideTechnologyEmbed : BoxContainer, IDocumentTag, ISearchableControl { [Dependency] private readonly IEntitySystemManager _systemManager = default!; + [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; private readonly ResearchSystem _research; private readonly SpriteSystem _sprite; + private readonly ISawmill _sawmill; public GuideTechnologyEmbed() { @@ -33,6 +35,7 @@ public sealed partial class GuideTechnologyEmbed : BoxContainer, IDocumentTag, I IoCManager.InjectDependencies(this); _research = _systemManager.GetEntitySystem(); _sprite = _systemManager.GetEntitySystem(); + _sawmill = _logManager.GetSawmill("guidebook.technology"); MouseFilter = MouseFilterMode.Stop; } @@ -61,13 +64,13 @@ public sealed partial class GuideTechnologyEmbed : BoxContainer, IDocumentTag, I control = null; if (!args.TryGetValue("Technology", out var id)) { - Logger.Error("Technology embed tag is missing technology prototype argument"); + _sawmill.Error("Technology embed tag is missing technology prototype argument"); return false; } if (!_prototype.TryIndex(id, out var technology)) { - Logger.Error($"Specified technology prototype \"{id}\" is not a valid technology prototype"); + _sawmill.Error($"Specified technology prototype \"{id}\" is not a valid technology prototype"); return false; } diff --git a/Content.Client/Guidebook/Controls/GuidebookRichPrototypeLink.cs b/Content.Client/Guidebook/Controls/GuidebookRichPrototypeLink.cs new file mode 100644 index 0000000000..b54dd8b701 --- /dev/null +++ b/Content.Client/Guidebook/Controls/GuidebookRichPrototypeLink.cs @@ -0,0 +1,71 @@ +using Content.Client.Guidebook.RichText; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Shared.Input; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; +using Content.Client.UserInterface.ControlExtensions; + +namespace Content.Client.Guidebook.Controls; + +/// +/// A RichTextLabel which is a link to a specified IPrototype. +/// The link is activated by the owner if the prototype is represented +/// somewhere in the same document. +/// +public sealed class GuidebookRichPrototypeLink : Control, IPrototypeLinkControl +{ + private bool _linkActive = false; + private FormattedMessage? _message; + private readonly RichTextLabel _richTextLabel; + + public void EnablePrototypeLink() + { + if (_message == null) + return; + + _linkActive = true; + + DefaultCursorShape = CursorShape.Hand; + + _richTextLabel.SetMessage(_message, null, TextLinkTag.LinkColor); + } + + public GuidebookRichPrototypeLink() : base() + { + MouseFilter = MouseFilterMode.Pass; + OnKeyBindDown += HandleClick; + _richTextLabel = new RichTextLabel(); + AddChild(_richTextLabel); + } + + public void SetMessage(FormattedMessage message) + { + _message = message; + _richTextLabel.SetMessage(_message); + } + + public IPrototype? LinkedPrototype { get; set; } + + private void HandleClick(GUIBoundKeyEventArgs args) + { + if (!_linkActive) + return; + + if (args.Function != EngineKeyFunctions.UIClick) + return; + + if (this.TryGetParentHandler(out var handler)) + { + handler.HandleAnchor(this); + args.Handle(); + } + else + Logger.Warning("Warning! No valid IAnchorClickHandler found."); + } +} + +public interface IAnchorClickHandler +{ + public void HandleAnchor(IPrototypeLinkControl prototypeLinkControl); +} diff --git a/Content.Client/Guidebook/Controls/GuidebookWindow.xaml.cs b/Content.Client/Guidebook/Controls/GuidebookWindow.xaml.cs index 5d2d227b3d..677105df00 100644 --- a/Content.Client/Guidebook/Controls/GuidebookWindow.xaml.cs +++ b/Content.Client/Guidebook/Controls/GuidebookWindow.xaml.cs @@ -1,3 +1,4 @@ +using System.Diagnostics; using System.Linq; using Content.Client.Guidebook.RichText; using Content.Client.UserInterface.ControlExtensions; @@ -6,6 +7,7 @@ using Content.Client.UserInterface.Controls.FancyTree; using Content.Client.UserInterface.Systems.Info; using Content.Shared.Guidebook; using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared.ContentPack; @@ -14,7 +16,7 @@ using Robust.Shared.Prototypes; namespace Content.Client.Guidebook.Controls; [GenerateTypedNameReferences] -public sealed partial class GuidebookWindow : FancyWindow, ILinkClickHandler +public sealed partial class GuidebookWindow : FancyWindow, ILinkClickHandler, IAnchorClickHandler { [Dependency] private readonly DocumentParsingManager _parsingMan = default!; [Dependency] private readonly IResourceManager _resourceManager = default!; @@ -29,7 +31,7 @@ public sealed partial class GuidebookWindow : FancyWindow, ILinkClickHandler { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); - _sawmill = Logger.GetSawmill("Guidebook"); + _sawmill = Logger.GetSawmill("guidebook"); Tree.OnSelectedItemChanged += OnSelectionChanged; @@ -53,6 +55,38 @@ public sealed partial class GuidebookWindow : FancyWindow, ILinkClickHandler ShowGuide(entry); } + public void HandleAnchor(IPrototypeLinkControl prototypeLinkControl) + { + var prototype = prototypeLinkControl.LinkedPrototype; + if (prototype == null) + return; + + var (linkableControls, _) = GetLinkableControlsAndLinks(EntryContainer); + foreach (var linkableControl in linkableControls) + { + if (linkableControl.RepresentedPrototype != prototype) + continue; + + if (linkableControl is not Control control) + return; + + // Check if the target item is currently filtered out + if (!control.Visible) + control.Visible = true; + + UserInterfaceManager.DeferAction(() => + { + if (control.GetControlScrollPosition() is not {} position) + return; + + Scroll.HScrollTarget = position.X; + Scroll.VScrollTarget = position.Y; + }); + + break; + } + } + private void OnSelectionChanged(TreeItem? item) { if (item != null && item.Metadata is GuideEntry entry) @@ -94,6 +128,23 @@ public sealed partial class GuidebookWindow : FancyWindow, ILinkClickHandler } LastEntry = entry.Id; + + var (linkableControls, linkControls) = GetLinkableControlsAndLinks(EntryContainer); + + HashSet availablePrototypeLinks = new(); + foreach (var linkableControl in linkableControls) + { + var prototype = linkableControl.RepresentedPrototype; + if (prototype != null) + availablePrototypeLinks.Add(prototype); + } + + foreach (var linkControl in linkControls) + { + var prototype = linkControl.LinkedPrototype; + if (prototype != null && availablePrototypeLinks.Contains(prototype)) + linkControl.EnablePrototypeLink(); + } } public void UpdateGuides( @@ -174,7 +225,7 @@ public sealed partial class GuidebookWindow : FancyWindow, ILinkClickHandler { // TODO GUIDEBOOK Maybe allow duplicate entries? // E.g., for adding medicine under both chemicals & the chemist job - Logger.Error($"Adding duplicate guide entry: {id}"); + _sawmill.Error($"Adding duplicate guide entry: {id}"); return null; } @@ -209,4 +260,30 @@ public sealed partial class GuidebookWindow : FancyWindow, ILinkClickHandler } } } + + private static (List, List) GetLinkableControlsAndLinks(Control parent) + { + List linkableList = new(); + List linkList = new(); + + foreach (var child in parent.Children) + { + var hasChildren = child.ChildCount > 0; + + if (child is IPrototypeLinkControl linkChild) + linkList.Add(linkChild); + else if (child is IPrototypeRepresentationControl linkableChild) + linkableList.Add(linkableChild); + + if (!hasChildren) + continue; + + var (childLinkableList, childLinkList) = GetLinkableControlsAndLinks(child); + + linkableList.AddRange(childLinkableList); + linkList.AddRange(childLinkList); + } + + return (linkableList, linkList); + } } diff --git a/Content.Client/Guidebook/Controls/IPrototypeLinkControl.cs b/Content.Client/Guidebook/Controls/IPrototypeLinkControl.cs new file mode 100644 index 0000000000..51406e3cc2 --- /dev/null +++ b/Content.Client/Guidebook/Controls/IPrototypeLinkControl.cs @@ -0,0 +1,28 @@ +using Robust.Shared.Prototypes; + +namespace Content.Client.Guidebook.Controls; + +/// +/// Interface for controls which represent a Prototype +/// These can be linked to from a IPrototypeLinkControl +/// +public interface IPrototypeRepresentationControl +{ + // The prototype that this control represents + public IPrototype? RepresentedPrototype { get; } +} + +/// +/// Interface for controls which can be clicked to navigate +/// to a specified prototype representation on the same page. +/// +public interface IPrototypeLinkControl +{ + // This control is a link to the specified prototype + public IPrototype? LinkedPrototype { get; } + + // Initially the link will not be enabled, + // the owner can enable the link once there is a valid target + // for the Prototype link. + public void EnablePrototypeLink(); +} diff --git a/Content.Client/Guidebook/Richtext/TextLinkTag.cs b/Content.Client/Guidebook/Richtext/TextLinkTag.cs index b1e8460bb8..27aaa71939 100644 --- a/Content.Client/Guidebook/Richtext/TextLinkTag.cs +++ b/Content.Client/Guidebook/Richtext/TextLinkTag.cs @@ -5,12 +5,15 @@ using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.RichText; using Robust.Shared.Input; using Robust.Shared.Utility; +using Content.Client.UserInterface.ControlExtensions; namespace Content.Client.Guidebook.RichText; [UsedImplicitly] public sealed class TextLinkTag : IMarkupTag { + public static Color LinkColor => Color.CornflowerBlue; + public string Name => "textlink"; public Control? Control; @@ -30,7 +33,7 @@ public sealed class TextLinkTag : IMarkupTag label.Text = text; label.MouseFilter = Control.MouseFilterMode.Stop; - label.FontColorOverride = Color.CornflowerBlue; + label.FontColorOverride = LinkColor; label.DefaultCursorShape = Control.CursorShape.Hand; label.OnMouseEntered += _ => label.FontColorOverride = Color.LightSkyBlue; @@ -50,17 +53,10 @@ public sealed class TextLinkTag : IMarkupTag if (Control == null) return; - var current = Control; - while (current != null) - { - current = current.Parent; - - if (current is not ILinkClickHandler handler) - continue; + if (Control.TryGetParentHandler(out var handler)) handler.HandleClick(link); - return; - } - Logger.Warning($"Warning! No valid ILinkClickHandler found."); + else + Logger.Warning("Warning! No valid ILinkClickHandler found."); } } diff --git a/Content.Client/Hands/Systems/HandsSystem.cs b/Content.Client/Hands/Systems/HandsSystem.cs index 7e4484fde6..ab389a49d5 100644 --- a/Content.Client/Hands/Systems/HandsSystem.cs +++ b/Content.Client/Hands/Systems/HandsSystem.cs @@ -17,6 +17,7 @@ using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Player; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Client.Hands.Systems { @@ -28,6 +29,7 @@ namespace Content.Client.Hands.Systems [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly StrippableSystem _stripSys = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; [Dependency] private readonly ExamineSystem _examine = default!; [Dependency] private readonly DisplacementMapSystem _displacement = default!; @@ -297,7 +299,7 @@ namespace Content.Client.Hands.Systems { foreach (var key in revealedLayers) { - sprite.RemoveLayer(key); + _sprite.RemoveLayer((uid, sprite), key); } revealedLayers.Clear(); @@ -333,7 +335,7 @@ namespace Content.Client.Hands.Systems continue; } - var index = sprite.LayerMapReserveBlank(key); + var index = _sprite.LayerMapReserve((uid, sprite), key); // In case no RSI is given, use the item's base RSI as a default. This cuts down on a lot of unnecessary yaml entries. if (layerData.RsiPath == null @@ -341,12 +343,12 @@ namespace Content.Client.Hands.Systems && sprite[index].Rsi == null) { if (TryComp(held, out var itemComponent) && itemComponent.RsiPath != null) - sprite.LayerSetRSI(index, itemComponent.RsiPath); + _sprite.LayerSetRsi((uid, sprite), index, new ResPath(itemComponent.RsiPath)); else if (TryComp(held, out SpriteComponent? clothingSprite)) - sprite.LayerSetRSI(index, clothingSprite.BaseRSI); + _sprite.LayerSetRsi((uid, sprite), index, clothingSprite.BaseRSI); } - sprite.LayerSetData(index, layerData); + _sprite.LayerSetData((uid, sprite), index, layerData); // Add displacement maps var displacement = hand.Location switch @@ -356,7 +358,7 @@ namespace Content.Client.Hands.Systems _ => handComp.HandDisplacement }; - if (displacement is not null && _displacement.TryAddDisplacement(displacement, sprite, index, key, out var displacementKey)) + if (displacement is not null && _displacement.TryAddDisplacement(displacement, (uid, sprite), index, key, out var displacementKey)) revealedLayers.Add(displacementKey); } diff --git a/Content.Client/Holiday/HolidaySystem.cs b/Content.Client/Holiday/HolidaySystem.cs index ecadf11393..8300d28887 100644 --- a/Content.Client/Holiday/HolidaySystem.cs +++ b/Content.Client/Holiday/HolidaySystem.cs @@ -12,6 +12,7 @@ public sealed class HolidaySystem : EntitySystem { [Dependency] private readonly IResourceCache _rescache = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; [Dependency] private readonly ClothingSystem _clothing = default!; /// @@ -32,7 +33,7 @@ public sealed class HolidaySystem : EntitySystem var path = SpriteSpecifierSerializer.TextureRoot / rsistring; if (_rescache.TryGetResource(path, out RSIResource? rsi)) - args.Sprite.BaseRSI = rsi.RSI; + _sprite.SetBaseRsi((ent.Owner, args.Sprite), rsi.RSI); } // Sunrise-Start diff --git a/Content.Client/Holopad/HolopadSystem.cs b/Content.Client/Holopad/HolopadSystem.cs index 6aad39fe24..f219e1577d 100644 --- a/Content.Client/Holopad/HolopadSystem.cs +++ b/Content.Client/Holopad/HolopadSystem.cs @@ -13,6 +13,7 @@ public sealed class HolopadSystem : SharedHolopadSystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -46,7 +47,7 @@ public sealed class HolopadSystem : SharedHolopadSystem if (!HasComp(uid)) return; - var netEv = new HolopadUserTypingChangedEvent(GetNetEntity(uid.Value), ev.IsTyping); + var netEv = new HolopadUserTypingChangedEvent(GetNetEntity(uid.Value), ev.State); RaiseNetworkEvent(netEv); } @@ -58,8 +59,8 @@ public sealed class HolopadSystem : SharedHolopadSystem return; // Remove all sprite layers - for (int i = hologramSprite.AllLayers.Count() - 1; i >= 0; i--) - hologramSprite.RemoveLayer(i); + for (var i = hologramSprite.AllLayers.Count() - 1; i >= 0; i--) + _sprite.RemoveLayer((hologram, hologramSprite), i); if (TryComp(target, out var targetSprite)) { @@ -67,17 +68,16 @@ public sealed class HolopadSystem : SharedHolopadSystem if (TryComp(target, out var targetAvatar) && targetAvatar.LayerData != null) { - for (int i = 0; i < targetAvatar.LayerData.Length; i++) + for (var i = 0; i < targetAvatar.LayerData.Length; i++) { - var layer = targetAvatar.LayerData[i]; - hologramSprite.AddLayer(targetAvatar.LayerData[i], i); + _sprite.AddLayer((hologram, hologramSprite), targetAvatar.LayerData[i], i); } } // Otherwise copy the target's current physical appearance else { - hologramSprite.CopyFrom(targetSprite); + _sprite.CopySprite((target.Value, targetSprite), (hologram, hologramSprite)); } } @@ -87,25 +87,27 @@ public sealed class HolopadSystem : SharedHolopadSystem if (string.IsNullOrEmpty(holopadhologram.RsiPath) || string.IsNullOrEmpty(holopadhologram.RsiState)) return; - var layer = new PrototypeLayerData(); - layer.RsiPath = holopadhologram.RsiPath; - layer.State = holopadhologram.RsiState; + var layer = new PrototypeLayerData + { + RsiPath = holopadhologram.RsiPath, + State = holopadhologram.RsiState + }; - hologramSprite.AddLayer(layer); + _sprite.AddLayer((hologram, hologramSprite), layer, null); } // Override specific values - hologramSprite.Color = Color.White; - hologramSprite.Offset = holopadhologram.Offset; - hologramSprite.DrawDepth = (int)DrawDepth.Mobs; + _sprite.SetColor((hologram, hologramSprite), Color.White); + _sprite.SetOffset((hologram, hologramSprite), holopadhologram.Offset); + _sprite.SetDrawDepth((hologram, hologramSprite), (int)DrawDepth.Mobs); hologramSprite.NoRotation = true; hologramSprite.DirectionOverride = Direction.South; hologramSprite.EnableDirectionOverride = true; // Remove shading from all layers (except displacement maps) - for (int i = 0; i < hologramSprite.AllLayers.Count(); i++) + for (var i = 0; i < hologramSprite.AllLayers.Count(); i++) { - if (hologramSprite.TryGetLayer(i, out var layer) && layer.ShaderPrototype != "DisplacedStencilDraw") + if (_sprite.TryGetLayer((hologram, hologramSprite), i, out var layer, false) && layer.ShaderPrototype != "DisplacedStencilDraw") hologramSprite.LayerSetShader(i, "unshaded"); } diff --git a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs index 9023cac583..01b5986ef7 100644 --- a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs +++ b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Humanoid.Prototypes; using Content.Shared.Inventory; using Content.Shared.Preferences; using Robust.Client.GameObjects; +using Robust.Shared.Configuration; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -17,70 +18,91 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly MarkingManager _markingManager = default!; + [Dependency] private readonly IConfigurationManager _configurationManager = default!; [Dependency] private readonly DisplacementMapSystem _displacement = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnHandleState); + //Subs.CVar(_configurationManager, CCVars.AccessibilityClientCensorNudity, OnCvarChanged, true); + //Subs.CVar(_configurationManager, CCVars.AccessibilityServerCensorNudity, OnCvarChanged, true); } private void OnHandleState(EntityUid uid, HumanoidAppearanceComponent component, ref AfterAutoHandleStateEvent args) { - UpdateSprite(component, Comp(uid)); + UpdateSprite((uid, component, Comp(uid))); } - private void UpdateSprite(HumanoidAppearanceComponent component, SpriteComponent sprite) - { - UpdateLayers(component, sprite); - ApplyMarkingSet(component, sprite); + //private void OnCvarChanged(bool value) + //{ + // var humanoidQuery = EntityManager.AllEntityQueryEnumerator(); + // while (humanoidQuery.MoveNext(out var uid, out var humanoidComp, out var spriteComp)) + // { + // UpdateSprite((uid, humanoidComp, spriteComp)); + // } + //} - sprite[sprite.LayerMapReserveBlank(HumanoidVisualLayers.Eyes)].Color = component.EyeColor; + private void UpdateSprite(Entity entity) + { + UpdateLayers(entity); + ApplyMarkingSet(entity); + + var humanoidAppearance = entity.Comp1; + var sprite = entity.Comp2; + + sprite[_sprite.LayerMapReserve((entity.Owner, sprite), HumanoidVisualLayers.Eyes)].Color = humanoidAppearance.EyeColor; } private static bool IsHidden(HumanoidAppearanceComponent humanoid, HumanoidVisualLayers layer) => humanoid.HiddenLayers.ContainsKey(layer) || humanoid.PermanentlyHidden.Contains(layer); - private void UpdateLayers(HumanoidAppearanceComponent component, SpriteComponent sprite) + private void UpdateLayers(Entity entity) { + var component = entity.Comp1; + var sprite = entity.Comp2; + var oldLayers = new HashSet(component.BaseLayers.Keys); component.BaseLayers.Clear(); // add default species layers - var bodyTypeProto = _prototypeManager.Index(component.BodyType); + var bodyTypeProto = _prototypeManager.Index(component.BodyType); // Sunrise-Edit foreach (var (key, id) in bodyTypeProto.Sprites) { oldLayers.Remove(key); if (!component.CustomBaseLayers.ContainsKey(key)) - SetLayerData(component, sprite, key, id, sexMorph: true); + SetLayerData(entity, key, id, sexMorph: true); } // add custom layers foreach (var (key, info) in component.CustomBaseLayers) { oldLayers.Remove(key); - SetLayerData(component, sprite, key, info.Id, sexMorph: false, color: info.Color); + SetLayerData(entity, key, info.Id, sexMorph: false, color: info.Color); } // hide old layers // TODO maybe just remove them altogether? foreach (var key in oldLayers) { - if (sprite.LayerMapTryGet(key, out var index)) + if (_sprite.LayerMapTryGet((entity.Owner, sprite), key, out var index, false)) sprite[index].Visible = false; } } private void SetLayerData( - HumanoidAppearanceComponent component, - SpriteComponent sprite, + Entity entity, HumanoidVisualLayers key, string? protoId, bool sexMorph = false, Color? color = null) { - var layerIndex = sprite.LayerMapReserveBlank(key); + var component = entity.Comp1; + var sprite = entity.Comp2; + + var layerIndex = _sprite.LayerMapReserve((entity.Owner, sprite), key); var layer = sprite[layerIndex]; layer.Visible = !IsHidden(component, key); @@ -100,7 +122,7 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem layer.Color = component.SkinColor.WithAlpha(proto.LayerAlpha); if (proto.BaseSprite != null) - sprite.LayerSetSprite(layerIndex, proto.BaseSprite); + _sprite.LayerSetSprite((entity.Owner, sprite), layerIndex, proto.BaseSprite); } /// @@ -204,34 +226,54 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem humanoid.SkinColor = profile.Appearance.SkinColor; humanoid.EyeColor = profile.Appearance.EyeColor; - UpdateSprite(humanoid, Comp(uid)); + UpdateSprite((uid, humanoid, Comp(uid))); } - private void ApplyMarkingSet(HumanoidAppearanceComponent humanoid, SpriteComponent sprite) + private void ApplyMarkingSet(Entity entity) { + var humanoid = entity.Comp1; + var sprite = entity.Comp2; + // I am lazy and I CBF resolving the previous mess, so I'm just going to nuke the markings. // Really, markings should probably be a separate component altogether. - ClearAllMarkings(humanoid, sprite); + ClearAllMarkings(entity); + + //var censorNudity = _configurationManager.GetCVar(CCVars.AccessibilityClientCensorNudity) || + // _configurationManager.GetCVar(CCVars.AccessibilityServerCensorNudity); + // The reason we're splitting this up is in case the character already has undergarment equipped in that slot. + //var applyUndergarmentTop = censorNudity; + //var applyUndergarmentBottom = censorNudity; foreach (var markingList in humanoid.MarkingSet.Markings.Values) { foreach (var marking in markingList) { if (_markingManager.TryGetMarking(marking, out var markingPrototype)) - ApplyMarking(markingPrototype, marking.MarkingColors, marking.Visible, humanoid, sprite); + { + ApplyMarking(markingPrototype, marking.MarkingColors, marking.Visible, entity); + //if (markingPrototype.BodyPart == HumanoidVisualLayers.UndergarmentTop) + // applyUndergarmentTop = false; + //else if (markingPrototype.BodyPart == HumanoidVisualLayers.UndergarmentBottom) + // applyUndergarmentBottom = false; + } } } humanoid.ClientOldMarkings = new MarkingSet(humanoid.MarkingSet); + + //AddUndergarments(entity, applyUndergarmentTop, applyUndergarmentBottom); } - private void ClearAllMarkings(HumanoidAppearanceComponent humanoid, SpriteComponent sprite) + private void ClearAllMarkings(Entity entity) { + var humanoid = entity.Comp1; + var sprite = entity.Comp2; + foreach (var markingList in humanoid.ClientOldMarkings.Markings.Values) { foreach (var marking in markingList) { - RemoveMarking(marking, sprite); + RemoveMarking(marking, (entity, sprite)); } } @@ -241,12 +283,12 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem { foreach (var marking in markingList) { - RemoveMarking(marking, sprite); + RemoveMarking(marking, (entity, sprite)); } } } - private void RemoveMarking(Marking marking, SpriteComponent spriteComp) + private void RemoveMarking(Marking marking, Entity spriteEnt) { if (!_markingManager.TryGetMarking(marking, out var prototype)) { @@ -261,24 +303,51 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem } var layerId = $"{marking.MarkingId}-{rsi.RsiState}"; - if (!spriteComp.LayerMapTryGet(layerId, out var index)) + if (!_sprite.LayerMapTryGet(spriteEnt.AsNullable(), layerId, out var index, false)) { continue; } - spriteComp.LayerMapRemove(layerId); - spriteComp.RemoveLayer(index); + _sprite.LayerMapRemove(spriteEnt.AsNullable(), layerId); + _sprite.RemoveLayer(spriteEnt.AsNullable(), index); } } - // Sunrsie-Edit - public void ApplyMarking(MarkingPrototype markingPrototype, + private void AddUndergarments(Entity entity, bool undergarmentTop, bool undergarmentBottom) + { + var humanoid = entity.Comp1; + + if (undergarmentTop && humanoid.UndergarmentTop != null) + { + var marking = new Marking(humanoid.UndergarmentTop, new List { new Color() }); + if (_markingManager.TryGetMarking(marking, out var prototype)) + { + // Markings are added to ClientOldMarkings because otherwise it causes issues when toggling the feature on/off. + humanoid.ClientOldMarkings.Markings.Add(MarkingCategories.UndergarmentTop, new List { marking }); + ApplyMarking(prototype, null, true, entity); + } + } + + if (undergarmentBottom && humanoid.UndergarmentBottom != null) + { + var marking = new Marking(humanoid.UndergarmentBottom, new List { new Color() }); + if (_markingManager.TryGetMarking(marking, out var prototype)) + { + humanoid.ClientOldMarkings.Markings.Add(MarkingCategories.UndergarmentBottom, new List { marking }); + ApplyMarking(prototype, null, true, entity); + } + } + } + + private void ApplyMarking(MarkingPrototype markingPrototype, IReadOnlyList? colors, bool visible, - HumanoidAppearanceComponent humanoid, - SpriteComponent sprite) + Entity entity) { - if (!sprite.LayerMapTryGet(markingPrototype.BodyPart, out int targetLayer)) + var humanoid = entity.Comp1; + var sprite = entity.Comp2; + + if (!_sprite.LayerMapTryGet((entity.Owner, sprite), markingPrototype.BodyPart, out var targetLayer, false)) { return; } @@ -298,14 +367,14 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem var layerId = $"{markingPrototype.ID}-{rsi.RsiState}"; - if (!sprite.LayerMapTryGet(layerId, out _)) + if (!_sprite.LayerMapTryGet((entity.Owner, sprite), layerId, out _, false)) { - var layer = sprite.AddLayer(markingSprite, targetLayer + j + 1); - sprite.LayerMapSet(layerId, layer); - sprite.LayerSetSprite(layerId, rsi); + var layer = _sprite.AddLayer((entity.Owner, sprite), markingSprite, targetLayer + j + 1); + _sprite.LayerMapSet((entity.Owner, sprite), layerId, layer); + _sprite.LayerSetSprite((entity.Owner, sprite), layerId, rsi); } - sprite.LayerSetVisible(layerId, visible); + _sprite.LayerSetVisible((entity.Owner, sprite), layerId, visible); if (!visible || setting == null) // this is kinda implied { @@ -317,16 +386,16 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem // So if that happens just default to white? if (colors != null && j < colors.Count) { - sprite.LayerSetColor(layerId, colors[j]); + _sprite.LayerSetColor((entity.Owner, sprite), layerId, colors[j]); } else { - sprite.LayerSetColor(layerId, Color.White); + _sprite.LayerSetColor((entity.Owner, sprite), layerId, Color.White); } if (humanoid.MarkingsDisplacement.TryGetValue(markingPrototype.BodyPart, out var displacementData) && markingPrototype.CanBeDisplaced) { - _displacement.TryAddDisplacement(displacementData, sprite, targetLayer + j + 1, layerId, out _); + _displacement.TryAddDisplacement(displacementData, (entity.Owner, sprite), targetLayer + j + 1, layerId, out _); } } } @@ -346,7 +415,7 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem if (!spriteInfo.MatchSkin) continue; - var index = sprite.LayerMapReserveBlank(layer); + var index = _sprite.LayerMapReserve((uid, sprite), layer); sprite[index].Color = skinColor.WithAlpha(spriteInfo.LayerAlpha); } } @@ -361,11 +430,11 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem base.SetLayerVisibility(ent, layer, visible, slot, ref dirty); var sprite = Comp(ent); - if (!sprite.LayerMapTryGet(layer, out var index)) + if (!_sprite.LayerMapTryGet((ent.Owner, sprite), layer, out var index, false)) { if (!visible) return; - index = sprite.LayerMapReserveBlank(layer); + index = _sprite.LayerMapReserve((ent.Owner, sprite), layer); } var spriteLayer = sprite[index]; @@ -382,7 +451,7 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem foreach (var marking in markingList) { if (_markingManager.TryGetMarking(marking, out var markingPrototype) && markingPrototype.BodyPart == layer) - ApplyMarking(markingPrototype, marking.MarkingColors, marking.Visible, ent, sprite); + ApplyMarking(markingPrototype, marking.MarkingColors, marking.Visible, (ent, ent.Comp, sprite)); } } } diff --git a/Content.Client/IconSmoothing/IconSmoothSystem.Edge.cs b/Content.Client/IconSmoothing/IconSmoothSystem.Edge.cs index 65ee0ae430..bd003cb42a 100644 --- a/Content.Client/IconSmoothing/IconSmoothSystem.Edge.cs +++ b/Content.Client/IconSmoothing/IconSmoothSystem.Edge.cs @@ -19,15 +19,15 @@ public sealed partial class IconSmoothSystem if (!TryComp(uid, out var sprite)) return; - sprite.LayerSetOffset(EdgeLayer.South, new Vector2(0, -1f)); - sprite.LayerSetOffset(EdgeLayer.East, new Vector2(1f, 0f)); - sprite.LayerSetOffset(EdgeLayer.North, new Vector2(0, 1f)); - sprite.LayerSetOffset(EdgeLayer.West, new Vector2(-1f, 0f)); + _sprite.LayerSetOffset((uid, sprite), EdgeLayer.South, new Vector2(0, -1f)); + _sprite.LayerSetOffset((uid, sprite), EdgeLayer.East, new Vector2(1, 0f)); + _sprite.LayerSetOffset((uid, sprite), EdgeLayer.North, new Vector2(0, 1f)); + _sprite.LayerSetOffset((uid, sprite), EdgeLayer.West, new Vector2(-1, 0f)); - sprite.LayerSetVisible(EdgeLayer.South, false); - sprite.LayerSetVisible(EdgeLayer.East, false); - sprite.LayerSetVisible(EdgeLayer.North, false); - sprite.LayerSetVisible(EdgeLayer.West, false); + _sprite.LayerSetVisible((uid, sprite), EdgeLayer.South, false); + _sprite.LayerSetVisible((uid, sprite), EdgeLayer.East, false); + _sprite.LayerSetVisible((uid, sprite), EdgeLayer.North, false); + _sprite.LayerSetVisible((uid, sprite), EdgeLayer.West, false); } private void OnEdgeShutdown(EntityUid uid, SmoothEdgeComponent component, ComponentShutdown args) @@ -35,10 +35,10 @@ public sealed partial class IconSmoothSystem if (!TryComp(uid, out var sprite)) return; - sprite.LayerMapRemove(EdgeLayer.South); - sprite.LayerMapRemove(EdgeLayer.East); - sprite.LayerMapRemove(EdgeLayer.North); - sprite.LayerMapRemove(EdgeLayer.West); + _sprite.LayerMapRemove((uid, sprite), EdgeLayer.South); + _sprite.LayerMapRemove((uid, sprite), EdgeLayer.East); + _sprite.LayerMapRemove((uid, sprite), EdgeLayer.North); + _sprite.LayerMapRemove((uid, sprite), EdgeLayer.West); } private void CalculateEdge(EntityUid uid, DirectionFlag directions, SpriteComponent? sprite = null, SmoothEdgeComponent? component = null) @@ -48,16 +48,16 @@ public sealed partial class IconSmoothSystem for (var i = 0; i < 4; i++) { - var dir = (DirectionFlag) Math.Pow(2, i); + var dir = (DirectionFlag)Math.Pow(2, i); var edge = GetEdge(dir); if ((dir & directions) != 0x0) { - sprite.LayerSetVisible(edge, false); + _sprite.LayerSetVisible((uid, sprite), edge, false); continue; } - sprite.LayerSetVisible(edge, true); + _sprite.LayerSetVisible((uid, sprite), edge, true); } } diff --git a/Content.Client/IconSmoothing/IconSmoothSystem.cs b/Content.Client/IconSmoothing/IconSmoothSystem.cs index 45aafb5288..a1c47ca6be 100644 --- a/Content.Client/IconSmoothing/IconSmoothSystem.cs +++ b/Content.Client/IconSmoothing/IconSmoothSystem.cs @@ -17,6 +17,7 @@ namespace Content.Client.IconSmoothing public sealed partial class IconSmoothSystem : EntitySystem { [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; private readonly Queue _dirtyEntities = new(); private readonly Queue _anchorChangedEntities = new(); @@ -57,7 +58,7 @@ namespace Content.Client.IconSmoothing if (component.Mode != IconSmoothingMode.Corners || !TryComp(uid, out SpriteComponent? sprite)) return; - SetCornerLayers(sprite, component); + SetCornerLayers((uid, sprite), component); if (component.Shader != null) { @@ -74,25 +75,25 @@ namespace Content.Client.IconSmoothing return; component.StateBase = newState; - SetCornerLayers(sprite, component); + SetCornerLayers((uid, sprite), component); } - private void SetCornerLayers(SpriteComponent sprite, IconSmoothComponent component) + private void SetCornerLayers(Entity sprite, IconSmoothComponent component) { - sprite.LayerMapRemove(CornerLayers.SE); - sprite.LayerMapRemove(CornerLayers.NE); - sprite.LayerMapRemove(CornerLayers.NW); - sprite.LayerMapRemove(CornerLayers.SW); + _sprite.LayerMapRemove(sprite, CornerLayers.SE); + _sprite.LayerMapRemove(sprite, CornerLayers.NE); + _sprite.LayerMapRemove(sprite, CornerLayers.NW); + _sprite.LayerMapRemove(sprite, CornerLayers.SW); var state0 = $"{component.StateBase}0"; - sprite.LayerMapSet(CornerLayers.SE, sprite.AddLayerState(state0)); - sprite.LayerSetDirOffset(CornerLayers.SE, DirectionOffset.None); - sprite.LayerMapSet(CornerLayers.NE, sprite.AddLayerState(state0)); - sprite.LayerSetDirOffset(CornerLayers.NE, DirectionOffset.CounterClockwise); - sprite.LayerMapSet(CornerLayers.NW, sprite.AddLayerState(state0)); - sprite.LayerSetDirOffset(CornerLayers.NW, DirectionOffset.Flip); - sprite.LayerMapSet(CornerLayers.SW, sprite.AddLayerState(state0)); - sprite.LayerSetDirOffset(CornerLayers.SW, DirectionOffset.Clockwise); + _sprite.LayerMapSet(sprite, CornerLayers.SE, _sprite.AddRsiLayer(sprite, state0)); + _sprite.LayerSetDirOffset(sprite, CornerLayers.SE, DirectionOffset.None); + _sprite.LayerMapSet(sprite, CornerLayers.NE, _sprite.AddRsiLayer(sprite, state0)); + _sprite.LayerSetDirOffset(sprite, CornerLayers.NE, DirectionOffset.CounterClockwise); + _sprite.LayerMapSet(sprite, CornerLayers.NW, _sprite.AddRsiLayer(sprite, state0)); + _sprite.LayerSetDirOffset(sprite, CornerLayers.NW, DirectionOffset.Flip); + _sprite.LayerMapSet(sprite, CornerLayers.SW, _sprite.AddRsiLayer(sprite, state0)); + _sprite.LayerSetDirOffset(sprite, CornerLayers.SW, DirectionOffset.Clockwise); } private void OnShutdown(EntityUid uid, IconSmoothComponent component, ComponentShutdown args) @@ -298,7 +299,7 @@ namespace Content.Client.IconSmoothing { if (gridEntity == null) { - sprite.Comp.LayerSetState(0, $"{smooth.StateBase}0"); + _sprite.LayerSetRsiState(sprite.AsNullable(), 0, $"{smooth.StateBase}0"); return; } @@ -324,11 +325,11 @@ namespace Content.Client.IconSmoothing if (matching) { - sprite.Comp.LayerSetState(0, $"{smooth.StateBase}1"); + _sprite.LayerSetRsiState(sprite.AsNullable(), 0, $"{smooth.StateBase}1"); } else { - sprite.Comp.LayerSetState(0, $"{smooth.StateBase}0"); + _sprite.LayerSetRsiState(sprite.AsNullable(), 0, $"{smooth.StateBase}0"); } } @@ -338,7 +339,7 @@ namespace Content.Client.IconSmoothing if (gridEntity == null) { - sprite.Comp.LayerSetState(0, $"{smooth.StateBase}{(int)dirs}"); + _sprite.LayerSetRsiState(sprite.AsNullable(), 0, $"{smooth.StateBase}{(int)dirs}"); return; } @@ -355,7 +356,7 @@ namespace Content.Client.IconSmoothing if (MatchingEntity(smooth, _mapSystem.GetAnchoredEntitiesEnumerator(gridUid, grid, pos.Offset(Direction.West)), smoothQuery)) dirs |= CardinalConnectDirs.West; - sprite.Comp.LayerSetState(0, $"{smooth.StateBase}{(int)dirs}"); + _sprite.LayerSetRsiState(sprite.AsNullable(), 0, $"{smooth.StateBase}{(int)dirs}"); var directions = DirectionFlag.None; @@ -399,10 +400,10 @@ namespace Content.Client.IconSmoothing // At the very least each event currently only queues a sprite for updating. // Oh god sprite component is a mess. var sprite = spriteEnt.Comp; - sprite.LayerSetState(CornerLayers.NE, $"{smooth.StateBase}{(int)cornerNE}"); - sprite.LayerSetState(CornerLayers.SE, $"{smooth.StateBase}{(int)cornerSE}"); - sprite.LayerSetState(CornerLayers.SW, $"{smooth.StateBase}{(int)cornerSW}"); - sprite.LayerSetState(CornerLayers.NW, $"{smooth.StateBase}{(int)cornerNW}"); + _sprite.LayerSetRsiState(spriteEnt.AsNullable(), CornerLayers.NE, $"{smooth.StateBase}{(int)cornerNE}"); + _sprite.LayerSetRsiState(spriteEnt.AsNullable(), CornerLayers.SE, $"{smooth.StateBase}{(int)cornerSE}"); + _sprite.LayerSetRsiState(spriteEnt.AsNullable(), CornerLayers.SW, $"{smooth.StateBase}{(int)cornerSW}"); + _sprite.LayerSetRsiState(spriteEnt.AsNullable(), CornerLayers.NW, $"{smooth.StateBase}{(int)cornerNW}"); var directions = DirectionFlag.None; diff --git a/Content.Client/Input/ContentContexts.cs b/Content.Client/Input/ContentContexts.cs index 8fb46612d2..423bf90cc3 100644 --- a/Content.Client/Input/ContentContexts.cs +++ b/Content.Client/Input/ContentContexts.cs @@ -56,6 +56,7 @@ namespace Content.Client.Input human.AddFunction(EngineKeyFunctions.MoveRight); human.AddFunction(EngineKeyFunctions.Walk); human.AddFunction(ContentKeyFunctions.SwapHands); + human.AddFunction(ContentKeyFunctions.SwapHandsReverse); human.AddFunction(ContentKeyFunctions.Drop); human.AddFunction(ContentKeyFunctions.UseItemInHand); human.AddFunction(ContentKeyFunctions.AltUseItemInHand); @@ -107,6 +108,7 @@ namespace Content.Client.Input aghost.AddFunction(EngineKeyFunctions.MoveRight); aghost.AddFunction(EngineKeyFunctions.Walk); aghost.AddFunction(ContentKeyFunctions.SwapHands); + aghost.AddFunction(ContentKeyFunctions.SwapHandsReverse); aghost.AddFunction(ContentKeyFunctions.Drop); aghost.AddFunction(ContentKeyFunctions.UseItemInHand); aghost.AddFunction(ContentKeyFunctions.CockGun); diff --git a/Content.Client/Interaction/DragDropSystem.cs b/Content.Client/Interaction/DragDropSystem.cs index 969aaffe07..fe23866535 100644 --- a/Content.Client/Interaction/DragDropSystem.cs +++ b/Content.Client/Interaction/DragDropSystem.cs @@ -43,6 +43,7 @@ public sealed class DragDropSystem : SharedDragDropSystem [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; // how often to recheck possible targets (prevents calling expensive // check logic each update) @@ -178,7 +179,7 @@ public sealed class DragDropSystem : SharedDragDropSystem private bool OnUseMouseDown(in PointerInputCmdHandler.PointerInputCmdArgs args) { - if (args.Session?.AttachedEntity is not {Valid: true} dragger || + if (args.Session?.AttachedEntity is not { Valid: true } dragger || _combatMode.IsInCombatMode()) { return false; @@ -249,11 +250,11 @@ public sealed class DragDropSystem : SharedDragDropSystem var mousePos = _eyeManager.PixelToMap(screenPos); _dragShadow = EntityManager.SpawnEntity("dragshadow", mousePos); var dragSprite = Comp(_dragShadow.Value); - dragSprite.CopyFrom(draggedSprite); + _sprite.CopySprite((_draggedEntity.Value, draggedSprite), (_dragShadow.Value, dragSprite)); dragSprite.RenderOrder = EntityManager.CurrentTick.Value; - dragSprite.Color = dragSprite.Color.WithAlpha(0.7f); + _sprite.SetColor((_dragShadow.Value, dragSprite), dragSprite.Color.WithAlpha(0.7f)); // keep it on top of everything - dragSprite.DrawDepth = (int) DrawDepth.Overlays; + _sprite.SetDrawDepth((_dragShadow.Value, dragSprite), (int)DrawDepth.Overlays); if (!dragSprite.NoRotation) { _transformSystem.SetWorldRotationNoLerp(_dragShadow.Value, _transformSystem.GetWorldRotation(_draggedEntity.Value)); diff --git a/Content.Client/IoC/ClientContentIoC.cs b/Content.Client/IoC/ClientContentIoC.cs index 8758742149..b04d0eed65 100644 --- a/Content.Client/IoC/ClientContentIoC.cs +++ b/Content.Client/IoC/ClientContentIoC.cs @@ -37,6 +37,7 @@ namespace Content.Client.IoC var collection = IoCManager.Instance!; collection.Register(); + collection.Register(); collection.Register(); collection.Register(); collection.Register(); diff --git a/Content.Client/Items/Systems/ItemSystem.cs b/Content.Client/Items/Systems/ItemSystem.cs index 2b5a41c6ce..a8e168c55e 100644 --- a/Content.Client/Items/Systems/ItemSystem.cs +++ b/Content.Client/Items/Systems/ItemSystem.cs @@ -13,6 +13,7 @@ namespace Content.Client.Items.Systems; public sealed class ItemSystem : SharedItemSystem { [Dependency] private readonly IResourceCache _resCache = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -27,12 +28,12 @@ public sealed class ItemSystem : SharedItemSystem private void OnUnequipped(EntityUid uid, SpriteComponent component, GotUnequippedEvent args) { - component.Visible = true; + _sprite.SetVisible((uid, component), true); } private void OnEquipped(EntityUid uid, SpriteComponent component, GotEquippedEvent args) { - component.Visible = false; + _sprite.SetVisible((uid, component), false); } #region InhandVisuals @@ -58,7 +59,7 @@ public sealed class ItemSystem : SharedItemSystem if (!item.InhandVisuals.TryGetValue(args.Location, out var layers)) { // get defaults - if (!TryGetDefaultVisuals(uid, item, defaultKey, out layers)) + if (!TryGetDefaultVisuals(uid, item, defaultKey, out layers)) return; } diff --git a/Content.Client/Jittering/JitteringSystem.cs b/Content.Client/Jittering/JitteringSystem.cs index 4448c60462..36f1843d5d 100644 --- a/Content.Client/Jittering/JitteringSystem.cs +++ b/Content.Client/Jittering/JitteringSystem.cs @@ -10,6 +10,7 @@ namespace Content.Client.Jittering { [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly AnimationPlayerSystem _animationPlayer = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; private readonly float[] _sign = { -1, 1 }; private readonly string _jitterAnimationKey = "jittering"; @@ -40,12 +41,12 @@ namespace Content.Client.Jittering _animationPlayer.Stop(uid, animationPlayer, _jitterAnimationKey); if (TryComp(uid, out SpriteComponent? sprite)) - sprite.Offset = jittering.StartOffset; + _sprite.SetOffset((uid, sprite), jittering.StartOffset); } private void OnAnimationCompleted(EntityUid uid, JitteringComponent jittering, AnimationCompletedEvent args) { - if(args.Key != _jitterAnimationKey) + if (args.Key != _jitterAnimationKey) return; if (!args.Finished) @@ -59,7 +60,7 @@ namespace Content.Client.Jittering private Animation GetAnimation(JitteringComponent jittering, SpriteComponent sprite) { var amplitude = MathF.Min(4f, jittering.Amplitude / 100f + 1f) / 10f; - var offset = new Vector2(_random.NextFloat(amplitude/4f, amplitude), + var offset = new Vector2(_random.NextFloat(amplitude / 4f, amplitude), _random.NextFloat(amplitude / 4f, amplitude / 3f)); offset.X *= _random.Pick(_sign); diff --git a/Content.Client/Kudzu/KudzuVisualizerSystem.cs b/Content.Client/Kudzu/KudzuVisualizerSystem.cs index d252eb2004..2163d22d0b 100644 --- a/Content.Client/Kudzu/KudzuVisualizerSystem.cs +++ b/Content.Client/Kudzu/KudzuVisualizerSystem.cs @@ -13,8 +13,8 @@ public sealed class KudzuVisualsSystem : VisualizerSystem if (AppearanceSystem.TryGetData(uid, KudzuVisuals.Variant, out var var, args.Component) && AppearanceSystem.TryGetData(uid, KudzuVisuals.GrowthLevel, out var level, args.Component)) { - var index = args.Sprite.LayerMapReserveBlank(component.Layer); - args.Sprite.LayerSetState(index, $"kudzu_{level}{var}"); + var index = SpriteSystem.LayerMapReserve((uid, args.Sprite), $"{component.Layer}"); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), index, $"kudzu_{level}{var}"); } } } diff --git a/Content.Client/LateJoin/LateJoinGui.cs b/Content.Client/LateJoin/LateJoinGui.cs index b696823e5d..31c30eb8cb 100644 --- a/Content.Client/LateJoin/LateJoinGui.cs +++ b/Content.Client/LateJoin/LateJoinGui.cs @@ -29,12 +29,14 @@ namespace Content.Client.LateJoin [Dependency] private readonly IEntitySystemManager _entitySystem = default!; [Dependency] private readonly JobRequirementsManager _jobRequirements = default!; [Dependency] private readonly IClientPreferencesManager _preferencesManager = default!; + [Dependency] private readonly ILogManager _logManager = default!; public event Action<(NetEntity, string)> SelectedId; private readonly ClientGameTicker _gameTicker; private readonly SpriteSystem _sprites; private readonly CrewManifestSystem _crewManifest; + private readonly ISawmill _sawmill; private readonly Dictionary>> _jobButtons = new(); private readonly Dictionary> _jobCategories = new(); @@ -49,6 +51,7 @@ namespace Content.Client.LateJoin _sprites = _entitySystem.GetEntitySystem(); _crewManifest = _entitySystem.GetEntitySystem(); _gameTicker = _entitySystem.GetEntitySystem(); + _sawmill = _logManager.GetSawmill("latejoin.panel"); Title = Loc.GetString("late-join-gui-title"); @@ -66,7 +69,7 @@ namespace Content.Client.LateJoin SelectedId += x => { var (station, jobId) = x; - Logger.InfoS("latejoin", $"Late joining as ID: {jobId}"); + _sawmill.Info($"Late joining as ID: {jobId}"); _consoleHost.ExecuteCommand($"joingame {CommandParsing.Escape(jobId)} {station}"); Close(); }; @@ -82,7 +85,7 @@ namespace Content.Client.LateJoin _jobCategories.Clear(); if (!_gameTicker.DisallowedLateJoin && _gameTicker.StationNames.Count == 0) - Logger.Warning("No stations exist, nothing to display in late-join GUI"); + _sawmill.Warning("No stations exist, nothing to display in late-join GUI"); foreach (var (id, name) in _gameTicker.StationNames) { diff --git a/Content.Client/Lathe/LatheSystem.cs b/Content.Client/Lathe/LatheSystem.cs index 386520c198..71e43a4c2e 100644 --- a/Content.Client/Lathe/LatheSystem.cs +++ b/Content.Client/Lathe/LatheSystem.cs @@ -9,6 +9,7 @@ namespace Content.Client.Lathe; public sealed class LatheSystem : SharedLatheSystem { [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -25,25 +26,25 @@ public sealed class LatheSystem : SharedLatheSystem // Lathe specific stuff if (_appearance.TryGetData(uid, LatheVisuals.IsRunning, out var isRunning, args.Component)) { - if (args.Sprite.LayerMapTryGet(LatheVisualLayers.IsRunning, out var runningLayer) && + if (_sprite.LayerMapTryGet((uid, args.Sprite), LatheVisualLayers.IsRunning, out var runningLayer, false) && component.RunningState != null && component.IdleState != null) { var state = isRunning ? component.RunningState : component.IdleState; - args.Sprite.LayerSetState(runningLayer, state); + _sprite.LayerSetRsiState((uid, args.Sprite), runningLayer, state); } } if (_appearance.TryGetData(uid, PowerDeviceVisuals.Powered, out var powered, args.Component) && - args.Sprite.LayerMapTryGet(PowerDeviceVisualLayers.Powered, out var powerLayer)) + _sprite.LayerMapTryGet((uid, args.Sprite), PowerDeviceVisualLayers.Powered, out var powerLayer, false)) { - args.Sprite.LayerSetVisible(powerLayer, powered); + _sprite.LayerSetVisible((uid, args.Sprite), powerLayer, powered); if (component.UnlitIdleState != null && component.UnlitRunningState != null) { var state = isRunning ? component.UnlitRunningState : component.UnlitIdleState; - args.Sprite.LayerSetState(powerLayer, state); + _sprite.LayerSetRsiState((uid, args.Sprite), powerLayer, state); } } } diff --git a/Content.Client/Light/EntitySystems/EmergencyLightSystem.cs b/Content.Client/Light/EntitySystems/EmergencyLightSystem.cs index 452e70b5a3..fcbba97a9c 100644 --- a/Content.Client/Light/EntitySystems/EmergencyLightSystem.cs +++ b/Content.Client/Light/EntitySystems/EmergencyLightSystem.cs @@ -14,13 +14,13 @@ public sealed class EmergencyLightSystem : VisualizerSystem(uid, EmergencyLightVisuals.On, out var on, args.Component)) on = false; - args.Sprite.LayerSetVisible(EmergencyLightVisualLayers.LightOff, !on); - args.Sprite.LayerSetVisible(EmergencyLightVisualLayers.LightOn, on); + SpriteSystem.LayerSetVisible((uid, args.Sprite), EmergencyLightVisualLayers.LightOff, !on); + SpriteSystem.LayerSetVisible((uid, args.Sprite), EmergencyLightVisualLayers.LightOn, on); if (AppearanceSystem.TryGetData(uid, EmergencyLightVisuals.Color, out var color, args.Component)) { - args.Sprite.LayerSetColor(EmergencyLightVisualLayers.LightOn, color); - args.Sprite.LayerSetColor(EmergencyLightVisualLayers.LightOff, color); + SpriteSystem.LayerSetColor((uid, args.Sprite), EmergencyLightVisualLayers.LightOn, color); + SpriteSystem.LayerSetColor((uid, args.Sprite), EmergencyLightVisualLayers.LightOff, color); } } } diff --git a/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs b/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs index 4d52b0933d..e47430677d 100644 --- a/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs +++ b/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs @@ -1,8 +1,6 @@ using Content.Client.Light.Components; using Content.Shared.Light.Components; using Robust.Client.GameObjects; -using Robust.Client.Graphics; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; namespace Content.Client.Light.EntitySystems; @@ -31,7 +29,7 @@ public sealed class ExpendableLightSystem : VisualizerSystem(uid, ExpendableLightVisuals.Behavior, out var lightBehaviourID, args.Component) - && TryComp(uid, out var lightBehaviour)) + && TryComp(uid, out var lightBehaviour)) { _lightBehavior.StopLightBehaviour((uid, lightBehaviour)); @@ -55,37 +53,37 @@ public sealed class ExpendableLightSystem : VisualizerSystem switch (state) { case LightBulbState.Normal: - args.Sprite.LayerSetState(LightBulbVisualLayers.Base, comp.NormalSpriteState); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), LightBulbVisualLayers.Base, comp.NormalSpriteState); break; case LightBulbState.Broken: - args.Sprite.LayerSetState(LightBulbVisualLayers.Base, comp.BrokenSpriteState); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), LightBulbVisualLayers.Base, comp.BrokenSpriteState); break; case LightBulbState.Burned: - args.Sprite.LayerSetState(LightBulbVisualLayers.Base, comp.BurnedSpriteState); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), LightBulbVisualLayers.Base, comp.BurnedSpriteState); break; } } @@ -30,7 +30,7 @@ public sealed class LightBulbSystem : VisualizerSystem // also update sprites color if (AppearanceSystem.TryGetData(uid, LightBulbVisuals.Color, out var color, args.Component)) { - args.Sprite.Color = color; + SpriteSystem.SetColor((uid, args.Sprite), color); } } } diff --git a/Content.Client/Light/RgbLightControllerSystem.cs b/Content.Client/Light/RgbLightControllerSystem.cs index 85b6114830..9977a35118 100644 --- a/Content.Client/Light/RgbLightControllerSystem.cs +++ b/Content.Client/Light/RgbLightControllerSystem.cs @@ -18,6 +18,7 @@ namespace Content.Client.Light [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly ItemSystem _itemSystem = default!; [Dependency] private readonly SharedPointLightSystem _lights = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -75,7 +76,7 @@ namespace Content.Client.Light foreach (var key in args.RevealedLayers) { - if (!sprite.LayerMapTryGet(key, out var index) || sprite[index] is not Layer layer) + if (!_sprite.LayerMapTryGet((args.User, sprite), key, out var index, false) || sprite[index] is not Layer layer) continue; if (layer.ShaderPrototype == "unshaded") @@ -93,7 +94,7 @@ namespace Content.Client.Light foreach (var key in args.RevealedLayers) { - if (!sprite.LayerMapTryGet(key, out var index) || sprite[index] is not Layer layer) + if (!_sprite.LayerMapTryGet((args.Equipee, sprite), key, out var index, false) || sprite[index] is not Layer layer) continue; if (layer.ShaderPrototype == "unshaded") @@ -164,7 +165,7 @@ namespace Content.Client.Light foreach (var (layer, color) in rgb.OriginalLayerColors) { - sprite.LayerSetColor(layer, color); + _sprite.LayerSetColor((uid, sprite), layer, color); } } @@ -181,7 +182,7 @@ namespace Content.Client.Light { foreach (var index in rgb.Layers) { - if (sprite.TryGetLayer(index, out var layer)) + if (_sprite.TryGetLayer((uid, sprite), index, out var layer, false)) layer.Color = color; } } @@ -192,8 +193,8 @@ namespace Content.Client.Light foreach (var layer in rgb.HolderLayers) { - if (holderSprite.LayerMapTryGet(layer, out var index)) - holderSprite.LayerSetColor(index, color); + if (_sprite.LayerMapTryGet((rgb.Holder.Value, holderSprite), layer, out var index, false)) + _sprite.LayerSetColor((rgb.Holder.Value, holderSprite), index, color); } } diff --git a/Content.Client/Light/RoofOverlay.cs b/Content.Client/Light/RoofOverlay.cs index 8944630169..6e43466c24 100644 --- a/Content.Client/Light/RoofOverlay.cs +++ b/Content.Client/Light/RoofOverlay.cs @@ -43,7 +43,7 @@ public sealed class RoofOverlay : Overlay protected override void Draw(in OverlayDrawArgs args) { - if (args.Viewport.Eye == null) + if (args.Viewport.Eye == null || !_entManager.HasComponent(args.MapUid)) return; var viewport = args.Viewport; @@ -55,24 +55,42 @@ public sealed class RoofOverlay : Overlay var target = lightoverlay.EnlargedLightTarget; _grids.Clear(); - _mapManager.FindGridsIntersecting(args.MapId, bounds, ref _grids); - - for (var i = _grids.Count - 1; i >= 0; i--) - { - var grid = _grids[i]; - - if (_entManager.HasComponent(grid.Owner)) - continue; - - _grids.RemoveAt(i); - } - - if (_grids.Count == 0) - return; - + _mapManager.FindGridsIntersecting(args.MapId, bounds, ref _grids, approx: true, includeMap: true); var lightScale = viewport.LightRenderTarget.Size / (Vector2) viewport.Size; var scale = viewport.RenderScale / (Vector2.One / lightScale); + worldHandle.RenderInRenderTarget(target, + () => + { + for (var i = 0; i < _grids.Count; i++) + { + var grid = _grids[i]; + + if (!_entManager.TryGetComponent(grid.Owner, out ImplicitRoofComponent? roof)) + continue; + + var invMatrix = target.GetWorldToLocalMatrix(eye, scale); + + var gridMatrix = _xformSystem.GetWorldMatrix(grid.Owner); + var matty = Matrix3x2.Multiply(gridMatrix, invMatrix); + + worldHandle.SetTransform(matty); + + var tileEnumerator = _mapSystem.GetTilesEnumerator(grid.Owner, grid, bounds); + var color = roof.Color; + + while (tileEnumerator.MoveNext(out var tileRef)) + { + var local = _lookup.GetLocalBounds(tileRef, grid.Comp.TileSize); + worldHandle.DrawRect(local, color); + } + + // Don't need it for the next stage. + _grids.RemoveAt(i); + i--; + } + }, null); + worldHandle.RenderInRenderTarget(target, () => { diff --git a/Content.Client/Light/Visualizers/PoweredLightVisualizerSystem.cs b/Content.Client/Light/Visualizers/PoweredLightVisualizerSystem.cs index c07742462b..7ed1fb2dde 100644 --- a/Content.Client/Light/Visualizers/PoweredLightVisualizerSystem.cs +++ b/Content.Client/Light/Visualizers/PoweredLightVisualizerSystem.cs @@ -27,16 +27,16 @@ public sealed class PoweredLightVisualizerSystem : VisualizerSystem(uid, out var light)) { - args.Sprite.LayerSetColor(PoweredLightLayers.Glow, light.Color); + SpriteSystem.LayerSetColor((uid, args.Sprite), PoweredLightLayers.Glow, light.Color); } - args.Sprite.LayerSetVisible(PoweredLightLayers.Glow, state == PoweredLightState.On); + SpriteSystem.LayerSetVisible((uid, args.Sprite), PoweredLightLayers.Glow, state == PoweredLightState.On); } SetBlinkingAnimation( @@ -56,7 +56,7 @@ public sealed class PoweredLightVisualizerSystem : VisualizerSystem(Preferences.Characters) {[slot] = profile}; - Preferences = new PlayerPreferences(characters, Preferences.SelectedCharacterIndex, Preferences.AdminOOCColor); + Preferences = new PlayerPreferences(characters, Preferences.SelectedCharacterIndex, Preferences.AdminOOCColor, Preferences.ConstructionFavorites); var msg = new MsgUpdateCharacter { Profile = profile, @@ -91,7 +93,7 @@ namespace Content.Client.Lobby var l = lowest.Value; characters.Add(l, profile); - Preferences = new PlayerPreferences(characters, Preferences.SelectedCharacterIndex, Preferences.AdminOOCColor); + Preferences = new PlayerPreferences(characters, Preferences.SelectedCharacterIndex, Preferences.AdminOOCColor, Preferences.ConstructionFavorites); UpdateCharacter(profile, l); } @@ -104,7 +106,7 @@ namespace Content.Client.Lobby public void DeleteCharacter(int slot) { var characters = Preferences.Characters.Where(p => p.Key != slot); - Preferences = new PlayerPreferences(characters, Preferences.SelectedCharacterIndex, Preferences.AdminOOCColor); + Preferences = new PlayerPreferences(characters, Preferences.SelectedCharacterIndex, Preferences.AdminOOCColor, Preferences.ConstructionFavorites); var msg = new MsgDeleteCharacter { Slot = slot @@ -112,6 +114,16 @@ namespace Content.Client.Lobby _netManager.ClientSendMessage(msg); } + public void UpdateConstructionFavorites(List> favorites) + { + Preferences = new PlayerPreferences(Preferences.Characters, Preferences.SelectedCharacterIndex, Preferences.AdminOOCColor, favorites); + var msg = new MsgUpdateConstructionFavorites + { + Favorites = favorites + }; + _netManager.ClientSendMessage(msg); + } + private void HandlePreferencesAndSettings(MsgPreferencesAndSettings message) { Preferences = message.Preferences; diff --git a/Content.Client/Lobby/IClientPreferencesManager.cs b/Content.Client/Lobby/IClientPreferencesManager.cs index 45a770b162..c9b58d632c 100644 --- a/Content.Client/Lobby/IClientPreferencesManager.cs +++ b/Content.Client/Lobby/IClientPreferencesManager.cs @@ -1,4 +1,6 @@ +using Content.Shared.Construction.Prototypes; using Content.Shared.Preferences; +using Robust.Shared.Prototypes; namespace Content.Client.Lobby { @@ -17,5 +19,6 @@ namespace Content.Client.Lobby void CreateCharacter(ICharacterProfile profile); void DeleteCharacter(ICharacterProfile profile); void DeleteCharacter(int slot); + void UpdateConstructionFavorites(List> favorites); } } diff --git a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs index a03b7c3912..dce66519ee 100644 --- a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs +++ b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs @@ -56,6 +56,10 @@ namespace Content.Client.Lobby.UI private readonly SpriteSystem _sprite; + // CCvar. + private int _maxNameLength; + private bool _allowFlavorText; + private FlavorText.FlavorText? _flavorText; private TextEdit? _flavorTextEdit; @@ -139,6 +143,10 @@ namespace Content.Client.Lobby.UI _requirements = requirements; _controller = UserInterfaceManager.GetUIController(); _sprite = _entManager.System(); + + _maxNameLength = _cfgManager.GetCVar(CCVars.MaxNameLength); + _allowFlavorText = _cfgManager.GetCVar(CCVars.FlavorText); + ImportButton.OnPressed += args => { ImportProfile(); @@ -174,6 +182,7 @@ namespace Content.Client.Lobby.UI #region Name NameEdit.OnTextChanged += args => { SetName(args.Text); }; + NameEdit.IsValid = args => args.Length <= _maxNameLength; NameRandomize.OnPressed += args => RandomizeName(); RandomizeEverythingButton.OnPressed += args => { RandomizeEverything(); }; WarningLabel.SetMarkup($"[color=red]{Loc.GetString("humanoid-profile-editor-naming-rules-warning")}[/color]"); @@ -482,7 +491,7 @@ namespace Content.Client.Lobby.UI /// public void RefreshFlavorText() { - if (_cfgManager.GetCVar(CCVars.FlavorText)) + if (_allowFlavorText) { if (_flavorText != null) return; diff --git a/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml.cs b/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml.cs index 24557c3a30..551c81b154 100644 --- a/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml.cs +++ b/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml.cs @@ -1,11 +1,13 @@ using System.Numerics; using Content.Client.UserInterface.Controls; +using Content.Shared.CCVar; using Content.Shared.Dataset; using Content.Shared.Preferences; using Content.Shared.Preferences.Loadouts; using Content.Shared.Random.Helpers; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Configuration; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -24,12 +26,18 @@ public sealed partial class LoadoutWindow : FancyWindow public HumanoidCharacterProfile Profile; + // CCvar. + private int _maxLoadoutNameLength; + public LoadoutWindow(HumanoidCharacterProfile profile, RoleLoadout loadout, RoleLoadoutPrototype proto, ICommonSession session, IDependencyCollection collection, ISharedSponsorsManager? sponsorsManager) // Sunrise-Sponsors { RobustXamlLoader.Load(this); Profile = profile; var protoManager = collection.Resolve(); - RoleNameEdit.IsValid = text => text.Length <= HumanoidCharacterProfile.MaxLoadoutNameLength; + var configManager = collection.Resolve(); + + _maxLoadoutNameLength = configManager.GetCVar(CCVars.MaxLoadoutNameLength); + RoleNameEdit.IsValid = text => text.Length <= _maxLoadoutNameLength; // Hide if we can't edit the name. if (!proto.CanCustomizeName) @@ -46,7 +54,7 @@ public sealed partial class LoadoutWindow : FancyWindow RoleNameEdit.ToolTip = Loc.GetString( "loadout-name-edit-tooltip", - ("max", HumanoidCharacterProfile.MaxLoadoutNameLength)); + ("max", _maxLoadoutNameLength)); RoleNameEdit.Text = name ?? string.Empty; RoleNameEdit.OnTextChanged += args => OnNameChanged?.Invoke(args.Text); } diff --git a/Content.Client/Lobby/UI/LobbyGui.xaml.cs b/Content.Client/Lobby/UI/LobbyGui.xaml.cs index 75742aabfd..3850ee83a5 100644 --- a/Content.Client/Lobby/UI/LobbyGui.xaml.cs +++ b/Content.Client/Lobby/UI/LobbyGui.xaml.cs @@ -54,6 +54,9 @@ namespace Content.Client.Lobby.UI LeaveButton.OnPressed += _ => _consoleHost.ExecuteCommand("disconnect"); OptionsButton.OnPressed += _ => UserInterfaceManager.GetUIController().ToggleWindow(); + //CollapseButton.OnPressed += _ => TogglePanel(false); + //ExpandButton.OnPressed += _ => TogglePanel(true); + // Sunrise-start ChatHider.OnKeyBindUp += args => { @@ -243,6 +246,12 @@ namespace Content.Client.Lobby.UI } } + //private void TogglePanel(bool value) + //{ + // RightSide.Visible = value; + // ExpandPanel.Visible = !value; + //} + // Sunrise-start protected override void Draw(DrawingHandleScreen handle) { diff --git a/Content.Client/Lock/Visualizers/LockVisualizerSystem.cs b/Content.Client/Lock/Visualizers/LockVisualizerSystem.cs index 1329a69ad2..b69a7cb379 100644 --- a/Content.Client/Lock/Visualizers/LockVisualizerSystem.cs +++ b/Content.Client/Lock/Visualizers/LockVisualizerSystem.cs @@ -20,14 +20,14 @@ public sealed class LockVisualizerSystem : VisualizerSystem(uid, StorageVisuals.Open, out var open, args.Component)) { - args.Sprite.LayerSetVisible(LockVisualLayers.Lock, !open); + SpriteSystem.LayerSetVisible((uid, args.Sprite), LockVisualLayers.Lock, !open); } - else if (!(bool) unlockedStateExist!) - args.Sprite.LayerSetVisible(LockVisualLayers.Lock, locked); + else if (!(bool)unlockedStateExist!) + SpriteSystem.LayerSetVisible((uid, args.Sprite), LockVisualLayers.Lock, locked); - if (!open && (bool) unlockedStateExist!) + if (!open && (bool)unlockedStateExist!) { - args.Sprite.LayerSetState(LockVisualLayers.Lock, locked ? comp.StateLocked : comp.StateUnlocked); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), LockVisualLayers.Lock, locked ? comp.StateLocked : comp.StateUnlocked); } } } diff --git a/Content.Client/Mapping/MappingOverlay.cs b/Content.Client/Mapping/MappingOverlay.cs index ef9f3e795e..ed44b43d52 100644 --- a/Content.Client/Mapping/MappingOverlay.cs +++ b/Content.Client/Mapping/MappingOverlay.cs @@ -15,6 +15,8 @@ public sealed class MappingOverlay : Overlay [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly IPrototypeManager _prototypes = default!; + private readonly SpriteSystem _sprite; + // 1 off in case something else uses these colors since we use them to compare private static readonly Color PickColor = new(1, 255, 0); private static readonly Color DeleteColor = new(255, 1, 0); @@ -30,6 +32,8 @@ public sealed class MappingOverlay : Overlay { IoCManager.InjectDependencies(this); + _sprite = _entities.System(); + _state = state; _shader = _prototypes.Index("unshaded").Instance(); } @@ -42,7 +46,7 @@ public sealed class MappingOverlay : Overlay continue; if (sprite.Color == DeleteColor || sprite.Color == PickColor) - sprite.Color = color; + _sprite.SetColor((id, sprite), color); } _oldColors.Clear(); @@ -61,7 +65,7 @@ public sealed class MappingOverlay : Overlay _entities.TryGetComponent(entity, out SpriteComponent? sprite)) { _oldColors[entity] = sprite.Color; - sprite.Color = PickColor; + _sprite.SetColor((entity, sprite), PickColor); } break; @@ -72,7 +76,7 @@ public sealed class MappingOverlay : Overlay _entities.TryGetComponent(entity, out SpriteComponent? sprite)) { _oldColors[entity] = sprite.Color; - sprite.Color = DeleteColor; + _sprite.SetColor((entity, sprite), DeleteColor); } break; diff --git a/Content.Client/Markers/MarkerSystem.cs b/Content.Client/Markers/MarkerSystem.cs index f12329bd78..2ff567e69e 100644 --- a/Content.Client/Markers/MarkerSystem.cs +++ b/Content.Client/Markers/MarkerSystem.cs @@ -5,6 +5,8 @@ namespace Content.Client.Markers; public sealed class MarkerSystem : EntitySystem { + [Dependency] private readonly SpriteSystem _sprite = default!; + private bool _markersVisible; public bool MarkersVisible @@ -33,7 +35,7 @@ public sealed class MarkerSystem : EntitySystem { if (EntityManager.TryGetComponent(uid, out SpriteComponent? sprite)) { - sprite.Visible = MarkersVisible; + _sprite.SetVisible((uid, sprite), MarkersVisible); } } diff --git a/Content.Client/Materials/MaterialStorageSystem.cs b/Content.Client/Materials/MaterialStorageSystem.cs index 592471d673..f9078a9032 100644 --- a/Content.Client/Materials/MaterialStorageSystem.cs +++ b/Content.Client/Materials/MaterialStorageSystem.cs @@ -7,6 +7,7 @@ public sealed class MaterialStorageSystem : SharedMaterialStorageSystem { [Dependency] private readonly AppearanceSystem _appearance = default!; [Dependency] private readonly TransformSystem _transform = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -20,7 +21,7 @@ public sealed class MaterialStorageSystem : SharedMaterialStorageSystem if (args.Sprite == null) return; - if (!args.Sprite.LayerMapTryGet(MaterialStorageVisualLayers.Inserting, out var layer)) + if (!_sprite.LayerMapTryGet((uid, args.Sprite), MaterialStorageVisualLayers.Inserting, out var layer, false)) return; if (!_appearance.TryGetData(uid, MaterialStorageVisuals.Inserting, out var inserting, args.Component)) @@ -28,15 +29,15 @@ public sealed class MaterialStorageSystem : SharedMaterialStorageSystem if (inserting && TryComp(uid, out var insertingComp)) { - args.Sprite.LayerSetAnimationTime(layer, 0f); + _sprite.LayerSetAnimationTime((uid, args.Sprite), layer, 0f); - args.Sprite.LayerSetVisible(layer, true); + _sprite.LayerSetVisible((uid, args.Sprite), layer, true); if (insertingComp.MaterialColor != null) - args.Sprite.LayerSetColor(layer, insertingComp.MaterialColor.Value); + _sprite.LayerSetColor((uid, args.Sprite), layer, insertingComp.MaterialColor.Value); } else { - args.Sprite.LayerSetVisible(layer, false); + _sprite.LayerSetVisible((uid, args.Sprite), layer, false); } } diff --git a/Content.Client/Materials/RecyclerVisualizerSystem.cs b/Content.Client/Materials/RecyclerVisualizerSystem.cs index 646ae406aa..9c6006c5de 100644 --- a/Content.Client/Materials/RecyclerVisualizerSystem.cs +++ b/Content.Client/Materials/RecyclerVisualizerSystem.cs @@ -8,7 +8,7 @@ public sealed class RecyclerVisualizerSystem : VisualizerSystem(uid, ConveyorVisuals.State, out var running); @@ -22,6 +22,6 @@ public sealed class RecyclerVisualizerSystem : VisualizerSystem(uid, MechAssemblyVisuals.State, out var stage, args.Component)) return; var state = component.StatePrefix + stage; - - args.Sprite?.LayerSetState(0, state); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), 0, state); } } diff --git a/Content.Client/Mech/MechSystem.cs b/Content.Client/Mech/MechSystem.cs index 1a938f14be..69f3779ae2 100644 --- a/Content.Client/Mech/MechSystem.cs +++ b/Content.Client/Mech/MechSystem.cs @@ -11,6 +11,7 @@ namespace Content.Client.Mech; public sealed class MechSystem : SharedMechSystem { [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; /// public override void Initialize() @@ -39,7 +40,7 @@ public sealed class MechSystem : SharedMechSystem private void UpdateAppearance(EntityUid uid, MechComponent component, SpriteComponent sprite) { - if (!sprite.TryGetLayer((int) MechVisualLayers.Base, out var layer)) + if (!_sprite.LayerExists((uid, args.Sprite), MechVisualLayers.Base)) return; var state = component.BaseState; @@ -60,7 +61,7 @@ public sealed class MechSystem : SharedMechSystem drawDepth = DrawDepth.SmallMobs; } - layer.SetState(state); - sprite.DrawDepth = (int) drawDepth; + _sprite.LayerSetRsiState((uid, args.Sprite), MechVisualLayers.Base, state); + _sprite.SetDrawDepth((uid, args.Sprite), (int)drawDepth); } } diff --git a/Content.Client/Medical/Cryogenics/CryoPodSystem.cs b/Content.Client/Medical/Cryogenics/CryoPodSystem.cs index a9f3c76b48..13db5a8421 100644 --- a/Content.Client/Medical/Cryogenics/CryoPodSystem.cs +++ b/Content.Client/Medical/Cryogenics/CryoPodSystem.cs @@ -3,13 +3,13 @@ using Content.Shared.Emag.Systems; using Content.Shared.Medical.Cryogenics; using Content.Shared.Verbs; using Robust.Client.GameObjects; -using DrawDepth = Content.Shared.DrawDepth.DrawDepth; namespace Content.Client.Medical.Cryogenics; -public sealed class CryoPodSystem: SharedCryoPodSystem +public sealed class CryoPodSystem : SharedCryoPodSystem { [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -33,7 +33,7 @@ public sealed class CryoPodSystem: SharedCryoPodSystem } component.PreviousOffset = spriteComponent.Offset; - spriteComponent.Offset = new Vector2(0, 1); + _sprite.SetOffset((uid, spriteComponent), new Vector2(0, 1)); } private void OnCryoPodRemoval(EntityUid uid, InsideCryoPodComponent component, ComponentRemove args) @@ -43,7 +43,7 @@ public sealed class CryoPodSystem: SharedCryoPodSystem return; } - spriteComponent.Offset = component.PreviousOffset; + _sprite.SetOffset((uid, spriteComponent), component.PreviousOffset); } private void OnAppearanceChange(EntityUid uid, CryoPodComponent component, ref AppearanceChangeEvent args) @@ -61,16 +61,14 @@ public sealed class CryoPodSystem: SharedCryoPodSystem if (isOpen) { - args.Sprite.LayerSetState(CryoPodVisualLayers.Base, "pod-open"); - args.Sprite.LayerSetVisible(CryoPodVisualLayers.Cover, false); - args.Sprite.DrawDepth = (int) DrawDepth.Objects; + _sprite.LayerSetRsiState((uid, args.Sprite), CryoPodVisualLayers.Base, "pod-open"); + _sprite.LayerSetVisible((uid, args.Sprite), CryoPodVisualLayers.Cover, false); } else { - args.Sprite.DrawDepth = (int) DrawDepth.Mobs; - args.Sprite.LayerSetState(CryoPodVisualLayers.Base, isOn ? "pod-on" : "pod-off"); - args.Sprite.LayerSetState(CryoPodVisualLayers.Cover, isOn ? "cover-on" : "cover-off"); - args.Sprite.LayerSetVisible(CryoPodVisualLayers.Cover, true); + _sprite.LayerSetRsiState((uid, args.Sprite), CryoPodVisualLayers.Base, isOn ? "pod-on" : "pod-off"); + _sprite.LayerSetRsiState((uid, args.Sprite), CryoPodVisualLayers.Cover, isOn ? "cover-on" : "cover-off"); + _sprite.LayerSetVisible((uid, args.Sprite), CryoPodVisualLayers.Cover, true); } } } diff --git a/Content.Client/Mining/MiningOverlay.cs b/Content.Client/Mining/MiningOverlay.cs index b23835b36e..f4140f064f 100644 --- a/Content.Client/Mining/MiningOverlay.cs +++ b/Content.Client/Mining/MiningOverlay.cs @@ -62,7 +62,7 @@ public sealed class MiningOverlay : Overlay if (xform.MapID != args.MapId || !sprite.Visible) continue; - if (!sprite.LayerMapTryGet(MiningScannerVisualLayers.Overlay, out var idx)) + if (!_sprite.LayerMapTryGet((ore, sprite), MiningScannerVisualLayers.Overlay, out var idx, false)) continue; var layer = sprite[idx]; @@ -85,10 +85,10 @@ public sealed class MiningOverlay : Overlay var alpha = animTime < viewerComp.AnimationDuration ? 0 - : (float) Math.Clamp((animTime - viewerComp.AnimationDuration) / viewerComp.AnimationDuration, 0f, 1f); + : (float)Math.Clamp((animTime - viewerComp.AnimationDuration) / viewerComp.AnimationDuration, 0f, 1f); var color = Color.White.WithAlpha(alpha); - handle.DrawTexture(texture, -(Vector2) texture.Size / 2f / EyeManager.PixelsPerMeter, layer.Rotation, modulate: color); + handle.DrawTexture(texture, -(Vector2)texture.Size / 2f / EyeManager.PixelsPerMeter, layer.Rotation, modulate: color); } handle.SetTransform(Matrix3x2.Identity); diff --git a/Content.Client/Movement/Systems/ClientSpriteMovementSystem.cs b/Content.Client/Movement/Systems/ClientSpriteMovementSystem.cs index a6265204b7..eb60e4fbb6 100644 --- a/Content.Client/Movement/Systems/ClientSpriteMovementSystem.cs +++ b/Content.Client/Movement/Systems/ClientSpriteMovementSystem.cs @@ -9,6 +9,8 @@ namespace Content.Client.Movement.Systems; /// public sealed class ClientSpriteMovementSystem : SharedSpriteMovementSystem { + [Dependency] private readonly SpriteSystem _sprite = default!; + private EntityQuery _spriteQuery; public override void Initialize() @@ -29,14 +31,14 @@ public sealed class ClientSpriteMovementSystem : SharedSpriteMovementSystem { foreach (var (layer, state) in ent.Comp.MovementLayers) { - sprite.LayerSetData(layer, state); + _sprite.LayerSetData((ent.Owner, sprite), layer, state); } } else { foreach (var (layer, state) in ent.Comp.NoMovementLayers) { - sprite.LayerSetData(layer, state); + _sprite.LayerSetData((ent.Owner, sprite), layer, state); } } } diff --git a/Content.Client/Movement/Systems/JetpackSystem.cs b/Content.Client/Movement/Systems/JetpackSystem.cs index 804736ab7a..6810bb24cc 100644 --- a/Content.Client/Movement/Systems/JetpackSystem.cs +++ b/Content.Client/Movement/Systems/JetpackSystem.cs @@ -16,6 +16,7 @@ public sealed class JetpackSystem : SharedJetpackSystem [Dependency] private readonly ClothingSystem _clothing = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -34,7 +35,8 @@ public sealed class JetpackSystem : SharedJetpackSystem Appearance.TryGetData(uid, JetpackVisuals.Enabled, out var enabled, args.Component); var state = "icon" + (enabled ? "-on" : ""); - args.Sprite?.LayerSetState(0, state); + if (args.Sprite != null) + _sprite.LayerSetRsiState((uid, args.Sprite), 0, state); if (TryComp(uid, out var clothing)) _clothing.SetEquippedPrefix(uid, enabled ? "on" : null, clothing); diff --git a/Content.Client/NodeContainer/NodeContainerSystem.cs b/Content.Client/NodeContainer/NodeContainerSystem.cs new file mode 100644 index 0000000000..512aa8f469 --- /dev/null +++ b/Content.Client/NodeContainer/NodeContainerSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.NodeContainer; + +namespace Content.Client.NodeContainer; + +public sealed class NodeContainerSystem : SharedNodeContainerSystem; diff --git a/Content.Client/NodeContainer/NodeVisualizationOverlay.cs b/Content.Client/NodeContainer/NodeVisualizationOverlay.cs index b0bdf8ed87..9466ca032b 100644 --- a/Content.Client/NodeContainer/NodeVisualizationOverlay.cs +++ b/Content.Client/NodeContainer/NodeVisualizationOverlay.cs @@ -21,9 +21,10 @@ namespace Content.Client.NodeContainer private readonly IInputManager _inputManager; private readonly IEntityManager _entityManager; private readonly SharedTransformSystem _transformSystem; + private readonly SharedMapSystem _mapSystem; private readonly Dictionary<(int, int), NodeRenderData> _nodeIndex = new(); - private readonly Dictionary>> _gridIndex = new (); + private readonly Dictionary>> _gridIndex = new(); private List> _grids = new(); private readonly Font _font; @@ -48,6 +49,7 @@ namespace Content.Client.NodeContainer _inputManager = inputManager; _entityManager = entityManager; _transformSystem = _entityManager.System(); + _mapSystem = _entityManager.System(); _font = cache.GetFont("/Fonts/NotoSans/NotoSans-Regular.ttf", 12); } @@ -84,7 +86,7 @@ namespace Content.Client.NodeContainer var xform = _entityManager.GetComponent(_entityManager.GetEntity(node.Entity)); if (!_entityManager.TryGetComponent(xform.GridUid, out var grid)) return; - var gridTile = grid.TileIndicesFor(xform.Coordinates); + var gridTile = _mapSystem.TileIndicesFor((xform.GridUid.Value, grid), xform.Coordinates); var sb = new StringBuilder(); sb.Append($"entity: {node.Entity}\n"); @@ -133,7 +135,7 @@ namespace Content.Client.NodeContainer if (float.IsNaN(coords.Position.X) || float.IsNaN(coords.Position.Y)) continue; - var tile = gridDict.GetOrNew(grid.Comp.TileIndicesFor(coords)); + var tile = gridDict.GetOrNew(_mapSystem.TileIndicesFor(grid, coords)); foreach (var (group, nodeDatum) in nodeData) { @@ -153,7 +155,7 @@ namespace Content.Client.NodeContainer var lCursorBox = invMatrix.TransformBox(cursorBox); foreach (var (pos, list) in gridDict) { - var centerPos = (Vector2) pos + grid.TileSizeHalfVector; + var centerPos = (Vector2)pos + grid.TileSizeHalfVector; list.Sort(NodeDisplayComparer.Instance); var offset = -(list.Count - 1) * nodeOffset / 2; diff --git a/Content.Client/Nutrition/EntitySystems/ClientFoodSequenceSystem.cs b/Content.Client/Nutrition/EntitySystems/ClientFoodSequenceSystem.cs index c708c6fe7d..46d71917c2 100644 --- a/Content.Client/Nutrition/EntitySystems/ClientFoodSequenceSystem.cs +++ b/Content.Client/Nutrition/EntitySystems/ClientFoodSequenceSystem.cs @@ -6,6 +6,8 @@ namespace Content.Client.Nutrition.EntitySystems; public sealed class ClientFoodSequenceSystem : SharedFoodSequenceSystem { + [Dependency] private readonly SpriteSystem _sprite = default!; + public override void Initialize() { SubscribeLocalEvent(OnHandleState); @@ -27,7 +29,7 @@ public sealed class ClientFoodSequenceSystem : SharedFoodSequenceSystem //Remove old layers foreach (var key in start.Comp.RevealedLayers) { - sprite.RemoveLayer(key); + _sprite.RemoveLayer((start.Owner, sprite), key); } start.Comp.RevealedLayers.Clear(); @@ -41,20 +43,20 @@ public sealed class ClientFoodSequenceSystem : SharedFoodSequenceSystem var keyCode = $"food-layer-{counter}"; start.Comp.RevealedLayers.Add(keyCode); - sprite.LayerMapTryGet(start.Comp.TargetLayerMap, out var index); + _sprite.LayerMapTryGet((start.Owner, sprite), start.Comp.TargetLayerMap, out var index, false); if (start.Comp.InverseLayers) index++; - sprite.AddBlankLayer(index); - sprite.LayerMapSet(keyCode, index); - sprite.LayerSetSprite(index, state.Sprite); - sprite.LayerSetScale(index, state.Scale); + _sprite.AddBlankLayer((start.Owner, sprite), index); + _sprite.LayerMapSet((start.Owner, sprite), keyCode, index); + _sprite.LayerSetSprite((start.Owner, sprite), index, state.Sprite); + _sprite.LayerSetScale((start.Owner, sprite), index, state.Scale); //Offset the layer var layerPos = start.Comp.StartPosition; layerPos += (start.Comp.Offset * counter) + state.LocalOffset; - sprite.LayerSetOffset(index, layerPos); + _sprite.LayerSetOffset((start.Owner, sprite), index, layerPos); counter++; } diff --git a/Content.Client/Nutrition/EntitySystems/InfantSystem.cs b/Content.Client/Nutrition/EntitySystems/InfantSystem.cs index dbda75c58f..b003a24f09 100644 --- a/Content.Client/Nutrition/EntitySystems/InfantSystem.cs +++ b/Content.Client/Nutrition/EntitySystems/InfantSystem.cs @@ -8,6 +8,8 @@ namespace Content.Client.Nutrition.EntitySystems; /// public sealed class InfantSystem : EntitySystem { + [Dependency] private readonly SpriteSystem _sprite = default!; + /// public override void Initialize() { @@ -21,7 +23,7 @@ public sealed class InfantSystem : EntitySystem return; component.DefaultScale = sprite.Scale; - sprite.Scale = component.VisualScale; + _sprite.SetScale((uid, sprite), component.VisualScale); } private void OnShutdown(EntityUid uid, InfantComponent component, ComponentShutdown args) @@ -29,6 +31,6 @@ public sealed class InfantSystem : EntitySystem if (!TryComp(uid, out var sprite)) return; - sprite.Scale = component.DefaultScale; + _sprite.SetScale((uid, sprite), component.DefaultScale); } } diff --git a/Content.Client/Options/OptionsVisualizerSystem.cs b/Content.Client/Options/OptionsVisualizerSystem.cs index 2a297e3802..1876b9bf55 100644 --- a/Content.Client/Options/OptionsVisualizerSystem.cs +++ b/Content.Client/Options/OptionsVisualizerSystem.cs @@ -18,6 +18,7 @@ public sealed class OptionsVisualizerSystem : EntitySystem [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IReflectionManager _reflection = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; private OptionVisualizerOptions _currentOptions; @@ -55,9 +56,9 @@ public sealed class OptionsVisualizerSystem : EntitySystem private void UpdateAllComponents() { var query = EntityQueryEnumerator(); - while (query.MoveNext(out _, out var component, out var sprite)) + while (query.MoveNext(out var uid, out var component, out var sprite)) { - UpdateComponent(component, sprite); + UpdateComponent(uid, component, sprite); } } @@ -66,17 +67,13 @@ public sealed class OptionsVisualizerSystem : EntitySystem if (!TryComp(uid, out SpriteComponent? sprite)) return; - UpdateComponent(component, sprite); + UpdateComponent(uid, component, sprite); } - private void UpdateComponent(OptionsVisualizerComponent component, SpriteComponent sprite) + private void UpdateComponent(EntityUid uid, OptionsVisualizerComponent component, SpriteComponent sprite) { foreach (var (layerKeyRaw, layerData) in component.Visuals) { - object layerKey = _reflection.TryParseEnumReference(layerKeyRaw, out var @enum) - ? @enum - : layerKeyRaw; - OptionsVisualizerComponent.LayerDatum? matchedDatum = null; foreach (var datum in layerData) { @@ -89,8 +86,11 @@ public sealed class OptionsVisualizerSystem : EntitySystem if (matchedDatum == null) continue; - var layerIndex = sprite.LayerMapReserveBlank(layerKey); - sprite.LayerSetData(layerIndex, matchedDatum.Data); + var layerIndex = _reflection.TryParseEnumReference(layerKeyRaw, out var @enum) + ? _sprite.LayerMapReserve((uid, sprite), @enum) + : _sprite.LayerMapReserve((uid, sprite), layerKeyRaw); + + _sprite.LayerSetData((uid, sprite), layerIndex, matchedDatum.Data); } } } diff --git a/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs b/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs index f8880c1b0f..d2a8b64e2d 100644 --- a/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs +++ b/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs @@ -182,6 +182,7 @@ namespace Content.Client.Options.UI.Tabs AddButton(ContentKeyFunctions.Drop); AddButton(ContentKeyFunctions.ExamineEntity); AddButton(ContentKeyFunctions.SwapHands); + AddButton(ContentKeyFunctions.SwapHandsReverse); AddButton(ContentKeyFunctions.MoveStoredItem); AddButton(ContentKeyFunctions.RotateStoredItem); AddButton(ContentKeyFunctions.SaveItemLocation); diff --git a/Content.Client/Orbit/OrbitVisualsSystem.cs b/Content.Client/Orbit/OrbitVisualsSystem.cs index 1bcebd07b7..9824ccac29 100644 --- a/Content.Client/Orbit/OrbitVisualsSystem.cs +++ b/Content.Client/Orbit/OrbitVisualsSystem.cs @@ -13,6 +13,7 @@ public sealed class OrbitVisualsSystem : EntitySystem [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly AnimationPlayerSystem _animations = default!; [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; private readonly string _orbitStopKey = "orbiting_stop"; @@ -63,14 +64,15 @@ public sealed class OrbitVisualsSystem : EntitySystem { base.FrameUpdate(frameTime); - foreach (var (orbit, sprite) in EntityManager.EntityQuery()) + var query = EntityManager.EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var orbit, out var sprite)) { var progress = (float)(_timing.CurTime.TotalSeconds / orbit.OrbitLength) % 1; var angle = new Angle(Math.PI * 2 * progress); var vec = angle.RotateVec(new Vector2(orbit.OrbitDistance, 0)); - sprite.Rotation = angle; - sprite.Offset = vec; + _sprite.SetRotation((uid, sprite), angle); + _sprite.SetOffset((uid, sprite), vec); } } diff --git a/Content.Client/Overlays/EntityHealthBarOverlay.cs b/Content.Client/Overlays/EntityHealthBarOverlay.cs index 193635bda7..9ff0422aba 100644 --- a/Content.Client/Overlays/EntityHealthBarOverlay.cs +++ b/Content.Client/Overlays/EntityHealthBarOverlay.cs @@ -28,6 +28,7 @@ public sealed class EntityHealthBarOverlay : Overlay private readonly MobStateSystem _mobStateSystem; private readonly MobThresholdSystem _mobThresholdSystem; private readonly StatusIconSystem _statusIconSystem; + private readonly SpriteSystem _spriteSystem; private readonly ProgressColorSystem _progressColor; @@ -43,6 +44,7 @@ public sealed class EntityHealthBarOverlay : Overlay _mobStateSystem = _entManager.System(); _mobThresholdSystem = _entManager.System(); _statusIconSystem = _entManager.System(); + _spriteSystem = _entManager.System(); _progressColor = _entManager.System(); } @@ -76,7 +78,7 @@ public sealed class EntityHealthBarOverlay : Overlay continue; // we use the status icon component bounds if specified otherwise use sprite - var bounds = _entManager.GetComponentOrNull(uid)?.Bounds ?? spriteComponent.Bounds; + var bounds = _entManager.GetComponentOrNull(uid)?.Bounds ?? _spriteSystem.GetLocalBounds((uid, spriteComponent)); var worldPos = _transform.GetWorldPosition(xform, xformQuery); if (!bounds.Translated(worldPos).Intersects(args.WorldAABB)) @@ -136,7 +138,7 @@ public sealed class EntityHealthBarOverlay : Overlay !_mobThresholdSystem.TryGetThresholdForState(uid, MobState.Dead, out threshold, thresholds)) return (1, false); - var ratio = 1 - ((FixedPoint2) (dmg.TotalDamage / threshold)).Float(); + var ratio = 1 - ((FixedPoint2)(dmg.TotalDamage / threshold)).Float(); return (ratio, false); } diff --git a/Content.Client/Overlays/StencilOverlay.cs b/Content.Client/Overlays/StencilOverlay.cs index eb5c27156e..e8461ae5a3 100644 --- a/Content.Client/Overlays/StencilOverlay.cs +++ b/Content.Client/Overlays/StencilOverlay.cs @@ -48,7 +48,7 @@ public sealed partial class StencilOverlay : Overlay protected override void Draw(in OverlayDrawArgs args) { - var mapUid = _mapManager.GetMapEntityId(args.MapId); + var mapUid = _map.GetMapOrInvalid(args.MapId); var invMatrix = args.Viewport.GetWorldToLocalMatrix(); if (_blep?.Texture.Size != args.Viewport.Size) diff --git a/Content.Client/PDA/PdaVisualizerSystem.cs b/Content.Client/PDA/PdaVisualizerSystem.cs index 735fcd42eb..0d7685d6ae 100644 --- a/Content.Client/PDA/PdaVisualizerSystem.cs +++ b/Content.Client/PDA/PdaVisualizerSystem.cs @@ -12,13 +12,13 @@ public sealed class PdaVisualizerSystem : VisualizerSystem return; if (AppearanceSystem.TryGetData(uid, PdaVisuals.PdaType, out var pdaType, args.Component)) - args.Sprite.LayerSetState(PdaVisualLayers.Base, pdaType); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), PdaVisualLayers.Base, pdaType); if (AppearanceSystem.TryGetData(uid, UnpoweredFlashlightVisuals.LightOn, out var isFlashlightOn, args.Component)) - args.Sprite.LayerSetVisible(PdaVisualLayers.Flashlight, isFlashlightOn); + SpriteSystem.LayerSetVisible((uid, args.Sprite), PdaVisualLayers.Flashlight, isFlashlightOn); if (AppearanceSystem.TryGetData(uid, PdaVisuals.IdCardInserted, out var isCardInserted, args.Component)) - args.Sprite.LayerSetVisible(PdaVisualLayers.IdLight, isCardInserted); + SpriteSystem.LayerSetVisible((uid, args.Sprite), PdaVisualLayers.IdLight, isCardInserted); } public enum PdaVisualLayers : byte diff --git a/Content.Client/Paper/EnvelopeSystem.cs b/Content.Client/Paper/EnvelopeSystem.cs index f405ed1518..0e9dac6415 100644 --- a/Content.Client/Paper/EnvelopeSystem.cs +++ b/Content.Client/Paper/EnvelopeSystem.cs @@ -21,9 +21,9 @@ public sealed class EnvelopeSystem : VisualizerSystem if (!Resolve(ent.Owner, ref sprite)) return; - sprite.LayerSetVisible(EnvelopeVisualLayers.Open, ent.Comp.State == EnvelopeComponent.EnvelopeState.Open); - sprite.LayerSetVisible(EnvelopeVisualLayers.Sealed, ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed); - sprite.LayerSetVisible(EnvelopeVisualLayers.Torn, ent.Comp.State == EnvelopeComponent.EnvelopeState.Torn); + SpriteSystem.LayerSetVisible((ent.Owner, sprite), EnvelopeVisualLayers.Open, ent.Comp.State == EnvelopeComponent.EnvelopeState.Open); + SpriteSystem.LayerSetVisible((ent.Owner, sprite), EnvelopeVisualLayers.Sealed, ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed); + SpriteSystem.LayerSetVisible((ent.Owner, sprite), EnvelopeVisualLayers.Torn, ent.Comp.State == EnvelopeComponent.EnvelopeState.Torn); } public enum EnvelopeVisualLayers : byte diff --git a/Content.Client/Paper/UI/PaperVisualizerSystem.cs b/Content.Client/Paper/UI/PaperVisualizerSystem.cs index 3fd717f896..eb8489b7cb 100644 --- a/Content.Client/Paper/UI/PaperVisualizerSystem.cs +++ b/Content.Client/Paper/UI/PaperVisualizerSystem.cs @@ -12,18 +12,18 @@ public sealed class PaperVisualizerSystem : VisualizerSystem(uid, PaperVisuals.Status, out var writingStatus, args.Component)) - args.Sprite.LayerSetVisible(PaperVisualLayers.Writing, writingStatus == PaperStatus.Written); + SpriteSystem.LayerSetVisible((uid, args.Sprite), PaperVisualLayers.Writing, writingStatus == PaperStatus.Written); if (AppearanceSystem.TryGetData(uid, PaperVisuals.Stamp, out var stampState, args.Component)) { if (stampState != string.Empty) { - args.Sprite.LayerSetState(PaperVisualLayers.Stamp, stampState); - args.Sprite.LayerSetVisible(PaperVisualLayers.Stamp, true); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), PaperVisualLayers.Stamp, stampState); + SpriteSystem.LayerSetVisible((uid, args.Sprite), PaperVisualLayers.Stamp, true); } else { - args.Sprite.LayerSetVisible(PaperVisualLayers.Stamp, false); + SpriteSystem.LayerSetVisible((uid, args.Sprite), PaperVisualLayers.Stamp, false); } } diff --git a/Content.Client/Paper/UI/PaperVisualsComponent.cs b/Content.Client/Paper/UI/PaperVisualsComponent.cs index f0dee3cf90..735c5a7e24 100644 --- a/Content.Client/Paper/UI/PaperVisualsComponent.cs +++ b/Content.Client/Paper/UI/PaperVisualsComponent.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Robust.Shared.Utility; namespace Content.Client.Paper.UI; @@ -55,6 +56,24 @@ public sealed partial class PaperVisualsComponent : Component [DataField("headerMargin")] public Box2 HeaderMargin = default; + /// + /// A path to an image which will be used as a footer on the paper + /// + [DataField] + public ResPath? FooterImagePath; + + /// + /// Modulate the footer image by this color + /// + [DataField] + public Color FooterImageModulate = Color.White; + + /// + /// Any additional margin to add around the footer + /// + [DataField] + public Box2 FooterMargin = default; + /// /// Path to an image to use as the background to the "content" of the paper /// The header and actual written text will use this as a background. The diff --git a/Content.Client/Paper/UI/PaperWindow.xaml b/Content.Client/Paper/UI/PaperWindow.xaml index dd48041650..fb20087924 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml +++ b/Content.Client/Paper/UI/PaperWindow.xaml @@ -23,6 +23,7 @@ Task GenerateTexture(CancellationToken cancel = default); + + /// + /// Called when the parallax texture is no longer necessary, and may be unloaded. + /// + void Unload(IDependencyCollection dependencies) + { + } } } diff --git a/Content.Client/Parallax/Managers/GeneratedParallaxCache.cs b/Content.Client/Parallax/Managers/GeneratedParallaxCache.cs new file mode 100644 index 0000000000..845f631de8 --- /dev/null +++ b/Content.Client/Parallax/Managers/GeneratedParallaxCache.cs @@ -0,0 +1,202 @@ +using System.IO; +using System.Threading; +using System.Threading.Tasks; +using Content.Client.Parallax.Data; +using Content.Shared.CCVar; +using Nett; +using Robust.Client.Graphics; +using Robust.Shared.Collections; +using Robust.Shared.Configuration; +using Robust.Shared.ContentPack; +using Robust.Shared.Utility; +using SixLabors.ImageSharp; +using SixLabors.ImageSharp.PixelFormats; + +namespace Content.Client.Parallax.Managers; + +/// +/// Caches the textures generated by +/// +public sealed class GeneratedParallaxCache : IPostInjectInit +{ + [Dependency] private readonly IConfigurationManager _cfg = null!; + [Dependency] private readonly IResourceManager _res = null!; + [Dependency] private readonly ILogManager _logManager = null!; + + private readonly Dictionary _data = new(); + + private ISawmill _sawmill = null!; + + public Task Load(string id, ResPath configPath, CancellationToken cancel = default) + { + if (!_data.TryGetValue(id, out var datum)) + { + _sawmill.Verbose($"Loading new generated layer {id} with config path {configPath}"); + + var cts = new CancellationTokenSource(); + + var loadTask = LoadTask(id, configPath, cts.Token); + datum = new CacheDatum + { + CancellationSource = cts, + ConfigPath = configPath, + LoadTask = loadTask, + }; + + _data.Add(id, datum); + } + else + { + if (datum.ConfigPath != configPath) + throw new InvalidOperationException("Generated parallax layers with the same ID must have the same config path!"); + } + + datum.RefCount += 1; + + if (!datum.LoadTask.IsCompleted) + cancel.Register(() => Unload(id)); + + return datum.LoadTask; + } + + public void Unload(string id) + { + if (!_data.TryGetValue(id, out var datum)) + throw new InvalidOperationException("Layer is not cached!"); + + DebugTools.Assert(datum.RefCount >= 1); + + datum.RefCount -= 1; + if (datum.RefCount == 0) + { + _sawmill.Verbose($"Unloading generated layer {id}"); + + // If we're still loading, cancel the active load. + datum.CancellationSource.Cancel(); + + // We should probably be unloading the texture here forcibly, + // but the previous code didn't so I won't either. + _data.Remove(id); + } + } + + private async Task LoadTask(string id, ResPath configPath, CancellationToken cancel) + { + return await GenerateTexture(id, configPath, cancel); + } + + private async Task GenerateTexture(string id, ResPath configPath, CancellationToken cancel) + { + var parallaxConfig = GetParallaxConfig(configPath); + if (parallaxConfig == null) + { + _sawmill.Error($"Parallax config not found or unreadable: {configPath}"); + // The show must go on. + return Texture.Transparent; + } + + var debugParallax = _cfg.GetCVar(CCVars.ParallaxDebug); + + if (debugParallax + || !_res.UserData.TryReadAllText(PreviousConfigPath(id), out var previousParallaxConfig) + || previousParallaxConfig != parallaxConfig) + { + var table = Toml.ReadString(parallaxConfig); + await UpdateCachedTexture(id, table, debugParallax, cancel); + + //Update the previous config + using var writer = _res.UserData.OpenWriteText(PreviousConfigPath(id)); + writer.Write(parallaxConfig); + } + + try + { + return GetCachedTexture(id); + } + catch (Exception ex) + { + _sawmill.Error($"Couldn't retrieve parallax cached texture: {ex}"); + + try + { + // Also try to at least sort of fix this if we've been fooled by a config backup + _res.UserData.Delete(PreviousConfigPath(id)); + } + catch (Exception) + { + // The show must go on. + } + + return Texture.Transparent; + } + } + + private async Task UpdateCachedTexture(string id, TomlTable config, bool saveDebugLayers, CancellationToken cancel) + { + var debugImages = saveDebugLayers ? new List>() : null; + + // Generate the parallax in the thread pool. + using var newParallexImage = await Task.Run(() => + ParallaxGenerator.GenerateParallax(config, new Size(1920, 1080), _sawmill, debugImages, cancel), + cancel); + + // And load it in the main thread for safety reasons. + // But before spending time saving it, make sure to exit out early if it's not wanted. + cancel.ThrowIfCancellationRequested(); + + // Store it and CRC so further game starts don't need to regenerate it. + await using var imageStream = _res.UserData.OpenWrite(CachedImagePath(id)); + await newParallexImage.SaveAsPngAsync(imageStream, cancel); + + if (saveDebugLayers) + { + for (var i = 0; i < debugImages!.Count; i++) + { + var debugImage = debugImages[i]; + await using var debugImageStream = + _res.UserData.OpenWrite(new ResPath($"/parallax_{id}debug_{i}.png")); + await debugImage.SaveAsPngAsync(debugImageStream, cancel); + } + } + } + + private Texture GetCachedTexture(string id) + { + using var imageStream = _res.UserData.OpenRead(CachedImagePath(id)); + return Texture.LoadFromPNGStream(imageStream, $"Parallax {id}"); + } + + private string? GetParallaxConfig(ResPath configPath) + { + if (!_res.TryContentFileRead(configPath, out var configStream)) + return null; + + using var configReader = new StreamReader(configStream, EncodingHelpers.UTF8); + return configReader.ReadToEnd().Replace(Environment.NewLine, "\n"); + } + + private static ResPath CachedImagePath(string identifier) + { + return new ResPath($"/parallax_{identifier}cache.png"); + } + + private static ResPath PreviousConfigPath(string identifier) + { + return new ResPath($"/parallax_{identifier}config_old"); + } + + void IPostInjectInit.PostInject() + { + _sawmill = _logManager.GetSawmill("parallax.generated"); + } + + private sealed class CacheDatum + { + public required ResPath ConfigPath; + public required Task LoadTask; + public required CancellationTokenSource CancellationSource; + public ValueList CancelRegistrations; + + public int RefCount; + } +} diff --git a/Content.Client/Parallax/Managers/ParallaxManager.cs b/Content.Client/Parallax/Managers/ParallaxManager.cs index 83e7febe27..bc7d7d60d6 100644 --- a/Content.Client/Parallax/Managers/ParallaxManager.cs +++ b/Content.Client/Parallax/Managers/ParallaxManager.cs @@ -1,4 +1,3 @@ -using System.Collections.Concurrent; using System.Numerics; using System.Threading; using System.Threading.Tasks; @@ -6,7 +5,6 @@ using Content.Client.Parallax.Data; using Content.Shared.CCVar; using Robust.Shared.Prototypes; using Robust.Shared.Configuration; -using Robust.Shared.Utility; namespace Content.Client.Parallax.Managers; @@ -14,6 +12,7 @@ public sealed class ParallaxManager : IParallaxManager { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IConfigurationManager _configurationManager = default!; + [Dependency] private readonly IDependencyCollection _deps = null!; private ISawmill _sawmill = Logger.GetSawmill("parallax"); @@ -40,14 +39,29 @@ public sealed class ParallaxManager : IParallaxManager { if (_loadingParallaxes.TryGetValue(name, out var loading)) { + _sawmill.Debug($"Cancelling loading parallax {name}"); loading.Cancel(); _loadingParallaxes.Remove(name, out _); return; } - if (!_parallaxesLQ.ContainsKey(name)) return; - _parallaxesLQ.Remove(name); - _parallaxesHQ.Remove(name); + _sawmill.Debug($"Unloading parallax {name}"); + + if (_parallaxesLQ.Remove(name, out var layers)) + { + foreach (var layer in layers) + { + layer.Config.Texture.Unload(_deps); + } + } + + if (_parallaxesHQ.Remove(name, out layers)) + { + foreach (var layer in layers) + { + layer.Config.Texture.Unload(_deps); + } + } } public async void LoadDefaultParallax() @@ -68,6 +82,9 @@ public sealed class ParallaxManager : IParallaxManager // Begin (for real) _sawmill.Debug($"Loading parallax {name}"); + // Keep a list of layers we did successfully load, in case we have to cancel the load. + var loadedLayers = new List(); + try { var parallaxPrototype = _prototypeManager.Index(name); @@ -77,23 +94,33 @@ public sealed class ParallaxManager : IParallaxManager if (parallaxPrototype.LayersLQUseHQ) { layers = new ParallaxLayerPrepared[2][]; - layers[0] = layers[1] = await LoadParallaxLayers(parallaxPrototype.Layers, cancel); + layers[0] = layers[1] = await LoadParallaxLayers(parallaxPrototype.Layers, loadedLayers, cancel); } else { layers = await Task.WhenAll( - LoadParallaxLayers(parallaxPrototype.Layers, cancel), - LoadParallaxLayers(parallaxPrototype.LayersLQ, cancel) + LoadParallaxLayers(parallaxPrototype.Layers, loadedLayers, cancel), + LoadParallaxLayers(parallaxPrototype.LayersLQ, loadedLayers, cancel) ); } - _loadingParallaxes.Remove(name, out _); + cancel.ThrowIfCancellationRequested(); - if (token.Token.IsCancellationRequested) return; + _loadingParallaxes.Remove(name); _parallaxesLQ[name] = layers[1]; _parallaxesHQ[name] = layers[0]; + _sawmill.Verbose($"Loading parallax {name} completed"); + } + catch (OperationCanceledException) + { + _sawmill.Verbose($"Loading parallax {name} cancelled"); + + foreach (var loadedLayer in loadedLayers) + { + loadedLayer.Config.Texture.Unload(_deps); + } } catch (Exception ex) { @@ -101,25 +128,35 @@ public sealed class ParallaxManager : IParallaxManager } } - private async Task LoadParallaxLayers(List layersIn, CancellationToken cancel = default) + private async Task LoadParallaxLayers( + List layersIn, + List loadedLayers, + CancellationToken cancel = default) { // Because this is async, make sure it doesn't change (prototype reloads could muck this up) // Since the tasks aren't awaited until the end, this should be fine var tasks = new Task[layersIn.Count]; for (var i = 0; i < layersIn.Count; i++) { - tasks[i] = LoadParallaxLayer(layersIn[i], cancel); + tasks[i] = LoadParallaxLayer(layersIn[i], loadedLayers, cancel); } return await Task.WhenAll(tasks); } - private async Task LoadParallaxLayer(ParallaxLayerConfig config, CancellationToken cancel = default) + private async Task LoadParallaxLayer( + ParallaxLayerConfig config, + List loadedLayers, + CancellationToken cancel = default) { - return new ParallaxLayerPrepared() + var prepared = new ParallaxLayerPrepared() { Texture = await config.Texture.GenerateTexture(cancel), Config = config }; + + loadedLayers.Add(prepared); + + return prepared; } } diff --git a/Content.Client/Parallax/ParallaxOverlay.cs b/Content.Client/Parallax/ParallaxOverlay.cs index 38748c4222..06f830675d 100644 --- a/Content.Client/Parallax/ParallaxOverlay.cs +++ b/Content.Client/Parallax/ParallaxOverlay.cs @@ -2,6 +2,7 @@ using System.Numerics; using Content.Client.Parallax.Managers; using Content.Shared.CCVar; using Content.Shared.Parallax.Biomes; +using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Shared.Configuration; using Robust.Shared.Enums; @@ -17,8 +18,8 @@ public sealed class ParallaxOverlay : Overlay [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IConfigurationManager _configurationManager = default!; - [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IParallaxManager _manager = default!; + private readonly SharedMapSystem _mapSystem; private readonly ParallaxSystem _parallax; public override OverlaySpace Space => OverlaySpace.WorldSpaceBelowWorld; @@ -27,12 +28,13 @@ public sealed class ParallaxOverlay : Overlay { ZIndex = ParallaxSystem.ParallaxZIndex; IoCManager.InjectDependencies(this); + _mapSystem = _entManager.System(); _parallax = _entManager.System(); } protected override bool BeforeDraw(in OverlayDrawArgs args) { - if (args.MapId == MapId.Nullspace || _entManager.HasComponent(_mapManager.GetMapEntityId(args.MapId))) + if (args.MapId == MapId.Nullspace || _entManager.HasComponent(_mapSystem.GetMapOrInvalid(args.MapId))) return false; return true; diff --git a/Content.Client/Parallax/ParallaxSystem.cs b/Content.Client/Parallax/ParallaxSystem.cs index db4cec0be8..465bc9cef4 100644 --- a/Content.Client/Parallax/ParallaxSystem.cs +++ b/Content.Client/Parallax/ParallaxSystem.cs @@ -10,9 +10,9 @@ namespace Content.Client.Parallax; public sealed class ParallaxSystem : SharedParallaxSystem { - [Dependency] private readonly IMapManager _map = default!; [Dependency] private readonly IOverlayManager _overlay = default!; [Dependency] private readonly IParallaxManager _parallax = default!; + [Dependency] private readonly SharedMapSystem _map = default!; [ValidatePrototypeId] private const string Fallback = "Default"; @@ -58,12 +58,12 @@ public sealed class ParallaxSystem : SharedParallaxSystem public ParallaxLayerPrepared[] GetParallaxLayers(MapId mapId) { - return _parallax.GetParallaxLayers(GetParallax(_map.GetMapEntityId(mapId))); + return _parallax.GetParallaxLayers(GetParallax(_map.GetMapOrInvalid(mapId))); } public string GetParallax(MapId mapId) { - return GetParallax(_map.GetMapEntityId(mapId)); + return GetParallax(_map.GetMapOrInvalid(mapId)); } public string GetParallax(EntityUid mapUid) diff --git a/Content.Client/ParticleAccelerator/ParticleAcceleratorPartVisualizerSystem.cs b/Content.Client/ParticleAccelerator/ParticleAcceleratorPartVisualizerSystem.cs index bcfcc64e21..0e98c1a292 100644 --- a/Content.Client/ParticleAccelerator/ParticleAcceleratorPartVisualizerSystem.cs +++ b/Content.Client/ParticleAccelerator/ParticleAcceleratorPartVisualizerSystem.cs @@ -1,4 +1,3 @@ -using System.Linq; using Content.Shared.Singularity.Components; using Robust.Client.GameObjects; @@ -11,7 +10,7 @@ public sealed class ParticleAcceleratorPartVisualizerSystem : VisualizerSystem

(uid, ParticleAcceleratorVisuals.VisualState, out var state, args.Component)) @@ -21,12 +20,12 @@ public sealed class ParticleAcceleratorPartVisualizerSystem : VisualizerSystem

(); - while (query.MoveNext(out var _, out var pinpointer, out var sprite)) + while (query.MoveNext(out var uid, out var pinpointer, out var sprite)) { if (!pinpointer.HasTarget) continue; @@ -30,10 +31,10 @@ public sealed class PinpointerSystem : SharedPinpointerSystem case Distance.Close: case Distance.Medium: case Distance.Far: - sprite.LayerSetRotation(PinpointerLayers.Screen, angle); + _sprite.LayerSetRotation((uid, sprite), PinpointerLayers.Screen, angle); break; default: - sprite.LayerSetRotation(PinpointerLayers.Screen, Angle.Zero); + _sprite.LayerSetRotation((uid, sprite), PinpointerLayers.Screen, Angle.Zero); break; } } diff --git a/Content.Client/Pinpointer/UI/NavMapBeaconWindow.xaml.cs b/Content.Client/Pinpointer/UI/NavMapBeaconWindow.xaml.cs index b77f1af047..291270f05a 100644 --- a/Content.Client/Pinpointer/UI/NavMapBeaconWindow.xaml.cs +++ b/Content.Client/Pinpointer/UI/NavMapBeaconWindow.xaml.cs @@ -1,19 +1,25 @@ using Content.Client.UserInterface.Controls; +using Content.Shared.CCVar; using Content.Shared.Pinpointer; using Content.Shared.Preferences; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Configuration; namespace Content.Client.Pinpointer.UI; [GenerateTypedNameReferences] public sealed partial class NavMapBeaconWindow : FancyWindow { + [Dependency] private readonly IConfigurationManager _cfgManager = default!; private string? _defaultLabel; private bool _defaultEnabled; private Color _defaultColor; + // CCVar. + private int _maxNameLength; + public event Action? OnApplyButtonPressed; public NavMapBeaconWindow() @@ -21,6 +27,7 @@ public sealed partial class NavMapBeaconWindow : FancyWindow RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + _maxNameLength = _cfgManager.GetCVar(CCVars.MaxNameLength); VisibleButton.OnPressed += args => UpdateVisibleButton(args.Button.Pressed); LabelLineEdit.OnTextChanged += OnTextChanged; @@ -53,8 +60,8 @@ public sealed partial class NavMapBeaconWindow : FancyWindow private void OnTextChanged(LineEdit.LineEditEventArgs obj) { - if (obj.Text.Length > HumanoidCharacterProfile.MaxNameLength) - obj.Control.Text = obj.Text.Substring(0, HumanoidCharacterProfile.MaxNameLength); + if (obj.Text.Length > _maxNameLength) + obj.Control.Text = obj.Text.Substring(0, _maxNameLength); TryEnableApplyButton(); } diff --git a/Content.Client/Pointing/PointingSystem.cs b/Content.Client/Pointing/PointingSystem.cs index a86b6e21b5..12c1aa69c5 100644 --- a/Content.Client/Pointing/PointingSystem.cs +++ b/Content.Client/Pointing/PointingSystem.cs @@ -10,6 +10,8 @@ namespace Content.Client.Pointing; public sealed partial class PointingSystem : SharedPointingSystem { + [Dependency] private readonly SpriteSystem _sprite = default!; + public override void Initialize() { base.Initialize(); @@ -44,7 +46,7 @@ public sealed partial class PointingSystem : SharedPointingSystem Verb verb = new() { Text = Loc.GetString("pointing-verb-get-data-text"), - Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/point.svg.192dpi.png")), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/point.svg.192dpi.png")), ClientExclusive = true, Act = () => RaiseNetworkEvent(new PointingAttemptEvent(GetNetEntity(args.Target))) }; @@ -55,7 +57,7 @@ public sealed partial class PointingSystem : SharedPointingSystem private void OnArrowStartup(EntityUid uid, PointingArrowComponent component, ComponentStartup args) { if (TryComp(uid, out var sprite)) - sprite.DrawDepth = (int) DrawDepth.Overlays; + _sprite.SetDrawDepth((uid, sprite), (int)DrawDepth.Overlays); BeginPointAnimation(uid, component.StartPosition, component.Offset, component.AnimationKey); } @@ -64,7 +66,7 @@ public sealed partial class PointingSystem : SharedPointingSystem { if (TryComp(uid, out var sprite)) { - sprite.DrawDepth = (int) DrawDepth.Overlays; + _sprite.SetDrawDepth((uid, sprite), (int)DrawDepth.Overlays); sprite.NoRotation = false; } } diff --git a/Content.Client/Polymorph/Systems/ChameleonProjectorSystem.cs b/Content.Client/Polymorph/Systems/ChameleonProjectorSystem.cs index 8ba09c6617..1319a3d74e 100644 --- a/Content.Client/Polymorph/Systems/ChameleonProjectorSystem.cs +++ b/Content.Client/Polymorph/Systems/ChameleonProjectorSystem.cs @@ -11,6 +11,7 @@ namespace Content.Client.Polymorph.Systems; public sealed class ChameleonProjectorSystem : SharedChameleonProjectorSystem { [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; private EntityQuery _appearanceQuery; private EntityQuery _spriteQuery; @@ -47,13 +48,13 @@ public sealed class ChameleonProjectorSystem : SharedChameleonProjectorSystem return; ent.Comp.WasVisible = sprite.Visible; - sprite.Visible = false; + _sprite.SetVisible((ent.Owner, sprite), false); } private void OnShutdown(Entity ent, ref ComponentShutdown args) { if (_spriteQuery.TryComp(ent, out var sprite)) - sprite.Visible = ent.Comp.WasVisible; + _sprite.SetVisible((ent.Owner, sprite), ent.Comp.WasVisible); } private void OnGetFlashEffectTargetEvent(Entity ent, ref GetFlashEffectTargetEvent args) diff --git a/Content.Client/Power/APC/ApcVisualizerSystem.cs b/Content.Client/Power/APC/ApcVisualizerSystem.cs index 67540e7239..0000055e3a 100644 --- a/Content.Client/Power/APC/ApcVisualizerSystem.cs +++ b/Content.Client/Power/APC/ApcVisualizerSystem.cs @@ -1,5 +1,4 @@ using Content.Shared.APC; -using JetBrains.Annotations; using Robust.Client.GameObjects; namespace Content.Client.Power.APC; @@ -14,38 +13,38 @@ public sealed class ApcVisualizerSystem : VisualizerSystem return; // get the mapped layer index of the first lock layer and the first channel layer - var lockIndicatorOverlayStart = args.Sprite.LayerMapGet(ApcVisualLayers.InterfaceLock); - var channelIndicatorOverlayStart = args.Sprite.LayerMapGet(ApcVisualLayers.Equipment); + var lockIndicatorOverlayStart = SpriteSystem.LayerMapGet((uid, args.Sprite), ApcVisualLayers.InterfaceLock); + var channelIndicatorOverlayStart = SpriteSystem.LayerMapGet((uid, args.Sprite), ApcVisualLayers.Equipment); // Handle APC screen overlay: - if(!AppearanceSystem.TryGetData(uid, ApcVisuals.ChargeState, out var chargeState, args.Component)) + if (!AppearanceSystem.TryGetData(uid, ApcVisuals.ChargeState, out var chargeState, args.Component)) chargeState = ApcChargeState.Lack; if (chargeState >= 0 && chargeState < ApcChargeState.NumStates) { - args.Sprite.LayerSetState(ApcVisualLayers.ChargeState, $"{comp.ScreenPrefix}-{comp.ScreenSuffixes[(sbyte)chargeState]}"); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), ApcVisualLayers.ChargeState, $"{comp.ScreenPrefix}-{comp.ScreenSuffixes[(sbyte)chargeState]}"); // LockState does nothing currently. The backend doesn't exist. if (AppearanceSystem.TryGetData(uid, ApcVisuals.LockState, out var lockStates, args.Component)) { - for(var i = 0; i < comp.LockIndicators; ++i) + for (var i = 0; i < comp.LockIndicators; ++i) { - var layer = ((byte)lockIndicatorOverlayStart + i); - sbyte lockState = (sbyte)((lockStates >> (i << (sbyte)ApcLockState.LogWidth)) & (sbyte)ApcLockState.All); - args.Sprite.LayerSetState(layer, $"{comp.LockPrefix}{i}-{comp.LockSuffixes[lockState]}"); - args.Sprite.LayerSetVisible(layer, true); + var layer = (byte)lockIndicatorOverlayStart + i; + var lockState = (sbyte)((lockStates >> (i << (sbyte)ApcLockState.LogWidth)) & (sbyte)ApcLockState.All); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), layer, $"{comp.LockPrefix}{i}-{comp.LockSuffixes[lockState]}"); + SpriteSystem.LayerSetVisible((uid, args.Sprite), layer, true); } } // ChannelState does nothing currently. The backend doesn't exist. if (AppearanceSystem.TryGetData(uid, ApcVisuals.ChannelState, out var channelStates, args.Component)) { - for(var i = 0; i < comp.ChannelIndicators; ++i) + for (var i = 0; i < comp.ChannelIndicators; ++i) { - var layer = ((byte)channelIndicatorOverlayStart + i); - sbyte channelState = (sbyte)((channelStates >> (i << (sbyte)ApcChannelState.LogWidth)) & (sbyte)ApcChannelState.All); - args.Sprite.LayerSetState(layer, $"{comp.ChannelPrefix}{i}-{comp.ChannelSuffixes[channelState]}"); - args.Sprite.LayerSetVisible(layer, true); + var layer = (byte)channelIndicatorOverlayStart + i; + var channelState = (sbyte)((channelStates >> (i << (sbyte)ApcChannelState.LogWidth)) & (sbyte)ApcChannelState.All); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), layer, $"{comp.ChannelPrefix}{i}-{comp.ChannelSuffixes[channelState]}"); + SpriteSystem.LayerSetVisible((uid, args.Sprite), layer, true); } } @@ -57,16 +56,16 @@ public sealed class ApcVisualizerSystem : VisualizerSystem else { /// Overrides all of the lock and channel indicators. - args.Sprite.LayerSetState(ApcVisualLayers.ChargeState, comp.EmaggedScreenState); - for(var i = 0; i < comp.LockIndicators; ++i) + SpriteSystem.LayerSetRsiState((uid, args.Sprite), ApcVisualLayers.ChargeState, comp.EmaggedScreenState); + for (var i = 0; i < comp.LockIndicators; ++i) { - var layer = ((byte)lockIndicatorOverlayStart + i); - args.Sprite.LayerSetVisible(layer, false); + var layer = (byte)lockIndicatorOverlayStart + i; + SpriteSystem.LayerSetVisible((uid, args.Sprite), layer, false); } - for(var i = 0; i < comp.ChannelIndicators; ++i) + for (var i = 0; i < comp.ChannelIndicators; ++i) { - var layer = ((byte)channelIndicatorOverlayStart + i); - args.Sprite.LayerSetVisible(layer, false); + var layer = (byte)channelIndicatorOverlayStart + i; + SpriteSystem.LayerSetVisible((uid, args.Sprite), layer, false); } if (TryComp(uid, out var light)) @@ -77,7 +76,7 @@ public sealed class ApcVisualizerSystem : VisualizerSystem } } -enum ApcVisualLayers : byte +public enum ApcVisualLayers : byte { ///

/// The sprite layer used for the interface lock indicator light overlay. diff --git a/Content.Client/Power/EntitySystems/PowerNetSystem.cs b/Content.Client/Power/EntitySystems/PowerNetSystem.cs index 6fb9f482ce..58ff03b28d 100644 --- a/Content.Client/Power/EntitySystems/PowerNetSystem.cs +++ b/Content.Client/Power/EntitySystems/PowerNetSystem.cs @@ -1,8 +1,19 @@ +using Content.Client.Power.Components; +using Content.Shared.Power.Components; using Content.Shared.Power.EntitySystems; namespace Content.Client.Power.EntitySystems; public sealed class PowerNetSystem : SharedPowerNetSystem { + public override bool IsPoweredCalculate(SharedApcPowerReceiverComponent comp) + { + return IsPoweredCalculate((ApcPowerReceiverComponent)comp); + } + private bool IsPoweredCalculate(ApcPowerReceiverComponent comp) + { + return !comp.PowerDisabled + && !comp.NeedsPower; + } } diff --git a/Content.Client/Power/SMES/SmesSystem.cs b/Content.Client/Power/SMES/SmesSystem.cs index a555bedcac..de0a5363cb 100644 --- a/Content.Client/Power/SMES/SmesSystem.cs +++ b/Content.Client/Power/SMES/SmesSystem.cs @@ -13,12 +13,12 @@ public sealed class SmesVisualizerSystem : VisualizerSystem if (!AppearanceSystem.TryGetData(uid, SmesVisuals.LastChargeLevel, out var level, args.Component) || level == 0) { - args.Sprite.LayerSetVisible(SmesVisualLayers.Charge, false); + SpriteSystem.LayerSetVisible((uid, args.Sprite), SmesVisualLayers.Charge, false); } else { - args.Sprite.LayerSetVisible(SmesVisualLayers.Charge, true); - args.Sprite.LayerSetState(SmesVisualLayers.Charge, $"{comp.ChargeOverlayPrefix}{level}"); + SpriteSystem.LayerSetVisible((uid, args.Sprite), SmesVisualLayers.Charge, true); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), SmesVisualLayers.Charge, $"{comp.ChargeOverlayPrefix}{level}"); } if (!AppearanceSystem.TryGetData(uid, SmesVisuals.LastChargeState, out var state, args.Component)) @@ -27,22 +27,22 @@ public sealed class SmesVisualizerSystem : VisualizerSystem switch (state) { case ChargeState.Still: - args.Sprite.LayerSetState(SmesVisualLayers.Input, $"{comp.InputOverlayPrefix}0"); - args.Sprite.LayerSetState(SmesVisualLayers.Output, $"{comp.OutputOverlayPrefix}1"); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), SmesVisualLayers.Input, $"{comp.InputOverlayPrefix}0"); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), SmesVisualLayers.Output, $"{comp.OutputOverlayPrefix}1"); break; case ChargeState.Charging: - args.Sprite.LayerSetState(SmesVisualLayers.Input, $"{comp.InputOverlayPrefix}1"); - args.Sprite.LayerSetState(SmesVisualLayers.Output, $"{comp.OutputOverlayPrefix}1"); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), SmesVisualLayers.Input, $"{comp.InputOverlayPrefix}1"); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), SmesVisualLayers.Output, $"{comp.OutputOverlayPrefix}1"); break; case ChargeState.Discharging: - args.Sprite.LayerSetState(SmesVisualLayers.Input, $"{comp.InputOverlayPrefix}0"); - args.Sprite.LayerSetState(SmesVisualLayers.Output, $"{comp.OutputOverlayPrefix}2"); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), SmesVisualLayers.Input, $"{comp.InputOverlayPrefix}0"); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), SmesVisualLayers.Output, $"{comp.OutputOverlayPrefix}2"); break; } } } -enum SmesVisualLayers : byte +public enum SmesVisualLayers : byte { Input, Charge, diff --git a/Content.Client/Power/Visualizers/CableVisualizerSystem.cs b/Content.Client/Power/Visualizers/CableVisualizerSystem.cs index bea15a0602..1af57e7640 100644 --- a/Content.Client/Power/Visualizers/CableVisualizerSystem.cs +++ b/Content.Client/Power/Visualizers/CableVisualizerSystem.cs @@ -7,6 +7,7 @@ namespace Content.Client.Power.Visualizers; public sealed class CableVisualizerSystem : EntitySystem { [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -30,8 +31,8 @@ public sealed class CableVisualizerSystem : EntitySystem if (!_appearanceSystem.TryGetData(uid, WireVisVisuals.ConnectedMask, out var mask, args.Component)) mask = WireVisDirFlags.None; - args.Sprite.LayerSetState(0, $"{component.StatePrefix}{(int) mask}"); + _sprite.LayerSetRsiState((uid, args.Sprite), 0, $"{component.StatePrefix}{(int)mask}"); if (component.ExtraLayerPrefix != null) - args.Sprite.LayerSetState(1, $"{component.ExtraLayerPrefix}{(int) mask}"); + _sprite.LayerSetRsiState((uid, args.Sprite), 1, $"{component.ExtraLayerPrefix}{(int)mask}"); } } diff --git a/Content.Client/PowerCell/PowerCellSystem.cs b/Content.Client/PowerCell/PowerCellSystem.cs index 1423dffaa3..66fa1fa98f 100644 --- a/Content.Client/PowerCell/PowerCellSystem.cs +++ b/Content.Client/PowerCell/PowerCellSystem.cs @@ -9,6 +9,7 @@ namespace Content.Client.PowerCell; public sealed class PowerCellSystem : SharedPowerCellSystem { [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -44,19 +45,19 @@ public sealed class PowerCellSystem : SharedPowerCellSystem if (args.Sprite == null) return; - if (!args.Sprite.TryGetLayer((int) PowerCellVisualLayers.Unshaded, out var unshadedLayer)) + if (!_sprite.LayerExists((uid, args.Sprite), PowerCellVisualLayers.Unshaded)) return; if (_appearance.TryGetData(uid, PowerCellVisuals.ChargeLevel, out var level, args.Component)) { if (level == 0) { - unshadedLayer.Visible = false; + _sprite.LayerSetVisible((uid, args.Sprite), PowerCellVisualLayers.Unshaded, false); return; } - unshadedLayer.Visible = true; - args.Sprite.LayerSetState(PowerCellVisualLayers.Unshaded, $"o{level}"); + _sprite.LayerSetVisible((uid, args.Sprite), PowerCellVisualLayers.Unshaded, false); + _sprite.LayerSetRsiState((uid, args.Sprite), PowerCellVisualLayers.Unshaded, $"o{level}"); } } diff --git a/Content.Client/PowerCell/PowerChargerVisualizerSystem.cs b/Content.Client/PowerCell/PowerChargerVisualizerSystem.cs index 236a7f287d..c76e25b7af 100644 --- a/Content.Client/PowerCell/PowerChargerVisualizerSystem.cs +++ b/Content.Client/PowerCell/PowerChargerVisualizerSystem.cs @@ -14,27 +14,26 @@ public sealed class PowerChargerVisualizerSystem : VisualizerSystem(uid, CellVisual.Occupied, out var occupied, args.Component) && occupied) { // TODO: don't throw if it doesn't have a full state - args.Sprite.LayerSetState(PowerChargerVisualLayers.Base, comp.OccupiedState); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), PowerChargerVisualLayers.Base, comp.OccupiedState); } else { - args.Sprite.LayerSetState(PowerChargerVisualLayers.Base, comp.EmptyState); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), PowerChargerVisualLayers.Base, comp.EmptyState); } // Update lighting if (AppearanceSystem.TryGetData(uid, CellVisual.Light, out var status, args.Component) - && comp.LightStates.TryGetValue(status, out var lightState)) + && comp.LightStates.TryGetValue(status, out var lightState)) { - args.Sprite.LayerSetState(PowerChargerVisualLayers.Light, lightState); - args.Sprite.LayerSetVisible(PowerChargerVisualLayers.Light, true); + SpriteSystem.LayerSetRsiState((uid, args.Sprite), PowerChargerVisualLayers.Light, lightState); + SpriteSystem.LayerSetVisible((uid, args.Sprite), PowerChargerVisualLayers.Light, true); } else - // - args.Sprite.LayerSetVisible(PowerChargerVisualLayers.Light, false); + SpriteSystem.LayerSetVisible((uid, args.Sprite), PowerChargerVisualLayers.Light, false); } } -enum PowerChargerVisualLayers : byte +public enum PowerChargerVisualLayers : byte { Base, Light, diff --git a/Content.Client/Projectiles/ProjectileSystem.cs b/Content.Client/Projectiles/ProjectileSystem.cs index 2132256b1b..2adafdce30 100644 --- a/Content.Client/Projectiles/ProjectileSystem.cs +++ b/Content.Client/Projectiles/ProjectileSystem.cs @@ -1,9 +1,7 @@ using Content.Shared.Projectiles; -using Robust.Shared.Spawners; using Content.Shared.Weapons.Ranged.Systems; using Robust.Client.Animations; using Robust.Client.GameObjects; -using Robust.Shared.GameStates; using TimedDespawnComponent = Robust.Shared.Spawners.TimedDespawnComponent; namespace Content.Client.Projectiles; @@ -11,6 +9,7 @@ namespace Content.Client.Projectiles; public sealed class ProjectileSystem : SharedProjectileSystem { [Dependency] private readonly AnimationPlayerSystem _player = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -30,8 +29,8 @@ public sealed class ProjectileSystem : SharedProjectileSystem if (TryComp(ent, out var sprite)) { sprite[EffectLayers.Unshaded].AutoAnimated = false; - sprite.LayerMapTryGet(EffectLayers.Unshaded, out var layer); - var state = sprite.LayerGetState(layer); + _sprite.LayerMapTryGet((ent, sprite), EffectLayers.Unshaded, out var layer, false); + var state = _sprite.LayerGetRsiState((ent, sprite), layer); var lifetime = 0.5f; if (TryComp(ent, out var despawn)) diff --git a/Content.Client/Revenant/RevenantSystem.cs b/Content.Client/Revenant/RevenantSystem.cs index e050fe35aa..0534522b40 100644 --- a/Content.Client/Revenant/RevenantSystem.cs +++ b/Content.Client/Revenant/RevenantSystem.cs @@ -8,6 +8,7 @@ namespace Content.Client.Revenant; public sealed class RevenantSystem : EntitySystem { [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -24,18 +25,18 @@ public sealed class RevenantSystem : EntitySystem if (_appearance.TryGetData(uid, RevenantVisuals.Harvesting, out var harvesting, args.Component) && harvesting) { - args.Sprite.LayerSetState(0, component.HarvestingState); + _sprite.LayerSetRsiState((uid, args.Sprite), 0, component.HarvestingState); } else if (_appearance.TryGetData(uid, RevenantVisuals.Stunned, out var stunned, args.Component) && stunned) { - args.Sprite.LayerSetState(0, component.StunnedState); + _sprite.LayerSetRsiState((uid, args.Sprite), 0, component.StunnedState); } else if (_appearance.TryGetData(uid, RevenantVisuals.Corporeal, out var corporeal, args.Component)) { if (corporeal) - args.Sprite.LayerSetState(0, component.CorporealState); + _sprite.LayerSetRsiState((uid, args.Sprite), 0, component.CorporealState); else - args.Sprite.LayerSetState(0, component.State); + _sprite.LayerSetRsiState((uid, args.Sprite), 0, component.State); } } @@ -44,10 +45,9 @@ public sealed class RevenantSystem : EntitySystem if (args.Alert.ID != ent.Comp.EssenceAlert) return; - var sprite = args.SpriteViewEnt.Comp; var essence = Math.Clamp(ent.Comp.Essence.Int(), 0, 999); - sprite.LayerSetState(RevenantVisualLayers.Digit1, $"{(essence / 100) % 10}"); - sprite.LayerSetState(RevenantVisualLayers.Digit2, $"{(essence / 10) % 10}"); - sprite.LayerSetState(RevenantVisualLayers.Digit3, $"{essence % 10}"); + _sprite.LayerSetRsiState(args.SpriteViewEnt.AsNullable(), RevenantVisualLayers.Digit1, $"{(essence / 100) % 10}"); + _sprite.LayerSetRsiState(args.SpriteViewEnt.AsNullable(), RevenantVisualLayers.Digit2, $"{(essence / 10) % 10}"); + _sprite.LayerSetRsiState(args.SpriteViewEnt.AsNullable(), RevenantVisualLayers.Digit3, $"{essence % 10}"); } } diff --git a/Content.Client/Salvage/FultonSystem.cs b/Content.Client/Salvage/FultonSystem.cs index 7e31fbb180..2d323841ce 100644 --- a/Content.Client/Salvage/FultonSystem.cs +++ b/Content.Client/Salvage/FultonSystem.cs @@ -1,11 +1,9 @@ using System.Numerics; using Content.Shared.Salvage.Fulton; -using Robust.Shared.Spawners; using JetBrains.Annotations; using Robust.Client.Animations; using Robust.Client.GameObjects; using Robust.Client.Graphics; -using Robust.Shared.Animations; using Robust.Shared.Serialization.Manager; using Robust.Shared.Utility; using TimedDespawnComponent = Robust.Shared.Spawners.TimedDespawnComponent; @@ -16,6 +14,7 @@ public sealed class FultonSystem : SharedFultonSystem { [Dependency] private readonly ISerializationManager _serManager = default!; [Dependency] private readonly AnimationPlayerSystem _player = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; private static readonly TimeSpan AnimationDuration = TimeSpan.FromSeconds(0.4); @@ -82,8 +81,8 @@ public sealed class FultonSystem : SharedFultonSystem } sprite.NoRotation = true; - var effectLayer = sprite.AddLayer(new SpriteSpecifier.Rsi(new ResPath("Objects/Tools/fulton_balloon.rsi"), "fulton_balloon")); - sprite.LayerSetOffset(effectLayer, EffectOffset + new Vector2(0f, 0.5f)); + var effectLayer = _sprite.AddLayer((animationEnt, sprite), new SpriteSpecifier.Rsi(new ResPath("Objects/Tools/fulton_balloon.rsi"), "fulton_balloon")); + _sprite.LayerSetOffset((animationEnt, sprite), effectLayer, EffectOffset + new Vector2(0f, 0.5f)); var despawn = AddComp(animationEnt); despawn.Lifetime = 1.5f; diff --git a/Content.Client/Salvage/UI/JobEntry.xaml b/Content.Client/Salvage/UI/JobEntry.xaml new file mode 100644 index 0000000000..bad88f89b7 --- /dev/null +++ b/Content.Client/Salvage/UI/JobEntry.xaml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + [AdminCommand(AdminFlags.Mapping)] -public sealed class PlanetCommand : IConsoleCommand +public sealed class PlanetCommand : LocalizedEntityCommands { [Dependency] private readonly IEntityManager _entManager = default!; - [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _protoManager = default!; + [Dependency] private readonly SharedMapSystem _map = default!; - public string Command => "planet"; - public string Description => Loc.GetString("cmd-planet-desc"); - public string Help => Loc.GetString("cmd-planet-help", ("command", Command)); - public void Execute(IConsoleShell shell, string argStr, string[] args) + public override string Command => "planet"; + public override string Description => Loc.GetString("cmd-planet-desc"); + public override string Help => Loc.GetString("cmd-planet-help", ("command", Command)); + public override void Execute(IConsoleShell shell, string argStr, string[] args) { if (args.Length != 2) { @@ -46,8 +46,7 @@ public sealed class PlanetCommand : IConsoleCommand } var mapId = new MapId(mapInt); - - if (!_mapManager.MapExists(mapId)) + if (!_map.MapExists(mapId)) { shell.WriteError(Loc.GetString($"cmd-planet-map", ("map", mapId))); return; @@ -60,13 +59,13 @@ public sealed class PlanetCommand : IConsoleCommand } var biomeSystem = _entManager.System(); - var mapUid = _mapManager.GetMapEntityId(mapId); + var mapUid = _map.GetMapOrInvalid(mapId); biomeSystem.EnsurePlanet(mapUid, biomeTemplate); shell.WriteLine(Loc.GetString("cmd-planet-success", ("mapId", mapId))); } - public CompletionResult GetCompletion(IConsoleShell shell, string[] args) + public override CompletionResult GetCompletion(IConsoleShell shell, string[] args) { if (args.Length == 1) return CompletionResult.FromHintOptions(CompletionHelper.MapIds(_entManager), "Map Id"); diff --git a/Content.Server/MassMedia/Systems/NewsSystem.cs b/Content.Server/MassMedia/Systems/NewsSystem.cs index 641f2074b8..d3cd94f656 100644 --- a/Content.Server/MassMedia/Systems/NewsSystem.cs +++ b/Content.Server/MassMedia/Systems/NewsSystem.cs @@ -1,24 +1,33 @@ -using System.Diagnostics.CodeAnalysis; using Content.Server.Administration.Logs; -using Content.Server.CartridgeLoader; using Content.Server.CartridgeLoader.Cartridges; +using Content.Server.CartridgeLoader; using Content.Server.Chat.Managers; +using Content.Server.Discord; using Content.Server.GameTicking; using Content.Server.MassMedia.Components; using Content.Server.Popups; using Content.Server.Station.Systems; using Content.Shared.Access.Components; using Content.Shared.Access.Systems; -using Content.Shared.CartridgeLoader; +using Content.Shared.CCVar; using Content.Shared.CartridgeLoader.Cartridges; +using Content.Shared.CartridgeLoader; using Content.Shared.Database; +using Content.Shared.GameTicking; +using Content.Shared.IdentityManagement; using Content.Shared.MassMedia.Components; using Content.Shared.MassMedia.Systems; using Content.Shared.Popups; using Robust.Server.GameObjects; +using Robust.Server; using Robust.Shared.Audio.Systems; -using Content.Shared.IdentityManagement; +using Robust.Shared.Configuration; +using Robust.Shared.Maths; using Robust.Shared.Timing; +using Robust.Shared.Utility; +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using System.Threading.Tasks; namespace Content.Server.MassMedia.Systems; @@ -34,11 +43,36 @@ public sealed class NewsSystem : SharedNewsSystem [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly IChatManager _chatManager = default!; + [Dependency] private readonly DiscordWebhook _discord = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly IBaseServer _baseServer = default!; + + private WebhookIdentifier? _webhookId = null; + private Color _webhookEmbedColor; + private bool _webhookSendDuringRound; public override void Initialize() { base.Initialize(); + // Discord hook + _cfg.OnValueChanged(CCVars.DiscordNewsWebhook, + value => + { + if (!string.IsNullOrWhiteSpace(value)) + _discord.GetWebhook(value, data => _webhookId = data.ToIdentifier()); + }, true); + + _cfg.OnValueChanged(CCVars.DiscordNewsWebhookEmbedColor, value => + { + _webhookEmbedColor = Color.LawnGreen; + if (Color.TryParse(value, out var color)) + _webhookEmbedColor = color; + }, true); + + _cfg.OnValueChanged(CCVars.DiscordNewsWebhookSendDuringRound, value => _webhookSendDuringRound = value, true); + SubscribeLocalEvent(OnRoundEndMessageEvent); + // News writer SubscribeLocalEvent(OnMapInit); @@ -177,6 +211,9 @@ public sealed class NewsSystem : SharedNewsSystem RaiseLocalEvent(readerUid, ref args); } + if (_webhookSendDuringRound) + Task.Run(async () => await SendArticleToDiscordWebhook(article)); + UpdateWriterDevices(); } #endregion @@ -324,4 +361,62 @@ public sealed class NewsSystem : SharedNewsSystem { UpdateWriterUi(ent); } + + #region Discord Hook + + private void OnRoundEndMessageEvent(RoundEndMessageEvent ev) + { + if (_webhookSendDuringRound) + return; + + var query = EntityManager.EntityQueryEnumerator(); + + while (query.MoveNext(out _, out var comp)) + { + SendArticlesListToDiscordWebhook(comp.Articles.OrderBy(article => article.ShareTime)); + } + } + + private async void SendArticlesListToDiscordWebhook(IOrderedEnumerable articles) + { + foreach (var article in articles) + { + await Task.Delay(TimeSpan.FromSeconds(1)); // TODO: proper discord rate limit handling + await SendArticleToDiscordWebhook(article); + } + } + + private async Task SendArticleToDiscordWebhook(NewsArticle article) + { + if (_webhookId is null) + return; + + try + { + var embed = new WebhookEmbed + { + Title = article.Title, + // There is no need to cut article content. It's MaxContentLength smaller then discord's limit (4096): + Description = FormattedMessage.RemoveMarkupPermissive(article.Content), + Color = _webhookEmbedColor.ToArgb() & 0xFFFFFF, // HACK: way to get hex without A (transparency) + Footer = new WebhookEmbedFooter + { + Text = Loc.GetString("news-discord-footer", + ("server", _baseServer.ServerName), + ("round", _ticker.RoundId), + ("author", article.Author ?? Loc.GetString("news-discord-unknown-author")), + ("time", article.ShareTime.ToString(@"hh\:mm\:ss"))) + } + }; + var payload = new WebhookPayload { Embeds = [embed] }; + await _discord.CreateMessage(_webhookId.Value, payload); + Log.Info("Sent news article to Discord webhook"); + } + catch (Exception e) + { + Log.Error($"Error while sending discord news article:\n{e}"); + } + } + + #endregion } diff --git a/Content.Server/Mind/Commands/RenameCommand.cs b/Content.Server/Mind/Commands/RenameCommand.cs index f283fe5d19..b0059ab425 100644 --- a/Content.Server/Mind/Commands/RenameCommand.cs +++ b/Content.Server/Mind/Commands/RenameCommand.cs @@ -2,7 +2,9 @@ using System.Diagnostics.CodeAnalysis; using Content.Server.Administration; using Content.Shared.Access.Components; using Content.Shared.Administration; +using Content.Shared.CCVar; using Robust.Server.Player; +using Robust.Shared.Configuration; using Robust.Shared.Console; namespace Content.Server.Mind.Commands; @@ -10,6 +12,7 @@ namespace Content.Server.Mind.Commands; [AdminCommand(AdminFlags.VarEdit)] public sealed class RenameCommand : LocalizedEntityCommands { + [Dependency] private readonly IConfigurationManager _cfgManager = default!; [Dependency] private readonly IEntityManager _entManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly MetaDataSystem _metaSystem = default!; @@ -25,7 +28,7 @@ public sealed class RenameCommand : LocalizedEntityCommands } var name = args[1]; - if (name.Length > IdCardConsoleComponent.MaxFullNameLength) + if (name.Length > _cfgManager.GetCVar(CCVars.MaxNameLength)) { shell.WriteLine(Loc.GetString("cmd-rename-too-long")); return; diff --git a/Content.Server/Mindshield/MindShieldSystem.cs b/Content.Server/Mindshield/MindShieldSystem.cs index d9db75d1ce..18757d53e9 100644 --- a/Content.Server/Mindshield/MindShieldSystem.cs +++ b/Content.Server/Mindshield/MindShieldSystem.cs @@ -63,7 +63,7 @@ public sealed class MindShieldSystem : EntitySystem } if (_mindSystem.TryGetMind(implanted, out var mindId, out _) && - _roleSystem.MindTryRemoveRole(mindId)) + _roleSystem.MindRemoveRole(mindId)) { _adminLogManager.Add(LogType.Mind, LogImpact.Medium, $"{ToPrettyString(implanted)} was deconverted due to being implanted with a Mindshield."); } diff --git a/Content.Server/MoMMI/IMoMMILink.cs b/Content.Server/MoMMI/IMoMMILink.cs deleted file mode 100644 index b33a406770..0000000000 --- a/Content.Server/MoMMI/IMoMMILink.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Content.Server.MoMMI -{ - public interface IMoMMILink - { - void SendOOCMessage(string sender, string message); - } -} diff --git a/Content.Server/MoMMI/MoMMILink.cs b/Content.Server/MoMMI/MoMMILink.cs deleted file mode 100644 index eff4d3e3f7..0000000000 --- a/Content.Server/MoMMI/MoMMILink.cs +++ /dev/null @@ -1,151 +0,0 @@ -using System.Net; -using System.Net.Http; -using System.Net.Http.Json; -using System.Text.Json; -using System.Text.Json.Serialization; -using System.Threading.Tasks; -using Content.Server.Chat.Managers; -using Content.Shared.CCVar; -using Robust.Server.ServerStatus; -using Robust.Shared.Asynchronous; -using Robust.Shared.Configuration; - -namespace Content.Server.MoMMI -{ - internal sealed class MoMMILink : IMoMMILink, IPostInjectInit - { - [Dependency] private readonly IConfigurationManager _configurationManager = default!; - [Dependency] private readonly IStatusHost _statusHost = default!; - [Dependency] private readonly IChatManager _chatManager = default!; - [Dependency] private readonly ITaskManager _taskManager = default!; - - private readonly HttpClient _httpClient = new(); - - void IPostInjectInit.PostInject() - { - _statusHost.AddHandler(HandleChatPost); - } - - public async void SendOOCMessage(string sender, string message) - { - var sentMessage = new MoMMIMessageOOC - { - Sender = sender, - Contents = message - }; - - await SendMessageInternal("ooc", sentMessage); - } - - private async Task SendMessageInternal(string type, object messageObject) - { - var url = _configurationManager.GetCVar(CCVars.StatusMoMMIUrl); - var password = _configurationManager.GetCVar(CCVars.StatusMoMMIPassword); - if (string.IsNullOrWhiteSpace(url)) - { - return; - } - - if (string.IsNullOrWhiteSpace(password)) - { - Logger.WarningS("mommi", "MoMMI URL specified but not password!"); - return; - } - - var sentMessage = new MoMMIMessageBase - { - Password = password, - Type = type, - Contents = messageObject - }; - - var request = await _httpClient.PostAsJsonAsync(url, sentMessage); - - if (!request.IsSuccessStatusCode) - { - throw new Exception($"MoMMI returned bad status code: {request.StatusCode}"); - } - } - - private async Task HandleChatPost(IStatusHandlerContext context) - { - if (context.RequestMethod != HttpMethod.Post || context.Url.AbsolutePath != "/ooc") - { - return false; - } - - var password = _configurationManager.GetCVar(CCVars.StatusMoMMIPassword); - - if (string.IsNullOrEmpty(password)) - { - await context.RespondErrorAsync(HttpStatusCode.Forbidden); - return true; - } - - OOCPostMessage? message = null; - try - { - message = await context.RequestBodyJsonAsync(); - } - catch (JsonException) - { - // message null so enters block down below. - } - - if (message == null) - { - await context.RespondErrorAsync(HttpStatusCode.BadRequest); - return true; - } - - if (message.Password != password) - { - await context.RespondErrorAsync(HttpStatusCode.Forbidden); - return true; - } - - var sender = message.Sender; - var contents = message.Contents.ReplaceLineEndings(" "); - - _taskManager.RunOnMainThread(() => _chatManager.SendHookOOC(sender, contents)); - - await context.RespondAsync("Success", HttpStatusCode.OK); - return true; - } - - private sealed class MoMMIMessageBase - { - [JsonInclude] [JsonPropertyName("password")] - public string Password = null!; - - [JsonInclude] [JsonPropertyName("type")] - public string Type = null!; - - [JsonInclude] [JsonPropertyName("contents")] - public object Contents = null!; - } - - private sealed class MoMMIMessageOOC - { - [JsonInclude] [JsonPropertyName("sender")] - public string Sender = null!; - - [JsonInclude] [JsonPropertyName("contents")] - public string Contents = null!; - } - - private sealed class OOCPostMessage - { -#pragma warning disable CS0649 - [JsonInclude] [JsonPropertyName("password")] - public string Password = null!; - - [JsonInclude] [JsonPropertyName("sender")] - public string Sender = null!; - - [JsonInclude] [JsonPropertyName("contents")] - public string Contents = null!; -#pragma warning restore CS0649 - } - } -} diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickAccessibleComponentOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickAccessibleComponentOperator.cs index 9f89669f2d..0edcee7b28 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickAccessibleComponentOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickAccessibleComponentOperator.cs @@ -11,7 +11,6 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; /// public sealed partial class PickAccessibleComponentOperator : HTNOperator { - [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly IEntityManager _entManager = default!; private PathfindingSystem _pathfinding = default!; private EntityLookupSystem _lookup = default!; @@ -46,7 +45,7 @@ public sealed partial class PickAccessibleComponentOperator : HTNOperator CancellationToken cancelToken) { // Check if the component exists - if (!_factory.TryGetRegistration(Component, out var registration)) + if (!_entManager.ComponentFactory.TryGetRegistration(Component, out var registration)) { return (false, null); } diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs index 7105bda0a2..e36d3edda1 100644 --- a/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs +++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs @@ -50,10 +50,13 @@ public sealed partial class PathfindingSystem private void OnTileChange(ref TileChangedEvent ev) { - if (ev.OldTile.IsEmpty == ev.NewTile.Tile.IsEmpty) - return; + foreach (var change in ev.Changes) + { + if (change.OldTile.IsEmpty == change.NewTile.IsEmpty) + continue; - DirtyChunk(ev.Entity, Comp(ev.Entity).GridTileToLocal(ev.NewTile.GridIndices)); + DirtyChunk(ev.Entity, _maps.GridTileToLocal(ev.Entity, ev.Entity.Comp, change.GridIndices)); + } } diff --git a/Content.Server/NPC/Queries/Considerations/TargetLowTempCon.cs b/Content.Server/NPC/Queries/Considerations/TargetLowTempCon.cs new file mode 100644 index 0000000000..7e8553c63c --- /dev/null +++ b/Content.Server/NPC/Queries/Considerations/TargetLowTempCon.cs @@ -0,0 +1,14 @@ +namespace Content.Server.NPC.Queries.Considerations; + +/// +/// Returns if the target is below a certain temperature. +/// +public sealed partial class TargetLowTempCon : UtilityConsideration +{ + /// + /// The minimum temperature they must be. + /// + [DataField] + public float MinTemp; +} + diff --git a/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs b/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs index 736c237e68..88db986508 100644 --- a/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs +++ b/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs @@ -191,7 +191,7 @@ public sealed partial class NPCCombatSystem if (_mapManager.TryFindGridAt(xform.MapID, targetPos, out var gridUid, out var mapGrid)) { - targetCordinates = new EntityCoordinates(gridUid, mapGrid.WorldToLocal(targetSpot)); + targetCordinates = new EntityCoordinates(gridUid, _map.WorldToLocal(gridUid, mapGrid, targetSpot)); } else { diff --git a/Content.Server/NPC/Systems/NPCCombatSystem.cs b/Content.Server/NPC/Systems/NPCCombatSystem.cs index 7b012300da..9724917891 100644 --- a/Content.Server/NPC/Systems/NPCCombatSystem.cs +++ b/Content.Server/NPC/Systems/NPCCombatSystem.cs @@ -22,6 +22,7 @@ public sealed partial class NPCCombatSystem : EntitySystem [Dependency] private readonly InteractionSystem _interaction = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly NPCSteeringSystem _steering = default!; + [Dependency] private readonly SharedMapSystem _map = default!; [Dependency] private readonly SharedMeleeWeaponSystem _melee = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; diff --git a/Content.Server/NPC/Systems/NPCUtilitySystem.cs b/Content.Server/NPC/Systems/NPCUtilitySystem.cs index 7b485eeb96..c5b463d0d3 100644 --- a/Content.Server/NPC/Systems/NPCUtilitySystem.cs +++ b/Content.Server/NPC/Systems/NPCUtilitySystem.cs @@ -7,6 +7,7 @@ using Content.Server.NPC.Queries.Queries; using Content.Server.Nutrition.Components; using Content.Server.Nutrition.EntitySystems; using Content.Server.Storage.Components; +using Content.Server.Temperature.Components; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Damage; using Content.Shared.Examine; @@ -14,7 +15,6 @@ using Content.Shared.Fluids.Components; using Content.Shared.Hands.Components; using Content.Shared.Inventory; using Content.Shared.Mobs; -using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.NPC.Systems; using Content.Shared.Nutrition.Components; @@ -376,6 +376,13 @@ public sealed class NPCUtilitySystem : EntitySystem return 0f; } + case TargetLowTempCon con: + { + if (!TryComp(targetUid, out var temperature)) + return 0f; + + return temperature.CurrentTemperature <= con.MinTemp ? 1f : 0f; + } default: throw new NotImplementedException(); } diff --git a/Content.Server/NodeContainer/EntitySystems/NodeContainerSystem.cs b/Content.Server/NodeContainer/EntitySystems/NodeContainerSystem.cs index ac818e08dc..62f0391cf5 100644 --- a/Content.Server/NodeContainer/EntitySystems/NodeContainerSystem.cs +++ b/Content.Server/NodeContainer/EntitySystems/NodeContainerSystem.cs @@ -13,7 +13,7 @@ namespace Content.Server.NodeContainer.EntitySystems /// /// [UsedImplicitly] - public sealed class NodeContainerSystem : EntitySystem + public sealed class NodeContainerSystem : SharedNodeContainerSystem { [Dependency] private readonly NodeGroupSystem _nodeGroupSystem = default!; private EntityQuery _query; diff --git a/Content.Server/Nuke/NukeComponent.cs b/Content.Server/Nuke/NukeComponent.cs index e1a117f4bd..b14ad9c165 100644 --- a/Content.Server/Nuke/NukeComponent.cs +++ b/Content.Server/Nuke/NukeComponent.cs @@ -21,8 +21,7 @@ namespace Content.Server.Nuke /// /// Default bomb timer value in seconds. /// - [DataField("timer")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public int Timer = 300; /// @@ -36,7 +35,7 @@ namespace Content.Server.Nuke /// How long until the bomb can arm again after deactivation. /// Used to prevent announcements spam. /// - [DataField("cooldown")] + [DataField] public int Cooldown = 30; /// @@ -143,32 +142,32 @@ namespace Content.Server.Nuke /// public (MapId, EntityUid?)? OriginMapGrid; - [DataField("codeLength")] public int CodeLength = 6; - [ViewVariables] public string Code = string.Empty; + [DataField] public int CodeLength = 6; + [DataField] public string Code = string.Empty; /// /// Time until explosion in seconds. /// - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float RemainingTime; /// /// Time until bomb cooldown will expire in seconds. /// - [ViewVariables] + [DataField] public float CooldownTime; /// /// Current nuclear code buffer. Entered manually by players. /// If valid it will allow arm/disarm bomb. /// - [ViewVariables] + [DataField] public string EnteredCode = ""; /// /// Current status of a nuclear bomb. /// - [ViewVariables] + [DataField] public NukeStatus Status = NukeStatus.AWAIT_DISK; /// diff --git a/Content.Server/Nuke/NukeSystem.cs b/Content.Server/Nuke/NukeSystem.cs index b2cea672fd..5c1014b26f 100644 --- a/Content.Server/Nuke/NukeSystem.cs +++ b/Content.Server/Nuke/NukeSystem.cs @@ -2,6 +2,7 @@ using Content.Server.AlertLevel; using Content.Server.Audio; using Content.Server.Chat.Systems; using Content.Server.Explosion.EntitySystems; +using Content.Server.Kitchen.Components; using Content.Server.Pinpointer; using Content.Server.Popups; using Content.Server.Station.Systems; @@ -79,11 +80,12 @@ public sealed class NukeSystem : EntitySystem // Doafter events SubscribeLocalEvent(OnDoAfter); + + SubscribeLocalEvent(OnMicrowaved); } private void OnInit(EntityUid uid, NukeComponent component, ComponentInit args) { - component.RemainingTime = component.Timer; _itemSlots.AddItemSlot(uid, SharedNukeComponent.NukeDiskSlotId, component.DiskSlot); UpdateStatus(uid, component); @@ -111,11 +113,13 @@ public sealed class NukeSystem : EntitySystem private void OnMapInit(EntityUid uid, NukeComponent nuke, MapInitEvent args) { + nuke.RemainingTime = nuke.Timer; var originStation = _station.GetOwningStation(uid); if (originStation != null) + { nuke.OriginStation = originStation; - + } else { var transform = Transform(uid); @@ -125,6 +129,19 @@ public sealed class NukeSystem : EntitySystem nuke.Code = GenerateRandomNumberString(nuke.CodeLength); } + /// + /// Slightly randomize nuke countdown timer + /// + private void OnMicrowaved(Entity ent, ref BeingMicrowavedEvent args) + { + if (ent.Comp.TimeModifier != null) + return; + + var seconds = _random.NextGaussian(ent.Comp.MicrowaveMean.TotalSeconds, ent.Comp.MicrowaveStd.TotalSeconds); + ent.Comp.TimeModifier = TimeSpan.FromSeconds(seconds); + _popups.PopupEntity(Loc.GetString("nuke-disk-component-microwave"), ent.Owner, PopupType.Medium); + } + private void OnRemove(EntityUid uid, NukeComponent component, ComponentRemove args) { _itemSlots.RemoveItemSlot(uid, component.DiskSlot); @@ -346,11 +363,11 @@ public sealed class NukeSystem : EntitySystem break; } - // var isValid = _codes.IsCodeValid(uid, component.EnteredCode); if (component.EnteredCode == component.Code) { component.Status = NukeStatus.AWAIT_ARM; - component.RemainingTime = component.Timer; + var modifier = CompOrNull(component.DiskSlot.Item)?.TimeModifier ?? TimeSpan.Zero; + component.RemainingTime = MathF.Max(component.Timer + (float)modifier.TotalSeconds, component.MinimumTime); _audio.PlayPvs(component.AccessGrantedSound, uid); } else diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs index f11a2c9041..7ac5c20a7d 100644 --- a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs @@ -1,6 +1,6 @@ using Content.Server.Body.Components; using Content.Server.Body.Systems; -using Content.Server.EntityEffects.Effects; +using Content.Shared.EntityEffects.Effects; using Content.Server.Fluids.EntitySystems; using Content.Server.Forensics; using Content.Server.Inventory; diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index 1b8a6b887a..779ead3ca1 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -336,6 +336,11 @@ public sealed class FoodSystem : EntitySystem if (ev.Cancelled) return; + var attemptEv = new DestructionAttemptEvent(); + RaiseLocalEvent(food, attemptEv); + if (attemptEv.Cancelled) + return; + var afterEvent = new AfterFullyEatenEvent(user); RaiseLocalEvent(food, ref afterEvent); @@ -451,13 +456,10 @@ public sealed class FoodSystem : EntitySystem // Check if the food is in the whitelist if (_whitelistSystem.IsWhitelistPass(ent.Comp1.SpecialDigestible, food)) return true; - //Sunrise-start - // If food is not in whitelist, but whitelist is optinal, go on - if (ent.Comp1.IsDigestibleAddition) - continue; - //Sunrise-end - // They can only eat whitelist food and the food isn't in the whitelist. It's not edible. - return false; + + // If their diet is whitelist exclusive, then they cannot eat anything but what follows their whitelisted tags. Else, they can eat their tags AND human food. + if (ent.Comp1.IsSpecialDigestibleExclusive) + return false; } if (component.RequiresSpecialDigestion) diff --git a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs index 3f8ec5ca5a..3ce285b06c 100644 --- a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs @@ -41,6 +41,9 @@ public sealed class SliceableFoodSystem : EntitySystem if (args.Handled) return; + if (!TryComp(args.Used, out var utensil) || (utensil.Types & UtensilType.Knife) == 0) + return; + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, entity.Comp.SliceTime, diff --git a/Content.Server/Objectives/ObjectivesSystem.cs b/Content.Server/Objectives/ObjectivesSystem.cs index 7a995bd5cb..39effb9bdb 100644 --- a/Content.Server/Objectives/ObjectivesSystem.cs +++ b/Content.Server/Objectives/ObjectivesSystem.cs @@ -178,17 +178,32 @@ public sealed class ObjectivesSystem : SharedObjectivesSystem agentSummary.AppendLine(Loc.GetString( "objectives-objective-success", ("objective", objectiveTitle), - ("markupColor", "green") + ("progress", progress) )); completedObjectives++; } + else if (progress <= 0.99f && progress >= 0.5f) + { + agentSummary.AppendLine(Loc.GetString( + "objectives-objective-partial-success", + ("objective", objectiveTitle), + ("progress", progress) + )); + } + else if (progress < 0.5f && progress > 0f) + { + agentSummary.AppendLine(Loc.GetString( + "objectives-objective-partial-failure", + ("objective", objectiveTitle), + ("progress", progress) + )); + } else { agentSummary.AppendLine(Loc.GetString( "objectives-objective-fail", ("objective", objectiveTitle), - ("progress", (int) (progress * 100)), - ("markupColor", "red") + ("progress", progress) )); } } diff --git a/Content.Server/Objectives/Systems/EscapeShuttleConditionSystem.cs b/Content.Server/Objectives/Systems/EscapeShuttleConditionSystem.cs index 5f8f680d9e..125e15e615 100644 --- a/Content.Server/Objectives/Systems/EscapeShuttleConditionSystem.cs +++ b/Content.Server/Objectives/Systems/EscapeShuttleConditionSystem.cs @@ -30,8 +30,9 @@ public sealed class EscapeShuttleConditionSystem : EntitySystem return 0f; // You're not escaping if you're restrained! + // Granting 50% as to allow for partial completion of the objective. if (TryComp(mind.OwnedEntity, out var cuffed) && cuffed.CuffedHandCount > 0) - return 0f; + return _emergencyShuttle.IsTargetEscaping(mind.OwnedEntity.Value) ? 0.5f : 0f; // Any emergency shuttle counts for this objective, but not pods. return _emergencyShuttle.IsTargetEscaping(mind.OwnedEntity.Value) ? 1f : 0f; diff --git a/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs b/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs index 1816896ecc..0e07830092 100644 --- a/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs +++ b/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs @@ -53,6 +53,6 @@ public sealed class HelpProgressConditionSystem : EntitySystem // require 50% completion for this one to be complete var completion = total / max; - return completion >= 0.5f ? 1f : completion / 0.5f; + return completion; } } diff --git a/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs b/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs index 7bb7add8b2..a37910704c 100644 --- a/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs +++ b/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs @@ -44,7 +44,7 @@ public sealed class KillPersonConditionSystem : EntitySystem return 1f; var targetDead = _mind.IsCharacterDeadIc(mind); - var targetOnShuttle = _emergencyShuttle.IsTargetEscaping(mind.OwnedEntity.Value); + var targetMarooned = !_emergencyShuttle.IsTargetEscaping(mind.OwnedEntity.Value) || _mind.IsCharacterUnrevivableIc(mind); if (!_config.GetCVar(CCVars.EmergencyShuttleEnabled) && requireMaroon) { requireDead = true; @@ -60,11 +60,11 @@ public sealed class KillPersonConditionSystem : EntitySystem // If the shuttle hasn't left, give 50% progress if the target isn't on the shuttle as a "almost there!" if (requireMaroon && !_emergencyShuttle.ShuttlesLeft) - return targetOnShuttle ? 0f : 0.5f; + return targetMarooned ? 0.5f : 0f; // If the shuttle has already left, and the target isn't on it, 100% if (requireMaroon && _emergencyShuttle.ShuttlesLeft) - return targetOnShuttle ? 0f : 1f; + return targetMarooned ? 1f : 0f; return 1f; // Good job you did it woohoo } diff --git a/Content.Server/Parallax/BiomeSystem.cs b/Content.Server/Parallax/BiomeSystem.cs index 6cf5b573b8..cc7437bd6f 100644 --- a/Content.Server/Parallax/BiomeSystem.cs +++ b/Content.Server/Parallax/BiomeSystem.cs @@ -110,7 +110,7 @@ public sealed partial class BiomeSystem : SharedBiomeSystem if (biome.Template == null || !reloads.Modified.TryGetValue(biome.Template, out var proto)) continue; - SetTemplate(uid, biome, (BiomeTemplatePrototype) proto); + SetTemplate(uid, biome, (BiomeTemplatePrototype)proto); } } @@ -258,7 +258,7 @@ public sealed partial class BiomeSystem : SharedBiomeSystem private void OnFTLStarted(ref FTLStartedEvent ev) { var targetMap = _transform.ToMapCoordinates(ev.TargetCoordinates); - var targetMapUid = _mapManager.GetMapEntityId(targetMap.MapId); + var targetMapUid = _mapSystem.GetMapOrInvalid(targetMap.MapId); if (!TryComp(targetMapUid, out var biome)) return; @@ -284,12 +284,12 @@ public sealed partial class BiomeSystem : SharedBiomeSystem { for (var y = Math.Floor(aabb.Bottom); y <= Math.Ceiling(aabb.Top); y++) { - var index = new Vector2i((int) x, (int) y); + var index = new Vector2i((int)x, (int)y); var chunk = SharedMapSystem.GetChunkIndices(index, ChunkSize); var mod = biome.ModifiedTiles.GetOrNew(chunk * ChunkSize); - if (!mod.Add(index) || !TryGetBiomeTile(index, biome.Layers, biome.Seed, grid, out var tile)) + if (!mod.Add(index) || !TryGetBiomeTile(index, biome.Layers, biome.Seed, (ev.MapUid, grid), out var tile)) continue; // If we flag it as modified then the tile is never set so need to do it ourselves. @@ -493,9 +493,9 @@ public sealed partial class BiomeSystem : SharedBiomeSystem var layerProto = ProtoManager.Index(layer); var markerSeed = seed + chunk.X * ChunkSize + chunk.Y + localIdx; var rand = new Random(markerSeed); - var buffer = (int) (layerProto.Radius / 2f); + var buffer = (int)(layerProto.Radius / 2f); var bounds = new Box2i(chunk + buffer, chunk + layerProto.Size - buffer); - var count = (int) (bounds.Area / (layerProto.Radius * layerProto.Radius)); + var count = (int)(bounds.Area / (layerProto.Radius * layerProto.Radius)); count = Math.Min(count, layerProto.MaxCount); GetMarkerNodes(gridUid, component, grid, layerProto, forced, bounds, count, rand, @@ -607,7 +607,7 @@ public sealed partial class BiomeSystem : SharedBiomeSystem continue; // Check if mask matches // anything blocking. - TryGetEntity(node, biome, grid, out var proto); + TryGetEntity(node, biome, (gridUid, grid), out var proto); // If there's an existing entity and it doesn't match the mask then skip. if (layerProto.EntityMask.Count > 0 && @@ -727,14 +727,14 @@ public sealed partial class BiomeSystem : SharedBiomeSystem continue; // Need to ensure the tile under it has loaded for anchoring. - if (TryGetBiomeTile(node, component.Layers, seed, grid, out var tile)) + if (TryGetBiomeTile(node, component.Layers, seed, (gridUid, grid), out var tile)) { _mapSystem.SetTile(gridUid, grid, node, tile.Value); } string? prototype; - if (TryGetEntity(node, component, grid, out var proto) && + if (TryGetEntity(node, component, (gridUid, grid), out var proto) && layerProto.EntityMask.TryGetValue(proto, out var maskedProto)) { prototype = maskedProto; @@ -793,7 +793,7 @@ public sealed partial class BiomeSystem : SharedBiomeSystem if (_mapSystem.TryGetTileRef(gridUid, grid, indices, out var tileRef) && !tileRef.Tile.IsEmpty) continue; - if (!TryGetBiomeTile(indices, component.Layers, seed, grid, out var biomeTile)) + if (!TryGetBiomeTile(indices, component.Layers, seed, (gridUid, grid), out var biomeTile)) continue; _tiles.Add((indices, biomeTile.Value)); @@ -819,7 +819,7 @@ public sealed partial class BiomeSystem : SharedBiomeSystem // Don't mess with anything that's potentially anchored. var anchored = _mapSystem.GetAnchoredEntitiesEnumerator(gridUid, grid, indices); - if (anchored.MoveNext(out _) || !TryGetEntity(indices, component, grid, out var entPrototype)) + if (anchored.MoveNext(out _) || !TryGetEntity(indices, component, (gridUid, grid), out var entPrototype)) continue; // TODO: Fix non-anchored ents spawning. @@ -852,7 +852,7 @@ public sealed partial class BiomeSystem : SharedBiomeSystem // Don't mess with anything that's potentially anchored. var anchored = _mapSystem.GetAnchoredEntitiesEnumerator(gridUid, grid, indices); - if (anchored.MoveNext(out _) || !TryGetDecals(indices, component.Layers, seed, grid, out var decals)) + if (anchored.MoveNext(out _) || !TryGetDecals(indices, component.Layers, seed, (gridUid, grid), out var decals)) continue; foreach (var decal in decals) @@ -966,7 +966,7 @@ public sealed partial class BiomeSystem : SharedBiomeSystem continue; // Don't mess with anything that's potentially anchored. - var anchored = grid.GetAnchoredEntitiesEnumerator(indices); + var anchored = _mapSystem.GetAnchoredEntitiesEnumerator(gridUid, grid, indices); if (anchored.MoveNext(out _)) { @@ -1011,7 +1011,7 @@ public sealed partial class BiomeSystem : SharedBiomeSystem return; EnsureComp(mapUid); - var biome = (BiomeComponent) EntityManager.ComponentFactory.GetComponent(typeof(BiomeComponent)); + var biome = EntityManager.ComponentFactory.GetComponent(); seed ??= _random.Next(); SetSeed(mapUid, biome, seed.Value, false); SetTemplate(mapUid, biome, biomeTemplate, false); @@ -1040,8 +1040,8 @@ public sealed partial class BiomeSystem : SharedBiomeSystem EnsureComp(mapUid); var moles = new float[Atmospherics.AdjustedNumberOfGases]; - moles[(int) Gas.Oxygen] = 21.824779f; - moles[(int) Gas.Nitrogen] = 82.10312f; + moles[(int)Gas.Oxygen] = 21.824779f; + moles[(int)Gas.Nitrogen] = 82.10312f; var mixture = new GasMixture(moles, Atmospherics.T20C); @@ -1070,7 +1070,7 @@ public sealed partial class BiomeSystem : SharedBiomeSystem continue; } - if (!TryGetBiomeTile(tileSet.GridIndices, biome.Layers, biome.Seed, mapGrid, out var tile)) + if (!TryGetBiomeTile(tileSet.GridIndices, biome.Layers, biome.Seed, (mapUid, mapGrid), out var tile)) { continue; } diff --git a/Content.Server/Payload/EntitySystems/PayloadSystem.cs b/Content.Server/Payload/EntitySystems/PayloadSystem.cs index bf562f747f..e16e8884b2 100644 --- a/Content.Server/Payload/EntitySystems/PayloadSystem.cs +++ b/Content.Server/Payload/EntitySystems/PayloadSystem.cs @@ -21,7 +21,6 @@ public sealed class PayloadSystem : EntitySystem [Dependency] private readonly SharedSolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly TransformSystem _transform = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly IComponentFactory _componentFactory = default!; [Dependency] private readonly ISerializationManager _serializationManager = default!; private static readonly ProtoId PayloadTag = "Payload"; @@ -92,13 +91,13 @@ public sealed class PayloadSystem : EntitySystem // ANY payload trigger that gets inserted can grant components. It is up to the construction graphs to determine trigger capacity. foreach (var (name, data) in trigger.Components) { - if (!_componentFactory.TryGetRegistration(name, out var registration)) + if (!Factory.TryGetRegistration(name, out var registration)) continue; if (HasComp(uid, registration.Type)) continue; - if (_componentFactory.GetComponent(registration.Type) is not Component component) + if (Factory.GetComponent(registration.Type) is not Component component) continue; var temp = (object) component; diff --git a/Content.Server/Pinpointer/NavMapSystem.cs b/Content.Server/Pinpointer/NavMapSystem.cs index 5ffbbe53ab..7511e60cde 100644 --- a/Content.Server/Pinpointer/NavMapSystem.cs +++ b/Content.Server/Pinpointer/NavMapSystem.cs @@ -101,30 +101,36 @@ public sealed partial class NavMapSystem : SharedNavMapSystem private void OnTileChanged(ref TileChangedEvent ev) { - if (!ev.EmptyChanged || !_navQuery.TryComp(ev.NewTile.GridUid, out var navMap)) + if (!_navQuery.TryComp(ev.Entity, out var navMap)) return; - var tile = ev.NewTile.GridIndices; - var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, ChunkSize); - - var chunk = EnsureChunk(navMap, chunkOrigin); - - // This could be easily replaced in the future to accommodate diagonal tiles - var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); - ref var tileData = ref chunk.TileData[GetTileIndex(relative)]; - - if (ev.NewTile.IsSpace(_tileDefManager)) + foreach (var change in ev.Changes) { - tileData = 0; - if (PruneEmpty((ev.NewTile.GridUid, navMap), chunk)) - return; - } - else - { - tileData = FloorMask; - } + if (!change.EmptyChanged) + continue; - DirtyChunk((ev.NewTile.GridUid, navMap), chunk); + var tile = change.GridIndices; + var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, ChunkSize); + + var chunk = EnsureChunk(navMap, chunkOrigin); + + // This could be easily replaced in the future to accommodate diagonal tiles + var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); + ref var tileData = ref chunk.TileData[GetTileIndex(relative)]; + + if (change.NewTile.IsSpace(_tileDefManager)) + { + tileData = 0; + if (PruneEmpty((ev.Entity, navMap), chunk)) + continue; + } + else + { + tileData = FloorMask; + } + + DirtyChunk((ev.Entity, navMap), chunk); + } } private void DirtyChunk(Entity entity, NavMapChunk chunk) diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index 6d311a60a0..a9a74014b7 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -2,7 +2,6 @@ using Content.Server.Actions; using Content.Server.Humanoid; using Content.Server.Inventory; using Content.Server.Mind.Commands; -using Content.Shared.Nutrition; using Content.Server.Polymorph.Components; using Content.Shared.Actions; using Content.Shared.Buckle; @@ -33,7 +32,6 @@ namespace Content.Server.Polymorph.Systems; public sealed partial class PolymorphSystem : EntitySystem { - [Dependency] private readonly IComponentFactory _compFact = default!; [Dependency] private readonly SharedMapSystem _map = default!; [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; @@ -226,7 +224,7 @@ public sealed partial class PolymorphSystem : EntitySystem MakeSentientCommand.MakeSentient(child, EntityManager); - var polymorphedComp = _compFact.GetComponent(); + var polymorphedComp = Factory.GetComponent(); polymorphedComp.Parent = uid; polymorphedComp.Configuration = configuration; AddComp(child, polymorphedComp); diff --git a/Content.Server/Power/EntitySystems/BatterySystem.cs b/Content.Server/Power/EntitySystems/BatterySystem.cs index a0ce3ddaad..f4e48f4a3d 100644 --- a/Content.Server/Power/EntitySystems/BatterySystem.cs +++ b/Content.Server/Power/EntitySystems/BatterySystem.cs @@ -1,9 +1,8 @@ -using Content.Server.Cargo.Systems; using Content.Server.Emp; using Content.Server.Power.Components; +using Content.Shared.Cargo; using Content.Shared.Examine; using Content.Shared.Rejuvenate; -using Content.Shared.Timing; using JetBrains.Annotations; using Robust.Shared.Utility; using Robust.Shared.Timing; diff --git a/Content.Server/Power/EntitySystems/CableVisSystem.cs b/Content.Server/Power/EntitySystems/CableVisSystem.cs index 1a68e87ad6..174908137d 100644 --- a/Content.Server/Power/EntitySystems/CableVisSystem.cs +++ b/Content.Server/Power/EntitySystems/CableVisSystem.cs @@ -13,6 +13,7 @@ namespace Content.Server.Power.EntitySystems { [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; + [Dependency] private readonly SharedMapSystem _map = default!; public override void Initialize() { @@ -31,7 +32,7 @@ namespace Content.Server.Power.EntitySystems return; var mask = WireVisDirFlags.None; - var tile = grid.TileIndicesFor(transform.Coordinates); + var tile = _map.TileIndicesFor((transform.GridUid.Value, grid), transform.Coordinates); foreach (var reachable in node.ReachableNodes) { @@ -39,7 +40,7 @@ namespace Content.Server.Power.EntitySystems continue; var otherTransform = Transform(reachable.Owner); - var otherTile = grid.TileIndicesFor(otherTransform.Coordinates); + var otherTile = _map.TileIndicesFor((transform.GridUid.Value, grid), otherTransform.Coordinates); var diff = otherTile - tile; mask |= diff switch diff --git a/Content.Server/Power/EntitySystems/PowerNetSystem.cs b/Content.Server/Power/EntitySystems/PowerNetSystem.cs index e40042c249..c3412dccae 100644 --- a/Content.Server/Power/EntitySystems/PowerNetSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerNetSystem.cs @@ -32,7 +32,6 @@ namespace Content.Server.Power.EntitySystems private readonly HashSet _apcNetReconnectQueue = new(); private EntityQuery _apcBatteryQuery; - private EntityQuery _appearanceQuery; private EntityQuery _batteryQuery; private BatteryRampPegSolver _solver = new(); @@ -42,7 +41,6 @@ namespace Content.Server.Power.EntitySystems base.Initialize(); _apcBatteryQuery = GetEntityQuery(); - _appearanceQuery = GetEntityQuery(); _batteryQuery = GetEntityQuery(); UpdatesAfter.Add(typeof(NodeGroupSystem)); @@ -318,6 +316,19 @@ namespace Content.Server.Power.EntitySystems _powerNetReconnectQueue.Clear(); } + private bool IsPoweredCalculate(ApcPowerReceiverComponent comp) + { + return !comp.PowerDisabled + && (!comp.NeedsPower + || MathHelper.CloseToPercent(comp.NetworkLoad.ReceivingPower, + comp.Load)); + } + + public override bool IsPoweredCalculate(SharedApcPowerReceiverComponent comp) + { + return IsPoweredCalculate((ApcPowerReceiverComponent)comp); + } + private void UpdateApcPowerReceiver(float frameTime) { var enumerator = AllEntityQuery(); @@ -325,11 +336,7 @@ namespace Content.Server.Power.EntitySystems { var mapId = Transform(uid).MapUid; var isAlwaysPowered = HasComp(mapId); - - var powered = isAlwaysPowered || (!apcReceiver.PowerDisabled - && (!apcReceiver.NeedsPower - || MathHelper.CloseToPercent(apcReceiver.NetworkLoad.ReceivingPower, - apcReceiver.Load))); + var powered = isAlwaysPowered || IsPoweredCalculate(apcReceiver); MetaDataComponent? metadata = null; @@ -385,9 +392,6 @@ namespace Content.Server.Power.EntitySystems var ev = new PowerChangedEvent(powered, apcReceiver.NetworkLoad.ReceivingPower); RaiseLocalEvent(uid, ref ev); - - if (_appearanceQuery.TryComp(uid, out var appearance)) - _appearance.SetData(uid, PowerDeviceVisuals.Powered, powered, appearance); } } diff --git a/Content.Server/Power/Generation/Teg/TegGeneratorComponent.cs b/Content.Server/Power/Generation/Teg/TegGeneratorComponent.cs index 87998e5d82..1551078a88 100644 --- a/Content.Server/Power/Generation/Teg/TegGeneratorComponent.cs +++ b/Content.Server/Power/Generation/Teg/TegGeneratorComponent.cs @@ -75,4 +75,10 @@ public sealed partial class TegGeneratorComponent : Component [ViewVariables(VVAccess.ReadWrite)] [DataField("volumeMax")] public float VolumeMax = -4; + + /// + /// Smoothing factor used to smooth out power generation. + /// + [DataField] + public float PowerSmoothingFactor = 0.2f; } diff --git a/Content.Server/Power/Generation/Teg/TegSystem.cs b/Content.Server/Power/Generation/Teg/TegSystem.cs index 77848d5c79..0de3038a35 100644 --- a/Content.Server/Power/Generation/Teg/TegSystem.cs +++ b/Content.Server/Power/Generation/Teg/TegSystem.cs @@ -186,8 +186,12 @@ public sealed class TegSystem : EntitySystem // Turn energy (at atmos tick rate) into wattage. var power = electricalEnergy / args.dt; + // Add ramp factor. This magics slight power into existence, but allows us to ramp up. - supplier.MaxSupply = power * component.RampFactor; + // Also apply an exponential moving average to smooth out fluttering, as it was causing + // seizures. + supplier.MaxSupply = component.PowerSmoothingFactor * (power * component.RampFactor) + + (1 - component.PowerSmoothingFactor) * supplier.MaxSupply; var circAComp = Comp(circA); var circBComp = Comp(circB); diff --git a/Content.Server/Preferences/Managers/IServerPreferencesManager.cs b/Content.Server/Preferences/Managers/IServerPreferencesManager.cs index cdb53bb4be..ed6f2b17e6 100644 --- a/Content.Server/Preferences/Managers/IServerPreferencesManager.cs +++ b/Content.Server/Preferences/Managers/IServerPreferencesManager.cs @@ -1,9 +1,11 @@ using System.Diagnostics.CodeAnalysis; using System.Threading; using System.Threading.Tasks; +using Content.Shared.Construction.Prototypes; using Content.Shared.Preferences; using Robust.Shared.Network; using Robust.Shared.Player; +using Robust.Shared.Prototypes; namespace Content.Server.Preferences.Managers { @@ -22,5 +24,6 @@ namespace Content.Server.Preferences.Managers bool HavePreferencesLoaded(ICommonSession session); Task SetProfile(NetUserId userId, int slot, ICharacterProfile profile); + Task SetConstructionFavorites(NetUserId userId, List> favorites); } } diff --git a/Content.Server/Preferences/Managers/ServerPreferencesManager.cs b/Content.Server/Preferences/Managers/ServerPreferencesManager.cs index 447aa031e0..3bde48c26b 100644 --- a/Content.Server/Preferences/Managers/ServerPreferencesManager.cs +++ b/Content.Server/Preferences/Managers/ServerPreferencesManager.cs @@ -4,11 +4,13 @@ using System.Threading; using System.Threading.Tasks; using Content.Server.Database; using Content.Shared.CCVar; +using Content.Shared.Construction.Prototypes; using Content.Shared.Preferences; using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Network; using Robust.Shared.Player; +using Robust.Shared.Prototypes; using Robust.Shared.Utility; using Content.Sunrise.Interfaces.Shared; // Sunrise-Sponsors @@ -27,6 +29,7 @@ namespace Content.Server.Preferences.Managers [Dependency] private readonly IDependencyCollection _dependencies = default!; [Dependency] private readonly ILogManager _log = default!; [Dependency] private readonly UserDbDataManager _userDb = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; private ISharedSponsorsManager? _sponsors; // Cache player prefs on the server so we don't need as much async hell related to them. @@ -44,6 +47,7 @@ namespace Content.Server.Preferences.Managers _netManager.RegisterNetMessage(HandleSelectCharacterMessage); _netManager.RegisterNetMessage(HandleUpdateCharacterMessage); _netManager.RegisterNetMessage(HandleDeleteCharacterMessage); + _netManager.RegisterNetMessage(HandleUpdateConstructionFavoritesMessage); _sawmill = _log.GetSawmill("prefs"); } @@ -54,7 +58,7 @@ namespace Content.Server.Preferences.Managers if (!_cachedPlayerPrefs.TryGetValue(userId, out var prefsData) || !prefsData.PrefsLoaded) { - Logger.WarningS("prefs", $"User {userId} tried to modify preferences before they loaded."); + _sawmill.Warning($"User {userId} tried to modify preferences before they loaded."); return; } @@ -71,7 +75,7 @@ namespace Content.Server.Preferences.Managers return; } - prefsData.Prefs = new PlayerPreferences(curPrefs.Characters, index, curPrefs.AdminOOCColor); + prefsData.Prefs = new PlayerPreferences(curPrefs.Characters, index, curPrefs.AdminOOCColor, curPrefs.ConstructionFavorites); if (ShouldStorePrefs(message.MsgChannel.AuthType)) { @@ -116,12 +120,28 @@ namespace Content.Server.Preferences.Managers [slot] = profile }; - prefsData.Prefs = new PlayerPreferences(profiles, slot, curPrefs.AdminOOCColor); + prefsData.Prefs = new PlayerPreferences(profiles, slot, curPrefs.AdminOOCColor, curPrefs.ConstructionFavorites); if (ShouldStorePrefs(session.Channel.AuthType)) await _db.SaveCharacterSlotAsync(userId, profile, slot); } + public async Task SetConstructionFavorites(NetUserId userId, List> favorites) + { + if (!_cachedPlayerPrefs.TryGetValue(userId, out var prefsData) || !prefsData.PrefsLoaded) + { + _sawmill.Error($"Tried to modify user {userId} preferences before they loaded."); + return; + } + + var curPrefs = prefsData.Prefs!; + prefsData.Prefs = new PlayerPreferences(curPrefs.Characters, curPrefs.SelectedCharacterIndex, curPrefs.AdminOOCColor, favorites); + + var session = _playerManager.GetSessionById(userId); + if (ShouldStorePrefs(session.Channel.AuthType)) + await _db.SaveConstructionFavoritesAsync(userId, favorites); + } + private async void HandleDeleteCharacterMessage(MsgDeleteCharacter message) { var slot = message.Slot; @@ -129,7 +149,7 @@ namespace Content.Server.Preferences.Managers if (!_cachedPlayerPrefs.TryGetValue(userId, out var prefsData) || !prefsData.PrefsLoaded) { - Logger.WarningS("prefs", $"User {userId} tried to modify preferences before they loaded."); + _sawmill.Warning($"User {userId} tried to modify preferences before they loaded."); return; } @@ -154,7 +174,7 @@ namespace Content.Server.Preferences.Managers var arr = new Dictionary(curPrefs.Characters); arr.Remove(slot); - prefsData.Prefs = new PlayerPreferences(arr, nextSlot ?? curPrefs.SelectedCharacterIndex, curPrefs.AdminOOCColor); + prefsData.Prefs = new PlayerPreferences(arr, nextSlot ?? curPrefs.SelectedCharacterIndex, curPrefs.AdminOOCColor, curPrefs.ConstructionFavorites); if (ShouldStorePrefs(message.MsgChannel.AuthType)) { @@ -169,6 +189,40 @@ namespace Content.Server.Preferences.Managers } } + private async void HandleUpdateConstructionFavoritesMessage(MsgUpdateConstructionFavorites message) + { + var userId = message.MsgChannel.UserId; + if (!_cachedPlayerPrefs.TryGetValue(userId, out var prefsData) || !prefsData.PrefsLoaded) + { + _sawmill.Warning($"User {userId} tried to modify preferences before they loaded."); + return; + } + + // Validate items in the message so that a modified client cannot freely store a gigabyte of arbitrary data. + var validatedSet = new HashSet>(); + foreach (var favorite in message.Favorites) + { + if (_prototypeManager.HasIndex(favorite)) + validatedSet.Add(favorite); + } + + var validatedList = message.Favorites; + if (validatedSet.Count != message.Favorites.Count) + { + // A difference in counts indicates that unrecognized or duplicate IDs are present. + _sawmill.Warning($"User {userId} sent invalid construction favorites."); + validatedList = validatedSet.ToList(); + } + + var curPrefs = prefsData.Prefs!; + prefsData.Prefs = new PlayerPreferences(curPrefs.Characters, curPrefs.SelectedCharacterIndex, curPrefs.AdminOOCColor, validatedList); + + if (ShouldStorePrefs(message.MsgChannel.AuthType)) + { + await _db.SaveConstructionFavoritesAsync(userId, validatedList); + } + } + // Should only be called via UserDbDataManager. public async Task LoadData(ICommonSession session, CancellationToken cancel) { @@ -179,8 +233,8 @@ namespace Content.Server.Preferences.Managers { PrefsLoaded = true, Prefs = new PlayerPreferences( - new[] {new KeyValuePair(0, HumanoidCharacterProfile.Random())}, - 0, Color.Transparent) + new[] { new KeyValuePair(0, HumanoidCharacterProfile.Random()) }, + 0, Color.Transparent, []) }; _cachedPlayerPrefs[session.UserId] = prefsData; @@ -320,7 +374,7 @@ namespace Content.Server.Preferences.Managers return new PlayerPreferences(prefs.Characters.Select(p => { return new KeyValuePair(p.Key, p.Value.Validated(session, collection, sponsorPrototypes)); - }), prefs.SelectedCharacterIndex, prefs.AdminOOCColor); + }), prefs.SelectedCharacterIndex, prefs.AdminOOCColor, prefs.ConstructionFavorites); } public IEnumerable> GetSelectedProfilesForPlayers( diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenAutoCabling.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.AutoCabling.cs similarity index 92% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenAutoCabling.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.AutoCabling.cs index 1ff28719fc..8c49a7d606 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenAutoCabling.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.AutoCabling.cs @@ -13,14 +13,8 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(AutoCablingDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(AutoCablingDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!data.Entities.TryGetValue(DungeonDataKey.Cabling, out var ent)) - { - LogDataError(typeof(AutoCablingDunGen)); - return; - } - // There's a lot of ways you could do this. // For now we'll just connect every LV cable in the dungeon. var cableTiles = new HashSet(); @@ -157,7 +151,7 @@ public sealed partial class DungeonJob if (found) continue; - _entManager.SpawnEntity(ent, _maps.GridTileToLocal(_gridUid, _grid, tile)); + _entManager.SpawnEntity(gen.Entity, _maps.GridTileToLocal(_gridUid, _grid, tile)); } } } diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.Biome.cs similarity index 86% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.Biome.cs index 9e5f3bdcfc..48adb8af18 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.Biome.cs @@ -14,7 +14,7 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(BiomeDunGen dunGen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(BiomeDunGen dunGen, Dungeon dungeon, HashSet reservedTiles, Random random) { if (!_prototype.TryIndex(dunGen.BiomeTemplate, out var indexedBiome)) return; @@ -31,20 +31,20 @@ public sealed partial class DungeonJob if (reservedTiles.Contains(node)) continue; - + if (dunGen.TileMask is not null) { - if (!dunGen.TileMask.Contains(((ContentTileDefinition) _tileDefManager[tileRef.Value.Tile.TypeId]).ID)) + if (!dunGen.TileMask.Contains(((ContentTileDefinition)_tileDefManager[tileRef.Value.Tile.TypeId]).ID)) continue; } // Need to set per-tile to override data. - if (biomeSystem.TryGetTile(node, indexedBiome.Layers, seed, _grid, out var tile)) + if (biomeSystem.TryGetTile(node, indexedBiome.Layers, seed, (_gridUid, _grid), out var tile)) { _maps.SetTile(_gridUid, _grid, node, tile.Value); } - if (biomeSystem.TryGetDecals(node, indexedBiome.Layers, seed, _grid, out var decals)) + if (biomeSystem.TryGetDecals(node, indexedBiome.Layers, seed, (_gridUid, _grid), out var decals)) { foreach (var decal in decals) { @@ -52,7 +52,7 @@ public sealed partial class DungeonJob } } - if (biomeSystem.TryGetEntity(node, indexedBiome.Layers, tile ?? tileRef.Value.Tile, seed, _grid, out var entityProto)) + if (biomeSystem.TryGetEntity(node, indexedBiome.Layers, tile ?? tileRef.Value.Tile, seed, (_gridUid, _grid), out var entityProto)) { var ent = _entManager.SpawnEntity(entityProto, new EntityCoordinates(_gridUid, node + _grid.TileSizeHalfVector)); var xform = xformQuery.Get(ent); diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiomeMarkerLayer.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.BiomeMarkerLayer.cs similarity index 97% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiomeMarkerLayer.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.BiomeMarkerLayer.cs index fb0eaa0157..abc74ddc4f 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiomeMarkerLayer.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.BiomeMarkerLayer.cs @@ -15,7 +15,7 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(BiomeMarkerLayerDunGen dunGen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(BiomeMarkerLayerDunGen dunGen, Dungeon dungeon, HashSet reservedTiles, Random random) { // If we're adding biome then disable it and just use for markers. if (_entManager.EnsureComponent(_gridUid, out BiomeComponent biomeComp)) diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBoundaryWall.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.BoundaryWall.cs similarity index 71% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBoundaryWall.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.BoundaryWall.cs index 84697a56bc..1c48a84cce 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBoundaryWall.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.BoundaryWall.cs @@ -12,27 +12,13 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(BoundaryWallDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(BoundaryWallDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!data.Tiles.TryGetValue(DungeonDataKey.FallbackTile, out var protoTileDef) || - !data.Entities.TryGetValue(DungeonDataKey.Walls, out var wall)) - { - _sawmill.Error($"Error finding dungeon data for {nameof(gen)}"); - return; - } - - var tileDef = _tileDefManager[protoTileDef]; + var tileDef = _tileDefManager[gen.Tile]; var tiles = new List<(Vector2i Index, Tile Tile)>(dungeon.RoomExteriorTiles.Count); - if (!data.Entities.TryGetValue(DungeonDataKey.CornerWalls, out var cornerWall)) - { - cornerWall = wall; - } - - if (cornerWall == default) - { - cornerWall = wall; - } + var wall = gen.Wall; + var cornerWall = gen.CornerWall ?? gen.Wall; // Spawn wall outline // - Tiles first @@ -43,7 +29,7 @@ public sealed partial class DungeonJob if (dungeon.Entrances.Contains(neighbor)) continue; - if (!_anchorable.TileFree(_grid, neighbor, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + if (!_anchorable.TileFree((_gridUid, _grid), neighbor, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) continue; tiles.Add((neighbor, _tile.GetVariantTile((ContentTileDefinition) tileDef, random))); @@ -54,7 +40,7 @@ public sealed partial class DungeonJob if (dungeon.RoomTiles.Contains(index)) continue; - if (!_anchorable.TileFree(_grid, index, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + if (!_anchorable.TileFree((_gridUid, _grid), index, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) continue; tiles.Add((index, _tile.GetVariantTile((ContentTileDefinition)tileDef, random))); @@ -67,7 +53,7 @@ public sealed partial class DungeonJob { var index = tiles[i]; - if (!_anchorable.TileFree(_grid, index.Index, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + if (!_anchorable.TileFree((_gridUid, _grid), index.Index, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) continue; // If no cardinal neighbors in dungeon then we're a corner. diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenCornerClutter.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.CornerClutter.cs similarity index 62% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenCornerClutter.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.CornerClutter.cs index f785829850..918e5efa0d 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenCornerClutter.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.CornerClutter.cs @@ -1,8 +1,6 @@ using System.Threading.Tasks; using Content.Shared.Procedural; using Content.Shared.Procedural.PostGeneration; -using Content.Shared.Storage; -using Robust.Shared.Physics.Components; using Robust.Shared.Random; namespace Content.Server.Procedural.DungeonJob; @@ -12,17 +10,16 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(CornerClutterDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(CornerClutterDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!data.SpawnGroups.TryGetValue(DungeonDataKey.CornerClutter, out var corner)) - { - _sawmill.Error(Environment.StackTrace); - return; - } + var contentsTable = _prototype.Index(gen.Contents); foreach (var tile in dungeon.CorridorTiles) { - var blocked = _anchorable.TileFree(_grid, tile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask); + if (reservedTiles.Contains(tile)) + continue; + + var blocked = _anchorable.TileFree((_gridUid, _grid), tile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask); if (blocked) continue; @@ -45,8 +42,8 @@ public sealed partial class DungeonJob if (random.Prob(gen.Chance)) { var coords = _maps.GridTileToLocal(_gridUid, _grid, tile); - var protos = EntitySpawnCollection.GetSpawns(_prototype.Index(corner).Entries, random); - _entManager.SpawnEntities(coords, protos); + var protos = contentsTable.Table.GetSpawns(random, _entManager, _prototype); + _entManager.SpawnEntitiesAttachedTo(coords, protos); } break; diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenCorridor.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.Corridor.cs similarity index 89% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenCorridor.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.Corridor.cs index 8ea79ffe54..bf9f910b94 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenCorridor.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.Corridor.cs @@ -12,14 +12,8 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(CorridorDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(CorridorDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!data.Tiles.TryGetValue(DungeonDataKey.FallbackTile, out var tileProto)) - { - LogDataError(typeof(CorridorDunGen)); - return; - } - var entrances = new List(dungeon.Rooms.Count); // Grab entrances @@ -98,7 +92,7 @@ public sealed partial class DungeonJob WidenCorridor(dungeon, gen.Width, corridorTiles); var setTiles = new List<(Vector2i, Tile)>(); - var tileDef = (ContentTileDefinition) _tileDefManager[tileProto]; + var tileDef = (ContentTileDefinition) _tileDefManager[gen.Tile]; foreach (var tile in corridorTiles) { diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenCorridorClutter.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.CorridorClutter.cs similarity index 82% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenCorridorClutter.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.CorridorClutter.cs index cb7c4b210c..e0be852733 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenCorridorClutter.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.CorridorClutter.cs @@ -12,10 +12,11 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(CorridorClutterDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(CorridorClutterDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) { var physicsQuery = _entManager.GetEntityQuery(); var count = (int) Math.Ceiling(dungeon.CorridorTiles.Count * gen.Chance); + var contents = _prototype.Index(gen.Contents); while (count > 0) { @@ -42,9 +43,12 @@ public sealed partial class DungeonJob count--; - var protos = EntitySpawnCollection.GetSpawns(gen.Contents, random); + if (reservedTiles.Contains(tile)) + continue; + + var protos = _entTable.GetSpawns(contents, random); var coords = _maps.ToCenterCoordinates(_gridUid, tile, _grid); - _entManager.SpawnEntities(coords, protos); + _entManager.SpawnEntitiesAttachedTo(coords, protos); await SuspendIfOutOfTime(); if (!ValidateResume()) diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenCorridorDecalSkirting.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.CorridorDecalSkirting.cs similarity index 93% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenCorridorDecalSkirting.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.CorridorDecalSkirting.cs index 3b516c3fa8..cd8737e6ec 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenCorridorDecalSkirting.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.CorridorDecalSkirting.cs @@ -13,13 +13,8 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(CorridorDecalSkirtingDunGen decks, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(CorridorDecalSkirtingDunGen decks, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!data.Colors.TryGetValue(DungeonDataKey.Decals, out var color)) - { - _sawmill.Error(Environment.StackTrace); - } - var directions = new ValueList(4); var pocketDirections = new ValueList(4); var doorQuery = _entManager.GetEntityQuery(); @@ -88,7 +83,7 @@ public sealed partial class DungeonJob { // Decals not being centered biting my ass again var gridPos = _maps.GridTileToLocal(_gridUid, _grid, tile).Offset(offset); - _decals.TryAddDecal(cDir, gridPos, out _, color: color); + _decals.TryAddDecal(cDir, gridPos, out _, color: decks.Color); } } @@ -101,7 +96,7 @@ public sealed partial class DungeonJob { // Decals not being centered biting my ass again var gridPos = _maps.GridTileToLocal(_gridUid, _grid, tile).Offset(offset); - _decals.TryAddDecal(cDir, gridPos, out _, color: color); + _decals.TryAddDecal(cDir, gridPos, out _, color: decks.Color); } continue; @@ -116,7 +111,7 @@ public sealed partial class DungeonJob if (decks.CornerDecals.TryGetValue(dirFlag, out var cDir)) { var gridPos = _maps.GridTileToLocal(_gridUid, _grid, tile).Offset(offset); - _decals.TryAddDecal(cDir, gridPos, out _, color: color); + _decals.TryAddDecal(cDir, gridPos, out _, color: decks.Color); } } } diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenFill.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenFill.cs deleted file mode 100644 index 77c615d378..0000000000 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenFill.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System.Numerics; -using System.Threading.Tasks; -using Content.Shared.Maps; -using Content.Shared.Procedural; -using Content.Shared.Procedural.DungeonGenerators; - -namespace Content.Server.Procedural.DungeonJob; - -public sealed partial class DungeonJob -{ - /// - /// - /// - private async Task GenerateFillDunGen(FillGridDunGen fill, DungeonData data, HashSet reservedTiles) - { - if (!data.Entities.TryGetValue(DungeonDataKey.Fill, out var fillEnt)) - { - LogDataError(typeof(FillGridDunGen)); - return Dungeon.Empty; - } - - var roomTiles = new HashSet(); - var tiles = _maps.GetAllTilesEnumerator(_gridUid, _grid); - - while (tiles.MoveNext(out var tileRef)) - { - var tile = tileRef.Value.GridIndices; - - if (reservedTiles.Contains(tile)) - continue; - - if (fill.AllowedTiles != null && !fill.AllowedTiles.Contains(((ContentTileDefinition) _tileDefManager[tileRef.Value.Tile.TypeId]).ID)) - continue; - - if (!_anchorable.TileFree(_grid, tile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) - continue; - - var gridPos = _maps.GridTileToLocal(_gridUid, _grid, tile); - _entManager.SpawnEntity(fillEnt, gridPos); - - roomTiles.Add(tile); - - await SuspendDungeon(); - if (!ValidateResume()) - break; - } - - var dungeon = new Dungeon(); - var room = new DungeonRoom(roomTiles, Vector2.Zero, Box2i.Empty, new HashSet()); - dungeon.AddRoom(room); - - return dungeon; - } -} diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenPrefab.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenPrefab.cs index 33bbeba4b5..8eb85e2cb8 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenPrefab.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenPrefab.cs @@ -14,15 +14,8 @@ public sealed partial class DungeonJob /// /// /// - private async Task GeneratePrefabDunGen(Vector2i position, DungeonData data, PrefabDunGen prefab, HashSet reservedTiles, Random random) + private async Task GeneratePrefabDunGen(Vector2i position, PrefabDunGen prefab, HashSet reservedTiles, Random random) { - if (!data.Tiles.TryGetValue(DungeonDataKey.FallbackTile, out var tileProto) || - !data.Whitelists.TryGetValue(DungeonDataKey.Rooms, out var roomWhitelist)) - { - LogDataError(typeof(PrefabDunGen)); - return Dungeon.Empty; - } - var preset = prefab.Presets[random.Next(prefab.Presets.Count)]; var gen = _prototype.Index(preset); @@ -50,9 +43,9 @@ public sealed partial class DungeonJob { var whitelisted = false; - if (roomWhitelist?.Tags != null) + if (prefab.RoomWhitelist?.Tags != null) { - foreach (var tag in roomWhitelist.Tags) + foreach (var tag in prefab.RoomWhitelist.Tags) { if (proto.Tags.Contains(tag)) { @@ -164,6 +157,7 @@ public sealed partial class DungeonJob // Then for overlaps choose either 1x1 / 3x1 // Pick a random tile for it and then expand outwards as relevant (weighted towards middle?) + var fallbackTile = prefab.FallbackTile; for (var i = 0; i < chosenPacks.Length; i++) { @@ -181,29 +175,35 @@ public sealed partial class DungeonJob Angle roomRotation = Angle.Zero; Matrix3x2 matty; + // If no room found then try rotated dimensions if (!roomProtos.TryGetValue(roomDimensions, out var roomProto)) { roomDimensions = new Vector2i(roomDimensions.Y, roomDimensions.X); + // If nothing at all then no valid rooms, try fallback tile and log it. if (!roomProtos.TryGetValue(roomDimensions, out roomProto)) { - matty = Matrix3x2.Multiply(packTransform, dungeonTransform); - - for (var x = roomSize.Left; x < roomSize.Right; x++) + if (fallbackTile != null) { - for (var y = roomSize.Bottom; y < roomSize.Top; y++) + matty = Matrix3x2.Multiply(packTransform, dungeonTransform); + + for (var x = roomSize.Left; x < roomSize.Right; x++) { - var index = Vector2.Transform(new Vector2(x, y) + _grid.TileSizeHalfVector - packCenter, matty).Floored(); + for (var y = roomSize.Bottom; y < roomSize.Top; y++) + { + var index = Vector2.Transform(new Vector2(x, y) + _grid.TileSizeHalfVector - packCenter, matty).Floored(); - if (reservedTiles.Contains(index)) - continue; + if (reservedTiles.Contains(index)) + continue; - tiles.Add((index, new Tile(_tileDefManager[tileProto].TileId))); + tiles.Add((index, new Tile(_tileDefManager[fallbackTile.Value].TileId))); + } } + + _maps.SetTiles(_gridUid, _grid, tiles); + tiles.Clear(); } - _maps.SetTiles(_gridUid, _grid, tiles); - tiles.Clear(); _sawmill.Error($"Unable to find room variant for {roomDimensions}, leaving empty."); continue; } diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenReplaceTile.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenReplaceTile.cs index 6b36d10109..dfc0932915 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenReplaceTile.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenReplaceTile.cs @@ -12,49 +12,43 @@ public sealed partial class DungeonJob /// /// /// - private async Task GenerateTileReplacementDunGen(ReplaceTileDunGen gen, DungeonData data, HashSet reservedTiles, Random random) + private async Task GenerateTileReplacementDunGen(ReplaceTileDunGen gen, List dungeons, HashSet reservedTiles, Random random) { - var tiles = _maps.GetAllTilesEnumerator(_gridUid, _grid); var replacements = new List<(Vector2i Index, Tile Tile)>(); - var reserved = new HashSet(); - while (tiles.MoveNext(out var tileRef)) + foreach (var dungeon in dungeons) { - var node = tileRef.Value.GridIndices; - - if (reservedTiles.Contains(node)) - continue; - - foreach (var layer in gen.Layers) + foreach (var node in dungeon.AllTiles) { - var value = layer.Noise.GetNoise(node.X, node.Y); - - if (value < layer.Threshold) + if (reservedTiles.Contains(node)) continue; - Tile tile; + foreach (var layer in gen.Layers) + { + var value = layer.Noise.GetNoise(node.X, node.Y); - if (random.Prob(gen.VariantWeight)) - { - tile = _tileDefManager.GetVariantTile(_prototype.Index(layer.Tile), random); - } - else - { - tile = new Tile(_prototype.Index(layer.Tile).TileId); + if (value < layer.Threshold) + continue; + + Tile tile; + + if (random.Prob(gen.VariantWeight)) + { + tile = _tileDefManager.GetVariantTile(_prototype.Index(layer.Tile), random); + } + else + { + tile = new Tile(_prototype.Index(layer.Tile).TileId); + } + + replacements.Add((node, tile)); + break; } - replacements.Add((node, tile)); - reserved.Add(node); - break; + await SuspendDungeon(); } - await SuspendDungeon(); + _maps.SetTiles(_gridUid, _grid, replacements); } - - _maps.SetTiles(_gridUid, _grid, replacements); - return new Dungeon(new List() - { - new DungeonRoom(reserved, _position, Box2i.Empty, new HashSet()), - }); } } diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenDungeonEntrance.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.DungeonEntrance.cs similarity index 83% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenDungeonEntrance.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.DungeonEntrance.cs index abc52f07c6..dceeac3f12 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenDungeonEntrance.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.DungeonEntrance.cs @@ -12,18 +12,12 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(DungeonEntranceDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(DungeonEntranceDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!data.Tiles.TryGetValue(DungeonDataKey.FallbackTile, out var tileProto) || - !data.SpawnGroups.TryGetValue(DungeonDataKey.Entrance, out var entrance)) - { - LogDataError(typeof(DungeonEntranceDunGen)); - return; - } - var rooms = new List(dungeon.Rooms); var roomTiles = new List(); - var tileDef = (ContentTileDefinition) _tileDefManager[tileProto]; + var tileDef = (ContentTileDefinition) _tileDefManager[gen.Tile]; + var contents = _prototype.Index(gen.Contents); for (var i = 0; i < gen.Count; i++) { @@ -62,13 +56,13 @@ public sealed partial class DungeonJob } // Check if exterior spot free. - if (!_anchorable.TileFree(_grid, tile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + if (!_anchorable.TileFree((_gridUid, _grid), tile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) { continue; } // Check if interior spot free (no guarantees on exterior but ClearDoor should handle it) - if (!_anchorable.TileFree(_grid, dirVec, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + if (!_anchorable.TileFree((_gridUid, _grid), dirVec, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) { continue; } @@ -82,7 +76,7 @@ public sealed partial class DungeonJob var gridCoords = _maps.GridTileToLocal(_gridUid, _grid, tile); // Need to offset the spawn to avoid spawning in the room. - foreach (var ent in EntitySpawnCollection.GetSpawns(_prototype.Index(entrance).Entries, random)) + foreach (var ent in _entTable.GetSpawns(contents, random)) { _entManager.SpawnAtPosition(ent, gridCoords); } diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.EntityTableDunGen.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.EntityTableDunGen.cs index 8f9be82272..6483448240 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.EntityTableDunGen.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.EntityTableDunGen.cs @@ -14,23 +14,32 @@ public sealed partial class DungeonJob { private async Task PostGen( EntityTableDunGen gen, - Dungeon dungeon, + List dungeons, + HashSet reservedTiles, Random random) { - var availableRooms = new ValueList(); - availableRooms.AddRange(dungeon.Rooms); - var availableTiles = new ValueList(dungeon.AllTiles); - var count = random.Next(gen.MinCount, gen.MaxCount + 1); var npcs = _entManager.System(); - for (var i = 0; i < count; i++) + foreach (var dungeon in dungeons) { - while (availableTiles.Count > 0) + var availableRooms = new ValueList(); + availableRooms.AddRange(dungeon.Rooms); + var availableTiles = new ValueList(dungeon.AllTiles); + + while (availableTiles.Count > 0 && count > 0) { var tile = availableTiles.RemoveSwap(random.Next(availableTiles.Count)); - if (!_anchorable.TileFree(_grid, + await SuspendDungeon(); + + if (!ValidateResume()) + return; + + if (reservedTiles.Contains(tile)) + continue; + + if (!_anchorable.TileFree((_gridUid, _grid), tile, (int) CollisionGroup.MachineLayer, (int) CollisionGroup.MachineLayer)) @@ -47,13 +56,18 @@ public sealed partial class DungeonJob npcs.SleepNPC(uid); } - break; + count--; } - await SuspendDungeon(); - - if (!ValidateResume()) + if (gen.PerDungeon) + { + count = random.Next(gen.MinCount, gen.MaxCount + 1); + } + // Stop if count is 0, otherwise go to next dungeon. + else if (count == 0) + { return; + } } } } diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenEntranceFlank.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.EntranceFlank.cs similarity index 66% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenEntranceFlank.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.EntranceFlank.cs index 3a1c7a3779..1788c23cae 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenEntranceFlank.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.EntranceFlank.cs @@ -13,18 +13,12 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(EntranceFlankDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(EntranceFlankDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!data.Tiles.TryGetValue(DungeonDataKey.FallbackTile, out var tileProto) || - !data.SpawnGroups.TryGetValue(DungeonDataKey.EntranceFlank, out var flankProto)) - { - _sawmill.Error($"Unable to get dungeon data for {nameof(gen)}"); - return; - } - var tiles = new List<(Vector2i Index, Tile)>(); - var tileDef = _tileDefManager[tileProto]; + var tileDef = _tileDefManager[gen.Tile]; var spawnPositions = new ValueList(dungeon.Rooms.Count); + var contents = _prototype.Index(gen.Contents); foreach (var room in dungeon.Rooms) { @@ -48,11 +42,10 @@ public sealed partial class DungeonJob } _maps.SetTiles(_gridUid, _grid, tiles); - var entGroup = _prototype.Index(flankProto); foreach (var entrance in spawnPositions) { - _entManager.SpawnEntities(_maps.GridTileToLocal(_gridUid, _grid, entrance), EntitySpawnCollection.GetSpawns(entGroup.Entries, random)); + _entManager.SpawnEntitiesAttachedTo(_maps.GridTileToLocal(_gridUid, _grid, entrance), _entTable.GetSpawns(contents, random)); } } } diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenExterior.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.Exterior.cs similarity index 88% rename from Content.Server/Procedural/DungeonJob/DungeonJob.DunGenExterior.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.Exterior.cs index bb2c1cbbbf..92237dca2a 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenExterior.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.Exterior.cs @@ -1,10 +1,8 @@ using System.Threading.Tasks; -using Content.Server.NPC.Pathfinding; using Content.Shared.Maps; using Content.Shared.NPC; using Content.Shared.Procedural; using Content.Shared.Procedural.DungeonGenerators; -using Robust.Shared.Collections; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -27,7 +25,6 @@ public sealed partial class DungeonJob var startTile = new Vector2i(0, (int) distance).Rotate(angle); Vector2i? dungeonSpawn = null; - var pathfinder = _entManager.System(); // Gridcast SharedPathfindingSystem.GridCast(startTile, position, tile => @@ -52,7 +49,7 @@ public sealed partial class DungeonJob var config = _prototype.Index(dungen.Proto); var nextSeed = random.Next(); - var dungeons = await GetDungeons(dungeonSpawn.Value, config, config.Data, config.Layers, reservedTiles, nextSeed, new Random(nextSeed)); + var dungeons = await GetDungeons(dungeonSpawn.Value, config, config.Layers, reservedTiles, nextSeed, new Random(nextSeed)); return dungeons; } diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenExternalWindow.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.ExternalWindow.cs similarity index 79% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenExternalWindow.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.ExternalWindow.cs index 9a1b44ec91..482cb34a56 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenExternalWindow.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.ExternalWindow.cs @@ -24,15 +24,8 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(ExternalWindowDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(ExternalWindowDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!data.Tiles.TryGetValue(DungeonDataKey.FallbackTile, out var tileProto) || - !data.SpawnGroups.TryGetValue(DungeonDataKey.Window, out var windowGroup)) - { - _sawmill.Error($"Unable to get dungeon data for {nameof(gen)}"); - return; - } - // Iterate every tile with N chance to spawn windows on that wall per cardinal dir. var chance = 0.25 / 3f; @@ -42,7 +35,7 @@ public sealed partial class DungeonJob random.Shuffle(validTiles); var tiles = new List<(Vector2i, Tile)>(); - var tileDef = _tileDefManager[tileProto]; + var tileDef = _tileDefManager[gen.Tile]; var count = Math.Floor(validTiles.Count * chance); var index = 0; var takenTiles = new HashSet(); @@ -56,7 +49,7 @@ public sealed partial class DungeonJob break; // Room tile / already used. - if (!_anchorable.TileFree(_grid, tile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask) || + if (!_anchorable.TileFree((_gridUid, _grid), tile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask) || takenTiles.Contains(tile)) { continue; @@ -76,7 +69,7 @@ public sealed partial class DungeonJob if (!allExterior.Contains(neighbor) || takenTiles.Contains(neighbor) || - !_anchorable.TileFree(_grid, neighbor, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + !_anchorable.TileFree((_gridUid, _grid), neighbor, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) { isValid = false; break; @@ -91,7 +84,7 @@ public sealed partial class DungeonJob if (allExterior.Contains(perpTile) || takenTiles.Contains(neighbor) || - !_anchorable.TileFree(_grid, perpTile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + !_anchorable.TileFree((_gridUid, _grid), perpTile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) { isValid = false; break; @@ -120,15 +113,13 @@ public sealed partial class DungeonJob } _maps.SetTiles(_gridUid, _grid, tiles); - index = 0; - var spawnEntry = _prototype.Index(windowGroup); + var contents = _prototype.Index(gen.Contents); foreach (var tile in tiles) { var gridPos = _maps.GridTileToLocal(_gridUid, _grid, tile.Item1); - index += spawnEntry.Entries.Count; - _entManager.SpawnEntities(gridPos, EntitySpawnCollection.GetSpawns(spawnEntry.Entries, random)); + _entManager.SpawnEntitiesAttachedTo(gridPos, _entTable.GetSpawns(contents, random)); await SuspendDungeon(); if (!ValidateResume()) diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.Fill.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.Fill.cs new file mode 100644 index 0000000000..b579d4e5a1 --- /dev/null +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.Fill.cs @@ -0,0 +1,39 @@ +using System.Threading.Tasks; +using Content.Shared.Procedural; +using Content.Shared.Procedural.DungeonLayers; + +namespace Content.Server.Procedural.DungeonJob; + +public sealed partial class DungeonJob +{ + /// + /// + /// + private async Task GenerateFillDunGen(FillGridDunGen fill, List dungeons, HashSet reservedTiles) + { + foreach (var dungeon in dungeons) + { + foreach (var tile in dungeon.AllTiles) + { + if (reservedTiles.Contains(tile)) + continue; + + if (!_maps.TryGetTileDef(_grid, tile, out var tileDef)) + continue; + + if (fill.AllowedTiles != null && !fill.AllowedTiles.Contains(tileDef.ID)) + continue; + + if (!_anchorable.TileFree((_gridUid, _grid), tile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + continue; + + var gridPos = _maps.GridTileToLocal(_gridUid, _grid, tile); + _entManager.SpawnEntity(fill.Entity, gridPos); + + await SuspendDungeon(); + if (!ValidateResume()) + break; + } + } + } +} diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGen.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.Helpers.cs similarity index 98% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGen.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.Helpers.cs index 84e7563f33..c57757b421 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGen.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.Helpers.cs @@ -10,9 +10,7 @@ namespace Content.Server.Procedural.DungeonJob; public sealed partial class DungeonJob { - /* - * Run after the main dungeon generation - */ + // Various helper methods. private static readonly ProtoId WallTag = "Wall"; diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenInternalWindow.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.InternalWindow.cs similarity index 81% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenInternalWindow.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.InternalWindow.cs index d3b8c6d2f5..f80b3face7 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenInternalWindow.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.InternalWindow.cs @@ -12,21 +12,14 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(InternalWindowDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(InternalWindowDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!data.Tiles.TryGetValue(DungeonDataKey.FallbackTile, out var tileProto) || - !data.SpawnGroups.TryGetValue(DungeonDataKey.Window, out var windowGroup)) - { - _sawmill.Error($"Unable to find dungeon data keys for {nameof(gen)}"); - return; - } - // Iterate every room and check if there's a gap beyond it that leads to another room within N tiles // If so then consider windows var minDistance = 4; var maxDistance = 6; - var tileDef = _tileDefManager[tileProto]; - var window = _prototype.Index(windowGroup); + var tileDef = _tileDefManager[gen.Tile]; + var contents = _prototype.Index(gen.Contents); foreach (var room in dungeon.Rooms) { @@ -76,7 +69,7 @@ public sealed partial class DungeonJob if (reservedTiles.Contains(windowTile)) continue; - if (!_anchorable.TileFree(_grid, windowTile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + if (!_anchorable.TileFree((_gridUid, _grid), windowTile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) continue; validTiles.Add(windowTile); @@ -90,7 +83,7 @@ public sealed partial class DungeonJob var gridPos = _maps.GridTileToLocal(_gridUid, _grid, tile); _maps.SetTile(_gridUid, _grid, tile, _tile.GetVariantTile((ContentTileDefinition) tileDef, random)); - _entManager.SpawnEntities(gridPos, EntitySpawnCollection.GetSpawns(window.Entries, random)); + _entManager.SpawnEntitiesAttachedTo(gridPos, _entTable.GetSpawns(contents, random)); } if (validTiles.Count > 0) diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenJunction.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.Junction.cs similarity index 77% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenJunction.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.Junction.cs index 700406eb89..28cbc9b208 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenJunction.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.Junction.cs @@ -12,22 +12,15 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(JunctionDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(JunctionDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!data.Tiles.TryGetValue(DungeonDataKey.FallbackTile, out var tileProto) || - !data.SpawnGroups.TryGetValue(DungeonDataKey.Junction, out var junctionProto)) - { - _sawmill.Error($"Dungeon data keys are missing for {nameof(gen)}"); - return; - } - - var tileDef = _tileDefManager[tileProto]; - var entranceGroup = _prototype.Index(junctionProto); + var tileDef = _tileDefManager[gen.Tile]; + var contents = _prototype.Index(gen.Contents); // N-wide junctions foreach (var tile in dungeon.CorridorTiles) { - if (!_anchorable.TileFree(_grid, tile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + if (!_anchorable.TileFree((_gridUid, _grid), tile, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) continue; // Check each direction: @@ -64,7 +57,7 @@ public sealed partial class DungeonJob } // If we're not at the end tile then check it + perpendicular are free. - if (!_anchorable.TileFree(_grid, neighbor, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + if (!_anchorable.TileFree((_gridUid, _grid), neighbor, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) { isValid = false; break; @@ -73,13 +66,13 @@ public sealed partial class DungeonJob var perp1 = tile + neighborVec * j + ((Direction) ((i * 2 + 2) % 8)).ToIntVec(); var perp2 = tile + neighborVec * j + ((Direction) ((i * 2 + 6) % 8)).ToIntVec(); - if (!_anchorable.TileFree(_grid, perp1, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + if (!_anchorable.TileFree((_gridUid, _grid), perp1, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) { isValid = false; break; } - if (!_anchorable.TileFree(_grid, perp2, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + if (!_anchorable.TileFree((_gridUid, _grid), perp2, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) { isValid = false; break; @@ -101,7 +94,7 @@ public sealed partial class DungeonJob var cornerVec = cornerDir.ToIntVec(); var cornerNeighbor = tile + neighborVec * j + cornerVec; - if (_anchorable.TileFree(_grid, cornerNeighbor, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + if (_anchorable.TileFree((_gridUid, _grid), cornerNeighbor, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) { freeCount++; } @@ -123,7 +116,7 @@ public sealed partial class DungeonJob _maps.SetTile(_gridUid, _grid, weh, _tile.GetVariantTile((ContentTileDefinition) tileDef, random)); var coords = _maps.GridTileToLocal(_gridUid, _grid, weh); - _entManager.SpawnEntities(coords, EntitySpawnCollection.GetSpawns(entranceGroup.Entries, random)); + _entManager.SpawnEntitiesAttachedTo(coords, _entTable.GetSpawns(contents, random)); } break; diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenMiddleConnection.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.MiddleConnection.cs similarity index 76% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenMiddleConnection.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.MiddleConnection.cs index 15d0f63423..d6e3c09d62 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenMiddleConnection.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.MiddleConnection.cs @@ -13,19 +13,8 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(MiddleConnectionDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(MiddleConnectionDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!data.Tiles.TryGetValue(DungeonDataKey.FallbackTile, out var tileProto) || - !data.SpawnGroups.TryGetValue(DungeonDataKey.Entrance, out var entranceProto) || - !_prototype.TryIndex(entranceProto, out var entrance)) - { - _sawmill.Error($"Tried to run {nameof(MiddleConnectionDunGen)} without any dungeon data set which is unsupported"); - return; - } - - data.SpawnGroups.TryGetValue(DungeonDataKey.EntranceFlank, out var flankProto); - _prototype.TryIndex(flankProto, out var flank); - // Grab all of the room bounds // Then, work out connections between them var roomBorders = new Dictionary>(dungeon.Rooms.Count); @@ -52,7 +41,7 @@ public sealed partial class DungeonJob if (dungeon.RoomTiles.Contains(neighbor)) continue; - if (!_anchorable.TileFree(_grid, neighbor, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + if (!_anchorable.TileFree((_gridUid, _grid), neighbor, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) continue; roomEdges.Add(neighbor); @@ -67,7 +56,9 @@ public sealed partial class DungeonJob // TODO: Optional loops var roomConnections = new Dictionary>(); - var tileDef = _tileDefManager[tileProto]; + var tileDef = _tileDefManager[gen.Tile]; + _prototype.TryIndex(gen.Flank, out var flankContents); + var contents = _prototype.Index(gen.Contents); foreach (var (room, border) in roomBorders) { @@ -112,22 +103,22 @@ public sealed partial class DungeonJob { var node = nodeDistances[i].Node; var gridPos = _maps.GridTileToLocal(_gridUid, _grid, node); - if (!_anchorable.TileFree(_grid, node, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + if (!_anchorable.TileFree((_gridUid, _grid), node, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) continue; width--; _maps.SetTile(_gridUid, _grid, node, _tile.GetVariantTile((ContentTileDefinition) tileDef, random)); - if (flank != null && nodeDistances.Count - i <= 2) + if (flankContents != null && nodeDistances.Count - i <= 2) { - _entManager.SpawnEntities(gridPos, EntitySpawnCollection.GetSpawns(flank.Entries, random)); + _entManager.SpawnEntitiesAttachedTo(gridPos, _entTable.GetSpawns(flankContents, random)); } else { // Iterate neighbors and check for blockers, if so bulldoze ClearDoor(dungeon, _grid, node); - _entManager.SpawnEntities(gridPos, EntitySpawnCollection.GetSpawns(entrance.Entries, random)); + _entManager.SpawnEntitiesAttachedTo(gridPos, _entTable.GetSpawns(contents, random)); } if (width == 0) diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.MobDunGen.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.Mobs.cs similarity index 85% rename from Content.Server/Procedural/DungeonJob/DungeonJob.MobDunGen.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.Mobs.cs index 150849d2c5..caf6828e43 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.MobDunGen.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.Mobs.cs @@ -13,6 +13,9 @@ namespace Content.Server.Procedural.DungeonJob; public sealed partial class DungeonJob { + /// + /// + /// private async Task PostGen( MobsDunGen gen, Dungeon dungeon, @@ -21,8 +24,8 @@ public sealed partial class DungeonJob var availableRooms = new ValueList(); availableRooms.AddRange(dungeon.Rooms); var availableTiles = new ValueList(dungeon.AllTiles); + var contents = _prototype.Index(gen.Contents); - var entities = EntitySpawnCollection.GetSpawns(gen.Groups, random); var count = random.Next(gen.MinCount, gen.MaxCount + 1); var npcs = _entManager.System(); @@ -32,12 +35,14 @@ public sealed partial class DungeonJob { var tile = availableTiles.RemoveSwap(random.Next(availableTiles.Count)); - if (!_anchorable.TileFree(_grid, tile, (int) CollisionGroup.MachineLayer, + if (!_anchorable.TileFree((_gridUid, _grid), tile, (int) CollisionGroup.MachineLayer, (int) CollisionGroup.MachineLayer)) { continue; } + var entities = _entTable.GetSpawns(contents, random); + foreach (var ent in entities) { var uid = _entManager.SpawnAtPosition(ent, _maps.GridTileToLocal(_gridUid, _grid, tile)); diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.DunGenNoise.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.Noise.cs similarity index 100% rename from Content.Server/Procedural/DungeonJob/DungeonJob.DunGenNoise.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.Noise.cs diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.Ore.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.Ore.cs new file mode 100644 index 0000000000..78ab2b7a0d --- /dev/null +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.Ore.cs @@ -0,0 +1,151 @@ +using System.Threading.Tasks; +using Content.Shared.Procedural; +using Content.Shared.Procedural.Components; +using Content.Shared.Procedural.DungeonLayers; +using Robust.Shared.Collections; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Server.Procedural.DungeonJob; + +public sealed partial class DungeonJob +{ + /// + /// + /// + private async Task PostGen( + OreDunGen gen, + List dungeons, + HashSet reservedTiles, + Random random) + { + foreach (var dungeon in dungeons) + { + var emptyTiles = false; + var replaceEntities = new Dictionary(); + var availableTiles = new List(); + + foreach (var node in dungeon.AllTiles) + { + if (reservedTiles.Contains(node)) + continue; + + // Empty tile, skip if relevant. + if (!emptyTiles && (!_maps.TryGetTile(_grid, node, out var tile) || tile.IsEmpty)) + continue; + + // Check if it's a valid spawn, if so then use it. + var enumerator = _maps.GetAnchoredEntitiesEnumerator(_gridUid, _grid, node); + var found = false; + + // We use existing entities as a mark to spawn in place + // OR + // We check for any existing entities to see if we can spawn there. + while (enumerator.MoveNext(out var uid)) + { + // We can't replace so just stop here. + if (gen.Replacement == null) + break; + + var prototype = _entManager.GetComponent(uid.Value).EntityPrototype; + + if (prototype?.ID == gen.Replacement) + { + replaceEntities[node] = uid.Value; + found = true; + break; + } + } + + if (!found) + continue; + + // Add it to valid nodes. + availableTiles.Add(node); + + await SuspendDungeon(); + + if (!ValidateResume()) + return; + } + + var remapping = new Dictionary(); + + // TODO: Move this to engine + if (_prototype.TryIndex(gen.Entity, out var proto) && + proto.Components.TryGetComponent("EntityRemap", out var comps)) + { + var remappingComp = (EntityRemapComponent) comps; + remapping = remappingComp.Mask; + } + + var frontier = new ValueList(32); + + // Iterate the group counts and pathfind out each group. + for (var i = 0; i < gen.Count; i++) + { + await SuspendDungeon(); + + if (!ValidateResume()) + return; + + var groupSize = random.Next(gen.MinGroupSize, gen.MaxGroupSize + 1); + + // While we have remaining tiles keep iterating + while (groupSize > 0 && availableTiles.Count > 0) + { + var startNode = random.PickAndTake(availableTiles); + frontier.Clear(); + frontier.Add(startNode); + + // This essentially may lead to a vein being split in multiple areas but the count matters more than position. + while (frontier.Count > 0 && groupSize > 0) + { + // Need to pick a random index so we don't just get straight lines of ores. + var frontierIndex = random.Next(frontier.Count); + var node = frontier[frontierIndex]; + frontier.RemoveSwap(frontierIndex); + availableTiles.Remove(node); + + // Add neighbors if they're valid, worst case we add no more and pick another random seed tile. + for (var x = -1; x <= 1; x++) + { + for (var y = -1; y <= 1; y++) + { + var neighbor = new Vector2i(node.X + x, node.Y + y); + + if (frontier.Contains(neighbor) || !availableTiles.Contains(neighbor)) + continue; + + frontier.Add(neighbor); + } + } + + var prototype = gen.Entity; + + if (replaceEntities.TryGetValue(node, out var existingEnt)) + { + var existingProto = _entManager.GetComponent(existingEnt).EntityPrototype; + _entManager.DeleteEntity(existingEnt); + + if (existingProto != null && remapping.TryGetValue(existingProto.ID, out var remapped)) + { + prototype = remapped; + } + } + + // Tile valid salad so add it. + _entManager.SpawnAtPosition(prototype, _maps.GridTileToLocal(_gridUid, _grid, node)); + + groupSize--; + } + } + + if (groupSize > 0) + { + _sawmill.Warning($"Found remaining group size for ore veins of {gen.Replacement ?? "null"}!"); + } + } + } + } +} diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.OreDunGen.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.OreDunGen.cs deleted file mode 100644 index 679eecb4f7..0000000000 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.OreDunGen.cs +++ /dev/null @@ -1,146 +0,0 @@ -using System.Threading.Tasks; -using Content.Shared.Procedural; -using Content.Shared.Procedural.Components; -using Content.Shared.Procedural.DungeonLayers; -using Robust.Shared.Collections; -using Robust.Shared.Prototypes; -using Robust.Shared.Random; - -namespace Content.Server.Procedural.DungeonJob; - -public sealed partial class DungeonJob -{ - /// - /// - /// - private async Task PostGen( - OreDunGen gen, - Dungeon dungeon, - Random random) - { - // Doesn't use dungeon data because layers and we don't need top-down support at the moment. - - var emptyTiles = false; - var replaceEntities = new Dictionary(); - var availableTiles = new List(); - - foreach (var node in dungeon.AllTiles) - { - // Empty tile, skip if relevant. - if (!emptyTiles && (!_maps.TryGetTile(_grid, node, out var tile) || tile.IsEmpty)) - continue; - - // Check if it's a valid spawn, if so then use it. - var enumerator = _maps.GetAnchoredEntitiesEnumerator(_gridUid, _grid, node); - var found = false; - - // We use existing entities as a mark to spawn in place - // OR - // We check for any existing entities to see if we can spawn there. - while (enumerator.MoveNext(out var uid)) - { - // We can't replace so just stop here. - if (gen.Replacement == null) - break; - - var prototype = _entManager.GetComponent(uid.Value).EntityPrototype; - - if (prototype?.ID == gen.Replacement) - { - replaceEntities[node] = uid.Value; - found = true; - break; - } - } - - if (!found) - continue; - - // Add it to valid nodes. - availableTiles.Add(node); - - await SuspendDungeon(); - - if (!ValidateResume()) - return; - } - - var remapping = new Dictionary(); - - // TODO: Move this to engine - if (_prototype.TryIndex(gen.Entity, out var proto) && - proto.Components.TryGetComponent("EntityRemap", out var comps)) - { - var remappingComp = (EntityRemapComponent) comps; - remapping = remappingComp.Mask; - } - - var frontier = new ValueList(32); - - // Iterate the group counts and pathfind out each group. - for (var i = 0; i < gen.Count; i++) - { - await SuspendDungeon(); - - if (!ValidateResume()) - return; - - var groupSize = random.Next(gen.MinGroupSize, gen.MaxGroupSize + 1); - - // While we have remaining tiles keep iterating - while (groupSize > 0 && availableTiles.Count > 0) - { - var startNode = random.PickAndTake(availableTiles); - frontier.Clear(); - frontier.Add(startNode); - - // This essentially may lead to a vein being split in multiple areas but the count matters more than position. - while (frontier.Count > 0 && groupSize > 0) - { - // Need to pick a random index so we don't just get straight lines of ores. - var frontierIndex = random.Next(frontier.Count); - var node = frontier[frontierIndex]; - frontier.RemoveSwap(frontierIndex); - availableTiles.Remove(node); - - // Add neighbors if they're valid, worst case we add no more and pick another random seed tile. - for (var x = -1; x <= 1; x++) - { - for (var y = -1; y <= 1; y++) - { - var neighbor = new Vector2i(node.X + x, node.Y + y); - - if (frontier.Contains(neighbor) || !availableTiles.Contains(neighbor)) - continue; - - frontier.Add(neighbor); - } - } - - var prototype = gen.Entity; - - if (replaceEntities.TryGetValue(node, out var existingEnt)) - { - var existingProto = _entManager.GetComponent(existingEnt).EntityPrototype; - _entManager.DeleteEntity(existingEnt); - - if (existingProto != null && remapping.TryGetValue(existingProto.ID, out var remapped)) - { - prototype = remapped; - } - } - - // Tile valid salad so add it. - _entManager.SpawnAtPosition(prototype, _maps.GridTileToLocal(_gridUid, _grid, node)); - - groupSize--; - } - } - - if (groupSize > 0) - { - _sawmill.Warning($"Found remaining group size for ore veins of {gen.Replacement ?? "null"}!"); - } - } - } -} diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenDungeonConnector.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenDungeonConnector.cs deleted file mode 100644 index 917b1ffc9c..0000000000 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenDungeonConnector.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace Content.Server.Procedural.DungeonJob; - -public sealed partial class DungeonJob -{ - -} diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWallMount.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWallMount.cs deleted file mode 100644 index d5c8587ea9..0000000000 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWallMount.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System.Threading.Tasks; -using Content.Shared.Procedural; -using Content.Shared.Procedural.PostGeneration; -using Content.Shared.Storage; -using Robust.Shared.Random; - -namespace Content.Server.Procedural.DungeonJob; - -public sealed partial class DungeonJob -{ - /// - /// - /// - private async Task PostGen(WallMountDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) - { - if (!data.Tiles.TryGetValue(DungeonDataKey.FallbackTile, out var tileProto)) - { - _sawmill.Error($"Tried to run {nameof(WallMountDunGen)} without any dungeon data set which is unsupported"); - return; - } - - var tileDef = _prototype.Index(tileProto); - if (!data.SpawnGroups.TryGetValue(DungeonDataKey.WallMounts, out var spawnProto)) - { - // caves can have no walls - return; - } - - var checkedTiles = new HashSet(); - var allExterior = new HashSet(dungeon.CorridorExteriorTiles); - allExterior.UnionWith(dungeon.RoomExteriorTiles); - var count = 0; - - foreach (var neighbor in allExterior) - { - // Occupado - if (dungeon.RoomTiles.Contains(neighbor) || checkedTiles.Contains(neighbor) || !_anchorable.TileFree(_grid, neighbor, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) - continue; - - if (!random.Prob(gen.Prob) || !checkedTiles.Add(neighbor)) - continue; - - _maps.SetTile(_gridUid, _grid, neighbor, _tile.GetVariantTile(tileDef, random)); - var gridPos = _maps.GridTileToLocal(_gridUid, _grid, neighbor); - var protoNames = EntitySpawnCollection.GetSpawns(_prototype.Index(spawnProto).Entries, random); - - _entManager.SpawnEntities(gridPos, protoNames); - count += protoNames.Count; - - if (count > 20) - { - count -= 20; - await SuspendDungeon(); - - if (!ValidateResume()) - return; - } - } - } -} diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenRoomEntrance.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.RoomEntrance.cs similarity index 59% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenRoomEntrance.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.RoomEntrance.cs index 09d223e86c..a4a01b5f0b 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenRoomEntrance.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.RoomEntrance.cs @@ -12,23 +12,19 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(RoomEntranceDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(RoomEntranceDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!data.Tiles.TryGetValue(DungeonDataKey.FallbackTile, out var tileProto) || - !data.SpawnGroups.TryGetValue(DungeonDataKey.Entrance, out var entranceProtos) || - !_prototype.TryIndex(entranceProtos, out var entranceIn)) - { - LogDataError(typeof(RoomEntranceDunGen)); - return; - } - var setTiles = new List<(Vector2i, Tile)>(); - var tileDef = _tileDefManager[tileProto]; + var tileDef = _tileDefManager[gen.Tile]; + var contents = _prototype.Index(gen.Contents); foreach (var room in dungeon.Rooms) { foreach (var entrance in room.Entrances) { + if (reservedTiles.Contains(entrance)) + continue; + setTiles.Add((entrance, _tile.GetVariantTile((ContentTileDefinition) tileDef, random))); } } @@ -39,9 +35,17 @@ public sealed partial class DungeonJob { foreach (var entrance in room.Entrances) { - _entManager.SpawnEntities( + if (reservedTiles.Contains(entrance)) + continue; + + _entManager.SpawnEntitiesAttachedTo( _maps.GridTileToLocal(_gridUid, _grid, entrance), - EntitySpawnCollection.GetSpawns(entranceIn.Entries, random)); + _entTable.GetSpawns(contents, random)); + + await SuspendDungeon(); + + if (!ValidateResume()) + return; } } } diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenSplineDungeonConnector.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.SplineDungeonConnector.cs similarity index 85% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenSplineDungeonConnector.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.SplineDungeonConnector.cs index 8fe2f36665..a131efd353 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenSplineDungeonConnector.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.SplineDungeonConnector.cs @@ -15,25 +15,14 @@ public sealed partial class DungeonJob /// private async Task PostGen( SplineDungeonConnectorDunGen gen, - DungeonData data, List dungeons, HashSet reservedTiles, Random random) { - // TODO: The path itself use the tile - // Widen it randomly (probably for each tile offset it by some changing amount). - // NOOP if (dungeons.Count <= 1) return Dungeon.Empty; - if (!data.Tiles.TryGetValue(DungeonDataKey.FallbackTile, out var fallback) || - !data.Tiles.TryGetValue(DungeonDataKey.WidenTile, out var widen)) - { - LogDataError(typeof(SplineDungeonConnectorDunGen)); - return Dungeon.Empty; - } - var nodes = new List(); foreach (var dungeon in dungeons) @@ -57,7 +46,8 @@ public sealed partial class DungeonJob var tiles = new List<(Vector2i Index, Tile Tile)>(); var pathfinding = _entManager.System(); var allTiles = new HashSet(); - var fallbackTile = new Tile(_prototype.Index(fallback).TileId); + var pathTile = new Tile(_prototype.Index(gen.Tile).TileId); + var widen = _prototype.Index(gen.WidenTile ?? gen.Tile); foreach (var pair in tree) { @@ -112,7 +102,7 @@ public sealed partial class DungeonJob if (random.Prob(0.9f)) { - tile = new Tile(_prototype.Index(widen).TileId); + tile = new Tile(widen.TileId); } else { @@ -132,7 +122,7 @@ public sealed partial class DungeonJob continue; allTiles.Add(node); - tiles.Add((node, fallbackTile)); + tiles.Add((node, pathTile)); } _maps.SetTiles(_gridUid, _grid, tiles); diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.WallMount.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.WallMount.cs new file mode 100644 index 0000000000..e5bb32bd0c --- /dev/null +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.WallMount.cs @@ -0,0 +1,46 @@ +using System.Threading.Tasks; +using Content.Shared.Maps; +using Content.Shared.Procedural; +using Content.Shared.Procedural.PostGeneration; +using Content.Shared.Storage; +using Robust.Shared.Random; + +namespace Content.Server.Procedural.DungeonJob; + +public sealed partial class DungeonJob +{ + /// + /// + /// + private async Task PostGen(WallMountDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) + { + var checkedTiles = new HashSet(); + var allExterior = new HashSet(dungeon.CorridorExteriorTiles); + allExterior.UnionWith(dungeon.RoomExteriorTiles); + var tileDef = (ContentTileDefinition) _tileDefManager[gen.Tile]; + var contents = _prototype.Index(gen.Contents); + + foreach (var neighbor in allExterior) + { + // Occupado + if (dungeon.RoomTiles.Contains(neighbor) || checkedTiles.Contains(neighbor) || !_anchorable.TileFree((_gridUid, _grid), neighbor, DungeonSystem.CollisionLayer, DungeonSystem.CollisionMask)) + continue; + + if (!random.Prob(gen.Prob) || !checkedTiles.Add(neighbor)) + continue; + + if (reservedTiles.Contains(neighbor)) + continue; + + _maps.SetTile(_gridUid, _grid, neighbor, _tile.GetVariantTile(tileDef, random)); + var gridPos = _maps.GridTileToLocal(_gridUid, _grid, neighbor); + var protoNames = _entTable.GetSpawns(contents, random); + + _entManager.SpawnEntitiesAttachedTo(gridPos, protoNames); + + await SuspendDungeon(); + if (!ValidateResume()) + return; + } + } +} diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWorm.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.Worm.cs similarity index 93% rename from Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWorm.cs rename to Content.Server/Procedural/DungeonJob/DungeonJob.Worm.cs index 6fd00e5482..7367b9147a 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWorm.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.Worm.cs @@ -1,5 +1,6 @@ using System.Linq; using System.Threading.Tasks; +using Content.Shared.Maps; using Content.Shared.Procedural; using Content.Shared.Procedural.PostGeneration; using Robust.Shared.Collections; @@ -14,19 +15,14 @@ public sealed partial class DungeonJob /// /// /// - private async Task PostGen(WormCorridorDunGen gen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) + private async Task PostGen(WormCorridorDunGen gen, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!data.Tiles.TryGetValue(DungeonDataKey.FallbackTile, out var tileProto) || !_prototype.TryIndex(tileProto, out var tileDef)) - { - _sawmill.Error($"Tried to run {nameof(WormCorridorDunGen)} without any dungeon data set which is unsupported"); - return; - } - var networks = new List<(Vector2i Start, HashSet Network)>(); // List of places to start from. var worm = new ValueList(); var startAngles = new Dictionary(); + var tileDef = (ContentTileDefinition) _tileDefManager[gen.Tile]; foreach (var room in dungeon.Rooms) { diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.cs index cdb5eb0805..f2bd5a4394 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.cs @@ -1,3 +1,4 @@ +using System.Linq; using System.Threading; using System.Threading.Tasks; using Content.Server.Decals; @@ -6,6 +7,7 @@ using Content.Server.NPC.HTN; using Content.Server.NPC.Systems; using Content.Server.Shuttles.Systems; using Content.Shared.Construction.EntitySystems; +using Content.Shared.EntityTable; using Content.Shared.Maps; using Content.Shared.Procedural; using Content.Shared.Procedural.DungeonGenerators; @@ -37,6 +39,7 @@ public sealed partial class DungeonJob : Job> private readonly DecalSystem _decals; private readonly DungeonSystem _dungeon; private readonly EntityLookupSystem _lookup; + private readonly EntityTableSystem _entTable; private readonly TagSystem _tags; private readonly TileSystem _tile; private readonly SharedMapSystem _maps; @@ -88,6 +91,7 @@ public sealed partial class DungeonJob : Job> _tile = tile; _tags = _entManager.System(); _maps = _entManager.System(); + _entTable = _entManager.System(); _transform = transform; _physicsQuery = _entManager.GetEntityQuery(); @@ -108,13 +112,20 @@ public sealed partial class DungeonJob : Job> private async Task> GetDungeons( Vector2i position, DungeonConfig config, - DungeonData data, List layers, HashSet reservedTiles, int seed, - Random random) + Random random, + List? existing = null) { var dungeons = new List(); + + // Don't pass dungeons back up the "stack". They are ref types though it's a caller problem if they start trying to mutate it. + if (existing != null) + { + dungeons.AddRange(existing); + } + var count = random.Next(config.MinCount, config.MaxCount + 1); for (var i = 0; i < count; i++) @@ -123,12 +134,15 @@ public sealed partial class DungeonJob : Job> foreach (var layer in layers) { - await RunLayer(dungeons, data, position, layer, reservedTiles, seed, random); + var dungCount = dungeons.Count; + await RunLayer(dungeons, position, layer, reservedTiles, seed, random); if (config.ReserveTiles) { - foreach (var dungeon in dungeons) + // Reserve tiles on any new dungeons. + for (var d = dungCount; d < dungeons.Count; d++) { + var dungeon = dungeons[d]; reservedTiles.UnionWith(dungeon.AllTiles); } } @@ -152,7 +166,7 @@ public sealed partial class DungeonJob : Job> // Tiles we can no longer generate on due to being reserved elsewhere. var reservedTiles = new HashSet(); - var dungeons = await GetDungeons(position, _gen, _gen.Data, _gen.Layers, reservedTiles, _seed, random); + var dungeons = await GetDungeons(position, _gen, _gen.Layers, reservedTiles, _seed, random); // To make it slightly more deterministic treat this RNG as separate ig. // Post-processing after finishing loading. @@ -176,12 +190,12 @@ public sealed partial class DungeonJob : Job> npcSystem.WakeNPC(npc.Owner, npc.Comp); } + _sawmill.Info($"Finished generating dungeon {_gen} with seed {_seed}"); return dungeons; } private async Task RunLayer( List dungeons, - DungeonData data, Vector2i position, IDunGenLayer layer, HashSet reservedTiles, @@ -200,58 +214,58 @@ public sealed partial class DungeonJob : Job> switch (layer) { case AutoCablingDunGen cabling: - await PostGen(cabling, data, dungeons[^1], reservedTiles, random); + await PostGen(cabling, dungeons[^1], reservedTiles, random); break; case BiomeMarkerLayerDunGen markerPost: - await PostGen(markerPost, data, dungeons[^1], reservedTiles, random); + await PostGen(markerPost, dungeons[^1], reservedTiles, random); break; case BiomeDunGen biome: - await PostGen(biome, data, dungeons[^1], reservedTiles, random); + await PostGen(biome, dungeons[^1], reservedTiles, random); break; case BoundaryWallDunGen boundary: - await PostGen(boundary, data, dungeons[^1], reservedTiles, random); + await PostGen(boundary, dungeons[^1], reservedTiles, random); break; case CornerClutterDunGen clutter: - await PostGen(clutter, data, dungeons[^1], reservedTiles, random); + await PostGen(clutter, dungeons[^1], reservedTiles, random); break; case CorridorClutterDunGen corClutter: - await PostGen(corClutter, data, dungeons[^1], reservedTiles, random); + await PostGen(corClutter, dungeons[^1], reservedTiles, random); break; case CorridorDunGen cordor: - await PostGen(cordor, data, dungeons[^1], reservedTiles, random); + await PostGen(cordor, dungeons[^1], reservedTiles, random); break; case CorridorDecalSkirtingDunGen decks: - await PostGen(decks, data, dungeons[^1], reservedTiles, random); + await PostGen(decks, dungeons[^1], reservedTiles, random); break; case EntranceFlankDunGen flank: - await PostGen(flank, data, dungeons[^1], reservedTiles, random); + await PostGen(flank, dungeons[^1], reservedTiles, random); break; case ExteriorDunGen exterior: dungeons.AddRange(await GenerateExteriorDungen(position, exterior, reservedTiles, random)); break; case FillGridDunGen fill: - dungeons.Add(await GenerateFillDunGen(fill, data, reservedTiles)); + await GenerateFillDunGen(fill, dungeons, reservedTiles); break; case JunctionDunGen junc: - await PostGen(junc, data, dungeons[^1], reservedTiles, random); + await PostGen(junc, dungeons[^1], reservedTiles, random); break; case MiddleConnectionDunGen dordor: - await PostGen(dordor, data, dungeons[^1], reservedTiles, random); + await PostGen(dordor, dungeons[^1], reservedTiles, random); break; case DungeonEntranceDunGen entrance: - await PostGen(entrance, data, dungeons[^1], reservedTiles, random); + await PostGen(entrance, dungeons[^1], reservedTiles, random); break; case ExternalWindowDunGen externalWindow: - await PostGen(externalWindow, data, dungeons[^1], reservedTiles, random); + await PostGen(externalWindow, dungeons[^1], reservedTiles, random); break; case InternalWindowDunGen internalWindow: - await PostGen(internalWindow, data, dungeons[^1], reservedTiles, random); + await PostGen(internalWindow, dungeons[^1], reservedTiles, random); break; case MobsDunGen mob: await PostGen(mob, dungeons[^1], random); break; case EntityTableDunGen entityTable: - await PostGen(entityTable, dungeons[^1], random); + await PostGen(entityTable, dungeons, reservedTiles, random); break; case NoiseDistanceDunGen distance: dungeons.Add(await GenerateNoiseDistanceDunGen(position, distance, reservedTiles, seed, random)); @@ -260,34 +274,43 @@ public sealed partial class DungeonJob : Job> dungeons.Add(await GenerateNoiseDunGen(position, noise, reservedTiles, seed, random)); break; case OreDunGen ore: - await PostGen(ore, dungeons[^1], random); + await PostGen(ore, dungeons, reservedTiles, random); break; case PrefabDunGen prefab: - dungeons.Add(await GeneratePrefabDunGen(position, data, prefab, reservedTiles, random)); + dungeons.Add(await GeneratePrefabDunGen(position, prefab, reservedTiles, random)); break; case PrototypeDunGen prototypo: var groupConfig = _prototype.Index(prototypo.Proto); position = (position + random.NextPolarVector2(groupConfig.MinOffset, groupConfig.MaxOffset)).Floored(); - var dataCopy = groupConfig.Data.Clone(); - dataCopy.Apply(data); + switch (prototypo.InheritDungeons) + { + case DungeonInheritance.All: + dungeons.AddRange(await GetDungeons(position, groupConfig, groupConfig.Layers, reservedTiles, seed, random, existing: dungeons)); + break; + case DungeonInheritance.Last: + dungeons.AddRange(await GetDungeons(position, groupConfig, groupConfig.Layers, reservedTiles, seed, random, existing: dungeons.GetRange(dungeons.Count - 1, 1))); + break; + case DungeonInheritance.None: + dungeons.AddRange(await GetDungeons(position, groupConfig, groupConfig.Layers, reservedTiles, seed, random)); + break; + } - dungeons.AddRange(await GetDungeons(position, groupConfig, dataCopy, groupConfig.Layers, reservedTiles, seed, random)); break; case ReplaceTileDunGen replace: - dungeons.Add(await GenerateTileReplacementDunGen(replace, data, reservedTiles, random)); + await GenerateTileReplacementDunGen(replace, dungeons, reservedTiles, random); break; case RoomEntranceDunGen rEntrance: - await PostGen(rEntrance, data, dungeons[^1], reservedTiles, random); + await PostGen(rEntrance, dungeons[^1], reservedTiles, random); break; case SplineDungeonConnectorDunGen spline: - dungeons.Add(await PostGen(spline, data, dungeons, reservedTiles, random)); + dungeons.Add(await PostGen(spline, dungeons, reservedTiles, random)); break; case WallMountDunGen wall: - await PostGen(wall, data, dungeons[^1], reservedTiles, random); + await PostGen(wall, dungeons[^1], reservedTiles, random); break; case WormCorridorDunGen worm: - await PostGen(worm, data, dungeons[^1], reservedTiles, random); + await PostGen(worm, dungeons[^1], reservedTiles, random); break; default: throw new NotImplementedException(); diff --git a/Content.Server/Procedural/DungeonSystem.Rooms.cs b/Content.Server/Procedural/DungeonSystem.Rooms.cs index f74868bb52..e5b0981b3d 100644 --- a/Content.Server/Procedural/DungeonSystem.Rooms.cs +++ b/Content.Server/Procedural/DungeonSystem.Rooms.cs @@ -90,7 +90,7 @@ public sealed partial class DungeonSystem roomRotation = GetRoomRotation(room, random); } - var roomTransform = Matrix3Helpers.CreateTransform((Vector2) room.Size / 2f, roomRotation); + var roomTransform = Matrix3Helpers.CreateTransform((Vector2)room.Size / 2f, roomRotation); var finalTransform = Matrix3x2.Multiply(roomTransform, originTransform); SpawnRoom(gridUid, grid, finalTransform, room, reservedTiles, clearExisting); @@ -123,7 +123,7 @@ public sealed partial class DungeonSystem { // Ensure the underlying template exists. var roomMap = GetOrCreateTemplate(room); - var templateMapUid = _mapManager.GetMapEntityId(roomMap); + var templateMapUid = _maps.GetMapOrInvalid(roomMap); var templateGrid = Comp(templateMapUid); var roomDimensions = room.Size; @@ -250,7 +250,7 @@ public sealed partial class DungeonSystem // but place 1 nanometre off grid and fail the add. if (!_maps.TryGetTileRef(gridUid, grid, tilePos, out var tileRef) || tileRef.Tile.IsEmpty) { - _maps.SetTile(gridUid, grid, tilePos, _tile.GetVariantTile((ContentTileDefinition) _tileDefManager[FallbackTileId], _random.GetRandom())); + _maps.SetTile(gridUid, grid, tilePos, _tile.GetVariantTile((ContentTileDefinition)_tileDefManager[FallbackTileId], _random.GetRandom())); } var result = _decals.TryAddDecal( diff --git a/Content.Server/Research/Systems/ResearchSystem.Client.cs b/Content.Server/Research/Systems/ResearchSystem.Client.cs index f8fdba55b7..3f75982425 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Client.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Client.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using System.Linq; using Content.Server.Power.EntitySystems; using Content.Shared.Research.Components; @@ -12,6 +13,7 @@ public sealed partial class ResearchSystem SubscribeLocalEvent(OnClientShutdown); SubscribeLocalEvent(OnClientUIOpen); SubscribeLocalEvent(OnConsoleSelect); + SubscribeLocalEvent(OnClientAnchorStateChanged); SubscribeLocalEvent(OnClientSyncMessage); SubscribeLocalEvent(OnClientSelected); @@ -23,7 +25,11 @@ public sealed partial class ResearchSystem private void OnClientSelected(EntityUid uid, ResearchClientComponent component, ResearchClientServerSelectedMessage args) { - if (!TryGetServerById(args.ServerId, out var serveruid, out var serverComponent)) + if (!TryGetServerById(uid, args.ServerId, out var serveruid, out var serverComponent)) + return; + + // Validate that we can access this server. + if (!GetServers(uid).Contains((serveruid.Value, serverComponent))) return; UnregisterClient(uid, component); @@ -56,12 +62,7 @@ public sealed partial class ResearchSystem private void OnClientMapInit(EntityUid uid, ResearchClientComponent component, MapInitEvent args) { - var allServers = new List>(); - var query = AllEntityQuery(); - while (query.MoveNext(out var serverUid, out var serverComp)) - { - allServers.Add((serverUid, serverComp)); - } + var allServers = GetServers(uid).ToList(); if (allServers.Count > 0) RegisterClient(uid, allServers[0], component, allServers[0]); @@ -77,6 +78,24 @@ public sealed partial class ResearchSystem UpdateClientInterface(uid, component); } + private void OnClientAnchorStateChanged(Entity ent, ref AnchorStateChangedEvent args) + { + if (args.Anchored) + { + if (ent.Comp.Server is not null) + return; + + var allServers = GetServers(ent).ToList(); + + if (allServers.Count > 0) + RegisterClient(ent, allServers[0], ent, allServers[0]); + } + else + { + UnregisterClient(ent, ent.Comp); + } + } + private void UpdateClientInterface(EntityUid uid, ResearchClientComponent? component = null) { if (!Resolve(uid, ref component, false)) @@ -84,9 +103,12 @@ public sealed partial class ResearchSystem TryGetClientServer(uid, out _, out var serverComponent, component); - var names = GetServerNames(); - var state = new ResearchClientBoundInterfaceState(names.Length, names, - GetServerIds(), serverComponent?.Id ?? -1); + var names = GetServerNames(uid); + var state = new ResearchClientBoundInterfaceState( + names.Length, + names, + GetServerIds(uid), + serverComponent?.Id ?? -1); _uiSystem.SetUiState(uid, ResearchClientUiKey.Key, state); } diff --git a/Content.Server/Research/Systems/ResearchSystem.Server.cs b/Content.Server/Research/Systems/ResearchSystem.Server.cs index 09ca7ed15c..431cde5177 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Server.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Server.cs @@ -63,7 +63,7 @@ public sealed partial class ResearchSystem public void RegisterClient(EntityUid client, EntityUid server, ResearchClientComponent? clientComponent = null, ResearchServerComponent? serverComponent = null, bool dirtyServer = true) { - if (!Resolve(client, ref clientComponent) || !Resolve(server, ref serverComponent)) + if (!Resolve(client, ref clientComponent, false) || !Resolve(server, ref serverComponent, false)) return; if (serverComponent.Clients.Contains(client)) @@ -73,7 +73,7 @@ public sealed partial class ResearchSystem clientComponent.Server = server; SyncClientWithServer(client, clientComponent: clientComponent); - if (dirtyServer) + if (dirtyServer && !TerminatingOrDeleted(server)) Dirty(server, serverComponent); var ev = new ResearchRegistrationChangedEvent(server); @@ -108,14 +108,14 @@ public sealed partial class ResearchSystem public void UnregisterClient(EntityUid client, EntityUid server, ResearchClientComponent? clientComponent = null, ResearchServerComponent? serverComponent = null, bool dirtyServer = true) { - if (!Resolve(client, ref clientComponent) || !Resolve(server, ref serverComponent)) + if (!Resolve(client, ref clientComponent, false) || !Resolve(server, ref serverComponent, false)) return; serverComponent.Clients.Remove(client); clientComponent.Server = null; SyncClientWithServer(client, clientComponent: clientComponent); - if (dirtyServer) + if (dirtyServer && !TerminatingOrDeleted(server)) { Dirty(server, serverComponent); } diff --git a/Content.Server/Research/Systems/ResearchSystem.cs b/Content.Server/Research/Systems/ResearchSystem.cs index f8c4d6902a..5cad4d51ba 100644 --- a/Content.Server/Research/Systems/ResearchSystem.cs +++ b/Content.Server/Research/Systems/ResearchSystem.cs @@ -18,10 +18,13 @@ namespace Content.Server.Research.Systems [Dependency] private readonly IAdminLogManager _adminLog = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly AccessReaderSystem _accessReader = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly RadioSystem _radio = default!; + private static readonly HashSet> ClientLookup = new(); + public override void Initialize() { base.Initialize(); @@ -34,19 +37,20 @@ namespace Content.Server.Research.Systems } /// - /// Gets a server based on it's unique numeric id. + /// Gets a server based on its unique numeric id. /// + /// /// /// /// /// - public bool TryGetServerById(int id, [NotNullWhen(true)] out EntityUid? serverUid, [NotNullWhen(true)] out ResearchServerComponent? serverComponent) + public bool TryGetServerById(EntityUid client, int id, [NotNullWhen(true)] out EntityUid? serverUid, [NotNullWhen(true)] out ResearchServerComponent? serverComponent) { serverUid = null; serverComponent = null; - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var server)) + var query = GetServers(client).ToList(); + foreach (var (uid, server) in query) { if (server.Id != id) continue; @@ -61,14 +65,14 @@ namespace Content.Server.Research.Systems /// Gets the names of all the servers. /// /// - public string[] GetServerNames() + public string[] GetServerNames(EntityUid client) { - var allServers = EntityQuery(true).ToArray(); + var allServers = GetServers(client).ToArray(); var list = new string[allServers.Length]; for (var i = 0; i < allServers.Length; i++) { - list[i] = allServers[i].ServerName; + list[i] = allServers[i].Comp.ServerName; } return list; @@ -78,19 +82,31 @@ namespace Content.Server.Research.Systems /// Gets the ids of all the servers /// /// - public int[] GetServerIds() + public int[] GetServerIds(EntityUid client) { - var allServers = EntityQuery(true).ToArray(); + var allServers = GetServers(client).ToArray(); var list = new int[allServers.Length]; for (var i = 0; i < allServers.Length; i++) { - list[i] = allServers[i].Id; + list[i] = allServers[i].Comp.Id; } return list; } + public HashSet> GetServers(EntityUid client) + { + ClientLookup.Clear(); + + var clientXform = Transform(client); + if (clientXform.GridUid is not { } grid) + return ClientLookup; + + _lookup.GetGridEntities(grid, ClientLookup); + return ClientLookup; + } + public override void Update(float frameTime) { var query = EntityQueryEnumerator(); diff --git a/Content.Server/Roles/RemoveRoleCommand.cs b/Content.Server/Roles/RemoveRoleCommand.cs index fd4bb09317..c6e11cee22 100644 --- a/Content.Server/Roles/RemoveRoleCommand.cs +++ b/Content.Server/Roles/RemoveRoleCommand.cs @@ -45,7 +45,7 @@ namespace Content.Server.Roles var roles = _entityManager.System(); var jobs = _entityManager.System(); if (jobs.MindHasJobWithId(mind, args[1])) - roles.MindTryRemoveRole(mind.Value); + roles.MindRemoveRole(mind.Value); } } } diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs index 20ad4291f5..8c2f1c5852 100644 --- a/Content.Server/RoundEnd/RoundEndSystem.cs +++ b/Content.Server/RoundEnd/RoundEndSystem.cs @@ -250,9 +250,9 @@ namespace Content.Server.RoundEnd } _chatSystem.DispatchGlobalAnnouncement(Loc.GetString("round-end-system-shuttle-recalled-announcement"), - Loc.GetString("Station"), - false, - colorOverride: Color.Gold); + Loc.GetString("round-end-system-shuttle-sender-announcement"), false, colorOverride: Color.Gold); + + //_audio.PlayGlobal("/Audio/Announcements/shuttlerecalled.ogg", Filter.Broadcast(), true); LastCountdownStart = null; ExpectedCountdownEnd = null; diff --git a/Content.Server/Salvage/JobBoard/JobBoardCommands.cs b/Content.Server/Salvage/JobBoard/JobBoardCommands.cs new file mode 100644 index 0000000000..f05bf11931 --- /dev/null +++ b/Content.Server/Salvage/JobBoard/JobBoardCommands.cs @@ -0,0 +1,22 @@ +using Content.Server.Administration; +using Content.Shared.Administration; +using Content.Shared.Cargo.Prototypes; +using Robust.Shared.Prototypes; +using Robust.Shared.Toolshed; + +namespace Content.Server.Salvage.JobBoard; + +[ToolshedCommand, AdminCommand(AdminFlags.Debug)] +public sealed class JobBoardCommand : ToolshedCommand +{ + /// Completes a bounty automatically. + [CommandImplementation("completeJob")] + public void CompleteJob([PipedArgument] EntityUid station, ProtoId job) + { + if (!TryComp(station, out var salvageJobData)) + return; + + var sys = EntityManager.System(); + sys.TryCompleteSalvageJob((station, salvageJobData), job); + } +} diff --git a/Content.Server/Salvage/JobBoard/JobBoardLabelComponent.cs b/Content.Server/Salvage/JobBoard/JobBoardLabelComponent.cs new file mode 100644 index 0000000000..c588a0db2b --- /dev/null +++ b/Content.Server/Salvage/JobBoard/JobBoardLabelComponent.cs @@ -0,0 +1,17 @@ +using Content.Shared.Cargo.Prototypes; +using Robust.Shared.Prototypes; + +namespace Content.Server.Salvage.JobBoard; + +/// +/// Marks a label for a bounty for a given salvage job board prototype. +/// +[RegisterComponent] +public sealed partial class JobBoardLabelComponent : Component +{ + /// + /// The bounty corresponding to this label. + /// + [DataField] + public ProtoId? JobId; +} diff --git a/Content.Server/Salvage/JobBoard/SalvageJobBoardSystem.cs b/Content.Server/Salvage/JobBoard/SalvageJobBoardSystem.cs new file mode 100644 index 0000000000..993227e822 --- /dev/null +++ b/Content.Server/Salvage/JobBoard/SalvageJobBoardSystem.cs @@ -0,0 +1,294 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Server.Cargo.Components; +using Content.Server.Cargo.Systems; +using Content.Server.Radio.EntitySystems; +using Content.Server.Station.Systems; +using Content.Shared.Cargo.Components; +using Content.Shared.Cargo.Prototypes; +using Content.Shared.Labels.EntitySystems; +using Content.Shared.Paper; +using Content.Shared.Radio; +using Content.Shared.Salvage.JobBoard; +using Robust.Server.Audio; +using Robust.Server.GameObjects; +using Robust.Shared.Prototypes; +using Robust.Shared.Timing; +using Robust.Shared.Utility; + +namespace Content.Server.Salvage.JobBoard; + +public sealed class SalvageJobBoardSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly AudioSystem _audio = default!; + [Dependency] private readonly CargoSystem _cargo = default!; + [Dependency] private readonly LabelSystem _label = default!; + [Dependency] private readonly PaperSystem _paper = default!; + [Dependency] private readonly RadioSystem _radio = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly UserInterfaceSystem _ui = default!; + + /// + /// Radio channel that unlock messages are broadcast on. + /// + private static readonly ProtoId UnlockChannel = "Supply"; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnSold); + SubscribeLocalEvent(OnBUIOpened); + Subs.BuiEvents(SalvageJobBoardUiKey.Key, + subs => + { + subs.Event(OnPrintLabelMessage); + }); + } + + private void OnSold(ref EntitySoldEvent args) + { + if (!TryComp(args.Station, out var salvageJobsData)) + return; + + foreach (var sold in args.Sold) + { + if (!FulfillsSalvageJob(sold, (args.Station, salvageJobsData), out var jobId)) + return; + TryCompleteSalvageJob((args.Station, salvageJobsData), jobId.Value); + } + } + + /// + /// Gets the jobs that the station can currently access. + /// + public List> GetAvailableJobs(Entity ent) + { + var outJobs = new List>(); + var availableGroups = new HashSet>(); + + var completedCount = ent.Comp.CompletedJobs.Count; + foreach (var (thresholds, rank) in ent.Comp.RankThresholds) + { + if (completedCount < thresholds) + continue; + if (rank.BountyGroup == null) + continue; + availableGroups.Add(rank.BountyGroup.Value); + } + + foreach (var bounty in _prototypeManager.EnumeratePrototypes()) + { + if (ent.Comp.CompletedJobs.Contains(bounty)) + continue; + + if (availableGroups.Contains(bounty.Group)) + outJobs.Add(bounty); + } + + return outJobs; + } + + /// + /// Gets the "progression" of a rank, expressed as on the range [0, 1] + /// + public float GetRankProgression(Entity ent) + { + // Need to have at least two of these. + if (ent.Comp.RankThresholds.Count <= 1) + return 1; + var completedCount = ent.Comp.CompletedJobs.Count; + + for (var i = ent.Comp.RankThresholds.Count - 1; i >= 0; i--) + { + var low = ent.Comp.RankThresholds.Keys.ElementAt(i); + + if (completedCount < low) + continue; + + // don't worry abooouuuuut it (it'll be O K !) + var high = i != ent.Comp.RankThresholds.Count - 1 + ? ent.Comp.RankThresholds.Keys.ElementAt(i + 1) + : _prototypeManager.EnumeratePrototypes() + .Count(p => ent.Comp.RankThresholds.Values + .Select(r => r.BountyGroup) + .Contains(p.Group)); + + return (completedCount - low) / (float)(high - low); + } + + return 1f; + } + + /// + /// Checks if the current station is the max rank + /// + public bool IsMaxRank(Entity ent) + { + return GetAvailableJobs(ent).Count == 0; + } + + /// + /// Gets the current rank of the station + /// + public SalvageRankDatum GetRank(Entity ent) + { + if (IsMaxRank(ent)) + return ent.Comp.MaxRank; + var completedCount = ent.Comp.CompletedJobs.Count; + + foreach (var (threshold, rank) in ent.Comp.RankThresholds.Reverse()) + { + if (completedCount < threshold) + continue; + + return rank; + } + // base case + return ent.Comp.RankThresholds[0]; + } + + /// + /// + /// + /// + /// + /// + public bool TryCompleteSalvageJob(Entity ent, ProtoId job) + { + if (!GetAvailableJobs(ent).Contains(job)) + return false; + + var jobProto = _prototypeManager.Index(job); + + var oldRank = GetRank(ent); + + ent.Comp.CompletedJobs.Add(job); + + var newRank = GetRank(ent); + + // Add reward + if (TryComp(ent, out var stationBankAccount)) + { + _cargo.UpdateBankAccount( + (ent.Owner, stationBankAccount), + jobProto.Reward, + _cargo.CreateAccountDistribution((ent, stationBankAccount))); + } + + // We ranked up! + if (oldRank != newRank) + { + // We need to find a computer to send the message from. + var computerQuery = EntityQueryEnumerator(); + while (computerQuery.MoveNext(out var uid, out _)) + { + var message = Loc.GetString("job-board-radio-announce", ("rank", FormattedMessage.RemoveMarkupPermissive(Loc.GetString(newRank.Title)))); + _radio.SendRadioMessage(uid, message, UnlockChannel, uid, false); + break; + } + + if (newRank.UnlockedMarket is { } market && + TryComp(ent, out var stationCargoOrder)) + { + stationCargoOrder.Markets.Add(market); + } + } + + var enumerator = EntityQueryEnumerator(); + while (enumerator.MoveNext(out var consoleUid, out var console)) + { + UpdateUi((consoleUid, console), ent); + } + + return true; + } + + /// + /// Checks if a given entity fulfills a bounty for the station. + /// + public bool FulfillsSalvageJob(EntityUid uid, Entity? station, [NotNullWhen(true)] out ProtoId? job) + { + job = null; + + if (!_label.TryGetLabel(uid, out var labelEnt)) + return false; + + if (labelEnt.Value.Comp.JobId is not { } jobId) + return false; + + job = jobId; + + if (station is null) + { + if (_station.GetOwningStation(uid) is not { } stationUid || + !TryComp(stationUid, out var stationComp)) + return false; + + station = (stationUid, stationComp); + } + + if (!GetAvailableJobs((station.Value, station.Value.Comp)).Contains(job.Value)) + return false; + + + if (!_cargo.IsBountyComplete(uid, job)) + return false; + + return true; + } + + private void OnBUIOpened(Entity ent, ref BoundUIOpenedEvent args) + { + if (args.UiKey is not SalvageJobBoardUiKey.Key) + return; + + if (_station.GetOwningStation(ent.Owner) is not { } station || + !TryComp(station, out var jobData)) + return; + + UpdateUi(ent, (station, jobData)); + } + + private void OnPrintLabelMessage(Entity ent, ref JobBoardPrintLabelMessage args) + { + if (_timing.CurTime < ent.Comp.NextPrintTime) + return; + + if (_station.GetOwningStation(ent) is not { } station || + !TryComp(station, out var jobsData)) + return; + + if (!_prototypeManager.TryIndex(args.JobId, out var job)) + return; + + if (!GetAvailableJobs((station, jobsData)).Contains(args.JobId)) + return; + + _audio.PlayPvs(ent.Comp.PrintSound, ent); + var label = SpawnAtPosition(ent.Comp.LabelEntity, Transform(ent).Coordinates); + EnsureComp(label).JobId = job.ID; + + var target = new List(); + foreach (var entry in job.Entries) + { + target.Add(Loc.GetString("bounty-console-manifest-entry", + ("amount", entry.Amount), + ("item", Loc.GetString(entry.Name)))); + } + _paper.SetContent(label, Loc.GetString("job-board-label-text", ("target", string.Join(',', target)), ("reward", job.Reward))); + + ent.Comp.NextPrintTime = _timing.CurTime + ent.Comp.PrintDelay; + } + + private void UpdateUi(Entity ent, Entity stationEnt) + { + var state = new SalvageJobBoardConsoleState( + GetRank(stationEnt).Title, + GetRankProgression(stationEnt), + GetAvailableJobs(stationEnt)); + + _ui.SetUiState(ent.Owner, SalvageJobBoardUiKey.Key, state); + } +} diff --git a/Content.Server/Salvage/JobBoard/SalvageJobsDataComponent.cs b/Content.Server/Salvage/JobBoard/SalvageJobsDataComponent.cs new file mode 100644 index 0000000000..983ee9af80 --- /dev/null +++ b/Content.Server/Salvage/JobBoard/SalvageJobsDataComponent.cs @@ -0,0 +1,61 @@ +using Content.Shared.Cargo.Prototypes; +using Robust.Shared.Prototypes; + +namespace Content.Server.Salvage.JobBoard; + +/// +/// holds information for a station relating to the salvage job board +/// +[RegisterComponent] +[Access(typeof(SalvageJobBoardSystem))] +public sealed partial class SalvageJobsDataComponent : Component +{ + /// + /// A dictionary relating the number of completed jobs needed to the different ranks. + /// + [DataField] + public SortedDictionary RankThresholds = new(); + + /// + /// The rank given when all salvage jobs are complete. + /// + [DataField] + public SalvageRankDatum MaxRank; + + /// + /// A list of all completed jobs in order. + /// + [DataField] + public List> CompletedJobs = new(); + + /// + /// Account where rewards are deposited. + /// + [DataField] + public ProtoId RewardAccount = "Cargo"; +} + +/// +/// Holds information about salvage job ranks +/// +[DataDefinition] +public partial record struct SalvageRankDatum +{ + /// + /// The title displayed when this rank is reached + /// + [DataField] + public LocId Title; + + /// + /// The bounties associated with this rank. + /// + [DataField] + public ProtoId? BountyGroup; + + /// + /// The market that is unlocked when you reach this rank + /// + [DataField] + public ProtoId? UnlockedMarket; +} diff --git a/Content.Server/Salvage/SalvageSystem.Expeditions.cs b/Content.Server/Salvage/SalvageSystem.Expeditions.cs index 0493bb22ce..466678be3d 100644 --- a/Content.Server/Salvage/SalvageSystem.Expeditions.cs +++ b/Content.Server/Salvage/SalvageSystem.Expeditions.cs @@ -128,7 +128,7 @@ public sealed partial class SalvageSystem { var component = expedition.Comp; component.NextOffer = _timing.CurTime + TimeSpan.FromSeconds(_cooldown); - Announce(uid, Loc.GetString("salvage-expedition-mission-completed")); + Announce(uid, Loc.GetString("salvage-expedition-completed")); component.ActiveMission = 0; component.Cooldown = true; UpdateConsoles(expedition); diff --git a/Content.Server/Salvage/SalvageSystem.Runner.cs b/Content.Server/Salvage/SalvageSystem.Runner.cs index 98cff49f99..9050db3971 100644 --- a/Content.Server/Salvage/SalvageSystem.Runner.cs +++ b/Content.Server/Salvage/SalvageSystem.Runner.cs @@ -74,7 +74,7 @@ public sealed partial class SalvageSystem ChatChannel.Radio, text, text, - _mapManager.GetMapEntityId(mapId), + _mapSystem.GetMapOrInvalid(mapId), false, true, null); @@ -104,7 +104,7 @@ public sealed partial class SalvageSystem Announce(args.MapUid, Loc.GetString("salvage-expedition-announcement-countdown-minutes", ("duration", (component.EndTime - _timing.CurTime).Minutes))); - var directionLocalization = ContentLocalizationManager.FormatDirection(component.DungeonLocation.GetDir()).ToLower(); + var directionLocalization = ContentLocalizationManager.FormatDirection(component.DungeonLocation.GetDir()).ToLower(); if (component.DungeonLocation != Vector2.Zero) Announce(args.MapUid, Loc.GetString("salvage-expedition-announcement-dungeon", ("direction", directionLocalization))); @@ -170,11 +170,11 @@ public sealed partial class SalvageSystem // Auto-FTL out any shuttles else if (remaining < TimeSpan.FromSeconds(_shuttle.DefaultStartupTime) + TimeSpan.FromSeconds(0.5)) { - var ftlTime = (float) remaining.TotalSeconds; + var ftlTime = (float)remaining.TotalSeconds; if (remaining < TimeSpan.FromSeconds(_shuttle.DefaultStartupTime)) { - ftlTime = MathF.Max(0, (float) remaining.TotalSeconds - 0.5f); + ftlTime = MathF.Max(0, (float)remaining.TotalSeconds - 0.5f); } ftlTime = MathF.Min(ftlTime, _shuttle.DefaultStartupTime); diff --git a/Content.Server/Shuttles/Components/ShuttleComponent.cs b/Content.Server/Shuttles/Components/ShuttleComponent.cs index 949d8ea5bb..0aa815d2df 100644 --- a/Content.Server/Shuttles/Components/ShuttleComponent.cs +++ b/Content.Server/Shuttles/Components/ShuttleComponent.cs @@ -17,10 +17,10 @@ namespace Content.Server.Shuttles.Components public const float BrakeCoefficient = 1.5f; /// - /// Maximum velocity assuming unupgraded, tier 1 thrusters + /// Maximum velocity. /// [ViewVariables(VVAccess.ReadWrite)] - public float BaseMaxLinearVelocity = 20f; + public float BaseMaxLinearVelocity = 60f; public const float MaxAngularVelocity = 4f; @@ -57,12 +57,16 @@ namespace Content.Server.Shuttles.Components public DirectionFlag ThrustDirections = DirectionFlag.None; /// - /// Damping applied to the shuttle's physics component when not in FTL. + /// Base damping modifier applied to the shuttle's physics component when not in FTL. /// - [DataField("linearDamping"), ViewVariables(VVAccess.ReadWrite)] - public float LinearDamping = 0.05f; + [DataField] + public float BodyModifier = 0.25f; - [DataField("angularDamping"), ViewVariables(VVAccess.ReadWrite)] - public float AngularDamping = 0.05f; + /// + /// Final Damping Modifier for a shuttle. + /// This value is set to 0 during FTL. And to BodyModifier when not in FTL. + /// + [DataField] + public float DampingModifier; } } diff --git a/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs b/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs index 58d23ee432..d4fcfb81c6 100644 --- a/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs +++ b/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs @@ -1,4 +1,5 @@ using Content.Server.Shuttles.Systems; +using Robust.Shared.Audio; using Robust.Shared.Serialization.TypeSerializers.Implementations; using Robust.Shared.Utility; @@ -21,4 +22,39 @@ public sealed partial class StationEmergencyShuttleComponent : Component /// [DataField("emergencyShuttlePath", customTypeSerializer: typeof(ResPathSerializer))] public ResPath EmergencyShuttlePath { get; set; } = new("/Maps/Shuttles/emergency.yml"); + + /// + /// The announcement made when the shuttle has successfully docked with the station. + /// + public LocId DockedAnnouncement = "emergency-shuttle-docked"; + + /// + /// Sound played when the shuttle has successfully docked with the station. + /// + public SoundSpecifier DockedAudio = new SoundPathSpecifier("/Audio/Announcements/shuttle_dock.ogg"); + + /// + /// The announcement made when the shuttle is unable to dock and instead parks in nearby space. + /// + public LocId NearbyAnnouncement = "emergency-shuttle-nearby"; + + /// + /// Sound played when the shuttle is unable to dock and instead parks in nearby space. + /// + public SoundSpecifier NearbyAudio = new SoundPathSpecifier("/Audio/Misc/notice1.ogg"); + + /// + /// The announcement made when the shuttle is unable to find a station. + /// + public LocId FailureAnnouncement = "emergency-shuttle-good-luck"; + + /// + /// Sound played when the shuttle is unable to find a station. + /// + public SoundSpecifier FailureAudio = new SoundPathSpecifier("/Audio/Misc/notice1.ogg"); + + /// + /// Text appended to the docking announcement if the launch time has been extended. + /// + public LocId LaunchExtendedMessage = "emergency-shuttle-extended"; } diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index 9999a794ce..4483df7d28 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -368,6 +368,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem /// public void AnnounceShuttleDock(ShuttleDockResult result, bool extended) { + var stationShuttleComp = result.Station.Comp; var shuttle = result.Station.Comp.EmergencyShuttle; DebugTools.Assert(shuttle != null); @@ -376,10 +377,12 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem { _chatSystem.DispatchStationAnnouncement( result.Station, - Loc.GetString("emergency-shuttle-good-luck"), - playDefault: false); + Loc.GetString(stationShuttleComp.FailureAnnouncement), + playDefault: false, + announcementSound: stationShuttleComp.FailureAudio); // TODO: Need filter extensions or something don't blame me. + //_audio.PlayGlobal(stationShuttleComp.FailureAudio, Filter.Broadcast(), true); return; } @@ -398,10 +401,10 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem var location = FormattedMessage.RemoveMarkupPermissive( _navMap.GetNearestBeaconString((shuttle.Value, Transform(shuttle.Value)))); - var extendedText = extended ? Loc.GetString("emergency-shuttle-extended") : ""; + var extendedText = extended ? Loc.GetString(stationShuttleComp.LaunchExtendedMessage) : ""; var locKey = result.ResultType == ShuttleDockResultType.NoDock - ? "emergency-shuttle-nearby" - : "emergency-shuttle-docked"; + ? stationShuttleComp.NearbyAnnouncement + : stationShuttleComp.DockedAnnouncement; _chatSystem.DispatchStationAnnouncement( result.Station, @@ -434,8 +437,8 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem // Play announcement audio. var audioFile = result.ResultType == ShuttleDockResultType.NoDock - ? "/Audio/Misc/notice1.ogg" - : "/Audio/Announcements/shuttle_dock.ogg"; + ? stationShuttleComp.NearbyAudio + : stationShuttleComp.DockedAudio; // TODO: Need filter extensions or something don't blame me. _audio.PlayGlobal(audioFile, Filter.Broadcast(), true); diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index 3b83e667e0..3d2b091d20 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -5,7 +5,6 @@ using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; using Content.Server.Station.Events; using Content.Shared.Body.Components; -using Content.Shared.Buckle.Components; using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.Ghost; @@ -73,11 +72,8 @@ public sealed partial class ShuttleSystem private readonly HashSet> _noFtls = new(); private EntityQuery _bodyQuery; - private EntityQuery _buckleQuery; private EntityQuery _immuneQuery; - private EntityQuery _physicsQuery; private EntityQuery _statusQuery; - private EntityQuery _xformQuery; private void InitializeFTL() { @@ -85,11 +81,8 @@ public sealed partial class ShuttleSystem SubscribeLocalEvent(OnFtlShutdown); _bodyQuery = GetEntityQuery(); - _buckleQuery = GetEntityQuery(); _immuneQuery = GetEntityQuery(); - _physicsQuery = GetEntityQuery(); _statusQuery = GetEntityQuery(); - _xformQuery = GetEntityQuery(); _cfg.OnValueChanged(CCVars.FTLStartupTime, time => DefaultStartupTime = time, true); _cfg.OnValueChanged(CCVars.FTLTravelTime, time => DefaultTravelTime = time, true); @@ -422,8 +415,6 @@ public sealed partial class ShuttleSystem Enable(uid, component: body); _physics.SetLinearVelocity(uid, new Vector2(0f, 20f), body: body); _physics.SetAngularVelocity(uid, 0f, body: body); - _physics.SetLinearDamping(uid, body, 0f); - _physics.SetAngularDamping(uid, body, 0f); _dockSystem.SetDockBolts(uid, true); _console.RefreshShuttleConsoles(uid); @@ -478,8 +469,6 @@ public sealed partial class ShuttleSystem _physics.SetLinearVelocity(uid, Vector2.Zero, body: body); _physics.SetAngularVelocity(uid, 0f, body: body); - _physics.SetLinearDamping(uid, body, entity.Comp2.LinearDamping); - _physics.SetAngularDamping(uid, body, entity.Comp2.AngularDamping); var target = entity.Comp1.TargetCoordinates; diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs index 6123f348ec..a794ee0104 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs @@ -271,7 +271,7 @@ public sealed partial class ShuttleSystem if (HasComp(grid.Value, compType)) continue; - var comp = _factory.GetComponent(compType); + var comp = Factory.GetComponent(compType); AddComp(grid.Value, comp, true); } } diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs index 436b248407..f165990f1c 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs @@ -1,60 +1,443 @@ -using System.Numerics; using Content.Server.Shuttles.Components; +using Content.Shared.Atmos.Components; using Content.Shared.Audio; +using Content.Shared.CCVar; +using Content.Shared.Clothing; +using Content.Shared.Damage; +using Content.Shared.Database; +using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.Maps; +using Content.Shared.Physics; +using Content.Shared.Projectiles; +using Content.Shared.Slippery; using Robust.Shared.Audio; using Robust.Shared.Map; +using Robust.Shared.Map.Components; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Dynamics; using Robust.Shared.Physics.Events; -using Robust.Shared.Player; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using System.Numerics; namespace Content.Server.Shuttles.Systems; +// shuttle impact damage ported from Goobstation (AGPLv3) with agreement of all coders involved public sealed partial class ShuttleSystem { - /// - /// Minimum velocity difference between 2 bodies for a shuttle "impact" to occur. - /// - private const int MinimumImpactVelocity = 10; + private bool _enabled; + private float _minimumImpactInertia; + private float _minimumImpactVelocity; + private float _tileBreakEnergyMultiplier; + private float _damageMultiplier; + private float _structuralDamage; + private float _sparkEnergy; + private float _impactRadius; + private float _impactSlowdown; + private float _minThrowVelocity; + private float _massBias; + private float _inertiaScaling; + // this doesn't update if plating mass is changed but edgecase + private float _platingMass; + + private const float _sparkChance = 0.2f; + // shuttle mass to consider the neutral point for inertia scaling + private const float _baseShuttleMass = 50f; + // exists primarily for optimisation so not a cvar + private const float _minImpulseVelocity = 0.07f; + // high-speed collisions tend to be a series of increasingly smaller collisions so don't spam admin logs + private readonly TimeSpan _adminLogSpacing = TimeSpan.FromSeconds(3); private readonly SoundCollectionSpecifier _shuttleImpactSound = new("ShuttleImpactSound"); + private readonly ProtoId _platingId = "Plating"; + private readonly EntProtoId _sparkEffect = "EffectSparks"; + + private EntityQuery _dmgQuery; + private EntityQuery _projQuery; + + private HashSet _countedEnts = new(); + private HashSet _intersecting = new(); + // for _adminLogSpacing + private Dictionary _impactedAt = new(); private void InitializeImpact() { SubscribeLocalEvent(OnShuttleCollide); + + _dmgQuery = GetEntityQuery(); + _projQuery = GetEntityQuery(); + + Subs.CVar(_cfg, CCVars.ImpactEnabled, value => _enabled = value, true); + Subs.CVar(_cfg, CCVars.MinimumImpactInertia, value => _minimumImpactInertia = value, true); + Subs.CVar(_cfg, CCVars.MinimumImpactInertia, value => _minimumImpactInertia = value, true); + Subs.CVar(_cfg, CCVars.MinimumImpactVelocity, value => _minimumImpactVelocity = value, true); + Subs.CVar(_cfg, CCVars.TileBreakEnergyMultiplier, value => _tileBreakEnergyMultiplier = value, true); + Subs.CVar(_cfg, CCVars.ImpactDamageMultiplier, value => _damageMultiplier = value, true); + Subs.CVar(_cfg, CCVars.ImpactStructuralDamage, value => _structuralDamage = value, true); + Subs.CVar(_cfg, CCVars.SparkEnergy, value => _sparkEnergy = value, true); + Subs.CVar(_cfg, CCVars.ImpactRadius, value => _impactRadius = value, true); + Subs.CVar(_cfg, CCVars.ImpactSlowdown, value => _impactSlowdown = value, true); + Subs.CVar(_cfg, CCVars.ImpactMinThrowVelocity, value => _minThrowVelocity = value, true); + Subs.CVar(_cfg, CCVars.ImpactMassBias, value => _massBias = value, true); + Subs.CVar(_cfg, CCVars.ImpactInertiaScaling, value => _inertiaScaling = value, true); + + _platingMass = _protoManager.Index(_platingId).Mass; } + /// + /// Handles collision between two shuttles, applying impact damage and effects. + /// private void OnShuttleCollide(EntityUid uid, ShuttleComponent component, ref StartCollideEvent args) { - if (!HasComp(args.OtherEntity)) + if (TerminatingOrDeleted(uid) || EntityManager.IsQueuedForDeletion(uid) + || TerminatingOrDeleted(args.OtherEntity) || EntityManager.IsQueuedForDeletion(args.OtherEntity) + ) + return; + + if (!_gridQuery.TryComp(args.OurEntity, out var ourGrid) || + !_gridQuery.TryComp(args.OtherEntity, out var otherGrid) + ) return; var ourBody = args.OurBody; var otherBody = args.OtherBody; // TODO: Would also be nice to have a continuous sound for scraping. - var ourXform = Transform(uid); - - if (ourXform.MapUid == null) - return; - + var ourXform = Transform(args.OurEntity); var otherXform = Transform(args.OtherEntity); + var worldPoints = args.WorldPoints; + var worldNormal = args.WorldNormal; - var ourPoint = Vector2.Transform(args.WorldPoint, _transform.GetInvWorldMatrix(ourXform)); - var otherPoint = Vector2.Transform(args.WorldPoint, _transform.GetInvWorldMatrix(otherXform)); - - var ourVelocity = _physics.GetLinearVelocity(uid, ourPoint, ourBody, ourXform); - var otherVelocity = _physics.GetLinearVelocity(args.OtherEntity, otherPoint, otherBody, otherXform); - var jungleDiff = (ourVelocity - otherVelocity).Length(); - - if (jungleDiff < MinimumImpactVelocity) + for (var i = 0; i < worldPoints.Length; i++) { - return; + var worldPoint = worldPoints[i]; + + var ourPoint = _transform.ToCoordinates((args.OurEntity, ourXform), new MapCoordinates(worldPoint, ourXform.MapID)); + var otherPoint = _transform.ToCoordinates((args.OtherEntity, otherXform), new MapCoordinates(worldPoint, otherXform.MapID)); + + var ourVelocity = _physics.GetLinearVelocity(args.OurEntity, ourPoint.Position, ourBody, ourXform); + var otherVelocity = _physics.GetLinearVelocity(args.OtherEntity, otherPoint.Position, otherBody, otherXform); + var topDiff = (ourVelocity - otherVelocity); + var jungleDiff = topDiff.Length(); + + // Get the velocity in relation to the contact normal + // If this still causes issues see https://box2d.org/posts/2020/06/ghost-collisions/ + // This should only be a potential problem on chunk seams. + var dotProduct = MathF.Abs(Vector2.Dot(topDiff.Normalized(), worldNormal.Normalized())); + jungleDiff *= dotProduct; + + // this is cursed but makes it so that collisions of small grid with large grid count the inertia as being approximately the small grid's + var effectiveInertiaMult = (ourBody.FixturesMass * otherBody.FixturesMass) / (ourBody.FixturesMass + otherBody.FixturesMass); + var effectiveInertia = jungleDiff * effectiveInertiaMult; + + // TODO: squish damage so that a tiny splinter grid can't stop 2 big grids by being in the way + if (jungleDiff < _minimumImpactVelocity && effectiveInertia < _minimumImpactInertia + || ourXform.MapUid == null + || float.IsNaN(jungleDiff)) + { + continue; + } + + // Play impact sound + var coordinates = new EntityCoordinates(ourXform.MapUid.Value, worldPoint); + + var volume = MathF.Min(10f, MathF.Pow(jungleDiff, 0.5f) - 5f); + var audioParams = AudioParams.Default.WithVariation(SharedContentAudioSystem.DefaultVariation).WithVolume(volume); + _audio.PlayPvs(_shuttleImpactSound, coordinates, audioParams); + + // if we're not enabled, stop after playing sound + if (!_enabled) + continue; + + // Convert the collision point directly to tile indices + var ourTile = new Vector2i((int)Math.Floor(ourPoint.X / ourGrid.TileSize), (int)Math.Floor(ourPoint.Y / ourGrid.TileSize)); + var otherTile = new Vector2i((int)Math.Floor(otherPoint.X / otherGrid.TileSize), (int)Math.Floor(otherPoint.Y / otherGrid.TileSize)); + + var ourMass = GetRegionMass(args.OurEntity, ourGrid, ourTile, _impactRadius, out var ourTiles); + var otherMass = GetRegionMass(args.OtherEntity, otherGrid, otherTile, _impactRadius, out var otherTiles); + + // just in case + if (ourTiles == 0 || otherTiles == 0) + continue; + + Log.Info($"Shuttle impact of {ToPrettyString(args.OurEntity)} with {ToPrettyString(args.OtherEntity)}; our mass: {ourMass}, other: {otherMass}, velocity {jungleDiff}, impact point {worldPoint}"); + + // E = MV^2/2 + var energyMult = MathF.Pow(jungleDiff, 2) / 2; + // mass-based damage reduction to grid with more mass so that plastitanium block rammer doesn't die to lattice + var ourMassDR = MathF.Max(otherMass / ourMass, 1f); + var otherMassDR = MathF.Max(ourMass / otherMass, 1f); + // multiplier to make large grids not just bonk against each other + var inertiaMult = MathF.Pow(effectiveInertiaMult / _baseShuttleMass, _inertiaScaling); + var toUsEnergy = otherMass * energyMult * inertiaMult * ourMassDR; + var toOtherEnergy = ourMass * energyMult * inertiaMult * otherMassDR; + + var impact = LogImpact.High; + // if impact isn't tiny, log it as extreme + if (toUsEnergy + toOtherEnergy > 2f * _tileBreakEnergyMultiplier * _platingMass) + impact = LogImpact.Extreme; + // TODO: would be nice for it to also log who is piloting the grid(s) + if (CheckShouldLog(args.OurEntity) && CheckShouldLog(args.OtherEntity)) + _logger.Add(LogType.ShuttleImpact, impact, $"Shuttle impact of {ToPrettyString(args.OurEntity)} with {ToPrettyString(args.OtherEntity)} at {worldPoint}"); + + _impactedAt[args.OurEntity] = _gameTiming.CurTime; + _impactedAt[args.OtherEntity] = _gameTiming.CurTime; + + // uses local region mass for slowdown calculation so lattice doesn't have same slowdown as wall block + var totalInertia = ourVelocity * ourMass + otherVelocity * otherMass; + var inelasticVel = totalInertia / (ourMass + otherMass); + + DoGridImpact((args.OurEntity, ourGrid, ourXform, ourBody), args.OurFixture, inelasticVel, ourVelocity, ourTile, ourTiles, toUsEnergy); + DoGridImpact((args.OtherEntity, otherGrid, otherXform, otherBody), args.OtherFixture, inelasticVel, otherVelocity, otherTile, otherTiles, toOtherEnergy); + } + } + + private void DoGridImpact(Entity ent, + Fixture fix, + Vector2 inelasticVelocity, + Vector2 velocity, + Vector2i tile, + int tiles, + float energy) + { + // for readability to not have .Comp1 .Comp2 for everything + var (_, grid, xform, body) = ent; + + // radius in which to actually do things so we don't hurt person 4 tiles away on slow bump + var radius = Math.Min(_impactRadius, MathF.Sqrt(energy / _tileBreakEnergyMultiplier / _platingMass)); + + // slow us down since destroying impacting grid tiles prevents the collision + // without this impacts which destroy tiles just make grids slice straight through each other + var postImpactVelocity = Vector2.Lerp(velocity, inelasticVelocity, MathF.Min(1f, _impactSlowdown * tiles * fix.Density / body.FixturesMass)); + var deltaV = -velocity + postImpactVelocity; + _physics.ApplyLinearImpulse(ent, deltaV * body.FixturesMass, body: body); + + // process tile and entity damage + ProcessImpactZone(ent, grid, tile, energy, deltaV.Normalized(), radius); + + // throw every entity on grid if the impulse is not negligible + if (deltaV.Length() > _minImpulseVelocity) + ThrowEntitiesOnGrid(ent, xform, -deltaV); + } + + /// + /// Knocks and throws all unbuckled entities on the specified grid. + /// + private void ThrowEntitiesOnGrid(EntityUid gridUid, TransformComponent xform, Vector2 direction) + { + var movedByPressureQuery = GetEntityQuery(); + var knockdownTime = TimeSpan.FromSeconds(5); + + var minsq = _minThrowVelocity * _minThrowVelocity; + // iterate all entities on the grid + // TODO: only iterate non-static entities + var childEnumerator = xform.ChildEnumerator; + while (childEnumerator.MoveNext(out var uid)) + { + // don't throw static bodies + if (!_physicsQuery.TryGetComponent(uid, out var physics) || (physics.BodyType & BodyType.Static) != 0) + continue; + + // don't throw if buckled + if (_buckle.IsBuckled(uid, _buckleQuery.CompOrNull(uid))) + continue; + + // don't throw them if they have magboots + if (movedByPressureQuery.TryComp(uid, out var moved) && !moved.Enabled) + continue; + + if (direction.LengthSquared() > minsq) + { + _stuns.TryKnockdown(uid, knockdownTime, true); + _throwing.TryThrow(uid, direction, physics, Transform(uid), _projQuery, direction.Length(), playSound: false); + } + else + { + _physics.ApplyLinearImpulse(uid, direction * physics.Mass, body: physics); + } + } + } + + /// + /// Structure to hold impact tile processing data for batch processing + /// + private record struct ImpactTileData(Vector2i Tile, float Energy, float DistanceFactor); + + /// + /// Gets the total mass of all entities and tiles (using ContentTileDefinition.Mass) belonging to this grid in a circle + /// + private float GetRegionMass(EntityUid uid, MapGridComponent grid, Vector2i centerTile, float radius, out int tileCount) + { + tileCount = 0; + var mass = 0f; + _countedEnts.Clear(); + + foreach (var tileRef in _mapSystem.GetLocalTilesIntersecting(uid, grid, new Circle(centerTile, radius))) + { + var def = (ContentTileDefinition)_tileDefManager[tileRef.Tile.TypeId]; + mass += def.Mass; + tileCount++; + + _intersecting.Clear(); + _lookup.GetLocalEntitiesIntersecting(uid, tileRef.GridIndices, _intersecting, gridComp: grid); + foreach (var localUid in _intersecting) + { + if (!_countedEnts.Add(localUid)) + continue; + + if (_physicsQuery.TryComp(localUid, out var physics)) + mass += physics.FixturesMass; + } + } + return mass; + } + + /// + /// Processes a zone of tiles around the impact point + /// + private void ProcessImpactZone(EntityUid uid, MapGridComponent grid, Vector2i centerTile, float energy, Vector2 dir, float radius) + { + // Create a list of all tiles to process + var tilesToProcess = new List(); + + // Pre-calculate all tiles that need processing + foreach (var tileRef in _mapSystem.GetLocalTilesIntersecting(uid, grid, new Circle(centerTile, radius))) + { + var distance = centerTile - tileRef.GridIndices; + // Calculate distance-based energy falloff + float distanceFactor = 1.0f - distance.Length / (radius + 1); + float tileEnergy = energy * distanceFactor; + + tilesToProcess.Add(new ImpactTileData(tileRef.GridIndices, tileEnergy, distanceFactor)); } - var coordinates = new EntityCoordinates(ourXform.MapUid.Value, args.WorldPoint); - var volume = MathF.Min(10f, 1f * MathF.Pow(jungleDiff, 0.5f) - 5f); - var audioParams = AudioParams.Default.WithVariation(SharedContentAudioSystem.DefaultVariation).WithVolume(volume); + // Process tiles sequentially for safety + var brokenTiles = new List<(Vector2i, Tile)>(); + var sparkTiles = new List(); - _audio.PlayPvs(_shuttleImpactSound, coordinates, audioParams); + ProcessTileBatch(uid, grid, tilesToProcess, dir, 0, tilesToProcess.Count, brokenTiles, sparkTiles); + + // Only proceed with visual effects if the entity still exists + if (Exists(uid)) + { + ProcessBrokenTilesAndSparks(uid, grid, brokenTiles, sparkTiles); + } + } + + /// + /// Process a batch of tiles from the impact zone + /// + private void ProcessTileBatch( + EntityUid uid, + MapGridComponent grid, + List tilesToProcess, + Vector2 throwDirection, + int startIndex, + int endIndex, + List<(Vector2i, Tile)> brokenTiles, + List sparkTiles) + { + // here so we don't have to `new` it every iteration + var damageSpec = new DamageSpecifier() + { + DamageDict = { ["Blunt"] = 0, ["Structural"] = 0 } + }; + + var entitiesOnTile = new HashSet>(); + var tileCenter = new Vector2(grid.TileSize / 2f, grid.TileSize / 2f); + + for (var i = startIndex; i < endIndex; i++) + { + var tileData = tilesToProcess[i]; + + bool canBreakTile = true; + + // Process entities on this tile + entitiesOnTile.Clear(); + _lookup.GetLocalEntitiesIntersecting(uid, tileData.Tile, entitiesOnTile, gridComp: grid); + + // this loop is a hotspot so tell if you know how to optimise it + foreach (var localEnt in entitiesOnTile) + { + // the query can ocassionally return entities barely touching this tile so check for that + var toCenter = tileData.Tile + tileCenter - localEnt.Comp.Coordinates.Position; + if (MathF.Abs(toCenter.X) > 0.5f || MathF.Abs(toCenter.Y) > 0.5f) + continue; + + if (_dmgQuery.TryComp(localEnt, out var damageable)) + { + // Apply damage scaled by distance but capped to prevent gibbing + var scaledDamage = tileData.Energy * _damageMultiplier; + damageSpec.DamageDict["Blunt"] = scaledDamage; + damageSpec.DamageDict["Structural"] = scaledDamage * _structuralDamage; + + _damageSys.TryChangeDamage(localEnt, damageSpec, damageable: damageable); + } + // might've been destroyed + if (TerminatingOrDeleted(localEnt) || EntityManager.IsQueuedForDeletion(localEnt)) + continue; + + if (!_physicsQuery.TryComp(localEnt, out var physics)) + continue; + + // no breaking tiles under walls that haven't been destroyed + if ((physics.BodyType & BodyType.Static) != 0 + && (physics.CollisionLayer & (int)CollisionGroup.Impassable) != 0) + { + canBreakTile = false; + } + else + { + var direction = throwDirection * tileData.DistanceFactor; + _throwing.TryThrow(localEnt, direction, physics, localEnt.Comp, _projQuery, direction.Length(), playSound: false); + } + } + + // Mark tiles for spark effects + if (tileData.Energy > _sparkEnergy && tileData.DistanceFactor > 0.7f && _random.Prob(_sparkChance)) + sparkTiles.Add(tileData.Tile); + + if (!canBreakTile) + continue; + + // Mark tiles for breaking/effects + var def = (ContentTileDefinition)_tileDefManager[_mapSystem.GetTileRef(uid, grid, tileData.Tile).Tile.TypeId]; + if (tileData.Energy > def.Mass * _tileBreakEnergyMultiplier) + brokenTiles.Add((tileData.Tile, Tile.Empty)); + + } + } + + /// + /// Process visual effects and tile breaking after entity processing + /// + private void ProcessBrokenTilesAndSparks( + EntityUid uid, + MapGridComponent grid, + List<(Vector2i, Tile)> brokenTiles, + List sparkTiles) + { + // Break tiles + _mapSystem.SetTiles(uid, grid, brokenTiles); + + if (TerminatingOrDeleted(uid)) + return; + + // Spawn spark effects + foreach (var tile in sparkTiles) + { + var coords = _mapSystem.GridTileToLocal(uid, grid, tile); + Spawn(_sparkEffect, coords); + } + } + + /// + /// Check whether this impact should be logged to admins. + /// Used to prevent spamming logs. + /// + private bool CheckShouldLog(EntityUid uid) + { + return !(_impactedAt.ContainsKey(uid) && _gameTiming.CurTime < _impactedAt[uid] + _adminLogSpacing); } } diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.cs index f2c58d103c..a9d0318a52 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.cs @@ -1,13 +1,20 @@ using Content.Server.Administration.Logs; using Content.Server.Body.Systems; +using Content.Server.Buckle.Systems; using Content.Server.Doors.Systems; using Content.Server.Parallax; using Content.Server.Procedural; using Content.Server.Shuttles.Components; +using Content.Server.Shuttles.Events; using Content.Server.Station.Systems; using Content.Server.Stunnable; +using Content.Shared.Buckle.Components; +using Content.Shared.Damage; using Content.Shared.GameTicking; +using Content.Shared.Light.Components; +using Content.Shared.Inventory; using Content.Shared.Mobs.Systems; +using Content.Shared.Movement.Events; using Content.Shared.Salvage; using Content.Shared.Shuttles.Systems; using Content.Shared.Throwing; @@ -33,21 +40,22 @@ namespace Content.Server.Shuttles.Systems; public sealed partial class ShuttleSystem : SharedShuttleSystem { [Dependency] private readonly IAdminLogManager _logger = default!; - [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly MapSystem _mapSystem = default!; [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _protoManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; [Dependency] private readonly BiomeSystem _biomes = default!; [Dependency] private readonly BodySystem _bobby = default!; + [Dependency] private readonly BuckleSystem _buckle = default!; + [Dependency] private readonly DamageableSystem _damageSys = default!; [Dependency] private readonly DockingSystem _dockSystem = default!; [Dependency] private readonly DungeonSystem _dungeon = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly FixtureSystem _fixtures = default!; [Dependency] private readonly MapLoaderSystem _loader = default!; + [Dependency] private readonly MapSystem _mapSystem = default!; [Dependency] private readonly MetaDataSystem _metadata = default!; [Dependency] private readonly PvsOverrideSystem _pvs = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -61,15 +69,21 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem [Dependency] private readonly ThrusterSystem _thruster = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + private EntityQuery _buckleQuery; private EntityQuery _gridQuery; + private EntityQuery _physicsQuery; + private EntityQuery _xformQuery; - public const float TileMassMultiplier = 0.5f; + public const float TileDensityMultiplier = 0.5f; public override void Initialize() { base.Initialize(); + _buckleQuery = GetEntityQuery(); _gridQuery = GetEntityQuery(); + _physicsQuery = GetEntityQuery(); + _xformQuery = GetEntityQuery(); InitializeFTL(); InitializeGridFills(); @@ -78,6 +92,9 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem SubscribeLocalEvent(OnShuttleStartup); SubscribeLocalEvent(OnShuttleShutdown); + SubscribeLocalEvent(OnTileFriction); + SubscribeLocalEvent(OnFTLStarted); + SubscribeLocalEvent(OnFTLCompleted); SubscribeLocalEvent(OnGridInit); SubscribeLocalEvent(OnGridFixtureChange); @@ -93,7 +110,7 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem { foreach (var fixture in args.NewFixtures) { - _physics.SetDensity(uid, fixture.Key, fixture.Value, TileMassMultiplier, false, manager); + _physics.SetDensity(uid, fixture.Key, fixture.Value, TileDensityMultiplier, false, manager); _fixtures.SetRestitution(uid, fixture.Key, fixture.Value, 0.1f, false, manager); } } @@ -103,7 +120,8 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem if (HasComp(ev.EntityUid)) return; - EntityManager.EnsureComponent(ev.EntityUid); + EnsureComp(ev.EntityUid); + EnsureComp(ev.EntityUid); } private void OnShuttleStartup(EntityUid uid, ShuttleComponent component, ComponentStartup args) @@ -122,6 +140,8 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem { Enable(uid, component: physicsComponent, shuttle: component); } + + component.DampingModifier = component.BodyModifier; } public void Toggle(EntityUid uid, ShuttleComponent component) @@ -149,8 +169,6 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem _physics.SetBodyType(uid, BodyType.Dynamic, manager: manager, body: component); _physics.SetBodyStatus(uid, component, BodyStatus.InAir); _physics.SetFixedRotation(uid, false, manager: manager, body: component); - _physics.SetLinearDamping(uid, component, shuttle.LinearDamping); - _physics.SetAngularDamping(uid, component, shuttle.AngularDamping); } public void Disable(EntityUid uid, FixturesComponent? manager = null, PhysicsComponent? component = null) @@ -171,4 +189,19 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem Disable(uid); } + + private void OnTileFriction(Entity ent, ref TileFrictionEvent args) + { + args.Modifier *= ent.Comp.DampingModifier; + } + + private void OnFTLStarted(Entity ent, ref FTLStartedEvent args) + { + ent.Comp.DampingModifier = 0f; + } + + private void OnFTLCompleted(Entity ent, ref FTLCompletedEvent args) + { + ent.Comp.DampingModifier = ent.Comp.BodyModifier; + } } diff --git a/Content.Server/Shuttles/Systems/ThrusterSystem.cs b/Content.Server/Shuttles/Systems/ThrusterSystem.cs index 74008a6af7..42c249c9ab 100644 --- a/Content.Server/Shuttles/Systems/ThrusterSystem.cs +++ b/Content.Server/Shuttles/Systems/ThrusterSystem.cs @@ -94,41 +94,45 @@ public sealed class ThrusterSystem : EntitySystem private void OnShuttleTileChange(EntityUid uid, ShuttleComponent component, ref TileChangedEvent args) { - // If the old tile was space but the new one isn't then disable all adjacent thrusters - if (args.NewTile.IsSpace(_tileDefManager) || !args.OldTile.IsSpace(_tileDefManager)) - return; - - var tilePos = args.NewTile.GridIndices; - var grid = Comp(uid); - var xformQuery = GetEntityQuery(); - var thrusterQuery = GetEntityQuery(); - - for (var x = -1; x <= 1; x++) + foreach (var change in args.Changes) { - for (var y = -1; y <= 1; y++) + // If the old tile was space but the new one isn't then disable all adjacent thrusters + if (change.NewTile.IsSpace(_tileDefManager) || !change.OldTile.IsSpace(_tileDefManager)) + continue; + + var tilePos = change.GridIndices; + var grid = Comp(uid); + var xformQuery = GetEntityQuery(); + var thrusterQuery = GetEntityQuery(); + + for (var x = -1; x <= 1; x++) { - if (x != 0 && y != 0) - continue; - - var checkPos = tilePos + new Vector2i(x, y); - var enumerator = _mapSystem.GetAnchoredEntitiesEnumerator(uid, grid, checkPos); - - while (enumerator.MoveNext(out var ent)) + for (var y = -1; y <= 1; y++) { - if (!thrusterQuery.TryGetComponent(ent.Value, out var thruster) || !thruster.RequireSpace) + if (x != 0 && y != 0) continue; - // Work out if the thruster is facing this direction - var xform = xformQuery.GetComponent(ent.Value); - var direction = xform.LocalRotation.ToWorldVec(); + var checkPos = tilePos + new Vector2i(x, y); + var enumerator = _mapSystem.GetAnchoredEntitiesEnumerator(uid, grid, checkPos); - if (new Vector2i((int)direction.X, (int)direction.Y) != new Vector2i(x, y)) - continue; + while (enumerator.MoveNext(out var ent)) + { + if (!thrusterQuery.TryGetComponent(ent.Value, out var thruster) || !thruster.RequireSpace) + continue; - DisableThruster(ent.Value, thruster, xform.GridUid); + // Work out if the thruster is facing this direction + var xform = xformQuery.GetComponent(ent.Value); + var direction = xform.LocalRotation.ToWorldVec(); + + if (new Vector2i((int)direction.X, (int)direction.Y) != new Vector2i(x, y)) + continue; + + DisableThruster(ent.Value, thruster, xform.GridUid); + } } } } + } private void OnActivateThruster(EntityUid uid, ThrusterComponent component, ActivateInWorldEvent args) diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs b/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs index 9f9977cddc..58cd7135af 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs @@ -1,17 +1,22 @@ using System.Linq; using Content.Shared.UserInterface; +using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.NameIdentifier; using Content.Shared.PowerCell.Components; using Content.Shared.Preferences; using Content.Shared.Silicons.Borgs; using Content.Shared.Silicons.Borgs.Components; +using Robust.Shared.Configuration; namespace Content.Server.Silicons.Borgs; /// public sealed partial class BorgSystem { + // CCvar. + private int _maxNameLength; + public void InitializeUI() { SubscribeLocalEvent(OnBeforeBorgUiOpen); @@ -19,6 +24,8 @@ public sealed partial class BorgSystem SubscribeLocalEvent(OnEjectBatteryBuiMessage); SubscribeLocalEvent(OnSetNameBuiMessage); SubscribeLocalEvent(OnRemoveModuleBuiMessage); + + Subs.CVar(_cfgManager, CCVars.MaxNameLength, value => _maxNameLength = value, true); } private void OnBeforeBorgUiOpen(EntityUid uid, BorgChassisComponent component, BeforeActivatableUIOpenEvent args) @@ -40,20 +47,13 @@ public sealed partial class BorgSystem private void OnEjectBatteryBuiMessage(EntityUid uid, BorgChassisComponent component, BorgEjectBatteryBuiMessage args) { - if (!TryComp(uid, out var slotComp) || - !Container.TryGetContainer(uid, slotComp.CellSlotId, out var container) || - !container.ContainedEntities.Any()) - { - return; - } - - var ents = Container.EmptyContainer(container); - _hands.TryPickupAnyHand(args.Actor, ents.First()); + if (TryEjectPowerCell(uid, component, out var ents)) + _hands.TryPickupAnyHand(args.Actor, ents.First()); } private void OnSetNameBuiMessage(EntityUid uid, BorgChassisComponent component, BorgSetNameBuiMessage args) { - if (args.Name.Length > HumanoidCharacterProfile.MaxNameLength || + if (args.Name.Length > _maxNameLength || args.Name.Length == 0 || string.IsNullOrWhiteSpace(args.Name) || string.IsNullOrEmpty(args.Name)) diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs index 82e247cb0b..3957e02d2d 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -1,11 +1,13 @@ using Content.Server.Actions; using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; +using Content.Server.Body.Components; using Content.Server.DeviceNetwork.Systems; using Content.Server.Explosion.EntitySystems; using Content.Server.Hands.Systems; using Content.Server.PowerCell; using Content.Shared.Alert; +using Content.Shared.Containers.ItemSlots; using Content.Shared.Database; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; @@ -25,10 +27,13 @@ using Content.Shared.Throwing; using Content.Shared.Whitelist; using Content.Shared.Wires; using Robust.Server.GameObjects; +using Robust.Shared.Configuration; using Robust.Shared.Containers; using Robust.Shared.Player; using Robust.Shared.Random; using Robust.Shared.Timing; +using System.Diagnostics.CodeAnalysis; +using System.Linq; namespace Content.Server.Silicons.Borgs; @@ -37,6 +42,7 @@ public sealed partial class BorgSystem : SharedBorgSystem { [Dependency] private readonly IAdminLogManager _adminLog = default!; [Dependency] private readonly IBanManager _banManager = default!; + [Dependency] private readonly IConfigurationManager _cfgManager = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ActionsSystem _actions = default!; @@ -69,9 +75,11 @@ public sealed partial class BorgSystem : SharedBorgSystem SubscribeLocalEvent(OnMindAdded); SubscribeLocalEvent(OnMindRemoved); SubscribeLocalEvent(OnMobStateChanged); + SubscribeLocalEvent(OnBeingGibbed); SubscribeLocalEvent(OnPowerCellChanged); SubscribeLocalEvent(OnPowerCellSlotEmpty); SubscribeLocalEvent(OnGetDeadIC); + SubscribeLocalEvent(OnGetUnrevivableIC); SubscribeLocalEvent(OnToggled); SubscribeLocalEvent(OnBrainMindAdded); @@ -194,6 +202,14 @@ public sealed partial class BorgSystem : SharedBorgSystem } } + private void OnBeingGibbed(EntityUid uid, BorgChassisComponent component, ref BeingGibbedEvent args) + { + TryEjectPowerCell(uid, component, out var _); + + _container.EmptyContainer(component.BrainContainer); + _container.EmptyContainer(component.ModuleContainer); + } + private void OnPowerCellChanged(EntityUid uid, BorgChassisComponent component, PowerCellChangedEvent args) { UpdateBatteryAlert((uid, component)); @@ -218,6 +234,11 @@ public sealed partial class BorgSystem : SharedBorgSystem args.Dead = true; } + private void OnGetUnrevivableIC(EntityUid uid, BorgChassisComponent component, ref GetCharacterUnrevivableIcEvent args) + { + args.Unrevivable = true; + } + private void OnToggled(Entity ent, ref ItemToggledEvent args) { var (uid, comp) = ent; @@ -288,6 +309,20 @@ public sealed partial class BorgSystem : SharedBorgSystem _alerts.ShowAlert(ent, ent.Comp.BatteryAlert, chargePercent); } + public bool TryEjectPowerCell(EntityUid uid, BorgChassisComponent component, [NotNullWhen(true)] out List? ents) + { + ents = null; + + if (!TryComp(uid, out var slotComp) || + !Container.TryGetContainer(uid, slotComp.CellSlotId, out var container) || + !container.ContainedEntities.Any()) + return false; + + ents = Container.EmptyContainer(container); + + return true; + } + /// /// Activates a borg when a player occupies it /// diff --git a/Content.Server/Silicons/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs index 90fff2e5ec..4460c82246 100644 --- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs +++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs @@ -194,7 +194,7 @@ public sealed class SiliconLawSystem : SharedSiliconLawSystem base.RemoveSubvertedSiliconRole(mindId); if (_roles.MindHasRole(mindId)) - _roles.MindTryRemoveRole(mindId); + _roles.MindRemoveRole(mindId); } public SiliconLawset GetLaws(EntityUid uid, SiliconLawBoundComponent? component = null) diff --git a/Content.Server/Silicons/StationAi/AiInteractWireAction.cs b/Content.Server/Silicons/StationAi/AiInteractWireAction.cs index c92c825b32..b7b4247a19 100644 --- a/Content.Server/Silicons/StationAi/AiInteractWireAction.cs +++ b/Content.Server/Silicons/StationAi/AiInteractWireAction.cs @@ -22,13 +22,13 @@ public sealed partial class AiInteractWireAction : ComponentWireAction() - .SetWhitelistEnabled((component.Owner, component), false, announce: true); + .SetWhitelistEnabled((wire.Owner, component), false, announce: true); } public override bool Mend(EntityUid user, Wire wire, StationAiWhitelistComponent component) { return EntityManager.System() - .SetWhitelistEnabled((component.Owner, component), true); + .SetWhitelistEnabled((wire.Owner, component), true); } public override void Pulse(EntityUid user, Wire wire, StationAiWhitelistComponent component) diff --git a/Content.Server/Silicons/StationAi/AiVisionWireAction.cs b/Content.Server/Silicons/StationAi/AiVisionWireAction.cs index c3d4a565bb..0e84d843d0 100644 --- a/Content.Server/Silicons/StationAi/AiVisionWireAction.cs +++ b/Content.Server/Silicons/StationAi/AiVisionWireAction.cs @@ -23,13 +23,13 @@ public sealed partial class AiVisionWireAction : ComponentWireAction() - .SetVisionEnabled((component.Owner, component), false, announce: true); + .SetVisionEnabled((wire.Owner, component), false, announce: true); } public override bool Mend(EntityUid user, Wire wire, StationAiVisionComponent component) { return EntityManager.System() - .SetVisionEnabled((component.Owner, component), true); + .SetVisionEnabled((wire.Owner, component), true); } public override void Pulse(EntityUid user, Wire wire, StationAiVisionComponent component) diff --git a/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs b/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs index c9e217b170..7a15ba3413 100644 --- a/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs +++ b/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs @@ -270,7 +270,7 @@ public sealed class EventHorizonSystem : SharedEventHorizonSystem var toConsume = new List<(Vector2i, Tile)>(); foreach (var tile in tiles) { - if (CanConsumeTile(hungry, tile, grid, eventHorizon)) + if (CanConsumeTile((hungry, eventHorizon), tile, (gridId, grid))) toConsume.Add((tile.GridIndices, Tile.Empty)); } @@ -284,16 +284,23 @@ public sealed class EventHorizonSystem : SharedEventHorizonSystem /// Checks whether an event horizon can consume a given tile. /// This is only possible if it can also consume all entities anchored to the tile. /// - public bool CanConsumeTile(EntityUid hungry, TileRef tile, MapGridComponent grid, EventHorizonComponent eventHorizon) + public bool CanConsumeTile(Entity hungry, TileRef tile, Entity grid) { - foreach (var blockingEntity in grid.GetAnchoredEntities(tile.GridIndices)) + foreach (var blockingEntity in _mapSystem.GetAnchoredEntities(grid, tile.GridIndices)) { - if (!CanConsumeEntity(hungry, blockingEntity, eventHorizon)) + if (!CanConsumeEntity(hungry, blockingEntity, hungry.Comp)) return false; } return true; } + /// + [Obsolete("Use the Entity overload")] + public bool CanConsumeTile(EntityUid hungry, TileRef tile, MapGridComponent grid, EventHorizonComponent eventHorizon) + { + return CanConsumeTile((hungry, eventHorizon), tile, (grid.Owner, grid)); + } + /// /// Consumes all tiles within a given distance of an entity. /// Some entities are immune to consumption. diff --git a/Content.Server/Spawners/Components/TimedSpawnerComponent.cs b/Content.Server/Spawners/Components/TimedSpawnerComponent.cs index 828e541717..8494a1a2fb 100644 --- a/Content.Server/Spawners/Components/TimedSpawnerComponent.cs +++ b/Content.Server/Spawners/Components/TimedSpawnerComponent.cs @@ -1,6 +1,6 @@ -using System.Threading; -using Robust.Shared.Prototypes; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Server.Spawners.Components; @@ -10,6 +10,7 @@ namespace Content.Server.Spawners.Components; /// and min/max number of entities to spawn. /// [RegisterComponent, EntityCategory("Spawner")] +[AutoGenerateComponentPause] public sealed partial class TimedSpawnerComponent : Component, ISerializationHooks { /// @@ -30,7 +31,7 @@ public sealed partial class TimedSpawnerComponent : Component, ISerializationHoo /// Length of the interval between spawn attempts. /// [DataField] - public int IntervalSeconds = 60; + public TimeSpan IntervalSeconds = TimeSpan.FromSeconds(60); /// /// The minimum number of entities that can be spawned when an interval elapses. @@ -44,7 +45,11 @@ public sealed partial class TimedSpawnerComponent : Component, ISerializationHoo [DataField] public int MaximumEntitiesSpawned = 1; - public CancellationTokenSource? TokenSource; + /// + /// The time at which the current interval will have elapsed and entities may be spawned. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] + public TimeSpan NextFire = TimeSpan.Zero; void ISerializationHooks.AfterDeserialization() { diff --git a/Content.Server/Spawners/EntitySystems/SpawnerSystem.cs b/Content.Server/Spawners/EntitySystems/SpawnerSystem.cs index c601fdd287..6e0b0f384d 100644 --- a/Content.Server/Spawners/EntitySystems/SpawnerSystem.cs +++ b/Content.Server/Spawners/EntitySystems/SpawnerSystem.cs @@ -1,25 +1,41 @@ -using System.Threading; using Content.Server.Spawners.Components; using Robust.Shared.Random; +using Robust.Shared.Timing; namespace Content.Server.Spawners.EntitySystems; public sealed class SpawnerSystem : EntitySystem { + [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IRobustRandom _random = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnSpawnerInit); - SubscribeLocalEvent(OnTimedSpawnerShutdown); + + SubscribeLocalEvent(OnMapInit); } - private void OnSpawnerInit(EntityUid uid, TimedSpawnerComponent component, ComponentInit args) + public override void Update(float frameTime) { - component.TokenSource?.Cancel(); - component.TokenSource = new CancellationTokenSource(); - uid.SpawnRepeatingTimer(TimeSpan.FromSeconds(component.IntervalSeconds), () => OnTimerFired(uid, component), component.TokenSource.Token); + base.Update(frameTime); + + var curTime = _timing.CurTime; + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var timedSpawner)) + { + if (timedSpawner.NextFire > curTime) + continue; + + OnTimerFired(uid, timedSpawner); + + timedSpawner.NextFire += timedSpawner.IntervalSeconds; + } + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.NextFire = _timing.CurTime + ent.Comp.IntervalSeconds; } private void OnTimerFired(EntityUid uid, TimedSpawnerComponent component) @@ -36,9 +52,4 @@ public sealed class SpawnerSystem : EntitySystem SpawnAtPosition(entity, coordinates); } } - - private void OnTimedSpawnerShutdown(EntityUid uid, TimedSpawnerComponent component, ComponentShutdown args) - { - component.TokenSource?.Cancel(); - } } diff --git a/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs b/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs index d55c6e6764..98d35efae4 100644 --- a/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs +++ b/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs @@ -5,8 +5,6 @@ namespace Content.Server.Speech.EntitySystems; public sealed class AddAccentClothingSystem : EntitySystem { - [Dependency] private readonly IComponentFactory _componentFactory = default!; - public override void Initialize() { base.Initialize(); @@ -19,12 +17,12 @@ public sealed class AddAccentClothingSystem : EntitySystem private void OnGotEquipped(EntityUid uid, AddAccentClothingComponent component, ref ClothingGotEquippedEvent args) { // does the user already has this accent? - var componentType = _componentFactory.GetRegistration(component.Accent).Type; + var componentType = Factory.GetRegistration(component.Accent).Type; if (HasComp(args.Wearer, componentType)) return; // add accent to the user - var accentComponent = (Component) _componentFactory.GetComponent(componentType); + var accentComponent = (Component) Factory.GetComponent(componentType); AddComp(args.Wearer, accentComponent); // snowflake case for replacement accent @@ -40,11 +38,8 @@ public sealed class AddAccentClothingSystem : EntitySystem return; // try to remove accent - var componentType = _componentFactory.GetRegistration(component.Accent).Type; - if (EntityManager.HasComponent(args.Wearer, componentType)) - { - EntityManager.RemoveComponent(args.Wearer, componentType); - } + var componentType = Factory.GetRegistration(component.Accent).Type; + EntityManager.RemoveComponent(args.Wearer, componentType); component.IsActive = false; } diff --git a/Content.Server/Speech/EntitySystems/DamagedSiliconAccentSystem.cs b/Content.Server/Speech/EntitySystems/DamagedSiliconAccentSystem.cs index 757d668127..47f36cafc4 100644 --- a/Content.Server/Speech/EntitySystems/DamagedSiliconAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/DamagedSiliconAccentSystem.cs @@ -1,4 +1,5 @@ using System.Text; +using Content.Server.Destructible; using Content.Server.PowerCell; using Content.Shared.Speech.Components; using Content.Shared.Damage; @@ -11,6 +12,7 @@ public sealed class DamagedSiliconAccentSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly PowerCellSystem _powerCell = default!; + [Dependency] private readonly DestructibleSystem _destructibleSystem = default!; public override void Initialize() { @@ -35,7 +37,7 @@ public sealed class DamagedSiliconAccentSystem : EntitySystem } currentChargeLevel = Math.Clamp(currentChargeLevel, 0.0f, 1.0f); // Corrupt due to low power (drops characters on longer messages) - args.Message = CorruptPower(args.Message, currentChargeLevel, ref ent.Comp); + args.Message = CorruptPower(args.Message, currentChargeLevel, ent.Comp); } if (ent.Comp.EnableDamageCorruption) @@ -50,11 +52,11 @@ public sealed class DamagedSiliconAccentSystem : EntitySystem damage = damageable.TotalDamage; } // Corrupt due to damage (drop, repeat, replace with symbols) - args.Message = CorruptDamage(args.Message, damage, ref ent.Comp); + args.Message = CorruptDamage(args.Message, damage, ent); } } - public string CorruptPower(string message, float chargeLevel, ref DamagedSiliconAccentComponent comp) + public string CorruptPower(string message, float chargeLevel, DamagedSiliconAccentComponent comp) { // The first idxMin characters are SAFE var idxMin = comp.StartPowerCorruptionAtCharIdx; @@ -104,12 +106,23 @@ public sealed class DamagedSiliconAccentSystem : EntitySystem return outMsg.ToString(); } - private string CorruptDamage(string message, FixedPoint2 totalDamage, ref DamagedSiliconAccentComponent comp) + private string CorruptDamage(string message, FixedPoint2 totalDamage, Entity ent) { var outMsg = new StringBuilder(); + + // If this is not specified, use the Destructible threshold for destruction or breakage + var damageAtMaxCorruption = ent.Comp.DamageAtMaxCorruption; + if (damageAtMaxCorruption is null) + { + if (!TryComp(ent, out var destructible)) + return message; + + damageAtMaxCorruption = _destructibleSystem.DestroyedAt(ent, destructible); + } + // Linear interpolation of character damage probability - var damagePercent = Math.Clamp((float)totalDamage / (float)comp.DamageAtMaxCorruption, 0, 1); - var chanceToCorruptLetter = damagePercent * comp.MaxDamageCorruption; + var damagePercent = Math.Clamp((float)totalDamage / (float)damageAtMaxCorruption, 0, 1); + var chanceToCorruptLetter = damagePercent * ent.Comp.MaxDamageCorruption; foreach (var letter in message) { if (_random.Prob(chanceToCorruptLetter)) // Corrupt! diff --git a/Content.Server/Speech/EntitySystems/VocalSystem.cs b/Content.Server/Speech/EntitySystems/VocalSystem.cs index d71d1b652f..e6afafa17b 100644 --- a/Content.Server/Speech/EntitySystems/VocalSystem.cs +++ b/Content.Server/Speech/EntitySystems/VocalSystem.cs @@ -50,7 +50,7 @@ public sealed class VocalSystem : EntitySystem private void OnSexChanged(EntityUid uid, VocalComponent component, SexChangedEvent args) { - LoadSounds(uid, component); + LoadSounds(uid, component, args.NewSex); } private void OnEmote(EntityUid uid, VocalComponent component, ref EmoteEvent args) diff --git a/Content.Server/Station/Systems/StationBiomeSystem.cs b/Content.Server/Station/Systems/StationBiomeSystem.cs index 8c80806ccf..c12e2f47e4 100644 --- a/Content.Server/Station/Systems/StationBiomeSystem.cs +++ b/Content.Server/Station/Systems/StationBiomeSystem.cs @@ -1,17 +1,16 @@ using Content.Server.Parallax; using Content.Server.Station.Components; using Content.Server.Station.Events; -using Content.Server.Station.Systems; -using Robust.Shared.Map; using Robust.Shared.Prototypes; namespace Content.Server.Station.Systems; + public sealed partial class StationBiomeSystem : EntitySystem { [Dependency] private readonly BiomeSystem _biome = default!; - [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly SharedMapSystem _map = default!; public override void Initialize() { @@ -28,7 +27,7 @@ public sealed partial class StationBiomeSystem : EntitySystem if (station == null) return; var mapId = Transform(station.Value).MapID; - var mapUid = _mapManager.GetMapEntityId(mapId); + var mapUid = _map.GetMapOrInvalid(mapId); _biome.EnsurePlanet(mapUid, _proto.Index(map.Comp.Biome), map.Comp.Seed, mapLight: map.Comp.MapLightColor); } diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index d7686dcf32..c6bc885c46 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -18,8 +18,6 @@ using Content.Shared.Humanoid.Prototypes; using Content.Shared.PDA; using Content.Shared.Preferences; using Content.Shared.Preferences.Loadouts; -using Content.Shared.Random; -using Content.Shared.Random.Helpers; using Content.Shared.Roles; using Content.Shared.Station; using JetBrains.Annotations; @@ -27,7 +25,6 @@ using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; -using Robust.Shared.Random; using Robust.Shared.Utility; using Content.Sunrise.Interfaces.Shared; // Sunrise-Sponsors @@ -49,7 +46,6 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem [Dependency] private readonly MetaDataSystem _metaSystem = default!; [Dependency] private readonly PdaSystem _pdaSystem = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IRobustRandom _random = default!; private ISharedSponsorsManager? _sponsorsManager; // Sunrise-Sponsors private bool _randomizeCharacters; @@ -156,53 +152,13 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem return jobEntity; } - string speciesId; - if (_randomizeCharacters) - { - var weightId = _configurationManager.GetCVar(CCVars.ICRandomSpeciesWeights); - - // If blank, choose a round start species. - if (string.IsNullOrEmpty(weightId)) - { - var roundStart = new List>(); - - var speciesPrototypes = _prototypeManager.EnumeratePrototypes(); - foreach (var proto in speciesPrototypes) - { - if (proto.RoundStart) - roundStart.Add(proto.ID); - } - - if (roundStart.Count == 0) - speciesId = SharedHumanoidAppearanceSystem.DefaultSpecies; - else - speciesId = _random.Pick(roundStart); - } - else - { - var weights = _prototypeManager.Index(weightId); - speciesId = weights.Pick(_random); - } - } - else if (profile != null) - { - speciesId = profile.Species; - } - else - { - speciesId = SharedHumanoidAppearanceSystem.DefaultSpecies; - } + string speciesId = profile != null ? profile.Species : SharedHumanoidAppearanceSystem.DefaultSpecies; if (!_prototypeManager.TryIndex(speciesId, out var species)) throw new ArgumentException($"Invalid species prototype was used: {speciesId}"); entity ??= Spawn(species.Prototype, coordinates); - if (_randomizeCharacters) - { - profile = HumanoidCharacterProfile.RandomWithSpecies(speciesId); - } - if (profile != null) { _humanoidSystem.LoadProfile(entity.Value, profile); diff --git a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs index a2781e27a3..1832f1b1a4 100644 --- a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs +++ b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs @@ -79,6 +79,7 @@ namespace Content.Server.StationEvents private EntityTableSystem? _entityTable; private IComponentFactory? _compFac; private IRobustRandom? _random; + private IPrototypeManager? _protoMan; /// /// Estimates the expected number of times an event will run over the course of X rounds, taking into account weights and @@ -95,12 +96,13 @@ namespace Content.Server.StationEvents /// to even exist) so I think it's fine. /// [CommandImplementation("simulate")] - public IEnumerable<(string, float)> Simulate([CommandArgument] Prototype eventSchedulerProto, [CommandArgument] int rounds, [CommandArgument] int playerCount, [CommandArgument] float roundEndMean, [CommandArgument] float roundEndStdDev) + public IEnumerable<(string, float)> Simulate([CommandArgument] EntProtoId eventSchedulerProto, [CommandArgument] int rounds, [CommandArgument] int playerCount, [CommandArgument] float roundEndMean, [CommandArgument] float roundEndStdDev) { _stationEvent ??= GetSys(); _entityTable ??= GetSys(); _compFac ??= IoCManager.Resolve(); _random ??= IoCManager.Resolve(); + _protoMan ??= IoCManager.Resolve(); var occurrences = new Dictionary(); @@ -109,7 +111,7 @@ namespace Content.Server.StationEvents occurrences.Add(ev.Key.ID, 0); } - eventSchedulerProto.Deconstruct(out EntityPrototype eventScheduler); + var eventScheduler = _protoMan.Index(eventSchedulerProto); if (!eventScheduler.TryGetComponent(out var basicScheduler, _compFac)) { @@ -144,16 +146,17 @@ namespace Content.Server.StationEvents } } - return occurrences.Select(p => (p.Key, (float) p.Value)).OrderByDescending(p => p.Item2); + return occurrences.Select(p => (p.Key, (float)p.Value)).OrderByDescending(p => p.Item2); } [CommandImplementation("lsprob")] - public IEnumerable<(string, float)> LsProb([CommandArgument] Prototype eventSchedulerProto) + public IEnumerable<(string, float)> LsProb([CommandArgument] EntProtoId eventSchedulerProto) { _compFac ??= IoCManager.Resolve(); _stationEvent ??= GetSys(); + _protoMan ??= IoCManager.Resolve(); - eventSchedulerProto.Deconstruct(out EntityPrototype eventScheduler); + var eventScheduler = _protoMan.Index(eventSchedulerProto); if (!eventScheduler.TryGetComponent(out var basicScheduler, _compFac)) yield break; @@ -171,12 +174,13 @@ namespace Content.Server.StationEvents } [CommandImplementation("lsprobtheoretical")] - public IEnumerable<(string, float)> LsProbTime([CommandArgument] Prototype eventSchedulerProto, [CommandArgument] int playerCount, [CommandArgument] float time) + public IEnumerable<(string, float)> LsProbTime([CommandArgument] EntProtoId eventSchedulerProto, [CommandArgument] int playerCount, [CommandArgument] float time) { _compFac ??= IoCManager.Resolve(); _stationEvent ??= GetSys(); + _protoMan ??= IoCManager.Resolve(); - eventSchedulerProto.Deconstruct(out EntityPrototype eventScheduler); + var eventScheduler = _protoMan.Index(eventSchedulerProto); if (!eventScheduler.TryGetComponent(out var basicScheduler, _compFac)) yield break; @@ -198,12 +202,13 @@ namespace Content.Server.StationEvents } [CommandImplementation("prob")] - public float Prob([CommandArgument] Prototype eventSchedulerProto, [CommandArgument] string eventId) + public float Prob([CommandArgument] EntProtoId eventSchedulerProto, [CommandArgument] string eventId) { _compFac ??= IoCManager.Resolve(); _stationEvent ??= GetSys(); + _protoMan ??= IoCManager.Resolve(); - eventSchedulerProto.Deconstruct(out EntityPrototype eventScheduler); + var eventScheduler = _protoMan.Index(eventSchedulerProto); if (!eventScheduler.TryGetComponent(out var basicScheduler, _compFac)) return 0f; diff --git a/Content.Server/StationRecords/Systems/StationRecordsSystem.cs b/Content.Server/StationRecords/Systems/StationRecordsSystem.cs index 5dbe9f93aa..a466ddbcf5 100644 --- a/Content.Server/StationRecords/Systems/StationRecordsSystem.cs +++ b/Content.Server/StationRecords/Systems/StationRecordsSystem.cs @@ -414,6 +414,10 @@ public sealed class StationRecordsSystem : SharedStationRecordsSystem { StationRecordFilterType.Name => !someRecord.Name.ToLower().Contains(filterLowerCaseValue), + StationRecordFilterType.Job => + !someRecord.JobTitle.ToLower().Contains(filterLowerCaseValue), + StationRecordFilterType.Species => + !someRecord.Species.ToLower().Contains(filterLowerCaseValue), StationRecordFilterType.Prints => someRecord.Fingerprint != null && IsFilterWithSomeCodeValue(someRecord.Fingerprint, filterLowerCaseValue), StationRecordFilterType.DNA => someRecord.DNA != null diff --git a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs index 5e0ed0a20b..859b5a1ebe 100644 --- a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs +++ b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs @@ -1,6 +1,7 @@ using Content.Server.Administration.Logs; using Content.Server.Cargo.Systems; using Content.Server.Storage.Components; +using Content.Shared.Cargo; using Content.Shared.Database; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction.Events; diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index e46b18a265..d2f6baf6f9 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -45,8 +45,7 @@ public sealed class TemperatureSystem : EntitySystem SubscribeLocalEvent(OnAtmosExposedUpdate); SubscribeLocalEvent(OnRejuvenate); SubscribeLocalEvent(ServerAlert); - SubscribeLocalEvent>( - OnTemperatureChangeAttempt); + Subs.SubscribeWithRelay(OnTemperatureChangeAttempt, held: false); SubscribeLocalEvent(OnInit); @@ -296,17 +295,16 @@ public sealed class TemperatureSystem : EntitySystem } } - private void OnTemperatureChangeAttempt(EntityUid uid, TemperatureProtectionComponent component, - InventoryRelayedEvent args) + private void OnTemperatureChangeAttempt(EntityUid uid, TemperatureProtectionComponent component, ModifyChangedTemperatureEvent args) { - var coefficient = args.Args.TemperatureDelta < 0 + var coefficient = args.TemperatureDelta < 0 ? component.CoolingCoefficient : component.HeatingCoefficient; var ev = new GetTemperatureProtectionEvent(coefficient); RaiseLocalEvent(uid, ref ev); - args.Args.TemperatureDelta *= ev.Coefficient; + args.TemperatureDelta *= ev.Coefficient; } private void ChangeTemperatureOnCollide(Entity ent, ref ProjectileHitEvent args) diff --git a/Content.Server/Tiles/RequiresTileSystem.cs b/Content.Server/Tiles/RequiresTileSystem.cs index 571065c828..41e797e820 100644 --- a/Content.Server/Tiles/RequiresTileSystem.cs +++ b/Content.Server/Tiles/RequiresTileSystem.cs @@ -26,16 +26,17 @@ public sealed class RequiresTileSystem : EntitySystem if (!TryComp(ev.Entity, out var grid)) return; - var anchored = _maps.GetAnchoredEntitiesEnumerator(ev.Entity, grid, ev.NewTile.GridIndices); - if (anchored.Equals(AnchoredEntitiesEnumerator.Empty)) - return; - - while (anchored.MoveNext(out var ent)) + foreach (var change in ev.Changes) { - if (!_tilesQuery.HasComponent(ent.Value)) - continue; + var anchored = _maps.GetAnchoredEntitiesEnumerator(ev.Entity, grid, change.GridIndices); - QueueDel(ent.Value); + while (anchored.MoveNext(out var ent)) + { + if (!_tilesQuery.HasComponent(ent.Value)) + continue; + + QueueDel(ent.Value); + } } } } diff --git a/Content.Server/Tools/ToolSystem.cs b/Content.Server/Tools/ToolSystem.cs index 7738a6398f..a88dbd3653 100644 --- a/Content.Server/Tools/ToolSystem.cs +++ b/Content.Server/Tools/ToolSystem.cs @@ -1,8 +1,6 @@ -using Content.Server.Atmos.EntitySystems; using Content.Shared.Chemistry.Components.SolutionManager; using Content.Shared.FixedPoint; using Content.Shared.Tools.Components; -using Robust.Server.GameObjects; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; @@ -10,20 +8,6 @@ namespace Content.Server.Tools; public sealed class ToolSystem : SharedToolSystem { - [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; - [Dependency] private readonly TransformSystem _transformSystem = default!; - - public override void TurnOn(Entity entity, EntityUid? user) - { - base.TurnOn(entity, user); - var xform = Transform(entity); - if (xform.GridUid is { } gridUid) - { - var position = _transformSystem.GetGridOrMapTilePosition(entity.Owner, xform); - _atmosphereSystem.HotspotExpose(gridUid, position, 700, 50, entity.Owner, true); - } - } - public override void Update(float frameTime) { base.Update(frameTime); diff --git a/Content.Server/TurretController/DeployableTurretControllerSystem.cs b/Content.Server/TurretController/DeployableTurretControllerSystem.cs new file mode 100644 index 0000000000..f0b6881431 --- /dev/null +++ b/Content.Server/TurretController/DeployableTurretControllerSystem.cs @@ -0,0 +1,152 @@ +using Content.Server.DeviceNetwork.Systems; +using Content.Shared.Access; +using Content.Shared.DeviceNetwork; +using Content.Shared.DeviceNetwork.Components; +using Content.Shared.DeviceNetwork.Events; +using Content.Shared.DeviceNetwork.Systems; +using Content.Shared.TurretController; +using Content.Shared.Turrets; +using Robust.Server.GameObjects; +using Robust.Shared.Prototypes; +using System.Linq; + +namespace Content.Server.TurretController; + +/// +public sealed partial class DeployableTurretControllerSystem : SharedDeployableTurretControllerSystem +{ + [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; + [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; + + /// Keys for the device network. See for further examples. + public const string CmdSetArmamemtState = "set_armament_state"; + public const string CmdSetAccessExemptions = "set_access_exemption"; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnBUIOpened); + SubscribeLocalEvent(OnDeviceListUpdate); + SubscribeLocalEvent(OnPacketReceived); + } + + private void OnBUIOpened(Entity ent, ref BoundUIOpenedEvent args) + { + UpdateUIState(ent); + } + + private void OnDeviceListUpdate(Entity ent, ref DeviceListUpdateEvent args) + { + if (!TryComp(ent, out var deviceNetwork)) + return; + + // List of new added turrets + var turretsToAdd = args.Devices.Except(args.OldDevices); + + // Request data from newly linked devices + var payload = new NetworkPayload + { + [DeviceNetworkConstants.Command] = DeviceNetworkConstants.CmdUpdatedState, + }; + + foreach (var turretUid in turretsToAdd) + { + if (!HasComp(turretUid)) + continue; + + if (!TryComp(turretUid, out var turretDeviceNetwork)) + continue; + + _deviceNetwork.QueuePacket(ent, turretDeviceNetwork.Address, payload, device: deviceNetwork); + } + + // Remove newly unlinked devices + var turretsToRemove = args.OldDevices.Except(args.Devices); + var refreshUi = false; + + foreach (var turretUid in turretsToRemove) + { + if (!TryComp(turretUid, out var turretDeviceNetwork)) + continue; + + if (ent.Comp.LinkedTurrets.Remove(turretDeviceNetwork.Address)) + refreshUi = true; + } + + if (refreshUi) + UpdateUIState(ent); + } + + private void OnPacketReceived(Entity ent, ref DeviceNetworkPacketEvent args) + { + if (!args.Data.TryGetValue(DeviceNetworkConstants.Command, out string? command)) + return; + + if (!TryComp(ent, out var deviceNetwork) || deviceNetwork.ReceiveFrequency != args.Frequency) + return; + + // If an update was received from a turret, connect to it and update the UI + if (command == DeviceNetworkConstants.CmdUpdatedState && + args.Data.TryGetValue(command, out DeployableTurretState updatedState)) + { + ent.Comp.LinkedTurrets[args.SenderAddress] = updatedState; + UpdateUIState(ent); + } + } + + protected override void ChangeArmamentSetting(Entity ent, int armamentState, EntityUid? user = null) + { + base.ChangeArmamentSetting(ent, armamentState, user); + + if (!TryComp(ent, out var device)) + return; + + // Update linked turrets' armament statuses + var payload = new NetworkPayload + { + [DeviceNetworkConstants.Command] = CmdSetArmamemtState, + [CmdSetArmamemtState] = armamentState, + }; + + _deviceNetwork.QueuePacket(ent, null, payload, device: device); + } + + protected override void ChangeExemptAccessLevels( + Entity ent, + HashSet> exemptions, + bool enabled, + EntityUid? user = null + ) + { + base.ChangeExemptAccessLevels(ent, exemptions, enabled, user); + + if (!TryComp(ent, out var device) || + !TryComp(ent, out var turretTargetingSettings)) + return; + + // Update linked turrets' target selection exemptions + var payload = new NetworkPayload + { + [DeviceNetworkConstants.Command] = CmdSetAccessExemptions, + [CmdSetAccessExemptions] = turretTargetingSettings.ExemptAccessLevels, + }; + + _deviceNetwork.QueuePacket(ent, null, payload, device: device); + } + + private void UpdateUIState(Entity ent) + { + var turretStates = new Dictionary(); + + foreach (var (address, state) in ent.Comp.LinkedTurrets) + { + var stateName = state.ToString().ToLower(); + var stateDesc = Loc.GetString("turret-controls-window-turret-" + stateName); + turretStates.Add(address, stateDesc); + } + + var uiState = new DeployableTurretControllerBoundInterfaceState(turretStates); + _userInterfaceSystem.SetUiState(ent.Owner, DeployableTurretControllerUiKey.Key, uiState); + } +} diff --git a/Content.Server/Turrets/DeployableTurretSystem.cs b/Content.Server/Turrets/DeployableTurretSystem.cs index 72c011bc90..9bb382badf 100644 --- a/Content.Server/Turrets/DeployableTurretSystem.cs +++ b/Content.Server/Turrets/DeployableTurretSystem.cs @@ -1,20 +1,23 @@ using Content.Server.Destructible; -using Content.Server.DeviceNetwork; -using Content.Server.DeviceNetwork.Components; using Content.Server.DeviceNetwork.Systems; using Content.Server.NPC.HTN; using Content.Server.NPC.HTN.PrimitiveTasks.Operators.Combat.Ranged; using Content.Server.Power.Components; using Content.Server.Repairable; +using Content.Server.TurretController; +using Content.Shared.Access; using Content.Shared.Destructible; using Content.Shared.DeviceNetwork; using Content.Shared.DeviceNetwork.Components; using Content.Shared.DeviceNetwork.Events; using Content.Shared.Power; using Content.Shared.Turrets; +using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; +using Content.Shared.Weapons.Ranged.Systems; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; +using Robust.Shared.Prototypes; using Robust.Shared.Timing; namespace Content.Server.Turrets; @@ -25,6 +28,8 @@ public sealed partial class DeployableTurretSystem : SharedDeployableTurretSyste [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; + [Dependency] private readonly BatteryWeaponFireModesSystem _fireModes = default!; + [Dependency] private readonly TurretTargetSettingsSystem _turretTargetingSettings = default!; [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() @@ -36,6 +41,7 @@ public sealed partial class DeployableTurretSystem : SharedDeployableTurretSyste SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnBroken); SubscribeLocalEvent(OnRepaired); + SubscribeLocalEvent(OnPacketReceived); SubscribeLocalEvent(OnBeforeBroadcast); } @@ -68,6 +74,39 @@ public sealed partial class DeployableTurretSystem : SharedDeployableTurretSyste _appearance.SetData(ent, DeployableTurretVisuals.Broken, false, appearance); } + private void OnPacketReceived(Entity ent, ref DeviceNetworkPacketEvent args) + { + if (!args.Data.TryGetValue(DeviceNetworkConstants.Command, out string? command)) + return; + + // Received a command to change armament state + if (command == DeployableTurretControllerSystem.CmdSetArmamemtState && + args.Data.TryGetValue(command, out int? armamentState)) + { + if (TryComp(ent, out var batteryWeaponFireModes)) + _fireModes.TrySetFireMode(ent, batteryWeaponFireModes, armamentState.Value); + + TrySetState(ent, armamentState.Value >= 0); + return; + } + + // Received a command to change access exemptions + if (command == DeployableTurretControllerSystem.CmdSetAccessExemptions && + args.Data.TryGetValue(command, out HashSet>? accessExemptions) && + TryComp(ent, out var turretTargetSettings)) + { + _turretTargetingSettings.SyncAccessLevelExemptions((ent, turretTargetSettings), accessExemptions); + return; + } + + // Received a command to update the device network + if (command == DeviceNetworkConstants.CmdUpdatedState) + { + SendStateUpdateToDeviceNetwork(ent); + return; + } + } + private void OnBeforeBroadcast(Entity ent, ref BeforeBroadcastAttemptEvent args) { if (!TryComp(ent, out var deviceNetwork)) diff --git a/Content.Server/UserInterface/StatValuesCommand.cs b/Content.Server/UserInterface/StatValuesCommand.cs index 85b979f83a..d64984b574 100644 --- a/Content.Server/UserInterface/StatValuesCommand.cs +++ b/Content.Server/UserInterface/StatValuesCommand.cs @@ -19,7 +19,6 @@ namespace Content.Server.UserInterface; public sealed class StatValuesCommand : IConsoleCommand { [Dependency] private readonly EuiManager _eui = default!; - [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly IEntityManager _entManager = default!; [Dependency] private readonly IPrototypeManager _proto = default!; @@ -174,7 +173,7 @@ public sealed class StatValuesCommand : IConsoleCommand private StatValuesEuiMessage GetMelee() { var values = new List(); - var meleeName = _factory.GetComponentName(typeof(MeleeWeaponComponent)); + var meleeName = _entManager.ComponentFactory.GetComponentName(); foreach (var proto in _proto.EnumeratePrototypes()) { @@ -257,7 +256,7 @@ public sealed class StatValuesCommand : IConsoleCommand private StatValuesEuiMessage GetDrawRateMessage() { var values = new List(); - var powerName = _factory.GetComponentName(typeof(ApcPowerReceiverComponent)); + var powerName = _entManager.ComponentFactory.GetComponentName(); foreach (var proto in _proto.EnumeratePrototypes()) { diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs index bd95c92327..954c5d6ca1 100644 --- a/Content.Server/VendingMachines/VendingMachineSystem.cs +++ b/Content.Server/VendingMachines/VendingMachineSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Cargo.Systems; using Content.Server.Emp; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; +using Content.Shared.Cargo; using Content.Shared.Damage; using Content.Shared.Destructible; using Content.Shared.DoAfter; diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.cs b/Content.Server/VoiceMask/VoiceMaskSystem.cs index 62d2249858..fc1a647386 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Actions; using Content.Shared.Administration.Logs; +using Content.Shared.CCVar; using Content.Shared.Chat; using Content.Shared.Clothing; using Content.Shared.Database; @@ -8,6 +9,7 @@ using Content.Shared.Popups; using Content.Shared.Preferences; using Content.Shared.Speech; using Content.Shared.VoiceMask; +using Robust.Shared.Configuration; using Robust.Shared.Prototypes; namespace Content.Server.VoiceMask; @@ -16,10 +18,14 @@ public sealed partial class VoiceMaskSystem : EntitySystem { [Dependency] private readonly SharedUserInterfaceSystem _uiSystem = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly IConfigurationManager _cfgManager = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly SharedActionsSystem _actions = default!; + // CCVar. + private int _maxNameLength; + public override void Initialize() { base.Initialize(); @@ -29,7 +35,10 @@ public sealed partial class VoiceMaskSystem : EntitySystem SubscribeLocalEvent(OnEquip); SubscribeLocalEvent(OnUnequip); SubscribeLocalEvent(OpenUI); + InitializeTTS(); // Sunrise-TTS + + //Subs.CVar(_cfgManager, CCVars.MaxNameLength, value => _maxNameLength = value, true); } private void OnTransformSpeakerName(Entity entity, ref InventoryRelayedEvent args) @@ -54,7 +63,7 @@ public sealed partial class VoiceMaskSystem : EntitySystem private void OnChangeName(Entity entity, ref VoiceMaskChangeNameMessage message) { - if (message.Name.Length > HumanoidCharacterProfile.MaxNameLength || message.Name.Length <= 0) + if (message.Name.Length > _maxNameLength || message.Name.Length <= 0) { _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-failure"), entity, message.Actor, PopupType.SmallCaution); return; diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs index dfb5532a63..7dce83ece0 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs @@ -124,7 +124,7 @@ public sealed partial class GunSystem if (component is ProjectileBatteryAmmoProviderComponent battery) { if (ProtoManager.Index(battery.Prototype).Components - .TryGetValue(_factory.GetComponentName(typeof(ProjectileComponent)), out var projectile)) + .TryGetValue(Factory.GetComponentName(), out var projectile)) { var p = (ProjectileComponent) projectile.Component; diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs index 1f9fcb945f..60e1ad1385 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs @@ -89,7 +89,7 @@ public sealed partial class GunSystem return null; if (entityProto.Components - .TryGetValue(_factory.GetComponentName(typeof(ProjectileComponent)), out var projectile)) + .TryGetValue(Factory.GetComponentName(), out var projectile)) { var p = (ProjectileComponent) projectile.Component; diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index 002181fe99..b21bc455df 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Cargo.Systems; using Content.Server.Hands.Systems; using Content.Server.Power.EntitySystems; using Content.Server.Weapons.Ranged.Components; +using Content.Shared.Cargo; using Content.Shared._Sunrise.Events; using Content.Shared.Buckle.Components; using Content.Shared.Damage; @@ -26,20 +27,16 @@ using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; using Robust.Shared.Containers; -using Content.Server.PowerCell; namespace Content.Server.Weapons.Ranged.Systems; public sealed partial class GunSystem : SharedGunSystem { - [Dependency] private readonly IComponentFactory _factory = default!; - [Dependency] private readonly BatterySystem _battery = default!; [Dependency] private readonly DamageExamineSystem _damageExamine = default!; [Dependency] private readonly PricingSystem _pricing = default!; [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; - [Dependency] private readonly StaminaSystem _stamina = default!; + [Dependency] private readonly SharedStaminaSystem _stamina = default!; [Dependency] private readonly SharedContainerSystem _container = default!; - [Dependency] private readonly PowerCellSystem _powerCell = default!; [Dependency] private readonly SharedMapSystem _map = default!; [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly IComponentFactory _componentFactory = default!; diff --git a/Content.Server/Weather/WeatherSystem.cs b/Content.Server/Weather/WeatherSystem.cs index ec37780913..1ed61b8626 100644 --- a/Content.Server/Weather/WeatherSystem.cs +++ b/Content.Server/Weather/WeatherSystem.cs @@ -43,7 +43,7 @@ public sealed class WeatherSystem : SharedWeatherSystem var mapId = new MapId(mapInt); - if (!MapManager.MapExists(mapId)) + if (!_mapSystem.MapExists(mapId)) return; if (!_mapSystem.TryGetMap(mapId, out var mapUid)) diff --git a/Content.Server/Xenoarchaeology/Artifact/XenoArtifactSystem.cs b/Content.Server/Xenoarchaeology/Artifact/XenoArtifactSystem.cs index fbea515dc3..312090c9d0 100644 --- a/Content.Server/Xenoarchaeology/Artifact/XenoArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/Artifact/XenoArtifactSystem.cs @@ -1,4 +1,4 @@ -using Content.Server.Cargo.Systems; +using Content.Shared.Cargo; using Content.Shared.Xenoarchaeology.Artifact; using Content.Shared.Xenoarchaeology.Artifact.Components; diff --git a/Content.Server/Zombies/ZombieSystem.cs b/Content.Server/Zombies/ZombieSystem.cs index fb998ee818..4b3431e137 100644 --- a/Content.Server/Zombies/ZombieSystem.cs +++ b/Content.Server/Zombies/ZombieSystem.cs @@ -77,6 +77,7 @@ namespace Content.Server.Zombies SubscribeLocalEvent(OnZombieCloning); SubscribeLocalEvent(OnSleepAttempt); SubscribeLocalEvent(OnGetCharacterDeadIC); + SubscribeLocalEvent(OnGetCharacterUnrevivableIC); SubscribeLocalEvent(OnMindAdded); SubscribeLocalEvent(OnMindRemoved); @@ -280,6 +281,11 @@ namespace Content.Server.Zombies args.Dead = true; } + private void OnGetCharacterUnrevivableIC(EntityUid uid, ZombieComponent component, ref GetCharacterUnrevivableIcEvent args) + { + args.Unrevivable = true; + } + private void OnStartup(EntityUid uid, ZombieComponent component, ComponentStartup args) { if (component.EmoteSoundsId == null) @@ -440,7 +446,7 @@ namespace Content.Server.Zombies // Remove the role when getting cloned, getting gibbed and borged, or leaving the body via any other method. private void OnMindRemoved(Entity ent, ref MindRemovedMessage args) { - _role.MindTryRemoveRole(args.Mind); + _role.MindRemoveRole((args.Mind.Owner, args.Mind.Comp)); } } } diff --git a/Content.Shared.Database/LogType.cs b/Content.Shared.Database/LogType.cs index 0042ba8f72..dc8265bb43 100644 --- a/Content.Shared.Database/LogType.cs +++ b/Content.Shared.Database/LogType.cs @@ -467,5 +467,10 @@ public enum LogType /// /// Artifact node got activated. /// - ArtifactNode = 101 + ArtifactNode = 101, + + /// + /// Damaging grid collision has occurred. + /// + ShuttleImpact = 102 } diff --git a/Content.Shared/Access/AccessGroupPrototype.cs b/Content.Shared/Access/AccessGroupPrototype.cs index ca73aa3dd0..78292df44d 100644 --- a/Content.Shared/Access/AccessGroupPrototype.cs +++ b/Content.Shared/Access/AccessGroupPrototype.cs @@ -1,6 +1,5 @@ -using Content.Shared.Access.Components; +using Content.Shared.Access.Components; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; namespace Content.Shared.Access; @@ -14,6 +13,23 @@ public sealed partial class AccessGroupPrototype : IPrototype [IdDataField] public string ID { get; private set; } = default!; - [DataField("tags", required: true)] + /// + /// The player-visible name of the access level group + /// + [DataField] + public string? Name { get; set; } + + /// + /// The access levels associated with this group + /// + [DataField(required: true)] public HashSet> Tags = default!; + + public string GetAccessGroupName() + { + if (Name is { } name) + return Loc.GetString(name); + + return ID; + } } diff --git a/Content.Shared/Access/Components/IdCardConsoleComponent.cs b/Content.Shared/Access/Components/IdCardConsoleComponent.cs index 7c0868e38d..ce50d7567e 100644 --- a/Content.Shared/Access/Components/IdCardConsoleComponent.cs +++ b/Content.Shared/Access/Components/IdCardConsoleComponent.cs @@ -10,9 +10,6 @@ namespace Content.Shared.Access.Components; [Access(typeof(SharedIdCardConsoleSystem))] public sealed partial class IdCardConsoleComponent : Component { - public const int MaxFullNameLength = 30; - public const int MaxJobTitleLength = 30; - public static string PrivilegedIdCardSlotId = "IdCardConsole-privilegedId"; public static string TargetIdCardSlotId = "IdCardConsole-targetId"; diff --git a/Content.Shared/Access/Systems/SharedIdCardSystem.cs b/Content.Shared/Access/Systems/SharedIdCardSystem.cs index 9ee2564b70..546ac62642 100644 --- a/Content.Shared/Access/Systems/SharedIdCardSystem.cs +++ b/Content.Shared/Access/Systems/SharedIdCardSystem.cs @@ -2,6 +2,7 @@ using System.Globalization; using System.Linq; using Content.Shared.Access.Components; using Content.Shared.Administration.Logs; +using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.Hands.Components; using Content.Shared.IdentityManagement; @@ -9,6 +10,7 @@ using Content.Shared.Inventory; using Content.Shared.PDA; using Content.Shared.Roles; using Content.Shared.StatusIcon; +using Robust.Shared.Configuration; using Robust.Shared.Prototypes; using Robust.Shared.Timing; @@ -16,6 +18,7 @@ namespace Content.Shared.Access.Systems; public abstract class SharedIdCardSystem : EntitySystem { + [Dependency] private readonly IConfigurationManager _cfgManager = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly SharedAccessSystem _access = default!; @@ -23,6 +26,10 @@ public abstract class SharedIdCardSystem : EntitySystem [Dependency] private readonly MetaDataSystem _metaSystem = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + // CCVar. + private int _maxNameLength; + private int _maxIdJobLength; + public override void Initialize() { base.Initialize(); @@ -30,6 +37,9 @@ public abstract class SharedIdCardSystem : EntitySystem SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnTryGetIdentityShortInfo); SubscribeLocalEvent(OnRename); + + Subs.CVar(_cfgManager, CCVars.MaxNameLength, value => _maxNameLength = value, true); + Subs.CVar(_cfgManager, CCVars.MaxIdJobLength, value => _maxIdJobLength = value, true); } private void OnRename(ref EntityRenamedEvent ev) @@ -132,8 +142,8 @@ public abstract class SharedIdCardSystem : EntitySystem { jobTitle = jobTitle.Trim(); - if (jobTitle.Length > IdCardConsoleComponent.MaxJobTitleLength) - jobTitle = jobTitle[..IdCardConsoleComponent.MaxJobTitleLength]; + if (jobTitle.Length > _maxIdJobLength) + jobTitle = jobTitle[.._maxIdJobLength]; } else { @@ -253,8 +263,8 @@ public abstract class SharedIdCardSystem : EntitySystem if (!string.IsNullOrWhiteSpace(fullName)) { fullName = fullName.Trim(); - if (fullName.Length > IdCardConsoleComponent.MaxFullNameLength) - fullName = fullName[..IdCardConsoleComponent.MaxFullNameLength]; + if (fullName.Length > _maxNameLength) + fullName = fullName[.._maxNameLength]; } else { diff --git a/Content.Shared/Animals/UdderSystem.cs b/Content.Shared/Animals/UdderSystem.cs index 177fbab2f2..90cc717321 100644 --- a/Content.Shared/Animals/UdderSystem.cs +++ b/Content.Shared/Animals/UdderSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Popups; using Content.Shared.Udder; using Content.Shared.Verbs; +using Robust.Shared.Containers; using Robust.Shared.Timing; namespace Content.Shared.Animals; @@ -31,6 +32,7 @@ public sealed class UdderSystem : EntitySystem SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent>(AddMilkVerb); SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnEntRemoved); } private void OnMapInit(EntityUid uid, UdderComponent component, MapInitEvent args) @@ -38,6 +40,16 @@ public sealed class UdderSystem : EntitySystem component.NextGrowth = _timing.CurTime + component.GrowthDelay; } + private void OnEntRemoved(Entity entity, ref EntRemovedFromContainerMessage args) + { + // Make sure the removed entity was our contained solution + if (entity.Comp.Solution == null || args.Entity != entity.Comp.Solution.Value.Owner) + return; + + // Cleared our cached reference to the solution entity + entity.Comp.Solution = null; + } + public override void Update(float frameTime) { base.Update(frameTime); diff --git a/Content.Shared/Animals/WoolySystem.cs b/Content.Shared/Animals/WoolySystem.cs index b7e0f52982..172e3b56e1 100644 --- a/Content.Shared/Animals/WoolySystem.cs +++ b/Content.Shared/Animals/WoolySystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Nutrition; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; +using Robust.Shared.Containers; using Robust.Shared.Timing; namespace Content.Shared.Animals; @@ -24,6 +25,7 @@ public sealed class WoolySystem : EntitySystem SubscribeLocalEvent(OnBeforeFullyEaten); SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnEntRemoved); } private void OnMapInit(EntityUid uid, WoolyComponent component, MapInitEvent args) @@ -31,6 +33,16 @@ public sealed class WoolySystem : EntitySystem component.NextGrowth = _timing.CurTime + component.GrowthDelay; } + private void OnEntRemoved(Entity entity, ref EntRemovedFromContainerMessage args) + { + // Make sure the removed entity was our contained solution + if (entity.Comp.Solution == null || args.Entity != entity.Comp.Solution.Value.Owner) + return; + + // Clear our cached reference to the solution entity + entity.Comp.Solution = null; + } + public override void Update(float frameTime) { base.Update(frameTime); diff --git a/Content.Shared/Anomaly/SharedAnomalySystem.cs b/Content.Shared/Anomaly/SharedAnomalySystem.cs index 666d98bfc6..3d00d43f41 100644 --- a/Content.Shared/Anomaly/SharedAnomalySystem.cs +++ b/Content.Shared/Anomaly/SharedAnomalySystem.cs @@ -51,13 +51,18 @@ public abstract class SharedAnomalySystem : EntitySystem return; // anomalies are static by default, so we have set them to dynamic to be throwable - _physics.SetBodyType(ent, BodyType.Dynamic, body: body); + // only regular anomalies are static, so the check is meant to filter out things such as infection anomalies, which affect players + if (TryComp(ent, out var physics) && physics.BodyType == BodyType.Static) + _physics.SetBodyType(ent, BodyType.Dynamic, body: body); ChangeAnomalyStability(ent, Random.NextFloat(corePowered.StabilityPerThrow.X, corePowered.StabilityPerThrow.Y), ent.Comp); } private void OnLand(Entity ent, ref LandEvent args) { - // revert back to static + // revert back to static, but only if the object was dynamic (such as thrown anomalies, but not anomaly infected players) + if (!TryComp(ent, out var body) || body.BodyType != BodyType.Dynamic) + return; + _physics.SetBodyType(ent, BodyType.Static); } @@ -371,13 +376,19 @@ public abstract class SharedAnomalySystem : EntitySystem if (!TryComp(xform.GridUid, out var grid)) return null; + // How many spawn points we will be aiming to return var amount = (int) (MathHelper.Lerp(settings.MinAmount, settings.MaxAmount, severity * stability * powerModifier) + 0.5f); - var localpos = xform.Coordinates.Position; - var tilerefs = _map.GetLocalTilesIntersecting( - xform.GridUid.Value, - grid, - new Box2(localpos + new Vector2(-settings.MaxRange, -settings.MaxRange), localpos + new Vector2(settings.MaxRange, settings.MaxRange))) + // When the entity is in a container or buckled (such as a hosted anomaly), local coordinates will not be comparable + // to tile coordinates. + // Get the world coordinates for the anomalous entity + var worldPos = _transform.GetWorldPosition(uid); + + // Get a list of the tiles within the maximum range of the effect + var tilerefs = _map.GetTilesIntersecting( + xform.GridUid.Value, + grid, + new Box2(worldPos + new Vector2(-settings.MaxRange), worldPos + new Vector2(settings.MaxRange))) .ToList(); if (tilerefs.Count == 0) @@ -391,7 +402,10 @@ public abstract class SharedAnomalySystem : EntitySystem break; var tileref = Random.Pick(tilerefs); - var distance = MathF.Sqrt(MathF.Pow(tileref.X - xform.LocalPosition.X, 2) + MathF.Pow(tileref.Y - xform.LocalPosition.Y, 2)); + + // Get the world position of the tile to calculate the distance to the anomalous object + var tileWorldPos = _map.GridTileToWorldPos(xform.GridUid.Value, grid, tileref.GridIndices); + var distance = Vector2.Distance(tileWorldPos, worldPos); //cut outer & inner circle if (distance > settings.MaxRange || distance < settings.MinRange) @@ -430,7 +444,7 @@ public abstract class SharedAnomalySystem : EntitySystem } [DataRecord] -public record struct AnomalySpawnSettings() +public partial record struct AnomalySpawnSettings() { /// /// should entities block spawning? diff --git a/Content.Shared/Atmos/Components/GasTankComponent.cs b/Content.Shared/Atmos/Components/GasTankComponent.cs index 4214913f38..805874af33 100644 --- a/Content.Shared/Atmos/Components/GasTankComponent.cs +++ b/Content.Shared/Atmos/Components/GasTankComponent.cs @@ -91,7 +91,7 @@ public sealed partial class GasTankComponent : Component, IGasMixtureHolder /// Increases explosion for each scale kPa above threshold. /// [DataField] - public float TankFragmentScale = 2 * Atmospherics.OneAtmosphere; + public float TankFragmentScale = 2.25f * Atmospherics.OneAtmosphere; [DataField] public EntProtoId ToggleAction = "ActionToggleInternals"; diff --git a/Content.Shared/Atmos/GetFireProtectionEvent.cs b/Content.Shared/Atmos/GetFireProtectionEvent.cs index e243295449..b7a77a8925 100644 --- a/Content.Shared/Atmos/GetFireProtectionEvent.cs +++ b/Content.Shared/Atmos/GetFireProtectionEvent.cs @@ -29,5 +29,6 @@ public sealed class GetFireProtectionEvent : EntityEventArgs, IInventoryRelayEve public void Reduce(float by) { Multiplier -= by; + Multiplier = MathF.Max(Multiplier, 0f); } } diff --git a/Content.Shared/Atmos/Monitor/Components/SharedAirAlarmComponent.cs b/Content.Shared/Atmos/Monitor/Components/SharedAirAlarmComponent.cs index ce3f00094a..3d67d18a0a 100644 --- a/Content.Shared/Atmos/Monitor/Components/SharedAirAlarmComponent.cs +++ b/Content.Shared/Atmos/Monitor/Components/SharedAirAlarmComponent.cs @@ -37,7 +37,7 @@ public interface IAtmosDeviceData [Serializable, NetSerializable] public sealed class AirAlarmUIState : BoundUserInterfaceState { - public AirAlarmUIState(string address, int deviceCount, float pressureAverage, float temperatureAverage, List<(string, IAtmosDeviceData)> deviceData, AirAlarmMode mode, AtmosAlarmType alarmType, bool autoMode) + public AirAlarmUIState(string address, int deviceCount, float pressureAverage, float temperatureAverage, List<(string, IAtmosDeviceData)> deviceData, AirAlarmMode mode, AtmosAlarmType alarmType, bool autoMode, bool panicWireCut) { Address = address; DeviceCount = deviceCount; @@ -47,6 +47,7 @@ public sealed class AirAlarmUIState : BoundUserInterfaceState Mode = mode; AlarmType = alarmType; AutoMode = autoMode; + PanicWireCut = panicWireCut; } public string Address { get; } @@ -64,6 +65,7 @@ public sealed class AirAlarmUIState : BoundUserInterfaceState public AirAlarmMode Mode { get; } public AtmosAlarmType AlarmType { get; } public bool AutoMode { get; } + public bool PanicWireCut { get; } } [Serializable, NetSerializable] diff --git a/Content.Shared/Atmos/Piping/Binary/Components/GasValveComponent.cs b/Content.Shared/Atmos/Piping/Binary/Components/GasValveComponent.cs new file mode 100644 index 0000000000..9ddebc97af --- /dev/null +++ b/Content.Shared/Atmos/Piping/Binary/Components/GasValveComponent.cs @@ -0,0 +1,36 @@ +using Content.Shared.Atmos.Piping.Binary.Systems; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Atmos.Piping.Binary.Components; + +/// +/// Component for manual atmospherics pumps that can open or close to let gas through. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedGasValveSystem))] +public sealed partial class GasValveComponent : Component +{ + /// + /// Whether the valve is currently open and letting gas through. + /// + [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadOnly)] + public bool Open = true; + + /// + /// Inlet for the nodecontainer. + /// + [DataField("inlet")] + public string InletName = "inlet"; + + /// + /// Outlet for the nodecontainer. + /// + [DataField("outlet")] + public string OutletName = "outlet"; + + /// + /// Sound when is toggled. + /// + [DataField] + public SoundSpecifier ValveSound = new SoundCollectionSpecifier("valveSqueak"); +} diff --git a/Content.Shared/Atmos/Piping/Binary/Systems/SharedGasValveSystem.cs b/Content.Shared/Atmos/Piping/Binary/Systems/SharedGasValveSystem.cs new file mode 100644 index 0000000000..1736c466e2 --- /dev/null +++ b/Content.Shared/Atmos/Piping/Binary/Systems/SharedGasValveSystem.cs @@ -0,0 +1,68 @@ +using Content.Shared.Atmos.Piping.Binary.Components; +using Content.Shared.Examine; +using Content.Shared.Interaction; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; + +namespace Content.Shared.Atmos.Piping.Binary.Systems; + +public abstract class SharedGasValveSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnActivate); + SubscribeLocalEvent(OnExamined); + } + + private void OnStartup(Entity ent, ref ComponentStartup args) + { + // We call set in startup so it sets the appearance, node state, etc. + Set(ent.Owner, ent.Comp, ent.Comp.Open); + } + + public virtual void Set(EntityUid uid, GasValveComponent component, bool value) + { + component.Open = value; + Dirty(uid, component); + + if (TryComp(uid, out var appearance)) + { + _appearance.SetData(uid, FilterVisuals.Enabled, component.Open, appearance); + } + } + + public void Toggle(EntityUid uid, GasValveComponent component) + { + Set(uid, component, !component.Open); + } + + private void OnActivate(Entity ent, ref ActivateInWorldEvent args) + { + if (args.Handled || !args.Complex) + return; + + Toggle(ent.Owner, ent.Comp); + _audio.PlayPredicted(ent.Comp.ValveSound, ent.Owner, args.User, AudioParams.Default.WithVariation(0.25f)); + args.Handled = true; + } + + private void OnExamined(Entity ent, ref ExaminedEvent args) + { + var valve = ent.Comp; + if (!Transform(ent).Anchored) + return; + + if (Loc.TryGetString("gas-valve-system-examined", out var str, + ("statusColor", valve.Open ? "green" : "orange"), + ("open", valve.Open))) + { + args.PushMarkup(str); + } + } +} diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs b/Content.Shared/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs similarity index 77% rename from Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs rename to Content.Shared/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs index f481443c94..9317594ad2 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs +++ b/Content.Shared/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs @@ -1,9 +1,10 @@ using Content.Shared.Atmos; using Content.Shared.Guidebook; +using Robust.Shared.GameStates; -namespace Content.Server.Atmos.Piping.Unary.Components +namespace Content.Shared.Atmos.Piping.Unary.Components { - [RegisterComponent] + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] public sealed partial class GasThermoMachineComponent : Component { [DataField("inlet")] @@ -13,11 +14,11 @@ namespace Content.Server.Atmos.Piping.Unary.Components /// Current electrical power consumption, in watts. Increasing power increases the ability of the /// thermomachine to heat or cool air. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] [GuidebookData] public float HeatCapacity = 5000; - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public float TargetTemperature = Atmospherics.T20C; /// @@ -39,42 +40,41 @@ namespace Content.Server.Atmos.Piping.Unary.Components /// Positive for heaters, negative for freezers. /// [DataField("coefficientOfPerformance")] - [ViewVariables(VVAccess.ReadWrite)] public float Cp = 0.9f; // output power / input power, positive is heat /// /// Current minimum temperature /// Ignored if heater. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - [GuidebookData] + [DataField, AutoNetworkedField] + [GuidebookData] public float MinTemperature = 73.15f; /// /// Current maximum temperature /// Ignored if freezer. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - [GuidebookData] + [DataField, AutoNetworkedField] + [GuidebookData] public float MaxTemperature = 593.15f; /// /// Last amount of energy added/removed from the attached pipe network /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public float LastEnergyDelta; /// /// An percentage of the energy change that is leaked into the surrounding environment rather than the inlet pipe. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - [GuidebookData] - public float EnergyLeakPercentage; + [DataField] + [GuidebookData] + public float EnergyLeakPercentage; /// /// If true, heat is exclusively exchanged with the local atmosphere instead of the inlet pipe air /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public bool Atmospheric = false; + [DataField] + public bool Atmospheric; } } diff --git a/Content.Shared/Atmos/Piping/Unary/Components/SharedGasThermomachineComponent.cs b/Content.Shared/Atmos/Piping/Unary/Components/SharedGasThermomachineComponent.cs index 259ebf4eea..5d2beb9de5 100644 --- a/Content.Shared/Atmos/Piping/Unary/Components/SharedGasThermomachineComponent.cs +++ b/Content.Shared/Atmos/Piping/Unary/Components/SharedGasThermomachineComponent.cs @@ -7,7 +7,7 @@ public sealed record GasThermoMachineData(float EnergyDelta); [Serializable] [NetSerializable] -public enum ThermomachineUiKey +public enum ThermomachineUiKey : byte { Key } @@ -29,23 +29,3 @@ public sealed class GasThermomachineChangeTemperatureMessage : BoundUserInterfac Temperature = temperature; } } - -[Serializable] -[NetSerializable] -public sealed class GasThermomachineBoundUserInterfaceState : BoundUserInterfaceState -{ - public float MinTemperature { get; } - public float MaxTemperature { get; } - public float Temperature { get; } - public bool Enabled { get; } - public bool IsHeater { get; } - - public GasThermomachineBoundUserInterfaceState(float minTemperature, float maxTemperature, float temperature, bool enabled, bool isHeater) - { - MinTemperature = minTemperature; - MaxTemperature = maxTemperature; - Temperature = temperature; - Enabled = enabled; - IsHeater = isHeater; - } -} diff --git a/Content.Shared/Atmos/Piping/Unary/Components/SharedVentScrubberComponent.cs b/Content.Shared/Atmos/Piping/Unary/Components/SharedVentScrubberComponent.cs index 306fac46c0..a07dba7254 100644 --- a/Content.Shared/Atmos/Piping/Unary/Components/SharedVentScrubberComponent.cs +++ b/Content.Shared/Atmos/Piping/Unary/Components/SharedVentScrubberComponent.cs @@ -13,6 +13,7 @@ namespace Content.Shared.Atmos.Piping.Unary.Components public ScrubberPumpDirection PumpDirection { get; set; } = ScrubberPumpDirection.Scrubbing; public float VolumeRate { get; set; } = 200f; public bool WideNet { get; set; } = false; + public bool AirAlarmPanicWireCut { get; set; } public static HashSet DefaultFilterGases = new() { diff --git a/Content.Shared/Atmos/Piping/Unary/Systems/SharedGasThermoMachineSystem.cs b/Content.Shared/Atmos/Piping/Unary/Systems/SharedGasThermoMachineSystem.cs new file mode 100644 index 0000000000..724552fe87 --- /dev/null +++ b/Content.Shared/Atmos/Piping/Unary/Systems/SharedGasThermoMachineSystem.cs @@ -0,0 +1,61 @@ +using Content.Shared.Administration.Logs; +using Content.Shared.Atmos.Piping.Unary.Components; +using Content.Shared.Database; +using Content.Shared.Examine; +using Content.Shared.Power.EntitySystems; + +namespace Content.Shared.Atmos.Piping.Unary.Systems; + +public abstract class SharedGasThermoMachineSystem : EntitySystem +{ + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly SharedPowerReceiverSystem _receiver = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnExamined); + + SubscribeLocalEvent(OnToggleMessage); + SubscribeLocalEvent(OnChangeTemperature); + } + + private void OnExamined(EntityUid uid, GasThermoMachineComponent thermoMachine, ExaminedEvent args) + { + if (Loc.TryGetString("gas-thermomachine-system-examined", + out var str, + ("machineName", !IsHeater(thermoMachine) ? "freezer" : "heater"), + ("tempColor", !IsHeater(thermoMachine) ? "deepskyblue" : "red"), + ("temp", Math.Round(thermoMachine.TargetTemperature, 2)) + )) + { + args.PushMarkup(str); + } + } + + public bool IsHeater(GasThermoMachineComponent comp) + { + return comp.Cp >= 0; + } + + private void OnToggleMessage(EntityUid uid, GasThermoMachineComponent thermoMachine, GasThermomachineToggleMessage args) + { + var powerState = _receiver.TogglePower(uid, user: args.Actor); + _adminLogger.Add(LogType.AtmosPowerChanged, $"{ToPrettyString(args.Actor)} turned {(powerState ? "On" : "Off")} {ToPrettyString(uid)}"); + DirtyUI(uid, thermoMachine); + } + + private void OnChangeTemperature(EntityUid uid, GasThermoMachineComponent thermoMachine, GasThermomachineChangeTemperatureMessage args) + { + if (IsHeater(thermoMachine)) + thermoMachine.TargetTemperature = MathF.Min(args.Temperature, thermoMachine.MaxTemperature); + else + thermoMachine.TargetTemperature = MathF.Max(args.Temperature, thermoMachine.MinTemperature); + thermoMachine.TargetTemperature = MathF.Max(thermoMachine.TargetTemperature, Atmospherics.TCMB); + _adminLogger.Add(LogType.AtmosTemperatureChanged, $"{ToPrettyString(args.Actor)} set temperature on {ToPrettyString(uid)} to {thermoMachine.TargetTemperature}"); + Dirty(uid, thermoMachine); + DirtyUI(uid, thermoMachine); + } + + protected virtual void DirtyUI(EntityUid uid, GasThermoMachineComponent? thermoMachine, UserInterfaceComponent? ui=null) {} +} diff --git a/Content.Shared/Atmos/Visuals/AtmosPlaqueVisuals.cs b/Content.Shared/Atmos/Visuals/AtmosPlaqueVisuals.cs deleted file mode 100644 index 66b3a5b229..0000000000 --- a/Content.Shared/Atmos/Visuals/AtmosPlaqueVisuals.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Robust.Shared.Serialization; - -namespace Content.Shared.Atmos.Visuals -{ - [Serializable, NetSerializable] - public enum AtmosPlaqueVisuals - { - State - } -} diff --git a/Content.Server/Bed/Components/HealOnBuckleComponent.cs b/Content.Shared/Bed/Components/HealOnBuckleComponent.cs similarity index 53% rename from Content.Server/Bed/Components/HealOnBuckleComponent.cs rename to Content.Shared/Bed/Components/HealOnBuckleComponent.cs index a73ce56bbe..87f235cfb6 100644 --- a/Content.Server/Bed/Components/HealOnBuckleComponent.cs +++ b/Content.Shared/Bed/Components/HealOnBuckleComponent.cs @@ -1,8 +1,10 @@ using Content.Shared.Damage; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -namespace Content.Server.Bed.Components +namespace Content.Shared.Bed.Components { - [RegisterComponent] + [RegisterComponent, NetworkedComponent, AutoGenerateComponentPause, AutoGenerateComponentState] public sealed partial class HealOnBuckleComponent : Component { /// @@ -23,6 +25,16 @@ namespace Content.Server.Bed.Components [DataField] public float SleepMultiplier = 3f; + /// + /// Next time that will be applied. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField, AutoNetworkedField] public TimeSpan NextHealTime = TimeSpan.Zero; //Next heal + + /// + /// Action for the attached entity to be able to sleep. + /// + [DataField, AutoNetworkedField] + public EntityUid? SleepAction; } } diff --git a/Content.Shared/Bed/Components/HealOnBuckleHealing.cs b/Content.Shared/Bed/Components/HealOnBuckleHealing.cs new file mode 100644 index 0000000000..ad83ed6c84 --- /dev/null +++ b/Content.Shared/Bed/Components/HealOnBuckleHealing.cs @@ -0,0 +1,7 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Bed.Components; + +// TODO rename this component +[RegisterComponent, NetworkedComponent] +public sealed partial class HealOnBuckleHealingComponent : Component; diff --git a/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs b/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs index 1e2b15c8ce..d1066b43e2 100644 --- a/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs +++ b/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs @@ -7,7 +7,6 @@ using Content.Shared.Mind.Components; using Content.Shared.Mobs.Systems; using Robust.Shared.Configuration; using Robust.Shared.Containers; -using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Timing; @@ -19,7 +18,6 @@ namespace Content.Shared.Bed.Cryostorage; public abstract class SharedCryostorageSystem : EntitySystem { [Dependency] private readonly IConfigurationManager _configuration = default!; - [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly ISharedPlayerManager _player = default!; [Dependency] private readonly SharedMapSystem _map = default!; [Dependency] private readonly MobStateSystem _mobState = default!; diff --git a/Content.Shared/Bed/SharedBedSystem.cs b/Content.Shared/Bed/SharedBedSystem.cs new file mode 100644 index 0000000000..903bfefc20 --- /dev/null +++ b/Content.Shared/Bed/SharedBedSystem.cs @@ -0,0 +1,49 @@ +using Content.Shared.Actions; +using Content.Shared.Bed.Components; +using Content.Shared.Bed.Sleep; +using Content.Shared.Buckle.Components; +using Robust.Shared.Timing; +using Robust.Shared.Utility; + +namespace Content.Shared.Bed; + +public abstract class SharedBedSystem : EntitySystem +{ + [Dependency] protected readonly IGameTiming Timing = default!; + [Dependency] private readonly ActionContainerSystem _actConts = default!; + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly SleepingSystem _sleepingSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnHealMapInit); + SubscribeLocalEvent(OnStrapped); + SubscribeLocalEvent(OnUnstrapped); + } + + private void OnHealMapInit(Entity ent, ref MapInitEvent args) + { + _actConts.EnsureAction(ent.Owner, ref ent.Comp.SleepAction, SleepingSystem.SleepActionId); + Dirty(ent); + } + + private void OnStrapped(Entity bed, ref StrappedEvent args) + { + EnsureComp(bed); + bed.Comp.NextHealTime = Timing.CurTime + TimeSpan.FromSeconds(bed.Comp.HealTime); + _actionsSystem.AddAction(args.Buckle, ref bed.Comp.SleepAction, SleepingSystem.SleepActionId, bed); + Dirty(bed); + + // Single action entity, cannot strap multiple entities to the same bed. + DebugTools.AssertEqual(args.Strap.Comp.BuckledEntities.Count, 1); + } + + private void OnUnstrapped(Entity bed, ref UnstrappedEvent args) + { + _actionsSystem.RemoveAction(args.Buckle, bed.Comp.SleepAction); + _sleepingSystem.TryWaking(args.Buckle.Owner); + RemComp(bed); + } +} diff --git a/Content.Shared/Bed/Sleep/SleepingSystem.cs b/Content.Shared/Bed/Sleep/SleepingSystem.cs index 610b5c5149..692c90d6f4 100644 --- a/Content.Shared/Bed/Sleep/SleepingSystem.cs +++ b/Content.Shared/Bed/Sleep/SleepingSystem.cs @@ -21,6 +21,7 @@ using Content.Shared.StatusEffect; using Content.Shared.Stunnable; using Content.Shared.Traits.Assorted; using Content.Shared.Verbs; +using Content.Shared.Zombies; using Robust.Shared.Audio.Systems; using Robust.Shared.Prototypes; using Robust.Shared.Timing; @@ -52,6 +53,7 @@ public sealed partial class SleepingSystem : EntitySystem SubscribeLocalEvent(OnSleepAction); SubscribeLocalEvent(OnDamageChanged); + SubscribeLocalEvent(OnZombified); SubscribeLocalEvent(OnMobStateChanged); SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnSpeakAttempt); @@ -220,6 +222,16 @@ public sealed partial class SleepingSystem : EntitySystem TryWaking((ent, ent.Comp)); } + /// + /// Wake up on being zombified. + /// In some cases, zombification might theoretically occur without a mob state change or being damaged + /// + /// //TODO Perhaps a generic component should be introduced that guarantees that a mob will wake up immediately and can't go to sleep again + private void OnZombified(Entity ent, ref EntityZombifiedEvent args) + { + TryWaking((ent, ent.Comp), true); + } + /// /// In crit, we wake up if we are not being forced to sleep. /// And, you can't sleep when dead... diff --git a/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs b/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs index bee75e948d..546532c3d4 100644 --- a/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs +++ b/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs @@ -25,14 +25,8 @@ public sealed class ProximityBeeperSystem : EntitySystem { if (!TryComp(owner, out var beeper)) return; - if (args.Target == null) - { - _beeper.SetMute(owner, true, beeper); - return; - } - _beeper.SetIntervalScaling(owner, args.Distance / args.Detector.Range, beeper); - _beeper.SetMute(owner, false, beeper); + _beeper.SetIntervalScaling(owner, args.Distance / args.Detector.Comp.Range, beeper); } private void OnNewProximityTarget(EntityUid owner, ProximityBeeperComponent proxBeeper, ref NewProximityTargetEvent args) diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 9402b9935e..197f7ef707 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -489,7 +489,7 @@ public abstract partial class SharedBuckleSystem var buckleXform = Transform(buckle); var oldBuckledXform = Transform(strap); - if (buckleXform.ParentUid == strap.Owner && !Terminating(buckleXform.ParentUid)) + if (buckleXform.ParentUid == strap.Owner && !Terminating(oldBuckledXform.ParentUid)) { _transform.PlaceNextTo((buckle, buckleXform), (strap.Owner, oldBuckledXform)); buckleXform.ActivelyLerping = false; diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Strap.cs b/Content.Shared/Buckle/SharedBuckleSystem.Strap.cs index bfb0cd9cd6..c101340421 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Strap.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Strap.cs @@ -14,6 +14,7 @@ public abstract partial class SharedBuckleSystem { SubscribeLocalEvent(OnStrapStartup); SubscribeLocalEvent(OnStrapShutdown); + SubscribeLocalEvent(OnStrapTerminating); SubscribeLocalEvent((e, c, _) => StrapRemoveAll(e, c)); SubscribeLocalEvent(OnStrapContainerGettingInsertedAttempt); @@ -35,6 +36,11 @@ public abstract partial class SharedBuckleSystem StrapRemoveAll(uid, component); } + private void OnStrapTerminating(Entity entity, ref EntityTerminatingEvent args) + { + StrapRemoveAll(entity, entity.Comp); + } + private void OnStrapContainerGettingInsertedAttempt(EntityUid uid, StrapComponent component, ContainerGettingInsertedAttemptEvent args) { // If someone is attempting to put this item inside of a backpack, ensure that it has no entities strapped to it. diff --git a/Content.Shared/CCVar/CCVars.Chat.Admin.cs b/Content.Shared/CCVar/CCVars.Chat.Admin.cs new file mode 100644 index 0000000000..808d2c91d8 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Chat.Admin.cs @@ -0,0 +1,12 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// The discord channel ID to send admin chat messages to (also receive them). This requires the Discord Integration to be enabled and configured. + /// + public static readonly CVarDef AdminChatDiscordChannelId = + CVarDef.Create("admin.chat_discord_channel_id", string.Empty, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Chat.Ooc.cs b/Content.Shared/CCVar/CCVars.Chat.Ooc.cs index 020b301080..11ee0fc376 100644 --- a/Content.Shared/CCVar/CCVars.Chat.Ooc.cs +++ b/Content.Shared/CCVar/CCVars.Chat.Ooc.cs @@ -24,4 +24,10 @@ public sealed partial class CCVars public static readonly CVarDef ShowOocPatronColor = CVarDef.Create("ooc.show_ooc_patron_color", true, CVar.ARCHIVE | CVar.REPLICATED | CVar.CLIENT); + + /// + /// The discord channel ID to send OOC messages to (also recieve them). This requires the Discord Integration to be enabled and configured. + /// + public static readonly CVarDef OocDiscordChannelId = + CVarDef.Create("ooc.discord_channel_id", string.Empty, CVar.SERVERONLY); } diff --git a/Content.Shared/CCVar/CCVars.Discord.cs b/Content.Shared/CCVar/CCVars.Discord.cs index 6e4ef532cd..86eb423d2f 100644 --- a/Content.Shared/CCVar/CCVars.Discord.cs +++ b/Content.Shared/CCVar/CCVars.Discord.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Configuration; +using Robust.Shared.Configuration; namespace Content.Shared.CCVar; @@ -59,6 +59,28 @@ public sealed partial class CCVars public static readonly CVarDef DiscordRoundEndRoleWebhook = CVarDef.Create("discord.round_end_role", string.Empty, CVar.SERVERONLY); + + /// + /// The token used to authenticate with Discord. For the Bot to function set: discord.token, discord.guild_id, and discord.prefix. + /// If this is empty, the bot will not connect. + /// + public static readonly CVarDef DiscordToken = + CVarDef.Create("discord.token", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// + /// The Discord guild ID to use for commands as well as for several other features. + /// If this is empty, the bot will not connect. + /// + public static readonly CVarDef DiscordGuildId = + CVarDef.Create("discord.guild_id", string.Empty, CVar.SERVERONLY); + + /// + /// Prefix used for commands for the Discord bot. + /// If this is empty, the bot will not connect. + /// + public static readonly CVarDef DiscordPrefix = + CVarDef.Create("discord.prefix", "!", CVar.SERVERONLY); + /// /// URL of the Discord webhook which will relay watchlist connection notifications. If left empty, disables the webhook. /// @@ -72,4 +94,24 @@ public sealed partial class CCVars /// public static readonly CVarDef DiscordWatchlistConnectionBufferTime = CVarDef.Create("discord.watchlist_connection_buffer_time", 5f, CVar.SERVERONLY); + + /// + /// URL of the Discord webhook which will receive station news acticles at the round end. + /// If left empty, disables the webhook. + /// + public static readonly CVarDef DiscordNewsWebhook = + CVarDef.Create("discord.news_webhook", string.Empty, CVar.SERVERONLY); + + /// + /// HEX color of station news discord webhook's embed. + /// + public static readonly CVarDef DiscordNewsWebhookEmbedColor = + CVarDef.Create("discord.news_webhook_embed_color", Color.LawnGreen.ToHex(), CVar.SERVERONLY); + + /// + /// Whether or not articles should be sent mid-round instead of all at once at the round's end + /// + public static readonly CVarDef DiscordNewsWebhookSendDuringRound = + CVarDef.Create("discord.news_webhook_send_during_round", false, CVar.SERVERONLY); + } diff --git a/Content.Shared/CCVar/CCVars.Ic.cs b/Content.Shared/CCVar/CCVars.Ic.cs index 2d898c4bc8..0b727a3a20 100644 --- a/Content.Shared/CCVar/CCVars.Ic.cs +++ b/Content.Shared/CCVar/CCVars.Ic.cs @@ -11,11 +11,35 @@ public sealed partial class CCVars CVarDef.Create("ic.restricted_names", true, CVar.SERVER | CVar.REPLICATED); /// - /// Allows flavor text (character descriptions) + /// Sets the maximum IC name length. + /// + public static readonly CVarDef MaxNameLength = + CVarDef.Create("ic.name_length", 32, CVar.SERVER | CVar.REPLICATED); + + /// + /// Sets the maximum name length for a loadout name (e.g. cyborg name). + /// + public static readonly CVarDef MaxLoadoutNameLength = + CVarDef.Create("ic.loadout_name_length", 32, CVar.SERVER | CVar.REPLICATED); + + /// + /// Allows flavor text (character descriptions). /// public static readonly CVarDef FlavorText = CVarDef.Create("ic.flavor_text", true, CVar.SERVER | CVar.REPLICATED); + /// + /// Sets the maximum length for flavor text (character descriptions). + /// + public static readonly CVarDef MaxFlavorTextLength = + CVarDef.Create("ic.flavor_text_length", 512, CVar.SERVER | CVar.REPLICATED); + + /// + /// Sets the maximum character length of a job on an ID. + /// + public static readonly CVarDef MaxIdJobLength = + CVarDef.Create("ic.id_job_length", 30, CVar.SERVER | CVar.REPLICATED); + /// /// Adds a period at the end of a sentence if the sentence ends in a letter. /// diff --git a/Content.Shared/CCVar/CCVars.Shuttle.cs b/Content.Shared/CCVar/CCVars.Shuttle.cs index 3ed1465b00..1e1af3173c 100644 --- a/Content.Shared/CCVar/CCVars.Shuttle.cs +++ b/Content.Shared/CCVar/CCVars.Shuttle.cs @@ -194,4 +194,92 @@ public sealed partial class CCVars /// public static readonly CVarDef GridImpulseMultiplier = CVarDef.Create("shuttle.grid_impulse_multiplier", 0.01f, CVar.SERVERONLY); + + #region impacts + + /// + /// Whether shuttle impacts should do anything beyond produce a sound. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef ImpactEnabled = + CVarDef.Create("shuttle.impact.enabled", true, CVar.SERVERONLY); + + /// + /// Minimum impact inertia to trigger special shuttle impact behaviors when impacting slower than MinimumImpactVelocity. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef MinimumImpactInertia = + CVarDef.Create("shuttle.impact.minimum_inertia", 5f * 50f, CVar.SERVERONLY); // 100tile grid (cargo shuttle) going at 5 m/s + + /// + /// Minimum velocity difference between 2 bodies for a shuttle impact to be guaranteed to trigger any special behaviors like damage. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef MinimumImpactVelocity = + CVarDef.Create("shuttle.impact.minimum_velocity", 15f, CVar.SERVERONLY); // needed so that random space debris can be rammed + + /// + /// Multiplier of Kinetic energy required to dismantle a single tile in relation to its mass + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef TileBreakEnergyMultiplier = + CVarDef.Create("shuttle.impact.tile_break_energy", 3000f, CVar.SERVERONLY); + + /// + /// Multiplier of damage done to entities on colliding areas + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef ImpactDamageMultiplier = + CVarDef.Create("shuttle.impact.damage_multiplier", 0.00005f, CVar.SERVERONLY); + + /// + /// Multiplier of additional structural damage to do + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef ImpactStructuralDamage = + CVarDef.Create("shuttle.impact.structural_damage", 5f, CVar.SERVERONLY); + + /// + /// Kinetic energy required to spawn sparks + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef SparkEnergy = + CVarDef.Create("shuttle.impact.spark_energy", 2000000f, CVar.SERVERONLY); + + /// + /// Area to consider for impact calculations + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef ImpactRadius = + CVarDef.Create("shuttle.impact.radius", 4f, CVar.SERVERONLY); + + /// + /// Affects slowdown on impact + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef ImpactSlowdown = + CVarDef.Create("shuttle.impact.slowdown", 8f, CVar.SERVERONLY); + + /// + /// Minimum velocity change from impact for special throw effects (e.g. stuns, beakers breaking) to occur + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef ImpactMinThrowVelocity = + CVarDef.Create("shuttle.impact.min_throw_velocity", 1f, CVar.SERVERONLY); // due to how it works this is about 16 m/s for cargo shuttle + + /// + /// Affects how much damage reduction to give to grids with higher mass + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef ImpactMassBias = + CVarDef.Create("shuttle.impact.mass_bias", 0.65f, CVar.SERVERONLY); + + /// + /// How much should total grid inertia affect our collision damage + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef ImpactInertiaScaling = + CVarDef.Create("shuttle.impact.inertia_scaling", 0.5f, CVar.SERVERONLY); + + #endregion } diff --git a/Content.Shared/CCVar/CCVars.Status.cs b/Content.Shared/CCVar/CCVars.Status.cs deleted file mode 100644 index 007f678106..0000000000 --- a/Content.Shared/CCVar/CCVars.Status.cs +++ /dev/null @@ -1,13 +0,0 @@ -using Robust.Shared.Configuration; - -namespace Content.Shared.CCVar; - -public sealed partial class CCVars -{ - public static readonly CVarDef StatusMoMMIUrl = - CVarDef.Create("status.mommiurl", "", CVar.SERVERONLY); - - public static readonly CVarDef StatusMoMMIPassword = - CVarDef.Create("status.mommipassword", "", CVar.SERVERONLY | CVar.CONFIDENTIAL); - -} diff --git a/Content.Shared/Cargo/BUI/CargoConsoleInterfaceState.cs b/Content.Shared/Cargo/BUI/CargoConsoleInterfaceState.cs index 7084477f24..aee1824f93 100644 --- a/Content.Shared/Cargo/BUI/CargoConsoleInterfaceState.cs +++ b/Content.Shared/Cargo/BUI/CargoConsoleInterfaceState.cs @@ -1,3 +1,5 @@ +using Content.Shared.Cargo.Prototypes; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; namespace Content.Shared.Cargo.BUI; @@ -10,13 +12,15 @@ public sealed class CargoConsoleInterfaceState : BoundUserInterfaceState public int Capacity; public NetEntity Station; public List Orders; + public List> Products; - public CargoConsoleInterfaceState(string name, int count, int capacity, NetEntity station, List orders) + public CargoConsoleInterfaceState(string name, int count, int capacity, NetEntity station, List orders, List> products) { Name = name; Count = count; Capacity = capacity; Station = station; Orders = orders; + Products = products; } } diff --git a/Content.Shared/Cargo/CargoOrderData.cs b/Content.Shared/Cargo/CargoOrderData.cs index 9813457910..a0b3fbed50 100644 --- a/Content.Shared/Cargo/CargoOrderData.cs +++ b/Content.Shared/Cargo/CargoOrderData.cs @@ -1,3 +1,5 @@ +using Content.Shared.Cargo.Prototypes; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using System.Text; namespace Content.Shared.Cargo @@ -52,7 +54,13 @@ namespace Content.Shared.Cargo [DataField] public string? Approver; - public CargoOrderData(int orderId, string productId, string productName, int price, int amount, string requester, string reason) + /// + /// Which account to deduct funds from when ordering + /// + [DataField] + public ProtoId Account; + + public CargoOrderData(int orderId, string productId, string productName, int price, int amount, string requester, string reason, ProtoId account) { OrderId = orderId; ProductId = productId; @@ -61,6 +69,7 @@ namespace Content.Shared.Cargo OrderQuantity = amount; Requester = requester; Reason = reason; + Account = account; } public void SetApproverData(string? approver) diff --git a/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs b/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs index 8c78312be1..dd01954d62 100644 --- a/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs +++ b/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Audio; +using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; @@ -6,7 +6,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototy namespace Content.Shared.Cargo.Components; -[RegisterComponent] +[RegisterComponent, AutoGenerateComponentPause] public sealed partial class CargoBountyConsoleComponent : Component { /// @@ -44,6 +44,18 @@ public sealed partial class CargoBountyConsoleComponent : Component /// [DataField("denySound")] public SoundSpecifier DenySound = new SoundPathSpecifier("/Audio/Effects/Cargo/buzz_two.ogg"); + + /// + /// The time at which the console will be able to make the denial sound again. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] + public TimeSpan NextDenySoundTime = TimeSpan.Zero; + + /// + /// The time between playing a denial sound. + /// + [DataField] + public TimeSpan DenySoundDelay = TimeSpan.FromSeconds(2); } [NetSerializable, Serializable] diff --git a/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs b/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs index 90abfe8bfa..e930fbda23 100644 --- a/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs +++ b/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs @@ -78,7 +78,13 @@ public sealed partial class CargoOrderConsoleComponent : Component /// All of the s that are supported. /// [DataField, AutoNetworkedField] - public List AllowedGroups = new() { "market" }; + public List> AllowedGroups = new() + { + "market", + "SalvageJobReward2", + "SalvageJobReward3", + "SalvageJobRewardMAX", + }; /// /// Access needed to toggle the limit on this console. @@ -96,6 +102,48 @@ public sealed partial class CargoOrderConsoleComponent : Component /// Secondary radio channel which always receives order announcements. /// public static readonly ProtoId BaseAnnouncementChannel = "Supply"; + + /// + /// If set to true, restricts this console from ordering and has it print slips instead + /// + [DataField] + public bool SlipPrinter; + + /// + /// The time at which the console will be able to print a slip again. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] + public TimeSpan NextPrintTime = TimeSpan.Zero; + + /// + /// The time between prints. + /// + [DataField] + public TimeSpan PrintDelay = TimeSpan.FromSeconds(5); + + /// + /// The sound made when printing occurs + /// + [DataField] + public SoundSpecifier PrintSound = new SoundCollectionSpecifier("PrinterPrint"); + + /// + /// The sound made when an order slip is scanned + /// + [DataField] + public SoundSpecifier ScanSound = new SoundCollectionSpecifier("CargoBeep"); + + /// + /// The time at which the console will be able to play the deny sound. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] + public TimeSpan NextDenySoundTime = TimeSpan.Zero; + + /// + /// The time between playing the deny sound. + /// + [DataField] + public TimeSpan DenySoundDelay = TimeSpan.FromSeconds(2); } /// diff --git a/Content.Shared/Cargo/Components/CargoSlipComponent.cs b/Content.Shared/Cargo/Components/CargoSlipComponent.cs new file mode 100644 index 0000000000..78104679ab --- /dev/null +++ b/Content.Shared/Cargo/Components/CargoSlipComponent.cs @@ -0,0 +1,41 @@ +using Content.Shared.Cargo.Prototypes; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Cargo.Components; + +/// +/// Holds data for an order slip required for insertion into a console +/// +[RegisterComponent] +public sealed partial class CargoSlipComponent : Component +{ + /// + /// The requested product + /// + [DataField] + public ProtoId Product; + + /// + /// The provided value for the requester form field + /// + [DataField] + public string Requester; + + /// + /// The provided value for the reason form field + /// + [DataField] + public string Reason; + + /// + /// How many of the product to order + /// + [DataField] + public int OrderQuantity; + + /// + /// How many of the product to order + /// + [DataField] + public ProtoId Account; +} diff --git a/Content.Shared/Cargo/PriceCalculationEvent.cs b/Content.Shared/Cargo/PriceCalculationEvent.cs new file mode 100644 index 0000000000..5d1049570d --- /dev/null +++ b/Content.Shared/Cargo/PriceCalculationEvent.cs @@ -0,0 +1,38 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Cargo; + +/// +/// A directed by-ref event fired on an entity when something needs to know its price. This value is not cached. +/// +[ByRefEvent] +public record struct PriceCalculationEvent() +{ + /// + /// The total price of the entity. + /// + public double Price = 0; + + /// + /// Whether this event was already handled. + /// + public bool Handled = false; +} + +/// +/// Raised broadcast for an entity prototype to determine its estimated price. +/// +/// The prototype to estimate the price for. +[ByRefEvent] +public record struct EstimatedPriceCalculationEvent(EntityPrototype Prototype) +{ + /// + /// The total price of the entity. + /// + public double Price = 0; + + /// + /// Whether this event was already handled. + /// + public bool Handled = false; +} diff --git a/Content.Shared/Cargo/Prototypes/CargoAccountPrototype.cs b/Content.Shared/Cargo/Prototypes/CargoAccountPrototype.cs index 185c8f909a..6d5fc3ebfc 100644 --- a/Content.Shared/Cargo/Prototypes/CargoAccountPrototype.cs +++ b/Content.Shared/Cargo/Prototypes/CargoAccountPrototype.cs @@ -11,7 +11,7 @@ public sealed partial class CargoAccountPrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Full IC name of the account. @@ -36,4 +36,10 @@ public sealed partial class CargoAccountPrototype : IPrototype /// [DataField] public ProtoId RadioChannel; + + /// + /// Paper prototype used for acquisition slips. + /// + [DataField] + public EntProtoId AcquisitionSlip; } diff --git a/Content.Shared/Cargo/Prototypes/CargoBountyGroupPrototype.cs b/Content.Shared/Cargo/Prototypes/CargoBountyGroupPrototype.cs new file mode 100644 index 0000000000..558d52b245 --- /dev/null +++ b/Content.Shared/Cargo/Prototypes/CargoBountyGroupPrototype.cs @@ -0,0 +1,14 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Cargo.Prototypes; + +/// +/// Used to categorize bounties for different purposes +/// +[Prototype] +public sealed partial class CargoBountyGroupPrototype : IPrototype +{ + /// + [IdDataField] + public string ID { get; private set; } = default!; +} diff --git a/Content.Shared/Cargo/Prototypes/CargoBountyPrototype.cs b/Content.Shared/Cargo/Prototypes/CargoBountyPrototype.cs index b40b03672e..38ca2286ee 100644 --- a/Content.Shared/Cargo/Prototypes/CargoBountyPrototype.cs +++ b/Content.Shared/Cargo/Prototypes/CargoBountyPrototype.cs @@ -1,6 +1,7 @@ using Content.Shared.Whitelist; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; +using Robust.Shared.Utility; namespace Content.Shared.Cargo.Prototypes; @@ -39,6 +40,18 @@ public sealed partial class CargoBountyPrototype : IPrototype /// [DataField] public string IdPrefix = "NT"; + + /// + /// A group used for categorizing this bounty. + /// + [DataField] + public ProtoId Group = "StationBounty"; + + /// + /// Optional sprite representing this bounty. + /// + [DataField] + public SpriteSpecifier? Sprite; } [DataDefinition, Serializable, NetSerializable] diff --git a/Content.Shared/Cargo/Prototypes/CargoMarketPrototype.cs b/Content.Shared/Cargo/Prototypes/CargoMarketPrototype.cs new file mode 100644 index 0000000000..32fe3a4dac --- /dev/null +++ b/Content.Shared/Cargo/Prototypes/CargoMarketPrototype.cs @@ -0,0 +1,14 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Cargo.Prototypes; + +/// +/// Defines a "market" that a cargo computer can access and make orders from. +/// +[Prototype] +public sealed partial class CargoMarketPrototype : IPrototype +{ + /// + [IdDataField] + public string ID { get; private set; } = default!; +} diff --git a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs index 265eb29bda..b6cd92085e 100644 --- a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs +++ b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs @@ -93,6 +93,6 @@ namespace Content.Shared.Cargo.Prototypes /// The prototype group of the product. (e.g. Contraband) /// [DataField] - public string Group { get; private set; } = "market"; + public ProtoId Group { get; private set; } = "market"; } } diff --git a/Content.Shared/CartridgeLoader/Cartridges/NanoTaskUiMessageEvent.cs b/Content.Shared/CartridgeLoader/Cartridges/NanoTaskUiMessageEvent.cs index 51a34aaa75..b78525bd7f 100644 --- a/Content.Shared/CartridgeLoader/Cartridges/NanoTaskUiMessageEvent.cs +++ b/Content.Shared/CartridgeLoader/Cartridges/NanoTaskUiMessageEvent.cs @@ -13,7 +13,7 @@ public interface INanoTaskUiMessagePayload /// Dispatched when a new task is created /// [Serializable, NetSerializable, DataRecord] -public sealed class NanoTaskAddTask : INanoTaskUiMessagePayload +public sealed partial class NanoTaskAddTask : INanoTaskUiMessagePayload { /// /// The newly created task @@ -30,7 +30,7 @@ public sealed class NanoTaskAddTask : INanoTaskUiMessagePayload /// Dispatched when an existing task is modified /// [Serializable, NetSerializable, DataRecord] -public sealed class NanoTaskUpdateTask : INanoTaskUiMessagePayload +public sealed partial class NanoTaskUpdateTask : INanoTaskUiMessagePayload { /// /// The task that was updated and its ID @@ -47,7 +47,7 @@ public sealed class NanoTaskUpdateTask : INanoTaskUiMessagePayload /// Dispatched when an existing task is deleted /// [Serializable, NetSerializable, DataRecord] -public sealed class NanoTaskDeleteTask : INanoTaskUiMessagePayload +public sealed partial class NanoTaskDeleteTask : INanoTaskUiMessagePayload { /// /// The ID of the task to delete @@ -64,7 +64,7 @@ public sealed class NanoTaskDeleteTask : INanoTaskUiMessagePayload /// Dispatched when a task is requested to be printed /// [Serializable, NetSerializable, DataRecord] -public sealed class NanoTaskPrintTask : INanoTaskUiMessagePayload +public sealed partial class NanoTaskPrintTask : INanoTaskUiMessagePayload { /// /// The NanoTask to print diff --git a/Content.Shared/CartridgeLoader/Cartridges/NanoTaskUiState.cs b/Content.Shared/CartridgeLoader/Cartridges/NanoTaskUiState.cs index 9f270671e3..3c65adac65 100644 --- a/Content.Shared/CartridgeLoader/Cartridges/NanoTaskUiState.cs +++ b/Content.Shared/CartridgeLoader/Cartridges/NanoTaskUiState.cs @@ -17,7 +17,7 @@ public enum NanoTaskPriority : byte /// The data relating to a single NanoTask item, but not its identifier /// [Serializable, NetSerializable, DataRecord] -public sealed class NanoTaskItem +public sealed partial class NanoTaskItem { /// /// The maximum length of the Description and TaskIsFor fields @@ -61,7 +61,7 @@ public sealed class NanoTaskItem /// Pairs a NanoTask item and its identifier /// [Serializable, NetSerializable, DataRecord] -public sealed class NanoTaskItemAndId +public sealed partial class NanoTaskItemAndId { public readonly int Id; public readonly NanoTaskItem Data; diff --git a/Content.Shared/Chat/ChatChannel.cs b/Content.Shared/Chat/ChatChannel.cs index ec7ac85097..b866b524f6 100644 --- a/Content.Shared/Chat/ChatChannel.cs +++ b/Content.Shared/Chat/ChatChannel.cs @@ -99,4 +99,24 @@ namespace Content.Shared.Chat AdminRelated = Admin | AdminAlert | AdminChat, } + + /// + /// Contains extension methods for + /// + public static class ChatChannelExt + { + /// + /// Gets a string representation of a chat channel. + /// + /// Thrown when this channel does not have a string representation set. + public static string GetString(this ChatChannel channel) + { + return channel switch + { + ChatChannel.OOC => Loc.GetString("chat-channel-humanized-ooc"), + ChatChannel.AdminChat => Loc.GetString("chat-channel-humanized-admin"), + _ => throw new ArgumentOutOfRangeException(nameof(channel), channel, null) + }; + } + } } diff --git a/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs b/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs index 9d60d334db..bc5c95c8ab 100644 --- a/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs +++ b/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs @@ -45,7 +45,7 @@ public abstract class SharedTypingIndicatorSystem : EntitySystem private void OnPlayerDetached(EntityUid uid, TypingIndicatorComponent component, PlayerDetachedEvent args) { // player left entity body - hide typing indicator - SetTypingIndicatorEnabled(uid, false); + SetTypingIndicatorState(uid, TypingIndicatorState.None); } private void OnGotEquipped(Entity entity, ref ClothingGotEquippedEvent args) @@ -76,18 +76,18 @@ public abstract class SharedTypingIndicatorSystem : EntitySystem if (!_actionBlocker.CanEmote(uid.Value) && !_actionBlocker.CanSpeak(uid.Value)) { // nah, make sure that typing indicator is disabled - SetTypingIndicatorEnabled(uid.Value, false); + SetTypingIndicatorState(uid.Value, TypingIndicatorState.None); return; } - SetTypingIndicatorEnabled(uid.Value, ev.IsTyping); + SetTypingIndicatorState(uid.Value, ev.State); } - private void SetTypingIndicatorEnabled(EntityUid uid, bool isEnabled, AppearanceComponent? appearance = null) + private void SetTypingIndicatorState(EntityUid uid, TypingIndicatorState state, AppearanceComponent? appearance = null) { if (!Resolve(uid, ref appearance, false)) return; - _appearance.SetData(uid, TypingIndicatorVisuals.IsTyping, isEnabled, appearance); + _appearance.SetData(uid, TypingIndicatorVisuals.State, state, appearance); } } diff --git a/Content.Shared/Chat/TypingIndicator/TypingIndicatorEvents.cs b/Content.Shared/Chat/TypingIndicator/TypingIndicatorEvents.cs index 600f86c0d2..29a5d85be8 100644 --- a/Content.Shared/Chat/TypingIndicator/TypingIndicatorEvents.cs +++ b/Content.Shared/Chat/TypingIndicator/TypingIndicatorEvents.cs @@ -12,11 +12,11 @@ namespace Content.Shared.Chat.TypingIndicator; [Serializable, NetSerializable] public sealed class TypingChangedEvent : EntityEventArgs { - public readonly bool IsTyping; + public readonly TypingIndicatorState State; - public TypingChangedEvent(bool isTyping) + public TypingChangedEvent(TypingIndicatorState state) { - IsTyping = isTyping; + State = state; } } diff --git a/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs b/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs index fbd647d035..970fed969a 100644 --- a/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs +++ b/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs @@ -19,6 +19,9 @@ public sealed partial class TypingIndicatorPrototype : IPrototype [DataField("typingState", required: true)] public string TypingState = default!; + [DataField("idleState", required: true)] + public string IdleState = default!; + [DataField("offset")] public Vector2 Offset = new(0, 0); diff --git a/Content.Shared/Chat/TypingIndicator/TypingIndicatorState.cs b/Content.Shared/Chat/TypingIndicator/TypingIndicatorState.cs new file mode 100644 index 0000000000..087610a11b --- /dev/null +++ b/Content.Shared/Chat/TypingIndicator/TypingIndicatorState.cs @@ -0,0 +1,11 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Chat.TypingIndicator; + +[Serializable, NetSerializable] +public enum TypingIndicatorState +{ + None = 0, + Idle = 1, + Typing = 2, +} diff --git a/Content.Shared/Chat/TypingIndicator/TypingIndicatorVisuals.cs b/Content.Shared/Chat/TypingIndicator/TypingIndicatorVisuals.cs index 0368819eff..b9ed15fe9a 100644 --- a/Content.Shared/Chat/TypingIndicator/TypingIndicatorVisuals.cs +++ b/Content.Shared/Chat/TypingIndicator/TypingIndicatorVisuals.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Chat.TypingIndicator; [Serializable, NetSerializable] public enum TypingIndicatorVisuals : byte { - IsTyping + State } [Serializable] diff --git a/Content.Shared/Chemistry/Components/HyposprayComponent.cs b/Content.Shared/Chemistry/Components/HyposprayComponent.cs index 1d7b9fada8..b3023e0989 100644 --- a/Content.Shared/Chemistry/Components/HyposprayComponent.cs +++ b/Content.Shared/Chemistry/Components/HyposprayComponent.cs @@ -22,12 +22,18 @@ public sealed partial class HyposprayComponent : Component /// /// Decides whether you can inject everything or just mobs. - /// When you can only affect mobs, you're capable of drawing from beakers. /// [AutoNetworkedField] [DataField(required: true)] public bool OnlyAffectsMobs = false; + /// + /// If this can draw from containers in mob-only mode. + /// + [AutoNetworkedField] + [DataField] + public bool CanContainerDraw = true; + /// /// Whether or not the hypospray is able to draw from containers or if it's a single use /// device that can only inject. diff --git a/Content.Shared/Chemistry/Components/SlotBasedConnectedContainerComponent.cs b/Content.Shared/Chemistry/Components/SlotBasedConnectedContainerComponent.cs new file mode 100644 index 0000000000..2fde557941 --- /dev/null +++ b/Content.Shared/Chemistry/Components/SlotBasedConnectedContainerComponent.cs @@ -0,0 +1,25 @@ +using Content.Shared.Containers; +using Content.Shared.Inventory; +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.Chemistry.Components; + +/// +/// Component for marking linked container in character slot, to which entity is bound. +/// +[RegisterComponent, Access(typeof(SlotBasedConnectedContainerSystem)), NetworkedComponent] +public sealed partial class SlotBasedConnectedContainerComponent : Component +{ + /// + /// The slot in which target container should be. + /// + [DataField(required: true)] + public SlotFlags TargetSlot; + + /// + /// A whitelist for determining whether container is valid or not . + /// + [DataField] + public EntityWhitelist? ContainerWhitelist; +} diff --git a/Content.Shared/Chemistry/Components/SolutionScannerComponent.cs b/Content.Shared/Chemistry/Components/SolutionScannerComponent.cs index a342cde2dd..ad5fa06958 100644 --- a/Content.Shared/Chemistry/Components/SolutionScannerComponent.cs +++ b/Content.Shared/Chemistry/Components/SolutionScannerComponent.cs @@ -1,7 +1,11 @@ +using Robust.Shared.GameStates; + namespace Content.Shared.Chemistry.Components; -[RegisterComponent] -public sealed partial class SolutionScannerComponent : Component -{ -} +/// +/// Allows an entity to examine reagents inside of containers, puddles and similiar via the examine verb. +/// Works when added either directly to an entity or to piece of clothing worn by that entity. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class SolutionScannerComponent : Component; diff --git a/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs b/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs deleted file mode 100644 index 7d1399abd9..0000000000 --- a/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Content.Shared.Chemistry.Reagent; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; - -namespace Content.Shared.Chemistry.Dispenser -{ - /// - /// Is simply a list of reagents defined in yaml. This can then be set as a - /// s pack value (also in yaml), - /// to define which reagents it's able to dispense. Based off of how vending - /// machines define their inventory. - /// - [Serializable, NetSerializable, Prototype] - public sealed partial class ReagentDispenserInventoryPrototype : IPrototype - { - [DataField("inventory", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List Inventory = new(); - - [ViewVariables, IdDataField] - public string ID { get; private set; } = default!; - } -} diff --git a/Content.Shared/Chemistry/EntitySystems/SharedHypospraySystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedHypospraySystem.cs index b647d33c98..6985ae693c 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedHypospraySystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedHypospraySystem.cs @@ -46,7 +46,7 @@ public abstract class SharedHypospraySystem : EntitySystem private void ToggleMode(Entity entity, EntityUid user) { SetMode(entity, !entity.Comp.OnlyAffectsMobs); - string msg = entity.Comp.OnlyAffectsMobs ? "hypospray-verb-mode-inject-mobs-only" : "hypospray-verb-mode-inject-all"; + string msg = (entity.Comp.OnlyAffectsMobs && entity.Comp.CanContainerDraw) ? "hypospray-verb-mode-inject-mobs-only" : "hypospray-verb-mode-inject-all"; _popup.PopupClient(Loc.GetString(msg), entity, user); } diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs index 99d1459340..f536beef2b 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs @@ -14,6 +14,7 @@ using System.Linq; using System.Numerics; using System.Runtime.CompilerServices; using System.Text; +using Content.Shared.Containers; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Robust.Shared.Map; @@ -162,6 +163,12 @@ public abstract partial class SharedSolutionContainerSystem : EntitySystem [NotNullWhen(true)] out Entity? entity, bool errorOnMissing = false) { + // use connected container instead of entity from arguments, if it exists. + var ev = new GetConnectedContainerEvent(); + RaiseLocalEvent(container, ref ev); + if (ev.ContainerEntity.HasValue) + container = ev.ContainerEntity.Value; + EntityUid uid; if (name is null) uid = container; diff --git a/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs b/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs index 92559e4874..4bbb972572 100644 --- a/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs +++ b/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs @@ -60,7 +60,7 @@ namespace Content.Shared.Chemistry.Reaction /// /// Effects to be triggered when the reaction occurs. /// - [DataField("effects", serverOnly: true)] public List Effects = new(); + [DataField("effects")] public List Effects = new(); /// /// How dangerous is this effect? Stuff like bicaridine should be low, while things like methamphetamine diff --git a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs index 72fc768bc1..1a3d17c340 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs @@ -145,23 +145,23 @@ namespace Content.Shared.Chemistry.Reagent [DataField] public bool WorksOnTheDead; - [DataField(serverOnly: true)] + [DataField] public FrozenDictionary, ReagentEffectsEntry>? Metabolisms; - [DataField(serverOnly: true)] + [DataField] public Dictionary, ReactiveReagentEffectEntry>? ReactiveEffects; [DataField(serverOnly: true)] public List TileReactions = new(0); - [DataField("plantMetabolism", serverOnly: true)] + [DataField("plantMetabolism")] public List PlantMetabolisms = new(0); [DataField] public float PricePerUnit; [DataField] - public SoundSpecifier FootstepSound = new SoundCollectionSpecifier("FootstepWater", AudioParams.Default.WithVolume(6)); + public SoundSpecifier FootstepSound = new SoundCollectionSpecifier("FootstepPuddle"); public FixedPoint2 ReactionTile(TileRef tile, FixedPoint2 reactVolume, IEntityManager entityManager, List? data) { diff --git a/Content.Shared/Chemistry/SharedReagentDispenser.cs b/Content.Shared/Chemistry/SharedReagentDispenser.cs index c7ecd0ff43..65b7cc41fc 100644 --- a/Content.Shared/Chemistry/SharedReagentDispenser.cs +++ b/Content.Shared/Chemistry/SharedReagentDispenser.cs @@ -1,5 +1,6 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; +using Content.Shared.Storage; using Robust.Shared.Serialization; namespace Content.Shared.Chemistry @@ -66,11 +67,25 @@ namespace Content.Shared.Chemistry [Serializable, NetSerializable] public sealed class ReagentDispenserDispenseReagentMessage : BoundUserInterfaceMessage { - public readonly string SlotId; + public readonly ItemStorageLocation StorageLocation; - public ReagentDispenserDispenseReagentMessage(string slotId) + public ReagentDispenserDispenseReagentMessage(ItemStorageLocation storageLocation) { - SlotId = slotId; + StorageLocation = storageLocation; + } + } + + /// + /// Message sent by the user interface to ask the reagent dispenser to eject a container + /// + [Serializable, NetSerializable] + public sealed class ReagentDispenserEjectContainerMessage : BoundUserInterfaceMessage + { + public readonly ItemStorageLocation StorageLocation; + + public ReagentDispenserEjectContainerMessage(ItemStorageLocation storageLocation) + { + StorageLocation = storageLocation; } } @@ -94,9 +109,9 @@ namespace Content.Shared.Chemistry } [Serializable, NetSerializable] - public sealed class ReagentInventoryItem(string storageSlotId, string reagentLabel, FixedPoint2 quantity, Color reagentColor) + public sealed class ReagentInventoryItem(ItemStorageLocation storageLocation, string reagentLabel, FixedPoint2 quantity, Color reagentColor) { - public string StorageSlotId = storageSlotId; + public ItemStorageLocation StorageLocation = storageLocation; public string ReagentLabel = reagentLabel; public FixedPoint2 Quantity = quantity; public Color ReagentColor = reagentColor; diff --git a/Content.Shared/Cloning/CloningSettingsPrototype.cs b/Content.Shared/Cloning/CloningSettingsPrototype.cs index b5cfc0500d..b422f7188b 100644 --- a/Content.Shared/Cloning/CloningSettingsPrototype.cs +++ b/Content.Shared/Cloning/CloningSettingsPrototype.cs @@ -1,7 +1,9 @@ using Content.Shared.Inventory; using Content.Shared.Whitelist; using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Generic; namespace Content.Shared.Cloning; @@ -17,11 +19,11 @@ public sealed partial class CloningSettingsPrototype : IPrototype, IInheritingPr public string ID { get; private set; } = default!; [ParentDataField(typeof(PrototypeIdArraySerializer))] - public string[]? Parents { get; } + public string[]? Parents { get; private set; } [AbstractDataField] [NeverPushInheritance] - public bool Abstract { get; } + public bool Abstract { get; private set; } /// /// Determines if cloning can be prevented by traits etc. @@ -62,11 +64,20 @@ public sealed partial class CloningSettingsPrototype : IPrototype, IInheritingPr /// TODO: Make this not a string https://github.com/space-wizards/RobustToolbox/issues/5709 /// - /// Components to copy from the original to the clone. - /// This only makes a shallow copy of datafields! - /// If you need a deep copy or additional component initialization, then subscribe to CloningEvent instead! + /// Components to copy from the original to the clone using CopyComp. + /// This makes a deepcopy of all datafields, including information the clone might not own! + /// If you need to exclude data or do additional component initialization, then subscribe to CloningEvent instead! + /// Components in this list that the orginal does not have will be removed from the clone. /// [DataField] [AlwaysPushInheritance] public HashSet Components = new(); + + /// + /// Components to remove from the clone and copy over manually using a CloneEvent raised on the original. + /// Use this when the component cannot be copied using CopyComp, for example when having an Uid as a datafield. + /// + [DataField] + [AlwaysPushInheritance] + public HashSet EventComponents = new(); } diff --git a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs index 6fa28fd4f6..8aa1c71459 100644 --- a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs @@ -62,20 +62,17 @@ public abstract class ClothingSystem : EntitySystem if (TryComp(slotEntity, out ClothingComponent? item) && !item.QuickEquip) continue; - // Sunrise edit - убрал тихое надевание через быстрое надевание - if (!_invSystem.TryUnequip(userEnt, slotDef.Name, false, inventory: userEnt, checkDoafter: true)) + if (!_invSystem.TryUnequip(userEnt, slotDef.Name, true, inventory: userEnt, checkDoafter: true)) continue; - // Sunrise edit - убрал тихое надевание через быстрое надевание - if (!_invSystem.TryEquip(userEnt, toEquipEnt, slotDef.Name, false, inventory: userEnt, clothing: toEquipEnt, checkDoafter: true, triggerHandContact: true)) + if (!_invSystem.TryEquip(userEnt, toEquipEnt, slotDef.Name, inventory: userEnt, clothing: toEquipEnt, checkDoafter: true, triggerHandContact: true)) continue; _handsSystem.PickupOrDrop(userEnt, slotEntity.Value, handsComp: userEnt); } else { - // Sunrise edit - убрал тихое надевание через быстрое надевание - if (!_invSystem.TryEquip(userEnt, toEquipEnt, slotDef.Name, false, inventory: userEnt, clothing: toEquipEnt, checkDoafter: true, triggerHandContact: true)) + if (!_invSystem.TryEquip(userEnt, toEquipEnt, slotDef.Name, inventory: userEnt, clothing: toEquipEnt, checkDoafter: true, triggerHandContact: true)) continue; } diff --git a/Content.Shared/Clothing/EntitySystems/FireProtectionSystem.cs b/Content.Shared/Clothing/EntitySystems/FireProtectionSystem.cs index b6c29b21ad..8db4e1c9d2 100644 --- a/Content.Shared/Clothing/EntitySystems/FireProtectionSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/FireProtectionSystem.cs @@ -25,7 +25,7 @@ public sealed class FireProtectionSystem : EntitySystem private void OnArmorExamine(Entity ent, ref ArmorExamineEvent args) { - var value = MathF.Round((1f - ent.Comp.Reduction) * 100, 1); + var value = MathF.Round(ent.Comp.Reduction * 100, 1); if (value == 0) return; diff --git a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs index b33da95691..60c4a674e3 100644 --- a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs @@ -14,7 +14,6 @@ namespace Content.Shared.Clothing.EntitySystems; public abstract class SharedChameleonClothingSystem : EntitySystem { - [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly ClothingSystem _clothingSystem = default!; [Dependency] private readonly ContrabandSystem _contraband = default!; @@ -68,7 +67,7 @@ public abstract class SharedChameleonClothingSystem : EntitySystem // item sprite logic if (TryComp(uid, out ItemComponent? item) && - proto.TryGetComponent(out ItemComponent? otherItem, _factory)) + proto.TryGetComponent(out ItemComponent? otherItem, Factory)) { _itemSystem.CopyVisuals(uid, otherItem, item); } @@ -182,7 +181,7 @@ public abstract class SharedChameleonClothingSystem : EntitySystem return false; // check if it is marked as valid chameleon target - if (!proto.TryGetComponent(out TagComponent? tag, _factory) || !_tag.HasTag(tag, WhitelistChameleonTag)) + if (!proto.TryGetComponent(out TagComponent? tag, Factory) || !_tag.HasTag(tag, WhitelistChameleonTag)) return false; if (requiredTag != null && !_tag.HasTag(tag, requiredTag)) diff --git a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs index ec8edea474..cd0996a017 100644 --- a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs +++ b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs @@ -9,7 +9,6 @@ using Content.Shared.Interaction; using Content.Shared.Movement.Pulling.Components; using Content.Shared.Movement.Pulling.Systems; using Content.Shared.Popups; -using Content.Shared.Tools; using Content.Shared.Tools.Components; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -28,9 +27,10 @@ public sealed partial class AnchorableSystem : EntitySystem [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly PullingSystem _pulling = default!; + [Dependency] private readonly SharedMapSystem _map = default!; [Dependency] private readonly SharedToolSystem _tool = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; private EntityQuery _physicsQuery; @@ -268,9 +268,9 @@ public sealed partial class AnchorableSystem : EntitySystem // Need to cast the event or it will be raised as BaseAnchoredAttemptEvent. if (anchoring) - RaiseLocalEvent(uid, (AnchorAttemptEvent) attempt); + RaiseLocalEvent(uid, (AnchorAttemptEvent)attempt); else - RaiseLocalEvent(uid, (UnanchorAttemptEvent) attempt); + RaiseLocalEvent(uid, (UnanchorAttemptEvent)attempt); anchorable.Delay += attempt.Delay; @@ -288,17 +288,17 @@ public sealed partial class AnchorableSystem : EntitySystem if (!TryComp(gridUid, out var grid)) return false; - var tileIndices = grid.TileIndicesFor(coordinates); - return TileFree(grid, tileIndices, anchorBody.CollisionLayer, anchorBody.CollisionMask); + var tileIndices = _map.TileIndicesFor((gridUid.Value, grid), coordinates); + return TileFree((gridUid.Value, grid), tileIndices, anchorBody.CollisionLayer, anchorBody.CollisionMask); } /// /// Returns true if no hard anchored entities match the collision layer or mask specified. /// /// - public bool TileFree(MapGridComponent grid, Vector2i gridIndices, int collisionLayer = 0, int collisionMask = 0) + public bool TileFree(Entity grid, Vector2i gridIndices, int collisionLayer = 0, int collisionMask = 0) { - var enumerator = grid.GetAnchoredEntitiesEnumerator(gridIndices); + var enumerator = _map.GetAnchoredEntitiesEnumerator(grid, grid.Comp, gridIndices); while (enumerator.MoveNext(out var ent)) { @@ -319,6 +319,12 @@ public sealed partial class AnchorableSystem : EntitySystem return true; } + [Obsolete("Use the Entity version")] + public bool TileFree(MapGridComponent grid, Vector2i gridIndices, int collisionLayer = 0, int collisionMask = 0) + { + return TileFree((grid.Owner, grid), gridIndices, collisionLayer, collisionMask); + } + /// /// Returns true if any unstackables are also on the corresponding tile. /// @@ -337,7 +343,7 @@ public sealed partial class AnchorableSystem : EntitySystem if (!TryComp(gridUid, out var grid)) return false; - var enumerator = grid.GetAnchoredEntitiesEnumerator(grid.LocalToTile(location)); + var enumerator = _map.GetAnchoredEntitiesEnumerator(gridUid.Value, grid, _map.LocalToTile(gridUid.Value, grid, location)); while (enumerator.MoveNext(out var entity)) { diff --git a/Content.Shared/Construction/SharedConstructionSystem.cs b/Content.Shared/Construction/SharedConstructionSystem.cs index a2b647ae92..7f75ba63b8 100644 --- a/Content.Shared/Construction/SharedConstructionSystem.cs +++ b/Content.Shared/Construction/SharedConstructionSystem.cs @@ -9,6 +9,7 @@ namespace Content.Shared.Construction public abstract class SharedConstructionSystem : EntitySystem { [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly SharedMapSystem _map = default!; [Dependency] protected readonly IPrototypeManager PrototypeManager = default!; [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; @@ -20,10 +21,10 @@ namespace Content.Shared.Construction if (!canBuildInImpassable) return null; - if (!_mapManager.TryFindGridAt(coords, out _, out var grid)) + if (!_mapManager.TryFindGridAt(coords, out var gridUid, out var grid)) return null; - var ignored = grid.GetAnchoredEntities(coords).ToHashSet(); + var ignored = _map.GetAnchoredEntities((gridUid, grid), coords).ToHashSet(); return e => ignored.Contains(e); } diff --git a/Content.Shared/Containers/SlotBasedConnectedContainerSystem.cs b/Content.Shared/Containers/SlotBasedConnectedContainerSystem.cs new file mode 100644 index 0000000000..4970a54e33 --- /dev/null +++ b/Content.Shared/Containers/SlotBasedConnectedContainerSystem.cs @@ -0,0 +1,86 @@ +using System.Diagnostics.CodeAnalysis; +using Content.Shared.Chemistry.Components; +using Content.Shared.Inventory; +using Content.Shared.Whitelist; +using Robust.Shared.Containers; + +namespace Content.Shared.Containers; + +/// +/// System for getting container that is linked to subject entity. Container is supposed to be present in certain character slot. +/// Can be used for linking ammo feeder, solution source for spray nozzle, etc. +/// +public sealed class SlotBasedConnectedContainerSystem : EntitySystem +{ + [Dependency] private readonly SharedContainerSystem _containers = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnGettingConnectedContainer); + } + + /// + /// Try get connected container entity in character slots for . + /// + /// + /// Entity for which connected container is required. If + /// is used - tries to find container in slot, returns false and null otherwise. + /// + /// Found connected container entity or null. + /// True if connected container was found, false otherwise. + public bool TryGetConnectedContainer(EntityUid uid, [NotNullWhen(true)] out EntityUid? slotEntity) + { + if (!TryComp(uid, out var component)) + { + slotEntity = null; + return false; + } + + return TryGetConnectedContainer(uid, component.TargetSlot, component.ContainerWhitelist, out slotEntity); + } + + private void OnGettingConnectedContainer(Entity ent, ref GetConnectedContainerEvent args) + { + if (TryGetConnectedContainer(ent, ent.Comp.TargetSlot, ent.Comp.ContainerWhitelist, out var val)) + args.ContainerEntity = val; + } + + private bool TryGetConnectedContainer(EntityUid uid, SlotFlags slotFlag, EntityWhitelist? providerWhitelist, [NotNullWhen(true)] out EntityUid? slotEntity) + { + slotEntity = null; + + if (!_containers.TryGetContainingContainer((uid, null, null), out var container)) + return false; + + var user = container.Owner; + if (!_inventory.TryGetContainerSlotEnumerator(user, out var enumerator, slotFlag)) + return false; + + while (enumerator.NextItem(out var item)) + { + if (_whitelistSystem.IsWhitelistFailOrNull(providerWhitelist, item)) + continue; + + slotEntity = item; + return true; + } + + return false; + } +} + +/// +/// Event for an attempt of getting container, connected to entity on which event was raised. +/// Fills if connected container exists. +/// +[ByRefEvent] +public struct GetConnectedContainerEvent +{ + /// + /// Container entity, if it exists, or null. + /// + public EntityUid? ContainerEntity; +} diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index b59dab176f..979955532b 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -41,7 +41,6 @@ namespace Content.Shared.Cuffs // TODO remove all the IsServer() checks. public abstract partial class SharedCuffableSystem : EntitySystem { - [Dependency] private readonly IComponentFactory _componentFactory = default!; [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly ISharedAdminLogManager _adminLog = default!; [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; @@ -147,7 +146,7 @@ namespace Content.Shared.Cuffs private void OnStartup(EntityUid uid, CuffableComponent component, ComponentInit args) { - component.Container = _container.EnsureContainer(uid, _componentFactory.GetComponentName(component.GetType())); + component.Container = _container.EnsureContainer(uid, Factory.GetComponentName(component.GetType())); } private void OnRejuvenate(EntityUid uid, CuffableComponent component, RejuvenateEvent args) diff --git a/Content.Shared/Damage/Components/StaminaDamageOnEmbedComponent.cs b/Content.Shared/Damage/Components/StaminaDamageOnEmbedComponent.cs index 4ad4906246..97d7359b18 100644 --- a/Content.Shared/Damage/Components/StaminaDamageOnEmbedComponent.cs +++ b/Content.Shared/Damage/Components/StaminaDamageOnEmbedComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Damage.Components; [RegisterComponent] [NetworkedComponent] [AutoGenerateComponentState] -[Access(typeof(StaminaSystem))] +[Access(typeof(SharedStaminaSystem))] public sealed partial class StaminaDamageOnEmbedComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] diff --git a/Content.Shared/Damage/Components/StaminaModifierComponent.cs b/Content.Shared/Damage/Components/StaminaModifierComponent.cs index f054c77f7b..e492ea04ff 100644 --- a/Content.Shared/Damage/Components/StaminaModifierComponent.cs +++ b/Content.Shared/Damage/Components/StaminaModifierComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Damage.Components; /// /// Multiplies the entity's by the . /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(StaminaSystem))] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedStaminaSystem))] public sealed partial class StaminaModifierComponent : Component { /// diff --git a/Content.Shared/Damage/Systems/SharedGodmodeSystem.cs b/Content.Shared/Damage/Systems/SharedGodmodeSystem.cs index 4ccc56dcb8..b6b487430b 100644 --- a/Content.Shared/Damage/Systems/SharedGodmodeSystem.cs +++ b/Content.Shared/Damage/Systems/SharedGodmodeSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Damage.Components; using Content.Shared.Damage.Events; +using Content.Shared.Destructible; using Content.Shared.Rejuvenate; using Content.Shared.Slippery; using Content.Shared.StatusEffect; @@ -18,6 +19,7 @@ public abstract class SharedGodmodeSystem : EntitySystem SubscribeLocalEvent(OnBeforeStatusEffect); SubscribeLocalEvent(OnBeforeStaminaDamage); SubscribeLocalEvent(OnSlipAttempt); + SubscribeLocalEvent(OnDestruction); } private void OnSlipAttempt(EntityUid uid, GodmodeComponent component, SlipAttemptEvent args) @@ -40,6 +42,11 @@ public abstract class SharedGodmodeSystem : EntitySystem args.Cancelled = true; } + private void OnDestruction(Entity ent, ref DestructionAttemptEvent args) + { + args.Cancel(); + } + public virtual void EnableGodmode(EntityUid uid, GodmodeComponent? godmode = null) { godmode ??= EnsureComp(uid); diff --git a/Content.Shared/Damage/Systems/StaminaSystem.Modifier.cs b/Content.Shared/Damage/Systems/SharedStaminaSystem.Modifier.cs similarity index 97% rename from Content.Shared/Damage/Systems/StaminaSystem.Modifier.cs rename to Content.Shared/Damage/Systems/SharedStaminaSystem.Modifier.cs index aadf5a9dee..c723d8cb94 100644 --- a/Content.Shared/Damage/Systems/StaminaSystem.Modifier.cs +++ b/Content.Shared/Damage/Systems/SharedStaminaSystem.Modifier.cs @@ -2,7 +2,7 @@ using Content.Shared.Damage.Components; namespace Content.Shared.Damage.Systems; -public sealed partial class StaminaSystem +public partial class SharedStaminaSystem { private void InitializeModifier() { diff --git a/Content.Shared/Damage/Systems/StaminaSystem.Resistance.cs b/Content.Shared/Damage/Systems/SharedStaminaSystem.Resistance.cs similarity index 96% rename from Content.Shared/Damage/Systems/StaminaSystem.Resistance.cs rename to Content.Shared/Damage/Systems/SharedStaminaSystem.Resistance.cs index 9ad09b8f2f..f071bc1e66 100644 --- a/Content.Shared/Damage/Systems/StaminaSystem.Resistance.cs +++ b/Content.Shared/Damage/Systems/SharedStaminaSystem.Resistance.cs @@ -5,7 +5,7 @@ using Content.Shared.Inventory; namespace Content.Shared.Damage.Systems; -public sealed partial class StaminaSystem +public partial class SharedStaminaSystem { private void InitializeResistance() { diff --git a/Content.Shared/Damage/Systems/StaminaSystem.cs b/Content.Shared/Damage/Systems/SharedStaminaSystem.cs similarity index 99% rename from Content.Shared/Damage/Systems/StaminaSystem.cs rename to Content.Shared/Damage/Systems/SharedStaminaSystem.cs index 365b66b106..0da09d0f6d 100644 --- a/Content.Shared/Damage/Systems/StaminaSystem.cs +++ b/Content.Shared/Damage/Systems/SharedStaminaSystem.cs @@ -24,7 +24,7 @@ using Robust.Shared.Timing; namespace Content.Shared.Damage.Systems; -public sealed partial class StaminaSystem : EntitySystem +public abstract partial class SharedStaminaSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly INetManager _net = default!; diff --git a/Content.Shared/Delivery/DeliveryBombComponent.cs b/Content.Shared/Delivery/DeliveryBombComponent.cs new file mode 100644 index 0000000000..a51bb839ee --- /dev/null +++ b/Content.Shared/Delivery/DeliveryBombComponent.cs @@ -0,0 +1,65 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Delivery; + +/// +/// Component given to deliveries. +/// This delivery will "prime" based on circumstances defined in the datafield. +/// When primed, it will attempt to explode every few seconds, with the chance increasing each time it fails to do so. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause] +[Access(typeof(DeliveryModifierSystem))] +public sealed partial class DeliveryBombComponent : Component +{ + /// + /// How often will this bomb retry to explode. + /// + [DataField] + public TimeSpan ExplosionRetryDelay = TimeSpan.FromSeconds(5); + + /// + /// The time at which the next retry will happen + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoNetworkedField, AutoPausedField] + public TimeSpan NextExplosionRetry; + + /// + /// The chance this bomb explodes each time it attempts to do so. + /// + [DataField, AutoNetworkedField] + public float ExplosionChance = 0.01f; + + /// + /// How much should the chance of explosion increase each failed retry? + /// + [DataField] + public float ExplosionChanceRetryIncrease = 0.01f; + + /// + /// Should this bomb get primed when the delivery is unlocked? + /// + [DataField] + public bool PrimeOnUnlock = true; + + /// + /// Should this bomb get primed when the delivery is broken? + /// Requires to be fragile as well. + /// + [DataField] + public bool PrimeOnBreakage = true; + + /// + /// Should this bomb get primed when the delivery expires? + /// Requires to be priority as well. + /// + [DataField] + public bool PrimeOnExpire = true; + + /// + /// Multiplier to choose when a crazy person actually opens it. + /// Multiplicative, not additive. + /// + [DataField] + public float SpesoMultiplier = 1.5f; +} diff --git a/Content.Shared/Delivery/DeliveryModifierSystem.cs b/Content.Shared/Delivery/DeliveryModifierSystem.cs index 2b071b18cf..0e3f620f26 100644 --- a/Content.Shared/Delivery/DeliveryModifierSystem.cs +++ b/Content.Shared/Delivery/DeliveryModifierSystem.cs @@ -1,6 +1,10 @@ +using Content.Shared.Audio; using Content.Shared.Destructible; using Content.Shared.Examine; +using Content.Shared.Explosion.EntitySystems; using Content.Shared.NameModifier.EntitySystems; +using JetBrains.Annotations; +using Robust.Shared.Network; using Robust.Shared.Random; using Robust.Shared.Serialization; using Robust.Shared.Timing; @@ -14,8 +18,11 @@ public sealed partial class DeliveryModifierSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly NameModifierSystem _nameModifier = default!; [Dependency] private readonly SharedDeliverySystem _delivery = default!; + [Dependency] private readonly SharedExplosionSystem _explosion = default!; + [Dependency] private readonly SharedAmbientSoundSystem _ambientSound = default!; public override void Initialize() { @@ -33,6 +40,14 @@ public sealed partial class DeliveryModifierSystem : EntitySystem SubscribeLocalEvent(OnFragileBreakage); SubscribeLocalEvent(OnFragileExamine); SubscribeLocalEvent(OnGetFragileMultiplier); + + SubscribeLocalEvent(OnExplosiveStartup); + SubscribeLocalEvent(OnPrimedExplosiveMapInit); + SubscribeLocalEvent(OnExplosiveExamine); + SubscribeLocalEvent(OnGetExplosiveMultiplier); + SubscribeLocalEvent(OnExplosiveUnlock); + SubscribeLocalEvent(OnExplosiveExpire); + SubscribeLocalEvent(OnExplosiveBreak); } #region Random @@ -119,12 +134,80 @@ public sealed partial class DeliveryModifierSystem : EntitySystem } #endregion + #region Explosive + private void OnExplosiveStartup(Entity ent, ref ComponentStartup args) + { + _delivery.UpdateBombVisuals(ent); + } + + private void OnPrimedExplosiveMapInit(Entity ent, ref MapInitEvent args) + { + if (!TryComp(ent, out var bomb)) + return; + + bomb.NextExplosionRetry = _timing.CurTime; + } + + private void OnExplosiveExamine(Entity ent, ref ExaminedEvent args) + { + var trueName = _nameModifier.GetBaseName(ent.Owner); + + var isPrimed = HasComp(ent); + + if (isPrimed) + args.PushMarkup(Loc.GetString("delivery-bomb-primed-examine", ("type", trueName))); + else + args.PushMarkup(Loc.GetString("delivery-bomb-examine", ("type", trueName))); + } + + private void OnGetExplosiveMultiplier(Entity ent, ref GetDeliveryMultiplierEvent args) + { + // Big danger for big rewards + args.MultiplicativeMultiplier += ent.Comp.SpesoMultiplier; + } + + private void OnExplosiveUnlock(Entity ent, ref DeliveryUnlockedEvent args) + { + if (!ent.Comp.PrimeOnUnlock) + return; + + PrimeBombDelivery(ent); + } + + private void OnExplosiveExpire(Entity ent, ref DeliveryPriorityExpiredEvent args) + { + if (!ent.Comp.PrimeOnExpire) + return; + + PrimeBombDelivery(ent); + } + + private void OnExplosiveBreak(Entity ent, ref BreakageEventArgs args) + { + if (!ent.Comp.PrimeOnBreakage) + return; + + PrimeBombDelivery(ent); + } + + [PublicAPI] + public void PrimeBombDelivery(Entity ent) + { + EnsureComp(ent); + + _delivery.UpdateBombVisuals(ent); + + _ambientSound.SetAmbience(ent, true); + } + #endregion + #region Update Loops public override void Update(float frameTime) { base.Update(frameTime); UpdatePriorty(frameTime); + UpdateBomb(frameTime); } private void UpdatePriorty(float frameTime) @@ -148,6 +231,27 @@ public sealed partial class DeliveryModifierSystem : EntitySystem } } } + + private void UpdateBomb(float frameTime) + { + var bombQuery = EntityQueryEnumerator(); + var curTime = _timing.CurTime; + + while (bombQuery.MoveNext(out var uid, out _, out var bombData)) + { + if (bombData.NextExplosionRetry > curTime) + continue; + + bombData.NextExplosionRetry += bombData.ExplosionRetryDelay; + + // Explosions cannot be predicted. + if (_net.IsServer && _random.NextFloat() < bombData.ExplosionChance) + _explosion.TriggerExplosive(uid); + + bombData.ExplosionChance += bombData.ExplosionChanceRetryIncrease; + Dirty(uid, bombData); + } + } #endregion } diff --git a/Content.Shared/Delivery/DeliveryVisuals.cs b/Content.Shared/Delivery/DeliveryVisuals.cs index 35391854be..b63d6a20bb 100644 --- a/Content.Shared/Delivery/DeliveryVisuals.cs +++ b/Content.Shared/Delivery/DeliveryVisuals.cs @@ -9,6 +9,7 @@ public enum DeliveryVisuals : byte IsTrash, IsBroken, IsFragile, + IsBomb, PriorityState, JobIcon, } @@ -21,6 +22,14 @@ public enum DeliveryPriorityState : byte Inactive, } +[Serializable, NetSerializable] +public enum DeliveryBombState : byte +{ + Off, + Inactive, + Primed, +} + [Serializable, NetSerializable] public enum DeliverySpawnerVisuals : byte { diff --git a/Content.Shared/Delivery/PrimedDeliveryBombComponent.cs b/Content.Shared/Delivery/PrimedDeliveryBombComponent.cs new file mode 100644 index 0000000000..f3fd124f28 --- /dev/null +++ b/Content.Shared/Delivery/PrimedDeliveryBombComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Delivery; + +/// +/// Component given to deliveries. +/// Indicates this bomb delivery is primed. +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(DeliveryModifierSystem))] +public sealed partial class PrimedDeliveryBombComponent : Component; diff --git a/Content.Shared/Delivery/SharedDeliverySystem.cs b/Content.Shared/Delivery/SharedDeliverySystem.cs index 175dfbe70d..52f83500e1 100644 --- a/Content.Shared/Delivery/SharedDeliverySystem.cs +++ b/Content.Shared/Delivery/SharedDeliverySystem.cs @@ -259,6 +259,13 @@ public abstract class SharedDeliverySystem : EntitySystem _appearance.SetData(ent, DeliveryVisuals.IsFragile, isFragile); } + public void UpdateBombVisuals(Entity ent) + { + var isPrimed = HasComp(ent); + + _appearance.SetData(ent, DeliveryVisuals.IsBomb, isPrimed ? DeliveryBombState.Primed : DeliveryBombState.Inactive); + } + protected void UpdateDeliverySpawnerVisuals(EntityUid uid, int contents) { _appearance.SetData(uid, DeliverySpawnerVisuals.Contents, contents > 0); diff --git a/Content.Shared/Destructible/SharedDestructibleSystem.cs b/Content.Shared/Destructible/SharedDestructibleSystem.cs index eb87f00b6c..572ed9d560 100644 --- a/Content.Shared/Destructible/SharedDestructibleSystem.cs +++ b/Content.Shared/Destructible/SharedDestructibleSystem.cs @@ -5,12 +5,18 @@ public abstract class SharedDestructibleSystem : EntitySystem /// /// Force entity to be destroyed and deleted. /// - public void DestroyEntity(EntityUid owner) + public bool DestroyEntity(EntityUid owner) { - var eventArgs = new DestructionEventArgs(); + var ev = new DestructionAttemptEvent(); + RaiseLocalEvent(owner, ev); + if (ev.Cancelled) + return false; + var eventArgs = new DestructionEventArgs(); RaiseLocalEvent(owner, eventArgs); + QueueDel(owner); + return true; } /// @@ -23,6 +29,14 @@ public abstract class SharedDestructibleSystem : EntitySystem } } +/// +/// Raised before an entity is about to be destroyed and deleted +/// +public sealed class DestructionAttemptEvent : CancellableEntityEventArgs +{ + +} + /// /// Raised when entity is destroyed and about to be deleted. /// diff --git a/Content.Shared/DeviceLinking/SharedLogicGate.cs b/Content.Shared/DeviceLinking/SharedLogicGate.cs index 75f8cb4951..35d3f9e6f1 100644 --- a/Content.Shared/DeviceLinking/SharedLogicGate.cs +++ b/Content.Shared/DeviceLinking/SharedLogicGate.cs @@ -40,3 +40,15 @@ public enum LogicGateLayers : byte InputB, Output } + +/// +/// The possible states of a logic-capable signal. +/// Stored in network payload data of device network messages. +/// +[Serializable, NetSerializable] +public enum SignalState : byte +{ + Momentary, // Instantaneous pulse high, compatibility behavior + Low, + High +} diff --git a/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs b/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs index d15e80a0e3..a4c736838a 100644 --- a/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs +++ b/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs @@ -32,7 +32,7 @@ public abstract class SharedEnsnareableSystem : EntitySystem [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] protected readonly SharedPopupSystem Popup = default!; - [Dependency] private readonly StaminaSystem _stamina = default!; + [Dependency] private readonly SharedStaminaSystem _stamina = default!; public override void Initialize() { @@ -52,7 +52,6 @@ public abstract class SharedEnsnareableSystem : EntitySystem SubscribeLocalEvent(AttemptStepTrigger); SubscribeLocalEvent(OnStepTrigger); SubscribeLocalEvent(OnThrowHit); - SubscribeLocalEvent(OnAttemptPacifiedThrow); } protected virtual void OnEnsnareInit(Entity ent, ref ComponentInit args) @@ -187,11 +186,6 @@ public abstract class SharedEnsnareableSystem : EntitySystem } } - private void OnAttemptPacifiedThrow(Entity ent, ref AttemptPacifiedThrowEvent args) - { - args.Cancel("pacified-cannot-throw-snare"); - } - private void OnRemoveEnsnareAlert(Entity ent, ref RemoveEnsnareAlertEvent args) { if (args.Handled) diff --git a/Content.Server/EntityEffects/EffectConditions/BodyTemperature.cs b/Content.Shared/EntityEffects/EffectConditions/BodyTemperature.cs similarity index 52% rename from Content.Server/EntityEffects/EffectConditions/BodyTemperature.cs rename to Content.Shared/EntityEffects/EffectConditions/BodyTemperature.cs index 9f68bec918..351e4ee12c 100644 --- a/Content.Server/EntityEffects/EffectConditions/BodyTemperature.cs +++ b/Content.Shared/EntityEffects/EffectConditions/BodyTemperature.cs @@ -1,30 +1,18 @@ -using Content.Server.Temperature.Components; -using Content.Shared.EntityEffects; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.EffectConditions; +namespace Content.Shared.EntityEffects.EffectConditions; /// /// Requires the target entity to be above or below a certain temperature. /// Used for things like cryoxadone and pyroxadone. /// -public sealed partial class Temperature : EntityEffectCondition +public sealed partial class Temperature : EventEntityEffectCondition { [DataField] public float Min = 0; [DataField] public float Max = float.PositiveInfinity; - public override bool Condition(EntityEffectBaseArgs args) - { - if (args.EntityManager.TryGetComponent(args.TargetEntity, out TemperatureComponent? temp)) - { - if (temp.CurrentTemperature > Min && temp.CurrentTemperature < Max) - return true; - } - - return false; - } public override string GuidebookExplanation(IPrototypeManager prototype) { diff --git a/Content.Shared/EntityEffects/EffectConditions/BreathingCondition.cs b/Content.Shared/EntityEffects/EffectConditions/BreathingCondition.cs new file mode 100644 index 0000000000..9de1bfdbf6 --- /dev/null +++ b/Content.Shared/EntityEffects/EffectConditions/BreathingCondition.cs @@ -0,0 +1,21 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.EffectConditions; + +/// +/// Condition for if the entity is successfully breathing. +/// +public sealed partial class Breathing : EventEntityEffectCondition +{ + /// + /// If true, the entity must not have trouble breathing to pass. + /// + [DataField] + public bool IsBreathing = true; + + public override string GuidebookExplanation(IPrototypeManager prototype) + { + return Loc.GetString("reagent-effect-condition-guidebook-breathing", + ("isBreathing", IsBreathing)); + } +} diff --git a/Content.Server/EntityEffects/EffectConditions/HasTagCondition.cs b/Content.Shared/EntityEffects/EffectConditions/HasTagCondition.cs similarity index 86% rename from Content.Server/EntityEffects/EffectConditions/HasTagCondition.cs rename to Content.Shared/EntityEffects/EffectConditions/HasTagCondition.cs index b0428b41bf..379a248027 100644 --- a/Content.Server/EntityEffects/EffectConditions/HasTagCondition.cs +++ b/Content.Shared/EntityEffects/EffectConditions/HasTagCondition.cs @@ -1,12 +1,9 @@ -using Content.Shared.EntityEffects; using Content.Shared.Tag; -using JetBrains.Annotations; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.EntityEffects.EffectConditions; +namespace Content.Shared.EntityEffects.EffectConditions; -[UsedImplicitly] public sealed partial class HasTag : EntityEffectCondition { [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] diff --git a/Content.Shared/EntityEffects/EffectConditions/InternalsCondition.cs b/Content.Shared/EntityEffects/EffectConditions/InternalsCondition.cs new file mode 100644 index 0000000000..1bc5b26cfb --- /dev/null +++ b/Content.Shared/EntityEffects/EffectConditions/InternalsCondition.cs @@ -0,0 +1,31 @@ +using Content.Shared.Body.Components; +using Content.Shared.EntityEffects; +using Robust.Shared.Prototypes; + +namespace Content.Server.EntityEffects.EffectConditions; + +/// +/// Condition for if the entity is or isn't wearing internals. +/// +public sealed partial class Internals : EntityEffectCondition +{ + /// + /// To pass, the entity's internals must have this same state. + /// + [DataField] + public bool UsingInternals = true; + + public override bool Condition(EntityEffectBaseArgs args) + { + if (!args.EntityManager.TryGetComponent(args.TargetEntity, out InternalsComponent? internalsComp)) + return !UsingInternals; // They have no internals to wear. + + var internalsState = internalsComp.GasTankEntity == null; + return UsingInternals == internalsState; + } + + public override string GuidebookExplanation(IPrototypeManager prototype) + { + return Loc.GetString("reagent-effect-condition-guidebook-internals", ("usingInternals", UsingInternals)); + } +} diff --git a/Content.Server/EntityEffects/EffectConditions/JobCondition.cs b/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs similarity index 95% rename from Content.Server/EntityEffects/EffectConditions/JobCondition.cs rename to Content.Shared/EntityEffects/EffectConditions/JobCondition.cs index 9621d6945f..7fec087d6b 100644 --- a/Content.Server/EntityEffects/EffectConditions/JobCondition.cs +++ b/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs @@ -1,5 +1,4 @@ using System.Linq; -using Content.Shared.EntityEffects; using Content.Shared.Localizations; using Content.Shared.Mind; using Content.Shared.Mind.Components; @@ -7,7 +6,7 @@ using Content.Shared.Roles; using Content.Shared.Roles.Jobs; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.EffectConditions; +namespace Content.Shared.EntityEffects.EffectConditions; public sealed partial class JobCondition : EntityEffectCondition { diff --git a/Content.Server/EntityEffects/EffectConditions/MobStateCondition.cs b/Content.Shared/EntityEffects/EffectConditions/MobStateCondition.cs similarity index 88% rename from Content.Server/EntityEffects/EffectConditions/MobStateCondition.cs rename to Content.Shared/EntityEffects/EffectConditions/MobStateCondition.cs index d676b29bf9..efe7246b2a 100644 --- a/Content.Server/EntityEffects/EffectConditions/MobStateCondition.cs +++ b/Content.Shared/EntityEffects/EffectConditions/MobStateCondition.cs @@ -1,9 +1,8 @@ -using Content.Shared.EntityEffects; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.EffectConditions; +namespace Content.Shared.EntityEffects.EffectConditions; public sealed partial class MobStateCondition : EntityEffectCondition { diff --git a/Content.Shared/EntityEffects/EffectConditions/OrganType.cs b/Content.Shared/EntityEffects/EffectConditions/OrganType.cs new file mode 100644 index 0000000000..f99eb5cc77 --- /dev/null +++ b/Content.Shared/EntityEffects/EffectConditions/OrganType.cs @@ -0,0 +1,28 @@ +// using Content.Server.Body.Components; +using Content.Shared.Body.Prototypes; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.EntityEffects.EffectConditions; + +/// +/// Requires that the metabolizing organ is or is not tagged with a certain MetabolizerType +/// +public sealed partial class OrganType : EventEntityEffectCondition +{ + [DataField(required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Type = default!; + + /// + /// Does this condition pass when the organ has the type, or when it doesn't have the type? + /// + [DataField] + public bool ShouldHave = true; + + public override string GuidebookExplanation(IPrototypeManager prototype) + { + return Loc.GetString("reagent-effect-condition-guidebook-organ-type", + ("name", prototype.Index(Type).LocalizedName), + ("shouldhave", ShouldHave)); + } +} diff --git a/Content.Server/EntityEffects/EffectConditions/ReagentThreshold.cs b/Content.Shared/EntityEffects/EffectConditions/ReagentThreshold.cs similarity index 95% rename from Content.Server/EntityEffects/EffectConditions/ReagentThreshold.cs rename to Content.Shared/EntityEffects/EffectConditions/ReagentThreshold.cs index 6cbd7b4ea5..af71f20c8e 100644 --- a/Content.Server/EntityEffects/EffectConditions/ReagentThreshold.cs +++ b/Content.Shared/EntityEffects/EffectConditions/ReagentThreshold.cs @@ -1,9 +1,8 @@ using Content.Shared.Chemistry.Reagent; -using Content.Shared.EntityEffects; using Content.Shared.FixedPoint; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.EffectConditions; +namespace Content.Shared.EntityEffects.EffectConditions; /// /// Used for implementing reagent effects that require a certain amount of reagent before it should be applied. diff --git a/Content.Server/EntityEffects/EffectConditions/SolutionTemperature.cs b/Content.Shared/EntityEffects/EffectConditions/SolutionTemperature.cs similarity index 92% rename from Content.Server/EntityEffects/EffectConditions/SolutionTemperature.cs rename to Content.Shared/EntityEffects/EffectConditions/SolutionTemperature.cs index b964435db5..a9629401a0 100644 --- a/Content.Server/EntityEffects/EffectConditions/SolutionTemperature.cs +++ b/Content.Shared/EntityEffects/EffectConditions/SolutionTemperature.cs @@ -1,7 +1,6 @@ -using Content.Shared.EntityEffects; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.EffectConditions; +namespace Content.Shared.EntityEffects.EffectConditions; /// /// Requires the solution to be above or below a certain temperature. diff --git a/Content.Server/EntityEffects/EffectConditions/TotalDamage.cs b/Content.Shared/EntityEffects/EffectConditions/TotalDamage.cs similarity index 94% rename from Content.Server/EntityEffects/EffectConditions/TotalDamage.cs rename to Content.Shared/EntityEffects/EffectConditions/TotalDamage.cs index 2d039a1ac8..62b3e037e1 100644 --- a/Content.Server/EntityEffects/EffectConditions/TotalDamage.cs +++ b/Content.Shared/EntityEffects/EffectConditions/TotalDamage.cs @@ -3,7 +3,7 @@ using Content.Shared.Damage; using Content.Shared.FixedPoint; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.EffectConditions; +namespace Content.Shared.EntityEffects.EffectConditions; public sealed partial class TotalDamage : EntityEffectCondition { diff --git a/Content.Server/EntityEffects/EffectConditions/TotalHunger.cs b/Content.Shared/EntityEffects/EffectConditions/TotalHunger.cs similarity index 94% rename from Content.Server/EntityEffects/EffectConditions/TotalHunger.cs rename to Content.Shared/EntityEffects/EffectConditions/TotalHunger.cs index c4f69b60de..b4f1a1af89 100644 --- a/Content.Server/EntityEffects/EffectConditions/TotalHunger.cs +++ b/Content.Shared/EntityEffects/EffectConditions/TotalHunger.cs @@ -3,7 +3,7 @@ using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.EffectConditions; +namespace Content.Shared.EntityEffects.EffectConditions; public sealed partial class Hunger : EntityEffectCondition { diff --git a/Content.Server/EntityEffects/Effects/AddToSolutionReaction.cs b/Content.Shared/EntityEffects/Effects/AddToSolutionReaction.cs similarity index 91% rename from Content.Server/EntityEffects/Effects/AddToSolutionReaction.cs rename to Content.Shared/EntityEffects/Effects/AddToSolutionReaction.cs index b5bb2a22fb..0f2d35d369 100644 --- a/Content.Server/EntityEffects/Effects/AddToSolutionReaction.cs +++ b/Content.Shared/EntityEffects/Effects/AddToSolutionReaction.cs @@ -1,11 +1,8 @@ using Content.Shared.Chemistry.EntitySystems; -using Content.Shared.EntityEffects; -using JetBrains.Annotations; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects +namespace Content.Shared.EntityEffects.Effects { - [UsedImplicitly] public sealed partial class AddToSolutionReaction : EntityEffect { [DataField("solution")] diff --git a/Content.Server/EntityEffects/Effects/AdjustAlert.cs b/Content.Shared/EntityEffects/Effects/AdjustAlert.cs similarity index 95% rename from Content.Server/EntityEffects/Effects/AdjustAlert.cs rename to Content.Shared/EntityEffects/Effects/AdjustAlert.cs index 3bf57b309d..282de0a06c 100644 --- a/Content.Server/EntityEffects/Effects/AdjustAlert.cs +++ b/Content.Shared/EntityEffects/Effects/AdjustAlert.cs @@ -1,9 +1,8 @@ using Content.Shared.Alert; -using Content.Shared.EntityEffects; using Robust.Shared.Prototypes; using Robust.Shared.Timing; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; public sealed partial class AdjustAlert : EntityEffect { diff --git a/Content.Server/EntityEffects/Effects/AdjustReagent.cs b/Content.Shared/EntityEffects/Effects/AdjustReagent.cs similarity index 96% rename from Content.Server/EntityEffects/Effects/AdjustReagent.cs rename to Content.Shared/EntityEffects/Effects/AdjustReagent.cs index 71117d6ec5..bb655b46bc 100644 --- a/Content.Server/EntityEffects/Effects/AdjustReagent.cs +++ b/Content.Shared/EntityEffects/Effects/AdjustReagent.cs @@ -1,14 +1,11 @@ using Content.Shared.Body.Prototypes; using Content.Shared.Chemistry.Reagent; -using Content.Shared.EntityEffects; using Content.Shared.FixedPoint; -using JetBrains.Annotations; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.EntityEffects.Effects +namespace Content.Shared.EntityEffects.Effects { - [UsedImplicitly] public sealed partial class AdjustReagent : EntityEffect { /// @@ -90,3 +87,4 @@ namespace Content.Server.EntityEffects.Effects } } } + diff --git a/Content.Shared/EntityEffects/Effects/AdjustTemperature.cs b/Content.Shared/EntityEffects/Effects/AdjustTemperature.cs new file mode 100644 index 0000000000..03dc226e93 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/AdjustTemperature.cs @@ -0,0 +1,15 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +public sealed partial class AdjustTemperature : EventEntityEffect +{ + [DataField] + public float Amount; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-adjust-temperature", + ("chance", Probability), + ("deltasign", MathF.Sign(Amount)), + ("amount", MathF.Abs(Amount))); +} diff --git a/Content.Shared/EntityEffects/Effects/AreaReactionEffect.cs b/Content.Shared/EntityEffects/Effects/AreaReactionEffect.cs new file mode 100644 index 0000000000..45ed261a35 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/AreaReactionEffect.cs @@ -0,0 +1,43 @@ +using Content.Shared.Database; +using Content.Shared.FixedPoint; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.EntityEffects.Effects; + +/// +/// Basically smoke and foam reactions. +/// +public sealed partial class AreaReactionEffect : EventEntityEffect +{ + /// + /// How many seconds will the effect stay, counting after fully spreading. + /// + [DataField("duration")] public float Duration = 10; + + /// + /// How many units of reaction for 1 smoke entity. + /// + [DataField] public FixedPoint2 OverflowThreshold = FixedPoint2.New(2.5); + + /// + /// The entity prototype that will be spawned as the effect. + /// + [DataField("prototypeId", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] + public string PrototypeId = default!; + + /// + /// Sound that will get played when this reaction effect occurs. + /// + [DataField("sound", required: true)] public SoundSpecifier Sound = default!; + + public override bool ShouldLog => true; + + protected override string ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-area-reaction", + ("duration", Duration) + ); + + public override LogImpact LogImpact => LogImpact.High; +} diff --git a/Content.Server/EntityEffects/Effects/ArtifactUnlock.cs b/Content.Shared/EntityEffects/Effects/ArtifactUnlock.cs similarity index 84% rename from Content.Server/EntityEffects/Effects/ArtifactUnlock.cs rename to Content.Shared/EntityEffects/Effects/ArtifactUnlock.cs index 21454ff7a7..077e1ebfd2 100644 --- a/Content.Server/EntityEffects/Effects/ArtifactUnlock.cs +++ b/Content.Shared/EntityEffects/Effects/ArtifactUnlock.cs @@ -1,25 +1,22 @@ -using Content.Server.Popups; -using Content.Server.Xenoarchaeology.Artifact; +using Content.Shared.Xenoarchaeology.Artifact; using Content.Shared.EntityEffects; using Content.Shared.Popups; using Content.Shared.Xenoarchaeology.Artifact.Components; -using JetBrains.Annotations; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; /// /// Sets an artifact into the unlocking state and marks the artifexium effect as true. /// This is a very specific behavior intended for a specific chem. /// -[UsedImplicitly] public sealed partial class ArtifactUnlock : EntityEffect { public override void Effect(EntityEffectBaseArgs args) { var entMan = args.EntityManager; - var xenoArtifactSys = entMan.System(); - var popupSys = entMan.System(); + var xenoArtifactSys = entMan.System(); + var popupSys = entMan.System(); if (!entMan.TryGetComponent(args.TargetEntity, out var xenoArtifact)) return; diff --git a/Content.Shared/EntityEffects/Effects/CauseZombieInfection.cs b/Content.Shared/EntityEffects/Effects/CauseZombieInfection.cs new file mode 100644 index 0000000000..3f8c58b74c --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/CauseZombieInfection.cs @@ -0,0 +1,9 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +public sealed partial class CauseZombieInfection : EventEntityEffect +{ + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-cause-zombie-infection", ("chance", Probability)); +} diff --git a/Content.Shared/EntityEffects/Effects/ChemCleanBloodstream.cs b/Content.Shared/EntityEffects/Effects/ChemCleanBloodstream.cs new file mode 100644 index 0000000000..98181b8667 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/ChemCleanBloodstream.cs @@ -0,0 +1,15 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +/// +/// Basically smoke and foam reactions. +/// +public sealed partial class ChemCleanBloodstream : EventEntityEffect +{ + [DataField] + public float CleanseRate = 3.0f; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-chem-clean-bloodstream", ("chance", Probability)); +} diff --git a/Content.Server/EntityEffects/Effects/ChemHealEyeDamage.cs b/Content.Shared/EntityEffects/Effects/ChemHealEyeDamage.cs similarity index 87% rename from Content.Server/EntityEffects/Effects/ChemHealEyeDamage.cs rename to Content.Shared/EntityEffects/Effects/ChemHealEyeDamage.cs index 42fc9ffa9f..83b2aa96e5 100644 --- a/Content.Server/EntityEffects/Effects/ChemHealEyeDamage.cs +++ b/Content.Shared/EntityEffects/Effects/ChemHealEyeDamage.cs @@ -1,14 +1,11 @@ -using Content.Shared.EntityEffects; using Content.Shared.Eye.Blinding.Systems; -using JetBrains.Annotations; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; /// /// Heal or apply eye damage /// -[UsedImplicitly] public sealed partial class ChemHealEyeDamage : EntityEffect { /// diff --git a/Content.Shared/EntityEffects/Effects/ChemVomit.cs b/Content.Shared/EntityEffects/Effects/ChemVomit.cs new file mode 100644 index 0000000000..1cd6b2552c --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/ChemVomit.cs @@ -0,0 +1,19 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +/// +/// Forces you to vomit. +/// +public sealed partial class ChemVomit : EventEntityEffect +{ + /// How many units of thirst to add each time we vomit + [DataField] + public float ThirstAmount = -8f; + /// How many units of hunger to add each time we vomit + [DataField] + public float HungerAmount = -8f; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-chem-vomit", ("chance", Probability)); +} diff --git a/Content.Shared/EntityEffects/Effects/CreateEntityReactionEffect.cs b/Content.Shared/EntityEffects/Effects/CreateEntityReactionEffect.cs new file mode 100644 index 0000000000..33173b1737 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/CreateEntityReactionEffect.cs @@ -0,0 +1,26 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.EntityEffects.Effects; + +[DataDefinition] +public sealed partial class CreateEntityReactionEffect : EventEntityEffect +{ + /// + /// What entity to create. + /// + [DataField(required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Entity = default!; + + /// + /// How many entities to create per unit reaction. + /// + [DataField] + public uint Number = 1; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-create-entity-reaction-effect", + ("chance", Probability), + ("entname", IoCManager.Resolve().Index(Entity).Name), + ("amount", Number)); +} diff --git a/Content.Shared/EntityEffects/Effects/CreateGas.cs b/Content.Shared/EntityEffects/Effects/CreateGas.cs new file mode 100644 index 0000000000..75d554cdb3 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/CreateGas.cs @@ -0,0 +1,32 @@ +using Content.Shared.Atmos; +using Content.Shared.Atmos.EntitySystems; +using Content.Shared.Database; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +public sealed partial class CreateGas : EventEntityEffect +{ + [DataField(required: true)] + public Gas Gas = default!; + + /// + /// For each unit consumed, how many moles of gas should be created? + /// + [DataField] + public float Multiplier = 3f; + + public override bool ShouldLog => true; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + var atmos = entSys.GetEntitySystem(); + var gasProto = atmos.GetGas(Gas); + + return Loc.GetString("reagent-effect-guidebook-create-gas", + ("chance", Probability), + ("moles", Multiplier), + ("gas", gasProto.Name)); + } + + public override LogImpact LogImpact => LogImpact.High; +} diff --git a/Content.Shared/EntityEffects/Effects/CureZombieInfection.cs b/Content.Shared/EntityEffects/Effects/CureZombieInfection.cs new file mode 100644 index 0000000000..dd2d21854c --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/CureZombieInfection.cs @@ -0,0 +1,18 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +public sealed partial class CureZombieInfection : EventEntityEffect +{ + [DataField] + public bool Innoculate; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + if(Innoculate) + return Loc.GetString("reagent-effect-guidebook-innoculate-zombie-infection", ("chance", Probability)); + + return Loc.GetString("reagent-effect-guidebook-cure-zombie-infection", ("chance", Probability)); + } +} + diff --git a/Content.Server/EntityEffects/Effects/Drunk.cs b/Content.Shared/EntityEffects/Effects/Drunk.cs similarity index 91% rename from Content.Server/EntityEffects/Effects/Drunk.cs rename to Content.Shared/EntityEffects/Effects/Drunk.cs index 493560e5b9..5f7f29c342 100644 --- a/Content.Server/EntityEffects/Effects/Drunk.cs +++ b/Content.Shared/EntityEffects/Effects/Drunk.cs @@ -1,8 +1,7 @@ using Content.Shared.Drunk; -using Content.Shared.EntityEffects; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; public sealed partial class Drunk : EntityEffect { @@ -28,7 +27,7 @@ public sealed partial class Drunk : EntityEffect if (args is EntityEffectReagentArgs reagentArgs) { boozePower *= reagentArgs.Scale.Float(); } - + var drunkSys = args.EntityManager.EntitySysManager.GetEntitySystem(); drunkSys.TryApplyDrunkenness(args.TargetEntity, boozePower, SlurSpeech); } diff --git a/Content.Server/EntityEffects/Effects/Electrocute.cs b/Content.Shared/EntityEffects/Effects/Electrocute.cs similarity index 78% rename from Content.Server/EntityEffects/Effects/Electrocute.cs rename to Content.Shared/EntityEffects/Effects/Electrocute.cs index f6a5f1a2da..32e0ff1172 100644 --- a/Content.Server/EntityEffects/Effects/Electrocute.cs +++ b/Content.Shared/EntityEffects/Effects/Electrocute.cs @@ -1,8 +1,7 @@ -using Content.Server.Electrocution; -using Content.Shared.EntityEffects; +using Content.Shared.Electrocution; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; public sealed partial class Electrocute : EntityEffect { @@ -24,14 +23,14 @@ public sealed partial class Electrocute : EntityEffect { if (args is EntityEffectReagentArgs reagentArgs) { - reagentArgs.EntityManager.System().TryDoElectrocution(reagentArgs.TargetEntity, null, + reagentArgs.EntityManager.System().TryDoElectrocution(reagentArgs.TargetEntity, null, Math.Max((reagentArgs.Quantity * ElectrocuteDamageScale).Int(), 1), TimeSpan.FromSeconds(ElectrocuteTime), Refresh, ignoreInsulation: true); if (reagentArgs.Reagent != null) reagentArgs.Source?.RemoveReagent(reagentArgs.Reagent.ID, reagentArgs.Quantity); } else { - args.EntityManager.System().TryDoElectrocution(args.TargetEntity, null, + args.EntityManager.System().TryDoElectrocution(args.TargetEntity, null, Math.Max(ElectrocuteDamageScale, 1), TimeSpan.FromSeconds(ElectrocuteTime), Refresh, ignoreInsulation: true); } } diff --git a/Content.Shared/EntityEffects/Effects/Emote.cs b/Content.Shared/EntityEffects/Effects/Emote.cs new file mode 100644 index 0000000000..08cf58c39a --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/Emote.cs @@ -0,0 +1,43 @@ +using Content.Shared.Chat.Prototypes; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.EntityEffects.Effects; + +/// +/// Tries to force someone to emote (scream, laugh, etc). Still respects whitelists/blacklists and other limits unless specially forced. +/// +public sealed partial class Emote : EventEntityEffect +{ + /// + /// The emote the entity will preform. + /// + [DataField("emote", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] + public string EmoteId; + + /// + /// If the emote should be recorded in chat. + /// + [DataField] + public bool ShowInChat; + + /// + /// If the forced emote will be listed in the guidebook. + /// + [DataField] + public bool ShowInGuidebook; + + /// + /// If true, the entity will preform the emote even if they normally can't. + /// + [DataField] + public bool Force = false; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + if (!ShowInGuidebook) + return null; // JUSTIFICATION: Emoting is mostly flavor, so same reason popup messages are not in here. + + return Loc.GetString("reagent-effect-guidebook-emote", ("chance", Probability), ("emote", EmoteId)); + } +} diff --git a/Content.Shared/EntityEffects/Effects/EmpReactionEffect.cs b/Content.Shared/EntityEffects/Effects/EmpReactionEffect.cs new file mode 100644 index 0000000000..eee0aeb51b --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/EmpReactionEffect.cs @@ -0,0 +1,34 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +[DataDefinition] +public sealed partial class EmpReactionEffect : EventEntityEffect +{ + /// + /// Impulse range per unit of quantity + /// + [DataField("rangePerUnit")] + public float EmpRangePerUnit = 0.5f; + + /// + /// Maximum impulse range + /// + [DataField("maxRange")] + public float EmpMaxRange = 10; + + /// + /// How much energy will be drain from sources + /// + [DataField] + public float EnergyConsumption = 12500; + + /// + /// Amount of time entities will be disabled + /// + [DataField("duration")] + public float DisableDuration = 15; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-emp-reaction-effect", ("chance", Probability)); +} diff --git a/Content.Shared/EntityEffects/Effects/EvenHealthChange.cs b/Content.Shared/EntityEffects/Effects/EvenHealthChange.cs new file mode 100644 index 0000000000..968d559939 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/EvenHealthChange.cs @@ -0,0 +1,139 @@ +using Content.Shared.Damage; +using Content.Shared.Damage.Prototypes; +using Content.Shared.EntityEffects; +using Content.Shared.FixedPoint; +using Content.Shared.Localizations; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared.EntityEffects.Effects; + +/// +/// Version of that distributes the healing to groups +/// +public sealed partial class EvenHealthChange : EntityEffect +{ + /// + /// Damage to heal, collected into entire damage groups. + /// + [DataField(required: true)] + public Dictionary, FixedPoint2> Damage = new(); + + /// + /// Should this effect scale the damage by the amount of chemical in the solution? + /// Useful for touch reactions, like styptic powder or acid. + /// Only usable if the EntityEffectBaseArgs is an EntityEffectReagentArgs. + /// + [DataField] + public bool ScaleByQuantity; + + /// + /// Should this effect ignore damage modifiers? + /// + [DataField] + public bool IgnoreResistances = true; + + protected override string ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + var damages = new List(); + var heals = false; + var deals = false; + + var damagableSystem = entSys.GetEntitySystem(); + var universalReagentDamageModifier = damagableSystem.UniversalReagentDamageModifier; + var universalReagentHealModifier = damagableSystem.UniversalReagentHealModifier; + + foreach (var (group, amount) in Damage) + { + var groupProto = prototype.Index(group); + + var sign = FixedPoint2.Sign(amount); + var mod = 1f; + + if (sign < 0) + { + heals = true; + mod = universalReagentHealModifier; + } + else if (sign > 0) + { + deals = true; + mod = universalReagentDamageModifier; + } + + damages.Add( + Loc.GetString("health-change-display", + ("kind", groupProto.LocalizedName), + ("amount", MathF.Abs(amount.Float() * mod)), + ("deltasign", sign) + )); + } + + var healsordeals = heals ? (deals ? "both" : "heals") : (deals ? "deals" : "none"); + return Loc.GetString("reagent-effect-guidebook-even-health-change", + ("chance", Probability), + ("changes", ContentLocalizationManager.FormatList(damages)), + ("healsordeals", healsordeals)); + } + + public override void Effect(EntityEffectBaseArgs args) + { + if (!args.EntityManager.TryGetComponent(args.TargetEntity, out var damageable)) + return; + + var protoMan = IoCManager.Resolve(); + + var scale = FixedPoint2.New(1); + + if (args is EntityEffectReagentArgs reagentArgs) + { + scale = ScaleByQuantity ? reagentArgs.Quantity * reagentArgs.Scale : reagentArgs.Scale; + } + + var damagableSystem = args.EntityManager.System(); + var universalReagentDamageModifier = damagableSystem.UniversalReagentDamageModifier; + var universalReagentHealModifier = damagableSystem.UniversalReagentHealModifier; + + var dspec = new DamageSpecifier(); + + foreach (var (group, amount) in Damage) + { + var groupProto = protoMan.Index(group); + var groupDamage = new Dictionary(); + foreach (var damageId in groupProto.DamageTypes) + { + var damageAmount = damageable.Damage.DamageDict.GetValueOrDefault(damageId); + if (damageAmount != FixedPoint2.Zero) + groupDamage.Add(damageId, damageAmount); + } + + var sum = groupDamage.Values.Sum(); + foreach (var (damageId, damageAmount) in groupDamage) + { + var existing = dspec.DamageDict.GetOrNew(damageId); + dspec.DamageDict[damageId] = existing + damageAmount / sum * amount; + } + } + + if (universalReagentDamageModifier != 1 || universalReagentHealModifier != 1) + { + foreach (var (type, val) in dspec.DamageDict) + { + if (val < 0f) + { + dspec.DamageDict[type] = val * universalReagentHealModifier; + } + if (val > 0f) + { + dspec.DamageDict[type] = val * universalReagentDamageModifier; + } + } + } + + damagableSystem.TryChangeDamage( + args.TargetEntity, + dspec * scale, + IgnoreResistances, + interruptsDoAfters: false); + } +} diff --git a/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs b/Content.Shared/EntityEffects/Effects/ExplosionReactionEffect.cs similarity index 70% rename from Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs rename to Content.Shared/EntityEffects/Effects/ExplosionReactionEffect.cs index 0a378ef230..d18b0c5ffb 100644 --- a/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs +++ b/Content.Shared/EntityEffects/Effects/ExplosionReactionEffect.cs @@ -1,16 +1,14 @@ -using Content.Server.Explosion.EntitySystems; using Content.Shared.Database; -using Content.Shared.EntityEffects; using Content.Shared.Explosion; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using System.Text.Json.Serialization; using Content.Shared._Sunrise.Explosion; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; [DataDefinition] -public sealed partial class ExplosionReactionEffect : EntityEffect +public sealed partial class ExplosionReactionEffect : EventEntityEffect { /// /// The type of explosion. Determines damage types and tile break chance scaling. @@ -59,28 +57,4 @@ public sealed partial class ExplosionReactionEffect : EntityEffect protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-explosion-reaction-effect", ("chance", Probability)); public override LogImpact LogImpact => LogImpact.High; - - public override void Effect(EntityEffectBaseArgs args) - { - var intensity = IntensityPerUnit; - - if (args is EntityEffectReagentArgs reagentArgs) - { - intensity = MathF.Min((float) reagentArgs.Quantity * IntensityPerUnit, MaxTotalIntensity); - } - - // Sunrise edit start - args.EntityManager.System() - .TryAddExplosionEffect(args.TargetEntity, ExplosionType); - // Sunrise edit end - - args.EntityManager.System() - .QueueExplosion( - args.TargetEntity, - ExplosionType, - intensity, - IntensitySlope, - MaxIntensity, - TileBreakScale); - } } diff --git a/Content.Server/EntityEffects/Effects/ExtinguishReaction.cs b/Content.Shared/EntityEffects/Effects/ExtinguishReaction.cs similarity index 88% rename from Content.Server/EntityEffects/Effects/ExtinguishReaction.cs rename to Content.Shared/EntityEffects/Effects/ExtinguishReaction.cs index d36ac9a576..11e776ac90 100644 --- a/Content.Server/EntityEffects/Effects/ExtinguishReaction.cs +++ b/Content.Shared/EntityEffects/Effects/ExtinguishReaction.cs @@ -1,11 +1,8 @@ using Content.Shared.Atmos; -using Content.Shared.EntityEffects; -using JetBrains.Annotations; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects +namespace Content.Shared.EntityEffects.Effects { - [UsedImplicitly] public sealed partial class ExtinguishReaction : EntityEffect { /// diff --git a/Content.Shared/EntityEffects/Effects/FlammableReaction.cs b/Content.Shared/EntityEffects/Effects/FlammableReaction.cs new file mode 100644 index 0000000000..9f7d504f4e --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/FlammableReaction.cs @@ -0,0 +1,21 @@ +using Content.Shared.Database; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +public sealed partial class FlammableReaction : EventEntityEffect +{ + [DataField] + public float Multiplier = 0.05f; + + // The fire stack multiplier if fire stacks already exist on target, only works if 0 or greater + [DataField] + public float MultiplierOnExisting = -1f; + + public override bool ShouldLog => true; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-flammable-reaction", ("chance", Probability)); + + public override LogImpact LogImpact => LogImpact.Medium; +} diff --git a/Content.Shared/EntityEffects/Effects/FlashReactionEffect.cs b/Content.Shared/EntityEffects/Effects/FlashReactionEffect.cs new file mode 100644 index 0000000000..5cd7f06c52 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/FlashReactionEffect.cs @@ -0,0 +1,48 @@ +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +[DataDefinition] +public sealed partial class FlashReactionEffect : EventEntityEffect +{ + /// + /// Flash range per unit of reagent. + /// + [DataField] + public float RangePerUnit = 0.2f; + + /// + /// Maximum flash range. + /// + [DataField] + public float MaxRange = 10f; + + /// + /// How much to entities are slowed down. + /// + [DataField] + public float SlowTo = 0.5f; + + /// + /// The time entities will be flashed in seconds. + /// The default is chosen to be better than the hand flash so it is worth using it for grenades etc. + /// + [DataField] + public float Duration = 4f; + + /// + /// The prototype ID used for the visual effect. + /// + [DataField] + public EntProtoId? FlashEffectPrototype = "ReactionFlash"; + + /// + /// The sound the flash creates. + /// + [DataField] + public SoundSpecifier? Sound = new SoundPathSpecifier("/Audio/Weapons/flash.ogg"); + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-flash-reaction-effect", ("chance", Probability)); +} diff --git a/Content.Server/EntityEffects/Effects/Glow.cs b/Content.Shared/EntityEffects/Effects/Glow.cs similarity index 96% rename from Content.Server/EntityEffects/Effects/Glow.cs rename to Content.Shared/EntityEffects/Effects/Glow.cs index 9f03476729..394d406700 100644 --- a/Content.Server/EntityEffects/Effects/Glow.cs +++ b/Content.Shared/EntityEffects/Effects/Glow.cs @@ -2,7 +2,7 @@ using Content.Shared.EntityEffects; using Robust.Shared.Prototypes; using Robust.Shared.Random; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; /// /// Makes a mob glow. diff --git a/Content.Server/EntityEffects/Effects/HealthChange.cs b/Content.Shared/EntityEffects/Effects/HealthChange.cs similarity index 74% rename from Content.Server/EntityEffects/Effects/HealthChange.cs rename to Content.Shared/EntityEffects/Effects/HealthChange.cs index 71021ce4ac..17c24f6b5a 100644 --- a/Content.Server/EntityEffects/Effects/HealthChange.cs +++ b/Content.Shared/EntityEffects/Effects/HealthChange.cs @@ -3,17 +3,15 @@ using Content.Shared.Damage.Prototypes; using Content.Shared.EntityEffects; using Content.Shared.FixedPoint; using Content.Shared.Localizations; -using JetBrains.Annotations; using Robust.Shared.Prototypes; using System.Linq; using System.Text.Json.Serialization; -namespace Content.Server.EntityEffects.Effects +namespace Content.Shared.EntityEffects.Effects { /// /// Default metabolism used for medicine reagents. /// - [UsedImplicitly] public sealed partial class HealthChange : EntityEffect { /// @@ -64,48 +62,6 @@ namespace Content.Server.EntityEffects.Effects damageSpec = entSys.GetEntitySystem().ApplyUniversalAllModifiers(damageSpec); - foreach (var group in prototype.EnumeratePrototypes()) - { - if (!damageSpec.TryGetDamageInGroup(group, out var amount)) - continue; - - var relevantTypes = damageSpec.DamageDict - .Where(x => x.Value != FixedPoint2.Zero && group.DamageTypes.Contains(x.Key)).ToList(); - - if (relevantTypes.Count != group.DamageTypes.Count) - continue; - - var sum = FixedPoint2.Zero; - foreach (var type in group.DamageTypes) - { - sum += damageSpec.DamageDict.GetValueOrDefault(type); - } - - // if the total sum of all the types equal the damage amount, - // assume that they're evenly distributed. - if (sum != amount) - continue; - - var sign = FixedPoint2.Sign(amount); - - if (sign < 0) - heals = true; - if (sign > 0) - deals = true; - - damages.Add( - Loc.GetString("health-change-display", - ("kind", group.LocalizedName), - ("amount", MathF.Abs(amount.Float())), - ("deltasign", sign) - )); - - foreach (var type in group.DamageTypes) - { - damageSpec.DamageDict.Remove(type); - } - } - foreach (var (kind, amount) in damageSpec.DamageDict) { var sign = FixedPoint2.Sign(amount); diff --git a/Content.Shared/EntityEffects/Effects/Ignite.cs b/Content.Shared/EntityEffects/Effects/Ignite.cs new file mode 100644 index 0000000000..707ecc3208 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/Ignite.cs @@ -0,0 +1,18 @@ +using Content.Shared.Database; +using Content.Shared.EntityEffects; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +/// +/// Ignites a mob. +/// +public sealed partial class Ignite : EventEntityEffect +{ + public override bool ShouldLog => true; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-ignite", ("chance", Probability)); + + public override LogImpact LogImpact => LogImpact.Medium; +} diff --git a/Content.Shared/EntityEffects/Effects/MakeSentient.cs b/Content.Shared/EntityEffects/Effects/MakeSentient.cs new file mode 100644 index 0000000000..9c70eb452b --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/MakeSentient.cs @@ -0,0 +1,10 @@ +using Content.Shared.Mind.Components; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +public sealed partial class MakeSentient : EventEntityEffect +{ + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-make-sentient", ("chance", Probability)); +} diff --git a/Content.Shared/EntityEffects/Effects/ModifyBleedAmount.cs b/Content.Shared/EntityEffects/Effects/ModifyBleedAmount.cs new file mode 100644 index 0000000000..9f15652095 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/ModifyBleedAmount.cs @@ -0,0 +1,16 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +public sealed partial class ModifyBleedAmount : EventEntityEffect +{ + [DataField] + public bool Scaled = false; + + [DataField] + public float Amount = -1.0f; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-modify-bleed-amount", ("chance", Probability), + ("deltasign", MathF.Sign(Amount))); +} diff --git a/Content.Shared/EntityEffects/Effects/ModifyBloodLevel.cs b/Content.Shared/EntityEffects/Effects/ModifyBloodLevel.cs new file mode 100644 index 0000000000..06c026f128 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/ModifyBloodLevel.cs @@ -0,0 +1,17 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +public sealed partial class ModifyBloodLevel : EventEntityEffect +{ + [DataField] + public bool Scaled = false; + + [DataField] + public FixedPoint2 Amount = 1.0f; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-modify-blood-level", ("chance", Probability), + ("deltasign", MathF.Sign(Amount.Float()))); +} diff --git a/Content.Shared/EntityEffects/Effects/ModifyLungGas.cs b/Content.Shared/EntityEffects/Effects/ModifyLungGas.cs new file mode 100644 index 0000000000..45dc8c84c6 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/ModifyLungGas.cs @@ -0,0 +1,14 @@ +using Content.Shared.Atmos; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +public sealed partial class ModifyLungGas : EventEntityEffect +{ + [DataField("ratios", required: true)] + public Dictionary Ratios = default!; + + // JUSTIFICATION: This is internal magic that players never directly interact with. + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => null; +} diff --git a/Content.Server/EntityEffects/Effects/MovespeedModifier.cs b/Content.Shared/EntityEffects/Effects/MovespeedModifier.cs similarity index 97% rename from Content.Server/EntityEffects/Effects/MovespeedModifier.cs rename to Content.Shared/EntityEffects/Effects/MovespeedModifier.cs index 74f4489c75..5e72746e32 100644 --- a/Content.Server/EntityEffects/Effects/MovespeedModifier.cs +++ b/Content.Shared/EntityEffects/Effects/MovespeedModifier.cs @@ -1,10 +1,9 @@ using Content.Shared.Chemistry.Components; -using Content.Shared.EntityEffects; using Content.Shared.Movement.Systems; using Robust.Shared.Prototypes; using Robust.Shared.Timing; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; /// /// Default metabolism for stimulants and tranqs. Attempts to find a MovementSpeedModifier on the target, diff --git a/Content.Shared/EntityEffects/Effects/Oxygenate.cs b/Content.Shared/EntityEffects/Effects/Oxygenate.cs new file mode 100644 index 0000000000..e990a3fec6 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/Oxygenate.cs @@ -0,0 +1,13 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +public sealed partial class Oxygenate : EventEntityEffect +{ + [DataField] + public float Factor = 1f; + + // JUSTIFICATION: This is internal magic that players never directly interact with. + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => null; +} diff --git a/Content.Server/EntityEffects/Effects/Paralyze.cs b/Content.Shared/EntityEffects/Effects/Paralyze.cs similarity index 79% rename from Content.Server/EntityEffects/Effects/Paralyze.cs rename to Content.Shared/EntityEffects/Effects/Paralyze.cs index ba020dd39b..2da6a6a079 100644 --- a/Content.Server/EntityEffects/Effects/Paralyze.cs +++ b/Content.Shared/EntityEffects/Effects/Paralyze.cs @@ -1,8 +1,8 @@ -using Content.Server.Stunnable; using Content.Shared.EntityEffects; +using Content.Shared.Stunnable; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; public sealed partial class Paralyze : EntityEffect { @@ -27,7 +27,7 @@ public sealed partial class Paralyze : EntityEffect paralyzeTime *= (double)reagentArgs.Scale; } - args.EntityManager.System().TryParalyze(args.TargetEntity, TimeSpan.FromSeconds(paralyzeTime), Refresh); + args.EntityManager.System().TryParalyze(args.TargetEntity, TimeSpan.FromSeconds(paralyzeTime), Refresh); } } diff --git a/Content.Server/EntityEffects/Effects/PlantMetabolism/PlantAdjustAttribute.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustAttribute.cs similarity index 51% rename from Content.Server/EntityEffects/Effects/PlantMetabolism/PlantAdjustAttribute.cs rename to Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustAttribute.cs index 5133fe502f..2c8046452b 100644 --- a/Content.Server/EntityEffects/Effects/PlantMetabolism/PlantAdjustAttribute.cs +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustAttribute.cs @@ -1,13 +1,12 @@ -using Content.Server.Botany.Components; using Content.Shared.EntityEffects; using Robust.Shared.Prototypes; using Robust.Shared.Random; using System.Diagnostics.CodeAnalysis; -namespace Content.Server.EntityEffects.Effects.PlantMetabolism; +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; [ImplicitDataDefinitionForInheritors] -public abstract partial class PlantAdjustAttribute : EntityEffect +public abstract partial class PlantAdjustAttribute : EventEntityEffect where T : PlantAdjustAttribute { [DataField] public float Amount { get; protected set; } = 1; @@ -24,27 +23,6 @@ public abstract partial class PlantAdjustAttribute : EntityEffect [DataField] public virtual bool GuidebookIsAttributePositive { get; protected set; } = true; - /// - /// Checks if the plant holder can metabolize the reagent or not. Checks if it has an alive plant by default. - /// - /// The entity holding the plant - /// The plant holder component - /// The entity manager - /// Whether to check if it has an alive plant or not - /// - public bool CanMetabolize(EntityUid plantHolder, [NotNullWhen(true)] out PlantHolderComponent? plantHolderComponent, - IEntityManager entityManager, - bool mustHaveAlivePlant = true) - { - plantHolderComponent = null; - - if (!entityManager.TryGetComponent(plantHolder, out plantHolderComponent) - || mustHaveAlivePlant && (plantHolderComponent.Seed == null || plantHolderComponent.Dead)) - return false; - - return true; - } - protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) { string color; diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustHealth.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustHealth.cs new file mode 100644 index 0000000000..c1e71894e5 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustHealth.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class PlantAdjustHealth : PlantAdjustAttribute +{ + public override string GuidebookAttributeName { get; set; } = "plant-attribute-health"; +} + diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustMutationLevel.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustMutationLevel.cs new file mode 100644 index 0000000000..6610adf708 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustMutationLevel.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class PlantAdjustMutationLevel : PlantAdjustAttribute +{ + public override string GuidebookAttributeName { get; set; } = "plant-attribute-mutation-level"; +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustMutationMod.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustMutationMod.cs new file mode 100644 index 0000000000..91be222807 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustMutationMod.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class PlantAdjustMutationMod : PlantAdjustAttribute +{ + public override string GuidebookAttributeName { get; set; } = "plant-attribute-mutation-mod"; +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustNutrition.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustNutrition.cs new file mode 100644 index 0000000000..db01d5d060 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustNutrition.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class PlantAdjustNutrition : PlantAdjustAttribute +{ + public override string GuidebookAttributeName { get; set; } = "plant-attribute-nutrition"; +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustPests.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustPests.cs new file mode 100644 index 0000000000..18c00550d5 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustPests.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class PlantAdjustPests : PlantAdjustAttribute +{ + public override string GuidebookAttributeName { get; set; } = "plant-attribute-pests"; + public override bool GuidebookIsAttributePositive { get; protected set; } = false; +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustPotency.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustPotency.cs new file mode 100644 index 0000000000..971f05f32d --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustPotency.cs @@ -0,0 +1,12 @@ +// using Content.Server.Botany.Systems; + +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +/// +/// Handles increase or decrease of plant potency. +/// + +public sealed partial class PlantAdjustPotency : PlantAdjustAttribute +{ + public override string GuidebookAttributeName { get; set; } = "plant-attribute-potency"; +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustToxins.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustToxins.cs new file mode 100644 index 0000000000..9123b5847d --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustToxins.cs @@ -0,0 +1,8 @@ +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class PlantAdjustToxins : PlantAdjustAttribute +{ + public override string GuidebookAttributeName { get; set; } = "plant-attribute-toxins"; + public override bool GuidebookIsAttributePositive { get; protected set; } = false; +} + diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustWater.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustWater.cs new file mode 100644 index 0000000000..610d02231b --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustWater.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class PlantAdjustWater : PlantAdjustAttribute +{ + public override string GuidebookAttributeName { get; set; } = "plant-attribute-water"; +} + diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustWeeds.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustWeeds.cs new file mode 100644 index 0000000000..70ff0747dd --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAdjustWeeds.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class PlantAdjustWeeds : PlantAdjustAttribute +{ + public override string GuidebookAttributeName { get; set; } = "plant-attribute-weeds"; + public override bool GuidebookIsAttributePositive { get; protected set; } = false; +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAffectGrowth.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAffectGrowth.cs new file mode 100644 index 0000000000..36b8f57d08 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantAffectGrowth.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class PlantAffectGrowth : PlantAdjustAttribute +{ + public override string GuidebookAttributeName { get; set; } = "plant-attribute-growth"; +} + diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantChangeStat.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantChangeStat.cs new file mode 100644 index 0000000000..66cfb66d4b --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantChangeStat.cs @@ -0,0 +1,24 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class PlantChangeStat : EventEntityEffect +{ + [DataField] + public string TargetValue; + + [DataField] + public float MinValue; + + [DataField] + public float MaxValue; + + [DataField] + public int Steps; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + throw new NotImplementedException(); + } +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantCryoxadone.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantCryoxadone.cs new file mode 100644 index 0000000000..0dabf1f22b --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantCryoxadone.cs @@ -0,0 +1,8 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class PlantCryoxadone : EventEntityEffect +{ + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-plant-cryoxadone", ("chance", Probability)); +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantDestroySeeds.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantDestroySeeds.cs new file mode 100644 index 0000000000..9f16c35402 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantDestroySeeds.cs @@ -0,0 +1,13 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +/// +/// Handles removal of seeds on a plant. +/// + +public sealed partial class PlantDestroySeeds : EventEntityEffect +{ + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => + Loc.GetString("reagent-effect-guidebook-plant-seeds-remove", ("chance", Probability)); +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantDiethylamine.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantDiethylamine.cs new file mode 100644 index 0000000000..9feccbf224 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantDiethylamine.cs @@ -0,0 +1,9 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class PlantDiethylamine : EventEntityEffect +{ + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-plant-diethylamine", ("chance", Probability)); +} + diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantPhalanximine.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantPhalanximine.cs new file mode 100644 index 0000000000..9dc5140063 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantPhalanximine.cs @@ -0,0 +1,8 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class PlantPhalanximine : EventEntityEffect +{ + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-plant-phalanximine", ("chance", Probability)); +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantRestoreSeeds.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantRestoreSeeds.cs new file mode 100644 index 0000000000..51ce353dbb --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/PlantRestoreSeeds.cs @@ -0,0 +1,12 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +/// +/// Handles restoral of seeds on a plant. +/// +public sealed partial class PlantRestoreSeeds : EventEntityEffect +{ + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => + Loc.GetString("reagent-effect-guidebook-plant-seeds-add", ("chance", Probability)); +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMetabolism/RobustHarvest.cs b/Content.Shared/EntityEffects/Effects/PlantMetabolism/RobustHarvest.cs new file mode 100644 index 0000000000..6ba37c9be0 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMetabolism/RobustHarvest.cs @@ -0,0 +1,18 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; + +public sealed partial class RobustHarvest : EventEntityEffect +{ + [DataField] + public int PotencyLimit = 50; + + [DataField] + public int PotencyIncrease = 3; + + [DataField] + public int PotencySeedlessThreshold = 30; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-plant-robust-harvest", ("seedlesstreshold", PotencySeedlessThreshold), ("limit", PotencyLimit), ("increase", PotencyIncrease), ("chance", Probability)); +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMutateChemicals.cs b/Content.Shared/EntityEffects/Effects/PlantMutateChemicals.cs new file mode 100644 index 0000000000..9a3408bb8e --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMutateChemicals.cs @@ -0,0 +1,16 @@ +using Content.Shared.Random; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Shared.EntityEffects.Effects; + +/// +/// changes the chemicals available in a plant's produce +/// +public sealed partial class PlantMutateChemicals : EventEntityEffect +{ + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + return "TODO"; + } +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMutateGases.cs b/Content.Shared/EntityEffects/Effects/PlantMutateGases.cs new file mode 100644 index 0000000000..5eb5b1d07c --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMutateGases.cs @@ -0,0 +1,39 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using System.Linq; + +namespace Content.Shared.EntityEffects.Effects; + +/// +/// changes the gases that a plant or produce create. +/// +public sealed partial class PlantMutateExudeGasses : EventEntityEffect +{ + [DataField] + public float MinValue = 0.01f; + + [DataField] + public float MaxValue = 0.5f; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + return "TODO"; + } +} + +/// +/// changes the gases that a plant or produce consumes. +/// +public sealed partial class PlantMutateConsumeGasses : EventEntityEffect +{ + [DataField] + public float MinValue = 0.01f; + + [DataField] + public float MaxValue = 0.5f; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + return "TODO"; + } +} diff --git a/Content.Shared/EntityEffects/Effects/PlantMutateHarvest.cs b/Content.Shared/EntityEffects/Effects/PlantMutateHarvest.cs new file mode 100644 index 0000000000..84d6293185 --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantMutateHarvest.cs @@ -0,0 +1,14 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +/// +/// Upgrades a plant's harvest type. +/// +public sealed partial class PlantMutateHarvest : EventEntityEffect +{ + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + return "TODO"; + } +} diff --git a/Content.Shared/EntityEffects/Effects/PlantSpeciesChange.cs b/Content.Shared/EntityEffects/Effects/PlantSpeciesChange.cs new file mode 100644 index 0000000000..e2acc4cb7c --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/PlantSpeciesChange.cs @@ -0,0 +1,14 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +/// +/// Changes a plant into one of the species its able to mutate into. +/// +public sealed partial class PlantSpeciesChange : EventEntityEffect +{ + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + return "TODO"; + } +} diff --git a/Content.Server/EntityEffects/Effects/Polymorph.cs b/Content.Shared/EntityEffects/Effects/Polymorph.cs similarity index 55% rename from Content.Server/EntityEffects/Effects/Polymorph.cs rename to Content.Shared/EntityEffects/Effects/Polymorph.cs index 2ee533a4d7..65711ff99a 100644 --- a/Content.Server/EntityEffects/Effects/Polymorph.cs +++ b/Content.Shared/EntityEffects/Effects/Polymorph.cs @@ -1,13 +1,10 @@ -using Content.Server.Polymorph.Components; -using Content.Server.Polymorph.Systems; -using Content.Shared.EntityEffects; using Content.Shared.Polymorph; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; -public sealed partial class Polymorph : EntityEffect +public sealed partial class Polymorph : EventEntityEffect { /// /// What polymorph prototype is used on effect @@ -19,15 +16,4 @@ public sealed partial class Polymorph : EntityEffect => Loc.GetString("reagent-effect-guidebook-make-polymorph", ("chance", Probability), ("entityname", prototype.Index(prototype.Index(PolymorphPrototype).Configuration.Entity).Name)); - - public override void Effect(EntityEffectBaseArgs args) - { - var entityManager = args.EntityManager; - var uid = args.TargetEntity; - var polySystem = entityManager.System(); - - // Make it into a prototype - entityManager.EnsureComponent(uid); - polySystem.PolymorphEntity(uid, PolymorphPrototype); - } } diff --git a/Content.Server/EntityEffects/Effects/PopupMessage.cs b/Content.Shared/EntityEffects/Effects/PopupMessage.cs similarity index 95% rename from Content.Server/EntityEffects/Effects/PopupMessage.cs rename to Content.Shared/EntityEffects/Effects/PopupMessage.cs index ac22b13051..a837f816e4 100644 --- a/Content.Server/EntityEffects/Effects/PopupMessage.cs +++ b/Content.Shared/EntityEffects/Effects/PopupMessage.cs @@ -1,9 +1,8 @@ -using Content.Shared.EntityEffects; using Content.Shared.Popups; using Robust.Shared.Prototypes; using Robust.Shared.Random; -namespace Content.Server.EntityEffects.Effects +namespace Content.Shared.EntityEffects.Effects { public sealed partial class PopupMessage : EntityEffect { diff --git a/Content.Shared/EntityEffects/Effects/ReduceRotting.cs b/Content.Shared/EntityEffects/Effects/ReduceRotting.cs new file mode 100644 index 0000000000..b5f2a7ae7e --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/ReduceRotting.cs @@ -0,0 +1,32 @@ +using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; +using Content.Shared.Atmos.Rotting; + +namespace Content.Shared.EntityEffects.Effects; + +/// +/// Reduces the rotting accumulator on the patient, making them revivable. +/// +public sealed partial class ReduceRotting : EntityEffect +{ + [DataField("seconds")] + public double RottingAmount = 10; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-reduce-rotting", + ("chance", Probability), + ("time", RottingAmount)); + + public override void Effect(EntityEffectBaseArgs args) + { + if (args is EntityEffectReagentArgs reagentArgs) + { + if (reagentArgs.Scale != 1f) + return; + } + + var rottingSys = args.EntityManager.EntitySysManager.GetEntitySystem(); + + rottingSys.ReduceAccumulator(args.TargetEntity, TimeSpan.FromSeconds(RottingAmount)); + } +} diff --git a/Content.Shared/EntityEffects/Effects/ResetNarcolepsy.cs b/Content.Shared/EntityEffects/Effects/ResetNarcolepsy.cs new file mode 100644 index 0000000000..71d228aece --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/ResetNarcolepsy.cs @@ -0,0 +1,19 @@ +using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +/// +/// Reset narcolepsy timer +/// +public sealed partial class ResetNarcolepsy : EventEntityEffect +{ + /// + /// The # of seconds the effect resets the narcolepsy timer to + /// + [DataField("TimerReset")] + public int TimerReset = 600; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-reset-narcolepsy", ("chance", Probability)); +} diff --git a/Content.Shared/EntityEffects/Effects/SatiateHunger.cs b/Content.Shared/EntityEffects/Effects/SatiateHunger.cs new file mode 100644 index 0000000000..3e7af8833c --- /dev/null +++ b/Content.Shared/EntityEffects/Effects/SatiateHunger.cs @@ -0,0 +1,40 @@ +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Nutrition.Components; +using Content.Shared.Nutrition.EntitySystems; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +/// +/// Attempts to find a HungerComponent on the target, +/// and to update it's hunger values. +/// +public sealed partial class SatiateHunger : EntityEffect +{ + private const float DefaultNutritionFactor = 3.0f; + + /// + /// How much hunger is satiated. + /// Is multiplied by quantity if used with EntityEffectReagentArgs. + /// + [DataField("factor")] public float NutritionFactor { get; set; } = DefaultNutritionFactor; + + //Remove reagent at set rate, satiate hunger if a HungerComponent can be found + public override void Effect(EntityEffectBaseArgs args) + { + var entman = args.EntityManager; + if (!entman.TryGetComponent(args.TargetEntity, out HungerComponent? hunger)) + return; + if (args is EntityEffectReagentArgs reagentArgs) + { + entman.System().ModifyHunger(reagentArgs.TargetEntity, NutritionFactor * (float) reagentArgs.Quantity, hunger); + } + else + { + entman.System().ModifyHunger(args.TargetEntity, NutritionFactor, hunger); + } + } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-satiate-hunger", ("chance", Probability), ("relative", NutritionFactor / DefaultNutritionFactor)); +} diff --git a/Content.Server/EntityEffects/Effects/SatiateThirst.cs b/Content.Shared/EntityEffects/Effects/SatiateThirst.cs similarity index 93% rename from Content.Server/EntityEffects/Effects/SatiateThirst.cs rename to Content.Shared/EntityEffects/Effects/SatiateThirst.cs index d0dbe4371b..21a055b528 100644 --- a/Content.Server/EntityEffects/Effects/SatiateThirst.cs +++ b/Content.Shared/EntityEffects/Effects/SatiateThirst.cs @@ -1,10 +1,9 @@ using Content.Shared.Chemistry.Reagent; -using Content.Shared.EntityEffects; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; /// /// Default metabolism for drink reagents. Attempts to find a ThirstComponent on the target, diff --git a/Content.Server/EntityEffects/Effects/Slipify.cs b/Content.Shared/EntityEffects/Effects/Slipify.cs similarity index 95% rename from Content.Server/EntityEffects/Effects/Slipify.cs rename to Content.Shared/EntityEffects/Effects/Slipify.cs index bc1cc062a3..c152b8b010 100644 --- a/Content.Server/EntityEffects/Effects/Slipify.cs +++ b/Content.Shared/EntityEffects/Effects/Slipify.cs @@ -1,4 +1,3 @@ -using Content.Shared.EntityEffects; using Content.Shared.Physics; using Content.Shared.Slippery; using Content.Shared.StepTrigger.Components; @@ -7,7 +6,7 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; /// /// Makes a mob slippery. diff --git a/Content.Server/EntityEffects/Effects/SolutionTemperatureEffects.cs b/Content.Shared/EntityEffects/Effects/SolutionTemperatureEffects.cs similarity index 98% rename from Content.Server/EntityEffects/Effects/SolutionTemperatureEffects.cs rename to Content.Shared/EntityEffects/Effects/SolutionTemperatureEffects.cs index 85c20dbcd1..30ac6c3d77 100644 --- a/Content.Server/EntityEffects/Effects/SolutionTemperatureEffects.cs +++ b/Content.Shared/EntityEffects/Effects/SolutionTemperatureEffects.cs @@ -1,8 +1,7 @@ using Content.Shared.Chemistry.Reagent; -using Content.Shared.EntityEffects; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; /// /// Sets the temperature of the solution involved with the reaction to a new value. diff --git a/Content.Server/EntityEffects/Effects/StatusEffects/GenericStatusEffect.cs b/Content.Shared/EntityEffects/Effects/StatusEffects/GenericStatusEffect.cs similarity index 94% rename from Content.Server/EntityEffects/Effects/StatusEffects/GenericStatusEffect.cs rename to Content.Shared/EntityEffects/Effects/StatusEffects/GenericStatusEffect.cs index b4c9258e47..8c24589998 100644 --- a/Content.Server/EntityEffects/Effects/StatusEffects/GenericStatusEffect.cs +++ b/Content.Shared/EntityEffects/Effects/StatusEffects/GenericStatusEffect.cs @@ -1,10 +1,8 @@ using Content.Shared.Chemistry.Reagent; -using Content.Shared.EntityEffects; using Content.Shared.StatusEffect; -using JetBrains.Annotations; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects.StatusEffects; +namespace Content.Shared.EntityEffects.Effects.StatusEffects; /// /// Adds a generic status effect to the entity, @@ -15,7 +13,6 @@ namespace Content.Server.EntityEffects.Effects.StatusEffects; /// /// Can be used for things like adding accents or something. I don't know. Go wild. /// -[UsedImplicitly] public sealed partial class GenericStatusEffect : EntityEffect { [DataField(required: true)] diff --git a/Content.Server/EntityEffects/Effects/StatusEffects/Jitter.cs b/Content.Shared/EntityEffects/Effects/StatusEffects/Jitter.cs similarity index 92% rename from Content.Server/EntityEffects/Effects/StatusEffects/Jitter.cs rename to Content.Shared/EntityEffects/Effects/StatusEffects/Jitter.cs index dbca4fad58..891c791b07 100644 --- a/Content.Server/EntityEffects/Effects/StatusEffects/Jitter.cs +++ b/Content.Shared/EntityEffects/Effects/StatusEffects/Jitter.cs @@ -1,9 +1,8 @@ using Content.Shared.Chemistry.Reagent; -using Content.Shared.EntityEffects; using Content.Shared.Jittering; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects.StatusEffects; +namespace Content.Shared.EntityEffects.Effects.StatusEffects; /// /// Adds the jitter status effect to a mob. diff --git a/Content.Server/EntityEffects/Effects/WashCreamPieReaction.cs b/Content.Shared/EntityEffects/Effects/WashCreamPieReaction.cs similarity index 67% rename from Content.Server/EntityEffects/Effects/WashCreamPieReaction.cs rename to Content.Shared/EntityEffects/Effects/WashCreamPieReaction.cs index 67bfac6335..e6992a3ec8 100644 --- a/Content.Server/EntityEffects/Effects/WashCreamPieReaction.cs +++ b/Content.Shared/EntityEffects/Effects/WashCreamPieReaction.cs @@ -1,13 +1,10 @@ -using Content.Server.Nutrition.EntitySystems; using Content.Shared.Chemistry.Reagent; -using Content.Shared.EntityEffects; using Content.Shared.Nutrition.Components; -using JetBrains.Annotations; +using Content.Shared.Nutrition.EntitySystems; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects; +namespace Content.Shared.EntityEffects.Effects; -[UsedImplicitly] public sealed partial class WashCreamPieReaction : EntityEffect { protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) @@ -17,6 +14,6 @@ public sealed partial class WashCreamPieReaction : EntityEffect { if (!args.EntityManager.TryGetComponent(args.TargetEntity, out CreamPiedComponent? creamPied)) return; - args.EntityManager.System().SetCreamPied(args.TargetEntity, creamPied, false); + args.EntityManager.System().SetCreamPied(args.TargetEntity, creamPied, false); } } diff --git a/Content.Server/EntityEffects/Effects/WearableReaction.cs b/Content.Shared/EntityEffects/Effects/WearableReaction.cs similarity index 94% rename from Content.Server/EntityEffects/Effects/WearableReaction.cs rename to Content.Shared/EntityEffects/Effects/WearableReaction.cs index 9655bbc073..08c28f9821 100644 --- a/Content.Server/EntityEffects/Effects/WearableReaction.cs +++ b/Content.Shared/EntityEffects/Effects/WearableReaction.cs @@ -1,9 +1,8 @@ using Content.Shared.Inventory; using Content.Shared.Chemistry.Reagent; -using Content.Shared.EntityEffects; using Robust.Shared.Prototypes; -namespace Content.Server.EntityEffects.Effects.Effects; +namespace Content.Shared.EntityEffects.Effects; /// /// A reaction effect that spawns a PrototypeID in the entity's Slot, and attempts to consume the reagent if EntityEffectReagentArgs. diff --git a/Content.Shared/EntityEffects/EntityEffect.cs b/Content.Shared/EntityEffects/EntityEffect.cs index 21e79f224d..998759006f 100644 --- a/Content.Shared/EntityEffects/EntityEffect.cs +++ b/Content.Shared/EntityEffects/EntityEffect.cs @@ -89,6 +89,19 @@ public static class EntityEffectExt } } +[ByRefEvent] +public struct ExecuteEntityEffectEvent where T : EntityEffect +{ + public T Effect; + public EntityEffectBaseArgs Args; + + public ExecuteEntityEffectEvent(T effect, EntityEffectBaseArgs args) + { + Effect = effect; + Args = args; + } +} + /// /// EntityEffectBaseArgs only contains the target of an effect. /// If a trigger wants to include more info (e.g. the quantity of the chemical triggering the effect), it can be extended (see EntityEffectReagentArgs). diff --git a/Content.Shared/EntityEffects/EntityEffectCondition.cs b/Content.Shared/EntityEffects/EntityEffectCondition.cs index d6028b9f2c..4c27b1e6ed 100644 --- a/Content.Shared/EntityEffects/EntityEffectCondition.cs +++ b/Content.Shared/EntityEffects/EntityEffectCondition.cs @@ -20,3 +20,10 @@ public abstract partial class EntityEffectCondition public abstract string GuidebookExplanation(IPrototypeManager prototype); } +[ByRefEvent] +public struct CheckEntityEffectConditionEvent where T : EntityEffectCondition +{ + public T Condition; + public EntityEffectBaseArgs Args; + public bool Result; +} diff --git a/Content.Shared/EntityEffects/EventEntityEffect.cs b/Content.Shared/EntityEffects/EventEntityEffect.cs new file mode 100644 index 0000000000..22cd035867 --- /dev/null +++ b/Content.Shared/EntityEffects/EventEntityEffect.cs @@ -0,0 +1,12 @@ +namespace Content.Shared.EntityEffects; + +public abstract partial class EventEntityEffect : EntityEffect where T : EntityEffect +{ + public override void Effect(EntityEffectBaseArgs args) + { + if (this is not T type) + return; + var ev = new ExecuteEntityEffectEvent(type, args); + args.EntityManager.EventBus.RaiseEvent(EventSource.Local, ref ev); + } +} diff --git a/Content.Shared/EntityEffects/EventEntityEffectCondition.cs b/Content.Shared/EntityEffects/EventEntityEffectCondition.cs new file mode 100644 index 0000000000..f36b1771b2 --- /dev/null +++ b/Content.Shared/EntityEffects/EventEntityEffectCondition.cs @@ -0,0 +1,14 @@ +namespace Content.Shared.EntityEffects; + +public abstract partial class EventEntityEffectCondition : EntityEffectCondition where T : EventEntityEffectCondition +{ + public override bool Condition(EntityEffectBaseArgs args) + { + if (this is not T type) + return false; + + var evt = new CheckEntityEffectConditionEvent { Condition = type, Args = args }; + args.EntityManager.EventBus.RaiseEvent(EventSource.Local, ref evt); + return evt.Result; + } +} diff --git a/Content.Shared/EntityList/EntityLootTablePrototype.cs b/Content.Shared/EntityList/EntityLootTablePrototype.cs deleted file mode 100644 index 0c1f77afdc..0000000000 --- a/Content.Shared/EntityList/EntityLootTablePrototype.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System.Collections.Immutable; -using Content.Shared.Storage; -using Robust.Shared.Prototypes; -using Robust.Shared.Random; - -namespace Content.Shared.EntityList; - -[Prototype] -public sealed partial class EntityLootTablePrototype : IPrototype -{ - [IdDataField] - public string ID { get; private set; } = default!; - - [DataField("entries")] - public ImmutableList Entries = ImmutableList.Empty; - - /// - public List GetSpawns(IRobustRandom random) - { - return EntitySpawnCollection.GetSpawns(Entries, random); - } -} diff --git a/Content.Shared/EntityTable/EntityTableSystem.cs b/Content.Shared/EntityTable/EntityTableSystem.cs index ff499e6760..eab8b87ad7 100644 --- a/Content.Shared/EntityTable/EntityTableSystem.cs +++ b/Content.Shared/EntityTable/EntityTableSystem.cs @@ -9,6 +9,12 @@ public sealed class EntityTableSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _random = default!; + public IEnumerable GetSpawns(EntityTablePrototype entTableProto, System.Random? rand = null) + { + // convenient + return GetSpawns(entTableProto.Table, rand); + } + public IEnumerable GetSpawns(EntityTableSelector? table, System.Random? rand = null) { if (table == null) diff --git a/Content.Shared/EntityTable/ValueSelector/NumberSelectorTypeSerializer.cs b/Content.Shared/EntityTable/ValueSelector/NumberSelectorTypeSerializer.cs new file mode 100644 index 0000000000..782a1c126e --- /dev/null +++ b/Content.Shared/EntityTable/ValueSelector/NumberSelectorTypeSerializer.cs @@ -0,0 +1,54 @@ +using System.Globalization; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.Manager; +using Robust.Shared.Serialization.Markdown.Validation; +using Robust.Shared.Serialization.Markdown.Value; +using Robust.Shared.Serialization.TypeSerializers.Interfaces; +using Robust.Shared.Utility; + +namespace Content.Shared.EntityTable.ValueSelector; + +[TypeSerializer] +public sealed class NumberSelectorTypeSerializer : + ITypeReader +{ + public ValidationNode Validate(ISerializationManager serializationManager, + ValueDataNode node, + IDependencyCollection dependencies, + ISerializationContext? context = null) + { + // ConstantNumberSelector validation + if (int.TryParse(node.Value, out _)) + return new ValidatedValueNode(node); + + // RangeNumberSelector validation + if (VectorSerializerUtility.TryParseArgs(node.Value, 2, out _)) + { + return new ValidatedValueNode(node); + } + + return new ErrorNode(node, "Custom validation not supported! Please specify the type manually!"); + } + + public NumberSelector Read(ISerializationManager serializationManager, + ValueDataNode node, + IDependencyCollection dependencies, + SerializationHookContext hookCtx, + ISerializationContext? context = null, + ISerializationManager.InstantiationDelegate? instanceProvider = null) + { + var type = typeof(NumberSelector); + + if (int.TryParse(node.Value, out var result)) + return new ConstantNumberSelector(result); + + if (VectorSerializerUtility.TryParseArgs(node.Value, 2, out var args)) + { + var x = int.Parse(args[0], CultureInfo.InvariantCulture); + var y = int.Parse(args[1], CultureInfo.InvariantCulture); + return new RangeNumberSelector(new Vector2i(x, y)); + } + + return (NumberSelector) serializationManager.Read(type, node, context)!; + } +} diff --git a/Content.Shared/EntityTable/ValueSelector/RangeNumberSelector.cs b/Content.Shared/EntityTable/ValueSelector/RangeNumberSelector.cs index b84736d1ee..2eca71d400 100644 --- a/Content.Shared/EntityTable/ValueSelector/RangeNumberSelector.cs +++ b/Content.Shared/EntityTable/ValueSelector/RangeNumberSelector.cs @@ -8,6 +8,11 @@ public sealed partial class RangeNumberSelector : NumberSelector [DataField] public Vector2i Range = new(1, 1); + public RangeNumberSelector(Vector2i range) + { + Range = range; + } + public override int Get(System.Random rand) { // rand.Next() is inclusive on the first number and exclusive on the second number, diff --git a/Content.Shared/Examine/ExamineSystemShared.Group.cs b/Content.Shared/Examine/ExamineSystemShared.Group.cs index 7dc7877eac..e220d3ef77 100644 --- a/Content.Shared/Examine/ExamineSystemShared.Group.cs +++ b/Content.Shared/Examine/ExamineSystemShared.Group.cs @@ -6,8 +6,6 @@ namespace Content.Shared.Examine { public abstract partial class ExamineSystemShared : EntitySystem { - [Dependency] private readonly IComponentFactory _componentFactory = default!; - public const string DefaultIconTexture = "/Textures/Interface/examine-star.png"; public override void Initialize() @@ -55,7 +53,7 @@ namespace Content.Shared.Examine { foreach (var comp in components) { - if (!_componentFactory.TryGetRegistration(comp, out var componentRegistration)) + if (!Factory.TryGetRegistration(comp, out var componentRegistration)) continue; if (!HasComp(uid, componentRegistration.Type)) @@ -117,7 +115,7 @@ namespace Content.Shared.Examine if (TryComp(verbsEvent.Target, out var groupExamine)) { // Make sure we have the component name as a string - var componentName = _componentFactory.GetComponentName(component.GetType()); + var componentName = Factory.GetComponentName(component.GetType()); foreach (var examineGroup in groupExamine.Group) { @@ -177,7 +175,7 @@ namespace Content.Shared.Examine /// public void AddDetailedExamineVerb(GetVerbsEvent verbsEvent, Component component, FormattedMessage message, string verbText, string iconTexture = DefaultIconTexture, string hoverMessage = "", bool isHoverExamine = false) { - var componentName = _componentFactory.GetComponentName(component.GetType()); + var componentName = Factory.GetComponentName(component.GetType()); AddDetailedExamineVerb(verbsEvent, component, new ExamineEntry(componentName, 0f, message), verbText, iconTexture, hoverMessage, isHoverExamine); } diff --git a/Content.Shared/Explosion/Components/ActiveTimerTriggerComponent.cs b/Content.Shared/Explosion/Components/ActiveTimerTriggerComponent.cs index b0304715b1..6d43abc9d9 100644 --- a/Content.Shared/Explosion/Components/ActiveTimerTriggerComponent.cs +++ b/Content.Shared/Explosion/Components/ActiveTimerTriggerComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Explosion.Components; /// /// Component for tracking active trigger timers. A timers can activated by some other component, e.g. . /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent] public sealed partial class ActiveTimerTriggerComponent : Component { [DataField] public float TimeRemaining; diff --git a/Content.Shared/Explosion/Components/OnTrigger/ReleaseGasOnTriggerComponent.cs b/Content.Shared/Explosion/Components/OnTrigger/ReleaseGasOnTriggerComponent.cs new file mode 100644 index 0000000000..28a5c5cf81 --- /dev/null +++ b/Content.Shared/Explosion/Components/OnTrigger/ReleaseGasOnTriggerComponent.cs @@ -0,0 +1,80 @@ +using Content.Shared.Atmos; +using Content.Shared.Explosion.EntitySystems; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Explosion.Components.OnTrigger; + +/// +/// Contains a GasMixture that will release its contents to the atmosphere when triggered. +/// +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentPause] +[Access(typeof(SharedReleaseGasOnTriggerSystem))] +public sealed partial class ReleaseGasOnTriggerComponent : Component +{ + /// + /// Whether this grenade is active and releasing gas. + /// Set to true when triggered, which starts gas release. + /// + [DataField] + public bool Active; + + /// + /// The gas mixture that will be released to the current tile atmosphere when triggered. + /// + [DataField] + public GasMixture Air; + + /// + /// Time at which the next release will occur. + /// This is automatically set when the grenade activates. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + [AutoPausedField] + public TimeSpan NextReleaseTime = TimeSpan.Zero; + + /// + /// The cap at which this grenade can fill the exposed atmosphere to. + /// This component automatically removes itself when the pressure limit is reached. + /// + /// If set to 101.325, the grenade will only fill the exposed + /// atmosphere up to 101.325 kPa. + /// If zero, this limit won't be respected. + [DataField] + public float PressureLimit; + + /// + /// How often the grenade will release gas. + /// + [DataField] + public TimeSpan ReleaseInterval = TimeSpan.FromSeconds(1); + + /// + /// A float from 0 to 1, representing a partial portion of the moles + /// of the gas mixture that will be + /// released to the current tile atmosphere when triggered. + /// + /// If undefined on the prototype, the entire molar amount will be transferred. + [DataField] + public float RemoveFraction = 1; + + /// + /// Stores the total moles initially in the grenade upon activation. + /// Used to calculate the moles released over time. + /// + /// Set when the grenade is activated. + [DataField(readOnly: true)] + public float StartingTotalMoles; +} + +/// +/// Represents visual states for whatever visuals that need to be applied +/// on state changes. +/// +[Serializable, NetSerializable] +public enum ReleaseGasOnTriggerVisuals : byte +{ + Key, +} diff --git a/Content.Shared/Explosion/EntitySystems/SharedReleaseGasOnTriggerSystem.cs b/Content.Shared/Explosion/EntitySystems/SharedReleaseGasOnTriggerSystem.cs new file mode 100644 index 0000000000..5027b04517 --- /dev/null +++ b/Content.Shared/Explosion/EntitySystems/SharedReleaseGasOnTriggerSystem.cs @@ -0,0 +1,5 @@ +namespace Content.Shared.Explosion.EntitySystems; + +public abstract partial class SharedReleaseGasOnTriggerSystem : EntitySystem; + +// I have dreams of Atmos in shared. diff --git a/Content.Shared/Explosion/ExplosionPrototype.cs b/Content.Shared/Explosion/ExplosionPrototype.cs index 2ae2b603f2..307d845074 100644 --- a/Content.Shared/Explosion/ExplosionPrototype.cs +++ b/Content.Shared/Explosion/ExplosionPrototype.cs @@ -37,14 +37,14 @@ public sealed partial class ExplosionPrototype : IPrototype /// explosion intensity to a tile break chance via linear interpolation. /// [DataField("tileBreakChance")] - private float[] _tileBreakChance = { 0f, 1f }; + public float[] _tileBreakChance = { 0f, 1f }; /// /// This set of points, together with define a function that maps the /// explosion intensity to a tile break chance via linear interpolation. /// [DataField("tileBreakIntensity")] - private float[] _tileBreakIntensity = {0f, 15f }; + public float[] _tileBreakIntensity = { 0f, 15f }; /// /// When a tile is broken by an explosion, the intensity is reduced by this amount and is used to try and @@ -121,19 +121,13 @@ public sealed partial class ExplosionPrototype : IPrototype /// public float TileBreakChance(float intensity) { - if (_tileBreakChance.Length == 0 || _tileBreakChance.Length != _tileBreakIntensity.Length) - { - Logger.Error($"Malformed tile break chance definitions for explosion prototype: {ID}"); - return 0; - } - if (intensity >= _tileBreakIntensity[^1] || _tileBreakIntensity.Length == 1) return _tileBreakChance[^1]; if (intensity <= _tileBreakIntensity[0]) return _tileBreakChance[0]; - int i = Array.FindIndex(_tileBreakIntensity, k => k >= intensity); + var i = Array.FindIndex(_tileBreakIntensity, k => k >= intensity); var slope = (_tileBreakChance[i] - _tileBreakChance[i - 1]) / (_tileBreakIntensity[i] - _tileBreakIntensity[i - 1]); return _tileBreakChance[i - 1] + slope * (intensity - _tileBreakIntensity[i - 1]); diff --git a/Content.Shared/Fluids/AbsorbentComponent.cs b/Content.Shared/Fluids/AbsorbentComponent.cs index 461660ba51..535c07c867 100644 --- a/Content.Shared/Fluids/AbsorbentComponent.cs +++ b/Content.Shared/Fluids/AbsorbentComponent.cs @@ -11,23 +11,28 @@ namespace Content.Shared.Fluids; [RegisterComponent, NetworkedComponent] public sealed partial class AbsorbentComponent : Component { - public const string SolutionName = "absorbed"; - public Dictionary Progress = new(); + /// + /// Name for solution container, that should be used for absorbed solution storage and as source of absorber solution. + /// Default is 'absorbed'. + /// + [DataField] + public string SolutionName = "absorbed"; + /// /// How much solution we can transfer in one interaction. /// - [DataField("pickupAmount")] + [DataField] public FixedPoint2 PickupAmount = FixedPoint2.New(100); - [DataField("pickupSound")] + [DataField] public SoundSpecifier PickupSound = new SoundPathSpecifier("/Audio/Effects/Fluids/watersplash.ogg") { Params = AudioParams.Default.WithVariation(SharedContentAudioSystem.DefaultVariation), }; - [DataField("transferSound")] public SoundSpecifier TransferSound = + [DataField] public SoundSpecifier TransferSound = new SoundPathSpecifier("/Audio/Effects/Fluids/slosh.ogg") { Params = AudioParams.Default.WithVariation(SharedContentAudioSystem.DefaultVariation).WithVolume(-3f), @@ -38,6 +43,13 @@ public sealed partial class AbsorbentComponent : Component { Params = AudioParams.Default.WithVariation(SharedContentAudioSystem.DefaultVariation).WithVolume(-3f), }; + + /// + /// Marker that absorbent component owner should try to use 'absorber solution' to replace solution to be absorbed. + /// Target solution will be simply consumed into container if set to false. + /// + [DataField] + public bool UseAbsorberSolution = true; } // Sunrise-Start diff --git a/Content.Shared/Friction/TileFrictionController.cs b/Content.Shared/Friction/TileFrictionController.cs index cf9241bf2a..159637a9e0 100644 --- a/Content.Shared/Friction/TileFrictionController.cs +++ b/Content.Shared/Friction/TileFrictionController.cs @@ -118,8 +118,11 @@ namespace Content.Shared.Friction // You may think you can just pass the body.LinearVelocity to the Friction function and edit it there! // But doing so is unpredicted! And you will doom yourself to 1000 years of rubber banding! var velocity = body.LinearVelocity; + var angVelocity = body.AngularVelocity; _mover.Friction(0f, frameTime, friction, ref velocity); + _mover.Friction(0f, frameTime, friction, ref angVelocity); PhysicsSystem.SetLinearVelocity(uid, velocity, body: body); + PhysicsSystem.SetAngularVelocity(uid, angVelocity, body: body); } } diff --git a/Content.Shared/Gibbing/Systems/GibbingSystem.cs b/Content.Shared/Gibbing/Systems/GibbingSystem.cs index f3d982977a..8c83de0cf2 100644 --- a/Content.Shared/Gibbing/Systems/GibbingSystem.cs +++ b/Content.Shared/Gibbing/Systems/GibbingSystem.cs @@ -41,7 +41,7 @@ public sealed class GibbingSystem : EntitySystem /// /// Should we log if we are missing a gibbableComp when we call this function /// The variation in giblet launch impulse (if we are launching them!) /// True if successful, false if not - public bool TryGibEntity(EntityUid outerEntity, Entity gibbable, GibType gibType, + public bool TryGibEntity(Entity outerEntity, Entity gibbable, GibType gibType, GibContentsOption gibContentsOption, out HashSet droppedEntities, bool launchGibs = true, Vector2 launchDirection = default, float launchImpulse = 0f, float launchImpulseVariance = 0f, @@ -77,7 +77,7 @@ public sealed class GibbingSystem : EntitySystem /// Should we log if we are missing a gibbableComp when we call this function /// True if successful, false if not public bool TryGibEntityWithRef( - EntityUid outerEntity, + Entity outerEntity, Entity gibbable, GibType gibType, GibContentsOption gibContentsOption, @@ -95,7 +95,7 @@ public sealed class GibbingSystem : EntitySystem { if (!Resolve(gibbable, ref gibbable.Comp, logMissing: false)) { - DropEntity(gibbable, Transform(outerEntity), randomSpreadMod, ref droppedEntities, + DropEntity(gibbable, (outerEntity, Transform(outerEntity)), randomSpreadMod, ref droppedEntities, launchGibs, launchDirection, launchImpulse, launchImpulseVariance, launchCone); if (logMissingGibable) { @@ -113,7 +113,6 @@ public sealed class GibbingSystem : EntitySystem randomSpreadMod = 0; } - var parentXform = Transform(outerEntity); HashSet validContainers = new(); var gibContentsAttempt = new AttemptEntityContentsGibEvent(gibbable, gibContentsOption, allowedContainers, excludedContainers); @@ -140,7 +139,7 @@ public sealed class GibbingSystem : EntitySystem { foreach (var ent in container.ContainedEntities) { - DropEntity(new Entity(ent, null), parentXform, randomSpreadMod, + DropEntity(new Entity(ent, null), outerEntity, randomSpreadMod, ref droppedEntities, launchGibs, launchDirection, launchImpulse, launchImpulseVariance, launchCone); } @@ -154,7 +153,7 @@ public sealed class GibbingSystem : EntitySystem { foreach (var ent in container.ContainedEntities) { - GibEntity(new Entity(ent, null), parentXform, randomSpreadMod, + GibEntity(new Entity(ent, null), outerEntity, randomSpreadMod, ref droppedEntities, launchGibs, launchDirection, launchImpulse, launchImpulseVariance, launchCone); } @@ -170,13 +169,13 @@ public sealed class GibbingSystem : EntitySystem break; case GibType.Drop: { - DropEntity(gibbable, parentXform, randomSpreadMod, ref droppedEntities, launchGibs, + DropEntity(gibbable, outerEntity, randomSpreadMod, ref droppedEntities, launchGibs, launchDirection, launchImpulse, launchImpulseVariance, launchCone); break; } case GibType.Gib: { - GibEntity(gibbable, parentXform, randomSpreadMod, ref droppedEntities, launchGibs, + GibEntity(gibbable, outerEntity, randomSpreadMod, ref droppedEntities, launchGibs, launchDirection, launchImpulse, launchImpulseVariance, launchCone); break; } @@ -184,7 +183,7 @@ public sealed class GibbingSystem : EntitySystem if (playAudio) { - _audioSystem.PlayPredicted(gibbable.Comp.GibSound, parentXform.Coordinates, null); + _audioSystem.PlayPredicted(gibbable.Comp.GibSound, outerEntity, null); } if (gibType == GibType.Gib) @@ -192,7 +191,7 @@ public sealed class GibbingSystem : EntitySystem return true; } - private void DropEntity(Entity gibbable, TransformComponent parentXform, float randomSpreadMod, + private void DropEntity(Entity gibbable, Entity parent, float randomSpreadMod, ref HashSet droppedEntities, bool flingEntity, Vector2? scatterDirection, float scatterImpulse, float scatterImpulseVariance, Angle scatterCone) { @@ -202,6 +201,9 @@ public sealed class GibbingSystem : EntitySystem gibCount = gibbable.Comp.GibCount; } + if (!Resolve(parent, ref parent.Comp, logMissing: false)) + return; + var gibAttemptEvent = new AttemptEntityGibEvent(gibbable, gibCount, GibType.Drop); RaiseLocalEvent(gibbable, ref gibAttemptEvent); switch (gibAttemptEvent.GibType) @@ -209,13 +211,12 @@ public sealed class GibbingSystem : EntitySystem case GibType.Skip: return; case GibType.Gib: - GibEntity(gibbable, parentXform, randomSpreadMod, ref droppedEntities, flingEntity, scatterDirection, + GibEntity(gibbable, parent, randomSpreadMod, ref droppedEntities, flingEntity, scatterDirection, scatterImpulse, scatterImpulseVariance, scatterCone, deleteTarget: false); return; } - _transformSystem.AttachToGridOrMap(gibbable); - _transformSystem.SetCoordinates(gibbable, parentXform.Coordinates); + _transformSystem.DropNextTo(gibbable.Owner, parent); _transformSystem.SetWorldRotation(gibbable, _random.NextAngle()); droppedEntities.Add(gibbable); if (flingEntity) @@ -227,7 +228,7 @@ public sealed class GibbingSystem : EntitySystem RaiseLocalEvent(gibbable, ref gibbedEvent); } - private List GibEntity(Entity gibbable, TransformComponent parentXform, + private List GibEntity(Entity gibbable, Entity parent, float randomSpreadMod, ref HashSet droppedEntities, bool flingEntity, Vector2? scatterDirection, float scatterImpulse, float scatterImpulseVariance, Angle scatterCone, bool deleteTarget = true) @@ -241,6 +242,9 @@ public sealed class GibbingSystem : EntitySystem gibProtoCount = gibbable.Comp.GibPrototypes.Count; } + if (!Resolve(parent, ref parent.Comp, logMissing: false)) + return []; + var gibAttemptEvent = new AttemptEntityGibEvent(gibbable, gibCount, GibType.Drop); RaiseLocalEvent(gibbable, ref gibAttemptEvent); switch (gibAttemptEvent.GibType) @@ -248,7 +252,7 @@ public sealed class GibbingSystem : EntitySystem case GibType.Skip: return localGibs; case GibType.Drop: - DropEntity(gibbable, parentXform, randomSpreadMod, ref droppedEntities, flingEntity, + DropEntity(gibbable, parent, randomSpreadMod, ref droppedEntities, flingEntity, scatterDirection, scatterImpulse, scatterImpulseVariance, scatterCone); localGibs.Add(gibbable); return localGibs; @@ -260,7 +264,7 @@ public sealed class GibbingSystem : EntitySystem { for (var i = 0; i < gibAttemptEvent.GibletCount; i++) { - if (!TryCreateRandomGiblet(gibbable.Comp, parentXform.Coordinates, false, out var giblet, + if (!TryCreateRandomGiblet(gibbable.Comp, parent.Comp.Coordinates, false, out var giblet, randomSpreadMod)) continue; FlingDroppedEntity(giblet.Value, scatterDirection, scatterImpulse, scatterImpulseVariance, @@ -272,7 +276,7 @@ public sealed class GibbingSystem : EntitySystem { for (var i = 0; i < gibAttemptEvent.GibletCount; i++) { - if (TryCreateRandomGiblet(gibbable.Comp, parentXform.Coordinates, false, out var giblet, + if (TryCreateRandomGiblet(gibbable.Comp, parent.Comp.Coordinates, false, out var giblet, randomSpreadMod)) droppedEntities.Add(giblet.Value); } diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs index 3b22917fe8..6e383cd69c 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs @@ -31,6 +31,7 @@ public abstract partial class SharedHandsSystem : EntitySystem .Bind(ContentKeyFunctions.UseItemInHand, InputCmdHandler.FromDelegate(HandleUseItem, handle: false, outsidePrediction: false)) .Bind(ContentKeyFunctions.AltUseItemInHand, InputCmdHandler.FromDelegate(HandleAltUseInHand, handle: false, outsidePrediction: false)) .Bind(ContentKeyFunctions.SwapHands, InputCmdHandler.FromDelegate(SwapHandsPressed, handle: false, outsidePrediction: false)) + .Bind(ContentKeyFunctions.SwapHandsReverse, InputCmdHandler.FromDelegate(SwapHandsReversePressed, handle: false, outsidePrediction: false)) .Bind(ContentKeyFunctions.Drop, new PointerInputCmdHandler(DropPressed)) .Register(); } @@ -79,6 +80,16 @@ public abstract partial class SharedHandsSystem : EntitySystem } private void SwapHandsPressed(ICommonSession? session) + { + SwapHands(session, false); + } + + private void SwapHandsReversePressed(ICommonSession? session) + { + SwapHands(session, true); + } + + private void SwapHands(ICommonSession? session, bool reverse) { if (!TryComp(session?.AttachedEntity, out HandsComponent? component)) return; @@ -89,8 +100,9 @@ public abstract partial class SharedHandsSystem : EntitySystem if (component.ActiveHand == null || component.Hands.Count < 2) return; - var newActiveIndex = component.SortedHands.IndexOf(component.ActiveHand.Name) + 1; - var nextHand = component.SortedHands[newActiveIndex % component.Hands.Count]; + var currentIndex = component.SortedHands.IndexOf(component.ActiveHand.Name); + var newActiveIndex = (currentIndex + (reverse ? -1 : 1) + component.Hands.Count) % component.Hands.Count; + var nextHand = component.SortedHands[newActiveIndex]; TrySetActiveHand(session.AttachedEntity.Value, nextHand, component); } diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs index aa367f71f7..67db193894 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs @@ -4,6 +4,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Movement.Systems; using Content.Shared.Projectiles; using Content.Shared.Weapons.Ranged.Events; +using Content.Shared.Wieldable; namespace Content.Shared.Hands.EntitySystems; @@ -19,6 +20,8 @@ public abstract partial class SharedHandsSystem SubscribeLocalEvent(RefRelayEvent); SubscribeLocalEvent(RefRelayEvent); SubscribeLocalEvent(RefRelayEvent); + SubscribeLocalEvent(RefRelayEvent); + SubscribeLocalEvent(RefRelayEvent); } private void RelayEvent(Entity entity, ref T args) where T : EntityEventArgs diff --git a/Content.Shared/Holopad/HolographicAvatarComponent.cs b/Content.Shared/Holopad/HolographicAvatarComponent.cs index cff71f4fb2..0e475ff691 100644 --- a/Content.Shared/Holopad/HolographicAvatarComponent.cs +++ b/Content.Shared/Holopad/HolographicAvatarComponent.cs @@ -9,5 +9,5 @@ public sealed partial class HolographicAvatarComponent : Component /// The prototype sprite layer data for the hologram /// [DataField, AutoNetworkedField] - public PrototypeLayerData[] LayerData; + public PrototypeLayerData[]? LayerData = null; } diff --git a/Content.Shared/Holopad/HolopadUserComponent.cs b/Content.Shared/Holopad/HolopadUserComponent.cs index c9c2a8828b..d8e4699ee0 100644 --- a/Content.Shared/Holopad/HolopadUserComponent.cs +++ b/Content.Shared/Holopad/HolopadUserComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Chat.TypingIndicator; using Robust.Shared.GameStates; using Robust.Shared.Serialization; @@ -34,11 +35,11 @@ public sealed class HolopadUserTypingChangedEvent : EntityEventArgs /// /// The typing indicator state /// - public readonly bool IsTyping; + public readonly TypingIndicatorState State; - public HolopadUserTypingChangedEvent(NetEntity user, bool isTyping) + public HolopadUserTypingChangedEvent(NetEntity user, TypingIndicatorState state) { User = user; - IsTyping = isTyping; + State = state; } } diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs index 258f92e2ff..9a20fbca2e 100644 --- a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs @@ -14,7 +14,6 @@ namespace Content.Shared.Implants; public abstract class SharedSubdermalImplantSystem : EntitySystem { - [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly TagSystem _tag = default!; @@ -38,7 +37,7 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem private void OnInsert(EntityUid uid, SubdermalImplantComponent component, EntGotInsertedIntoContainerMessage args) { - if (component.ImplantedEntity == null || _net.IsClient) + if (component.ImplantedEntity == null) return; // Sunrise-Start @@ -59,7 +58,7 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem if (_tag.HasTag(implant, MicroBombTag)) { _container.Remove(implant, implantContainer); - QueueDel(implant); + PredictedQueueDel(implant); } } } diff --git a/Content.Shared/Input/ContentKeyFunctions.cs b/Content.Shared/Input/ContentKeyFunctions.cs index 29ebc8511b..ae298beb1a 100644 --- a/Content.Shared/Input/ContentKeyFunctions.cs +++ b/Content.Shared/Input/ContentKeyFunctions.cs @@ -35,6 +35,7 @@ namespace Content.Shared.Input public static readonly BoundKeyFunction OpenBelt = "OpenBelt"; public static readonly BoundKeyFunction OpenAHelp = "OpenAHelp"; public static readonly BoundKeyFunction SwapHands = "SwapHands"; + public static readonly BoundKeyFunction SwapHandsReverse = "SwapHandsReverse"; public static readonly BoundKeyFunction MoveStoredItem = "MoveStoredItem"; public static readonly BoundKeyFunction RotateStoredItem = "RotateStoredItem"; public static readonly BoundKeyFunction SaveItemLocation = "SaveItemLocation"; diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index dfbbd56442..de69956676 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -34,6 +34,7 @@ using Robust.Shared.Input.Binding; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Physics; +using Robust.Shared.Physics.Collision.Shapes; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Player; @@ -53,21 +54,23 @@ namespace Content.Shared.Interaction [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly ISharedChatManager _chat = default!; [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly PullingSystem _pullSystem = default!; [Dependency] private readonly RotateToFaceSystem _rotateToFaceSystem = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedMapSystem _map = default!; [Dependency] private readonly SharedPhysicsSystem _broadphase = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedVerbSystem _verbSystem = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; - [Dependency] private readonly UseDelaySystem _useDelay = default!; - [Dependency] private readonly PullingSystem _pullSystem = default!; - [Dependency] private readonly InventorySystem _inventory = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly SharedUserInterfaceSystem _ui = default!; [Dependency] private readonly SharedStrippableSystem _strippable = default!; [Dependency] private readonly SharedPlayerRateLimitManager _rateLimit = default!; - [Dependency] private readonly ISharedChatManager _chat = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly UseDelaySystem _useDelay = default!; private EntityQuery _ignoreUiRangeQuery; private EntityQuery _fixtureQuery; @@ -854,7 +857,20 @@ namespace Content.Shared.Interaction { // If the target is an item, we ignore any colliding entities. Currently done so that if items get stuck // inside of walls, users can still pick them up. - ignored.UnionWith(_broadphase.GetEntitiesIntersectingBody(target, (int) collisionMask, false, physics)); // Note: This also bypasses items underneath doors, which may be problematic if it'd cause undesirable behavior. + // TODO: Bandaid, alloc spam + // We use 0.01 range just in case it's perfectly in between 2 walls and 1 gets missed. + foreach (var otherEnt in _lookup.GetEntitiesInRange(target, 0.01f, flags: LookupFlags.Static)) + { + if (target == otherEnt || + !_physicsQuery.TryComp(otherEnt, out var otherBody) || + !otherBody.CanCollide || + ((int) collisionMask & otherBody.CollisionLayer) == 0x0) + { + continue; + } + + ignored.Add(otherEnt); + } } else if (_wallMountQuery.TryComp(target, out var wallMount)) { @@ -870,8 +886,8 @@ namespace Content.Shared.Interaction ignoreAnchored = angleDelta < wallMount.Arc / 2 || Math.Tau - angleDelta < wallMount.Arc / 2; } - if (ignoreAnchored && _mapManager.TryFindGridAt(targetCoords, out _, out var grid)) - ignored.UnionWith(grid.GetAnchoredEntities(targetCoords)); + if (ignoreAnchored && _mapManager.TryFindGridAt(targetCoords, out var gridUid, out var grid)) + ignored.UnionWith(_map.GetAnchoredEntities((gridUid, grid), targetCoords)); } Ignored combinedPredicate = e => e == target || (predicate?.Invoke(e) ?? false) || ignored.Contains(e); diff --git a/Content.Shared/Inventory/Events/EquipAttemptEvents.cs b/Content.Shared/Inventory/Events/EquipAttemptEvents.cs index c75c3d1418..2914dd469e 100644 --- a/Content.Shared/Inventory/Events/EquipAttemptEvents.cs +++ b/Content.Shared/Inventory/Events/EquipAttemptEvents.cs @@ -1,60 +1,55 @@ namespace Content.Shared.Inventory.Events; -public abstract class EquipAttemptBase : CancellableEntityEventArgs +public abstract class EquipAttemptBase(EntityUid equipee, EntityUid equipTarget, EntityUid equipment, + SlotDefinition slotDefinition) : CancellableEntityEventArgs, IInventoryRelayEvent { + public SlotFlags TargetSlots { get; } = SlotFlags.WITHOUT_POCKET; + /// /// The entity performing the action. NOT necessarily the one actually "receiving" the equipment. /// - public readonly EntityUid Equipee; + public readonly EntityUid Equipee = equipee; /// /// The entity being equipped to. /// - public readonly EntityUid EquipTarget; + public readonly EntityUid EquipTarget = equipTarget; /// /// The entity to be equipped. /// - public readonly EntityUid Equipment; + public readonly EntityUid Equipment = equipment; /// /// The slotFlags of the slot to equip the entity into. /// - public readonly SlotFlags SlotFlags; + public readonly SlotFlags SlotFlags = slotDefinition.SlotFlags; /// /// The slot the entity is being equipped to. /// - public readonly string Slot; + public readonly string Slot = slotDefinition.Name; /// /// If cancelling and wanting to provide a custom reason, use this field. Not that this expects a loc-id. /// public string? Reason; - - public EquipAttemptBase(EntityUid equipee, EntityUid equipTarget, EntityUid equipment, - SlotDefinition slotDefinition) - { - EquipTarget = equipTarget; - Equipment = equipment; - Equipee = equipee; - SlotFlags = slotDefinition.SlotFlags; - Slot = slotDefinition.Name; - } } -public sealed class BeingEquippedAttemptEvent : EquipAttemptBase -{ - public BeingEquippedAttemptEvent(EntityUid equipee, EntityUid equipTarget, EntityUid equipment, - SlotDefinition slotDefinition) : base(equipee, equipTarget, equipment, slotDefinition) - { - } -} +/// +/// Raised on the item that is being equipped. +/// +public sealed class BeingEquippedAttemptEvent(EntityUid equipee, EntityUid equipTarget, EntityUid equipment, + SlotDefinition slotDefinition) : EquipAttemptBase(equipee, equipTarget, equipment, slotDefinition); -public sealed class IsEquippingAttemptEvent : EquipAttemptBase -{ - public IsEquippingAttemptEvent(EntityUid equipee, EntityUid equipTarget, EntityUid equipment, - SlotDefinition slotDefinition) : base(equipee, equipTarget, equipment, slotDefinition) - { - } -} +/// +/// Raised on the entity that is equipping an item. +/// +public sealed class IsEquippingAttemptEvent(EntityUid equipee, EntityUid equipTarget, EntityUid equipment, + SlotDefinition slotDefinition) : EquipAttemptBase(equipee, equipTarget, equipment, slotDefinition); + +/// +/// Raised on the entity on who item is being equipped. +/// +public sealed class IsEquippingTargetAttemptEvent(EntityUid equipee, EntityUid equipTarget, EntityUid equipment, + SlotDefinition slotDefinition) : EquipAttemptBase(equipee, equipTarget, equipment, slotDefinition); diff --git a/Content.Shared/Inventory/Events/UnequipAttemptEvent.cs b/Content.Shared/Inventory/Events/UnequipAttemptEvent.cs index b647ee8e92..a74b3e2d7c 100644 --- a/Content.Shared/Inventory/Events/UnequipAttemptEvent.cs +++ b/Content.Shared/Inventory/Events/UnequipAttemptEvent.cs @@ -1,60 +1,55 @@ namespace Content.Shared.Inventory.Events; -public abstract class UnequipAttemptEventBase : CancellableEntityEventArgs +public abstract class UnequipAttemptEventBase(EntityUid unequipee, EntityUid unEquipTarget, EntityUid equipment, + SlotDefinition slotDefinition) : CancellableEntityEventArgs, IInventoryRelayEvent { + public SlotFlags TargetSlots { get; } = SlotFlags.WITHOUT_POCKET; + /// /// The entity performing the action. NOT necessarily the same as the entity whose equipment is being removed.. /// - public readonly EntityUid Unequipee; + public readonly EntityUid Unequipee = unequipee; /// /// The entity being unequipped from. /// - public readonly EntityUid UnEquipTarget; + public readonly EntityUid UnEquipTarget = unEquipTarget; /// /// The entity to be unequipped. /// - public readonly EntityUid Equipment; + public readonly EntityUid Equipment = equipment; /// /// The slotFlags of the slot this item is being removed from. /// - public readonly SlotFlags SlotFlags; + public readonly SlotFlags SlotFlags = slotDefinition.SlotFlags; /// /// The slot the entity is being unequipped from. /// - public readonly string Slot; + public readonly string Slot = slotDefinition.Name; /// /// If cancelling and wanting to provide a custom reason, use this field. Not that this expects a loc-id. /// public string? Reason; - - public UnequipAttemptEventBase(EntityUid unequipee, EntityUid unEquipTarget, EntityUid equipment, - SlotDefinition slotDefinition) - { - UnEquipTarget = unEquipTarget; - Equipment = equipment; - Unequipee = unequipee; - SlotFlags = slotDefinition.SlotFlags; - Slot = slotDefinition.Name; - } } -public sealed class BeingUnequippedAttemptEvent : UnequipAttemptEventBase -{ - public BeingUnequippedAttemptEvent(EntityUid unequipee, EntityUid unEquipTarget, EntityUid equipment, - SlotDefinition slotDefinition) : base(unequipee, unEquipTarget, equipment, slotDefinition) - { - } -} +/// +/// Raised on the item that is being unequipped. +/// +public sealed class BeingUnequippedAttemptEvent(EntityUid unequipee, EntityUid unEquipTarget, EntityUid equipment, + SlotDefinition slotDefinition) : UnequipAttemptEventBase(unequipee, unEquipTarget, equipment, slotDefinition); -public sealed class IsUnequippingAttemptEvent : UnequipAttemptEventBase -{ - public IsUnequippingAttemptEvent(EntityUid unequipee, EntityUid unEquipTarget, EntityUid equipment, - SlotDefinition slotDefinition) : base(unequipee, unEquipTarget, equipment, slotDefinition) - { - } -} +/// +/// Raised on the entity that is unequipping an item. +/// +public sealed class IsUnequippingAttemptEvent(EntityUid unequipee, EntityUid unEquipTarget, EntityUid equipment, + SlotDefinition slotDefinition) : UnequipAttemptEventBase(unequipee, unEquipTarget, equipment, slotDefinition); + +/// +/// Raised on the entity from who item is being unequipped. +/// +public sealed class IsUnequippingTargetAttemptEvent(EntityUid unequipee, EntityUid unEquipTarget, EntityUid equipment, + SlotDefinition slotDefinition) : UnequipAttemptEventBase(unequipee, unEquipTarget, equipment, slotDefinition); diff --git a/Content.Shared/Inventory/InventorySystem.Equip.cs b/Content.Shared/Inventory/InventorySystem.Equip.cs index 4988fd96be..f2fb3987b7 100644 --- a/Content.Shared/Inventory/InventorySystem.Equip.cs +++ b/Content.Shared/Inventory/InventorySystem.Equip.cs @@ -286,23 +286,21 @@ public abstract partial class InventorySystem } var attemptEvent = new IsEquippingAttemptEvent(actor, target, itemUid, slotDefinition); - RaiseLocalEvent(target, attemptEvent, true); + RaiseLocalEvent(actor, attemptEvent, true); + if (attemptEvent.Cancelled) { reason = attemptEvent.Reason ?? reason; return false; } - if (actor != target) + var targetAttemptEvent = new IsEquippingTargetAttemptEvent(actor, target, itemUid, slotDefinition); + RaiseLocalEvent(target, targetAttemptEvent, true); + + if (targetAttemptEvent.Cancelled) { - //reuse the event. this is gucci, right? - attemptEvent.Reason = null; - RaiseLocalEvent(actor, attemptEvent, true); - if (attemptEvent.Cancelled) - { - reason = attemptEvent.Reason ?? reason; - return false; - } + reason = targetAttemptEvent.Reason ?? reason; + return false; } var itemAttemptEvent = new BeingEquippedAttemptEvent(actor, target, itemUid, slotDefinition); @@ -524,30 +522,28 @@ public abstract partial class InventorySystem } var attemptEvent = new IsUnequippingAttemptEvent(actor, target, itemUid, slotDefinition); - RaiseLocalEvent(target, attemptEvent, true); + RaiseLocalEvent(actor, attemptEvent, true); + if (attemptEvent.Cancelled) { reason = attemptEvent.Reason ?? reason; return false; } - if (actor != target) + var targetAttemptEvent = new IsUnequippingTargetAttemptEvent(actor, target, itemUid, slotDefinition); + RaiseLocalEvent(target, targetAttemptEvent, true); + + if (targetAttemptEvent.Cancelled) { - //reuse the event. this is gucci, right? - attemptEvent.Reason = null; - RaiseLocalEvent(actor, attemptEvent, true); - if (attemptEvent.Cancelled) - { - reason = attemptEvent.Reason ?? reason; - return false; - } + reason = targetAttemptEvent.Reason ?? reason; + return false; } var itemAttemptEvent = new BeingUnequippedAttemptEvent(actor, target, itemUid, slotDefinition); RaiseLocalEvent(itemUid, itemAttemptEvent, true); if (itemAttemptEvent.Cancelled) { - reason = attemptEvent.Reason ?? reason; + reason = itemAttemptEvent.Reason ?? reason; return false; } diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index 8d4b051630..bc9cab7e1f 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -25,6 +25,7 @@ using Content.Shared.Strip.Components; using Content.Shared.Temperature; using Content.Shared.Verbs; using Content.Shared.Weapons.Ranged.Events; +using Content.Shared.Wieldable; using Content.Shared.Zombies; using Content.Shared._Sunrise.Eye.NightVision.Components; using Content.Shared.Weapons.Ranged.Events; // Sunrise-Edit @@ -51,6 +52,8 @@ public partial class InventorySystem SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); // by-ref events SubscribeLocalEvent(RefRelayInventoryEvent); @@ -65,6 +68,8 @@ public partial class InventorySystem SubscribeLocalEvent(RefRelayInventoryEvent); SubscribeLocalEvent(RefRelayInventoryEvent); SubscribeLocalEvent(RefRelayInventoryEvent); // Sunrise-Edit + SubscribeLocalEvent(RefRelayInventoryEvent); + SubscribeLocalEvent(RefRelayInventoryEvent); // Eye/vision events SubscribeLocalEvent(RelayInventoryEvent); diff --git a/Content.Shared/Inventory/SlotBlockComponent.cs b/Content.Shared/Inventory/SlotBlockComponent.cs new file mode 100644 index 0000000000..dde706addf --- /dev/null +++ b/Content.Shared/Inventory/SlotBlockComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Inventory; + +/// +/// Used to prevent items from being unequipped and equipped from slots that are listed in . +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SlotBlockSystem))] +public sealed partial class SlotBlockComponent : Component +{ + /// + /// Slots that this entity should block. + /// + [DataField(required: true), AutoNetworkedField] + public SlotFlags Slots = SlotFlags.NONE; +} diff --git a/Content.Shared/Inventory/SlotBlockSystem.cs b/Content.Shared/Inventory/SlotBlockSystem.cs new file mode 100644 index 0000000000..9ac3361cb9 --- /dev/null +++ b/Content.Shared/Inventory/SlotBlockSystem.cs @@ -0,0 +1,35 @@ +using Content.Shared.Inventory.Events; + +namespace Content.Shared.Inventory; + +/// +/// Handles prevention of items being unequipped and equipped from slots that are blocked by . +/// +public sealed partial class SlotBlockSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnEquipAttempt); + SubscribeLocalEvent>(OnUnequipAttempt); + } + + private void OnEquipAttempt(Entity ent, ref InventoryRelayedEvent args) + { + if (args.Args.Cancelled || (args.Args.SlotFlags & ent.Comp.Slots) == 0) + return; + + args.Args.Reason = Loc.GetString("slot-block-component-blocked", ("item", ent)); + args.Args.Cancel(); + } + + private void OnUnequipAttempt(Entity ent, ref InventoryRelayedEvent args) + { + if (args.Args.Cancelled || (args.Args.SlotFlags & ent.Comp.Slots) == 0) + return; + + args.Args.Reason = Loc.GetString("slot-block-component-blocked", ("item", ent)); + args.Args.Cancel(); + } +} diff --git a/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs b/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs index 39cc75ecc3..147507cf5e 100644 --- a/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs +++ b/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs @@ -16,11 +16,26 @@ public sealed class ComponentTogglerSystem : EntitySystem private void OnToggled(Entity ent, ref ItemToggledEvent args) { - var target = ent.Comp.Parent ? Transform(ent).ParentUid : ent.Owner; - if (args.Activated) + { + var target = ent.Comp.Parent ? Transform(ent).ParentUid : ent.Owner; + + if (TerminatingOrDeleted(target)) + return; + + ent.Comp.Target = target; + EntityManager.AddComponents(target, ent.Comp.Components); + } else - EntityManager.RemoveComponents(target, ent.Comp.RemoveComponents ?? ent.Comp.Components); + { + if (ent.Comp.Target == null) + return; + + if (TerminatingOrDeleted(ent.Comp.Target.Value)) + return; + + EntityManager.RemoveComponents(ent.Comp.Target.Value, ent.Comp.RemoveComponents ?? ent.Comp.Components); + } } } \ No newline at end of file diff --git a/Content.Shared/Item/ItemToggle/Components/ComponentTogglerComponent.cs b/Content.Shared/Item/ItemToggle/Components/ComponentTogglerComponent.cs index 533be5c353..cecdb4dc77 100644 --- a/Content.Shared/Item/ItemToggle/Components/ComponentTogglerComponent.cs +++ b/Content.Shared/Item/ItemToggle/Components/ComponentTogglerComponent.cs @@ -29,4 +29,10 @@ public sealed partial class ComponentTogglerComponent : Component /// [DataField] public bool Parent; -} \ No newline at end of file + + // + // It holds the entity that the component gave the component to, so it can remove from it even if it changes parent. + // + [DataField] + public EntityUid? Target; +} diff --git a/Content.Shared/Item/SharedItemSystem.cs b/Content.Shared/Item/SharedItemSystem.cs index 34677966f8..c277bb7e87 100644 --- a/Content.Shared/Item/SharedItemSystem.cs +++ b/Content.Shared/Item/SharedItemSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Examine; using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Storage; using JetBrains.Annotations; +using Robust.Shared.Collections; using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -206,15 +207,21 @@ public abstract class SharedItemSystem : EntitySystem public IReadOnlyList GetAdjustedItemShape(Entity entity, Angle rotation, Vector2i position) { if (!Resolve(entity, ref entity.Comp)) - return new Box2i[] { }; + return []; + var adjustedShapes = new List(); + GetAdjustedItemShape(adjustedShapes, entity, rotation, position); + return adjustedShapes; + } + + public void GetAdjustedItemShape(List adjustedShapes, Entity entity, Angle rotation, Vector2i position) + { var shapes = GetItemShape(entity); var boundingShape = shapes.GetBoundingBox(); var boundingCenter = ((Box2) boundingShape).Center; var matty = Matrix3Helpers.CreateTransform(boundingCenter, rotation); var drift = boundingShape.BottomLeft - matty.TransformBox(boundingShape).BottomLeft; - var adjustedShapes = new List(); foreach (var shape in shapes) { var transformed = matty.TransformBox(shape).Translated(drift); @@ -223,8 +230,6 @@ public abstract class SharedItemSystem : EntitySystem adjustedShapes.Add(translated); } - - return adjustedShapes; } /// diff --git a/Content.Shared/Labels/EntitySystems/LabelSystem.cs b/Content.Shared/Labels/EntitySystems/LabelSystem.cs index 569acc7bca..f60b690929 100644 --- a/Content.Shared/Labels/EntitySystems/LabelSystem.cs +++ b/Content.Shared/Labels/EntitySystems/LabelSystem.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using Content.Shared.Containers.ItemSlots; using Content.Shared.Examine; using Content.Shared.Labels.Components; @@ -141,4 +142,23 @@ public sealed partial class LabelSystem : EntitySystem if (TryComp(slot.Item, out var type)) _appearance.SetData(ent, PaperLabelVisuals.LabelType, type.PaperType, ent.Comp2); } + + /// + /// Retrieves a label with the specified component from the default label slot. + /// + public bool TryGetLabel(Entity ent, [NotNullWhen(true)] out Entity? label) where T : Component + { + label = null; + if (!Resolve(ent, ref ent.Comp, false)) + return false; + + if (ent.Comp.LabelSlot.Item is not { } labelEnt) + return false; + + if (!TryComp(labelEnt, out var labelComp)) + return false; + + label = (labelEnt, labelComp); + return true; + } } diff --git a/Content.Shared/Light/Components/ImplicitRoofComponent.cs b/Content.Shared/Light/Components/ImplicitRoofComponent.cs new file mode 100644 index 0000000000..b457bac3e4 --- /dev/null +++ b/Content.Shared/Light/Components/ImplicitRoofComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Light.Components; + +/// +/// Assumes the entire attached grid is rooved. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ImplicitRoofComponent : Component +{ + [DataField, AutoNetworkedField] + public Color Color = Color.Black; +} diff --git a/Content.Shared/Magic/SharedMagicSystem.cs b/Content.Shared/Magic/SharedMagicSystem.cs index b362b5aa90..4bfe2e1fe5 100644 --- a/Content.Shared/Magic/SharedMagicSystem.cs +++ b/Content.Shared/Magic/SharedMagicSystem.cs @@ -43,7 +43,6 @@ namespace Content.Shared.Magic; public abstract class SharedMagicSystem : EntitySystem { [Dependency] private readonly ISerializationManager _seriMan = default!; - [Dependency] private readonly IComponentFactory _compFact = default!; [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly SharedMapSystem _mapSystem = default!; [Dependency] private readonly IRobustRandom _random = default!; @@ -276,13 +275,9 @@ public abstract class SharedMagicSystem : EntitySystem // If applicable, this ensures the projectile is parented to grid on spawn, instead of the map. var fromMap = _transform.ToMapCoordinates(fromCoords); - var spawnCoords = _mapManager.TryFindGridAt(fromMap, out var gridUid, out _) - ? _transform.WithEntityId(fromCoords, gridUid) - : new(_mapManager.GetMapEntityId(fromMap.MapId), fromMap.Position); - - var ent = Spawn(ev.Prototype, spawnCoords); + var ent = Spawn(ev.Prototype, fromMap); var direction = _transform.ToMapCoordinates(toCoords).Position - - _transform.ToMapCoordinates(spawnCoords).Position; + fromMap.Position; _gunSystem.ShootProjectile(ent, direction, userVelocity, ev.Performer, ev.Performer); } // End Projectile Spells @@ -360,7 +355,7 @@ public abstract class SharedMagicSystem : EntitySystem if (HasComp(target, data.Component.GetType())) continue; - var component = (Component)_compFact.GetComponent(name); + var component = (Component)Factory.GetComponent(name); var temp = (object)component; _seriMan.CopyTo(data.Component, ref temp); EntityManager.AddComponent(target, (Component)temp!); @@ -371,7 +366,7 @@ public abstract class SharedMagicSystem : EntitySystem { foreach (var toRemove in comps) { - if (_compFact.TryGetRegistration(toRemove, out var registration)) + if (Factory.TryGetRegistration(toRemove, out var registration)) RemComp(target, registration.Type); } } diff --git a/Content.Shared/Maps/ContentTileDefinition.cs b/Content.Shared/Maps/ContentTileDefinition.cs index f1b67fc6c8..9fc4bee481 100644 --- a/Content.Shared/Maps/ContentTileDefinition.cs +++ b/Content.Shared/Maps/ContentTileDefinition.cs @@ -47,6 +47,12 @@ namespace Content.Shared.Maps [DataField] public PrototypeFlags DeconstructTools { get; set; } = new(); + /// + /// Effective mass of this tile for grid impacts. + /// + [DataField] + public float Mass = 800f; + /// /// Legacy AF but nice to have. /// @@ -69,6 +75,11 @@ namespace Content.Shared.Maps [DataField("variants")] public byte Variants { get; set; } = 1; + /// + /// Allows the tile to be rotated/mirrored when placed on a grid. + /// + [DataField] public bool AllowRotationMirror { get; set; } = false; + /// /// This controls what variants the `variantize` command is allowed to use. /// diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index ab17a4221e..de8d4f0567 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -253,6 +253,24 @@ public abstract partial class SharedMindSystem : EntitySystem return _mobState.IsDead(mind.OwnedEntity.Value, targetMobState); } + /// + /// True if the OwnedEntity of this mind is physically unrevivable. + /// This is mainly to check whether a mind is able to inherit their "original" character again without the need for creating a new one. + /// In cases of being a brain, being borged or a zombie they are "unrevivable" + /// + public bool IsCharacterUnrevivablePhysically(MindComponent mind) + { + if (mind.OwnedEntity == null) + return true; + + // This entity cannot be dead, alive or crit, so it makes sense it cannot be revived to begin with. + if (!HasComp(mind.OwnedEntity)) + return true; + + // Could use checks for the amount of damage they have, but with chemistry you can never tell what damage means someone is truly "unrevivable". + return false; + } + public virtual void Visit(EntityUid mindId, EntityUid entity, MindComponent? mind = null) { } @@ -556,6 +574,27 @@ public abstract partial class SharedMindSystem : EntitySystem return IsCharacterDeadPhysically(mind); } + /// + /// True if this Mind is 'sufficiently unrevivable' IC (Objectives, EndText). + /// Note that this is *IC logic*, it's not necessarily tied to any specific truth. + /// "If administrators decide that zombies are unrevivable, this returns true for zombies." + /// Alternative IsCharacterDeadIC that checks for whether they will be able to inherit their body again. + /// State in which they must be given a new body to "live" (borging, being a brain, etc) should count as "unrevivable". + /// + public bool IsCharacterUnrevivableIc(MindComponent mind) + { + if (mind.OwnedEntity is { } owned) + { + var ev = new GetCharacterUnrevivableIcEvent(null); + RaiseLocalEvent(owned, ref ev); + + if (ev.Unrevivable != null) + return ev.Unrevivable.Value; + } + + return IsCharacterUnrevivablePhysically(mind); + } + /// /// A string to represent the mind for logging /// @@ -602,3 +641,11 @@ public abstract partial class SharedMindSystem : EntitySystem /// [ByRefEvent] public record struct GetCharactedDeadIcEvent(bool? Dead); + +/// +/// Raised on an entity to determine whether or not they are "unrevivable" in IC-logic. +/// Used to check for things such as being borged or a zombie. +/// +/// +[ByRefEvent] +public record struct GetCharacterUnrevivableIcEvent(bool? Unrevivable); diff --git a/Content.Shared/Movement/Components/FrictionContactsComponent.cs b/Content.Shared/Movement/Components/FrictionContactsComponent.cs index 204e35a348..b6e1d533a2 100644 --- a/Content.Shared/Movement/Components/FrictionContactsComponent.cs +++ b/Content.Shared/Movement/Components/FrictionContactsComponent.cs @@ -8,24 +8,27 @@ namespace Content.Shared.Movement.Components; [Access(typeof(FrictionContactsSystem))] public sealed partial class FrictionContactsComponent : Component { + /// + /// Should this affect airborne mobs? + /// + [DataField, AutoNetworkedField] + public bool AffectAirborne; + /// /// Modified mob friction while on FrictionContactsComponent /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] + [DataField, AutoNetworkedField] public float MobFriction = 0.05f; /// /// Modified mob friction without input while on FrictionContactsComponent /// - [AutoNetworkedField] - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public float? MobFrictionNoInput = 0.05f; /// /// Modified mob acceleration while on FrictionContactsComponent /// - [AutoNetworkedField] - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public float MobAcceleration = 0.1f; } diff --git a/Content.Shared/Movement/Events/TileFrictionEvent.cs b/Content.Shared/Movement/Events/TileFrictionEvent.cs index e355f21f45..3b6894c0d9 100644 --- a/Content.Shared/Movement/Events/TileFrictionEvent.cs +++ b/Content.Shared/Movement/Events/TileFrictionEvent.cs @@ -10,6 +10,7 @@ public struct TileFrictionEvent public TileFrictionEvent(float modifier) { + // TODO: If something ever uses different angular and linear modifiers, split this into two modifiers Modifier = modifier; } } diff --git a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs index 369225df2d..bc505ee989 100644 --- a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs +++ b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs @@ -5,10 +5,12 @@ using Content.Shared.Buckle.Components; using Content.Shared.Cuffs.Components; using Content.Shared.Database; using Content.Shared.Hands; +using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.IdentityManagement; using Content.Shared.Input; using Content.Shared.Interaction; +using Content.Shared.Inventory.VirtualItem; using Content.Shared.Item; using Content.Shared.Mobs; using Content.Shared.Mobs.Systems; @@ -28,6 +30,7 @@ using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Systems; using Robust.Shared.Player; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Shared.Movement.Pulling.Systems; @@ -48,6 +51,7 @@ public sealed class PullingSystem : EntitySystem [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly HeldSpeedModifierSystem _clothingMoveSpeed = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedVirtualItemSystem _virtual = default!; public override void Initialize() { @@ -73,6 +77,9 @@ public sealed class PullingSystem : EntitySystem SubscribeLocalEvent(OnDropHandItems); SubscribeLocalEvent(OnStopPullingAlert); + SubscribeLocalEvent(HandlePullStarted); + SubscribeLocalEvent(HandlePullStopped); + SubscribeLocalEvent(OnBuckled); SubscribeLocalEvent(OnGotBuckled); @@ -81,6 +88,41 @@ public sealed class PullingSystem : EntitySystem .Register(); } + private void HandlePullStarted(EntityUid uid, HandsComponent component, PullStartedMessage args) + { + if (args.PullerUid != uid) + return; + + if (TryComp(args.PullerUid, out PullerComponent? pullerComp) && !pullerComp.NeedsHands) + return; + + if (!_virtual.TrySpawnVirtualItemInHand(args.PulledUid, uid)) + { + DebugTools.Assert("Unable to find available hand when starting pulling??"); + } + } + + private void HandlePullStopped(EntityUid uid, HandsComponent component, PullStoppedMessage args) + { + if (args.PullerUid != uid) + return; + + // Try find hand that is doing this pull. + // and clear it. + foreach (var hand in component.Hands.Values) + { + if (hand.HeldEntity == null + || !TryComp(hand.HeldEntity, out VirtualItemComponent? virtualItem) + || virtualItem.BlockingEntity != args.PulledUid) + { + continue; + } + + _handsSystem.TryDrop(args.PullerUid, hand, handsComp: component); + break; + } + } + private void OnStateChanged(EntityUid uid, PullerComponent component, ref UpdateMobStateEvent args) { if (component.Pulling == null) diff --git a/Content.Shared/Movement/Systems/FrictionContactsSystem.cs b/Content.Shared/Movement/Systems/FrictionContactsSystem.cs index 4dd679c37c..09d74bfb40 100644 --- a/Content.Shared/Movement/Systems/FrictionContactsSystem.cs +++ b/Content.Shared/Movement/Systems/FrictionContactsSystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.Gravity; using Content.Shared.Movement.Components; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; @@ -7,6 +8,7 @@ namespace Content.Shared.Movement.Systems; public sealed class FrictionContactsSystem : EntitySystem { + [Dependency] private readonly SharedGravitySystem _gravity = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly MovementSpeedModifierSystem _speedModifierSystem = default!; @@ -82,12 +84,19 @@ public sealed class FrictionContactsSystem : EntitySystem var frictionNoInput = 0.0f; var acceleration = 0.0f; + var isAirborne = physicsComponent.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(entity, physicsComponent); + var remove = true; var entries = 0; foreach (var ent in _physics.GetContactingEntities(entity, physicsComponent)) { if (!TryComp(ent, out var contacts)) continue; + + // Entities that are airborne should not be affected by contact slowdowns that are specified to not affect airborne entities. + if (isAirborne && !contacts.AffectAirborne) + continue; + friction += contacts.MobFriction; frictionNoInput += contacts.MobFrictionNoInput ?? contacts.MobFriction; acceleration += contacts.MobAcceleration; diff --git a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs index 464c4c3758..cf7aedd95f 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs @@ -210,12 +210,12 @@ namespace Content.Shared.Movement.Systems var diff = relativeRot - oldRelativeRot; // If we're going from a grid -> map then preserve the relative rotation so it's seamless if they go into space and back. - if (HasComp(relative) && HasComp(mover.RelativeEntity)) + if (MapQuery.HasComp(relative) && MapGridQuery.HasComp(mover.RelativeEntity)) { mover.TargetRelativeRotation -= diff; } - // Snap to nearest cardinal if map -> grid - else if (HasComp(relative) && HasComp(mover.RelativeEntity)) + // Snap to nearest cardinal if map -> grid or grid -> grid + else if (MapGridQuery.HasComp(relative) && (MapQuery.HasComp(mover.RelativeEntity) || MapGridQuery.HasComp(mover.RelativeEntity))) { var targetDir = mover.TargetRelativeRotation - diff; targetDir = targetDir.GetCardinalDir().ToAngle().Reduced(); diff --git a/Content.Shared/Movement/Systems/SharedMoverController.cs b/Content.Shared/Movement/Systems/SharedMoverController.cs index d8aacb7480..5b208b27d7 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.cs @@ -50,18 +50,19 @@ public abstract partial class SharedMoverController : VirtualController [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly TagSystem _tags = default!; + protected EntityQuery CanMoveInAirQuery; + protected EntityQuery FootstepModifierQuery; protected EntityQuery MoverQuery; + protected EntityQuery MapQuery; + protected EntityQuery MapGridQuery; protected EntityQuery MobMoverQuery; protected EntityQuery RelayTargetQuery; protected EntityQuery ModifierQuery; + protected EntityQuery NoRotateQuery; protected EntityQuery PhysicsQuery; protected EntityQuery RelayQuery; protected EntityQuery PullableQuery; protected EntityQuery XformQuery; - protected EntityQuery CanMoveInAirQuery; - protected EntityQuery NoRotateQuery; - protected EntityQuery FootstepModifierQuery; - protected EntityQuery MapGridQuery; private static readonly ProtoId FootstepSoundTag = "FootstepSound"; @@ -91,6 +92,7 @@ public abstract partial class SharedMoverController : VirtualController CanMoveInAirQuery = GetEntityQuery(); FootstepModifierQuery = GetEntityQuery(); MapGridQuery = GetEntityQuery(); + MapQuery = GetEntityQuery(); SubscribeLocalEvent(OnTileFriction); @@ -260,7 +262,8 @@ public abstract partial class SharedMoverController : VirtualController else { if (MapGridQuery.TryComp(xform.GridUid, out var gridComp) - && _mapSystem.TryGetTileRef(xform.GridUid.Value, gridComp, xform.Coordinates, out var tile)) + && _mapSystem.TryGetTileRef(xform.GridUid.Value, gridComp, xform.Coordinates, out var tile) + && physicsComponent.BodyStatus == BodyStatus.OnGround) tileDef = (ContentTileDefinition) _tileDefinitionManager[tile.Tile.TypeId]; var walkSpeed = moveSpeedComponent?.CurrentWalkSpeed ?? MovementSpeedModifierComponent.DefaultBaseWalkSpeed; @@ -411,6 +414,17 @@ public abstract partial class SharedMoverController : VirtualController } + public void Friction(float minimumFrictionSpeed, float frameTime, float friction, ref float velocity) + { + if (Math.Abs(velocity) < minimumFrictionSpeed) + return; + + // This equation is lifted from the Physics Island solver. + // We re-use it here because Kinematic Controllers can't/shouldn't use the Physics Friction + velocity *= Math.Clamp(1.0f - frameTime * friction, 0.0f, 1.0f); + + } + /// /// Adjusts the current velocity to the target velocity based on the specified acceleration. /// @@ -553,7 +567,7 @@ public abstract partial class SharedMoverController : VirtualController // If the coordinates have a FootstepModifier component // i.e. component that emit sound on footsteps emit that sound - var anchored = grid.GetAnchoredEntitiesEnumerator(position); + var anchored = _mapSystem.GetAnchoredEntitiesEnumerator(xform.GridUid.Value, grid, position); while (anchored.MoveNext(out var maybeFootstep)) { diff --git a/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs b/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs index 9c96a2b7dc..e2dee87019 100644 --- a/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs +++ b/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs @@ -113,7 +113,7 @@ public sealed class SpeedModifierContactsSystem : EntitySystem var evSlippery = new GetSlowedOverSlipperyModifierEvent(); RaiseLocalEvent(uid, ref evSlippery); - if (MathHelper.CloseTo(evSlippery.SlowdownModifier, 1)) + if (!MathHelper.CloseTo(evSlippery.SlowdownModifier, 1)) { walkSpeed += evSlippery.SlowdownModifier; sprintSpeed += evSlippery.SlowdownModifier; diff --git a/Content.Shared/NodeContainer/SharedNodeContainerSystem.cs b/Content.Shared/NodeContainer/SharedNodeContainerSystem.cs new file mode 100644 index 0000000000..e639af21ab --- /dev/null +++ b/Content.Shared/NodeContainer/SharedNodeContainerSystem.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.NodeContainer; + +public abstract class SharedNodeContainerSystem : EntitySystem +{ + +} diff --git a/Content.Shared/Nuke/NukeDiskComponent.cs b/Content.Shared/Nuke/NukeDiskComponent.cs index 2f99d68918..8185b15f31 100644 --- a/Content.Shared/Nuke/NukeDiskComponent.cs +++ b/Content.Shared/Nuke/NukeDiskComponent.cs @@ -8,5 +8,16 @@ namespace Content.Shared.Nuke; [RegisterComponent, NetworkedComponent] public sealed partial class NukeDiskComponent : Component { + /// + /// Used to modify the nuke's countdown timer. + /// + [DataField] + public TimeSpan? TimeModifier; + [DataField] + public TimeSpan MicrowaveMean = TimeSpan.Zero; + + [DataField] + public TimeSpan MicrowaveStd = TimeSpan.FromSeconds(27.35); + // STD of 27.36s means theres an 90% chance the time is between +-45s, and a ~99% chance its between +-70s } diff --git a/Content.Shared/PDA/SharedRingerSystem.cs b/Content.Shared/PDA/SharedRingerSystem.cs index 8a9d8156a3..392cd46e72 100644 --- a/Content.Shared/PDA/SharedRingerSystem.cs +++ b/Content.Shared/PDA/SharedRingerSystem.cs @@ -25,10 +25,8 @@ public abstract class SharedRingerSystem : EntitySystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedMindSystem _mind = default!; [Dependency] private readonly SharedPdaSystem _pda = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly SharedRoleSystem _role = default!; [Dependency] private readonly SharedTransformSystem _xform = default!; [Dependency] protected readonly SharedUserInterfaceSystem UI = default!; diff --git a/Content.Shared/Paper/PaperComponent.cs b/Content.Shared/Paper/PaperComponent.cs index cd0758589d..056bd70f30 100644 --- a/Content.Shared/Paper/PaperComponent.cs +++ b/Content.Shared/Paper/PaperComponent.cs @@ -12,7 +12,7 @@ public sealed partial class PaperComponent : Component public string Content { get; set; } = ""; [DataField("contentSize")] - public int ContentSize { get; set; } = 6000; + public int ContentSize { get; set; } = 10000; [DataField("stampedBy"), AutoNetworkedField] public List StampedBy { get; set; } = new(); diff --git a/Content.Shared/Paper/PaperSystem.cs b/Content.Shared/Paper/PaperSystem.cs index 5e89e77682..04d6d4026c 100644 --- a/Content.Shared/Paper/PaperSystem.cs +++ b/Content.Shared/Paper/PaperSystem.cs @@ -122,7 +122,7 @@ public sealed class PaperSystem : EntitySystem if (entity.Comp.EditingDisabled) { var paperEditingDisabledMessage = Loc.GetString("paper-tamper-proof-modified-message"); - _popupSystem.PopupEntity(paperEditingDisabledMessage, entity, args.User); + _popupSystem.PopupClient(paperEditingDisabledMessage, entity, args.User); args.Handled = true; return; @@ -281,6 +281,12 @@ public sealed class PaperSystem : EntitySystem } } + public void SetContent(EntityUid entity, string content) + { + if (!TryComp(entity, out var paper)) + return; + SetContent((entity, paper), content); + } public void SetContent(Entity entity, string content) { diff --git a/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs b/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs index b06574eb5b..a5238e8c6e 100644 --- a/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs +++ b/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs @@ -17,6 +17,7 @@ public abstract class SharedBiomeSystem : EntitySystem [Dependency] private readonly ISerializationManager _serManager = default!; [Dependency] protected readonly ITileDefinitionManager TileDefManager = default!; [Dependency] private readonly TileSystem _tile = default!; + [Dependency] private readonly SharedMapSystem _map = default!; protected const byte ChunkSize = 8; @@ -69,7 +70,7 @@ public abstract class SharedBiomeSystem : EntitySystem public bool TryGetBiomeTile(EntityUid uid, MapGridComponent grid, Vector2i indices, [NotNullWhen(true)] out Tile? tile) { - if (grid.TryGetTileRef(indices, out var tileRef) && !tileRef.Tile.IsEmpty) + if (_map.TryGetTileRef(uid, grid, indices, out var tileRef) && !tileRef.Tile.IsEmpty) { tile = tileRef.Tile; return true; @@ -81,15 +82,15 @@ public abstract class SharedBiomeSystem : EntitySystem return false; } - return TryGetBiomeTile(indices, biome.Layers, biome.Seed, grid, out tile); + return TryGetBiomeTile(indices, biome.Layers, biome.Seed, (uid, grid), out tile); } /// /// Tries to get the tile, real or otherwise, for the specified indices. /// - public bool TryGetBiomeTile(Vector2i indices, List layers, int seed, MapGridComponent? grid, [NotNullWhen(true)] out Tile? tile) + public bool TryGetBiomeTile(Vector2i indices, List layers, int seed, Entity? grid, [NotNullWhen(true)] out Tile? tile) { - if (grid?.TryGetTileRef(indices, out var tileRef) == true && !tileRef.Tile.IsEmpty) + if (grid is { } gridEnt && _map.TryGetTileRef(gridEnt, gridEnt.Comp, indices, out var tileRef) && !tileRef.Tile.IsEmpty) { tile = tileRef.Tile; return true; @@ -98,10 +99,19 @@ public abstract class SharedBiomeSystem : EntitySystem return TryGetTile(indices, layers, seed, grid, out tile); } + /// + /// Tries to get the tile, real or otherwise, for the specified indices. + /// + [Obsolete("Use the Entity? overload")] + public bool TryGetBiomeTile(Vector2i indices, List layers, int seed, MapGridComponent? grid, [NotNullWhen(true)] out Tile? tile) + { + return TryGetBiomeTile(indices, layers, seed, grid == null ? null : (grid.Owner, grid), out tile); + } + /// /// Gets the underlying biome tile, ignoring any existing tile that may be there. /// - public bool TryGetTile(Vector2i indices, List layers, int seed, MapGridComponent? grid, [NotNullWhen(true)] out Tile? tile) + public bool TryGetTile(Vector2i indices, List layers, int seed, Entity? grid, [NotNullWhen(true)] out Tile? tile) { for (var i = layers.Count - 1; i >= 0; i--) { @@ -139,6 +149,15 @@ public abstract class SharedBiomeSystem : EntitySystem return false; } + /// + /// Gets the underlying biome tile, ignoring any existing tile that may be there. + /// + [Obsolete("Use the Entity? overload")] + public bool TryGetTile(Vector2i indices, List layers, int seed, MapGridComponent? grid, [NotNullWhen(true)] out Tile? tile) + { + return TryGetTile(indices, layers, seed, grid == null ? null : (grid.Owner, grid), out tile); + } + /// /// Gets the underlying biome tile, ignoring any existing tile that may be there. /// @@ -160,7 +179,7 @@ public abstract class SharedBiomeSystem : EntitySystem if (variantCount > 1) { var variantValue = (noise.GetNoise(indices.X * 8, indices.Y * 8, variantCount) + 1f) * 100; - variant = _tile.PickVariant(tileDef, (int) variantValue); + variant = _tile.PickVariant(tileDef, (int)variantValue); } tile = new Tile(tileDef.TileId, variant); @@ -170,7 +189,7 @@ public abstract class SharedBiomeSystem : EntitySystem /// /// Tries to get the relevant entity for this tile. /// - public bool TryGetEntity(Vector2i indices, BiomeComponent component, MapGridComponent grid, + public bool TryGetEntity(Vector2i indices, BiomeComponent component, Entity? grid, [NotNullWhen(true)] out string? entity) { if (!TryGetBiomeTile(indices, component.Layers, component.Seed, grid, out var tile)) @@ -182,8 +201,17 @@ public abstract class SharedBiomeSystem : EntitySystem return TryGetEntity(indices, component.Layers, tile.Value, component.Seed, grid, out entity); } + /// + /// Tries to get the relevant entity for this tile. + /// + [Obsolete("Use the Entity? overload")] + public bool TryGetEntity(Vector2i indices, BiomeComponent component, MapGridComponent grid, + [NotNullWhen(true)] out string? entity) + { + return TryGetEntity(indices, component, grid == null ? null : (grid.Owner, grid), out entity); + } - public bool TryGetEntity(Vector2i indices, List layers, Tile tileRef, int seed, MapGridComponent grid, + public bool TryGetEntity(Vector2i indices, List layers, Tile tileRef, int seed, Entity? grid, [NotNullWhen(true)] out string? entity) { var tileId = TileDefManager[tileRef.TypeId].ID; @@ -242,10 +270,17 @@ public abstract class SharedBiomeSystem : EntitySystem return false; } + [Obsolete("Use the Entity? overload")] + public bool TryGetEntity(Vector2i indices, List layers, Tile tileRef, int seed, MapGridComponent grid, + [NotNullWhen(true)] out string? entity) + { + return TryGetEntity(indices, layers, tileRef, seed, grid == null ? null : (grid.Owner, grid), out entity); + } + /// /// Tries to get the relevant decals for this tile. /// - public bool TryGetDecals(Vector2i indices, List layers, int seed, MapGridComponent grid, + public bool TryGetDecals(Vector2i indices, List layers, int seed, Entity? grid, [NotNullWhen(true)] out List<(string ID, Vector2 Position)>? decals) { if (!TryGetBiomeTile(indices, layers, seed, grid, out var tileRef)) @@ -329,6 +364,16 @@ public abstract class SharedBiomeSystem : EntitySystem return false; } + /// + /// Tries to get the relevant decals for this tile. + /// + [Obsolete("Use the Entity? overload")] + public bool TryGetDecals(Vector2i indices, List layers, int seed, MapGridComponent grid, + [NotNullWhen(true)] out List<(string ID, Vector2 Position)>? decals) + { + return TryGetDecals(indices, layers, seed, grid == null ? null : (grid.Owner, grid), out decals); + } + private FastNoiseLite GetNoise(FastNoiseLite seedNoise, int seed) { var noiseCopy = new FastNoiseLite(); diff --git a/Content.Shared/Parallax/ParallaxComponent.cs b/Content.Shared/Parallax/ParallaxComponent.cs index 5df38eec4d..f5d44f9060 100644 --- a/Content.Shared/Parallax/ParallaxComponent.cs +++ b/Content.Shared/Parallax/ParallaxComponent.cs @@ -12,17 +12,4 @@ public sealed partial class ParallaxComponent : Component // I wish I could use a typeserializer here but parallax is extremely client-dependent. [DataField, AutoNetworkedField] public string Parallax = "Default"; - - [UsedImplicitly, ViewVariables(VVAccess.ReadWrite)] - // ReSharper disable once InconsistentNaming - public string ParallaxVV - { - get => Parallax; - set - { - if (value.Equals(Parallax)) return; - Parallax = value; - IoCManager.Resolve().Dirty(this); - } - } } diff --git a/Content.Shared/Physics/CollisionGroup.cs b/Content.Shared/Physics/CollisionGroup.cs index 9e3dbdde84..e0f9bce935 100644 --- a/Content.Shared/Physics/CollisionGroup.cs +++ b/Content.Shared/Physics/CollisionGroup.cs @@ -78,6 +78,8 @@ public enum CollisionGroup WallLayer = Opaque | Impassable | HighImpassable | MidImpassable | LowImpassable | BulletImpassable | InteractImpassable, GlassLayer = Impassable | HighImpassable | MidImpassable | LowImpassable | BulletImpassable | InteractImpassable, HalfWallLayer = MidImpassable | LowImpassable, + // Allows people to interact past and target players inside of this + SpecialWallLayer = Opaque | HighImpassable | MidImpassable | LowImpassable | BulletImpassable, // Statue, monument, airlock, window FullTileMask = Impassable | HighImpassable | MidImpassable | LowImpassable | InteractImpassable, diff --git a/Content.Shared/Power/EntitySystems/SharedPowerNetSystem.cs b/Content.Shared/Power/EntitySystems/SharedPowerNetSystem.cs index 28f74536c4..7611074d80 100644 --- a/Content.Shared/Power/EntitySystems/SharedPowerNetSystem.cs +++ b/Content.Shared/Power/EntitySystems/SharedPowerNetSystem.cs @@ -1,6 +1,21 @@ +using Content.Shared.Power.Components; + namespace Content.Shared.Power.EntitySystems; public abstract class SharedPowerNetSystem : EntitySystem { + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + public abstract bool IsPoweredCalculate(SharedApcPowerReceiverComponent comp); + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnPowerAppearance); + } + + private void OnPowerAppearance(Entity ent, ref PowerChangedEvent args) + { + _appearance.SetData(ent, PowerDeviceVisuals.Powered, args.Powered, ent.Comp); + } } diff --git a/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs b/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs index d86273974b..4a66a6ea97 100644 --- a/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs +++ b/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs @@ -4,13 +4,16 @@ using Content.Shared.Database; using Content.Shared.Power.Components; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; +using Robust.Shared.Network; namespace Content.Shared.Power.EntitySystems; public abstract class SharedPowerReceiverSystem : EntitySystem { + [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPowerNetSystem _net = default!; public abstract bool ResolveApc(EntityUid entity, [NotNullWhen(true)] ref SharedApcPowerReceiverComponent? component); @@ -44,6 +47,15 @@ public abstract class SharedPowerReceiverSystem : EntitySystem // it'll save a lot of confusion if 'always powered' means 'always powered' if (!receiver.NeedsPower) { + var powered = _net.IsPoweredCalculate(receiver); + + // Server won't raise it here as it can raise the load event later with NeedsPower? + // This is mostly here for clientside predictions. + if (receiver.Powered != powered) + { + RaisePower((uid, receiver)); + } + SetPowerDisabled(uid, false, receiver); return true; } @@ -59,6 +71,19 @@ public abstract class SharedPowerReceiverSystem : EntitySystem AudioParams.Default.WithVolume(-2f)); } + if (_netMan.IsClient && receiver.PowerDisabled) + { + var powered = _net.IsPoweredCalculate(receiver); + + // Server won't raise it here as it can raise the load event later with NeedsPower? + // This is mostly here for clientside predictions. + if (receiver.Powered != powered) + { + receiver.Powered = powered; + RaisePower((uid, receiver)); + } + } + return !receiver.PowerDisabled; // i.e. PowerEnabled } diff --git a/Content.Shared/PowerCell/SharedPowerCellSystem.cs b/Content.Shared/PowerCell/SharedPowerCellSystem.cs index f098f575c4..3398563e55 100644 --- a/Content.Shared/PowerCell/SharedPowerCellSystem.cs +++ b/Content.Shared/PowerCell/SharedPowerCellSystem.cs @@ -26,7 +26,7 @@ public abstract class SharedPowerCellSystem : EntitySystem private void OnMapInit(Entity ent, ref MapInitEvent args) { - QueueUpdate((ent, ent.Comp)); + ent.Comp.NextUpdateTime = Timing.CurTime + ent.Comp.Delay; } private void OnRejuvenate(EntityUid uid, PowerCellSlotComponent component, RejuvenateEvent args) @@ -71,20 +71,14 @@ public abstract class SharedPowerCellSystem : EntitySystem RaiseLocalEvent(uid, new PowerCellChangedEvent(true), false); } - /// - /// Makes the draw logic update in the next tick. - /// - public void QueueUpdate(Entity ent) - { - if (Resolve(ent, ref ent.Comp)) - ent.Comp.NextUpdateTime = Timing.CurTime; - } - public void SetDrawEnabled(Entity ent, bool enabled) { if (!Resolve(ent, ref ent.Comp, false) || ent.Comp.Enabled == enabled) return; + if (enabled) + ent.Comp.NextUpdateTime = Timing.CurTime; + ent.Comp.Enabled = enabled; Dirty(ent, ent.Comp); } diff --git a/Content.Shared/PowerCell/ToggleCellDrawSystem.cs b/Content.Shared/PowerCell/ToggleCellDrawSystem.cs index 070937b8b4..14d91d2f5f 100644 --- a/Content.Shared/PowerCell/ToggleCellDrawSystem.cs +++ b/Content.Shared/PowerCell/ToggleCellDrawSystem.cs @@ -38,7 +38,6 @@ public sealed class ToggleCellDrawSystem : EntitySystem { var uid = ent.Owner; var draw = Comp(uid); - _cell.QueueUpdate((uid, draw)); _cell.SetDrawEnabled((uid, draw), args.Activated); } diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index d5e99cf110..bcf7aaee65 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -31,9 +31,6 @@ namespace Content.Shared.Preferences private static readonly Regex RestrictedNameRegex = new("[^А-Яа-яA-Za-zёЁ0-9, ,\\-,'.]"); // Sunrise-edit private static readonly Regex ICNameCaseRegex = new(@"^(?\w)|\b(?\w)(?=\w*$)"); - public const int MaxNameLength = 32; - public const int MaxLoadoutNameLength = 32; - /// /// Job preferences for initial spawn. /// @@ -557,13 +554,14 @@ namespace Content.Shared.Preferences var bodyType = speciesPrototype.BodyTypes.Contains(BodyType) ? BodyType : speciesPrototype.BodyTypes.First(); string name; + var maxNameLength = configManager.GetCVar(CCVars.MaxNameLength); if (string.IsNullOrEmpty(Name)) { name = GetName(Species, gender); } - else if (Name.Length > MaxNameLength) + else if (Name.Length > maxNameLength) { - name = Name[..MaxNameLength]; + name = Name[..maxNameLength]; } else { diff --git a/Content.Shared/Preferences/Loadouts/RoleLoadout.cs b/Content.Shared/Preferences/Loadouts/RoleLoadout.cs index a44c2107ef..63c92f1a97 100644 --- a/Content.Shared/Preferences/Loadouts/RoleLoadout.cs +++ b/Content.Shared/Preferences/Loadouts/RoleLoadout.cs @@ -1,10 +1,12 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; +using Content.Shared.CCVar; using Content.Shared.Humanoid.Prototypes; using Content.Shared.Random; using Content.Sunrise.Interfaces.Shared; using Robust.Shared.Collections; using Robust.Shared.Network; +using Robust.Shared.Configuration; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; @@ -62,6 +64,7 @@ public sealed partial class RoleLoadout : IEquatable { var groupRemove = new ValueList(); var protoManager = collection.Resolve(); + var configManager = collection.Resolve(); if (!protoManager.TryIndex(Role, out var roleProto)) { @@ -81,10 +84,11 @@ public sealed partial class RoleLoadout : IEquatable if (EntityName != null) { var name = EntityName.Trim(); + var maxNameLength = configManager.GetCVar(CCVars.MaxNameLength); - if (name.Length > HumanoidCharacterProfile.MaxNameLength) + if (name.Length > maxNameLength) { - EntityName = name[..HumanoidCharacterProfile.MaxNameLength]; + EntityName = name[..maxNameLength]; } if (name.Length == 0) diff --git a/Content.Shared/Preferences/MsgUpdateConstructionFavorites.cs b/Content.Shared/Preferences/MsgUpdateConstructionFavorites.cs new file mode 100644 index 0000000000..09b31585c8 --- /dev/null +++ b/Content.Shared/Preferences/MsgUpdateConstructionFavorites.cs @@ -0,0 +1,36 @@ +using Content.Shared.Construction.Prototypes; +using Lidgren.Network; +using Robust.Shared.Network; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Preferences; + +/// +/// The client sends this to update their construction favorites. +/// +public sealed class MsgUpdateConstructionFavorites : NetMessage +{ + public override MsgGroups MsgGroup => MsgGroups.Command; + + public List> Favorites = []; + + public override void ReadFromBuffer(NetIncomingMessage buffer, IRobustSerializer serializer) + { + var length = buffer.ReadVariableInt32(); + Favorites.Clear(); + for (var i = 0; i < length; i++) + { + Favorites.Add(new ProtoId(buffer.ReadString())); + } + } + + public override void WriteToBuffer(NetOutgoingMessage buffer, IRobustSerializer serializer) + { + buffer.WriteVariableInt32(Favorites.Count); + foreach (var favorite in Favorites) + { + buffer.Write(favorite); + } + } +} diff --git a/Content.Shared/Preferences/PlayerPreferences.cs b/Content.Shared/Preferences/PlayerPreferences.cs index 4368dd3f2e..dcfc9c43bb 100644 --- a/Content.Shared/Preferences/PlayerPreferences.cs +++ b/Content.Shared/Preferences/PlayerPreferences.cs @@ -1,3 +1,5 @@ +using Content.Shared.Construction.Prototypes; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Utility; @@ -13,11 +15,12 @@ namespace Content.Shared.Preferences { private Dictionary _characters; - public PlayerPreferences(IEnumerable> characters, int selectedCharacterIndex, Color adminOOCColor) + public PlayerPreferences(IEnumerable> characters, int selectedCharacterIndex, Color adminOOCColor, List> constructionFavorites) { _characters = new Dictionary(characters); SelectedCharacterIndex = selectedCharacterIndex; AdminOOCColor = adminOOCColor; + ConstructionFavorites = constructionFavorites; } /// @@ -49,6 +52,11 @@ namespace Content.Shared.Preferences public Color AdminOOCColor { get; set; } + /// + /// List of favorite items in the construction menu. + /// + public List> ConstructionFavorites { get; set; } = []; + public int IndexOfCharacter(ICharacterProfile profile) { return _characters.FirstOrNull(p => p.Value == profile)?.Key ?? -1; diff --git a/Content.Shared/Procedural/DungeonConfig.cs b/Content.Shared/Procedural/DungeonConfig.cs index 2c2adc1803..7c84b1a6a3 100644 --- a/Content.Shared/Procedural/DungeonConfig.cs +++ b/Content.Shared/Procedural/DungeonConfig.cs @@ -5,12 +5,6 @@ namespace Content.Shared.Procedural; [Virtual, DataDefinition] public partial class DungeonConfig { - /// - /// - /// - [DataField] - public DungeonData Data = DungeonData.Empty; - /// /// The secret sauce, procedural generation layers that get run. /// diff --git a/Content.Shared/Procedural/DungeonData.cs b/Content.Shared/Procedural/DungeonData.cs deleted file mode 100644 index f15d974555..0000000000 --- a/Content.Shared/Procedural/DungeonData.cs +++ /dev/null @@ -1,105 +0,0 @@ -using System.Linq; -using Content.Shared.Maps; -using Content.Shared.Storage; -using Content.Shared.Whitelist; -using Robust.Shared.Prototypes; -using Robust.Shared.Utility; - -namespace Content.Shared.Procedural; - -/// -/// Used to set dungeon values for all layers. -/// -/// -/// This lets us share data between different dungeon configs without having to repeat entire configs. -/// -[DataRecord] -public sealed partial class DungeonData -{ - // I hate this but it also significantly reduces yaml bloat if we add like 10 variations on the same set of layers - // e.g. science rooms, engi rooms, cargo rooms all under PlanetBase for example. - // without having to do weird nesting. It also means we don't need to copy-paste the same prototype across several layers - // The alternative is doing like, - // 2 layer prototype, 1 layer with the specified data, 3 layer prototype, 2 layers with specified data, etc. - // As long as we just keep the code clean over time it won't be bad to maintain. - - public static DungeonData Empty = new(); - - public Dictionary Colors = new(); - public Dictionary Entities = new(); - public Dictionary> SpawnGroups = new(); - public Dictionary> Tiles = new(); - public Dictionary Whitelists = new(); - - /// - /// Applies the specified data to this data. - /// - public void Apply(DungeonData data) - { - // Copy-paste moment. - foreach (var color in data.Colors) - { - Colors[color.Key] = color.Value; - } - - foreach (var color in data.Entities) - { - Entities[color.Key] = color.Value; - } - - foreach (var color in data.SpawnGroups) - { - SpawnGroups[color.Key] = color.Value; - } - - foreach (var color in data.Tiles) - { - Tiles[color.Key] = color.Value; - } - - foreach (var color in data.Whitelists) - { - Whitelists[color.Key] = color.Value; - } - } - - public DungeonData Clone() - { - return new DungeonData - { - // Only shallow clones but won't matter for DungeonJob purposes. - Colors = Colors.ShallowClone(), - Entities = Entities.ShallowClone(), - SpawnGroups = SpawnGroups.ShallowClone(), - Tiles = Tiles.ShallowClone(), - Whitelists = Whitelists.ShallowClone(), - }; - } -} - -public enum DungeonDataKey : byte -{ - // Colors - Decals, - - // Entities - Cabling, - CornerWalls, - Fill, - Junction, - Walls, - - // SpawnGroups - CornerClutter, - Entrance, - EntranceFlank, - WallMounts, - Window, - - // Tiles - FallbackTile, - WidenTile, - - // Whitelists - Rooms, -} diff --git a/Content.Shared/Procedural/DungeonGenerators/PrefabDunGen.cs b/Content.Shared/Procedural/DungeonGenerators/PrefabDunGen.cs index aeb24d0144..a9a6d12de4 100644 --- a/Content.Shared/Procedural/DungeonGenerators/PrefabDunGen.cs +++ b/Content.Shared/Procedural/DungeonGenerators/PrefabDunGen.cs @@ -1,3 +1,5 @@ +using Content.Shared.Maps; +using Content.Shared.Whitelist; using Robust.Shared.Prototypes; namespace Content.Shared.Procedural.DungeonGenerators; @@ -6,10 +8,6 @@ namespace Content.Shared.Procedural.DungeonGenerators; /// Places rooms in pre-selected pack layouts. Chooses rooms from the specified whitelist. /// /// -/// DungeonData keys are: -/// - FallbackTile -/// - Rooms -/// public sealed partial class PrefabDunGen : IDunGenLayer { /// @@ -17,4 +15,10 @@ public sealed partial class PrefabDunGen : IDunGenLayer /// [DataField(required: true)] public List> Presets = new(); + + [DataField] + public EntityWhitelist? RoomWhitelist; + + [DataField] + public ProtoId? FallbackTile; } diff --git a/Content.Shared/Procedural/DungeonGenerators/PrototypeDunGen.cs b/Content.Shared/Procedural/DungeonGenerators/PrototypeDunGen.cs index 2772c97977..89a4ab216a 100644 --- a/Content.Shared/Procedural/DungeonGenerators/PrototypeDunGen.cs +++ b/Content.Shared/Procedural/DungeonGenerators/PrototypeDunGen.cs @@ -8,6 +8,30 @@ namespace Content.Shared.Procedural.DungeonGenerators; /// public sealed partial class PrototypeDunGen : IDunGenLayer { + /// + /// Should we pass in the current level's dungeons to the prototype. + /// + [DataField] + public DungeonInheritance InheritDungeons = DungeonInheritance.None; + [DataField(required: true)] public ProtoId Proto; } + +public enum DungeonInheritance : byte +{ + /// + /// Don't inherit any of the current layer's dungeons for this + /// + None, + + /// + /// Inherit only the last dungeon ran. + /// + Last, + + /// + /// Inherit all of the current layer's dungeons. + /// + All, +} diff --git a/Content.Shared/Procedural/DungeonLayers/EntityTableDunGen.cs b/Content.Shared/Procedural/DungeonLayers/EntityTableDunGen.cs index 71e9bae0cc..9f19909569 100644 --- a/Content.Shared/Procedural/DungeonLayers/EntityTableDunGen.cs +++ b/Content.Shared/Procedural/DungeonLayers/EntityTableDunGen.cs @@ -18,4 +18,10 @@ public sealed partial class EntityTableDunGen : IDunGenLayer [DataField(required: true)] public EntityTableSelector Table; + + /// + /// Should the count be per dungeon or across all dungeons. + /// + [DataField] + public bool PerDungeon; } diff --git a/Content.Shared/Procedural/DungeonGenerators/FillGridDunGen.cs b/Content.Shared/Procedural/DungeonLayers/FillGridDunGen.cs similarity index 79% rename from Content.Shared/Procedural/DungeonGenerators/FillGridDunGen.cs rename to Content.Shared/Procedural/DungeonLayers/FillGridDunGen.cs index 53c7dd8c66..363de0a511 100644 --- a/Content.Shared/Procedural/DungeonGenerators/FillGridDunGen.cs +++ b/Content.Shared/Procedural/DungeonLayers/FillGridDunGen.cs @@ -1,7 +1,7 @@ using Content.Shared.Maps; using Robust.Shared.Prototypes; -namespace Content.Shared.Procedural.DungeonGenerators; +namespace Content.Shared.Procedural.DungeonLayers; /// /// Fills unreserved tiles with the specified entity prototype. @@ -17,4 +17,7 @@ public sealed partial class FillGridDunGen : IDunGenLayer /// [DataField] public HashSet>? AllowedTiles; + + [DataField(required: true)] + public EntProtoId Entity; } diff --git a/Content.Shared/Procedural/DungeonLayers/MobsDunGen.cs b/Content.Shared/Procedural/DungeonLayers/MobsDunGen.cs index 30b502efe0..5525341eb9 100644 --- a/Content.Shared/Procedural/DungeonLayers/MobsDunGen.cs +++ b/Content.Shared/Procedural/DungeonLayers/MobsDunGen.cs @@ -1,4 +1,6 @@ +using Content.Shared.EntityTable; using Content.Shared.Storage; +using Robust.Shared.Prototypes; namespace Content.Shared.Procedural.DungeonLayers; @@ -17,5 +19,5 @@ public sealed partial class MobsDunGen : IDunGenLayer public int MaxCount = 1; [DataField(required: true)] - public List Groups = new(); + public ProtoId Contents; } diff --git a/Content.Shared/Procedural/Loot/BiomeTemplateLoot.cs b/Content.Shared/Procedural/Loot/BiomeTemplateLoot.cs index 1947779768..e4968b6e42 100644 --- a/Content.Shared/Procedural/Loot/BiomeTemplateLoot.cs +++ b/Content.Shared/Procedural/Loot/BiomeTemplateLoot.cs @@ -1,4 +1,5 @@ using Content.Shared.Parallax.Biomes; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Procedural.Loot; @@ -8,6 +9,6 @@ namespace Content.Shared.Procedural.Loot; /// public sealed partial class BiomeTemplateLoot : IDungeonLoot { - [DataField("proto", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] - public string Prototype = string.Empty; + [DataField("proto", required: true)] + public ProtoId Prototype = string.Empty; } diff --git a/Content.Shared/Procedural/PostGeneration/AutoCablingDunGen.cs b/Content.Shared/Procedural/PostGeneration/AutoCablingDunGen.cs index 5afad7edb1..f6588aee41 100644 --- a/Content.Shared/Procedural/PostGeneration/AutoCablingDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/AutoCablingDunGen.cs @@ -1,10 +1,12 @@ +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; /// /// Runs cables throughout the dungeon. /// -/// -/// DungeonData keys are: -/// - Cabling -/// -public sealed partial class AutoCablingDunGen : IDunGenLayer; +public sealed partial class AutoCablingDunGen : IDunGenLayer +{ + [DataField(required: true)] + public EntProtoId Entity; +} diff --git a/Content.Shared/Procedural/PostGeneration/BoundaryWallDunGen.cs b/Content.Shared/Procedural/PostGeneration/BoundaryWallDunGen.cs index 4151527f8a..19e9d67343 100644 --- a/Content.Shared/Procedural/PostGeneration/BoundaryWallDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/BoundaryWallDunGen.cs @@ -1,3 +1,6 @@ +using Content.Shared.Maps; +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; /// @@ -13,6 +16,15 @@ public sealed partial class BoundaryWallDunGen : IDunGenLayer { [DataField] public BoundaryWallFlags Flags = BoundaryWallFlags.Corridors | BoundaryWallFlags.Rooms; + + [DataField(required: true)] + public EntProtoId Wall; + + [DataField] + public EntProtoId? CornerWall; + + [DataField(required: true)] + public ProtoId Tile; } [Flags] diff --git a/Content.Shared/Procedural/PostGeneration/CornerClutterDunGen.cs b/Content.Shared/Procedural/PostGeneration/CornerClutterDunGen.cs index 2a904281c8..dc048cfb55 100644 --- a/Content.Shared/Procedural/PostGeneration/CornerClutterDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/CornerClutterDunGen.cs @@ -1,14 +1,17 @@ +using Content.Shared.EntityTable; +using Content.Shared.Storage; +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; /// /// Spawns entities inside corners. /// -/// -/// Dungeon data keys are: -/// - CornerClutter -/// public sealed partial class CornerClutterDunGen : IDunGenLayer { [DataField] public float Chance = 0.50f; + + [DataField(required:true)] + public ProtoId Contents = new(); } diff --git a/Content.Shared/Procedural/PostGeneration/CorridorClutterDunGen.cs b/Content.Shared/Procedural/PostGeneration/CorridorClutterDunGen.cs index 5b397b40df..8e3d092d1b 100644 --- a/Content.Shared/Procedural/PostGeneration/CorridorClutterDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/CorridorClutterDunGen.cs @@ -1,4 +1,6 @@ +using Content.Shared.EntityTable; using Content.Shared.Storage; +using Robust.Shared.Prototypes; namespace Content.Shared.Procedural.PostGeneration; @@ -14,5 +16,5 @@ public sealed partial class CorridorClutterDunGen : IDunGenLayer /// The default starting bulbs /// [DataField(required: true)] - public List Contents = new(); + public ProtoId Contents; } diff --git a/Content.Shared/Procedural/PostGeneration/CorridorDecalSkirtingDunGen.cs b/Content.Shared/Procedural/PostGeneration/CorridorDecalSkirtingDunGen.cs index e609043655..fac9dc97da 100644 --- a/Content.Shared/Procedural/PostGeneration/CorridorDecalSkirtingDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/CorridorDecalSkirtingDunGen.cs @@ -1,7 +1,3 @@ -using Content.Shared.Decals; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; - namespace Content.Shared.Procedural.PostGeneration; /// @@ -26,4 +22,10 @@ public sealed partial class CorridorDecalSkirtingDunGen : IDunGenLayer /// [DataField] public Dictionary CornerDecals = new(); + + /// + /// Optional color to apply to the decals. + /// + [DataField] + public Color? Color; } diff --git a/Content.Shared/Procedural/PostGeneration/CorridorDunGen.cs b/Content.Shared/Procedural/PostGeneration/CorridorDunGen.cs index 6d75cd9cb2..b36c6f9b64 100644 --- a/Content.Shared/Procedural/PostGeneration/CorridorDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/CorridorDunGen.cs @@ -1,12 +1,11 @@ +using Content.Shared.Maps; +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; /// /// Connects room entrances via corridor segments. /// -/// -/// Dungeon data keys are: -/// - FallbackTile -/// public sealed partial class CorridorDunGen : IDunGenLayer { /// @@ -23,4 +22,7 @@ public sealed partial class CorridorDunGen : IDunGenLayer /// [DataField] public float Width = 3f; + + [DataField(required: true)] + public ProtoId Tile; } diff --git a/Content.Shared/Procedural/PostGeneration/DungeonEntranceDunGen.cs b/Content.Shared/Procedural/PostGeneration/DungeonEntranceDunGen.cs index 40cc95f5fc..406054cfdc 100644 --- a/Content.Shared/Procedural/PostGeneration/DungeonEntranceDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/DungeonEntranceDunGen.cs @@ -1,13 +1,13 @@ +using Content.Shared.EntityTable; +using Content.Shared.Maps; +using Content.Shared.Storage; +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; /// /// Selects [count] rooms and places external doors to them. /// -/// -/// Dungeon data keys are: -/// - Entrance -/// - FallbackTile -/// public sealed partial class DungeonEntranceDunGen : IDunGenLayer { /// @@ -15,4 +15,10 @@ public sealed partial class DungeonEntranceDunGen : IDunGenLayer /// [DataField] public int Count = 1; + + [DataField(required: true)] + public ProtoId Tile; + + [DataField(required: true)] + public ProtoId Contents; } diff --git a/Content.Shared/Procedural/PostGeneration/EntranceFlankDunGen.cs b/Content.Shared/Procedural/PostGeneration/EntranceFlankDunGen.cs index 27baa48ec6..f9be6caf6a 100644 --- a/Content.Shared/Procedural/PostGeneration/EntranceFlankDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/EntranceFlankDunGen.cs @@ -1,11 +1,17 @@ +using Content.Shared.EntityTable; +using Content.Shared.Maps; +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; /// /// Spawns entities on either side of an entrance. /// -/// -/// Dungeon data keys are: -/// - FallbackTile -/// - -/// -public sealed partial class EntranceFlankDunGen : IDunGenLayer; +public sealed partial class EntranceFlankDunGen : IDunGenLayer +{ + [DataField(required: true)] + public ProtoId Tile; + + [DataField(required: true)] + public ProtoId Contents = new(); +} diff --git a/Content.Shared/Procedural/PostGeneration/ExternalWindowDunGen.cs b/Content.Shared/Procedural/PostGeneration/ExternalWindowDunGen.cs index 0b29344b90..fc992ea7b8 100644 --- a/Content.Shared/Procedural/PostGeneration/ExternalWindowDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/ExternalWindowDunGen.cs @@ -1,11 +1,18 @@ +using Content.Shared.EntityTable; +using Content.Shared.Maps; +using Content.Shared.Storage; +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; /// /// If external areas are found will try to generate windows. /// -/// -/// Dungeon data keys are: -/// - EntranceFlank -/// - FallbackTile -/// -public sealed partial class ExternalWindowDunGen : IDunGenLayer; +public sealed partial class ExternalWindowDunGen : IDunGenLayer +{ + [DataField(required: true)] + public ProtoId Tile; + + [DataField(required: true)] + public ProtoId Contents; +} diff --git a/Content.Shared/Procedural/PostGeneration/InternalWindowDunGen.cs b/Content.Shared/Procedural/PostGeneration/InternalWindowDunGen.cs index 11b1c6a785..22a4839ce2 100644 --- a/Content.Shared/Procedural/PostGeneration/InternalWindowDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/InternalWindowDunGen.cs @@ -1,11 +1,17 @@ +using Content.Shared.EntityTable; +using Content.Shared.Maps; +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; /// /// If internal areas are found will try to generate windows. /// -/// -/// Dungeon data keys are: -/// - FallbackTile -/// - Window -/// -public sealed partial class InternalWindowDunGen : IDunGenLayer; +public sealed partial class InternalWindowDunGen : IDunGenLayer +{ + [DataField(required: true)] + public ProtoId Tile; + + [DataField(required: true)] + public ProtoId Contents; +} diff --git a/Content.Shared/Procedural/PostGeneration/JunctionDunGen.cs b/Content.Shared/Procedural/PostGeneration/JunctionDunGen.cs index 899f271621..f18f63ddfe 100644 --- a/Content.Shared/Procedural/PostGeneration/JunctionDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/JunctionDunGen.cs @@ -1,13 +1,13 @@ +using Content.Shared.EntityTable; +using Content.Shared.Maps; +using Content.Shared.Storage; +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; /// /// Places the specified entities at junction areas. /// -/// -/// Dungeon data keys are: -/// - Entrance -/// - FallbackTile -/// public sealed partial class JunctionDunGen : IDunGenLayer { /// @@ -15,4 +15,10 @@ public sealed partial class JunctionDunGen : IDunGenLayer /// [DataField] public int Width = 3; + + [DataField(required: true)] + public ProtoId Tile; + + [DataField(required: true)] + public ProtoId Contents; } diff --git a/Content.Shared/Procedural/PostGeneration/MiddleConnectionDunGen.cs b/Content.Shared/Procedural/PostGeneration/MiddleConnectionDunGen.cs index a5758c1498..a1040fef9b 100644 --- a/Content.Shared/Procedural/PostGeneration/MiddleConnectionDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/MiddleConnectionDunGen.cs @@ -1,3 +1,8 @@ +using Content.Shared.EntityTable; +using Content.Shared.Maps; +using Content.Shared.Storage; +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; /// @@ -16,4 +21,13 @@ public sealed partial class MiddleConnectionDunGen : IDunGenLayer /// [DataField] public int Count = 1; + + [DataField(required: true)] + public ProtoId Tile; + + [DataField(required: true)] + public ProtoId Contents; + + [DataField] + public ProtoId? Flank; } diff --git a/Content.Shared/Procedural/PostGeneration/RoomEntranceDunGen.cs b/Content.Shared/Procedural/PostGeneration/RoomEntranceDunGen.cs index d3b5672dcb..1436f7473d 100644 --- a/Content.Shared/Procedural/PostGeneration/RoomEntranceDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/RoomEntranceDunGen.cs @@ -1,11 +1,18 @@ +using Content.Shared.EntityTable; +using Content.Shared.Maps; +using Content.Shared.Storage; +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; /// /// Places tiles / entities onto room entrances. /// -/// -/// DungeonData keys are: -/// - Entrance -/// - FallbackTile -/// -public sealed partial class RoomEntranceDunGen : IDunGenLayer; +public sealed partial class RoomEntranceDunGen : IDunGenLayer +{ + [DataField(required: true)] + public ProtoId Tile; + + [DataField] + public ProtoId Contents; +} diff --git a/Content.Shared/Procedural/PostGeneration/SplineDungeonConnectorDunGen.cs b/Content.Shared/Procedural/PostGeneration/SplineDungeonConnectorDunGen.cs index ec8349c671..d2f5a2126a 100644 --- a/Content.Shared/Procedural/PostGeneration/SplineDungeonConnectorDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/SplineDungeonConnectorDunGen.cs @@ -1,3 +1,6 @@ +using Content.Shared.Maps; +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; /// @@ -5,6 +8,12 @@ namespace Content.Shared.Procedural.PostGeneration; /// public sealed partial class SplineDungeonConnectorDunGen : IDunGenLayer { + [DataField(required: true)] + public ProtoId Tile; + + [DataField] + public ProtoId? WidenTile; + /// /// Will divide the distance between the start and end points so that no subdivision is more than these metres away. /// diff --git a/Content.Shared/Procedural/PostGeneration/WallMountDunGen.cs b/Content.Shared/Procedural/PostGeneration/WallMountDunGen.cs index a5c790cb22..2a47146ca6 100644 --- a/Content.Shared/Procedural/PostGeneration/WallMountDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/WallMountDunGen.cs @@ -1,3 +1,8 @@ +using Content.Shared.EntityTable; +using Content.Shared.Maps; +using Content.Shared.Storage; +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; /// @@ -10,4 +15,10 @@ public sealed partial class WallMountDunGen : IDunGenLayer /// [DataField] public double Prob = 0.1; + + [DataField(required: true)] + public ProtoId Tile; + + [DataField(required: true)] + public ProtoId Contents; } diff --git a/Content.Shared/Procedural/PostGeneration/WormCorridorDunGen.cs b/Content.Shared/Procedural/PostGeneration/WormCorridorDunGen.cs index b71e845a73..a587d03a7c 100644 --- a/Content.Shared/Procedural/PostGeneration/WormCorridorDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/WormCorridorDunGen.cs @@ -1,3 +1,6 @@ +using Content.Shared.Maps; +using Robust.Shared.Prototypes; + namespace Content.Shared.Procedural.PostGeneration; // Ime a worm @@ -32,4 +35,7 @@ public sealed partial class WormCorridorDunGen : IDunGenLayer /// [DataField] public float Width = 3f; + + [DataField(required: true)] + public ProtoId Tile; } diff --git a/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs b/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs index 7e2bb4dfe6..8f8d37a27d 100644 --- a/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs +++ b/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs @@ -1,43 +1,51 @@ -using Content.Shared.FixedPoint; -using Content.Shared.ProximityDetection.Systems; -using Content.Shared.Whitelist; +using Content.Shared.ProximityDetection.Systems; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.ProximityDetection.Components; + /// -/// This is used to search for the closest entity with a range that matches specified requirements (tags and/or components) +/// Used to search for the closest entity with a range that matches specified requirements (tags and/or components). /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState ,Access(typeof(ProximityDetectionSystem))] +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState(fieldDeltas: true), AutoGenerateComponentPause] +[Access(typeof(ProximityDetectionSystem))] public sealed partial class ProximityDetectorComponent : Component { /// - /// The criteria used to filter entities - /// Note: RequireAll is only supported for tags, all components are required to count as a match! + /// Entities that detector will search for. /// - [DataField( required: true), AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] - public EntityWhitelist Criteria = new(); + [DataField(required: true)] + public ComponentRegistry Components; /// - /// Found Entity + /// The entity that was found. /// - [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public EntityUid? TargetEnt; + [ViewVariables, AutoNetworkedField] + public EntityUid? Target; /// - /// Distance to Found Entity + /// The distance to . /// - [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public FixedPoint2 Distance = -1; + [ViewVariables, AutoNetworkedField] + public float Distance = float.PositiveInfinity; /// - /// The farthest distance to search for targets + /// The farthest distance to search for targets. /// - [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public FixedPoint2 Range = 10f; + [DataField, AutoNetworkedField] + public float Range = 10f; - // TODO: use timespans not this - public float AccumulatedFrameTime; + /// + /// How often detector updates. + /// + [DataField, AutoNetworkedField] + public TimeSpan UpdateCooldown = TimeSpan.FromSeconds(1); - [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float UpdateRate = 0.3f; + /// + /// Next time detector updates. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoNetworkedField, AutoPausedField] + public TimeSpan NextUpdate = TimeSpan.Zero; } diff --git a/Content.Shared/ProximityDetection/ProximityDetectionEvents.cs b/Content.Shared/ProximityDetection/ProximityDetectionEvents.cs index 0a0ac554bd..1c235f6ce4 100644 --- a/Content.Shared/ProximityDetection/ProximityDetectionEvents.cs +++ b/Content.Shared/ProximityDetection/ProximityDetectionEvents.cs @@ -1,17 +1,27 @@ -using Content.Shared.FixedPoint; -using Content.Shared.ProximityDetection.Components; -using Robust.Shared.Serialization; +using Content.Shared.ProximityDetection.Components; namespace Content.Shared.ProximityDetection; +/// +/// Raised to determine if proximity sensor can detect an entity. +/// [ByRefEvent] -public record struct ProximityDetectionAttemptEvent(bool Cancel, FixedPoint2 Distance, Entity Detector); +public struct ProximityDetectionAttemptEvent(float distance, Entity detector, EntityUid target) +{ + public bool Cancelled; + public readonly float Distance = distance; + public readonly Entity Detector = detector; + public readonly EntityUid Target = target; +} +/// +/// Raised when distance from proximity sensor to the target was updated. +/// [ByRefEvent] -public record struct ProximityTargetUpdatedEvent(ProximityDetectorComponent Detector, EntityUid? Target, FixedPoint2 Distance); +public readonly record struct ProximityTargetUpdatedEvent(float Distance, Entity Detector, EntityUid? Target = null); +/// +/// Raised when proximity sensor got new target. +/// [ByRefEvent] -public record struct NewProximityTargetEvent(ProximityDetectorComponent Detector, EntityUid? Target); - - - +public readonly record struct NewProximityTargetEvent(float Distance, Entity Detector, EntityUid? Target = null); diff --git a/Content.Shared/ProximityDetection/Systems/ProximityDetectionSystem.cs b/Content.Shared/ProximityDetection/Systems/ProximityDetectionSystem.cs index df302f9477..a00ec1d0c6 100644 --- a/Content.Shared/ProximityDetection/Systems/ProximityDetectionSystem.cs +++ b/Content.Shared/ProximityDetection/Systems/ProximityDetectionSystem.cs @@ -1,219 +1,139 @@ using Content.Shared.Item.ItemToggle; -using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.ProximityDetection.Components; -using Content.Shared.Tag; -using Robust.Shared.Network; +using Robust.Shared.Timing; namespace Content.Shared.ProximityDetection.Systems; - -//This handles generic proximity detector logic +/// +/// Handles generic proximity detector logic. +/// public sealed class ProximityDetectionSystem : EntitySystem { - [Dependency] private readonly EntityLookupSystem _entityLookup = default!; + [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly ItemToggleSystem _toggle = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; - [Dependency] private readonly INetManager _net = default!; - //update is only run on the server + private EntityQuery _xformQuery; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnCompInit); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnToggled); + + _xformQuery = GetEntityQuery(); } - private void OnCompInit(EntityUid uid, ProximityDetectorComponent component, ComponentInit args) + private void OnMapInit(Entity ent, ref MapInitEvent args) { - if (component.Criteria.RequireAll) - return; - Log.Debug("DetectorComponent only supports requireAll = false for tags. All components are required for a match!"); - } + var component = ent.Comp; - public override void Update(float frameTime) - { - if (_net.IsClient) - return; - - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var owner, out var detector)) - { - if (!_toggle.IsActivated(owner)) - continue; - - detector.AccumulatedFrameTime += frameTime; - if (detector.AccumulatedFrameTime < detector.UpdateRate) - continue; - - detector.AccumulatedFrameTime -= detector.UpdateRate; - RunUpdate_Internal(owner, detector); - } + component.NextUpdate = _timing.CurTime + component.UpdateCooldown; + DirtyField(ent, component, nameof(ProximityDetectorComponent.NextUpdate)); } private void OnToggled(Entity ent, ref ItemToggledEvent args) { if (args.Activated) - { - RunUpdate_Internal(ent, ent.Comp); - return; - } - - var noDetectEvent = new ProximityTargetUpdatedEvent(ent.Comp, Target: null, ent.Comp.Distance); - RaiseLocalEvent(ent, ref noDetectEvent); - - ent.Comp.AccumulatedFrameTime = 0; - Dirty(ent, ent.Comp); + UpdateTarget(ent); + else + ClearTarget(ent); } - public void ForceUpdate(EntityUid owner, ProximityDetectorComponent? detector = null) + public override void Update(float frameTime) { - if (!Resolve(owner, ref detector)) - return; - RunUpdate_Internal(owner, detector); + var query = EntityQueryEnumerator(); + + while (query.MoveNext(out var uid, out var component)) + { + if (component.NextUpdate > _timing.CurTime) + continue; + + component.NextUpdate += component.UpdateCooldown; + DirtyField(uid, component, nameof(ProximityDetectorComponent.NextUpdate)); + + if (!_toggle.IsActivated(uid)) + continue; + + UpdateTarget((uid, component)); + } } private void ClearTarget(Entity ent) { - var (uid, comp) = ent; - if (comp.TargetEnt == null) + var component = ent.Comp; + + // Don't do anything if we have no target. + if (component.Target == null) return; - comp.Distance = -1; - comp.TargetEnt = null; - var noDetectEvent = new ProximityTargetUpdatedEvent(comp, null, -1); - RaiseLocalEvent(uid, ref noDetectEvent); - var newTargetEvent = new NewProximityTargetEvent(comp, null); - RaiseLocalEvent(uid, ref newTargetEvent); - Dirty(uid, comp); + component.Distance = float.PositiveInfinity; + DirtyField(ent, component, nameof(ProximityDetectorComponent.Distance)); + + component.Target = null; + DirtyField(ent, component, nameof(ProximityDetectorComponent.Target)); + + var updatedEv = new ProximityTargetUpdatedEvent(component.Distance, ent); + RaiseLocalEvent(ent, ref updatedEv); + + var newTargetEv = new NewProximityTargetEvent(component.Distance, ent); + RaiseLocalEvent(ent, ref newTargetEv); } - private void RunUpdate_Internal(EntityUid owner,ProximityDetectorComponent detector) + private void UpdateTarget(Entity detector) { - if (!_net.IsServer) //only run detection checks on the server! + var component = detector.Comp; + + if (!_xformQuery.TryGetComponent(detector, out var transform)) return; - if (Deleted(detector.TargetEnt)) + if (Deleted(component.Target)) + ClearTarget(detector); + + var closestDistance = float.PositiveInfinity; + EntityUid? closestUid = null; + + var query = EntityManager.CompRegistryQueryEnumerator(component.Components); + + while (query.MoveNext(out var uid)) { - ClearTarget((owner, detector)); - } - - var xformQuery = GetEntityQuery(); - var xform = xformQuery.GetComponent(owner); - List<(EntityUid TargetEnt, float Distance)> detections = new(); - - if (detector.Criteria.Components == null) - { - Log.Error($"ProximityDetectorComponent on {ToPrettyString(owner)} must use at least 1 component as a filter in criteria!"); - throw new ArgumentException($"ProximityDetectorComponent on {ToPrettyString(owner)} must use at least 1 component as a filter in criteria!"); - } - var firstCompType = EntityManager.ComponentFactory.GetRegistration(detector.Criteria.Components[0]).Type; - var foundEnts = _entityLookup.GetEntitiesInRange(firstCompType,_transform.GetMapCoordinates(owner, xform), detector.Range.Float()); - - var tagSearchEnabled = detector.Criteria.Tags is {Count: > 0}; - - CheckForAllComponentsPresent(detector, ref foundEnts, tagSearchEnabled); - - if (foundEnts.Count == 0) - { - UpdateTargetFromClosest(owner, detector, detections); - return; - } - - foreach (var ent in foundEnts) - { - if (tagSearchEnabled && ent.Comp is TagComponent tags && (detector.Criteria.RequireAll - ? _tagSystem.HasAllTags(tags, detector.Criteria.Tags!) - : _tagSystem.HasAnyTag(tags, detector.Criteria.Tags!))) + if (!_xformQuery.TryGetComponent(uid, out var xForm)) continue; - var distance = (_transform.GetWorldPosition(xform, xformQuery) - _transform.GetWorldPosition(ent, xformQuery)).Length(); - if (CheckDetectConditions(ent, distance, owner, detector)) - { - detections.Add((ent, distance)); - } - } - UpdateTargetFromClosest(owner, detector, detections); - } - private void CheckForAllComponentsPresent(ProximityDetectorComponent detector, ref HashSet> foundEnts, bool tagSearchEnabled) - { - var validEnts = new HashSet>(foundEnts.Count); - for (var i = 1; i < detector.Criteria.Components!.Length; i++) - { - validEnts.Clear(); - var compType = EntityManager.ComponentFactory.GetRegistration(detector.Criteria.Components[i]).Type; - foreach (var ent in foundEnts) - { - if (!HasComp(ent, compType)) - continue; - validEnts.Add(ent); - } - (foundEnts, validEnts) = (validEnts, foundEnts); - } - validEnts.Clear(); - if (tagSearchEnabled) - { - foreach (var ent in foundEnts) - { - if (!HasComp(ent)) - continue; - validEnts.Add(ent); - } - (foundEnts, validEnts) = (validEnts, foundEnts); - validEnts.Clear(); - } - } - - - private bool CheckDetectConditions(EntityUid targetEntity, float dist, EntityUid owner, ProximityDetectorComponent detector) - { - var detectAttempt = new ProximityDetectionAttemptEvent(false, dist, (owner, detector)); - RaiseLocalEvent(targetEntity, ref detectAttempt); - return !detectAttempt.Cancel; - } - - private void UpdateTargetFromClosest(EntityUid owner, ProximityDetectorComponent detector, List<(EntityUid TargetEnt, float Distance)> detections) - { - if (detections.Count == 0) - { - ClearTarget((owner, detector)); - return; - } - var closestDistance = detections[0].Distance; - EntityUid closestEnt = default!; - foreach (var (ent,dist) in detections) - { - if (dist >= closestDistance) + if (!transform.Coordinates.TryDistance(EntityManager, xForm.Coordinates, out var distance) || + distance > component.Range || distance >= closestDistance) continue; - closestEnt = ent; - closestDistance = dist; + + var detectAttempt = new ProximityDetectionAttemptEvent(distance, detector, uid); + RaiseLocalEvent(detector, ref detectAttempt); + + if (detectAttempt.Cancelled) + continue; + + closestDistance = distance; + closestUid = uid; + } + + var newDistance = component.Distance != closestDistance; + var newTarget = component.Target != closestUid; + + if (newDistance) + { + var updatedEv = new ProximityTargetUpdatedEvent(closestDistance, detector, closestUid); + RaiseLocalEvent(detector, ref updatedEv); + + component.Distance = closestDistance; + DirtyField(detector, component, nameof(ProximityDetectorComponent.Distance)); } - var newTarget = detector.TargetEnt != closestEnt; - var newData = newTarget || detector.Distance != closestDistance; - detector.TargetEnt = closestEnt; - detector.Distance = closestDistance; - Dirty(owner, detector); if (newTarget) { - var newTargetEvent = new NewProximityTargetEvent(detector, closestEnt); - RaiseLocalEvent(owner, ref newTargetEvent); + var newTargetEv = new NewProximityTargetEvent(closestDistance, detector, closestUid); + RaiseLocalEvent(detector, ref newTargetEv); + + component.Target = closestUid; + DirtyField(detector, component, nameof(ProximityDetectorComponent.Target)); } - - if (!newData) - return; - var targetUpdatedEvent = new ProximityTargetUpdatedEvent(detector, closestEnt, closestDistance); - RaiseLocalEvent(owner, ref targetUpdatedEvent); - Dirty(owner, detector); - } - - public void SetRange(EntityUid owner, float newRange, ProximityDetectorComponent? detector = null) - { - if (!Resolve(owner, ref detector)) - return; - detector.Range = newRange; - Dirty(owner, detector); } } diff --git a/Content.Shared/RCD/RCDPrototype.cs b/Content.Shared/RCD/RCDPrototype.cs index b00f59f049..2be5e1c776 100644 --- a/Content.Shared/RCD/RCDPrototype.cs +++ b/Content.Shared/RCD/RCDPrototype.cs @@ -9,7 +9,7 @@ namespace Content.Shared.RCD; /// Contains the parameters for an RCD construction / operation /// [Prototype("rcd")] -public sealed class RCDPrototype : IPrototype +public sealed partial class RCDPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/RCD/Systems/RCDSystem.cs b/Content.Shared/RCD/Systems/RCDSystem.cs index 2025f2f3cc..238daf6bf7 100644 --- a/Content.Shared/RCD/Systems/RCDSystem.cs +++ b/Content.Shared/RCD/Systems/RCDSystem.cs @@ -395,7 +395,7 @@ public sealed class RCDSystem : EntitySystem if (prototype.Mode == RcdMode.ConstructTile) { // Check rule: Tile placement is valid - if (!_floors.CanPlaceTile(gridUid, mapGrid, out var reason)) + if (!_floors.CanPlaceTile(gridUid, mapGrid, tile.GridIndices, out var reason)) { if (popMsgs) _popup.PopupClient(reason, uid, user); diff --git a/Content.Shared/Random/Rules/GridInRange.cs b/Content.Shared/Random/Rules/GridInRange.cs index dfe57b9375..bdc0cedf73 100644 --- a/Content.Shared/Random/Rules/GridInRange.cs +++ b/Content.Shared/Random/Rules/GridInRange.cs @@ -1,5 +1,6 @@ using System.Numerics; using Robust.Shared.Map; +using Robust.Shared.Map.Components; namespace Content.Shared.Random.Rules; @@ -11,6 +12,8 @@ public sealed partial class GridInRangeRule : RulesRule [DataField] public float Range = 10f; + private List> _grids = []; + public override bool Check(EntityManager entManager, EntityUid uid) { if (!entManager.TryGetComponent(uid, out TransformComponent? xform)) @@ -29,10 +32,10 @@ public sealed partial class GridInRangeRule : RulesRule var worldPos = transform.GetWorldPosition(xform); var gridRange = new Vector2(Range, Range); - foreach (var _ in mapManager.FindGridsIntersecting(xform.MapID, new Box2(worldPos - gridRange, worldPos + gridRange))) - { + _grids.Clear(); + mapManager.FindGridsIntersecting(xform.MapID, new Box2(worldPos - gridRange, worldPos + gridRange), ref _grids); + if (_grids.Count > 0) return !Inverted; - } return Inverted; } diff --git a/Content.Shared/Random/Rules/NearbyTilesPercent.cs b/Content.Shared/Random/Rules/NearbyTilesPercent.cs index beadfea05b..4f8c1e040d 100644 --- a/Content.Shared/Random/Rules/NearbyTilesPercent.cs +++ b/Content.Shared/Random/Rules/NearbyTilesPercent.cs @@ -45,7 +45,7 @@ public sealed partial class NearbyTilesPercentRule : RulesRule // Only consider collidable anchored (for reasons some subfloor stuff has physics but non-collidable) if (IgnoreAnchored) { - var gridEnum = grid.GetAnchoredEntitiesEnumerator(tile.GridIndices); + var gridEnum = mapSys.GetAnchoredEntitiesEnumerator(xform.GridUid.Value, grid, tile.GridIndices); var found = false; while (gridEnum.MoveNext(out var ancUid)) diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs index 6c0ab054b8..3438d76852 100644 --- a/Content.Shared/Roles/SharedRoleSystem.cs +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -281,11 +281,11 @@ public abstract class SharedRoleSystem : EntitySystem } /// - /// Removes all instances of a specific role from this mind. + /// Finds and removes all mind roles of a specific type /// /// The mind to remove the role from. /// The type of the role to remove. - /// Returns false if the role did not exist. True if successful> + /// True if the role existed and was removed> public bool MindRemoveRole(Entity mind) where T : IComponent { if (typeof(T) == typeof(MindRoleComponent)) @@ -294,25 +294,108 @@ public abstract class SharedRoleSystem : EntitySystem if (!Resolve(mind.Owner, ref mind.Comp)) return false; - var found = false; var delete = new List(); + // If there were no matches and thus no mind role entity names, we'll need the component's name, to report what role failed to be removed + var original = "'" + typeof(T).Name + "'"; + var deleteName = original; + foreach (var role in mind.Comp.MindRoles) { - if (!HasComp(role)) - continue; - if (!HasComp(role)) { Log.Error($"Encountered mind role entity {ToPrettyString(role)} without a {nameof(MindRoleComponent)}"); continue; } + if (!HasComp(role)) + continue; + delete.Add(role); - found = true; + deleteName = RemoveRoleLogNameGeneration(deleteName, MetaData(role).EntityName, original); } - if (!found) + return MindRemoveRoleDo(mind, delete, deleteName); + } + + private string RemoveRoleLogNameGeneration(string name, string newName, string original) + { + // If there were matches for deletion, this will run, and we get a new name to replace the original input + if (name == original) + name = "'" + newName + "'"; + // It is theoretically possible to get multiple matches + // If they have different names, then we want all of them listed + else if (!name.Contains(newName)) + // and we can't just drop the multiple names within a single ' ' section later, because that would + // make it look like it's one name that is just formatted to look like a list + name = name + ", " + "'" + newName + "'"; + + return name; + } + + /// + /// Finds and removes all mind roles of a specific type + /// + /// The mind entity + /// The type of the role to remove. + /// True if the role existed and was removed + public bool MindRemoveRole(EntityUid mindId) where T : IComponent + { + if (!TryComp(mindId, out var mind)) + { + Log.Error($"The specified mind entity '{ToPrettyString(mindId)}' does not have a {nameof(MindComponent)}"); return false; + } + + return MindRemoveRole((mindId, mind)); + } + + /// + /// Finds and removes all mind roles of a specific type + /// + /// The mind entity and component + /// /// The prototype ID of the mind role to be removed + /// True if the role existed and was removed + public bool MindRemoveRole(Entity mind, EntProtoId protoId) + { + if ( !Resolve(mind.Owner, ref mind.Comp)) + return false; + + // If there were no matches and thus no mind role entity names, we'll need the protoId, to report what role failed to be removed + var original = "'" + protoId + "'"; + var deleteName = original; + var delete = new List(); + foreach (var role in mind.Comp.MindRoles) + { + if (!HasComp(role)) + { + Log.Error($"Encountered mind role entity {ToPrettyString(role)} without a {nameof(MindRoleComponent)}"); + continue; + } + + var id = MetaData(role).EntityPrototype?.ID; + if (id is null || id != protoId) + continue; + + delete.Add(role); + deleteName = RemoveRoleLogNameGeneration(deleteName, MetaData(role).EntityName, original); + } + + return MindRemoveRoleDo(mind, delete, deleteName); + } + + /// + /// Performs the actual role entity deletion. + /// + private bool MindRemoveRoleDo(Entity mind, List delete, string? logName = "") + { + if ( !Resolve(mind.Owner, ref mind.Comp)) + return false; + + if (delete.Count <= 0) + { + Log.Warning($"Failed to remove mind role {logName} from {ToPrettyString(mind.Owner)} : mind does not have this role "); + return false; + } foreach (var role in delete) { @@ -326,7 +409,7 @@ public abstract class SharedRoleSystem : EntitySystem _adminLogger.Add(LogType.Mind, LogImpact.Low, - $"All roles of type '{typeof(T).Name}' removed from mind of {ToPrettyString(mind.Comp.OwnedEntity)}"); + $"All roles of type {logName} removed from mind of {ToPrettyString(mind.Comp.OwnedEntity)}"); return true; } @@ -342,24 +425,6 @@ public abstract class SharedRoleSystem : EntitySystem ent.Comp.Mind.Comp.MindRoles.Remove(ent.Owner); } - /// - /// Finds and removes all mind roles of a specific type - /// - /// The mind entity - /// The type of the role to remove. - /// True if the role existed and was removed - public bool MindTryRemoveRole(EntityUid mindId) where T : IComponent - { - if (typeof(T) == typeof(MindRoleComponent)) - return false; - - if (MindRemoveRole(mindId)) - return true; - - Log.Warning($"Failed to remove role {typeof(T)} from {ToPrettyString(mindId)} : mind does not have role "); - return false; - } - /// /// Finds the first mind role of a specific T type on a mind entity. /// Outputs entity components for the mind role's MindRoleComponent and for T diff --git a/Content.Shared/Salvage/JobBoard/SalvageJobBoardConsoleComponent.cs b/Content.Shared/Salvage/JobBoard/SalvageJobBoardConsoleComponent.cs new file mode 100644 index 0000000000..6b1bee267e --- /dev/null +++ b/Content.Shared/Salvage/JobBoard/SalvageJobBoardConsoleComponent.cs @@ -0,0 +1,72 @@ +using Content.Shared.Cargo.Prototypes; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Salvage.JobBoard; + +/// +/// Used to view the job board ui +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class SalvageJobBoardConsoleComponent : Component +{ + /// + /// A label that this computer can print out. + /// + [DataField] + public EntProtoId LabelEntity = "PaperSalvageJobLabel"; + + /// + /// The sound made when printing occurs + /// + [DataField] + public SoundSpecifier PrintSound = new SoundPathSpecifier("/Audio/Machines/printer.ogg"); + + /// + /// The time at which the console will be able to print a label again. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan NextPrintTime = TimeSpan.Zero; + + /// + /// The time between prints. + /// + [DataField] + public TimeSpan PrintDelay = TimeSpan.FromSeconds(5); +} + +[Serializable, NetSerializable] +public sealed class SalvageJobBoardConsoleState : BoundUserInterfaceState +{ + public string Title; + public float Progression; + + public List> AvailableJobs; + + public SalvageJobBoardConsoleState(string title, float progression, List> availableJobs) + { + Title = title; + Progression = progression; + AvailableJobs = availableJobs; + } +} + +[Serializable, NetSerializable] +public sealed class JobBoardPrintLabelMessage : BoundUserInterfaceMessage +{ + public string JobId; + + public JobBoardPrintLabelMessage(string jobId) + { + JobId = jobId; + } +} + +[Serializable, NetSerializable] +public enum SalvageJobBoardUiKey : byte +{ + Key +} diff --git a/Content.Shared/Salvage/SharedSalvageSystem.Magnet.cs b/Content.Shared/Salvage/SharedSalvageSystem.Magnet.cs index c041722479..3950b1b72b 100644 --- a/Content.Shared/Salvage/SharedSalvageSystem.Magnet.cs +++ b/Content.Shared/Salvage/SharedSalvageSystem.Magnet.cs @@ -50,12 +50,8 @@ public abstract partial class SharedSalvageSystem var configProto =_proto.Index(configId); var layers = new Dictionary(); - var data = new DungeonData(); - data.Apply(configProto.Data); - var config = new DungeonConfig { - Data = data, Layers = new(configProto.Layers), MaxCount = configProto.MaxCount, MaxOffset = configProto.MaxOffset, diff --git a/Content.Shared/Security/Systems/SharedGenpopSystem.cs b/Content.Shared/Security/Systems/SharedGenpopSystem.cs index 39fc87f665..66bf5ca254 100644 --- a/Content.Shared/Security/Systems/SharedGenpopSystem.cs +++ b/Content.Shared/Security/Systems/SharedGenpopSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Access.Components; using Content.Shared.Access.Systems; +using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.Examine; using Content.Shared.Lock; @@ -8,12 +9,14 @@ using Content.Shared.Security.Components; using Content.Shared.Storage.Components; using Content.Shared.Storage.EntitySystems; using Content.Shared.Verbs; +using Robust.Shared.Configuration; using Robust.Shared.Timing; namespace Content.Shared.Security.Systems; public abstract class SharedGenpopSystem : EntitySystem { + [Dependency] private readonly IConfigurationManager _cfgManager = default!; [Dependency] protected readonly IGameTiming Timing = default!; [Dependency] private readonly AccessReaderSystem _accessReader = default!; [Dependency] private readonly SharedEntityStorageSystem _entityStorage = default!; @@ -23,6 +26,8 @@ public abstract class SharedGenpopSystem : EntitySystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedUserInterfaceSystem _userInterface = default!; + // CCvar. + private int _maxIdJobLength; /// public override void Initialize() @@ -33,12 +38,14 @@ public abstract class SharedGenpopSystem : EntitySystem SubscribeLocalEvent(OnLockToggled); SubscribeLocalEvent>(OnGetVerbs); SubscribeLocalEvent(OnExamine); + + Subs.CVar(_cfgManager, CCVars.MaxIdJobLength, value => _maxIdJobLength = value, true); } private void OnIdConfigured(Entity ent, ref GenpopLockerIdConfiguredMessage args) { // validation. - if (string.IsNullOrWhiteSpace(args.Name) || args.Name.Length > IdCardConsoleComponent.MaxFullNameLength || + if (string.IsNullOrWhiteSpace(args.Name) || args.Name.Length > _maxIdJobLength || args.Sentence < 0 || string.IsNullOrWhiteSpace(args.Crime) || args.Crime.Length > GenpopLockerComponent.MaxCrimeLength) { diff --git a/Content.Shared/Shuttles/Systems/SharedShuttleSystem.cs b/Content.Shared/Shuttles/Systems/SharedShuttleSystem.cs index c2167130d4..46f3f98329 100644 --- a/Content.Shared/Shuttles/Systems/SharedShuttleSystem.cs +++ b/Content.Shared/Shuttles/Systems/SharedShuttleSystem.cs @@ -42,7 +42,7 @@ public abstract partial class SharedShuttleSystem : EntitySystem /// public bool CanFTLTo(EntityUid shuttleUid, MapId targetMap, EntityUid consoleUid) { - var mapUid = _mapManager.GetMapEntityId(targetMap); + var mapUid = Maps.GetMapOrInvalid(targetMap); var shuttleMap = _xformQuery.GetComponent(shuttleUid).MapID; if (shuttleMap == targetMap) diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Customization.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Customization.cs new file mode 100644 index 0000000000..d3f3fe4297 --- /dev/null +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Customization.cs @@ -0,0 +1,82 @@ +using Content.Shared.Holopad; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Silicons.StationAi; + +public abstract partial class SharedStationAiSystem +{ + private ProtoId _stationAiCoreCustomGroupProtoId = "StationAiCoreIconography"; + private ProtoId _stationAiHologramCustomGroupProtoId = "StationAiHolograms"; + + private void InitializeCustomization() + { + SubscribeLocalEvent(OnStationAiCustomization); + } + + private void OnStationAiCustomization(Entity entity, ref StationAiCustomizationMessage args) + { + if (!_protoManager.TryIndex(args.GroupProtoId, out var groupPrototype) || !_protoManager.TryIndex(args.CustomizationProtoId, out var customizationProto)) + return; + + if (!TryGetHeld((entity, entity.Comp), out var held)) + return; + + if (!TryComp(held, out var stationAiCustomization)) + return; + + if (stationAiCustomization.ProtoIds.TryGetValue(args.GroupProtoId, out var protoId) && protoId == args.CustomizationProtoId) + return; + + stationAiCustomization.ProtoIds[args.GroupProtoId] = args.CustomizationProtoId; + + Dirty(held, stationAiCustomization); + + // Update hologram + if (groupPrototype.Category == StationAiCustomizationType.Hologram) + UpdateHolographicAvatar((held, stationAiCustomization)); + + // Update core iconography + if (groupPrototype.Category == StationAiCustomizationType.CoreIconography && TryComp(entity, out var stationAiHolder)) + UpdateAppearance((entity, stationAiHolder)); + } + + private void UpdateHolographicAvatar(Entity entity) + { + if (!TryComp(entity, out var avatar)) + return; + + if (!entity.Comp.ProtoIds.TryGetValue(_stationAiHologramCustomGroupProtoId, out var protoId)) + return; + + if (!_protoManager.TryIndex(protoId, out var prototype)) + return; + + if (!prototype.LayerData.TryGetValue(StationAiState.Hologram.ToString(), out var layerData)) + return; + + avatar.LayerData = [layerData]; + Dirty(entity, avatar); + } + + private void CustomizeAppearance(Entity entity, StationAiState state) + { + var stationAi = GetInsertedAI(entity); + + if (stationAi == null) + { + _appearance.RemoveData(entity.Owner, StationAiVisualState.Key); + return; + } + + if (!TryComp(stationAi, out var stationAiCustomization) || + !stationAiCustomization.ProtoIds.TryGetValue(_stationAiCoreCustomGroupProtoId, out var protoId) || + !_protoManager.TryIndex(protoId, out var prototype) || + !prototype.LayerData.TryGetValue(state.ToString(), out var layerData)) + { + return; + } + + // This data is handled manually in the client StationAiSystem + _appearance.SetData(entity.Owner, StationAiVisualState.Key, layerData); + } +} diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs index 4b0fbdcf4b..1c9c57dccf 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs @@ -157,6 +157,9 @@ public abstract partial class SharedStationAiSystem private void OnTargetVerbs(Entity ent, ref GetVerbsEvent args) { + if (!_uiSystem.HasUi(args.Target, AiUi.Key)) + return; + if (!args.CanComplexInteract || !HasComp(args.User) || !args.CanInteract) diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs index 372a758f80..1615ab0fa3 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs @@ -28,6 +28,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Timing; using System.Diagnostics.CodeAnalysis; +using Robust.Shared.Utility; namespace Content.Shared.Silicons.StationAi; @@ -56,6 +57,7 @@ public abstract partial class SharedStationAiSystem : EntitySystem [Dependency] private readonly SharedTransformSystem _xforms = default!; [Dependency] private readonly SharedUserInterfaceSystem _uiSystem = default!; [Dependency] private readonly StationAiVisionSystem _vision = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; // StationAiHeld is added to anything inside of an AI core. // StationAiHolder indicates it can hold an AI positronic brain (e.g. holocard / core). @@ -82,6 +84,7 @@ public abstract partial class SharedStationAiSystem : EntitySystem InitializeAirlock(); InitializeHeld(); InitializeLight(); + InitializeCustomization(); SubscribeLocalEvent(OnAiBuiCheck); @@ -107,25 +110,35 @@ public abstract partial class SharedStationAiSystem : EntitySystem private void OnCoreVerbs(Entity ent, ref GetVerbsEvent args) { - if (!_admin.IsAdmin(args.User) || - TryGetHeld((ent.Owner, ent.Comp), out _)) - { - return; - } - var user = args.User; - args.Verbs.Add(new Verb() + // Admin option to take over the station AI core + if (_admin.IsAdmin(args.User) && + !TryGetHeld((ent.Owner, ent.Comp), out _)) { - Text = Loc.GetString("station-ai-takeover"), - Category = VerbCategory.Debug, - Act = () => + args.Verbs.Add(new Verb() { - var brain = SpawnInContainerOrDrop(DefaultAi, ent.Owner, StationAiCoreComponent.Container); - _mind.ControlMob(user, brain); - }, - Impact = LogImpact.High, - }); + Text = Loc.GetString("station-ai-takeover"), + Category = VerbCategory.Debug, + Act = () => + { + var brain = SpawnInContainerOrDrop(DefaultAi, ent.Owner, StationAiCoreComponent.Container); + _mind.ControlMob(user, brain); + }, + Impact = LogImpact.High, + }); + } + + // Option to open the station AI customization menu + if (TryGetHeld((ent, ent.Comp), out var insertedAi) && insertedAi == user) + { + args.Verbs.Add(new Verb() + { + Text = Loc.GetString("station-ai-customization-menu"), + Act = () => _uiSystem.TryOpenUi(ent.Owner, StationAiCustomizationUiKey.Key, insertedAi), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/emotes.svg.192dpi.png")), + }); + } } private void OnAiAccessible(Entity ent, ref AccessibleOverrideEvent args) @@ -494,14 +507,21 @@ public abstract partial class SharedStationAiSystem : EntitySystem if (!Resolve(entity.Owner, ref entity.Comp, false)) return; - if (!_containers.TryGetContainer(entity.Owner, StationAiHolderComponent.Container, out var container) || - container.Count == 0) + // Todo: when AIs can die, add a check to see if the AI is in the 'dead' state + var state = StationAiState.Empty; + + if (_containers.TryGetContainer(entity.Owner, StationAiHolderComponent.Container, out var container) && container.Count > 0) + state = StationAiState.Occupied; + + // If the entity is a station AI core, attempt to customize its appearance + if (TryComp(entity, out var stationAiCore)) { - _appearance.SetData(entity.Owner, StationAiVisualState.Key, StationAiState.Empty); + CustomizeAppearance((entity, stationAiCore), state); return; } - _appearance.SetData(entity.Owner, StationAiVisualState.Key, StationAiState.Occupied); + // Otherwise let generic visualizers handle the appearance update + _appearance.SetData(entity.Owner, StationAiVisualState.Key, state); } public virtual void AnnounceIntellicardUsage(EntityUid uid, SoundSpecifier? cue = null) { } @@ -550,17 +570,23 @@ public sealed partial class JumpToCoreEvent : InstantActionEvent [Serializable, NetSerializable] public sealed partial class IntellicardDoAfterEvent : SimpleDoAfterEvent; - [Serializable, NetSerializable] public enum StationAiVisualState : byte { Key, } +[Serializable, NetSerializable] +public enum StationAiSpriteState : byte +{ + Key, +} + [Serializable, NetSerializable] public enum StationAiState : byte { Empty, Occupied, Dead, + Hologram, } diff --git a/Content.Shared/Silicons/StationAi/StationAiCustomizationComponent.cs b/Content.Shared/Silicons/StationAi/StationAiCustomizationComponent.cs new file mode 100644 index 0000000000..a2b713edfe --- /dev/null +++ b/Content.Shared/Silicons/StationAi/StationAiCustomizationComponent.cs @@ -0,0 +1,53 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Silicons.StationAi; + +/// +/// Holds data for altering the appearance of station AIs. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class StationAiCustomizationComponent : Component +{ + /// + /// Dictionary of the prototype data used for customizing the appearance of the entity. + /// + [DataField, AutoNetworkedField] + public Dictionary, ProtoId> ProtoIds = new(); +} + +/// +/// Message sent to server that contains a station AI customization that the client has selected +/// +[Serializable, NetSerializable] +public sealed class StationAiCustomizationMessage : BoundUserInterfaceMessage +{ + public readonly ProtoId GroupProtoId; + public readonly ProtoId CustomizationProtoId; + + public StationAiCustomizationMessage(ProtoId groupProtoId, ProtoId customizationProtoId) + { + GroupProtoId = groupProtoId; + CustomizationProtoId = customizationProtoId; + } +} + +/// +/// Key for opening the station AI customization UI +/// +[Serializable, NetSerializable] +public enum StationAiCustomizationUiKey : byte +{ + Key, +} + +/// +/// The different catagories of station Ai customizations available +/// +[Serializable, NetSerializable] +public enum StationAiCustomizationType : byte +{ + CoreIconography, + Hologram, +} diff --git a/Content.Shared/Silicons/StationAi/StationAiCustomizationGroupPrototype.cs b/Content.Shared/Silicons/StationAi/StationAiCustomizationGroupPrototype.cs new file mode 100644 index 0000000000..590043e271 --- /dev/null +++ b/Content.Shared/Silicons/StationAi/StationAiCustomizationGroupPrototype.cs @@ -0,0 +1,31 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Silicons.StationAi; + +/// +/// Holds data for customizing the appearance of station AIs. +/// +[Prototype] +public sealed partial class StationAiCustomizationGroupPrototype : IPrototype +{ + [IdDataField] + public string ID { get; private set; } = string.Empty; + + /// + /// The localized name of the customization. + /// + [DataField(required: true)] + public LocId Name; + + /// + /// The type of customization that is associated with this group. + /// + [DataField] + public StationAiCustomizationType Category = StationAiCustomizationType.CoreIconography; + + /// + /// The list of prototypes associated with the customization group. + /// + [DataField(required: true)] + public List> ProtoIds = new(); +} diff --git a/Content.Shared/Silicons/StationAi/StationAiCustomizationPrototype.cs b/Content.Shared/Silicons/StationAi/StationAiCustomizationPrototype.cs new file mode 100644 index 0000000000..eae6f51477 --- /dev/null +++ b/Content.Shared/Silicons/StationAi/StationAiCustomizationPrototype.cs @@ -0,0 +1,54 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; +using Robust.Shared.Utility; + +namespace Content.Shared.Silicons.StationAi; + +/// +/// Holds data for customizing the appearance of station AIs. +/// +[Prototype] +public sealed partial class StationAiCustomizationPrototype : IPrototype, IInheritingPrototype +{ + [IdDataField] + public string ID { get; private set; } = string.Empty; + + /// + /// The (unlocalized) name of the customization. + /// + [DataField(required: true)] + public LocId Name; + + /// + /// Stores the data which is used to modify the appearance of the station AI. + /// + [DataField(required: true)] + public Dictionary LayerData = new(); + + /// + /// Key used to index the prototype layer data and extract a preview of the customization (for menus, etc) + /// + [DataField] + public string PreviewKey = string.Empty; + + /// + /// Specifies a background to use for previewing the customization (for menus, etc) + /// + [DataField] + public SpriteSpecifier? PreviewBackground; + + /// + /// The prototype we inherit from. + /// + [ViewVariables] + [ParentDataFieldAttribute(typeof(AbstractPrototypeIdArraySerializer))] + public string[]? Parents { get; private set; } + + /// + /// Specifies whether the prototype is abstract. + /// + [ViewVariables] + [NeverPushInheritance] + [AbstractDataField] + public bool Abstract { get; private set; } +} diff --git a/Content.Shared/Speech/Components/DamagedSiliconAccentComponent.cs b/Content.Shared/Speech/Components/DamagedSiliconAccentComponent.cs index fa1377b379..2bc8645e72 100644 --- a/Content.Shared/Speech/Components/DamagedSiliconAccentComponent.cs +++ b/Content.Shared/Speech/Components/DamagedSiliconAccentComponent.cs @@ -27,10 +27,11 @@ public sealed partial class DamagedSiliconAccentComponent : Component /// /// Probability of character corruption will increase linearly to once until - /// total damage is at or above this value. + /// total damage is at or above this value. If null, it will use the value returned by + /// DestructibleSystem.DestroyedAt, which is the damage threshold for destruction or breakage. /// [DataField] - public FixedPoint2 DamageAtMaxCorruption = 300; + public FixedPoint2? DamageAtMaxCorruption; /// /// Enable charge level corruption effects diff --git a/Content.Shared/StationRecords/StationRecordsFilter.cs b/Content.Shared/StationRecords/StationRecordsFilter.cs index 10b94dda99..7a09eaa985 100644 --- a/Content.Shared/StationRecords/StationRecordsFilter.cs +++ b/Content.Shared/StationRecords/StationRecordsFilter.cs @@ -39,6 +39,8 @@ public sealed class SetStationRecordFilter : BoundUserInterfaceMessage public enum StationRecordFilterType : byte { Name, + Job, + Species, Prints, DNA, } diff --git a/Content.Shared/StatusEffect/StatusEffectsSystem.cs b/Content.Shared/StatusEffect/StatusEffectsSystem.cs index 95abea63db..5fa634351d 100644 --- a/Content.Shared/StatusEffect/StatusEffectsSystem.cs +++ b/Content.Shared/StatusEffect/StatusEffectsSystem.cs @@ -11,7 +11,6 @@ namespace Content.Shared.StatusEffect public sealed class StatusEffectsSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IComponentFactory _componentFactory = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly AlertsSystem _alertsSystem = default!; private List _toRemove = new(); @@ -119,7 +118,7 @@ namespace Content.Shared.StatusEffect return true; EntityManager.AddComponent(uid); - status.ActiveEffects[key].RelevantComponent = _componentFactory.GetComponentName(); + status.ActiveEffects[key].RelevantComponent = Factory.GetComponentName(); return true; } @@ -133,9 +132,9 @@ namespace Content.Shared.StatusEffect if (TryAddStatusEffect(uid, key, time, refresh, status)) { // If they already have the comp, we just won't bother updating anything. - if (!EntityManager.HasComponent(uid, _componentFactory.GetRegistration(component).Type)) + if (!EntityManager.HasComponent(uid, Factory.GetRegistration(component).Type)) { - var newComponent = (Component) _componentFactory.GetComponent(component); + var newComponent = (Component) Factory.GetComponent(component); EntityManager.AddComponent(uid, newComponent); status.ActiveEffects[key].RelevantComponent = component; } @@ -271,7 +270,7 @@ namespace Content.Shared.StatusEffect // There are cases where a status effect component might be server-only, so TryGetRegistration... if (remComp && state.RelevantComponent != null - && _componentFactory.TryGetRegistration(state.RelevantComponent, out var registration)) + && Factory.TryGetRegistration(state.RelevantComponent, out var registration)) { var type = registration.Type; EntityManager.RemoveComponent(uid, type); diff --git a/Content.Shared/Storage/EntitySpawnEntry.cs b/Content.Shared/Storage/EntitySpawnEntry.cs index 480863692e..c00d9e100b 100644 --- a/Content.Shared/Storage/EntitySpawnEntry.cs +++ b/Content.Shared/Storage/EntitySpawnEntry.cs @@ -76,6 +76,18 @@ public static class EntitySpawnCollection public float CumulativeProbability { get; set; } = 0f; } + public static List GetSpawns(ProtoId proto, IPrototypeManager? protoManager = null, IRobustRandom? random = null) + { + IoCManager.Resolve(ref protoManager, ref random); + return GetSpawns(protoManager.Index(proto).Entries, random); + } + + public static List GetSpawns(ProtoId proto, System.Random random, IPrototypeManager? protoManager = null) + { + IoCManager.Resolve(ref protoManager); + return GetSpawns(protoManager.Index(proto).Entries, random); + } + /// /// Using a collection of entity spawn entries, picks a random list of entity prototypes to spawn from that collection. /// diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 6b91ddc7f4..8143cb9cdd 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -42,13 +42,14 @@ using Robust.Shared.Serialization; using Robust.Shared.Timing; using Robust.Shared.Utility; using Content.Shared.Rounding; +using Robust.Shared.Collections; +using Robust.Shared.Map.Enumerators; namespace Content.Shared.Storage.EntitySystems; public abstract class SharedStorageSystem : EntitySystem { [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] protected readonly IGameTiming Timing = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] protected readonly IRobustRandom Random = default!; [Dependency] private readonly ISharedAdminLogManager _adminLog = default!; @@ -115,6 +116,10 @@ public abstract class SharedStorageSystem : EntitySystem protected readonly List CantFillReasons = []; + // Caching for various checks + private readonly Dictionary _ignored = new(); + private List _itemShape = new(); + /// public override void Initialize() { @@ -183,6 +188,8 @@ public abstract class SharedStorageSystem : EntitySystem return; } + UpdateOccupied((container.Owner, storage)); + if (!ItemFitsInGridLocation((itemEnt.Owner, itemEnt.Comp), (container.Owner, storage), loc)) { ContainerSystem.Remove(itemEnt.Owner, container, force: true); @@ -237,6 +244,7 @@ public abstract class SharedStorageSystem : EntitySystem private void OnPrototypesReloaded(PrototypesReloadedEventArgs args) { + // TODO: This should update all entities in storage as well. if (args.ByType.ContainsKey(typeof(ItemSizePrototype)) || (args.Removed?.ContainsKey(typeof(ItemSizePrototype)) ?? false)) { @@ -266,6 +274,9 @@ public abstract class SharedStorageSystem : EntitySystem { storageComp.Container = ContainerSystem.EnsureContainer(uid, StorageComponent.ContainerId); UpdateAppearance((uid, storageComp, null)); + + // Make sure the initial starting grid is okay. + UpdateOccupied((uid, storageComp)); } /// @@ -341,12 +352,12 @@ public abstract class SharedStorageSystem : EntitySystem /// /// Tries to get the storage location of an item. /// - public bool TryGetStorageLocation(Entity itemEnt, [NotNullWhen(true)] out BaseContainer? container, out StorageComponent? storage, out ItemStorageLocation loc) + public bool TryGetStorageLocation(Entity itemEnt, [NotNullWhen(true)] out BaseContainer? container, [NotNullWhen(true)] out StorageComponent? storage, out ItemStorageLocation loc) { loc = default; storage = null; - if (!ContainerSystem.TryGetContainingContainer(itemEnt, out container) || + if (!ContainerSystem.TryGetContainingContainer(itemEnt.Owner, out container) || container.ID != StorageComponent.ContainerId || !TryComp(container.Owner, out storage) || !_itemQuery.Resolve(itemEnt, ref itemEnt.Comp, false)) @@ -862,7 +873,7 @@ public abstract class SharedStorageSystem : EntitySystem } entity.Comp.StoredItems[args.Entity] = location.Value; - Dirty(entity, entity.Comp); + AddOccupiedEntity(entity, args.Entity, location.Value); } UpdateAppearance((entity, entity.Comp, null)); @@ -878,7 +889,11 @@ public abstract class SharedStorageSystem : EntitySystem if (args.Container.ID != StorageComponent.ContainerId) return; - entity.Comp.StoredItems.Remove(args.Entity); + if (entity.Comp.StoredItems.Remove(args.Entity, out var loc)) + { + RemoveOccupiedEntity(entity, args.Entity, loc); + } + Dirty(entity, entity.Comp); UpdateAppearance((entity, entity.Comp, null)); @@ -1071,7 +1086,7 @@ public abstract class SharedStorageSystem : EntitySystem return false; uid.Comp.StoredItems[insertEnt] = location; - Dirty(uid, uid.Comp); + AddOccupiedEntity((uid.Owner, uid.Comp), insertEnt, location); if (Insert(uid, insertEnt, @@ -1085,6 +1100,7 @@ public abstract class SharedStorageSystem : EntitySystem return true; } + RemoveOccupiedEntity((uid.Owner, uid.Comp), insertEnt, location); uid.Comp.StoredItems.Remove(insertEnt); return false; } @@ -1247,9 +1263,14 @@ public abstract class SharedStorageSystem : EntitySystem if (!ItemFitsInGridLocation(itemEnt, storageEnt, location.Position, location.Rotation)) return false; - storageEnt.Comp.StoredItems[itemEnt] = location; + if (storageEnt.Comp.StoredItems.Remove(itemEnt, out var existing)) + { + RemoveOccupiedEntity((storageEnt.Owner, storageEnt.Comp), itemEnt, existing); + } + + storageEnt.Comp.StoredItems.Add(itemEnt, location); + AddOccupiedEntity((storageEnt.Owner, storageEnt.Comp), itemEnt, location); UpdateUI(storageEnt); - Dirty(storageEnt, storageEnt.Comp); return true; } @@ -1294,17 +1315,96 @@ public abstract class SharedStorageSystem : EntitySystem } } - for (var y = storageBounding.Bottom; y <= storageBounding.Top; y++) + // Ignore the item's existing location for fitting purposes. + _ignored.Clear(); + + if (storageEnt.Comp.StoredItems.TryGetValue(itemEnt.Owner, out var existing)) { - for (var x = storageBounding.Left; x <= storageBounding.Right; x++) + AddOccupied(itemEnt, existing, _ignored); + } + + // This uses a faster path than the typical codepaths + // as we can cache a bunch more data and re-use it to avoid a bunch of component overhead. + + // So if we have an item that occupies 0,0 and is a single rectangle we can assume that the tile itself we're checking + // is always in its shapes regardless of angle. This matches virtually every item in the game and + // means we can skip getting the item's rotated shape at all if the tile is occupied. + // This mostly makes heavy checks (e.g. area insert) much, much faster. + var fastPath = false; + var itemShape = ItemSystem.GetItemShape(itemEnt); + var fastAngles = itemShape.Count == 1; + + if (itemShape.Count == 1 && itemShape[0].Contains(Vector2i.Zero)) + fastPath = true; + + var chunkEnumerator = new ChunkIndicesEnumerator(storageBounding, StorageComponent.ChunkSize); + var angles = new ValueList(); + + if (!fastAngles) + { + angles.Clear(); + + for (var angle = startAngle; angle <= Angle.FromDegrees(360 - startAngle); angle += Math.PI / 2f) { - for (var angle = startAngle; angle <= Angle.FromDegrees(360 - startAngle); angle += Math.PI / 2f) + angles.Add(angle); + } + } + else + { + var shape = itemShape[0]; + + // At least 1 check for a square. + angles.Add(startAngle); + + // If it's a rectangle make it 2. + if (shape.Width != shape.Height) + { + // Idk if there's a preferred facing but + or - 90 pick one. + angles.Add(startAngle + Angle.FromDegrees(90)); + } + } + + while (chunkEnumerator.MoveNext(out var storageChunk)) + { + var storageChunkOrigin = storageChunk.Value * StorageComponent.ChunkSize; + + var left = Math.Max(storageChunkOrigin.X, storageBounding.Left); + var bottom = Math.Max(storageChunkOrigin.Y, storageBounding.Bottom); + var top = Math.Min(storageChunkOrigin.Y + StorageComponent.ChunkSize - 1, storageBounding.Top); + var right = Math.Min(storageChunkOrigin.X + StorageComponent.ChunkSize - 1, storageBounding.Right); + + // No data so assume empty. + if (!storageEnt.Comp.OccupiedGrid.TryGetValue(storageChunkOrigin, out var occupied)) + continue; + + // This has a lot of redundant tile checks but with the fast path it shouldn't matter for average ss14 + // use cases. + for (var y = bottom; y <= top; y++) + { + for (var x = left; x <= right; x++) { - var location = new ItemStorageLocation(angle, (x, y)); - if (ItemFitsInGridLocation(itemEnt, storageEnt, location)) + foreach (var angle in angles) { - storageLocation = location; - return true; + var position = new Vector2i(x, y); + + // This bit of code is how area inserts go from tanking frames to being negligible. + if (fastPath) + { + var flag = SharedMapSystem.ToBitmask(SharedMapSystem.GetChunkRelative(position, StorageComponent.ChunkSize), StorageComponent.ChunkSize); + + // Occupied so skip. + if ((occupied & flag) == flag) + continue; + } + + _itemShape.Clear(); + ItemSystem.GetAdjustedItemShape(_itemShape, itemEnt, angle, position); + + if (ItemFitsInGridLocation(storageEnt.Comp.OccupiedGrid, _itemShape, _ignored)) + { + storageLocation = new ItemStorageLocation(angle, position); + return true; + } } } } @@ -1395,6 +1495,59 @@ public abstract class SharedStorageSystem : EntitySystem return ItemFitsInGridLocation(itemEnt, storageEnt, location.Position, location.Rotation); } + private bool ItemFitsInGridLocation( + Dictionary occupied, + IReadOnlyList itemShape, + Dictionary ignored) + { + // We pre-cache the occupied / ignored tiles upfront and then can just check each tile 1-by-1. + // We do it by chunk so we can avoid dictionary overhead. + foreach (var box in itemShape) + { + var chunkEnumerator = new ChunkIndicesEnumerator(box, StorageComponent.ChunkSize); + + while (chunkEnumerator.MoveNext(out var chunk)) + { + var chunkOrigin = chunk.Value * StorageComponent.ChunkSize; + + // Box may not necessarily be in 1 chunk so clamp it. + var left = Math.Max(chunkOrigin.X, box.Left); + var bottom = Math.Max(chunkOrigin.Y, box.Bottom); + var right = Math.Min(chunkOrigin.X + StorageComponent.ChunkSize - 1, box.Right); + var top = Math.Min(chunkOrigin.Y + StorageComponent.ChunkSize - 1, box.Top); + + // Assume it's occupied if no data. + if (!occupied.TryGetValue(chunkOrigin, out var occupiedMask)) + { + return false; + } + + var ignoredMask = ignored.GetValueOrDefault(chunkOrigin); + + for (var x = left; x <= right; x++) + { + for (var y = bottom; y <= top; y++) + { + var index = new Vector2i(x, y); + var chunkRelative = SharedMapSystem.GetChunkRelative(index, StorageComponent.ChunkSize); + var flag = SharedMapSystem.ToBitmask(chunkRelative, StorageComponent.ChunkSize); + + // Ignore it + if ((ignoredMask & flag) == flag) + continue; + + if ((occupiedMask & flag) == flag) + { + return false; + } + } + } + } + } + + return true; + } + /// /// Checks if an item fits into a specific spot on a storage grid. /// @@ -1412,62 +1565,157 @@ public abstract class SharedStorageSystem : EntitySystem return false; var itemShape = ItemSystem.GetAdjustedItemShape(itemEnt, rotation, position); + // Ignore the item's existing location for fitting purposes. + _ignored.Clear(); - foreach (var box in itemShape) + if (storageEnt.Comp.StoredItems.TryGetValue(itemEnt.Owner, out var existing)) { - for (var offsetY = box.Bottom; offsetY <= box.Top; offsetY++) - { - for (var offsetX = box.Left; offsetX <= box.Right; offsetX++) - { - var pos = (offsetX, offsetY); + AddOccupied(itemEnt, existing, _ignored); + } - if (!IsGridSpaceEmpty(itemEnt, storageEnt, pos)) - return false; - } - } + return ItemFitsInGridLocation(storageEnt.Comp.OccupiedGrid, itemShape, _ignored); + } + + /// + /// Checks if a space on a grid is valid and not occupied by any other pieces. + /// + public bool IsGridSpaceEmpty(Entity storageEnt, Vector2i location, Dictionary? ignored = null) + { + if (!Resolve(storageEnt, ref storageEnt.Comp)) + return false; + + var chunkOrigin = SharedMapSystem.GetChunkIndices(location, StorageComponent.ChunkSize) * StorageComponent.ChunkSize; + + // No entry so assume it's occupied. + if (!storageEnt.Comp.OccupiedGrid.TryGetValue(chunkOrigin, out var occupiedMask)) + return false; + + var chunkRelative = SharedMapSystem.GetChunkRelative(location, StorageComponent.ChunkSize); + var occupiedIndex = SharedMapSystem.ToBitmask(chunkRelative); + + if (ignored?.TryGetValue(chunkOrigin, out var ignoredMask) == true && (ignoredMask & occupiedIndex) == occupiedIndex) + { + return true; + } + + if ((occupiedMask & occupiedIndex) != 0x0) + { + return false; } return true; } /// - /// Checks if a space on a grid is valid and not occupied by any other pieces. + /// Updates the occupied grid mask for the entity. /// - public bool IsGridSpaceEmpty(Entity itemEnt, Entity storageEnt, Vector2i location) + protected void UpdateOccupied(Entity ent) { - if (!Resolve(storageEnt, ref storageEnt.Comp)) - return false; + ent.Comp.OccupiedGrid.Clear(); + RemoveOccupied(ent.Comp.Grid, ent.Comp.OccupiedGrid); - var validGrid = false; - foreach (var grid in storageEnt.Comp.Grid) + Dirty(ent); + + foreach (var (stent, storedItem) in ent.Comp.StoredItems) { - if (grid.Contains(location)) - { - validGrid = true; - break; - } - } - - if (!validGrid) - return false; - - foreach (var (ent, storedItem) in storageEnt.Comp.StoredItems) - { - if (ent == itemEnt.Owner) + if (!_itemQuery.TryGetComponent(stent, out var itemComp)) continue; - if (!_itemQuery.TryGetComponent(ent, out var itemComp)) - continue; + AddOccupiedEntity(ent, (stent, itemComp), storedItem); + } + } - var adjustedShape = ItemSystem.GetAdjustedItemShape((ent, itemComp), storedItem); - foreach (var box in adjustedShape) + private void AddOccupiedEntity(Entity storageEnt, Entity itemEnt, ItemStorageLocation location) + { + AddOccupied(itemEnt, location, storageEnt.Comp.OccupiedGrid); + + Dirty(storageEnt); + } + + private void AddOccupied(Entity itemEnt, ItemStorageLocation location, Dictionary occupied) + { + var adjustedShape = ItemSystem.GetAdjustedItemShape((itemEnt.Owner, itemEnt.Comp), location); + AddOccupied(adjustedShape, occupied); + } + + private void RemoveOccupied(IReadOnlyList adjustedShape, Dictionary occupied) + { + foreach (var box in adjustedShape) + { + var chunks = new ChunkIndicesEnumerator(box, StorageComponent.ChunkSize); + + while (chunks.MoveNext(out var chunk)) { - if (box.Contains(location)) - return false; + var chunkOrigin = chunk.Value * StorageComponent.ChunkSize; + + var left = Math.Max(box.Left, chunkOrigin.X); + var bottom = Math.Max(box.Bottom, chunkOrigin.Y); + var right = Math.Min(box.Right, chunkOrigin.X + StorageComponent.ChunkSize - 1); + var top = Math.Min(box.Top, chunkOrigin.Y + StorageComponent.ChunkSize - 1); + var existing = occupied.GetValueOrDefault(chunkOrigin, ulong.MaxValue); + + // Unmark all of the tiles that we actually have. + for (var x = left; x <= right; x++) + { + for (var y = bottom; y <= top; y++) + { + var index = new Vector2i(x, y); + var chunkRelative = SharedMapSystem.GetChunkRelative(index, StorageComponent.ChunkSize); + + var flag = SharedMapSystem.ToBitmask(chunkRelative, StorageComponent.ChunkSize); + existing &= ~flag; + } + } + + // My kingdom for collections.marshal + occupied[chunkOrigin] = existing; } } + } - return true; + private void AddOccupied(IReadOnlyList adjustedShape, Dictionary occupied) + { + foreach (var box in adjustedShape) + { + // Reduce dictionary access from every tile to just once per chunk. + // Makes this more complicated but dictionaries are slow af. + // This is how we get savings over IsGridSpaceEmpty. + var chunkEnumerator = new ChunkIndicesEnumerator(box, StorageComponent.ChunkSize); + + while (chunkEnumerator.MoveNext(out var chunk)) + { + var chunkOrigin = chunk.Value * StorageComponent.ChunkSize; + var existing = occupied.GetOrNew(chunkOrigin); + + // Box may not necessarily be in 1 chunk so clamp it. + var left = Math.Max(chunkOrigin.X, box.Left); + var bottom = Math.Max(chunkOrigin.Y, box.Bottom); + var right = Math.Min(chunkOrigin.X + StorageComponent.ChunkSize - 1, box.Right); + var top = Math.Min(chunkOrigin.Y + StorageComponent.ChunkSize - 1, box.Top); + + for (var x = left; x <= right; x++) + { + for (var y = bottom; y <= top; y++) + { + var index = new Vector2i(x, y); + var chunkRelative = SharedMapSystem.GetChunkRelative(index, StorageComponent.ChunkSize); + var flag = SharedMapSystem.ToBitmask(chunkRelative, StorageComponent.ChunkSize); + existing |= flag; + } + } + + occupied[chunkOrigin] = existing; + } + } + } + + private void RemoveOccupiedEntity(Entity storageEnt, Entity itemEnt, ItemStorageLocation location) + { + var adjustedShape = ItemSystem.GetAdjustedItemShape((itemEnt.Owner, itemEnt.Comp), location); + + RemoveOccupied(adjustedShape, storageEnt.Comp.OccupiedGrid); + + Dirty(storageEnt); } /// diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index 17d3fce62d..22ee81279d 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -19,6 +19,14 @@ namespace Content.Shared.Storage { public static string ContainerId = "storagebase"; + public const byte ChunkSize = 8; + + // No datafield because we can just derive it from stored items. + /// + /// Bitmask of occupied tiles + /// + public Dictionary OccupiedGrid = new(); + [ViewVariables] public Container Container = default!; diff --git a/Content.Shared/StoreDiscount/Components/StoreDiscountComponent.cs b/Content.Shared/StoreDiscount/Components/StoreDiscountComponent.cs index 3736b4d423..c0dab4e537 100644 --- a/Content.Shared/StoreDiscount/Components/StoreDiscountComponent.cs +++ b/Content.Shared/StoreDiscount/Components/StoreDiscountComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.StoreDiscount.Components; /// /// Partner-component for adding discounts functionality to StoreSystem using StoreDiscountSystem. /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent] public sealed partial class StoreDiscountComponent : Component { /// diff --git a/Content.Shared/Stunnable/SharedStunSystem.cs b/Content.Shared/Stunnable/SharedStunSystem.cs index 3f20f1b091..fadefd1001 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.cs @@ -26,7 +26,6 @@ namespace Content.Shared.Stunnable; public abstract class SharedStunSystem : EntitySystem { [Dependency] private readonly ActionBlockerSystem _blocker = default!; - [Dependency] private readonly SharedBroadphaseSystem _broadphase = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -52,7 +51,6 @@ public abstract class SharedStunSystem : EntitySystem SubscribeLocalEvent(UpdateCanMove); SubscribeLocalEvent(UpdateCanMove); - SubscribeLocalEvent(OnStunOnContactStartup); SubscribeLocalEvent(OnStunOnContactCollide); // helping people up if they're knocked down @@ -114,12 +112,6 @@ public abstract class SharedStunSystem : EntitySystem _blocker.UpdateCanMove(uid); } - private void OnStunOnContactStartup(Entity ent, ref ComponentStartup args) - { - if (TryComp(ent, out var body)) - _broadphase.RegenerateContacts((ent, body)); - } - private void OnStunOnContactCollide(Entity ent, ref StartCollideEvent args) { if (args.OurFixtureId != ent.Comp.FixtureId) diff --git a/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs b/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs index 9a7ce0d1df..812003aae8 100644 --- a/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs +++ b/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs @@ -122,13 +122,16 @@ namespace Content.Shared.SubFloor private void OnTileChanged(ref TileChangedEvent args) { - if (args.OldTile.IsEmpty) - return; // Nothing is anchored here anyways. + foreach (var change in args.Changes) + { + if (change.OldTile.IsEmpty) + continue; // Nothing is anchored here anyways. - if (args.NewTile.Tile.IsEmpty) - return; // Anything that was here will be unanchored anyways. + if (change.NewTile.IsEmpty) + continue; // Anything that was here will be unanchored anyways. - UpdateTile(args.NewTile.GridUid, args.Entity.Comp, args.NewTile.GridIndices); + UpdateTile(args.Entity, args.Entity.Comp, change.GridIndices); + } } /// diff --git a/Content.Shared/Tabletop/SharedTabletopSystem.cs b/Content.Shared/Tabletop/SharedTabletopSystem.cs index 7a2540b11d..03dd094805 100644 --- a/Content.Shared/Tabletop/SharedTabletopSystem.cs +++ b/Content.Shared/Tabletop/SharedTabletopSystem.cs @@ -5,7 +5,6 @@ using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Tabletop.Components; using Content.Shared.Tabletop.Events; -using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Serialization; @@ -16,8 +15,8 @@ namespace Content.Shared.Tabletop [Dependency] protected readonly ActionBlockerSystem ActionBlockerSystem = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; [Dependency] protected readonly SharedTransformSystem Transforms = default!; - [Dependency] private readonly IMapManager _mapMan = default!; public override void Initialize() { @@ -41,7 +40,7 @@ namespace Content.Shared.Tabletop // Move the entity and dirty it (we use the map ID from the entity so noone can try to be funny and move the item to another map) var transform = EntityManager.GetComponent(moved); - Transforms.SetParent(moved, transform, _mapMan.GetMapEntityId(transform.MapID)); + Transforms.SetParent(moved, transform, _mapSystem.GetMapOrInvalid(transform.MapID)); Transforms.SetLocalPositionNoLerp(moved, msg.Coordinates.Position, transform); } diff --git a/Content.Shared/Tiles/FloorTileAttemptEvent.cs b/Content.Shared/Tiles/FloorTileAttemptEvent.cs index 7d4480f182..4a7dfc3d40 100644 --- a/Content.Shared/Tiles/FloorTileAttemptEvent.cs +++ b/Content.Shared/Tiles/FloorTileAttemptEvent.cs @@ -4,4 +4,4 @@ namespace Content.Shared.Tiles; /// Raised directed on a grid when attempting a floor tile placement. /// [ByRefEvent] -public record struct FloorTileAttemptEvent(bool Cancelled); +public record struct FloorTileAttemptEvent(Vector2i GridIndices, bool Cancelled = false); diff --git a/Content.Shared/Tiles/FloorTileSystem.cs b/Content.Shared/Tiles/FloorTileSystem.cs index 9b78904859..d798fa2473 100644 --- a/Content.Shared/Tiles/FloorTileSystem.cs +++ b/Content.Shared/Tiles/FloorTileSystem.cs @@ -126,14 +126,14 @@ public sealed class FloorTileSystem : EntitySystem if (mapGrid != null) { var gridUid = location.EntityId; + var tile = _map.GetTileRef(gridUid, mapGrid, location); - if (!CanPlaceTile(gridUid, mapGrid, out var reason)) + if (!CanPlaceTile(gridUid, mapGrid, tile.GridIndices, out var reason)) { _popup.PopupClient(reason, args.User, args.User); return; } - var tile = _map.GetTileRef(gridUid, mapGrid, location); var baseTurf = (ContentTileDefinition) _tileDefinitionManager[tile.Tile.TypeId]; if (HasBaseTurf(currentTileDefinition, baseTurf.ID)) @@ -182,12 +182,12 @@ public sealed class FloorTileSystem : EntitySystem _audio.PlayPredicted(placeSound, location, user); } - public bool CanPlaceTile(EntityUid gridUid, MapGridComponent component, [NotNullWhen(false)] out string? reason) + public bool CanPlaceTile(EntityUid gridUid, MapGridComponent component, Vector2i gridIndices, [NotNullWhen(false)] out string? reason) { - var ev = new FloorTileAttemptEvent(); + var ev = new FloorTileAttemptEvent(gridIndices); RaiseLocalEvent(gridUid, ref ev); - if (HasComp(gridUid) || ev.Cancelled) + if (ev.Cancelled) { reason = Loc.GetString("invalid-floor-placement"); return false; diff --git a/Content.Shared/Tiles/ProtectedGridComponent.cs b/Content.Shared/Tiles/ProtectedGridComponent.cs index cf71edbe2b..6b8e8df4ca 100644 --- a/Content.Shared/Tiles/ProtectedGridComponent.cs +++ b/Content.Shared/Tiles/ProtectedGridComponent.cs @@ -5,8 +5,13 @@ namespace Content.Shared.Tiles; /// /// Prevents floor tile updates when attached to a grid. /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(ProtectedGridSystem))] public sealed partial class ProtectedGridComponent : Component { - + /// + /// A bitmask of all the initial tiles on this grid. + /// + [DataField, AutoNetworkedField] + public Dictionary BaseIndices = new(); } diff --git a/Content.Shared/Tiles/ProtectedGridSystem.cs b/Content.Shared/Tiles/ProtectedGridSystem.cs new file mode 100644 index 0000000000..0d6f5b7a6d --- /dev/null +++ b/Content.Shared/Tiles/ProtectedGridSystem.cs @@ -0,0 +1,70 @@ +using System.Linq; +using Robust.Shared.Map.Components; +using Robust.Shared.Map.Enumerators; + +namespace Content.Shared.Tiles; + +public sealed class ProtectedGridSystem : EntitySystem +{ + [Dependency] private readonly SharedMapSystem _map = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnFloorTileAttempt); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + if (!TryComp(ent, out var grid)) + return; + + // Engine default is currently 16x size chunks which means we can't just easily have 64bit flags. + var chunkEnumerator = new ChunkIndicesEnumerator(grid.LocalAABB, 8); + + while (chunkEnumerator.MoveNext(out var chunk)) + { + ulong flag = 0; + + for (var x = 0; x < 8; x++) + { + for (var y = 0; y < 8; y++) + { + var index = new Vector2i(x + chunk.Value.X * 8, y + chunk.Value.Y * 8); + var tile = _map.GetTileRef(ent.Owner, grid, index); + + if (tile.Tile.IsEmpty) + continue; + + var data = SharedMapSystem.ToBitmask(new Vector2i(x, y)); + + flag |= data; + } + } + + if (flag == 0) + continue; + + ent.Comp.BaseIndices[chunk.Value] = flag; + } + + Dirty(ent); + } + + private void OnFloorTileAttempt(Entity ent, ref FloorTileAttemptEvent args) + { + var chunkOrigin = SharedMapSystem.GetChunkIndices(args.GridIndices, 8); + + if (!ent.Comp.BaseIndices.TryGetValue(chunkOrigin, out var data)) + { + args.Cancelled = true; + return; + } + + if (SharedMapSystem.FromBitmask(args.GridIndices, data)) + { + args.Cancelled = true; + } + } +} diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.Welder.cs b/Content.Shared/Tools/Systems/SharedToolSystem.Welder.cs index c3b83460cc..6f3478fdeb 100644 --- a/Content.Shared/Tools/Systems/SharedToolSystem.Welder.cs +++ b/Content.Shared/Tools/Systems/SharedToolSystem.Welder.cs @@ -30,7 +30,7 @@ public abstract partial class SharedToolSystem SubscribeLocalEvent(OnActivateAttempt); } - public virtual void TurnOn(Entity entity, EntityUid? user) + public void TurnOn(Entity entity, EntityUid? user) { if (!SolutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.FuelSolutionName, out var solutionComp, out _)) return; diff --git a/Content.Shared/TurretController/DeployableTurretControllerComponent.cs b/Content.Shared/TurretController/DeployableTurretControllerComponent.cs new file mode 100644 index 0000000000..3bada93413 --- /dev/null +++ b/Content.Shared/TurretController/DeployableTurretControllerComponent.cs @@ -0,0 +1,102 @@ +using Content.Shared.Access; +using Content.Shared.Turrets; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.TurretController; + +/// +/// Attached to entities that can set data on linked turret-based entities +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedDeployableTurretControllerSystem))] +public sealed partial class DeployableTurretControllerComponent : Component +{ + /// + /// The states of the turrets linked to this entity, indexed by their device address. + /// This is used to populate the controller UI with the address and state of linked turrets. + /// + [ViewVariables] + public Dictionary LinkedTurrets = new(); + + /// + /// The last armament state index applied to any linked turrets. + /// Values greater than zero have no additional effect if the linked turrets + /// do not have the + /// + /// + /// -1: Inactive, 0: weapon mode A, 1: weapon mode B, etc. + /// + [DataField, AutoNetworkedField] + public int ArmamentState = -1; + + /// + /// Access level prototypes that are known to the entity. + /// Determines what access permissions can be adjusted. + /// It is also used to populate the controller UI. + /// + [DataField] + public HashSet> AccessLevels = new(); + + /// + /// Access group prototypes that are known to the entity. + /// Determines how access permissions are organized on the controller UI. + /// + [DataField] + public HashSet> AccessGroups = new(); + + /// + /// Sound to play when denying access to the device. + /// + [DataField] + public SoundSpecifier AccessDeniedSound = new SoundPathSpecifier("/Audio/Machines/custom_deny.ogg"); +} + +[Serializable, NetSerializable] +public sealed class DeployableTurretControllerBoundInterfaceState : BoundUserInterfaceState +{ + public Dictionary TurretStateByAddress; + + public DeployableTurretControllerBoundInterfaceState(Dictionary turretStateByAddress) + { + TurretStateByAddress = turretStateByAddress; + } +} + +[Serializable, NetSerializable] +public sealed class DeployableTurretArmamentSettingChangedMessage : BoundUserInterfaceMessage +{ + public int ArmamentState; + + public DeployableTurretArmamentSettingChangedMessage(int armamentState) + { + ArmamentState = armamentState; + } +} + +[Serializable, NetSerializable] +public sealed class DeployableTurretExemptAccessLevelChangedMessage : BoundUserInterfaceMessage +{ + public HashSet> AccessLevels; + public bool Enabled; + + public DeployableTurretExemptAccessLevelChangedMessage(HashSet> accessLevels, bool enabled) + { + AccessLevels = accessLevels; + Enabled = enabled; + } +} + +[Serializable, NetSerializable] +public enum TurretControllerVisuals : byte +{ + ControlPanel, +} + +[Serializable, NetSerializable] +public enum DeployableTurretControllerUiKey : byte +{ + Key, +} diff --git a/Content.Shared/TurretController/SharedDeployableTurretControllerSystem.cs b/Content.Shared/TurretController/SharedDeployableTurretControllerSystem.cs new file mode 100644 index 0000000000..314a98071a --- /dev/null +++ b/Content.Shared/TurretController/SharedDeployableTurretControllerSystem.cs @@ -0,0 +1,96 @@ +using Content.Shared.Access; +using Content.Shared.Access.Systems; +using Content.Shared.Popups; +using Content.Shared.Turrets; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Prototypes; + +namespace Content.Shared.TurretController; + +/// +/// Oversees entities that can change the component values of linked deployable turrets, +/// specifically their armament and access level exemptions, via an associated UI +/// +public abstract partial class SharedDeployableTurretControllerSystem : EntitySystem +{ + [Dependency] private readonly AccessReaderSystem _accessreader = default!; + [Dependency] private readonly TurretTargetSettingsSystem _turretTargetingSettings = default!; + [Dependency] private readonly SharedUserInterfaceSystem _userInterfaceSystem = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + // Handling of client messages + SubscribeLocalEvent(OnArmamentSettingChanged); + SubscribeLocalEvent(OnExemptAccessLevelsChanged); + } + + private void OnArmamentSettingChanged(Entity ent, ref DeployableTurretArmamentSettingChangedMessage args) + { + if (IsUserAllowedAccess(ent, args.Actor)) + ChangeArmamentSetting(ent, args.ArmamentState, args.Actor); + + if (_userInterfaceSystem.TryGetOpenUi(ent.Owner, DeployableTurretControllerUiKey.Key, out var bui)) + bui.Update(); + } + + private void OnExemptAccessLevelsChanged(Entity ent, ref DeployableTurretExemptAccessLevelChangedMessage args) + { + if (IsUserAllowedAccess(ent, args.Actor)) + ChangeExemptAccessLevels(ent, args.AccessLevels, args.Enabled, args.Actor); + + if (_userInterfaceSystem.TryGetOpenUi(ent.Owner, DeployableTurretControllerUiKey.Key, out var bui)) + bui.Update(); + } + + protected virtual void ChangeArmamentSetting(Entity ent, int armamentState, EntityUid? user = null) + { + ent.Comp.ArmamentState = armamentState; + Dirty(ent); + + _appearance.SetData(ent, TurretControllerVisuals.ControlPanel, armamentState); + + // Linked turrets are updated on the server side + } + + protected virtual void ChangeExemptAccessLevels( + Entity ent, + HashSet> exemptions, + bool enabled, + EntityUid? user = null + ) + { + // Update the controller + if (!TryComp(ent, out var targetSettings)) + return; + + var controller = new Entity(ent, targetSettings); + + foreach (var accessLevel in exemptions) + { + if (!ent.Comp.AccessLevels.Contains(accessLevel)) + continue; + + _turretTargetingSettings.SetAccessLevelExemption(controller, accessLevel, enabled); + } + + Dirty(controller); + + // Linked turrets are updated on the server side + } + + public bool IsUserAllowedAccess(Entity ent, EntityUid user) + { + if (_accessreader.IsAllowed(user, ent)) + return true; + + _popup.PopupClient(Loc.GetString("turret-controls-access-denied"), ent, user); + _audio.PlayPredicted(ent.Comp.AccessDeniedSound, ent, user); + + return false; + } +} diff --git a/Content.Shared/Turrets/TurretTargetSettingsSystem.cs b/Content.Shared/Turrets/TurretTargetSettingsSystem.cs index 56f60e0e69..3a8edc9955 100644 --- a/Content.Shared/Turrets/TurretTargetSettingsSystem.cs +++ b/Content.Shared/Turrets/TurretTargetSettingsSystem.cs @@ -23,13 +23,17 @@ public sealed partial class TurretTargetSettingsSystem : EntitySystem /// The entity and its /// The proto ID for the access level /// Set 'true' to add the exemption, or 'false' to remove it + /// Set 'true' to dirty the component [PublicAPI] - public void SetAccessLevelExemption(Entity ent, ProtoId exemption, bool enabled) + public void SetAccessLevelExemption(Entity ent, ProtoId exemption, bool enabled, bool dirty = true) { if (enabled) ent.Comp.ExemptAccessLevels.Add(exemption); else ent.Comp.ExemptAccessLevels.Remove(exemption); + + if (dirty) + Dirty(ent); } /// @@ -42,7 +46,9 @@ public sealed partial class TurretTargetSettingsSystem : EntitySystem public void SetAccessLevelExemptions(Entity ent, ICollection> exemptions, bool enabled) { foreach (var exemption in exemptions) - SetAccessLevelExemption(ent, exemption, enabled); + SetAccessLevelExemption(ent, exemption, enabled, false); + + Dirty(ent); } /// diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index f248d07d16..ccd2c969cc 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -62,7 +62,7 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] protected readonly SharedPopupSystem PopupSystem = default!; [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; - [Dependency] private readonly StaminaSystem _stamina = default!; + [Dependency] private readonly SharedStaminaSystem _stamina = default!; [Dependency] private readonly TagSystem _tagSystem = default!; // Sunrise-edit private const int AttackMask = (int) (CollisionGroup.MobMask | CollisionGroup.Opaque); diff --git a/Content.Shared/Weapons/Ranged/Components/AmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/AmmoProviderComponent.cs index 9a7fdc07de..8e2f767f4d 100644 --- a/Content.Shared/Weapons/Ranged/Components/AmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/AmmoProviderComponent.cs @@ -3,4 +3,4 @@ using Robust.Shared.GameStates; namespace Content.Shared.Weapons.Ranged.Components; [NetworkedComponent] -public abstract partial class AmmoProviderComponent : Component {} +public abstract partial class AmmoProviderComponent : Component; diff --git a/Content.Shared/Weapons/Ranged/Components/ClothingSlotAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/ClothingSlotAmmoProviderComponent.cs index e363fc9fe1..418e712c7b 100644 --- a/Content.Shared/Weapons/Ranged/Components/ClothingSlotAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/ClothingSlotAmmoProviderComponent.cs @@ -1,6 +1,4 @@ -using Content.Shared.Inventory; using Content.Shared.Weapons.Ranged.Systems; -using Content.Shared.Whitelist; using Robust.Shared.GameStates; namespace Content.Shared.Weapons.Ranged.Components; @@ -10,17 +8,4 @@ namespace Content.Shared.Weapons.Ranged.Components; /// to an entity in the user's clothing slot. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedGunSystem))] -public sealed partial class ClothingSlotAmmoProviderComponent : AmmoProviderComponent -{ - /// - /// The slot that the ammo provider should be located in. - /// - [DataField("targetSlot", required: true)] - public SlotFlags TargetSlot; - - /// - /// A whitelist for determining whether or not an ammo provider is valid. - /// - [DataField("providerWhitelist")] - public EntityWhitelist? ProviderWhitelist; -} +public sealed partial class ClothingSlotAmmoProviderComponent : AmmoProviderComponent; diff --git a/Content.Shared/Weapons/Ranged/Components/GunSpreadModifierComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunSpreadModifierComponent.cs new file mode 100644 index 0000000000..7f889f57f6 --- /dev/null +++ b/Content.Shared/Weapons/Ranged/Components/GunSpreadModifierComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Ranged.Components; + +/// +/// This component modifies the spread of the gun it is attached to. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class GunSpreadModifierComponent: Component +{ + /// + /// A scalar value multiplied by the spread built into the ammo itself. + /// + [DataField, AutoNetworkedField] + public float Spread = 1; +} diff --git a/Content.Shared/Weapons/Ranged/Systems/GunSpreadModifierSystem.cs b/Content.Shared/Weapons/Ranged/Systems/GunSpreadModifierSystem.cs new file mode 100644 index 0000000000..84d8dd2cf4 --- /dev/null +++ b/Content.Shared/Weapons/Ranged/Systems/GunSpreadModifierSystem.cs @@ -0,0 +1,30 @@ +using Content.Shared.Examine; +using Content.Shared.Weapons.Ranged.Components; +using Content.Shared.Weapons.Ranged.Events; + +namespace Content.Shared.Weapons.Ranged.Systems; + + +public sealed class GunSpreadModifierSystem: EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnGunGetAmmoSpread); + SubscribeLocalEvent(OnExamine); + } + + private void OnGunGetAmmoSpread(EntityUid uid, GunSpreadModifierComponent comp, ref GunGetAmmoSpreadEvent args) + { + args.Spread *= comp.Spread; + } + + private void OnExamine(EntityUid uid, GunSpreadModifierComponent comp, ExaminedEvent args) + { + var percentage = Math.Round(comp.Spread * 100); + var loc = percentage < 100 ? "examine-gun-spread-modifier-reduction" : "examine-gun-spread-modifier-increase"; + percentage = percentage < 100 ? 100 - percentage : percentage - 100; + var msg = Loc.GetString(loc, ("percentage", percentage)); + args.PushMarkup(msg); + } +} diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs index 7ef57df539..12bbe0c312 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs @@ -1,5 +1,4 @@ -using System.Diagnostics.CodeAnalysis; -using Content.Shared.Inventory; +using Content.Shared.Containers; using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; @@ -7,8 +6,6 @@ namespace Content.Shared.Weapons.Ranged.Systems; public partial class SharedGunSystem { - [Dependency] private readonly InventorySystem _inventory = default!; - private void InitializeClothing() { SubscribeLocalEvent(OnClothingTakeAmmo); @@ -17,38 +14,21 @@ public partial class SharedGunSystem private void OnClothingTakeAmmo(EntityUid uid, ClothingSlotAmmoProviderComponent component, TakeAmmoEvent args) { - if (!TryGetClothingSlotEntity(uid, component, out var entity)) + var getConnectedContainerEvent = new GetConnectedContainerEvent(); + RaiseLocalEvent(uid, ref getConnectedContainerEvent); + if(!getConnectedContainerEvent.ContainerEntity.HasValue) return; - RaiseLocalEvent(entity.Value, args); + + RaiseLocalEvent(getConnectedContainerEvent.ContainerEntity.Value, args); } private void OnClothingAmmoCount(EntityUid uid, ClothingSlotAmmoProviderComponent component, ref GetAmmoCountEvent args) { - if (!TryGetClothingSlotEntity(uid, component, out var entity)) + var getConnectedContainerEvent = new GetConnectedContainerEvent(); + RaiseLocalEvent(uid, ref getConnectedContainerEvent); + if (!getConnectedContainerEvent.ContainerEntity.HasValue) return; - RaiseLocalEvent(entity.Value, ref args); - } - private bool TryGetClothingSlotEntity(EntityUid uid, ClothingSlotAmmoProviderComponent component, [NotNullWhen(true)] out EntityUid? slotEntity) - { - slotEntity = null; - - if (!Containers.TryGetContainingContainer((uid, null, null), out var container)) - return false; - var user = container.Owner; - - if (!_inventory.TryGetContainerSlotEnumerator(user, out var enumerator, component.TargetSlot)) - return false; - - while (enumerator.NextItem(out var item)) - { - if (_whitelistSystem.IsWhitelistFailOrNull(component.ProviderWhitelist, item)) - continue; - - slotEntity = item; - return true; - } - - return false; + RaiseLocalEvent(getConnectedContainerEvent.ContainerEntity.Value, ref args); } } diff --git a/Content.Shared/Weapons/Ranged/Upgrades/GunUpgradeSystem.cs b/Content.Shared/Weapons/Ranged/Upgrades/GunUpgradeSystem.cs index b84446fea4..fb9b4a782b 100644 --- a/Content.Shared/Weapons/Ranged/Upgrades/GunUpgradeSystem.cs +++ b/Content.Shared/Weapons/Ranged/Upgrades/GunUpgradeSystem.cs @@ -89,7 +89,7 @@ public sealed class GunUpgradeSystem : EntitySystem _gun.RefreshModifiers(ent.Owner); args.Handled = _container.Insert(args.Used, _container.GetContainer(ent, ent.Comp.UpgradesContainerId)); - _adminLog.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(args.Used):player} inserted gun upgrade {ToPrettyString(args.Used)} into {ToPrettyString(ent.Owner)}."); + _adminLog.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(args.User):player} inserted gun upgrade {ToPrettyString(args.Used)} into {ToPrettyString(ent.Owner)}."); } private void OnFireRateRefresh(Entity ent, ref GunRefreshModifiersEvent args) diff --git a/Content.Shared/Whitelist/EntityWhitelistSystem.cs b/Content.Shared/Whitelist/EntityWhitelistSystem.cs index 581b0edb4a..22a2c547c4 100644 --- a/Content.Shared/Whitelist/EntityWhitelistSystem.cs +++ b/Content.Shared/Whitelist/EntityWhitelistSystem.cs @@ -7,7 +7,6 @@ namespace Content.Shared.Whitelist; public sealed class EntityWhitelistSystem : EntitySystem { - [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly TagSystem _tag = default!; private EntityQuery _itemQuery; @@ -198,8 +197,8 @@ public sealed class EntityWhitelistSystem : EntitySystem foreach (var name in input) { - var availability = _factory.GetComponentAvailability(name); - if (_factory.TryGetRegistration(name, out var registration) + var availability = Factory.GetComponentAvailability(name); + if (Factory.TryGetRegistration(name, out var registration) && availability == ComponentAvailability.Available) { list.Add(registration); diff --git a/Content.Shared/Wieldable/Components/WieldingBlockerComponent.cs b/Content.Shared/Wieldable/Components/WieldingBlockerComponent.cs new file mode 100644 index 0000000000..320322d708 --- /dev/null +++ b/Content.Shared/Wieldable/Components/WieldingBlockerComponent.cs @@ -0,0 +1,23 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Wieldable.Components; + +/// +/// Blocks an entity from wielding items. +/// When added to an item, it will block wielding when held in hand or equipped. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class WieldingBlockerComponent : Component +{ + /// + /// Block wielding when this item is held in a hand? + /// + [DataField, AutoNetworkedField] + public bool BlockInHand = true; + + /// + /// Block wielding when this item is equipped? + /// + [DataField, AutoNetworkedField] + public bool BlockEquipped = true; +} diff --git a/Content.Shared/Wieldable/Events.cs b/Content.Shared/Wieldable/Events.cs index fe7e084c02..f682ce8b80 100644 --- a/Content.Shared/Wieldable/Events.cs +++ b/Content.Shared/Wieldable/Events.cs @@ -1,3 +1,5 @@ +using Content.Shared.Inventory; + namespace Content.Shared.Wieldable; /// @@ -14,12 +16,18 @@ public readonly record struct ItemWieldedEvent(EntityUid User); public readonly record struct ItemUnwieldedEvent(EntityUid User, bool Force); /// -/// Raised directed on an item before a user tries to wield it. +/// Raised directed on an user and all the items in their inventory and hands before they wield an item. /// If this event is cancelled wielding will not happen. /// [ByRefEvent] -public record struct WieldAttemptEvent(EntityUid User, bool Cancelled = false) +public record struct WieldAttemptEvent(EntityUid User, EntityUid Wielded, bool Cancelled = false) : IInventoryRelayEvent { + /// + /// Popup message for the user to tell them why they cannot wield if Cancelled + /// + public string? Message; + + SlotFlags IInventoryRelayEvent.TargetSlots => SlotFlags.WITHOUT_POCKET; public void Cancel() { Cancelled = true; @@ -27,15 +35,21 @@ public record struct WieldAttemptEvent(EntityUid User, bool Cancelled = false) } /// -/// Raised directed on an item before a user tries to stop wielding it willingly. +/// Raised directed on an user and all the items in their inventory and hands before they unwield an item willingly. /// If this event is cancelled unwielding will not happen. /// /// /// This event is not raised if the user is forced to unwield the item. /// [ByRefEvent] -public record struct UnwieldAttemptEvent(EntityUid User, bool Cancelled = false) +public record struct UnwieldAttemptEvent(EntityUid User, EntityUid Wielded, bool Cancelled = false) : IInventoryRelayEvent { + /// + /// Popup message for the user to tell them why they cannot unwield if Cancelled + /// + public string? Message; + + SlotFlags IInventoryRelayEvent.TargetSlots => SlotFlags.WITHOUT_POCKET; public void Cancel() { Cancelled = true; diff --git a/Content.Shared/Wieldable/SharedWieldableSystem.cs b/Content.Shared/Wieldable/SharedWieldableSystem.cs index 0ba50fe13b..8607b9b0fe 100644 --- a/Content.Shared/Wieldable/SharedWieldableSystem.cs +++ b/Content.Shared/Wieldable/SharedWieldableSystem.cs @@ -7,6 +7,8 @@ using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.IdentityManagement; using Content.Shared.Interaction.Events; +using Content.Shared.Inventory; +using Content.Shared.Inventory.Events; using Content.Shared.Inventory.VirtualItem; using Content.Shared.Item; using Content.Shared.Movement.Components; @@ -23,7 +25,6 @@ using Content.Shared.Weapons.Ranged.Systems; using Content.Shared.Wieldable.Components; using Robust.Shared.Audio.Systems; using Robust.Shared.Collections; -using Robust.Shared.Network; using Robust.Shared.Timing; namespace Content.Shared.Wieldable; @@ -53,6 +54,12 @@ public abstract class SharedWieldableSystem : EntitySystem SubscribeLocalEvent>(AddToggleWieldVerb); SubscribeLocalEvent(OnDeselectWieldable); + SubscribeLocalEvent(OnBlockerEquipped); + SubscribeLocalEvent(OnBlockerEquippedHand); + SubscribeLocalEvent(OnBlockerAttempt); + SubscribeLocalEvent>(OnBlockerAttempt); + SubscribeLocalEvent>(OnBlockerAttempt); + SubscribeLocalEvent(OnMeleeAttempt); SubscribeLocalEvent(OnExamineRequires); SubscribeLocalEvent(OnShootAttempt); @@ -206,14 +213,55 @@ public abstract class SharedWieldableSystem : EntitySystem // Sunrise-End if (!component.Wielded) - args.Handled = TryWield(uid, component, args.User); + { + TryWield(uid, component, args.User); + args.Handled = true; // always mark as handled or we will cycle ammo when wielding is blocked + } else if (component.UnwieldOnUse) - args.Handled = TryUnwield(uid, component, args.User); + { + TryUnwield(uid, component, args.User); + args.Handled = true; + } if (HasComp(uid) && !component.UseDelayOnWield) args.ApplyDelay = false; } + private void OnBlockerEquipped(Entity ent, ref GotEquippedEvent args) + { + if (ent.Comp.BlockEquipped) + UnwieldAll(args.Equipee, force: true); + } + + private void OnBlockerEquippedHand(Entity ent, ref GotEquippedHandEvent args) + { + if (ent.Comp.BlockInHand) + UnwieldAll(args.User, force: true); + } + + private void OnBlockerAttempt(Entity ent, ref InventoryRelayedEvent args) + { + if (ent.Comp.BlockEquipped) + { + args.Args.Message = Loc.GetString("wieldable-component-blocked-wield", ("blocker", ent.Owner), ("item", args.Args.Wielded)); + args.Args.Cancelled = true; + } + } + + private void OnBlockerAttempt(Entity ent, ref HeldRelayedEvent args) + { + if (ent.Comp.BlockInHand) + { + args.Args.Message = Loc.GetString("wieldable-component-blocked-wield", ("blocker", ent.Owner), ("item", args.Args.Wielded)); + args.Args.Cancelled = true; + } + } + + private void OnBlockerAttempt(Entity ent, ref WieldAttemptEvent args) + { + args.Cancelled = true; + } + public bool CanWield(EntityUid uid, WieldableComponent component, EntityUid user, bool quiet = false) { // Do they have enough hands free? @@ -262,11 +310,15 @@ public abstract class SharedWieldableSystem : EntitySystem return false; } - var attemptEv = new WieldAttemptEvent(user); - RaiseLocalEvent(used, ref attemptEv); + var attemptEv = new WieldAttemptEvent(user, used); + RaiseLocalEvent(user, ref attemptEv); if (attemptEv.Cancelled) + { + if (attemptEv.Message != null) + _popup.PopupClient(attemptEv.Message, user, user); return false; + } if (TryComp(used, out var item)) { @@ -318,11 +370,15 @@ public abstract class SharedWieldableSystem : EntitySystem if (!force) { - var attemptEv = new UnwieldAttemptEvent(user); - RaiseLocalEvent(used, ref attemptEv); + var attemptEv = new UnwieldAttemptEvent(user, used); + RaiseLocalEvent(user, ref attemptEv); if (attemptEv.Cancelled) + { + if (attemptEv.Message != null) + _popup.PopupClient(attemptEv.Message, user, user); return false; + } } SetWielded((used, component), false); @@ -332,6 +388,19 @@ public abstract class SharedWieldableSystem : EntitySystem return true; } + /// + /// Makes an entity unwield all currently wielded items. + /// + /// If this is true we will bypass UnwieldAttemptEvent. + public void UnwieldAll(Entity wielder, bool force = false) + { + foreach (var held in _hands.EnumerateHeld(wielder.Owner, wielder.Comp)) + { + if (TryComp(held, out var wieldable)) + TryUnwield(held, wieldable, wielder, force); + } + } + /// /// Sets wielded without doing any checks. /// diff --git a/Content.Shared/Xenoarchaeology/Artifact/Prototypes/XenoArchTriggerPrototype.cs b/Content.Shared/Xenoarchaeology/Artifact/Prototypes/XenoArchTriggerPrototype.cs index 74d3895234..fc59b966aa 100644 --- a/Content.Shared/Xenoarchaeology/Artifact/Prototypes/XenoArchTriggerPrototype.cs +++ b/Content.Shared/Xenoarchaeology/Artifact/Prototypes/XenoArchTriggerPrototype.cs @@ -11,7 +11,7 @@ public sealed partial class XenoArchTriggerPrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Tip for user on how to activate this trigger. diff --git a/Directory.Packages.props b/Directory.Packages.props index 69b5ad1945..d18f894bf7 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -7,6 +7,7 @@ + all @@ -18,4 +19,4 @@ - \ No newline at end of file + diff --git a/Resources/Audio/Effects/Cargo/attributions.yml b/Resources/Audio/Effects/Cargo/attributions.yml index c3f950f9b5..f7d6c0eede 100644 --- a/Resources/Audio/Effects/Cargo/attributions.yml +++ b/Resources/Audio/Effects/Cargo/attributions.yml @@ -5,3 +5,9 @@ copyright: '"buzz_sigh.ogg", "buzz_two.ogg", and "ping.ogg" by /tg/station' license: CC-BY-SA-3.0 source: https://github.com/tgstation/tgstation/tree/d6f15fb717e7c047f8befefabb4b7735b3c39a84/sound + +- files: + - beep.ogg + copyright: 'Store Scanner Beep by zerolagtime' + license: CC0-1.0 + source: https://freesound.org/people/zerolagtime/sounds/144418/ diff --git a/Resources/Audio/Effects/Cargo/beep.ogg b/Resources/Audio/Effects/Cargo/beep.ogg new file mode 100644 index 0000000000..48a0444d11 Binary files /dev/null and b/Resources/Audio/Effects/Cargo/beep.ogg differ diff --git a/Resources/Audio/Effects/Fluids/attributions.yml b/Resources/Audio/Effects/Fluids/attributions.yml index aebe3e3c3f..c23a5f5c7f 100644 --- a/Resources/Audio/Effects/Fluids/attributions.yml +++ b/Resources/Audio/Effects/Fluids/attributions.yml @@ -22,3 +22,13 @@ license: "CC-BY-SA-3.0" copyright: "Created by the_toilet_guy" source: "https://freesound.org/people/the_toilet_guy/sounds/98770/" + +- files: ["vacuum-cleaner-fast.ogg"] + license: "CC0-1.0" + copyright: "Created by kyles" + source: "https://freesound.org/people/kyles/sounds/637927/" + +- files: ["vacuum-cleaner-fast.ogg"] + license: "CC0-1.0" + copyright: "Created by BrendanSound12 mixed by Fildrance" + source: "https://freesound.org/people/BrendanSound12/sounds/445165/" diff --git a/Resources/Audio/Effects/Fluids/vacuum-cleaner-fast.ogg b/Resources/Audio/Effects/Fluids/vacuum-cleaner-fast.ogg new file mode 100644 index 0000000000..bf20520b23 Binary files /dev/null and b/Resources/Audio/Effects/Fluids/vacuum-cleaner-fast.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/attributions.yml b/Resources/Audio/Effects/Footsteps/attributions.yml index 7af75169b2..1a4bcd3bc4 100644 --- a/Resources/Audio/Effects/Footsteps/attributions.yml +++ b/Resources/Audio/Effects/Footsteps/attributions.yml @@ -22,9 +22,32 @@ - files: - slime1.ogg - license: "CC-BY-SA-3.0" - copyright: "Taken from https://github.com/tgstation/tgstation" - source: "https://github.com/nero1024/tgstation/blob/83ccc939a20489de8ab81cb47e6f8e84c490adc2/sound/effects/footstep/slime1.ogg" + - slime2.ogg + - slime3.ogg + - slime4.ogg + license: "CC0-1.0" + copyright: "Created by SoundDesignForYou on freesound.org, modified by EmoGarbage404 (github)" + source: "https://freesound.org/people/SoundDesignForYou/packs/36178/" + +- files: + - puddle1.ogg + - puddle2.ogg + - puddle3.ogg + - puddle4.ogg + - puddle5.ogg + license: "CC-BY-NC-4.0" + copyright: "Created by Robinhood76 on freesound.org, modified by EmoGarbage404 (github)" + source: "https://freesound.org/people/Robinhood76/sounds/158481/" + +- files: + - blood1.ogg + - blood2.ogg + - blood3.ogg + - blood4.ogg + - blood5.ogg + license: "CC-BY-NC-4.0" + copyright: "Created by Robinhood76 on freesound.org, modified by EmoGarbage404 (github)" + source: "https://freesound.org/people/Robinhood76/sounds/98731/" - files: - clownstepspider1.ogg @@ -79,6 +102,13 @@ copyright: "Taken from IENBA freesound.org and modified by https://github.com/MilenVolf. borgwalk2 clipped my metalgearsloth." source: "https://freesound.org/people/IENBA/sounds/697379/" +- files: + - borgwalk3.ogg + - borgwalk4.ogg + license: "CC-BY-SA-4.0" + copyright: "Modified version from borgwalk1 and borgwalk2 by https://github.com/Samuka-C." + source: "https://github.com/space-wizards/space-station-14/pull/36867" + - files: - heelsclack1.ogg - heelsclack2.ogg diff --git a/Resources/Audio/Effects/Footsteps/bells1.ogg b/Resources/Audio/Effects/Footsteps/bells1.ogg index 21638a00b0..c43e24dd92 100644 Binary files a/Resources/Audio/Effects/Footsteps/bells1.ogg and b/Resources/Audio/Effects/Footsteps/bells1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/bells3.ogg b/Resources/Audio/Effects/Footsteps/bells3.ogg index c2ed129bfa..68e228157f 100644 Binary files a/Resources/Audio/Effects/Footsteps/bells3.ogg and b/Resources/Audio/Effects/Footsteps/bells3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/bells4.ogg b/Resources/Audio/Effects/Footsteps/bells4.ogg index bb57c33f79..d770299280 100644 Binary files a/Resources/Audio/Effects/Footsteps/bells4.ogg and b/Resources/Audio/Effects/Footsteps/bells4.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/bells5.ogg b/Resources/Audio/Effects/Footsteps/bells5.ogg index b13dba1e43..4b0d5133b3 100644 Binary files a/Resources/Audio/Effects/Footsteps/bells5.ogg and b/Resources/Audio/Effects/Footsteps/bells5.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/blood1.ogg b/Resources/Audio/Effects/Footsteps/blood1.ogg new file mode 100644 index 0000000000..54ae0cd1d9 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/blood1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/blood2.ogg b/Resources/Audio/Effects/Footsteps/blood2.ogg new file mode 100644 index 0000000000..ef41ad802d Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/blood2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/blood3.ogg b/Resources/Audio/Effects/Footsteps/blood3.ogg new file mode 100644 index 0000000000..a12aefcf86 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/blood3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/blood4.ogg b/Resources/Audio/Effects/Footsteps/blood4.ogg new file mode 100644 index 0000000000..36d447a2c0 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/blood4.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/blood5.ogg b/Resources/Audio/Effects/Footsteps/blood5.ogg new file mode 100644 index 0000000000..e1e58a276a Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/blood5.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/borgwalk3.ogg b/Resources/Audio/Effects/Footsteps/borgwalk3.ogg new file mode 100644 index 0000000000..1d4549a9cb Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/borgwalk3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/borgwalk4.ogg b/Resources/Audio/Effects/Footsteps/borgwalk4.ogg new file mode 100644 index 0000000000..3ed0581d27 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/borgwalk4.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/clownspiderstep1.ogg b/Resources/Audio/Effects/Footsteps/clownspiderstep1.ogg index 4ef8d8be8e..66e2eecf97 100644 Binary files a/Resources/Audio/Effects/Footsteps/clownspiderstep1.ogg and b/Resources/Audio/Effects/Footsteps/clownspiderstep1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/clownspiderstep2.ogg b/Resources/Audio/Effects/Footsteps/clownspiderstep2.ogg index 7e607b492a..1d47185886 100644 Binary files a/Resources/Audio/Effects/Footsteps/clownspiderstep2.ogg and b/Resources/Audio/Effects/Footsteps/clownspiderstep2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/clownstep1.ogg b/Resources/Audio/Effects/Footsteps/clownstep1.ogg index 24ded92d9e..81a59f6d50 100644 Binary files a/Resources/Audio/Effects/Footsteps/clownstep1.ogg and b/Resources/Audio/Effects/Footsteps/clownstep1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/clownstep2.ogg b/Resources/Audio/Effects/Footsteps/clownstep2.ogg index 5783f3a60d..cbf979395a 100644 Binary files a/Resources/Audio/Effects/Footsteps/clownstep2.ogg and b/Resources/Audio/Effects/Footsteps/clownstep2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/grass1.ogg b/Resources/Audio/Effects/Footsteps/grass1.ogg index a805d8a414..51a49d1516 100644 Binary files a/Resources/Audio/Effects/Footsteps/grass1.ogg and b/Resources/Audio/Effects/Footsteps/grass1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/grass2.ogg b/Resources/Audio/Effects/Footsteps/grass2.ogg index 1e9eb579b0..f154028ea7 100644 Binary files a/Resources/Audio/Effects/Footsteps/grass2.ogg and b/Resources/Audio/Effects/Footsteps/grass2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/hull1.ogg b/Resources/Audio/Effects/Footsteps/hull1.ogg index 058fcd7329..28193bb4ad 100644 Binary files a/Resources/Audio/Effects/Footsteps/hull1.ogg and b/Resources/Audio/Effects/Footsteps/hull1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/hull2.ogg b/Resources/Audio/Effects/Footsteps/hull2.ogg index 6bda53fe6a..f82902cb88 100644 Binary files a/Resources/Audio/Effects/Footsteps/hull2.ogg and b/Resources/Audio/Effects/Footsteps/hull2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/jesterstep2.ogg b/Resources/Audio/Effects/Footsteps/jesterstep2.ogg index f596209ccb..8912e79834 100644 Binary files a/Resources/Audio/Effects/Footsteps/jesterstep2.ogg and b/Resources/Audio/Effects/Footsteps/jesterstep2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/puddle1.ogg b/Resources/Audio/Effects/Footsteps/puddle1.ogg new file mode 100644 index 0000000000..e89af30bb3 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/puddle1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/puddle2.ogg b/Resources/Audio/Effects/Footsteps/puddle2.ogg new file mode 100644 index 0000000000..554d10f125 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/puddle2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/puddle3.ogg b/Resources/Audio/Effects/Footsteps/puddle3.ogg new file mode 100644 index 0000000000..cacc81f5f9 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/puddle3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/puddle4.ogg b/Resources/Audio/Effects/Footsteps/puddle4.ogg new file mode 100644 index 0000000000..818095da04 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/puddle4.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/puddle5.ogg b/Resources/Audio/Effects/Footsteps/puddle5.ogg new file mode 100644 index 0000000000..a35652b0d0 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/puddle5.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/slime1.ogg b/Resources/Audio/Effects/Footsteps/slime1.ogg index 938187d4c0..ffe0dca9dd 100644 Binary files a/Resources/Audio/Effects/Footsteps/slime1.ogg and b/Resources/Audio/Effects/Footsteps/slime1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/slime2.ogg b/Resources/Audio/Effects/Footsteps/slime2.ogg new file mode 100644 index 0000000000..23cda1cf05 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/slime2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/slime3.ogg b/Resources/Audio/Effects/Footsteps/slime3.ogg new file mode 100644 index 0000000000..7485101a46 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/slime3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/slime4.ogg b/Resources/Audio/Effects/Footsteps/slime4.ogg new file mode 100644 index 0000000000..cd859d2636 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/slime4.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/snake3.ogg b/Resources/Audio/Effects/Footsteps/snake3.ogg index a1640b2be5..50353e6559 100644 Binary files a/Resources/Audio/Effects/Footsteps/snake3.ogg and b/Resources/Audio/Effects/Footsteps/snake3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/snowstep1.ogg b/Resources/Audio/Effects/Footsteps/snowstep1.ogg index f37ba1c5ee..08166f9fd8 100644 Binary files a/Resources/Audio/Effects/Footsteps/snowstep1.ogg and b/Resources/Audio/Effects/Footsteps/snowstep1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/snowstep2.ogg b/Resources/Audio/Effects/Footsteps/snowstep2.ogg index 18ad9c1df8..52378f287b 100644 Binary files a/Resources/Audio/Effects/Footsteps/snowstep2.ogg and b/Resources/Audio/Effects/Footsteps/snowstep2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/snowstep3.ogg b/Resources/Audio/Effects/Footsteps/snowstep3.ogg index de3a9e74fd..25a1568c15 100644 Binary files a/Resources/Audio/Effects/Footsteps/snowstep3.ogg and b/Resources/Audio/Effects/Footsteps/snowstep3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/snowstep4.ogg b/Resources/Audio/Effects/Footsteps/snowstep4.ogg index 80621af54e..95fad1970d 100644 Binary files a/Resources/Audio/Effects/Footsteps/snowstep4.ogg and b/Resources/Audio/Effects/Footsteps/snowstep4.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/sound_mecha_powerloader_step.ogg b/Resources/Audio/Effects/Footsteps/sound_mecha_powerloader_step.ogg new file mode 100644 index 0000000000..128f470dac Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/sound_mecha_powerloader_step.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/tile4.ogg b/Resources/Audio/Effects/Footsteps/tile4.ogg deleted file mode 100644 index 4d8f00ca9c..0000000000 Binary files a/Resources/Audio/Effects/Footsteps/tile4.ogg and /dev/null differ diff --git a/Resources/Audio/Effects/Footsteps/wood3.ogg b/Resources/Audio/Effects/Footsteps/wood3.ogg index e74769b2d4..83c777b340 100644 Binary files a/Resources/Audio/Effects/Footsteps/wood3.ogg and b/Resources/Audio/Effects/Footsteps/wood3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/wood4.ogg b/Resources/Audio/Effects/Footsteps/wood4.ogg index b35ee69a45..31b6b81936 100644 Binary files a/Resources/Audio/Effects/Footsteps/wood4.ogg and b/Resources/Audio/Effects/Footsteps/wood4.ogg differ diff --git a/Resources/Audio/Machines/attributions.yml b/Resources/Audio/Machines/attributions.yml index e3be07d514..c44577e8b1 100644 --- a/Resources/Audio/Machines/attributions.yml +++ b/Resources/Audio/Machines/attributions.yml @@ -178,6 +178,20 @@ copyright: "by Ko4erga" source: "https://github.com/space-wizards/space-station-14/pull/30431" +- files: + - robotscream_1.ogg + - robotscream_2.ogg + - robotscream_3.ogg + - robotscream_4.ogg + - robotscream_5.ogg + - robotscream_6.ogg + - robotscream_7.ogg + - robotscream_8.ogg + - robotscream_9.ogg + license: "CC-BY-SA-3.0" + copyright: "/tg/station and modified by AsnDen" + source: "https://github.com/tgstation/tgstation/commit/3d049e69fe71a0be2133005e65ea469135d648c8" + - files: ["double_ring.ogg"] license: "CC0-1.0" copyright: "Created by fspera, converted to OGG and modified by chromiumboy." diff --git a/Resources/Audio/Machines/robotscream_1.ogg b/Resources/Audio/Machines/robotscream_1.ogg new file mode 100644 index 0000000000..4da5563fe7 Binary files /dev/null and b/Resources/Audio/Machines/robotscream_1.ogg differ diff --git a/Resources/Audio/Machines/robotscream_2.ogg b/Resources/Audio/Machines/robotscream_2.ogg new file mode 100644 index 0000000000..3dfcce11ae Binary files /dev/null and b/Resources/Audio/Machines/robotscream_2.ogg differ diff --git a/Resources/Audio/Machines/robotscream_3.ogg b/Resources/Audio/Machines/robotscream_3.ogg new file mode 100644 index 0000000000..9f37b5b360 Binary files /dev/null and b/Resources/Audio/Machines/robotscream_3.ogg differ diff --git a/Resources/Audio/Machines/robotscream_4.ogg b/Resources/Audio/Machines/robotscream_4.ogg new file mode 100644 index 0000000000..f561fabdf1 Binary files /dev/null and b/Resources/Audio/Machines/robotscream_4.ogg differ diff --git a/Resources/Audio/Machines/robotscream_5.ogg b/Resources/Audio/Machines/robotscream_5.ogg new file mode 100644 index 0000000000..4397c2a4ff Binary files /dev/null and b/Resources/Audio/Machines/robotscream_5.ogg differ diff --git a/Resources/Audio/Machines/robotscream_6.ogg b/Resources/Audio/Machines/robotscream_6.ogg new file mode 100644 index 0000000000..a654ce11c0 Binary files /dev/null and b/Resources/Audio/Machines/robotscream_6.ogg differ diff --git a/Resources/Audio/Machines/robotscream_7.ogg b/Resources/Audio/Machines/robotscream_7.ogg new file mode 100644 index 0000000000..24ac53ec34 Binary files /dev/null and b/Resources/Audio/Machines/robotscream_7.ogg differ diff --git a/Resources/Audio/Machines/robotscream_8.ogg b/Resources/Audio/Machines/robotscream_8.ogg new file mode 100644 index 0000000000..42093489d2 Binary files /dev/null and b/Resources/Audio/Machines/robotscream_8.ogg differ diff --git a/Resources/Audio/Machines/robotscream_9.ogg b/Resources/Audio/Machines/robotscream_9.ogg new file mode 100644 index 0000000000..07b0849849 Binary files /dev/null and b/Resources/Audio/Machines/robotscream_9.ogg differ diff --git a/Resources/Audio/StationEvents/attributions.yml b/Resources/Audio/StationEvents/attributions.yml index 8fc93d43e5..c1af3dfcfe 100644 --- a/Resources/Audio/StationEvents/attributions.yml +++ b/Resources/Audio/StationEvents/attributions.yml @@ -12,3 +12,8 @@ license: "CC-BY-SA-3.0" copyright: "Created by qwertyquerty" source: "https://github.com/BeeStation/BeeStation-Hornet/commit/7f48971438492805af286023a72e7609a729234a" + +- files: ["blatantly_nuclear.ogg"] + license: "CC-BY-3.0" + copyright: "Created by mrjajkes" + source: "https://www.youtube.com/watch?v=f5URIS00IIc" diff --git a/Resources/Audio/StationEvents/blatantly_nuclear.ogg b/Resources/Audio/StationEvents/blatantly_nuclear.ogg new file mode 100644 index 0000000000..91ef876a74 Binary files /dev/null and b/Resources/Audio/StationEvents/blatantly_nuclear.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/attributions.yml b/Resources/Audio/Voice/Xenoborg/attributions.yml new file mode 100644 index 0000000000..7a08f127d3 --- /dev/null +++ b/Resources/Audio/Voice/Xenoborg/attributions.yml @@ -0,0 +1,17 @@ +- files: + - xenoborg_ask.ogg + - xenoborg_bike_horn.ogg + - xenoborg_buzz-sigh.ogg + - xenoborg_buzz-two.ogg + - xenoborg_chime.ogg + - xenoborg_exclaim.ogg + - xenoborg_laugh_1.ogg + - xenoborg_laugh_2.ogg + - xenoborg_laugh_3.ogg + - xenoborg_laugh_4.ogg + - xenoborg_ping.ogg + - xenoborg_talk.ogg + - xenoborg_twobeep.ogg + license: "CC-BY-SA-4.0" + copyright: "Recorded and mixed by DarkIcedCoffe (Discord)" + source: "https://github.com/space-wizards/space-station-14/pull/36867" diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_ask.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_ask.ogg new file mode 100644 index 0000000000..c40c08d830 Binary files /dev/null and b/Resources/Audio/Voice/Xenoborg/xenoborg_ask.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_bikehorn.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_bikehorn.ogg new file mode 100644 index 0000000000..a9309f7d8a Binary files /dev/null and b/Resources/Audio/Voice/Xenoborg/xenoborg_bikehorn.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_buzz-sigh.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_buzz-sigh.ogg new file mode 100644 index 0000000000..7879ec485c Binary files /dev/null and b/Resources/Audio/Voice/Xenoborg/xenoborg_buzz-sigh.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_buzz-two.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_buzz-two.ogg new file mode 100644 index 0000000000..d62e674f30 Binary files /dev/null and b/Resources/Audio/Voice/Xenoborg/xenoborg_buzz-two.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_chime.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_chime.ogg new file mode 100644 index 0000000000..91aed63ca9 Binary files /dev/null and b/Resources/Audio/Voice/Xenoborg/xenoborg_chime.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_exclaim.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_exclaim.ogg new file mode 100644 index 0000000000..7c23477b01 Binary files /dev/null and b/Resources/Audio/Voice/Xenoborg/xenoborg_exclaim.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_laugh_1.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_laugh_1.ogg new file mode 100644 index 0000000000..ab585237b0 Binary files /dev/null and b/Resources/Audio/Voice/Xenoborg/xenoborg_laugh_1.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_laugh_2.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_laugh_2.ogg new file mode 100644 index 0000000000..b03c8df226 Binary files /dev/null and b/Resources/Audio/Voice/Xenoborg/xenoborg_laugh_2.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_laugh_3.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_laugh_3.ogg new file mode 100644 index 0000000000..4d094c77ec Binary files /dev/null and b/Resources/Audio/Voice/Xenoborg/xenoborg_laugh_3.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_laugh_4.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_laugh_4.ogg new file mode 100644 index 0000000000..db66c8a92e Binary files /dev/null and b/Resources/Audio/Voice/Xenoborg/xenoborg_laugh_4.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_ping.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_ping.ogg new file mode 100644 index 0000000000..6bd5cc3591 Binary files /dev/null and b/Resources/Audio/Voice/Xenoborg/xenoborg_ping.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_talk.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_talk.ogg new file mode 100644 index 0000000000..4b54caaa38 Binary files /dev/null and b/Resources/Audio/Voice/Xenoborg/xenoborg_talk.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_twobeep.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_twobeep.ogg new file mode 100644 index 0000000000..dfe0d0d55c Binary files /dev/null and b/Resources/Audio/Voice/Xenoborg/xenoborg_twobeep.ogg differ diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 9dfd1a4ee4..2f273e998d 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -1139,5 +1139,21 @@ Entries: id: 137 time: '2025-05-02T01:07:15.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/37102 +- author: ScarKy0 + changes: + - message: Added a new "Strip All" debug verb. Used for stripping all inventory + items and dropping hand items. + type: Add + id: 138 + time: '2025-05-15T20:56:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37426 +- author: VerinSenpai + changes: + - message: Round controls in the admin window now require confirmation. This can + be bypassed by using the console. + type: Tweak + id: 139 + time: '2025-05-26T02:37:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37836 Name: Admin Order: 2 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9c53bfbb2d..4cc2bd0700 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,1135 +1,4 @@ Entries: -- author: august-sun - changes: - - message: Reworked Lecter and magazine sprites. - type: Tweak - id: 7919 - time: '2025-02-09T00:12:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34974 -- author: rokudara-sen - changes: - - message: Anchored shuttle console will no longer rotate. - type: Fix - id: 7920 - time: '2025-02-09T12:15:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35000 -- author: Boaz1111 - changes: - - message: Long Bacon Scarf(Lesbian scarf but long) can now be found in the pride-o-mat's - hacked inventory! - type: Add - id: 7921 - time: '2025-02-09T15:10:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34950 -- author: Spacemann - changes: - - message: Removed Cog station - type: Remove - id: 7922 - time: '2025-02-09T21:01:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34996 -- author: notquitehadouken - changes: - - message: Added loungewear to uniform printer - type: Add - id: 7923 - time: '2025-02-09T22:16:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35008 -- author: Vortebo - changes: - - message: Added Relic station. - type: Add - id: 7924 - time: '2025-02-09T23:24:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34988 -- author: IProduceWidgets - changes: - - message: Pacifists can throw things that break. - type: Fix - id: 7925 - time: '2025-02-10T01:24:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31060 -- author: lzk228 - changes: - - message: Deconstructing disposal pipes will no longer delete all the contents. - type: Fix - id: 7926 - time: '2025-02-10T09:05:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34986 -- author: themias - changes: - - message: Pacified players can no longer attack living creatures with mechs - type: Fix - id: 7927 - time: '2025-02-10T22:17:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34954 -- author: sowelipililimute - changes: - - message: Smart equipping into your backpack w/ a nested storage window open no - longer bugs out - type: Fix - id: 7928 - time: '2025-02-11T02:15:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35048 -- author: Tayrtahn - changes: - - message: Radio frequencies are now displayed with a decimal point. - type: Tweak - id: 7929 - time: '2025-02-11T02:36:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35046 -- author: themias - changes: - - message: Fixed an exploit using multiple R&D computers to research multiple discipline - tier 3 technologies - type: Fix - id: 7930 - time: '2025-02-11T02:52:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34334 -- author: K-Dynamic - changes: - - message: Flashbangs, stinger grenades, EMP grenades, smoke grenades, and tear - gas grenades have new appearances. - type: Tweak - - message: Projectile grenades (including stinger and shrapnel grenades) should - now play animations when triggered. - type: Fix - id: 7931 - time: '2025-02-11T03:23:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34421 -- author: themias - changes: - - message: You can no longer use pulled objects as tools. - type: Fix - id: 7932 - time: '2025-02-11T03:29:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34587 -- author: Nox38 - changes: - - message: Vendomats now contain 2 Screwdrivers, and an addition Wirecutter. - type: Tweak - id: 7933 - time: '2025-02-11T06:35:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35059 -- author: pheenty - changes: - - message: Python now costs only 4 TC! - type: Tweak - id: 7934 - time: '2025-02-11T09:36:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33306 -- author: centcomofficer24 - changes: - - message: Increased the armor crates price from 725 spesos to 1250 spesos. - type: Tweak - id: 7935 - time: '2025-02-11T12:17:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34541 -- author: pheenty - changes: - - message: The interrogator lamp is now considered security contraband. - type: Tweak - id: 7936 - time: '2025-02-11T16:15:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35064 -- author: pheenty - changes: - - message: Chief Engineer's hardsuit storage unit now has an atmospheric gas mask. - type: Add - id: 7937 - time: '2025-02-11T17:48:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35063 -- author: Terraspark4941 - changes: - - message: The spray nozzle can now be stored inside the backpack water tank! - type: Tweak - id: 7938 - time: '2025-02-11T19:05:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34209 -- author: Tayrtahn - changes: - - message: Ghosts are no longer sent to the void if the player they are following - is polymorphed. - type: Fix - id: 7939 - time: '2025-02-11T21:34:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33878 -- author: Tayrtahn - changes: - - message: Clusterbangs now properly limit their maximum capacity. - type: Fix - id: 7940 - time: '2025-02-11T23:13:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34281 -- author: beck-thompson - changes: - - message: Fultons are now part of the Advanced Tools T2 research! - type: Add - id: 7941 - time: '2025-02-12T00:29:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34567 -- author: Nox38 - changes: - - message: Deathsquad agents Matebas now come loaded with AP rounds. - type: Fix - id: 7942 - time: '2025-02-12T00:43:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34910 -- author: MilonPL - changes: - - message: The announce command now takes optional color and sound parameters. - type: Tweak - id: 7943 - time: '2025-02-12T08:58:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34889 -- author: Xillan - changes: - - message: Changed light brown gloves to have their own unique fiber for detectives, - where previously they were indistinguishable from normal / dark brown gloves. - type: Tweak - id: 7944 - time: '2025-02-12T18:41:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35111 -- author: SaphireLattice, themias - changes: - - message: Chair buckle draw depth is slightly less broken - type: Fix - id: 7945 - time: '2025-02-13T05:51:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33447 -- author: Minemoder - changes: - - message: Slime plushie now squishes. - type: Tweak - id: 7946 - time: '2025-02-13T07:55:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33554 -- author: AgentSmithRadio - changes: - - message: Added grilled cheese sandwich and recipe. - type: Add - id: 7947 - time: '2025-02-13T08:00:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33807 -- author: themias - changes: - - message: The experimental welding tool now requires only minimal eye protection - (e.g. sunglasses) - type: Tweak - id: 7948 - time: '2025-02-13T19:26:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34792 -- author: Winkarst-cpu - changes: - - message: Thrusters now deal heat damage. - type: Fix - id: 7949 - time: '2025-02-13T19:27:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35088 -- author: Booblesnoot42 - changes: - - message: Removing the security plate from an intercom will no longer delete its - encryption keys. - type: Fix - id: 7950 - time: '2025-02-13T19:31:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34911 -- author: Velken - changes: - - message: Paramedic Void Suit now has flashlight and an ambulance siren. - type: Add - - message: Paramedic Void Suit is now restricted to Medical. - type: Tweak - id: 7951 - time: '2025-02-13T19:52:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34657 -- author: themias - changes: - - message: Fixed being able to fax multiple times in quick succession - type: Fix - id: 7952 - time: '2025-02-13T20:12:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35135 -- author: Centronias - changes: - - message: High-heeled Boots now click and clack when walking - type: Tweak - id: 7953 - time: '2025-02-13T22:35:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35083 -- author: keronshb - changes: - - message: The Supermatter Grenade has been renamed to Singularity Grenade. - type: Tweak - - message: The Singularity Grenade no longer has an explosion. - type: Remove - id: 7954 - time: '2025-02-14T15:01:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35122 -- author: ArtisticRoomba - changes: - - message: The Solar Panels section of the Engineering Guidebook has been updated - to include information on upgrading solar panels, as well as how much each variant - produces. - type: Add - - message: The Tesla Engine section of the Engineering Guidebook has been slightly - reorganized to better outline the differences between Grounding Rods and Tesla - Coils, as well as tips on how to use them. - type: Tweak - - message: The Access Configurator section of the Engineering Guidebook has been - updated to reflect the recent addition of the Authentication Disruptor, as well - as how to fix access-broken doors and equipment the easy way. - type: Add - id: 7955 - time: '2025-02-15T03:59:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34695 -- author: Tayrtahn - changes: - - message: Chickens and ducks now report hunger levels when examined. - type: Add - id: 7956 - time: '2025-02-15T04:29:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35164 -- author: VerinSenpai - changes: - - message: Air alarm devices now return to their previous settings after a power - cycle. - type: Fix - id: 7957 - time: '2025-02-15T06:07:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34887 -- author: DoutorWhite & metalgearsloth - changes: - - message: Added planet lighting for indoor / outdoor areas. - type: Add - - message: Added day-night cycle functionality. - type: Add - id: 7958 - time: '2025-02-16T08:35:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32522 -- author: metalgearsloth - changes: - - message: Fix lighting quality affecting planet lighting. - type: Fix - id: 7959 - time: '2025-02-16T13:29:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35207 -- author: metalgearsloth - changes: - - message: Re-enable blur for rooves and increase amount of blur. - type: Tweak - id: 7960 - time: '2025-02-16T15:35:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35213 -- author: metalgearsloth - changes: - - message: Rooves now block weather. - type: Tweak - id: 7961 - time: '2025-02-16T15:55:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35214 -- author: n00kii - changes: - - message: Fixed laser weapon visuals being broken when shooting across grids or - into space. - type: Fix - id: 7962 - time: '2025-02-16T16:14:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34515 -- author: Velken - changes: - - message: ': Paramedic Siren''s light is now visible to all and not just the wearer.' - type: Fix - id: 7963 - time: '2025-02-16T18:43:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35203 -- author: slarticodefast - changes: - - message: Fixed uplink items not being able to be used in your hand. - type: Fix - id: 7964 - time: '2025-02-16T18:47:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35218 -- author: PicklOH - changes: - - message: Added a lethals drum to the Bulldog bundle. - type: Add - - message: Removed a beanbag drum from the Bulldog bundle. - type: Remove - id: 7965 - time: '2025-02-16T22:30:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34945 -- author: psykana - changes: - - message: DNA Scrambler implant now requires confirmation to activate - type: Add - id: 7966 - time: '2025-02-17T06:16:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35232 -- author: Emisse - changes: - - message: Centcomm has been rebuilt from the ground up. - type: Tweak - id: 7967 - time: '2025-02-17T08:51:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35240 -- author: Sparlight - changes: - - message: Space debris has returned to Wizden servers. - type: Add - id: 7968 - time: '2025-02-17T12:56:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34795 -- author: Kickguy223 - changes: - - message: Cleaning up a puddle properly changes its slippery properties. - type: Fix - id: 7969 - time: '2025-02-17T20:53:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34525 -- author: lzk228 - changes: - - message: Syndicate cyborgs can laugh again. - type: Fix - id: 7970 - time: '2025-02-17T21:59:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31510 -- author: Killerqu00 - changes: - - message: Contraband examines now correctly tell you if you can possess the object. - type: Fix - id: 7971 - time: '2025-02-18T11:33:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35228 -- author: Ian321 - changes: - - message: Magazines that started out empty now visually fill. - type: Fix - id: 7972 - time: '2025-02-18T12:32:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34491 -- author: WarPigeon - changes: - - message: Steel crates now have some radiation shielding for safe storage and transport - of radioactive materials. - type: Add - id: 7973 - time: '2025-02-18T12:56:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35168 -- author: BramvanZijp - changes: - - message: Fixed Janitor-Restricted contraband unintentionally stating Security - may use it too. - type: Fix - id: 7974 - time: '2025-02-18T13:07:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35281 -- author: Pronana - changes: - - message: the crusher dagger now does everything a knife can and can be thrown. - type: Tweak - id: 7975 - time: '2025-02-18T15:16:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35259 -- author: lizelive - changes: - - message: AI can now see job icons while inside of an intellicard. - type: Fix - id: 7976 - time: '2025-02-18T22:23:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35282 -- author: CooperWallace - changes: - - message: A popup is now displayed at the item's previous location when it is recalled - by the recall wizard spell. - type: Add - id: 7977 - time: '2025-02-19T01:47:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35272 -- author: SpaceLizard24 - changes: - - message: Moved saxophones from the Brass Ensemble crate to the Woodwind Ensemble - crate. - type: Tweak - - message: Adjusted the prices of Woodwind Ensemble and Brass Ensemble crates. - type: Tweak - id: 7978 - time: '2025-02-19T06:05:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35257 -- author: K-Dynamic - changes: - - message: Returned Explosive Technology recipes (triggers, payloads, signaller) - back to the Protolathe following undocumented removal. - type: Fix - id: 7979 - time: '2025-02-19T11:34:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35303 -- author: Winkarst-cpu - changes: - - message: Now outer clothing hides PDA and belt sprites under it. - type: Tweak - id: 7980 - time: '2025-02-19T13:13:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33448 -- author: Booblesnoot42 - changes: - - message: When removing encryption keys from an intercom, excess keys will now - be dropped at the remover's feet instead of dropping inside the wall. - type: Fix - id: 7981 - time: '2025-02-19T13:46:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34582 -- author: cerebralerror, robinthedragon - changes: - - message: 'New barsigns: Maltroach (based on sign by MoffNyan, from tgstation) - and Whiskey Echoes (by cerebralerror, from frontier station)' - type: Add - id: 7982 - time: '2025-02-19T19:25:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35296 -- author: FungiFellow - changes: - - message: Flare Shells no longer restricted contraband - type: Tweak - id: 7983 - time: '2025-02-20T00:27:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34705 -- author: Winkarst-cpu - changes: - - message: Now all toys and bike horns make an appropriate sound. - type: Tweak - id: 7984 - time: '2025-02-20T01:12:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33449 -- author: Zokkie - changes: - - message: Argocytes, Mimics, Butterflies, Bees, Space Kangaroos, Laser Raptors - and Watchers their corpses can now be butchered. - type: Fix - - message: Butterflies can now be picked up and can also be put into trash bags. - type: Fix - - message: You can now grind Butterflies and Bees in the reagent grinder. - type: Fix - id: 7985 - time: '2025-02-20T16:12:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33727 -- author: metalgearsloth - changes: - - message: Fix storage windows being duplicated when reconnecting. - type: Fix - id: 7986 - time: '2025-02-20T16:51:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35054 -- author: Boaz1111 - changes: - - message: Added colored light bulbs! You can make them just like colored light - tubes, in the crafting menu. - type: Add - id: 7987 - time: '2025-02-21T18:01:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35333 -- author: themias - changes: - - message: Fixed sink draining noise continuous playback - type: Fix - id: 7988 - time: '2025-02-22T09:20:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34173 -- author: Sparlight - changes: - - message: All dogs now make dog noises when speaking. - type: Tweak - id: 7989 - time: '2025-02-22T21:34:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35383 -- author: GrownSamoyedDog - changes: - - message: Fixed Guidebook Entry Ordering / Sorting - type: Fix - - message: Rearranged Guidebook Contents - type: Tweak - id: 7990 - time: '2025-02-23T01:00:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34960 -- author: lzk228 - changes: - - message: Storage now makes sound if you open it on verb or on interact. - type: Fix - id: 7991 - time: '2025-02-23T02:01:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35413 -- author: K-Dynamic - changes: - - message: Lattice tiles footsteps now sound like catwalks. - type: Tweak - id: 7992 - time: '2025-02-23T11:43:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35421 -- author: metalgearsloth - changes: - - message: Fix several interface window positions not saving. - type: Fix - id: 7993 - time: '2025-02-23T12:57:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35055 -- author: ScarKy0 - changes: - - message: Increased the price of the EMAG to 5TC. It is also now part of the "very - rare discounts" instead of "rare discounts". - type: Tweak - - message: Decreased the price of the Access Breaker to 4TC. It is also now part - of the "rare discounts" instead of "very rare discounts". - type: Tweak - id: 7994 - time: '2025-02-23T13:01:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35354 -- author: sowelipililimute - changes: - - message: Added microwave cooking recipes to the guidebook - type: Add - id: 7995 - time: '2025-02-23T15:24:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34105 -- author: Errant - changes: - - message: The game version can now be displayed as an optional watermark on the - hud. Servers can force this watermark to be displayed. - type: Add - id: 7996 - time: '2025-02-23T19:01:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35284 -- author: deltanedas - changes: - - message: Entering a mech or other container now ends chameleon projections. - type: Fix - id: 7997 - time: '2025-02-23T19:29:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35070 -- author: NoElkaTheGod - changes: - - message: Hitting a holoparasite will now ignore the host's armor. - type: Tweak - id: 7998 - time: '2025-02-23T20:03:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35418 -- author: TiniestShark - changes: - - message: Scarves, pins and other neckwear now render above the backpack. - type: Tweak - id: 7999 - time: '2025-02-23T23:29:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35322 -- author: metalgearsloth - changes: - - message: Fix arrivals. - type: Fix - id: 8000 - time: '2025-02-24T09:43:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35439 -- author: Vortebo - changes: - - message: Added a new Relic arrivals shuttle - type: Add - id: 8001 - time: '2025-02-24T21:35:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35194 -- author: Errant - changes: - - message: The version watermark is now less visually annoying. - type: Tweak - id: 8002 - time: '2025-02-24T23:21:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35484 -- author: slarticodefast - changes: - - message: Fixed mousetraps not being armed when used. - type: Fix - id: 8003 - time: '2025-02-25T03:52:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35486 -- author: pheenty - changes: - - message: Fixed borgs being given the scream action. - type: Fix - id: 8004 - time: '2025-02-25T13:45:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33038 -- author: spderman3333 - changes: - - message: Electronic bar signs can now be destroyed. - type: Tweak - id: 8005 - time: '2025-02-25T14:43:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35490 -- author: noirogen - changes: - - message: Added opacity slider for speech bubble backgrounds, text and speaker - names in the accessibility options. - type: Add - id: 8006 - time: '2025-02-25T16:00:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35346 -- author: sowelipililimute - changes: - - message: Multiple inventory windows now close properly when you hit escape - type: Fix - id: 8007 - time: '2025-02-25T16:40:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35040 -- author: Pumkin69 - changes: - - message: Engineers can choose to not wear a headpiece now. - type: Fix - id: 8008 - time: '2025-02-26T01:21:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35508 -- author: momochitters - changes: - - message: Lizard Plushie Slippers can now be constructed. - type: Add - id: 8009 - time: '2025-02-26T02:18:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35381 -- author: keronshb - changes: - - message: Added the Wizard Antagonist! - type: Add - id: 8010 - time: '2025-02-26T05:34:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35406 -- author: DieselMohawk - changes: - - message: Joints and Blunts now have randomized names. - type: Fix - id: 8011 - time: '2025-02-26T23:37:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35544 -- author: Pumkin69 - changes: - - message: Wizard now has a stamp. - type: Add - id: 8012 - time: '2025-02-27T08:26:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35552 -- author: MilenVolf - changes: - - message: Insect and Ammonia blood can be broken down in centrifuge. - type: Tweak - id: 8013 - time: '2025-02-27T10:05:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33614 -- author: qwerltaz - changes: - - message: The T-ray scanner now shows sub-floor entities above catwalks. - type: Tweak - - message: Sub-floor entities now retain the correct relative draw depth when using - a T-ray scanner. - type: Fix - id: 8014 - time: '2025-02-27T10:46:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33012 -- author: Katzenminer, slarticodefast - changes: - - message: You now need to break eggs when using them for microwave recipes. Some - recipes have been adjusted accordingly. - type: Tweak - - message: Fixed a reagent duplication bug when microwaving eggs. - type: Fix - id: 8015 - time: '2025-02-27T12:39:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35459 -- author: kosticia - changes: - - message: Fire resists now can be examined. - type: Add - id: 8016 - time: '2025-02-27T12:39:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35183 -- author: aada - changes: - - message: Filter categories have been added to the uniform printer. - type: Add - id: 8017 - time: '2025-02-27T12:44:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34316 -- author: deltanedas - changes: - - message: LogProbe's access logs can now be printed out. - type: Tweak - id: 8018 - time: '2025-02-27T13:47:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32255 -- author: Aisu9 - changes: - - message: Changed Sap-Syrup conversion value. - type: Tweak - id: 8019 - time: '2025-02-27T17:25:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32996 -- author: SlamBamActionman - changes: - - message: Pet carriers can no longer be put into toilets. - type: Fix - - message: You can now escape containers (such as pet carriers) inserted into other - containers. - type: Fix - - message: Thrown items no longer bypasses insertion checks for toilets and disposal - units. - type: Fix - id: 8020 - time: '2025-02-27T17:43:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35557 -- author: SlamBamActionman - changes: - - message: Implanters must now specificy which implant they're targeting when extracting, - and deals heavy damage to the person performing the extraction if no such implant - exists. - type: Tweak - id: 8021 - time: '2025-02-27T17:57:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32136 -- author: AgentSmithRadio - changes: - - message: Reptilians can now eat chicken nuggets. - type: Tweak - id: 8022 - time: '2025-02-27T23:35:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35569 -- author: Velken - changes: - - message: Wizard now has a cool PDA to store their pAI. - type: Add - id: 8023 - time: '2025-03-01T02:12:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35572 -- author: LaCumbiaDelCoronavirus - changes: - - message: Slimepeople look a bit less bald now. - type: Tweak - id: 8024 - time: '2025-03-01T09:56:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35158 -- author: ScarKy0 - changes: - - message: You can no longer fax, stamp or write on paper scrap. - type: Fix - id: 8025 - time: '2025-03-01T14:08:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35596 -- author: ArtisticRoomba, Cojoke-dot - changes: - - message: The detective can now find the go go hat in their locker. This hat has - the ability to store and retrieve items automatically via the saying of a catchphrase. - GO GO GADGET! - type: Add - id: 8026 - time: '2025-03-01T18:03:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35438 -- author: SlamBamActionman - changes: - - message: Slimes no longer have cellular damage resistance. - type: Tweak - id: 8027 - time: '2025-03-01T20:24:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35583 -- author: metalgearsloth - changes: - - message: Removed radioactivity from uranium. - type: Tweak - id: 8028 - time: '2025-03-02T02:29:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35330 -- author: metalgearsloth - changes: - - message: Predict vending machine UI and have the buttons reflect whether the UI - is useable. - type: Tweak - id: 8029 - time: '2025-03-02T02:47:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33412 -- author: SlamBamActionman - changes: - - message: Phalanximine now has an overdose threshold and works slower, along with - other minor tweaks. - type: Tweak - - message: Arithrazine now deals increased damage during treatment. - type: Tweak - id: 8030 - time: '2025-03-02T12:56:16.674298+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32209 -- author: slarticodefast - changes: - - message: Fixed various traits and abilites being lost when getting cloned. - type: Fix - - message: Fixed various bugs when cloning zombified players. - type: Fix - - message: Unrevivable characters can no longer be cloned. - type: Tweak - - message: Fixed default device linking for the cloning console. - type: Fix - id: 8031 - time: '2025-03-02T15:50:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35555 -- author: HTMLSystem - changes: - - message: Arachnids and moths now have new sprites when wearing glasses, huds, - visors, and eyepatches. - type: Add - id: 8032 - time: '2025-03-02T20:58:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31812 -- author: FairlySadPanda - changes: - - message: Pet carriers now only carry pets. preventing various unintended, albeit - hilarious, activities. - type: Fix - id: 8033 - time: '2025-03-03T10:04:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35587 -- author: Coolsurf6 - changes: - - message: Pain from Burn damage is now calculated when displaying the red damage - overlay - type: Tweak - id: 8034 - time: '2025-03-03T11:11:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34535 -- author: Velken - changes: - - message: Wizards now have their own unique magical pen. - type: Add - id: 8035 - time: '2025-03-03T15:54:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35623 -- author: rokudara-sen - changes: - - message: Particle decelerators now drain an additional percentage of a singularity's - current energy. - type: Tweak - id: 8036 - time: '2025-03-03T16:37:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35643 -- author: DuckManZach - changes: - - message: Butter is now cheaper to produce! - type: Tweak - id: 8037 - time: '2025-03-03T22:04:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35650 -- author: SlamBamActionman - changes: - - message: Top and bottom undergarments can now be found in the Markings tab of - the character creator. - type: Add - - message: The Accessibility tab of Options now has a Censor Nudity Toggle, which - adds undergarments to all characters on your client. Undergarments selected - in the character creator take priority. - type: Add - id: 8038 - time: '2025-03-05T09:14:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33185 -- author: Boaz1111, Ktyria - changes: - - message: 'Added five new scars for humans and dwarves: Three for the face, two - for the chest.' - type: Add - id: 8039 - time: '2025-03-05T10:26:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35644 -- author: ScarKy0, MilonPL - changes: - - message: Added deliveries! Cargo now has access to mail teleporters, which periodically - spawn mail. Deliver it to the correct recipients for bonus spesos! - type: Add - id: 8040 - time: '2025-03-07T13:51:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35429 -- author: Lukasz825700516 - changes: - - message: Text related keybinds can now be changed in Controls. - type: Add - id: 8041 - time: '2025-03-08T02:42:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35630 -- author: metalgearsloth - changes: - - message: Walls now emit shadows on planets. - type: Add - id: 8042 - time: '2025-03-08T05:07:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35145 -- author: momochitters - changes: - - message: Aroace pins, scarves, and cloaks can now be obtained. - type: Add - id: 8043 - time: '2025-03-08T15:21:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35718 -- author: Emisse - changes: - - message: Core Station - type: Remove - id: 8044 - time: '2025-03-09T08:48:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35740 -- author: slarticodefast - changes: - - message: Added a mail stealing objective for thieves. - type: Add - id: 8045 - time: '2025-03-09T19:41:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35746 -- author: metalgearsloth - changes: - - message: Fix sun shadows not rendering when ANGLE is used. - type: Fix - id: 8046 - time: '2025-03-10T04:17:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35757 -- author: metalgearsloth - changes: - - message: Fix sun shadow rotations not always being accurate. - type: Fix - id: 8047 - time: '2025-03-10T04:38:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35758 -- author: RedBookcase - changes: - - message: Added about a dozen new cocktails for the Bartender to mix up, and polished - some of the sprites for older drinks. - type: Add - id: 8048 - time: '2025-03-10T23:08:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33570 -- author: Velken - changes: - - message: Performers can now find that their clothing set is more complete! - type: Add - id: 8049 - time: '2025-03-10T23:17:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35764 -- author: ScarKy0 - changes: - - message: Mindshield implants can now be removed using an empty implanter. - type: Tweak - - message: Revolutionaries can now win by converting all command members. - type: Add - id: 8050 - time: '2025-03-11T09:41:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35769 -- author: SlamBamActionman - changes: - - message: Chameleon PDAs no longer change your name in the station records. - type: Fix - id: 8051 - time: '2025-03-11T13:52:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35782 -- author: Reisama - changes: - - message: Borgs will no longer get laws to prevent the shuttle from being called - when Ion Stormed, and may get laws to call the shuttle instead. - type: Fix - id: 8052 - time: '2025-03-12T01:21:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35751 -- author: Winkarst-cpu - changes: - - message: The warden job now rolls before security officer/cadet/detective. - type: Tweak - id: 8053 - time: '2025-03-12T22:36:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35313 -- author: Firewars763 - changes: - - message: Added gold and coal rock anomalies and ore crab enemies. - type: Add - - message: Added yellow and black crystals, crystal shards, and light tubes. - type: Add - id: 8054 - time: '2025-03-12T22:45:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34809 -- author: onesch - changes: - - message: Added handheld sprites to some items - type: Add - id: 8055 - time: '2025-03-12T22:46:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33689 -- author: K-Dynamic - changes: - - message: Nitrous oxide canisters now begin locked like other dangerous gas canisters. - type: Fix - id: 8056 - time: '2025-03-13T00:30:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35785 -- author: Plykiya - changes: - - message: A message now pops up when attempting to fire a gun with no ammo. - type: Add - id: 8057 - time: '2025-03-13T07:21:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34816 -- author: Crude Oil - changes: - - message: You can now pet the mail teleporter - type: Add - id: 8058 - time: '2025-03-13T12:49:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35819 -- author: ScarKy0 - changes: - - message: Singularity and Whitehole grenades are now in the Disruption category - of uplinks. - type: Tweak - - message: Singularity and Whitehole grenades have had their prices reduced to 2TC - each. - type: Tweak - - message: Whitehole grenade no longer has extremely overtuned strength. - type: Fix - id: 8059 - time: '2025-03-13T13:12:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35821 -- author: slarticodefast, ps3moira - changes: - - message: Added the paradox clone as a ghostrole antagonist. - type: Add - id: 8060 - time: '2025-03-13T17:09:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35794 -- author: SlamBamActionman - changes: - - message: All roundstart antags now roll before job selection. You are now able - to ready up with antag-immune job preferences (Sec/Command/interns) set to High, - and if selected for antag you will get an non-antag-immune job instead. - type: Tweak - id: 8061 - time: '2025-03-13T20:21:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35823 -- author: Coolsurf6 - changes: - - message: Added a new and powerful drink called Bacchus' Blessing for all bartenders - to struggle with. - type: Add - id: 8062 - time: '2025-03-14T06:49:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35306 -- author: Quantum-cross - changes: - - message: Corrupt borg speech if they are damaged or low power - type: Add - id: 8063 - time: '2025-03-14T15:31:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35318 -- author: Centronias - changes: - - message: Moths can once again eat lizard plushies - type: Fix - - message: Lizard plushes can once again be inserted as payloads into modular grenades - and mines - type: Fix - id: 8064 - time: '2025-03-14T20:22:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35835 - author: K-Dynamic changes: - message: Electrocution stun duration decreased overall; LV or hacking from 8 seconds @@ -3838,14 +2707,6 @@ id: 8409 time: '2025-05-02T18:31:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/37109 -- author: ScarKy0 - changes: - - message: Added Traumoxadone! A cryochemical used to treat brute damage in living - patients as well as corpses. - type: Add - id: 8410 - time: '2025-05-02T22:56:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37126 - author: Unkn0wnGh0st333 changes: - message: Knuckle Dusters have arrived to Space Station 14. QM can now rule cargo @@ -3925,3 +2786,1105 @@ id: 8420 time: '2025-05-04T23:01:27.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/36984 +- author: spanky-spanky + changes: + - message: On Fland, modified security to include genpop. + type: Add + id: 8421 + time: '2025-05-06T01:29:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37207 +- author: B-Kirill + changes: + - message: Added a search by profession and species in station records. + type: Add + id: 8422 + time: '2025-05-06T16:21:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37213 +- author: Cojoke-dot + changes: + - message: Pacifists can now throw bola + type: Tweak + id: 8423 + time: '2025-05-06T16:55:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37188 +- author: themias + changes: + - message: Fixed being unable to roll dough flat + type: Fix + id: 8424 + time: '2025-05-06T16:57:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37183 +- author: Quantum-cross + changes: + - message: Hosted anomaly effects not appearing at host when host is in container + or buckled + type: Fix + id: 8425 + time: '2025-05-06T17:01:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37179 +- author: ScarKy0 + changes: + - message: Borgs, brains, zombies and similiar now correctly count as "marooned" + even while on the evac shuttle. + type: Fix + id: 8426 + time: '2025-05-06T17:24:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37148 +- author: B-Kirill + changes: + - message: Added a collapse button for the lobby right panel, improving visibility + of the background artwork. + type: Add + id: 8427 + time: '2025-05-06T17:24:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37140 +- author: Morty, lzk228 + changes: + - message: Speech bubbles now indicate when a person is thinking of what to say. + type: Tweak + id: 8428 + time: '2025-05-06T17:49:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29349 +- author: Prole0 + changes: + - message: Water bottles now fit in dispensers! + type: Tweak + id: 8429 + time: '2025-05-06T18:13:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37108 +- author: OnyxTheBrave + changes: + - message: Holy water now correctly metabolizes at .5 unites per second + type: Fix + id: 8430 + time: '2025-05-06T18:31:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37106 +- author: sowelipililimute + changes: + - message: Departmental cargo request computers now print slips that can be given + to Cargo for final approval, rather than directly approving the orders themselves + type: Tweak + id: 8431 + time: '2025-05-06T19:04:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36944 +- author: Ghagliiarghii + changes: + - message: Fixed a bug which allowed Janitor borgs to delete a held item and acquire + an empty hand. + type: Fix + id: 8432 + time: '2025-05-06T19:10:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36961 +- author: UpAndLeaves + changes: + - message: wearing an elite web vest and an atmos fire helmet will no longer heal + your burn damage when on fire. + type: Fix + id: 8433 + time: '2025-05-07T02:03:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37241 +- author: Flareguy + changes: + - message: Moth clothing now visually conforms to their body type, similar to Vox. + type: Add + id: 8434 + time: '2025-05-07T10:06:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37231 +- author: K-Dynamic + changes: + - message: Disposal x-junctions can be constructed, which feeds from three directions + towards one. + type: Add + - message: Disposal junctions now properly swap to all other possible junctions + when a screwdriver is applied - disposal junction -> y-junction -> flipped junction + -> x-junction -> disposal junction... + type: Fix + id: 8435 + time: '2025-05-07T11:37:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37092 +- author: Zalycon + changes: + - message: Raised limit of species chest markings to 2 + type: Tweak + id: 8436 + time: '2025-05-07T12:44:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37065 +- author: themias + changes: + - message: Genpop prisoner closets can be ordered from cargo + type: Tweak + id: 8437 + time: '2025-05-07T20:28:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37237 +- author: JuneSzalkowska, SlamBamActionman + changes: + - message: 3 new exomorph-themed posters have been added! + type: Add + id: 8438 + time: '2025-05-07T23:26:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37260 +- author: B-Kirill + changes: + - message: AI context menu buttons now only appear on objects with valid interactions. + type: Fix + id: 8439 + time: '2025-05-07T23:48:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37224 +- author: Krunklehorn + changes: + - message: Cyborg chassis now properly drop their contents when gibbed. + type: Fix + id: 8440 + time: '2025-05-08T14:28:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37276 +- author: Thinbug0 + changes: + - message: The push horn lost its ability to push items, in exchange of a bigger + range + type: Tweak + id: 8441 + time: '2025-05-08T16:49:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37281 +- author: MureixloL + changes: + - message: Changed sprite of mime satchel! + type: Tweak + id: 8442 + time: '2025-05-08T17:38:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37280 +- author: ciaran + changes: + - message: Guidebook recipe inputs can now link to recipes on the same page + type: Add + id: 8443 + time: '2025-05-09T00:06:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36700 +- author: Nyxilath + changes: + - message: Trash bags can be printed by Autolathes again. + type: Fix + id: 8444 + time: '2025-05-09T03:35:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37296 +- author: robinthedragon + changes: + - message: Basic operative bundle, which allows newkies to easily spend all 40 of + their TC on straightforwardly useful items. + type: Add + id: 8445 + time: '2025-05-09T11:32:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37290 +- author: Errant + changes: + - message: Borgs can no longer craft items using up their tools as an ingredient, + losing them forever. + type: Fix + id: 8446 + time: '2025-05-09T12:43:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37292 +- author: murolem + changes: + - message: Silo can now accept diamonds. Shiny! + type: Tweak + id: 8447 + time: '2025-05-09T15:41:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37305 +- author: GaMEWAR360 + changes: + - message: 'Added new bounties for: Rings, Goliath Plates, Hivelord Remains' + type: Add + - message: 'Increased bounty prices for: Sharkminnow Teeth and Spacecarp Teeth' + type: Tweak + id: 8448 + time: '2025-05-09T15:52:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34926 +- author: sowelipililimute + changes: + - message: Reagent dispensers (Chem Dispenser, Booze Dispenser, Soda Dispenser) + now use a grid inventory for their internal storage + type: Tweak + id: 8449 + time: '2025-05-10T03:49:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34205 +- author: B-Kirill + changes: + - message: Meteors no longer slow down during flight. + type: Fix + id: 8450 + time: '2025-05-10T03:55:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37320 +- author: Pronana + changes: + - message: You can no longer grind the smite snail + type: Fix + id: 8451 + time: '2025-05-10T05:06:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37020 +- author: PotentiallyTom + changes: + - message: Changed the gold requirement for the recipies of the Laser Cannon, X-Ray + Cannon, and Advanced Laser Pistol. + type: Tweak + - message: The Advanced Laser Pistol now requires uranium to make. + type: Tweak + id: 8452 + time: '2025-05-10T09:58:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37308 +- author: EmoGarbage404 + changes: + - message: Omnizine no longer "wastes" healing when administered to patients without + even amounts of all damage types. + type: Tweak + id: 8453 + time: '2025-05-10T12:51:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37129 +- author: Nukesthestation + changes: + - message: The maximum character limit for paper has been increased to 10,000, hop + mains rejoice! + type: Tweak + id: 8454 + time: '2025-05-10T15:12:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37270 +- author: Morb0, ssdaniel24 + changes: + - message: Added a Discord webhook that will receive station news + type: Add + id: 8455 + time: '2025-05-10T18:21:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36807 +- author: EmoGarbage404 + changes: + - message: Fixed being able to toggle lighting as a ghost. + type: Fix + id: 8456 + time: '2025-05-10T21:41:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37335 +- author: gorillagaming + changes: + - message: The space dragon briefing now shows the correct direction to the station + type: Fix + id: 8457 + time: '2025-05-10T23:35:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37181 +- author: pyvik + changes: + - message: New hair named "Long With Bangs" + type: Add + id: 8458 + time: '2025-05-11T00:09:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36613 +- author: CyberTropic + changes: + - message: MapRenderer can now render map files from a file directly without needing + a prototype. + type: Tweak + - message: Fixed maprenderer drawing tiles upside down. + type: Fix + id: 8459 + time: '2025-05-11T14:06:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37306 +- author: JrInventor05 + changes: + - message: The syringe gun is now a T3 civilian science research. + type: Add + id: 8460 + time: '2025-05-12T00:14:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37251 +- author: EmoGarbage404 + changes: + - message: Added chemical barrels. These can be found on salvage debris and contain + a large amount of various chemicals. + type: Add + id: 8461 + time: '2025-05-12T10:55:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37204 +- author: kosticia + changes: + - message: Moth mime survival box now contains cotton baguette. + type: Fix + id: 8462 + time: '2025-05-12T12:37:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36953 +- author: ScarKy0 + changes: + - message: Added "Yellowtexting" for when you don't quite complete your objectives. + type: Add + id: 8463 + time: '2025-05-12T16:22:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37360 +- author: Radezolid + changes: + - message: The cyborg cable module can be printed at the exosuit fabricator once + again. + type: Fix + id: 8464 + time: '2025-05-12T16:28:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37361 +- author: Gentleman-Bird + changes: + - message: Added muffin tins to the kitchen dinnerware crate + type: Add + id: 8466 + time: '2025-05-12T17:52:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36948 +- author: Prole0 + changes: + - message: Changed wording/colors for alerts in health analyzer. + type: Tweak + id: 8467 + time: '2025-05-12T20:52:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37376 +- author: perryprog + changes: + - message: Borgs in certain circumstances will no-longer draw much more power than + they should. + type: Fix + id: 8468 + time: '2025-05-12T21:24:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37364 +- author: Hanzdegloker + changes: + - message: Previously unused flavors alongside some reworked ones now appear in + Dan's soaked smokes packs. + type: Tweak + id: 8469 + time: '2025-05-12T23:27:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36979 +- author: EmoGarbage404 + changes: + - message: Added the basilisk! This mob can be found on the vgroid and can freeze + you with his eye beam. His diamond exterior can sell for a pretty penny, however... + type: Add + id: 8470 + time: '2025-05-12T23:42:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37135 +- author: perryprog + changes: + - message: You can now link uniform printers to silos. + type: Tweak + id: 8471 + time: '2025-05-12T23:56:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37393 +- author: K-Dynamic + changes: + - message: Recoloured job icons of chaplain, librarian, boxer, janitor, lawyer and + ID icon of lawyer, boxer from grey to green + type: Tweak + id: 8472 + time: '2025-05-13T07:43:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36580 +- author: chromiumboy + changes: + - message: Station AIs can personalize the appearance of their cores and holograms + by right-clicking the AI core in which they are inserted and selecting 'AI customization' + from the list + type: Add + id: 8473 + time: '2025-05-13T08:50:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34501 +- author: EmoGarbage404 + changes: + - message: Adjusted the sounds of various floors and shoes. + type: Tweak + id: 8474 + time: '2025-05-13T09:16:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36941 +- author: metalgearsloth + changes: + - message: Predicted freezers + heaters UIs. + type: Tweak + id: 8475 + time: '2025-05-13T11:49:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33837 +- author: AsnDen + changes: + - message: Supplybots can now pull things. + type: Add + id: 8476 + time: '2025-05-13T17:15:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32468 +- author: BigfootBravo + changes: + - message: Cargo acquisition slips can now fit into folders, clipboards, and envelopes, + like other papers can. + type: Fix + id: 8477 + time: '2025-05-14T04:42:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37439 +- author: Hitlinemoss + changes: + - message: The chef's closet no longer contains an emergency crowbar. + type: Remove + id: 8478 + time: '2025-05-14T05:16:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37403 +- author: BigfootBravo + changes: + - message: No more spammed error message when trying to write on a acquisition slip. + type: Fix + id: 8479 + time: '2025-05-14T05:56:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37442 +- author: ToastEnjoyer + changes: + - message: Removed the high value target status on certain computer boards, replacing + them with command restricted status. + type: Tweak + id: 8480 + time: '2025-05-14T17:47:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37452 +- author: LevitatingTree + changes: + - message: Changed the names of the neurodivergent pins to more accurately reflect + their meanings. + type: Tweak + id: 8481 + time: '2025-05-14T18:03:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37416 +- author: metalgearsloth + changes: + - message: Predict gas valves. + type: Tweak + id: 8482 + time: '2025-05-14T18:06:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33836 +- author: MisterImp + changes: + - message: A new recipe has been added for dracos (dragon meat tacos). + type: Add + id: 8483 + time: '2025-05-14T19:33:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37212 +- author: LaCumbiaDelCoronavirus + changes: + - message: Maximum radius (not diameter) of atmos tank explosions has been increased + to 10 tiles, however the scale of their increase in size has been decreased. + type: Tweak + id: 8484 + time: '2025-05-14T19:49:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36780 +- author: qwerltaz + changes: + - message: Snipping the panic wire in an air alarm now forces panic mode until the + wire is mended. + type: Tweak + id: 8485 + time: '2025-05-14T20:39:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36439 +- author: IProduceWidgets + changes: + - message: more wizard name variety + type: Add + id: 8486 + time: '2025-05-14T21:06:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36437 +- author: archee1 + changes: + - message: Bike horns of all varieties have had their textures updated slightly. + type: Tweak + id: 8487 + time: '2025-05-14T22:05:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37413 +- author: slarticodefast + changes: + - message: Fixed paradox clones not copying the mute, snoring and frontal lisp traits. + type: Fix + id: 8488 + time: '2025-05-15T01:45:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37467 +- author: kosticia + changes: + - message: Hamsters, mice, butterflies, mothroaches, bees, bats, snails, rats, ticks + and cockroaches now don't leave organs on gibbing. + type: Fix + id: 8489 + time: '2025-05-15T03:45:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37080 +- author: EmoGarbage404 + changes: + - message: Goliath tentacles no longer miss if you stand still. + type: Fix + id: 8490 + time: '2025-05-15T03:55:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37168 +- author: K-Dynamic + changes: + - message: Industrial advanced welders may be found in welding supplies lockers. + type: Tweak + id: 8491 + time: '2025-05-15T03:55:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36977 +- author: BlitzTheSquishy + changes: + - message: You're no longer allowed to fire the Hristov or Mosin one handed anymore. + type: Tweak + id: 8492 + time: '2025-05-15T04:12:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33708 +- author: metalgearsloth + changes: + - message: Predict bed action when you buckle to a sleepable entity. + type: Tweak + id: 8493 + time: '2025-05-15T12:52:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37414 +- author: Chartman95 + changes: + - message: Soaked Smokes retain their 40u max capacity. + type: Tweak + id: 8494 + time: '2025-05-15T14:47:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37482 +- author: lzk228 + changes: + - message: Recycler can shred clothing that can be butchered. + type: Tweak + id: 8495 + time: '2025-05-15T23:44:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31518 +- author: metalgearsloth + changes: + - message: Raise shuttle speed cap from 20 to 60m/s. + type: Tweak + id: 8496 + time: '2025-05-16T12:04:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37505 +- author: metalgearsloth + changes: + - message: The pulling hand blocker is now predicted. + type: Tweak + id: 8497 + time: '2025-05-16T12:44:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37504 +- author: BigfootBravo + changes: + - message: Vox can now eat untagged human food again! + type: Fix + id: 8498 + time: '2025-05-16T19:05:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37497 +- author: EmoGarbage404 + changes: + - message: The guidebook is now more explicit about how damage/healing from chemicals + is split. + type: Tweak + id: 8499 + time: '2025-05-16T21:19:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37507 +- author: EmoGarbage404 + changes: + - message: Fixed the mining asteroid not having a name. + type: Fix + id: 8500 + time: '2025-05-17T01:27:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37513 +- author: EmoGarbage404 + changes: + - message: You can now patch holes in the floors of the evac shuttle and ATS. + type: Fix + id: 8501 + time: '2025-05-17T01:54:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36989 +- author: Lanedon + changes: + - message: Multiple head gear now hides the hair ! + type: Fix + id: 8502 + time: '2025-05-17T05:05:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36818 +- author: ArtisticRoomba + changes: + - message: Metal foam grenades have been added to station engineer lockers. + type: Add + - message: Metal foam grenades have been tweaked to cover more area over a longer + period of time. + type: Tweak + - message: Metal foam grenades now have a 5 second timer. + type: Tweak + - message: Aluminum foam walls now take one hit to destroy. + type: Tweak + id: 8503 + time: '2025-05-17T05:21:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37476 +- author: EmoGarbage404 + changes: + - message: Fixed tetherguns not having a beam when dragging. + type: Fix + id: 8504 + time: '2025-05-17T05:22:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37510 +- author: aada + changes: + - message: Id cards now have the same max length as character names. + type: Fix + id: 8505 + time: '2025-05-17T05:27:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35407 +- author: ArtisticRoomba + changes: + - message: Radiation collector power output has been buffed. Remember engineers, + the third level on the PA is safe for long term use! + type: Tweak + id: 8506 + time: '2025-05-17T07:45:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37475 +- author: Ilya246 + changes: + - message: Shuttles can now deal (weak) collision damage. + type: Add + id: 8507 + time: '2025-05-17T17:11:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37422 +- author: VlaDOS1408 + changes: + - message: Fax UI Menu has been reworked and now behaves better on resizing + type: Tweak + id: 8508 + time: '2025-05-17T17:20:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33825 +- author: YotaXP + changes: + - message: Favorites selected in the construction menu will now persist between + rounds. + type: Tweak + id: 8509 + time: '2025-05-17T17:37:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35867 +- author: perryprog + changes: + - message: You can now link cutter machines to material silos. + type: Tweak + id: 8510 + time: '2025-05-18T01:51:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37554 +- author: Spangs04 + changes: + - message: Resprited Telecomms + type: Tweak + id: 8511 + time: '2025-05-18T02:10:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35811 +- author: EmoGarbage404 + changes: + - message: Added the salvage job board! This board allows salvagers to access and + complete a variety of jobs in order to rank up, earn spesos, and unlock new + cargo orders. Work hard and you too may become a Supreme Salvager. + type: Add + id: 8512 + time: '2025-05-18T04:02:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37549 +- author: EmoGarbage404 + changes: + - message: Lathes can no longer connect to research servers on separate grids + type: Tweak + id: 8513 + time: '2025-05-18T04:04:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36821 +- author: 0leshe + changes: + - message: Changed max and minimum amount of jigger transfer amount + type: Tweak + id: 8514 + time: '2025-05-18T04:14:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35962 +- author: ArtisticRoomba + changes: + - message: Air grenades have been added! These can fill up a spaced room of ~30 + tiles with fresh air. They can be found in Atmospheric Technician's lockers. + Use them wisely! + type: Add + id: 8515 + time: '2025-05-18T04:32:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37531 +- author: EmoGarbage404 + changes: + - message: Various salvage equipment can now be unlocked through the job board and + purchased through cargo. + type: Add + - message: Space debris and the mining asteroid no longer generate salvage equipment + type: Tweak + id: 8516 + time: '2025-05-18T06:40:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37561 +- author: mrjajkes + changes: + - message: Add Blatantly Nuclear as a Nuke Song. + type: Add + id: 8517 + time: '2025-05-18T07:30:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35927 +- author: metalgearsloth + changes: + - message: Shuttles now are treated as rooved for daylight. + type: Tweak + id: 8518 + time: '2025-05-18T07:47:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36112 +- author: ScarKy0 + changes: + - message: Deliveries can now very rarely spawn as bomb-type! They grant A LOT of + spesos... at a price. + type: Add + id: 8519 + time: '2025-05-18T08:57:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37069 +- author: ScarKy0 + changes: + - message: Aloxadone has been tweaked. The recipe has been altered to be simplier + to make and the healing values have been increased. + type: Tweak + id: 8523 + time: '2025-05-18T09:16:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37239 +- author: Simyon + changes: + - message: The Syndicate and Wizard Communications Console now no longer show who + the message was sent by. + type: Tweak + id: 8524 + time: '2025-05-18T09:18:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37567 +- author: SuperGDPWYL + changes: + - message: A Lone Operative detonating the nuke on-station will now end the round. + type: Add + - message: The endscreen will now properly show how successful Lone Operatives were. + type: Fix + id: 8525 + time: '2025-05-18T11:34:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36498 +- author: metalgearsloth + changes: + - message: Fixes being able to grab items through walls. + type: Fix + id: 8526 + time: '2025-05-18T14:38:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37570 +- author: qwerltaz + changes: + - message: Water vapor is now dangerous to slime life-forms. + type: Add + id: 8527 + time: '2025-05-18T22:55:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32751 +- author: slarticodefast + changes: + - message: Added a new keybind for swapping hands in the other direction (if you + got more than two). Defaults to Shift+X. Useful for cycling through borg modules. + type: Add + id: 8528 + time: '2025-05-19T01:17:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37588 +- author: keronshb + changes: + - message: Force Wall timers changed so it despawns faster than it can be cast. + type: Tweak + - message: Force Wall users can now interact while inside of the wall, but also + can be attacked while inside of the wall. + type: Tweak + id: 8529 + time: '2025-05-19T01:30:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37525 +- author: Samuka + changes: + - message: Holy water now evaporates. + type: Fix + id: 8530 + time: '2025-05-19T16:14:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37611 +- author: aada + changes: + - message: Pepper makes you cough. + type: Add + id: 8531 + time: '2025-05-19T18:23:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36358 +- author: Entvari + changes: + - message: Hyper Capacity Powercells are now available as Tier 3 Industrial Research. + type: Add + - message: The Tier 3 Industrial Research 'Portable Fission' has been renamed to + Optimized Microgalvanism to better reflect this. + type: Tweak + id: 8532 + time: '2025-05-19T22:35:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37619 +- author: RedBookcase + changes: + - message: The Salvage section of the guidebook has been updated. + type: Fix + id: 8533 + time: '2025-05-19T22:39:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37593 +- author: SpeltIncorrectyl + changes: + - message: Kammerer now has a tighter spread to compensate for its lower rate of + fire. + type: Tweak + id: 8534 + time: '2025-05-19T22:45:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37616 +- author: Pronana + changes: + - message: Galoshes now slow on puddles again + type: Fix + id: 8535 + time: '2025-05-20T02:47:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37628 +- author: slarticodefast + changes: + - message: Added a reduced motion version of the seeing rainbows overlay. + type: Add + id: 8536 + time: '2025-05-20T12:36:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37584 +- author: B-Kirill + changes: + - message: Added new fun meteors variations (Cosmic cow, Honksteroid, Space potato) + that drop unique loot upon destruction. Urist McMeteor now shatters into meat + when explodes. + type: Add + id: 8537 + time: '2025-05-20T13:04:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37327 +- author: Kittygyat + changes: + - message: Added a new, faster way for slimepeople to access their own special inventory, + with LMB. + type: Add + id: 8538 + time: '2025-05-20T16:55:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37592 +- author: FrostWinters + changes: + - message: Histamines no longer cause radiation. + type: Tweak + - message: Epinephrine treats Histamines above OD threshold. + type: Tweak + id: 8544 + time: '2025-05-21T01:12:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37460 +- author: Minty642 + changes: + - message: Added fungal soil, maintenance version of hydroponics. + type: Add + id: 8545 + time: '2025-05-21T04:59:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36245 +- author: metalgearsloth + changes: + - message: Picking up items with area pickups (e.g. trash bags) no longer lags the + game. + type: Fix + id: 8546 + time: '2025-05-21T06:16:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37638 +- author: Errant + changes: + - message: High-energy shuttle impacts now deal much less damage. + type: Tweak + id: 8547 + time: '2025-05-21T10:37:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37578 +- author: metalgearsloth + changes: + - message: Shuttle impact force is now proportional to direction of impact. + type: Tweak + id: 8548 + time: '2025-05-21T13:32:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37667 +- author: muburu + changes: + - message: Singularity beacons and powersinks now require two free hands to hold. + type: Tweak + id: 8549 + time: '2025-05-21T17:11:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37683 +- author: ElectroJr + changes: + - message: Microwaving the nuke disk will now slightly randomize the nuke countdown + timer. + type: Add + id: 8550 + time: '2025-05-21T18:06:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36114 +- author: AsnDen + changes: + - message: Cyborgs now can scream. 9 new screaming sound were added. + type: Tweak + id: 8551 + time: '2025-05-21T19:49:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32329 +- author: ScarKy0 + changes: + - message: The "Help another traitor" objective now requires you help them complete + all of their objectives. + type: Tweak + - message: The "Help another traitor" objective now updates it's progress according + to the progress of who you're supposed to help, allowing for partial completion. + type: Tweak + id: 8552 + time: '2025-05-21T20:45:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37679 +- author: PJB3005 + changes: + - message: Significantly reduced video memory usage of the parallax system. + type: Tweak + id: 8553 + time: '2025-05-22T01:22:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37180 +- author: ArtisticRoomba + changes: + - message: Tesla coils can now hold a max capacity of 5 MJ, and receive 5 MJ of + energy when struck by lightning. + type: Tweak + - message: Tesla coils can now only output a maximum of 350 kW to the grid. This + was done to make power flow smoother (it was triggering epilepsy in extreme + circumstances). + type: Tweak + id: 8554 + time: '2025-05-22T01:39:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37626 +- author: Wolfkey-SomeoneElseTookMyUsername + changes: + - message: You can now construct disposal signalers, which trigger a signal every + time an item passes through them. + type: Add + id: 8555 + time: '2025-05-22T02:18:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37535 +- author: ScarKy0 + changes: + - message: The "Escape alive and unrestrained" objective now counts as partially + complete if you show up handcuffed. Being dead still has it count as a total + fail! + type: Tweak + id: 8556 + time: '2025-05-22T03:25:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37680 +- author: EmoGarbage404 + changes: + - message: Added cargo orders for gold and silver ingots. + type: Add + - message: Reduced prices of cardboard and paper material crate. + type: Tweak + id: 8557 + time: '2025-05-22T08:42:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37713 +- author: ArtisticRoomba + changes: + - message: The volume of large gas canisters have been increased to 1500L to encourage + their usage in resolving pressure problems in spaced rooms. The gas that starts + inside of the tanks and the price of them has increased to compensate. + type: Tweak + id: 8558 + time: '2025-05-22T18:12:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37564 +- author: Hitlinemoss + changes: + - message: Liquid soap is now slippery. + type: Fix + id: 8559 + time: '2025-05-23T21:57:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37747 +- author: CoconutThunder + changes: + - message: The Chief Medical Officer should now appear with the correct precedence + in the crew manifest. + type: Fix + id: 8560 + time: '2025-05-24T05:10:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37774 +- author: TiniestShark + changes: + - message: Added inhand sprites for the bartender utensils and mugs. + type: Add + id: 8561 + time: '2025-05-24T17:32:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37771 +- author: K-Dynamic + changes: + - message: Shutters and blast doors now appear welded when welded. + type: Fix + id: 8562 + time: '2025-05-25T15:57:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37807 +- author: Stop-Signs + changes: + - message: Meals now better reflect the amount of ingredients put into them. + type: Tweak + id: 8563 + time: '2025-05-25T18:02:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34138 +- author: brainfood1183 + changes: + - message: Kangaroos can now be equipped with northstars and knuckle dusters. + type: Tweak + id: 8564 + time: '2025-05-25T18:03:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37789 +- author: Moomoobeef + changes: + - message: Added new variants to dirty tiles. + type: Tweak + id: 8565 + time: '2025-05-25T18:11:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37800 +- author: AsnDen + changes: + - message: Tile-aligned bar sign version was added. + type: Add + - message: Bar signs now have proper collision. + type: Fix + id: 8566 + time: '2025-05-25T18:36:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37756 +- author: Fildrance + changes: + - message: Spray nozzle now can consume liquids from puddles and put it right into + backpacked tank. + type: Add + id: 8567 + time: '2025-05-26T03:36:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30600 +- author: Southbridge + changes: + - message: On Amber, gave security its missing beacon and barriers. + type: Fix + id: 8568 + time: '2025-05-26T07:29:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37700 +- author: jessicamaybe + changes: + - message: NPC Gorillas can now pry open doors and vault/smash tables! + type: Tweak + id: 8569 + time: '2025-05-26T10:49:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37822 +- author: ArtisticRoomba + changes: + - message: The TEG's efficiency in extracting power from gasses has been tweaked + to promote dual-loop designs that recycle the waste heat of gasses, and punish + "meta" single loop designs. + type: Tweak + id: 8570 + time: '2025-05-26T11:53:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37728 +- author: ArtisticRoomba + changes: + - message: The TEG now outputs smoother power when pressure across the circulators + flutter. (This was causing epilepsy in extreme circumstances). + type: Fix + id: 8571 + time: '2025-05-26T12:07:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37658 +- author: chromiumboy + changes: + - message: Sentry turret control panels can now be found adjacent to rooms containing + sentry turrets. Authorized personnel can use these panels to remotely monitor + and alter the settings of any linked sentry turrets. + type: Add + id: 8572 + time: '2025-05-26T13:00:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35235 diff --git a/Resources/Changelog/Maps.yml b/Resources/Changelog/Maps.yml index 4da32c64da..7c03ab65a3 100644 --- a/Resources/Changelog/Maps.yml +++ b/Resources/Changelog/Maps.yml @@ -89,4 +89,161 @@ id: 12 time: '2025-05-04T07:20:33.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/37171 +- author: Spessmann + changes: + - message: On Convex, reconstructed genpop. It can now hold 8 prisoners. + type: Tweak + - message: On Convex, removed the prisoner eva room. + type: Remove + id: 13 + time: '2025-05-06T06:56:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37216 +- author: Southbridge, Flipsie27 + changes: + - message: On Amber, gave the captain a tertiary ID card. + type: Add + - message: On Amber, gave Atmos their own front desk across from sec. + type: Add + - message: On Amber, gave botany a large water container. + type: Tweak + - message: On Amber, overhauled the security department to introduce GenPop. + type: Tweak + - message: On Amber, overhauled and moved the AI satellite to the east side of the + map, enlarging it to accommodate AI turrets in the future. + type: Tweak + id: 14 + time: '2025-05-08T01:39:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37262 +- author: Deerstop + changes: + - message: On Elkridge, the botany area has been improved with additional trays, + vents, and scrubbers. + type: Tweak + - message: On Elkridge, firelocks and emergency lights have been added to security. + type: Fix + - message: On Elkridge, the backstage area is now accessible to service and theatre + access. + type: Tweak + - message: On Elkridge, the service request console is now backstage + type: Tweak + id: 15 + time: '2025-05-11T00:49:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37206 +- author: spanky-spanky + changes: + - message: On Omega, the TEG burn chamber blast door buttons are now engineering + access instead of atmospherics. + type: Fix + - message: On Omega, security now get hardsuits. + type: Fix + id: 16 + time: '2025-05-16T02:10:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37490 +- author: Spessmann + changes: + - message: On Convex, added a window to sec EVA storage + type: Add + id: 17 + time: '2025-05-17T04:49:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37533 +- author: Southbridge + changes: + - message: On Amber, gave salvage a job board. + type: Add + - message: On Amber, gave the warden a blue toolbox. + type: Add + id: 18 + time: '2025-05-18T07:23:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37565 +- author: Minemoder + changes: + - message: The ATS station anchor room was rebuilt to prevent stealing from the + room, and to add shuttle miners to repressurize the ATS. + type: Tweak + id: 19 + time: '2025-05-18T08:12:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37560 +- author: Spessmann + changes: + - message: On Convex, added a job board computer to the salvage bay. + type: Add + - message: On Convex, remove the extra pair of mass scanners and expedition consoles + from the salvage bay. + type: Remove + id: 20 + time: '2025-05-18T17:43:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37579 +- author: Southbridge + changes: + - message: On Box, added the Salvage Job Board. + type: Add + - message: On Box, swapped the devices in the freezer to their freezer variants. + type: Tweak + - message: On Box, modified the containment area to be a little more intuitive for + both singularity and tesla setups. + type: Tweak + - message: On Box, modified TEG piping to make more sense. + type: Tweak + id: 21 + time: '2025-05-19T08:16:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37602 +- author: Deerstop + changes: + - message: On Elkridge, the salvage bay has received an overhaul, including the + new Job Board Computer + type: Tweak + id: 22 + time: '2025-05-19T18:55:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37600 +- author: spanky-spanky + changes: + - message: On Fland, the salvage job board has been added. + type: Add + id: 23 + time: '2025-05-20T23:27:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37653 +- author: spanky-spanky + changes: + - message: On Bagel, the salvage job board has been added. + type: Add + id: 24 + time: '2025-05-20T23:27:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37652 +- author: spanky-spanky + changes: + - message: On Marathon, the salvage job board has been added. + type: Add + - message: On Marathon, the default TEG has been improved. + type: Tweak + id: 25 + time: '2025-05-20T23:29:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37654 +- author: spanky-spanky + changes: + - message: On Omega, the salvage job board has been added. + type: Add + id: 26 + time: '2025-05-20T23:35:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37655 +- author: spanky-spanky + changes: + - message: On Packed, the salvage job board has been added. + type: Add + id: 27 + time: '2025-05-21T00:12:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37656 +- author: Southbridge + changes: + - message: On Box, redesigned Security to have GenPop. + type: Tweak + id: 28 + time: '2025-05-21T05:00:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37663 +- author: spanky-spanky + changes: + - message: On Reach, all recent content additions have been added. + type: Add + id: 29 + time: '2025-05-21T07:51:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37669 Order: 1 diff --git a/Resources/ConfigPresets/Build/development.toml b/Resources/ConfigPresets/Build/development.toml index 3c2506c190..a42a218a11 100644 --- a/Resources/ConfigPresets/Build/development.toml +++ b/Resources/ConfigPresets/Build/development.toml @@ -41,3 +41,4 @@ see_own_notes = true [ic] random_characters = true random_species_weights = "" +ssd_sleep_time = 3600 diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 2e4c8a7531..bf34b51808 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -52,7 +52,7 @@ alert.min_players_sharing_connection = 2 allow_multi_server_play = false [atmos] -max_explosion_range = 5 +max_explosion_range = 10 [status] privacy_policy_link = "https://spacestation14.com/about/privacy/#game-server-privacy-policy" diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 273d358836..43862d7a66 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0tito, 0x6273, 12rabbits, 1337dakota, 13spacemen, 154942, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, aaron, abadaba695, Ablankmann, abregado, Absolute-Potato, Absotively, achookh, Acruid, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, AgentSmithRadio, Agoichi, Ahion, aiden, Aisu9, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alice4267, Alithsko, alliephante, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, archee1, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, azzyisnothere, B-Kirill, baa14453, BackeTako, Bakke, BananaFlambe, Baptr0b0t, BarryNorfolk, BasedUser, beck-thompson, bellwetherlogic, ben, benbryant0, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Bokser815, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, BWTCK, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, catdotjs, catlord, Catofquestionableethics, CatTheSystem, centcomofficer24, Centronias, Chaboricks, chairbender, Chaoticaa, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, CheesePlated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, ciaran, civilCornball, claustro305, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, Compilatron144, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, cooperwallace, corentt, CormosLemming, CrafterKolyan, crazybrain23, Crazydave91920, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, cryals, CrzyPotato, cubixthree, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, dan, dangerrevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, DeepwaterCreations, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, dinnercalzone, DinoWattz, DisposableCrewmember42, dissidentbullet, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DR-DOCTOR-EVIL-EVIL, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, DuckManZach, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, dylanwhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, Entvari, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, farrellka-dev, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, Firewars763, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, GaussiArson, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, Gentleman-Bird, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, golubgik, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GrownSamoyedDog, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Helm4142, Henry, HerCoyote23, HighTechPuddle, hitomishirichan, hiucko, hivehum, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, Hrosts, htmlsystem, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iaada, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imatsoup, IMCB, impubbi, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jacktastic09, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JohnGinnane, johnku1, Jophire, joshepvodka, jproads, Jrpl, jukereise, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, kaiserbirch, KaiShibaa, kalane15, kalanosh, KamTheSythe, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, kiri-yoshikage, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, LaCumbiaDelCoronavirus, lajolico, Lamrr, lanedon, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, linkbro1, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, ljm862, lmsnoise, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, Lusatia, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, Magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, manelnavola, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, memeproof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterImp, MisterMecky, Mith-randalf, mjarduk, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, momo, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, murolem, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikitosych, nikthechampiongr, Nimfar11, ninruB, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, noirogen, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, Nyxilath, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OneZerooo0, OnyxTheBrave, Orange-Winds, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paige404, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, philingham, Phill101, Phooooooooooooooooooooooooooooooosphate, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, PotRoastPiggy, ProfanedBane, PROG-MohamedDwidar, prole0, Pronana, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, pumkin69, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, qrwas, Quantum-cross, quatre, QueerNB, QuietlyWhisper, qwerltaz, Radezolid, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, robinthedragon, Rockdtben, Rohesie, rok-povsic, rokudara-sen, rolfero, RomanNovo, rosieposieeee, Roudenn, router, ruddygreat, RumiTiger, Ruzihm, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, Samuka-C, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, SeamLesss, Segonist, semensponge, sephtasm, Serkket, sewerpig, SG6732, sh18rw, Shaddap1, ShadeAware, ShadowCommander, shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SharkSnake98, shibechef, SignalWalker, siigiil, silicon14wastaken, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, sowelipililimute, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, Sparlight, spartak, SpartanKadence, spderman3333, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, starbuckss14, Stealthbomber16, stellar-novas, stewie523, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, supergdpwyl, superjj18, Supernorn, SweptWasTaken, SyaoranFox, Sybil, SYNCHRONIC, Szunti, t, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, TheBlueYowie, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TheProNoob678, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, TiniestShark, Titian3, tk-a369, tkdrg, tmtmtl30, ToastEnjoyer, Toby222, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, TornadoTechnology, tosatur, TotallyLemon, ToxicSonicFan04, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, uhbg, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Utmanarn, Vaaankas, valentfingerov, valquaint, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, VerinSenpai, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, vexerot, viceemargo, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, Vortebo, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, whatston3, widgetbeck, Will-Oliver-Br, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, Wolfkey-SomeoneElseTookMyUsername, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, YoungThugSS14, Yousifb26, youtissoum, yunii, YuriyKiss, yuriykiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, ZeWaka, zHonys, zionnBE, ZNixian, Zokkie, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex +0leshe, 0tito, 0x6273, 12rabbits, 1337dakota, 13spacemen, 154942, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, aaron, abadaba695, Ablankmann, abregado, Absolute-Potato, Absotively, achookh, Acruid, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, AgentSmithRadio, Agoichi, Ahion, aiden, Aisu9, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alice4267, Alithsko, alliephante, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, archee, archee1, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, azzyisnothere, B-Kirill, baa14453, BackeTako, Bakke, BananaFlambe, Baptr0b0t, BarryNorfolk, BasedUser, beck-thompson, bellwetherlogic, ben, benbryant0, benev0, benjamin-burges, BGare, bhespiritu, bibbly, bigfootbravo, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Bokser815, bolantej, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, BWTCK, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, Camdot, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, catdotjs, catlord, Catofquestionableethics, CatTheSystem, centcomofficer24, Centronias, Chaboricks, chairbender, Chaoticaa, Charlese2, charlie, chartman, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, CheesePlated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, ciaran, civilCornball, claustro305, Clement-O, clyf, Clyybber, CMDR-Piboy314, coco, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, Compilatron144, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, cooperwallace, corentt, CormosLemming, CrafterKolyan, crazybrain23, Crazydave91920, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, cryals, CrzyPotato, cubixthree, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, dan, dangerrevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, DeepwaterCreations, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinnerCalzone, DinoWattz, DisposableCrewmember42, dissidentbullet, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DR-DOCTOR-EVIL-EVIL, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, DuckManZach, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, dylanwhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, Entvari, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, farrellka-dev, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, Firewars763, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FrostRibbon, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gamewar360, gansulalan, GaussiArson, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, Gentleman-Bird, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, golubgik, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GrownSamoyedDog, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Helm4142, Henry, HerCoyote23, HighTechPuddle, Hitlinemoss, hiucko, hivehum, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, Hrosts, htmlsystem, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iaada, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imatsoup, IMCB, impubbi, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jacktastic09, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JCGWE30, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JohnGinnane, johnku1, Jophire, joshepvodka, jproads, JrInventor05, Jrpl, jukereise, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, kaiserbirch, KaiShibaa, kalane15, kalanosh, KamTheSythe, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, kiri-yoshikage, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, Kittygyat, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, LaCumbiaDelCoronavirus, lajolico, Lamrr, lanedon, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, linkbro1, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, ljm862, lmsnoise, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, Lusatia, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, Magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, manelnavola, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, memeproof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterImp, MisterMecky, Mith-randalf, mjarduk, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, momo, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, murolem, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikitosych, nikthechampiongr, Nimfar11, ninruB, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, noirogen, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, Nyxilath, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OneZerooo0, OnyxTheBrave, Orange-Winds, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paige404, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, perryprog, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, philingham, Phill101, Phooooooooooooooooooooooooooooooosphate, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, PotRoastPiggy, ProfanedBane, PROG-MohamedDwidar, Prole0, Pronana, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, pumkin69, PuroSlavKing, PursuitInAshes, Putnam3145, py01, qrtDaniil, qrwas, Quantum-cross, quatre, QueerNB, QuietlyWhisper, qwerltaz, Radezolid, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, robinthedragon, Rockdtben, Rohesie, rok-povsic, rokudara-sen, rolfero, RomanNovo, rosieposieeee, Roudenn, router, ruddygreat, RumiTiger, Ruzihm, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, Samuka-C, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, SeamLesss, Segonist, semensponge, sephtasm, Serkket, sewerpig, SG6732, sh18rw, Shaddap1, ShadeAware, ShadowCommander, shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SharkSnake98, shibechef, SignalWalker, siigiil, silicon14wastaken, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, solstar2, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, soupkilove, southbridge-fur, sowelipililimute, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, Spangs04, spanky-spanky, Sparlight, spartak, SpartanKadence, spderman3333, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, starbuckss14, Stealthbomber16, stellar-novas, stewie523, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, supergdpwyl, superjj18, Supernorn, SweptWasTaken, SyaoranFox, Sybil, SYNCHRONIC, Szunti, t, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, TheBlueYowie, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TheProNoob678, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, TiniestShark, Titian3, tk-a369, tkdrg, tmtmtl30, ToastEnjoyer, Toby222, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, TornadoTechnology, tosatur, TotallyLemon, ToxicSonicFan04, Tr1bute, trixxedbit, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, uhbg, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Utmanarn, Vaaankas, valentfingerov, valquaint, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, VerinSenpai, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, vexerot, viceemargo, VigersRay, violet754, Visne, vlad, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, Vortebo, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, whatston3, widgetbeck, Will-Oliver-Br, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, Wolfkey-SomeoneElseTookMyUsername, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, YoungThugSS14, Yousifb26, youtissoum, yunii, yuriykiss, YuriyKiss, zach-hill, Zadeon, Zalycon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, ZeWaka, zHonys, zionnBE, ZNixian, Zokkie, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex diff --git a/Resources/Locale/en-US/_strings/accessories/human-hair.ftl b/Resources/Locale/en-US/_strings/accessories/human-hair.ftl index 0ce0e27be7..7754d772a5 100644 --- a/Resources/Locale/en-US/_strings/accessories/human-hair.ftl +++ b/Resources/Locale/en-US/_strings/accessories/human-hair.ftl @@ -196,3 +196,4 @@ marking-HumanHairVeryshortovereyealternate = Very Short (Over Eye) marking-HumanHairVlongfringe = Very Long with Fringe marking-HumanHairVolaju = Volaju marking-HumanHairWisp = Wisp +marking-HumanHairLongWithBangs = Long With Bangs diff --git a/Resources/Locale/en-US/_strings/actions/actions/actions-commands.ftl b/Resources/Locale/en-US/_strings/actions/actions/actions-commands.ftl index c0cd59cdac..ac5374f008 100644 --- a/Resources/Locale/en-US/_strings/actions/actions/actions-commands.ftl +++ b/Resources/Locale/en-US/_strings/actions/actions/actions-commands.ftl @@ -1,6 +1,7 @@ ## Actions Commands loc ## Upgradeaction command loc +upgradeaction-command-help = Usage: upgradeaction [level] upgradeaction-command-need-one-argument = upgradeaction needs at least one argument, the action entity uid. The second optional argument is a specified level. upgradeaction-command-max-two-arguments = upgradeaction has a maximum of two arguments, the action entity uid and the (optional) level to set. upgradeaction-command-second-argument-not-number = upgradeaction's second argument can only be a number. diff --git a/Resources/Locale/en-US/_strings/atmos/air-alarm-ui.ftl b/Resources/Locale/en-US/_strings/atmos/air-alarm-ui.ftl index 57e47cf4cf..25669997ed 100644 --- a/Resources/Locale/en-US/_strings/atmos/air-alarm-ui.ftl +++ b/Resources/Locale/en-US/_strings/atmos/air-alarm-ui.ftl @@ -13,6 +13,7 @@ air-alarm-ui-window-device-count-label = Total Devices air-alarm-ui-window-resync-devices-label = Resync air-alarm-ui-window-mode-label = Mode +air-alarm-ui-window-mode-select-locked-label = [bold][color=red] Mode selector failure! [/color][/bold] air-alarm-ui-window-auto-mode-label = Auto mode -air-alarm-state-name = { $state -> diff --git a/Resources/Locale/en-US/_strings/atmos/plaque-component.ftl b/Resources/Locale/en-US/_strings/atmos/plaque-component.ftl deleted file mode 100644 index 9b2b23de18..0000000000 --- a/Resources/Locale/en-US/_strings/atmos/plaque-component.ftl +++ /dev/null @@ -1,11 +0,0 @@ -atmos-plaque-component-desc-zum = This plaque commemorates the rise of the Atmos ZUM division. May they carry the torch that the Atmos ZAS, LINDA and FEA divisions left behind. -atmos-plaque-component-desc-fea = This plaque commemorates the fall of the Atmos FEA division. For all the charred, dizzy, and brittle men who have died in its hands. -atmos-plaque-component-desc-linda =This plaque commemorates the fall of the Atmos LINDA division. For all the charred, dizzy, and brittle men who have died in its hands. -atmos-plaque-component-desc-zas = This plaque commemorates the fall of the Atmos ZAS division. For all the charred, dizzy, and brittle men who have died in its hands. -atmos-plaque-component-desc-unset = Uhm - -atmos-plaque-component-name-zum = ZUM Atmospherics Division plaque -atmos-plaque-component-name-fea = FEA Atmospherics Division plaque -atmos-plaque-component-name-linda = LINDA Atmospherics Division plaque -atmos-plaque-component-name-zas = ZAS Atmospherics Division plaque -atmos-plaque-component-name-unset = Uhm \ No newline at end of file diff --git a/Resources/Locale/en-US/_strings/cargo/bounties.ftl b/Resources/Locale/en-US/_strings/cargo/bounties.ftl index f5705b0e3a..02eb49250a 100644 --- a/Resources/Locale/en-US/_strings/cargo/bounties.ftl +++ b/Resources/Locale/en-US/_strings/cargo/bounties.ftl @@ -11,6 +11,7 @@ bounty-item-clown-shoes = Clown shoes bounty-item-corn = Ear of corn bounty-item-crayon = Crayon bounty-item-cuban-carp = Cuban carp +bounty-item-diamond = Diamond bounty-item-donk-pocket = Donk-pocket bounty-item-donut = Donut bounty-item-figurine = Action figure @@ -25,6 +26,11 @@ bounty-item-lime = Lime bounty-item-lung = Lung bounty-item-monkey-cube = Monkey cube bounty-item-mouse = Dead mouse +bounty-item-ore-bananium = Bananium ore +bounty-item-ore-gold = Gold ore +bounty-item-ore-plasma = Plasma ore +bounty-item-ore-silver = Silver ore +bounty-item-ore-uranium = Uranium ore bounty-item-pancake = Pancake bounty-item-pen = Pen bounty-item-percussion = Percussion instrument @@ -32,6 +38,7 @@ bounty-item-pie = Pie bounty-item-prison-uniform = Prison uniform bounty-item-radio = Radio or Headset bounty-item-research-disk = Research disk +bounty-item-scrap = Scrap bounty-item-shiv = Shiv bounty-item-soap = Soap bounty-item-soup = Soup @@ -68,6 +75,9 @@ bounty-item-microwave-machine-board = Microwave machine board bounty-item-flash = Flash bounty-item-tooth-space-carp = Space Carp Tooth bounty-item-tooth-sharkminnow = Sharkminnow Tooth +bounty-item-ring = Ring +bounty-item-remains = Hivelord Remains +bounty-item-plates = Goliath Hide Plates bounty-description-artifact = NanoTrasen is in some hot water for stealing artifacts from non-spacefaring planets. Return one and we'll compensate you for it. bounty-description-baseball-bat = Baseball fever is going on at CentComm! Be a dear and ship them some baseball bats, so that management can live out their childhood dream. @@ -136,5 +146,4 @@ bounty-description-wine = The new librarian and the Quartermaster are falling he bounty-description-cotton-boll = A massive swarm of mothroaches ate all the paper and cloth on the station. Send us some cotton to help keep our winged crewmembers fed. bounty-description-microwave-machine-board = Mr. Giggles thought it'd be funny to stick forks in all the kitchen microwaves. Help us replace them before the chefs start making clown burgers. bounty-description-flashes = GREETINGS \[Station] WE REQUIRE 6 FLASHES DUE TO A NORMAL \[TrainingExercise] WITH SECURITY. EVERYTHING IS \[Normal]. -bounty-description-tooth-space-carp = Some lads from "down unda" need some teeth to make their traditional apparel. Send them a few from some space carp. -bounty-description-tooth-sharkminnow = The chef is claiming that the teeth of sharkminnows are some kind of high-quality knife. I don't know what they're on about, but they want a set. Send it to them. +bounty-description-ring = On this EXTRAORDINARY day there will be a wedding between the Gelts, but Mr. Gelt has lost the rings, send a pair of rings. diff --git a/Resources/Locale/en-US/_strings/cargo/cargo-console-component.ftl b/Resources/Locale/en-US/_strings/cargo/cargo-console-component.ftl index 22e75ae6dc..bc28306db1 100644 --- a/Resources/Locale/en-US/_strings/cargo/cargo-console-component.ftl +++ b/Resources/Locale/en-US/_strings/cargo/cargo-console-component.ftl @@ -18,7 +18,7 @@ cargo-console-menu-requests-label = Requests cargo-console-menu-orders-label = Orders cargo-console-menu-order-reason-description = Reasons: {$reason} cargo-console-menu-populate-categories-all-text = All -cargo-console-menu-populate-orders-cargo-order-row-product-name-text = {$productName} (x{$orderAmount}) by {$orderRequester} +cargo-console-menu-populate-orders-cargo-order-row-product-name-text = {$productName} (x{$orderAmount}) by {$orderRequester} from [color={$accountColor}]{$account}[/color] cargo-console-menu-cargo-order-row-approve-button = Approve cargo-console-menu-cargo-order-row-cancel-button = Cancel cargo-console-menu-tab-title-orders = Orders @@ -82,3 +82,15 @@ cargo-funding-alloc-console-label-save-fail = [bold]Revenue Divisions Invalid![/ [1] + *[-1] - }{$val}%)[/color] + +# Slip template +cargo-acquisition-slip-body = [head=3]Asset Detail[/head] + {"[bold]Product:[/bold]"} {$product} + {"[bold]Description:[/bold]"} {$description} + {"[bold]Unit cost:[/bold"}] ${$unit} + {"[bold]Amount:[/bold]"} {$amount} + {"[bold]Cost:[/bold]"} ${$cost} + + {"[head=3]Purchase Detail[/head]"} + {"[bold]Orderer:[/bold]"} {$orderer} + {"[bold]Reason:[/bold]"} {$reason} diff --git a/Resources/Locale/en-US/_strings/cargo/price-gun-component.ftl b/Resources/Locale/en-US/_strings/cargo/price-gun-component.ftl index 29a1482d19..fe20e3296b 100644 --- a/Resources/Locale/en-US/_strings/cargo/price-gun-component.ftl +++ b/Resources/Locale/en-US/_strings/cargo/price-gun-component.ftl @@ -2,3 +2,4 @@ price-gun-verb-text = Appraisal price-gun-verb-message = Appraise {THE($object)}. price-gun-bounty-complete = The device confirms that the bounty contained within is completed. +price-gun-salvjob-complete = The device confirms that the salvage job contained within is completed. diff --git a/Resources/Locale/en-US/_strings/chat/chat-channel.ftl b/Resources/Locale/en-US/_strings/chat/chat-channel.ftl new file mode 100644 index 0000000000..10ab1fc756 --- /dev/null +++ b/Resources/Locale/en-US/_strings/chat/chat-channel.ftl @@ -0,0 +1,2 @@ +chat-channel-humanized-ooc = OOC +chat-channel-humanized-admin = ADMIN diff --git a/Resources/Locale/en-US/_strings/chat/managers/chat-manager.ftl b/Resources/Locale/en-US/_strings/chat/managers/chat-manager.ftl index 704d96cc15..c20852468b 100644 --- a/Resources/Locale/en-US/_strings/chat/managers/chat-manager.ftl +++ b/Resources/Locale/en-US/_strings/chat/managers/chat-manager.ftl @@ -44,6 +44,7 @@ chat-manager-send-admin-chat-wrap-message = {$adminChannelName}: [bold]{$playerN chat-manager-send-admin-announcement-wrap-message = [bold]{$adminChannelName}: {$message}[/bold] chat-manager-send-hook-ooc-wrap-message = OOC: [bold](D){$senderName}:[/bold] {$message} +chat-manager-send-hook-admin-wrap-message = ADMIN: [bold](D){$senderName}:[/bold] {$message} chat-manager-dead-channel-name = DEAD chat-manager-admin-channel-name = ADMIN diff --git a/Resources/Locale/en-US/_strings/commands/colornetwork-command.ftl b/Resources/Locale/en-US/_strings/commands/colornetwork-command.ftl index 3fd60bcb89..c77657000e 100644 --- a/Resources/Locale/en-US/_strings/commands/colornetwork-command.ftl +++ b/Resources/Locale/en-US/_strings/commands/colornetwork-command.ftl @@ -1,3 +1,5 @@ cmd-colornetwork-desc = Paints the atmos devices in the specified color cmd-colornetwork-help = colornetwork Pipe cmd-colornetwork-no-access = You are not currently able to use mapping commands. +shell-entity-is-not-node-container = Target entity is not a node container. +shell-node-group-is-invalid = Invalid node group specified. Valid groups: { $groups }. \ No newline at end of file diff --git a/Resources/Locale/en-US/_strings/commands/toolshed-commands.ftl b/Resources/Locale/en-US/_strings/commands/toolshed-commands.ftl index 3a620b049b..90c0226ecc 100644 --- a/Resources/Locale/en-US/_strings/commands/toolshed-commands.ftl +++ b/Resources/Locale/en-US/_strings/commands/toolshed-commands.ftl @@ -94,3 +94,5 @@ command-description-xenoartifact-averageResearch = Calculates amount of research points average generated xeno artifact will output when fully activated. command-description-xenoartifact-unlockAllNodes = Unlocks all nodes of artifact. +command-description-jobboard-completeJob = + Completes a given salvage job board job for the station. diff --git a/Resources/Locale/en-US/_strings/components/screen-component.ftl b/Resources/Locale/en-US/_strings/components/screen-component.ftl new file mode 100644 index 0000000000..baa3229533 --- /dev/null +++ b/Resources/Locale/en-US/_strings/components/screen-component.ftl @@ -0,0 +1,2 @@ +screen-text = screenText +screen-color = screenColor \ No newline at end of file diff --git a/Resources/Locale/en-US/_strings/escape-menu/ui/options-menu.ftl b/Resources/Locale/en-US/_strings/escape-menu/ui/options-menu.ftl index 374dffa835..9563f897df 100644 --- a/Resources/Locale/en-US/_strings/escape-menu/ui/options-menu.ftl +++ b/Resources/Locale/en-US/_strings/escape-menu/ui/options-menu.ftl @@ -151,6 +151,7 @@ ui-options-function-alt-activate-item-in-world = Alternative activate item in wo ui-options-function-drop = Drop item ui-options-function-examine-entity = Examine ui-options-function-swap-hands = Swap hands +ui-options-function-swap-hands-reverse = Swap hands (other direction) ui-options-function-move-stored-item = Move stored item ui-options-function-rotate-stored-item = Rotate stored item ui-options-function-save-item-location = Save item location @@ -227,16 +228,16 @@ ui-options-function-hotbar7 = Hotbar slot 7 ui-options-function-hotbar8 = Hotbar slot 8 ui-options-function-hotbar9 = Hotbar slot 9 ui-options-function-hotbar0 = Hotbar slot 0 -ui-options-function-hotbarshift1 = Hotbar slot Shift+1 -ui-options-function-hotbarshift2 = Hotbar slot Shift+2 -ui-options-function-hotbarshift3 = Hotbar slot Shift+3 -ui-options-function-hotbarshift4 = Hotbar slot Shift+4 -ui-options-function-hotbarshift5 = Hotbar slot Shift+5 -ui-options-function-hotbarshift6 = Hotbar slot Shift+6 -ui-options-function-hotbarshift7 = Hotbar slot Shift+7 -ui-options-function-hotbarshift8 = Hotbar slot Shift+8 -ui-options-function-hotbarshift9 = Hotbar slot Shift+9 -ui-options-function-hotbarshift0 = Hotbar slot Shift+0 +ui-options-function-hotbar-shift1 = Hotbar slot Shift+1 +ui-options-function-hotbar-shift2 = Hotbar slot Shift+2 +ui-options-function-hotbar-shift3 = Hotbar slot Shift+3 +ui-options-function-hotbar-shift4 = Hotbar slot Shift+4 +ui-options-function-hotbar-shift5 = Hotbar slot Shift+5 +ui-options-function-hotbar-shift6 = Hotbar slot Shift+6 +ui-options-function-hotbar-shift7 = Hotbar slot Shift+7 +ui-options-function-hotbar-shift8 = Hotbar slot Shift+8 +ui-options-function-hotbar-shift9 = Hotbar slot Shift+9 +ui-options-function-hotbar-shift0 = Hotbar slot Shift+0 ui-options-function-loadout1 = Hotbar Loadout 1 ui-options-function-loadout2 = Hotbar Loadout 2 ui-options-function-loadout3 = Hotbar Loadout 3 diff --git a/Resources/Locale/en-US/_strings/fax/fax.ftl b/Resources/Locale/en-US/_strings/fax/fax.ftl index 412f3d7f43..86587b88ed 100644 --- a/Resources/Locale/en-US/_strings/fax/fax.ftl +++ b/Resources/Locale/en-US/_strings/fax/fax.ftl @@ -11,7 +11,7 @@ fax-machine-dialog-field-name = Name fax-machine-ui-window = Fax Machine fax-machine-ui-file-button = Print File -fax-machine-ui-paper-button-normal = Normal Paper +fax-machine-ui-paper-button-normal = Plain Paper fax-machine-ui-paper-button-office = Office Paper fax-machine-ui-copy-button = Copy fax-machine-ui-send-button = Send diff --git a/Resources/Locale/en-US/_strings/game-ticking/game-ticker.ftl b/Resources/Locale/en-US/_strings/game-ticking/game-ticker.ftl index 0c8c532dfb..c03e8671d9 100644 --- a/Resources/Locale/en-US/_strings/game-ticking/game-ticker.ftl +++ b/Resources/Locale/en-US/_strings/game-ticking/game-ticker.ftl @@ -33,7 +33,7 @@ player-first-join-message = Player {$name} joined for the first time. # Displayed in chat to admins when a player leaves player-leave-message = Player {$name} left. -latejoin-arrival-announcement = {$character} ({$job}) { CONJUGATE-HAVE($entity) } arrived at the station! +latejoin-arrival-announcement = {$character} ({$job}) has arrived at the station! latejoin-arrival-announcement-special = {$job} {$character} on deck! latejoin-arrival-sender = Station latejoin-arrivals-direction = A shuttle transferring you to your station will arrive shortly. diff --git a/Resources/Locale/en-US/_strings/guidebook/chemistry/conditions.ftl b/Resources/Locale/en-US/_strings/guidebook/chemistry/conditions.ftl index 95aaf9126d..fe31dd62f8 100644 --- a/Resources/Locale/en-US/_strings/guidebook/chemistry/conditions.ftl +++ b/Resources/Locale/en-US/_strings/guidebook/chemistry/conditions.ftl @@ -62,3 +62,15 @@ reagent-effect-condition-guidebook-has-tag = } the tag {$tag} reagent-effect-condition-guidebook-this-reagent = this reagent + +reagent-effect-condition-guidebook-breathing = + the metabolizer is { $isBreathing -> + [true] breathing normally + *[false] suffocating + } + +reagent-effect-condition-guidebook-internals = + the metabolizer is { $usingInternals -> + [true] using internals + *[false] breathing atmospheric air + } diff --git a/Resources/Locale/en-US/_strings/guidebook/chemistry/effects.ftl b/Resources/Locale/en-US/_strings/guidebook/chemistry/effects.ftl index 2a40d00f72..a5ddb03f0a 100644 --- a/Resources/Locale/en-US/_strings/guidebook/chemistry/effects.ftl +++ b/Resources/Locale/en-US/_strings/guidebook/chemistry/effects.ftl @@ -87,6 +87,21 @@ reagent-effect-guidebook-health-change = } } { $changes } +reagent-effect-guidebook-even-health-change = + { $chance -> + [1] { $healsordeals -> + [heals] Evenly heals + [deals] Evenly deals + *[both] Evenly modifies health by + } + *[other] { $healsordeals -> + [heals] evenly heal + [deals] evenly deal + *[both] evenly modify health by + } + } { $changes } + + reagent-effect-guidebook-status-effect = { $type -> [add] { $chance -> @@ -243,6 +258,12 @@ reagent-effect-guidebook-electrocute = *[other] electrocute } the metabolizer for {NATURALFIXED($time, 3)} {MANY("second", $time)} +reagent-effect-guidebook-emote = + { $chance -> + [1] Will force + *[other] force + } the metabolizer to [bold][color=white]{$emote}[/color][/bold] + reagent-effect-guidebook-extinguish-reaction = { $chance -> [1] Extinguishes diff --git a/Resources/Locale/en-US/_strings/info/ban.ftl b/Resources/Locale/en-US/_strings/info/ban.ftl index 2efd07508b..a61d184e60 100644 --- a/Resources/Locale/en-US/_strings/info/ban.ftl +++ b/Resources/Locale/en-US/_strings/info/ban.ftl @@ -27,7 +27,7 @@ cmd-banpanel-player-err = The specified player could not be found cmd-banlist-desc = Lists a user's active bans. cmd-banlist-help = Usage: banlist cmd-banlist-empty = No active bans found for {$user} -cmd-banlistF-hint = +cmd-banlist-hint = cmd-ban_exemption_update-desc = Set an exemption to a type of ban on a player. cmd-ban_exemption_update-help = Usage: ban_exemption_update [ [...]] diff --git a/Resources/Locale/en-US/_strings/inventory/components/slot-block-component.ftl b/Resources/Locale/en-US/_strings/inventory/components/slot-block-component.ftl new file mode 100644 index 0000000000..55f870812b --- /dev/null +++ b/Resources/Locale/en-US/_strings/inventory/components/slot-block-component.ftl @@ -0,0 +1 @@ +slot-block-component-blocked = This slot is blocked by {$item}! diff --git a/Resources/Locale/en-US/_strings/machine-linking/transmitter_ports.ftl b/Resources/Locale/en-US/_strings/machine-linking/transmitter_ports.ftl index 1d879fcee9..89a978479e 100644 --- a/Resources/Locale/en-US/_strings/machine-linking/transmitter_ports.ftl +++ b/Resources/Locale/en-US/_strings/machine-linking/transmitter_ports.ftl @@ -69,3 +69,6 @@ signal-port-description-power-charging = This port is invoked with HIGH when the signal-port-name-power-discharging = Discharging signal-port-description-power-discharging = This port is invoked with HIGH when the battery is losing charge and LOW when not. + +signal-port-name-item-detected = Detected +signal-port-description-item-detected = This port is invoked whenever the transmitter detects an item. diff --git a/Resources/Locale/en-US/_strings/mass-media/news-discord.ftl b/Resources/Locale/en-US/_strings/mass-media/news-discord.ftl new file mode 100644 index 0000000000..cf02742232 --- /dev/null +++ b/Resources/Locale/en-US/_strings/mass-media/news-discord.ftl @@ -0,0 +1,2 @@ +news-discord-footer = Server: {$server} | Round: #{$round} | Author: {$author} | Time: {$time} +news-discord-unknown-author = Unknown diff --git a/Resources/Locale/en-US/_strings/medical/components/health-analyzer-component.ftl b/Resources/Locale/en-US/_strings/medical/components/health-analyzer-component.ftl index eb79358ecc..68e8dd3806 100644 --- a/Resources/Locale/en-US/_strings/medical/components/health-analyzer-component.ftl +++ b/Resources/Locale/en-US/_strings/medical/components/health-analyzer-component.ftl @@ -15,8 +15,8 @@ health-analyzer-window-entity-damage-total-text = Total Damage: health-analyzer-window-damage-group-text = {$damageGroup}: {$amount} health-analyzer-window-damage-type-text = {$damageType}: {$amount} -health-analyzer-window-entity-unrevivable-text = [color=red]Unique body composition detected! Patient can not be resuscitated by normal means![/color] -health-analyzer-window-entity-bleeding-text = [color=red]Patient is bleeding![/color] +health-analyzer-window-entity-unrevivable-text = [color=yellow]Unique body composition detected! Patient can not be resuscitated by normal means![/color] +health-analyzer-window-entity-bleeding-text = [color=red]Patient has open wounds![/color] health-analyzer-window-scan-mode-text = Scan Mode: health-analyzer-window-scan-mode-active = Active diff --git a/Resources/Locale/en-US/_strings/ninja/ninja-actions.ftl b/Resources/Locale/en-US/_strings/ninja/ninja-actions.ftl index b3e295b7a2..9ca0468666 100644 --- a/Resources/Locale/en-US/_strings/ninja/ninja-actions.ftl +++ b/Resources/Locale/en-US/_strings/ninja/ninja-actions.ftl @@ -4,6 +4,7 @@ ninja-suit-cooldown = The suit needs time to recuperate from the last attack. ninja-cell-downgrade = The suit will only accept a new power cell that is better than the current one! ninja-cell-too-large = This power source does not fit in the ninja suit! +ninja-download-fail = Server has no research data... ninja-research-steal-fail = No new research nodes were stolen... ninja-research-steal-success = Stole {$count} new nodes from {THE($server)}. diff --git a/Resources/Locale/en-US/_strings/nuke/nuke-component.ftl b/Resources/Locale/en-US/_strings/nuke/nuke-component.ftl index dfd56347ca..64c67e2e04 100644 --- a/Resources/Locale/en-US/_strings/nuke/nuke-component.ftl +++ b/Resources/Locale/en-US/_strings/nuke/nuke-component.ftl @@ -6,6 +6,8 @@ nuke-component-announcement-unarmed = The station's self-destruct was deactivate nuke-component-announcement-send-codes = Attention! Self-destruction codes have been sent to designated fax machines. nuke-component-doafter-warning = You start fiddling with wires and knobs in order to disarm the nuke.. This may take a while. +nuke-disk-component-microwave = The disk sparks and fizzles a bit, but seems mostly unharmed? + # Nuke UI nuke-user-interface-title = Nuclear Fission Explosive nuke-user-interface-arm-button = ARM diff --git a/Resources/Locale/en-US/_strings/objectives/commands/stripall.ftl b/Resources/Locale/en-US/_strings/objectives/commands/stripall.ftl new file mode 100644 index 0000000000..bb7512838e --- /dev/null +++ b/Resources/Locale/en-US/_strings/objectives/commands/stripall.ftl @@ -0,0 +1,5 @@ +# stripall +cmd-stripall-desc = Strips an entity of all their inventory and hands. +cmd-stripall-help = Usage: stripall + +cmd-stripall-player-completion = diff --git a/Resources/Locale/en-US/_strings/objectives/conditions/other-traitor-progress.ftl b/Resources/Locale/en-US/_strings/objectives/conditions/other-traitor-progress.ftl index 4ee832d7ce..beefa44277 100644 --- a/Resources/Locale/en-US/_strings/objectives/conditions/other-traitor-progress.ftl +++ b/Resources/Locale/en-US/_strings/objectives/conditions/other-traitor-progress.ftl @@ -1 +1 @@ -objective-condition-other-traitor-progress-title = Ensure fellow traitor {$targetName}, {CAPITALIZE($job)} achieves at least half their objectives. +objective-condition-other-traitor-progress-title = Ensure fellow traitor {$targetName}, {CAPITALIZE($job)} completes their objectives. diff --git a/Resources/Locale/en-US/_strings/objectives/round-end.ftl b/Resources/Locale/en-US/_strings/objectives/round-end.ftl index 3da81fc964..002eb83a79 100644 --- a/Resources/Locale/en-US/_strings/objectives/round-end.ftl +++ b/Resources/Locale/en-US/_strings/objectives/round-end.ftl @@ -11,7 +11,9 @@ objectives-player-named = [color=White]{$name}[/color] objectives-no-objectives = {$custody}{$title} was a {$agent}. objectives-with-objectives = {$custody}{$title} was a {$agent} who had the following objectives: -objectives-objective-success = {$objective} | [color={$markupColor}]Success![/color] -objectives-objective-fail = {$objective} | [color={$markupColor}]Failure![/color] ({$progress}%) +objectives-objective-success = {$objective} | [color=green]Success![/color] ({TOSTRING($progress, "P0")}) +objectives-objective-partial-success = {$objective} | [color=yellow]Partial Success![/color] ({TOSTRING($progress, "P0")}) +objectives-objective-partial-failure = {$objective} | [color=orange]Partial Failure![/color] ({TOSTRING($progress, "P0")}) +objectives-objective-fail = {$objective} | [color=red]Failure![/color] ({TOSTRING($progress, "P0")}) objectives-in-custody = [bold][color=red]| IN CUSTODY | [/color][/bold] diff --git a/Resources/Locale/en-US/_strings/pacified/pacified.ftl b/Resources/Locale/en-US/_strings/pacified/pacified.ftl index e0a0e9d1c3..8e51a5ecb0 100644 --- a/Resources/Locale/en-US/_strings/pacified/pacified.ftl +++ b/Resources/Locale/en-US/_strings/pacified/pacified.ftl @@ -7,8 +7,6 @@ pacified-cannot-throw = I can't bring myself to throw { THE($projectile) }, that pacified-cannot-throw-embed = No way I could throw { THE($projectile) }, that could get lodged inside someone! # With liquid-spilling projectiles: pacified-cannot-throw-spill = I can't possibly throw { THE($projectile) }, that could spill nasty stuff on someone! -# With bolas and snares: -pacified-cannot-throw-snare = I can't throw { THE($projectile) }, what if someone trips?! pacified-cannot-harm-directly = I can't bring myself to hurt { THE($entity) }! pacified-cannot-harm-indirect = I can't damage { THE($entity) }, it could hurt someone! diff --git a/Resources/Locale/en-US/_strings/reagents/meta/chemicals.ftl b/Resources/Locale/en-US/_strings/reagents/meta/chemicals.ftl index 8747a159a8..ad9d12e26f 100644 --- a/Resources/Locale/en-US/_strings/reagents/meta/chemicals.ftl +++ b/Resources/Locale/en-US/_strings/reagents/meta/chemicals.ftl @@ -30,6 +30,3 @@ reagent-desc-cellulose = A crystaline polydextrose polymer, plants swear by this reagent-name-rororium = rororium reagent-desc-rororium = A strange substance which fills the cores of the hivelords that roam the mining asteroid. Thought to be the source of their regenerative powers. - -reagent-name-salicylic-acid = salicylic acid -reagent-desc-salicylic-acid = A powdery substance used for dermatological treatments. diff --git a/Resources/Locale/en-US/_strings/reagents/meta/medicine.ftl b/Resources/Locale/en-US/_strings/reagents/meta/medicine.ftl index 1c8e13789b..1d2dac1bf5 100644 --- a/Resources/Locale/en-US/_strings/reagents/meta/medicine.ftl +++ b/Resources/Locale/en-US/_strings/reagents/meta/medicine.ftl @@ -134,7 +134,7 @@ reagent-name-necrosol = necrosol reagent-desc-necrosol = A necrotic substance that seems to be able to heal frozen corpses. It can treat and rejuvenate plants when applied in small doses. reagent-name-aloxadone = aloxadone -reagent-desc-aloxadone = A cryogenics chemical. Used to treat severe third degree burns via regeneration of the burnt tissue. Works regardless of the patient being alive or dead. +reagent-desc-aloxadone = A cryogenics chemical. Used to treat severe burns and frostbite via regeneration of the affected tissue. Works regardless of the patient being alive or dead. reagent-name-mannitol = mannitol reagent-desc-mannitol = Efficiently restores brain damage. @@ -147,6 +147,3 @@ reagent-desc-potassium-iodide = Will reduce the damaging effects of radiation by reagent-name-haloperidol = haloperidol reagent-desc-haloperidol = Removes most stimulating and hallucinogenic drugs. Reduces druggy effects and jitteriness. Causes drowsiness. - -reagent-name-traumoxadone = traumoxadone -reagent-desc-traumoxadone = A cryogenics chemical. Used to treat severe trauma to tissues via patching them with tiny particles within the liquid. Works regardless of the patient being alive or dead. diff --git a/Resources/Locale/en-US/_strings/research/technologies.ftl b/Resources/Locale/en-US/_strings/research/technologies.ftl index c751b25856..20b97f05fe 100644 --- a/Resources/Locale/en-US/_strings/research/technologies.ftl +++ b/Resources/Locale/en-US/_strings/research/technologies.ftl @@ -22,7 +22,7 @@ research-technology-advanced-atmospherics = Advanced Atmospherics research-technology-advanced-tools = Advanced Tools research-technology-super-powercells = Super Powercells research-technology-bluespace-storage = Bluespace Storage -research-technology-portable-fission = Portable Fission +research-technology-optimized-microgalvanism = Optimized Microgalvanism research-technology-space-scanning = Space Scanning research-technology-excavation = Mass Excavation @@ -82,6 +82,7 @@ research-technology-meat-manipulation = Meat Manipulation research-technology-honk-mech = H.O.N.K. Mech research-technology-honk-weapons = Bananium Weapons research-technology-advanced-spray = Advanced Spray +research-technology-launcher-syringe = Syringe Gun research-technology-bluespace-cargo-transport = Bluespace Cargo Transport research-technology-clowning-utilities = Clowning Utilities research-technology-quantum-fiber-weaving = Quantum Fiber Weaving diff --git a/Resources/Locale/en-US/_strings/salvage/job-board.ftl b/Resources/Locale/en-US/_strings/salvage/job-board.ftl new file mode 100644 index 0000000000..1333be7651 --- /dev/null +++ b/Resources/Locale/en-US/_strings/salvage/job-board.ftl @@ -0,0 +1,47 @@ +salvage-job-rank-title-0 = [color=gray]Scavenger[/color] +salvage-job-rank-title-1 = [color=white]Scrapper[/color] +salvage-job-rank-title-2 = [color=yellow]Specialist[/color] +salvage-job-rank-title-MAX = [color=gold]Supreme Salvager[/color] + +job-board-radio-announce = Salvager rank increased to [bold]{$rank}[/bold]! New orders can be purchased from Cargo. + +job-board-ui-window-title = Job Board +job-board-ui-label-rank = [bold]Rank:[/bold] +job-board-ui-label-items = Target: [color=red]{$item}[/color] + +job-board-label-text = [head=2]Salvage Job Shipment[/head] + {"[italic]For use only on official off-station salvage shipments.[/italic]"} + + {"[bold]Target:[/bold]"} {$target} + {"[bold]Reward:[/bold]"} ${$reward} + + + {"[italic]Shipments are subject to inspection by the Donk corporation[/italic]"} + +salv-job-board-name-BountyTeethSpaceCarp = Space Carp +salv-job-board-name-BountySalvageScrap = Deep-Space Debris +salv-job-board-name-BountySalvageOreGold = Gold (Ore) +salv-job-board-name-BountySalvageOreSilver = Silver (Ore) + +salv-job-board-name-BountySalvageOreUranium = Uranium (Ore) +salv-job-board-name-BountySalvageOrePlasma = Plasma (Ore) +salv-job-board-name-BountySalvageOreBananium = Bananium (Ore) +salv-job-board-name-BountyTeethSharkminnow = Sharkminnow + +salv-job-board-name-BountyGoliathPlates = Goliath +salv-job-board-name-BountyHivelordRemains = Hivelord +salv-job-board-name-BountySalvageDiamond = Diamond + +bounty-description-tooth-space-carp = We need you to get a sample of some space carp teeth. You can find these guys on all kinds of salvage debris. Just be careful about their bite. +bounty-description-salvage-scrap = We are researching the effects of deep space on station materials, and we need some samples. Find some old junk off of debris and bring it to us. +bounty-description-salvage-ore-gold = We are engaging in an experimental new electronics manufacturing process. Deliver us a large sum of unrefined gold ore. It can come from any source. +bounty-description-salvage-ore-silver = We are studying the material effects of silver based on the refining methods. Send us a large amount of unrefined silver ore. It can come from any source. + +bounty-description-tooth-sharkminnow = We need you to get a sample of some Sharkminnow teeth. These guys are a fair bit nastier than the smaller carp you're familiar with. Take care to not let them bite you: they'll suck out your blood and heal. +bounty-description-salvage-ore-plasma = We need a shipment of plasma ore to send over to the research station. Please provide us with some so that we can continue our testing. It can come from any source. +bounty-description-salvage-ore-uranium = We need a sample of uranium ore for our ongoing experiments on nuclear devices. Be aware that while the uranium does glow slightly, it will probably not harm you. It can come from any source. +bounty-description-salvage-ore-bananium = We have an ongoing project to decode the mystifying clown genomic sequence. We believe a sample of raw bananium will help us achieve this. Note that this only comes from the rarest of deep-space asteroids. + +bounty-description-remains = We need you to get a sample of a few Hivelord cores. Be aware that Hivelords can replicate infinitely if the core is not destroyed. Take care not to get overwhelmed. +bounty-description-plates = We need you to get a couple sheets of Goliath hide. These guys are pretty slow, but be careful about the tentacles: they'll grab you and pull you to the ground. You don't want to know what happens next. +bounty-description-diamond = We need you to acquire a few diamonds for some advanced fabrication. These can either be found in the mining asteroid nearby or cut out of the basilisk creature. Whichever way you want to do it, get us some. diff --git a/Resources/Locale/en-US/_strings/shell.ftl b/Resources/Locale/en-US/_strings/shell.ftl index 957d3d3c02..3f4aea5ed2 100644 --- a/Resources/Locale/en-US/_strings/shell.ftl +++ b/Resources/Locale/en-US/_strings/shell.ftl @@ -34,6 +34,7 @@ shell-entity-uid-must-be-number = EntityUid must be a number. shell-could-not-find-entity = Could not find entity {$entity} shell-could-not-find-entity-with-uid = Could not find entity with uid {$uid} shell-entity-with-uid-lacks-component = Entity with uid {$uid} doesn't have {INDEFINITE($componentName)} {$componentName} component +shell-entity-target-lacks-component = Target entity doesn't have {INDEFINITE($componentName)} {$componentName} component shell-invalid-color-hex = Invalid color hex! shell-target-player-does-not-exist = Target player does not exist! shell-target-entity-does-not-have-message = Target entity does not have {INDEFINITE($missing)} {$missing}! diff --git a/Resources/Locale/en-US/_strings/silicons/station-ai.ftl b/Resources/Locale/en-US/_strings/silicons/station-ai.ftl index 76c30eb101..abdddbe1e0 100644 --- a/Resources/Locale/en-US/_strings/silicons/station-ai.ftl +++ b/Resources/Locale/en-US/_strings/silicons/station-ai.ftl @@ -22,3 +22,25 @@ toggle-light = Toggle light ai-device-not-responding = Device is not responding ai-consciousness-download-warning = Your consciousness is being downloaded. + +# UI +station-ai-customization-menu = AI customization +station-ai-customization-categories = Categories +station-ai-customization-options = Options (choice of one) +station-ai-customization-core = AI core displays +station-ai-customization-hologram = Holographic avatars + +# Customizations +station-ai-icon-ai = Ghost in the machine +station-ai-icon-angel = Guardian angel +station-ai-icon-bliss = Simpler times +station-ai-icon-clown = Clownin' around +station-ai-icon-dorf = Adventure awaits +station-ai-icon-heartline = Lifeline +station-ai-icon-smiley = All smiles + +station-ai-hologram-female = Female appearance +station-ai-hologram-male = Male appearance +station-ai-hologram-face = Disembodied head +station-ai-hologram-cat = Cat form +station-ai-hologram-dog = Corgi form \ No newline at end of file diff --git a/Resources/Locale/en-US/_strings/station-events/events/meteor-swarm.ftl b/Resources/Locale/en-US/_strings/station-events/events/meteor-swarm.ftl index 0090c170ca..0b82c7fb95 100644 --- a/Resources/Locale/en-US/_strings/station-events/events/meteor-swarm.ftl +++ b/Resources/Locale/en-US/_strings/station-events/events/meteor-swarm.ftl @@ -3,3 +3,7 @@ station-event-meteor-swarm-end-announcement = The meteor swarm has passed. Pleas station-event-space-dust-start-announcement = The station is passing through a debris cloud, expect minor damage to external fittings and fixtures. station-event-meteor-urist-start-announcement = The station is colliding with an unidentified swarm of debris. Please stay calm and do not listen to them. +station-event-meteor-cow-start-announcement = The station is colliding with an unidentified swarm of debris. Warning: Do not feed them wheat. Moo-ve away from exterior sections. +station-event-meteor-clown-start-announcement = The station is colliding with an unidentified swarm of debris. HONK! Evacuate laughing gas storage immediately. +station-event-meteor-potato-start-announcement = The station is colliding with an unidentified swarm of debris. High starch content detected. +station-event-fun-swarm-start-announcement = The station is colliding with an unidentified swarm of debris. Please panic appropriately. diff --git a/Resources/Locale/en-US/_strings/station-records/general-station-records.ftl b/Resources/Locale/en-US/_strings/station-records/general-station-records.ftl index 4516a547f4..f5b70761e1 100644 --- a/Resources/Locale/en-US/_strings/station-records/general-station-records.ftl +++ b/Resources/Locale/en-US/_strings/station-records/general-station-records.ftl @@ -12,6 +12,8 @@ general-station-record-console-record-dna = DNA: {$dna} general-station-record-for-filter-line-placeholder = Input text and press "Enter" general-station-record-name-filter = Name of person +general-station-record-job-filter = Job +general-station-record-species-filter = Species general-station-record-prints-filter = Fingerprints general-station-record-dna-filter = DNA general-station-record-console-search-records = Search diff --git a/Resources/Locale/en-US/_strings/store/uplink-catalog.ftl b/Resources/Locale/en-US/_strings/store/uplink-catalog.ftl index dda3545a85..d52bf3d86e 100644 --- a/Resources/Locale/en-US/_strings/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/_strings/store/uplink-catalog.ftl @@ -260,6 +260,9 @@ uplink-surplus-bundle-desc = Contains 50 telecrystals worth of completely random uplink-super-surplus-bundle-name = Super Surplus Crate uplink-super-surplus-bundle-desc = Contains 125 telecrystals worth of completely random Syndicate items. +uplink-starter-kit-name = Basic Operative Bundle +uplink-starter-kit-desc = Contains 40 telecrystals of basic operative gear. For those operatives who just don't know what they should buy. + # Tools uplink-toolbox-name = Toolbox uplink-toolbox-desc = A full compliment of tools for the mechanically inclined traitor. Includes a pair of insulated combat gloves and a syndicate gas mask as well. diff --git a/Resources/Locale/en-US/_strings/strip/strippable-component.ftl b/Resources/Locale/en-US/_strings/strip/strippable-component.ftl index 7022319d22..91fd8d1de1 100644 --- a/Resources/Locale/en-US/_strings/strip/strippable-component.ftl +++ b/Resources/Locale/en-US/_strings/strip/strippable-component.ftl @@ -16,6 +16,7 @@ strippable-component-alert-owner-interact = {CAPITALIZE(THE($user))} is fumbling # StripVerb strip-verb-get-data-text = Strip +strip-all-verb-get-data-text = Strip All ## UI diff --git a/Resources/Locale/en-US/_strings/ui/spray-painter-window.ftl b/Resources/Locale/en-US/_strings/ui/spray-painter-window.ftl new file mode 100644 index 0000000000..5466810e11 --- /dev/null +++ b/Resources/Locale/en-US/_strings/ui/spray-painter-window.ftl @@ -0,0 +1 @@ +pipe-painter-no-color-selected = (No color selected) \ No newline at end of file diff --git a/Resources/Locale/en-US/_strings/ui/turret-controls.ftl b/Resources/Locale/en-US/_strings/ui/turret-controls.ftl new file mode 100644 index 0000000000..549781a866 --- /dev/null +++ b/Resources/Locale/en-US/_strings/ui/turret-controls.ftl @@ -0,0 +1,31 @@ +# Headings +turret-controls-window-title = Autonomous Defense Control System +turret-controls-window-turret-status-label = Linked devices [{$count}] +turret-controls-window-armament-controls-label = Armament setting +turret-controls-window-targeting-controls-label = Authorized personnel + +# Status reports +turret-controls-window-no-turrets = +turret-controls-window-turret-status = » {$device} - Status: {$status} +turret-controls-window-turret-disabled = ***OFFLINE*** +turret-controls-window-turret-retracted = INACTIVE +turret-controls-window-turret-retracting = DEACTIVATING +turret-controls-window-turret-deployed = SEARCHING... +turret-controls-window-turret-deploying = ACTIVATING +turret-controls-window-turret-firing = ENGAGING TARGET +turret-controls-window-turret-error = ERROR [404] + +# Buttons +turret-controls-window-safe = Inactive +turret-controls-window-stun = Stun +turret-controls-window-lethal = Lethal +turret-controls-window-ignore = Ignore +turret-controls-window-target = Target +turret-controls-window-access-group-label = {$prefix} {$label} +turret-controls-window-all-checkbox = All + +# Flavor +turret-controls-window-footer = Unauthorized personnel should ensure defenses are inactive before proceeding + +# Warnings +turret-controls-access-denied = Access denied \ No newline at end of file diff --git a/Resources/Locale/en-US/_strings/weapons/ranged/gun.ftl b/Resources/Locale/en-US/_strings/weapons/ranged/gun.ftl index 10bc9e6c78..18e01e31c8 100644 --- a/Resources/Locale/en-US/_strings/weapons/ranged/gun.ftl +++ b/Resources/Locale/en-US/_strings/weapons/ranged/gun.ftl @@ -50,3 +50,7 @@ gun-revolver-insert = Inserted gun-revolver-spin = Spin revolver gun-revolver-spun = Spun gun-speedloader-empty = Speedloader empty + +# GunSpreadModifier +examine-gun-spread-modifier-reduction = The spread has been reduced by [color=yellow]{$percentage}%[/color]. +examine-gun-spread-modifier-increase = The spread has been increased by [color=yellow]{$percentage}%[/color]. diff --git a/Resources/Locale/en-US/_strings/wieldable/wieldable-component.ftl b/Resources/Locale/en-US/_strings/wieldable/wieldable-component.ftl index 1c88e45727..f4c5446960 100644 --- a/Resources/Locale/en-US/_strings/wieldable/wieldable-component.ftl +++ b/Resources/Locale/en-US/_strings/wieldable/wieldable-component.ftl @@ -7,6 +7,7 @@ wieldable-component-successful-wield = You wield { THE($item) }. wieldable-component-failed-wield = You unwield { THE($item) }. wieldable-component-successful-wield-other = { CAPITALIZE(THE($user)) } wields { THE($item) }. wieldable-component-failed-wield-other = { CAPITALIZE(THE($user)) } unwields { THE($item) }. +wieldable-component-blocked-wield = { CAPITALIZE(THE($blocker)) } blocks you from wielding { THE($item) }. wieldable-component-no-hands = You don't have enough hands! wieldable-component-not-enough-free-hands = {$number -> diff --git a/Resources/Locale/en-US/datasets/names/wizard_first.ftl b/Resources/Locale/en-US/datasets/names/wizard_first.ftl index bf7b945b5c..ad11ea529c 100644 --- a/Resources/Locale/en-US/datasets/names/wizard_first.ftl +++ b/Resources/Locale/en-US/datasets/names/wizard_first.ftl @@ -2,29 +2,43 @@ names-wizard-first-dataset-1 = Ashenzari names-wizard-first-dataset-2 = Chancellor names-wizard-first-dataset-3 = Cleric names-wizard-first-dataset-4 = Circe -names-wizard-first-dataset-5 = Doctor -names-wizard-first-dataset-6 = Dithmenos -names-wizard-first-dataset-7 = Elyvilon -names-wizard-first-dataset-8 = Faustus -names-wizard-first-dataset-9 = Grimm -names-wizard-first-dataset-10 = Gozag -names-wizard-first-dataset-11 = Jim -names-wizard-first-dataset-12 = Jiyva -names-wizard-first-dataset-13 = Lirazel -names-wizard-first-dataset-14 = Lugonu -names-wizard-first-dataset-15 = Koschei -names-wizard-first-dataset-16 = Kreol -names-wizard-first-dataset-17 = Lina -names-wizard-first-dataset-18 = Merlin -names-wizard-first-dataset-19 = Morgan -names-wizard-first-dataset-20 = Nemelex -names-wizard-first-dataset-21 = Rasputin -names-wizard-first-dataset-22 = Ru -names-wizard-first-dataset-23 = Sif -names-wizard-first-dataset-24 = Trivia -names-wizard-first-dataset-25 = Trog -names-wizard-first-dataset-26 = Uskayaw -names-wizard-first-dataset-27 = Vehumet -names-wizard-first-dataset-28 = Xom -names-wizard-first-dataset-29 = Yredelemnul -names-wizard-first-dataset-30 = Zin +names-wizard-first-dataset-5 = Cue +names-wizard-first-dataset-6 = Doctor +names-wizard-first-dataset-7 = Dithmenos +names-wizard-first-dataset-8 = Elyvilon +names-wizard-first-dataset-9 = Faustus +names-wizard-first-dataset-10 = Gonedalph +names-wizard-first-dataset-11 = Gozag +names-wizard-first-dataset-12 = Grimm +names-wizard-first-dataset-13 = Illudium +names-wizard-first-dataset-14 = Jim +names-wizard-first-dataset-15 = Jiyva +names-wizard-first-dataset-16 = Koschei +names-wizard-first-dataset-17 = Kreol +names-wizard-first-dataset-18 = Lina +names-wizard-first-dataset-19 = Lirazel +names-wizard-first-dataset-20 = Lugonu +names-wizard-first-dataset-21 = Magicka +names-wizard-first-dataset-22 = Merlin +names-wizard-first-dataset-23 = Morgan +names-wizard-first-dataset-24 = Nemelex +names-wizard-first-dataset-25 = Obiwand +names-wizard-first-dataset-26 = Quirk +names-wizard-first-dataset-27 = Queue +names-wizard-first-dataset-28 = Rasputin +names-wizard-first-dataset-29 = Rickleflux +names-wizard-first-dataset-30 = Ru +names-wizard-first-dataset-31 = Sif +names-wizard-first-dataset-32 = Spellberg +names-wizard-first-dataset-33 = Trog +names-wizard-first-dataset-34 = Trivia +names-wizard-first-dataset-35 = Uskayaw +names-wizard-first-dataset-36 = Vehumet +names-wizard-first-dataset-37 = Wanda +names-wizard-first-dataset-38 = Wandrew +names-wizard-first-dataset-39 = Wizney +names-wizard-first-dataset-40 = Xom +names-wizard-first-dataset-41 = Yredelemnul +names-wizard-first-dataset-42 = Yodalf +names-wizard-first-dataset-43 = Zartemis +names-wizard-first-dataset-44 = Zin \ No newline at end of file diff --git a/Resources/Locale/en-US/datasets/names/wizard_last.ftl b/Resources/Locale/en-US/datasets/names/wizard_last.ftl index 4e91673dd7..fff9fd27ce 100644 --- a/Resources/Locale/en-US/datasets/names/wizard_last.ftl +++ b/Resources/Locale/en-US/datasets/names/wizard_last.ftl @@ -1,46 +1,69 @@ names-wizard-last-dataset-1 = Dark names-wizard-last-dataset-2 = Darkmagic names-wizard-last-dataset-3 = Darko -names-wizard-last-dataset-4 = Gray -names-wizard-last-dataset-5 = Honko -names-wizard-last-dataset-6 = Inverse -names-wizard-last-dataset-7 = Shado -names-wizard-last-dataset-8 = Smith -names-wizard-last-dataset-9 = Unseen -names-wizard-last-dataset-10 = Weatherwax -names-wizard-last-dataset-11 = Whom -names-wizard-last-dataset-12 = Yagg -names-wizard-last-dataset-13 = le Fay -names-wizard-last-dataset-14 = of Void -names-wizard-last-dataset-15 = Stormbringer -names-wizard-last-dataset-16 = the All Knowing -names-wizard-last-dataset-17 = the Amazing -names-wizard-last-dataset-18 = the Bandit Killer -names-wizard-last-dataset-19 = the Benevolent -names-wizard-last-dataset-20 = the Blue -names-wizard-last-dataset-21 = the Brown -names-wizard-last-dataset-22 = the Conquerer -names-wizard-last-dataset-23 = the Deathless -names-wizard-last-dataset-24 = the Destroyer -names-wizard-last-dataset-25 = the Dragon Spooker -names-wizard-last-dataset-26 = the Emperor -names-wizard-last-dataset-27 = the Glowing One -names-wizard-last-dataset-28 = the Gray -names-wizard-last-dataset-29 = the Great -names-wizard-last-dataset-30 = the Healer -names-wizard-last-dataset-31 = the Magician -names-wizard-last-dataset-32 = the Powerful -names-wizard-last-dataset-33 = the Raven -names-wizard-last-dataset-34 = the Red -names-wizard-last-dataset-35 = the Remorseful -names-wizard-last-dataset-36 = the Seething -names-wizard-last-dataset-37 = the Shining One -names-wizard-last-dataset-38 = the Sorcelator -names-wizard-last-dataset-39 = the Spiral King -names-wizard-last-dataset-40 = the Unending -names-wizard-last-dataset-41 = the Unstoppable -names-wizard-last-dataset-42 = the Weeping -names-wizard-last-dataset-43 = the White -names-wizard-last-dataset-44 = the Wise -names-wizard-last-dataset-45 = Xobeh -names-wizard-last-dataset-46 = Ym Sagoz +names-wizard-last-dataset-4 = Dumbledoom +names-wizard-last-dataset-5 = Gandalft +names-wizard-last-dataset-6 = Gray +names-wizard-last-dataset-7 = Honko +names-wizard-last-dataset-8 = Inverse +names-wizard-last-dataset-9 = Kenobius +names-wizard-last-dataset-10 = Keynob +names-wizard-last-dataset-11 = McCoymancer +names-wizard-last-dataset-12 = Mysterius +names-wizard-last-dataset-13 = Palpatune +names-wizard-last-dataset-14 = Pottrix +names-wizard-last-dataset-15 = Rickleflux +names-wizard-last-dataset-16 = Scrollos +names-wizard-last-dataset-17 = Shado +names-wizard-last-dataset-18 = Skyblazer +names-wizard-last-dataset-19 = Smith +names-wizard-last-dataset-20 = Snipus +names-wizard-last-dataset-21 = Spellenhaal +names-wizard-last-dataset-22 = Spockwell +names-wizard-last-dataset-23 = Stormbringer +names-wizard-last-dataset-24 = Treknarok +names-wizard-last-dataset-25 = Vadereth +names-wizard-last-dataset-26 = Von Hex +names-wizard-last-dataset-27 = Wandlorean +names-wizard-last-dataset-28 = Weatherwax +names-wizard-last-dataset-29 = Whom +names-wizard-last-dataset-30 = Witcherell +names-wizard-last-dataset-31 = Yagg +names-wizard-last-dataset-32 = Yodalf +names-wizard-last-dataset-33 = Zabraklyn +names-wizard-last-dataset-34 = Zartemis +names-wizard-last-dataset-35 = le Fay +names-wizard-last-dataset-36 = of Void +names-wizard-last-dataset-37 = the All Knowing +names-wizard-last-dataset-38 = the Amazing +names-wizard-last-dataset-39 = the Bandit Killer +names-wizard-last-dataset-40 = the Benevolent +names-wizard-last-dataset-41 = the Blue +names-wizard-last-dataset-42 = the Brown +names-wizard-last-dataset-43 = the Conquerer +names-wizard-last-dataset-44 = the Deathless +names-wizard-last-dataset-45 = the Destroyer +names-wizard-last-dataset-46 = the Dragon Spooker +names-wizard-last-dataset-47 = the Emperor +names-wizard-last-dataset-48 = the Glowing One +names-wizard-last-dataset-49 = the Gray +names-wizard-last-dataset-50 = the Great +names-wizard-last-dataset-51 = the Healer +names-wizard-last-dataset-52 = the Lich +names-wizard-last-dataset-53 = the Magician +names-wizard-last-dataset-54 = the Powerful +names-wizard-last-dataset-55 = the Raven +names-wizard-last-dataset-56 = the Red +names-wizard-last-dataset-57 = the Remorseful +names-wizard-last-dataset-58 = the Seething +names-wizard-last-dataset-59 = the Shining One +names-wizard-last-dataset-60 = the Sorcelator +names-wizard-last-dataset-61 = the Spiral King +names-wizard-last-dataset-62 = the Unending +names-wizard-last-dataset-63 = the Unstoppable +names-wizard-last-dataset-64 = the Weeping +names-wizard-last-dataset-65 = the White +names-wizard-last-dataset-66 = the Wise +names-wizard-last-dataset-67 = whom +names-wizard-last-dataset-68 = Xobeh +names-wizard-last-dataset-69 = Ym Sagoz diff --git a/Resources/Locale/en-US/delivery/delivery-component.ftl b/Resources/Locale/en-US/delivery/delivery-component.ftl index c346b2a813..306dd9b044 100644 --- a/Resources/Locale/en-US/delivery/delivery-component.ftl +++ b/Resources/Locale/en-US/delivery/delivery-component.ftl @@ -29,3 +29,6 @@ delivery-priority-expired-examine = This is a [color=orange]priority {$type}[/co delivery-fragile-examine = This is a [color=red]fragile {$type}[/color]. Deliver it intact for a bonus. delivery-fragile-broken-examine = This is a [color=red]fragile {$type}[/color]. It looks badly damaged. + +delivery-bomb-examine = This is a [color=purple]bomb {$type}[/color]. Oh no. +delivery-bomb-primed-examine = This is a [color=purple]bomb {$type}[/color]. Reading this is a bad use of your time. diff --git a/Resources/Locale/en-US/recipes/tags.ftl b/Resources/Locale/en-US/recipes/tags.ftl index f05018cbe4..40ffd872c9 100644 --- a/Resources/Locale/en-US/recipes/tags.ftl +++ b/Resources/Locale/en-US/recipes/tags.ftl @@ -69,6 +69,7 @@ construction-graph-tag-match-stick = match stick construction-graph-tag-potato = a potato construction-graph-tag-wheat-bushel = wheat bushel construction-graph-tag-corgi-hide = corgi hide +soil-construction-graph-any-mushroom = any mushroom # toys construction-graph-tag-rubber-ducky = a rubber ducky diff --git a/Resources/Maps/Lavaland/basalt_ruin.yml b/Resources/Maps/Lavaland/basalt_ruin.yml new file mode 100644 index 0000000000..6cd492375c --- /dev/null +++ b/Resources/Maps/Lavaland/basalt_ruin.yml @@ -0,0 +1,1397 @@ +meta: + format: 7 + category: Map + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 05/15/2025 03:40:24 + entityCount: 227 +maps: +- 71 +grids: +- 1 +orphans: [] +nullspace: [] +tilemap: + 1: Space + 0: FloorBasalt + 2: FloorDarkDiagonalMini +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -5.6343684,3.518619 + parent: 71 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 36343 + 0,-1: + 0: 64733 + -1,0: + 0: 61183 + -1,1: + 0: 61166 + 0,1: + 0: 65416 + 1,0: + 0: 65471 + 1,1: + 0: 32767 + 1,-1: + 0: 65535 + 2,0: + 0: 8191 + 2,1: + 0: 17 + 2,-1: + 0: 65529 + 3,0: + 0: 307 + 3,-1: + 0: 13104 + 0,-3: + 0: 61440 + 0,-2: + 0: 53247 + -1,-3: + 0: 61440 + -1,-2: + 0: 16383 + -1,-1: + 0: 62395 + 1,-2: + 0: 61440 + 2,-2: + 0: 52972 + 3,-2: + 0: 273 + -2,-3: + 0: 49152 + -2,-2: + 0: 52428 + -2,-1: + 0: 34956 + -2,0: + 0: 8 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - uid: 71 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree +- proto: BasaltRandom + entities: + - uid: 138 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: BasaltThree + entities: + - uid: 134 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 +- proto: BasaltTwo + entities: + - uid: 135 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 81 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 +- proto: FloorLavaEntity + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 +- proto: Grille + entities: + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 187 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 +- proto: MetalDoor + entities: + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 +- proto: MiningDrill + entities: + - uid: 179 + components: + - type: Transform + pos: 12.36946,-5.5208426 + parent: 1 +- proto: PoweredLightPostSmall + entities: + - uid: 128 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 +- proto: Rack + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 +- proto: RightArmSkeleton + entities: + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.697422,-7.4114676 + parent: 1 +- proto: SalvageLootSpawner + entities: + - uid: 182 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 +- proto: SalvageSpawnerTreasureValuable + entities: + - uid: 72 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +- proto: TorsoSkeleton + entities: + - uid: 184 + components: + - type: Transform + pos: 10.603672,-7.3802176 + parent: 1 +- proto: WallBasaltCobblebrick + entities: + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 +- proto: WallMining + entities: + - uid: 130 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 +- proto: WallRockBasalt + entities: + - uid: 136 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 +- proto: WallRockBasaltArtifactFragment + entities: + - uid: 152 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 1 +- proto: WallRockBasaltDiamond + entities: + - uid: 172 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 +- proto: WallRockBasaltPlasma + entities: + - uid: 139 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 1 +- proto: WallRockBasaltSilver + entities: + - uid: 200 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 +- proto: WoodenSupport + entities: + - uid: 173 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 +... diff --git a/Resources/Maps/Lavaland/catwalk_crossroad.yml b/Resources/Maps/Lavaland/catwalk_crossroad.yml new file mode 100644 index 0000000000..ef2426e9b8 --- /dev/null +++ b/Resources/Maps/Lavaland/catwalk_crossroad.yml @@ -0,0 +1,1545 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/22/2025 12:44:38 + entityCount: 244 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 1: Space + 0: FloorBasalt +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -8.9140625,2.96875 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: Catwalk + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-1.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-0.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 1 +- proto: ChairFolding + entities: + - uid: 244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5623035,-8.44964 + parent: 1 +- proto: CrateFreezer + entities: + - uid: 242 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 243 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DrinkColaBottleFull + entities: + - uid: 243 + components: + - type: Transform + parent: 242 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FloorLavaEntity + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-6.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,5.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,0.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-1.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-3.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-4.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-5.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-6.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-7.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-8.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + - uid: 222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,3.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,1.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-3.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-4.5 + parent: 1 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-5.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-6.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-7.5 + parent: 1 + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-8.5 + parent: 1 +- proto: Girder + entities: + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 1 + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 25 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 16 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 +- proto: SalvageSpawnerScrapCommon75 + entities: + - uid: 58 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 17 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 +- proto: WallSolidRust + entities: + - uid: 26 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 +... diff --git a/Resources/Maps/Lavaland/lava_farm.yml b/Resources/Maps/Lavaland/lava_farm.yml index cfa99ff4f3..3e41c807f1 100644 --- a/Resources/Maps/Lavaland/lava_farm.yml +++ b/Resources/Maps/Lavaland/lava_farm.yml @@ -137,47 +137,17 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance -- proto: ActionToggleInternals - entities: - - uid: 154 - mapInit: true - paused: true - components: - - type: Transform - parent: 153 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 153 -- proto: ActionToggleLight - entities: - - uid: 151 - mapInit: true - paused: true - components: - - type: Transform - parent: 150 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 150 - proto: AirTankFilled entities: - uid: 153 components: - type: Transform parent: 149 - - type: GasTank - toggleActionEntity: 154 - type: Clothing inSlotFlag: SUITSTORAGE inSlot: suitstorage - type: Physics canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 154 - proto: BasaltFive entities: - uid: 223 @@ -562,22 +532,6 @@ entities: - type: Clothing inSlotFlag: HEAD inSlot: head - - type: HandheldLight - toggleActionEntity: 151 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 151 - - type: Physics - canCollide: False - - type: ActionsContainer - proto: ClothingMaskGas entities: - uid: 155 diff --git a/Resources/Maps/Lavaland/wrecked_outpost.yml b/Resources/Maps/Lavaland/wrecked_outpost.yml new file mode 100644 index 0000000000..9772a75e03 --- /dev/null +++ b/Resources/Maps/Lavaland/wrecked_outpost.yml @@ -0,0 +1,1872 @@ +meta: + format: 7 + category: Map + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 05/15/2025 03:42:33 + entityCount: 309 +maps: +- 71 +grids: +- 1 +orphans: [] +nullspace: [] +tilemap: + 0: Space + 1: FloorBasalt + 5: FloorDarkDiagonalMini + 6: FloorDarkHerringbone + 7: FloorTechMaint2 + 2: FloorWhite + 3: Plating + 4: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -6.40625,3.0859375 + parent: 71 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAwAAAAAABAAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAABQAAAAAAAwAAAAAAAwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABAAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABAAAAAAAAwAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAwAAAAAABgAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 12 + 0,-1: + 0: 17476 + 1,0: + 0: 15 + 2,0: + 0: 7 + 2,-1: + 0: 65535 + 0,-4: + 0: 19652 + 0,-5: + 0: 19456 + 0,-3: + 0: 50244 + 0,-2: + 0: 19592 + 1,-4: + 0: 65535 + 1,-3: + 0: 63743 + 1,-2: + 0: 30719 + 1,-1: + 0: 1906 + 1,-5: + 0: 52992 + 2,-4: + 0: 30583 + 2,-3: + 0: 29047 + 2,-2: + 0: 62079 + 2,-5: + 0: 7936 + 3,-4: + 0: 4369 + 3,-3: + 0: 64753 + 3,-2: + 0: 65279 + 3,-1: + 0: 4369 + 3,-5: + 0: 4352 + 4,-3: + 0: 28912 + 4,-2: + 0: 61567 + 5,-3: + 0: 4368 + 5,-2: + 0: 4369 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - uid: 71 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree +- proto: AirlockEngineeringLocked + entities: + - uid: 68 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 211 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 +- proto: AirlockGlass + entities: + - uid: 52 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 +- proto: AirlockMedicalLocked + entities: + - uid: 46 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-16.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 1 +- proto: Brutepack + entities: + - uid: 47 + components: + - type: Transform + pos: 10.653826,-10.26179 + parent: 1 + - type: Stack + count: 3 +- proto: CableApcExtension + entities: + - uid: 58 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.214054,-2.6887493 + parent: 1 +- proto: CableHV + entities: + - uid: 78 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 +- proto: CableMV + entities: + - uid: 40 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 +- proto: CableMVStack1 + entities: + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.311911,-3.3145313 + parent: 1 +- proto: CableTerminal + entities: + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1 +- proto: FloorLavaEntity + entities: + - uid: 142 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-17.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-17.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-4.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-4.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-4.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-10.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-10.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-10.5 + parent: 1 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-10.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-10.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-10.5 + parent: 1 + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-10.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 +- proto: GeneratorBasic + entities: + - uid: 74 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 +- proto: Girder + entities: + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 +- proto: Grille + entities: + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 1 +- proto: HighSecCommandLocked + entities: + - uid: 143 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 +- proto: LockerMedicineFilled + entities: + - uid: 35 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 37 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 33 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1 +- proto: Ointment + entities: + - uid: 41 + components: + - type: Transform + pos: 10.216326,-10.464915 + parent: 1 + - type: Stack + count: 4 +- proto: PartRodMetal1 + entities: + - uid: 193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.6889,-9.6444645 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.454525,-5.542902 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 +- proto: Rack + entities: + - uid: 125 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 1 +- proto: RandomMedicCorpseSpawner + entities: + - uid: 238 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 17 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 1 +- proto: SalvageSpawnerScrapCommon75 + entities: + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 +- proto: SalvageSpawnerTreasureValuable + entities: + - uid: 72 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 +- proto: ShardGlassReinforced + entities: + - uid: 19 + components: + - type: Transform + pos: 4.3769083,-13.63551 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 3.2050333,-14.57301 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.280753,-15.619993 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.546378,-16.354368 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.437003,-16.666868 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 7.874503,-16.854368 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5404625,-5.871027 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5560875,-9.761652 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.4389,-5.402277 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.3842125,-9.339777 + parent: 1 +- proto: SignVault + entities: + - uid: 127 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 75 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 +- proto: StasisBed + entities: + - uid: 222 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 76 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 +- proto: Table + entities: + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 1 +- proto: VendingMachineMedical + entities: + - uid: 32 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 10 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 +- proto: WallSolid + entities: + - uid: 3 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 +... diff --git a/Resources/Maps/Nonstations/nukieplanet.yml b/Resources/Maps/Nonstations/nukieplanet.yml index db9d84b314..ab1fb20ab4 100644 --- a/Resources/Maps/Nonstations/nukieplanet.yml +++ b/Resources/Maps/Nonstations/nukieplanet.yml @@ -1661,15 +1661,6 @@ entities: - 0 - 0 - type: LoadedMap -- proto: ActionStethoscope - entities: - - uid: 1739 - components: - - type: Transform - parent: 1336 - - type: EntityTargetAction - originalIconColor: '#FFFFFFFF' - container: 1336 - proto: AirlockExternalGlassNukeopLocked entities: - uid: 49 @@ -10317,14 +10308,6 @@ entities: - type: Transform pos: -2.327716,-12.470306 parent: 104 - - type: Stethoscope - actionEntity: 1739 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 1739 - proto: ClothingShoesBootsSalvage entities: - uid: 542 diff --git a/Resources/Maps/Ruins/ruined_prison_ship.yml b/Resources/Maps/Ruins/ruined_prison_ship.yml index ab92184029..d953e10700 100644 --- a/Resources/Maps/Ruins/ruined_prison_ship.yml +++ b/Resources/Maps/Ruins/ruined_prison_ship.yml @@ -467,15 +467,6 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance -- proto: ActionToggleInternals - entities: - - uid: 624 - components: - - type: Transform - parent: 623 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 623 - proto: AirCanister entities: - uid: 628 @@ -2029,14 +2020,6 @@ entities: - type: Transform pos: 4.497028,-9.338669 parent: 2 - - type: GasTank - toggleActionEntity: 624 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 624 - proto: EphedrineChemistryBottle entities: - uid: 667 diff --git a/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml b/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml index bb1957e084..3c87188d84 100644 --- a/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml +++ b/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml @@ -433,22 +433,6 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance -- proto: ActionToggleInternals - entities: - - uid: 495 - components: - - type: Transform - parent: 493 - - type: InstantAction - container: 493 -- proto: ActionToggleJetpack - entities: - - uid: 494 - components: - - type: Transform - parent: 493 - - type: InstantAction - container: 493 - proto: AirCanister entities: - uid: 441 @@ -2731,17 +2715,6 @@ entities: - type: Transform pos: 8.505206,10.057987 parent: 1 - - type: GasTank - toggleActionEntity: 495 - - type: Jetpack - toggleActionEntity: 494 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 494 - - 495 - proto: LockerSyndicate entities: - uid: 471 diff --git a/Resources/Maps/Shuttles/emergency_wode.yml b/Resources/Maps/Shuttles/emergency_wode.yml index 5d75f7fc4a..e817441ab7 100644 --- a/Resources/Maps/Shuttles/emergency_wode.yml +++ b/Resources/Maps/Shuttles/emergency_wode.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 255.1.0 + forkId: "" + forkVersion: "" + time: 05/06/2025 11:39:26 + entityCount: 604 +maps: [] +grids: +- 2 +orphans: +- 2 +nullspace: [] tilemap: 0: Space 14: FloorBar @@ -33,7 +44,7 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAeQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAeQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAeQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAZAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAeQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAAQAAAAAAZAAAAAAAeQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAAQAAAAAAZAAAAAAAeQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAeQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAeQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAZAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAA version: 6 0,-1: ind: 0,-1 @@ -68,10 +79,10 @@ entities: gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: DeviceNetwork + deviceNetId: Wireless configurators: [] deviceLists: [] transmitFrequencyId: ShuttleTimer - deviceNetId: Wireless - type: DecalGrid chunkCollection: version: 2 @@ -146,15 +157,15 @@ entities: 62: 1,1 70: 2,4 256: -2,19 - 257: -4,20 258: 0,17 259: 0,18 260: 0,19 261: 1,19 262: 2,19 263: 2,18 - 264: -5,1 - 265: -5,2 + 289: -3,2 + 317: -4,20 + 325: -3,1 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -169,6 +180,12 @@ entities: decals: 73: -7,10 74: -7,18 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Caution + decals: + 291: 2,1 - node: cleanable: True color: '#FFFFFFFF' @@ -176,8 +193,6 @@ entities: decals: 203: -5,8 204: -4,7 - 205: -1,6 - 206: -1,7 207: -7,12 208: -6,15 209: -4,15 @@ -203,7 +218,6 @@ entities: 233: 1,17 234: 0,18 235: 2,20 - 236: -4,20 237: -3,17 - node: cleanable: True @@ -269,14 +283,17 @@ entities: 132: -7,9 170: -4,8 202: 1,3 + - node: + color: '#0000006B' + id: WoodTrimThinInnerNe + decals: + 312: -4,0 - node: color: '#0000005B' id: WoodTrimThinInnerNw decals: 277: 1,16 283: -4,18 - 284: -3,19 - 285: -4,0 - node: color: '#0000006A' id: WoodTrimThinInnerNw @@ -286,15 +303,14 @@ entities: 158: -4,9 171: 1,8 - node: - color: '#0000005B' - id: WoodTrimThinInnerSe + color: '#0000006B' + id: WoodTrimThinInnerNw decals: - 274: -3,20 + 324: -3,19 - node: color: '#0000006A' id: WoodTrimThinInnerSe decals: - 138: -4,20 152: -7,15 153: -4,15 155: 1,15 @@ -302,10 +318,12 @@ entities: 164: -4,10 178: 1,8 - node: - color: '#0000005B' - id: WoodTrimThinInnerSw + color: '#0000006B' + id: WoodTrimThinInnerSe decals: - 286: -4,3 + 314: -4,3 + 316: 0,2 + 322: -3,20 - node: color: '#0000006A' id: WoodTrimThinInnerSw @@ -317,12 +335,6 @@ entities: 165: 1,10 177: 3,8 179: 2,2 - - node: - color: '#0000005B' - id: WoodTrimThinLineE - decals: - 271: -3,18 - 272: -3,19 - node: color: '#0000006A' id: WoodTrimThinLineE @@ -348,10 +360,13 @@ entities: 133: -3,17 201: 1,4 - node: - color: '#0000005B' - id: WoodTrimThinLineN + color: '#0000006B' + id: WoodTrimThinLineE decals: - 288: -5,0 + 308: -4,1 + 309: -4,2 + 320: -3,19 + 321: -3,18 - node: color: '#0000006A' id: WoodTrimThinLineN @@ -370,6 +385,11 @@ entities: 168: -1,8 169: 0,8 200: 2,3 + - node: + color: '#0000006B' + id: WoodTrimThinLineN + decals: + 326: -3,0 - node: color: '#0000005B' id: WoodTrimThinLineS @@ -378,7 +398,6 @@ entities: 278: 0,20 279: 1,20 280: 2,20 - 287: -5,3 - node: color: '#0000006A' id: WoodTrimThinLineS @@ -398,16 +417,18 @@ entities: 175: 0,10 176: 2,8 180: 1,2 + - node: + color: '#0000006B' + id: WoodTrimThinLineS + decals: + 315: -3,3 - node: color: '#0000005B' id: WoodTrimThinLineW decals: 266: 0,2 267: 0,3 - 268: -4,1 - 269: -4,2 276: 1,17 - 282: -3,20 - node: color: '#0000006A' id: WoodTrimThinLineW @@ -430,8 +451,12 @@ entities: 112: -4,7 119: 2,1 122: 1,9 - 136: -4,20 181: 0,1 + - node: + color: '#0000006B' + id: WoodTrimThinLineW + decals: + 323: -3,20 - type: GridAtmosphere version: 2 data: @@ -439,8 +464,9 @@ entities: 0,0: 0: 30580 0,-1: - 0: 30576 - 1: 8 + 0: 30480 + 1: 96 + 2: 8 -1,0: 0: 48051 0,1: @@ -458,7 +484,7 @@ entities: 0,4: 0: 30522 1,1: - 1: 12560 + 2: 12560 1,2: 0: 12592 1,3: @@ -466,33 +492,34 @@ entities: 1,4: 0: 12593 -2,1: - 1: 12832 + 2: 12832 0: 34824 -2,2: 0: 65276 -2,3: 0: 61166 -2,4: - 0: 47670 + 0: 14902 + 3: 32768 -2,0: 0: 34952 -2,-1: 0: 32768 - 1: 1024 + 2: 1024 -1,-1: 0: 47232 - 1: 4 + 2: 4 -1,4: 0: 30577 -2,5: - 1: 48 + 2: 48 0: 8 -1,5: 0: 7 0,5: 0: 7 1,5: - 1: 48 + 2: 48 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -509,6 +536,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 1400.0662 + - 5266.916 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 immutable: True moles: @@ -524,6 +566,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -610,10 +667,9 @@ entities: parent: 2 - proto: AirlockMedicalGlassLocked entities: - - uid: 338 + - uid: 314 components: - type: Transform - rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 2 - proto: AirlockSecurityGlassLocked @@ -625,7 +681,7 @@ entities: parent: 2 - proto: APCBasic entities: - - uid: 47 + - uid: 50 components: - type: Transform rot: 3.141592653589793 rad @@ -657,6 +713,13 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,17.5 parent: 2 +- proto: Ashtray + entities: + - uid: 573 + components: + - type: Transform + pos: -2.5024493,8.527765 + parent: 2 - proto: AtmosDeviceFanDirectional entities: - uid: 1 @@ -707,14 +770,20 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,9.5 parent: 2 -- proto: BedsheetMedical +- proto: AtmosFixAirMarker entities: - - uid: 143 + - uid: 554 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,2.5 + pos: 1.5,-2.5 parent: 2 + - uid: 555 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 +- proto: BedsheetMedical + entities: - uid: 147 components: - type: Transform @@ -726,6 +795,11 @@ entities: rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 2 + - uid: 423 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 - proto: BoozeDispenser entities: - uid: 459 @@ -734,14 +808,20 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,6.5 parent: 2 -- proto: ButtonFrameGrey +- proto: ButtonFrameCaution entities: - - uid: 314 + - uid: 48 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,18.5 parent: 2 + - uid: 572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 2 - proto: CableApcExtension entities: - uid: 12 @@ -769,10 +849,10 @@ entities: - type: Transform pos: 1.5,-1.5 parent: 2 - - uid: 50 + - uid: 47 components: - type: Transform - pos: 0.5,-0.5 + pos: 2.5,1.5 parent: 2 - uid: 52 components: @@ -789,6 +869,11 @@ entities: - type: Transform pos: -6.5,12.5 parent: 2 + - uid: 88 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 - uid: 108 components: - type: Transform @@ -812,32 +897,52 @@ entities: - uid: 118 components: - type: Transform - pos: -5.5,4.5 + pos: -5.5,3.5 parent: 2 - uid: 120 components: - type: Transform - pos: 0.5,0.5 - parent: 2 - - uid: 121 - components: - - type: Transform - pos: 0.5,1.5 + pos: 3.5,2.5 parent: 2 - uid: 122 components: - type: Transform pos: 0.5,2.5 parent: 2 + - uid: 128 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 - uid: 156 components: - type: Transform - pos: -5.5,1.5 + pos: 2.5,-0.5 parent: 2 - - uid: 158 + - uid: 159 components: - type: Transform - pos: -4.5,1.5 + pos: -3.5,11.5 parent: 2 - uid: 164 components: @@ -874,6 +979,11 @@ entities: - type: Transform pos: -6.5,18.5 parent: 2 + - uid: 213 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 - uid: 219 components: - type: Transform @@ -899,11 +1009,6 @@ entities: - type: Transform pos: -3.5,0.5 parent: 2 - - uid: 237 - components: - - type: Transform - pos: -5.5,3.5 - parent: 2 - uid: 265 components: - type: Transform @@ -919,11 +1024,6 @@ entities: - type: Transform pos: -4.5,17.5 parent: 2 - - uid: 277 - components: - - type: Transform - pos: -7.5,13.5 - parent: 2 - uid: 285 components: - type: Transform @@ -999,11 +1099,6 @@ entities: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 367 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 2 - uid: 368 components: - type: Transform @@ -1054,6 +1149,21 @@ entities: - type: Transform pos: -1.5,6.5 parent: 2 + - uid: 411 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 - uid: 460 components: - type: Transform @@ -1254,6 +1364,56 @@ entities: - type: Transform pos: 1.5,20.5 parent: 2 + - uid: 581 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 - proto: CableHV entities: - uid: 142 @@ -1278,6 +1438,11 @@ entities: parent: 2 - proto: CableMV entities: + - uid: 7 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 - uid: 9 components: - type: Transform @@ -1318,16 +1483,16 @@ entities: - type: Transform pos: 1.5,1.5 parent: 2 - - uid: 48 - components: - - type: Transform - pos: -0.5,0.5 - parent: 2 - uid: 51 components: - type: Transform pos: 2.5,1.5 parent: 2 + - uid: 81 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 - uid: 102 components: - type: Transform @@ -1341,17 +1506,22 @@ entities: - uid: 123 components: - type: Transform - pos: 2.5,6.5 + pos: 0.5,-1.5 parent: 2 - uid: 124 components: - type: Transform pos: 2.5,4.5 parent: 2 - - uid: 128 + - uid: 140 components: - type: Transform - pos: 2.5,9.5 + pos: 2.5,-0.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 2.5,0.5 parent: 2 - uid: 170 components: @@ -1378,6 +1548,11 @@ entities: - type: Transform pos: -2.5,6.5 parent: 2 + - uid: 178 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 - uid: 189 components: - type: Transform @@ -1403,11 +1578,6 @@ entities: - type: Transform pos: -1.5,5.5 parent: 2 - - uid: 233 - components: - - type: Transform - pos: 2.5,7.5 - parent: 2 - uid: 238 components: - type: Transform @@ -1453,10 +1623,10 @@ entities: - type: Transform pos: 1.5,17.5 parent: 2 - - uid: 294 + - uid: 300 components: - type: Transform - pos: 2.5,8.5 + pos: 1.5,-1.5 parent: 2 - uid: 322 components: @@ -1468,6 +1638,11 @@ entities: - type: Transform pos: -3.5,10.5 parent: 2 + - uid: 329 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 - uid: 331 components: - type: Transform @@ -1513,11 +1688,6 @@ entities: - type: Transform pos: 1.5,5.5 parent: 2 - - uid: 416 - components: - - type: Transform - pos: 0.5,0.5 - parent: 2 - uid: 427 components: - type: Transform @@ -1558,6 +1728,11 @@ entities: - type: Transform pos: -0.5,10.5 parent: 2 + - uid: 588 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 - proto: CableTerminal entities: - uid: 305 @@ -1634,21 +1809,13 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,20.5 parent: 2 -- proto: ChairOfficeLight - entities: - - uid: 512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 2 - proto: ChairPilotSeat entities: - uid: 4 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,1.5 + rot: -1.5707963267948966 rad + pos: -2.5,1.5 parent: 2 - uid: 20 components: @@ -1767,12 +1934,6 @@ entities: - type: Transform pos: -5.5,11.5 parent: 2 - - uid: 112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,2.5 - parent: 2 - uid: 113 components: - type: Transform @@ -1868,6 +2029,12 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,6.5 parent: 2 + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 - uid: 304 components: - type: Transform @@ -1920,6 +2087,13 @@ entities: rot: 3.141592653589793 rad pos: 0.5,19.5 parent: 2 +- proto: CigarSpent + entities: + - uid: 579 + components: + - type: Transform + pos: -2.325366,8.777939 + parent: 2 - proto: ClosetEmergencyFilledRandom entities: - uid: 228 @@ -1946,11 +2120,6 @@ entities: parent: 2 - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 114 - components: - - type: Transform - pos: 0.5,4.5 - parent: 2 - uid: 302 components: - type: Transform @@ -1963,11 +2132,30 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,20.5 parent: 2 - - uid: 554 + - uid: 586 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-0.5 + pos: -1.5,4.5 + parent: 2 + - uid: 589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 2 +- proto: ClosetWallEmergencyN2FilledRandom + entities: + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,16.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: -6.5,20.5 parent: 2 - proto: ClosetWallFireFilledRandom entities: @@ -1977,6 +2165,11 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,19.5 parent: 2 + - uid: 158 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 - uid: 319 components: - type: Transform @@ -1989,6 +2182,11 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,19.5 parent: 2 + - uid: 590 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 - proto: ComputerCrewMonitoring entities: - uid: 389 @@ -2010,19 +2208,12 @@ entities: parent: 2 - proto: DefibrillatorCabinetFilled entities: - - uid: 471 + - uid: 587 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 2 -- proto: EmergencyRollerBed - entities: - - uid: 555 - components: - - type: Transform - pos: -2.5,3.5 - parent: 2 - proto: GasOutletInjector entities: - uid: 36 @@ -2114,11 +2305,6 @@ entities: - type: Transform pos: 1.5,8.5 parent: 2 - - uid: 310 - components: - - type: Transform - pos: 1.5,6.5 - parent: 2 - uid: 334 components: - type: Transform @@ -2193,6 +2379,60 @@ entities: rot: 3.141592653589793 rad pos: 1.5,5.5 parent: 2 + - uid: 559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - uid: 560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 2 + - uid: 561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - uid: 562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 2 + - uid: 563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 2 + - uid: 564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 2 + - uid: 565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 2 + - uid: 566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 2 + - uid: 567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 2 - proto: GasPipeTJunction entities: - uid: 119 @@ -2207,6 +2447,12 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 2 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 2 - uid: 192 components: - type: Transform @@ -2305,6 +2551,12 @@ entities: rot: 3.141592653589793 rad pos: -3.5,2.5 parent: 2 + - uid: 568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 2 - proto: GeneratorBasic15kW entities: - uid: 205 @@ -2326,11 +2578,6 @@ entities: parent: 2 - proto: Grille entities: - - uid: 7 - components: - - type: Transform - pos: -5.5,3.5 - parent: 2 - uid: 21 components: - type: Transform @@ -2342,6 +2589,12 @@ entities: - type: Transform pos: 0.5,16.5 parent: 2 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 2 - uid: 87 components: - type: Transform @@ -2376,8 +2629,8 @@ entities: - uid: 186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-1.5 + rot: -1.5707963267948966 rad + pos: -5.5,4.5 parent: 2 - uid: 187 components: @@ -2462,16 +2715,11 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,21.5 parent: 2 - - uid: 441 + - uid: 447 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 2 - - uid: 443 - components: - - type: Transform - pos: -5.5,4.5 + pos: 3.5,2.5 parent: 2 - uid: 469 components: @@ -2501,13 +2749,28 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 -- proto: LockerMedicineFilled +- proto: LockableButtonService entities: - - uid: 455 + - uid: 571 components: - type: Transform - pos: -2.5,4.5 + rot: 3.141592653589793 rad + pos: 0.5,5.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 557: + - - Pressed + - Toggle + 556: + - - Pressed + - Toggle + 569: + - - Pressed + - Toggle + 570: + - - Pressed + - Toggle - proto: LockerSecurityFilled entities: - uid: 552 @@ -2515,6 +2778,13 @@ entities: - type: Transform pos: -1.5,20.5 parent: 2 +- proto: LockerWallMedicalFilled + entities: + - uid: 585 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 - proto: MedicalBed entities: - uid: 25 @@ -2522,16 +2792,16 @@ entities: - type: Transform pos: -4.5,0.5 parent: 2 - - uid: 144 - components: - - type: Transform - pos: -2.5,2.5 - parent: 2 - uid: 435 components: - type: Transform pos: -4.5,4.5 parent: 2 + - uid: 584 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 - proto: MedkitBruteFilled entities: - uid: 466 @@ -2548,10 +2818,17 @@ entities: parent: 2 - proto: MedkitOxygenFilled entities: - - uid: 450 + - uid: 114 components: - type: Transform - pos: -2.4702473,1.5102254 + pos: -4.6797056,1.7383938 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 277 + components: + - type: Transform + pos: -4.3810945,1.5160172 parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: @@ -2573,6 +2850,30 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 2 + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,19.5 + parent: 2 + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,20.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 483 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 - proto: Poweredlight entities: - uid: 152 @@ -2593,12 +2894,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,19.5 parent: 2 - - uid: 182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,16.5 - parent: 2 - uid: 183 components: - type: Transform @@ -2617,34 +2912,23 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-1.5 parent: 2 + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 2 - uid: 337 - components: - - type: Transform - pos: -2.5,4.5 - parent: 2 - - uid: 365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-0.5 - parent: 2 - - uid: 426 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,2.5 + pos: 3.5,16.5 parent: 2 - - uid: 447 + - uid: 357 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,16.5 - parent: 2 - - uid: 456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 + pos: -2.5,-0.5 parent: 2 - uid: 461 components: @@ -2663,13 +2947,69 @@ entities: - type: Transform pos: -0.5,15.5 parent: 2 -- proto: Screen - entities: - - uid: 70 + - uid: 592 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,8.5 + pos: -4.5,2.5 + parent: 2 + - uid: 593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - uid: 595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 +- proto: Rack + entities: + - uid: 426 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 580 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 +- proto: RandomDrinkSoda + entities: + - uid: 602 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 576 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 +- proto: Screen + entities: + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,7.5 parent: 2 - uid: 166 components: @@ -2677,23 +3017,23 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,16.5 parent: 2 - - uid: 329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,8.5 - parent: 2 - - uid: 423 + - uid: 181 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,20.5 + pos: -0.5,19.5 parent: 2 - - uid: 490 + - uid: 367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - uid: 384 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,2.5 + pos: -5.5,7.5 parent: 2 - uid: 517 components: @@ -2728,6 +3068,30 @@ entities: rot: 3.141592653589793 rad pos: 0.5,21.5 parent: 2 + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 2 + - uid: 557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 2 + - uid: 569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 2 + - uid: 570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 2 - proto: ShuttersWindowOpen entities: - uid: 335 @@ -2765,11 +3129,6 @@ entities: - type: Transform pos: -2.5,16.5 parent: 2 - - uid: 140 - components: - - type: Transform - pos: -7.5,13.5 - parent: 2 - uid: 141 components: - type: Transform @@ -2787,6 +3146,12 @@ entities: rot: 3.141592653589793 rad pos: -5.5,0.5 parent: 2 + - uid: 237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 2 - uid: 256 components: - type: Transform @@ -2797,11 +3162,6 @@ entities: - type: Transform pos: -7.5,15.5 parent: 2 - - uid: 300 - components: - - type: Transform - pos: -5.5,1.5 - parent: 2 - uid: 306 components: - type: Transform @@ -2824,17 +3184,29 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,18.5 parent: 2 - - uid: 357 + - uid: 365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 2 + - uid: 370 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,4.5 + pos: -7.5,13.5 parent: 2 - uid: 376 components: - type: Transform pos: -3.5,21.5 parent: 2 + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 2 - uid: 393 components: - type: Transform @@ -2850,11 +3222,6 @@ entities: - type: Transform pos: 1.5,21.5 parent: 2 - - uid: 411 - components: - - type: Transform - pos: -5.5,3.5 - parent: 2 - uid: 420 components: - type: Transform @@ -2883,12 +3250,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 2 - - uid: 483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-1.5 - parent: 2 - uid: 518 components: - type: Transform @@ -2920,13 +3281,17 @@ entities: - type: DeviceLinkSource linkedPorts: 71: - - Pressed: Toggle + - - Pressed + - Toggle 344: - - Pressed: Toggle + - - Pressed + - Toggle 335: - - Pressed: Toggle + - - Pressed + - Toggle 350: - - Pressed: Toggle + - - Pressed + - Toggle - proto: SignBridge entities: - uid: 129 @@ -3062,17 +3427,16 @@ entities: parent: 2 - proto: TableGlass entities: - - uid: 81 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 2 - uid: 400 components: - type: Transform pos: -4.5,3.5 parent: 2 + - uid: 456 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 - proto: TableReinforced entities: - uid: 433 @@ -3095,12 +3459,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,7.5 parent: 2 - - uid: 139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,7.5 - parent: 2 - uid: 451 components: - type: Transform @@ -3133,6 +3491,8 @@ entities: rot: 3.141592653589793 rad pos: 4.5,5.5 parent: 2 + - type: Thruster + enabled: False - uid: 154 components: - type: Transform @@ -3184,7 +3544,7 @@ entities: parent: 2 - proto: VendingMachineMedical entities: - - uid: 339 + - uid: 441 components: - type: Transform pos: -4.5,-0.5 @@ -3308,6 +3668,12 @@ entities: - type: Transform pos: -7.5,20.5 parent: 2 + - uid: 121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 2 - uid: 132 components: - type: Transform @@ -3320,24 +3686,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 2 - - uid: 134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,2.5 - parent: 2 - - uid: 135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,3.5 - parent: 2 - - uid: 159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,2.5 - parent: 2 - uid: 162 components: - type: Transform @@ -3384,6 +3732,12 @@ entities: rot: 3.141592653589793 rad pos: -1.5,1.5 parent: 2 + - uid: 233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 - uid: 243 components: - type: Transform @@ -3496,6 +3850,12 @@ entities: - type: Transform pos: 4.5,8.5 parent: 2 + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 - uid: 351 components: - type: Transform @@ -3567,6 +3927,12 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,17.5 parent: 2 + - uid: 450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 2 - uid: 453 components: - type: Transform @@ -3650,13 +4016,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-1.5 parent: 2 -- proto: WindoorSecureSecurityLocked - entities: - - uid: 88 - components: - - type: Transform - pos: -3.5,19.5 - parent: 2 - proto: WindoorSecureServiceLocked entities: - uid: 358 @@ -3665,6 +4024,14 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,6.5 parent: 2 +- proto: WindoorServiceLocked + entities: + - uid: 575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 2 - proto: WindowFrostedDirectional entities: - uid: 99 @@ -3686,44 +4053,32 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 2 - - uid: 178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 2 - - uid: 181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,0.5 - parent: 2 - - uid: 213 - components: - - type: Transform - pos: -4.5,19.5 - parent: 2 - uid: 275 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,7.5 parent: 2 - - uid: 370 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,19.5 - parent: 2 - - uid: 384 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,20.5 - parent: 2 - uid: 402 components: - type: Transform pos: -4.5,3.5 parent: 2 + - uid: 471 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 2 + - uid: 574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 2 ... diff --git a/Resources/Maps/Shuttles/trading_outpost.yml b/Resources/Maps/Shuttles/trading_outpost.yml index 665532ac46..1e1a8cf9dd 100644 --- a/Resources/Maps/Shuttles/trading_outpost.yml +++ b/Resources/Maps/Shuttles/trading_outpost.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 247.2.0 + engineVersion: 260.0.0 forkId: "" forkVersion: "" - time: 02/26/2025 19:50:56 - entityCount: 926 + time: 05/18/2025 04:47:32 + entityCount: 935 maps: [] grids: - 2 @@ -18,6 +18,7 @@ tilemap: 36: FloorDarkMono 39: FloorDarkPavementVertical 51: FloorGrassJungle + 1: FloorHullReinforced 66: FloorMetalDiamond 79: FloorReinforced 93: FloorSteel @@ -42,28 +43,28 @@ entities: chunks: 0,0: ind: 0,0 - tiles: XQAAAAABXQAAAAABTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: XQAAAAACAF0AAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAXQAAAAADAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAAAAQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAwB+AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAADAAEAAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAfgAAAAAAAF0AAAAAAwB+AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAEAfgAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAF0AAAAAAQABAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAACAAEAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAAEAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAEAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAMAAQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAgABAAAAAAAAAQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAACAAEAAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAAEAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAF0AAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAXQAAAAADAF0AAAAAAgB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAwBdAAAAAAEAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAF0AAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgBtAAAAAAAAAQAAAAAAAG0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAIAbQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAIAbQAAAAAAAAEAAAAAAABtAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAACAG0AAAAAAAABAAAAAAAAbQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAwBtAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAF0AAAAAAgBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACAF0AAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAH4AAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAABAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAB+AAAAAAAAXQAAAAABAAEAAAAAAABdAAAAAAIAfgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQABAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAEAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -76,6 +77,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -177,6 +179,11 @@ entities: 138: 10,-1 139: 10,-2 155: 4,2 + - node: + color: '#FF2F2BFF' + id: WarnBoxGreyscale + decals: + 194: 2,-18 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -219,6 +226,9 @@ entities: 115: 7,-11 116: 8,-11 128: 5,-11 + 195: 4,-19 + 196: 5,-19 + 197: 6,-19 - type: GridAtmosphere version: 2 data: @@ -291,7 +301,8 @@ entities: 1,-5: 0: 65399 2,-4: - 0: 259 + 0: 257 + 2: 2 1: 35976 2,-3: 0: 30579 @@ -378,12 +389,27 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - proto: AirAlarm entities: - - uid: 802 + - uid: 424 components: - type: Transform rot: 1.5707963267948966 rad @@ -391,10 +417,10 @@ entities: parent: 2 - type: DeviceList devices: - - 411 - - 400 - 410 - 402 + - 411 + - 400 - uid: 803 components: - type: Transform @@ -403,44 +429,51 @@ entities: parent: 2 - type: DeviceList devices: - - 402 - 410 + - 402 - 400 - 411 -- proto: AirCanister - entities: - - uid: 387 + - uid: 805 components: - type: Transform - anchored: True - pos: 4.5,-15.5 + rot: 3.141592653589793 rad + pos: 5.5,3.5 parent: 2 - - type: Physics - bodyType: Static + - type: DeviceList + devices: + - 408 + - 401 + - 403 + - 409 + - uid: 806 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 64 + - 425 - proto: AirlockCargoLocked entities: - uid: 1 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,5.5 parent: 2 - uid: 20 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,1.5 parent: 2 - uid: 22 components: - type: Transform - rot: -1.5707963267948966 rad pos: -0.5,5.5 parent: 2 - uid: 199 components: - type: Transform - rot: -1.5707963267948966 rad pos: -0.5,1.5 parent: 2 - proto: AirlockExternalGlassCargoLocked @@ -497,17 +530,17 @@ entities: parent: 2 - proto: APCBasic entities: + - uid: 187 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 - uid: 597 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 2 - - uid: 944 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 2 - proto: AtmosDeviceFanDirectional entities: - uid: 560 @@ -558,6 +591,30 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 789 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 783 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 - proto: BlastDoor entities: - uid: 279 @@ -608,6 +665,16 @@ entities: parent: 2 - proto: CableApcExtension entities: + - uid: 23 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 - uid: 31 components: - type: Transform @@ -616,7 +683,17 @@ entities: - uid: 189 components: - type: Transform - pos: 5.5,-17.5 + pos: 5.5,-14.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 6.5,-14.5 parent: 2 - uid: 222 components: @@ -673,90 +750,85 @@ entities: - type: Transform pos: -1.5,2.5 parent: 2 - - uid: 384 - components: - - type: Transform - pos: 5.5,-18.5 - parent: 2 - uid: 385 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 539 components: - type: Transform pos: 5.5,-19.5 parent: 2 + - uid: 541 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 - uid: 542 components: - type: Transform pos: 4.5,-4.5 parent: 2 + - uid: 564 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 - uid: 575 components: - type: Transform pos: 2.5,-4.5 parent: 2 + - uid: 576 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 - uid: 577 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 638 + - uid: 587 components: - type: Transform - pos: 1.5,-14.5 + pos: 3.5,-17.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: 4.5,-17.5 parent: 2 - uid: 639 components: - type: Transform - pos: 1.5,-15.5 - parent: 2 - - uid: 640 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 2 - - uid: 641 - components: - - type: Transform - pos: 2.5,-16.5 + pos: 6.5,-19.5 parent: 2 - uid: 642 components: - type: Transform - pos: 3.5,-16.5 - parent: 2 - - uid: 643 - components: - - type: Transform - pos: 4.5,-16.5 - parent: 2 - - uid: 644 - components: - - type: Transform - pos: 5.5,-16.5 - parent: 2 - - uid: 645 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 2 - - uid: 646 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 2 - - uid: 647 - components: - - type: Transform - pos: 8.5,-16.5 - parent: 2 - - uid: 648 - components: - - type: Transform - pos: 9.5,-16.5 - parent: 2 - - uid: 651 - components: - - type: Transform - pos: 8.5,-15.5 + pos: 5.5,-18.5 parent: 2 - uid: 652 components: @@ -778,11 +850,6 @@ entities: - type: Transform pos: 2.5,-14.5 parent: 2 - - uid: 656 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 2 - uid: 657 components: - type: Transform @@ -793,11 +860,6 @@ entities: - type: Transform pos: 8.5,-12.5 parent: 2 - - uid: 659 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 2 - uid: 660 components: - type: Transform @@ -1233,6 +1295,11 @@ entities: - type: Transform pos: -0.5,5.5 parent: 2 + - uid: 782 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 - uid: 804 components: - type: Transform @@ -1255,26 +1322,21 @@ entities: - type: Transform pos: 11.5,-21.5 parent: 2 - - uid: 62 + - uid: 65 components: - type: Transform - pos: 8.5,-20.5 - parent: 2 - - uid: 63 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 2 - - uid: 64 - components: - - type: Transform - pos: 9.5,-20.5 + pos: 3.5,-19.5 parent: 2 - uid: 186 components: - type: Transform pos: -0.5,-12.5 parent: 2 + - uid: 188 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 - uid: 190 components: - type: Transform @@ -1325,36 +1387,36 @@ entities: - type: Transform pos: 11.5,-18.5 parent: 2 - - uid: 591 + - uid: 413 components: - type: Transform - pos: 2.5,-17.5 + pos: 1.5,-15.5 parent: 2 - - uid: 592 + - uid: 421 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 437 components: - type: Transform pos: 1.5,-17.5 parent: 2 - - uid: 593 + - uid: 530 components: - type: Transform - pos: 3.5,-17.5 - parent: 2 - - uid: 594 - components: - - type: Transform - pos: 3.5,-16.5 - parent: 2 - - uid: 595 - components: - - type: Transform - pos: 3.5,-15.5 + pos: 1.5,-16.5 parent: 2 - uid: 623 components: - type: Transform pos: 11.5,-17.5 parent: 2 + - uid: 726 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 - uid: 735 components: - type: Transform @@ -1390,10 +1452,15 @@ entities: - type: Transform pos: 11.5,-26.5 parent: 2 - - uid: 778 + - uid: 776 components: - type: Transform - pos: 1.5,-16.5 + pos: 2.5,-19.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: 1.5,-19.5 parent: 2 - uid: 780 components: @@ -1530,21 +1597,6 @@ entities: - type: Transform pos: 6.5,-22.5 parent: 2 - - uid: 916 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 2 - - uid: 917 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 2 - - uid: 918 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 2 - uid: 919 components: - type: Transform @@ -1672,6 +1724,11 @@ entities: parent: 2 - proto: CableMV entities: + - uid: 63 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 - uid: 295 components: - type: Transform @@ -1867,6 +1924,11 @@ entities: - type: Transform pos: 9.5,-6.5 parent: 2 + - uid: 381 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 - uid: 393 components: - type: Transform @@ -1927,26 +1989,11 @@ entities: - type: Transform pos: 12.5,-1.5 parent: 2 - - uid: 599 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 2 - - uid: 600 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 2 - uid: 601 components: - type: Transform pos: -0.5,0.5 parent: 2 - - uid: 602 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 2 - uid: 603 components: - type: Transform @@ -2087,13 +2134,13 @@ entities: - type: Transform pos: 3.5,5.5 parent: 2 -- proto: CableTerminal +- proto: CableTerminalUncuttable entities: - - uid: 590 + - uid: 384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-17.5 + rot: 3.141592653589793 rad + pos: 1.5,-16.5 parent: 2 - proto: CargoPalletBuy entities: @@ -2395,11 +2442,6 @@ entities: parent: 2 - proto: Catwalk entities: - - uid: 33 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 2 - uid: 135 components: - type: Transform @@ -2415,16 +2457,35 @@ entities: - type: Transform pos: -1.5,-3.5 parent: 2 - - uid: 200 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 2 - uid: 292 components: - type: Transform pos: -1.5,-5.5 parent: 2 + - uid: 412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-16.5 + parent: 2 + - uid: 422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 2 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 2 + - uid: 439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 2 - uid: 528 components: - type: Transform @@ -2440,16 +2501,6 @@ entities: - type: Transform pos: 3.5,-22.5 parent: 2 - - uid: 538 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 2 - - uid: 539 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 2 - uid: 540 components: - type: Transform @@ -2485,16 +2536,6 @@ entities: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 571 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 2 - - uid: 573 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 2 - uid: 578 components: - type: Transform @@ -2505,6 +2546,12 @@ entities: - type: Transform pos: 10.5,-24.5 parent: 2 + - uid: 589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-18.5 + parent: 2 - uid: 596 components: - type: Transform @@ -2515,6 +2562,18 @@ entities: - type: Transform pos: 7.5,-22.5 parent: 2 + - uid: 640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-18.5 + parent: 2 + - uid: 641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 2 - uid: 759 components: - type: Transform @@ -2525,11 +2584,6 @@ entities: - type: Transform pos: 1.5,-22.5 parent: 2 - - uid: 762 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 2 - uid: 841 components: - type: Transform @@ -2565,11 +2619,6 @@ entities: - type: Transform pos: 10.5,-22.5 parent: 2 - - uid: 859 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 2 - uid: 863 components: - type: Transform @@ -2601,11 +2650,11 @@ entities: parent: 2 - proto: ChairOfficeDark entities: - - uid: 149 + - uid: 795 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-16.5 + pos: 5.5,-16.5 parent: 2 - proto: ClosetEmergencyFilledRandom entities: @@ -2621,6 +2670,67 @@ entities: - type: Transform pos: 10.5,4.5 parent: 2 +- proto: ClosetMaintenance + entities: + - uid: 96 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 149 + - 98 + - 97 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClothingNeckCloakTrans + entities: + - uid: 149 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerAlert + entities: + - uid: 802 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 +- proto: ComputerAtmosMonitoring + entities: + - uid: 807 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 - proto: ComputerPalletConsole entities: - uid: 894 @@ -2637,17 +2747,18 @@ entities: parent: 2 - proto: ComputerPowerMonitoring entities: - - uid: 766 + - uid: 255 components: - type: Transform - pos: 7.5,-15.5 + rot: 3.141592653589793 rad + pos: 2.5,-19.5 parent: 2 - proto: ComputerSolarControl entities: - - uid: 772 + - uid: 369 components: - type: Transform - pos: 8.5,-15.5 + pos: 2.5,-15.5 parent: 2 - proto: ConveyorBelt entities: @@ -2834,7 +2945,6 @@ entities: - uid: 555 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,2.5 parent: 2 - type: DeviceNetwork @@ -2844,7 +2954,6 @@ entities: - uid: 558 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,1.5 parent: 2 - type: DeviceNetwork @@ -2854,7 +2963,6 @@ entities: - uid: 562 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-10.5 parent: 2 - type: DeviceNetwork @@ -2864,31 +2972,56 @@ entities: - uid: 569 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - 586 - 585 -- proto: GasOutletInjector +- proto: GasMinerNitrogen + entities: + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 2 +- proto: GasMinerOxygen + entities: + - uid: 232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 2 +- proto: GasMixer entities: - uid: 386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-15.5 - parent: 2 -- proto: GasPassiveVent - entities: - - uid: 397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-15.5 + rot: 3.141592653589793 rad + pos: 6.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + enabled: True +- proto: GasPassiveVent + entities: + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 2 + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 2 - uid: 414 components: - type: Transform @@ -2899,6 +3032,14 @@ entities: color: '#FF1212FF' - proto: GasPipeBend entities: + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 316 components: - type: Transform @@ -2930,7 +3071,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 434 + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 2 + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 438 components: - type: Transform rot: 3.141592653589793 rad @@ -3041,6 +3196,19 @@ entities: color: '#0335FCFF' - proto: GasPipeStraight entities: + - uid: 33 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 223 components: - type: Transform @@ -3087,6 +3255,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 417 components: - type: Transform @@ -3119,62 +3303,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 426 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-16.5 + pos: 7.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 430 components: - type: Transform @@ -3199,46 +3333,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 435 + - uid: 434 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-16.5 + rot: -1.5707963267948966 rad + pos: 7.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0335FCFF' - uid: 442 components: - type: Transform @@ -3719,6 +3821,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-19.5 + parent: 2 - proto: GasPipeTJunction entities: - uid: 294 @@ -3729,30 +3845,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 433 components: - type: Transform @@ -3761,6 +3853,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 440 components: - type: Transform @@ -3800,30 +3900,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' -- proto: GasPort - entities: - - uid: 427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-15.5 - parent: 2 - proto: GasVentPump entities: - - uid: 398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 400 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 803 + - 424 - type: AtmosPipeColor color: '#0335FCFF' - uid: 401 @@ -3831,6 +3919,9 @@ entities: - type: Transform pos: 2.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 805 - type: AtmosPipeColor color: '#0335FCFF' - uid: 402 @@ -3839,6 +3930,10 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 803 + - 424 - type: AtmosPipeColor color: '#0335FCFF' - uid: 403 @@ -3846,24 +3941,33 @@ entities: - type: Transform pos: 8.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 805 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 412 + - uid: 425 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-16.5 + pos: 5.5,-16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 806 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber entities: - - uid: 399 + - uid: 64 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-15.5 + rot: -1.5707963267948966 rad + pos: 5.5,-17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 806 - type: AtmosPipeColor color: '#FF1212FF' - uid: 408 @@ -3871,6 +3975,9 @@ entities: - type: Transform pos: 1.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 805 - type: AtmosPipeColor color: '#FF1212FF' - uid: 409 @@ -3878,6 +3985,9 @@ entities: - type: Transform pos: 9.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 805 - type: AtmosPipeColor color: '#FF1212FF' - uid: 410 @@ -3886,6 +3996,10 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 803 + - 424 - type: AtmosPipeColor color: '#FF1212FF' - uid: 411 @@ -3894,34 +4008,30 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 803 + - 424 - type: AtmosPipeColor color: '#FF1212FF' - proto: GeneratorBasic15kW entities: - - uid: 211 + - uid: 638 components: - type: Transform - pos: 1.5,-17.5 + pos: 1.5,-19.5 parent: 2 - - uid: 231 + - uid: 775 components: - type: Transform - pos: 1.5,-16.5 + pos: 3.5,-19.5 parent: 2 - proto: GravityGeneratorMini entities: - - uid: 232 + - uid: 793 components: - type: Transform - pos: 1.5,-15.5 + pos: 1.5,-17.5 parent: 2 - proto: Grille entities: @@ -3963,85 +4073,71 @@ entities: - uid: 153 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 2 - uid: 162 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,3.5 parent: 2 - uid: 163 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,2.5 parent: 2 - uid: 164 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,1.5 parent: 2 - uid: 166 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,0.5 parent: 2 - uid: 167 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 2 - uid: 168 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 2 - uid: 169 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,1.5 parent: 2 - uid: 170 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 - uid: 171 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 2 - uid: 194 components: - type: Transform - rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 2 - uid: 195 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 2 - uid: 196 components: - type: Transform - rot: 3.141592653589793 rad pos: 7.5,-13.5 parent: 2 - uid: 197 components: - type: Transform - rot: 3.141592653589793 rad pos: 9.5,-13.5 parent: 2 - uid: 209 @@ -4072,13 +4168,11 @@ entities: - uid: 228 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,4.5 parent: 2 - uid: 229 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,5.5 parent: 2 - uid: 272 @@ -4089,7 +4183,6 @@ entities: - uid: 282 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-11.5 parent: 2 - uid: 286 @@ -4130,43 +4223,36 @@ entities: - uid: 349 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 2 - uid: 350 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 2 - uid: 351 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-7.5 parent: 2 - uid: 352 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-1.5 parent: 2 - uid: 373 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,-12.5 parent: 2 - uid: 379 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-19.5 parent: 2 - uid: 514 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 2 - uid: 516 @@ -4192,25 +4278,21 @@ entities: - uid: 624 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,-19.5 parent: 2 - uid: 625 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,-14.5 parent: 2 - uid: 626 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,-11.5 parent: 2 - uid: 627 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-12.5 parent: 2 - uid: 737 @@ -4223,34 +4305,39 @@ entities: - type: Transform pos: -2.5,-27.5 parent: 2 + - uid: 768 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 - uid: 787 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,-18.5 parent: 2 - uid: 788 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,-10.5 parent: 2 - uid: 791 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-10.5 parent: 2 - uid: 792 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-16.5 parent: 2 - uid: 798 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-17.5 parent: 2 - uid: 814 @@ -4276,13 +4363,11 @@ entities: - uid: 826 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-18.5 parent: 2 - uid: 827 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-14.5 parent: 2 - uid: 847 @@ -4456,31 +4541,7 @@ entities: parent: 2 - proto: NewtonCradle entities: - - uid: 65 - components: - - type: Transform - pos: 9.501623,-16.39294 - parent: 2 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-15.5 - parent: 2 - - uid: 389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-15.5 - parent: 2 - - uid: 390 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 2 - - uid: 391 + - uid: 809 components: - type: Transform pos: 5.5,-15.5 @@ -4544,23 +4605,69 @@ entities: - type: Transform pos: 4.5,-14.5 parent: 2 -- proto: PosterLegitVacation - entities: - - uid: 82 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-14.5 - parent: 2 -- proto: PowerCellRecharger - entities: - uid: 773 components: - type: Transform - pos: 9.5,-15.5 + pos: 7.5,-19.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 +- proto: PlushieSharkBlue + entities: + - uid: 97 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlushieSlime + entities: + - uid: 98 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PosterLegitVacation + entities: + - uid: 794 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 +- proto: PoweredDimSmallLight + entities: + - uid: 293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 2 + - uid: 427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-19.5 parent: 2 - proto: Poweredlight entities: + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-20.5 + parent: 2 - uid: 124 components: - type: Transform @@ -4590,6 +4697,12 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-0.5 parent: 2 + - uid: 796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 2 - proto: PoweredSmallLight entities: - uid: 253 @@ -4598,18 +4711,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 2 - - uid: 254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-19.5 - parent: 2 - - uid: 255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-16.5 - parent: 2 - uid: 259 components: - type: Transform @@ -4637,13 +4738,11 @@ entities: - uid: 547 components: - type: Transform - rot: 3.141592653589793 rad pos: 10.5,-11.5 parent: 2 - uid: 548 components: - type: Transform - rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 2 - proto: ReinforcedWindow @@ -4651,7 +4750,6 @@ entities: - uid: 3 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,4.5 parent: 2 - uid: 7 @@ -4692,91 +4790,76 @@ entities: - uid: 77 components: - type: Transform - rot: 3.141592653589793 rad pos: 7.5,-13.5 parent: 2 - uid: 100 components: - type: Transform - rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 2 - uid: 142 components: - type: Transform - rot: 3.141592653589793 rad pos: 9.5,-13.5 parent: 2 - uid: 152 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 2 - uid: 154 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,1.5 parent: 2 - uid: 155 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 2 - uid: 156 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 - uid: 157 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,0.5 parent: 2 - uid: 158 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,5.5 parent: 2 - uid: 159 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,1.5 parent: 2 - uid: 160 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,2.5 parent: 2 - uid: 161 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,3.5 parent: 2 - uid: 165 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 2 - uid: 182 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 2 - uid: 185 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 2 - uid: 285 @@ -4807,25 +4890,21 @@ entities: - uid: 353 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 2 - uid: 356 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 2 - uid: 357 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-7.5 parent: 2 - uid: 358 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-1.5 parent: 2 - uid: 954 @@ -4843,13 +4922,6 @@ entities: - type: Transform pos: 4.5,-12.5 parent: 2 -- proto: ScrapPAIGold - entities: - - uid: 81 - components: - - type: Transform - pos: 9.532873,-17.26794 - parent: 2 - proto: ShuttersNormal entities: - uid: 212 @@ -4893,7 +4965,8 @@ entities: - type: DeviceLinkSource linkedPorts: 290: - - Pressed: Toggle + - - Pressed + - Toggle - uid: 549 components: - type: Transform @@ -4903,7 +4976,8 @@ entities: - type: DeviceLinkSource linkedPorts: 288: - - Pressed: Toggle + - - Pressed + - Toggle - uid: 550 components: - type: Transform @@ -4913,7 +4987,8 @@ entities: - type: DeviceLinkSource linkedPorts: 279: - - Pressed: Toggle + - - Pressed + - Toggle - uid: 551 components: - type: Transform @@ -4923,7 +4998,8 @@ entities: - type: DeviceLinkSource linkedPorts: 289: - - Pressed: Toggle + - - Pressed + - Toggle - proto: SignalSwitchDirectional entities: - uid: 128 @@ -4934,14 +5010,20 @@ entities: - type: DeviceLinkSource linkedPorts: 257: - - On: Open - - Off: Close + - - On + - Open + - - Off + - Close 218: - - On: Open - - Off: Close + - - On + - Open + - - Off + - Close 215: - - On: Open - - Off: Close + - - On + - Open + - - Off + - Close - uid: 129 components: - type: Transform @@ -4951,14 +5033,20 @@ entities: - type: DeviceLinkSource linkedPorts: 257: - - On: Open - - Off: Close + - - On + - Open + - - Off + - Close 218: - - On: Open - - Off: Close + - - On + - Open + - - Off + - Close 215: - - On: Open - - Off: Close + - - On + - Open + - - Off + - Close - uid: 133 components: - type: Transform @@ -4968,14 +5056,20 @@ entities: - type: DeviceLinkSource linkedPorts: 261: - - On: Open - - Off: Close + - - On + - Open + - - Off + - Close 258: - - On: Open - - Off: Close + - - On + - Open + - - Off + - Close 212: - - On: Open - - Off: Close + - - On + - Open + - - Off + - Close - uid: 221 components: - type: Transform @@ -4984,14 +5078,20 @@ entities: - type: DeviceLinkSource linkedPorts: 261: - - On: Open - - Off: Close + - - On + - Open + - - Off + - Close 258: - - On: Open - - Off: Close + - - On + - Open + - - Off + - Close 212: - - On: Open - - Off: Close + - - On + - Open + - - Off + - Close - proto: SignCargoDock entities: - uid: 271 @@ -5020,10 +5120,10 @@ entities: parent: 2 - proto: SMESBasic entities: - - uid: 380 + - uid: 28 components: - type: Transform - pos: 3.5,-17.5 + pos: 1.5,-15.5 parent: 2 - proto: SolarPanel entities: @@ -5049,16 +5149,6 @@ entities: - type: Transform pos: 1.5,-24.5 parent: 2 - - uid: 531 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 2 - - uid: 532 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 2 - uid: 534 components: - type: Transform @@ -5134,11 +5224,6 @@ entities: - type: Transform pos: 8.5,-26.5 parent: 2 - - uid: 845 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 2 - uid: 851 components: - type: Transform @@ -5179,26 +5264,11 @@ entities: - type: Transform pos: 2.5,-22.5 parent: 2 - - uid: 870 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 2 - - uid: 871 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 2 - uid: 891 components: - type: Transform pos: 0.5,-22.5 parent: 2 - - uid: 892 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 2 - proto: SolarTracker entities: - uid: 198 @@ -5221,69 +5291,48 @@ entities: - type: Transform pos: 6.5,-24.5 parent: 2 -- proto: SpawnMobBear - entities: - - uid: 150 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 2 - proto: StationAnchorIndestructible entities: - - uid: 967 + - uid: 376 components: - type: Transform - pos: 5.5,-18.5 + rot: 1.5707963267948966 rad + pos: 5.5,-19.5 parent: 2 - proto: SubstationBasic entities: - - uid: 381 + - uid: 538 components: - type: Transform pos: 3.5,-15.5 parent: 2 +- proto: Table + entities: + - uid: 808 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 - proto: TableReinforced entities: - - uid: 769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-15.5 - parent: 2 - - uid: 770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-16.5 - parent: 2 - - uid: 771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-17.5 - parent: 2 - uid: 896 components: - type: Transform - rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 2 - uid: 897 components: - type: Transform - rot: -1.5707963267948966 rad pos: 4.5,-5.5 parent: 2 - uid: 898 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 2 - uid: 899 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 2 - proto: TwoWayLever @@ -5296,21 +5345,33 @@ entities: - type: DeviceLinkSource linkedPorts: 233: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 206: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 202: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 184: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off - uid: 263 components: - type: Transform @@ -5319,21 +5380,33 @@ entities: - type: DeviceLinkSource linkedPorts: 143: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 148: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 146: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 140: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off - uid: 268 components: - type: Transform @@ -5342,21 +5415,33 @@ entities: - type: DeviceLinkSource linkedPorts: 141: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 147: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 234: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 151: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off - uid: 269 components: - type: Transform @@ -5365,77 +5450,49 @@ entities: - type: DeviceLinkSource linkedPorts: 214: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 213: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 264: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 238: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off - proto: WallPlastitaniumIndestructible entities: - - uid: 28 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 2 - - uid: 29 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 2 - - uid: 96 - components: - - type: Transform - pos: 4.5,-20.5 - parent: 2 - - uid: 97 - components: - - type: Transform - pos: 3.5,-19.5 - parent: 2 - - uid: 98 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 2 - - uid: 187 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 2 - - uid: 188 - components: - - type: Transform - pos: 3.5,-20.5 - parent: 2 - - uid: 207 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 2 - - uid: 208 - components: - - type: Transform - pos: 10.5,-16.5 - parent: 2 - uid: 219 components: - type: Transform - pos: 3.5,-14.5 + pos: 3.5,-21.5 parent: 2 - uid: 220 components: - type: Transform - pos: 1.5,-14.5 + pos: 7.5,-20.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: 5.5,-21.5 parent: 2 - uid: 374 components: @@ -5445,84 +5502,164 @@ entities: - uid: 375 components: - type: Transform - pos: 9.5,-14.5 - parent: 2 - - uid: 376 - components: - - type: Transform - pos: 1.5,-18.5 + pos: 1.5,-20.5 parent: 2 - uid: 377 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 2 - - uid: 378 - components: - - type: Transform - pos: 3.5,-18.5 - parent: 2 - - uid: 530 components: - type: Transform pos: 7.5,-18.5 parent: 2 - - uid: 541 + - uid: 387 components: - type: Transform - pos: 8.5,-18.5 + pos: 10.5,-20.5 parent: 2 - - uid: 564 + - uid: 388 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 389 components: - type: Transform pos: 9.5,-18.5 parent: 2 - - uid: 576 + - uid: 390 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 644 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 840 - components: - - type: Transform - pos: 8.5,-14.5 - parent: 2 - - uid: 858 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 2 - - uid: 860 + - uid: 645 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 861 + - uid: 646 components: - type: Transform - pos: 10.5,-14.5 + pos: 1.5,-14.5 parent: 2 - - uid: 872 + - uid: 647 components: - type: Transform - pos: 0.5,-16.5 + pos: 9.5,-16.5 parent: 2 - - uid: 873 + - uid: 648 components: - type: Transform - pos: 0.5,-15.5 + pos: 8.5,-16.5 parent: 2 - - uid: 905 + - uid: 651 components: - type: Transform - pos: 0.5,-14.5 + pos: 3.5,-14.5 parent: 2 - - uid: 906 + - uid: 656 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 725 components: - type: Transform pos: 10.5,-18.5 parent: 2 - - uid: 914 + - uid: 731 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 779 components: - type: Transform pos: 10.5,-17.5 @@ -5662,7 +5799,6 @@ entities: - uid: 111 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,-4.5 parent: 2 - uid: 113 @@ -5688,7 +5824,6 @@ entities: - uid: 117 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-12.5 parent: 2 - uid: 118 @@ -5734,61 +5869,51 @@ entities: - uid: 172 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,0.5 parent: 2 - uid: 173 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,0.5 parent: 2 - uid: 174 components: - type: Transform - rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 2 - uid: 175 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,6.5 parent: 2 - uid: 176 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,6.5 parent: 2 - uid: 177 components: - type: Transform - rot: 3.141592653589793 rad pos: 11.5,6.5 parent: 2 - uid: 178 components: - type: Transform - rot: 3.141592653589793 rad pos: 11.5,4.5 parent: 2 - uid: 179 components: - type: Transform - rot: 3.141592653589793 rad pos: -0.5,6.5 parent: 2 - uid: 180 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,6.5 parent: 2 - uid: 181 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,6.5 parent: 2 - uid: 193 @@ -5809,49 +5934,41 @@ entities: - uid: 230 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,7.5 parent: 2 - uid: 235 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,7.5 parent: 2 - uid: 236 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,7.5 parent: 2 - uid: 237 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 2 - uid: 242 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,7.5 parent: 2 - uid: 243 components: - type: Transform - rot: 1.5707963267948966 rad pos: 9.5,7.5 parent: 2 - uid: 244 components: - type: Transform - rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 - uid: 245 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 2 - uid: 266 @@ -5862,33 +5979,42 @@ entities: - uid: 345 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-7.5 parent: 2 - uid: 346 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,-7.5 parent: 2 - uid: 347 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 2 - uid: 348 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-1.5 parent: 2 - uid: 553 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 2 +- proto: WarningN2 + entities: + - uid: 428 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 415 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 - proto: WarpPoint entities: - uid: 955 @@ -5898,33 +6024,50 @@ entities: parent: 2 - type: WarpPoint location: Automated Trade Station -- proto: Windoor +- proto: WeaponTurretAllHostile entities: - - uid: 293 + - uid: 531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-16.5 + rot: 3.141592653589793 rad + pos: 2.5,-17.5 parent: 2 -- proto: WindowReinforcedDirectional + - type: BallisticAmmoProvider + capacity: 50000 + missingComponents: + - Destructible +- proto: WindoorSecureCentralCommandLocked entities: - - uid: 369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 2 - - uid: 370 + - uid: 588 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-17.5 parent: 2 -- proto: Wrench +- proto: WindowReinforcedDirectional entities: - - uid: 23 + - uid: 62 components: - type: Transform - pos: 2.489903,-15.514006 + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 2 + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 2 + - uid: 590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 2 + - uid: 600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-19.5 parent: 2 ... diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index 9d495f7495..87b6336f73 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -3,80 +3,169 @@ meta: postmapinit: false tilemap: 0: Space - 89: FloorSteel - 104: FloorTechMaint - 108: FloorWhite - 120: Lattice - 121: Plating + 24: FloorAstroGrass + 23: FloorAstroSnow + 20: FloorBlueCircuit + 4: FloorDark + 6: FloorDarkMini + 10: FloorDarkMono + 14: FloorDarkOffset + 28: FloorDirt + 7: FloorFreezer + 26: FloorGrass + 25: FloorGrassDark + 31: FloorGrassJungle + 32: FloorGrassLight + 9: FloorHydro + 29: FloorJungleAstroGrass + 8: FloorKitchen + 33: FloorMowedAstroGrass + 30: FloorPlanetDirt + 27: FloorPlanetGrass + 18: FloorReinforced + 22: FloorSnow + 1: FloorSteel + 2: FloorSteelMini + 3: FloorSteelMono + 5: FloorTechMaint2 + 11: FloorWhite + 12: FloorWhiteDiagonal + 21: FloorWhiteDiagonalMini + 19: FloorWhiteMini + 13: FloorWhiteMono + 16: FloorWood + 15: FloorWoodLarge + 17: FloorWoodTile + 153: Lattice + 147: Plating + 150: PlatingAsteroid entities: - proto: "" entities: - - uid: 179 + - uid: 1 components: - type: MetaData + name: Dev - type: Transform - parent: 962 + pos: -32,-17 + parent: 23 - type: MapGrid chunks: - -1,0: - ind: -1,0 - tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAA + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAA version: 6 0,1: ind: 0,1 - tiles: eAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: mQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 0,0: - ind: 0,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAA - version: 6 - 1,-1: - ind: 1,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -2,0: - ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAA + 0,2: + ind: 0,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: bAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,-1: - ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAACAQAAAAACmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAAAAgAAAAACAgAAAAAC version: 6 1,1: ind: 1,1 - tiles: WQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: mQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAwAAAAAAAQAAAAABAgAAAAABAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAQAAAAAAAgAAAAABAgAAAAADmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAwAAAAADAQAAAAABAgAAAAABAgAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAACAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAABAAAAAACBAAAAAACBAAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAABAAAAAADBQAAAAAABAAAAAADBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAABAAAAAABBAAAAAADBAAAAAACBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAA version: 6 - -1,1: - ind: -1,1 - tiles: AAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 1,2: + ind: 1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAABwAAAAAABwAAAAAABwAAAAAAkwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAABwAAAAAABwAAAAAABwAAAAAAkwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAwAAAAABAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAgAAAAAB version: 6 - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + 2,0: + ind: 2,0 + tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAACkwAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAgAAAAADAQAAAAAAAgAAAAABAgAAAAACAQAAAAACkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + 2,1: + ind: 2,1 + tiles: AQAAAAAAAgAAAAACAQAAAAAAAgAAAAABAgAAAAAAAQAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAgAAAAABAQAAAAADAgAAAAADAgAAAAAAAQAAAAABkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAgAAAAABAQAAAAADAgAAAAADAgAAAAABAQAAAAACkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAACAQAAAAABAQAAAAABkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAACCgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAACBAAAAAAABAAAAAADBAAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBQAAAAAABAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAABAAAAAADBQAAAAAABAAAAAADBQAAAAAABAAAAAABBAAAAAABBAAAAAACkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAABBAAAAAACkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAABAAAAAACBQAAAAAABAAAAAADkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAABBAAAAAADkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAA version: 6 - 1,-2: - ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 3,0: + ind: 3,0 + tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAABkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAADkwAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAkwAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAACAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAABkwAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAACkwAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAQAAAAABkwAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAACAQAAAAACkwAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAAAkwAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAABkwAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADwAAAAABDwAAAAADkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAABAgAAAAADAgAAAAACkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAEAAAAAACEAAAAAACDwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAACkwAAAAAADgAAAAAABQAAAAAADgAAAAAAkwAAAAAAEAAAAAACEAAAAAAADwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAEQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACwAAAAADCwAAAAABCwAAAAACCwAAAAADCwAAAAACCwAAAAADCwAAAAADCwAAAAABCwAAAAACCwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAADDAAAAAACDAAAAAAACwAAAAABCwAAAAAACwAAAAADCwAAAAABDQAAAAADkwAAAAAACwAAAAADkwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAkwAAAAAACwAAAAABDAAAAAACDAAAAAADCwAAAAADCwAAAAAACwAAAAADCwAAAAABCwAAAAAACwAAAAACCwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAkwAAAAAACwAAAAAACwAAAAACCwAAAAACCwAAAAACCwAAAAADCwAAAAAACwAAAAACDQAAAAADkwAAAAAACwAAAAAAkwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAkwAAAAAAkwAAAAAACwAAAAABCwAAAAADDQAAAAACAQAAAAAAAQAAAAAAAQAAAAADCwAAAAAACwAAAAABCwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAQAAAAACAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAgAAAAACAgAAAAACAgAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAgAAAAABAgAAAAADAgAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAAgAAAAADAgAAAAACkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAABQAAAAAADgAAAAAAkwAAAAAAkwAAAAAABQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAACwAAAAACCwAAAAACCwAAAAABkwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAkwAAAAAACwAAAAADCwAAAAADCwAAAAADkwAAAAAAAAAAAAAAAAAAAAAACwAAAAACDQAAAAACCwAAAAABCwAAAAADCwAAAAABCwAAAAADEwAAAAACCwAAAAACCwAAAAAACwAAAAADFQAAAAACFQAAAAACFQAAAAACkwAAAAAAAAAAAAAAAAAAAAAAEwAAAAABEwAAAAABEwAAAAACEwAAAAADEwAAAAABEwAAAAAAEwAAAAABEwAAAAACEwAAAAACEwAAAAACFQAAAAABDQAAAAABFQAAAAACkwAAAAAAAAAAAAAAAAAAAAAACwAAAAACCwAAAAABCwAAAAAACwAAAAACCwAAAAAACwAAAAACEwAAAAABCwAAAAABCwAAAAAACwAAAAAAFQAAAAACFQAAAAADFQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAQAAAAADAQAAAAADkwAAAAAACwAAAAABCwAAAAACCwAAAAACCwAAAAACCwAAAAACkwAAAAAACwAAAAAACwAAAAADCwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAQAAAAAAFAAAAAAAAQAAAAACkwAAAAAACwAAAAACEwAAAAACEwAAAAADEwAAAAABCwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAACkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAABQAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAgAAAAABAQAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAACkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAADAQAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAABDwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAAAQAAAAABAgAAAAACAQAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAADwAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAAAQAAAAACAgAAAAACAQAAAAAADwAAAAADDwAAAAACDwAAAAACDwAAAAACkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAACCQAAAAAAAQAAAAACAQAAAAAAAQAAAAADkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAADCQAAAAAAAQAAAAACAQAAAAADAQAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACCQAAAAAAAwAAAAABAgAAAAADAwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAACQAAAAAAAwAAAAACAgAAAAACkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAABQAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAFgAAAAAAFgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAAkwAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAABQAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAA + version: 6 + 5,1: + ind: 5,1 + tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAA + version: 6 + 5,0: + ind: 5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + version: 6 + 6,0: + ind: 6,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,1: + ind: 6,1 + tiles: kwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,2: + ind: 5,2 + tiles: AAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,2: + ind: 4,2 + tiles: AAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAABQAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAQAAAAAAAQAAAAABAgAAAAABAQAAAAAAAQAAAAAAAQAAAAACAgAAAAADAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAADAQAAAAACAgAAAAACAQAAAAADAQAAAAADAQAAAAABAgAAAAADAQAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAADAQAAAAADAgAAAAAAAQAAAAABAQAAAAABAQAAAAACAgAAAAADAQAAAAACAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAADAQAAAAADAgAAAAABAQAAAAAAAQAAAAACAQAAAAABAgAAAAAAAQAAAAACAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAADAQAAAAADAgAAAAAAAQAAAAACAQAAAAABAQAAAAADAgAAAAACAQAAAAACAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAACAQAAAAADAgAAAAAAAQAAAAADAQAAAAACAQAAAAADAgAAAAADAQAAAAACAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAQAAAAAAAQAAAAABAgAAAAABAQAAAAABAQAAAAACAQAAAAADAgAAAAACAQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAgAAAAAAAgAAAAADAgAAAAADAgAAAAACAgAAAAACAgAAAAAAAgAAAAADAgAAAAABAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAABAQAAAAADAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAACAQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAACkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,3: + ind: 4,3 + tiles: AAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAQAAAAACAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,2: + ind: 6,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,4: + ind: 2,4 + tiles: AAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAFwAAAAAEFwAAAAAGkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAGAAAAAADGQAAAAAAGgAAAAAAGwAAAAAAHQAAAAAAHwAAAAAAIAAAAAADIQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAHAAAAAAAHgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,4: + ind: 3,4 + tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: AAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -87,6 +176,1584 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 203: 32,46 + 204: 32,47 + 205: 30,46 + 206: 34,47 + 207: 34,46 + 208: 36,46 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 260: 46,39 + - node: + zIndex: 1 + color: '#D381C996' + id: BrickCornerOverlayNE + decals: + 133: 55,27 + - node: + zIndex: 1 + color: '#D381C996' + id: BrickCornerOverlayNW + decals: + 134: 49,27 + - node: + zIndex: 1 + color: '#D381C996' + id: BrickCornerOverlaySE + decals: + 136: 55,24 + - node: + zIndex: 1 + color: '#D381C996' + id: BrickCornerOverlaySW + decals: + 135: 49,24 + - node: + zIndex: 1 + color: '#D381C996' + id: BrickLineOverlayE + decals: + 137: 55,25 + 138: 55,26 + - node: + zIndex: 1 + color: '#D381C996' + id: BrickLineOverlayN + decals: + 128: 50,27 + 129: 51,27 + 130: 52,27 + 131: 53,27 + 132: 54,27 + - node: + zIndex: 1 + color: '#D381C996' + id: BrickLineOverlayS + decals: + 123: 50,24 + 124: 51,24 + 125: 52,24 + 126: 53,24 + 127: 54,24 + - node: + zIndex: 1 + color: '#D381C996' + id: BrickLineOverlayW + decals: + 121: 49,25 + 122: 49,26 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 152: 55,23 + 172: 34,37 + 247: 55,37 + 254: 47,40 + 318: 78,15 + 347: 71,34 + 355: 44,51 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 151: 53,23 + 171: 32,37 + 246: 53,37 + 253: 46,40 + 317: 76,15 + 346: 69,34 + 354: 42,51 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 149: 55,21 + 169: 34,35 + 245: 55,35 + 255: 47,38 + 316: 78,13 + 344: 71,32 + 353: 44,49 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 150: 53,21 + 170: 32,35 + 244: 53,35 + 252: 46,38 + 315: 76,13 + 345: 69,32 + 352: 42,49 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 155: 55,22 + 176: 34,36 + 251: 55,36 + 257: 47,39 + 322: 78,14 + 351: 71,33 + 359: 44,50 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 154: 54,23 + 175: 33,37 + 250: 54,37 + 321: 77,15 + 350: 70,34 + 358: 43,51 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 156: 54,21 + 173: 33,35 + 248: 54,35 + 320: 77,13 + 348: 70,32 + 356: 43,49 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 153: 53,22 + 174: 32,36 + 249: 53,36 + 259: 46,39 + 319: 76,14 + 349: 69,33 + 357: 42,50 + - node: + color: '#E1E1E1FF' + id: BrickTileSteelCornerNe + decals: + 191: 32,44 + - node: + color: '#E1E1E1FF' + id: BrickTileSteelCornerNw + decals: + 192: 34,44 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 147: 51,21 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 148: 50,21 + - node: + color: '#E1E1E1FF' + id: BrickTileSteelLineE + decals: + 185: 32,43 + - node: + color: '#E1E1E1FF' + id: BrickTileSteelLineN + decals: + 187: 35,44 + 188: 36,44 + 189: 31,44 + 190: 30,44 + - node: + color: '#E1E1E1FF' + id: BrickTileSteelLineW + decals: + 186: 34,43 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteBox + decals: + 101: 57,25 + 102: 57,27 + - node: + zIndex: 1 + color: '#E1E1E1FF' + id: BrickTileWhiteCornerNe + decals: + 95: 51,26 + 279: 60,40 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 103: 55,27 + - node: + zIndex: 1 + color: '#E1E1E1FF' + id: BrickTileWhiteCornerNw + decals: + 96: 50,26 + 278: 58,40 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 104: 49,27 + - node: + zIndex: 1 + color: '#E1E1E1FF' + id: BrickTileWhiteCornerSe + decals: + 94: 51,25 + 281: 60,38 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 106: 55,24 + - node: + zIndex: 1 + color: '#E1E1E1FF' + id: BrickTileWhiteCornerSw + decals: + 93: 50,25 + 280: 58,38 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 105: 49,24 + - node: + zIndex: 1 + color: '#E1E1E1FF' + id: BrickTileWhiteInnerNe + decals: + 287: 58,38 + - node: + zIndex: 1 + color: '#E1E1E1FF' + id: BrickTileWhiteInnerNw + decals: + 286: 60,38 + - node: + zIndex: 1 + color: '#E1E1E1FF' + id: BrickTileWhiteInnerSe + decals: + 289: 58,40 + - node: + zIndex: 1 + color: '#E1E1E1FF' + id: BrickTileWhiteInnerSw + decals: + 288: 60,40 + - node: + zIndex: 1 + color: '#E1E1E1FF' + id: BrickTileWhiteLineE + decals: + 274: 60,39 + 283: 58,39 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 112: 55,25 + 113: 55,26 + - node: + zIndex: 1 + color: '#E1E1E1FF' + id: BrickTileWhiteLineN + decals: + 275: 59,40 + 282: 59,38 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 114: 50,27 + 115: 51,27 + 116: 52,27 + 117: 53,27 + 118: 54,27 + - node: + zIndex: 1 + color: '#E1E1E1FF' + id: BrickTileWhiteLineS + decals: + 277: 59,38 + 284: 59,40 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 107: 50,24 + 108: 51,24 + 109: 52,24 + 110: 53,24 + 111: 54,24 + - node: + zIndex: 1 + color: '#E1E1E1FF' + id: BrickTileWhiteLineW + decals: + 276: 58,39 + 285: 60,39 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 119: 49,26 + 120: 49,25 + - node: + color: '#D381C996' + id: DiagonalCheckerAOverlay + decals: + 97: 50,26 + 98: 51,26 + 99: 51,25 + 100: 50,25 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimCornerNe + decals: + 234: 59,35 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimCornerNw + decals: + 233: 57,35 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimCornerSe + decals: + 232: 59,34 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimCornerSw + decals: + 231: 57,34 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerNe + decals: + 19: 28,22 + 20: 30,23 + 21: 32,23 + 22: 34,23 + 23: 36,22 + 78: 32,26 + 84: 53,21 + 178: 32,35 + 235: 53,35 + 330: 76,13 + 343: 69,32 + 364: 42,49 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerNw + decals: + 24: 30,22 + 25: 32,23 + 26: 34,23 + 27: 36,23 + 28: 38,22 + 79: 34,26 + 85: 55,21 + 177: 34,35 + 236: 55,35 + 329: 78,13 + 340: 71,32 + 365: 44,49 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerSe + decals: + 29: 28,24 + 30: 30,25 + 31: 32,25 + 32: 34,25 + 33: 36,24 + 80: 32,28 + 83: 53,23 + 179: 32,37 + 237: 53,37 + 327: 76,15 + 341: 69,34 + 366: 42,51 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerSw + decals: + 34: 30,24 + 35: 32,25 + 36: 34,25 + 37: 36,25 + 38: 38,24 + 81: 34,28 + 82: 55,23 + 180: 34,37 + 238: 55,37 + 328: 78,15 + 342: 71,34 + 367: 44,51 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineE + decals: + 14: 36,23 + 15: 34,24 + 16: 32,24 + 17: 30,24 + 18: 28,23 + 77: 32,27 + 89: 53,22 + 183: 32,36 + 242: 53,36 + 326: 76,14 + 339: 69,33 + 363: 42,50 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineN + decals: + 0: 29,22 + 1: 31,23 + 2: 33,23 + 3: 35,23 + 4: 37,22 + 76: 33,26 + 88: 54,21 + 182: 33,35 + 230: 58,35 + 239: 54,35 + 325: 77,13 + 338: 70,32 + 362: 43,49 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineS + decals: + 5: 29,24 + 6: 31,25 + 7: 33,25 + 8: 35,25 + 9: 37,24 + 75: 33,28 + 86: 54,23 + 184: 33,37 + 229: 58,34 + 240: 54,37 + 324: 77,15 + 337: 70,34 + 361: 43,51 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineW + decals: + 10: 30,23 + 11: 32,24 + 12: 34,24 + 13: 36,24 + 39: 38,23 + 74: 34,27 + 87: 55,22 + 181: 34,36 + 241: 55,36 + 323: 78,14 + 336: 71,33 + 360: 44,50 + - node: + color: '#43999EBF' + id: HalfTileOverlayGreyscale + decals: + 295: 58,41 + 296: 59,41 + 297: 60,41 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 298: 52,40 + 299: 51,40 + 300: 50,40 + 301: 49,40 + 307: 56,40 + 308: 57,40 + 314: 48,40 + - node: + color: '#43999EBF' + id: HalfTileOverlayGreyscale180 + decals: + 292: 58,37 + 293: 59,37 + 294: 60,37 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 302: 50,38 + 303: 51,38 + 304: 52,38 + 305: 56,38 + 306: 57,38 + 313: 48,38 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale180 + decals: + 222: 53,41 + 223: 54,41 + 224: 55,41 + - node: + color: '#3EB38896' + id: HalfTileOverlayGreyscale270 + decals: + 331: 79,16 + 332: 79,17 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale270 + decals: + 225: 52,42 + 226: 52,43 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 334: 75,16 + 335: 75,17 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale90 + decals: + 227: 56,43 + 228: 56,42 + - node: + color: '#334E6DC8' + id: MarkupSquare + decals: + 380: 45,57 + 381: 46,57 + 382: 47,57 + 392: 45,61 + - node: + color: '#3EB38896' + id: MarkupSquare + decals: + 369: 45,53 + 370: 46,53 + - node: + color: '#52B4E996' + id: MarkupSquare + decals: + 386: 45,59 + 387: 46,59 + 388: 47,59 + - node: + color: '#9FED5896' + id: MarkupSquare + decals: + 393: 46,61 + 394: 47,61 + - node: + color: '#A4610696' + id: MarkupSquare + decals: + 375: 46,55 + 376: 47,55 + 377: 48,55 + 378: 49,55 + 379: 50,55 + - node: + color: '#D381C996' + id: MarkupSquare + decals: + 389: 48,59 + 390: 49,59 + 391: 50,59 + - node: + color: '#DE3A3A96' + id: MarkupSquare + decals: + 383: 48,57 + 384: 49,57 + 385: 50,57 + - node: + color: '#EFB34196' + id: MarkupSquare + decals: + 371: 47,53 + 372: 48,53 + 373: 49,53 + 374: 50,53 + - node: + color: '#43999E93' + id: MiniTileDiagonalCheckerAOverlay + decals: + 266: 58,38 + 267: 58,39 + 268: 58,40 + 269: 59,40 + 270: 60,40 + 271: 60,38 + 272: 60,39 + 273: 59,38 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 312: 53,40 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 310: 55,38 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 309: 53,38 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 311: 55,40 + - node: + zIndex: -1 + color: '#FA750096' + id: ThreeQuarterTileOverlayGreyscale + decals: + 219: 52,44 + - node: + color: '#FA750096' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 221: 56,41 + - node: + color: '#FA750096' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 218: 52,41 + - node: + zIndex: -1 + color: '#FA750096' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 220: 56,44 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 217: 52,42 + 264: 48,41 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 216: 56,42 + 265: 50,41 + - node: + color: '#DE3A3A96' + id: WarnFullGreyscale + decals: + 395: 49,61 + 396: 50,61 + - node: + color: '#FFFFFFFF' + id: WarnFullGreyscale + decals: + 398: 45,63 + 399: 46,63 + 400: 49,63 + 401: 50,63 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 214: 52,43 + 215: 52,44 + 262: 48,42 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 201: 31,46 + 202: 35,46 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 212: 56,43 + 213: 56,44 + 263: 50,42 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 209: 53,42 + 210: 54,42 + 211: 55,42 + 261: 49,41 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 139: 58,22 + 157: 38,40 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 140: 57,22 + 158: 35,40 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 141: 58,21 + 159: 38,39 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 142: 57,21 + 160: 35,39 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 144: 58,22 + 166: 38,40 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 143: 57,22 + 165: 35,40 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 145: 58,21 + 167: 38,39 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 146: 57,21 + 168: 35,39 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 163: 36,40 + 164: 37,40 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 161: 36,39 + 162: 37,39 + - node: + cleanable: True + color: '#FFFFFFFF' + id: uboa + decals: + 368: 39.592293,65.77571 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: GridAtmosphere + version: 2 + data: + tiles: + 1,3: + 0: 7936 + 1,4: + 0: 7951 + 1: 240 + 2,3: + 0: 3840 + 3,3: + 0: 18244 + 1: 34952 + 3,2: + 0: 17408 + 1: 34816 + 3,4: + 0: 30471 + 1: 35064 + 4,2: + 0: 37120 + 4,3: + 0: 8095 + 0,4: + 0: 3855 + 1: 240 + 1,5: + 0: 4369 + 1,6: + 0: 4369 + 1,7: + 0: 4369 + 1,8: + 0: 3857 + 2,4: + 0: 3855 + 1: 240 + 4,4: + 0: 32527 + 1: 240 + 2,8: + 0: 3840 + 3,8: + 0: 3840 + 4,8: + 0: 3840 + 5,2: + 0: 12288 + 5,3: + 0: 50995 + 5,4: + 0: 3855 + 1: 240 + 6,0: + 1: 65520 + 6,1: + 1: 65535 + 6,2: + 1: 65535 + 6,3: + 1: 255 + 0: 61440 + 6,4: + 0: 53007 + 1: 240 + 7,0: + 1: 65520 + 7,1: + 1: 65535 + 7,2: + 1: 65535 + 7,3: + 1: 61183 + 7,4: + 1: 61439 + 8,0: + 1: 65520 + 8,1: + 1: 65535 + 8,2: + 1: 65535 + 8,3: + 1: 65023 + 6,5: + 0: 17476 + 6,6: + 0: 17476 + 6,7: + 0: 17476 + 6,8: + 0: 1860 + 7,5: + 1: 65520 + 7,6: + 1: 207 + 8,4: + 1: 65535 + 8,5: + 1: 65527 + 8,6: + 1: 30719 + 8,7: + 1: 7 + 0: 34816 + 7,7: + 0: 34816 + 7,8: + 0: 136 + 5,8: + 0: 3840 + 6,9: + 2: 63232 + 6,10: + 2: 7 + 0: 8704 + 6,11: + 0: 12066 + 7,9: + 1: 65280 + 7,10: + 1: 49407 + 7,11: + 0: 256 + 1: 36044 + 8,8: + 1: 28672 + 0: 136 + 8,9: + 1: 65399 + 8,10: + 1: 62207 + 8,11: + 1: 65535 + 9,0: + 1: 65520 + 9,1: + 1: 65535 + 9,2: + 1: 65535 + 9,3: + 1: 13311 + 9,4: + 1: 4915 + 0: 128 + 10,0: + 1: 30576 + 10,1: + 1: 30583 + 10,2: + 1: 30583 + 10,3: + 1: 127 + 0: 32768 + 11,0: + 1: 65520 + 11,1: + 1: 65535 + 11,2: + 1: 65535 + 11,3: + 1: 255 + 10,4: + 0: 248 + 12,0: + 1: 65520 + 12,1: + 1: 65535 + 12,2: + 1: 65535 + 12,3: + 1: 255 + 9,5: + 1: 30576 + 9,6: + 1: 23 + 0: 3072 + 10,5: + 0: 61440 + 10,6: + 0: 36608 + 10,7: + 1: 60928 + 0: 136 + 10,8: + 1: 238 + 0: 34816 + 11,5: + 0: 61440 + 11,6: + 0: 3840 + 11,7: + 1: 13056 + 11,8: + 1: 51 + 13,0: + 1: 65520 + 13,1: + 1: 65535 + 13,2: + 1: 65535 + 13,3: + 1: 255 + 0: 4096 + 13,4: + 0: 273 + 14,0: + 1: 65520 + 14,1: + 1: 65535 + 14,2: + 1: 65535 + 14,3: + 1: 255 + 0: 4096 + 14,4: + 0: 273 + 15,0: + 1: 30576 + 15,1: + 1: 30583 + 15,2: + 1: 30583 + 15,3: + 1: 119 + 16,3: + 0: 3840 + 12,5: + 1: 36076 + 12,6: + 1: 61166 + 12,7: + 1: 12 + 13,6: + 1: 65535 + 13,7: + 1: 239 + 0: 4096 + 13,5: + 1: 61152 + 13,8: + 0: 17 + 1: 57344 + 14,6: + 1: 32631 + 14,7: + 1: 7 + 0: 4096 + 14,5: + 1: 12006 + 14,8: + 0: 1 + 1: 60928 + 15,6: + 1: 30576 + 15,5: + 0: 14 + 16,5: + 0: 34959 + 16,6: + 0: 4380 + 16,7: + 0: 8736 + 16,8: + 0: 4130 + 1: 49152 + 17,5: + 0: 65521 + 17,6: + 0: 15 + 17,4: + 1: 52428 + 17,8: + 1: 65262 + 17,3: + 1: 51200 + 0: 264 + 18,4: + 1: 30719 + 18,5: + 0: 13104 + 1: 35976 + 18,6: + 0: 3 + 1: 8 + 18,3: + 1: 30480 + 0: 3 + 19,4: + 1: 10239 + 19,5: + 1: 65535 + 19,6: + 1: 15 + 19,3: + 1: 30576 + 20,4: + 1: 65535 + 12,9: + 1: 65392 + 11,9: + 1: 52224 + 0: 16 + 12,10: + 1: 1919 + 11,10: + 1: 12 + 0: 1792 + 12,8: + 0: 8192 + 13,9: + 1: 65518 + 13,10: + 1: 65503 + 3: 32 + 13,11: + 1: 15 + 12,11: + 0: 34816 + 12,12: + 0: 2184 + 14,9: + 1: 65476 + 14,10: + 1: 4575 + 14,11: + 1: 1 + 15,8: + 1: 4096 + 0: 49152 + 15,9: + 1: 4368 + 15,10: + 1: 17 + 0: 192 + 16,10: + 0: 16 + 1: 52428 + 9,9: + 1: 63232 + 9,10: + 1: 4223 + 9,11: + 1: 273 + 10,9: + 0: 248 + 10,10: + 0: 36608 + 10,11: + 0: 34952 + 8,13: + 1: 34952 + 8,14: + 1: 34952 + 8,15: + 1: 34952 + 8,12: + 0: 2176 + 9,13: + 1: 65535 + 9,14: + 1: 65535 + 9,15: + 1: 65535 + 8,16: + 1: 34952 + 9,16: + 1: 65535 + 10,13: + 1: 65535 + 10,14: + 1: 65535 + 10,15: + 1: 64511 + 10,16: + 1: 65535 + 10,12: + 1: 52416 + 11,12: + 1: 4368 + 11,13: + 1: 65535 + 11,14: + 1: 65535 + 11,15: + 1: 65535 + 11,16: + 1: 65535 + 12,13: + 1: 65535 + 12,14: + 1: 65535 + 12,15: + 1: 65535 + 17,2: + 0: 32768 + 18,2: + 0: 12288 + 20,3: + 1: 65518 + 20,5: + 1: 61166 + 20,6: + 1: 14 + 4: 61152 + 20,7: + 4: 238 + 0: 16384 + 20,8: + 0: 68 + 1: 61440 + 21,4: + 1: 65535 + 21,5: + 1: 65535 + 21,6: + 1: 52431 + 4: 13104 + 21,7: + 4: 51 + 1: 2252 + 0: 32768 + 21,3: + 1: 65535 + 22,4: + 1: 65535 + 22,5: + 1: 65535 + 22,6: + 1: 65535 + 22,7: + 1: 1023 + 0: 61440 + 22,3: + 1: 65535 + 22,8: + 0: 2 + 1: 65520 + 23,4: + 1: 63479 + 5: 8 + 6: 2048 + 23,5: + 1: 63479 + 4: 2056 + 23,6: + 1: 63479 + 4: 2056 + 23,7: + 1: 55 + 0: 63488 + 4: 8 + 23,3: + 1: 63479 + 4: 8 + 7: 2048 + 23,8: + 0: 9 + 1: 65520 + 24,4: + 5: 1 + 1: 4112 + 6: 256 + 24,5: + 4: 257 + 1: 4112 + 24,6: + 4: 257 + 1: 4112 + 24,7: + 4: 1 + 20,1: + 1: 61166 + 20,2: + 1: 14 + 0: 61152 + 21,0: + 1: 7936 + 0: 24576 + 8: 32768 + 21,1: + 1: 65297 + 0: 98 + 8: 136 + 21,2: + 1: 65535 + 22,0: + 1: 18176 + 8: 12288 + 22,1: + 8: 51 + 1: 65484 + 22,2: + 1: 65535 + 23,1: + 1: 13111 + 4: 52224 + 0: 8 + 23,2: + 1: 4915 + 3: 8192 + 4: 3276 + 24,1: + 4: 30464 + 24,2: + 4: 1911 + 24,3: + 4: 1 + 1: 4112 + 7: 256 + 20,9: + 1: 63351 + 19,8: + 1: 61440 + 19,9: + 1: 65535 + 20,10: + 1: 63351 + 19,10: + 1: 65535 + 20,11: + 1: 252 + 19,11: + 1: 244 + 21,8: + 1: 4096 + 21,9: + 1: 4369 + 21,10: + 1: 4369 + 21,11: + 1: 17 + 22,9: + 1: 65535 + 22,10: + 1: 255 + 23,9: + 1: 65535 + 23,10: + 1: 255 + 24,8: + 1: 4368 + 24,9: + 1: 4369 + 24,10: + 1: 17 + 16,9: + 1: 52428 + 16,11: + 1: 35020 + 17,9: + 1: 65535 + 17,10: + 1: 65535 + 17,11: + 1: 65535 + 17,12: + 1: 14 + 18,8: + 1: 61440 + 18,9: + 1: 65535 + 18,10: + 1: 65535 + 18,11: + 1: 13303 + 8,17: + 1: 8 + 9,17: + 1: 15 + 10,17: + 1: 15 + 11,17: + 1: 15 + 12,16: + 1: 65535 + 12,17: + 1: 15 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 5000 + moles: + - 6666.982 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: BecomesStation + id: Dev + - uid: 23 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2709 + components: + - type: MetaData + name: grid + - type: Transform + rot: 3.141592653589793 rad + pos: -16.002125,-12.0247755 + parent: 23 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -94,311 +1761,37 @@ entities: chunkCollection: version: 2 nodes: [] - - type: OccluderTree - - type: Shuttle - - type: RadiationGridResistance - - type: GravityShake - shakeTimes: 10 - type: GridAtmosphere version: 2 data: tiles: - -4,0: - 0: 65532 - -4,-1: - 0: 65535 - -4,1: - 0: 15 - 1: 65280 - -5,1: - 1: 52292 - -4,2: - 1: 8959 - -5,2: - 1: 204 - -4,3: - 1: 8738 - -4,4: - 1: 230 - -3,0: - 0: 65524 - -3,1: - 0: 3823 - -3,2: - 1: 35071 - -3,-1: - 0: 56797 - -2,0: - 0: 65534 - -2,1: - 0: 61167 - -3,3: - 1: 8 - -2,3: - 1: 15 - -2,2: - 0: 3822 - -2,-1: - 0: 61166 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 53247 - -1,3: - 1: 1 - -1,-1: - 0: 65535 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - -4,-2: - 0: 65535 - -3,-2: - 0: 56829 - -2,-2: - 0: 3838 - -2,-4: - 0: 60928 - -2,-3: - 0: 61166 - -1,-4: - 0: 65350 - -1,-3: - 0: 65535 - -1,-2: - 0: 4095 - -1,-5: - 0: 16384 - 0,-4: - 0: 65299 - 0,-3: - 0: 65535 - 0,-2: - 0: 53247 + 0: 4383 + 1: 2048 0,-1: - 0: 65535 - 0,4: - 1: 17 - 0: 3276 - 0,3: - 1: 4368 - 0: 52428 - -1,4: - 1: 240 - 0,5: - 0: 52428 - 0,6: + 0: 65329 + 1: 8 + -1,0: 0: 14 - 1,4: - 0: 17759 - 1,3: - 0: 65535 - 1,5: - 0: 58990 - 1,6: - 0: 26350 - 1,7: - 0: 4 - 2,4: - 0: 65419 - 2,5: - 0: 45311 - 2,6: - 0: 187 - 2,3: - 0: 16383 - 3,4: - 0: 46011 - 3,5: - 0: 47295 - 3,6: - 0: 35007 - 3,3: - 0: 8191 - 4,4: - 0: 12595 - 4,5: - 0: 13107 - 4,6: - 0: 13107 - 1,0: - 0: 65535 - 1,2: - 0: 65520 - 1,-1: - 0: 65535 - 1,1: - 0: 61166 - 2,2: - 0: 7632 - 2,0: - 1: 8738 - 2,1: + 1: 512 + 0,1: 1: 2 - 3,2: - 0: 36828 - 3,0: - 0: 36590 - 3,1: - 0: 52428 - 3,-1: - 0: 35771 - 4,0: - 0: 8191 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 8191 - 0,-5: + -1,1: + 1: 8 + 1,-1: 0: 4096 - 1,-4: - 0: 48008 - 1,-3: - 0: 65467 - 1,-2: - 0: 3003 - 1,-5: - 0: 34952 - 2,-4: - 0: 45875 - 1: 1092 - 2: 2056 - 2,-3: - 0: 65535 - 2,-2: - 0: 61439 - 2,-5: - 0: 65535 - 2,-1: - 0: 3822 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 48063 - 3,-5: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65311 - 4,-1: - 0: 8191 - 4,-5: - 0: 65535 - 5,-4: - 0: 62451 - 2: 3084 - 5,-3: - 0: 62451 - 3: 12 - 4: 3072 - 5,-2: - 0: 65283 - 5: 12 - 5,-1: - 0: 36863 - 5,-5: - 0: 62451 - 2: 3084 - 5,0: - 0: 40959 - 6,-4: - 2: 257 - 0: 4112 - 1: 17476 - 6,-3: - 3: 1 - 0: 4112 - 4: 256 - 1: 17476 - 6,-2: - 5: 1 - 0: 47872 - 1: 4 - 6,-1: - 0: 7103 - 6,-5: - 0: 4112 - 1: 17476 - 2: 257 - 6,0: - 0: 65535 - 7,-2: - 0: 65280 - 7,-1: - 0: 8191 - 7,0: - 0: 13107 - 8,-2: - 0: 13056 - 8,-1: - 0: 819 - -5,0: - 1: 17476 - -5,-1: - 1: 17476 - -5,-2: - 1: 16384 - 5,1: - 0: 48051 - 5,2: - 0: 7103 - 5,3: - 0: 4095 - 6,1: - 0: 65525 - 6,2: - 0: 4095 - 6,3: - 0: 626 - -3,4: - 1: 240 - -2,4: - 1: 240 - 1,-7: - 1: 192 - 0: 32768 - 1,-6: - 0: 34952 - 2,-7: - 1: 240 - 0: 61440 - 2,-6: - 0: 65535 - 3,-7: - 1: 240 - 0: 61440 - 3,-6: - 0: 65535 - 4,-7: - 1: 240 - 0: 62976 - 4,-6: - 0: 65535 - 5,-7: - 1: 240 - 0: 61440 - 5,-6: - 0: 62451 - 2: 3084 - 6,-7: - 1: 17520 + 1: 513 + 1,0: + 1: 32 + 0,-2: 0: 4096 - 6,-6: - 2: 257 - 0: 4112 - 1: 17476 + -1,-1: + 0: 65152 + 1: 3 + -2,0: + 1: 128 + -2,-1: + 1: 2048 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -430,3087 +1823,9836 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - - type: BecomesStation - id: Dev - - type: SpreaderGrid - - type: GridPathfinding - - type: NavMap - - uid: 962 + - type: RadiationGridResistance + - uid: 2869 components: - type: MetaData + name: grid - type: Transform - - type: Map - mapPaused: True - - type: PhysicsMap - - type: GridTree - - type: MovedGrids + pos: -32,-17 + parent: 23 + - type: MapGrid + chunks: + 1,1: + ind: 1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} - type: OccluderTree - - type: LoadedMap + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel - proto: AirAlarm entities: - - uid: 800 + - uid: 1270 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 179 + pos: 57.5,37.5 + parent: 1 - type: DeviceList devices: - - 801 - - uid: 1556 + - 1269 + - 1167 + - uid: 1539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-12.5 - parent: 179 + rot: 1.5707963267948966 rad + pos: 80.5,24.5 + parent: 1 + - type: DeviceList + devices: + - 1538 + - uid: 1680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,5.5 + parent: 1 + - type: DeviceList + devices: + - 1712 - proto: AirCanister entities: - - uid: 1281 + - uid: 1111 components: - type: Transform - pos: 12.5,-5.5 - parent: 179 - - uid: 1284 - components: - - type: Transform - pos: 13.5,-5.5 - parent: 179 + pos: 48.5,42.5 + parent: 1 - proto: Airlock entities: - - uid: 48 + - uid: 457 components: - type: Transform - pos: 7.5,20.5 - parent: 179 - - uid: 119 - components: - - type: Transform - pos: 6.5,17.5 - parent: 179 - - uid: 170 - components: - - type: Transform - pos: 13.5,10.5 - parent: 179 - - uid: 378 - components: - - type: Transform - pos: -9.5,0.5 - parent: 179 - - uid: 1182 - components: - - type: Transform - pos: 6.5,28.5 - parent: 179 -- proto: AirlockAtmospherics + pos: 43.5,12.5 + parent: 1 +- proto: AirlockAssemblyHighSec entities: - - uid: 77 + - uid: 2694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 179 - - uid: 678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-9.5 - parent: 179 - - uid: 904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-6.5 - parent: 179 - - uid: 995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-6.5 - parent: 179 -- proto: AirlockCargo + pos: 40.5,62.5 + parent: 1 +- proto: AirlockAssemblyMedical entities: - - uid: 87 + - uid: 2693 components: - type: Transform - pos: 2.5,-4.5 - parent: 179 -- proto: AirlockEngineering + pos: 40.5,64.5 + parent: 1 +- proto: AirlockChapelGlassLocked entities: - - uid: 257 + - uid: 2641 components: - type: Transform - pos: -7.5,-6.5 - parent: 179 - - uid: 258 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 179 - - uid: 530 - components: - - type: Transform - pos: -10.5,-6.5 - parent: 179 - - uid: 563 - components: - - type: Transform - pos: -13.5,0.5 - parent: 179 - - uid: 867 - components: - - type: Transform - pos: -12.5,0.5 - parent: 179 -- proto: AirlockExternal + pos: 34.5,14.5 + parent: 1 +- proto: AirlockCommandGlass entities: - - uid: 155 + - uid: 765 components: - type: Transform - pos: 26.5,13.5 - parent: 179 - - uid: 203 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 179 - - uid: 318 - components: - - type: Transform - pos: 24.5,13.5 - parent: 179 -- proto: AirlockExternalGlass + pos: 51.5,23.5 + parent: 1 +- proto: AirlockFreezer entities: - - uid: 216 + - uid: 964 components: - type: Transform - pos: -1.5,-14.5 - parent: 179 + pos: 27.5,39.5 + parent: 1 - proto: AirlockGlassShuttle entities: - - uid: 146 + - uid: 233 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 2204 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,9.5 - parent: 179 - - uid: 204 + pos: 0.5,17.5 + parent: 1 + - uid: 2711 components: - type: Transform - pos: -1.5,-16.5 - parent: 179 -- proto: AirlockMedicalGlass + pos: 0.5,-4.5 + parent: 2709 +- proto: AirlockHydroponicsGlass entities: - - uid: 177 + - uid: 1062 components: - type: Transform - pos: 26.5,4.5 - parent: 179 - - uid: 178 - components: - - type: Transform - pos: 20.5,3.5 - parent: 179 - - uid: 206 - components: - - type: Transform - pos: 16.5,3.5 - parent: 179 - - uid: 207 - components: - - type: Transform - pos: 15.5,3.5 - parent: 179 - - uid: 369 - components: - - type: Transform - pos: 26.5,-3.5 - parent: 179 - - uid: 370 - components: - - type: Transform - pos: 28.5,-0.5 - parent: 179 -- proto: AirlockScience + pos: 33.5,42.5 + parent: 1 +- proto: AirlockMedical entities: - - uid: 24 + - uid: 1217 components: - type: Transform - pos: 14.5,24.5 - parent: 179 - - uid: 47 + pos: 58.5,36.5 + parent: 1 +- proto: AirlockMedicalLocked + entities: + - uid: 2695 components: - type: Transform - pos: 16.5,18.5 - parent: 179 - - uid: 102 - components: - - type: Transform - pos: 16.5,15.5 - parent: 179 - - uid: 306 - components: - - type: Transform - pos: 12.5,15.5 - parent: 179 + pos: 42.5,64.5 + parent: 1 - proto: AirlockScienceGlass entities: - - uid: 26 + - uid: 127 components: - type: Transform - pos: 14.5,20.5 - parent: 179 -- proto: AirlockShuttle - entities: - - uid: 116 + pos: 57.5,23.5 + parent: 1 + - uid: 799 components: - type: Transform - pos: 0.5,-16.5 - parent: 179 + pos: 59.5,26.5 + parent: 1 - proto: AirSensor entities: - - uid: 801 + - uid: 1538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 - parent: 179 -- proto: AlwaysPoweredWallLight - entities: - - uid: 59 + pos: 83.5,27.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1539 + - uid: 1712 components: - type: Transform - pos: -14.5,-0.5 - parent: 179 - - uid: 330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 179 - - uid: 398 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 179 - - uid: 451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,9.5 - parent: 179 - - uid: 512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,6.5 - parent: 179 - - uid: 662 - components: - - type: Transform - pos: 11.5,14.5 - parent: 179 - - uid: 664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,12.5 - parent: 179 - - uid: 667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,10.5 - parent: 179 - - uid: 669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,4.5 - parent: 179 - - uid: 852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,0.5 - parent: 179 - - uid: 907 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 179 - - uid: 910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 179 - - uid: 913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 179 - - uid: 914 - components: - - type: Transform - pos: 4.5,3.5 - parent: 179 - - uid: 915 - components: - - type: Transform - pos: 6.5,7.5 - parent: 179 - - uid: 916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 179 - - uid: 917 - components: - - type: Transform - pos: -2.5,10.5 - parent: 179 - - uid: 918 - components: - - type: Transform - pos: 3.5,18.5 - parent: 179 - - uid: 921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,1.5 - parent: 179 - - uid: 922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,16.5 - parent: 179 - - uid: 923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,12.5 - parent: 179 - - uid: 924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 179 - - uid: 926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,17.5 - parent: 179 - - uid: 953 - components: - - type: Transform - pos: -14.5,16.5 - parent: 179 - - uid: 957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,16.5 - parent: 179 - - uid: 1047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 179 + pos: 96.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1680 - proto: AmmoniaCanister entities: - - uid: 250 + - uid: 1423 components: - type: Transform - pos: 9.5,-1.5 - parent: 179 - - uid: 251 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 179 - - uid: 1317 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 179 + pos: 96.5,24.5 + parent: 1 - proto: AnomalyLocator entities: - - uid: 1086 + - uid: 862 components: - type: Transform - pos: 17.237877,19.653782 - parent: 179 + pos: 56.5,28.4999 + parent: 1 - proto: AnomalyScanner entities: - - uid: 1085 + - uid: 807 components: - type: Transform - pos: 17.539398,19.352007 - parent: 179 + pos: 56.5,28.499 + parent: 1 - proto: APCBasic entities: - - uid: 753 - components: - - type: Transform - pos: -2.5,11.5 - parent: 179 - - type: Battery - startingCharge: 500000000 - maxCharge: 500000000 - - type: PowerNetworkBattery - supplyRampRate: 50000 - supplyRampTolerance: 100000 - maxSupply: 1000000 - maxChargeRate: 500000 - - uid: 1015 + - uid: 3132 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-14.5 - parent: 179 -- proto: ArrivalsShuttleTimer + pos: 77.5,8.5 + parent: 1 +- proto: APCHyperCapacity entities: - - uid: 1191 + - uid: 456 components: - type: Transform - pos: -7.5,5.5 - parent: 179 -- proto: AtmosDeviceFanTiny - entities: - - uid: 992 + pos: 53.5,14.5 + parent: 1 + - uid: 458 components: - type: Transform - pos: -1.5,-16.5 - parent: 179 - - uid: 993 + pos: 33.5,14.5 + parent: 1 + - uid: 619 components: - type: Transform - pos: 0.5,-16.5 - parent: 179 - - uid: 1184 + rot: -1.5707963267948966 rad + pos: 38.5,16.5 + parent: 1 + - uid: 863 components: - type: Transform - pos: 22.5,-16.5 - parent: 179 - - uid: 1187 + rot: 3.141592653589793 rad + pos: 52.5,23.5 + parent: 1 + - uid: 1068 components: - type: Transform - pos: 22.5,-14.5 - parent: 179 - - uid: 1200 - components: - - type: Transform - pos: 22.5,-10.5 - parent: 179 - - uid: 1201 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 179 - - uid: 1207 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 179 + pos: 33.5,48.5 + parent: 1 - uid: 1220 components: - type: Transform - pos: 22.5,-8.5 - parent: 179 - - uid: 1235 + rot: 3.141592653589793 rad + pos: 51.5,37.5 + parent: 1 + - uid: 1394 components: - type: Transform - pos: 22.5,-20.5 - parent: 179 - - uid: 1238 - components: - - type: Transform - pos: 22.5,-22.5 - parent: 179 - - uid: 1260 + pos: 75.5,18.5 + parent: 1 + - uid: 2295 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-24.5 - parent: 179 - - uid: 1335 + pos: 73.5,34.5 + parent: 1 + - uid: 2601 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-25.5 - parent: 179 - - uid: 1336 + pos: 43.5,48.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,18.5 + parent: 1 + - uid: 575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,17.5 + parent: 1 + - uid: 576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,16.5 + parent: 1 + - uid: 771 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 179 - - uid: 1489 + pos: 59.5,26.5 + parent: 1 + - uid: 965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,39.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,42.5 + parent: 1 + - uid: 1375 + components: + - type: Transform + pos: 72.5,13.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,24.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,24.5 + parent: 1 + - uid: 1498 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-12.5 - parent: 179 - - uid: 1493 + pos: 95.5,12.5 + parent: 1 + - uid: 1499 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-14.5 - parent: 179 + pos: 95.5,14.5 + parent: 1 - uid: 1500 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 179 - - uid: 1507 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 179 - - uid: 1508 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 179 - - uid: 1509 - components: - - type: Transform - pos: 9.5,-19.5 - parent: 179 - - uid: 1510 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 179 - - uid: 1511 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 179 - - uid: 1512 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 179 - - uid: 1513 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 179 - - uid: 1514 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 179 - - uid: 1515 - components: - - type: Transform - pos: 14.5,-20.5 - parent: 179 - - uid: 1516 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 179 - - uid: 1517 - components: - - type: Transform - pos: 14.5,-22.5 - parent: 179 - - uid: 1518 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 179 - - uid: 1519 - components: - - type: Transform - pos: 14.5,-24.5 - parent: 179 -- proto: AtmosFixBlockerMarker - entities: - - uid: 1582 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 179 - - uid: 1583 - components: - - type: Transform - pos: 23.5,-15.5 - parent: 179 - - uid: 1584 - components: - - type: Transform - pos: 23.5,-17.5 - parent: 179 - - uid: 1585 - components: - - type: Transform - pos: 23.5,-19.5 - parent: 179 - - uid: 1586 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 179 - - uid: 1587 - components: - - type: Transform - pos: 23.5,-23.5 - parent: 179 - - uid: 1588 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 179 - - uid: 1589 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 179 - - uid: 1590 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 179 - - uid: 1591 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 179 - - uid: 1592 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 179 - - uid: 1593 - components: - - type: Transform - pos: 22.5,-17.5 - parent: 179 - - uid: 1594 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 179 - - uid: 1595 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 179 - - uid: 1596 - components: - - type: Transform - pos: 22.5,-19.5 - parent: 179 - - uid: 1597 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 179 - - uid: 1598 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 179 - - uid: 1599 - components: - - type: Transform - pos: 24.5,-23.5 - parent: 179 - - uid: 1600 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 179 - - uid: 1607 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 179 - - uid: 1608 - components: - - type: Transform - pos: 10.5,-13.5 - parent: 179 - - uid: 1609 - components: - - type: Transform - pos: 11.5,-13.5 - parent: 179 - - uid: 1610 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 179 -- proto: AtmosFixInstantPlasmaFireMarker - entities: - - uid: 1611 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 179 - - uid: 1612 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 179 - - uid: 1613 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 179 - - uid: 1614 - components: - - type: Transform - pos: 14.5,-14.5 - parent: 179 - - uid: 1615 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 179 - - uid: 1616 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 179 - - uid: 1617 - components: - - type: Transform - pos: 12.5,-13.5 - parent: 179 - - uid: 1618 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 179 - - uid: 1619 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 179 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 1579 - components: - - type: Transform - pos: 23.5,-9.5 - parent: 179 - - uid: 1603 - components: - - type: Transform - pos: 22.5,-9.5 - parent: 179 - - uid: 1604 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 179 -- proto: AtmosFixOxygenMarker - entities: - - uid: 1580 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 179 - - uid: 1605 - components: - - type: Transform - pos: 22.5,-7.5 - parent: 179 - - uid: 1606 - components: - - type: Transform - pos: 24.5,-7.5 - parent: 179 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 1581 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 179 - - uid: 1601 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 179 - - uid: 1602 - components: - - type: Transform - pos: 24.5,-11.5 - parent: 179 -- proto: Autolathe - entities: - - uid: 1 - components: - - type: Transform - pos: 12.5,21.5 - parent: 179 - - uid: 94 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 179 - - uid: 446 - components: - - type: Transform - pos: -6.5,5.5 - parent: 179 - - uid: 528 - components: - - type: Transform - pos: -12.5,-7.5 - parent: 179 - - uid: 531 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 179 - - uid: 532 - components: - - type: Transform - pos: -14.5,-7.5 - parent: 179 -- proto: BaseUplinkRadioDebug - entities: - - uid: 732 - components: - - type: Transform - pos: 0.6038008,7.5209107 - parent: 179 -- proto: Basketball - entities: - - uid: 951 - components: - - type: Transform - pos: -9.702013,9.68404 - parent: 179 - - uid: 952 - components: - - type: Transform - pos: -10.879096,9.579802 - parent: 179 -- proto: Beaker - entities: - - uid: 174 - components: - - type: Transform - pos: 25.291822,10.667244 - parent: 179 - - uid: 175 - components: - - type: Transform - pos: 24.541822,10.635994 - parent: 179 - - uid: 176 - components: - - type: Transform - pos: 26.416822,10.651619 - parent: 179 - - uid: 324 - components: - - type: Transform - pos: 4.718221,9.39097 - parent: 179 - - uid: 735 - components: - - type: Transform - pos: 4.739054,9.807927 - parent: 179 - - uid: 920 - components: - - type: Transform - pos: -4.293744,10.966518 - parent: 179 - - uid: 950 - components: - - type: Transform - pos: -4.293744,10.966518 - parent: 179 -- proto: BikeHorn - entities: - - uid: 672 - components: - - type: Transform - pos: 1.1246341,7.500063 - parent: 179 -- proto: BlastDoor - entities: - - uid: 202 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 179 - - uid: 697 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 179 - - uid: 698 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 179 - - uid: 984 - components: - - type: Transform - pos: -2.5,-16.5 - parent: 179 - - uid: 1230 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 179 - - uid: 1232 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 179 - - type: DeviceLinkSink - invokeCounter: 2 - - uid: 1233 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 179 - - type: DeviceLinkSink - invokeCounter: 2 - - uid: 1234 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 179 - - type: DeviceLinkSink - invokeCounter: 2 - - uid: 1385 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 179 -- proto: BoozeDispenser - entities: - - uid: 752 - components: - - type: Transform - pos: 7.5,12.5 - parent: 179 -- proto: BoxBeaker - entities: - - uid: 280 - components: - - type: Transform - pos: 5.163024,9.63072 - parent: 179 -- proto: Brutepack - entities: - - uid: 150 - components: - - type: Transform - pos: 18.601385,5.512907 - parent: 179 - - uid: 151 - components: - - type: Transform - pos: 18.476385,4.841032 - parent: 179 -- proto: Bucket - entities: - - uid: 691 - components: - - type: Transform - pos: 7.1447573,15.900927 - parent: 179 -- proto: ButtonFrameCautionSecurity - entities: - - uid: 1488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-12.5 - parent: 179 -- proto: CableApcExtension - entities: - - uid: 15 - components: - - type: Transform - pos: 5.5,15.5 - parent: 179 - - uid: 23 - components: - - type: Transform - pos: 3.5,15.5 - parent: 179 - - uid: 58 - components: - - type: Transform - pos: 8.5,15.5 - parent: 179 - - uid: 90 - components: - - type: Transform - pos: 4.5,15.5 - parent: 179 - - uid: 281 - components: - - type: Transform - pos: -13.5,4.5 - parent: 179 - - uid: 389 - components: - - type: Transform - pos: 7.5,15.5 - parent: 179 - - uid: 453 - components: - - type: Transform - pos: 6.5,15.5 - parent: 179 - - uid: 736 - components: - - type: Transform - pos: -2.5,9.5 - parent: 179 - - uid: 760 - components: - - type: Transform - pos: -2.5,10.5 - parent: 179 - - uid: 761 - components: - - type: Transform - pos: -15.5,5.5 - parent: 179 - - uid: 763 - components: - - type: Transform - pos: -2.5,11.5 - parent: 179 - - uid: 764 - components: - - type: Transform - pos: -1.5,11.5 - parent: 179 - - uid: 765 - components: - - type: Transform - pos: -7.5,0.5 - parent: 179 - - uid: 766 - components: - - type: Transform - pos: -0.5,11.5 - parent: 179 - - uid: 767 - components: - - type: Transform - pos: -3.5,10.5 - parent: 179 - - uid: 768 - components: - - type: Transform - pos: -4.5,10.5 - parent: 179 - - uid: 769 - components: - - type: Transform - pos: -5.5,10.5 - parent: 179 - - uid: 770 - components: - - type: Transform - pos: -6.5,10.5 - parent: 179 - - uid: 771 - components: - - type: Transform - pos: -2.5,8.5 - parent: 179 - - uid: 772 - components: - - type: Transform - pos: -2.5,7.5 - parent: 179 - - uid: 773 - components: - - type: Transform - pos: -2.5,6.5 - parent: 179 - - uid: 774 - components: - - type: Transform - pos: -2.5,5.5 - parent: 179 - - uid: 775 - components: - - type: Transform - pos: -3.5,5.5 - parent: 179 - - uid: 776 - components: - - type: Transform - pos: -4.5,5.5 - parent: 179 - - uid: 777 - components: - - type: Transform - pos: -5.5,5.5 - parent: 179 - - uid: 778 - components: - - type: Transform - pos: -6.5,5.5 - parent: 179 - - uid: 779 - components: - - type: Transform - pos: -6.5,4.5 - parent: 179 - - uid: 780 - components: - - type: Transform - pos: -7.5,4.5 - parent: 179 - - uid: 781 - components: - - type: Transform - pos: -8.5,4.5 - parent: 179 - - uid: 782 - components: - - type: Transform - pos: -9.5,4.5 - parent: 179 - - uid: 783 - components: - - type: Transform - pos: -10.5,4.5 - parent: 179 - - uid: 784 - components: - - type: Transform - pos: -11.5,4.5 - parent: 179 - - uid: 785 - components: - - type: Transform - pos: -12.5,4.5 - parent: 179 - - uid: 786 - components: - - type: Transform - pos: -12.5,3.5 - parent: 179 - - uid: 787 - components: - - type: Transform - pos: -12.5,2.5 - parent: 179 - - uid: 788 - components: - - type: Transform - pos: -12.5,1.5 - parent: 179 - - uid: 789 - components: - - type: Transform - pos: -12.5,0.5 - parent: 179 - - uid: 790 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 179 - - uid: 791 - components: - - type: Transform - pos: -2.5,4.5 - parent: 179 - - uid: 792 - components: - - type: Transform - pos: -2.5,2.5 - parent: 179 - - uid: 793 - components: - - type: Transform - pos: -2.5,1.5 - parent: 179 - - uid: 794 - components: - - type: Transform - pos: -2.5,0.5 - parent: 179 - - uid: 795 - components: - - type: Transform - pos: -2.5,3.5 - parent: 179 - - uid: 796 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 179 - - uid: 797 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 179 - - uid: 798 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 179 - - uid: 799 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 179 - - uid: 802 - components: - - type: Transform - pos: -8.5,0.5 - parent: 179 - - uid: 803 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 179 - - uid: 804 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 179 - - uid: 805 - components: - - type: Transform - pos: -9.5,0.5 - parent: 179 - - uid: 806 - components: - - type: Transform - pos: -10.5,0.5 - parent: 179 - - uid: 807 - components: - - type: Transform - pos: -14.5,0.5 - parent: 179 - - uid: 808 - components: - - type: Transform - pos: -11.5,0.5 - parent: 179 - - uid: 809 - components: - - type: Transform - pos: -15.5,0.5 - parent: 179 - - uid: 810 - components: - - type: Transform - pos: -15.5,0.5 - parent: 179 - - uid: 811 - components: - - type: Transform - pos: -16.5,0.5 - parent: 179 - - uid: 812 - components: - - type: Transform - pos: -16.5,5.5 - parent: 179 - - uid: 813 - components: - - type: Transform - pos: -16.5,4.5 - parent: 179 - - uid: 814 - components: - - type: Transform - pos: -16.5,3.5 - parent: 179 - - uid: 815 - components: - - type: Transform - pos: -16.5,2.5 - parent: 179 - - uid: 816 - components: - - type: Transform - pos: -16.5,1.5 - parent: 179 - - uid: 817 - components: - - type: Transform - pos: 7.5,5.5 - parent: 179 - - uid: 818 - components: - - type: Transform - pos: 7.5,7.5 - parent: 179 - - uid: 819 - components: - - type: Transform - pos: 7.5,8.5 - parent: 179 - - uid: 820 - components: - - type: Transform - pos: 7.5,9.5 - parent: 179 - - uid: 821 - components: - - type: Transform - pos: 8.5,9.5 - parent: 179 - - uid: 822 - components: - - type: Transform - pos: 6.5,9.5 - parent: 179 - - uid: 823 - components: - - type: Transform - pos: 5.5,9.5 - parent: 179 - - uid: 824 - components: - - type: Transform - pos: 4.5,9.5 - parent: 179 - - uid: 825 - components: - - type: Transform - pos: 8.5,10.5 - parent: 179 - - uid: 826 - components: - - type: Transform - pos: 8.5,11.5 - parent: 179 - - uid: 827 - components: - - type: Transform - pos: 8.5,12.5 - parent: 179 - - uid: 828 - components: - - type: Transform - pos: 7.5,12.5 - parent: 179 - - uid: 829 - components: - - type: Transform - pos: 7.5,11.5 - parent: 179 - - uid: 830 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 179 - - uid: 831 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 179 - - uid: 832 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 179 - - uid: 833 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 179 - - uid: 834 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 179 - - uid: 835 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 179 - - uid: 836 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 179 - - uid: 837 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 179 - - uid: 838 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 179 - - uid: 839 - components: - - type: Transform - pos: 1.5,11.5 - parent: 179 - - uid: 840 - components: - - type: Transform - pos: 2.5,11.5 - parent: 179 - - uid: 841 - components: - - type: Transform - pos: 0.5,11.5 - parent: 179 - - uid: 842 - components: - - type: Transform - pos: 2.5,12.5 - parent: 179 - - uid: 843 - components: - - type: Transform - pos: 2.5,13.5 - parent: 179 - - uid: 844 - components: - - type: Transform - pos: 2.5,14.5 - parent: 179 - - uid: 845 - components: - - type: Transform - pos: 2.5,15.5 - parent: 179 - - uid: 853 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 179 - - uid: 854 - components: - - type: Transform - pos: -4.5,-3.5 - parent: 179 - - uid: 855 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 179 - - uid: 856 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 179 - - uid: 857 - components: - - type: Transform - pos: -6.5,-2.5 - parent: 179 - - uid: 858 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 179 - - uid: 859 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 179 - - uid: 860 - components: - - type: Transform - pos: -6.5,0.5 - parent: 179 - - uid: 861 - components: - - type: Transform - pos: -6.5,1.5 - parent: 179 - - uid: 862 - components: - - type: Transform - pos: -6.5,2.5 - parent: 179 - - uid: 872 - components: - - type: Transform - pos: 7.5,6.5 - parent: 179 - - uid: 873 - components: - - type: Transform - pos: 8.5,21.5 - parent: 179 - - uid: 877 - components: - - type: Transform - pos: -6.5,3.5 - parent: 179 - - uid: 878 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 179 - - uid: 879 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 179 - - uid: 880 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 179 - - uid: 881 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 179 - - uid: 882 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 179 - - uid: 883 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 179 - - uid: 884 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 179 - - uid: 885 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 179 - - uid: 886 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 179 - - uid: 887 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 179 - - uid: 888 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 179 - - uid: 889 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 179 - - uid: 890 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 179 - - uid: 891 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 179 - - uid: 892 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 179 - - uid: 893 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 179 - - uid: 894 - components: - - type: Transform - pos: 8.5,0.5 - parent: 179 - - uid: 895 - components: - - type: Transform - pos: 8.5,1.5 - parent: 179 - - uid: 896 - components: - - type: Transform - pos: 8.5,2.5 - parent: 179 - - uid: 897 - components: - - type: Transform - pos: 8.5,3.5 - parent: 179 - - uid: 898 - components: - - type: Transform - pos: 8.5,4.5 - parent: 179 - - uid: 899 - components: - - type: Transform - pos: 8.5,5.5 - parent: 179 - - uid: 900 - components: - - type: Transform - pos: -14.5,5.5 - parent: 179 - - uid: 905 - components: - - type: Transform - pos: -12.5,5.5 - parent: 179 - - uid: 906 - components: - - type: Transform - pos: -14.5,4.5 - parent: 179 - - uid: 908 - components: - - type: Transform - pos: -15.5,4.5 - parent: 179 - - uid: 909 - components: - - type: Transform - pos: 8.5,20.5 - parent: 179 - - uid: 970 - components: - - type: Transform - pos: 9.5,12.5 - parent: 179 - - uid: 971 - components: - - type: Transform - pos: 10.5,12.5 - parent: 179 - - uid: 972 - components: - - type: Transform - pos: 11.5,12.5 - parent: 179 - - uid: 973 - components: - - type: Transform - pos: 12.5,12.5 - parent: 179 - - uid: 974 - components: - - type: Transform - pos: 13.5,12.5 - parent: 179 - - uid: 1026 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 179 - - uid: 1027 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 179 - - uid: 1028 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 179 - - uid: 1029 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 179 - - uid: 1030 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 179 - - uid: 1031 - components: - - type: Transform - pos: -2.5,-12.5 - parent: 179 - - uid: 1032 - components: - - type: Transform - pos: -1.5,-12.5 - parent: 179 - - uid: 1033 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 179 - - uid: 1034 - components: - - type: Transform - pos: 0.5,-12.5 - parent: 179 - - uid: 1035 - components: - - type: Transform - pos: 1.5,-12.5 - parent: 179 - - uid: 1036 - components: - - type: Transform - pos: 2.5,-12.5 - parent: 179 - - uid: 1037 - components: - - type: Transform - pos: 3.5,-12.5 - parent: 179 - - uid: 1038 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 179 - - uid: 1039 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 179 - - uid: 1040 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 179 - - uid: 1041 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 179 - - uid: 1042 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 179 - - uid: 1043 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 179 - - uid: 1044 - components: - - type: Transform - pos: 4.5,-12.5 - parent: 179 - - uid: 1045 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 179 - - uid: 1051 - components: - - type: Transform - pos: 9.5,15.5 - parent: 179 - - uid: 1052 - components: - - type: Transform - pos: 9.5,16.5 - parent: 179 - - uid: 1053 - components: - - type: Transform - pos: 9.5,17.5 - parent: 179 - - uid: 1054 - components: - - type: Transform - pos: 9.5,18.5 - parent: 179 - - uid: 1055 - components: - - type: Transform - pos: 9.5,19.5 - parent: 179 - - uid: 1056 - components: - - type: Transform - pos: 9.5,20.5 - parent: 179 - - uid: 1057 - components: - - type: Transform - pos: 10.5,20.5 - parent: 179 - - uid: 1058 - components: - - type: Transform - pos: 11.5,20.5 - parent: 179 - - uid: 1059 - components: - - type: Transform - pos: 12.5,20.5 - parent: 179 - - uid: 1060 - components: - - type: Transform - pos: 13.5,20.5 - parent: 179 - - uid: 1061 - components: - - type: Transform - pos: 14.5,20.5 - parent: 179 - - uid: 1062 - components: - - type: Transform - pos: 15.5,20.5 - parent: 179 - - uid: 1063 - components: - - type: Transform - pos: 16.5,20.5 - parent: 179 - - uid: 1064 - components: - - type: Transform - pos: 16.5,21.5 - parent: 179 - - uid: 1065 - components: - - type: Transform - pos: 16.5,22.5 - parent: 179 - - uid: 1066 - components: - - type: Transform - pos: 16.5,23.5 - parent: 179 - - uid: 1067 - components: - - type: Transform - pos: 16.5,24.5 - parent: 179 - - uid: 1068 - components: - - type: Transform - pos: 16.5,25.5 - parent: 179 - - uid: 1069 - components: - - type: Transform - pos: 16.5,26.5 - parent: 179 - - uid: 1070 - components: - - type: Transform - pos: 16.5,27.5 - parent: 179 - - uid: 1079 - components: - - type: Transform - pos: 15.5,24.5 - parent: 179 - - uid: 1080 - components: - - type: Transform - pos: 14.5,24.5 - parent: 179 - - uid: 1081 - components: - - type: Transform - pos: 13.5,24.5 - parent: 179 - - uid: 1082 - components: - - type: Transform - pos: 12.5,24.5 - parent: 179 - - uid: 1097 - components: - - type: Transform - pos: 8.5,14.5 - parent: 179 - - uid: 1098 - components: - - type: Transform - pos: 8.5,13.5 - parent: 179 - - uid: 1099 - components: - - type: Transform - pos: 9.5,13.5 - parent: 179 - - uid: 1100 - components: - - type: Transform - pos: 10.5,13.5 - parent: 179 - - uid: 1101 - components: - - type: Transform - pos: 11.5,13.5 - parent: 179 - - uid: 1102 - components: - - type: Transform - pos: 12.5,13.5 - parent: 179 - - uid: 1103 - components: - - type: Transform - pos: 13.5,13.5 - parent: 179 - - uid: 1104 - components: - - type: Transform - pos: 14.5,13.5 - parent: 179 - - uid: 1105 - components: - - type: Transform - pos: 15.5,13.5 - parent: 179 - - uid: 1106 - components: - - type: Transform - pos: 16.5,13.5 - parent: 179 - - uid: 1107 - components: - - type: Transform - pos: 17.5,13.5 - parent: 179 - - uid: 1108 - components: - - type: Transform - pos: 18.5,13.5 - parent: 179 - - uid: 1109 - components: - - type: Transform - pos: 19.5,13.5 - parent: 179 - - uid: 1110 - components: - - type: Transform - pos: 20.5,13.5 - parent: 179 - - uid: 1111 - components: - - type: Transform - pos: 21.5,13.5 - parent: 179 - - uid: 1112 - components: - - type: Transform - pos: 22.5,13.5 - parent: 179 - - uid: 1113 - components: - - type: Transform - pos: 23.5,13.5 - parent: 179 - - uid: 1114 - components: - - type: Transform - pos: 24.5,13.5 - parent: 179 - - uid: 1115 - components: - - type: Transform - pos: 25.5,13.5 - parent: 179 - - uid: 1116 - components: - - type: Transform - pos: 16.5,12.5 - parent: 179 - - uid: 1117 - components: - - type: Transform - pos: 16.5,11.5 - parent: 179 - - uid: 1118 - components: - - type: Transform - pos: 16.5,10.5 - parent: 179 - - uid: 1119 - components: - - type: Transform - pos: 16.5,9.5 - parent: 179 - - uid: 1120 - components: - - type: Transform - pos: 16.5,8.5 - parent: 179 - - uid: 1121 - components: - - type: Transform - pos: 16.5,7.5 - parent: 179 - - uid: 1122 - components: - - type: Transform - pos: 16.5,6.5 - parent: 179 - - uid: 1123 - components: - - type: Transform - pos: 16.5,5.5 - parent: 179 - - uid: 1124 - components: - - type: Transform - pos: 16.5,4.5 - parent: 179 - - uid: 1125 - components: - - type: Transform - pos: 16.5,3.5 - parent: 179 - - uid: 1126 - components: - - type: Transform - pos: 16.5,2.5 - parent: 179 - - uid: 1127 - components: - - type: Transform - pos: 16.5,1.5 - parent: 179 - - uid: 1128 - components: - - type: Transform - pos: 16.5,0.5 - parent: 179 - - uid: 1129 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 179 - - uid: 1130 - components: - - type: Transform - pos: 16.5,-1.5 - parent: 179 - - uid: 1131 - components: - - type: Transform - pos: 16.5,-2.5 - parent: 179 - - uid: 1132 - components: - - type: Transform - pos: 16.5,-3.5 - parent: 179 - - uid: 1133 - components: - - type: Transform - pos: 17.5,-3.5 - parent: 179 - - uid: 1134 - components: - - type: Transform - pos: 18.5,-3.5 - parent: 179 - - uid: 1135 - components: - - type: Transform - pos: 19.5,-3.5 - parent: 179 - - uid: 1136 - components: - - type: Transform - pos: 20.5,-3.5 - parent: 179 - - uid: 1137 - components: - - type: Transform - pos: 21.5,-3.5 - parent: 179 - - uid: 1138 - components: - - type: Transform - pos: 22.5,-3.5 - parent: 179 - - uid: 1139 - components: - - type: Transform - pos: 23.5,-3.5 - parent: 179 - - uid: 1140 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 179 - - uid: 1141 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 179 - - uid: 1142 - components: - - type: Transform - pos: 26.5,-3.5 - parent: 179 - - uid: 1143 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 179 - - uid: 1144 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 179 - - uid: 1145 - components: - - type: Transform - pos: 17.5,2.5 - parent: 179 - - uid: 1146 - components: - - type: Transform - pos: 18.5,2.5 - parent: 179 - - uid: 1147 - components: - - type: Transform - pos: 19.5,2.5 - parent: 179 - - uid: 1148 - components: - - type: Transform - pos: 20.5,2.5 - parent: 179 - - uid: 1149 - components: - - type: Transform - pos: 21.5,2.5 - parent: 179 - - uid: 1150 - components: - - type: Transform - pos: 22.5,2.5 - parent: 179 - - uid: 1151 - components: - - type: Transform - pos: 23.5,2.5 - parent: 179 - - uid: 1152 - components: - - type: Transform - pos: 24.5,2.5 - parent: 179 - - uid: 1153 - components: - - type: Transform - pos: 25.5,2.5 - parent: 179 - - uid: 1154 - components: - - type: Transform - pos: 26.5,2.5 - parent: 179 - - uid: 1155 - components: - - type: Transform - pos: 27.5,2.5 - parent: 179 - - uid: 1156 - components: - - type: Transform - pos: 28.5,2.5 - parent: 179 - - uid: 1157 - components: - - type: Transform - pos: 26.5,3.5 - parent: 179 - - uid: 1158 - components: - - type: Transform - pos: 26.5,4.5 - parent: 179 - - uid: 1159 - components: - - type: Transform - pos: 26.5,5.5 - parent: 179 - - uid: 1160 - components: - - type: Transform - pos: 26.5,6.5 - parent: 179 - - uid: 1161 - components: - - type: Transform - pos: 26.5,7.5 - parent: 179 - - uid: 1162 - components: - - type: Transform - pos: 26.5,8.5 - parent: 179 - - uid: 1163 - components: - - type: Transform - pos: 26.5,9.5 - parent: 179 - - uid: 1164 - components: - - type: Transform - pos: 25.5,9.5 - parent: 179 - - uid: 1165 - components: - - type: Transform - pos: 24.5,9.5 - parent: 179 - - uid: 1166 - components: - - type: Transform - pos: 16.5,19.5 - parent: 179 - - uid: 1167 - components: - - type: Transform - pos: 16.5,18.5 - parent: 179 - - uid: 1168 - components: - - type: Transform - pos: 16.5,17.5 - parent: 179 - - uid: 1169 - components: - - type: Transform - pos: 16.5,16.5 - parent: 179 - - uid: 1170 - components: - - type: Transform - pos: 16.5,15.5 - parent: 179 - - uid: 1171 - components: - - type: Transform - pos: 16.5,14.5 - parent: 179 - - uid: 1177 - components: - - type: Transform - pos: 8.5,22.5 - parent: 179 - - uid: 1178 - components: - - type: Transform - pos: 8.5,23.5 - parent: 179 - - uid: 1179 - components: - - type: Transform - pos: 8.5,24.5 - parent: 179 - - uid: 1180 - components: - - type: Transform - pos: 8.5,25.5 - parent: 179 - - uid: 1277 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 179 - - uid: 1282 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 179 - - uid: 1289 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 179 - - uid: 1292 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 179 - - uid: 1348 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 179 - - uid: 1349 - components: - - type: Transform - pos: 7.5,-9.5 - parent: 179 - - uid: 1350 - components: - - type: Transform - pos: 9.5,-9.5 - parent: 179 - - uid: 1351 - components: - - type: Transform - pos: 10.5,-9.5 - parent: 179 - - uid: 1352 - components: - - type: Transform - pos: 11.5,-9.5 - parent: 179 - - uid: 1353 - components: - - type: Transform - pos: 12.5,-9.5 - parent: 179 - - uid: 1354 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 179 - - uid: 1355 - components: - - type: Transform - pos: 14.5,-9.5 - parent: 179 - - uid: 1356 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 179 - - uid: 1357 - components: - - type: Transform - pos: 16.5,-9.5 - parent: 179 - - uid: 1358 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 179 - - uid: 1359 - components: - - type: Transform - pos: 18.5,-9.5 - parent: 179 - - uid: 1360 - components: - - type: Transform - pos: 19.5,-9.5 - parent: 179 - - uid: 1361 - components: - - type: Transform - pos: 20.5,-9.5 - parent: 179 - - uid: 1362 - components: - - type: Transform - pos: 21.5,-9.5 - parent: 179 - - uid: 1363 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 179 - - uid: 1364 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 179 - - uid: 1365 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 179 - - uid: 1366 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 179 - - uid: 1367 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 179 - - uid: 1368 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 179 - - uid: 1369 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 179 - - uid: 1370 - components: - - type: Transform - pos: 9.5,-16.5 - parent: 179 - - uid: 1371 - components: - - type: Transform - pos: 9.5,-22.5 - parent: 179 - - uid: 1372 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 179 - - uid: 1373 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 179 - - uid: 1374 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 179 - - uid: 1375 - components: - - type: Transform - pos: 9.5,-19.5 - parent: 179 - - uid: 1376 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 179 - - uid: 1377 - components: - - type: Transform - pos: 9.5,-17.5 - parent: 179 - - uid: 1378 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 179 - - uid: 1379 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 179 - - uid: 1380 - components: - - type: Transform - pos: 9.5,-14.5 - parent: 179 - - uid: 1381 - components: - - type: Transform - pos: 9.5,-13.5 - parent: 179 - - uid: 1382 - components: - - type: Transform - pos: 9.5,-12.5 - parent: 179 - - uid: 1383 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 179 - - uid: 1384 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 179 - - uid: 1389 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 179 - - uid: 1390 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 179 - - uid: 1391 - components: - - type: Transform - pos: 19.5,-14.5 - parent: 179 - - uid: 1392 - components: - - type: Transform - pos: 20.5,-14.5 - parent: 179 - - uid: 1393 - components: - - type: Transform - pos: 21.5,-14.5 - parent: 179 - - uid: 1394 - components: - - type: Transform - pos: 22.5,-14.5 - parent: 179 - - uid: 1395 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 179 - - uid: 1396 - components: - - type: Transform - pos: 22.5,-9.5 - parent: 179 - - uid: 1397 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 179 - - uid: 1398 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 179 - - uid: 1399 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 179 - - uid: 1400 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 179 - - uid: 1401 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 179 - - uid: 1402 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 179 - - uid: 1403 - components: - - type: Transform - pos: 17.5,-19.5 - parent: 179 - - uid: 1404 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 179 - - uid: 1405 - components: - - type: Transform - pos: 19.5,-19.5 - parent: 179 - - uid: 1406 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 179 - - uid: 1407 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 179 - - uid: 1408 - components: - - type: Transform - pos: 22.5,-19.5 - parent: 179 - - uid: 1409 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 179 - - uid: 1410 - components: - - type: Transform - pos: 9.5,-23.5 - parent: 179 - - uid: 1411 - components: - - type: Transform - pos: 9.5,-24.5 - parent: 179 - - uid: 1412 - components: - - type: Transform - pos: 10.5,-24.5 - parent: 179 - - uid: 1413 - components: - - type: Transform - pos: 11.5,-24.5 - parent: 179 - - uid: 1414 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 179 - - uid: 1415 - components: - - type: Transform - pos: 13.5,-24.5 - parent: 179 - - uid: 1416 - components: - - type: Transform - pos: 14.5,-24.5 - parent: 179 - - uid: 1417 - components: - - type: Transform - pos: 15.5,-24.5 - parent: 179 - - uid: 1418 - components: - - type: Transform - pos: 16.5,-24.5 - parent: 179 - - uid: 1419 - components: - - type: Transform - pos: 17.5,-24.5 - parent: 179 - - uid: 1420 - components: - - type: Transform - pos: 18.5,-24.5 - parent: 179 - - uid: 1421 - components: - - type: Transform - pos: 19.5,-24.5 - parent: 179 - - uid: 1422 - components: - - type: Transform - pos: 20.5,-24.5 - parent: 179 - - uid: 1423 - components: - - type: Transform - pos: 21.5,-24.5 - parent: 179 - - uid: 1424 - components: - - type: Transform - pos: 22.5,-24.5 - parent: 179 - - uid: 1502 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 179 - - uid: 1503 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 179 - - uid: 1504 - components: - - type: Transform - pos: 14.5,-14.5 - parent: 179 - - uid: 1554 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 179 -- proto: CableApcStack - entities: - - uid: 70 - components: - - type: Transform - pos: 10.577456,21.424059 - parent: 179 - - uid: 183 - components: - - type: Transform - pos: -6.6863613,7.351646 - parent: 179 - - uid: 351 - components: - - type: Transform - pos: 10.561831,21.767809 - parent: 179 - - uid: 537 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 179 - - uid: 538 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 179 -- proto: CableHV - entities: - - uid: 1019 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 179 - - uid: 1020 - components: - - type: Transform - pos: -6.5,-12.5 - parent: 179 - - uid: 1021 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 179 -- proto: CableHVStack - entities: - - uid: 184 - components: - - type: Transform - pos: -6.665528,7.840053 - parent: 179 -- proto: CableMV - entities: - - uid: 1023 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 179 - - uid: 1024 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 179 - - uid: 1025 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 179 -- proto: CableMVStack - entities: - - uid: 325 - components: - - type: Transform - pos: -6.665528,7.5601244 - parent: 179 -- proto: CableTerminal - entities: - - uid: 1022 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 179 -- proto: CapacitorStockPart - entities: - - uid: 296 - components: - - type: Transform - pos: -4.3012447,8.817795 - parent: 179 - - uid: 700 - components: - - type: Transform - pos: -3.8324947,8.786524 - parent: 179 - - uid: 701 - components: - - type: Transform - pos: -3.2804112,8.786524 - parent: 179 - - uid: 704 - components: - - type: Transform - pos: -4.8741612,8.817795 - parent: 179 -- proto: CaptainIDCard - entities: - - uid: 726 - components: - - type: Transform - pos: 1.0820513,8.752605 - parent: 179 -- proto: CaptainSabre - entities: - - uid: 381 - components: - - type: Transform - pos: -3.277628,-2.15838 - parent: 179 -- proto: CarbonDioxideCanister - entities: - - uid: 748 - components: - - type: Transform - pos: 13.5,-4.5 - parent: 179 - - uid: 749 - components: - - type: Transform - pos: 12.5,-4.5 - parent: 179 - - uid: 1316 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 179 -- proto: Catwalk - entities: - - uid: 2 - components: - - type: Transform - pos: 13.5,24.5 - parent: 179 - - uid: 7 - components: - - type: Transform - pos: 6.5,24.5 - parent: 179 - - uid: 20 - components: - - type: Transform - pos: 6.5,20.5 - parent: 179 - - uid: 120 + pos: 95.5,16.5 + parent: 1 + - uid: 1501 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,18.5 - parent: 179 - - uid: 246 + pos: 95.5,18.5 + parent: 1 + - uid: 1502 components: - type: Transform - pos: -6.5,-6.5 - parent: 179 - - uid: 247 + rot: -1.5707963267948966 rad + pos: 95.5,20.5 + parent: 1 + - uid: 1503 components: - type: Transform - pos: -8.5,-6.5 - parent: 179 - - uid: 252 + rot: -1.5707963267948966 rad + pos: 95.5,22.5 + parent: 1 + - uid: 1504 components: - type: Transform - pos: 4.5,-8.5 - parent: 179 - - uid: 269 + rot: -1.5707963267948966 rad + pos: 95.5,24.5 + parent: 1 + - uid: 1505 components: - type: Transform - pos: 12.5,10.5 - parent: 179 - - uid: 286 + rot: -1.5707963267948966 rad + pos: 95.5,26.5 + parent: 1 + - uid: 1506 components: - type: Transform - pos: 2.5,-11.5 - parent: 179 - - uid: 287 + rot: -1.5707963267948966 rad + pos: 95.5,28.5 + parent: 1 + - uid: 1512 components: - type: Transform - pos: -4.5,-11.5 - parent: 179 - - uid: 308 + rot: -1.5707963267948966 rad + pos: 86.5,29.5 + parent: 1 + - uid: 1513 components: - type: Transform - pos: -2.5,-12.5 - parent: 179 - - uid: 309 + rot: -1.5707963267948966 rad + pos: 86.5,28.5 + parent: 1 + - uid: 1514 components: - type: Transform - pos: 1.5,-12.5 - parent: 179 - - uid: 333 + rot: -1.5707963267948966 rad + pos: 86.5,27.5 + parent: 1 + - uid: 1515 components: - type: Transform - pos: 4.5,-13.5 - parent: 179 - - uid: 334 + rot: -1.5707963267948966 rad + pos: 86.5,26.5 + parent: 1 + - uid: 1516 components: - type: Transform - pos: -5.5,-13.5 - parent: 179 - - uid: 438 + rot: -1.5707963267948966 rad + pos: 86.5,25.5 + parent: 1 + - uid: 1517 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-0.5 - parent: 179 - - uid: 442 + pos: 85.5,24.5 + parent: 1 + - uid: 1518 components: - type: Transform - pos: -9.5,8.5 - parent: 179 + rot: 3.141592653589793 rad + pos: 84.5,24.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,24.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + pos: 87.5,6.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + pos: 85.5,6.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,5.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,4.5 + parent: 1 + - uid: 1553 + components: + - type: Transform + pos: 86.5,6.5 + parent: 1 + - uid: 1554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,2.5 + parent: 1 + - uid: 1555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,2.5 + parent: 1 + - uid: 1557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,3.5 + parent: 1 + - uid: 1585 + components: + - type: Transform + pos: 88.5,6.5 + parent: 1 + - uid: 1586 + components: + - type: Transform + pos: 89.5,6.5 + parent: 1 + - uid: 1587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,5.5 + parent: 1 + - uid: 1588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,4.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,3.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,2.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,2.5 + parent: 1 + - uid: 1592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,2.5 + parent: 1 + - uid: 1595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,3.5 + parent: 1 + - uid: 1596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,5.5 + parent: 1 + - uid: 1659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,8.5 + parent: 1 + - uid: 1660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,8.5 + parent: 1 + - uid: 1661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,8.5 + parent: 1 + - uid: 1662 + components: + - type: Transform + pos: 83.5,12.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + pos: 82.5,12.5 + parent: 1 + - uid: 1664 + components: + - type: Transform + pos: 81.5,12.5 + parent: 1 + - uid: 1665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,11.5 + parent: 1 + - uid: 1666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,10.5 + parent: 1 + - uid: 1667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,9.5 + parent: 1 + - uid: 1671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,10.5 + parent: 1 + - uid: 1672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,9.5 + parent: 1 + - uid: 1673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,8.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,7.5 + parent: 1 + - uid: 1679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,6.5 + parent: 1 + - uid: 1684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,4.5 + parent: 1 + - uid: 1713 + components: + - type: Transform + pos: 87.5,31.5 + parent: 1 + - uid: 1714 + components: + - type: Transform + pos: 88.5,31.5 + parent: 1 + - uid: 1715 + components: + - type: Transform + pos: 89.5,31.5 + parent: 1 + - uid: 2712 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2709 +- proto: AtmosDeviceFanTiny + entities: + - uid: 1412 + components: + - type: Transform + pos: 95.5,13.5 + parent: 1 + - uid: 1413 + components: + - type: Transform + pos: 96.5,13.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + pos: 95.5,15.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + pos: 96.5,15.5 + parent: 1 + - uid: 1416 + components: + - type: Transform + pos: 95.5,17.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + pos: 96.5,17.5 + parent: 1 + - uid: 1418 + components: + - type: Transform + pos: 95.5,19.5 + parent: 1 + - uid: 1419 + components: + - type: Transform + pos: 96.5,19.5 + parent: 1 + - uid: 1433 + components: + - type: Transform + pos: 95.5,21.5 + parent: 1 + - uid: 1434 + components: + - type: Transform + pos: 96.5,21.5 + parent: 1 + - uid: 1435 + components: + - type: Transform + pos: 95.5,23.5 + parent: 1 + - uid: 1436 + components: + - type: Transform + pos: 96.5,23.5 + parent: 1 + - uid: 1437 + components: + - type: Transform + pos: 95.5,25.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: 96.5,25.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + pos: 95.5,27.5 + parent: 1 + - uid: 1440 + components: + - type: Transform + pos: 96.5,27.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 1526 + components: + - type: Transform + pos: 96.5,12.5 + parent: 1 + - uid: 1527 + components: + - type: Transform + pos: 95.5,12.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + pos: 96.5,20.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + pos: 95.5,20.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + pos: 96.5,22.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + pos: 95.5,22.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + pos: 96.5,24.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + pos: 95.5,24.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + pos: 96.5,26.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + pos: 95.5,26.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + pos: 96.5,28.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + pos: 95.5,28.5 + parent: 1 + - uid: 1607 + components: + - type: Transform + pos: 86.5,4.5 + parent: 1 + - uid: 1608 + components: + - type: Transform + pos: 85.5,25.5 + parent: 1 + - uid: 1609 + components: + - type: Transform + pos: 85.5,26.5 + parent: 1 + - uid: 1610 + components: + - type: Transform + pos: 85.5,27.5 + parent: 1 + - uid: 1611 + components: + - type: Transform + pos: 85.5,28.5 + parent: 1 + - uid: 1612 + components: + - type: Transform + pos: 85.5,29.5 + parent: 1 + - uid: 1613 + components: + - type: Transform + pos: 84.5,25.5 + parent: 1 + - uid: 1614 + components: + - type: Transform + pos: 84.5,26.5 + parent: 1 + - uid: 1615 + components: + - type: Transform + pos: 84.5,27.5 + parent: 1 + - uid: 1616 + components: + - type: Transform + pos: 84.5,28.5 + parent: 1 + - uid: 1617 + components: + - type: Transform + pos: 84.5,29.5 + parent: 1 + - uid: 1618 + components: + - type: Transform + pos: 83.5,25.5 + parent: 1 + - uid: 1619 + components: + - type: Transform + pos: 83.5,26.5 + parent: 1 + - uid: 1620 + components: + - type: Transform + pos: 83.5,27.5 + parent: 1 + - uid: 1621 + components: + - type: Transform + pos: 83.5,28.5 + parent: 1 + - uid: 1622 + components: + - type: Transform + pos: 83.5,29.5 + parent: 1 + - uid: 1623 + components: + - type: Transform + pos: 82.5,25.5 + parent: 1 + - uid: 1624 + components: + - type: Transform + pos: 82.5,26.5 + parent: 1 + - uid: 1625 + components: + - type: Transform + pos: 82.5,27.5 + parent: 1 + - uid: 1626 + components: + - type: Transform + pos: 82.5,28.5 + parent: 1 + - uid: 1627 + components: + - type: Transform + pos: 82.5,29.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + pos: 81.5,25.5 + parent: 1 + - uid: 1629 + components: + - type: Transform + pos: 81.5,26.5 + parent: 1 + - uid: 1630 + components: + - type: Transform + pos: 81.5,27.5 + parent: 1 + - uid: 1631 + components: + - type: Transform + pos: 81.5,28.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + pos: 81.5,29.5 + parent: 1 + - uid: 1687 + components: + - type: Transform + pos: 94.5,10.5 + parent: 1 + - uid: 1688 + components: + - type: Transform + pos: 94.5,9.5 + parent: 1 + - uid: 1689 + components: + - type: Transform + pos: 94.5,8.5 + parent: 1 + - uid: 1690 + components: + - type: Transform + pos: 94.5,7.5 + parent: 1 + - uid: 1691 + components: + - type: Transform + pos: 94.5,6.5 + parent: 1 + - uid: 1692 + components: + - type: Transform + pos: 95.5,10.5 + parent: 1 + - uid: 1693 + components: + - type: Transform + pos: 95.5,9.5 + parent: 1 + - uid: 1694 + components: + - type: Transform + pos: 95.5,8.5 + parent: 1 + - uid: 1695 + components: + - type: Transform + pos: 95.5,7.5 + parent: 1 + - uid: 1696 + components: + - type: Transform + pos: 95.5,6.5 + parent: 1 + - uid: 1697 + components: + - type: Transform + pos: 96.5,10.5 + parent: 1 + - uid: 1698 + components: + - type: Transform + pos: 96.5,9.5 + parent: 1 + - uid: 1699 + components: + - type: Transform + pos: 96.5,8.5 + parent: 1 + - uid: 1700 + components: + - type: Transform + pos: 96.5,7.5 + parent: 1 + - uid: 1701 + components: + - type: Transform + pos: 96.5,6.5 + parent: 1 + - uid: 1702 + components: + - type: Transform + pos: 97.5,10.5 + parent: 1 + - uid: 1703 + components: + - type: Transform + pos: 97.5,9.5 + parent: 1 + - uid: 1704 + components: + - type: Transform + pos: 97.5,8.5 + parent: 1 + - uid: 1705 + components: + - type: Transform + pos: 97.5,7.5 + parent: 1 + - uid: 1706 + components: + - type: Transform + pos: 97.5,6.5 + parent: 1 + - uid: 1707 + components: + - type: Transform + pos: 98.5,10.5 + parent: 1 + - uid: 1708 + components: + - type: Transform + pos: 98.5,9.5 + parent: 1 + - uid: 1709 + components: + - type: Transform + pos: 98.5,8.5 + parent: 1 + - uid: 1710 + components: + - type: Transform + pos: 98.5,7.5 + parent: 1 + - uid: 1711 + components: + - type: Transform + pos: 98.5,6.5 + parent: 1 +- proto: AtmosFixFreezerMarker + entities: + - uid: 966 + components: + - type: Transform + pos: 24.5,40.5 + parent: 1 + - uid: 967 + components: + - type: Transform + pos: 24.5,39.5 + parent: 1 + - uid: 968 + components: + - type: Transform + pos: 24.5,38.5 + parent: 1 + - uid: 969 + components: + - type: Transform + pos: 25.5,40.5 + parent: 1 + - uid: 970 + components: + - type: Transform + pos: 25.5,39.5 + parent: 1 + - uid: 971 + components: + - type: Transform + pos: 25.5,38.5 + parent: 1 + - uid: 972 + components: + - type: Transform + pos: 26.5,40.5 + parent: 1 + - uid: 973 + components: + - type: Transform + pos: 26.5,39.5 + parent: 1 + - uid: 974 + components: + - type: Transform + pos: 26.5,38.5 + parent: 1 + - uid: 975 + components: + - type: Transform + pos: 27.5,39.5 + parent: 1 +- proto: AtmosFixInstantPlasmaFireMarker + entities: + - uid: 1598 + components: + - type: Transform + pos: 87.5,5.5 + parent: 1 + - uid: 1599 + components: + - type: Transform + pos: 87.5,4.5 + parent: 1 + - uid: 1600 + components: + - type: Transform + pos: 87.5,3.5 + parent: 1 + - uid: 1601 + components: + - type: Transform + pos: 88.5,5.5 + parent: 1 + - uid: 1602 + components: + - type: Transform + pos: 88.5,4.5 + parent: 1 + - uid: 1603 + components: + - type: Transform + pos: 88.5,3.5 + parent: 1 + - uid: 1604 + components: + - type: Transform + pos: 89.5,5.5 + parent: 1 + - uid: 1605 + components: + - type: Transform + pos: 89.5,4.5 + parent: 1 + - uid: 1606 + components: + - type: Transform + pos: 89.5,3.5 + parent: 1 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 1522 + components: + - type: Transform + pos: 96.5,16.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: 95.5,16.5 + parent: 1 +- proto: AtmosFixOxygenMarker + entities: + - uid: 1520 + components: + - type: Transform + pos: 96.5,18.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: 95.5,18.5 + parent: 1 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 1524 + components: + - type: Transform + pos: 95.5,14.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: 96.5,14.5 + parent: 1 +- proto: Autolathe + entities: + - uid: 426 + components: + - type: Transform + pos: 36.5,19.5 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: 53.5,25.5 + parent: 1 + - uid: 1281 + components: + - type: Transform + pos: 70.5,17.5 + parent: 1 +- proto: BarSign + entities: + - uid: 983 + components: + - type: Transform + pos: 37.5,42.5 + parent: 1 +- proto: BaseBallBat + entities: + - uid: 2686 + components: + - type: Transform + pos: 70.5,38 + parent: 1 +- proto: BaseComputer + entities: + - uid: 2629 + components: + - type: Transform + pos: 45.5,63.5 + parent: 1 +- proto: BaseComputerAiAccess + entities: + - uid: 2633 + components: + - type: Transform + pos: 46.5,63.5 + parent: 1 +- proto: BaseUplinkRadioDebug + entities: + - uid: 2687 + components: + - type: Transform + pos: 70.5,37.5 + parent: 1 +- proto: Bed + entities: + - uid: 2659 + components: + - type: Transform + pos: 25.5,46.5 + parent: 1 +- proto: BedsheetCMO + entities: + - uid: 1181 + components: + - type: Transform + pos: 49.5,37.5 + parent: 1 +- proto: Biofabricator + entities: + - uid: 1052 + components: + - type: Transform + pos: 30.5,45.5 + parent: 1 +- proto: BiomassReclaimer + entities: + - uid: 1206 + components: + - type: Transform + pos: 58.5,34.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 596 + components: + - type: Transform + pos: 63.5,27.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: 63.5,26.5 + parent: 1 + - uid: 853 + components: + - type: Transform + pos: 63.5,25.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + pos: 86.5,4.5 + parent: 1 +- proto: BoozeDispenser + entities: + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,38.5 + parent: 1 +- proto: BorgCharger + entities: + - uid: 789 + components: + - type: Transform + pos: 49.5,25.5 + parent: 1 +- proto: BoxMagazineShotgun + entities: + - uid: 2053 + components: + - type: Transform + parent: 2051 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2056 + components: + - type: Transform + parent: 2051 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineShotgunBeanbag + entities: + - uid: 2057 + components: + - type: Transform + parent: 2051 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2059 + components: + - type: Transform + parent: 2051 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineShotgunIncendiary + entities: + - uid: 2055 + components: + - type: Transform + parent: 2051 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2058 + components: + - type: Transform + parent: 2051 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineShotgunSlug + entities: + - uid: 2052 + components: + - type: Transform + parent: 2051 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2054 + components: + - type: Transform + parent: 2051 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Bucket + entities: + - uid: 1064 + components: + - type: Transform + pos: 32.375,43.5 + parent: 1 +- proto: ButtonFrameCaution + entities: + - uid: 800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,27.5 + parent: 1 + - uid: 2713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2709 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 2714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 2709 +- proto: C4 + entities: + - uid: 2119 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2120 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2121 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2122 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2123 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2124 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2125 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2126 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2128 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2129 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 421 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: 33.5,13.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: 33.5,12.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: 39.5,3.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: 38.5,3.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: 31.5,11.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: 32.5,11.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 26.5,3.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 26.5,4.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 26.5,5.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: 26.5,9.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: 33.5,11.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: 26.5,6.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: 34.5,11.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: 29.5,11.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: 30.5,11.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: 26.5,10.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: 26.5,11.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: 27.5,11.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 28.5,11.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 36.5,11.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: 37.5,11.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: 38.5,11.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: 39.5,11.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: 40.5,11.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 35.5,11.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: 40.5,10.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 40.5,9.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 40.5,8.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 40.5,7.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: 40.5,6.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 40.5,5.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 40.5,4.5 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 40.5,3.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: 35.5,3.5 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: 37.5,3.5 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: 34.5,3.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: 33.5,3.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 36.5,3.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 32.5,3.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 31.5,3.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 30.5,3.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 29.5,3.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 28.5,3.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 27.5,3.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: 33.5,10.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 33.5,8.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: 33.5,7.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 33.5,6.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 33.5,5.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 33.5,4.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 53.5,14.5 + parent: 1 - uid: 514 components: - type: Transform - pos: -10.5,8.5 - parent: 179 + pos: 53.5,13.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: 53.5,12.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: 53.5,11.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: 52.5,11.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 51.5,11.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 50.5,11.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: 49.5,11.5 + parent: 1 + - uid: 521 + components: + - type: Transform + pos: 48.5,11.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: 47.5,11.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: 46.5,11.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: 46.5,10.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: 46.5,9.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 46.5,8.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: 46.5,7.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: 46.5,6.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 46.5,5.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: 46.5,4.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: 46.5,3.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: 47.5,3.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: 48.5,3.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: 49.5,3.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 50.5,3.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: 51.5,3.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 52.5,3.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: 53.5,3.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 54.5,3.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 55.5,3.5 + parent: 1 - uid: 541 components: - type: Transform - pos: -11.5,-6.5 - parent: 179 + pos: 56.5,3.5 + parent: 1 - uid: 542 components: - type: Transform - pos: -9.5,-6.5 - parent: 179 + pos: 57.5,3.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: 58.5,3.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: 59.5,3.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: 60.5,3.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 60.5,4.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: 60.5,5.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: 60.5,6.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: 60.5,7.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: 60.5,8.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: 60.5,9.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: 60.5,10.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: 60.5,11.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: 59.5,11.5 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: 58.5,11.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: 57.5,11.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: 56.5,11.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 55.5,11.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 54.5,11.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 53.5,10.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 53.5,9.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 53.5,8.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 53.5,7.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 53.5,6.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 53.5,5.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: 53.5,4.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 38.5,16.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 38.5,17.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 37.5,17.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: 36.5,17.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 35.5,17.5 + parent: 1 + - uid: 625 + components: + - type: Transform + pos: 34.5,17.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 33.5,17.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 32.5,17.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 31.5,17.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 30.5,17.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 29.5,17.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 28.5,17.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 27.5,17.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 26.5,17.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 25.5,17.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: 24.5,17.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 23.5,17.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 22.5,17.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 21.5,17.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 20.5,17.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 18.5,17.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 17.5,17.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: 13.5,17.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: 12.5,17.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: 26.5,18.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: 33.5,18.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: 33.5,19.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: 33.5,20.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 33.5,21.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 33.5,22.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: 33.5,23.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: 32.5,23.5 + parent: 1 + - uid: 675 + components: + - type: Transform + pos: 31.5,23.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: 30.5,23.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 29.5,23.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 34.5,23.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 35.5,23.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: 36.5,23.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: 37.5,23.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 26.5,21.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 26.5,22.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 26.5,23.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 26.5,24.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 26.5,25.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 26.5,26.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 26.5,27.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: 26.5,28.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 26.5,29.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 26.5,30.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 26.5,31.5 + parent: 1 - uid: 695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,8.5 - parent: 179 -- proto: Chair + pos: 26.5,32.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 26.5,33.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 26.5,34.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 25.5,34.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 24.5,34.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 23.5,34.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 22.5,34.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: 21.5,34.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: 20.5,34.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: 19.5,34.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 18.5,34.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 17.5,34.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: 16.5,34.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: 15.5,34.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 14.5,34.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 12.5,34.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 10.5,34.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: 11.5,34.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: 9.5,34.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: 8.5,34.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: 7.5,34.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 6.5,34.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 5.5,34.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: 4.5,34.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: 13.5,34.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 4.5,33.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: 4.5,32.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 4.5,31.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: 4.5,30.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: 4.5,29.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: 4.5,27.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: 4.5,26.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: 4.5,25.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: 4.5,24.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: 4.5,23.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: 4.5,21.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: 4.5,28.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 52.5,23.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: 52.5,24.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: 52.5,25.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: 52.5,26.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: 51.5,26.5 + parent: 1 + - uid: 869 + components: + - type: Transform + pos: 50.5,26.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: 50.5,25.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 50.5,24.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: 50.5,23.5 + parent: 1 + - uid: 873 + components: + - type: Transform + pos: 50.5,22.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: 53.5,26.5 + parent: 1 + - uid: 875 + components: + - type: Transform + pos: 54.5,26.5 + parent: 1 + - uid: 876 + components: + - type: Transform + pos: 55.5,26.5 + parent: 1 + - uid: 877 + components: + - type: Transform + pos: 56.5,26.5 + parent: 1 + - uid: 878 + components: + - type: Transform + pos: 57.5,26.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: 58.5,26.5 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: 59.5,26.5 + parent: 1 + - uid: 881 + components: + - type: Transform + pos: 60.5,26.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: 61.5,26.5 + parent: 1 + - uid: 883 + components: + - type: Transform + pos: 56.5,25.5 + parent: 1 + - uid: 884 + components: + - type: Transform + pos: 56.5,24.5 + parent: 1 + - uid: 885 + components: + - type: Transform + pos: 57.5,24.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: 57.5,22.5 + parent: 1 + - uid: 887 + components: + - type: Transform + pos: 57.5,23.5 + parent: 1 + - uid: 888 + components: + - type: Transform + pos: 57.5,21.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + pos: 33.5,48.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + pos: 33.5,47.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + pos: 33.5,46.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + pos: 33.5,45.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + pos: 33.5,44.5 + parent: 1 + - uid: 1074 + components: + - type: Transform + pos: 33.5,43.5 + parent: 1 + - uid: 1075 + components: + - type: Transform + pos: 33.5,42.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: 33.5,41.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + pos: 33.5,40.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: 33.5,39.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + pos: 32.5,39.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + pos: 31.5,39.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: 30.5,39.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: 29.5,39.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: 28.5,39.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: 27.5,39.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: 26.5,39.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: 34.5,39.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: 35.5,39.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: 36.5,39.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: 37.5,39.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: 51.5,37.5 + parent: 1 + - uid: 1234 + components: + - type: Transform + pos: 51.5,38.5 + parent: 1 + - uid: 1235 + components: + - type: Transform + pos: 51.5,39.5 + parent: 1 + - uid: 1236 + components: + - type: Transform + pos: 50.5,39.5 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: 49.5,39.5 + parent: 1 + - uid: 1238 + components: + - type: Transform + pos: 48.5,39.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: 52.5,39.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: 53.5,39.5 + parent: 1 + - uid: 1241 + components: + - type: Transform + pos: 54.5,39.5 + parent: 1 + - uid: 1242 + components: + - type: Transform + pos: 55.5,39.5 + parent: 1 + - uid: 1243 + components: + - type: Transform + pos: 56.5,39.5 + parent: 1 + - uid: 1244 + components: + - type: Transform + pos: 57.5,39.5 + parent: 1 + - uid: 1245 + components: + - type: Transform + pos: 58.5,39.5 + parent: 1 + - uid: 1246 + components: + - type: Transform + pos: 59.5,39.5 + parent: 1 + - uid: 1247 + components: + - type: Transform + pos: 58.5,38.5 + parent: 1 + - uid: 1248 + components: + - type: Transform + pos: 58.5,37.5 + parent: 1 + - uid: 1249 + components: + - type: Transform + pos: 58.5,36.5 + parent: 1 + - uid: 1250 + components: + - type: Transform + pos: 54.5,40.5 + parent: 1 + - uid: 1251 + components: + - type: Transform + pos: 54.5,41.5 + parent: 1 + - uid: 1252 + components: + - type: Transform + pos: 54.5,42.5 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: 54.5,43.5 + parent: 1 + - uid: 1383 + components: + - type: Transform + pos: 72.5,17.5 + parent: 1 + - uid: 1384 + components: + - type: Transform + pos: 72.5,16.5 + parent: 1 + - uid: 1385 + components: + - type: Transform + pos: 72.5,15.5 + parent: 1 + - uid: 1386 + components: + - type: Transform + pos: 72.5,14.5 + parent: 1 + - uid: 1387 + components: + - type: Transform + pos: 72.5,13.5 + parent: 1 + - uid: 1388 + components: + - type: Transform + pos: 72.5,12.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + pos: 72.5,11.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: 73.5,17.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: 74.5,17.5 + parent: 1 + - uid: 1392 + components: + - type: Transform + pos: 75.5,17.5 + parent: 1 + - uid: 1393 + components: + - type: Transform + pos: 75.5,18.5 + parent: 1 + - uid: 1395 + components: + - type: Transform + pos: 76.5,17.5 + parent: 1 + - uid: 1396 + components: + - type: Transform + pos: 77.5,17.5 + parent: 1 + - uid: 1397 + components: + - type: Transform + pos: 77.5,18.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + pos: 77.5,19.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + pos: 77.5,20.5 + parent: 1 + - uid: 1400 + components: + - type: Transform + pos: 77.5,21.5 + parent: 1 + - uid: 1401 + components: + - type: Transform + pos: 77.5,22.5 + parent: 1 + - uid: 1736 + components: + - type: Transform + pos: 80.5,9.5 + parent: 1 + - uid: 1737 + components: + - type: Transform + pos: 80.5,10.5 + parent: 1 + - uid: 1738 + components: + - type: Transform + pos: 80.5,11.5 + parent: 1 + - uid: 1739 + components: + - type: Transform + pos: 80.5,12.5 + parent: 1 + - uid: 1740 + components: + - type: Transform + pos: 80.5,13.5 + parent: 1 + - uid: 1743 + components: + - type: Transform + pos: 80.5,8.5 + parent: 1 + - uid: 1744 + components: + - type: Transform + pos: 80.5,7.5 + parent: 1 + - uid: 1745 + components: + - type: Transform + pos: 80.5,6.5 + parent: 1 + - uid: 1746 + components: + - type: Transform + pos: 80.5,5.5 + parent: 1 + - uid: 1747 + components: + - type: Transform + pos: 80.5,4.5 + parent: 1 + - uid: 1748 + components: + - type: Transform + pos: 80.5,3.5 + parent: 1 + - uid: 1749 + components: + - type: Transform + pos: 81.5,3.5 + parent: 1 + - uid: 1750 + components: + - type: Transform + pos: 82.5,3.5 + parent: 1 + - uid: 1751 + components: + - type: Transform + pos: 83.5,3.5 + parent: 1 + - uid: 1752 + components: + - type: Transform + pos: 83.5,2.5 + parent: 1 + - uid: 1753 + components: + - type: Transform + pos: 84.5,1.5 + parent: 1 + - uid: 1754 + components: + - type: Transform + pos: 85.5,1.5 + parent: 1 + - uid: 1755 + components: + - type: Transform + pos: 86.5,1.5 + parent: 1 + - uid: 1756 + components: + - type: Transform + pos: 87.5,1.5 + parent: 1 + - uid: 1757 + components: + - type: Transform + pos: 88.5,1.5 + parent: 1 + - uid: 1758 + components: + - type: Transform + pos: 89.5,1.5 + parent: 1 + - uid: 1759 + components: + - type: Transform + pos: 90.5,1.5 + parent: 1 + - uid: 1760 + components: + - type: Transform + pos: 83.5,1.5 + parent: 1 + - uid: 1761 + components: + - type: Transform + pos: 91.5,1.5 + parent: 1 + - uid: 1762 + components: + - type: Transform + pos: 91.5,2.5 + parent: 1 + - uid: 1763 + components: + - type: Transform + pos: 91.5,3.5 + parent: 1 + - uid: 1764 + components: + - type: Transform + pos: 92.5,3.5 + parent: 1 + - uid: 1765 + components: + - type: Transform + pos: 93.5,3.5 + parent: 1 + - uid: 1766 + components: + - type: Transform + pos: 94.5,3.5 + parent: 1 + - uid: 1767 + components: + - type: Transform + pos: 94.5,4.5 + parent: 1 + - uid: 1768 + components: + - type: Transform + pos: 94.5,5.5 + parent: 1 + - uid: 1769 + components: + - type: Transform + pos: 95.5,5.5 + parent: 1 + - uid: 1770 + components: + - type: Transform + pos: 96.5,5.5 + parent: 1 + - uid: 1771 + components: + - type: Transform + pos: 97.5,5.5 + parent: 1 + - uid: 1772 + components: + - type: Transform + pos: 98.5,5.5 + parent: 1 + - uid: 1773 + components: + - type: Transform + pos: 99.5,5.5 + parent: 1 + - uid: 1774 + components: + - type: Transform + pos: 99.5,6.5 + parent: 1 + - uid: 1775 + components: + - type: Transform + pos: 99.5,7.5 + parent: 1 + - uid: 1776 + components: + - type: Transform + pos: 99.5,8.5 + parent: 1 + - uid: 1777 + components: + - type: Transform + pos: 99.5,9.5 + parent: 1 + - uid: 1778 + components: + - type: Transform + pos: 99.5,10.5 + parent: 1 + - uid: 1779 + components: + - type: Transform + pos: 98.5,11.5 + parent: 1 + - uid: 1780 + components: + - type: Transform + pos: 97.5,11.5 + parent: 1 + - uid: 1781 + components: + - type: Transform + pos: 97.5,12.5 + parent: 1 + - uid: 1782 + components: + - type: Transform + pos: 97.5,13.5 + parent: 1 + - uid: 1783 + components: + - type: Transform + pos: 97.5,14.5 + parent: 1 + - uid: 1784 + components: + - type: Transform + pos: 97.5,15.5 + parent: 1 + - uid: 1785 + components: + - type: Transform + pos: 99.5,11.5 + parent: 1 + - uid: 1786 + components: + - type: Transform + pos: 97.5,16.5 + parent: 1 + - uid: 1787 + components: + - type: Transform + pos: 97.5,17.5 + parent: 1 + - uid: 1788 + components: + - type: Transform + pos: 97.5,18.5 + parent: 1 + - uid: 1789 + components: + - type: Transform + pos: 97.5,19.5 + parent: 1 + - uid: 1790 + components: + - type: Transform + pos: 97.5,20.5 + parent: 1 + - uid: 1791 + components: + - type: Transform + pos: 97.5,22.5 + parent: 1 + - uid: 1792 + components: + - type: Transform + pos: 97.5,23.5 + parent: 1 + - uid: 1793 + components: + - type: Transform + pos: 97.5,21.5 + parent: 1 + - uid: 1794 + components: + - type: Transform + pos: 97.5,24.5 + parent: 1 + - uid: 1795 + components: + - type: Transform + pos: 97.5,25.5 + parent: 1 + - uid: 1796 + components: + - type: Transform + pos: 97.5,26.5 + parent: 1 + - uid: 1797 + components: + - type: Transform + pos: 97.5,28.5 + parent: 1 + - uid: 1798 + components: + - type: Transform + pos: 97.5,29.5 + parent: 1 + - uid: 1799 + components: + - type: Transform + pos: 96.5,29.5 + parent: 1 + - uid: 1800 + components: + - type: Transform + pos: 97.5,27.5 + parent: 1 + - uid: 1801 + components: + - type: Transform + pos: 95.5,29.5 + parent: 1 + - uid: 1802 + components: + - type: Transform + pos: 94.5,29.5 + parent: 1 + - uid: 1803 + components: + - type: Transform + pos: 94.5,30.5 + parent: 1 + - uid: 1804 + components: + - type: Transform + pos: 93.5,30.5 + parent: 1 + - uid: 1805 + components: + - type: Transform + pos: 92.5,30.5 + parent: 1 + - uid: 1806 + components: + - type: Transform + pos: 91.5,30.5 + parent: 1 + - uid: 1807 + components: + - type: Transform + pos: 90.5,30.5 + parent: 1 + - uid: 1808 + components: + - type: Transform + pos: 89.5,30.5 + parent: 1 + - uid: 1809 + components: + - type: Transform + pos: 88.5,30.5 + parent: 1 + - uid: 1810 + components: + - type: Transform + pos: 87.5,30.5 + parent: 1 + - uid: 1811 + components: + - type: Transform + pos: 86.5,30.5 + parent: 1 + - uid: 1812 + components: + - type: Transform + pos: 85.5,30.5 + parent: 1 + - uid: 1813 + components: + - type: Transform + pos: 82.5,30.5 + parent: 1 + - uid: 1814 + components: + - type: Transform + pos: 83.5,30.5 + parent: 1 + - uid: 1815 + components: + - type: Transform + pos: 81.5,30.5 + parent: 1 + - uid: 1816 + components: + - type: Transform + pos: 80.5,30.5 + parent: 1 + - uid: 1817 + components: + - type: Transform + pos: 84.5,30.5 + parent: 1 + - uid: 1818 + components: + - type: Transform + pos: 80.5,29.5 + parent: 1 + - uid: 1819 + components: + - type: Transform + pos: 80.5,28.5 + parent: 1 + - uid: 1820 + components: + - type: Transform + pos: 80.5,27.5 + parent: 1 + - uid: 1821 + components: + - type: Transform + pos: 80.5,26.5 + parent: 1 + - uid: 1822 + components: + - type: Transform + pos: 80.5,25.5 + parent: 1 + - uid: 1823 + components: + - type: Transform + pos: 80.5,24.5 + parent: 1 + - uid: 1824 + components: + - type: Transform + pos: 80.5,23.5 + parent: 1 + - uid: 1825 + components: + - type: Transform + pos: 80.5,22.5 + parent: 1 + - uid: 1826 + components: + - type: Transform + pos: 80.5,21.5 + parent: 1 + - uid: 1827 + components: + - type: Transform + pos: 80.5,20.5 + parent: 1 + - uid: 1828 + components: + - type: Transform + pos: 80.5,19.5 + parent: 1 + - uid: 1829 + components: + - type: Transform + pos: 80.5,18.5 + parent: 1 + - uid: 1830 + components: + - type: Transform + pos: 80.5,17.5 + parent: 1 + - uid: 1831 + components: + - type: Transform + pos: 80.5,16.5 + parent: 1 + - uid: 1832 + components: + - type: Transform + pos: 80.5,15.5 + parent: 1 + - uid: 1833 + components: + - type: Transform + pos: 80.5,14.5 + parent: 1 + - uid: 1834 + components: + - type: Transform + pos: 90.5,15.5 + parent: 1 + - uid: 1835 + components: + - type: Transform + pos: 85.5,11.5 + parent: 1 + - uid: 1836 + components: + - type: Transform + pos: 85.5,12.5 + parent: 1 + - uid: 1837 + components: + - type: Transform + pos: 85.5,13.5 + parent: 1 + - uid: 1838 + components: + - type: Transform + pos: 85.5,14.5 + parent: 1 + - uid: 1839 + components: + - type: Transform + pos: 85.5,15.5 + parent: 1 + - uid: 1840 + components: + - type: Transform + pos: 85.5,16.5 + parent: 1 + - uid: 1841 + components: + - type: Transform + pos: 85.5,17.5 + parent: 1 + - uid: 1842 + components: + - type: Transform + pos: 85.5,18.5 + parent: 1 + - uid: 1843 + components: + - type: Transform + pos: 90.5,16.5 + parent: 1 + - uid: 1844 + components: + - type: Transform + pos: 90.5,17.5 + parent: 1 + - uid: 1845 + components: + - type: Transform + pos: 90.5,8.5 + parent: 1 + - uid: 1846 + components: + - type: Transform + pos: 90.5,9.5 + parent: 1 + - uid: 1847 + components: + - type: Transform + pos: 90.5,18.5 + parent: 1 + - uid: 1848 + components: + - type: Transform + pos: 90.5,11.5 + parent: 1 + - uid: 1849 + components: + - type: Transform + pos: 90.5,10.5 + parent: 1 + - uid: 1850 + components: + - type: Transform + pos: 90.5,22.5 + parent: 1 + - uid: 1851 + components: + - type: Transform + pos: 90.5,26.5 + parent: 1 + - uid: 1852 + components: + - type: Transform + pos: 90.5,21.5 + parent: 1 + - uid: 1853 + components: + - type: Transform + pos: 90.5,25.5 + parent: 1 + - uid: 1854 + components: + - type: Transform + pos: 90.5,24.5 + parent: 1 + - uid: 1855 + components: + - type: Transform + pos: 90.5,19.5 + parent: 1 + - uid: 1856 + components: + - type: Transform + pos: 90.5,20.5 + parent: 1 + - uid: 1857 + components: + - type: Transform + pos: 90.5,7.5 + parent: 1 + - uid: 1858 + components: + - type: Transform + pos: 90.5,13.5 + parent: 1 + - uid: 1859 + components: + - type: Transform + pos: 90.5,12.5 + parent: 1 + - uid: 1860 + components: + - type: Transform + pos: 90.5,14.5 + parent: 1 + - uid: 1861 + components: + - type: Transform + pos: 85.5,19.5 + parent: 1 + - uid: 1862 + components: + - type: Transform + pos: 85.5,20.5 + parent: 1 + - uid: 1863 + components: + - type: Transform + pos: 85.5,21.5 + parent: 1 + - uid: 1864 + components: + - type: Transform + pos: 85.5,22.5 + parent: 1 + - uid: 1865 + components: + - type: Transform + pos: 85.5,23.5 + parent: 1 + - uid: 1866 + components: + - type: Transform + pos: 85.5,24.5 + parent: 1 + - uid: 1867 + components: + - type: Transform + pos: 85.5,25.5 + parent: 1 + - uid: 1868 + components: + - type: Transform + pos: 85.5,26.5 + parent: 1 + - uid: 1869 + components: + - type: Transform + pos: 85.5,27.5 + parent: 1 + - uid: 1870 + components: + - type: Transform + pos: 85.5,28.5 + parent: 1 + - uid: 1871 + components: + - type: Transform + pos: 85.5,29.5 + parent: 1 + - uid: 1872 + components: + - type: Transform + pos: 90.5,27.5 + parent: 1 + - uid: 1873 + components: + - type: Transform + pos: 90.5,23.5 + parent: 1 + - uid: 1874 + components: + - type: Transform + pos: 90.5,28.5 + parent: 1 + - uid: 1875 + components: + - type: Transform + pos: 90.5,29.5 + parent: 1 + - uid: 1876 + components: + - type: Transform + pos: 85.5,10.5 + parent: 1 + - uid: 1877 + components: + - type: Transform + pos: 85.5,9.5 + parent: 1 + - uid: 1878 + components: + - type: Transform + pos: 85.5,8.5 + parent: 1 + - uid: 1879 + components: + - type: Transform + pos: 85.5,7.5 + parent: 1 + - uid: 1890 + components: + - type: Transform + pos: 75.5,22.5 + parent: 1 + - uid: 1892 + components: + - type: Transform + pos: 76.5,22.5 + parent: 1 + - uid: 1914 + components: + - type: Transform + pos: 78.5,17.5 + parent: 1 + - uid: 1915 + components: + - type: Transform + pos: 79.5,17.5 + parent: 1 + - uid: 2225 + components: + - type: Transform + pos: 67.5,36.5 + parent: 1 + - uid: 2227 + components: + - type: Transform + pos: 67.5,38.5 + parent: 1 + - uid: 2228 + components: + - type: Transform + pos: 67.5,37.5 + parent: 1 + - uid: 2229 + components: + - type: Transform + pos: 67.5,39.5 + parent: 1 + - uid: 2230 + components: + - type: Transform + pos: 67.5,40.5 + parent: 1 + - uid: 2231 + components: + - type: Transform + pos: 67.5,41.5 + parent: 1 + - uid: 2232 + components: + - type: Transform + pos: 67.5,42.5 + parent: 1 + - uid: 2233 + components: + - type: Transform + pos: 67.5,43.5 + parent: 1 + - uid: 2234 + components: + - type: Transform + pos: 67.5,44.5 + parent: 1 + - uid: 2235 + components: + - type: Transform + pos: 68.5,44.5 + parent: 1 + - uid: 2236 + components: + - type: Transform + pos: 69.5,44.5 + parent: 1 + - uid: 2237 + components: + - type: Transform + pos: 70.5,44.5 + parent: 1 + - uid: 2238 + components: + - type: Transform + pos: 71.5,44.5 + parent: 1 + - uid: 2239 + components: + - type: Transform + pos: 72.5,44.5 + parent: 1 + - uid: 2240 + components: + - type: Transform + pos: 73.5,43.5 + parent: 1 + - uid: 2241 + components: + - type: Transform + pos: 73.5,42.5 + parent: 1 + - uid: 2242 + components: + - type: Transform + pos: 73.5,41.5 + parent: 1 + - uid: 2243 + components: + - type: Transform + pos: 73.5,40.5 + parent: 1 + - uid: 2244 + components: + - type: Transform + pos: 73.5,39.5 + parent: 1 + - uid: 2245 + components: + - type: Transform + pos: 73.5,38.5 + parent: 1 + - uid: 2246 + components: + - type: Transform + pos: 73.5,37.5 + parent: 1 + - uid: 2247 + components: + - type: Transform + pos: 73.5,36.5 + parent: 1 + - uid: 2248 + components: + - type: Transform + pos: 72.5,36.5 + parent: 1 + - uid: 2249 + components: + - type: Transform + pos: 71.5,36.5 + parent: 1 + - uid: 2250 + components: + - type: Transform + pos: 70.5,36.5 + parent: 1 + - uid: 2251 + components: + - type: Transform + pos: 69.5,36.5 + parent: 1 + - uid: 2252 + components: + - type: Transform + pos: 68.5,36.5 + parent: 1 + - uid: 2253 + components: + - type: Transform + pos: 73.5,44.5 + parent: 1 + - uid: 2254 + components: + - type: Transform + pos: 73.5,35.5 + parent: 1 + - uid: 2255 + components: + - type: Transform + pos: 73.5,45.5 + parent: 1 + - uid: 2258 + components: + - type: Transform + pos: 73.5,46.5 + parent: 1 + - uid: 2259 + components: + - type: Transform + pos: 74.5,46.5 + parent: 1 + - uid: 2260 + components: + - type: Transform + pos: 75.5,46.5 + parent: 1 + - uid: 2261 + components: + - type: Transform + pos: 76.5,46.5 + parent: 1 + - uid: 2262 + components: + - type: Transform + pos: 77.5,46.5 + parent: 1 + - uid: 2263 + components: + - type: Transform + pos: 78.5,46.5 + parent: 1 + - uid: 2264 + components: + - type: Transform + pos: 79.5,46.5 + parent: 1 + - uid: 2265 + components: + - type: Transform + pos: 80.5,46.5 + parent: 1 + - uid: 2266 + components: + - type: Transform + pos: 81.5,46.5 + parent: 1 + - uid: 2267 + components: + - type: Transform + pos: 82.5,46.5 + parent: 1 + - uid: 2268 + components: + - type: Transform + pos: 83.5,46.5 + parent: 1 + - uid: 2269 + components: + - type: Transform + pos: 84.5,46.5 + parent: 1 + - uid: 2270 + components: + - type: Transform + pos: 85.5,46.5 + parent: 1 + - uid: 2271 + components: + - type: Transform + pos: 85.5,45.5 + parent: 1 + - uid: 2272 + components: + - type: Transform + pos: 85.5,44.5 + parent: 1 + - uid: 2273 + components: + - type: Transform + pos: 85.5,43.5 + parent: 1 + - uid: 2274 + components: + - type: Transform + pos: 85.5,42.5 + parent: 1 + - uid: 2275 + components: + - type: Transform + pos: 85.5,41.5 + parent: 1 + - uid: 2276 + components: + - type: Transform + pos: 85.5,40.5 + parent: 1 + - uid: 2277 + components: + - type: Transform + pos: 85.5,39.5 + parent: 1 + - uid: 2278 + components: + - type: Transform + pos: 85.5,38.5 + parent: 1 + - uid: 2279 + components: + - type: Transform + pos: 85.5,37.5 + parent: 1 + - uid: 2280 + components: + - type: Transform + pos: 85.5,36.5 + parent: 1 + - uid: 2281 + components: + - type: Transform + pos: 85.5,35.5 + parent: 1 + - uid: 2282 + components: + - type: Transform + pos: 85.5,34.5 + parent: 1 + - uid: 2283 + components: + - type: Transform + pos: 84.5,34.5 + parent: 1 + - uid: 2284 + components: + - type: Transform + pos: 83.5,34.5 + parent: 1 + - uid: 2285 + components: + - type: Transform + pos: 82.5,34.5 + parent: 1 + - uid: 2286 + components: + - type: Transform + pos: 81.5,34.5 + parent: 1 + - uid: 2287 + components: + - type: Transform + pos: 80.5,34.5 + parent: 1 + - uid: 2288 + components: + - type: Transform + pos: 79.5,34.5 + parent: 1 + - uid: 2289 + components: + - type: Transform + pos: 78.5,34.5 + parent: 1 + - uid: 2290 + components: + - type: Transform + pos: 77.5,34.5 + parent: 1 + - uid: 2291 + components: + - type: Transform + pos: 76.5,34.5 + parent: 1 + - uid: 2292 + components: + - type: Transform + pos: 75.5,34.5 + parent: 1 + - uid: 2293 + components: + - type: Transform + pos: 74.5,34.5 + parent: 1 + - uid: 2294 + components: + - type: Transform + pos: 73.5,34.5 + parent: 1 + - uid: 2536 + components: + - type: Transform + pos: 37.5,54.5 + parent: 1 + - uid: 2537 + components: + - type: Transform + pos: 38.5,54.5 + parent: 1 + - uid: 2538 + components: + - type: Transform + pos: 39.5,54.5 + parent: 1 + - uid: 2539 + components: + - type: Transform + pos: 40.5,54.5 + parent: 1 + - uid: 2540 + components: + - type: Transform + pos: 41.5,54.5 + parent: 1 + - uid: 2541 + components: + - type: Transform + pos: 42.5,54.5 + parent: 1 + - uid: 2542 + components: + - type: Transform + pos: 43.5,54.5 + parent: 1 + - uid: 2543 + components: + - type: Transform + pos: 44.5,54.5 + parent: 1 + - uid: 2544 + components: + - type: Transform + pos: 45.5,54.5 + parent: 1 + - uid: 2545 + components: + - type: Transform + pos: 46.5,54.5 + parent: 1 + - uid: 2546 + components: + - type: Transform + pos: 47.5,54.5 + parent: 1 + - uid: 2547 + components: + - type: Transform + pos: 48.5,54.5 + parent: 1 + - uid: 2548 + components: + - type: Transform + pos: 49.5,54.5 + parent: 1 + - uid: 2549 + components: + - type: Transform + pos: 49.5,55.5 + parent: 1 + - uid: 2550 + components: + - type: Transform + pos: 49.5,56.5 + parent: 1 + - uid: 2551 + components: + - type: Transform + pos: 49.5,57.5 + parent: 1 + - uid: 2552 + components: + - type: Transform + pos: 49.5,58.5 + parent: 1 + - uid: 2553 + components: + - type: Transform + pos: 49.5,59.5 + parent: 1 + - uid: 2554 + components: + - type: Transform + pos: 49.5,60.5 + parent: 1 + - uid: 2555 + components: + - type: Transform + pos: 49.5,61.5 + parent: 1 + - uid: 2556 + components: + - type: Transform + pos: 49.5,62.5 + parent: 1 + - uid: 2557 + components: + - type: Transform + pos: 49.5,63.5 + parent: 1 + - uid: 2558 + components: + - type: Transform + pos: 49.5,64.5 + parent: 1 + - uid: 2559 + components: + - type: Transform + pos: 49.5,65.5 + parent: 1 + - uid: 2560 + components: + - type: Transform + pos: 49.5,66.5 + parent: 1 + - uid: 2561 + components: + - type: Transform + pos: 48.5,66.5 + parent: 1 + - uid: 2562 + components: + - type: Transform + pos: 47.5,66.5 + parent: 1 + - uid: 2563 + components: + - type: Transform + pos: 46.5,66.5 + parent: 1 + - uid: 2564 + components: + - type: Transform + pos: 45.5,66.5 + parent: 1 + - uid: 2565 + components: + - type: Transform + pos: 44.5,66.5 + parent: 1 + - uid: 2566 + components: + - type: Transform + pos: 43.5,66.5 + parent: 1 + - uid: 2567 + components: + - type: Transform + pos: 42.5,66.5 + parent: 1 + - uid: 2568 + components: + - type: Transform + pos: 41.5,66.5 + parent: 1 + - uid: 2569 + components: + - type: Transform + pos: 40.5,66.5 + parent: 1 + - uid: 2570 + components: + - type: Transform + pos: 39.5,66.5 + parent: 1 + - uid: 2571 + components: + - type: Transform + pos: 38.5,66.5 + parent: 1 + - uid: 2572 + components: + - type: Transform + pos: 37.5,66.5 + parent: 1 + - uid: 2573 + components: + - type: Transform + pos: 37.5,65.5 + parent: 1 + - uid: 2574 + components: + - type: Transform + pos: 37.5,64.5 + parent: 1 + - uid: 2575 + components: + - type: Transform + pos: 37.5,63.5 + parent: 1 + - uid: 2576 + components: + - type: Transform + pos: 37.5,62.5 + parent: 1 + - uid: 2577 + components: + - type: Transform + pos: 37.5,61.5 + parent: 1 + - uid: 2578 + components: + - type: Transform + pos: 37.5,60.5 + parent: 1 + - uid: 2579 + components: + - type: Transform + pos: 37.5,59.5 + parent: 1 + - uid: 2580 + components: + - type: Transform + pos: 37.5,58.5 + parent: 1 + - uid: 2581 + components: + - type: Transform + pos: 37.5,57.5 + parent: 1 + - uid: 2582 + components: + - type: Transform + pos: 37.5,56.5 + parent: 1 + - uid: 2583 + components: + - type: Transform + pos: 37.5,55.5 + parent: 1 + - uid: 2584 + components: + - type: Transform + pos: 43.5,55.5 + parent: 1 + - uid: 2585 + components: + - type: Transform + pos: 43.5,56.5 + parent: 1 + - uid: 2586 + components: + - type: Transform + pos: 43.5,57.5 + parent: 1 + - uid: 2587 + components: + - type: Transform + pos: 43.5,58.5 + parent: 1 + - uid: 2588 + components: + - type: Transform + pos: 43.5,59.5 + parent: 1 + - uid: 2589 + components: + - type: Transform + pos: 43.5,60.5 + parent: 1 + - uid: 2590 + components: + - type: Transform + pos: 43.5,61.5 + parent: 1 + - uid: 2591 + components: + - type: Transform + pos: 43.5,62.5 + parent: 1 + - uid: 2592 + components: + - type: Transform + pos: 43.5,63.5 + parent: 1 + - uid: 2593 + components: + - type: Transform + pos: 43.5,64.5 + parent: 1 + - uid: 2594 + components: + - type: Transform + pos: 43.5,65.5 + parent: 1 + - uid: 2595 + components: + - type: Transform + pos: 43.5,53.5 + parent: 1 + - uid: 2596 + components: + - type: Transform + pos: 43.5,52.5 + parent: 1 + - uid: 2597 + components: + - type: Transform + pos: 43.5,51.5 + parent: 1 + - uid: 2598 + components: + - type: Transform + pos: 43.5,50.5 + parent: 1 + - uid: 2599 + components: + - type: Transform + pos: 43.5,49.5 + parent: 1 + - uid: 2600 + components: + - type: Transform + pos: 43.5,48.5 + parent: 1 + - uid: 2662 + components: + - type: Transform + pos: 39.5,17.5 + parent: 1 + - uid: 2663 + components: + - type: Transform + pos: 40.5,17.5 + parent: 1 + - uid: 2664 + components: + - type: Transform + pos: 41.5,17.5 + parent: 1 + - uid: 2665 + components: + - type: Transform + pos: 42.5,17.5 + parent: 1 + - uid: 2666 + components: + - type: Transform + pos: 43.5,17.5 + parent: 1 + - uid: 2667 + components: + - type: Transform + pos: 43.5,16.5 + parent: 1 + - uid: 2668 + components: + - type: Transform + pos: 43.5,15.5 + parent: 1 + - uid: 2715 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2709 + - uid: 2716 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2709 + - uid: 2717 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2709 + - uid: 2718 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2709 + - uid: 2719 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2709 + - uid: 2720 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2709 + - uid: 2721 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2709 + - uid: 2722 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2709 + - uid: 2723 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2709 + - uid: 2724 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2709 + - uid: 2725 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2709 + - uid: 2726 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2709 + - uid: 2727 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2709 + - uid: 2728 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2709 + - uid: 2729 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2709 + - uid: 2841 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2709 + - uid: 2842 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2709 + - uid: 3133 + components: + - type: Transform + pos: 77.5,8.5 + parent: 1 + - uid: 3134 + components: + - type: Transform + pos: 77.5,9.5 + parent: 1 + - uid: 3135 + components: + - type: Transform + pos: 77.5,10.5 + parent: 1 + - uid: 3136 + components: + - type: Transform + pos: 77.5,11.5 + parent: 1 +- proto: CableApcStack entities: - - uid: 580 + - uid: 3139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 179 - - uid: 581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 179 - - uid: 582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,7.5 - parent: 179 -- proto: ChairOfficeDark + rot: -1.5707963267948966 rad + pos: 75.81747,11.510028 + parent: 1 +- proto: CableApcStack10 entities: + - uid: 2860 + components: + - type: Transform + pos: 56.52971,43.0394 + parent: 1 +- proto: CableHV + entities: + - uid: 1880 + components: + - type: Transform + pos: 87.5,10.5 + parent: 1 + - uid: 1881 + components: + - type: Transform + pos: 87.5,11.5 + parent: 1 + - uid: 1882 + components: + - type: Transform + pos: 86.5,13.5 + parent: 1 + - uid: 1883 + components: + - type: Transform + pos: 87.5,13.5 + parent: 1 + - uid: 1884 + components: + - type: Transform + pos: 87.5,12.5 + parent: 1 + - uid: 1885 + components: + - type: Transform + pos: 85.5,13.5 + parent: 1 + - uid: 1886 + components: + - type: Transform + pos: 84.5,13.5 + parent: 1 + - uid: 1887 + components: + - type: Transform + pos: 83.5,13.5 + parent: 1 + - uid: 1888 + components: + - type: Transform + pos: 82.5,13.5 + parent: 1 + - uid: 1889 + components: + - type: Transform + pos: 81.5,13.5 + parent: 1 + - uid: 2297 + components: + - type: Transform + pos: 45.5,32.5 + parent: 1 + - uid: 2298 + components: + - type: Transform + pos: 44.5,32.5 + parent: 1 + - uid: 2299 + components: + - type: Transform + pos: 43.5,32.5 + parent: 1 + - uid: 2730 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2709 + - uid: 2731 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2709 + - uid: 2732 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2709 + - uid: 2733 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2709 + - uid: 2734 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2709 + - uid: 2735 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2709 + - uid: 2736 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2709 + - uid: 2737 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2709 + - uid: 2738 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2709 + - uid: 2739 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2709 + - uid: 2740 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2709 + - uid: 2741 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2709 + - uid: 2742 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2709 + - uid: 2883 + components: + - type: Transform + pos: 74.5,-10.5 + parent: 1 + - uid: 2900 + components: + - type: Transform + pos: 76.5,-3.5 + parent: 1 + - uid: 2955 + components: + - type: Transform + pos: 65.5,-13.5 + parent: 1 + - uid: 2956 + components: + - type: Transform + pos: 66.5,-13.5 + parent: 1 + - uid: 2957 + components: + - type: Transform + pos: 67.5,-13.5 + parent: 1 + - uid: 2958 + components: + - type: Transform + pos: 68.5,-13.5 + parent: 1 + - uid: 2959 + components: + - type: Transform + pos: 69.5,-13.5 + parent: 1 + - uid: 2960 + components: + - type: Transform + pos: 65.5,-15.5 + parent: 1 + - uid: 2961 + components: + - type: Transform + pos: 66.5,-15.5 + parent: 1 + - uid: 2962 + components: + - type: Transform + pos: 67.5,-15.5 + parent: 1 + - uid: 2963 + components: + - type: Transform + pos: 68.5,-15.5 + parent: 1 + - uid: 2964 + components: + - type: Transform + pos: 69.5,-15.5 + parent: 1 + - uid: 2965 + components: + - type: Transform + pos: 69.5,-14.5 + parent: 1 + - uid: 2966 + components: + - type: Transform + pos: 70.5,-14.5 + parent: 1 + - uid: 2967 + components: + - type: Transform + pos: 72.5,-13.5 + parent: 1 + - uid: 2968 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 1 + - uid: 2969 + components: + - type: Transform + pos: 79.5,-15.5 + parent: 1 + - uid: 2970 + components: + - type: Transform + pos: 78.5,-15.5 + parent: 1 + - uid: 2971 + components: + - type: Transform + pos: 77.5,-15.5 + parent: 1 + - uid: 2972 + components: + - type: Transform + pos: 76.5,-15.5 + parent: 1 + - uid: 2973 + components: + - type: Transform + pos: 75.5,-15.5 + parent: 1 + - uid: 2974 + components: + - type: Transform + pos: 79.5,-13.5 + parent: 1 + - uid: 2975 + components: + - type: Transform + pos: 78.5,-13.5 + parent: 1 + - uid: 2976 + components: + - type: Transform + pos: 77.5,-13.5 + parent: 1 + - uid: 2977 + components: + - type: Transform + pos: 76.5,-13.5 + parent: 1 + - uid: 2978 + components: + - type: Transform + pos: 75.5,-13.5 + parent: 1 + - uid: 2979 + components: + - type: Transform + pos: 75.5,-14.5 + parent: 1 + - uid: 2981 + components: + - type: Transform + pos: 74.5,-6.5 + parent: 1 + - uid: 2982 + components: + - type: Transform + pos: 79.5,-11.5 + parent: 1 + - uid: 2983 + components: + - type: Transform + pos: 78.5,-11.5 + parent: 1 + - uid: 2984 + components: + - type: Transform + pos: 77.5,-11.5 + parent: 1 + - uid: 2985 + components: + - type: Transform + pos: 76.5,-11.5 + parent: 1 + - uid: 2986 + components: + - type: Transform + pos: 75.5,-11.5 + parent: 1 + - uid: 2987 + components: + - type: Transform + pos: 79.5,-9.5 + parent: 1 + - uid: 2988 + components: + - type: Transform + pos: 78.5,-9.5 + parent: 1 + - uid: 2989 + components: + - type: Transform + pos: 77.5,-9.5 + parent: 1 + - uid: 2990 + components: + - type: Transform + pos: 76.5,-9.5 + parent: 1 + - uid: 2991 + components: + - type: Transform + pos: 75.5,-9.5 + parent: 1 + - uid: 2992 + components: + - type: Transform + pos: 69.5,-9.5 + parent: 1 + - uid: 2993 + components: + - type: Transform + pos: 68.5,-9.5 + parent: 1 + - uid: 2994 + components: + - type: Transform + pos: 67.5,-9.5 + parent: 1 + - uid: 2995 + components: + - type: Transform + pos: 66.5,-9.5 + parent: 1 + - uid: 2996 + components: + - type: Transform + pos: 65.5,-9.5 + parent: 1 + - uid: 2997 + components: + - type: Transform + pos: 65.5,-11.5 + parent: 1 + - uid: 2998 + components: + - type: Transform + pos: 66.5,-11.5 + parent: 1 + - uid: 2999 + components: + - type: Transform + pos: 67.5,-11.5 + parent: 1 + - uid: 3000 + components: + - type: Transform + pos: 68.5,-11.5 + parent: 1 + - uid: 3001 + components: + - type: Transform + pos: 69.5,-11.5 + parent: 1 + - uid: 3002 + components: + - type: Transform + pos: 69.5,-10.5 + parent: 1 + - uid: 3003 + components: + - type: Transform + pos: 75.5,-10.5 + parent: 1 + - uid: 3005 + components: + - type: Transform + pos: 72.5,-12.5 + parent: 1 + - uid: 3006 + components: + - type: Transform + pos: 74.5,-14.5 + parent: 1 + - uid: 3008 + components: + - type: Transform + pos: 70.5,-10.5 + parent: 1 + - uid: 3009 + components: + - type: Transform + pos: 69.5,-6.5 + parent: 1 + - uid: 3010 + components: + - type: Transform + pos: 70.5,-6.5 + parent: 1 + - uid: 3011 + components: + - type: Transform + pos: 73.5,-6.5 + parent: 1 + - uid: 3012 + components: + - type: Transform + pos: 72.5,-4.5 + parent: 1 + - uid: 3013 + components: + - type: Transform + pos: 72.5,-5.5 + parent: 1 + - uid: 3015 + components: + - type: Transform + pos: 75.5,-6.5 + parent: 1 + - uid: 3016 + components: + - type: Transform + pos: 75.5,-7.5 + parent: 1 + - uid: 3017 + components: + - type: Transform + pos: 76.5,-7.5 + parent: 1 + - uid: 3018 + components: + - type: Transform + pos: 77.5,-7.5 + parent: 1 + - uid: 3019 + components: + - type: Transform + pos: 78.5,-7.5 + parent: 1 + - uid: 3020 + components: + - type: Transform + pos: 79.5,-7.5 + parent: 1 + - uid: 3021 + components: + - type: Transform + pos: 79.5,-5.5 + parent: 1 + - uid: 3022 + components: + - type: Transform + pos: 78.5,-5.5 + parent: 1 + - uid: 3023 + components: + - type: Transform + pos: 77.5,-5.5 + parent: 1 + - uid: 3024 + components: + - type: Transform + pos: 76.5,-5.5 + parent: 1 + - uid: 3025 + components: + - type: Transform + pos: 75.5,-5.5 + parent: 1 + - uid: 3026 + components: + - type: Transform + pos: 69.5,-5.5 + parent: 1 + - uid: 3027 + components: + - type: Transform + pos: 68.5,-5.5 + parent: 1 + - uid: 3028 + components: + - type: Transform + pos: 67.5,-5.5 + parent: 1 + - uid: 3029 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 1 + - uid: 3030 + components: + - type: Transform + pos: 65.5,-5.5 + parent: 1 + - uid: 3031 + components: + - type: Transform + pos: 65.5,-7.5 + parent: 1 + - uid: 3032 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 1 + - uid: 3033 + components: + - type: Transform + pos: 67.5,-7.5 + parent: 1 + - uid: 3034 + components: + - type: Transform + pos: 68.5,-7.5 + parent: 1 + - uid: 3035 + components: + - type: Transform + pos: 69.5,-7.5 + parent: 1 + - uid: 3036 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 1 + - uid: 3037 + components: + - type: Transform + pos: 66.5,-1.5 + parent: 1 + - uid: 3038 + components: + - type: Transform + pos: 67.5,-1.5 + parent: 1 + - uid: 3039 + components: + - type: Transform + pos: 68.5,-1.5 + parent: 1 + - uid: 3040 + components: + - type: Transform + pos: 69.5,-1.5 + parent: 1 + - uid: 3041 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 1 + - uid: 3042 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 1 + - uid: 3043 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 1 + - uid: 3044 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 1 + - uid: 3045 + components: + - type: Transform + pos: 65.5,-3.5 + parent: 1 + - uid: 3046 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 1 + - uid: 3047 + components: + - type: Transform + pos: 72.5,-1.5 + parent: 1 + - uid: 3048 + components: + - type: Transform + pos: 72.5,-7.5 + parent: 1 + - uid: 3050 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 1 + - uid: 3051 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 1 + - uid: 3052 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 1 + - uid: 3053 + components: + - type: Transform + pos: 75.5,-3.5 + parent: 1 + - uid: 3055 + components: + - type: Transform + pos: 77.5,-3.5 + parent: 1 + - uid: 3056 + components: + - type: Transform + pos: 78.5,-3.5 + parent: 1 + - uid: 3057 + components: + - type: Transform + pos: 79.5,-3.5 + parent: 1 + - uid: 3058 + components: + - type: Transform + pos: 79.5,-1.5 + parent: 1 + - uid: 3059 + components: + - type: Transform + pos: 78.5,-1.5 + parent: 1 + - uid: 3060 + components: + - type: Transform + pos: 77.5,-1.5 + parent: 1 + - uid: 3061 + components: + - type: Transform + pos: 76.5,-1.5 + parent: 1 + - uid: 3062 + components: + - type: Transform + pos: 75.5,-1.5 + parent: 1 + - uid: 3063 + components: + - type: Transform + pos: 72.5,-14.5 + parent: 1 + - uid: 3064 + components: + - type: Transform + pos: 72.5,-10.5 + parent: 1 + - uid: 3065 + components: + - type: Transform + pos: 72.5,-9.5 + parent: 1 + - uid: 3066 + components: + - type: Transform + pos: 72.5,-11.5 + parent: 1 + - uid: 3067 + components: + - type: Transform + pos: 72.5,-6.5 + parent: 1 + - uid: 3068 + components: + - type: Transform + pos: 72.5,-8.5 + parent: 1 + - uid: 3069 + components: + - type: Transform + pos: 71.5,-6.5 + parent: 1 + - uid: 3070 + components: + - type: Transform + pos: 72.5,-3.5 + parent: 1 + - uid: 3071 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 1 + - uid: 3072 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 1 + - uid: 3076 + components: + - type: Transform + pos: 72.5,-17.5 + parent: 1 + - uid: 3077 + components: + - type: Transform + pos: 72.5,-15.5 + parent: 1 + - uid: 3079 + components: + - type: Transform + pos: 71.5,-14.5 + parent: 1 + - uid: 3080 + components: + - type: Transform + pos: 73.5,-14.5 + parent: 1 + - uid: 3081 + components: + - type: Transform + pos: 72.5,7.5 + parent: 1 + - uid: 3082 + components: + - type: Transform + pos: 72.5,-0.5 + parent: 1 + - uid: 3083 + components: + - type: Transform + pos: 72.5,0.5 + parent: 1 + - uid: 3084 + components: + - type: Transform + pos: 72.5,1.5 + parent: 1 + - uid: 3085 + components: + - type: Transform + pos: 72.5,2.5 + parent: 1 + - uid: 3086 + components: + - type: Transform + pos: 72.5,5.5 + parent: 1 + - uid: 3087 + components: + - type: Transform + pos: 72.5,4.5 + parent: 1 + - uid: 3088 + components: + - type: Transform + pos: 74.5,5.5 + parent: 1 + - uid: 3091 + components: + - type: Transform + pos: 72.5,3.5 + parent: 1 + - uid: 3092 + components: + - type: Transform + pos: 73.5,5.5 + parent: 1 + - uid: 3095 + components: + - type: Transform + pos: 71.5,-10.5 + parent: 1 + - uid: 3096 + components: + - type: Transform + pos: 73.5,-10.5 + parent: 1 + - uid: 3097 + components: + - type: Transform + pos: 72.5,-16.5 + parent: 1 + - uid: 3120 + components: + - type: Transform + pos: 74.5,6.5 + parent: 1 + - uid: 3121 + components: + - type: Transform + pos: 74.5,7.5 + parent: 1 + - uid: 3122 + components: + - type: Transform + pos: 75.5,5.5 + parent: 1 + - uid: 3123 + components: + - type: Transform + pos: 76.5,5.5 + parent: 1 + - uid: 3124 + components: + - type: Transform + pos: 76.5,6.5 + parent: 1 + - uid: 3126 + components: + - type: Transform + pos: 75.5,7.5 + parent: 1 + - uid: 3127 + components: + - type: Transform + pos: 76.5,7.5 + parent: 1 + - uid: 3128 + components: + - type: Transform + pos: 77.5,6.5 + parent: 1 + - uid: 3145 + components: + - type: Transform + pos: 77.5,6.5 + parent: 1 + - uid: 3146 + components: + - type: Transform + pos: 77.5,7.5 + parent: 1 + - uid: 3147 + components: + - type: Transform + pos: 77.5,8.5 + parent: 1 + - uid: 3148 + components: + - type: Transform + pos: 77.5,9.5 + parent: 1 +- proto: CableHVStack + entities: + - uid: 3138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.27059,11.478778 + parent: 1 +- proto: CableMV + entities: + - uid: 2300 + components: + - type: Transform + pos: 43.5,32.5 + parent: 1 + - uid: 2301 + components: + - type: Transform + pos: 43.5,31.5 + parent: 1 + - uid: 2302 + components: + - type: Transform + pos: 43.5,30.5 + parent: 1 + - uid: 2303 + components: + - type: Transform + pos: 43.5,29.5 + parent: 1 + - uid: 2304 + components: + - type: Transform + pos: 43.5,28.5 + parent: 1 + - uid: 2305 + components: + - type: Transform + pos: 43.5,27.5 + parent: 1 + - uid: 2306 + components: + - type: Transform + pos: 43.5,26.5 + parent: 1 + - uid: 2307 + components: + - type: Transform + pos: 38.5,16.5 + parent: 1 + - uid: 2308 + components: + - type: Transform + pos: 38.5,17.5 + parent: 1 + - uid: 2309 + components: + - type: Transform + pos: 38.5,18.5 + parent: 1 + - uid: 2310 + components: + - type: Transform + pos: 38.5,19.5 + parent: 1 + - uid: 2311 + components: + - type: Transform + pos: 38.5,20.5 + parent: 1 + - uid: 2312 + components: + - type: Transform + pos: 39.5,20.5 + parent: 1 + - uid: 2313 + components: + - type: Transform + pos: 39.5,21.5 + parent: 1 + - uid: 2314 + components: + - type: Transform + pos: 39.5,22.5 + parent: 1 + - uid: 2315 + components: + - type: Transform + pos: 39.5,23.5 + parent: 1 + - uid: 2316 + components: + - type: Transform + pos: 39.5,24.5 + parent: 1 + - uid: 2317 + components: + - type: Transform + pos: 39.5,25.5 + parent: 1 + - uid: 2318 + components: + - type: Transform + pos: 39.5,26.5 + parent: 1 + - uid: 2319 + components: + - type: Transform + pos: 40.5,26.5 + parent: 1 + - uid: 2320 + components: + - type: Transform + pos: 41.5,26.5 + parent: 1 + - uid: 2321 + components: + - type: Transform + pos: 42.5,26.5 + parent: 1 + - uid: 2322 + components: + - type: Transform + pos: 44.5,26.5 + parent: 1 + - uid: 2323 + components: + - type: Transform + pos: 45.5,26.5 + parent: 1 + - uid: 2324 + components: + - type: Transform + pos: 46.5,26.5 + parent: 1 + - uid: 2325 + components: + - type: Transform + pos: 47.5,26.5 + parent: 1 + - uid: 2326 + components: + - type: Transform + pos: 48.5,26.5 + parent: 1 + - uid: 2327 + components: + - type: Transform + pos: 48.5,25.5 + parent: 1 + - uid: 2328 + components: + - type: Transform + pos: 48.5,24.5 + parent: 1 + - uid: 2329 + components: + - type: Transform + pos: 48.5,23.5 + parent: 1 + - uid: 2330 + components: + - type: Transform + pos: 49.5,23.5 + parent: 1 + - uid: 2331 + components: + - type: Transform + pos: 49.5,22.5 + parent: 1 + - uid: 2332 + components: + - type: Transform + pos: 51.5,23.5 + parent: 1 + - uid: 2333 + components: + - type: Transform + pos: 52.5,23.5 + parent: 1 + - uid: 2334 + components: + - type: Transform + pos: 50.5,22.5 + parent: 1 + - uid: 2335 + components: + - type: Transform + pos: 51.5,22.5 + parent: 1 + - uid: 2336 + components: + - type: Transform + pos: 38.5,15.5 + parent: 1 + - uid: 2337 + components: + - type: Transform + pos: 38.5,14.5 + parent: 1 + - uid: 2338 + components: + - type: Transform + pos: 39.5,14.5 + parent: 1 + - uid: 2339 + components: + - type: Transform + pos: 40.5,14.5 + parent: 1 + - uid: 2340 + components: + - type: Transform + pos: 41.5,14.5 + parent: 1 + - uid: 2341 + components: + - type: Transform + pos: 42.5,14.5 + parent: 1 + - uid: 2342 + components: + - type: Transform + pos: 43.5,14.5 + parent: 1 + - uid: 2343 + components: + - type: Transform + pos: 44.5,14.5 + parent: 1 + - uid: 2344 + components: + - type: Transform + pos: 45.5,14.5 + parent: 1 + - uid: 2345 + components: + - type: Transform + pos: 46.5,14.5 + parent: 1 + - uid: 2346 + components: + - type: Transform + pos: 48.5,14.5 + parent: 1 + - uid: 2347 + components: + - type: Transform + pos: 49.5,14.5 + parent: 1 + - uid: 2348 + components: + - type: Transform + pos: 50.5,14.5 + parent: 1 + - uid: 2349 + components: + - type: Transform + pos: 51.5,14.5 + parent: 1 + - uid: 2350 + components: + - type: Transform + pos: 52.5,14.5 + parent: 1 + - uid: 2351 + components: + - type: Transform + pos: 47.5,14.5 + parent: 1 + - uid: 2352 + components: + - type: Transform + pos: 53.5,14.5 + parent: 1 + - uid: 2353 + components: + - type: Transform + pos: 37.5,14.5 + parent: 1 + - uid: 2354 + components: + - type: Transform + pos: 36.5,14.5 + parent: 1 + - uid: 2355 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1 + - uid: 2356 + components: + - type: Transform + pos: 34.5,14.5 + parent: 1 + - uid: 2357 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1 + - uid: 2358 + components: + - type: Transform + pos: 54.5,14.5 + parent: 1 + - uid: 2359 + components: + - type: Transform + pos: 55.5,14.5 + parent: 1 + - uid: 2360 + components: + - type: Transform + pos: 56.5,14.5 + parent: 1 + - uid: 2361 + components: + - type: Transform + pos: 57.5,14.5 + parent: 1 + - uid: 2362 + components: + - type: Transform + pos: 58.5,14.5 + parent: 1 + - uid: 2363 + components: + - type: Transform + pos: 59.5,14.5 + parent: 1 + - uid: 2364 + components: + - type: Transform + pos: 60.5,14.5 + parent: 1 + - uid: 2365 + components: + - type: Transform + pos: 61.5,14.5 + parent: 1 + - uid: 2366 + components: + - type: Transform + pos: 62.5,14.5 + parent: 1 + - uid: 2367 + components: + - type: Transform + pos: 63.5,14.5 + parent: 1 + - uid: 2368 + components: + - type: Transform + pos: 64.5,14.5 + parent: 1 + - uid: 2369 + components: + - type: Transform + pos: 65.5,14.5 + parent: 1 + - uid: 2370 + components: + - type: Transform + pos: 66.5,14.5 + parent: 1 + - uid: 2371 + components: + - type: Transform + pos: 67.5,14.5 + parent: 1 + - uid: 2372 + components: + - type: Transform + pos: 68.5,14.5 + parent: 1 + - uid: 2373 + components: + - type: Transform + pos: 69.5,14.5 + parent: 1 + - uid: 2374 + components: + - type: Transform + pos: 70.5,14.5 + parent: 1 + - uid: 2375 + components: + - type: Transform + pos: 70.5,13.5 + parent: 1 + - uid: 2376 + components: + - type: Transform + pos: 71.5,13.5 + parent: 1 + - uid: 2377 + components: + - type: Transform + pos: 72.5,13.5 + parent: 1 + - uid: 2378 + components: + - type: Transform + pos: 73.5,13.5 + parent: 1 + - uid: 2379 + components: + - type: Transform + pos: 74.5,13.5 + parent: 1 + - uid: 2380 + components: + - type: Transform + pos: 75.5,13.5 + parent: 1 + - uid: 2381 + components: + - type: Transform + pos: 75.5,14.5 + parent: 1 + - uid: 2382 + components: + - type: Transform + pos: 75.5,15.5 + parent: 1 + - uid: 2383 + components: + - type: Transform + pos: 75.5,16.5 + parent: 1 + - uid: 2384 + components: + - type: Transform + pos: 75.5,17.5 + parent: 1 + - uid: 2385 + components: + - type: Transform + pos: 75.5,18.5 + parent: 1 + - uid: 2386 + components: + - type: Transform + pos: 43.5,33.5 + parent: 1 + - uid: 2387 + components: + - type: Transform + pos: 43.5,34.5 + parent: 1 + - uid: 2388 + components: + - type: Transform + pos: 43.5,35.5 + parent: 1 + - uid: 2389 + components: + - type: Transform + pos: 43.5,36.5 + parent: 1 + - uid: 2390 + components: + - type: Transform + pos: 43.5,37.5 + parent: 1 + - uid: 2391 + components: + - type: Transform + pos: 42.5,37.5 + parent: 1 + - uid: 2392 + components: + - type: Transform + pos: 41.5,37.5 + parent: 1 + - uid: 2393 + components: + - type: Transform + pos: 40.5,37.5 + parent: 1 + - uid: 2394 + components: + - type: Transform + pos: 40.5,38.5 + parent: 1 + - uid: 2395 + components: + - type: Transform + pos: 40.5,39.5 + parent: 1 + - uid: 2396 + components: + - type: Transform + pos: 40.5,40.5 + parent: 1 + - uid: 2397 + components: + - type: Transform + pos: 40.5,41.5 + parent: 1 + - uid: 2398 + components: + - type: Transform + pos: 40.5,42.5 + parent: 1 + - uid: 2399 + components: + - type: Transform + pos: 39.5,42.5 + parent: 1 + - uid: 2400 + components: + - type: Transform + pos: 38.5,42.5 + parent: 1 + - uid: 2401 + components: + - type: Transform + pos: 37.5,42.5 + parent: 1 + - uid: 2402 + components: + - type: Transform + pos: 37.5,43.5 + parent: 1 + - uid: 2403 + components: + - type: Transform + pos: 37.5,44.5 + parent: 1 + - uid: 2404 + components: + - type: Transform + pos: 37.5,45.5 + parent: 1 + - uid: 2405 + components: + - type: Transform + pos: 37.5,46.5 + parent: 1 + - uid: 2406 + components: + - type: Transform + pos: 37.5,47.5 + parent: 1 + - uid: 2407 + components: + - type: Transform + pos: 36.5,47.5 + parent: 1 + - uid: 2408 + components: + - type: Transform + pos: 36.5,48.5 + parent: 1 + - uid: 2409 + components: + - type: Transform + pos: 35.5,48.5 + parent: 1 + - uid: 2410 + components: + - type: Transform + pos: 34.5,48.5 + parent: 1 + - uid: 2411 + components: + - type: Transform + pos: 33.5,48.5 + parent: 1 + - uid: 2412 + components: + - type: Transform + pos: 44.5,37.5 + parent: 1 + - uid: 2413 + components: + - type: Transform + pos: 45.5,37.5 + parent: 1 + - uid: 2414 + components: + - type: Transform + pos: 46.5,37.5 + parent: 1 + - uid: 2415 + components: + - type: Transform + pos: 47.5,37.5 + parent: 1 + - uid: 2416 + components: + - type: Transform + pos: 48.5,37.5 + parent: 1 + - uid: 2417 + components: + - type: Transform + pos: 49.5,37.5 + parent: 1 + - uid: 2418 + components: + - type: Transform + pos: 50.5,37.5 + parent: 1 + - uid: 2419 + components: + - type: Transform + pos: 51.5,37.5 + parent: 1 + - uid: 2420 + components: + - type: Transform + pos: 52.5,37.5 + parent: 1 + - uid: 2421 + components: + - type: Transform + pos: 53.5,37.5 + parent: 1 + - uid: 2422 + components: + - type: Transform + pos: 54.5,37.5 + parent: 1 + - uid: 2423 + components: + - type: Transform + pos: 55.5,37.5 + parent: 1 + - uid: 2424 + components: + - type: Transform + pos: 56.5,37.5 + parent: 1 + - uid: 2425 + components: + - type: Transform + pos: 57.5,37.5 + parent: 1 + - uid: 2426 + components: + - type: Transform + pos: 58.5,37.5 + parent: 1 + - uid: 2427 + components: + - type: Transform + pos: 59.5,37.5 + parent: 1 + - uid: 2428 + components: + - type: Transform + pos: 60.5,37.5 + parent: 1 + - uid: 2429 + components: + - type: Transform + pos: 61.5,37.5 + parent: 1 + - uid: 2430 + components: + - type: Transform + pos: 61.5,36.5 + parent: 1 + - uid: 2431 + components: + - type: Transform + pos: 61.5,35.5 + parent: 1 + - uid: 2432 + components: + - type: Transform + pos: 62.5,35.5 + parent: 1 + - uid: 2433 + components: + - type: Transform + pos: 63.5,35.5 + parent: 1 + - uid: 2434 + components: + - type: Transform + pos: 64.5,35.5 + parent: 1 + - uid: 2435 + components: + - type: Transform + pos: 65.5,35.5 + parent: 1 + - uid: 2436 + components: + - type: Transform + pos: 65.5,34.5 + parent: 1 + - uid: 2437 + components: + - type: Transform + pos: 66.5,34.5 + parent: 1 + - uid: 2438 + components: + - type: Transform + pos: 67.5,34.5 + parent: 1 + - uid: 2439 + components: + - type: Transform + pos: 68.5,34.5 + parent: 1 + - uid: 2440 + components: + - type: Transform + pos: 69.5,34.5 + parent: 1 + - uid: 2441 + components: + - type: Transform + pos: 70.5,34.5 + parent: 1 + - uid: 2442 + components: + - type: Transform + pos: 71.5,34.5 + parent: 1 + - uid: 2443 + components: + - type: Transform + pos: 72.5,34.5 + parent: 1 + - uid: 2444 + components: + - type: Transform + pos: 73.5,34.5 + parent: 1 + - uid: 2455 + components: + - type: Transform + pos: 43.5,48.5 + parent: 1 + - uid: 2602 + components: + - type: Transform + pos: 43.5,47.5 + parent: 1 + - uid: 2603 + components: + - type: Transform + pos: 43.5,46.5 + parent: 1 + - uid: 2604 + components: + - type: Transform + pos: 43.5,45.5 + parent: 1 + - uid: 2605 + components: + - type: Transform + pos: 43.5,44.5 + parent: 1 + - uid: 2606 + components: + - type: Transform + pos: 43.5,43.5 + parent: 1 + - uid: 2607 + components: + - type: Transform + pos: 43.5,42.5 + parent: 1 + - uid: 2608 + components: + - type: Transform + pos: 42.5,42.5 + parent: 1 + - uid: 2609 + components: + - type: Transform + pos: 41.5,42.5 + parent: 1 + - uid: 2743 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2709 + - uid: 2744 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2709 + - uid: 2745 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2709 + - uid: 2746 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2709 + - uid: 2747 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2709 + - uid: 2748 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2709 + - uid: 2749 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2709 + - uid: 3129 + components: + - type: Transform + pos: 77.5,6.5 + parent: 1 + - uid: 3130 + components: + - type: Transform + pos: 77.5,7.5 + parent: 1 + - uid: 3131 + components: + - type: Transform + pos: 77.5,8.5 + parent: 1 +- proto: CableMVStack + entities: + - uid: 3140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.55184,11.494403 + parent: 1 +- proto: CableTerminal + entities: + - uid: 3090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,5.5 + parent: 1 + - uid: 3119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,7.5 + parent: 1 +- proto: CarbonDioxideCanister + entities: + - uid: 1427 + components: + - type: Transform + pos: 96.5,20.5 + parent: 1 +- proto: CartridgeRocket + entities: + - uid: 2127 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2130 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2131 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2132 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2133 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2134 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2135 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2136 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2137 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2138 + components: + - type: Transform + parent: 2118 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Catwalk + entities: + - uid: 229 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 27.5,17.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 26.5,17.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 25.5,17.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 24.5,17.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 23.5,17.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 22.5,17.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 21.5,17.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 20.5,17.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 18.5,17.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 17.5,17.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 13.5,17.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 12.5,17.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: 20.5,11.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 21.5,11.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 15.5,19.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 27.5,16.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 25.5,16.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 24.5,16.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: 23.5,16.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 22.5,16.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 16.5,18.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 17.5,18.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 18.5,18.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 20.5,18.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 21.5,18.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 22.5,18.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: 23.5,18.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 24.5,18.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: 25.5,18.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 26.5,18.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 27.5,18.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: 13.5,18.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: 12.5,18.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 11.5,18.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1 - uid: 380 components: - type: Transform - rot: 3.1415926535897967 rad - pos: 0.5,-6.5 - parent: 179 -- proto: ChairOfficeLight - entities: - - uid: 576 + pos: 9.5,18.5 + parent: 1 + - uid: 381 components: - type: Transform - rot: 4.71238898038469 rad - pos: 19.5,4.5 - parent: 179 - - uid: 577 + pos: 8.5,18.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 5.5,18.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: 5.5,16.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 16.5,19.5 + parent: 1 + - uid: 720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 1 + - uid: 1352 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 179 + pos: 72.5,12.5 + parent: 1 + - uid: 1353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,11.5 + parent: 1 + - uid: 2870 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2869 + - uid: 2871 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2869 + - uid: 2872 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2869 + - uid: 2873 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2869 + - uid: 2874 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2869 + - uid: 2980 + components: + - type: Transform + pos: 72.5,8.5 + parent: 1 + - uid: 3004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,9.5 + parent: 1 + - uid: 3007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,1.5 + parent: 1 + - uid: 3014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,10.5 + parent: 1 + - uid: 3049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,3.5 + parent: 1 + - uid: 3073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,4.5 + parent: 1 + - uid: 3075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-0.5 + parent: 1 + - uid: 3094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,7.5 + parent: 1 + - uid: 3098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-15.5 + parent: 1 + - uid: 3099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,0.5 + parent: 1 + - uid: 3100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,6.5 + parent: 1 + - uid: 3101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,5.5 + parent: 1 + - uid: 3102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,2.5 + parent: 1 + - uid: 3103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-1.5 + parent: 1 + - uid: 3104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-2.5 + parent: 1 + - uid: 3105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-4.5 + parent: 1 + - uid: 3106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-5.5 + parent: 1 + - uid: 3107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-6.5 + parent: 1 + - uid: 3108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-3.5 + parent: 1 + - uid: 3109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-7.5 + parent: 1 + - uid: 3110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-8.5 + parent: 1 + - uid: 3111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-9.5 + parent: 1 + - uid: 3112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-10.5 + parent: 1 + - uid: 3113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-11.5 + parent: 1 + - uid: 3114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-12.5 + parent: 1 + - uid: 3115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-13.5 + parent: 1 + - uid: 3116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-14.5 + parent: 1 +- proto: Chainsaw + entities: + - uid: 1195 + components: + - type: Transform + pos: 59.70333,41.59572 + parent: 1 +- proto: Chair + entities: + - uid: 2710 + components: + - type: Transform + pos: 31.5,19.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 2750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 2709 +- proto: ChairWood + entities: + - uid: 3152 + components: + - type: Transform + pos: 81.494804,7.3994207 + parent: 1 +- proto: ChemDispenser + entities: + - uid: 1153 + components: + - type: Transform + pos: 55.5,44.5 + parent: 1 +- proto: ChemicalPayload + entities: + - uid: 2858 + components: + - type: Transform + pos: 56.61888,43.66378 + parent: 1 + - uid: 2859 + components: + - type: Transform + pos: 56.75264,43.50025 + parent: 1 +- proto: ChemistryHotplate + entities: + - uid: 1129 + components: + - type: Transform + pos: 56.5,42.5 + parent: 1 +- proto: ChemMaster + entities: + - uid: 940 + components: + - type: Transform + pos: 30.5,38.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + pos: 35.5,47.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: 53.5,44.5 + parent: 1 +- proto: CircuitImprinter + entities: + - uid: 429 + components: + - type: Transform + pos: 37.5,17.5 + parent: 1 + - uid: 1305 + components: + - type: Transform + pos: 70.5,16.5 + parent: 1 +- proto: CleanerGrenade + entities: + - uid: 2200 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CloningPod + entities: + - uid: 1184 + components: + - type: Transform + pos: 46.5,40.5 + parent: 1 +- proto: ClosetChefFilled + entities: + - uid: 944 + components: + - type: Transform + pos: 29.5,41.5 + parent: 1 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 754 + components: + - type: Transform + pos: 57.75,28.5 + parent: 1 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 2751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2709 +- proto: ClosetWallMixed + entities: + - uid: 829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,21.5 + parent: 1 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 1218 + components: + - type: Transform + pos: 59.32892,41.820488 + parent: 1 +- proto: ClothingBeltPlantFilled + entities: + - uid: 1046 + components: + - type: Transform + pos: 31.5,43.5 + parent: 1 +- proto: ClothingBeltSheathFilled + entities: + - uid: 2682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,41.5 + parent: 1 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 567 + components: + - type: Transform + pos: 35.46201,14.641393 + parent: 1 + - uid: 2697 + components: + - type: Transform + pos: 41.5,63.5 + parent: 1 +- proto: ClothingHandsGlovesColorYellow + entities: - uid: 578 components: - type: Transform - rot: 4.71238898038469 rad - pos: 23.5,8.5 - parent: 179 + pos: 36.90933,14.4805155 + parent: 1 + - uid: 3142 + components: + - type: Transform + pos: 76.73934,11.510028 + parent: 1 +- proto: ClothingHeadHatWelding + entities: + - uid: 568 + components: + - type: Transform + pos: 37.505653,15.28636 + parent: 1 +- proto: ClothingNeckScarfStripedLightBlue + entities: + - uid: 1192 + components: + - type: Transform + pos: 51.506203,40.564667 + parent: 1 +- proto: ComputerAlert + entities: + - uid: 2846 + components: + - type: Transform + pos: 45.5,53.5 + parent: 1 +- proto: ComputerAnalysisConsole + entities: + - uid: 756 + components: + - type: Transform + pos: 58.5,28.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 844: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + - uid: 2616 + components: + - type: Transform + pos: 49.5,59.5 + parent: 1 +- proto: ComputerAtmosMonitoring + entities: + - uid: 2634 + components: + - type: Transform + pos: 46.5,53.5 + parent: 1 +- proto: computerBodyScanner + entities: + - uid: 1221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,39.5 + parent: 1 + - uid: 2623 + components: + - type: Transform + pos: 50.5,63.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 2632 + components: + - type: Transform + pos: 49.5,63.5 + parent: 1 +- proto: ComputerCargoBounty + entities: + - uid: 2628 + components: + - type: Transform + pos: 46.5,55.5 + parent: 1 +- proto: ComputerCargoOrders + entities: + - uid: 2622 + components: + - type: Transform + pos: 47.5,55.5 + parent: 1 +- proto: ComputerCargoShuttle + entities: + - uid: 2637 + components: + - type: Transform + pos: 49.5,55.5 + parent: 1 +- proto: ComputerCloningConsole + entities: + - uid: 1183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,39.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1185: + - MedicalScannerSender: MedicalScannerReceiver + 1184: + - CloningPodSender: CloningPodReceiver + - uid: 2620 + components: + - type: Transform + pos: 47.5,59.5 + parent: 1 +- proto: ComputerComms + entities: + - uid: 2613 + components: + - type: Transform + pos: 46.5,57.5 + parent: 1 +- proto: ComputerCrewMonitoring + entities: + - uid: 2614 + components: + - type: Transform + pos: 46.5,59.5 + parent: 1 +- proto: ComputerCriminalRecords + entities: + - uid: 2611 + components: + - type: Transform + pos: 49.5,57.5 + parent: 1 +- proto: ComputerEmergencyShuttle + entities: + - uid: 2624 + components: + - type: Transform + pos: 47.5,57.5 + parent: 1 +- proto: ComputerId + entities: + - uid: 2625 + components: + - type: Transform + pos: 45.5,57.5 + parent: 1 +- proto: ComputerIFF + entities: + - uid: 2867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 2709 +- proto: ComputerMassMedia + entities: + - uid: 2843 + components: + - type: Transform + pos: 46.5,61.5 + parent: 1 +- proto: ComputerMedicalRecords + entities: + - uid: 2617 + components: + - type: Transform + pos: 45.5,59.5 + parent: 1 +- proto: ComputerPalletConsole + entities: + - uid: 2618 + components: + - type: Transform + pos: 48.5,55.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 1926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,13.5 + parent: 1 + - uid: 2187 + components: + - type: Transform + pos: 48.5,53.5 + parent: 1 + - uid: 3143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,9.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 1136 + components: + - type: Transform + pos: 47.5,53.5 + parent: 1 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 749 + components: + - type: Transform + pos: 51.5,28.5 + parent: 1 + - uid: 2845 + components: + - type: Transform + pos: 48.5,59.5 + parent: 1 +- proto: ComputerRoboticsControl + entities: + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,27.5 + parent: 1 + - uid: 2635 + components: + - type: Transform + pos: 50.5,59.5 + parent: 1 +- proto: ComputerSalvageExpedition + entities: + - uid: 2868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 2709 +- proto: ComputerShuttle + entities: + - uid: 2638 + components: + - type: Transform + pos: 49.5,53.5 + parent: 1 + - uid: 2752 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2709 +- proto: ComputerShuttleCargo + entities: + - uid: 2184 + components: + - type: Transform + pos: 50.5,55.5 + parent: 1 +- proto: ComputerShuttleSyndie + entities: + - uid: 2630 + components: + - type: Transform + pos: 50.5,61.5 + parent: 1 +- proto: ComputerSolarControl + entities: + - uid: 2631 + components: + - type: Transform + pos: 50.5,53.5 + parent: 1 + - uid: 3149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,10.5 + parent: 1 +- proto: ComputerStationRecords + entities: + - uid: 2610 + components: + - type: Transform + pos: 50.5,57.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 2612 + components: + - type: Transform + pos: 48.5,57.5 + parent: 1 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 2627 + components: + - type: Transform + pos: 47.5,61.5 + parent: 1 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 808 + components: + - type: Transform + pos: 56.5,24.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 432 + components: + - type: Transform + pos: 82.5,23.5 + parent: 1 + - uid: 2213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,23.5 + parent: 1 + - uid: 2615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,23.5 + parent: 1 + - uid: 2621 + components: + - type: Transform + pos: 82.5,22.5 + parent: 1 + - uid: 2626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,20.5 + parent: 1 + - uid: 2844 + components: + - type: Transform + pos: 82.5,21.5 + parent: 1 + - uid: 2847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,20.5 + parent: 1 + - uid: 2848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,20.5 + parent: 1 + - uid: 2849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,23.5 + parent: 1 + - uid: 2850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,20.5 + parent: 1 + - uid: 2851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,21.5 + parent: 1 + - uid: 2852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,22.5 + parent: 1 +- proto: CrateArtifactContainer + entities: + - uid: 801 + components: + - type: Transform + pos: 58.5,25.5 + parent: 1 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 802 +- proto: CrateFreezer + entities: + - uid: 988 + components: + - type: Transform + pos: 25.5,38.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1005 + - 1004 + - 1003 + - 1002 + - 1001 + - 1000 + - 999 + - 998 + - 997 + - 996 + - 995 + - 994 + - 993 + - 992 + - 991 + - 990 + - 989 + - 1006 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateGenericSteel + entities: + - uid: 2042 + components: + - type: Transform + pos: 66.5,41.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2043 + - 2044 + - 2045 + - 2046 + - 2047 + - 2048 + - 2049 + - 2050 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2051 + components: + - type: Transform + pos: 66.5,40.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2052 + - 2053 + - 2054 + - 2055 + - 2056 + - 2057 + - 2058 + - 2059 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2061 + components: + - type: Transform + pos: 66.5,38.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2062 + - 2063 + - 2064 + - 2065 + - 2066 + - 2067 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2068 + components: + - type: Transform + pos: 66.5,37.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2069 + - 2070 + - 2071 + - 2072 + - 2073 + - 2074 + - 2075 + - 2076 + - 2077 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2078 + components: + - type: Transform + pos: 74.5,41.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2079 + - 2080 + - 2081 + - 2082 + - 2083 + - 2084 + - 2085 + - 2086 + - 2087 + - 2088 + - 2089 + - 2090 + - 2091 + - 2092 + - 2093 + - 2094 + - 2095 + - 2096 + - 2097 + - 2098 + - 2099 + - 2100 + - 2101 + - 2102 + - 2103 + - 2104 + - 2105 + - 2106 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2107 + components: + - type: Transform + pos: 74.5,40.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2115 + - 2114 + - 2113 + - 2112 + - 2111 + - 2110 + - 2109 + - 2108 + - 2116 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2118 + components: + - type: Transform + pos: 74.5,38.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2123 + - 2122 + - 2121 + - 2120 + - 2119 + - 2124 + - 2125 + - 2126 + - 2127 + - 2128 + - 2129 + - 2130 + - 2131 + - 2132 + - 2133 + - 2134 + - 2135 + - 2136 + - 2137 + - 2138 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2139 + components: + - type: Transform + pos: 74.5,37.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2151 + - 2150 + - 2149 + - 2148 + - 2147 + - 2146 + - 2145 + - 2144 + - 2143 + - 2142 + - 2141 + - 2140 + - 2152 + - 2153 + - 2154 + - 2155 + - 2156 + - 2157 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2176 + components: + - type: Transform + pos: 66.5,35.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2177 + - 2178 + - 2179 + - 2180 + - 2181 + - 2182 + - 2183 + - 2185 + - 2186 + - 2188 + - 2189 + - 2190 + - 2191 + - 2192 + - 2193 + - 2194 + - 2195 + - 2196 + - 2197 + - 2198 + - 2199 + - 2200 + - 2201 + - 2202 + - 2203 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 1043 + components: + - type: Transform + pos: 35.5,43.5 + parent: 1 + - type: Lock + locked: False +- proto: CrateMaterialSteel + entities: + - uid: 1913 + components: + - type: Transform + pos: 93.5,11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1924 + - 1923 + - 1922 + - 1921 + - 1920 + - 1919 + - 1918 + - 1917 + - 1916 + - 1925 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMedicalSurgery + entities: + - uid: 1209 + components: + - type: Transform + pos: 60.5,41.5 + parent: 1 +- proto: Crematorium + entities: + - uid: 1204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,34.5 + parent: 1 +- proto: CrewMonitoringServer + entities: + - uid: 1233 + components: + - type: Transform + pos: 60.5,35.5 + parent: 1 +- proto: CrowbarRed + entities: + - uid: 436 + components: + - type: Transform + pos: 35.519947,14.517116 + parent: 1 +- proto: CryoPod + entities: + - uid: 1108 + components: + - type: Transform + pos: 49.5,42.5 + parent: 1 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 1188 + components: + - type: Transform + pos: 50.5699,40.609264 + parent: 1 + - uid: 1189 + components: + - type: Transform + pos: 50.381783,40.7799 + parent: 1 +- proto: CutterMachine + entities: + - uid: 386 + components: + - type: Transform + pos: 37.5,16.5 + parent: 1 + - uid: 1306 + components: + - type: Transform + pos: 70.5,15.5 + parent: 1 +- proto: DebugAPC + entities: + - uid: 2753 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2709 +- proto: DebugGenerator + entities: + - uid: 2256 + components: + - type: Transform + pos: 45.5,32.5 + parent: 1 + - type: PowerSupplier + supplyRampRate: 500000 + supplyRampTolerance: 5000 + supplyRate: 3000000 +- proto: DebugSubstation + entities: + - uid: 2296 + components: + - type: Transform + pos: 43.5,32.5 + parent: 1 + - type: Battery + maxCharge: 25000000 +- proto: DefaultStationBeaconMedical + entities: + - uid: 2882 + components: + - type: Transform + pos: 54.5,38.5 + parent: 1 +- proto: DefaultStationBeaconRND + entities: + - uid: 1928 + components: + - type: Transform + pos: 55.5,25.5 + parent: 1 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 1635 + components: + - type: Transform + pos: 51.5,21.5 + parent: 1 +- proto: DefaultStationBeaconService + entities: + - uid: 2879 + components: + - type: Transform + pos: 33.5,39.5 + parent: 1 +- proto: DefaultStationBeaconSolars + entities: + - uid: 1893 + components: + - type: Transform + pos: 74.5,8.5 + parent: 1 +- proto: DefaultStationBeaconTEG + entities: + - uid: 1891 + components: + - type: Transform + pos: 86.5,10.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: - uid: 579 components: - type: Transform - pos: 24.5,5.5 - parent: 179 -- proto: ChemDispenser + rot: 3.141592653589793 rad + pos: 47.5,37.5 + parent: 1 + - uid: 1910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,40.5 + parent: 1 +- proto: DogBed + entities: + - uid: 780 + components: + - type: Transform + pos: 29.5,15.5 + parent: 1 +- proto: DrinkBeerBottleFull + entities: + - uid: 2661 + components: + - type: Transform + pos: 25.794188,46.43032 + parent: 1 +- proto: DrinkColaCan + entities: + - uid: 581 + components: + - type: Transform + pos: 30.74438,19.52907 + parent: 1 +- proto: DrinkRootBeerFloatGlass + entities: + - uid: 3154 + components: + - type: Transform + pos: 81.713554,6.562192 + parent: 1 +- proto: Dropper + entities: + - uid: 1055 + components: + - type: Transform + pos: 30.503965,44.32313 + parent: 1 +- proto: EmpGrenade + entities: + - uid: 2202 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2203 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExGrenade + entities: + - uid: 2198 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2201 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExosuitFabricator + entities: + - uid: 831 + components: + - type: Transform + pos: 49.5,24.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,23.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,39.5 + parent: 1 + - uid: 1907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,18.5 + parent: 1 + - uid: 1908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,34.5 + parent: 1 + - uid: 1909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,37.5 + parent: 1 +- proto: FireAxeCabinetFilled + entities: + - uid: 1633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 1 + - uid: 3074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,20.5 + parent: 1 +- proto: FireExtinguisher + entities: + - uid: 425 + components: + - type: Transform + pos: 17.625,19.5 + parent: 1 +- proto: FloorChasmEntity + entities: + - uid: 2652 + components: + - type: Transform + pos: 36.5,59.5 + parent: 1 + - uid: 2653 + components: + - type: Transform + pos: 36.5,60.5 + parent: 1 + - uid: 2654 + components: + - type: Transform + pos: 37.5,59.5 + parent: 1 + - uid: 2655 + components: + - type: Transform + pos: 37.5,60.5 + parent: 1 +- proto: FloorDrain + entities: + - uid: 1121 + components: + - type: Transform + pos: 54.5,43.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1230 + components: + - type: Transform + pos: 58.5,35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1257 + components: + - type: Transform + pos: 59.5,39.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FloorLavaEntity + entities: + - uid: 2648 + components: + - type: Transform + pos: 36.5,56.5 + parent: 1 + - uid: 2649 + components: + - type: Transform + pos: 36.5,57.5 + parent: 1 + - uid: 2650 + components: + - type: Transform + pos: 37.5,56.5 + parent: 1 + - uid: 2651 + components: + - type: Transform + pos: 37.5,57.5 + parent: 1 +- proto: FloorWaterEntity + entities: + - uid: 2644 + components: + - type: Transform + pos: 36.5,53.5 + parent: 1 + - uid: 2645 + components: + - type: Transform + pos: 36.5,54.5 + parent: 1 + - uid: 2646 + components: + - type: Transform + pos: 37.5,53.5 + parent: 1 + - uid: 2647 + components: + - type: Transform + pos: 37.5,54.5 + parent: 1 +- proto: FoodBurgerBacon entities: - uid: 583 components: - type: Transform - pos: 23.5,9.5 - parent: 179 + pos: 30.328245,19.454739 + parent: 1 +- proto: FoodCartCold + entities: + - uid: 1009 + components: + - type: Transform + pos: 26.5,40.5 + parent: 1 +- proto: FoodCartHot + entities: + - uid: 985 + components: + - type: Transform + pos: 24.5,40.5 + parent: 1 +- proto: FoodMeat + entities: + - uid: 990 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 991 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1000 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1003 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1004 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatChicken + entities: + - uid: 996 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatCrab + entities: + - uid: 997 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatFish + entities: + - uid: 1002 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatHuman + entities: + - uid: 989 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatLizard + entities: + - uid: 1006 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatPenguin + entities: + - uid: 995 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatRat + entities: + - uid: 993 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatSnail + entities: + - uid: 994 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatSnake + entities: + - uid: 992 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatSpider + entities: + - uid: 999 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatXeno + entities: + - uid: 998 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPizzaPineapple + entities: + - uid: 582 + components: + - type: Transform + pos: 30.506588,19.885859 + parent: 1 +- proto: FrezonCanister + entities: + - uid: 1425 + components: + - type: Transform + pos: 96.5,26.5 + parent: 1 +- proto: FuelDispenser + entities: + - uid: 1120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,43.5 + parent: 1 +- proto: GasAnalyzer + entities: + - uid: 1258 + components: + - type: Transform + pos: 51.002113,40.662323 + parent: 1 + - uid: 2008 + components: + - type: Transform + pos: 36.5,45.5 + parent: 1 +- proto: GasFilter + entities: + - uid: 1102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,39.5 + parent: 1 +- proto: GasMinerAmmonia + entities: + - uid: 1421 + components: + - type: Transform + pos: 96.5,24.5 + parent: 1 +- proto: GasMinerCarbonDioxide + entities: + - uid: 1422 + components: + - type: Transform + pos: 96.5,20.5 + parent: 1 +- proto: GasMinerFrezon + entities: + - uid: 1428 + components: + - type: Transform + pos: 96.5,26.5 + parent: 1 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 1446 + components: + - type: Transform + pos: 96.5,16.5 + parent: 1 +- proto: GasMinerNitrousOxide + entities: + - uid: 1426 + components: + - type: Transform + pos: 96.5,28.5 + parent: 1 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 1445 + components: + - type: Transform + pos: 96.5,18.5 + parent: 1 +- proto: GasMinerPlasma + entities: + - uid: 1447 + components: + - type: Transform + pos: 96.5,14.5 + parent: 1 +- proto: GasMinerTritium + entities: + - uid: 1420 + components: + - type: Transform + pos: 96.5,22.5 + parent: 1 +- proto: GasMinerWaterVapor + entities: + - uid: 1448 + components: + - type: Transform + pos: 96.5,12.5 + parent: 1 +- proto: GasMixer + entities: + - uid: 1899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPassiveVent + entities: + - uid: 827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,25.5 + parent: 1 + - uid: 828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,27.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,18.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,14.5 + parent: 1 + - uid: 1403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,16.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,12.5 + parent: 1 + - uid: 1410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,20.5 + parent: 1 + - uid: 1429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,22.5 + parent: 1 + - uid: 1430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,24.5 + parent: 1 + - uid: 1431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,26.5 + parent: 1 + - uid: 1432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,28.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,29.5 + parent: 1 + - uid: 1467 + components: + - type: Transform + pos: 87.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,4.5 + parent: 1 + - uid: 1735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,6.5 + parent: 1 + - uid: 1742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,4.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 782 + components: + - type: Transform + pos: 93.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,39.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,39.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,6.5 + parent: 1 + - uid: 1681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,4.5 + parent: 1 + - uid: 1895 + components: + - type: Transform + pos: 92.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeStraight + entities: + - uid: 781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,25.5 + parent: 1 + - uid: 820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,25.5 + parent: 1 + - uid: 821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,25.5 + parent: 1 + - uid: 822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,27.5 + parent: 1 + - uid: 823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,27.5 + parent: 1 + - uid: 824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,27.5 + parent: 1 + - uid: 1176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,39.5 + parent: 1 + - uid: 1178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,5.5 + parent: 1 + - uid: 1894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 1106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,41.5 + parent: 1 + - uid: 1107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,41.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,40.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,40.5 + parent: 1 + - uid: 1164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,40.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,25.5 + parent: 1 + - uid: 818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,27.5 + parent: 1 + - uid: 1110 + components: + - type: Transform + pos: 48.5,42.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,27.5 + parent: 1 + - uid: 826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,25.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + pos: 48.5,41.5 + parent: 1 + - uid: 1175 + components: + - type: Transform + pos: 49.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#C3C3C3FF' + - uid: 1406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 1408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#545454FF' + - uid: 1409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#13FF4BFF' + - uid: 1442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#7C387DFF' + - uid: 1443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#A7ECFFFF' + - uid: 1444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#880015FF' + - uid: 1509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,6.5 + parent: 1 + - uid: 1741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,5.5 + parent: 1 +- proto: GasThermoMachineFreezer + entities: + - uid: 1109 + components: + - type: Transform + pos: 50.5,42.5 + parent: 1 +- proto: GasValve + entities: + - uid: 1510 + components: + - type: Transform + pos: 87.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,4.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 1167 + components: + - type: Transform + pos: 51.5,39.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1270 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1269 + components: + - type: Transform + pos: 57.5,39.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1270 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorWallmountAPU + entities: + - uid: 2754 + components: + - type: MetaData + desc: An auxiliary power unit for a shuttle - 12kW. + - type: Transform + pos: -2.5,-2.5 + parent: 2709 + - type: PowerSupplier + supplyRate: 12000 + - uid: 2755 + components: + - type: MetaData + desc: An auxiliary power unit for a shuttle - 12kW. + - type: Transform + pos: 3.5,-2.5 + parent: 2709 + - type: PowerSupplier + supplyRate: 12000 +- proto: GravityGenerator + entities: + - uid: 1329 + components: + - type: Transform + pos: 77.5,23.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 2756 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2709 +- proto: GrenadeBaton + entities: + - uid: 2087 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2088 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeBlast + entities: + - uid: 2085 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2086 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeDummy + entities: + - uid: 2178 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2181 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeEMP + entities: + - uid: 2079 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2080 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2089 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2090 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeFlash + entities: + - uid: 2083 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2084 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeFlashBang + entities: + - uid: 2196 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2199 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeFrag + entities: + - uid: 2081 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2082 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeIncendiary + entities: + - uid: 2194 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2197 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeShrapnel + entities: + - uid: 2190 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2193 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeStinger + entities: + - uid: 2186 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2189 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Grille + entities: + - uid: 48 + components: + - type: Transform + pos: 35.5,20.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 31.5,20.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 59.5,25.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 58.5,23.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 50.5,23.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 59.5,27.5 + parent: 1 + - uid: 923 + components: + - type: Transform + pos: 31.5,42.5 + parent: 1 + - uid: 949 + components: + - type: Transform + pos: 35.5,42.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + pos: 32.5,42.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + pos: 34.5,42.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: 76.5,19.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + pos: 78.5,19.5 + parent: 1 + - uid: 2021 + components: + - type: Transform + pos: 83.5,37.5 + parent: 1 + - uid: 2022 + components: + - type: Transform + pos: 83.5,38.5 + parent: 1 + - uid: 2023 + components: + - type: Transform + pos: 83.5,36.5 + parent: 1 + - uid: 2757 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2709 + - uid: 2758 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2709 + - uid: 2759 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2709 + - uid: 2760 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2709 + - uid: 2761 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2709 + - uid: 2762 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2709 + - uid: 2763 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2709 +- proto: GrilleDiagonal + entities: + - uid: 2764 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2709 + - uid: 2765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2709 +- proto: Gyroscope + entities: + - uid: 2766 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2709 +- proto: Handcuffs + entities: + - uid: 1005 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2708 + components: + - type: Transform + pos: 70.625,39.375 + parent: 1 +- proto: HandheldHealthAnalyzer + entities: + - uid: 2707 + components: + - type: Transform + pos: 70.375,39.625 + parent: 1 +- proto: HighSecCommandLocked + entities: + - uid: 2696 + components: + - type: Transform + pos: 42.5,62.5 + parent: 1 +- proto: HolopadCargoBayLongRange + entities: + - uid: 2688 + components: + - type: Transform + pos: 34.5,22.5 + parent: 1 +- proto: HolopadCargoShuttle + entities: + - uid: 2840 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2709 +- proto: HolopadEngineeringMain + entities: + - uid: 2692 + components: + - type: Transform + pos: 77.5,17.5 + parent: 1 +- proto: HolopadGeneralArrivals + entities: + - uid: 2689 + components: + - type: Transform + pos: 32.5,22.5 + parent: 1 +- proto: HolopadMedicalMedbay + entities: + - uid: 2690 + components: + - type: Transform + pos: 54.5,39.5 + parent: 1 +- proto: HolopadServiceBotany + entities: + - uid: 2691 + components: + - type: Transform + pos: 33.5,45.5 + parent: 1 +- proto: hydroponicsTray + entities: + - uid: 1031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,46.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,47.5 + parent: 1 + - uid: 1033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,46.5 + parent: 1 + - uid: 1034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,47.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,46.5 + parent: 1 + - uid: 1036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,46.5 + parent: 1 +- proto: Igniter + entities: + - uid: 1597 + components: + - type: Transform + pos: 88.5,4.5 + parent: 1 +- proto: IngotGold + entities: + - uid: 750 + components: + - type: Transform + pos: 52.375,25.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: 33.5,16.25 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: 70.75,19.5 + parent: 1 +- proto: IngotSilver + entities: + - uid: 832 + components: + - type: Transform + pos: 52.625,25.625 + parent: 1 + - uid: 1370 + components: + - type: Transform + pos: 33.5,15.75 + parent: 1 + - uid: 1374 + components: + - type: Transform + pos: 70.5,19.625 + parent: 1 +- proto: JetpackBlueFilled + entities: + - uid: 424 + components: + - type: Transform + pos: 17.375,19.625 + parent: 1 +- proto: KitchenElectricGrill + entities: + - uid: 935 + components: + - type: Transform + pos: 28.5,40.5 + parent: 1 +- proto: KitchenKnife + entities: + - uid: 2685 + components: + - type: Transform + pos: 70.5,38.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 934 + components: + - type: Transform + pos: 28.5,41.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 979 + components: + - type: Transform + pos: 31.5,41.5 + parent: 1 - type: ContainerContainer containers: - ReagentDispenser-beaker: !type:ContainerSlot + beakerSlot: !type:ContainerSlot showEnts: False occludes: True - ent: null + ent: 980 + inputContainer: !type:Container + showEnts: False + occludes: True + ents: [] machine_board: !type:Container showEnts: False occludes: True @@ -3519,1869 +11661,142 @@ entities: showEnts: False occludes: True ents: [] + - uid: 1044 + components: + - type: Transform + pos: 30.5,44.5 + parent: 1 + - type: ContainerContainer + containers: beakerSlot: !type:ContainerSlot showEnts: False occludes: True - ent: null - - uid: 750 - components: - - type: Transform - pos: 7.5,11.5 - parent: 179 -- proto: ChemicalPayload - entities: - - uid: 432 - components: - - type: Transform - pos: 6.4651074,9.828774 - parent: 179 -- proto: ChemMaster - entities: - - uid: 311 - components: - - type: Transform - pos: 8.5,11.5 - parent: 179 -- proto: ChemMasterMachineCircuitboard - entities: - - uid: 718 - components: - - type: Transform - pos: -4.5458,10.514079 - parent: 179 -- proto: CircuitImprinter - entities: - - uid: 332 - components: - - type: Transform - pos: -6.5,4.5 - parent: 179 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 349 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 179 - - uid: 403 - components: - - type: Transform - pos: 0.5,-10.5 - parent: 179 -- proto: ClosetToolFilled - entities: - - uid: 524 - components: - - type: Transform - pos: -11.5,-5.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 525 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 526 - components: - - type: Transform - pos: -11.5,-3.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 527 - components: - - type: Transform - pos: -11.5,-2.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClothingBeltChiefEngineerFilled - entities: - - uid: 1573 - components: - - type: Transform - pos: 1.3037996,-5.2961445 - parent: 179 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 427 - components: - - type: Transform - pos: -1.895102,-10.33495 - parent: 179 - - uid: 428 - components: - - type: Transform - pos: -1.770102,-10.63182 - parent: 179 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 454 - components: - - type: Transform - pos: -0.78741443,4.322194 - parent: 179 -- proto: ClothingHeadHatWelding - entities: - - uid: 344 - components: - - type: Transform - pos: 0.7198646,4.374314 - parent: 179 -- proto: ClothingMaskBreath - entities: - - uid: 955 - components: - - type: Transform - pos: -10.595239,6.1907988 - parent: 179 -- proto: ClothingMaskGas - entities: - - uid: 425 - components: - - type: Transform - pos: -0.2880585,-10.69432 - parent: 179 -- proto: ClothingOuterHardsuitAtmos - entities: - - uid: 270 - components: - - type: Transform - pos: -10.5426235,5.472399 - parent: 179 -- proto: ClothingOuterVest - entities: - - uid: 426 - components: - - type: Transform - pos: -0.9130585,-10.66307 - parent: 179 -- proto: ClothingShoesBootsMag - entities: - - uid: 725 - components: - - type: Transform - pos: 0.47880077,8.073378 - parent: 179 -- proto: ClothingUniformJumpsuitEngineering - entities: - - uid: 424 - components: - - type: Transform - pos: -0.6474335,-10.27245 - parent: 179 -- proto: ClownPDA - entities: - - uid: 91 - components: - - type: Transform - pos: -15.5,2.5 - parent: 179 - - uid: 762 - components: - - type: Transform - pos: -14.5,1.5 - parent: 179 - - uid: 864 - components: - - type: Transform - pos: -14.5,2.5 - parent: 179 - - uid: 912 - components: - - type: Transform - pos: -15.5,1.5 - parent: 179 -- proto: ComputerAnalysisConsole - entities: - - uid: 1083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,23.5 - parent: 179 - - type: DeviceLinkSource - linkedPorts: - 1078: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: ComputerCargoOrders - entities: - - uid: 326 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 179 - - uid: 996 - components: - - type: Transform - pos: -1.5,-11.5 - parent: 179 -- proto: ComputerCargoShuttle - entities: - - uid: 404 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 179 -- proto: ComputerMedicalRecords - entities: - - uid: 152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-5.5 - parent: 179 - - uid: 591 - components: - - type: Transform - pos: 21.5,5.5 - parent: 179 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 88 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,19.5 - parent: 179 -- proto: ComputerShuttleCargo - entities: - - uid: 994 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 179 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 1185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 179 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 1088 - components: - - type: Transform - pos: 13.5,16.5 - parent: 179 -- proto: ConveyorBelt - entities: - - uid: 195 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 179 - - uid: 259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-14.5 - parent: 179 - - uid: 463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-16.5 - parent: 179 - - uid: 677 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 179 - - uid: 716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,11.5 - parent: 179 - - uid: 720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,11.5 - parent: 179 - - uid: 721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 - parent: 179 - - uid: 985 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-13.5 - parent: 179 - - uid: 989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-15.5 - parent: 179 - - uid: 990 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 179 - - uid: 991 - components: - - type: Transform - pos: -2.5,-16.5 - parent: 179 -- proto: CrateEngineeringToolbox - entities: - - uid: 692 - components: - - type: Transform - pos: -0.5,3.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateHydroponicsSeeds - entities: - - uid: 754 - components: - - type: Transform - pos: 2.5,12.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateHydroponicsTools - entities: - - uid: 755 - components: - - type: Transform - pos: 2.5,13.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateMaterialSteel - entities: - - uid: 1258 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 179 - - uid: 1293 - components: - - type: Transform - pos: 7.5,-10.5 - parent: 179 -- proto: CrateMedical - entities: - - uid: 131 - components: - - type: Transform - pos: 31.5,-1.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 132 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrewMonitoringServer - entities: - - uid: 1183 - components: - - type: Transform - pos: 9.5,25.5 - parent: 179 -- proto: Crowbar - entities: - - uid: 147 - components: - - type: Transform - pos: -2.172831,4.5306726 - parent: 179 - - uid: 423 - components: - - type: Transform - pos: -2.861032,-5.524786 - parent: 179 -- proto: DebugBatteryDischarger - entities: - - uid: 711 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 179 -- proto: DebugGenerator - entities: - - uid: 490 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 179 -- proto: DefaultStationBeaconAISatellite - entities: - - uid: 1198 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 179 -- proto: DefaultStationBeaconBotany - entities: - - uid: 1193 - components: - - type: Transform - pos: 3.5,15.5 - parent: 179 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 1195 - components: - - type: Transform - pos: 7.5,10.5 - parent: 179 -- proto: DefaultStationBeaconCommand - entities: - - uid: 1196 - components: - - type: Transform - pos: 0.5,8.5 - parent: 179 -- proto: DefaultStationBeaconGravGen - entities: - - uid: 1172 - components: - - type: Transform - pos: 6.5,5.5 - parent: 179 -- proto: DefaultStationBeaconMedical - entities: - - uid: 1173 - components: - - type: Transform - pos: 19.5,5.5 - parent: 179 -- proto: DefaultStationBeaconScience - entities: - - uid: 1194 - components: - - type: Transform - pos: 12.5,20.5 - parent: 179 -- proto: DefaultStationBeaconSecurity - entities: - - uid: 1197 - components: - - type: Transform - pos: -14.5,17.5 - parent: 179 -- proto: DefaultStationBeaconSupply - entities: - - uid: 1175 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 179 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 1174 - components: - - type: Transform - pos: -1.5,4.5 - parent: 179 -- proto: DisposalPipe - entities: - - uid: 717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,10.5 - parent: 179 -- proto: DisposalTrunk - entities: - - uid: 285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 179 - - uid: 715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,10.5 - parent: 179 -- proto: DisposalUnit - entities: - - uid: 719 - components: - - type: Transform - pos: -1.5,10.5 - parent: 179 -- proto: DrinkBeerglass - entities: - - uid: 688 - components: - - type: Transform - pos: 3.1981986,5.733985 - parent: 179 -- proto: DrinkColaCan - entities: - - uid: 690 - components: - - type: Transform - pos: 3.8231986,6.150942 - parent: 179 -- proto: Dropper - entities: - - uid: 730 - components: - - type: Transform - pos: 5.892191,9.4118185 - parent: 179 -- proto: EmergencyOxygenTankFilled - entities: - - uid: 956 - components: - - type: Transform - pos: -10.505015,6.711994 - parent: 179 -- proto: ExGrenade - entities: - - uid: 433 - components: - - type: Transform - pos: -3.7704864,-1.6163371 - parent: 179 -- proto: ExplosivePayload - entities: - - uid: 668 - components: - - type: Transform - pos: 6.829691,9.4118185 - parent: 179 -- proto: FaxMachineCaptain - entities: - - uid: 967 - components: - - type: Transform - pos: 9.5,12.5 - parent: 179 -- proto: FaxMachineCentcom - entities: - - uid: 968 - components: - - type: Transform - pos: 11.5,12.5 - parent: 179 -- proto: FaxMachineSyndie - entities: - - uid: 969 - components: - - type: Transform - pos: 13.5,12.5 - parent: 179 -- proto: FireAxeCabinetFilled - entities: - - uid: 1574 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 179 -- proto: FireExtinguisher - entities: - - uid: 323 - components: - - type: Transform - pos: -1.297692,-5.396082 - parent: 179 - - uid: 868 - components: - - type: Transform - pos: -14.5,-1.5 - parent: 179 -- proto: FlashlightLantern - entities: - - uid: 421 - components: - - type: Transform - pos: -1.934832,-5.154238 - parent: 179 - - uid: 422 - components: - - type: Transform - pos: 1.1350493,8.198464 - parent: 179 -- proto: FloorLavaEntity - entities: - - uid: 134 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 179 - - uid: 135 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 179 - - uid: 141 - components: - - type: Transform - pos: -13.5,-2.5 - parent: 179 - - uid: 469 - components: - - type: Transform - pos: -14.5,-2.5 - parent: 179 -- proto: FloorWaterEntity - entities: - - uid: 136 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 179 - - uid: 137 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 179 -- proto: FoodApple - entities: - - uid: 16 - components: - - type: Transform - pos: 3.9853282,16.430082 - parent: 179 - - uid: 849 - components: - - type: Transform - pos: 3.7249117,16.242453 - parent: 179 - - uid: 866 - components: - - type: Transform - pos: 3.651995,16.55517 - parent: 179 -- proto: FoodBurgerBacon - entities: - - uid: 689 - components: - - type: Transform - pos: 3.3844857,6.0702233 - parent: 179 -- proto: FoodCarrot - entities: - - uid: 850 - components: - - type: Transform - pos: 3.6023045,15.67151 - parent: 179 - - uid: 851 - components: - - type: Transform - pos: 3.620745,15.015423 - parent: 179 - - uid: 863 - components: - - type: Transform - pos: 3.620745,14.389988 - parent: 179 -- proto: FoodPizzaPineapple - entities: - - uid: 687 - components: - - type: Transform - pos: 3.5215416,6.799056 - parent: 179 -- proto: FrezonCanister - entities: - - uid: 1308 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 179 - - uid: 1309 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 179 - - uid: 1318 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 179 -- proto: GasAnalyzer - entities: - - uid: 1571 - components: - - type: Transform - pos: 7.3675013,-6.725376 - parent: 179 -- proto: GasMinerAmmonia - entities: - - uid: 1204 - components: - - type: Transform - pos: 23.5,-19.5 - parent: 179 -- proto: GasMinerCarbonDioxide - entities: - - uid: 1205 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 179 -- proto: GasMinerFrezon - entities: - - uid: 1223 - components: - - type: Transform - pos: 23.5,-15.5 - parent: 179 -- proto: GasMinerNitrogenStation - entities: - - uid: 1222 - components: - - type: Transform - pos: 23.5,-9.5 - parent: 179 -- proto: GasMinerNitrousOxide - entities: - - uid: 1225 - components: - - type: Transform - pos: 23.5,-17.5 - parent: 179 -- proto: GasMinerOxygenStation - entities: - - uid: 1199 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 179 -- proto: GasMinerPlasma - entities: - - uid: 1221 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 179 -- proto: GasMinerTritium - entities: - - uid: 1224 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 179 -- proto: GasMinerWaterVapor - entities: - - uid: 1202 - components: - - type: Transform - pos: 23.5,-23.5 - parent: 179 -- proto: GasMixer - entities: - - uid: 1480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 179 - - type: GasMixer - inletTwoConcentration: 0.20999998 - inletOneConcentration: 0.79 -- proto: GasOutletInjector - entities: - - uid: 406 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 179 - - uid: 409 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 179 - - uid: 410 - components: - - type: Transform - pos: 24.5,-23.5 - parent: 179 - - uid: 411 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 179 - - uid: 413 - components: - - type: Transform - pos: 24.5,-11.5 - parent: 179 - - uid: 414 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 179 - - uid: 429 - components: - - type: Transform - pos: 24.5,-7.5 - parent: 179 - - uid: 444 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 179 - - uid: 447 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 179 -- proto: GasPassiveVent - entities: - - uid: 1319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 179 - - uid: 1320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 179 - - uid: 1321 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-19.5 - parent: 179 - - uid: 1322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-15.5 - parent: 179 - - uid: 1323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 179 - - uid: 1324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-13.5 - parent: 179 - - uid: 1325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-11.5 - parent: 179 - - uid: 1326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 179 - - uid: 1327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-7.5 - parent: 179 - - uid: 1544 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-26.5 - parent: 179 -- proto: GasPipeBend - entities: - - uid: 407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 179 - - uid: 408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-14.5 - parent: 179 - - uid: 412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-8.5 - parent: 179 - - uid: 415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 179 - - uid: 418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-12.5 - parent: 179 - - uid: 1439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 179 - - uid: 1440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 179 - - uid: 1441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-22.5 - parent: 179 - - uid: 1442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 179 - - uid: 1482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-7.5 - parent: 179 - - uid: 1542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 179 -- proto: GasPipeStraight - entities: - - uid: 1443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 179 - - uid: 1444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 179 - - uid: 1445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 179 - - uid: 1446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 179 - - uid: 1447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 179 - - uid: 1448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-20.5 - parent: 179 - - uid: 1449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 179 - - uid: 1450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 179 - - uid: 1451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-14.5 - parent: 179 - - uid: 1452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-12.5 - parent: 179 - - uid: 1453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-10.5 - parent: 179 - - uid: 1454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 179 - - uid: 1455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 179 - - uid: 1456 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 179 - - uid: 1457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-12.5 - parent: 179 - - uid: 1458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-14.5 - parent: 179 - - uid: 1460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 179 - - uid: 1461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-18.5 - parent: 179 - - uid: 1483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-7.5 - parent: 179 - - uid: 1484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-8.5 - parent: 179 - - uid: 1485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-8.5 - parent: 179 - - uid: 1486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 179 - - uid: 1487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-9.5 - parent: 179 - - uid: 1522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-21.5 - parent: 179 - - uid: 1523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-20.5 - parent: 179 - - uid: 1524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-19.5 - parent: 179 - - uid: 1525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-18.5 - parent: 179 - - uid: 1526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-17.5 - parent: 179 - - uid: 1527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-16.5 - parent: 179 - - uid: 1528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-15.5 - parent: 179 - - uid: 1529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-14.5 - parent: 179 - - uid: 1530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 179 - - uid: 1531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-13.5 - parent: 179 - - uid: 1532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-10.5 - parent: 179 - - uid: 1533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-11.5 - parent: 179 - - uid: 1534 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-9.5 - parent: 179 - - uid: 1535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 179 - - uid: 1536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-9.5 - parent: 179 - - uid: 1537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 179 - - uid: 1538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 179 - - uid: 1539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 179 - - uid: 1540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-9.5 - parent: 179 - - uid: 1541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-9.5 - parent: 179 - - uid: 1546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-25.5 - parent: 179 - - uid: 1547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 179 - - uid: 1548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 179 - - uid: 1549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-22.5 - parent: 179 - - uid: 1550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-22.5 - parent: 179 - - uid: 1551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-22.5 - parent: 179 - - uid: 1552 - components: - - type: Transform - pos: 17.5,-23.5 - parent: 179 -- proto: GasPipeTJunction - entities: - - uid: 1479 - components: - - type: Transform - pos: 20.5,-9.5 - parent: 179 - - uid: 1481 - components: - - type: Transform - pos: 19.5,-7.5 - parent: 179 - - uid: 1553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 179 -- proto: GasPressurePump - entities: - - uid: 1459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-7.5 - parent: 179 - - uid: 1462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-9.5 - parent: 179 - - uid: 1463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-11.5 - parent: 179 - - uid: 1464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-13.5 - parent: 179 - - uid: 1465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-15.5 - parent: 179 - - uid: 1466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 179 - - uid: 1467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-19.5 - parent: 179 - - uid: 1468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-21.5 - parent: 179 - - uid: 1469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-23.5 - parent: 179 - - uid: 1470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 179 - - uid: 1471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-22.5 - parent: 179 - - uid: 1472 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-20.5 - parent: 179 - - uid: 1473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 179 - - uid: 1474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 179 - - uid: 1475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-14.5 - parent: 179 - - uid: 1476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 179 - - uid: 1477 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-10.5 - parent: 179 - - uid: 1478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 179 -- proto: GasThermoMachineFreezer - entities: - - uid: 480 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 179 - - uid: 616 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 179 -- proto: GasThermoMachineHeater - entities: - - uid: 483 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 179 - - uid: 1568 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 179 -- proto: GasValve - entities: - - uid: 1545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-24.5 - parent: 179 -- proto: GasVentPump - entities: - - uid: 1521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-22.5 - parent: 179 -- proto: GasVentScrubber - entities: - - uid: 1543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 179 -- proto: GeigerCounter - entities: - - uid: 759 - components: - - type: Transform - pos: 1.760596,4.5697265 - parent: 179 -- proto: GravityGenerator - entities: - - uid: 744 - components: - - type: Transform - pos: 6.5,6.5 - parent: 179 -- proto: Grille - entities: - - uid: 108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,23.5 - parent: 179 - - uid: 986 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 179 - - uid: 987 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 179 - - uid: 988 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 179 - - uid: 1007 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 179 - - uid: 1008 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 179 - - uid: 1009 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 179 - - uid: 1010 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 179 - - uid: 1011 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 179 - - uid: 1012 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 179 - - uid: 1089 - components: - - type: Transform - pos: 8.5,17.5 - parent: 179 - - uid: 1090 - components: - - type: Transform - pos: 9.5,17.5 - parent: 179 - - uid: 1091 - components: - - type: Transform - pos: 10.5,17.5 - parent: 179 - - uid: 1092 - components: - - type: Transform - pos: 10.5,16.5 - parent: 179 -- proto: Handcuffs - entities: - - uid: 331 - components: - - type: Transform - pos: -3.5805476,0.74100244 - parent: 179 -- proto: HandheldHealthAnalyzer - entities: - - uid: 513 - components: - - type: Transform - pos: -5.9808183,-3.6614444 - parent: 179 -- proto: HoloFan - entities: - - uid: 142 - components: - - type: Transform - pos: -8.5,7.5 - parent: 179 - - type: Fixtures - fixtures: {} - - type: Airtight - noAirWhenFullyAirBlocked: True - missingComponents: - - TimedDespawn - - uid: 901 - components: - - type: Transform - pos: -10.5,7.5 - parent: 179 - - type: Fixtures - fixtures: {} - - type: Airtight - noAirWhenFullyAirBlocked: True - missingComponents: - - TimedDespawn - - uid: 902 - components: - - type: Transform - pos: -9.5,7.5 - parent: 179 - - type: Fixtures - fixtures: {} - - type: Airtight - noAirWhenFullyAirBlocked: True - missingComponents: - - TimedDespawn -- proto: HolofanProjectorEmpty - entities: - - uid: 1569 - components: - - type: Transform - pos: 7.2439203,-7.545966 - parent: 179 -- proto: HolosignWetFloor - entities: - - uid: 848 - components: - - type: Transform - pos: -13.5,2.5 - parent: 179 - - type: Fixtures - fixtures: {} - missingComponents: - - TimedDespawn - - uid: 911 - components: - - type: Transform - pos: -13.5,1.5 - parent: 179 - - type: Fixtures - fixtures: {} - missingComponents: - - TimedDespawn -- proto: hydroponicsTray - entities: - - uid: 756 - components: - - type: Transform - pos: 2.5,14.5 - parent: 179 - - uid: 757 - components: - - type: Transform - pos: 2.5,15.5 - parent: 179 -- proto: Igniter - entities: - - uid: 728 - components: - - type: Transform - pos: 13.546334,-14.688479 - parent: 179 -- proto: KitchenReagentGrinder - entities: - - uid: 731 - components: - - type: Transform - pos: 8.5,9.5 - parent: 179 + ent: 1045 + inputContainer: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 1125 + components: + - type: Transform + pos: 52.5,42.5 + parent: 1 + - type: ContainerContainer + containers: + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1126 + inputContainer: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: KitchenSpike + entities: + - uid: 963 + components: + - type: Transform + pos: 25.5,40.5 + parent: 1 - proto: LargeBeaker entities: - - uid: 210 + - uid: 980 components: - type: Transform - pos: 4.3272614,9.338851 - parent: 179 - - uid: 253 + parent: 979 + - type: Physics + canCollide: False + - uid: 1045 components: - type: Transform - pos: 23.494947,7.0422435 - parent: 179 - - uid: 402 + parent: 1044 + - type: Physics + canCollide: False + - uid: 1126 components: - type: Transform - pos: 23.510572,7.7141185 - parent: 179 - - uid: 737 - components: - - type: Transform - pos: 4.2969,9.828774 - parent: 179 -- proto: LedLightTube - entities: - - uid: 481 - components: - - type: Transform - pos: -3.511025,-10.35149 - parent: 179 + parent: 1125 + - type: Physics + canCollide: False - proto: LockerAtmosphericsFilledHardsuit entities: - - uid: 1278 + - uid: 453 components: - type: Transform - pos: 7.5,-12.5 - parent: 179 + pos: 29.5,19.5 + parent: 1 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 454 + - 455 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1716 + components: + - type: Transform + pos: 80.5,18.5 + parent: 1 + - type: Lock + locked: False +- proto: LockerBoozeFilled + entities: + - uid: 976 + components: + - type: Transform + pos: 39.5,39.5 + parent: 1 + - type: Lock + locked: False - proto: LockerBotanistFilled entities: - - uid: 869 + - uid: 1063 components: - type: Transform - pos: 2.5,16.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerChemistry - entities: - - uid: 127 - components: - - type: Transform - pos: 27.5,6.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + pos: 34.625,43.5 + parent: 1 + - type: Lock + locked: False - proto: LockerChemistryFilled entities: - - uid: 297 + - uid: 1134 components: - type: Transform - pos: 7.5,9.5 - parent: 179 + pos: 53.375,41.5 + parent: 1 + - type: Lock + locked: False - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14957 + temperature: 293.14673 moles: - - 2.9923203 - - 11.2568245 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -5394,4672 +11809,8713 @@ entities: - 0 - proto: LockerChiefEngineerFilledHardsuit entities: - - uid: 1564 + - uid: 1332 components: - type: Transform - pos: 7.5,-13.5 - parent: 179 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 405 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 179 -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 458 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 179 -- proto: LockerMedical - entities: - - uid: 128 - components: - - type: Transform - pos: 27.5,5.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 129 - components: - - type: Transform - pos: 29.5,-1.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 130 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerMedicalFilled - entities: - - uid: 865 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerMedicineFilled - entities: - - uid: 562 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 493 - components: - - type: Transform - pos: -10.5,4.5 - parent: 179 + pos: 73.25,19.5 + parent: 1 - type: Lock locked: False - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerWeldingSuppliesFilled +- proto: LockerChiefMedicalOfficerFilledHardsuit entities: - - uid: 457 + - uid: 1231 components: - type: Transform - pos: 5.5,-7.5 - parent: 179 + pos: 59.5,37.5 + parent: 1 + - type: Lock + locked: False +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 1289 + components: + - type: Transform + pos: 73.75,19.5 + parent: 1 + - type: Lock + locked: False +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 755 + components: + - type: Transform + pos: 57.25,28.5 + parent: 1 + - type: Lock + locked: False +- proto: LockerScienceFilled + entities: + - uid: 814 + components: + - type: Transform + pos: 58.5,20.5 + parent: 1 + - type: Lock + locked: False - proto: MachineAnomalyGenerator entities: - - uid: 1071 + - uid: 126 components: - type: Transform - pos: 16.5,25.5 - parent: 179 + pos: 54.5,28.5 + parent: 1 - proto: MachineAnomalyVessel - entities: - - uid: 1087 - components: - - type: Transform - pos: 15.5,19.5 - parent: 179 -- proto: MachineArtifactAnalyzer - entities: - - uid: 1078 - components: - - type: Transform - pos: 12.5,24.5 - parent: 179 -- proto: MachineFrame - entities: - - uid: 533 - components: - - type: Transform - pos: -5.5,10.5 - parent: 179 -- proto: MedicalScanner - entities: - - uid: 592 - components: - - type: Transform - pos: 18.5,-1.5 - parent: 179 - - type: ContainerContainer - containers: - MedicalScanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - scanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 593 - components: - - type: Transform - pos: 18.5,-5.5 - parent: 179 - - type: ContainerContainer - containers: - MedicalScanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - scanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: MedkitFilled - entities: - - uid: 153 - components: - - type: Transform - pos: 13.632214,1.5673001 - parent: 179 - - uid: 154 - components: - - type: Transform - pos: 13.460339,0.6141751 - parent: 179 - - uid: 321 - components: - - type: Transform - pos: 3.8440318,4.425983 - parent: 179 -- proto: MicroManipulatorStockPart - entities: - - uid: 455 - components: - - type: Transform - pos: -6.337244,8.838643 - parent: 179 - - uid: 456 - components: - - type: Transform - pos: -5.920577,8.817795 - parent: 179 - - uid: 484 - components: - - type: Transform - pos: -5.5039105,8.838643 - parent: 179 - - uid: 712 - components: - - type: Transform - pos: -6.7434506,8.817795 - parent: 179 - - uid: 959 - components: - - type: Transform - pos: -4.752078,10.904018 - parent: 179 -- proto: ModularGrenade - entities: - - uid: 435 - components: - - type: Transform - pos: 6.829691,9.860046 - parent: 179 -- proto: MopBucket - entities: - - uid: 696 - components: - - type: Transform - pos: 7.5,16.5 - parent: 179 -- proto: MopItem - entities: - - uid: 328 - components: - - type: Transform - pos: 7.6382103,16.08618 - parent: 179 - - type: SolutionContainerManager - solutions: - absorbed: - temperature: 293.15 - canReact: True - maxVol: 50 - name: null - reagents: - - data: null - ReagentId: Water - Quantity: 25 -- proto: Multitool - entities: - - uid: 307 - components: - - type: Transform - pos: -1.249865,-10.43489 - parent: 179 - - uid: 430 - components: - - type: Transform - pos: -0.6298993,4.7431083 - parent: 179 - - type: NetworkConfigurator - devices: - 'UID: 31739': 801 -- proto: NitrogenCanister - entities: - - uid: 871 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 179 - - uid: 876 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 179 - - uid: 1315 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 179 -- proto: NitrousOxideCanister - entities: - - uid: 617 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 179 - - uid: 1302 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 179 - - uid: 1314 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 179 -- proto: Ointment - entities: - - uid: 148 - components: - - type: Transform - pos: 18.77326,6.653532 - parent: 179 - - uid: 149 - components: - - type: Transform - pos: 18.49201,6.059782 - parent: 179 -- proto: OxygenCanister entities: - uid: 747 components: - type: Transform - pos: 13.5,-3.5 - parent: 179 - - uid: 875 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 179 - - uid: 1310 - components: - - type: Transform - pos: 24.5,-7.5 - parent: 179 -- proto: PaperBin10 + pos: 52.5,28.5 + parent: 1 +- proto: MachineAnomalyVesselExperimental entities: - - uid: 977 + - uid: 752 components: - type: Transform - pos: 10.5,12.5 - parent: 179 -- proto: PartRodMetal + pos: 50.5,28.5 + parent: 1 +- proto: MachineArtifactAnalyzer entities: - - uid: 133 + - uid: 844 components: - type: Transform - pos: -3.4717777,7.672426 - parent: 179 -- proto: Pen + pos: 61.5,26.5 + parent: 1 +- proto: MachineCentrifuge entities: - - uid: 978 + - uid: 1123 components: - type: Transform - pos: 10.893699,12.7794075 - parent: 179 - - uid: 979 - components: - - type: Transform - pos: 10.862433,12.602201 - parent: 179 -- proto: PlasmaCanister + pos: 56.5,41.5 + parent: 1 +- proto: MachineElectrolysisUnit entities: - - uid: 255 + - uid: 1122 components: - type: Transform - pos: 10.5,-2.5 - parent: 179 - - uid: 256 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 179 - - uid: 1311 - components: - - type: Transform - pos: 24.5,-11.5 - parent: 179 -- proto: PlasticFlapsAirtightClear + pos: 52.5,41.5 + parent: 1 +- proto: MachineFrame entities: - - uid: 997 + - uid: 2701 components: - type: Transform - pos: -2.5,-16.5 - parent: 179 - - uid: 998 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 179 - - uid: 999 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 179 - - uid: 1000 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 179 -- proto: PlayerStationAi + pos: 35.5,16.5 + parent: 1 +- proto: MagazineBoxLightRifle entities: - - uid: 14 + - uid: 2071 components: - type: Transform - pos: -5.5,-5.5 - parent: 179 -- proto: PowerCellAntiqueProto + parent: 2068 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxLightRifleBig entities: - - uid: 1570 + - uid: 2069 components: - type: Transform - pos: 7.5772533,-7.233466 - parent: 179 -- proto: PowerCellHigh + parent: 2068 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxLightRifleIncendiary entities: - - uid: 567 + - uid: 2072 components: - type: Transform - pos: -4.76583,8.265328 - parent: 179 -- proto: PowerCellHyper + parent: 2068 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxLightRiflePractice entities: - - uid: 703 + - uid: 2073 components: - type: Transform - pos: -4.3179135,8.275752 - parent: 179 -- proto: PowerCellMedium + parent: 2068 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxLightRifleUranium entities: - - uid: 186 + - uid: 2070 components: - type: Transform - pos: -2.67511,-10.351 - parent: 179 - - uid: 187 - components: - - type: Transform - pos: -2.55011,-10.6635 - parent: 179 - - uid: 360 - components: - - type: Transform - pos: -3.7970803,8.275752 - parent: 179 -- proto: PowerCellRecharger + parent: 2068 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxPistol entities: - - uid: 709 + - uid: 2140 components: - type: Transform - pos: -1.5,-3.5 - parent: 179 -- proto: PowerCellSmall + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2142 + components: + - type: Transform + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxPistolIncendiary entities: - - uid: 705 + - uid: 2145 components: - type: Transform - pos: -3.3182633,8.234056 - parent: 179 -- proto: Poweredlight + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2148 + components: + - type: Transform + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxPistolPractice entities: - - uid: 93 + - uid: 2143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-5.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 249 + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-24.5 - parent: 179 - - uid: 536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-5.5 - parent: 179 - - uid: 660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,7.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 663 - components: - - type: Transform - pos: 22.5,2.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,18.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-5.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-10.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-5.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 682 - components: - - type: Transform - pos: 13.5,2.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,4.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1075 - components: - - type: Transform - pos: 16.5,27.5 - parent: 179 - - uid: 1076 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,22.5 - parent: 179 - - uid: 1425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 179 - - uid: 1426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 179 - - uid: 1427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 179 - - uid: 1428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 179 - - uid: 1429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 179 - - uid: 1430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-24.5 - parent: 179 - - uid: 1431 - components: - - type: Transform - pos: 14.5,-7.5 - parent: 179 - - uid: 1432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-23.5 - parent: 179 - - uid: 1433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-19.5 - parent: 179 - - uid: 1434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-15.5 - parent: 179 - - uid: 1435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-11.5 - parent: 179 - - uid: 1436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-7.5 - parent: 179 - - uid: 1437 - components: - - type: Transform - pos: 19.5,-7.5 - parent: 179 -- proto: PoweredlightExterior + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxPistolUranium entities: - - uid: 1557 + - uid: 2141 components: - type: Transform - pos: 16.5,-26.5 - parent: 179 -- proto: PoweredLightPostSmall + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2144 + components: + - type: Transform + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineGrenadeBaton entities: - - uid: 1438 + - uid: 2767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-17.5 - parent: 179 -- proto: PoweredSmallLight + pos: 2.575,-1.575 + parent: 2709 +- proto: MagazineGrenadeBlast entities: - - uid: 163 + - uid: 2768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,26.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,24.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,17.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 388 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 417 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 534 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-10.5 - parent: 179 -- proto: Protolathe + pos: 2.65,-1.65 + parent: 2709 +- proto: MagazineGrenadeEMP entities: - - uid: 12 + - uid: 2769 components: - type: Transform - pos: 13.5,21.5 - parent: 179 - - uid: 384 - components: - - type: Transform - pos: -6.5,6.5 - parent: 179 -- proto: Railing + pos: 2.5,-1.5 + parent: 2709 +- proto: MagazineGrenadeFlash entities: - - uid: 665 + - uid: 2770 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 179 - - uid: 927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 179 - - uid: 928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,11.5 - parent: 179 - - uid: 929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,12.5 - parent: 179 - - uid: 930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,13.5 - parent: 179 - - uid: 931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,14.5 - parent: 179 - - uid: 932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,15.5 - parent: 179 - - uid: 933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,16.5 - parent: 179 - - uid: 934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,17.5 - parent: 179 - - uid: 935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,17.5 - parent: 179 - - uid: 936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,17.5 - parent: 179 - - uid: 937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,17.5 - parent: 179 - - uid: 938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,17.5 - parent: 179 - - uid: 939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,17.5 - parent: 179 - - uid: 940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,17.5 - parent: 179 - - uid: 941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,17.5 - parent: 179 - - uid: 942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,17.5 - parent: 179 - - uid: 943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,17.5 - parent: 179 - - uid: 944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,17.5 - parent: 179 - - uid: 945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,17.5 - parent: 179 - - uid: 946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 179 - - uid: 947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,17.5 - parent: 179 - - uid: 948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 179 -- proto: RailingCornerSmall + pos: 2.425,-1.425 + parent: 2709 +- proto: MagazineGrenadeFrag entities: - - uid: 919 + - uid: 2771 components: - type: Transform - pos: -14.5,9.5 - parent: 179 -- proto: RCDExperimental + pos: 2.35,-1.35 + parent: 2709 +- proto: MagazineLightRifle entities: - - uid: 1575 + - uid: 2109 components: - type: Transform - pos: 1.6787996,-5.6922684 - parent: 179 -- proto: ReinforcedWindow + parent: 2107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2116 + components: + - type: Transform + parent: 2107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineLightRifleBox entities: - - uid: 1084 + - uid: 2074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,23.5 - parent: 179 - - uid: 1093 + parent: 2068 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2075 components: - type: Transform - pos: 8.5,17.5 - parent: 179 - - uid: 1094 + parent: 2068 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2076 components: - type: Transform - pos: 9.5,17.5 - parent: 179 - - uid: 1095 + parent: 2068 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2077 components: - type: Transform - pos: 10.5,17.5 - parent: 179 - - uid: 1096 - components: - - type: Transform - pos: 10.5,16.5 - parent: 179 -- proto: ResearchAndDevelopmentServer + parent: 2068 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineLightRifleIncendiary entities: - - uid: 17 + - uid: 2112 components: - type: Transform - pos: 8.5,18.5 - parent: 179 -- proto: ResearchDiskDebug + parent: 2107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2114 + components: + - type: Transform + parent: 2107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineLightRifleMaxim entities: - - uid: 54 + - uid: 2115 components: - type: Transform - pos: 9.532393,18.446417 - parent: 179 -- proto: RubberStampCaptain + parent: 2107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineLightRiflePractice entities: - - uid: 982 + - uid: 2110 components: - type: Transform - pos: 12.800895,12.664745 - parent: 179 -- proto: RubberStampCentcom + parent: 2107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2113 + components: + - type: Transform + parent: 2107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineLightRifleUranium entities: - - uid: 980 + - uid: 2108 components: - type: Transform - pos: 12.186007,12.716865 - parent: 179 -- proto: RubberStampSyndicate + parent: 2107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2111 + components: + - type: Transform + parent: 2107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolSubMachineGun entities: - - uid: 981 + - uid: 2062 components: - type: Transform - pos: 12.436131,12.550082 - parent: 179 -- proto: Screen + parent: 2061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2063 + components: + - type: Transform + parent: 2061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2152 + components: + - type: Transform + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2153 + components: + - type: Transform + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolSubMachineGunPractice entities: - - uid: 1192 + - uid: 2066 components: - type: Transform - pos: 4.5,-14.5 - parent: 179 -- proto: Screwdriver + parent: 2061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2067 + components: + - type: Transform + parent: 2061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2156 + components: + - type: Transform + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2157 + components: + - type: Transform + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 431 + - uid: 2147 components: - type: Transform - pos: -1.235331,4.739151 - parent: 179 -- proto: SeedExtractor + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2149 + components: + - type: Transform + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2150 + components: + - type: Transform + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2151 + components: + - type: Transform + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolSubMachineGunUranium entities: - - uid: 65 + - uid: 2064 components: - type: Transform - pos: 2.5,17.5 - parent: 179 -- proto: SheetGlass + parent: 2061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2065 + components: + - type: Transform + parent: 2061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2154 + components: + - type: Transform + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2155 + components: + - type: Transform + parent: 2139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineRifle entities: - - uid: 354 + - uid: 2091 components: - type: Transform - pos: 8.57603,21.566113 - parent: 179 - - uid: 479 + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2092 components: - type: Transform - pos: -5.13758,7.5586076 - parent: 179 - - uid: 529 + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2093 components: - type: Transform - pos: -15.5,-3.5 - parent: 179 - - uid: 564 + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2094 components: - type: Transform - pos: -15.5,-1.5 - parent: 179 - - uid: 565 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 179 - - uid: 566 - components: - - type: Transform - pos: -15.5,-3.5 - parent: 179 -- proto: SheetGlass1 + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineRifleIncendiary entities: - - uid: 960 + - uid: 2103 components: - type: Transform - pos: -3.981244,10.799851 - parent: 179 -- proto: SheetPGlass + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2104 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2105 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2106 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineRiflePractice entities: - - uid: 416 + - uid: 2099 components: - type: Transform - pos: -0.5,8.5 - parent: 179 -- proto: SheetPlasma + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2100 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2101 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2102 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineRifleUranium entities: - - uid: 1077 + - uid: 2095 components: - type: Transform - pos: 17.485096,24.503635 - parent: 179 -- proto: SheetPlasteel + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2096 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2097 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2098 + components: + - type: Transform + parent: 2078 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineShotgun entities: - - uid: 478 + - uid: 2045 components: - type: Transform - pos: -4.0129576,7.6107273 - parent: 179 -- proto: SheetPlastic + parent: 2042 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2049 + components: + - type: Transform + parent: 2042 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineShotgunBeanbag entities: - - uid: 79 + - uid: 2047 components: - type: Transform - pos: 8.951309,21.511908 - parent: 179 - - uid: 181 + parent: 2042 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2050 components: - type: Transform - pos: -4.54383,7.579455 - parent: 179 -- proto: SheetRPGlass + parent: 2042 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineShotgunIncendiary entities: - - uid: 182 + - uid: 2044 components: - type: Transform - pos: -0.5,7.5 - parent: 179 -- proto: SheetSteel + parent: 2042 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2048 + components: + - type: Transform + parent: 2042 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineShotgunSlug entities: - - uid: 205 + - uid: 2043 components: - type: Transform - pos: -15.5,-5.5 - parent: 179 - - uid: 305 + parent: 2042 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2046 components: - type: Transform - pos: 9.435405,21.503613 - parent: 179 - - uid: 382 - components: - - type: Transform - pos: -15.5,-5.5 - parent: 179 - - uid: 473 - components: - - type: Transform - pos: -5.6834707,7.529523 - parent: 179 - - uid: 543 - components: - - type: Transform - pos: -15.5,-4.5 - parent: 179 - - uid: 544 - components: - - type: Transform - pos: -15.5,-4.5 - parent: 179 -- proto: SignalButton + parent: 2042 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MapText entities: - - uid: 1013 + - uid: 55 components: - type: Transform - pos: -4.5,-14.5 - parent: 179 - - type: DeviceLinkSource - linkedPorts: - 202: - - Pressed: Toggle - 984: - - Pressed: Toggle - - uid: 1014 + pos: 33.5,26.5 + parent: 1 + - type: MapText + fontSize: 14 + text: Other + - type: PointLight + energy: 2 + radius: 2 + offset: 0,1 + - uid: 610 components: - type: Transform - pos: 3.5,-14.5 - parent: 179 - - type: DeviceLinkSource - linkedPorts: - 697: - - Pressed: Toggle - 698: - - Pressed: Toggle - - uid: 1560 + pos: 33.5,23.5 + parent: 1 + - type: MapText + fontSize: 14 + text: Weapons + - type: PointLight + energy: 5 + color: '#FF0000FF' + radius: 2 + offset: 0,1 + - uid: 611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-12.5 - parent: 179 - - type: DeviceLinkSource - linkedPorts: - 728: - - Pressed: Trigger -- proto: SignAtmos - entities: - - uid: 1301 + pos: 31.5,23.5 + parent: 1 + - type: MapText + fontSize: 14 + text: Service + - type: PointLight + energy: 5 + color: '#87EB87FF' + radius: 2 + offset: 0,1 + - uid: 612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 179 - - uid: 1558 + pos: 29.5,22.5 + parent: 1 + - type: MapText + fontSize: 14 + text: Medical + - type: PointLight + energy: 5 + color: '#87D1EBFF' + radius: 2 + offset: 0,1 + - uid: 613 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-6.5 - parent: 179 -- proto: SignCargoDock - entities: - - uid: 1046 + pos: 35.5,23.5 + parent: 1 + - type: MapText + fontSize: 14 + text: Engi & Atmos + - type: PointLight + energy: 5 + color: '#FFA500FF' + radius: 2 + offset: 0,1 + - uid: 614 components: - type: Transform - pos: 4.5,-4.5 - parent: 179 -- proto: SignCryogenics - entities: - - uid: 1298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-15.5 - parent: 179 -- proto: SignDanger - entities: - - uid: 1203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-19.5 - parent: 179 -- proto: SignFlammable - entities: - - uid: 1297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-13.5 - parent: 179 - - uid: 1299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-11.5 - parent: 179 -- proto: SignSpace - entities: - - uid: 1291 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 179 - - uid: 1555 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 179 - - uid: 1563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-25.5 - parent: 179 -- proto: SmallLight - entities: - - uid: 1048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-15.5 - parent: 179 - - uid: 1049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 179 -- proto: SMESBasic - entities: - - uid: 1017 - components: - - type: Transform - pos: -6.5,-12.5 - parent: 179 -- proto: SodaDispenser - entities: - - uid: 751 - components: - - type: Transform - pos: 8.5,12.5 - parent: 179 -- proto: SpawnMobCorgiMouse - entities: - - uid: 1050 - components: - - type: Transform - pos: 3.5,8.5 - parent: 179 -- proto: SpawnMobHuman - entities: - - uid: 138 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 179 - - uid: 139 - components: - - type: Transform - pos: -6.5,0.5 - parent: 179 - - uid: 140 - components: - - type: Transform - pos: 3.5,7.5 - parent: 179 -- proto: SpawnPointCaptain - entities: - - uid: 954 - components: - - type: Transform - pos: -4.5,4.5 - parent: 179 -- proto: SpawnPointLatejoin - entities: - - uid: 961 - components: - - type: Transform - pos: -3.5,3.5 - parent: 179 -- proto: SpawnPointObserver - entities: - - uid: 679 - components: - - type: Transform - pos: -3.5,4.5 - parent: 179 -- proto: Spear - entities: - - uid: 185 - components: - - type: Transform - pos: -3.4579864,-1.9811735 - parent: 179 -- proto: SprayBottleWater - entities: - - uid: 903 - components: - - type: Transform - pos: 6.985283,16.424004 - parent: 179 -- proto: SprayPainter - entities: - - uid: 1572 - components: - - type: Transform - pos: 7.5948057,-5.356733 - parent: 179 -- proto: Stimpack - entities: - - uid: 462 - components: - - type: Transform - pos: 3.6877818,5.312015 - parent: 179 -- proto: Stool - entities: - - uid: 383 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 179 - - uid: 387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-6.5 - parent: 179 -- proto: StorageCanister - entities: - - uid: 1285 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 179 - - uid: 1286 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 179 - - uid: 1287 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 179 - - uid: 1288 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 179 -- proto: Stunbaton - entities: - - uid: 434 - components: - - type: Transform - pos: -3.1734612,-2.6066077 - parent: 179 -- proto: SubstationBasic - entities: - - uid: 1018 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 179 -- proto: SurveillanceCameraGeneral + pos: 37.5,22.5 + parent: 1 + - type: MapText + fontSize: 14 + text: R&D + - type: PointLight + energy: 5 + color: '#EB87EBFF' + radius: 2 + offset: 0,1 +- proto: MaterialBiomass entities: - uid: 1186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,10.5 - parent: 179 - - uid: 1188 + pos: 46.5,40.5 + parent: 1 + - uid: 1187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,21.5 - parent: 179 - - uid: 1190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,10.5 - parent: 179 -- proto: SurveillanceCameraRouterGeneral + pos: 46.5,40.5 + parent: 1 +- proto: MaterialWoodPlank entities: - - uid: 1189 - components: - - type: Transform - pos: 9.5,24.5 - parent: 179 -- proto: Syringe - entities: - - uid: 460 - components: - - type: Transform - pos: 3.2502818,4.5823417 - parent: 179 - - uid: 738 - components: - - type: Transform - pos: 5.767191,9.787079 - parent: 179 -- proto: Table - entities: - - uid: 63 - components: - - type: Transform - pos: 9.5,21.5 - parent: 179 - - uid: 64 - components: - - type: Transform - pos: 10.5,21.5 - parent: 179 - - uid: 67 - components: - - type: Transform - pos: 8.5,21.5 - parent: 179 - - uid: 76 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 179 - - uid: 92 - components: - - type: Transform - pos: 11.5,21.5 - parent: 179 - - uid: 143 - components: - - type: Transform - pos: 33.5,-3.5 - parent: 179 - - uid: 144 - components: - - type: Transform - pos: 33.5,-2.5 - parent: 179 - - uid: 145 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 179 - - uid: 161 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 179 - - uid: 162 - components: - - type: Transform - pos: 23.5,-5.5 - parent: 179 - - uid: 172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 - parent: 179 - - uid: 180 - components: - - type: Transform - pos: -4.5,10.5 - parent: 179 - - uid: 262 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 179 - - uid: 263 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 179 - - uid: 264 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 179 - - uid: 265 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 179 - - uid: 267 - components: - - type: Transform - pos: 23.5,5.5 - parent: 179 - - uid: 268 - components: - - type: Transform - pos: 23.5,6.5 - parent: 179 - - uid: 298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,9.5 - parent: 179 - - uid: 299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,9.5 - parent: 179 - - uid: 300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 179 - - uid: 312 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 179 - - uid: 313 - components: - - type: Transform - pos: -2.5,-10.5 - parent: 179 - - uid: 314 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 179 - - uid: 315 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 179 - - uid: 355 - components: - - type: Transform - pos: -6.5,7.5 - parent: 179 - - uid: 356 - components: - - type: Transform - pos: -5.5,7.5 - parent: 179 - - uid: 357 - components: - - type: Transform - pos: -4.5,7.5 - parent: 179 - - uid: 358 - components: - - type: Transform - pos: -3.5,7.5 - parent: 179 - - uid: 361 - components: - - type: Transform - pos: -0.5,7.5 - parent: 179 - - uid: 362 - components: - - type: Transform - pos: 0.5,7.5 - parent: 179 - - uid: 363 - components: - - type: Transform - pos: 1.5,7.5 - parent: 179 - - uid: 366 - components: - - type: Transform - pos: -2.5,4.5 - parent: 179 - - uid: 367 - components: - - type: Transform - pos: -1.5,4.5 - parent: 179 - - uid: 368 - components: - - type: Transform - pos: -0.5,4.5 - parent: 179 - - uid: 371 - components: - - type: Transform - pos: 1.5,4.5 - parent: 179 - - uid: 385 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 179 - - uid: 386 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 179 - - uid: 440 - components: - - type: Transform - pos: 0.5,4.5 - parent: 179 - - uid: 445 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 179 - - uid: 448 - components: - - type: Transform - pos: 3.5,5.5 - parent: 179 - - uid: 452 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 179 - - uid: 461 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 179 - - uid: 465 - components: - - type: Transform - pos: 1.5,8.5 - parent: 179 - - uid: 466 - components: - - type: Transform - pos: 0.5,8.5 - parent: 179 - - uid: 467 - components: - - type: Transform - pos: -3.5,8.5 - parent: 179 - - uid: 468 - components: - - type: Transform - pos: -0.5,8.5 - parent: 179 - - uid: 470 - components: - - type: Transform - pos: -6.5,8.5 - parent: 179 - - uid: 471 - components: - - type: Transform - pos: -5.5,8.5 - parent: 179 - - uid: 472 - components: - - type: Transform - pos: -4.5,8.5 - parent: 179 - - uid: 515 - components: - - type: Transform - pos: -15.5,-5.5 - parent: 179 - - uid: 516 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 179 - - uid: 520 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 179 - - uid: 559 - components: - - type: Transform - pos: -15.5,-4.5 - parent: 179 - - uid: 560 - components: - - type: Transform - pos: -15.5,-3.5 - parent: 179 - - uid: 568 - components: - - type: Transform - pos: 18.5,4.5 - parent: 179 - - uid: 569 - components: - - type: Transform - pos: 21.5,6.5 - parent: 179 - - uid: 570 - components: - - type: Transform - pos: 20.5,6.5 - parent: 179 - - uid: 571 - components: - - type: Transform - pos: 18.5,6.5 - parent: 179 - - uid: 572 - components: - - type: Transform - pos: 19.5,6.5 - parent: 179 - - uid: 573 - components: - - type: Transform - pos: 18.5,5.5 - parent: 179 - - uid: 574 - components: - - type: Transform - pos: 22.5,8.5 - parent: 179 - - uid: 575 - components: - - type: Transform - pos: 24.5,4.5 - parent: 179 - - uid: 584 - components: - - type: Transform - pos: 23.5,7.5 - parent: 179 - - uid: 586 - components: - - type: Transform - pos: 25.5,10.5 - parent: 179 - - uid: 587 - components: - - type: Transform - pos: 23.5,10.5 - parent: 179 - - uid: 588 - components: - - type: Transform - pos: 24.5,10.5 - parent: 179 - - uid: 589 - components: - - type: Transform - pos: 26.5,10.5 - parent: 179 - - uid: 590 - components: - - type: Transform - pos: 27.5,10.5 - parent: 179 - - uid: 594 - components: - - type: Transform - pos: 13.5,2.5 - parent: 179 - - uid: 595 - components: - - type: Transform - pos: 13.5,0.5 - parent: 179 - - uid: 596 - components: - - type: Transform - pos: 13.5,1.5 - parent: 179 - - uid: 684 - components: - - type: Transform - pos: -3.5,0.5 - parent: 179 - - uid: 685 - components: - - type: Transform - pos: 3.5,4.5 - parent: 179 - - uid: 686 - components: - - type: Transform - pos: 3.5,6.5 - parent: 179 - - uid: 706 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 179 - - uid: 707 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 179 - - uid: 710 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 179 - - uid: 1561 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 179 -- proto: TableGlass - entities: - - uid: 964 - components: - - type: Transform - pos: 9.5,12.5 - parent: 179 - - uid: 965 - components: - - type: Transform - pos: 11.5,12.5 - parent: 179 - - uid: 966 - components: - - type: Transform - pos: 13.5,12.5 - parent: 179 - - uid: 975 - components: - - type: Transform - pos: 10.5,12.5 - parent: 179 - - uid: 976 - components: - - type: Transform - pos: 12.5,12.5 - parent: 179 -- proto: TargetClown - entities: - - uid: 459 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 179 -- proto: TargetHuman - entities: - - uid: 159 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 179 - - uid: 248 - components: - - type: Transform - pos: 7.5,1.5 - parent: 179 -- proto: TargetSyndicate - entities: - - uid: 613 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 179 -- proto: TegCenter - entities: - - uid: 1576 + - uid: 1658 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 179 -- proto: TegCirculator + pos: 80.5,14.501 + parent: 1 +- proto: MedicalBed entities: - - uid: 1577 + - uid: 1180 components: - type: Transform - pos: 14.5,-18.5 - parent: 179 - - type: PointLight - color: '#FF3300FF' - - uid: 1578 + pos: 49.5,37.5 + parent: 1 +- proto: MedicalScanner + entities: + - uid: 1185 + components: + - type: Transform + pos: 46.5,38.5 + parent: 1 +- proto: MedicalTechFab + entities: + - uid: 1212 + components: + - type: Transform + pos: 58.5,41.5 + parent: 1 +- proto: MeleeDebug100 + entities: + - uid: 2684 + components: + - type: Transform + pos: 70.5,41 + parent: 1 +- proto: MetalFoamGrenade + entities: + - uid: 2192 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2195 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ModularGrenade + entities: + - uid: 2856 + components: + - type: Transform + pos: 56.351364,43.66378 + parent: 1 + - uid: 2857 + components: + - type: Transform + pos: 56.47026,43.544853 + parent: 1 +- proto: MonkeyCubeBox + entities: + - uid: 787 + components: + - type: Transform + pos: 58.655544,24.326258 + parent: 1 + - uid: 1001 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Morgue + entities: + - uid: 1207 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 179 - - type: PointLight - color: '#FF3300FF' -- proto: TelecomServerFilled - entities: - - uid: 963 - components: - - type: Transform - pos: -3.5,10.5 - parent: 179 -- proto: TimerTrigger - entities: - - uid: 482 - components: - - type: Transform - pos: 6.413024,9.39097 - parent: 179 -- proto: ToolboxElectricalFilled - entities: - - uid: 365 - components: - - type: Transform - pos: 0.4993378,3.429311 - parent: 179 - - uid: 419 - components: - - type: Transform - pos: -0.8099712,-5.21454 - parent: 179 - - uid: 420 - components: - - type: Transform - pos: -0.5597038,-5.679647 - parent: 179 -- proto: ToolboxMechanicalFilled - entities: - - uid: 364 - components: - - type: Transform - pos: 1.452203,3.4605832 - parent: 179 -- proto: ToyRubberDuck - entities: - - uid: 723 - components: - - type: Transform - pos: -1.6653601,11.616664 - parent: 179 -- proto: trayScanner - entities: - - uid: 758 - components: - - type: Transform - pos: 1.354346,4.548879 - parent: 179 -- proto: TritiumCanister - entities: - - uid: 254 - components: - - type: Transform - pos: 13.5,-2.5 - parent: 179 - - uid: 619 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 179 - - uid: 1312 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 179 -- proto: TwoWayLever - entities: - - uid: 699 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 179 - - type: DeviceLinkSource - linkedPorts: - 990: - - Left: Forward - - Right: Reverse - - Middle: Off - 195: - - Left: Forward - - Right: Reverse - - Middle: Off - 991: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 722 - components: - - type: Transform - pos: 1.5,11.5 - parent: 179 - - type: DeviceLinkSource - linkedPorts: - 721: - - Left: Forward - - Right: Reverse - - Middle: Off - 720: - - Left: Forward - - Right: Reverse - - Middle: Off - 716: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 983 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 179 - - type: DeviceLinkSource - linkedPorts: - 985: - - Left: Forward - - Right: Reverse - - Middle: Off - 259: - - Left: Forward - - Right: Reverse - - Middle: Off - 989: - - Left: Forward - - Right: Reverse - - Middle: Off - 463: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 1290 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 179 - - type: TwoWayLever - nextSignalLeft: True - - type: DeviceLinkSource - linkedPorts: - 1234: - - Left: Open - - Right: Open - - Middle: Close - 1233: - - Left: Open - - Right: Open - - Middle: Close - 1232: - - Left: Open - - Right: Open - - Middle: Close - 728: - - Left: Trigger - - Right: Trigger - - Middle: Trigger - - uid: 1499 - components: - - type: Transform - pos: 11.5,-12.5 - parent: 179 - - type: DeviceLinkSource - linkedPorts: - 1385: - - Left: Open - - Right: Open - - Middle: Close - - uid: 1520 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 179 - - type: DeviceLinkSource - linkedPorts: - 1230: - - Left: Open - - Right: Open - - Middle: Close -- proto: UnfinishedMachineFrame - entities: - - uid: 522 - components: - - type: Transform - pos: -6.5,10.5 - parent: 179 -- proto: UniformPrinter - entities: - - uid: 443 - components: - - type: Transform - pos: -7.5,4.5 - parent: 179 -- proto: VendingMachineCigs - entities: - - uid: 870 - components: - - type: Transform - pos: -14.5,4.5 - parent: 179 -- proto: VendingMachineEngivend + pos: 59.5,34.5 + parent: 1 +- proto: Multitool entities: - uid: 441 components: - type: Transform - pos: -11.5,4.5 - parent: 179 - - uid: 523 - components: - - type: Transform - pos: -11.5,-1.5 - parent: 179 - - uid: 1567 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 179 - - type: ActionGrant - actions: - - ActionVendingThrow - - ActionVendingThrow - - ActionVendingThrow - - ActionVendingThrow -- proto: VendingMachineMedical + rot: -1.5707963267948966 rad + pos: 37.504547,15.171228 + parent: 1 +- proto: NitrogenCanister entities: - - uid: 156 + - uid: 1450 components: - type: Transform - pos: 25.5,-5.5 - parent: 179 - - uid: 157 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 179 - - uid: 158 - components: - - type: Transform - pos: 29.5,3.5 - parent: 179 - - uid: 521 - components: - - type: Transform - pos: -12.5,4.5 - parent: 179 -- proto: VendingMachineSalvage + pos: 96.5,16.5 + parent: 1 +- proto: NitrogenTankFilled entities: - - uid: 485 + - uid: 454 components: - type: Transform - pos: -15.5,4.5 - parent: 179 -- proto: VendingMachineSec + parent: 453 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NitrousOxideCanister entities: - - uid: 874 + - uid: 1411 components: - type: Transform - pos: -13.5,4.5 - parent: 179 -- proto: VendingMachineTankDispenserEngineering + pos: 96.5,28.5 + parent: 1 +- proto: NodeScanner entities: - - uid: 615 + - uid: 806 components: - type: Transform - pos: 17.5,-7.5 - parent: 179 -- proto: VendingMachineTankDispenserEVA + pos: 58.5,28.5 + parent: 1 +- proto: NuclearGrenade entities: - - uid: 614 + - uid: 2180 components: - type: Transform - pos: 14.5,-7.5 - parent: 179 -- proto: VendingMachineVendomat + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2183 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OperatingTable entities: - - uid: 1565 - components: - - type: Transform - pos: 5.5,-12.5 - parent: 179 -- proto: VendingMachineYouTool - entities: - - uid: 350 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 179 - - uid: 1566 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 179 - - type: ActionGrant - actions: - - ActionVendingThrow - - ActionVendingThrow - - ActionVendingThrow - - ActionVendingThrow -- proto: WallSolid - entities: - - uid: 3 - components: - - type: Transform - pos: 1.5,18.5 - parent: 179 - - uid: 4 - components: - - type: Transform - pos: 11.5,26.5 - parent: 179 - - uid: 5 - components: - - type: Transform - pos: 18.5,24.5 - parent: 179 - - uid: 6 - components: - - type: Transform - pos: 20.5,15.5 - parent: 179 - - uid: 8 - components: - - type: Transform - pos: 14.5,19.5 - parent: 179 - - uid: 9 - components: - - type: Transform - pos: 1.5,19.5 - parent: 179 - - uid: 10 - components: - - type: Transform - pos: 18.5,26.5 - parent: 179 - - uid: 11 - components: - - type: Transform - pos: 13.5,26.5 - parent: 179 - - uid: 13 - components: - - type: Transform - pos: 25.5,15.5 - parent: 179 - - uid: 18 - components: - - type: Transform - pos: 4.5,26.5 - parent: 179 - - uid: 19 - components: - - type: Transform - pos: 18.5,25.5 - parent: 179 - - uid: 21 - components: - - type: Transform - pos: 10.5,26.5 - parent: 179 - - uid: 22 - components: - - type: Transform - pos: 26.5,15.5 - parent: 179 - - uid: 25 - components: - - type: Transform - pos: 1.5,21.5 - parent: 179 - - uid: 27 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 179 - - uid: 28 - components: - - type: Transform - pos: 18.5,18.5 - parent: 179 - - uid: 29 - components: - - type: Transform - pos: 18.5,21.5 - parent: 179 - - uid: 30 - components: - - type: Transform - pos: 1.5,22.5 - parent: 179 - - uid: 31 - components: - - type: Transform - pos: 1.5,20.5 - parent: 179 - - uid: 32 - components: - - type: Transform - pos: 18.5,19.5 - parent: 179 - - uid: 33 - components: - - type: Transform - pos: 23.5,15.5 - parent: 179 - - uid: 34 - components: - - type: Transform - pos: 12.5,22.5 - parent: 179 - - uid: 35 - components: - - type: Transform - pos: 27.5,15.5 - parent: 179 - - uid: 36 - components: - - type: Transform - pos: 7.5,22.5 - parent: 179 - - uid: 37 - components: - - type: Transform - pos: 14.5,22.5 - parent: 179 - - uid: 38 - components: - - type: Transform - pos: 10.5,23.5 - parent: 179 - - uid: 39 - components: - - type: Transform - pos: 10.5,24.5 - parent: 179 - - uid: 40 - components: - - type: Transform - pos: 8.5,26.5 - parent: 179 - - uid: 41 - components: - - type: Transform - pos: 10.5,25.5 - parent: 179 - - uid: 42 - components: - - type: Transform - pos: 18.5,22.5 - parent: 179 - - uid: 43 - components: - - type: Transform - pos: 14.5,27.5 - parent: 179 - - uid: 44 - components: - - type: Transform - pos: 14.5,26.5 - parent: 179 - - uid: 45 - components: - - type: Transform - pos: 1.5,16.5 - parent: 179 - - uid: 46 - components: - - type: Transform - pos: 18.5,27.5 - parent: 179 - - uid: 49 - components: - - type: Transform - pos: 7.5,28.5 - parent: 179 - - uid: 50 - components: - - type: Transform - pos: 13.5,22.5 - parent: 179 - - uid: 51 - components: - - type: Transform - pos: 12.5,26.5 - parent: 179 - - uid: 52 - components: - - type: Transform - pos: 1.5,15.5 - parent: 179 - - uid: 53 - components: - - type: Transform - pos: 9.5,26.5 - parent: 179 - - uid: 55 - components: - - type: Transform - pos: 24.5,15.5 - parent: 179 - - uid: 56 - components: - - type: Transform - pos: 14.5,25.5 - parent: 179 - - uid: 57 - components: - - type: Transform - pos: 14.5,21.5 - parent: 179 - - uid: 60 - components: - - type: Transform - pos: 7.5,21.5 - parent: 179 - - uid: 61 - components: - - type: Transform - pos: 18.5,20.5 - parent: 179 - - uid: 62 - components: - - type: Transform - pos: 18.5,23.5 - parent: 179 - - uid: 66 - components: - - type: Transform - pos: 18.5,17.5 - parent: 179 - - uid: 68 - components: - - type: Transform - pos: 18.5,28.5 - parent: 179 - - uid: 69 - components: - - type: Transform - pos: 28.5,15.5 - parent: 179 - - uid: 71 - components: - - type: Transform - pos: 11.5,22.5 - parent: 179 - - uid: 72 - components: - - type: Transform - pos: 1.5,17.5 - parent: 179 - - uid: 73 - components: - - type: Transform - pos: 14.5,28.5 - parent: 179 - - uid: 74 - components: - - type: Transform - pos: 10.5,22.5 - parent: 179 - - uid: 75 - components: - - type: Transform - pos: 9.5,22.5 - parent: 179 - - uid: 78 - components: - - type: Transform - pos: 21.5,15.5 - parent: 179 - - uid: 80 - components: - - type: Transform - pos: 18.5,16.5 - parent: 179 - - uid: 81 - components: - - type: Transform - pos: 18.5,15.5 - parent: 179 - - uid: 82 - components: - - type: Transform - pos: 14.5,18.5 - parent: 179 - - uid: 83 - components: - - type: Transform - pos: 4.5,28.5 - parent: 179 - - uid: 84 - components: - - type: Transform - pos: 7.5,26.5 - parent: 179 - - uid: 85 - components: - - type: Transform - pos: 1.5,23.5 - parent: 179 - - uid: 86 - components: - - type: Transform - pos: 17.5,15.5 - parent: 179 - - uid: 89 - components: - - type: Transform - pos: 22.5,15.5 - parent: 179 - - uid: 95 - components: - - type: Transform - pos: 8.5,22.5 - parent: 179 - - uid: 96 - components: - - type: Transform - pos: 7.5,27.5 - parent: 179 - - uid: 98 - components: - - type: Transform - pos: 4.5,25.5 - parent: 179 - - uid: 99 - components: - - type: Transform - pos: 17.5,18.5 - parent: 179 - - uid: 100 - components: - - type: Transform - pos: 19.5,15.5 - parent: 179 - - uid: 101 - components: - - type: Transform - pos: 4.5,27.5 - parent: 179 - - uid: 103 - components: - - type: Transform - pos: 14.5,17.5 - parent: 179 - - uid: 104 - components: - - type: Transform - pos: 14.5,16.5 - parent: 179 - - uid: 105 - components: - - type: Transform - pos: 15.5,15.5 - parent: 179 - - uid: 106 - components: - - type: Transform - pos: 14.5,15.5 - parent: 179 - - uid: 107 - components: - - type: Transform - pos: 13.5,15.5 - parent: 179 - - uid: 109 - components: - - type: Transform - pos: 11.5,15.5 - parent: 179 - - uid: 110 - components: - - type: Transform - pos: 10.5,15.5 - parent: 179 - - uid: 112 - components: - - type: Transform - pos: 7.5,19.5 - parent: 179 - - uid: 113 - components: - - type: Transform - pos: 7.5,18.5 - parent: 179 - - uid: 114 - components: - - type: Transform - pos: 7.5,17.5 - parent: 179 - - uid: 117 - components: - - type: Transform - pos: 5.5,18.5 - parent: 179 - - uid: 118 - components: - - type: Transform - pos: 5.5,19.5 - parent: 179 - - uid: 121 - components: - - type: Transform - pos: 4.5,19.5 - parent: 179 - - uid: 122 - components: - - type: Transform - pos: 4.5,20.5 - parent: 179 - - uid: 123 - components: - - type: Transform - pos: 4.5,21.5 - parent: 179 - - uid: 124 - components: - - type: Transform - pos: 4.5,22.5 - parent: 179 - - uid: 125 - components: - - type: Transform - pos: 4.5,23.5 - parent: 179 - - uid: 126 - components: - - type: Transform - pos: 4.5,24.5 - parent: 179 - - uid: 160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 179 - - uid: 164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,9.5 - parent: 179 - - uid: 165 - components: - - type: Transform - pos: 8.5,2.5 - parent: 179 - - uid: 168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 179 - - uid: 169 - components: - - type: Transform - pos: 8.5,0.5 - parent: 179 - - uid: 171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 179 - - uid: 173 - components: - - type: Transform - pos: 8.5,1.5 - parent: 179 - - uid: 189 - components: - - type: Transform - pos: -7.5,0.5 - parent: 179 - - uid: 190 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 179 - - uid: 191 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 179 - - uid: 192 - components: - - type: Transform - pos: -7.5,-2.5 - parent: 179 - - uid: 193 - components: - - type: Transform - pos: -7.5,-3.5 - parent: 179 - - uid: 196 - components: - - type: Transform - pos: 3.5,-14.5 - parent: 179 - - uid: 197 - components: - - type: Transform - pos: 4.5,-14.5 - parent: 179 - - uid: 198 - components: - - type: Transform - pos: -7.5,-10.5 - parent: 179 - - uid: 199 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 179 - - uid: 200 - components: - - type: Transform - pos: -7.5,-12.5 - parent: 179 - - uid: 201 - components: - - type: Transform - pos: -7.5,-13.5 - parent: 179 - - uid: 208 - components: - - type: Transform - pos: -7.5,-9.5 - parent: 179 - - uid: 209 - components: - - type: Transform - pos: -10.5,-7.5 - parent: 179 - - uid: 211 - components: - - type: Transform - pos: -10.5,-5.5 - parent: 179 - - uid: 212 - components: - - type: Transform - pos: -10.5,-4.5 - parent: 179 - - uid: 213 - components: - - type: Transform - pos: -10.5,-3.5 - parent: 179 - - uid: 214 - components: - - type: Transform - pos: -10.5,-2.5 - parent: 179 - - uid: 215 - components: - - type: Transform - pos: -10.5,-1.5 - parent: 179 - - uid: 217 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 179 - - uid: 218 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 179 - - uid: 219 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 179 - - uid: 220 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 179 - - uid: 221 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 179 - - uid: 222 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 179 - - uid: 223 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 179 - - uid: 224 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 179 - - uid: 225 - components: - - type: Transform - pos: -6.5,-4.5 - parent: 179 - - uid: 226 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 179 - - uid: 227 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 179 - - uid: 228 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 179 - - uid: 229 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 179 - - uid: 231 - components: - - type: Transform - pos: -6.5,-14.5 - parent: 179 - - uid: 232 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 179 - - uid: 233 - components: - - type: Transform - pos: -4.5,-14.5 - parent: 179 - - uid: 234 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 179 - - uid: 235 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 179 - - uid: 236 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 179 - - uid: 237 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 179 - - uid: 238 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 179 - - uid: 239 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 179 - - uid: 240 - components: - - type: Transform - pos: -7.5,-8.5 - parent: 179 - - uid: 241 - components: - - type: Transform - pos: -7.5,-7.5 - parent: 179 - - uid: 242 - components: - - type: Transform - pos: -8.5,-8.5 - parent: 179 - - uid: 243 - components: - - type: Transform - pos: -9.5,-8.5 - parent: 179 - - uid: 244 - components: - - type: Transform - pos: -10.5,-8.5 - parent: 179 - - uid: 245 - components: - - type: Transform - pos: -7.5,-5.5 - parent: 179 - - uid: 260 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 179 - - uid: 261 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 179 - - uid: 266 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 179 - - uid: 271 - components: - - type: Transform - pos: 1.5,14.5 - parent: 179 - - uid: 272 - components: - - type: Transform - pos: 1.5,13.5 - parent: 179 - - uid: 273 - components: - - type: Transform - pos: 1.5,12.5 - parent: 179 - - uid: 274 - components: - - type: Transform - pos: -7.5,11.5 - parent: 179 - - uid: 275 - components: - - type: Transform - pos: -6.5,11.5 - parent: 179 - - uid: 276 - components: - - type: Transform - pos: -5.5,11.5 - parent: 179 - - uid: 277 - components: - - type: Transform - pos: -4.5,11.5 - parent: 179 - - uid: 278 - components: - - type: Transform - pos: -3.5,11.5 - parent: 179 - - uid: 279 - components: - - type: Transform - pos: -2.5,11.5 - parent: 179 - - uid: 282 - components: - - type: Transform - pos: -1.5,12.5 - parent: 179 - - uid: 283 - components: - - type: Transform - pos: -0.5,12.5 - parent: 179 - - uid: 284 - components: - - type: Transform - pos: 0.5,12.5 - parent: 179 - - uid: 288 - components: - - type: Transform - pos: 12.5,8.5 - parent: 179 - - uid: 289 - components: - - type: Transform - pos: 11.5,8.5 - parent: 179 - - uid: 290 - components: - - type: Transform - pos: 10.5,8.5 - parent: 179 - - uid: 291 - components: - - type: Transform - pos: 9.5,8.5 - parent: 179 - - uid: 292 - components: - - type: Transform - pos: 8.5,8.5 - parent: 179 - - uid: 293 - components: - - type: Transform - pos: 7.5,8.5 - parent: 179 - - uid: 294 - components: - - type: Transform - pos: 6.5,8.5 - parent: 179 - - uid: 295 - components: - - type: Transform - pos: 5.5,8.5 - parent: 179 - - uid: 301 - components: - - type: Transform - pos: 9.5,11.5 - parent: 179 - - uid: 302 - components: - - type: Transform - pos: 10.5,11.5 - parent: 179 - - uid: 303 - components: - - type: Transform - pos: 11.5,11.5 - parent: 179 - - uid: 304 - components: - - type: Transform - pos: 12.5,11.5 - parent: 179 - - uid: 310 - components: - - type: Transform - pos: 9.5,9.5 - parent: 179 - - uid: 316 - components: - - type: Transform - pos: -7.5,-4.5 - parent: 179 - - uid: 317 - components: - - type: Transform - pos: 26.5,14.5 - parent: 179 - - uid: 320 - components: - - type: Transform - pos: 24.5,14.5 - parent: 179 - - uid: 322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-11.5 - parent: 179 - - uid: 329 - components: - - type: Transform - pos: -11.5,5.5 - parent: 179 - - uid: 335 - components: - - type: Transform - pos: 13.5,11.5 - parent: 179 - - uid: 336 - components: - - type: Transform - pos: 14.5,11.5 - parent: 179 - - uid: 337 - components: - - type: Transform - pos: 13.5,9.5 - parent: 179 - - uid: 338 - components: - - type: Transform - pos: 13.5,8.5 - parent: 179 - - uid: 339 - components: - - type: Transform - pos: 13.5,7.5 - parent: 179 - - uid: 341 - components: - - type: Transform - pos: 24.5,12.5 - parent: 179 - - uid: 342 - components: - - type: Transform - pos: 26.5,12.5 - parent: 179 - - uid: 346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-7.5 - parent: 179 - - uid: 352 - components: - - type: Transform - pos: 13.5,6.5 - parent: 179 - - uid: 353 - components: - - type: Transform - pos: 13.5,5.5 - parent: 179 - - uid: 372 - components: - - type: Transform - pos: 13.5,4.5 - parent: 179 - - uid: 373 - components: - - type: Transform - pos: 25.5,4.5 - parent: 179 - - uid: 374 - components: - - type: Transform - pos: 23.5,4.5 - parent: 179 - - uid: 375 - components: - - type: Transform - pos: 17.5,3.5 - parent: 179 - - uid: 376 - components: - - type: Transform - pos: -10.5,-0.5 - parent: 179 - - uid: 377 - components: - - type: Transform - pos: -10.5,0.5 - parent: 179 - - uid: 379 - components: - - type: Transform - pos: -8.5,0.5 - parent: 179 - - uid: 390 - components: - - type: Transform - pos: 18.5,3.5 - parent: 179 - - uid: 391 - components: - - type: Transform - pos: 19.5,3.5 - parent: 179 - - uid: 392 - components: - - type: Transform - pos: 21.5,3.5 - parent: 179 - - uid: 393 - components: - - type: Transform - pos: 22.5,3.5 - parent: 179 - - uid: 394 - components: - - type: Transform - pos: 22.5,4.5 - parent: 179 - - uid: 395 - components: - - type: Transform - pos: 22.5,5.5 - parent: 179 - - uid: 396 - components: - - type: Transform - pos: 22.5,6.5 - parent: 179 - - uid: 397 - components: - - type: Transform - pos: 22.5,7.5 - parent: 179 - - uid: 399 - components: - - type: Transform - pos: 22.5,10.5 - parent: 179 - - uid: 400 - components: - - type: Transform - pos: 21.5,11.5 - parent: 179 - - uid: 401 - components: - - type: Transform - pos: 22.5,11.5 - parent: 179 - - uid: 439 - components: - - type: Transform - pos: -13.5,5.5 - parent: 179 - - uid: 449 - components: - - type: Transform - pos: -16.5,2.5 - parent: 179 - - uid: 450 - components: - - type: Transform - pos: -16.5,3.5 - parent: 179 - - uid: 464 - components: - - type: Transform - pos: 4.5,8.5 - parent: 179 - - uid: 474 - components: - - type: Transform - pos: -7.5,8.5 - parent: 179 - - uid: 475 - components: - - type: Transform - pos: -7.5,7.5 - parent: 179 - - uid: 476 - components: - - type: Transform - pos: -7.5,6.5 - parent: 179 - - uid: 477 - components: - - type: Transform - pos: -7.5,5.5 - parent: 179 - - uid: 486 - components: - - type: Transform - pos: -15.5,5.5 - parent: 179 - - uid: 487 - components: - - type: Transform - pos: -16.5,4.5 - parent: 179 - - uid: 488 - components: - - type: Transform - pos: 5.5,17.5 - parent: 179 - - uid: 489 - components: - - type: Transform - pos: -11.5,0.5 - parent: 179 - - uid: 491 - components: - - type: Transform - pos: -16.5,5.5 - parent: 179 - - uid: 492 - components: - - type: Transform - pos: -14.5,5.5 - parent: 179 - - uid: 494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,7.5 - parent: 179 - - uid: 495 - components: - - type: Transform - pos: -12.5,5.5 - parent: 179 - - uid: 496 - components: - - type: Transform - pos: -16.5,1.5 - parent: 179 - - uid: 497 - components: - - type: Transform - pos: -16.5,0.5 - parent: 179 - - uid: 498 - components: - - type: Transform - pos: -16.5,-0.5 - parent: 179 - - uid: 499 - components: - - type: Transform - pos: -16.5,-1.5 - parent: 179 - - uid: 500 - components: - - type: Transform - pos: -16.5,-2.5 - parent: 179 - - uid: 501 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 179 - - uid: 502 - components: - - type: Transform - pos: -16.5,-4.5 - parent: 179 - - uid: 503 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 179 - - uid: 504 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 179 - - uid: 505 - components: - - type: Transform - pos: -16.5,-7.5 - parent: 179 - - uid: 506 - components: - - type: Transform - pos: -16.5,-8.5 - parent: 179 - - uid: 507 - components: - - type: Transform - pos: -15.5,-8.5 - parent: 179 - - uid: 508 - components: - - type: Transform - pos: -14.5,-8.5 - parent: 179 - - uid: 509 - components: - - type: Transform - pos: -13.5,-8.5 - parent: 179 - - uid: 510 - components: - - type: Transform - pos: -12.5,-8.5 - parent: 179 - - uid: 511 - components: - - type: Transform - pos: -11.5,-8.5 - parent: 179 - - uid: 517 - components: - - type: Transform - pos: 23.5,11.5 - parent: 179 - - uid: 518 - components: - - type: Transform - pos: 24.5,11.5 - parent: 179 - - uid: 519 - components: - - type: Transform - pos: 25.5,11.5 - parent: 179 - - uid: 535 - components: - - type: Transform - pos: -15.5,0.5 - parent: 179 - - uid: 539 - components: - - type: Transform - pos: 26.5,11.5 - parent: 179 - - uid: 540 - components: - - type: Transform - pos: 27.5,11.5 - parent: 179 - - uid: 545 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 179 - - uid: 547 - components: - - type: Transform - pos: 28.5,11.5 - parent: 179 - - uid: 548 - components: - - type: Transform - pos: 28.5,10.5 - parent: 179 - - uid: 549 - components: - - type: Transform - pos: 28.5,9.5 - parent: 179 - - uid: 550 - components: - - type: Transform - pos: 28.5,8.5 - parent: 179 - - uid: 551 - components: - - type: Transform - pos: 28.5,7.5 - parent: 179 - - uid: 552 - components: - - type: Transform - pos: 28.5,6.5 - parent: 179 - - uid: 553 - components: - - type: Transform - pos: 28.5,5.5 - parent: 179 - - uid: 554 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 179 - - uid: 555 - components: - - type: Transform - pos: 26.5,-1.5 - parent: 179 - - uid: 556 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 179 - - uid: 557 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 179 - - uid: 558 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 179 - - uid: 561 - components: - - type: Transform - pos: -14.5,0.5 - parent: 179 - - uid: 585 - components: - - type: Transform - pos: 9.5,10.5 - parent: 179 - - uid: 597 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 179 - - uid: 598 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 179 - - uid: 599 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 179 - - uid: 600 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 179 - - uid: 601 - components: - - type: Transform - pos: 21.5,-0.5 - parent: 179 - - uid: 602 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 179 - - uid: 603 - components: - - type: Transform - pos: 14.5,3.5 - parent: 179 - - uid: 604 - components: - - type: Transform - pos: 13.5,3.5 - parent: 179 - - uid: 605 - components: - - type: Transform - pos: 12.5,3.5 - parent: 179 - - uid: 606 - components: - - type: Transform - pos: 12.5,2.5 - parent: 179 - - uid: 607 - components: - - type: Transform - pos: 12.5,1.5 - parent: 179 - - uid: 608 - components: - - type: Transform - pos: 12.5,0.5 - parent: 179 - - uid: 609 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 179 - - uid: 610 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 179 - - uid: 611 - components: - - type: Transform - pos: 14.5,-0.5 - parent: 179 - - uid: 612 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 179 - - uid: 618 - components: - - type: Transform - pos: 14.5,-6.5 - parent: 179 - - uid: 620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 179 - - uid: 621 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 179 - - uid: 622 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 179 - - uid: 623 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 179 - - uid: 624 - components: - - type: Transform - pos: 20.5,-6.5 - parent: 179 - - uid: 625 - components: - - type: Transform - pos: 21.5,-6.5 - parent: 179 - - uid: 626 - components: - - type: Transform - pos: 22.5,-6.5 - parent: 179 - - uid: 627 - components: - - type: Transform - pos: 23.5,-6.5 - parent: 179 - - uid: 628 - components: - - type: Transform - pos: 24.5,-6.5 - parent: 179 - - uid: 629 - components: - - type: Transform - pos: 25.5,-6.5 - parent: 179 - - uid: 630 - components: - - type: Transform - pos: 26.5,-6.5 - parent: 179 - - uid: 631 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 179 - - uid: 632 - components: - - type: Transform - pos: 26.5,-4.5 - parent: 179 - - uid: 633 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 179 - - uid: 634 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 179 - - uid: 635 - components: - - type: Transform - pos: 29.5,-6.5 - parent: 179 - - uid: 636 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 179 - - uid: 637 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 179 - - uid: 638 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 179 - - uid: 639 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 179 - - uid: 640 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 179 - - uid: 641 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 179 - - uid: 642 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 179 - - uid: 643 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 179 - - uid: 644 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 179 - - uid: 645 - components: - - type: Transform - pos: 34.5,-1.5 - parent: 179 - - uid: 646 - components: - - type: Transform - pos: 34.5,-0.5 - parent: 179 - - uid: 647 - components: - - type: Transform - pos: 33.5,-0.5 - parent: 179 - - uid: 648 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 179 - - uid: 649 - components: - - type: Transform - pos: 31.5,-0.5 - parent: 179 - - uid: 650 - components: - - type: Transform - pos: 30.5,-0.5 - parent: 179 - - uid: 651 - components: - - type: Transform - pos: 29.5,-0.5 - parent: 179 - - uid: 652 - components: - - type: Transform - pos: 30.5,0.5 - parent: 179 - - uid: 653 - components: - - type: Transform - pos: 30.5,1.5 - parent: 179 - - uid: 654 - components: - - type: Transform - pos: 30.5,2.5 - parent: 179 - - uid: 655 - components: - - type: Transform - pos: 30.5,3.5 - parent: 179 - - uid: 656 - components: - - type: Transform - pos: 30.5,4.5 - parent: 179 - - uid: 657 - components: - - type: Transform - pos: 29.5,4.5 - parent: 179 - - uid: 658 - components: - - type: Transform - pos: 28.5,4.5 - parent: 179 - - uid: 659 - components: - - type: Transform - pos: 27.5,4.5 - parent: 179 - - uid: 680 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 179 - - uid: 702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,6.5 - parent: 179 - - uid: 713 - components: - - type: Transform - pos: -7.5,9.5 - parent: 179 - - uid: 714 - components: - - type: Transform - pos: -7.5,10.5 - parent: 179 - - uid: 724 - components: - - type: Transform - pos: -2.5,12.5 - parent: 179 - - uid: 733 - components: - - type: Transform - pos: 4.5,5.5 - parent: 179 - - uid: 734 - components: - - type: Transform - pos: 4.5,4.5 - parent: 179 - - uid: 739 - components: - - type: Transform - pos: 8.5,7.5 - parent: 179 - - uid: 740 - components: - - type: Transform - pos: 8.5,6.5 - parent: 179 - - uid: 741 - components: - - type: Transform - pos: 8.5,5.5 - parent: 179 - - uid: 742 - components: - - type: Transform - pos: 8.5,4.5 - parent: 179 - - uid: 743 - components: - - type: Transform - pos: 8.5,3.5 - parent: 179 - - uid: 745 - components: - - type: Transform - pos: 4.5,7.5 - parent: 179 - - uid: 746 - components: - - type: Transform - pos: 4.5,6.5 - parent: 179 - - uid: 846 - components: - - type: Transform - pos: 2.5,19.5 - parent: 179 - - uid: 847 - components: - - type: Transform - pos: 3.5,19.5 - parent: 179 - - uid: 925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,17.5 - parent: 179 - - uid: 958 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,18.5 - parent: 179 - - uid: 1016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 179 - - uid: 1072 - components: - - type: Transform - pos: 15.5,28.5 - parent: 179 - - uid: 1073 - components: - - type: Transform - pos: 16.5,28.5 - parent: 179 - - uid: 1074 - components: - - type: Transform - pos: 17.5,28.5 - parent: 179 - - uid: 1176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 179 - - uid: 1181 - components: - - type: Transform - pos: 5.5,28.5 - parent: 179 - - uid: 1206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-12.5 - parent: 179 - - uid: 1209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 179 - - uid: 1210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-17.5 - parent: 179 - - uid: 1211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-15.5 - parent: 179 - - uid: 1212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-19.5 - parent: 179 - - uid: 1213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-18.5 - parent: 179 - - uid: 1214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-22.5 - parent: 179 - - uid: 1215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 179 - uid: 1216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-21.5 - parent: 179 - - uid: 1217 + pos: 59.5,39.5 + parent: 1 +- proto: OxygenCanister + entities: + - uid: 423 + components: + - type: Transform + pos: 13.5,19.5 + parent: 1 + - uid: 794 + components: + - type: Transform + pos: 54.5,26.5 + parent: 1 + - uid: 1449 + components: + - type: Transform + pos: 96.5,18.5 + parent: 1 +- proto: OxygenTankFilled + entities: + - uid: 455 + components: + - type: Transform + parent: 453 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Paper + entities: + - uid: 802 + components: + - type: Transform + parent: 801 + - type: Physics + canCollide: False +- proto: PlaqueAtmos + entities: + - uid: 3156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,13.5 + parent: 1 +- proto: PlasmaCanister + entities: + - uid: 793 + components: + - type: Transform + pos: 54.5,25.5 + parent: 1 + - type: Lock + locked: False + - uid: 1451 + components: + - type: Transform + pos: 96.5,14.5 + parent: 1 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 2772 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2709 + - uid: 2773 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2709 + - uid: 2774 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2709 + - uid: 2775 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2709 +- proto: PlayerStationAi + entities: + - uid: 775 + components: + - type: Transform + pos: 50.5,22.5 + parent: 1 +- proto: PlushieArachind + entities: + - uid: 3153 + components: + - type: Transform + pos: 81.526054,7.4306707 + parent: 1 +- proto: PlushieAtmosian + entities: + - uid: 2660 + components: + - type: Transform + pos: 25.5,46.5 + parent: 1 +- proto: PortableScrubber + entities: + - uid: 1053 + components: + - type: Transform + pos: 36.5,45.5 + parent: 1 +- proto: PortalGatewayBlue + entities: + - uid: 50 + components: + - type: MetaData + name: to other + - type: Transform + pos: 33.5,27.5 + parent: 1 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 2523 + missingComponents: + - PointLight + - uid: 76 + components: + - type: MetaData + name: to weapons + - type: Transform + pos: 33.5,24.5 + parent: 1 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 2257 + missingComponents: + - PointLight + - uid: 121 + components: + - type: MetaData + name: to back + - type: Transform + pos: 54.5,22.5 + parent: 1 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 616 + missingComponents: + - PointLight + - uid: 615 + components: + - type: MetaData + name: to engi & atmos + - type: Transform + pos: 35.5,24.5 + parent: 1 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 1376 + missingComponents: + - PointLight + - uid: 616 + components: + - type: MetaData + name: to r&d + - type: Transform + pos: 37.5,23.5 + parent: 1 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 121 + missingComponents: + - PointLight + - uid: 617 + components: + - type: MetaData + name: to service + - type: Transform + pos: 31.5,24.5 + parent: 1 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 984 + missingComponents: + - PointLight + - uid: 618 + components: + - type: MetaData + name: to medical + - type: Transform + pos: 29.5,23.5 + parent: 1 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 1201 + missingComponents: + - PointLight + - uid: 984 + components: + - type: MetaData + name: to back + - type: Transform + pos: 33.5,36.5 + parent: 1 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 617 + missingComponents: + - PointLight + - uid: 1201 + components: + - type: MetaData + name: to back + - type: Transform + pos: 54.5,36.5 + parent: 1 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 618 + missingComponents: + - PointLight + - uid: 1376 + components: + - type: MetaData + name: to back + - type: Transform + pos: 77.5,14.5 + parent: 1 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 615 + missingComponents: + - PointLight + - uid: 2257 + components: + - type: MetaData + name: to back + - type: Transform + pos: 70.5,33.5 + parent: 1 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 76 + - uid: 2523 + components: + - type: MetaData + name: to back + - type: Transform + pos: 43.5,50.5 + parent: 1 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 50 + missingComponents: + - PointLight +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 3157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,11.5 + parent: 1 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 3144 + components: + - type: Transform + pos: 61.5,39.5 + parent: 1 +- proto: PottedPlant21 + entities: + - uid: 928 + components: + - type: Transform + pos: 35.5,41.5 + parent: 1 +- proto: PottedPlantBioluminscent + entities: + - uid: 1255 + components: + - type: Transform + pos: 52.5,40.25 + parent: 1 + - uid: 1256 + components: + - type: Transform + pos: 56.5,40.25 + parent: 1 +- proto: PottedPlantRandom + entities: + - uid: 1903 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 33.5,13.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1 + - uid: 586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,10.5 + parent: 1 + - uid: 587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,4.5 + parent: 1 + - uid: 588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,1.5 + parent: 1 + - uid: 589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 1 + - uid: 590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,1.5 + parent: 1 + - uid: 591 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-13.5 - parent: 179 - - uid: 1218 + pos: 42.5,4.5 + parent: 1 + - uid: 592 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-14.5 - parent: 179 - - uid: 1219 + pos: 42.5,10.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 39.5,13.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 30.5,19.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 36.5,19.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 47.5,13.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: 53.5,13.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: 59.5,13.5 + parent: 1 + - uid: 601 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 179 - - uid: 1226 - components: - - type: Transform - pos: 6.5,-22.5 - parent: 179 - - uid: 1228 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 179 - - uid: 1229 + pos: 62.5,10.5 + parent: 1 + - uid: 602 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-19.5 - parent: 179 - - uid: 1231 + pos: 62.5,4.5 + parent: 1 + - uid: 603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,1.5 + parent: 1 + - uid: 604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,1.5 + parent: 1 + - uid: 605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,1.5 + parent: 1 + - uid: 606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,4.5 + parent: 1 + - uid: 607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,10.5 + parent: 1 + - uid: 842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,38.5 + parent: 1 + - uid: 843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,25.5 + parent: 1 + - uid: 845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,21.5 + parent: 1 + - uid: 846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 179 + pos: 51.5,21.5 + parent: 1 + - uid: 847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,24.5 + parent: 1 + - uid: 848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,24.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 52.5,28.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: 56.5,28.5 + parent: 1 + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,17.5 + parent: 1 + - uid: 1027 + components: + - type: Transform + pos: 29.5,41.5 + parent: 1 + - uid: 1028 + components: + - type: Transform + pos: 37.5,41.5 + parent: 1 + - uid: 1029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,38.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + pos: 31.5,47.5 + parent: 1 + - uid: 1065 + components: + - type: Transform + pos: 35.5,47.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,44.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,44.5 + parent: 1 + - uid: 1259 + components: + - type: Transform + pos: 51.5,40.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + pos: 57.5,40.5 + parent: 1 + - uid: 1261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,39.5 + parent: 1 + - uid: 1262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,37.5 + parent: 1 - uid: 1263 components: - type: Transform - pos: 6.5,-23.5 - parent: 179 - - uid: 1272 + pos: 49.5,42.5 + parent: 1 + - uid: 1264 components: - type: Transform - pos: 6.5,-24.5 - parent: 179 - - uid: 1294 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 179 - - uid: 1295 - components: - - type: Transform - pos: 25.5,-23.5 - parent: 179 - - uid: 1303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-1.5 - parent: 179 - - uid: 1304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 179 - - uid: 1305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-3.5 - parent: 179 - - uid: 1306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-4.5 - parent: 179 - - uid: 1307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-5.5 - parent: 179 - - uid: 1328 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 179 - - uid: 1329 - components: - - type: Transform - pos: 24.5,-25.5 - parent: 179 - - uid: 1330 - components: - - type: Transform - pos: 23.5,-25.5 - parent: 179 - - uid: 1331 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 179 - - uid: 1332 - components: - - type: Transform - pos: 21.5,-25.5 - parent: 179 - - uid: 1333 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 179 - - uid: 1334 - components: - - type: Transform - pos: 19.5,-25.5 - parent: 179 - - uid: 1337 - components: - - type: Transform - pos: 16.5,-25.5 - parent: 179 - - uid: 1338 - components: - - type: Transform - pos: 15.5,-25.5 - parent: 179 - - uid: 1339 - components: - - type: Transform - pos: 14.5,-25.5 - parent: 179 - - uid: 1340 - components: - - type: Transform - pos: 12.5,-25.5 - parent: 179 - - uid: 1341 - components: - - type: Transform - pos: 11.5,-25.5 - parent: 179 - - uid: 1342 - components: - - type: Transform - pos: 10.5,-25.5 - parent: 179 - - uid: 1343 - components: - - type: Transform - pos: 9.5,-25.5 - parent: 179 - - uid: 1344 - components: - - type: Transform - pos: 8.5,-25.5 - parent: 179 - - uid: 1345 - components: - - type: Transform - pos: 7.5,-25.5 - parent: 179 - - uid: 1346 - components: - - type: Transform - pos: 6.5,-25.5 - parent: 179 - - uid: 1347 - components: - - type: Transform - pos: 13.5,-25.5 - parent: 179 - - uid: 1506 - components: - - type: Transform - pos: 10.5,-12.5 - parent: 179 - - uid: 1559 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 179 -- proto: WarningCO2 - entities: - - uid: 1300 + pos: 54.5,44.5 + parent: 1 + - uid: 1265 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-21.5 - parent: 179 -- proto: WarningN2 - entities: - - uid: 1208 + pos: 60.5,39.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,16.5 + parent: 1 + - uid: 1718 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 179 -- proto: WarningN2O - entities: - - uid: 1296 + pos: 96.5,13.5 + parent: 1 + - uid: 1719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,13.5 + parent: 1 + - uid: 1720 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-17.5 - parent: 179 -- proto: WarningO2 - entities: - - uid: 1227 + pos: 96.5,21.5 + parent: 1 + - uid: 1721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,21.5 + parent: 1 + - uid: 1722 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-7.5 - parent: 179 -- proto: WaterTankFull + pos: 96.5,17.5 + parent: 1 + - uid: 1723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,13.5 + parent: 1 + - type: Stealth + - type: StealthOnMove + - uid: 1724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,5.5 + parent: 1 + - uid: 1725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,25.5 + parent: 1 + - uid: 1726 + components: + - type: Transform + pos: 85.5,29.5 + parent: 1 + - uid: 1727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,21.5 + parent: 1 + - type: Stealth + - type: StealthOnMove + - uid: 1728 + components: + - type: Transform + pos: 90.5,29.5 + parent: 1 + - uid: 1729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,8.5 + parent: 1 + - uid: 1730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,8.5 + parent: 1 + - uid: 1731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,25.5 + parent: 1 + - uid: 1732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,4.5 + parent: 1 + - uid: 1733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,2.5 + parent: 1 + - uid: 1734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,4.5 + parent: 1 + - uid: 1933 + components: + - type: Transform + pos: 72.5,19.5 + parent: 1 + - uid: 1935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,18.5 + parent: 1 + - uid: 1936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,18.5 + parent: 1 + - uid: 2206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,38.5 + parent: 1 + - uid: 2209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,43.5 + parent: 1 + - uid: 2211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,35.5 + parent: 1 + - uid: 2214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,35.5 + parent: 1 + - uid: 2216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,35.5 + parent: 1 + - uid: 2218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,35.5 + parent: 1 + - uid: 2219 + components: + - type: Transform + pos: 75.5,45.5 + parent: 1 + - uid: 2220 + components: + - type: Transform + pos: 83.5,45.5 + parent: 1 + - uid: 2221 + components: + - type: Transform + pos: 79.5,45.5 + parent: 1 + - uid: 2222 + components: + - type: Transform + pos: 68.5,47.5 + parent: 1 + - uid: 2223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,38.5 + parent: 1 + - uid: 2224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,43.5 + parent: 1 + - uid: 2226 + components: + - type: Transform + pos: 72.5,47.5 + parent: 1 + - uid: 2524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,55.5 + parent: 1 + - uid: 2525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,52.5 + parent: 1 + - uid: 2526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,52.5 + parent: 1 + - uid: 2527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,65.5 + parent: 1 + - uid: 2528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,60.5 + parent: 1 + - uid: 2529 + components: + - type: Transform + pos: 38.5,68.5 + parent: 1 + - uid: 2530 + components: + - type: Transform + pos: 43.5,68.5 + parent: 1 + - uid: 2531 + components: + - type: Transform + pos: 48.5,68.5 + parent: 1 + - uid: 2532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,65.5 + parent: 1 + - uid: 2533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,60.5 + parent: 1 + - uid: 2534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,55.5 + parent: 1 + - uid: 2535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,60.5 + parent: 1 + - type: Stealth + - type: StealthOnMove + - uid: 2776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2709 + - uid: 2777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2709 + - uid: 2778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2709 + - type: PointLight + offset: 0,-0.25 + - uid: 3137 + components: + - type: Transform + pos: 77.5,11.5 + parent: 1 +- proto: PoweredlightCyan entities: - - uid: 115 + - uid: 1030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,39.5 + parent: 1 + - uid: 1934 + components: + - type: Transform + pos: 77.5,24.5 + parent: 1 +- proto: PoweredLightPostSmall + entities: + - uid: 408 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 14.5,10.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 4.5,34.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 26.5,34.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 4.5,27.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 26.5,27.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 15.5,34.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 18.5,19.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 27.5,15.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 27.5,19.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 33.5,7.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 53.5,7.5 + parent: 1 + - uid: 1268 + components: + - type: Transform + pos: 73.5,11.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + pos: 71.5,11.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 1266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,35.5 + parent: 1 +- proto: PoweredStrobeLightPolice + entities: + - uid: 2779 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2709 +- proto: Protolathe + entities: + - uid: 427 + components: + - type: Transform + pos: 35.5,19.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: 53.5,26.5 + parent: 1 + - uid: 1301 + components: + - type: Transform + pos: 70.5,18.5 + parent: 1 +- proto: Rack + entities: + - uid: 422 + components: + - type: Transform + pos: 17.5,19.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: 56.5,28.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: 50.5,20.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + pos: 31.5,43.5 + parent: 1 + - uid: 1636 + components: + - type: Transform + pos: 80.5,14.5 + parent: 1 + - uid: 1637 + components: + - type: Transform + pos: 80.5,19.5 + parent: 1 + - uid: 2175 + components: + - type: Transform + pos: 74.5,35.5 + parent: 1 + - uid: 2706 + components: + - type: Transform + pos: 70.5,39.5 + parent: 1 + - type: Physics + canCollide: False + - uid: 2780 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2709 + - uid: 3117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,11.5 + parent: 1 + - uid: 3118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,11.5 + parent: 1 +- proto: Railing + entities: + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,21.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,22.5 + parent: 1 + - uid: 241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,24.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,26.5 + parent: 1 + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,28.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,30.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,31.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,32.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,33.5 + parent: 1 + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,33.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,34.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,34.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,34.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,34.5 + parent: 1 + - uid: 257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,34.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,34.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,34.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,34.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,34.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,34.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,34.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,34.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,34.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,34.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,34.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,34.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,34.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,34.5 + parent: 1 + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,34.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,34.5 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,32.5 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,31.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,30.5 + parent: 1 + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,29.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,28.5 + parent: 1 + - uid: 279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,27.5 + parent: 1 + - uid: 280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,26.5 + parent: 1 + - uid: 281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,25.5 + parent: 1 + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,24.5 + parent: 1 + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,22.5 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,23.5 + parent: 1 + - uid: 285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,21.5 + parent: 1 + - uid: 286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,20.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 13.5,14.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 + - uid: 297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 18.5,14.5 + parent: 1 + - uid: 299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 1 + - uid: 300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,11.5 + parent: 1 + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,11.5 + parent: 1 + - uid: 302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,12.5 + parent: 1 + - uid: 406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,19.5 + parent: 1 + - uid: 1354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,12.5 + parent: 1 + - uid: 1355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,11.5 + parent: 1 + - uid: 1356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,12.5 + parent: 1 + - uid: 1357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,11.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,34.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,34.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,16.5 + parent: 1 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 1 + - uid: 235 components: - type: Transform pos: 4.5,18.5 - parent: 179 - - uid: 694 + parent: 1 + - uid: 236 components: - type: Transform - pos: -2.5,3.5 - parent: 179 -- proto: WaterVaporCanister + rot: -1.5707963267948966 rad + pos: 3.5,18.5 + parent: 1 + - uid: 294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,14.5 + parent: 1 + - uid: 295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1 + - uid: 405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,19.5 + parent: 1 +- proto: RandomArtifactSpawner entities: - - uid: 97 + - uid: 861 components: - type: Transform - pos: 12.5,-1.5 - parent: 179 - - uid: 319 + pos: 61.5,26.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 3150 components: - type: Transform - pos: 13.5,-1.5 - parent: 179 + pos: 37.5,19.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 123 + components: + - type: Transform + pos: 59.5,25.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 59.5,27.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 766 + components: + - type: Transform + pos: 50.5,23.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: 58.5,23.5 + parent: 1 + - uid: 951 + components: + - type: Transform + pos: 31.5,42.5 + parent: 1 + - uid: 977 + components: + - type: Transform + pos: 35.5,42.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + pos: 32.5,42.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: 34.5,42.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: 76.5,19.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + pos: 78.5,19.5 + parent: 1 + - uid: 2212 + components: + - type: Transform + pos: 83.5,38.5 + parent: 1 + - uid: 2215 + components: + - type: Transform + pos: 83.5,37.5 + parent: 1 + - uid: 2217 + components: + - type: Transform + pos: 83.5,36.5 + parent: 1 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 772 + components: + - type: Transform + pos: 51.5,20.5 + parent: 1 +- proto: ResearchDiskDebug + entities: + - uid: 1929 + components: + - type: Transform + pos: 50.542976,20.508951 + parent: 1 +- proto: RobustHarvestChemistryBottle + entities: + - uid: 1058 + components: + - type: Transform + pos: 30.295897,44.102787 + parent: 1 +- proto: SalvageMagnet + entities: + - uid: 2678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,18.5 + parent: 1 +- proto: ScalpelLaser + entities: + - uid: 1267 + components: + - type: Transform + rot: 0.22689280275926285 rad + pos: 57.48462,40.584305 + parent: 1 +- proto: Screwdriver + entities: + - uid: 438 + components: + - type: Transform + pos: 36.44469,14.437829 + parent: 1 +- proto: SeedExtractor + entities: + - uid: 1037 + components: + - type: Transform + pos: 31.5,47.5 + parent: 1 +- proto: SheetGlass + entities: + - uid: 448 + components: + - type: Transform + pos: 33.5,16 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 33.5,16 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 33.5,16 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: 52.5,26 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: 52.5,26 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: 52.5,26 + parent: 1 + - uid: 1361 + components: + - type: Transform + pos: 72,19.502 + parent: 1 + - uid: 1362 + components: + - type: Transform + pos: 72,19.502 + parent: 1 + - uid: 1363 + components: + - type: Transform + pos: 72,19.502 + parent: 1 + - uid: 1648 + components: + - type: Transform + pos: 80.5,14.5 + parent: 1 + - uid: 1649 + components: + - type: Transform + pos: 80.5,14.5 + parent: 1 + - uid: 1650 + components: + - type: Transform + pos: 80.5,14.5 + parent: 1 + - uid: 1651 + components: + - type: Transform + pos: 80.5,14.5 + parent: 1 + - uid: 1652 + components: + - type: Transform + pos: 80.5,14.5 + parent: 1 + - uid: 1653 + components: + - type: Transform + pos: 80.5,14.5 + parent: 1 + - uid: 1654 + components: + - type: Transform + pos: 80.5,14.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + pos: 80.5,14.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + pos: 80.5,14.5 + parent: 1 + - uid: 1657 + components: + - type: Transform + pos: 80.5,14.5 + parent: 1 +- proto: SheetPlasma + entities: + - uid: 741 + components: + - type: Transform + pos: 56.5,28.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 56.5,28.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 56.5,28.5 + parent: 1 +- proto: SheetPlasma10 + entities: + - uid: 1128 + components: + - type: Transform + pos: 52.5,43.5 + parent: 1 +- proto: SheetPlasteel + entities: + - uid: 1358 + components: + - type: Transform + pos: 71.75,19.501 + parent: 1 + - uid: 1359 + components: + - type: Transform + pos: 71.75,19.501 + parent: 1 + - uid: 1360 + components: + - type: Transform + pos: 71.75,19.501 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: 80.5,19.5 + parent: 1 + - uid: 1639 + components: + - type: Transform + pos: 80.5,19.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + pos: 80.5,19.5 + parent: 1 + - uid: 1641 + components: + - type: Transform + pos: 80.5,19.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + pos: 80.5,19.5 + parent: 1 + - uid: 1643 + components: + - type: Transform + pos: 80.5,19.5 + parent: 1 + - uid: 1644 + components: + - type: Transform + pos: 80.5,19.5 + parent: 1 + - uid: 1645 + components: + - type: Transform + pos: 80.5,19.5 + parent: 1 + - uid: 1646 + components: + - type: Transform + pos: 80.5,19.5 + parent: 1 + - uid: 1647 + components: + - type: Transform + pos: 80.5,19.5 + parent: 1 +- proto: SheetPlastic + entities: + - uid: 445 + components: + - type: Transform + pos: 33.5,15.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: 33.5,15.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: 33.5,15.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: 52.375,25.75 + parent: 1 + - uid: 840 + components: + - type: Transform + pos: 52.375,25.75 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: 52.375,25.75 + parent: 1 + - uid: 1367 + components: + - type: Transform + pos: 72.5,19.504 + parent: 1 + - uid: 1368 + components: + - type: Transform + pos: 72.5,19.504 + parent: 1 + - uid: 1369 + components: + - type: Transform + pos: 72.5,19.504 + parent: 1 +- proto: SheetRGlass + entities: + - uid: 1364 + components: + - type: Transform + pos: 72.25,19.503 + parent: 1 + - uid: 1365 + components: + - type: Transform + pos: 72.25,19.503 + parent: 1 + - uid: 1366 + components: + - type: Transform + pos: 72.25,19.503 + parent: 1 +- proto: SheetSteel + entities: + - uid: 444 + components: + - type: Transform + pos: 33.5,16.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: 33.5,16.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: 33.5,16.5 + parent: 1 + - uid: 833 + components: + - type: Transform + pos: 52.625,26.25 + parent: 1 + - uid: 834 + components: + - type: Transform + pos: 52.625,26.25 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: 52.625,26.25 + parent: 1 + - uid: 1349 + components: + - type: Transform + pos: 71.5,19.5 + parent: 1 + - uid: 1350 + components: + - type: Transform + pos: 71.5,19.5 + parent: 1 + - uid: 1351 + components: + - type: Transform + pos: 71.5,19.5 + parent: 1 + - uid: 1916 + components: + - type: Transform + parent: 1913 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1917 + components: + - type: Transform + parent: 1913 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1918 + components: + - type: Transform + parent: 1913 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1919 + components: + - type: Transform + parent: 1913 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1920 + components: + - type: Transform + parent: 1913 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1921 + components: + - type: Transform + parent: 1913 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1922 + components: + - type: Transform + parent: 1913 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1923 + components: + - type: Transform + parent: 1913 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1924 + components: + - type: Transform + parent: 1913 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1925 + components: + - type: Transform + parent: 1913 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShelfChemistryChemistrySecure + entities: + - uid: 1117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,43.5 + parent: 1 + - type: Lock + locked: False +- proto: ShotGunCabinetFilled + entities: + - uid: 1906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 1 +- proto: ShuttleGunDuster + entities: + - uid: 2781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 2709 +- proto: ShuttleGunFriendship + entities: + - uid: 2782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 2709 +- proto: ShuttleGunPerforator + entities: + - uid: 2783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 2709 +- proto: ShuttleGunSvalinnMachineGun + entities: + - uid: 2784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 2709 +- proto: ShuttleWindow + entities: + - uid: 2785 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2709 + - uid: 2786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2709 + - uid: 2787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2709 + - uid: 2788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2709 + - uid: 2789 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2709 + - uid: 2790 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2709 + - uid: 2791 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2709 +- proto: ShuttleWindowDiagonal + entities: + - uid: 2792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2709 + - uid: 2793 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2709 +- proto: SignalButton + entities: + - uid: 739 + components: + - type: MetaData + desc: It's a button for toggle lights. + - type: Transform + pos: 28.5,14.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 585: + - Pressed: Toggle + 586: + - Pressed: Toggle + 587: + - Pressed: Toggle + 588: + - Pressed: Toggle + 589: + - Pressed: Toggle + 590: + - Pressed: Toggle + 591: + - Pressed: Toggle + 592: + - Pressed: Toggle + 593: + - Pressed: Toggle + 584: + - Pressed: Toggle + 608: + - Pressed: Toggle + - uid: 740 + components: + - type: MetaData + desc: It's a button for toggle lights. + - type: Transform + pos: 52.5,14.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 598: + - Pressed: Toggle + 599: + - Pressed: Toggle + 607: + - Pressed: Toggle + 606: + - Pressed: Toggle + 605: + - Pressed: Toggle + 604: + - Pressed: Toggle + 603: + - Pressed: Toggle + 602: + - Pressed: Toggle + 601: + - Pressed: Toggle + 600: + - Pressed: Toggle + 609: + - Pressed: Toggle + - uid: 753 + components: + - type: MetaData + desc: It's a button for toggle blastdoors. + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,27.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 596: + - Pressed: Toggle + 852: + - Pressed: Toggle + 853: + - Pressed: Toggle + - uid: 1593 + components: + - type: MetaData + desc: It's a button for activating igniter. + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1597: + - Pressed: Trigger + - uid: 1594 + components: + - type: MetaData + desc: It's a button for toggle blast door. + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,6.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1579: + - Pressed: Toggle + - uid: 2794 + components: + - type: MetaData + desc: It's a button for toggle guns. + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 2709 + - type: DeviceLinkSource + linkedPorts: + 2783: + - Pressed: Toggle + - Pressed: Trigger + 2782: + - Pressed: Toggle + - Pressed: Trigger + 2781: + - Pressed: Toggle + - Pressed: Trigger + 2784: + - Pressed: Toggle + - Pressed: Trigger + - uid: 2795 + components: + - type: MetaData + desc: It's a button for toggle siren. + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2709 + - type: DeviceLinkSource + linkedPorts: + 2779: + - Pressed: Toggle + - uid: 2796 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2709 + - type: DeviceLinkSource + linkedPorts: + 2781: + - Pressed: Toggle + - Pressed: Trigger + - uid: 2797 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2709 + - type: DeviceLinkSource + linkedPorts: + 2784: + - Pressed: Toggle + - Pressed: Trigger + - uid: 2798 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2709 + - type: DeviceLinkSource + linkedPorts: + 2783: + - Pressed: Toggle + - Pressed: Trigger + - uid: 2799 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2709 + - type: DeviceLinkSource + linkedPorts: + 2782: + - Pressed: Toggle + - Pressed: Trigger +- proto: SignalButtonDirectional + entities: + - uid: 2642 + components: + - type: MetaData + desc: It's a button for toggle airlock. + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,14.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2641: + - Pressed: Toggle +- proto: SignalTrigger + entities: + - uid: 2863 + components: + - type: Transform + pos: 56.54457,43.321857 + parent: 1 + - uid: 2864 + components: + - type: Transform + pos: 56.54457,43.173195 + parent: 1 +- proto: SinkStemlessWater + entities: + - uid: 927 + components: + - type: Transform + pos: 37,41.25 + parent: 1 + - uid: 939 + components: + - type: Transform + pos: 31,41.25 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: 54.5,44.25 + parent: 1 +- proto: SinkWide + entities: + - uid: 1038 + components: + - type: Transform + pos: 33.5,47.5 + parent: 1 + - uid: 1200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,38.5 + parent: 1 +- proto: SMESAdvancedEmpty + entities: + - uid: 3093 + components: + - type: Transform + pos: 75.5,5.5 + parent: 1 +- proto: SMESBasicEmpty + entities: + - uid: 3089 + components: + - type: Transform + pos: 75.5,7.5 + parent: 1 +- proto: SmokeGrenade + entities: + - uid: 2188 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2191 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SodaDispenser + entities: + - uid: 926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,38.5 + parent: 1 +- proto: SolarPanel + entities: + - uid: 1932 + components: + - type: Transform + pos: 65.5,-15.5 + parent: 1 + - uid: 2007 + components: + - type: Transform + pos: 66.5,-15.5 + parent: 1 + - uid: 2700 + components: + - type: Transform + pos: 68.5,-15.5 + parent: 1 + - uid: 2702 + components: + - type: Transform + pos: 67.5,-15.5 + parent: 1 + - uid: 2703 + components: + - type: Transform + pos: 69.5,-15.5 + parent: 1 + - uid: 2704 + components: + - type: Transform + pos: 69.5,-13.5 + parent: 1 + - uid: 2705 + components: + - type: Transform + pos: 68.5,-13.5 + parent: 1 + - uid: 2884 + components: + - type: Transform + pos: 67.5,-13.5 + parent: 1 + - uid: 2885 + components: + - type: Transform + pos: 66.5,-13.5 + parent: 1 + - uid: 2886 + components: + - type: Transform + pos: 65.5,-13.5 + parent: 1 + - uid: 2905 + components: + - type: Transform + pos: 69.5,-9.5 + parent: 1 + - uid: 2906 + components: + - type: Transform + pos: 68.5,-9.5 + parent: 1 + - uid: 2907 + components: + - type: Transform + pos: 67.5,-9.5 + parent: 1 + - uid: 2908 + components: + - type: Transform + pos: 66.5,-9.5 + parent: 1 + - uid: 2909 + components: + - type: Transform + pos: 65.5,-9.5 + parent: 1 + - uid: 2910 + components: + - type: Transform + pos: 65.5,-11.5 + parent: 1 + - uid: 2911 + components: + - type: Transform + pos: 66.5,-11.5 + parent: 1 + - uid: 2912 + components: + - type: Transform + pos: 67.5,-11.5 + parent: 1 + - uid: 2913 + components: + - type: Transform + pos: 68.5,-11.5 + parent: 1 + - uid: 2914 + components: + - type: Transform + pos: 69.5,-11.5 + parent: 1 + - uid: 2915 + components: + - type: Transform + pos: 69.5,-7.5 + parent: 1 + - uid: 2916 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 1 + - uid: 2917 + components: + - type: Transform + pos: 67.5,-7.5 + parent: 1 + - uid: 2918 + components: + - type: Transform + pos: 65.5,-7.5 + parent: 1 + - uid: 2919 + components: + - type: Transform + pos: 68.5,-7.5 + parent: 1 + - uid: 2920 + components: + - type: Transform + pos: 65.5,-5.5 + parent: 1 + - uid: 2921 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 1 + - uid: 2922 + components: + - type: Transform + pos: 67.5,-5.5 + parent: 1 + - uid: 2923 + components: + - type: Transform + pos: 68.5,-5.5 + parent: 1 + - uid: 2924 + components: + - type: Transform + pos: 69.5,-5.5 + parent: 1 + - uid: 2925 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 1 + - uid: 2926 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 1 + - uid: 2927 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 1 + - uid: 2928 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 1 + - uid: 2929 + components: + - type: Transform + pos: 65.5,-3.5 + parent: 1 + - uid: 2930 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 1 + - uid: 2931 + components: + - type: Transform + pos: 66.5,-1.5 + parent: 1 + - uid: 2932 + components: + - type: Transform + pos: 67.5,-1.5 + parent: 1 + - uid: 2933 + components: + - type: Transform + pos: 68.5,-1.5 + parent: 1 + - uid: 2934 + components: + - type: Transform + pos: 69.5,-1.5 + parent: 1 +- proto: SolarPanelPlasma + entities: + - uid: 1930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-7.5 + parent: 1 + - uid: 2887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-7.5 + parent: 1 + - uid: 2888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-7.5 + parent: 1 + - uid: 2889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-7.5 + parent: 1 + - uid: 2890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-7.5 + parent: 1 + - uid: 2891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-5.5 + parent: 1 + - uid: 2892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-5.5 + parent: 1 + - uid: 2893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-5.5 + parent: 1 + - uid: 2894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-5.5 + parent: 1 + - uid: 2944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-1.5 + parent: 1 + - uid: 2945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-5.5 + parent: 1 + - uid: 2946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-3.5 + parent: 1 + - uid: 2947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-3.5 + parent: 1 + - uid: 2948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-3.5 + parent: 1 + - uid: 2949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-3.5 + parent: 1 + - uid: 2950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-3.5 + parent: 1 + - uid: 2951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-1.5 + parent: 1 + - uid: 2952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-1.5 + parent: 1 + - uid: 2953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-1.5 + parent: 1 + - uid: 2954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-1.5 + parent: 1 +- proto: SolarPanelUranium + entities: + - uid: 1931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-13.5 + parent: 1 + - uid: 2895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-13.5 + parent: 1 + - uid: 2896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-15.5 + parent: 1 + - uid: 2897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-13.5 + parent: 1 + - uid: 2898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-13.5 + parent: 1 + - uid: 2899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-13.5 + parent: 1 + - uid: 2901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-15.5 + parent: 1 + - uid: 2902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-15.5 + parent: 1 + - uid: 2903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-15.5 + parent: 1 + - uid: 2904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-15.5 + parent: 1 + - uid: 2935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-11.5 + parent: 1 + - uid: 2936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-11.5 + parent: 1 + - uid: 2937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-11.5 + parent: 1 + - uid: 2938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-11.5 + parent: 1 + - uid: 2939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-11.5 + parent: 1 + - uid: 2940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-9.5 + parent: 1 + - uid: 2941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-9.5 + parent: 1 + - uid: 2942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-9.5 + parent: 1 + - uid: 2943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-9.5 + parent: 1 + - uid: 3054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-9.5 + parent: 1 +- proto: SolarTracker + entities: + - uid: 3078 + components: + - type: Transform + pos: 72.5,-17.5 + parent: 1 +- proto: SpawnMobCorgiMouse + entities: + - uid: 577 + components: + - type: Transform + pos: 32.5,16.5 + parent: 1 +- proto: SpawnMobHuman + entities: + - uid: 1104 + components: + - type: Transform + pos: 51.5,38.5 + parent: 1 + - uid: 1222 + components: + - type: Transform + pos: 57.5,38.5 + parent: 1 + - uid: 1964 + components: + - type: Transform + pos: 72.5,46.5 + parent: 1 + - uid: 1966 + components: + - type: Transform + pos: 68.5,46.5 + parent: 1 + - uid: 2012 + components: + - type: Transform + pos: 67.5,44.5 + parent: 1 + - uid: 2014 + components: + - type: Transform + pos: 73.5,44.5 + parent: 1 + - uid: 2643 + components: + - type: Transform + pos: 31.5,19.5 + parent: 1 +- proto: SpawnPointCaptain + entities: + - uid: 24 + components: + - type: Transform + pos: 33.5,18.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 2669 + components: + - type: Transform + pos: 31.5,18.5 + parent: 1 +- proto: SpawnPointObserver + entities: + - uid: 580 + components: + - type: Transform + pos: 33.5,18.5 + parent: 1 +- proto: SpearUranium + entities: + - uid: 803 + components: + - type: Transform + pos: 58.506927,24.564117 + parent: 1 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 2658 + components: + - type: Transform + pos: 40.5,66.5 + parent: 1 +- proto: SprayPainter + entities: + - uid: 830 + components: + - type: Transform + pos: 37.5,15.4 + parent: 1 +- proto: StairDark + entities: + - uid: 569 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 33.5,20.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 34.5,20.5 + parent: 1 +- proto: StasisBed + entities: + - uid: 1182 + components: + - type: Transform + pos: 48.5,37.5 + parent: 1 +- proto: StationAiUploadComputer + entities: + - uid: 788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,21.5 + parent: 1 + - uid: 2619 + components: + - type: Transform + pos: 45.5,61.5 + parent: 1 +- proto: StationAnchorOff + entities: + - uid: 293 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1 +- proto: StationMap + entities: + - uid: 1905 + components: + - type: Transform + pos: 45.5,65.5 + parent: 1 +- proto: StationMapBroken + entities: + - uid: 1911 + components: + - type: Transform + pos: 46.5,65.5 + parent: 1 +- proto: Stunbaton + entities: + - uid: 2683 + components: + - type: Transform + pos: 70.5,40.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 3125 + components: + - type: Transform + pos: 77.5,6.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 2800 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2709 +- proto: SurveillanceCameraGeneral + entities: + - uid: 2674 + components: + - type: Transform + pos: 46.5,52.5 + parent: 1 + - uid: 2676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,18.5 + parent: 1 + - uid: 2677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,25.5 + parent: 1 + - uid: 2698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,68.5 + parent: 1 + - uid: 2839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2709 +- proto: SurveillanceCameraMedical + entities: + - uid: 2673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,41.5 + parent: 1 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 2670 + components: + - type: Transform + pos: 50.5,65.5 + parent: 1 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 2672 + components: + - type: Transform + pos: 48.5,65.5 + parent: 1 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 2671 + components: + - type: Transform + pos: 49.5,65.5 + parent: 1 +- proto: SurveillanceCameraScience + entities: + - uid: 2675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,24.5 + parent: 1 +- proto: SyndicateComputerComms + entities: + - uid: 433 + components: + - type: Transform + pos: 49.5,61.5 + parent: 1 +- proto: SyndicateMicrowave + entities: + - uid: 1022 + components: + - type: Transform + pos: 29.5,38.5 + parent: 1 +- proto: Table + entities: + - uid: 430 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1 + - type: Physics + canCollide: False + - uid: 431 + components: + - type: Transform + pos: 36.5,14.5 + parent: 1 + - type: Physics + canCollide: False + - uid: 434 + components: + - type: Transform + pos: 33.5,15.5 + parent: 1 + - type: Physics + canCollide: False + - uid: 435 + components: + - type: Transform + pos: 33.5,16.5 + parent: 1 + - type: Physics + canCollide: False + - uid: 443 + components: + - type: Transform + pos: 30.5,19.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: 58.5,24.5 + parent: 1 + - uid: 790 + components: + - type: Transform + pos: 52.5,26.5 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: 52.5,25.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: 31.5,41.5 + parent: 1 + - uid: 930 + components: + - type: Transform + pos: 30.5,41.5 + parent: 1 + - uid: 931 + components: + - type: Transform + pos: 31.5,38.5 + parent: 1 + - uid: 932 + components: + - type: Transform + pos: 28.5,41.5 + parent: 1 + - uid: 933 + components: + - type: Transform + pos: 28.5,40.5 + parent: 1 + - uid: 950 + components: + - type: Transform + pos: 29.5,38.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + pos: 30.5,44.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + pos: 30.5,43.5 + parent: 1 +- proto: TableGlass + entities: + - uid: 1190 + components: + - type: Transform + pos: 50.5,40.5 + parent: 1 + - uid: 1191 + components: + - type: Transform + pos: 51.5,40.5 + parent: 1 + - uid: 1208 + components: + - type: Transform + pos: 59.5,41.5 + parent: 1 + - uid: 1254 + components: + - type: Transform + pos: 57.5,40.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 1133 + components: + - type: Transform + pos: 56.5,42.5 + parent: 1 + - uid: 1146 + components: + - type: Transform + pos: 52.5,41.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: 56.5,41.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: 52.5,42.5 + parent: 1 + - uid: 1151 + components: + - type: Transform + pos: 54.5,44.5 + parent: 1 + - uid: 1296 + components: + - type: Transform + pos: 72.5,19.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + pos: 71.5,19.5 + parent: 1 + - uid: 1372 + components: + - type: Transform + pos: 70.5,19.5 + parent: 1 + - uid: 2024 + components: + - type: Transform + pos: 67.5,40.5 + parent: 1 + - uid: 2025 + components: + - type: Transform + pos: 67.5,39.5 + parent: 1 + - uid: 2026 + components: + - type: Transform + pos: 67.5,38.5 + parent: 1 + - uid: 2027 + components: + - type: Transform + pos: 67.5,37.5 + parent: 1 + - uid: 2028 + components: + - type: Transform + pos: 73.5,37.5 + parent: 1 + - uid: 2029 + components: + - type: Transform + pos: 73.5,38.5 + parent: 1 + - uid: 2030 + components: + - type: Transform + pos: 73.5,39.5 + parent: 1 + - uid: 2031 + components: + - type: Transform + pos: 73.5,40.5 + parent: 1 + - uid: 2032 + components: + - type: Transform + pos: 73.5,41.5 + parent: 1 + - uid: 2033 + components: + - type: Transform + pos: 67.5,41.5 + parent: 1 + - uid: 2060 + components: + - type: Transform + pos: 66.5,39.5 + parent: 1 + - uid: 2162 + components: + - type: Transform + pos: 74.5,39.5 + parent: 1 + - uid: 2636 + components: + - type: Transform + pos: 56.5,43.5 + parent: 1 + - uid: 2639 + components: + - type: Transform + pos: 37.5,14.5 + parent: 1 + - uid: 2640 + components: + - type: Transform + pos: 37.5,15.5 + parent: 1 + - uid: 2657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,37.5 + parent: 1 + - uid: 2679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,38.5 + parent: 1 + - uid: 2680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,40.5 + parent: 1 + - uid: 2681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,41.5 + parent: 1 + - uid: 2801 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2709 + - uid: 2855 + components: + - type: Transform + pos: 52.5,43.5 + parent: 1 +- proto: TableWood + entities: + - uid: 910 + components: + - type: Transform + pos: 36.5,38.5 + parent: 1 + - uid: 911 + components: + - type: Transform + pos: 37.5,38.5 + parent: 1 + - uid: 912 + components: + - type: Transform + pos: 36.5,41.5 + parent: 1 + - uid: 913 + components: + - type: Transform + pos: 37.5,41.5 + parent: 1 + - uid: 929 + components: + - type: Transform + pos: 35.5,38.5 + parent: 1 + - uid: 3151 + components: + - type: Transform + pos: 81.5,6.5 + parent: 1 +- proto: TargetClown + entities: + - uid: 1963 + components: + - type: Transform + pos: 70.5,47.5 + parent: 1 +- proto: TargetStrange + entities: + - uid: 2853 + components: + - type: Transform + pos: 82.5,21.5 + parent: 1 + - uid: 2881 + components: + - type: Transform + pos: 80.5,41.5 + parent: 1 +- proto: TargetSyndicate + entities: + - uid: 2880 + components: + - type: Transform + pos: 80.5,37.5 + parent: 1 +- proto: TearGasGrenade + entities: + - uid: 2182 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2185 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TegCenter + entities: + - uid: 1569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,10.5 + parent: 1 +- proto: TegCirculator + entities: + - uid: 1507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,11.5 + parent: 1 + - type: PointLight + color: '#FF3300FF' + - uid: 1568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,9.5 + parent: 1 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServerFilled + entities: + - uid: 2699 + components: + - type: Transform + pos: 47.5,65.5 + parent: 1 +- proto: Thruster + entities: + - uid: 2802 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2709 + - uid: 2803 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2709 + - uid: 2804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2709 + - uid: 2805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2709 + - uid: 2806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 2709 + - uid: 2807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2709 +- proto: TimerTrigger + entities: + - uid: 2861 + components: + - type: Transform + pos: 56.351364,43.27726 + parent: 1 + - uid: 2862 + components: + - type: Transform + pos: 56.366226,43.173195 + parent: 1 +- proto: trayScanner + entities: + - uid: 442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.520515,15.702613 + parent: 1 +- proto: TritiumCanister + entities: + - uid: 1424 + components: + - type: Transform + pos: 96.5,22.5 + parent: 1 +- proto: TurboItemRecharger + entities: + - uid: 792 + components: + - type: Transform + pos: 52.5,26.5 + parent: 1 + - uid: 2163 + components: + - type: Transform + pos: 66.5,39.5 + parent: 1 + - uid: 2164 + components: + - type: Transform + pos: 74.5,39.5 + parent: 1 + - uid: 2808 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2709 +- proto: TwoWayLever + entities: + - uid: 2854 + components: + - type: MetaData + desc: A two way lever for toggle conveyors. + - type: Transform + pos: 83.5,19.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2850: + - Left: Forward + - Right: Reverse + - Middle: Off + 2848: + - Left: Forward + - Right: Reverse + - Middle: Off + 2847: + - Left: Forward + - Right: Reverse + - Middle: Off + 2626: + - Left: Forward + - Right: Reverse + - Middle: Off + 2844: + - Left: Forward + - Right: Reverse + - Middle: Off + 2621: + - Left: Forward + - Right: Reverse + - Middle: Off + 432: + - Left: Forward + - Right: Reverse + - Middle: Off + 2615: + - Left: Forward + - Right: Reverse + - Middle: Off + 2213: + - Left: Forward + - Right: Reverse + - Middle: Off + 2849: + - Left: Forward + - Right: Reverse + - Middle: Off + 2852: + - Left: Forward + - Right: Reverse + - Middle: Off + 2851: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UniformPrinter + entities: + - uid: 428 + components: + - type: Transform + pos: 37.5,18.5 + parent: 1 +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 1056 + components: + - type: Transform + pos: 30.637724,44.013588 + parent: 1 + - uid: 1057 + components: + - type: Transform + pos: 30.726896,43.86493 + parent: 1 +- proto: UraniumReinforcedWindowDirectional + entities: + - uid: 748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,28.5 + parent: 1 +- proto: VendingBarDrobe + entities: + - uid: 916 + components: + - type: Transform + pos: 39.5,40.5 + parent: 1 +- proto: VendingMachineBooze + entities: + - uid: 924 + components: + - type: Transform + pos: 38.5,38.5 + parent: 1 +- proto: VendingMachineBoozeSyndicate + entities: + - uid: 915 + components: + - type: Transform + pos: 38.5,41.5 + parent: 1 +- proto: VendingMachineChefDrobe + entities: + - uid: 1013 + components: + - type: Transform + pos: 24.5,38.5 + parent: 1 +- proto: VendingMachineChefvend + entities: + - uid: 942 + components: + - type: Transform + pos: 28.5,38.5 + parent: 1 +- proto: VendingMachineChemDrobe + entities: + - uid: 1154 + components: + - type: Transform + pos: 56.5,44.5 + parent: 1 +- proto: VendingMachineChemicals + entities: + - uid: 1149 + components: + - type: Transform + pos: 52.5,44.5 + parent: 1 +- proto: VendingMachineCondiments + entities: + - uid: 981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,38.5 + parent: 1 +- proto: VendingMachineDinnerware + entities: + - uid: 1023 + components: + - type: Transform + pos: 26.5,38.5 + parent: 1 +- proto: VendingMachineEngiDrobe + entities: + - uid: 1304 + components: + - type: Transform + pos: 74.5,19.5 + parent: 1 +- proto: VendingMachineEngivend + entities: + - uid: 1311 + components: + - type: Transform + pos: 73.5,14.5 + parent: 1 +- proto: VendingMachineHydrobe + entities: + - uid: 1047 + components: + - type: Transform + pos: 36.5,43.5 + parent: 1 +- proto: VendingMachineMedical + entities: + - uid: 1179 + components: + - type: Transform + pos: 50.5,37.5 + parent: 1 +- proto: VendingMachineMediDrobe + entities: + - uid: 1215 + components: + - type: Transform + pos: 60.5,37.5 + parent: 1 +- proto: VendingMachineRoboDrobe + entities: + - uid: 812 + components: + - type: Transform + pos: 59.5,22.5 + parent: 1 +- proto: VendingMachineRobotics + entities: + - uid: 791 + components: + - type: Transform + pos: 49.5,26.5 + parent: 1 +- proto: VendingMachineSalvage + entities: + - uid: 2656 + components: + - type: Transform + pos: 39.5,52.5 + parent: 1 +- proto: VendingMachineSciDrobe + entities: + - uid: 815 + components: + - type: Transform + pos: 59.5,21.5 + parent: 1 +- proto: VendingMachineSeeds + entities: + - uid: 1048 + components: + - type: Transform + pos: 36.5,44.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1310 + components: + - type: Transform + pos: 71.5,14.5 + parent: 1 +- proto: VendingMachineVendomat + entities: + - uid: 1717 + components: + - type: Transform + pos: 80.5,15.5 + parent: 1 +- proto: VendingMachineWallMedical + entities: + - uid: 1219 + components: + - type: Transform + pos: 57.5,41.5 + parent: 1 +- proto: VendingMachineYouTool + entities: + - uid: 1292 + components: + - type: Transform + pos: 74.5,14.5 + parent: 1 +- proto: VoiceTrigger + entities: + - uid: 2865 + components: + - type: Transform + pos: 56.75264,43.47052 + parent: 1 + - uid: 2866 + components: + - type: Transform + pos: 56.75264,43.30699 + parent: 1 +- proto: WallBasaltCobblebrick + entities: + - uid: 2015 + components: + - type: Transform + pos: 77.5,44.5 + parent: 1 + missingComponents: + - Occluder + - uid: 2016 + components: + - type: Transform + pos: 76.5,44.5 + parent: 1 + missingComponents: + - Occluder + - uid: 2017 + components: + - type: Transform + pos: 75.5,44.5 + parent: 1 + missingComponents: + - Occluder +- proto: WallPlastitaniumDiagonalIndestructible + entities: + - uid: 1327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,24.5 + parent: 1 + - uid: 1328 + components: + - type: Transform + pos: 79.5,20.5 + parent: 1 + - uid: 1331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,20.5 + parent: 1 + - uid: 1345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,24.5 + parent: 1 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 25 + components: + - type: Transform + pos: 27.5,25.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 27.5,24.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 27.5,23.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 27.5,22.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 27.5,21.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 28.5,25.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 29.5,26.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 29.5,25.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 29.5,20.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 30.5,26.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 30.5,20.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 31.5,26.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 31.5,28.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 35.5,26.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 36.5,26.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 36.5,20.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 37.5,26.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 37.5,25.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 37.5,20.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 38.5,25.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 38.5,20.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 39.5,25.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 39.5,24.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 39.5,23.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 39.5,22.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 39.5,21.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 39.5,20.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 52.5,20.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 52.5,22.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 35.5,34.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 58.5,29.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 52.5,21.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 56.5,30.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 57.5,29.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 52.5,23.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 56.5,29.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 54.5,20.5 + parent: 1 + - type: PointLight + energy: 5 + color: '#EB87EBFF' + radius: 2 + offset: 0,2 + - uid: 101 + components: + - type: Transform + pos: 55.5,30.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 31.5,29.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 62.5,28.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 53.5,20.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 53.5,30.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 56.5,20.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 52.5,30.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 60.5,28.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 55.5,20.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 54.5,30.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 63.5,28.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 56.5,22.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 49.5,29.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 61.5,28.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 59.5,28.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 59.5,29.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 56.5,21.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 51.5,29.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 50.5,29.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 49.5,28.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 56.5,19.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 52.5,29.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 56.5,23.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 49.5,23.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 62.5,24.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 59.5,23.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 60.5,24.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 59.5,24.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,25.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 61.5,24.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,24.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 63.5,24.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,23.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,22.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 34.5,29.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 32.5,29.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 35.5,29.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 33.5,29.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 31.5,27.5 + parent: 1 + - uid: 737 + components: + - type: Transform + pos: 35.5,27.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: 35.5,28.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: 59.5,19.5 + parent: 1 + - uid: 757 + components: + - type: Transform + pos: 57.5,19.5 + parent: 1 + - uid: 758 + components: + - type: Transform + pos: 58.5,19.5 + parent: 1 + - uid: 759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,26.5 + parent: 1 + - uid: 760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,27.5 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: 48.5,20.5 + parent: 1 + - uid: 764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,20.5 + parent: 1 + - uid: 767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,19.5 + parent: 1 + - uid: 768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,19.5 + parent: 1 + - uid: 769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,19.5 + parent: 1 + - uid: 770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,19.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: 48.5,21.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: 48.5,22.5 + parent: 1 + - uid: 777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,22.5 + parent: 1 + - uid: 795 + components: + - type: Transform + pos: 59.5,20.5 + parent: 1 + - uid: 796 + components: + - type: Transform + pos: 60.5,20.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: 60.5,21.5 + parent: 1 + - uid: 809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,28.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: 60.5,22.5 + parent: 1 + - uid: 811 + components: + - type: Transform + pos: 60.5,23.5 + parent: 1 + - uid: 854 + components: + - type: Transform + pos: 64.5,28.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: 65.5,28.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: 65.5,27.5 + parent: 1 + - uid: 857 + components: + - type: Transform + pos: 65.5,26.5 + parent: 1 + - uid: 858 + components: + - type: Transform + pos: 65.5,25.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: 65.5,24.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 64.5,24.5 + parent: 1 + - uid: 889 + components: + - type: Transform + pos: 34.5,34.5 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 33.5,34.5 + parent: 1 + - type: PointLight + energy: 5 + color: '#87EB87FF' + radius: 2 + offset: 0,2 + - uid: 891 + components: + - type: Transform + pos: 32.5,34.5 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: 31.5,34.5 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: 31.5,35.5 + parent: 1 + - uid: 894 + components: + - type: Transform + pos: 31.5,36.5 + parent: 1 + - uid: 895 + components: + - type: Transform + pos: 31.5,37.5 + parent: 1 + - uid: 896 + components: + - type: Transform + pos: 35.5,35.5 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: 35.5,36.5 + parent: 1 + - uid: 898 + components: + - type: Transform + pos: 35.5,37.5 + parent: 1 + - uid: 899 + components: + - type: Transform + pos: 37.5,37.5 + parent: 1 + - uid: 900 + components: + - type: Transform + pos: 36.5,37.5 + parent: 1 + - uid: 901 + components: + - type: Transform + pos: 38.5,37.5 + parent: 1 + - uid: 902 + components: + - type: Transform + pos: 39.5,37.5 + parent: 1 + - uid: 903 + components: + - type: Transform + pos: 52.5,37.5 + parent: 1 + - uid: 905 + components: + - type: Transform + pos: 30.5,37.5 + parent: 1 + - uid: 906 + components: + - type: Transform + pos: 29.5,37.5 + parent: 1 + - uid: 907 + components: + - type: Transform + pos: 28.5,37.5 + parent: 1 + - uid: 908 + components: + - type: Transform + pos: 27.5,37.5 + parent: 1 + - uid: 909 + components: + - type: Transform + pos: 26.5,37.5 + parent: 1 + - uid: 914 + components: + - type: Transform + pos: 39.5,38.5 + parent: 1 + - uid: 917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,38.5 + parent: 1 + - uid: 918 + components: + - type: Transform + pos: 39.5,41.5 + parent: 1 + - uid: 919 + components: + - type: Transform + pos: 39.5,42.5 + parent: 1 + - uid: 920 + components: + - type: Transform + pos: 38.5,42.5 + parent: 1 + - uid: 921 + components: + - type: Transform + pos: 37.5,42.5 + parent: 1 + - uid: 922 + components: + - type: Transform + pos: 36.5,42.5 + parent: 1 + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,39.5 + parent: 1 + - uid: 937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,40.5 + parent: 1 + - uid: 938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,41.5 + parent: 1 + - uid: 941 + components: + - type: Transform + pos: 23.5,41.5 + parent: 1 + - uid: 943 + components: + - type: Transform + pos: 30.5,42.5 + parent: 1 + - uid: 945 + components: + - type: Transform + pos: 27.5,38.5 + parent: 1 + - uid: 946 + components: + - type: Transform + pos: 25.5,41.5 + parent: 1 + - uid: 947 + components: + - type: Transform + pos: 26.5,41.5 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: 24.5,41.5 + parent: 1 + - uid: 952 + components: + - type: Transform + pos: 28.5,42.5 + parent: 1 + - uid: 953 + components: + - type: Transform + pos: 27.5,41.5 + parent: 1 + - uid: 954 + components: + - type: Transform + pos: 27.5,42.5 + parent: 1 + - uid: 955 + components: + - type: Transform + pos: 29.5,42.5 + parent: 1 + - uid: 956 + components: + - type: Transform + pos: 27.5,40.5 + parent: 1 + - uid: 957 + components: + - type: Transform + pos: 23.5,40.5 + parent: 1 + - uid: 958 + components: + - type: Transform + pos: 23.5,39.5 + parent: 1 + - uid: 959 + components: + - type: Transform + pos: 23.5,38.5 + parent: 1 + - uid: 960 + components: + - type: Transform + pos: 23.5,37.5 + parent: 1 + - uid: 961 + components: + - type: Transform + pos: 24.5,37.5 + parent: 1 + - uid: 962 + components: + - type: Transform + pos: 25.5,37.5 + parent: 1 + - uid: 978 + components: + - type: Transform + pos: 32.5,48.5 + parent: 1 + - uid: 982 + components: + - type: Transform + pos: 35.5,48.5 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: 29.5,44.5 + parent: 1 + - uid: 987 + components: + - type: Transform + pos: 29.5,43.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + pos: 33.5,48.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + pos: 37.5,45.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + pos: 29.5,45.5 + parent: 1 + - uid: 1012 + components: + - type: Transform + pos: 31.5,48.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + pos: 37.5,44.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + pos: 37.5,47.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + pos: 29.5,46.5 + parent: 1 + - uid: 1017 + components: + - type: Transform + pos: 36.5,48.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + pos: 34.5,48.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + pos: 37.5,46.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + pos: 36.5,47.5 + parent: 1 + - uid: 1021 + components: + - type: Transform + pos: 37.5,43.5 + parent: 1 + - uid: 1024 + components: + - type: Transform + pos: 30.5,48.5 + parent: 1 + - uid: 1025 + components: + - type: Transform + pos: 30.5,47.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + pos: 29.5,47.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: 52.5,35.5 + parent: 1 + - uid: 1091 + components: + - type: Transform + pos: 52.5,36.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: 52.5,34.5 + parent: 1 + - uid: 1093 + components: + - type: Transform + pos: 53.5,34.5 + parent: 1 + - uid: 1094 + components: + - type: Transform + pos: 54.5,34.5 + parent: 1 + - type: PointLight + energy: 5 + color: '#87D1EBFF' + radius: 2 + offset: 0,2 + - uid: 1095 + components: + - type: Transform + pos: 55.5,34.5 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: 56.5,34.5 + parent: 1 + - uid: 1097 + components: + - type: Transform + pos: 56.5,35.5 + parent: 1 + - uid: 1098 + components: + - type: Transform + pos: 56.5,36.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: 56.5,37.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + pos: 51.5,37.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,36.5 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: 57.5,37.5 + parent: 1 + - uid: 1105 + components: + - type: Transform + pos: 61.5,39.5 + parent: 1 + - uid: 1112 + components: + - type: Transform + pos: 48.5,43.5 + parent: 1 + - uid: 1113 + components: + - type: Transform + pos: 49.5,43.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + pos: 50.5,43.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: 55.5,45.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + pos: 56.5,45.5 + parent: 1 + - uid: 1118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,41.5 + parent: 1 + - uid: 1119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,41.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: 51.5,45.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + pos: 57.5,45.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: 51.5,44.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: 51.5,43.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,36.5 + parent: 1 + - uid: 1137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,36.5 + parent: 1 + - uid: 1138 + components: + - type: Transform + pos: 57.5,42.5 + parent: 1 + - uid: 1139 + components: + - type: Transform + pos: 51.5,42.5 + parent: 1 + - uid: 1140 + components: + - type: Transform + pos: 52.5,45.5 + parent: 1 + - uid: 1141 + components: + - type: Transform + pos: 53.5,45.5 + parent: 1 + - uid: 1142 + components: + - type: Transform + pos: 57.5,44.5 + parent: 1 + - uid: 1143 + components: + - type: Transform + pos: 57.5,43.5 + parent: 1 + - uid: 1144 + components: + - type: Transform + pos: 60.5,34.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: 54.5,45.5 + parent: 1 + - uid: 1155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,36.5 + parent: 1 + - uid: 1156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,36.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,37.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,37.5 + parent: 1 + - uid: 1159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,43.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,42.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,41.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,37.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,38.5 + parent: 1 + - uid: 1171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,39.5 + parent: 1 + - uid: 1172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,40.5 + parent: 1 + - uid: 1173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,41.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,41.5 + parent: 1 + - uid: 1194 + components: + - type: Transform + pos: 61.5,38.5 + parent: 1 + - uid: 1196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,42.5 + parent: 1 + - uid: 1197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,42.5 + parent: 1 + - uid: 1198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,42.5 + parent: 1 + - uid: 1199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,42.5 + parent: 1 + - uid: 1202 + components: + - type: Transform + pos: 61.5,40.5 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: 60.5,33.5 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: 61.5,34.5 + parent: 1 + - uid: 1210 + components: + - type: Transform + pos: 57.5,33.5 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: 58.5,33.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + pos: 59.5,33.5 + parent: 1 + - uid: 1223 + components: + - type: Transform + pos: 61.5,37.5 + parent: 1 + - uid: 1224 + components: + - type: Transform + pos: 61.5,41.5 + parent: 1 + - uid: 1225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,36.5 + parent: 1 + - uid: 1226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,36.5 + parent: 1 + - uid: 1227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,36.5 + parent: 1 + - uid: 1228 + components: + - type: Transform + pos: 56.5,33.5 + parent: 1 + - uid: 1229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,36.5 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: 61.5,35.5 + parent: 1 + - uid: 1282 + components: + - type: Transform + pos: 70.5,20.5 + parent: 1 + - uid: 1283 + components: + - type: Transform + pos: 69.5,18.5 + parent: 1 + - uid: 1284 + components: + - type: Transform + pos: 69.5,17.5 + parent: 1 + - uid: 1285 + components: + - type: Transform + pos: 69.5,16.5 + parent: 1 + - uid: 1286 + components: + - type: Transform + pos: 69.5,15.5 + parent: 1 + - uid: 1287 + components: + - type: Transform + pos: 69.5,14.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + pos: 70.5,14.5 + parent: 1 + - uid: 1290 + components: + - type: Transform + pos: 73.5,13.5 + parent: 1 + - uid: 1291 + components: + - type: Transform + pos: 74.5,13.5 + parent: 1 + - uid: 1293 + components: + - type: Transform + pos: 75.5,14.5 + parent: 1 + - uid: 1294 + components: + - type: Transform + pos: 69.5,19.5 + parent: 1 + - uid: 1295 + components: + - type: Transform + pos: 69.5,20.5 + parent: 1 + - uid: 1297 + components: + - type: Transform + pos: 75.5,19.5 + parent: 1 + - uid: 1298 + components: + - type: Transform + pos: 72.5,20.5 + parent: 1 + - uid: 1299 + components: + - type: Transform + pos: 75.5,15.5 + parent: 1 + - uid: 1300 + components: + - type: Transform + pos: 75.5,18.5 + parent: 1 + - uid: 1302 + components: + - type: Transform + pos: 71.5,20.5 + parent: 1 + - uid: 1303 + components: + - type: Transform + pos: 73.5,20.5 + parent: 1 + - uid: 1307 + components: + - type: Transform + pos: 75.5,13.5 + parent: 1 + - uid: 1308 + components: + - type: Transform + pos: 71.5,13.5 + parent: 1 + - uid: 1309 + components: + - type: Transform + pos: 70.5,13.5 + parent: 1 + - uid: 1312 + components: + - type: Transform + pos: 75.5,12.5 + parent: 1 - uid: 1313 components: - type: Transform - pos: 24.5,-23.5 - parent: 179 -- proto: WeaponCapacitorRecharger + pos: 76.5,12.5 + parent: 1 + - uid: 1314 + components: + - type: Transform + pos: 77.5,12.5 + parent: 1 + - type: PointLight + energy: 5 + color: '#FFA500FF' + radius: 2 + offset: 0,2 + - uid: 1315 + components: + - type: Transform + pos: 78.5,12.5 + parent: 1 + - uid: 1316 + components: + - type: Transform + pos: 79.5,12.5 + parent: 1 + - uid: 1317 + components: + - type: Transform + pos: 79.5,13.5 + parent: 1 + - uid: 1318 + components: + - type: Transform + pos: 79.5,14.5 + parent: 1 + - uid: 1319 + components: + - type: Transform + pos: 79.5,15.5 + parent: 1 + - uid: 1321 + components: + - type: Transform + pos: 74.5,20.5 + parent: 1 + - uid: 1322 + components: + - type: Transform + pos: 74.5,21.5 + parent: 1 + - uid: 1324 + components: + - type: Transform + pos: 74.5,23.5 + parent: 1 + - uid: 1325 + components: + - type: Transform + pos: 74.5,24.5 + parent: 1 + - uid: 1326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,25.5 + parent: 1 + - uid: 1330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,25.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + pos: 79.5,25.5 + parent: 1 + - uid: 1334 + components: + - type: Transform + pos: 78.5,25.5 + parent: 1 + - uid: 1335 + components: + - type: Transform + pos: 79.5,19.5 + parent: 1 + - uid: 1336 + components: + - type: Transform + pos: 80.5,20.5 + parent: 1 + - uid: 1337 + components: + - type: Transform + pos: 80.5,21.5 + parent: 1 + - uid: 1338 + components: + - type: Transform + pos: 80.5,22.5 + parent: 1 + - uid: 1339 + components: + - type: Transform + pos: 80.5,23.5 + parent: 1 + - uid: 1340 + components: + - type: Transform + pos: 80.5,24.5 + parent: 1 + - uid: 1341 + components: + - type: Transform + pos: 79.5,18.5 + parent: 1 + - uid: 1342 + components: + - type: Transform + pos: 77.5,25.5 + parent: 1 + - uid: 1343 + components: + - type: Transform + pos: 76.5,25.5 + parent: 1 + - uid: 1344 + components: + - type: Transform + pos: 75.5,25.5 + parent: 1 + - uid: 1347 + components: + - type: Transform + pos: 80.5,12.5 + parent: 1 + - uid: 1348 + components: + - type: Transform + pos: 80.5,13.5 + parent: 1 + - uid: 1382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,33.5 + parent: 1 + - uid: 1453 + components: + - type: Transform + pos: 80.5,26.5 + parent: 1 + - uid: 1454 + components: + - type: Transform + pos: 80.5,27.5 + parent: 1 + - uid: 1455 + components: + - type: Transform + pos: 80.5,28.5 + parent: 1 + - uid: 1456 + components: + - type: Transform + pos: 80.5,29.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + pos: 80.5,30.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + pos: 82.5,30.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + pos: 81.5,30.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + pos: 84.5,30.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + pos: 83.5,30.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: 86.5,30.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: 85.5,30.5 + parent: 1 + - uid: 1466 + components: + - type: Transform + pos: 90.5,30.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + pos: 92.5,30.5 + parent: 1 + - uid: 1469 + components: + - type: Transform + pos: 91.5,30.5 + parent: 1 + - uid: 1470 + components: + - type: Transform + pos: 94.5,29.5 + parent: 1 + - uid: 1471 + components: + - type: Transform + pos: 95.5,29.5 + parent: 1 + - uid: 1472 + components: + - type: Transform + pos: 96.5,29.5 + parent: 1 + - uid: 1473 + components: + - type: Transform + pos: 97.5,29.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + pos: 97.5,28.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + pos: 97.5,27.5 + parent: 1 + - uid: 1476 + components: + - type: Transform + pos: 97.5,26.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + pos: 97.5,25.5 + parent: 1 + - uid: 1478 + components: + - type: Transform + pos: 97.5,24.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + pos: 97.5,23.5 + parent: 1 + - uid: 1480 + components: + - type: Transform + pos: 97.5,22.5 + parent: 1 + - uid: 1481 + components: + - type: Transform + pos: 97.5,21.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + pos: 97.5,20.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + pos: 97.5,19.5 + parent: 1 + - uid: 1484 + components: + - type: Transform + pos: 97.5,18.5 + parent: 1 + - uid: 1485 + components: + - type: Transform + pos: 97.5,17.5 + parent: 1 + - uid: 1486 + components: + - type: Transform + pos: 97.5,16.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + pos: 97.5,15.5 + parent: 1 + - uid: 1488 + components: + - type: Transform + pos: 97.5,14.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + pos: 97.5,13.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + pos: 97.5,12.5 + parent: 1 + - uid: 1491 + components: + - type: Transform + pos: 97.5,11.5 + parent: 1 + - uid: 1492 + components: + - type: Transform + pos: 96.5,11.5 + parent: 1 + - uid: 1493 + components: + - type: Transform + pos: 95.5,11.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + pos: 93.5,30.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + pos: 94.5,30.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + pos: 94.5,11.5 + parent: 1 + - uid: 1508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,9.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + pos: 86.5,1.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,6.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,5.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,7.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,8.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,5.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,5.5 + parent: 1 + - uid: 1556 + components: + - type: Transform + pos: 83.5,2.5 + parent: 1 + - uid: 1558 + components: + - type: Transform + pos: 83.5,1.5 + parent: 1 + - uid: 1559 + components: + - type: Transform + pos: 84.5,1.5 + parent: 1 + - uid: 1560 + components: + - type: Transform + pos: 85.5,1.5 + parent: 1 + - uid: 1561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,4.5 + parent: 1 + - uid: 1562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,5.5 + parent: 1 + - uid: 1563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,6.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,7.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,8.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,11.5 + parent: 1 + - uid: 1567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,10.5 + parent: 1 + - uid: 1570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,3.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,3.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,3.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,3.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: 91.5,2.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + pos: 90.5,1.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: 87.5,1.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + pos: 89.5,1.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + pos: 91.5,1.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,3.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,3.5 + parent: 1 + - uid: 1582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,3.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,3.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + pos: 88.5,1.5 + parent: 1 + - uid: 1668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,5.5 + parent: 1 + - uid: 1669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,5.5 + parent: 1 + - uid: 1670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 97.5,5.5 + parent: 1 + - uid: 1674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,9.5 + parent: 1 + - uid: 1675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,10.5 + parent: 1 + - uid: 1676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,11.5 + parent: 1 + - uid: 1677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,11.5 + parent: 1 + - uid: 1937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,32.5 + parent: 1 + - uid: 1938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,31.5 + parent: 1 + - uid: 1939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,34.5 + parent: 1 + - uid: 1940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,31.5 + parent: 1 + - uid: 1941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,31.5 + parent: 1 + - type: PointLight + energy: 5 + color: '#FF0000FF' + radius: 2 + offset: -2,0 + - uid: 1942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,31.5 + parent: 1 + - uid: 1943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,31.5 + parent: 1 + - uid: 1944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,32.5 + parent: 1 + - uid: 1945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,33.5 + parent: 1 + - uid: 1946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,34.5 + parent: 1 + - uid: 1947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,34.5 + parent: 1 + - uid: 1948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,34.5 + parent: 1 + - uid: 1949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,34.5 + parent: 1 + - uid: 1950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,51.5 + parent: 1 + - uid: 1951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,36.5 + parent: 1 + - uid: 1952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,37.5 + parent: 1 + - uid: 1953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,38.5 + parent: 1 + - uid: 1954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,39.5 + parent: 1 + - uid: 1955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,40.5 + parent: 1 + - uid: 1956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,41.5 + parent: 1 + - uid: 1957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,43.5 + parent: 1 + - uid: 1958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,44.5 + parent: 1 + - uid: 1959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,45.5 + parent: 1 + - uid: 1960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,46.5 + parent: 1 + - uid: 1961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,35.5 + parent: 1 + - uid: 1962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,42.5 + parent: 1 + - uid: 1965 + components: + - type: Transform + pos: 74.5,46.5 + parent: 1 + - uid: 1967 + components: + - type: Transform + pos: 74.5,48.5 + parent: 1 + - uid: 1968 + components: + - type: Transform + pos: 74.5,47.5 + parent: 1 + - uid: 1969 + components: + - type: Transform + pos: 72.5,48.5 + parent: 1 + - uid: 1970 + components: + - type: Transform + pos: 73.5,48.5 + parent: 1 + - uid: 1971 + components: + - type: Transform + pos: 72.5,49.5 + parent: 1 + - uid: 1972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,46.5 + parent: 1 + - uid: 1973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,46.5 + parent: 1 + - uid: 1974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,46.5 + parent: 1 + - uid: 1975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,46.5 + parent: 1 + - uid: 1976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,46.5 + parent: 1 + - uid: 1977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,46.5 + parent: 1 + - uid: 1978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,46.5 + parent: 1 + - uid: 1979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,46.5 + parent: 1 + - uid: 1980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,46.5 + parent: 1 + - uid: 1981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,46.5 + parent: 1 + - uid: 1982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,46.5 + parent: 1 + - uid: 1983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,45.5 + parent: 1 + - uid: 1984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,44.5 + parent: 1 + - uid: 1985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,43.5 + parent: 1 + - uid: 1986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,42.5 + parent: 1 + - uid: 1987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,41.5 + parent: 1 + - uid: 1988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,40.5 + parent: 1 + - uid: 1989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,39.5 + parent: 1 + - uid: 1990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,38.5 + parent: 1 + - uid: 1991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,37.5 + parent: 1 + - uid: 1992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,36.5 + parent: 1 + - uid: 1993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,35.5 + parent: 1 + - uid: 1994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,34.5 + parent: 1 + - uid: 1995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,34.5 + parent: 1 + - uid: 1996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,34.5 + parent: 1 + - uid: 1997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,34.5 + parent: 1 + - uid: 1998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,34.5 + parent: 1 + - uid: 1999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,34.5 + parent: 1 + - uid: 2000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,34.5 + parent: 1 + - uid: 2001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,34.5 + parent: 1 + - uid: 2002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,34.5 + parent: 1 + - uid: 2003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,34.5 + parent: 1 + - uid: 2004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,34.5 + parent: 1 + - uid: 2005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,34.5 + parent: 1 + - uid: 2006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,34.5 + parent: 1 + - uid: 2013 + components: + - type: Transform + pos: 71.5,49.5 + parent: 1 + - uid: 2034 + components: + - type: Transform + pos: 69.5,49.5 + parent: 1 + - uid: 2035 + components: + - type: Transform + pos: 70.5,49.5 + parent: 1 + - uid: 2036 + components: + - type: Transform + pos: 68.5,49.5 + parent: 1 + - uid: 2037 + components: + - type: Transform + pos: 68.5,48.5 + parent: 1 + - uid: 2038 + components: + - type: Transform + pos: 67.5,48.5 + parent: 1 + - uid: 2039 + components: + - type: Transform + pos: 66.5,48.5 + parent: 1 + - uid: 2040 + components: + - type: Transform + pos: 66.5,47.5 + parent: 1 + - uid: 2041 + components: + - type: Transform + pos: 66.5,46.5 + parent: 1 + - uid: 2445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,48.5 + parent: 1 + - uid: 2446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,49.5 + parent: 1 + - uid: 2447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,50.5 + parent: 1 + - uid: 2448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,51.5 + parent: 1 + - uid: 2449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,51.5 + parent: 1 + - uid: 2450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,51.5 + parent: 1 + - uid: 2451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,51.5 + parent: 1 + - uid: 2452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,51.5 + parent: 1 + - uid: 2453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,51.5 + parent: 1 + - uid: 2454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,51.5 + parent: 1 + - uid: 2456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,52.5 + parent: 1 + - uid: 2457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,53.5 + parent: 1 + - uid: 2458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,54.5 + parent: 1 + - uid: 2459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,55.5 + parent: 1 + - uid: 2460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,56.5 + parent: 1 + - uid: 2461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,57.5 + parent: 1 + - uid: 2462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,58.5 + parent: 1 + - uid: 2463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,59.5 + parent: 1 + - uid: 2464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,60.5 + parent: 1 + - uid: 2465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,61.5 + parent: 1 + - uid: 2466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,62.5 + parent: 1 + - uid: 2467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,63.5 + parent: 1 + - uid: 2468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,64.5 + parent: 1 + - uid: 2469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,65.5 + parent: 1 + - uid: 2470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,66.5 + parent: 1 + - uid: 2471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,67.5 + parent: 1 + - uid: 2472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,68.5 + parent: 1 + - uid: 2473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,69.5 + parent: 1 + - uid: 2474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,69.5 + parent: 1 + - uid: 2475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,69.5 + parent: 1 + - uid: 2476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,69.5 + parent: 1 + - uid: 2477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,69.5 + parent: 1 + - uid: 2478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,69.5 + parent: 1 + - uid: 2479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,69.5 + parent: 1 + - uid: 2480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,69.5 + parent: 1 + - uid: 2481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,69.5 + parent: 1 + - uid: 2482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,69.5 + parent: 1 + - uid: 2483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,69.5 + parent: 1 + - uid: 2484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,69.5 + parent: 1 + - uid: 2485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,69.5 + parent: 1 + - uid: 2486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,69.5 + parent: 1 + - uid: 2487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,69.5 + parent: 1 + - uid: 2488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,69.5 + parent: 1 + - uid: 2489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,69.5 + parent: 1 + - uid: 2490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,69.5 + parent: 1 + - uid: 2491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,69.5 + parent: 1 + - uid: 2492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,68.5 + parent: 1 + - uid: 2493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,67.5 + parent: 1 + - uid: 2494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,66.5 + parent: 1 + - uid: 2495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,65.5 + parent: 1 + - uid: 2496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,64.5 + parent: 1 + - uid: 2497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,63.5 + parent: 1 + - uid: 2498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,62.5 + parent: 1 + - uid: 2499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,61.5 + parent: 1 + - uid: 2500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,60.5 + parent: 1 + - uid: 2501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,59.5 + parent: 1 + - uid: 2502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,58.5 + parent: 1 + - uid: 2503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,57.5 + parent: 1 + - uid: 2504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,56.5 + parent: 1 + - uid: 2505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,55.5 + parent: 1 + - uid: 2506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,54.5 + parent: 1 + - uid: 2507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,53.5 + parent: 1 + - uid: 2508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,52.5 + parent: 1 + - uid: 2509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,51.5 + parent: 1 + - uid: 2510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,51.5 + parent: 1 + - uid: 2511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,51.5 + parent: 1 + - uid: 2512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,51.5 + parent: 1 + - uid: 2513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,51.5 + parent: 1 + - uid: 2514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,51.5 + parent: 1 + - uid: 2515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,51.5 + parent: 1 + - uid: 2516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,51.5 + parent: 1 + - uid: 2517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,50.5 + parent: 1 + - uid: 2518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,49.5 + parent: 1 + - uid: 2519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,48.5 + parent: 1 + - uid: 2520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,48.5 + parent: 1 + - uid: 2521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,48.5 + parent: 1 + - type: PointLight + energy: 2 + radius: 2 + offset: 0,-2 + - uid: 2522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,48.5 + parent: 1 +- proto: WallReinforced entities: - - uid: 708 + - uid: 2018 + components: + - type: Transform + pos: 83.5,42.5 + parent: 1 + missingComponents: + - Occluder + - uid: 2019 + components: + - type: Transform + pos: 83.5,41.5 + parent: 1 + missingComponents: + - Occluder + - uid: 2020 + components: + - type: Transform + pos: 83.5,40.5 + parent: 1 + missingComponents: + - Occluder +- proto: WallShuttle + entities: + - uid: 2809 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2709 + - uid: 2810 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2709 + - uid: 2811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 2709 + - uid: 2812 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2709 + - uid: 2813 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2709 + - uid: 2814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2709 + - uid: 2815 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2709 + - uid: 2816 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2709 + - uid: 2817 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2709 + - uid: 2818 components: - type: Transform pos: -0.5,-3.5 - parent: 179 -- proto: WeaponLaserCarbine + parent: 2709 + - uid: 2819 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2709 + - uid: 2820 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2709 + - uid: 2821 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2709 + - uid: 2822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 2709 + - uid: 2823 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2709 + - uid: 2824 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2709 + - uid: 2825 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2709 + - uid: 2826 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2709 + - uid: 2827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2709 + - uid: 2828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2709 + - uid: 2829 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2709 + - uid: 2830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2709 +- proto: WallShuttleDiagonal entities: + - uid: 2831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2709 + - uid: 2832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2709 + - uid: 2833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2709 + - uid: 2834 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2709 + - uid: 2835 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2709 + - uid: 2836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2709 + - uid: 2837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 2709 + - uid: 2838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2709 +- proto: WallSolid + entities: + - uid: 2 + components: + - type: Transform + pos: 23.5,14.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 23.5,12.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 23.5,11.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 23.5,10.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 23.5,8.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 23.5,7.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 23.5,6.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 23.5,5.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 23.5,3.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 23.5,2.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 23.5,1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 23.5,0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 24.5,14.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 24.5,0.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 25.5,14.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 25.5,0.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 26.5,0.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 27.5,0.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 28.5,15.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 28.5,14.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 28.5,0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 29.5,0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 30.5,0.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 31.5,0.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 32.5,0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 33.5,0.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 34.5,0.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 35.5,0.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 36.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 37.5,19.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 37.5,0.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 38.5,19.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 38.5,18.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 38.5,17.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 38.5,16.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 38.5,15.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 38.5,14.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 38.5,0.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 39.5,14.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 39.5,0.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 40.5,14.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 40.5,0.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 41.5,14.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 41.5,0.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 42.5,14.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 42.5,0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 43.5,14.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 43.5,13.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 43.5,11.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 43.5,10.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 43.5,9.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 43.5,8.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 43.5,7.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 43.5,6.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 43.5,5.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 43.5,4.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 43.5,3.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 43.5,2.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 43.5,1.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 43.5,0.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 44.5,14.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 44.5,0.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 45.5,14.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 45.5,0.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 46.5,14.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 46.5,0.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 47.5,14.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 47.5,0.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 48.5,14.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 48.5,0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 49.5,14.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 49.5,0.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 50.5,14.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 50.5,0.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 51.5,14.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 51.5,0.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 52.5,14.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 52.5,0.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 53.5,14.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 53.5,0.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 54.5,14.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 54.5,0.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 55.5,14.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 55.5,0.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 56.5,14.5 + parent: 1 - uid: 188 components: - type: Transform - pos: -3.5226438,-0.45543313 - parent: 179 -- proto: WeaponLauncherMultipleRocket - entities: - - uid: 671 + pos: 56.5,0.5 + parent: 1 + - uid: 189 components: - type: Transform - pos: -13.195735,9.730438 - parent: 179 + pos: 57.5,14.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 57.5,0.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 58.5,14.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 58.5,0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 59.5,14.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 59.5,0.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 60.5,14.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 60.5,0.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 61.5,14.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 61.5,0.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 62.5,14.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 62.5,0.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 63.5,14.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 63.5,13.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 63.5,12.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 63.5,11.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 63.5,10.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 63.5,9.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 63.5,8.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 63.5,7.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 63.5,6.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 63.5,5.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 63.5,4.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 63.5,3.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 63.5,2.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 63.5,1.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 63.5,0.5 + parent: 1 + - uid: 2009 + components: + - type: Transform + pos: 80.5,44.5 + parent: 1 + missingComponents: + - Occluder + - uid: 2010 + components: + - type: Transform + pos: 79.5,44.5 + parent: 1 + missingComponents: + - Occluder + - uid: 2011 + components: + - type: Transform + pos: 81.5,44.5 + parent: 1 + missingComponents: + - Occluder +- proto: WardrobeChemistryFilled + entities: + - uid: 1132 + components: + - type: Transform + pos: 55.625,41.5 + parent: 1 +- proto: WardrobeRoboticsFilled + entities: + - uid: 813 + components: + - type: Transform + pos: 57.5,20.5 + parent: 1 +- proto: WaterVaporCanister + entities: + - uid: 1452 + components: + - type: Transform + pos: 96.5,12.5 + parent: 1 +- proto: WeaponAntiqueLaser + entities: + - uid: 2168 + components: + - type: Transform + pos: 67.5,39 + parent: 1 +- proto: WeaponDisabler + entities: + - uid: 2166 + components: + - type: Transform + pos: 67.5,40 + parent: 1 +- proto: WeaponDisablerSMG + entities: + - uid: 2167 + components: + - type: Transform + pos: 73.5,40 + parent: 1 +- proto: WeaponEnergyShotgun + entities: + - uid: 2161 + components: + - type: Transform + pos: 67.5,39.5 + parent: 1 +- proto: WeaponLaserCarbine + entities: + - uid: 2117 + components: + - type: Transform + pos: 73.5,39.5 + parent: 1 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 804 + components: + - type: Transform + pos: 58.492065,24.668179 + parent: 1 - proto: WeaponLauncherRocket entities: - - uid: 436 + - uid: 2169 components: - type: Transform - pos: -3.478273,-1.1611286 - parent: 179 + pos: 73.5,38.5 + parent: 1 +- proto: WeaponLightMachineGunL6C + entities: + - uid: 2172 + components: + - type: Transform + pos: 67.5,37.5 + parent: 1 +- proto: WeaponMinigun + entities: + - uid: 2205 + components: + - type: Transform + pos: 67.5,38 + parent: 1 - proto: WeaponRifleAk + entities: + - uid: 2170 + components: + - type: Transform + pos: 73.5,40.5 + parent: 1 +- proto: WeaponRifleLecter + entities: + - uid: 2171 + components: + - type: Transform + pos: 73.5,41.5 + parent: 1 +- proto: WeaponRifleM90GrenadeLauncher + entities: + - uid: 2174 + components: + - type: Transform + pos: 73.5,41 + parent: 1 +- proto: WeaponShotgunBulldog + entities: + - uid: 2158 + components: + - type: Transform + pos: 67.5,41.5 + parent: 1 +- proto: WeaponShotgunEnforcer + entities: + - uid: 2159 + components: + - type: Transform + pos: 67.5,41 + parent: 1 +- proto: WeaponShotgunKammerer + entities: + - uid: 2160 + components: + - type: Transform + pos: 67.5,40.5 + parent: 1 +- proto: WeaponSniperHristov + entities: + - uid: 2210 + components: + - type: Transform + pos: 74.5,35.499 + parent: 1 +- proto: WeaponSubMachineGunC20r + entities: + - uid: 2207 + components: + - type: Transform + pos: 73.5,38 + parent: 1 +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 2173 + components: + - type: Transform + pos: 67.5,38.5 + parent: 1 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 2208 + components: + - type: Transform + pos: 73.5,37.5 + parent: 1 +- proto: WeaponTaser + entities: + - uid: 2165 + components: + - type: Transform + pos: 73.5,39 + parent: 1 +- proto: WelderExperimental + entities: + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.39586,14.629438 + parent: 1 +- proto: WhiteholeGrenade + entities: + - uid: 2177 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2179 + components: + - type: Transform + parent: 2176 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WindoorSecureUranium + entities: + - uid: 751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,27.5 + parent: 1 +- proto: Window + entities: + - uid: 572 + components: + - type: Transform + pos: 31.5,20.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 35.5,20.5 + parent: 1 +- proto: Wirecutter + entities: + - uid: 439 + components: + - type: Transform + pos: 36.755142,14.728546 + parent: 1 + - uid: 3141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.33309,11.478778 + parent: 1 +- proto: Wrench entities: - uid: 437 - components: - - type: Transform - pos: -3.5018106,0.24183923 - parent: 179 - - uid: 949 - components: - - type: Transform - pos: -12.238617,9.081488 - parent: 179 -- proto: WelderExperimental - entities: - - uid: 343 - components: - - type: Transform - pos: 0.6895334,4.7183027 - parent: 179 -- proto: WeldingFuelTankFull - entities: - - uid: 693 - components: - - type: Transform - pos: -1.5,3.5 - parent: 179 -- proto: Window - entities: - - uid: 111 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 179 - - uid: 194 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 179 - - uid: 230 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 179 - - uid: 1001 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 179 - - uid: 1002 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 179 - - uid: 1003 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 179 - - uid: 1004 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 179 - - uid: 1005 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 179 - - uid: 1006 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 179 -- proto: WindowReinforcedDirectional - entities: - - uid: 340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-7.5 - parent: 179 - - uid: 345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-8.5 - parent: 179 - - uid: 347 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 179 - - uid: 348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-8.5 - parent: 179 - - uid: 1236 - components: - - type: Transform - pos: 23.5,-8.5 - parent: 179 - - uid: 1237 - components: - - type: Transform - pos: 24.5,-8.5 - parent: 179 - - uid: 1239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-10.5 - parent: 179 - - uid: 1240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-10.5 - parent: 179 - - uid: 1241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-9.5 - parent: 179 - - uid: 1242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-11.5 - parent: 179 - - uid: 1243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-13.5 - parent: 179 - - uid: 1244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-15.5 - parent: 179 - - uid: 1245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 179 - - uid: 1246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-19.5 - parent: 179 - - uid: 1247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-22.5 - parent: 179 - - uid: 1248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-21.5 - parent: 179 - - uid: 1249 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 179 - - uid: 1250 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 179 - - uid: 1251 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 179 - - uid: 1252 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 179 - - uid: 1253 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 179 - - uid: 1254 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 179 - - uid: 1255 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 179 - - uid: 1256 - components: - - type: Transform - pos: 23.5,-20.5 - parent: 179 - - uid: 1257 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 179 - - uid: 1259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-24.5 - parent: 179 - - uid: 1261 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 179 - - uid: 1262 - components: - - type: Transform - pos: 23.5,-14.5 - parent: 179 - - uid: 1264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-22.5 - parent: 179 - - uid: 1265 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 179 - - uid: 1266 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 179 - - uid: 1267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-12.5 - parent: 179 - - uid: 1268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 179 - - uid: 1269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 179 - - uid: 1270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-14.5 - parent: 179 - - uid: 1271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-23.5 - parent: 179 - - uid: 1273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-16.5 - parent: 179 - - uid: 1274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-16.5 - parent: 179 - - uid: 1275 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-18.5 - parent: 179 - - uid: 1276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-18.5 - parent: 179 - - uid: 1279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-20.5 - parent: 179 - - uid: 1280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-20.5 - parent: 179 - - uid: 1283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-24.5 - parent: 179 - - uid: 1386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 179 - - uid: 1387 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-13.5 - parent: 179 - - uid: 1388 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 179 - - uid: 1490 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 179 - - uid: 1491 + pos: 35.929474,14.57658 + parent: 1 + - uid: 1054 + components: + - type: Transform + pos: 30.5,43.5 + parent: 1 + - uid: 1193 + components: + - type: Transform + pos: 50.971176,40.62413 + parent: 1 + - uid: 3155 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-14.5 - parent: 179 - - uid: 1492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-16.5 - parent: 179 - - uid: 1494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-13.5 - parent: 179 - - uid: 1495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-16.5 - parent: 179 - - uid: 1496 - components: - - type: Transform - pos: 11.5,-12.5 - parent: 179 - - uid: 1497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-16.5 - parent: 179 - - uid: 1498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-15.5 - parent: 179 - - uid: 1501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-16.5 - parent: 179 - - uid: 1505 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 179 - - uid: 1562 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 179 -- proto: Wirecutter - entities: - - uid: 359 - components: - - type: Transform - pos: -1.6207478,4.3951616 - parent: 179 -- proto: Wrench - entities: - - uid: 327 - components: - - type: Transform - pos: -0.11783123,4.753312 - parent: 179 + pos: 81.338554,6.671567 + parent: 1 ... diff --git a/Resources/Maps/_Sunrise/Station/box.yml b/Resources/Maps/_Sunrise/Station/box.yml index c9909e811f..76dde2f15b 100644 --- a/Resources/Maps/_Sunrise/Station/box.yml +++ b/Resources/Maps/_Sunrise/Station/box.yml @@ -1,82 +1,92 @@ meta: - format: 7 - category: Map - engineVersion: 254.1.0 - forkId: "" - forkVersion: "" - time: 04/21/2025 23:26:41 - entityCount: 32154 -maps: -- 1 -grids: -- 2 -orphans: [] -nullspace: [] + format: 6 + postmapinit: false tilemap: 0: Space + 4: FloorAsphalt 7: FloorAsteroidSand 8: FloorAsteroidSandDug - 15: FloorAstroGrass - 13: FloorAstroIce + 10: FloorAsteroidSandUnvariantized + 11: FloorAsteroidTile + 12: FloorAstroGrass + 6: FloorAstroIce + 5: FloorAstroSnow 14: FloorBar - 9: FloorBasalt - 16: FloorBlue + 15: FloorBasalt 17: FloorBlueCircuit 19: FloorBrokenWood 20: FloorCarpetClown - 21: FloorCarpetOffice + 22: FloorCave + 23: FloorCaveDrought + 24: FloorChromite 25: FloorClown + 26: FloorConcrete + 27: FloorConcreteMono + 28: FloorConcreteSmooth 29: FloorDark + 30: FloorDarkDiagonal + 31: FloorDarkDiagonalMini + 32: FloorDarkHerringbone 33: FloorDarkMini - 11: FloorDarkMono + 34: FloorDarkMono + 35: FloorDarkOffset + 36: FloorDarkPavement + 1: FloorDarkPavementVertical 38: FloorDarkPlastic - 1: FloorDesert - 22: FloorDirt - 41: FloorEighties - 31: FloorFlesh 44: FloorFreezer 45: FloorGlass + 46: FloorGold 47: FloorGrass - 49: FloorGrassJungle - 4: FloorGrassLight - 23: FloorGrayConcrete - 32: FloorGrayConcreteSmooth + 51: FloorGrayConcrete + 52: FloorGrayConcreteMono + 53: FloorGrayConcreteSmooth + 54: FloorGreenCircuit + 55: FloorGym + 57: FloorHullReinforced 58: FloorHydro - 12: FloorJungleAstroGrass + 59: FloorIce 60: FloorKitchen - 61: FloorLaundry 62: FloorLino 64: FloorMetalDiamond - 27: FloorMetalFoam 65: FloorMime - 18: FloorPlanetDirt - 24: FloorPlanetGrass - 10: FloorPlastic - 3: FloorRGlass + 69: FloorMono + 70: FloorOldConcrete + 71: FloorOldConcreteMono + 72: FloorOldConcreteSmooth + 74: FloorPlanetGrass + 75: FloorPlastic + 76: FloorRGlass 77: FloorReinforced 78: FloorReinforcedHardened 79: FloorRockVault 80: FloorShowroom - 82: FloorShuttleOrange + 85: FloorShuttleWhite 87: FloorSnow 89: FloorSteel - 6: FloorSteelCheckerDark 92: FloorSteelCheckerLight + 94: FloorSteelDiagonal + 95: FloorSteelDiagonalMini 96: FloorSteelDirty - 98: FloorSteelLime - 28: FloorSteelMini + 97: FloorSteelHerringbone + 99: FloorSteelMini + 100: FloorSteelMono + 3: FloorSteelPavement + 103: FloorSteelPavementVertical 104: FloorTechMaint 105: FloorTechMaint2 106: FloorTechMaint3 108: FloorWhite - 30: FloorWhiteDiagonal - 5: FloorWhiteMini + 109: FloorWhiteDiagonal + 111: FloorWhiteHerringbone + 112: FloorWhiteMini + 113: FloorWhiteMono + 114: FloorWhiteOffset 117: FloorWhitePlastic 118: FloorWood - 26: FloorWoodLarge 119: FloorWoodTile 120: Lattice 121: Plating + 122: PlatingAsteroid 2: PlatingDamaged entities: - proto: "" @@ -92,412 +102,665 @@ entities: - type: MovedGrids - type: Broadphase - type: OccluderTree + - type: LoadedMap - type: Parallax - parallax: BoxStation + parallax: AspidParallax - uid: 2 components: - type: MetaData - name: Box Station + name: Gate station - type: Transform - pos: 0.50032806,0.50115013 + pos: 38.852333,-88.573135 parent: 1 - type: MapGrid chunks: - -1,-1: - ind: -1,-1 - tiles: WQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAHQAAAAADLQAAAAABHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACLQAAAAADHQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABLQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAWQAAAAACaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABLQAAAAADWQAAAAACLQAAAAADLQAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAADWQAAAAACWQAAAAACWQAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAACLQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABLQAAAAAA - version: 6 0,0: ind: 0,0 - tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAABdgAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAUAAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAABEwAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAWQAAAAABeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAEwAAAAAAAgAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAWQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABWQAAAAABWQAAAAACeQAAAAAAUAAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAAAWQAAAAADWQAAAAADaQAAAAAAaQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADWQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAWQAAAAADWQAAAAACaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAWQAAAAACWQAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAaQAAAAAA + tiles: dwAAAAADdwAAAAABdwAAAAADdwAAAAABdwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAdwAAAAADdwAAAAAALgAAAAAAdwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: dgAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAABaAAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAWQAAAAADWQAAAAADdgAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAACLQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAACdgAAAAACdgAAAAADdgAAAAABeQAAAAAAWQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAAAaAAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAWQAAAAAALQAAAAACaAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABLQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAACLQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABLQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADLQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAABWQAAAAABWQAAAAABWQAAAAABLQAAAAAALQAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAAWQAAAAABLQAAAAABLQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAdwAAAAABdwAAAAADLgAAAAAAdwAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAAAdwAAAAADdwAAAAAAdwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: aQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACdgAAAAABdgAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAALQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAWQAAAAACdgAAAAABdgAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAALQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAdgAAAAABWQAAAAADdgAAAAABdgAAAAABeQAAAAAAaQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAdgAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABLQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAdgAAAAADWQAAAAACdgAAAAABdgAAAAAAeQAAAAAAaQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAWQAAAAADLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAWQAAAAACdgAAAAADdgAAAAABeQAAAAAAaQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABLQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABdgAAAAADdgAAAAACeQAAAAAAaQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAWQAAAAACLQAAAAADeQAAAAAAeQAAAAAAeQAAAAAABAAAAAAAHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAABAAAAAADHQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAALQAAAAADeQAAAAAAeQAAAAAAeQAAAAAABAAAAAADHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABLQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADLQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABLQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADLQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABaQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAWQAAAAADLQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACWQAAAAADWQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACLQAAAAAA + tiles: WQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADdwAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAACZAAAAAACZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 1,-1: - ind: 1,-1 - tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADLQAAAAACWQAAAAADWQAAAAACWQAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAACLQAAAAAALQAAAAACWQAAAAABLQAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAADaAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAaQAAAAAAeQAAAAAAPAAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAABHQAAAAACWQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAdgAAAAABdgAAAAAAdgAAAAADaQAAAAAAeQAAAAAAPAAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAACaAAAAAAAWQAAAAADaQAAAAAAaQAAAAAAaQAAAAAAdgAAAAADdgAAAAACdgAAAAABaQAAAAAAeQAAAAAAPAAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAPAAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAADWQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAPAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAPAAAAAAAWQAAAAABeQAAAAAAWQAAAAADLQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAaQAAAAAAeQAAAAAAPAAAAAAAWQAAAAADeQAAAAAAWQAAAAACLQAAAAABWQAAAAAAaQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAALQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAWQAAAAACaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAA + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAZAAAAAADZAAAAAADWQAAAAACWQAAAAAAWQAAAAABZAAAAAAAZAAAAAACZAAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAZAAAAAADZAAAAAABWQAAAAABWQAAAAABWQAAAAABZAAAAAACZAAAAAABZAAAAAAAZAAAAAADWQAAAAADWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAZAAAAAACZAAAAAABWQAAAAADWQAAAAADWQAAAAABZAAAAAACZAAAAAADZAAAAAABZAAAAAABZAAAAAABWQAAAAABeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAdwAAAAACZAAAAAABZAAAAAAAWQAAAAACWQAAAAADWQAAAAABZAAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAZAAAAAACZAAAAAACWQAAAAADWQAAAAACWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAADZAAAAAAAZAAAAAADWQAAAAAAdwAAAAACdwAAAAADdwAAAAACdwAAAAABdwAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: WQAAAAAAWQAAAAABWQAAAAACeQAAAAAAagAAAAAAHQAAAAADeQAAAAAAagAAAAAAagAAAAAAagAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAagAAAAAAWQAAAAACLQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADLQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADLQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADLQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAADaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADLQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLQAAAAADeQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACLQAAAAADLQAAAAACLQAAAAAALQAAAAAALQAAAAADWQAAAAABLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAAALQAAAAABWQAAAAADWQAAAAAAWQAAAAABLQAAAAAALQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAD - version: 6 - -2,-2: - ind: -2,-2 - tiles: WQAAAAACWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADLQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABLQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLQAAAAADdgAAAAAAdgAAAAABeQAAAAAAagAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAagAAAAAAWQAAAAAAWQAAAAADagAAAAAAeQAAAAAAWQAAAAABLQAAAAABdgAAAAAAdgAAAAACeQAAAAAAagAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABagAAAAAAeQAAAAAAWQAAAAABLQAAAAACdgAAAAABdgAAAAAAeQAAAAAAagAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADagAAAAAAeQAAAAAAWQAAAAAALQAAAAAAdgAAAAACdgAAAAABeQAAAAAAagAAAAAAWQAAAAAAWQAAAAABagAAAAAAagAAAAAAeQAAAAAAagAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAALQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAWQAAAAADWQAAAAADagAAAAAAagAAAAAAeQAAAAAAagAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAALQAAAAAAagAAAAAAagAAAAAAeQAAAAAAagAAAAAAWQAAAAAAWQAAAAADagAAAAAAagAAAAAAeQAAAAAAagAAAAAAWQAAAAABWQAAAAADagAAAAAAeQAAAAAAWQAAAAACLQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAagAAAAAAagAAAAAAagAAAAAAWQAAAAADWQAAAAAAagAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAagAAAAAAeQAAAAAAagAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAagAAAAAAagAAAAAAagAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAagAAAAAAWQAAAAACWQAAAAADWQAAAAADagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAagAAAAAAagAAAAAAagAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACLQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAagAAAAAAWQAAAAADLQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAagAAAAAAHQAAAAABeQAAAAAAagAAAAAAagAAAAAAagAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAagAAAAAAWQAAAAACLQAAAAAD - version: 6 - 1,-2: - ind: 1,-2 - tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAABeQAAAAAALAAAAAAAbAAAAAACbAAAAAADLAAAAAAAeQAAAAAALAAAAAAALAAAAAAAbAAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAALAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAACWQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAADeQAAAAAALAAAAAAAbAAAAAABbAAAAAADLAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAACeQAAAAAAbAAAAAACLQAAAAADLQAAAAACLQAAAAABbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAbAAAAAAALQAAAAADLQAAAAAALQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAbAAAAAADbAAAAAADLAAAAAAALAAAAAAAbAAAAAABLAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAALAAAAAAAWQAAAAACWQAAAAAAWQAAAAACLAAAAAAAeQAAAAAALAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAALAAAAAAAWQAAAAACWQAAAAACWQAAAAABLAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABbAAAAAABHQAAAAAAHQAAAAADeQAAAAAALAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAADbAAAAAADeQAAAAAAWQAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAABeQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAABbAAAAAAAHQAAAAADHQAAAAABeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAWQAAAAABeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAAAbAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAAAbAAAAAADHQAAAAADHQAAAAAAeQAAAAAALAAAAAAAbAAAAAABbAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAA - version: 6 - 0,-2: - ind: 0,-2 - tiles: WQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACLQAAAAADWQAAAAADLQAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAACWQAAAAABWQAAAAAAWQAAAAAALQAAAAABLQAAAAABLQAAAAAALQAAAAADLQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABLQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAMQAAAAADMQAAAAACMQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAWQAAAAABLQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACLQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAdgAAAAABdgAAAAABdgAAAAACWQAAAAADWQAAAAABLQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAABEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAALAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAALAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABLQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABLAAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADLQAAAAAAHQAAAAAAHQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADLQAAAAABdgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAALQAAAAACdgAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAADaAAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAAWQAAAAADLQAAAAADdgAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAADaAAAAAAAdgAAAAABdgAAAAADdgAAAAACeQAAAAAAWQAAAAADLQAAAAAD - version: 6 - -1,-2: - ind: -1,-2 - tiles: WQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAACLQAAAAABWQAAAAACWQAAAAAAWQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAACLQAAAAADWQAAAAABLQAAAAABLQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADaQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAaQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAaAAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAADaQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACaQAAAAAAWQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAABHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAADwAAAAAADwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACLQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAADLQAAAAADHQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAHQAAAAACLQAAAAADHQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAdgAAAAAAdgAAAAAA + tiles: IgAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALgAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALgAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALgAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAALgAAAAAALgAAAAAALgAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAWQAAAAAALgAAAAAALgAAAAAALgAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABIQAAAAABWQAAAAADWQAAAAABLgAAAAAALgAAAAAALgAAAAAAWQAAAAAAWQAAAAABWQAAAAAAZAAAAAADZAAAAAADZAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAZAAAAAABIQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABZAAAAAABZAAAAAAAZAAAAAAAWQAAAAADWQAAAAADWQAAAAADZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAACZAAAAAADZAAAAAADWQAAAAACWQAAAAACWQAAAAADZAAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAZAAAAAADZAAAAAAAZAAAAAAAWQAAAAADWQAAAAAAWQAAAAADZAAAAAAAWQAAAAAAWQAAAAABWQAAAAACZAAAAAACZAAAAAACZAAAAAACWQAAAAACZAAAAAADWQAAAAACZAAAAAAAZAAAAAADZAAAAAACWQAAAAACWQAAAAACWQAAAAAAZAAAAAAD version: 6 -2,0: ind: -2,0 - tiles: eQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAHQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAADHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -2,-3: - ind: -2,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAagAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACagAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAagAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAagAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -1,-3: - ind: -1,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAALQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABLQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAALQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADLQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAABLQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABLQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABLQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACLQAAAAACAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABLQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACWQAAAAADLQAAAAADAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADLQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAB - version: 6 - 0,-3: - ind: 0,-3 - tiles: WQAAAAACaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACaAAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdwAAAAAAdgAAAAADdgAAAAABdgAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdwAAAAADdgAAAAACdgAAAAABdgAAAAADdwAAAAACaQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAaQAAAAAAaQAAAAAA - version: 6 - 1,-3: - ind: 1,-3 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAAAdQAAAAAAdQAAAAABdQAAAAADeQAAAAAALAAAAAAAbAAAAAADLAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAdQAAAAABLQAAAAABLQAAAAAALQAAAAAAdQAAAAABWQAAAAAAbAAAAAAAbAAAAAAALAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAABdQAAAAADdQAAAAADdQAAAAABeQAAAAAALAAAAAAAbAAAAAAALAAAAAAAeQAAAAAAbAAAAAAALAAAAAAALAAAAAAAbAAAAAAAaQAAAAAAeQAAAAAAJgAAAAADJgAAAAADdQAAAAACJgAAAAACJgAAAAABeQAAAAAALAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAAALAAAAAAALAAAAAAAbAAAAAACWQAAAAACeQAAAAAAJgAAAAACJgAAAAABdQAAAAACJgAAAAAAJgAAAAADeQAAAAAAUgAAAAAAbAAAAAACLAAAAAAAeQAAAAAAbAAAAAABLAAAAAAALAAAAAAAbAAAAAAD - version: 6 - 1,0: - ind: 1,0 - tiles: eQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAABLQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAAALQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAACLQAAAAABWQAAAAABaQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLQAAAAADWQAAAAACaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAACLQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAADwAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABLQAAAAADLQAAAAADLQAAAAADLQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAHAAAAAAAaQAAAAAAeQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAaQAAAAAAHAAAAAAAaQAAAAAAeQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAaQAAAAAAeQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAeQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAC - version: 6 - 0,1: - ind: 0,1 - tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAHQAAAAADdgAAAAADdgAAAAAALQAAAAAAWQAAAAACLQAAAAABLQAAAAADLQAAAAABLQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABHQAAAAACHQAAAAACHQAAAAADdgAAAAABdgAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAHQAAAAABdgAAAAAAdgAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADaQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAHQAAAAABdgAAAAAAdgAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABaQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAaAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACaAAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADaAAAAAAAHQAAAAADaQAAAAAAaQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAABaAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAADaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAA - version: 6 - -1,1: - ind: -1,1 - tiles: eQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAdgAAAAAAdgAAAAADdgAAAAABaQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABWQAAAAACWQAAAAACaQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADLQAAAAABWQAAAAACWQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAABWQAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAACWQAAAAAALQAAAAAALQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABHQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAABeQAAAAAALAAAAAAALAAAAAAAbAAAAAACLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABLAAAAAAAbAAAAAAALAAAAAAAbAAAAAABLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAADLAAAAAAAbAAAAAABbAAAAAACbAAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAD - version: 6 - 1,1: - ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAdgAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAWQAAAAAAdgAAAAAAeQAAAAAAWQAAAAABWQAAAAABaQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAWQAAAAAAdgAAAAAAeQAAAAAAWQAAAAACWQAAAAABaQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAdgAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAdgAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAdgAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAdgAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,2: - ind: -1,2 - tiles: LAAAAAAAbAAAAAACLAAAAAAAbAAAAAACLAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABLAAAAAAAbAAAAAACLAAAAAAAbAAAAAADLAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAADWQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAABHQAAAAABHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAACaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA - version: 6 - 0,2: - ind: 0,2 - tiles: HQAAAAABHQAAAAABHQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABaAAAAAAAHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAdgAAAAABHQAAAAACdgAAAAABdgAAAAABHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAdgAAAAABHQAAAAAAdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABHQAAAAAAdgAAAAABdgAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAADdgAAAAAAdgAAAAABHQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADHQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA - version: 6 - 1,2: - ind: 1,2 - tiles: aAAAAAAAaAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADaAAAAAAAaAAAAAAAHQAAAAABHQAAAAADHQAAAAADaAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAHQAAAAACaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAHQAAAAAAdgAAAAACeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAADHQAAAAACdgAAAAACeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAADHQAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAABHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,1: - ind: 2,1 - tiles: aQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABaQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADaQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA - version: 6 - 2,0: - ind: 2,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAALwAAAAAALwAAAAADLwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACWQAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA - version: 6 - -2,1: - ind: -2,1 - tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADEwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADEwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAACaAAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACdgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACaAAAAAAAHQAAAAAAaAAAAAAAdwAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAdwAAAAABEwAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAAgAAAAACAgAAAAABeQAAAAAAdwAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAeQAAAAAAEwAAAAAAGgAAAAABeQAAAAAAFwAAAAABFwAAAAADeQAAAAAAdgAAAAACEwAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA - version: 6 - -2,2: - ind: -2,2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAdwAAAAACEwAAAAACeQAAAAAAFwAAAAACeQAAAAAAeQAAAAAAEwAAAAAFEwAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADEwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGgAAAAACdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGwAAAAAAAgAAAAABeQAAAAAAGwAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABWQAAAAADeQAAAAAAeQAAAAAAFwAAAAACWQAAAAABeQAAAAAAFwAAAAAAFwAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADGwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAA - version: 6 - 0,3: - ind: 0,3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAAAZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdQAAAAADcAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAcAAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcAAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: eQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADLQAAAAADLQAAAAABLQAAAAAALQAAAAACLQAAAAADLQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA - version: 6 - -3,1: - ind: -3,1 - tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAEwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAACEwAAAAABdgAAAAABEwAAAAAAGwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAEwAAAAAEdgAAAAADeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAGwAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdwAAAAACdgAAAAAAdgAAAAACdwAAAAADEwAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdwAAAAABdgAAAAADeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEwAAAAACdgAAAAAAdgAAAAABEwAAAAAGEwAAAAAGdwAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAGgAAAAABdwAAAAACeQAAAAAAeQAAAAAAGwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAACEwAAAAABdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdwAAAAAAdgAAAAAAEwAAAAACGgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEwAAAAAEEwAAAAAEdgAAAAAAdgAAAAADeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAACdwAAAAAAdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAFwAAAAACAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAEwAAAAAAdwAAAAACEwAAAAAEdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -4,1: - ind: -4,1 - tiles: eAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA - version: 6 - -4,0: - ind: -4,0 - tiles: WQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAaQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -5,0: - ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaQAAAAAAWQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAYgAAAAABWQAAAAACYgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAYgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAYgAAAAAAYgAAAAABYgAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABYgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADYgAAAAADYgAAAAADYgAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABYgAAAAABeQAAAAAA - version: 6 - -5,1: - ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABYgAAAAADYgAAAAADYgAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACYgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADYgAAAAACYgAAAAADYgAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAABYgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABeQAAAAAAYgAAAAACWQAAAAACYgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYgAAAAABYgAAAAADYgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -6,0: - ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -5,-1: - ind: -5,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAaQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAACaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAA - version: 6 - -4,-1: - ind: -4,-1 - tiles: aQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADLQAAAAABLQAAAAAALQAAAAADWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAC + tiles: BwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAADBwAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHeQAAAAAALQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAALQAAAAAATAAAAAACTAAAAAADTAAAAAACLQAAAAACBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJeQAAAAAALQAAAAAATAAAAAACTAAAAAADTAAAAAADLQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAeQAAAAAALQAAAAACTAAAAAACTAAAAAACTAAAAAABLQAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAeQAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACLQAAAAADLQAAAAAALQAAAAABWQAAAAADWQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAAAWQAAAAABWQAAAAADWQAAAAAALQAAAAACLQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAC + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAIgAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAACZAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAIgAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACZAAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAABZAAAAAACZAAAAAACZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAABTAAAAAAAZAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAACaAAAAAAAeQAAAAAATAAAAAAATAAAAAADZAAAAAABWQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAAAZAAAAAAAWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAYwAAAAADYwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAADWQAAAAACWQAAAAADYwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAACNQAAAAADNQAAAAAAeQAAAAAAYwAAAAADWQAAAAACWQAAAAAAYwAAAAACeQAAAAAAIQAAAAACIQAAAAAAIQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAANQAAAAACOQAAAAAANQAAAAABNQAAAAAAYwAAAAAAWQAAAAABWQAAAAABYwAAAAADeQAAAAAAIQAAAAACIgAAAAABIgAAAAABIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAANQAAAAAANQAAAAABNQAAAAADeQAAAAAAYwAAAAACWQAAAAADWQAAAAABYwAAAAAAeQAAAAAAIQAAAAACIQAAAAADIQAAAAADIQAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAADWQAAAAACWQAAAAAAYwAAAAADeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYwAAAAADWQAAAAADWQAAAAACYwAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABBwAAAAACBwAAAAALeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAADWQAAAAABWQAAAAACYwAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAC version: 6 - 3,0: - ind: 3,0 - tiles: OgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABdgAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABdgAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAADdgAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAADUgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 2,-1: - ind: 2,-1 - tiles: eQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADLQAAAAABWQAAAAACLQAAAAACLQAAAAACLQAAAAACLQAAAAACLQAAAAACLQAAAAADWQAAAAABWQAAAAACWQAAAAACLQAAAAADLQAAAAABLQAAAAABLQAAAAABLQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAABgAAAAAABgAAAAACBgAAAAADBgAAAAABPAAAAAAAeQAAAAAAWQAAAAADLQAAAAADWQAAAAACeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAADPAAAAAAAPAAAAAAAWQAAAAABLQAAAAAAWQAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAABgAAAAACBgAAAAACBgAAAAACBgAAAAADPAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAOgAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACBgAAAAADBgAAAAABBgAAAAADeQAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAOgAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAACWQAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAOgAAAAAAWQAAAAABWQAAAAADHQAAAAABHQAAAAACWQAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAOgAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABaQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAADaQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAALwAAAAADLwAAAAABLwAAAAADOgAAAAAAOgAAAAAAOgAAAAAA - version: 6 - 3,1: - ind: 3,1 - tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAKQAAAAAAeQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACGgAAAAADdgAAAAACdgAAAAADEwAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGgAAAAACdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEwAAAAAAdgAAAAABdgAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdwAAAAAAeQAAAAAAdgAAAAACdgAAAAABdwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAEwAAAAABdwAAAAADEwAAAAAFdgAAAAADGgAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAACAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEwAAAAACdwAAAAAAdgAAAAADGgAAAAAAdgAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 4,1: - ind: 4,1 - tiles: HQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABAgAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAACQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABHQAAAAADHQAAAAADeQAAAAAACQAAAAAACQAAAAAAeQAAAAAACQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAEAgAAAAACHQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACCQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 4,0: - ind: 4,0 - tiles: dgAAAAACdgAAAAADdgAAAAADPgAAAAAAeQAAAAAAHQAAAAABHQAAAAADaAAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAdgAAAAABdgAAAAACdgAAAAADPgAAAAAAeQAAAAAAHQAAAAACHQAAAAACaAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABPgAAAAAAHQAAAAABHQAAAAAAHQAAAAACaAAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAdgAAAAACdgAAAAAAdgAAAAABPgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAaAAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAACEgAAAAACEgAAAAAADwAAAAABDwAAAAACFgAAAAAAEgAAAAAADwAAAAADDAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEgAAAAAAFgAAAAAAFgAAAAACEgAAAAACDwAAAAADEgAAAAABFgAAAAAAEgAAAAADDwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAFgAAAAACEgAAAAACFgAAAAAAEgAAAAADFgAAAAADFgAAAAAAFgAAAAABDAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADwAAAAACEgAAAAADDwAAAAADDwAAAAABDwAAAAACEgAAAAABDwAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 5,0: - ind: 5,0 - tiles: HQAAAAADaAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,-1: - ind: 3,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACLQAAAAABLQAAAAAALQAAAAADLQAAAAADLQAAAAADWQAAAAAAWQAAAAADWQAAAAABLQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAABLQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADLQAAAAADWQAAAAACeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACOgAAAAAAOgAAAAAAeQAAAAAAWQAAAAABLQAAAAADWQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABWQAAAAAAOgAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADWQAAAAACOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAAAWQAAAAADOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADHQAAAAACHQAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAABWQAAAAABOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABHQAAAAADHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAWQAAAAABOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAHQAAAAADHQAAAAACdgAAAAADdgAAAAADeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAdgAAAAAAWQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACHQAAAAACHQAAAAABdgAAAAACdgAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADdgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAHQAAAAABHQAAAAACdgAAAAADdgAAAAACeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAdgAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAA - version: 6 - -5,-2: - ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -4,-2: - ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEwAAAAAAEwAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEwAAAAABdgAAAAAAEwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADagAAAAAAagAAAAAAagAAAAAAagAAAAAAWQAAAAAAeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADagAAAAAAagAAAAAAagAAAAAAagAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAWQAAAAACagAAAAAAagAAAAAAagAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABwAAAAAJBwAAAAAKBwAAAAAJBwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAIgAAAAADaAAAAAAAIgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEBwAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAIgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAA version: 6 - -3,-3: - ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAACFwAAAAAAFwAAAAADFwAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAVQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAKBwAAAAAABwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAWQAAAAACWQAAAAADBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAACZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAALBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAACZAAAAAACYAAAAAAAeQAAAAAAWQAAAAABWQAAAAABYAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGeQAAAAAAWQAAAAADZAAAAAABYAAAAAAAWQAAAAABZAAAAAADZAAAAAADYAAAAAAAeQAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAABZAAAAAADeQAAAAAAeQAAAAAAWQAAAAACZAAAAAADWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABYAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAZAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABWQAAAAADeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAADZAAAAAACZAAAAAABWQAAAAABYAAAAAAAZAAAAAABBwAAAAAABwAAAAAABwAAAAAJBwAAAAACBwAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAYAAAAAAAZAAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAACwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAMBwAAAAAA version: 6 - -2,-4: - ind: -2,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAQAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + -3,1: + ind: -3,1 + tiles: BwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -1,-4: - ind: -1,-4 - tiles: WQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAYgAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAYgAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAABYgAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABaAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAYgAAAAACWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAaAAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADLQAAAAAALQAAAAAAaAAAAAAAaAAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAYgAAAAAAWQAAAAADLQAAAAAALQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAYgAAAAACWQAAAAADLQAAAAAALQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAYgAAAAACWQAAAAACLQAAAAACLQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYgAAAAADWQAAAAADLQAAAAABLQAAAAABaAAAAAAAaAAAAAAAHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAYgAAAAACWQAAAAABWQAAAAABWQAAAAAAaAAAAAAAaAAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACLQAAAAAD + -4,1: + ind: -4,1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 0,-4: - ind: 0,-4 - tiles: eQAAAAAAYgAAAAADYgAAAAAAWQAAAAACWQAAAAADYgAAAAADYgAAAAAAYgAAAAACWQAAAAACYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAACWQAAAAADWQAAAAACYgAAAAACYgAAAAAAYgAAAAABWQAAAAABYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABYgAAAAACYgAAAAABWQAAAAABYgAAAAAAYgAAAAAAYgAAAAABWQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYgAAAAADeQAAAAAAYgAAAAADWQAAAAABYgAAAAAAYgAAAAABYgAAAAABWQAAAAABYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABYgAAAAABYgAAAAADYgAAAAAAWQAAAAADYgAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAYgAAAAACeQAAAAAAYgAAAAACWQAAAAAAYgAAAAABYgAAAAACYgAAAAAAWQAAAAABYgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYgAAAAAAWQAAAAAAYgAAAAACYgAAAAADYgAAAAADWQAAAAABYgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAYgAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYgAAAAABYgAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAABWQAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + -4,0: + ind: -4,0 + tiles: AAAAAAAABwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAFBwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAMBwAAAAAABwAAAAABBwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAALeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAIBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAFBwAAAAAABwAAAAAKBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 - 2,-3: - ind: 2,-3 - tiles: eQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAAAbAAAAAADLQAAAAACbAAAAAABeQAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAABeQAAAAAAbAAAAAAALQAAAAADbAAAAAADeQAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAABeQAAAAAAbAAAAAADLQAAAAABbAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAbAAAAAABLQAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAbAAAAAAALQAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAbAAAAAADLQAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACbAAAAAADLQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADLAAAAAAAeQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAbAAAAAADLQAAAAAAbAAAAAADLAAAAAAAbAAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAABLAAAAAAALAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABLQAAAAACbAAAAAAALAAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACLAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAACLQAAAAAAbAAAAAABLAAAAAAAeQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAABLAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAACLQAAAAACbAAAAAAALAAAAAAAeQAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAAA + -5,1: + ind: -5,1 + tiles: AAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 2,-2: - ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAADLAAAAAAAeQAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADLAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAADeQAAAAAALAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAALAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAALAAAAAAAbAAAAAABbAAAAAABLAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAACaQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAaAAAAAAALAAAAAAALAAAAAAAbAAAAAABLQAAAAACLQAAAAADLQAAAAACbAAAAAACLQAAAAABLQAAAAABLQAAAAACbAAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAADBAAAAAADLAAAAAAAbAAAAAABbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAADaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAbAAAAAACLAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABaAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAACeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAHQAAAAACeQAAAAAALAAAAAAALAAAAAAAbAAAAAACLAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADaAAAAAAAHQAAAAACaAAAAAAAHQAAAAABaAAAAAAALAAAAAAALAAAAAAAbAAAAAACLAAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAHQAAAAADaAAAAAAALAAAAAAALAAAAAAAbAAAAAADLAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAABaAAAAAAAHQAAAAADaAAAAAAA + -5,0: + ind: -5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAA version: 6 - 2,-4: - ind: 2,-4 - tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAABeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACLwAAAAACLwAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAALwAAAAACLwAAAAACLwAAAAAALwAAAAABLwAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAACLwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAADeQAAAAAAbAAAAAABLQAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + -5,-1: + ind: -5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAeQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 3,-2: - ind: 3,-2 - tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABbAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAABbAAAAAAAbAAAAAACbAAAAAADbAAAAAACWQAAAAABaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAABbAAAAAAAWQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACaQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAWQAAAAABWQAAAAADaQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAB - version: 6 - 4,-2: - ind: 4,-2 - tiles: eQAAAAAAbAAAAAADLQAAAAACbAAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACLQAAAAADbAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACLAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAALAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADLAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAbAAAAAAALQAAAAADbAAAAAAAeQAAAAAALAAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACLAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABbAAAAAACbAAAAAABLQAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAABbAAAAAAAbAAAAAAALQAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAACbAAAAAADbAAAAAADeQAAAAAAdgAAAAABdgAAAAABdgAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAWQAAAAACLQAAAAACLQAAAAADLQAAAAACLQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAADWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAACWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACaQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAD - version: 6 - 5,-2: - ind: 5,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 4,-3: - ind: 4,-3 - tiles: eQAAAAAAbAAAAAABbAAAAAAAbAAAAAAALAAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAbAAAAAACLQAAAAACbAAAAAABLAAAAAAAeQAAAAAAbAAAAAACLQAAAAABbAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAABLQAAAAABbAAAAAAAeQAAAAAAbAAAAAABLQAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAACLQAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAADLQAAAAABbAAAAAACeQAAAAAAbAAAAAACLQAAAAAAbAAAAAADLAAAAAAAeQAAAAAAbAAAAAACLQAAAAAAbAAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAAALQAAAAACbAAAAAABeQAAAAAAbAAAAAABbAAAAAACbAAAAAACLAAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAABLQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAbAAAAAACbAAAAAADLQAAAAADbAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAbAAAAAAALQAAAAABbAAAAAADeQAAAAAAeQAAAAAAbAAAAAADLAAAAAAAeQAAAAAALAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAbAAAAAADLAAAAAAAeQAAAAAAbAAAAAADLQAAAAAAbAAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAALAAAAAAAbAAAAAACLAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAALAAAAAAAbAAAAAAALAAAAAAAeQAAAAAAbAAAAAABLQAAAAACbAAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACLQAAAAABbAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAACLQAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABLQAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAA - version: 6 - 3,-3: - ind: 3,-3 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAEwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABLQAAAAACLQAAAAAALQAAAAACLQAAAAABbAAAAAACbAAAAAACLQAAAAAALQAAAAADLQAAAAADLQAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAABHQAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAbAAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABbAAAAAACWQAAAAAD - version: 6 - 4,-4: - ind: 4,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAPAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAACeQAAAAAAaQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADaAAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAaQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACaAAAAAAAHQAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAADeQAAAAAAaQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAHQAAAAACHQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 5,-3: - ind: 5,-3 - tiles: LAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 5,-4: - ind: 5,-4 - tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,-4: - ind: 3,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAE - version: 6 - 4,-1: - ind: 4,-1 - tiles: WQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACLQAAAAADLQAAAAACWQAAAAADLQAAAAADLQAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAABLQAAAAAALQAAAAABLQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAdgAAAAADHQAAAAADHQAAAAACdgAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABaQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAWQAAAAACaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABWQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAHQAAAAAAHQAAAAAAdgAAAAABeQAAAAAALwAAAAACdgAAAAABdgAAAAACHQAAAAADdgAAAAAAdgAAAAACLwAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAAAHQAAAAADHQAAAAACdgAAAAACeQAAAAAALwAAAAADdgAAAAACdgAAAAADHQAAAAABdgAAAAACdgAAAAABLwAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADHQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAdgAAAAACeQAAAAAAdgAAAAACPgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAdgAAAAACeQAAAAAAdgAAAAADPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAdgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAdgAAAAACdgAAAAAAdgAAAAACPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA - version: 6 - 5,-1: - ind: 5,-1 - tiles: eQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABaQAAAAAAaQAAAAAALwAAAAABaQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACaQAAAAAAaQAAAAAALwAAAAADaQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABaQAAAAAAaQAAAAAALwAAAAACaQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACaQAAAAAAeQAAAAAAHQAAAAADHQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 4,-5: - ind: 4,-5 - tiles: eQAAAAAAAgAAAAABAgAAAAAAaAAAAAAAaAAAAAAAAgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAgAAAAAAAgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAACLQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAALQAAAAAALQAAAAAAaAAAAAAAeQAAAAAAAgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAgAAAAACAgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAABeQAAAAAAAgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA - version: 6 - 5,-5: - ind: 5,-5 - tiles: AAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,-5: - ind: 3,-5 - tiles: BwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABgAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABgAAAAAAeQAAAAAABgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAeQAAAAAADgAAAAAADgAAAAAADgAAAAAAeQAAAAAAeQAAAAAAAgAAAAAADgAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAeQAAAAAADgAAAAAADgAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAAgAAAAAADgAAAAAAeQAAAAAADgAAAAAADgAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAADgAAAAAAAgAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA - version: 6 - 2,-5: - ind: 2,-5 - tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAHwAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAEwAAAAAAEwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAEwAAAAAAEwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 1,-5: - ind: 1,-5 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA - version: 6 - 1,-4: - ind: 1,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAA - version: 6 - -1,-5: - ind: -1,-5 - tiles: eQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAYgAAAAAAYgAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABLQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAYgAAAAACWQAAAAABYgAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAYgAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAYgAAAAABWQAAAAADYgAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAYgAAAAABWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAA - version: 6 - -2,-5: - ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABQAAAAAAAEgAAAAADGAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADQAAAAAAAEgAAAAADGAAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADQAAAAAAAEgAAAAAAGAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAHQAAAAACWQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACHQAAAAAAWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -3,-4: - ind: -3,-4 - tiles: AAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -3,-5: - ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA - version: 6 - 0,-5: - ind: 0,-5 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACYgAAAAAAYgAAAAABYgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAYgAAAAACYgAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAADdgAAAAACdgAAAAACdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAALQAAAAAALQAAAAABLQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABYgAAAAABYgAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAACYgAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 0,-6: - ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -1,-6: - ind: -1,-6 - tiles: AAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 1,-6: - ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,-6: - ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA - version: 6 - -2,-6: - ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -4,-4: - ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,-5: - ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA - version: 6 - -4,-3: - ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAA - version: 6 - -4,2: - ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,2: - ind: -3,2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAGgAAAAADdgAAAAABdwAAAAACEwAAAAAEdgAAAAADeQAAAAAAFwAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEwAAAAADEwAAAAABdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAACAgAAAAAAEwAAAAADEwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdwAAAAABAgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACFwAAAAADAgAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAgAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAGwAAAAAAWQAAAAABeQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFwAAAAADWQAAAAABeQAAAAAAGwAAAAAAeQAAAAAAWQAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAgAAAAABWQAAAAACYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAGwAAAAAAFwAAAAABWQAAAAADAgAAAAABFwAAAAACeQAAAAAAAgAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAGwAAAAAAFwAAAAACAgAAAAABWQAAAAADeQAAAAAAeQAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABFwAAAAACFwAAAAABWQAAAAACeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABYAAAAAAAGwAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAA - version: 6 - -1,3: - ind: -1,3 - tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAADGAAAAAADHQAAAAADGAAAAAABGAAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAEgAAAAADEgAAAAAAHQAAAAAAEgAAAAACEgAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAACHQAAAAAAGAAAAAADGAAAAAABeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,3: - ind: 1,3 - tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,2: - ind: 2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,2: - ind: 3,2 - tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,3: - ind: -2,3 - tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 5,-6: - ind: 5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 4,-6: - ind: 4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-7: - ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA - version: 6 - 0,-7: - ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,-6: - ind: 3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAAeQAAAAAAeQAAAAAAIAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAA + -1,14: + ind: -1,14 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA version: 6 -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 1,-7: - ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -4,-2: + ind: -4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAVQAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -6,0: + ind: -6,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,14: + ind: 0,14 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAACFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAEeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAFgAAAAABFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAGFgAAAAADFgAAAAAFeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAGeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAEFgAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAABFgAAAAAEeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAFFgAAAAABeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAFgAAAAAEFgAAAAAEFgAAAAAEeQAAAAAAWQAAAAACeQAAAAAAYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAFFgAAAAACFgAAAAAFeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAGFgAAAAAGFgAAAAABeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAAGFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAADFgAAAAADFgAAAAABFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAAFFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAABFgAAAAABFgAAAAABFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAAAFgAAAAAEFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: YAAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAABFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAABFgAAAAAGFgAAAAABFgAAAAABFgAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAFFgAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAFFgAAAAAEFgAAAAAFFgAAAAAAFgAAAAAFFgAAAAACeQAAAAAAFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAAFgAAAAAFFgAAAAADFgAAAAABFgAAAAAFFgAAAAAAFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAABFgAAAAABFgAAAAABeQAAAAAAFgAAAAACFgAAAAABFgAAAAADeQAAAAAAFgAAAAAGFgAAAAAFFgAAAAADFgAAAAAFFgAAAAAAFgAAAAAEFgAAAAACFgAAAAAFFgAAAAAGFgAAAAAEFgAAAAADeQAAAAAAFgAAAAADFgAAAAABBwAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAGFgAAAAADFgAAAAADFgAAAAAEeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAGFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAIFgAAAAAFeQAAAAAAFgAAAAAGFgAAAAAEFgAAAAAFFgAAAAAAFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAGeQAAAAAAFgAAAAACFgAAAAABFgAAAAAGFgAAAAACFgAAAAAFFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAABeQAAAAAAFgAAAAAEFgAAAAAGFgAAAAAEFgAAAAAAFgAAAAAAFgAAAAAEFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAFgAAAAACFgAAAAADFgAAAAAFFgAAAAAFFgAAAAAGFgAAAAAGFgAAAAAEFgAAAAADeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAFgAAAAAGFgAAAAABFgAAAAAFFgAAAAADFgAAAAAFFgAAAAAGFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAKeQAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAEFgAAAAACFgAAAAAGFgAAAAABFgAAAAACFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAKBwAAAAAIBwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAEBwAAAAAABwAAAAAAFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAADFgAAAAABFgAAAAAEFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAADFgAAAAAFFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAAFFgAAAAADFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAWQAAAAADYAAAAAAAeQAAAAAAWQAAAAADFgAAAAAAFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAGFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAEFgAAAAADFgAAAAACFgAAAAAGFgAAAAADFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAWQAAAAADeQAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAAGFgAAAAADFgAAAAAEFgAAAAAAFgAAAAAEFgAAAAABFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAFgAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAABwAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAABFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAHdgAAAAADdgAAAAADdgAAAAADdgAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAFHQAAAAACHQAAAAAAAQAAAAAAeQAAAAAAIgAAAAABHQAAAAAAIgAAAAADHQAAAAAAAQAAAAAAHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJAAAAAAAJAAAAAADIAAAAAACHQAAAAABAQAAAAACHQAAAAAAIgAAAAAAHQAAAAABIAAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHQAAAAACHQAAAAACAQAAAAACHQAAAAAAAQAAAAABHQAAAAADIgAAAAABHQAAAAAAAQAAAAAAHQAAAAAAeQAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAGBwAAAAADBwAAAAAABwAAAAABBwAAAAAFBwAAAAAABwAAAAAAeQAAAAAARwAAAAACeQAAAAAARwAAAAACRgAAAAAARwAAAAABeQAAAAAARwAAAAADeQAAAAAAegAAAAAABwAAAAAAagAAAAABRgAAAAACRgAAAAAABwAAAAAABwAAAAAAeQAAAAAARgAAAAABeQAAAAAAeQAAAAAAeQAAAAAARgAAAAADQAAAAAAARgAAAAACQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAAeQAAAAAARwAAAAABeQAAAAAARwAAAAABRgAAAAAARwAAAAAAeQAAAAAARwAAAAACeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAJBwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHAAAAAAAHAAAAAADHAAAAAAD + version: 6 + 3,2: + ind: 3,2 + tiles: eQAAAAAABwAAAAAABwAAAAAHeQAAAAAANAAAAAABNAAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAMBwAAAAABBwAAAAAABwAAAAAFBwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADBwAAAAAABwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACBwAAAAAKBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIQAAAAABeQAAAAAAIgAAAAACeQAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHAAAAAABHAAAAAABHAAAAAABHAAAAAAAHAAAAAAATwAAAAAAIQAAAAABIQAAAAADeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: HAAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAABTwAAAAAAHwAAAAACIQAAAAABeQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAADJgAAAAAAHwAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAABHAAAAAACTwAAAAAAHwAAAAABIQAAAAABeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAJgAAAAACJgAAAAABJgAAAAAAeQAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAATwAAAAAAHwAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAACTwAAAAAAHwAAAAABIQAAAAAAIQAAAAABIgAAAAACeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAACHwAAAAACHAAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAAATwAAAAAAHwAAAAABIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACJgAAAAABJgAAAAADeQAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAABTwAAAAAAHwAAAAABIQAAAAAAIgAAAAABIQAAAAABIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACHwAAAAAAHwAAAAADHwAAAAAAIQAAAAAAIgAAAAABIQAAAAABIQAAAAABeQAAAAAAJgAAAAABJgAAAAABJgAAAAACHwAAAAADIgAAAAACIgAAAAAAeQAAAAAAIQAAAAACHwAAAAADHwAAAAACHwAAAAABIQAAAAADIgAAAAABIQAAAAACIQAAAAAAeQAAAAAAJgAAAAADJgAAAAABJgAAAAACeQAAAAAAHwAAAAACIgAAAAABeQAAAAAAIQAAAAADHwAAAAABHwAAAAACHwAAAAACIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAABIgAAAAABeQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAACYwAAAAAAYwAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADIgAAAAACHQAAAAACHQAAAAADYwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAACYwAAAAAAYwAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAADJgAAAAAAIgAAAAADHQAAAAABYwAAAAAAYwAAAAAAYwAAAAAASwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAIgAAAAACIgAAAAABIgAAAAAAIgAAAAADIgAAAAACYwAAAAABYwAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAAAYwAAAAACeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAYwAAAAACYwAAAAAAYwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 2,4: + ind: 2,4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,2: + ind: 4,2 + tiles: LQAAAAABLQAAAAADLQAAAAABLQAAAAAALQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAACTAAAAAADTAAAAAADTAAAAAAALQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAAALQAAAAABTAAAAAACTAAAAAAATAAAAAABLQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAIgAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAALQAAAAACTAAAAAADTAAAAAADTAAAAAABLQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAIgAAAAAAHQAAAAAAIgAAAAABIgAAAAACIgAAAAAAIgAAAAADLQAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAIgAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADTAAAAAACTAAAAAABTAAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHwAAAAABHwAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAHwAAAAACHwAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAJgAAAAACHwAAAAAAHwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAAAHwAAAAABJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABHwAAAAADHwAAAAABeQAAAAAAJgAAAAACJgAAAAAAJgAAAAABJgAAAAADJgAAAAADeQAAAAAAHwAAAAABHwAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABHwAAAAAAHwAAAAACeQAAAAAAJgAAAAACHwAAAAAAHwAAAAAAHwAAAAACJgAAAAAAeQAAAAAAHwAAAAACHwAAAAACJgAAAAACeQAAAAAAHwAAAAABeQAAAAAAeQAAAAAAHwAAAAADHwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAABHwAAAAACeQAAAAAAeQAAAAAAHwAAAAADIgAAAAADIgAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAABeQAAAAAAHwAAAAACHwAAAAAAIgAAAAADIgAAAAACIgAAAAACIgAAAAADIgAAAAACIgAAAAADIgAAAAABIgAAAAABIgAAAAADHwAAAAADHwAAAAACeQAAAAAAeQAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: AAAAAAAABwAAAAAJBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAIBwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABTQAAAAAATQAAAAAATQAAAAAAWQAAAAADeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADCgAAAAAACgAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABTQAAAAAATQAAAAAATQAAAAAAWQAAAAACCgAAAAAACgAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAACwAAAAAAegAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAADBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAHeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARwAAAAADBwAAAAAABwAAAAAABwAAAAAAegAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAARwAAAAACagAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAWQAAAAADWQAAAAABWQAAAAADQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAagAAAAAARgAAAAADRwAAAAACBwAAAAAABwAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAAgAAAAAAeQAAAAAAegAAAAAAagAAAAABagAAAAACRwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAKegAAAAAABwAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + version: 6 + 4,3: + ind: 4,3 + tiles: HwAAAAAAHwAAAAADIgAAAAACIgAAAAADIgAAAAACIgAAAAACIgAAAAADIgAAAAACIgAAAAAAIgAAAAABIgAAAAAAIgAAAAAAIgAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAABIgAAAAACIgAAAAAAIgAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAAAIgAAAAADIgAAAAACIgAAAAAAHwAAAAABeQAAAAAAHwAAAAACIgAAAAABIgAAAAADHwAAAAADHwAAAAACeQAAAAAAeQAAAAAAHwAAAAABeQAAAAAAeQAAAAAAHwAAAAADHwAAAAADIgAAAAAAIgAAAAAAHwAAAAAAeQAAAAAAHwAAAAACIgAAAAACIgAAAAAAHwAAAAACeQAAAAAAeQAAAAAAHwAAAAADIgAAAAADHwAAAAAAeQAAAAAAeQAAAAAAHwAAAAADIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAIgAAAAAAIgAAAAACHwAAAAABeQAAAAAAHwAAAAACIgAAAAAAIgAAAAAAIgAAAAACHwAAAAABeQAAAAAAHwAAAAAAIgAAAAABIgAAAAAAHwAAAAACeQAAAAAAHwAAAAADIgAAAAAAIgAAAAACHwAAAAADeQAAAAAAHwAAAAAAIgAAAAADIgAAAAACIgAAAAACHwAAAAABeQAAAAAAHwAAAAABIgAAAAADIgAAAAABHwAAAAAAeQAAAAAAHwAAAAACIgAAAAADIgAAAAABHwAAAAABeQAAAAAAHwAAAAADIgAAAAABIgAAAAACIgAAAAAAHwAAAAAAeQAAAAAAHwAAAAADIgAAAAACIgAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAACeQAAAAAAHwAAAAAAIgAAAAABIgAAAAABIgAAAAAAHwAAAAAAeQAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAACHwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAADJgAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAJgAAAAAAJgAAAAADJgAAAAACHwAAAAACIgAAAAAAIgAAAAAAIgAAAAACIgAAAAAAIgAAAAADHwAAAAABHwAAAAADHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAACeQAAAAAAJgAAAAAAJgAAAAACeQAAAAAAHwAAAAABIgAAAAAALQAAAAABLQAAAAAALQAAAAACIgAAAAABHwAAAAADeQAAAAAAHQAAAAADHwAAAAABHwAAAAAAHQAAAAABeQAAAAAAHwAAAAADHwAAAAACeQAAAAAAHwAAAAADIgAAAAACLQAAAAABTAAAAAAALQAAAAADIgAAAAACHwAAAAADeQAAAAAAHQAAAAAAHwAAAAACHwAAAAABHQAAAAADHQAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAAAIgAAAAADLQAAAAABLQAAAAADLQAAAAACIgAAAAAAHwAAAAABeQAAAAAAHQAAAAAAHwAAAAACHwAAAAADHQAAAAAAHQAAAAABHwAAAAABHwAAAAAAeQAAAAAAHwAAAAAAIgAAAAACIgAAAAAAIgAAAAAAIgAAAAADIgAAAAACHwAAAAABeQAAAAAAHQAAAAACHwAAAAADHwAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAB + version: 6 + 2,3: + ind: 2,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHAAAAAABHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAALBwAAAAAAeQAAAAAAHAAAAAABHAAAAAAAHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHAAAAAAAHAAAAAABHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAeQAAAAAAHAAAAAADHAAAAAAAIQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHAAAAAAAHAAAAAABHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHAAAAAADHAAAAAADHAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAeQAAAAAAIgAAAAADIgAAAAABIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAeQAAAAAAIgAAAAABHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFeQAAAAAAIgAAAAABHwAAAAADHwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAADIgAAAAADIgAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAABIgAAAAACIgAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 5,1: + ind: 5,1 + tiles: BwAAAAAABwAAAAACBwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAACwAAAAAACwAAAAAABwAAAAALeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAACwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAACwAAAAAAeQAAAAAAeQAAAAAABwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGeQAAAAAAeQAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAEBwAAAAACBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAIBwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAALAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAABegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAARgAAAAACRwAAAAADRwAAAAAAagAAAAABeQAAAAAAeQAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,4: + ind: 3,4 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAABYwAAAAACYwAAAAABYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAACYwAAAAAAYwAAAAABYwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,4: + ind: 4,4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAABIgAAAAABIgAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAABeQAAAAAAdgAAAAACYwAAAAAAYwAAAAAASwAAAAACSwAAAAAASwAAAAAAZAAAAAADTAAAAAAATAAAAAACTAAAAAABZAAAAAAASwAAAAAASwAAAAACSwAAAAAAYwAAAAAASwAAAAABdwAAAAAAeQAAAAAAYwAAAAAASwAAAAAASwAAAAADSwAAAAAASwAAAAACTAAAAAADZAAAAAAATAAAAAAASwAAAAADSwAAAAACSwAAAAADSwAAAAADYwAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAYwAAAAACSwAAAAABSwAAAAAASwAAAAAAZAAAAAADTAAAAAADTAAAAAADTAAAAAACZAAAAAACSwAAAAACSwAAAAAASwAAAAACYwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAADYwAAAAABYwAAAAABYwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,4: + ind: 5,4 + tiles: eQAAAAAAeQAAAAAASwAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABIgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAAAIgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,3: + ind: 5,3 + tiles: JgAAAAAAJgAAAAABJgAAAAACeQAAAAAAIgAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAABJgAAAAACJgAAAAACeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABJgAAAAABJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHwAAAAADHwAAAAABHwAAAAADJgAAAAABJgAAAAABJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHwAAAAACIgAAAAAAIgAAAAACIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACSwAAAAABHwAAAAACIgAAAAAAIgAAAAABIgAAAAAAJgAAAAACJgAAAAAAJgAAAAACeQAAAAAAeQAAAAAAIQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHwAAAAABIgAAAAACIgAAAAACIgAAAAADJgAAAAACJgAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAIgAAAAADHQAAAAABeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIQAAAAABIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAASwAAAAADSwAAAAADSwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAASwAAAAADSwAAAAAASwAAAAAAeQAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 5,2: + ind: 5,2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAALBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABeQAAAAAAHwAAAAACeQAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABIgAAAAACeQAAAAAAHwAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHCAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADIgAAAAADeQAAAAAAHwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABIgAAAAADeQAAAAAAHwAAAAABeQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAABwAAAAAACAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAHwAAAAACHwAAAAADHwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAABwAAAAAABwAAAAAIBwAAAAACBwAAAAAGIgAAAAABeQAAAAAAHwAAAAADIgAAAAABIgAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHwAAAAAAHwAAAAACHwAAAAACeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAB + version: 6 + 6,3: + ind: 6,3 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAZAAAAAADTAAAAAADZAAAAAAATAAAAAADZAAAAAAATAAAAAAAZAAAAAAATAAAAAACZAAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAASwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAACHwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAIgAAAAAAIgAAAAABHwAAAAACHwAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADIgAAAAACIgAAAAABHwAAAAAAIgAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADIgAAAAABHwAAAAAAHwAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAASwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAZAAAAAACZAAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAABZAAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAATAAAAAAAZAAAAAADZAAAAAABTAAAAAAAZAAAAAACZAAAAAACZAAAAAACTAAAAAADZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAAALwAAAAAALwAAAAAAZAAAAAAALwAAAAAALwAAAAAALwAAAAAAZAAAAAADLwAAAAAACAAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADTAAAAAADZAAAAAABZAAAAAACTAAAAAAAZAAAAAAAZAAAAAACZAAAAAADTAAAAAACZAAAAAADBwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABdQAAAAABdQAAAAADeQAAAAAAeQAAAAAA + version: 6 + 6,2: + ind: 6,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAEBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAACAAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAJBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAACTAAAAAADZAAAAAACTAAAAAACZAAAAAABTAAAAAAAZAAAAAACTAAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAZAAAAAADZAAAAAACZAAAAAAAZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAAC + version: 6 + 6,4: + ind: 6,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,2: + ind: 7,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,3: + ind: 7,3 + tiles: TAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAADZAAAAAACZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABTAAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAZAAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACTAAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,4: + ind: 7,4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,0: + ind: 5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,1: + ind: 6,1 + tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + version: 6 + 6,0: + ind: 6,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,4: + ind: 0,4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAABLQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACeQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAADLQAAAAADLQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAeQAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAABLQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAeQAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACeQAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAAALQAAAAACLQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABeQAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAFgAAAAABFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAACeQAAAAAAJgAAAAABeQAAAAAAGQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAFgAAAAADFgAAAAADFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAFgAAAAABFgAAAAAGFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAFgAAAAABFgAAAAAGFgAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAFgAAAAABFgAAAAAEFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAACFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,4: + ind: -1,4 + tiles: PAAAAAAAPAAAAAAAdQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAdQAAAAADeQAAAAAAdQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAABPAAAAAAAPAAAAAAAdQAAAAABdQAAAAACdQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAWQAAAAAAPAAAAAAAPAAAAAAAdQAAAAADdQAAAAADdQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAWQAAAAADPAAAAAAAPAAAAAAAdQAAAAAAdQAAAAAAdQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAWQAAAAABdQAAAAACPAAAAAAAdQAAAAAAeQAAAAAAdQAAAAACdQAAAAADdQAAAAABdQAAAAABdQAAAAAAdQAAAAABdQAAAAACdQAAAAADdQAAAAACdQAAAAADeQAAAAAAWQAAAAAAPAAAAAAAPAAAAAAAdQAAAAACeQAAAAAAeQAAAAAAdQAAAAADdQAAAAACdQAAAAADdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABdQAAAAABdQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAASgAAAAABSgAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAVQAAAAACVQAAAAACVQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAVQAAAAACVQAAAAACVQAAAAACdwAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAACWQAAAAABeQAAAAAAeQAAAAAAJgAAAAABJgAAAAAAJgAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAdwAAAAAAdgAAAAACdgAAAAADdgAAAAABWQAAAAADeQAAAAAAIgAAAAAAJgAAAAAAJgAAAAACJgAAAAADIgAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABdwAAAAACdgAAAAACdgAAAAAAdgAAAAADWQAAAAABeQAAAAAAIgAAAAABJgAAAAACTQAAAAAAJgAAAAACIgAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAAAWQAAAAAAeQAAAAAAIgAAAAAAJgAAAAAATQAAAAAAJgAAAAACIgAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 0,5: + ind: 0,5 + tiles: LAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAFFgAAAAAEFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAABFgAAAAADFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAFgAAAAACFgAAAAAEFgAAAAAFFgAAAAADFgAAAAAGFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAGFgAAAAADFgAAAAAFFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,4: + ind: -2,4 + tiles: JgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAJgAAAAACJgAAAAACJgAAAAAAJgAAAAABJgAAAAABJgAAAAAAJgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdQAAAAABPAAAAAAAPAAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAAAJgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAACdQAAAAACPAAAAAAAPAAAAAAAdgAAAAACdgAAAAABBAAAAAAGJgAAAAADJgAAAAAAJgAAAAAAJgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdQAAAAAAdQAAAAADPAAAAAAAPAAAAAAAdgAAAAADdgAAAAADdgAAAAABJgAAAAACJgAAAAAAJgAAAAAAJgAAAAABdgAAAAACdgAAAAAAdgAAAAABdgAAAAADdgAAAAAAdQAAAAABdQAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAdgAAAAACdgAAAAABJgAAAAABJgAAAAAAJgAAAAAAJgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdQAAAAACdQAAAAABPAAAAAAAPAAAAAAAdgAAAAADdgAAAAAAdgAAAAADJgAAAAABJgAAAAAAJgAAAAAAJgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdQAAAAACdQAAAAADPAAAAAAAPAAAAAAAdgAAAAABdgAAAAAAdgAAAAABJgAAAAABJgAAAAACJgAAAAADJgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdQAAAAADdQAAAAACdQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAALQAAAAADLQAAAAACLQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAASgAAAAAASgAAAAADWQAAAAAATAAAAAABTAAAAAABLQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAASgAAAAAASgAAAAAAWQAAAAAATAAAAAADTAAAAAABLQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATAAAAAABTAAAAAADLQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAALQAAAAACLQAAAAABLQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAA + version: 6 + -1,5: + ind: -1,5 + tiles: eQAAAAAAeQAAAAAAIgAAAAADJgAAAAACTQAAAAAAJgAAAAACIgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAIQAAAAAAeQAAAAAAIgAAAAADJgAAAAADTQAAAAAAJgAAAAADIgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAJgAAAAAAJgAAAAADIgAAAAAAJgAAAAACTQAAAAAAJgAAAAACIgAAAAAAcAAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJgAAAAABeQAAAAAAIgAAAAAAJgAAAAABJgAAAAACJgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAABeQAAAAAAIgAAAAACIgAAAAADIgAAAAADIgAAAAABIgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdwAAAAABdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAJgAAAAABJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,5: + ind: -2,5 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAIQAAAAADIQAAAAAAIQAAAAABIQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABIQAAAAACIQAAAAACJgAAAAADJgAAAAADJgAAAAACJgAAAAABLQAAAAACLQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAJgAAAAADJgAAAAADJgAAAAAAJgAAAAADJgAAAAADTAAAAAACTAAAAAABLQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAIQAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAABTAAAAAAATAAAAAAALQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACTAAAAAADTAAAAAAALQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABLQAAAAADLQAAAAABLQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAFgAAAAAEFgAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAAEFgAAAAAGFgAAAAACFgAAAAAEFgAAAAAEFgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABFgAAAAAAFgAAAAADFgAAAAABFgAAAAAEFgAAAAABFgAAAAABFgAAAAAFFgAAAAAFFgAAAAADFgAAAAADFgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAA + version: 6 + -1,6: + ind: -1,6 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAFFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,6: + ind: -2,6 + tiles: IQAAAAAAeQAAAAAAeQAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAIQAAAAACeQAAAAAAIQAAAAACIQAAAAAAJgAAAAAAJgAAAAAAJgAAAAABIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAIQAAAAABeQAAAAAAIQAAAAADIQAAAAACJgAAAAAAJgAAAAABJgAAAAABIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACJgAAAAADJgAAAAAAJgAAAAADJgAAAAAAIQAAAAAAeQAAAAAAIQAAAAABIQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAASgAAAAAAIQAAAAADJgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAIQAAAAACeQAAAAAAeQAAAAAAIQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAASgAAAAAASgAAAAABJgAAAAADJgAAAAADJgAAAAACJgAAAAADJgAAAAABIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAASgAAAAACSgAAAAABJgAAAAAAJgAAAAADJgAAAAAAIQAAAAADIQAAAAADeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAFeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAABIQAAAAABIQAAAAACeQAAAAAAeQAAAAAAFgAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAJgAAAAABJgAAAAAAJgAAAAACIQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAFgAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACIQAAAAACIQAAAAACIQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAEFgAAAAACFgAAAAAEFgAAAAABFgAAAAACFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAAGeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASgAAAAACSgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASgAAAAABSgAAAAACdQAAAAABdQAAAAABdQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASgAAAAADSgAAAAABPAAAAAAAPAAAAAAAdQAAAAABdQAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASgAAAAADSgAAAAAC + version: 6 + -2,3: + ind: -2,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAeQAAAAAAcQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADeQAAAAAAcQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdQAAAAADdQAAAAADdQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdQAAAAACcQAAAAAAdQAAAAABdQAAAAABdQAAAAACdQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdQAAAAABdQAAAAADdQAAAAADdQAAAAADPAAAAAAAPAAAAAAA version: 6 -3,3: ind: -3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAAFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAABFgAAAAAFFgAAAAADFgAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAAGFgAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAACFgAAAAAFFgAAAAAEFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAABFgAAAAAFFgAAAAAAFgAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAEFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAEAAAAAAAAFgAAAAAEFgAAAAADFgAAAAACFgAAAAAGFgAAAAAGFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAACFgAAAAAGFgAAAAACFgAAAAAFAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAADFgAAAAABFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAABFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAAEFgAAAAADFgAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAABFgAAAAADFgAAAAAGFgAAAAACFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAABAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAABFgAAAAACFgAAAAAGFgAAAAAEFgAAAAACFgAAAAAEFgAAAAACFgAAAAACFgAAAAAGFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAADFgAAAAAGFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAAFgAAAAABeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAdgAAAAADdgAAAAABFgAAAAABFgAAAAACFgAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABFgAAAAAFFgAAAAAAFgAAAAACeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAA + version: 6 + -3,4: + ind: -3,4 + tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAAALQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAABdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAABTAAAAAACTAAAAAABTAAAAAACLQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdwAAAAAAdwAAAAADdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAACTAAAAAACTAAAAAADTAAAAAABLQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAACdwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAATAAAAAABTAAAAAABTAAAAAACLQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAAALQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAdgAAAAABaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAAAYwAAAAADYwAAAAABYwAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACDAAAAAACDAAAAAADDAAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAADDAAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAALQAAAAACLQAAAAACLQAAAAADSwAAAAABWQAAAAACWQAAAAAAWQAAAAABDAAAAAABDAAAAAAADAAAAAADDAAAAAADDAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABSwAAAAABLQAAAAADTAAAAAADLQAAAAABSwAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAIQAAAAADIQAAAAAAIQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAASwAAAAACLQAAAAAATAAAAAADLQAAAAABSwAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAIQAAAAACJgAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADSwAAAAABLQAAAAACTAAAAAAALQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAIQAAAAAAJgAAAAAAIQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAALQAAAAABLQAAAAAC + version: 6 + -4,3: + ind: -4,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAFFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAAEFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAEFgAAAAADFgAAAAADFgAAAAAGFgAAAAACFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAADFgAAAAAFFgAAAAABFgAAAAADFgAAAAAFFgAAAAADFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAGFgAAAAAFFgAAAAADFgAAAAAAaAAAAAAAeQAAAAAAFgAAAAACAAAAAAAAFgAAAAADFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAABFgAAAAAGFgAAAAAAFgAAAAABFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAGaAAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAFFgAAAAABFgAAAAADFgAAAAAAFgAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + version: 6 + -3,5: + ind: -3,5 + tiles: eQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAIQAAAAAAJgAAAAADIQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAcAAAAAADWQAAAAADWQAAAAAAWQAAAAADJgAAAAABIQAAAAACJgAAAAABIQAAAAABJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAACcAAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAIQAAAAAAJgAAAAACIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAIQAAAAAAJgAAAAABIQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAALQAAAAACLQAAAAAALQAAAAABSwAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAIQAAAAADJgAAAAACIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADSwAAAAACLQAAAAACTAAAAAADLQAAAAADSwAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAIQAAAAACJgAAAAABIQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADSwAAAAABLQAAAAAATAAAAAAALQAAAAABSwAAAAACWQAAAAACWQAAAAAAWQAAAAAADAAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAADWQAAAAAAWQAAAAAAWQAAAAAASwAAAAAALQAAAAAATAAAAAAALQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAADAAAAAADDAAAAAAADAAAAAADDAAAAAADDAAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAALQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACDAAAAAACDAAAAAADDAAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAZAAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADIgAAAAADIgAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAFFgAAAAADFgAAAAAFRQAAAAAARQAAAAAARQAAAAAAeQAAAAAAFgAAAAACeQAAAAAAIQAAAAACIQAAAAAAIQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAAAFgAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAFgAAAAAEeQAAAAAAIQAAAAAAIQAAAAADIQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAFFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -4,4: + ind: -4,4 + tiles: eQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAANQAAAAAANQAAAAACNQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAANQAAAAACNQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAANQAAAAADNQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAANQAAAAACNQAAAAABNQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACSwAAAAADeQAAAAAAaAAAAAAAeQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALQAAAAAATAAAAAABTAAAAAADTAAAAAAAdwAAAAAAdwAAAAADdwAAAAAAdwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAATAAAAAABTAAAAAABTAAAAAACdgAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAABTAAAAAAATAAAAAADTAAAAAACdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAAA + version: 6 + -4,5: + ind: -4,5 + tiles: dgAAAAABdgAAAAABdgAAAAACdgAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAALQAAAAACLQAAAAACLQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALQAAAAAATAAAAAACTAAAAAADTAAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAADTAAAAAABTAAAAAADTAAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAALQAAAAABTAAAAAACTAAAAAAATAAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAALQAAAAADLQAAAAACLQAAAAACLQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAASwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABCgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADCgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAASwAAAAAASwAAAAACSwAAAAADeQAAAAAAFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAAGFgAAAAAEFgAAAAADeQAAAAAARQAAAAAACgAAAAAACgAAAAAACgAAAAAAQQAAAAAASwAAAAACSwAAAAABSwAAAAADeQAAAAAAFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABeQAAAAAARQAAAAAACgAAAAAADAAAAAAADAAAAAAAeQAAAAAASwAAAAADSwAAAAADSwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAARQAAAAAA + version: 6 + -5,4: + ind: -5,4 + tiles: eQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAagAAAAACeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAZAAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAACZAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAACeQAAAAAAagAAAAABagAAAAADeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAADAAAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAAEeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAACZAAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAWQAAAAACZAAAAAACagAAAAACeQAAAAAAagAAAAADagAAAAABagAAAAADeQAAAAAAagAAAAADagAAAAABagAAAAAAagAAAAADagAAAAADagAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAagAAAAABagAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAAAagAAAAABagAAAAABagAAAAABagAAAAADagAAAAABagAAAAADeQAAAAAADAAAAAAAWQAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAIQAAAAADSwAAAAABSwAAAAACSwAAAAADSwAAAAAASwAAAAAAIQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAASwAAAAABSwAAAAABSwAAAAAASwAAAAABSwAAAAADJgAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAIQAAAAABSwAAAAACSwAAAAADSwAAAAACSwAAAAACSwAAAAADIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAA + version: 6 + -5,5: + ind: -5,5 + tiles: eQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAdwAAAAACdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAACdwAAAAADeQAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAABeQAAAAAAdwAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAACdgAAAAAAdwAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdwAAAAADdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdwAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAdwAAAAADdwAAAAAAdwAAAAABeQAAAAAAdwAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAdgAAAAABdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAdwAAAAADdgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAACdwAAAAAAeQAAAAAAagAAAAAAagAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAACdwAAAAABdwAAAAABdwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAASwAAAAAAdwAAAAACdwAAAAACdwAAAAABSwAAAAABagAAAAACagAAAAACagAAAAAAeQAAAAAAagAAAAABagAAAAABagAAAAACeQAAAAAAagAAAAABagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADAAAAAAADAAAAAAACgAAAAAAWQAAAAAAeQAAAAAAdwAAAAAAdwAAAAABdwAAAAACdwAAAAACdwAAAAADdwAAAAABeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADAAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAdwAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdwAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADAAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAdwAAAAACdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAdwAAAAADdgAAAAABdgAAAAABdgAAAAACdgAAAAADdwAAAAABdwAAAAACdwAAAAACdwAAAAADeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAdwAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAABCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA + version: 6 + -6,4: + ind: -6,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAagAAAAABagAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAIQAAAAAAeQAAAAAAIQAAAAADIQAAAAADIQAAAAADIQAAAAAAeQAAAAAAagAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAJgAAAAACeQAAAAAAeQAAAAAAIQAAAAAAeQAAAAAAagAAAAABagAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIQAAAAADJgAAAAABJgAAAAABHQAAAAABIQAAAAABIQAAAAACeQAAAAAAeQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAADIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIQAAAAADIQAAAAACIQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAA + version: 6 + -6,5: + ind: -6,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAADeQAAAAAAagAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAAADgAAAAABDgAAAAACaQAAAAAAagAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAABDgAAAAABDgAAAAAADgAAAAABDgAAAAACDgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAEwAAAAAEdgAAAAAAEwAAAAAFdgAAAAACdgAAAAADdgAAAAADdgAAAAACPgAAAAAAagAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAFgAAAAAGeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAADEwAAAAAAdgAAAAACPgAAAAAAagAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABeQAAAAAAdgAAAAABdgAAAAADdgAAAAADEwAAAAAGdgAAAAACdgAAAAADdgAAAAAAPgAAAAAAagAAAAADFgAAAAACAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAGFgAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAABdgAAAAADEwAAAAAAdgAAAAADPgAAAAAAagAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAACFgAAAAAGFgAAAAAGeQAAAAAAEwAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAPgAAAAAAeQAAAAAAFgAAAAAGFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAACEwAAAAABPgAAAAAAeQAAAAAAFgAAAAADFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAAFFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAFgAAAAAEFgAAAAAGFgAAAAAFFgAAAAABFgAAAAAEFgAAAAABFgAAAAABFgAAAAAAFgAAAAAEFgAAAAAAFgAAAAAEFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAEFgAAAAAGFgAAAAADFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAGFgAAAAAEFgAAAAADFgAAAAABFgAAAAAEeQAAAAAAeQAAAAAAagAAAAADagAAAAAB + version: 6 + -3,6: + ind: -3,6 + tiles: RQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACIQAAAAACIQAAAAABIQAAAAADIQAAAAABeQAAAAAAIQAAAAAAIQAAAAACIQAAAAAAIQAAAAAAIQAAAAADJgAAAAABJgAAAAAAJgAAAAADIQAAAAAAeQAAAAAAIQAAAAACJgAAAAACJgAAAAABJgAAAAADIQAAAAACeQAAAAAAIQAAAAADJgAAAAABIQAAAAACeQAAAAAAIQAAAAADJgAAAAABJgAAAAACJgAAAAADIQAAAAACIQAAAAAAIQAAAAACJgAAAAADIgAAAAAAJgAAAAADIQAAAAABIQAAAAACIQAAAAABJgAAAAACIQAAAAACeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAADIQAAAAAAeQAAAAAAIQAAAAADJgAAAAADJgAAAAABJgAAAAADIQAAAAADeQAAAAAAIQAAAAADJgAAAAABIQAAAAACeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAACIQAAAAADIQAAAAACeQAAAAAAIQAAAAACIQAAAAACIQAAAAACIQAAAAABIQAAAAACeQAAAAAAIQAAAAAAIQAAAAACIQAAAAACeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADIQAAAAAAIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASgAAAAACIQAAAAACeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAADIQAAAAABIQAAAAAAJgAAAAACIQAAAAADIQAAAAADIQAAAAACIQAAAAAAeQAAAAAAeQAAAAAAIQAAAAABIQAAAAABIQAAAAAAeQAAAAAAIQAAAAACJgAAAAADJgAAAAAAJgAAAAACJgAAAAADJgAAAAACJgAAAAACJgAAAAABJgAAAAACJgAAAAAAIQAAAAACIQAAAAACJgAAAAADJgAAAAACIQAAAAAAeQAAAAAAIQAAAAADJgAAAAABJgAAAAABJgAAAAACJgAAAAAAJgAAAAAAJgAAAAADJgAAAAAAJgAAAAADJgAAAAACIQAAAAACeQAAAAAAIQAAAAABIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAACWQAAAAACWQAAAAADWQAAAAADJgAAAAADJgAAAAADJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAJgAAAAAAJgAAAAADJgAAAAAAWQAAAAACWQAAAAACWQAAAAADJgAAAAADJgAAAAABJgAAAAADIQAAAAACeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAFeQAAAAAAIQAAAAABIQAAAAAAJgAAAAABJgAAAAACJgAAAAADJgAAAAAAJgAAAAACJgAAAAADJgAAAAACIQAAAAABIQAAAAACeQAAAAAAFgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAIQAAAAABDAAAAAAADAAAAAAADAAAAAAAIQAAAAAAIQAAAAACIQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,6: + ind: -4,6 + tiles: DAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAARQAAAAAADAAAAAAACgAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAADCgAAAAAACgAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAACCgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAADCgAAAAAAeQAAAAAASwAAAAAASwAAAAABSwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAACgAAAAAASwAAAAADSwAAAAAASwAAAAADSwAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADAAAAAAAeQAAAAAASwAAAAAASwAAAAABSwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAACDAAAAAAADAAAAAAAeQAAAAAASwAAAAADSwAAAAADSwAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAACDAAAAAAADAAAAAAASwAAAAABSwAAAAABSwAAAAAASwAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADAAAAAAAFwAAAAAHeQAAAAAASwAAAAADSwAAAAADSwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdwAAAAABdwAAAAAAdgAAAAAAeQAAAAAAFgAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdwAAAAADdwAAAAADdgAAAAABeQAAAAAAFgAAAAABFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,6: + ind: -5,6 + tiles: eQAAAAAAdwAAAAABdgAAAAACdgAAAAACdwAAAAACdwAAAAAAdwAAAAAAdwAAAAABdwAAAAABdwAAAAABeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAYQAAAAABYQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAADAAAAAAAYQAAAAAAYQAAAAABYQAAAAAAYQAAAAADYQAAAAAAeQAAAAAASwAAAAADSwAAAAACSwAAAAACeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAACeQAAAAAASwAAAAADSwAAAAACSwAAAAADSwAAAAABDAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAYQAAAAAAYQAAAAABYQAAAAACYQAAAAADYQAAAAACeQAAAAAASwAAAAACSwAAAAACSwAAAAADeQAAAAAADAAAAAAADAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAbwAAAAADbwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAdwAAAAADdwAAAAADdgAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAABdwAAAAADeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdwAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAADeQAAAAAADAAAAAAADAAAAAAAdgAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAACdgAAAAADdwAAAAACdwAAAAACeQAAAAAAeQAAAAAASwAAAAABSwAAAAACSwAAAAACSwAAAAAADAAAAAAADAAAAAAAdwAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAABdwAAAAABdwAAAAABeQAAAAAAeQAAAAAAeQAAAAAASwAAAAACSwAAAAACSwAAAAAAeQAAAAAADAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAADdwAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAACdgAAAAADFgAAAAAGFgAAAAAEFgAAAAAAeQAAAAAAcAAAAAACbQAAAAABbQAAAAADbQAAAAABeQAAAAAAdwAAAAABdwAAAAADdwAAAAACdwAAAAACdwAAAAACdwAAAAADdgAAAAACFgAAAAAGFgAAAAADFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAbQAAAAABbQAAAAADbQAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAACdwAAAAADdwAAAAABdgAAAAAA + version: 6 + -6,6: + ind: -6,6 + tiles: FgAAAAAGFgAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAABFgAAAAAEFgAAAAABFgAAAAACFgAAAAAFFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAFFgAAAAAAFgAAAAAGFgAAAAABFgAAAAABFgAAAAABFgAAAAAGFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAACFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAGeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJeQAAAAAAYQAAAAAAYQAAAAACFgAAAAADFgAAAAAFFgAAAAAGFgAAAAABFgAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAAEeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAHYQAAAAAAYQAAAAACYQAAAAACFgAAAAABFgAAAAADFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAAEeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAYQAAAAADYQAAAAABFgAAAAAGFgAAAAABFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAABFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAABFgAAAAABFgAAAAABFgAAAAADFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAFFgAAAAAEFgAAAAAEAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAFFgAAAAABFgAAAAAEFgAAAAADFgAAAAABeQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAFgAAAAADFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAGeQAAAAAAeQAAAAAAdwAAAAABdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAFeQAAAAAAeQAAAAAAdwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEeQAAAAAAeQAAAAAAdwAAAAACdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAABFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAEFgAAAAAA + version: 6 + -4,7: + ind: -4,7 + tiles: dgAAAAAAdwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdwAAAAAAdwAAAAACdgAAAAACeQAAAAAAFgAAAAAEFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACFgAAAAAEFgAAAAAFFgAAAAABFgAAAAABFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAEFgAAAAABFgAAAAADFgAAAAAAFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAFFgAAAAADFgAAAAAFFgAAAAABFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAACFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAABFgAAAAAEFgAAAAAEFgAAAAAAFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAADFgAAAAACFgAAAAACFgAAAAADFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAGFgAAAAADFgAAAAADFgAAAAAFFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAEFgAAAAABFgAAAAACFgAAAAAFFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAEFgAAAAAGeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,3: + ind: -5,3 + tiles: WQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAABFgAAAAABeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAFFgAAAAADFgAAAAAEFgAAAAADeQAAAAAAdwAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAACFgAAAAAFFgAAAAADFgAAAAAFeQAAAAAAdgAAAAAC + version: 6 + -6,3: + ind: -6,3 + tiles: IAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAADwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + version: 6 + -7,4: + ind: -7,4 + tiles: eQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAEFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAGFgAAAAAAFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAAEFgAAAAAGFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAFFgAAAAABFgAAAAAG + version: 6 + -9,1: + ind: -9,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAA + version: 6 + -6,2: + ind: -6,2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAIQAAAAADIQAAAAACIQAAAAABIQAAAAADIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAIQAAAAABJgAAAAACJgAAAAACJgAAAAADIQAAAAADJgAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABDwAAAAAAIQAAAAACJgAAAAAAJgAAAAADJgAAAAABIQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADDwAAAAAAIQAAAAADIQAAAAACIQAAAAACIQAAAAADIQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAAAeQAAAAAAWQAAAAAAYQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACLQAAAAACTAAAAAACTAAAAAABTAAAAAADLQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAALQAAAAADTAAAAAADTAAAAAABTAAAAAABLQAAAAADeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAALQAAAAADTAAAAAADTAAAAAACTAAAAAADLQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABIAAAAAADHwAAAAABHwAAAAAAHwAAAAADIAAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACDwAAAAAAIAAAAAACHwAAAAADHwAAAAACHwAAAAABIAAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAADwAAAAAA + version: 6 + -6,1: + ind: -6,1 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA + version: 6 + -5,7: + ind: -5,7 + tiles: FgAAAAAFFgAAAAAAFgAAAAABeQAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADeQAAAAAAdwAAAAADdwAAAAAAdwAAAAACdwAAAAADdwAAAAACdwAAAAACdgAAAAAAFgAAAAABFgAAAAAFFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAABdgAAAAAAFgAAAAADFgAAAAADFgAAAAAEFgAAAAADFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAAFeQAAAAAAeQAAAAAAdgAAAAADAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAAFgAAAAAGFgAAAAABFgAAAAACFgAAAAABFgAAAAAFFgAAAAADFgAAAAAGFgAAAAAEFgAAAAABFgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAAEFgAAAAAGFgAAAAAEFgAAAAADFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAACFgAAAAAGFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAADFgAAAAAFFgAAAAAEFgAAAAABFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAACFgAAAAADFgAAAAAFFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAADFgAAAAAAFgAAAAADFgAAAAAFFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAABFgAAAAACFgAAAAAFFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAAFgAAAAADFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA + version: 6 + -6,7: + ind: -6,7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,6: + ind: -7,6 + tiles: MwAAAAABMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAACNQAAAAACeQAAAAAAMwAAAAABMwAAAAABMwAAAAABeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFNQAAAAAANQAAAAADeQAAAAAANAAAAAACNQAAAAACNQAAAAACNAAAAAACNQAAAAABNQAAAAABNAAAAAAANQAAAAABNQAAAAAANAAAAAABeQAAAAAANQAAAAACFgAAAAAGNQAAAAADNQAAAAAANAAAAAAAeQAAAAAANAAAAAACNQAAAAADNQAAAAACNQAAAAADNQAAAAACNQAAAAAANQAAAAACNAAAAAABNQAAAAABNQAAAAABNQAAAAAAFgAAAAAENAAAAAACNQAAAAACNQAAAAAANQAAAAAANQAAAAABNQAAAAACNQAAAAABNQAAAAADeQAAAAAANAAAAAACNQAAAAACNQAAAAACNQAAAAADeQAAAAAANQAAAAAAFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAADNQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAABNQAAAAADNQAAAAABNAAAAAACNQAAAAABeQAAAAAAFgAAAAADFgAAAAAEFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAABNAAAAAAANAAAAAACNQAAAAACNQAAAAABeQAAAAAAFgAAAAAFFgAAAAABFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAADFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAFFgAAAAADFgAAAAAGFgAAAAACFgAAAAAFFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,5: + ind: -7,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAFgAAAAADFgAAAAACFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAAEeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAADFgAAAAABeQAAAAAAMwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAACeQAAAAAAMwAAAAAAMwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAABFgAAAAAGFgAAAAABMwAAAAACMwAAAAABNQAAAAACeQAAAAAAMwAAAAABeQAAAAAAMwAAAAABeQAAAAAAMwAAAAACMwAAAAABeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAADFgAAAAAFFgAAAAAFNQAAAAADeQAAAAAAMwAAAAAAMwAAAAACNQAAAAABNQAAAAABMwAAAAABeQAAAAAAeQAAAAAANQAAAAABeQAAAAAAeQAAAAAAFgAAAAABFgAAAAADFgAAAAAFFgAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAAANQAAAAACNQAAAAAAMwAAAAACMwAAAAADMwAAAAACNQAAAAADMwAAAAADeQAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAAC + version: 6 + -2,2: + ind: -2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,3: + ind: -7,3 + tiles: eQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAADHwAAAAAAYQAAAAABYQAAAAADYQAAAAADYQAAAAAAYQAAAAABHwAAAAABIAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAADHwAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAABYQAAAAACHwAAAAAAIAAAAAACeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACIAAAAAACeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAADeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -6,8: + ind: -6,8 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACDwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -5,8: + ind: -5,8 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAADwAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeAAAAAAA + version: 6 + -5,9: + ind: -5,9 + tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAADAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAADAAAAAADeQAAAAAAeQAAAAAAJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAJgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAADAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAAeQAAAAAAJgAAAAABJgAAAAAAJgAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACJgAAAAADeQAAAAAAJgAAAAADIgAAAAABJgAAAAACJgAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAIgAAAAACJgAAAAADJgAAAAABWQAAAAACWQAAAAAADAAAAAADDAAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAJgAAAAAAIgAAAAADJgAAAAABJgAAAAACWQAAAAACWQAAAAAADAAAAAAADAAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAJgAAAAADJgAAAAACJgAAAAAAeQAAAAAAWQAAAAABWQAAAAAADAAAAAAADAAAAAABWQAAAAAAWQAAAAABeQAAAAAALQAAAAAALQAAAAAALQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAADAAAAAAADAAAAAAAWQAAAAAAWQAAAAABWQAAAAADLQAAAAACTAAAAAACTAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADLQAAAAACTAAAAAADTAAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAALQAAAAAATAAAAAAATAAAAAACZAAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAALQAAAAAALQAAAAADLQAAAAAD + version: 6 + -6,9: + ind: -6,9 + tiles: eQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAADDAAAAAACeQAAAAAAJgAAAAADJgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACJgAAAAABDAAAAAAADAAAAAACDAAAAAAAJgAAAAAAeQAAAAAAJgAAAAABJgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAABDAAAAAAADAAAAAACDAAAAAABIgAAAAAAJgAAAAAAeQAAAAAAJgAAAAABJgAAAAAAeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAJgAAAAACJgAAAAABeQAAAAAAJgAAAAAADAAAAAACDAAAAAACDAAAAAABIgAAAAABJgAAAAACJgAAAAABJgAAAAADJgAAAAABJgAAAAABJgAAAAABJgAAAAABJgAAAAAAJgAAAAACDAAAAAACDAAAAAAADAAAAAADJgAAAAACJgAAAAADDAAAAAADIgAAAAADJgAAAAABJgAAAAAAIgAAAAACeQAAAAAAIgAAAAABDAAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAAADAAAAAADIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAIgAAAAAADAAAAAADDAAAAAACeQAAAAAAeQAAAAAADAAAAAABDAAAAAADDAAAAAABJgAAAAABJgAAAAABJgAAAAABeQAAAAAAeQAAAAAAJgAAAAADJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAJgAAAAABJgAAAAACJgAAAAACeQAAAAAAJgAAAAADJgAAAAAAeQAAAAAAJgAAAAACeQAAAAAADwAAAAAAJgAAAAAAJgAAAAADJgAAAAADJgAAAAADJgAAAAAAJgAAAAACJgAAAAAAIgAAAAAAJgAAAAACJgAAAAAAJgAAAAADJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAJgAAAAABIgAAAAAAJgAAAAAAeQAAAAAAJgAAAAADJgAAAAABeQAAAAAAeQAAAAAAJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADJgAAAAABJgAAAAAAJgAAAAACIgAAAAABJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAADwAAAAAADwAAAAAAJgAAAAACJgAAAAADJgAAAAAAJgAAAAACJgAAAAACIgAAAAACJgAAAAAAJgAAAAAAJgAAAAABJgAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAADwAAAAAADwAAAAAAJgAAAAACIgAAAAACIgAAAAADIgAAAAACIgAAAAADIgAAAAADIgAAAAABIgAAAAABIgAAAAADJgAAAAAAJgAAAAACWQAAAAACWQAAAAAC + version: 6 + -4,9: + ind: -4,9 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADAAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAALQAAAAADLQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAATAAAAAADLQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAATAAAAAADLQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAATAAAAAADLQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACAAAAAAAALQAAAAADLQAAAAACeQAAAAAADAAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA + version: 6 + -4,10: + ind: -4,10 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAADAAAAAACeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACeQAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAABeQAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACaAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAABaAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAADAAAAAADDAAAAAAADAAAAAAADAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADAAAAAAAeQAAAAAAeQAAAAAASAAAAAAARgAAAAACeQAAAAAASAAAAAABRgAAAAAAeQAAAAAASAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAAJgAAAAABeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA + version: 6 + -5,10: + ind: -5,10 + tiles: WQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAADAAAAAADDAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAADeQAAAAAAJgAAAAADJgAAAAABeQAAAAAAWQAAAAABWQAAAAAADAAAAAAADAAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAACJgAAAAACeQAAAAAAJgAAAAABJgAAAAAAeQAAAAAAWQAAAAADWQAAAAAADAAAAAAADAAAAAADWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAASgAAAAADIgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAABeQAAAAAAWQAAAAAAWQAAAAAADAAAAAAADAAAAAADWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAACJgAAAAAAJgAAAAAAJgAAAAABJgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACJgAAAAABeQAAAAAAJgAAAAADJgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAAJgAAAAACJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABJgAAAAACJgAAAAADJgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADAAAAAABJgAAAAAAJgAAAAABJgAAAAAADAAAAAADDAAAAAABeQAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADAAAAAAATAAAAAAATAAAAAACJgAAAAADDAAAAAADDAAAAAAAeQAAAAAAJgAAAAABIgAAAAABIgAAAAAAIgAAAAAAJgAAAAADDAAAAAABeQAAAAAAaAAAAAAADAAAAAADDAAAAAADLQAAAAABLQAAAAABTAAAAAABJgAAAAABIgAAAAABeQAAAAAAJgAAAAACIgAAAAACIgAAAAADIgAAAAACDAAAAAABDAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALQAAAAADLQAAAAADTAAAAAAAJgAAAAAAWQAAAAAAJgAAAAAAIgAAAAADIgAAAAAAIgAAAAABDAAAAAAADAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAADTAAAAAABJgAAAAADWQAAAAAAJgAAAAACIgAAAAAAIgAAAAACIgAAAAADDAAAAAACDAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAALQAAAAABTAAAAAADJgAAAAABWQAAAAACJgAAAAABJgAAAAAAJgAAAAAAJgAAAAACJgAAAAADJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAALQAAAAACLQAAAAADTAAAAAADJgAAAAABIgAAAAACeQAAAAAAeQAAAAAAJgAAAAADJgAAAAABJgAAAAAAJgAAAAACeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAATAAAAAAATAAAAAAAJgAAAAACDAAAAAABDAAAAAACeQAAAAAAJgAAAAABIgAAAAAAIgAAAAABIgAAAAACIgAAAAACJgAAAAACeQAAAAAAJgAAAAABeQAAAAAAeQAAAAAAJgAAAAABJgAAAAACIgAAAAABDAAAAAADDAAAAAABeQAAAAAADAAAAAAAIgAAAAAAIgAAAAAAIgAAAAADIgAAAAAAJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -7,9: + ind: -7,9 + tiles: AAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAADAAAAAADDAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAJgAAAAADDAAAAAABDAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAABIgAAAAABIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAJgAAAAABIgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAeQAAAAAAJgAAAAACJgAAAAABJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAeQAAAAAAeQAAAAAAJgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAACJgAAAAADeQAAAAAAIgAAAAABeQAAAAAA + version: 6 + -6,10: + ind: -6,10 + tiles: eQAAAAAADwAAAAAADwAAAAAAJgAAAAAAJgAAAAAAJgAAAAADJgAAAAADJgAAAAAAJgAAAAAAJgAAAAADJgAAAAAAJgAAAAABJgAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAABJgAAAAACJgAAAAABJgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAADeQAAAAAAJgAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAACIgAAAAAAIgAAAAADIgAAAAADIgAAAAACIgAAAAADIgAAAAADIgAAAAABIgAAAAACIgAAAAADJgAAAAACJgAAAAADJgAAAAACDwAAAAAADwAAAAAAeQAAAAAAJgAAAAACIgAAAAADIgAAAAADIgAAAAACIgAAAAACIgAAAAACIgAAAAAAIgAAAAAAIgAAAAABIgAAAAADJgAAAAACJgAAAAAAJgAAAAACDwAAAAAADwAAAAAAeQAAAAAAJgAAAAACJgAAAAAAJgAAAAACJgAAAAACJgAAAAABJgAAAAABJgAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAADeQAAAAAAJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAADJgAAAAAAJgAAAAABJgAAAAADJgAAAAABIgAAAAADIgAAAAADIgAAAAACJgAAAAABJgAAAAAAJgAAAAAAJgAAAAABeQAAAAAADAAAAAABDAAAAAABDAAAAAAAJgAAAAABIgAAAAAAIgAAAAACIgAAAAACIgAAAAACIgAAAAABIgAAAAACIgAAAAAAIgAAAAABIgAAAAAAJgAAAAAAJgAAAAABeQAAAAAADAAAAAABDAAAAAACJgAAAAAATAAAAAAAIgAAAAAAIgAAAAACIgAAAAADIgAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAJgAAAAAAeQAAAAAADAAAAAAAJgAAAAABTAAAAAADLQAAAAABJgAAAAACJgAAAAADJgAAAAAAJgAAAAADJgAAAAABJgAAAAAAJgAAAAADIgAAAAABIgAAAAADHQAAAAAAJgAAAAADDAAAAAADJgAAAAADTAAAAAADLQAAAAABLQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACJgAAAAAAIgAAAAABIgAAAAABHQAAAAAAJgAAAAABJgAAAAABJgAAAAADTAAAAAABLQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAJgAAAAABJgAAAAADeQAAAAAAJgAAAAAAJgAAAAACIgAAAAABIgAAAAADHQAAAAACJgAAAAABJgAAAAABJgAAAAADTAAAAAABLQAAAAACLQAAAAABeQAAAAAAeQAAAAAAJgAAAAACJgAAAAACeQAAAAAASgAAAAACJgAAAAABIgAAAAAAIgAAAAABHQAAAAAAJgAAAAAAeQAAAAAAIgAAAAABJgAAAAADTAAAAAADLQAAAAACeQAAAAAAeQAAAAAAJgAAAAACJgAAAAAAeQAAAAAASgAAAAACIgAAAAACIgAAAAABIgAAAAABJgAAAAADJgAAAAAAeQAAAAAADAAAAAACDAAAAAADJgAAAAADTAAAAAADJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAACSgAAAAAAJgAAAAACJgAAAAABJgAAAAACJgAAAAAAJgAAAAADJgAAAAABeQAAAAAADAAAAAAADAAAAAACIgAAAAADJgAAAAAB + version: 6 + -5,11: + ind: -5,11 + tiles: JgAAAAACJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAADIgAAAAAAIgAAAAAAIgAAAAACIgAAAAADJgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADwAAAAAAJgAAAAAAJgAAAAABJgAAAAAAJgAAAAADDAAAAAACeQAAAAAADAAAAAADIgAAAAABIgAAAAAAIgAAAAADIgAAAAABJgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADwAAAAAAIgAAAAAAIgAAAAABIgAAAAABIgAAAAABJgAAAAADeQAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAAAJgAAAAACJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAATAAAAAADTAAAAAACTAAAAAACIgAAAAABJgAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAJgAAAAACJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAIgAAAAADIgAAAAABIgAAAAABIgAAAAACJgAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAIgAAAAACIgAAAAACIgAAAAABIgAAAAAAJgAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAJgAAAAADeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAATAAAAAABTAAAAAACTAAAAAACIgAAAAADJgAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIgAAAAADIgAAAAACTAAAAAAAIgAAAAADJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAIgAAAAACIgAAAAAATAAAAAADJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABTAAAAAADTAAAAAACJgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAACJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,11: + ind: -6,11 + tiles: JgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAASgAAAAAASgAAAAABdwAAAAAAdwAAAAADEwAAAAADDAAAAAADeQAAAAAAJgAAAAAAJgAAAAACJgAAAAAAJgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAASgAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAJgAAAAAAIgAAAAAAIgAAAAACIgAAAAACAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAJgAAAAABIgAAAAAATAAAAAACTAAAAAABAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAJgAAAAAAIgAAAAACIgAAAAABIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEwAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAJgAAAAACIgAAAAACIgAAAAAAIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAADeQAAAAAAJgAAAAABIgAAAAACTAAAAAABTAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACIgAAAAACTAAAAAABIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAADTAAAAAACIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAABTAAAAAADTAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAADJgAAAAACAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -7,10: + ind: -7,10 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAIgAAAAACJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAACJgAAAAACJgAAAAACIgAAAAABJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAABJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAADJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABJgAAAAADIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAACIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAADJgAAAAADJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAABJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -7,11: + ind: -7,11 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,8: + ind: -7,8 + tiles: eAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -8,8: + ind: -8,8 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,11: + ind: -3,11 + tiles: eQAAAAAASAAAAAACRgAAAAACSAAAAAABeQAAAAAARgAAAAACRgAAAAAASAAAAAABeQAAAAAASAAAAAABeQAAAAAAeQAAAAAASAAAAAACeQAAAAAAeAAAAAAAFgAAAAACSAAAAAABeQAAAAAAeQAAAAAASAAAAAACeQAAAAAASAAAAAAAeQAAAAAASAAAAAAASAAAAAADeQAAAAAASAAAAAAAeQAAAAAASAAAAAAAeQAAAAAAFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASAAAAAACeQAAAAAAeQAAAAAAFgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAASAAAAAACSAAAAAACeQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAGFgAAAAACFgAAAAACFgAAAAAAFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAEFgAAAAAEFgAAAAABFgAAAAACFgAAAAAFFgAAAAAEeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAACFgAAAAADFgAAAAAGFgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAEFgAAAAABFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAAFFgAAAAAEFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAACFgAAAAADFgAAAAAFFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAAFgAAAAAEFgAAAAABFgAAAAAEeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAA + version: 6 + -4,11: + ind: -4,11 + tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,7: + ind: -7,7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -8,7: + ind: -8,7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + -8,5: + ind: -8,5 + tiles: FgAAAAAEFgAAAAACFgAAAAACFgAAAAAFFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAAEFgAAAAAFFgAAAAACFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAABFgAAAAAFFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAAEeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAFFgAAAAADFgAAAAABFgAAAAACFgAAAAACFgAAAAABFgAAAAAFFgAAAAAEAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAACFgAAAAAEFgAAAAAGFgAAAAACFgAAAAAEFgAAAAABFgAAAAAAFgAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAABFgAAAAAEFgAAAAAGFgAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAACFgAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAABeQAAAAAAFgAAAAABFgAAAAAEFgAAAAAEFgAAAAAFFgAAAAADFgAAAAAGFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAGgAAAAACGgAAAAAAGwAAAAAAeQAAAAAAFgAAAAAGFgAAAAAEFgAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAGwAAAAABeQAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAAFFgAAAAABFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAANQAAAAACeQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAABeQAAAAAARwAAAAADRwAAAAADSAAAAAAASAAAAAACRwAAAAADSAAAAAAAeQAAAAAAeQAAAAAANQAAAAACHAAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAACeQAAAAAASAAAAAABSAAAAAAASAAAAAABSAAAAAADSAAAAAACSAAAAAADeQAAAAAAeQAAAAAANQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASAAAAAACSAAAAAADRwAAAAADRwAAAAAASAAAAAADRwAAAAADeQAAAAAAMwAAAAADNQAAAAABeQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAeQAAAAAARwAAAAADSAAAAAAASAAAAAACSAAAAAABSAAAAAABSAAAAAABeQAAAAAAMwAAAAAANQAAAAACeQAAAAAAGwAAAAAAGgAAAAACGgAAAAADGgAAAAADGwAAAAABeQAAAAAASAAAAAABSAAAAAACSAAAAAACSAAAAAAASAAAAAABRwAAAAACeQAAAAAAMwAAAAAC + version: 6 + -8,6: + ind: -8,6 + tiles: NAAAAAAAeQAAAAAAGwAAAAAAGgAAAAABGgAAAAACGgAAAAACGwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASAAAAAABeQAAAAAAeQAAAAAANQAAAAABeQAAAAAAGwAAAAABGgAAAAACGgAAAAADGgAAAAAAGwAAAAADeQAAAAAANQAAAAABNAAAAAAANAAAAAACNAAAAAABeQAAAAAANQAAAAACeQAAAAAAeQAAAAAANQAAAAAAeQAAAAAAGwAAAAADGgAAAAABGgAAAAACGgAAAAABGwAAAAACeQAAAAAANQAAAAABNQAAAAADNQAAAAAANQAAAAAANAAAAAADNQAAAAABeQAAAAAANAAAAAAANQAAAAAAeQAAAAAAGwAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGwAAAAACeQAAAAAANAAAAAABNQAAAAACNAAAAAACNQAAAAACNQAAAAAANQAAAAAANAAAAAACNQAAAAACNQAAAAABeQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAABeQAAAAAANQAAAAABNQAAAAACNQAAAAAANQAAAAADNQAAAAACNAAAAAADeQAAAAAANAAAAAADNQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHAAAAAABeQAAAAAAeQAAAAAANQAAAAADNAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAADHAAAAAAANQAAAAAANQAAAAABNQAAAAADNQAAAAABNAAAAAACNAAAAAAANQAAAAACeQAAAAAAeQAAAAAAGgAAAAADGgAAAAACGgAAAAADeQAAAAAAFgAAAAAENQAAAAAAeQAAAAAANQAAAAAANAAAAAABNQAAAAAANQAAAAABNQAAAAADNQAAAAADNQAAAAADeQAAAAAANQAAAAACGgAAAAAAGgAAAAAAGgAAAAAAeQAAAAAAFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFeQAAAAAANQAAAAACNQAAAAACNQAAAAACeQAAAAAANQAAAAABNQAAAAABNQAAAAABNQAAAAABNQAAAAACeQAAAAAAFgAAAAAEFgAAAAAGFgAAAAAGFgAAAAADFgAAAAAGeQAAAAAANQAAAAAANQAAAAABNAAAAAACeQAAAAAAeQAAAAAAeQAAAAAANAAAAAACNQAAAAABNQAAAAAAeQAAAAAAFgAAAAAEFgAAAAABFgAAAAAFFgAAAAABAAAAAAAAeQAAAAAANAAAAAAANAAAAAADNQAAAAACeQAAAAAANQAAAAACNQAAAAACNQAAAAACeQAAAAAAeQAAAAAANQAAAAACFgAAAAAGFgAAAAAAFgAAAAABFgAAAAACAAAAAAAAeQAAAAAANAAAAAADNQAAAAABNQAAAAABeQAAAAAANQAAAAADeQAAAAAANQAAAAACNQAAAAAANQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAAGAAAAAAAAeQAAAAAANQAAAAAANQAAAAAANQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAABFgAAAAAEAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAADFgAAAAAEFgAAAAACFgAAAAAFeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAEeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAA + version: 6 + -9,5: + ind: -9,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAADFgAAAAAFeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAGFgAAAAAFeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAFFgAAAAADFgAAAAABFgAAAAADFgAAAAAGFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAABFgAAAAAGeQAAAAAAeQAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAABFgAAAAAAFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAACFgAAAAAEeQAAAAAAeQAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAAAFgAAAAAGFgAAAAAGFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAABFgAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAEFgAAAAAEFgAAAAAAFgAAAAACFgAAAAAGFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAEFgAAAAACeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAACFgAAAAAFFgAAAAACFgAAAAAAFgAAAAAFFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAAFgAAAAAEeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAADFgAAAAAGFgAAAAAGFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAAGFgAAAAACFgAAAAAAFgAAAAAEeQAAAAAAGwAAAAADGwAAAAADeAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAACFgAAAAAAFgAAAAACFgAAAAADFgAAAAAGFgAAAAAGeQAAAAAAGwAAAAABGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAEFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAGFgAAAAAFeQAAAAAAGwAAAAABGwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAANQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAANQAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAANQAAAAADNQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAANQAAAAADNQAAAAAC + version: 6 + -9,6: + ind: -9,6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAANQAAAAABNQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAANAAAAAADNQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAANQAAAAACNQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAANQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAANAAAAAACNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAANQAAAAADNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAANQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAABNQAAAAACNAAAAAADNQAAAAABNQAAAAABNQAAAAADNQAAAAABNQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAABeQAAAAAAeQAAAAAANQAAAAABeQAAAAAAeAAAAAAAeQAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAADeQAAAAAAeQAAAAAAeQAAAAAANQAAAAABNQAAAAACCgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAADeQAAAAAANQAAAAADNQAAAAABNQAAAAACNQAAAAACNAAAAAADCgAAAAAACgAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAABNAAAAAACNQAAAAACNAAAAAAANQAAAAACNQAAAAABNQAAAAADNQAAAAAANQAAAAABCgAAAAAACgAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -10,6: + ind: -10,6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAegAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA + version: 6 + -8,3: + ind: -8,3 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAJAAAAAADJAAAAAABJAAAAAABJAAAAAABJAAAAAADJAAAAAABJAAAAAACOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAJAAAAAAAJAAAAAABJAAAAAADJAAAAAABJAAAAAADOQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAJAAAAAADJAAAAAADJAAAAAACOQAAAAAAOQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAADIAAAAAABeQAAAAAAeQAAAAAAJAAAAAADJAAAAAACIAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACeQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADeQAAAAAADwAAAAAAHQAAAAACHQAAAAAAeQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABeQAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAABeQAAAAAAeQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAAAIAAAAAACHQAAAAACHQAAAAABHQAAAAABIAAAAAACeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAAAIAAAAAACHQAAAAADHQAAAAACHQAAAAAAIAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAAAIAAAAAACHQAAAAACHQAAAAAAHQAAAAADIAAAAAACeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -8,4: + ind: -8,4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -9,3: + ind: -9,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAAGBAAAAAACBAAAAAAABAAAAAAIBAAAAAAJBAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAJBAAAAAACBAAAAAAHBAAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAAIBAAAAAAABAAAAAAFBAAAAAAFBAAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAGBAAAAAAABAAAAAABBAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAAEBAAAAAAJBAAAAAAABAAAAAAHBAAAAAADBAAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAHBAAAAAAFBAAAAAADBAAAAAAGBAAAAAAEBAAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAeQAAAAAA + version: 6 + -9,4: + ind: -9,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAABFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAC + version: 6 + -2,11: + ind: -2,11 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABQAAAAACBQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABQAAAAAEBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAKaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAABQAAAAAABQAAAAAEeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAABQAAAAAABQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAABQAAAAAABQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAbAAAAAAB + version: 6 + -2,12: + ind: -2,12 + tiles: YAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAADeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAABQAAAAAABQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAbAAAAAAAbAAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAIeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAbAAAAAABbAAAAAADeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAHBQAAAAAEBQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAACRwAAAAABRgAAAAABRgAAAAACRwAAAAABeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABeQAAAAAABQAAAAALeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARwAAAAADRgAAAAABRgAAAAADRwAAAAABeQAAAAAAbAAAAAADcQAAAAAAcQAAAAACbAAAAAACbAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAJRwAAAAACRwAAAAAARgAAAAAARwAAAAADeQAAAAAAbAAAAAABcQAAAAAAcQAAAAADbAAAAAAAeQAAAAAABQAAAAAMBQAAAAAABQAAAAAFBQAAAAAABQAAAAAABQAAAAALRwAAAAABRwAAAAAARwAAAAAARwAAAAACRgAAAAABbAAAAAABcQAAAAACcQAAAAABbAAAAAADeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAARgAAAAADRgAAAAABRgAAAAADRgAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABeQAAAAAABQAAAAABBQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAABRgAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABRwAAAAACeQAAAAAARgAAAAABRgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAbAAAAAAAbAAAAAACRgAAAAAARwAAAAADRgAAAAACRgAAAAACaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADbAAAAAABbAAAAAADbAAAAAACRgAAAAAAeQAAAAAARgAAAAAARgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAC + version: 6 + -3,12: + ind: -3,12 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAGFgAAAAACFgAAAAAFFgAAAAABFgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAEFgAAAAAEFgAAAAACFgAAAAAAFgAAAAAEFgAAAAAEFgAAAAAEFgAAAAAFFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAADFgAAAAADFgAAAAAGFgAAAAABFgAAAAABFgAAAAABFgAAAAABFgAAAAAGFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAAFFgAAAAADFgAAAAADFgAAAAADFgAAAAAFFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAGFgAAAAACFgAAAAADFgAAAAAFFgAAAAAGFgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAAGeQAAAAAAeQAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAFFgAAAAAGFgAAAAAEFgAAAAACFgAAAAAAeQAAAAAARgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAGFgAAAAAFFgAAAAAAFgAAAAAGFgAAAAAEeQAAAAAARgAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAADFgAAAAABFgAAAAABFgAAAAAAeQAAAAAARgAAAAADRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAFFgAAAAACFgAAAAAFFgAAAAAFeQAAAAAARgAAAAADRgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAFFgAAAAAEFgAAAAABeQAAAAAARgAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAEFgAAAAAEeQAAAAAARwAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAGFgAAAAADeQAAAAAARwAAAAACRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -2,10: + ind: -2,10 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAFgAAAAAAFgAAAAAEFgAAAAACFgAAAAADFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAFFgAAAAADFgAAAAAEFgAAAAAAFgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAADFgAAAAAFFgAAAAAFFgAAAAACFgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAA + version: 6 + -1,10: + ind: -1,10 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAAALQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAALQAAAAADTAAAAAAATAAAAAABTAAAAAAALQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAATAAAAAAATAAAAAAATAAAAAABLQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAABbAAAAAADeQAAAAAALQAAAAAATAAAAAADTAAAAAACTAAAAAADLQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAACeQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAABLQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACeQAAAAAAeQAAAAAAaQAAAAAAbAAAAAADbAAAAAADbAAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAFBQAAAAAABQAAAAAABQAAAAAABQAAAAAGBQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAAaQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAALBQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAABQAAAAAAeQAAAAAA + version: 6 + -3,10: + ind: -3,10 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAACSAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAARgAAAAABRgAAAAAARgAAAAADRgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAARgAAAAACRwAAAAADRwAAAAACRgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAASAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAARgAAAAACRgAAAAADRgAAAAABRgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAFgAAAAAB + version: 6 + 0,10: + ind: 0,10 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 0,11: + ind: 0,11 + tiles: BQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAMeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAMBQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAABaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAABQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAABeQAAAAAAbAAAAAACcQAAAAABcQAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADeQAAAAAADAAAAAABDAAAAAACBQAAAAAAeQAAAAAAbAAAAAABcQAAAAACcQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAADAAAAAABDAAAAAACBQAAAAAAeQAAAAAAbAAAAAAAcQAAAAACcQAAAAACbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAACBQAAAAABeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAADDAAAAAADBQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAADFwAAAAAEFwAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAADFwAAAAADFwAAAAACDAAAAAADDAAAAAADDAAAAAAABQAAAAAHBQAAAAAABQAAAAAMeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACDAAAAAACFwAAAAACFwAAAAAGFwAAAAAHDAAAAAABDAAAAAAADAAAAAABBQAAAAABBQAAAAAABQAAAAAAeQAAAAAAHgAAAAADHgAAAAAAaQAAAAAAeQAAAAAADAAAAAADFwAAAAADFwAAAAAAFwAAAAAEDAAAAAABDAAAAAABeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAHHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAACFwAAAAAFFwAAAAACFwAAAAAAFwAAAAAHFwAAAAABFwAAAAAEFwAAAAAHbAAAAAAB + version: 6 + 1,11: + ind: 1,11 + tiles: eQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAEFgAAAAAFFgAAAAABFgAAAAACFgAAAAADAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAFgAAAAABFgAAAAAFFgAAAAAGFgAAAAABFgAAAAAAFgAAAAAEAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAADFgAAAAAEFgAAAAAFAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAFgAAAAACFgAAAAADFgAAAAAFFgAAAAABFgAAAAAFFgAAAAAGAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAAFgAAAAAEFgAAAAAEFgAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAFgAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAADFgAAAAABFgAAAAAFFgAAAAAAFgAAAAADAAAAAAAAAAAAAAAADAAAAAACDAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAACFgAAAAADFgAAAAAFFgAAAAAEAAAAAAAAAAAAAAAADAAAAAADDAAAAAABDAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAGAAAAAAAAAAAAAAAADAAAAAADDAAAAAADDAAAAAABDAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAFFgAAAAAEFgAAAAACAAAAAAAAAAAAAAAADAAAAAADDAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAABFgAAAAACFgAAAAADFgAAAAAFAAAAAAAADAAAAAACDAAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAGFgAAAAACFgAAAAAFFgAAAAAEFgAAAAABDAAAAAABDAAAAAACbAAAAAABbAAAAAABcQAAAAABbAAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAEFgAAAAABFgAAAAADFgAAAAAFFgAAAAAFbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAcQAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAADFgAAAAABFgAAAAAFFgAAAAADFgAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAADcQAAAAAAbAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAACFgAAAAAGFgAAAAAEFgAAAAAB + version: 6 + 0,12: + ind: 0,12 + tiles: BQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADFwAAAAAHFwAAAAAGFwAAAAAEFwAAAAAAFwAAAAACFwAAAAAGFwAAAAAAbAAAAAABBQAAAAAABQAAAAAABQAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAeQAAAAAADAAAAAADDAAAAAACDAAAAAABFwAAAAAHFwAAAAAGDAAAAAADeQAAAAAAeQAAAAAABQAAAAAABQAAAAACBQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAADAAAAAACDAAAAAACDAAAAAABDAAAAAADDAAAAAADDAAAAAAADAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJeQAAAAAASgAAAAADFwAAAAAFFwAAAAAFFwAAAAAHFwAAAAAGDAAAAAADDAAAAAABeQAAAAAAcQAAAAABcQAAAAABbAAAAAACeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAFwAAAAABFwAAAAABFwAAAAAGFwAAAAAEFwAAAAABFwAAAAADDAAAAAACDAAAAAABcQAAAAABcQAAAAAAbAAAAAABeQAAAAAAVwAAAAACVwAAAAALVwAAAAAAeQAAAAAAeQAAAAAADAAAAAADFwAAAAABFwAAAAACFwAAAAACFwAAAAAFDAAAAAAADAAAAAADcQAAAAAAcQAAAAACbAAAAAADeQAAAAAAVwAAAAAKVwAAAAAAVwAAAAAAVwAAAAADeQAAAAAAeQAAAAAADAAAAAABFwAAAAAHFwAAAAACDAAAAAAADAAAAAADDAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAADbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAVwAAAAAIVwAAAAAAVwAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAcQAAAAAAcQAAAAADbAAAAAADeQAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAcQAAAAADcQAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAAFgAAAAACFgAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAACFgAAAAAFFgAAAAAFFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAAEFgAAAAAFFgAAAAAFeQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAFgAAAAAEFgAAAAACFgAAAAACFgAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAAD + version: 6 + 1,12: + ind: 1,12 + tiles: bAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAAFgAAAAAAFgAAAAAGFgAAAAADFgAAAAAEbAAAAAAAbAAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAADFgAAAAAFFgAAAAACFgAAAAADFgAAAAAFbAAAAAAAbAAAAAADbQAAAAABbQAAAAADbQAAAAAAbQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAACFgAAAAAFFgAAAAACFgAAAAAFFgAAAAAFbAAAAAADbAAAAAABbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAAFgAAAAAEFgAAAAAFFgAAAAABFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAGFgAAAAAAFgAAAAABFgAAAAACFgAAAAAEDAAAAAACDAAAAAACDAAAAAAADAAAAAABeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAFgAAAAACFgAAAAABFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAAEDAAAAAACDAAAAAADDAAAAAAADAAAAAACaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAADFgAAAAACFgAAAAADFgAAAAAFDAAAAAACDAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAFwAAAAAHeQAAAAAAFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAFwAAAAACeQAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAABFgAAAAAGAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAFwAAAAAHFwAAAAAEeQAAAAAAFgAAAAAAFgAAAAAGFgAAAAACFgAAAAAGFgAAAAABAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAFwAAAAAHFwAAAAAEFwAAAAAGeQAAAAAAFgAAAAACFgAAAAACFgAAAAAGFgAAAAACFgAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAABFgAAAAAAFgAAAAAEAAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAADFgAAAAABFgAAAAADFgAAAAABFgAAAAAGFgAAAAAGFgAAAAACFgAAAAACFgAAAAACFgAAAAABFgAAAAAGAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAGFgAAAAABFgAAAAAGFgAAAAAGFgAAAAADFgAAAAADFgAAAAADFgAAAAAEFgAAAAAGFgAAAAAGFgAAAAACFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAEFgAAAAABFgAAAAAAFgAAAAAGFgAAAAABFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAACFgAAAAADFgAAAAAGFgAAAAAFFgAAAAADFgAAAAAEFgAAAAABFgAAAAAAFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAAFFgAAAAAGFgAAAAAGFgAAAAACFgAAAAAGFgAAAAAGAAAAAAAA + version: 6 + -1,12: + ind: -1,12 + tiles: cQAAAAADcQAAAAABcQAAAAADcQAAAAAAbAAAAAACbAAAAAAAbAAAAAADcQAAAAAAcQAAAAADcQAAAAADbAAAAAADeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAHcQAAAAABcQAAAAADcQAAAAAAcQAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAACeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAABQAAAAAABQAAAAAHBQAAAAAABQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAACbAAAAAAAeQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAADeQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAACeQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAADBQAAAAAABQAAAAAAeQAAAAAABQAAAAAABQAAAAAGeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADeQAAAAAABQAAAAABBQAAAAAAeQAAAAAAbAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAHeQAAAAAAbAAAAAABBQAAAAAABQAAAAAABQAAAAAFBQAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAAABQAAAAAHBQAAAAAABQAAAAAABQAAAAAIeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAMBQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAFBQAAAAAABQAAAAAABQAAAAAABQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAKBQAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAABBQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACeQAAAAAATwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAATwAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + version: 6 + 0,13: + ind: 0,13 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAFgAAAAAGFgAAAAADFgAAAAAFFgAAAAACFgAAAAABFgAAAAAFFgAAAAABFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAADFgAAAAAAFgAAAAADFgAAAAAAFgAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAFgAAAAACFgAAAAAGFgAAAAABFgAAAAAGFgAAAAADFgAAAAABFgAAAAACFgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAABFgAAAAAGFgAAAAAAFgAAAAAEFgAAAAAAFgAAAAABFgAAAAABFgAAAAAFYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAABFgAAAAAAFgAAAAAEFgAAAAACAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAFgAAAAAGFgAAAAAEFgAAAAADFgAAAAAFFgAAAAACFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAGAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAQAAAAAAAeQAAAAAAFgAAAAABFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAFFgAAAAAEFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAAEFgAAAAABFgAAAAAAFgAAAAAGFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAGFgAAAAAATwAAAAAATwAAAAAATwAAAAAAFgAAAAAAFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAADFgAAAAADFgAAAAAFTwAAAAAAeQAAAAAATwAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAADFgAAAAADFgAAAAABTwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,13: + ind: -1,13 + tiles: eQAAAAAAeQAAAAAAeQAAAAAATwAAAAAALAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAALAAAAAAATwAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAATwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAACFgAAAAAFFgAAAAAEFgAAAAADFgAAAAADFgAAAAAAFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAADFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAACFgAAAAADFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAATwAAAAAATwAAAAAATwAAAAAAFgAAAAACFgAAAAABFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAeQAAAAAATwAAAAAAFgAAAAAFFgAAAAADFgAAAAAFFgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAFgAAAAADFgAAAAAAFgAAAAAEFgAAAAAEeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAACFgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -2,13: + ind: -2,13 + tiles: eQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,11: + ind: -1,11 + tiles: BQAAAAAABQAAAAAABQAAAAAFBQAAAAAABQAAAAADBQAAAAAABQAAAAAKBQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAJBQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAABQAAAAAABQAAAAAFBQAAAAAIBQAAAAAABQAAAAALBQAAAAAABQAAAAAGBQAAAAAABQAAAAAABQAAAAAJBQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAIBQAAAAAABQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAABQAAAAAABQAAAAAABQAAAAAHBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAADBQAAAAAHBQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAAABQAAAAAABQAAAAAHBQAAAAAABQAAAAAMBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAFeQAAAAAABQAAAAAGBQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAIBQAAAAAABQAAAAAABQAAAAAKBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAACbAAAAAADeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAABQAAAAAFBQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAAHBQAAAAAABQAAAAAMBQAAAAAABQAAAAAJbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAJBQAAAAAAcQAAAAAAcQAAAAABcQAAAAAAcQAAAAABbAAAAAABbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAABeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAFbAAAAAADeQAAAAAAbAAAAAACeQAAAAAAbAAAAAABeQAAAAAAbAAAAAAAcQAAAAABcQAAAAADcQAAAAAAbAAAAAABeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAGbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAADeQAAAAAABQAAAAAABQAAAAAABQAAAAAJBQAAAAAA + version: 6 + 1,10: + ind: 1,10 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAABFgAAAAAGFgAAAAACFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAEFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAACFgAAAAABFgAAAAAAFgAAAAACFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAGFgAAAAAAFgAAAAADFgAAAAAGFgAAAAABFgAAAAAAFgAAAAAFFgAAAAACFgAAAAAAFgAAAAAEFgAAAAAFFgAAAAAEAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAGFgAAAAAEFgAAAAADFgAAAAACFgAAAAAEFgAAAAAEFgAAAAABFgAAAAABFgAAAAAGFgAAAAACAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAFgAAAAAEFgAAAAAEFgAAAAAAFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAACAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAFgAAAAADFgAAAAAEFgAAAAABFgAAAAACFgAAAAAAFgAAAAAEFgAAAAAGFgAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAACFgAAAAAGFgAAAAABFgAAAAAGFgAAAAACAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAAFAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAADFgAAAAADFgAAAAAAFgAAAAACFgAAAAAFAAAAAAAA + version: 6 + 2,11: + ind: 2,11 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAAFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,12: + ind: 2,12 + tiles: FgAAAAAEFgAAAAACFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -10,5: + ind: -10,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,13: + ind: 1,13 + tiles: FgAAAAAFFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAAEFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAAGFgAAAAADFgAAAAACFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAEFgAAAAADFgAAAAACFgAAAAAFFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAABFgAAAAACFgAAAAACFgAAAAAFFgAAAAADFgAAAAADFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -9,2: + ind: -9,2 + tiles: AAAAAAAAAAAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAHBAAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAAFBAAAAAAJBAAAAAAABAAAAAADBAAAAAAGBAAAAAAABAAAAAAJBAAAAAAGBAAAAAAJeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAJBAAAAAADBAAAAAADBAAAAAACBAAAAAAIBAAAAAADBAAAAAADBAAAAAAHBAAAAAAHeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAAIBAAAAAAFBAAAAAAGBAAAAAAFBAAAAAAGBAAAAAAEBAAAAAADDwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAAJBAAAAAAHBAAAAAAIBAAAAAACBAAAAAAGBAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAIBAAAAAAABAAAAAAJBAAAAAABBAAAAAABBAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAABAAAAAAEBAAAAAABBAAAAAABBAAAAAAJBAAAAAAIeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAAJBAAAAAAFBAAAAAAIBAAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAABAAAAAAABAAAAAAGBAAAAAAABAAAAAADBAAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAADBAAAAAABBAAAAAAJBAAAAAACBAAAAAADBAAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAABBAAAAAAGBAAAAAAEBAAAAAAFBAAAAAAHBAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 1,4: + ind: 1,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,13: + ind: -3,13 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + version: 6 + -8,2: + ind: -8,2 + tiles: eQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAASwAAAAADSwAAAAABeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAWQAAAAABSwAAAAACSwAAAAACDwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAWQAAAAACSwAAAAABSwAAAAACDwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAACSwAAAAACDwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAJAAAAAAAJAAAAAADJAAAAAADOQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAJAAAAAAAJAAAAAACJAAAAAAAJAAAAAABJAAAAAADOQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAJAAAAAADJAAAAAAAJAAAAAADJAAAAAADJAAAAAADJAAAAAAAJAAAAAABOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAOQAAAAAAJAAAAAAAJAAAAAABJAAAAAACJAAAAAACJAAAAAABJAAAAAACJAAAAAACOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAJAAAAAABJAAAAAADJAAAAAAAJAAAAAAAJAAAAAABJAAAAAADJAAAAAACOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAJAAAAAACJAAAAAABJAAAAAAAJAAAAAACJAAAAAAAJAAAAAADJAAAAAABOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABOQAAAAAAJAAAAAAAJAAAAAAAJAAAAAACJAAAAAADJAAAAAABJAAAAAACJAAAAAACOQAAAAAA + version: 6 + -7,2: + ind: -7,2 + tiles: SwAAAAADUAAAAAAASwAAAAAASwAAAAAASwAAAAABeQAAAAAAJgAAAAACIgAAAAACIgAAAAACJgAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAJAAAAAABJAAAAAACJAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABIgAAAAAAIgAAAAACJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAUAAAAAAASwAAAAABSwAAAAADSwAAAAACWQAAAAACJgAAAAABIgAAAAAAIgAAAAADJgAAAAACeQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACeQAAAAAASwAAAAAAUAAAAAAASwAAAAACSwAAAAABSwAAAAACWQAAAAACJgAAAAAAIgAAAAADIgAAAAADIgAAAAABWQAAAAAAIAAAAAACHwAAAAADHwAAAAABIAAAAAABIQAAAAAASwAAAAACUAAAAAAASwAAAAACSwAAAAABSwAAAAABeQAAAAAAJgAAAAABIgAAAAABIgAAAAAAIgAAAAADWQAAAAABIAAAAAABHwAAAAADHwAAAAACIAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABJgAAAAACJgAAAAAAJgAAAAACeQAAAAAAIAAAAAADIAAAAAADHwAAAAABIAAAAAABeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAACHwAAAAADIAAAAAABeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAADHwAAAAACIAAAAAADIAAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAADHwAAAAAAHwAAAAACIAAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAABHwAAAAABHwAAAAACIAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAABHwAAAAAAHwAAAAAAIAAAAAABeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAAAHwAAAAAAIAAAAAACIAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAYQAAAAACYQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAABHwAAAAADIAAAAAACeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAABHwAAAAAAIAAAAAACeQAAAAAAWQAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAYQAAAAAAIAAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAAAIAAAAAADWQAAAAACWQAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAAYQAAAAACIAAAAAAAHwAAAAAAYQAAAAACYQAAAAABYQAAAAACYQAAAAADYQAAAAABHwAAAAABIAAAAAACWQAAAAAD + version: 6 + -7,1: + ind: -7,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAASwAAAAADUAAAAAAASwAAAAADSwAAAAAASwAAAAACeQAAAAAAJgAAAAADIgAAAAABIgAAAAACJgAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAASwAAAAACUAAAAAAASwAAAAAASwAAAAADSwAAAAADeQAAAAAAJgAAAAADIgAAAAADIgAAAAABJgAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA + version: 6 + -5,2: + ind: -5,2 + tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAWQAAAAACYwAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -8,1: + ind: -8,1 + tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAASwAAAAADSwAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAASwAAAAADSwAAAAAD + version: 6 + -10,1: + ind: -10,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -10,0: + ind: -10,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAA + version: 6 + -9,0: + ind: -9,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA + version: 6 + -8,0: + ind: -8,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -7,0: + ind: -7,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAABSgAAAAACeQAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAADSgAAAAADeQAAAAAAFgAAAAAEFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAACSgAAAAAAeQAAAAAAFgAAAAABFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -8,9: + ind: -8,9 + tiles: eAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,15: + ind: 0,15 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,15: + ind: -1,15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -9,9: + ind: -9,9 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -9,8: + ind: -9,8 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + -10,7: + ind: -10,7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,8: + ind: -4,8 + tiles: eQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -10,2: + ind: -10,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -508,8 +771,10 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} - - type: BecomesStation - id: Boxstation + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -517,14283 +782,11902 @@ entities: chunkCollection: version: 2 nodes: + - node: + cleanable: True + color: '#0080FFFF' + id: 0 + decals: + 5520: -105,16 + 5521: -108,16 + - node: + cleanable: True + color: '#FF0000FF' + id: 0 + decals: + 5518: -113,16 + 5519: -110,16 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 1721: -109,96 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 239: -7,-3 + 544: 60,62 + 545: 61,62 + 546: 62,62 + 600: 59,62 + 1722: -112,96 + 2051: -72.51597,179.2289 + 3294: 71,54 + 3806: -104,95 + 3807: -103,95 + 3808: -107,95 + 3809: -106,95 + 3810: -110,95 + 3811: -109,95 + 3812: -113,95 + 3813: -112,95 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Arrows + decals: + 4335: -72.49484,178.08356 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 3656: 60,-52 + 13: -27,2 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 226: -38,-1 + 227: -37,-1 + - node: + color: '#D0A59EFF' + id: Basalt1 + decals: + 880: 88,33 + 881: 89,31 + 882: 91,37 + 883: 81,25 + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 1553: 4,81 + 1558: 10,73 + 1559: -38.220192,53.207275 + 2298: -57,161 + 2323: -35.0538,92.88373 + 2324: -37,94 + 3076: -38,192 + 3077: -38,203 + 3110: 27,168 + 3111: 27,175 + 3112: 34,192 + 3113: 31,198 + 3114: 30,204 + 3115: 20,206 + 3116: 15,206 + 3117: 12,214 + 3118: 5,213 + 3119: 6,219 + 3120: -6,218 + 3500: -81,47 + 3503: -80.31293,34.993168 + 3657: -130,102 + 3658: -114,108 + 4109: -65.012024,60.111717 + 4136: -47.923622,107.9973 + 4139: -33.907692,108.01743 + 4229: -53.8859,92.958725 + 4280: -89.44641,49.742626 + 4294: -131.98892,57.605907 + 4307: -76.242294,114.44826 + 4346: -109.11102,144.05151 + 4448: 4.8926125,215.42917 + 4469: 34.46177,7.5391693 + 4475: 20.776154,21.618591 + 4478: 22.452492,16.51725 + 4483: 24.718506,23.103539 + 4491: 38.45147,12.766838 + 4504: 63.795,19.851028 + 4530: 24.308311,9.449371 + 4689: -128.0066,11.103729 + 5352: -145.49336,110.37204 + 5407: -90.67151,98.13673 + 5413: -83.99106,96.10919 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt1 + decals: + 4374: -30.142406,173.9985 + 4519: -61.900948,58.07885 + 4527: -3.9893913,219.0611 + - node: + color: '#D0A59EFF' + id: Basalt2 + decals: + 886: 84,28 + 891: 93,42 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 1566: -53,54 + 1567: -39,47 + 3100: -10,215 + 3101: -3,219 + 3102: 9,215 + 3103: 11,205 + 3104: 19,210 + 3105: 29,200 + 3106: 32,194 + 3107: 30,188 + 3108: 30,176 + 4141: -32.72015,106.70493 + 4276: -81.02801,35.837433 + 4282: -86.11336,48.9145 + 4285: -90.10515,54.68588 + 4313: -97.27326,92.26778 + 4319: 29.171394,175.06067 + 4342: -101.93271,152.99905 + 4453: 8.243168,212.81326 + 4471: 33.619423,7.557518 + 4488: 32.993584,22.978539 + 4489: 39.496727,15.35273 + 4690: -123.169975,12.228165 + 4691: -131.13354,10.440315 + 5356: -146.85274,111.40329 + 5386: -113.05004,101.87442 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt2 + decals: + 4525: -57.10768,58.031975 + - node: + color: '#D0A59EFF' + id: Basalt3 + decals: + 884: 79,27 + 885: 89,36 + 893: 100,43 + 894: 101,44 + 895: 96,41 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 1568: -34,43 + 1569: -31,41 + 2300: -54,171 + 2303: -54,176 + 2304: -66,181 + 2305: -68,182 + 2306: -63,183 + 2325: -36,94 + 2326: -31,93 + 3086: -42,192 + 3087: 26,168 + 3088: 20,168 + 3089: 26,178 + 3090: 29,186 + 3091: 32,191 + 3092: 30,197 + 3093: 30,203 + 3094: 22,209 + 3095: 17,206 + 3096: 11,213 + 3097: 3,219 + 3098: -3,215 + 3099: -11,215 + 3506: -80.24158,35.180668 + 3664: -88,102 + 3665: -88,92 + 3799: -82,112 + 3800: -66,117 + 3801: -60,118 + 3802: -58,115 + 3803: -88,103 + 3804: -91,102 + 4115: -39.288223,47.366005 + 4134: 10.561943,73.97253 + 4137: -49.065826,106.9348 + 4281: -87.45711,49.023876 + 4289: -82.48503,29.36211 + 4290: -81.51628,28.89336 + 4292: -133.20767,57.86623 + 4306: -76.992294,114.01076 + 4325: 23.107151,170.255 + 4339: -106.87953,151.02698 + 4344: -100.935005,154.0051 + 4450: 4.3457375,216.55417 + 4486: 31.26867,23.103539 + 4495: 37.85772,9.224251 + 4496: 36.824875,8.349251 + 4497: 61.911568,20.021622 + 4692: -134.14801,9.394585 + 4693: -133.63062,12.565498 + 5170: 81.301765,20.441437 + 5355: -143.05586,108.575165 + 5379: -123.799446,111.090324 + 5383: -113.007866,103.52385 + 5405: -90.51526,97.71485 + - node: + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: Basalt3 + decals: + 4231: -51.064262,93.1931 + - node: + color: '#D0A59EFF' + id: Basalt4 + decals: + 887: 85,32 + - node: + color: '#FFFFFFFF' + id: Basalt4 + decals: + 3508: -79.9458,47.210823 + 4111: -62.909153,59.033592 + 5359: -145.66934,109.668915 + - node: + color: '#D0A59EFF' + id: Basalt5 + decals: + 888: 89,26 + 889: 87,28 + 890: 93,39 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 1556: 10,81 + 1557: 12,76 + 1561: -43,50 + 1570: -34,50 + 1571: -64,59 + 1611: -21,102 + 2297: -58,159 + 3121: -8,215 + 3122: 0,218 + 3123: 7,213 + 3124: 12,205 + 3125: 25,209 + 3126: 32,196 + 3127: 29,187 + 3128: 30,179 + 3129: 30,173 + 3130: 25,167 + 3659: -129,103 + 3662: -93,90 + 3663: -89,100 + 3805: -90,102 + 4110: -65.34015,60.049217 + 4113: -44.615543,49.78258 + 4116: -38.99135,46.53788 + 4117: -31.107416,41.383377 + 4118: -34.37304,43.25985 + 4135: -47.923622,108.012924 + 4138: -34.188942,107.981674 + 4230: -54.314262,92.97435 + 4283: -88.40202,48.977 + 4287: -90.1364,54.24838 + 4295: -132.52966,57.193047 + 4298: -123.218834,14.55835 + 4311: -97.17951,91.4084 + 4312: -96.66389,91.79903 + 4318: 28.24952,175.24817 + 4347: -109.70477,143.70776 + 4348: -108.73602,143.48851 + 4449: 4.1582375,215.89792 + 4470: 33.77427,7.1485443 + 4472: 40.455048,17.784966 + 4477: 20.104279,21.39354 + 4485: 29.574913,23.931664 + 4487: 31.034294,23.494164 + 4493: 37.935844,12.327644 + 4494: 37.42022,8.943001 + 4873: -78.374344,68.0348 + 4938: -66.93477,93.75588 + 4974: -62.131523,94.923256 + 5169: 79.19239,18.925812 + 5350: -145,108 + 5354: -147.00899,108.012665 + 5358: -146.57559,109.637665 + 5380: -114.52193,107.83921 + 5387: -113.08129,102.06192 + 5414: -84.36162,96.01544 + 5417: -92.572105,96.45294 + 5418: -94.58773,97.26544 + 5419: -97.63617,98.54075 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt5 + decals: + 4371: -32,175 + 4373: -29.535868,172.60788 + 4515: -59.94278,57.2351 + 4522: -57.849083,58.031975 + 4526: -4.8331413,218.60797 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 1562: -46,55 + 3505: -80.11658,35.258793 + 4114: -44.47492,49.77002 + 4232: -50.986137,92.646225 + 4275: -81.05926,34.931183 + 4277: -81.23113,35.962433 + 4278: -80.23114,36.040558 + 4284: -90.27702,50.742626 + 4286: -90.08952,54.482754 + 4293: -132.44205,58.09526 + 4297: -123.51571,14.12085 + 4300: -122.50657,14.62085 + 4301: -122.69407,14.511475 + 4309: -77.32042,114.22951 + 4314: -94.76573,92.17702 + 4320: 22.263401,170.78625 + 4321: 23.763401,170.38 + 4322: 24.029026,169.41125 + 4323: 22.654026,170.09875 + 4324: 25.669655,170.98938 + 4343: -101.93271,152.82184 + 4345: -100.98188,154.0051 + 4349: -109.29758,144.49352 + 4451: 5.0488625,216.36667 + 4474: 40.93582,17.261253 + 4480: 22.655617,16.876625 + 4503: 64.02491,19.554153 + 4533: 25.77655,7.6837463 + 4874: -78.82747,68.1598 + 4875: -76.92658,66.78138 + 4939: -66.62227,93.796364 + 4941: -68.85413,98.030975 + 4943: -66.69668,90.759705 + 4976: -61.756523,94.923256 + 4977: -61.756523,94.923256 + 4978: -61.885414,92.67579 + 4979: -61.885414,92.67579 + 5165: 79.4756,20.00264 + 5166: 79.31935,19.643265 + 5171: 81.114265,20.003937 + 5172: 80.72364,20.144562 + 5173: 80.1895,19.716698 + 5175: 79.39243,24.151878 + 5176: 80.25181,23.698753 + 5351: -144.89961,108.05954 + 5381: -114.32146,107.16525 + 5384: -113.08599,103.5551 + 5385: -112.86254,101.890045 + 5388: -112.64749,101.6353 + 5389: -113.28812,102.6978 + 5390: -112.25806,102.120224 + 5391: -112.05493,101.588974 + 5392: -112.36743,101.88585 + 5393: -114.8297,107.27737 + 5394: -114.8922,108.21487 + 5395: -113.9547,108.35549 + 5409: -90.36396,97.32423 + 5410: -91.33271,98.02735 + 5412: -96.19178,96.80278 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt6 + decals: + 4518: -59.21421,57.188225 + 4520: -62.69577,58.188225 + 4521: -59.243614,57.031975 + 4523: -57.645958,58.125725 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Basalt6 + decals: + 4350: -108.59445,144.11852 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Basalt6 + decals: + 4315: -98.71886,90.45827 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Basalt6 + decals: + 4316: -97.59674,93.826965 + - node: + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: Basalt6 + decals: + 4317: 28.827644,175.56067 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 1564: -55,60 + 1565: -50,53 + 3078: -39,195 + 3079: -40,188 + 3084: -41,195 + 3085: -39,193 + 3504: -80.27283,35.430668 + 3507: -80.1333,45.929573 + 3666: -95,90 + 3667: -90,89 + 3668: -88,104 + 3795: -70,114 + 3796: -71,117 + 3797: -76,113 + 3798: -79,114 + 4140: -33.048275,106.90806 + 4279: -89.69641,49.086376 + 4291: -81.57878,29.48711 + 4296: -135.83014,54.162716 + 4299: -122.75657,14.198975 + 4308: -76.25792,113.69826 + 4310: -97.447975,91.7524 + 4452: 9.040043,212.55173 + 4473: 40.61998,17.355003 + 4476: 21.088654,20.931091 + 4479: 22.171242,16.736 + 4482: 26.98462,23.881744 + 4484: 24.009369,22.978539 + 4490: 39.279594,15.594963 + 4492: 38.779594,11.890144 + 4498: 61.364693,20.0905 + 4505: 63.97896,19.491653 + 4531: 25.464561,7.8556213 + 4694: -135.70023,11.15995 + 4940: -68.86976,97.9841 + 4975: -61.70965,94.985756 + 5168: 81.551765,17.675812 + 5174: 79.93931,23.728859 + 5353: -147.64961,108.96579 + 5382: -113.26562,103.80588 + 5406: -90.98401,97.73048 + 5411: -95.957405,96.52153 + 5415: -91.23266,94.01544 + 5416: -87.95205,95.67169 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt7 + decals: + 4372: -30.751534,173.26413 + 4516: -59.88028,57.64135 + 4524: -57.58736,58.0476 + 4528: -3.8487663,218.34235 + 4529: -4.8175163,218.98297 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 1554: 7,82 + 1560: -38.10771,55.028862 + 1563: -47,57 + 2296: -57,157 + 2301: -57,176 + 2302: -53,177 + 2307: -64,184 + 2308: -60,186 + 2327: -28,93 + 2328: -25,94 + 3080: -39,192 + 3081: -39,202 + 3131: 28,177 + 3132: 29,200 + 3133: 23,209 + 3134: 15,205 + 3135: 6,218 + 3136: 7,216 + 3137: -8,216 + 3502: -80,47 + 3661: -128,108 + 4112: -44.34992,49.516956 + 4326: 25.200905,170.13 + 4340: -105.53578,150.99573 + 4454: 9.102543,213.34451 + 4481: 27.418594,23.944244 + 4499: 62.077744,20.582672 + 4942: -66.7738,91.21283 + 5357: -147.83711,110.356415 + 5408: -90.79651,97.83985 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt8 + decals: + 4517: -59.39399,57.64135 + - node: + color: '#D0A59EFF' + id: Basalt9 + decals: + 892: 96,43 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 1555: 11,79 + 2299: -53,168 + 3082: -38,206 + 3083: -38,188 + 3501: -80,46 + 3660: -128,103 + 4341: -103.55141,151.96448 + - node: + cleanable: True + color: '#FF434BFF' + id: Blasto + decals: + 952: 98.77898,19.506672 - node: color: '#FFFFFFFF' id: Bot decals: - 482: -14,-24 - 483: -14,-25 - 484: -14,-26 - 485: -14,-27 - 486: -14,-28 - 1487: 72,-58 - 1488: 72,-57 - 1490: 74,-58 - 1491: 74,-57 - 3085: 34,-47 - 3086: 34,-46 - 3087: 34,-50 - 3088: 34,-49 - 3652: 60,-51 - 3653: 59,-51 - 3655: 57,-51 - 4964: 29,-10 - 4965: 29,-9 - 4966: 29,-8 - 10513: -20,4 - 10514: -20,5 - 10515: -20,6 - 10516: -20,7 - 10517: -21,8 - 10518: -22,8 - 10519: -23,8 - 10520: -24,7 - 10521: -24,6 - 10522: -24,5 - 10523: -24,4 - 11908: -16,-76 - 11909: -17,-75 - 11910: -16,-75 - 11911: -16,-74 - 11912: -15,-75 - 12389: -25,-19 - 12408: -25,-20 - 13618: -43,-39 - 13619: -42,-39 - 13620: -41,-39 - 15419: -34,-20 - 15420: -34,-19 - 15421: -35,-19 - 15422: -35,-20 - 15423: -36,-20 - 15424: -36,-19 - 15425: -37,-25 - 15426: -37,-23 + 10: -29,2 + 11: -28,2 + 241: -10,-4 + 242: -10,-3 + 243: -10,-2 + 244: -8,-4 + 245: -8,-3 + 246: -8,-2 + 251: -17,-4 + 252: -15,-2 + 253: -15,-3 + 254: -15,-4 + 255: -15,-5 + 256: -17,-5 + 344: -17,-3 + 345: -17,-2 + 346: -10,-5 + 347: -8,-5 + 542: 61,58 + 599: 60,58 + 603: 62,58 + 688: 94,49 + 689: 95,49 + 690: 96,49 + 691: 94,57 + 692: 95,57 + 693: 96,57 + 998: -20,79 + 999: -19,79 + 1000: -18,79 + 2425: -16,189 + 2426: -14,189 + 3220: -95,41 + 3221: -95,42 + 3222: 59,60 + 3223: 59,61 + 3265: 76,35 + 3272: 79,35 + 3499: -95,43 + 4147: 59,58 + 4221: 76,34 + 4222: 79,34 + 4270: -72,165 + 4271: -71,165 + 4272: -70,165 - node: - zIndex: 3 + cleanable: True color: '#FFFFFFFF' id: Bot decals: - 10454: -39,-25 - 10455: -38,-25 - 10458: -38,-23 - 10459: -39,-23 + 1884: -83,177 + 1885: -82,177 + 1886: -78,177 + 1887: -77,177 - node: - color: '#DE3A3AFF' + zIndex: 1 + color: '#FFFFFFFF' + id: Bot + decals: + 5651: 58,58 + - node: + color: '#334E6DC8' id: BotGreyscale decals: - 7371: 13,33 - 7372: 13,32 - 7373: 14,32 - 7374: 14,33 - 7375: 15,33 - 7376: 15,32 - 7377: 17,32 - 7378: 16,33 - 7379: 16,32 - 7380: 17,33 - 9118: 6,38 - 9119: 6,39 - 9120: 6,40 - 9121: 6,41 - 9122: 6,42 - 9123: 8,42 - 9124: 8,41 - 9125: 8,40 - 9126: 8,39 - 9127: 8,38 + 1501: -41,106 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 448: 69,48 + 449: 70,48 + 450: 71,48 + 451: 72,48 + 452: 73,48 + 4651: 68,48 + 4652: 74,48 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1688: 55,-32 - 11904: -15,-74 - 11905: -17,-76 + 12: -27,2 + 3263: 87,59 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotLeft + decals: + 1888: -76,180 + 1889: -76,179 + 1890: -76,178 - node: color: '#FFFFFFFF' - id: BotRight + id: BotLeftGreyscale decals: - 11906: -17,-74 - 11907: -15,-76 + 541: 73,46 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 540: 69,46 - node: color: '#FFFFFFFF' id: Box decals: - 16189: -31,7 - 16190: -31,5 + 3262: 88,59 + 3266: 74,36 + 3267: 74,35 + 3268: 74,34 + 3269: 81,36 + 3270: 81,35 + 3271: 81,34 + 4219: 74,33 + 4220: 81,33 + 4810: 57,67 + 5139: -109,149 + 5140: -109,147 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Box + decals: + 4332: -72.52609,180.60231 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 4653: 67,49 + 4654: 66,49 + 4655: 75,49 + 4656: 76,49 + - node: + color: '#52B4E996' + id: BrickTileDarkCornerNe + decals: + 5609: -32,206 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 3274: 72,61 + 5530: -43,-4 + - node: + color: '#52B4E996' + id: BrickTileDarkCornerNw + decals: + 5606: -34,206 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 4899: 32,-8 + 3273: 70,61 + 5531: -45,-4 + - node: + color: '#52B4E996' + id: BrickTileDarkCornerSe + decals: + 5610: -32,204 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 2972: 11,-35 + 3276: 72,59 + 5528: -43,-6 + - node: + color: '#52B4E996' + id: BrickTileDarkCornerSw + decals: + 5608: -34,204 - node: color: '#FFFFFFFF' - id: BrickTileDarkInnerNe + id: BrickTileDarkCornerSw decals: - 5047: 32,11 - 5048: 36,11 - 12552: -14,50 + 3280: 70,59 + 5529: -45,-6 - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw + color: '#52B4E996' + id: BrickTileDarkLineE decals: - 5053: 30,11 - 12553: -14,50 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 14793: 21,-11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 5049: 32,9 - 5050: 36,9 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 13915: 31,8 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 5051: 30,9 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 13914: 35,8 - 14794: 21,-9 + 5611: -32,205 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 2973: 11,-34 - 4905: 35,-9 - 4906: 35,-10 - 4907: 35,-11 - 5035: 29,9 - 5036: 29,10 - 5037: 29,11 - 5038: 33,9 - 5039: 33,10 - 5040: 33,11 - 10571: 14,26 - 10572: 14,27 - 10573: 14,28 - 10591: 14,25 - 12549: -14,51 - 12550: -14,52 - 12551: -14,53 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 14791: 20,-9 - 14792: 20,-11 + 3277: 72,60 + 5526: -43,-5 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 2965: 13,-36 - 2966: 11,-36 - 2969: 12,-36 - 2970: 10,-36 - 2971: 9,-36 - 4903: 33,-8 - 4904: 34,-8 - 5023: 30,8 - 5024: 31,8 - 5025: 32,8 - 5026: 34,8 - 5027: 35,8 - 5028: 36,8 - 12545: -15,50 - 12546: -16,50 - 12547: -13,50 - 12548: -12,50 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 14790: 21,-10 + 3275: 71,61 + 5527: -44,-4 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2963: 10,-35 - 2964: 9,-35 - 5041: 30,12 - 5042: 31,12 - 5043: 32,12 - 5044: 34,12 - 5045: 35,12 - 5046: 36,12 - 5055: 32,8 - 5056: 33,8 - 5057: 34,8 + 3279: 71,59 + 5525: -44,-6 - node: - zIndex: 5 - color: '#FFFFFFFF' - id: BrickTileDarkLineS + color: '#52B4E996' + id: BrickTileDarkLineW decals: - 14789: 21,-10 + 5612: -34,205 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 4895: 32,-11 - 4896: 32,-10 - 4897: 32,-9 - 5029: 33,9 - 5030: 33,10 - 5031: 33,11 - 5032: 37,9 - 5033: 37,10 - 5034: 37,11 - 12542: -14,51 - 12543: -14,52 - 12544: -14,53 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 14786: 20,-11 - 14787: 20,-10 - 14788: 20,-9 - - node: - color: '#9FED584D' - id: BrickTileSteelCornerNe - decals: - 3059: 35,-46 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerNe - decals: - 5990: 73,-51 - 5991: 80,-51 - - node: - color: '#D4D4D4FF' - id: BrickTileSteelCornerNe - decals: - 9571: -22,-11 - - node: - zIndex: 2 - color: '#D4D4D4FF' - id: BrickTileSteelCornerNe - decals: - 8764: 16,-1 - - node: - zIndex: 3 - color: '#D4D4D4FF' - id: BrickTileSteelCornerNe - decals: - 9476: -39,4 - - node: - zIndex: 5 - color: '#D4D4D4FF' - id: BrickTileSteelCornerNe - decals: - 7970: -54,1 - 10872: 85,-7 - 13991: 40,-9 - 14562: -2,19 - 14587: 14,-3 - 14657: -18,-3 - 14659: -2,-32 - - node: - color: '#DE3A3AFC' - id: BrickTileSteelCornerNe - decals: - 10680: 2,32 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerNe - decals: - 7451: 18,38 - 8201: -20,24 - 8267: 10,24 - 10598: 13,28 - 11133: 10,21 - 12580: 4,39 - 12988: 24,38 - 12994: 25,36 - 15439: -9,36 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerNe - decals: - 3065: 35,-49 - - node: - color: '#9FED584D' - id: BrickTileSteelCornerNw - decals: - 3060: 34,-46 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerNw - decals: - 5992: 79,-51 - 5993: 72,-51 - - node: - zIndex: 1 - color: '#D4D4D4FF' - id: BrickTileSteelCornerNw - decals: - 11223: -6,10 - - node: - zIndex: 5 - color: '#D4D4D4FF' - id: BrickTileSteelCornerNw - decals: - 7969: -79,10 - 10873: 78,-7 - 13982: 38,-9 - 14561: 0,19 - 14581: 16,-15 - 14656: -16,-3 - 14660: 0,-32 - - node: - color: '#DE3A3AFC' - id: BrickTileSteelCornerNw - decals: - 10679: 6,37 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerNw - decals: - 7450: 12,38 - 8271: 8,24 - 8334: -3,32 - 10037: 21,36 - 10597: 12,28 - 12496: -15,36 - 12578: 0,47 - 12579: 2,39 - 12987: 22,38 - 15522: -18,27 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerNw - decals: - 3066: 34,-49 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 15733: 6,-34 - - node: - color: '#9FED584D' - id: BrickTileSteelCornerSe - decals: - 3061: 35,-47 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerSe - decals: - 5986: 80,-54 - - node: - color: '#D4D4D4FF' - id: BrickTileSteelCornerSe - decals: - 9573: -22,-13 - - node: - zIndex: 5 - color: '#D4D4D4FF' - id: BrickTileSteelCornerSe - decals: - 7948: -64,-15 - 7971: -54,-6 - 10871: 85,-15 - 13913: 37,8 - 14584: -2,-1 - 14658: 14,-30 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerSe - decals: - 8186: 10,26 - 8305: 10,23 - 9098: 9,36 - 9423: -57,4 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerSe - decals: - 3064: 35,-50 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 15734: 7,-37 - - node: - color: '#9FED584D' - id: BrickTileSteelCornerSw - decals: - 3062: 34,-47 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerSw - decals: - 5984: 72,-54 - - node: - color: '#D4D4D4FF' - id: BrickTileSteelCornerSw - decals: - 7122: -20,19 - - node: - zIndex: 2 - color: '#D4D4D4FF' - id: BrickTileSteelCornerSw - decals: - 8891: 18,-6 - - node: - zIndex: 5 - color: '#D4D4D4FF' - id: BrickTileSteelCornerSw - decals: - 7952: -77,-15 - 7972: -79,-6 - 13904: 29,8 - 13905: 15,8 - 14582: 16,-13 - 14583: 0,-1 - 14661: -16,-30 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerSw - decals: - 8199: -20,23 - 8272: 8,23 - 10599: 12,25 - 15434: -3,31 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerSw - decals: - 3063: 34,-50 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 15735: 6,-37 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelEndE - decals: - 10596: 14,25 - 10820: 63,-23 - 12526: -5,40 - 12890: 28,44 - 12983: 29,35 - - node: - zIndex: 8 - color: '#DE3A3AFF' - id: BrickTileSteelEndE - decals: - 14840: -21,-31 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelEndN - decals: - 9116: 7,42 - 9117: 9,42 - 13003: 28,38 - - node: - zIndex: 5 - color: '#DE3A3AFF' - id: BrickTileSteelEndN - decals: - 10978: 80,4 - 10979: 80,4 - - node: - zIndex: 6 - color: '#DE3A3AFF' - id: BrickTileSteelEndN - decals: - 11045: 13,23 - - node: - color: '#D381C9FF' - id: BrickTileSteelEndS - decals: - 6009: 73,-58 - - node: - color: '#D4D4D4FF' - id: BrickTileSteelEndS - decals: - 9884: -22,-8 - - node: - zIndex: 1 - color: '#D4D4D4FF' - id: BrickTileSteelEndS - decals: - 11271: -5,14 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelEndS - decals: - 7430: 12,30 - 7431: 18,30 - 12888: 27,40 - - node: - zIndex: 6 - color: '#DE3A3AFF' - id: BrickTileSteelEndS - decals: - 11046: 13,19 - - node: - color: '#D4D4D4FF' - id: BrickTileSteelEndW - decals: - 9569: -25,-11 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelEndW - decals: - 9415: -62,4 - 12891: 26,44 - - node: - color: '#D381C9FF' - id: BrickTileSteelInnerNe - decals: - 5996: 72,-55 - - node: - color: '#D4D4D4FF' - id: BrickTileSteelInnerNe - decals: - 9040: 18,6 - 9395: -16,-20 - 9577: -19,-13 - 9874: -23,-4 - 11536: 16,-13 - 13029: 0,-1 - 13658: 0,-39 - 15807: 9,14 - 15819: -10,20 - 16094: 15,-17 - 16121: -44,-4 - 16394: -31,-1 - - node: - zIndex: 1 - color: '#D4D4D4FF' - id: BrickTileSteelInnerNe - decals: - 8985: 15,-33 - 11227: -5,-1 - 11228: -6,3 - 11261: -15,-1 - 11277: -6,14 - 11278: -6,16 - 11284: 0,12 - 11288: 9,-1 - 11293: 18,-2 - 11301: 67,-13 - 11310: -54,-1 - 11311: -64,1 - 11312: -64,-5 - 14926: -40,3 - 14931: 22,13 - 14957: -1,-53 - - node: - zIndex: 2 - color: '#D4D4D4FF' - id: BrickTileSteelInnerNe - decals: - 8766: 12,-1 - 8814: 9,17 - - node: - zIndex: 3 - color: '#D4D4D4FF' - id: BrickTileSteelInnerNe - decals: - 9480: -40,1 - - node: - zIndex: 4 - color: '#D4D4D4FF' - id: BrickTileSteelInnerNe - decals: - 12139: 85,-10 - - node: - zIndex: 5 - color: '#D4D4D4FF' - id: BrickTileSteelInnerNe - decals: - 7808: -39,-1 - 7810: -46,-1 - 7991: -56,-1 - 7992: -66,8 - 7993: -72,8 - 7994: -79,8 - 8019: 24,-13 - 8020: 22,-13 - 10928: 78,-14 - 10930: 85,-13 - 13897: 37,10 - 13902: 18,13 - 13910: 11,8 - 13998: 39,-10 - 13999: 52,-10 - 14000: 51,-9 - 14001: 53,-13 - 14002: 40,-13 - 14005: 40,-10 - 14431: -16,-30 - 14521: -1,15 - 14522: 0,20 - 14523: -4,20 - 14524: 5,20 - 14525: -1,7 - 14526: -1,-1 - 14527: 3,-2 - 14528: 12,-2 - 14529: 15,-2 - 14530: 15,-5 - 14531: 15,-13 - 14532: 16,-14 - 14533: 25,-14 - 14534: 32,-14 - 14535: 39,-14 - 14536: 47,-14 - 14537: 53,-14 - 14538: 65,-14 - 14539: 75,-14 - 14579: 19,9 - 14640: -1,-43 - 14642: 0,-31 - 14643: 7,-31 - 14644: 15,-26 - 14645: -4,-31 - 14646: -12,-31 - 14647: -17,-23 - 14648: -17,-13 - 14649: -17,-5 - 14650: -16,-2 - 14651: -9,-2 - 14652: -22,-2 - 14653: -29,-2 - 14654: -38,-2 - 14655: -46,-2 - 14662: 23,10 - 14663: 26,10 - 14684: 19,-3 - 14690: 19,5 - 14779: 28,-5 - 14823: -1,-36 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelInnerNe - decals: - 5117: 61,-24 - 5124: 59,-23 - 6431: -2,-67 - 7456: 18,31 - 7459: 15,38 - 8214: -18,20 - 8215: -19,22 - 8240: 4,21 - 8241: 6,21 - 8242: 2,21 - 8293: 1,24 - 8297: 9,24 - 8357: -2,30 - 8358: 1,30 - 8359: 6,30 - 9112: 7,35 - 9114: 7,37 - 9413: -62,3 - 9427: -61,1 - 9428: -59,1 - 10605: 13,25 - 10831: 59,-25 - 10832: 59,-25 - 10833: 60,-27 - 10834: 62,-27 - 11339: 12,31 - 12556: -11,35 - 12614: 3,39 - 12615: 2,36 - 12617: 4,36 - 12889: 26,40 - 12995: 25,35 - 13015: 23,38 - 13019: -16,34 - 15437: -9,35 - 15495: -12,21 - 15496: -1,27 - 15499: -9,27 - 15501: -9,30 - - node: - zIndex: 1 - color: '#DE3A3AFF' - id: BrickTileSteelInnerNe - decals: - 9001: 36,-23 - - node: - zIndex: 3 - color: '#DE3A3AFF' - id: BrickTileSteelInnerNe - decals: - 9436: -63,1 - 9442: -60,3 - - node: - zIndex: 4 - color: '#DE3A3AFF' - id: BrickTileSteelInnerNe - decals: - 8389: -8,21 - 8390: -4,21 - - node: - zIndex: 5 - color: '#DE3A3AFF' - id: BrickTileSteelInnerNe - decals: - 10996: 80,-5 - - node: - zIndex: 6 - color: '#DE3A3AFF' - id: BrickTileSteelInnerNe - decals: - 11050: 10,20 - 11051: 12,19 - 11057: 13,22 - 11058: 13,20 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNe - decals: - 15740: 7,-36 - - node: - color: '#D381C9FF' - id: BrickTileSteelInnerNw - decals: - 5997: 74,-55 - - node: - color: '#D4D4D4FF' - id: BrickTileSteelInnerNw - decals: - 9037: 20,6 - 9574: -21,-13 - 9875: -21,-4 - 10020: -65,-10 - 11535: 14,-30 - 11539: 78,-13 - 15148: 26,20 - 15820: -14,20 - 15824: -8,20 - 16119: -42,-4 - 16120: -30,-4 - 16123: -50,-1 - 16393: -31,-1 - - node: - zIndex: 1 - color: '#D4D4D4FF' - id: BrickTileSteelInnerNw - decals: - 11219: -2,-1 - 11220: -5,-1 - 11221: -2,10 - 11222: -6,9 - 11257: -2,12 - 11260: -15,-1 - 11276: -5,17 - 11289: 8,-1 - 11290: 20,-2 - 11300: 66,-13 - 14925: -45,3 - 14933: 24,13 - 14956: -2,-53 - - node: - zIndex: 2 - color: '#D4D4D4FF' - id: BrickTileSteelInnerNw - decals: - 8765: 12,-1 - 8807: 8,8 - 8808: 8,11 - 8809: 8,14 - 8810: 8,17 - - node: - zIndex: 3 - color: '#D4D4D4FF' - id: BrickTileSteelInnerNw - decals: - 9479: -45,1 - 10417: -18,-30 - - node: - zIndex: 5 - color: '#D4D4D4FF' - id: BrickTileSteelInnerNw - decals: - 7713: -3,-60 - 7714: -2,-48 - 7715: -2,-44 - 7966: -39,-1 - 7967: -46,-1 - 7995: -77,8 - 7996: -70,8 - 8002: -64,10 - 8003: -79,9 - 8017: 22,-13 - 8018: 24,-13 - 10929: 85,-14 - 10935: 78,-9 - 13885: 13,8 - 13887: 29,10 - 13888: 26,10 - 13889: 23,10 - 13890: 10,8 - 13917: 8,5 - 13918: 8,3 - 13992: 38,-10 - 13993: 39,-10 - 13994: 52,-10 - 14003: 38,-13 - 14004: 51,-13 - 14481: 67,-14 - 14482: 57,-14 - 14483: 49,-14 - 14484: 43,-14 - 14485: 34,-14 - 14486: 27,-14 - 14487: 20,-14 - 14488: 15,-13 - 14489: 15,-5 - 14490: 14,-2 - 14497: 16,9 - 14498: 7,-2 - 14499: -1,-1 - 14500: -5,-2 - 14501: -1,7 - 14502: -1,15 - 14503: -2,20 - 14505: 2,20 - 14588: 15,-17 - 14589: 15,-26 - 14590: 11,-31 - 14591: 2,-31 - 14592: -2,-31 - 14593: -8,-31 - 14594: -17,-23 - 14595: -17,-13 - 14596: -17,-5 - 14597: -18,-2 - 14598: -14,-2 - 14599: -27,-2 - 14600: -34,-2 - 14601: -43,-2 - 14602: -51,-2 - 14604: -1,-43 - 14683: 19,-3 - 14689: 19,5 - 14770: 22,-10 - 14776: 23,-6 - 14777: 23,-9 - 14778: 28,-5 - 14822: -1,-36 - - node: - color: '#DE3A3AFC' - id: BrickTileSteelInnerNw - decals: - 10700: 6,36 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelInnerNw - decals: - 4137: 39,-20 - 4532: 41,-20 - 4533: 41,-19 - 6200: -1,-64 - 6428: -2,-67 - 6429: 1,-63 - 7453: 19,34 - 7454: 12,31 - 7458: 15,38 - 8213: -18,20 - 8217: -17,22 - 8244: 6,21 - 8245: 4,21 - 8279: 4,24 - 8291: 1,21 - 8301: 9,24 - 8360: 0,30 - 8361: 3,30 - 8362: 8,30 - 9088: 7,37 - 9113: 9,35 - 9115: 9,37 - 9410: -61,1 - 9411: -60,3 - 9424: -59,1 - 10065: 20,35 - 10069: 21,35 - 10603: 12,27 - 10823: 63,-24 - 10835: 64,-27 - 10836: 62,-27 - 10837: 62,-27 - 11028: 83,-2 - 11029: 83,-4 - 11340: 18,31 - 12522: -10,39 - 12523: -14,35 - 12598: 3,39 - 12599: 0,39 - 12600: 0,36 - 12601: 1,35 - 12602: 0,43 - 12603: 0,46 - 12613: 1,35 - 12616: 4,36 - 12886: 24,40 - 13014: 23,38 - 15487: 2,27 - 15488: -1,27 - 15493: -12,21 - 15498: -10,27 - 15529: -17,26 - - node: - zIndex: 1 - color: '#DE3A3AFF' - id: BrickTileSteelInnerNw - decals: - 9002: 40,-23 - - node: - zIndex: 3 - color: '#DE3A3AFF' - id: BrickTileSteelInnerNw - decals: - 9441: -58,3 - - node: - zIndex: 4 - color: '#DE3A3AFF' - id: BrickTileSteelInnerNw - decals: - 8387: -8,21 - 8388: -4,21 - 9432: -57,1 - - node: - zIndex: 5 - color: '#DE3A3AFF' - id: BrickTileSteelInnerNw - decals: - 10326: -24,-32 - 10991: 80,-5 - 10995: 81,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNw - decals: - 4922: 32,-8 - 15737: 6,-36 - - node: - color: '#D381C9FF' - id: BrickTileSteelInnerSe - decals: - 5999: 78,-52 - - node: - color: '#D4D4D4FF' - id: BrickTileSteelInnerSe - decals: - 7154: 9,19 - 7158: -17,19 - 7159: -19,19 - 9576: -19,-11 - 9993: 9,17 - 11534: 0,-32 - 11537: 16,-15 - 13657: 0,-39 - 15762: -38,-3 - 15806: 9,14 - 15822: -10,20 - - node: - zIndex: 1 - color: '#D4D4D4FF' - id: BrickTileSteelInnerSe - decals: - 8986: 12,-32 - 8988: -16,-20 - 11230: -6,5 - 11255: -5,19 - 11256: -5,9 - 11279: -6,16 - 11282: 0,19 - 11283: 0,12 - 11292: 18,0 - 11299: 49,-15 - 11303: 76,-15 - 11309: -54,-3 - 11313: -64,0 - 11314: -64,-6 - 14927: -40,3 - 14955: -1,-57 - - node: - zIndex: 3 - color: '#D4D4D4FF' - id: BrickTileSteelInnerSe - decals: - 10420: -18,-32 - - node: - zIndex: 4 - color: '#D4D4D4FF' - id: BrickTileSteelInnerSe - decals: - 12135: 85,-10 - - node: - zIndex: 5 - color: '#D4D4D4FF' - id: BrickTileSteelInnerSe - decals: - 7951: -69,-15 - 7973: -56,-4 - 7974: -51,-3 - 7976: -34,-3 - 7999: -79,-4 - 8000: -72,-4 - 8001: -66,-4 - 10924: 78,-8 - 10925: 79,-6 - 10933: 85,-13 - 13894: 37,10 - 13895: 18,15 - 13896: 18,8 - 13900: 20,9 - 13901: 18,11 - 13912: 37,12 - 13984: 39,-11 - 13986: 52,-11 - 13989: 53,-10 - 13990: 40,-10 - 14540: 75,-14 - 14541: 65,-14 - 14542: 53,-14 - 14543: 47,-14 - 14544: 39,-14 - 14545: 32,-14 - 14546: 25,-14 - 14547: 16,-14 - 14548: 15,-15 - 14549: 15,-9 - 14550: 15,-3 - 14551: 12,-2 - 14552: 3,-2 - 14553: -1,1 - 14554: -1,9 - 14555: -1,19 - 14556: -4,20 - 14557: 5,20 - 14580: 19,9 - 14586: 0,20 - 14622: -17,-3 - 14623: -16,-2 - 14624: -9,-2 - 14625: -22,-2 - 14626: -29,-2 - 14627: -38,-2 - 14628: -46,-2 - 14629: -17,-11 - 14630: -17,-19 - 14631: -12,-31 - 14632: -4,-31 - 14633: 0,-31 - 14634: -1,-32 - 14635: 7,-31 - 14636: 15,-31 - 14637: 15,-22 - 14638: -1,-41 - 14639: -1,-49 - 14686: 19,-5 - 14687: 19,1 - 14780: 22,-11 - 14782: 24,-11 - - node: - color: '#DE3A3AFC' - id: BrickTileSteelInnerSe - decals: - 10694: -1,33 - 10695: -1,33 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelInnerSe - decals: - 4122: 37,-22 - 5119: 61,-22 - 5120: 59,-23 - 6433: -2,-60 - 7024: 38,-15 - 7457: 18,31 - 8152: 6,28 - 8253: 4,26 - 8254: 6,26 - 8255: 1,26 - 8256: 9,26 - 8289: 2,23 - 8348: 7,32 - 8349: 7,32 - 8611: -13,43 - 8612: -11,43 - 9241: 10,27 - 9271: 15,40 - 9422: -58,5 - 10838: 59,-21 - 10858: 62,-20 - 11338: 12,34 - 11341: 12,31 - 12557: -12,37 - 12609: 0,45 - 12610: 2,39 - 12611: 1,37 - 12884: 26,42 - 12893: 27,44 - 13001: 21,37 - 13002: 27,36 - 13018: -16,36 - 15436: -9,35 - 15494: -19,24 - 15502: -9,30 - - node: - zIndex: 5 - color: '#DE3A3AFF' - id: BrickTileSteelInnerSe - decals: - 7463: 36,-15 - - node: - zIndex: 6 - color: '#DE3A3AFF' - id: BrickTileSteelInnerSe - decals: - 11049: 10,20 - 11052: 12,21 - 11059: 13,22 - 11060: 13,20 - - node: - zIndex: 8 - color: '#DE3A3AFF' - id: BrickTileSteelInnerSe - decals: - 14839: -23,-30 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSe - decals: - 15741: 7,-36 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: BrickTileSteelInnerSe - decals: - 11763: 61,-30 - - node: - color: '#D381C9FF' - id: BrickTileSteelInnerSw - decals: - 5998: 74,-52 - - node: - color: '#D4D4D4FF' - id: BrickTileSteelInnerSw - decals: - 7108: 8,19 - 7160: -19,19 - 7161: -20,20 - 7162: -17,19 - 9575: -21,-11 - 10019: -65,-10 - 11533: -2,-32 - 14831: 15,-3 - 14833: 22,9 - 15153: 26,20 - 15761: -38,-3 - 15821: -14,20 - 15823: -8,20 - 16122: -49,0 - 16126: -31,-3 - - node: - zIndex: 1 - color: '#D4D4D4FF' - id: BrickTileSteelInnerSw - decals: - 11225: -2,12 - 11226: -5,19 - 11252: -2,9 - 11253: -5,9 - 11254: -2,19 - 11291: 20,0 - 11298: 49,-15 - 11304: 76,-15 - 11308: -18,-3 - 14924: -45,3 - 14954: -2,-57 - - node: - zIndex: 2 - color: '#D4D4D4FF' - id: BrickTileSteelInnerSw - decals: - 8804: 8,14 - 8805: 8,11 - 8806: 8,8 - 8813: 8,17 - 8892: 21,-4 - - node: - zIndex: 3 - color: '#D4D4D4FF' - id: BrickTileSteelInnerSw - decals: - 9477: -45,5 - 10419: -18,-32 - - node: - zIndex: 5 - color: '#D4D4D4FF' - id: BrickTileSteelInnerSw - decals: - 7716: -2,-48 - 7717: -2,-44 - 7949: -69,-15 - 7950: -76,-15 - 7953: -77,-14 - 7997: -77,-4 - 7998: -70,-4 - 8004: -79,-5 - 8007: -51,-3 - 8009: -34,-3 - 8014: 12,-32 - 10926: 81,-6 - 10927: 85,-8 - 10938: 78,-10 - 13891: 10,11 - 13892: 20,11 - 13893: 29,9 - 13899: 15,9 - 13907: 20,8 - 13908: 18,8 - 13911: 29,12 - 13919: 8,3 - 13920: 8,5 - 13995: 39,-11 - 13996: 38,-10 - 13997: 52,-11 - 14558: -1,19 - 14560: 2,20 - 14563: -1,9 - 14564: -1,1 - 14565: -5,-2 - 14566: 7,-2 - 14567: 14,-2 - 14568: 15,-9 - 14569: 15,-15 - 14570: 15,-22 - 14571: 20,-14 - 14572: 27,-14 - 14573: 34,-14 - 14574: 43,-14 - 14575: 49,-14 - 14576: 57,-14 - 14577: 67,-14 - 14578: 16,9 - 14585: -2,20 - 14605: -1,-49 - 14606: -1,-41 - 14607: -2,-31 - 14608: 2,-31 - 14609: -1,-32 - 14610: 11,-31 - 14611: -8,-31 - 14612: -17,-31 - 14613: -17,-19 - 14614: -17,-11 - 14615: -17,-3 - 14616: -18,-2 - 14617: -27,-2 - 14618: -34,-2 - 14619: -43,-2 - 14620: -51,-2 - 14621: -14,-2 - 14685: 19,-5 - 14688: 19,1 - 14771: 22,-10 - 14772: 22,-6 - 14773: 23,-7 - 14774: 23,-10 - 14775: 24,-11 - - node: - color: '#DE3A3AFC' - id: BrickTileSteelInnerSw - decals: - 10692: 1,33 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelInnerSw - decals: - 4123: 39,-22 - 4136: 39,-18 - 4530: 41,-18 - 4531: 41,-19 - 6199: -1,-62 - 6432: 1,-63 - 6434: -2,-60 - 7021: 38,-15 - 7452: 19,36 - 7455: 12,31 - 8146: 8,28 - 8147: 3,28 - 8205: -19,24 - 8206: -20,24 - 8246: 1,26 - 8247: 4,26 - 8248: 6,26 - 8252: 9,26 - 8280: 4,23 - 8355: 3,32 - 8356: 9,32 - 8609: -11,43 - 8610: -9,43 - 9270: 15,40 - 10604: 12,27 - 10822: 63,-22 - 10859: 62,-20 - 11030: 83,-2 - 11031: 83,0 - 11337: 18,34 - 11342: 18,31 - 12524: -10,41 - 12555: -10,37 - 12604: 4,39 - 12605: 0,36 - 12606: 0,39 - 12607: 0,43 - 12608: 0,46 - 12612: 1,37 - 12885: 24,42 - 12892: 27,44 - 13004: 25,37 - 13005: 29,36 - 15492: -17,24 - 15530: -15,27 - - node: - zIndex: 5 - color: '#DE3A3AFF' - id: BrickTileSteelInnerSw - decals: - 7462: 40,-15 - 10325: -24,-30 - 10994: 81,-1 - - node: - zIndex: 8 - color: '#DE3A3AFF' - id: BrickTileSteelInnerSw - decals: - 14843: -21,-30 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSw - decals: - 2438: 46,-53 - 15736: 6,-36 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineE - decals: - 5965: 73,-52 - 5972: 80,-52 - 5973: 80,-53 - 5987: 73,-55 - 6005: 73,-57 - 6006: 73,-56 - - node: - color: '#D4D4D4FF' - id: BrickTileSteelLineE - decals: - 7084: 0,2 - 7085: 0,3 - 7086: 0,4 - 7087: 0,5 - 7088: 0,6 - 7089: 0,7 - 7090: 0,8 - 7091: 0,9 - 7094: 0,13 - 7095: 0,14 - 7096: 0,15 - 7097: 0,16 - 7098: 0,18 - 7099: 0,18 - 7100: 0,17 - 7173: -16,-17 - 7174: -16,-18 - 7175: -16,-11 - 7216: -16,-21 - 7217: -16,-19 - 7304: 16,-26 - 7305: 16,-25 - 7306: 16,-25 - 7307: 16,-24 - 7308: 16,-23 - 7309: 16,-22 - 7310: 16,-21 - 7311: 16,-20 - 7312: 16,-19 - 7313: 16,-19 - 7314: 16,-18 - 7315: 16,-17 - 7316: 16,-16 - 9041: 18,7 - 9555: 0,-34 - 9880: -22,-4 - 9881: -22,-5 - 9882: -22,-6 - 9883: -22,-7 - 11361: 76,-16 - 13027: 0,0 - 13028: 0,1 - 13656: 0,-40 - 13721: 9,12 - 13722: 9,11 - 13723: 9,8 - 13727: 12,1 - 13728: 12,2 - 13729: 12,3 - 13730: 12,4 - 13731: 12,5 - 13732: 12,6 - 13733: 12,0 - 13734: 12,7 - 13735: 12,8 - 15117: 26,22 - 15118: 26,21 - 15120: 26,19 - 15121: 26,18 - 15122: 26,17 - 15123: 26,16 - 15149: 26,20 - 15159: 19,13 - 15160: 19,14 - 15161: 19,15 - 15802: -64,-11 - 15804: 9,16 - 15813: -15,20 - 15814: -9,20 - 16116: -31,-4 - 16117: -50,0 - 16118: -43,-4 - - node: - zIndex: 1 - color: '#D4D4D4FF' - id: BrickTileSteelLineE - decals: - 8983: 16,-33 - 8984: 16,-32 - 8991: -16,-22 - 8992: -16,-29 - 11235: -5,8 - 11236: -5,7 - 11237: -5,6 - 11238: -5,5 - 11239: -5,4 - 11240: -5,3 - 11241: -5,2 - 11243: -5,1 - 11245: -5,0 - 11259: -15,0 - 11267: -5,18 - 11268: -5,17 - 11269: -5,16 - 11270: -5,15 - 11280: 0,10 - 11281: 0,11 - 11295: 18,-1 - 14922: -46,3 - 14934: 23,13 - 14935: 23,12 - 14936: 23,11 - 14944: -3,-57 - 14946: -3,-56 - 14947: -3,-55 - 14948: -3,-54 - 14949: -3,-53 - - node: - zIndex: 2 - color: '#D4D4D4FF' - id: BrickTileSteelLineE - decals: - 8776: 9,0 - 8777: 9,1 - 8778: 9,2 - 8779: 9,3 - 8780: 9,4 - 8781: 9,5 - 8782: 9,6 - 8783: 9,7 - 8832: 9,18 - 8876: 20,-2 - 8877: 20,-1 - 8878: 20,0 - 8884: 20,6 - 8885: 20,7 - 8898: 22,-12 - 8899: 24,-12 - - node: - zIndex: 3 - color: '#D4D4D4FF' - id: BrickTileSteelLineE - decals: - 9445: -39,0 - 9446: -39,2 - 9447: -39,1 - 9448: -39,3 - 9459: -46,0 - 9460: -46,1 - 9462: -46,5 - - node: - zIndex: 4 - color: '#D4D4D4FF' - id: BrickTileSteelLineE - decals: - 7538: 9,15 - 7540: 9,13 - 7596: 16,-12 - 7597: 16,-11 - 7598: 16,-10 - 7599: 16,-9 - 7600: 16,-8 - 7601: 16,-7 - 7602: 16,-6 - 7603: 16,-5 - 7604: 16,-4 - 7605: 16,-3 - 7606: 16,-2 - 7608: 16,-30 - 7609: 16,-31 - 7658: 0,-38 - 7659: 0,-37 - 7660: 0,-36 - 7663: 0,-33 - 7664: 0,-51 - 7665: 0,-52 - 7666: 0,-53 - 7667: 0,-54 - 7668: 0,-55 - 7669: -1,-60 - 7670: -1,-59 - 12138: 85,-9 - - node: - zIndex: 5 - color: '#D4D4D4FF' - id: BrickTileSteelLineE - decals: - 7770: -54,-5 - 7771: -54,-4 - 7772: -54,0 - 7812: -64,2 - 7813: -64,3 - 7814: -64,4 - 7815: -64,5 - 7816: -64,6 - 7817: -64,6 - 7818: -64,8 - 7819: -64,9 - 7820: -64,10 - 7821: -64,7 - 7822: -64,-4 - 7823: -64,-3 - 7824: -64,-2 - 7825: -64,-1 - 7827: -64,-14 - 7828: -64,-13 - 7829: -64,-12 - 7831: -64,-10 - 7832: -64,-9 - 7833: -64,-8 - 7834: -64,-7 - 7958: -78,8 - 7959: -71,8 - 7960: -71,-4 - 7961: -78,-4 - 10889: 85,-14 - 10890: 85,-12 - 10891: 85,-11 - 10893: 85,-8 - 10894: 78,-13 - 10895: 78,-12 - 10896: 78,-11 - 10897: 78,-10 - 10898: 78,-9 - 10916: 80,-6 - 10917: 80,-5 - 13864: 26,12 - 13865: 26,13 - 13866: 26,14 - 13867: 26,15 - 13872: 26,11 - 13873: 37,9 - 13874: 37,11 - 13878: 19,11 - 13880: 19,13 - 13881: 19,14 - 13883: 19,15 - 13909: 20,8 - 13937: 18,1 - 13938: 18,2 - 13939: 18,3 - 13940: 18,4 - 13941: 18,5 - 13942: 20,5 - 13943: 20,4 - 13944: 20,3 - 13945: 20,2 - 13946: 20,1 - 13968: 40,-12 - 13969: 40,-11 - 13970: 53,-12 - 13971: 53,-11 - 13978: 51,-11 - 13979: 51,-10 - 13980: 38,-11 - 13981: 38,-10 - 14293: -2,-49 - 14294: -2,-48 - 14295: -2,-47 - 14296: -2,-46 - 14297: -2,-45 - 14298: -2,-44 - 14299: -2,-43 - 14300: -2,-41 - 14301: -2,-40 - 14303: -2,-38 - 14304: -2,-37 - 14305: -2,-36 - 14307: -3,-31 - 14308: -9,-31 - 14309: -18,-31 - 14310: -18,-30 - 14311: -18,-29 - 14312: -18,-28 - 14313: -18,-27 - 14314: -18,-26 - 14315: -18,-25 - 14316: -18,-24 - 14317: -18,-23 - 14330: -18,-15 - 14331: -18,-13 - 14332: -18,-14 - 14333: -18,-11 - 14334: -18,-10 - 14335: -18,-9 - 14336: -18,-8 - 14337: -18,-7 - 14338: -18,-6 - 14339: -18,-5 - 14340: -19,-2 - 14341: -28,-2 - 14342: -35,-2 - 14343: -44,-2 - 14344: -52,-2 - 14345: -15,-2 - 14346: -6,-2 - 14347: 6,-2 - 14348: -2,1 - 14349: -2,2 - 14350: -2,3 - 14351: -2,4 - 14352: -2,5 - 14353: -2,6 - 14354: -2,7 - 14355: -2,9 - 14356: -2,10 - 14357: -2,11 - 14358: -2,12 - 14359: -2,13 - 14360: -2,14 - 14361: -2,15 - 14362: -3,20 - 14364: 1,20 - 14365: 15,9 - 14366: 19,-14 - 14367: 26,-14 - 14368: 33,-14 - 14369: 42,-14 - 14370: 48,-14 - 14371: 56,-14 - 14372: 66,-14 - 14452: 14,-5 - 14453: 14,-6 - 14454: 14,-7 - 14455: 14,-8 - 14456: 14,-9 - 14457: 14,-13 - 14458: 14,-14 - 14459: 14,-15 - 14460: 14,-17 - 14461: 14,-18 - 14462: 14,-19 - 14463: 14,-20 - 14464: 14,-21 - 14465: 14,-22 - 14466: 14,-26 - 14467: 14,-27 - 14468: 14,-28 - 14469: 14,-29 - 14470: 10,-31 - 14471: 1,-31 - 14491: 13,-2 - 14680: 18,-5 - 14681: 18,-4 - 14682: 18,-3 - 14742: 22,-9 - 14743: 22,-7 - 14744: 22,-6 - 14762: 20,-4 - 14763: 20,-3 - 14769: 22,-10 - 14824: 0,-35 - 14825: -2,-39 - - node: - color: '#DE3A3AFC' - id: BrickTileSteelLineE - decals: - 10652: 0,33 - 10653: 0,33 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineE - decals: - 4118: 38,-22 - 4130: 38,-20 - 4131: 38,-18 - 4132: 38,-17 - 4133: 38,-16 - 4154: 38,-21 - 5064: 62,-21 - 5065: 62,-22 - 5107: 62,-24 - 6192: -2,-65 - 6193: -2,-64 - 6194: -2,-62 - 6195: -2,-61 - 6196: -2,-61 - 7412: 12,32 - 7413: 12,33 - 7438: 18,32 - 7439: 18,33 - 7440: 18,34 - 7442: 18,36 - 7443: 18,37 - 8089: 2,28 - 8090: 7,28 - 8107: -1,28 - 8116: 9,25 - 8155: 1,25 - 8209: -18,22 - 8210: -18,21 - 8230: 6,24 - 8231: 6,23 - 8232: 4,25 - 8233: 6,25 - 8234: 4,22 - 8235: 6,22 - 8277: 4,24 - 8278: 4,23 - 8287: 2,22 - 8335: -1,30 - 8336: -1,29 - 8337: 2,30 - 8338: 2,29 - 8339: 7,30 - 8340: 8,32 - 8341: 8,33 - 8346: 7,29 - 8570: -11,37 - 8583: -11,42 - 8591: -11,38 - 8603: -11,39 - 8605: -11,41 - 9099: 9,37 - 9100: 7,38 - 9101: 7,39 - 9102: 7,40 - 9103: 7,41 - 9104: 9,38 - 9105: 9,39 - 9106: 9,40 - 9107: 9,41 - 9108: 8,35 - 9109: 8,34 - 9268: 15,39 - 9418: -61,2 - 9419: -61,3 - 9420: -57,5 - 10070: 23,40 - 10072: 23,42 - 10073: 23,43 - 10074: 23,44 - 10075: 23,45 - 10076: 23,47 - 10077: 23,48 - 10078: 23,48 - 10309: -25,-33 - 10310: -25,-32 - 10311: -25,-30 - 10312: -25,-29 - 10594: 13,26 - 10595: 13,27 - 10827: 62,-25 - 10828: 62,-26 - 10839: 59,-22 - 10840: 59,-22 - 10841: 59,-24 - 12513: -9,28 - 12514: -9,29 - 12516: -9,31 - 12517: -9,32 - 12518: -9,32 - 12519: -9,33 - 12520: -9,34 - 12569: 0,37 - 12570: 0,38 - 12571: 0,39 - 12572: 0,40 - 12573: 0,41 - 12574: 0,41 - 12575: 0,42 - 12576: 0,43 - 12577: 0,44 - 12591: 4,37 - 12592: 4,38 - 12593: 2,37 - 12594: 2,38 - 12618: 0,35 - 12649: 2,40 - 12650: 2,41 - 12651: 2,42 - 12652: 2,43 - 12870: 27,42 - 12871: 27,43 - 12873: 23,46 - 12887: 27,41 - 12981: 28,36 - 12982: 28,37 - 12992: 24,37 - 12993: 23,39 - 13653: -15,35 - 15526: -18,24 - 15527: -18,25 - 15528: -18,26 - - node: - zIndex: 3 - color: '#DE3A3AFF' - id: BrickTileSteelLineE - decals: - 9439: -59,2 - 9440: -59,3 - - node: - zIndex: 5 - color: '#DE3A3AFF' - id: BrickTileSteelLineE - decals: - 10980: 80,3 - 10981: 80,2 - 10982: 80,1 - 10983: 80,0 - 10984: 80,-1 - 10985: 80,-3 - 10986: 80,-4 - 11079: -15,34 - - node: - zIndex: 6 - color: '#DE3A3AFF' - id: BrickTileSteelLineE - decals: - 11043: 10,19 - 11044: 13,21 - - node: - zIndex: 8 - color: '#DE3A3AFF' - id: BrickTileSteelLineE - decals: - 14842: -22,-30 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 4912: 31,-8 - 4913: 31,-9 - 4914: 31,-10 - 4915: 31,-11 - 15739: 7,-35 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineN - decals: - 5966: 74,-53 - 5967: 75,-53 - 5968: 76,-53 - 5969: 77,-53 - 5970: 78,-53 - - node: - color: '#D4D4D4FF' - id: BrickTileSteelLineN - decals: - 7035: 15,-1 - 7036: 14,-1 - 7037: 13,-1 - 7038: 11,-1 - 7040: 10,-1 - 7041: 6,-1 - 7042: 7,-1 - 7044: 4,-1 - 7045: 3,-1 - 7046: 2,-1 - 7047: 2,-1 - 7071: -3,-1 - 7072: -4,-1 - 7074: -6,-1 - 7075: -7,-1 - 7076: -8,-1 - 7077: -9,-1 - 7123: -20,20 - 7126: -16,20 - 7218: -15,-30 - 7219: -14,-30 - 7220: -13,-30 - 7221: -12,-30 - 7222: -11,-30 - 7223: -10,-30 - 7236: 5,-30 - 9556: -19,-12 - 9557: -20,-12 - 9558: -21,-12 - 9559: -23,-11 - 9560: -24,-11 - 9561: -25,-13 - 13654: 1,-1 - 13655: 5,-1 - 15144: 23,20 - 15145: 24,20 - 15146: 24,20 - 15147: 25,20 - 15749: 5,-32 - 15756: -47,-3 - 15758: -42,-3 - 15759: -41,-3 - 15760: -38,-3 - 15815: -14,19 - 15816: -13,19 - 15817: -12,19 - 15818: -11,19 - 16106: -48,-3 - 16107: -43,-3 - 16125: -31,-3 - 16388: -32,-1 - 16389: -26,-1 - - node: - zIndex: 1 - color: '#D4D4D4FF' - id: BrickTileSteelLineN - decals: - 9434: -57,1 - 9435: -63,1 - 11187: -19,-1 - 11188: -17,-1 - 11189: -16,-1 - 11191: -14,-1 - 11192: -13,-1 - 11193: -12,-1 - 11194: -11,-1 - 11195: -10,-1 - 11196: -3,10 - 11197: -4,10 - 11198: -5,10 - 11242: -7,4 - 11244: -6,4 - 11274: -6,15 - 11275: -6,17 - 14952: -2,-58 - 14953: -1,-58 - - node: - zIndex: 2 - color: '#D4D4D4FF' - id: BrickTileSteelLineN - decals: - 8753: 9,-30 - 8755: 13,-30 - 8873: 21,-5 - - node: - zIndex: 3 - color: '#D4D4D4FF' - id: BrickTileSteelLineN - decals: - 9463: -45,4 - 9464: -44,4 - 9465: -43,4 - 9466: -42,4 - 9467: -41,4 - 9468: -40,4 - - node: - zIndex: 4 - color: '#D4D4D4FF' - id: BrickTileSteelLineN - decals: - 7541: 19,-13 - 7542: 20,-13 - 7543: 21,-13 - 7544: 18,-13 - 7545: 17,-13 - 7546: 23,-13 - 7547: 25,-13 - 7548: 26,-13 - 7549: 27,-13 - 7550: 28,-13 - 7551: 29,-13 - 7552: 30,-13 - 7553: 31,-13 - 7554: 32,-13 - 7555: 33,-13 - 7556: 34,-13 - 7557: 35,-13 - 7558: 36,-13 - 7559: 37,-13 - 7563: 41,-13 - 7564: 42,-13 - 7565: 43,-13 - 7566: 44,-13 - 7567: 44,-13 - 7568: 45,-13 - 7569: 46,-13 - 7570: 47,-13 - 7571: 48,-13 - 7572: 49,-13 - 7573: 50,-13 - 7577: 54,-13 - 7578: 55,-13 - 7579: 56,-13 - 7580: 57,-13 - 7581: 58,-13 - 7582: 59,-13 - 7583: 60,-13 - 7584: 61,-13 - 7585: 62,-13 - 7586: 63,-13 - 7587: 64,-13 - 7588: 65,-13 - 7591: 68,-13 - 7592: 69,-13 - 7593: 70,-13 - 7594: 71,-13 - 7655: -3,-52 - - node: - zIndex: 5 - color: '#D4D4D4FF' - id: BrickTileSteelLineN - decals: - 7726: -18,-1 - 7733: -25,-1 - 7735: -28,-1 - 7736: -29,-1 - 7737: -30,-1 - 7740: -33,-1 - 7741: -35,-1 - 7742: -34,-1 - 7743: -37,-1 - 7744: -38,-1 - 7745: -40,-1 - 7746: -41,-1 - 7747: -42,-1 - 7748: -43,-1 - 7749: -44,-1 - 7750: -45,-1 - 7751: -47,-1 - 7752: -48,-1 - 7753: -49,-1 - 7754: -51,-1 - 7755: -52,-1 - 7756: -53,-1 - 7757: -55,1 - 7758: -56,1 - 7835: -65,10 - 7837: -69,10 - 7838: -70,10 - 7839: -71,10 - 7840: -72,10 - 7841: -73,10 - 7842: -74,10 - 7843: -75,10 - 7844: -77,10 - 7845: -78,10 - 7846: -76,10 - 7874: -66,-5 - 7875: -67,-5 - 7876: -68,-5 - 7877: -69,-5 - 7878: -70,-5 - 7879: -72,-5 - 7880: -73,-5 - 7881: -74,-5 - 7882: -75,-5 - 7883: -76,-5 - 7884: -77,-5 - 7885: -79,-5 - 7911: -63,-5 - 7912: -62,-5 - 7913: -61,-5 - 7914: -61,-5 - 7915: -60,-5 - 7916: -59,-5 - 7917: -58,-5 - 7918: -57,-5 - 7919: -56,-5 - 7926: -67,-14 - 7927: -66,-14 - 7928: -68,-14 - 7929: -69,-14 - 7930: -70,-14 - 7931: -71,-14 - 7932: -73,-14 - 7933: -72,-14 - 7934: -74,-14 - 7935: -75,-14 - 7936: -76,-14 - 7937: -77,-14 - 7962: -36,-1 - 10879: 72,-13 - 10880: 73,-13 - 10881: 74,-13 - 10882: 75,-13 - 10883: 77,-13 - 10884: 76,-13 - 10885: 79,-7 - 10886: 81,-7 - 10887: 82,-7 - 10905: 79,-14 - 10906: 79,-14 - 10907: 80,-14 - 10908: 80,-14 - 10909: 81,-14 - 10910: 82,-14 - 10911: 83,-14 - 10912: 84,-14 - 10913: 84,-14 - 13804: 10,10 - 13805: 11,10 - 13808: 12,10 - 13809: 13,10 - 13810: 14,10 - 13811: 15,10 - 13813: 17,10 - 13814: 18,10 - 13815: 18,14 - 13816: 17,14 - 13817: 16,14 - 13819: 15,14 - 13857: 27,10 - 13858: 28,10 - 13859: 25,10 - 13860: 24,10 - 13861: 22,10 - 13863: 20,10 - 13884: 16,10 - 13916: 21,10 - 13949: 19,0 - 13950: 19,6 - 13951: 19,8 - 13952: 17,8 - 13953: 16,8 - 13954: 18,8 - 13955: 39,-12 - 13957: 39,-9 - 13958: 52,-12 - 13967: 52,-9 - 13983: 53,-9 - 14043: -27,-1 - 14062: -45,2 - 14063: -44,2 - 14064: -43,2 - 14065: -42,2 - 14066: -41,2 - 14067: -40,2 - 14068: -51,-3 - 14069: -50,-3 - 14070: -49,-3 - 14073: -46,-3 - 14077: -40,-3 - 14078: -39,-3 - 14080: -34,-3 - 14081: -33,-3 - 14083: -30,-3 - 14084: -29,-3 - 14085: -32,-3 - 14086: -27,-3 - 14087: -26,-3 - 14088: -25,-3 - 14089: -24,-3 - 14090: -23,-3 - 14091: -22,-3 - 14092: -17,-4 - 14093: -14,-3 - 14094: -13,-3 - 14095: -12,-3 - 14096: -11,-3 - 14097: -10,-3 - 14098: -9,-3 - 14099: -5,-3 - 14100: -4,-3 - 14101: -3,-3 - 14102: -1,-3 - 14103: 0,-3 - 14104: 1,-3 - 14105: 2,-3 - 14106: 3,-3 - 14107: -2,-3 - 14108: -1,0 - 14109: -1,8 - 14110: -1,18 - 14111: -4,19 - 14112: -5,19 - 14113: -5,19 - 14114: -6,19 - 14115: -7,19 - 14116: -8,19 - 14118: -10,19 - 14119: 2,19 - 14120: 3,19 - 14121: 4,19 - 14122: 5,19 - 14123: 15,-16 - 14124: 15,-10 - 14125: 15,-4 - 14126: 12,-3 - 14127: 11,-3 - 14128: 10,-3 - 14129: 9,-3 - 14130: 8,-3 - 14131: 7,-3 - 14132: 20,-15 - 14133: 21,-15 - 14134: 22,-15 - 14135: 23,-15 - 14136: 24,-15 - 14137: 25,-15 - 14138: 27,-15 - 14139: 28,-15 - 14140: 29,-15 - 14141: 30,-15 - 14142: 31,-15 - 14143: 32,-15 - 14144: 34,-15 - 14145: 35,-15 - 14146: 36,-15 - 14147: 37,-15 - 14148: 38,-15 - 14149: 39,-15 - 14150: 43,-15 - 14151: 44,-15 - 14152: 45,-15 - 14153: 46,-15 - 14154: 47,-15 - 14155: 49,-15 - 14156: 50,-15 - 14157: 51,-15 - 14158: 52,-15 - 14159: 53,-15 - 14160: 57,-15 - 14161: 58,-15 - 14162: 59,-15 - 14163: 60,-15 - 14164: 61,-15 - 14165: 62,-15 - 14166: 63,-15 - 14167: 64,-15 - 14168: 65,-15 - 14169: 67,-15 - 14170: 68,-15 - 14171: 69,-15 - 14172: 70,-15 - 14173: 71,-15 - 14174: 73,-15 - 14175: 74,-15 - 14176: 75,-15 - 14177: 73,-15 - 14178: 72,-15 - 14179: 15,-23 - 14180: 15,-32 - 14181: 14,-32 - 14182: 13,-32 - 14183: 12,-32 - 14184: 11,-32 - 14185: -16,-32 - 14186: -17,-32 - 14187: -15,-32 - 14188: -14,-32 - 14189: -13,-32 - 14190: -12,-32 - 14191: -17,-20 - 14192: -17,-12 - 14193: -8,-32 - 14194: -7,-32 - 14195: -6,-32 - 14196: -5,-32 - 14197: -4,-32 - 14198: -1,-33 - 14199: 2,-32 - 14200: 3,-32 - 14201: 4,-32 - 14203: 6,-32 - 14204: 7,-32 - 14205: -1,-42 - 14206: -1,-50 - 14678: 19,-6 - 14679: 19,-2 - 14745: 23,-11 - 14746: 24,-11 - 14748: 26,-11 - 14749: 27,-11 - 14750: 28,-11 - 14751: 28,-8 - 14752: 27,-8 - 14753: 26,-8 - 14754: 25,-8 - 14755: 23,-8 - 14756: 27,-5 - 14757: 26,-5 - 14758: 25,-5 - 14759: 24,-5 - 14760: 22,-5 - 14761: 23,-5 - 14784: 25,-11 - 14785: 24,-8 - - node: - color: '#DE3A3AFC' - id: BrickTileSteelLineN - decals: - 10637: 1,32 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineN - decals: - 4120: 37,-23 - 4121: 39,-23 - 4135: 39,-19 - 4534: 40,-19 - 5104: 61,-23 - 5106: 60,-23 - 6197: -1,-63 - 7425: 13,31 - 7426: 14,31 - 7427: 15,31 - 7428: 16,31 - 7429: 17,31 - 7445: 19,35 - 7446: 17,38 - 7447: 16,38 - 7448: 14,38 - 7449: 13,38 - 8048: -2,27 - 8056: 9,27 - 8057: 10,27 - 8157: 0,27 - 8158: 1,27 - 8159: 3,27 - 8160: 4,27 - 8161: 5,27 - 8162: 6,27 - 8163: 8,27 - 8164: -3,27 - 8165: -4,27 - 8166: -7,27 - 8202: -19,23 - 8204: -17,23 - 8211: -19,20 - 8212: -17,20 - 8236: 5,21 - 8237: 7,21 - 8238: 3,21 - 8284: 0,21 - 8285: 2,24 - 8286: 3,24 - 8313: -1,32 - 8314: -2,32 - 8315: 4,31 - 8316: 5,31 - 8317: 6,31 - 8318: 7,31 - 8319: 9,31 - 8320: 10,31 - 8321: 11,31 - 8354: 3,31 - 8375: -10,21 - 8377: -7,21 - 8378: -6,21 - 8379: -5,21 - 8380: -3,21 - 8381: -2,21 - 8382: -1,21 - 9084: 8,37 - 9402: -61,4 - 9403: -60,4 - 9405: -58,4 - 9406: -58,1 - 9408: -60,1 - 9409: -62,1 - 9591: -24,-31 - 9592: -23,-31 - 10068: 20,35 - 10602: 11,27 - 10842: 61,-27 - 10843: 63,-27 - 11131: 8,21 - 11132: 9,21 - 12497: -14,36 - 12498: -13,36 - 12499: -12,36 - 12500: -10,36 - 12506: -10,40 - 12507: -9,40 - 12508: -8,40 - 12509: -7,40 - 12510: -6,40 - 12511: -8,27 - 12527: -5,27 - 12581: 1,36 - 12587: 3,36 - 12619: 5,36 - 12620: -1,35 - 12621: -2,35 - 12622: -3,35 - 12633: -3,45 - 12634: -2,45 - 12635: -1,45 - 12636: -1,42 - 12637: -2,42 - 12638: -3,42 - 12639: -3,38 - 12640: -2,38 - 12641: -1,38 - 12874: 24,41 - 12875: 25,41 - 12876: 26,41 - 12894: 27,44 - 12985: 27,35 - 13017: -16,35 - 15486: -11,21 - 15489: -13,21 - 15490: -14,21 - 15491: -15,21 - 15497: -6,27 - 15504: -7,35 - 15505: -6,35 - 15506: -5,35 - 15507: -8,30 - 15508: -7,30 - 15509: -6,30 - 15510: -5,30 - 15523: -17,27 - 15524: -16,27 - 15525: -15,27 - 15532: -11,27 - 15544: -8,35 - 15732: 26,35 - 15825: -9,21 - - node: - zIndex: 3 - color: '#DE3A3AFF' - id: BrickTileSteelLineN - decals: - 9443: -59,4 - - node: - zIndex: 5 - color: '#DE3A3AFF' - id: BrickTileSteelLineN - decals: - 10997: 81,-2 - 10998: 82,-2 - - node: - zIndex: 6 - color: '#DE3A3AFF' - id: BrickTileSteelLineN - decals: - 11055: 11,20 - 11056: 12,20 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 10462: 69,-29 - 10464: 74,-29 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineS - decals: - 5978: 74,-54 - 5979: 75,-54 - 5980: 76,-54 - 5981: 77,-54 - 5982: 79,-54 - 5983: 78,-54 - - node: - color: '#D4D4D4FF' - id: BrickTileSteelLineS - decals: - 7101: 1,19 - 7102: 2,19 - 7103: 3,19 - 7104: 5,19 - 7105: 6,19 - 7106: 7,19 - 7107: 4,19 - 7113: -8,19 - 7115: -10,19 - 7116: -11,19 - 7119: -15,19 - 7120: -16,19 - 7121: -18,19 - 7317: 17,-15 - 7318: 17,-15 - 7319: 17,-15 - 7320: 18,-15 - 7321: 22,-15 - 7322: 23,-15 - 7323: 32,-15 - 7324: 31,-15 - 7325: 36,-15 - 7326: 40,-15 - 7327: 41,-15 - 7328: 42,-15 - 7329: 46,-15 - 7330: 47,-15 - 7332: 50,-15 - 7333: 48,-15 - 7334: 56,-15 - 9563: -25,-13 - 9564: -24,-13 - 9565: -23,-13 - 9566: -19,-12 - 9567: -20,-12 - 9568: -21,-12 - 11362: 74,-15 - 11363: 75,-15 - 13659: -4,-3 - 13745: 10,9 - 13746: 11,9 - 13747: 13,9 - 13749: 16,8 - 13750: 17,8 - 13751: 19,8 - 13753: 22,9 - 13754: 23,9 - 13755: 25,9 - 13756: 24,9 - 13757: 26,9 - 13758: 27,9 - 15150: 23,20 - 15151: 24,20 - 15152: 25,20 - 15750: 5,-32 - 15751: -41,-3 - 15752: -42,-3 - 15803: -59,-6 - 15809: -14,21 - 15810: -13,21 - 15811: -12,21 - 15812: -11,21 - 16108: -28,-3 - 16109: -44,-3 - 16110: -45,-3 - 16111: -47,-3 - 16112: -48,-3 - 16124: -50,-1 - 16245: -9,19 - 16390: -32,-1 - 16391: -31,-1 - 16392: -26,-1 - - node: - zIndex: 1 - color: '#D4D4D4FF' - id: BrickTileSteelLineS - decals: - 9433: -59,0 - 11201: -14,19 - 11202: -13,19 - 11203: -12,19 - 11204: -7,19 - 11205: -6,19 - 11207: -4,19 - 11208: -3,19 - 11209: -4,9 - 11210: -3,9 - 11224: -6,9 - 11248: -7,4 - 11251: -6,4 - 11272: -6,15 - 11273: -6,17 - 14930: 22,14 - 14932: 24,14 - 14950: -2,-52 - 14951: -1,-52 - - node: - zIndex: 2 - color: '#D4D4D4FF' - id: BrickTileSteelLineS - decals: - 8749: 5,-3 - 8750: 2,-3 - 8752: -7,-3 - 8850: 20,-6 - 8851: 21,-6 - - node: - zIndex: 3 - color: '#D4D4D4FF' - id: BrickTileSteelLineS - decals: - 9470: -45,2 - 9471: -44,2 - 9472: -43,2 - 9473: -42,2 - 9474: -41,2 - 9475: -40,2 - - node: - zIndex: 4 - color: '#D4D4D4FF' - id: BrickTileSteelLineS - decals: - 7610: 15,-32 - 7611: 14,-32 - 7612: 13,-32 - 7613: 11,-32 - 7614: 10,-32 - 7615: 9,-32 - 7616: 8,-32 - 7617: 6,-32 - 7618: 7,-32 - 7619: 4,-32 - 7620: 3,-32 - 7621: 2,-32 - 7622: 1,-32 - 7623: -4,-32 - 7624: -3,-32 - 7625: -5,-32 - 7626: -6,-32 - 7627: -7,-32 - 7628: -8,-32 - 7629: -9,-32 - 7630: -10,-32 - 7631: -11,-32 - 7632: -12,-32 - 7633: -13,-32 - 7634: -14,-32 - 7635: -15,-32 - 7636: -16,-32 - 7637: -17,-32 - 7673: 0,-58 - - node: - zIndex: 5 - color: '#D4D4D4FF' - id: BrickTileSteelLineS - decals: - 7762: -63,-6 - 7763: -62,-6 - 7764: -61,-6 - 7765: -60,-6 - 7766: -58,-6 - 7767: -57,-6 - 7768: -56,-6 - 7769: -55,-6 - 7773: -53,-3 - 7774: -52,-3 - 7775: -50,-3 - 7776: -49,-3 - 7779: -46,-3 - 7783: -40,-3 - 7784: -39,-3 - 7786: -37,-3 - 7787: -36,-3 - 7788: -35,-3 - 7790: -33,-3 - 7791: -32,-3 - 7792: -30,-3 - 7793: -29,-3 - 7795: -27,-3 - 7796: -26,-3 - 7797: -25,-3 - 7798: -24,-3 - 7799: -23,-3 - 7800: -21,-3 - 7801: -20,-3 - 7803: -19,-3 - 7848: -77,9 - 7849: -76,9 - 7850: -75,9 - 7851: -74,9 - 7852: -73,9 - 7853: -72,9 - 7854: -79,9 - 7856: -70,9 - 7857: -69,9 - 7858: -68,9 - 7859: -67,9 - 7860: -66,9 - 7886: -78,-6 - 7887: -77,-6 - 7888: -76,-6 - 7889: -75,-6 - 7890: -74,-6 - 7891: -73,-6 - 7892: -71,-6 - 7893: -70,-6 - 7894: -72,-6 - 7895: -69,-6 - 7896: -68,-6 - 7897: -67,-6 - 7898: -66,-6 - 7903: -63,0 - 7904: -62,0 - 7905: -61,0 - 7906: -60,0 - 7908: -58,0 - 7909: -57,0 - 7910: -56,0 - 7938: -75,-15 - 7939: -74,-15 - 7940: -73,-15 - 7941: -72,-15 - 7942: -71,-15 - 7943: -70,-15 - 7944: -68,-15 - 7945: -67,-15 - 7946: -66,-15 - 7947: -65,-15 - 10863: 77,-15 - 10864: 78,-15 - 10865: 79,-15 - 10866: 80,-15 - 10867: 81,-15 - 10868: 82,-15 - 10869: 83,-15 - 10870: 84,-15 - 10899: 79,-8 - 10900: 80,-8 - 10901: 81,-8 - 10902: 82,-8 - 10903: 83,-8 - 10904: 84,-8 - 11062: 10,19 - 13821: 15,14 - 13822: 16,14 - 13823: 17,14 - 13824: 18,14 - 13827: 31,8 - 13828: 30,8 - 13829: 35,8 - 13830: 36,8 - 13849: 14,9 - 13850: 21,9 - 13851: 28,9 - 13947: 19,0 - 13948: 19,6 - 13959: 39,-9 - 13960: 52,-9 - 14006: 12,-1 - 14007: 11,-1 - 14008: 9,-1 - 14009: 7,-1 - 14010: 8,-1 - 14011: 10,-1 - 14012: 3,-1 - 14013: 1,-1 - 14014: 1,-1 - 14015: 2,-1 - 14016: -1,0 - 14017: -1,8 - 14018: -1,16 - 14019: -3,-1 - 14020: -4,-1 - 14021: -5,-1 - 14022: -9,-1 - 14023: -10,-1 - 14024: -11,-1 - 14025: -12,-1 - 14026: -13,-1 - 14027: -14,-1 - 14028: -16,-1 - 14029: -17,-1 - 14030: -18,-1 - 14031: -22,-1 - 14032: -23,-1 - 14033: -24,-1 - 14034: -25,-1 - 14036: -27,-1 - 14037: -29,-1 - 14038: -30,-1 - 14041: -33,-1 - 14042: -34,-1 - 14044: -38,-1 - 14045: -39,-1 - 14046: -40,-1 - 14047: -41,-1 - 14048: -42,-1 - 14049: -43,-1 - 14050: -46,-1 - 14051: -47,-1 - 14052: -48,-1 - 14053: -49,-1 - 14055: -51,-1 - 14056: -45,4 - 14057: -44,4 - 14058: -43,4 - 14059: -42,4 - 14060: -41,4 - 14061: -40,4 - 14373: 75,-13 - 14374: 74,-13 - 14375: 73,-13 - 14376: 72,-13 - 14377: 70,-13 - 14378: 71,-13 - 14379: 69,-13 - 14380: 68,-13 - 14381: 67,-13 - 14382: 64,-13 - 14383: 65,-13 - 14384: 63,-13 - 14385: 62,-13 - 14386: 61,-13 - 14387: 60,-13 - 14388: 59,-13 - 14389: 58,-13 - 14390: 57,-13 - 14391: 53,-13 - 14392: 52,-13 - 14393: 51,-13 - 14394: 50,-13 - 14395: 49,-13 - 14396: 47,-13 - 14397: 46,-13 - 14398: 45,-13 - 14399: 44,-13 - 14400: 43,-13 - 14401: 39,-13 - 14402: 38,-13 - 14403: 37,-13 - 14404: 36,-13 - 14405: 35,-13 - 14406: 34,-13 - 14407: 32,-13 - 14408: 31,-13 - 14409: 30,-13 - 14410: 29,-13 - 14411: 28,-13 - 14412: 27,-13 - 14413: 25,-13 - 14414: 24,-13 - 14415: 23,-13 - 14416: 22,-13 - 14417: 21,-13 - 14418: 20,-13 - 14419: 15,-12 - 14420: 15,-4 - 14421: 15,-1 - 14422: 14,-1 - 14423: -17,-4 - 14424: -17,-12 - 14425: -17,-22 - 14427: -15,-30 - 14428: -14,-30 - 14429: -13,-30 - 14430: -12,-30 - 14432: -8,-30 - 14433: -7,-30 - 14434: -6,-30 - 14435: -5,-30 - 14436: -4,-30 - 14437: -2,-30 - 14438: -1,-30 - 14439: 0,-30 - 14440: 2,-30 - 14441: 3,-30 - 14442: 4,-30 - 14443: 5,-30 - 14444: 7,-30 - 14445: 7,-30 - 14446: 6,-30 - 14447: 11,-30 - 14448: 12,-30 - 14449: 13,-30 - 14450: 15,-25 - 14451: 15,-16 - 14473: -1,-42 - 14492: 16,10 - 14493: 17,10 - 14494: 18,10 - 14495: 19,10 - 14506: -10,21 - 14508: -8,21 - 14509: -7,21 - 14510: -6,21 - 14511: -5,21 - 14512: -4,21 - 14513: -2,21 - 14514: -1,21 - 14515: -1,21 - 14516: 0,21 - 14517: 2,21 - 14518: 3,21 - 14519: 4,21 - 14520: 5,21 - 14676: 19,-2 - 14677: 19,-6 - 14723: 28,-5 - 14724: 27,-5 - 14725: 26,-5 - 14726: 25,-5 - 14727: 24,-5 - 14728: 23,-5 - 14729: 28,-11 - 14730: 27,-11 - 14731: 26,-11 - 14733: 23,-11 - 14734: 23,-8 - 14735: 24,-8 - 14736: 25,-8 - 14737: 25,-8 - 14738: 26,-8 - 14739: 27,-8 - 14740: 28,-8 - 14783: 25,-11 - 14821: -1,-35 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineS - decals: - 4134: 39,-19 - 4535: 40,-19 - 5109: 61,-23 - 5110: 60,-23 - 6198: -1,-63 - 6435: -3,-60 - 7019: 37,-15 - 7020: 39,-15 - 7415: 13,31 - 7416: 14,31 - 7417: 15,31 - 7418: 16,31 - 7419: 17,31 - 7420: 17,34 - 7421: 16,34 - 7422: 15,34 - 7423: 13,34 - 7424: 14,34 - 7444: 19,35 - 8181: 2,26 - 8182: 3,26 - 8183: 5,26 - 8184: 7,26 - 8185: 8,26 - 8196: -17,23 - 8197: -19,23 - 8263: 9,23 - 8288: 3,23 - 8322: 3,31 - 8323: 4,31 - 8324: 5,31 - 8325: 6,31 - 8326: 8,31 - 8327: 9,31 - 8328: 10,31 - 8329: 1,31 - 8330: 0,31 - 8331: -2,31 - 8607: -12,43 - 8608: -10,43 - 9086: 6,36 - 9087: 7,36 - 9262: 14,40 - 9263: 13,40 - 9264: 12,40 - 9265: 16,40 - 9266: 17,40 - 9267: 18,40 - 9397: -60,4 - 9400: -58,4 - 9597: -24,-31 - 9598: -23,-31 - 10049: 20,35 - 10050: 21,35 - 10051: 22,35 - 10052: 23,35 - 10600: 13,25 - 10601: 11,27 - 10829: 61,-20 - 11130: 11,31 - 12487: -6,40 - 12488: -7,40 - 12489: -8,40 - 12490: -9,40 - 12491: -10,40 - 12492: -11,36 - 12493: -12,36 - 12494: -13,36 - 12495: -14,36 - 12582: 1,36 - 12583: 2,36 - 12584: 3,36 - 12585: 4,36 - 12597: 3,39 - 12623: 5,36 - 12624: -1,37 - 12625: -2,37 - 12626: -3,37 - 12627: -3,40 - 12628: -2,40 - 12629: -1,40 - 12630: -1,47 - 12631: -2,47 - 12632: -3,47 - 12642: -3,44 - 12643: -2,44 - 12644: -1,44 - 12877: 24,41 - 12878: 25,41 - 12879: 26,41 - 12996: 24,35 - 12997: 25,35 - 12998: 26,35 - 12999: 27,35 - 13000: 28,35 - 13016: -16,35 - 15511: -8,30 - 15512: -7,30 - 15513: -6,30 - 15514: -5,30 - 15515: -17,27 - 15516: -16,27 - 15539: -8,35 - 15540: -7,35 - 15541: -6,35 - 15542: -5,35 - 15543: -8,35 - - node: - zIndex: 5 - color: '#DE3A3AFF' - id: BrickTileSteelLineS - decals: - 7712: -1,-60 - 10971: 81,-2 - 10972: 82,-2 - - node: - zIndex: 6 - color: '#DE3A3AFF' - id: BrickTileSteelLineS - decals: - 11047: 11,20 - 11048: 12,20 - - node: - zIndex: 8 - color: '#DE3A3AFF' - id: BrickTileSteelLineS - decals: - 14841: -22,-31 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 2435: 45,-53 - 2436: 44,-53 - 2437: 43,-53 - 4909: 33,-7 - 6170: 32,-7 - 6171: 34,-7 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineW - decals: - 5971: 79,-52 - 5988: 73,-55 - 5994: 72,-52 - 5995: 72,-53 - 6007: 73,-56 - 6008: 73,-57 - - node: - color: '#D4D4D4FF' - id: BrickTileSteelLineW - decals: - 7049: -2,0 - 7050: -2,1 - 7054: -2,2 - 7055: -2,3 - 7056: -2,4 - 7057: -2,5 - 7058: -2,6 - 7059: -2,7 - 7060: -2,8 - 7070: -2,18 - 7185: -18,-15 - 7186: -18,-14 - 7187: -18,-13 - 7188: -18,-11 - 7189: -18,-10 - 7190: -18,-9 - 7191: -18,-8 - 7193: -18,-7 - 7194: -18,-6 - 7196: -18,-5 - 7197: -18,-4 - 7206: -18,-28 - 7283: 14,-11 - 7284: 14,-12 - 7285: 14,-13 - 7286: 14,-14 - 7287: 14,-15 - 7288: 14,-16 - 7289: 14,-17 - 7290: 14,-18 - 7291: 14,-19 - 7292: 14,-20 - 7293: 14,-20 - 7294: 14,-21 - 7295: 14,-22 - 7296: 14,-23 - 7297: 14,-24 - 9056: 20,7 - 9057: 20,7 - 9570: -24,-12 - 9876: -22,-4 - 9877: -22,-5 - 9878: -22,-6 - 9879: -22,-7 - 12396: 1,-53 - 12431: -18,-21 - 13736: 12,0 - 13737: 12,1 - 13738: 12,2 - 13739: 12,3 - 13740: 12,4 - 13741: 12,5 - 13742: 12,6 - 13743: 12,7 - 13744: 12,8 - 14832: 22,8 - 15111: 26,17 - 15112: 26,18 - 15113: 26,19 - 15115: 26,21 - 15116: 26,22 - 15124: 26,16 - 15162: 19,12 - 15805: 8,16 - 15808: -9,20 - 16113: -43,-4 - 16114: -50,0 - 16115: -31,-4 - - node: - zIndex: 1 - color: '#D4D4D4FF' - id: BrickTileSteelLineW - decals: - 8982: 16,-33 - 11211: -2,11 - 11212: -2,13 - 11213: -2,14 - 11214: -2,15 - 11215: -2,16 - 11216: -2,17 - 11229: -5,5 - 11231: -5,6 - 11233: -5,7 - 11234: -5,8 - 11246: -5,0 - 11247: -5,1 - 11249: -5,2 - 11250: -5,3 - 11258: -15,0 - 11262: -5,18 - 11264: -5,16 - 11296: 20,-1 - 11302: 76,-16 - 14923: -39,3 - 14928: 23,12 - 14929: 23,13 - 14937: 23,11 - 14938: 0,-57 - 14940: 0,-56 - 14941: 0,-55 - 14942: 0,-54 - 14943: 0,-53 - - node: - zIndex: 2 - color: '#D4D4D4FF' - id: BrickTileSteelLineW - decals: - 8756: 14,-29 - 8757: 14,-28 - 8831: 8,18 - 8836: 18,7 - 8837: 18,6 - 8843: 18,0 - 8844: 18,-1 - 8845: 18,-2 - 8896: 22,-12 - 8897: 24,-12 - - node: - zIndex: 3 - color: '#D4D4D4FF' - id: BrickTileSteelLineW - decals: - 9449: -46,0 - 9450: -46,1 - 9451: -46,2 - 9452: -46,3 - 9454: -46,4 - 9455: -46,5 - 9457: -39,0 - 9458: -39,1 - 10418: -18,-29 - - node: - zIndex: 4 - color: '#D4D4D4FF' - id: BrickTileSteelLineW - decals: - 7518: 8,0 - 7519: 8,1 - 7520: 8,2 - 7522: 8,4 - 7524: 8,6 - 7525: 8,7 - 7526: 8,9 - 7527: 8,10 - 7528: 8,12 - 7529: 8,13 - 7530: 8,15 - 7638: -2,-33 - 7644: -2,-40 - 7645: -2,-41 - 7646: -2,-42 - 7647: -2,-43 - 7648: -2,-45 - 7649: -2,-46 - 7650: -2,-47 - 7652: -2,-49 - 7653: -2,-50 - 7654: -2,-51 - 7671: -3,-59 - 12136: 85,-10 - 12137: 85,-9 - - node: - zIndex: 5 - color: '#D4D4D4FF' - id: BrickTileSteelLineW - decals: - 7861: -65,8 - 7862: -65,7 - 7863: -65,6 - 7864: -65,5 - 7865: -65,4 - 7866: -65,3 - 7867: -65,2 - 7868: -65,1 - 7869: -65,0 - 7870: -65,-1 - 7871: -65,-2 - 7872: -65,-3 - 7873: -65,-4 - 7899: -55,-4 - 7900: -55,-3 - 7901: -55,-2 - 7902: -55,-1 - 7920: -65,-7 - 7921: -65,-8 - 7922: -65,-9 - 7923: -65,-11 - 7924: -65,-12 - 7925: -65,-13 - 7954: -78,-4 - 7955: -71,-4 - 7956: -71,8 - 7957: -78,8 - 10874: 78,-8 - 10875: 78,-11 - 10876: 78,-12 - 10877: 78,-12 - 10914: 80,-6 - 10915: 80,-5 - 10918: 85,-13 - 10919: 85,-13 - 10920: 85,-12 - 10921: 85,-11 - 13832: 29,11 - 13833: 26,11 - 13834: 26,12 - 13835: 26,13 - 13836: 26,14 - 13837: 26,15 - 13845: 19,11 - 13847: 19,13 - 13848: 19,15 - 13927: 18,1 - 13928: 18,2 - 13929: 18,3 - 13930: 18,4 - 13931: 18,5 - 13932: 20,5 - 13933: 20,4 - 13934: 20,3 - 13935: 20,2 - 13936: 20,1 - 13961: 38,-12 - 13962: 38,-11 - 13963: 51,-12 - 13964: 51,-11 - 13965: 51,-10 - 13966: 51,-9 - 13973: 40,-11 - 13974: 40,-10 - 13976: 53,-11 - 13988: 53,-10 - 14207: 0,-49 - 14208: 0,-48 - 14209: 0,-47 - 14210: 0,-46 - 14211: 0,-45 - 14212: 0,-44 - 14213: 0,-43 - 14214: 0,-41 - 14215: 0,-40 - 14216: 0,-39 - 14217: 0,-38 - 14218: 0,-37 - 14219: 0,-36 - 14221: 1,-31 - 14222: 8,-31 - 14223: 16,-31 - 14224: 16,-30 - 14225: 16,-29 - 14226: 16,-28 - 14227: 16,-27 - 14228: 16,-26 - 14229: 16,-22 - 14230: 16,-21 - 14231: 16,-20 - 14232: 16,-19 - 14233: 16,-18 - 14234: 16,-17 - 14235: 17,-14 - 14236: 16,-9 - 14237: 16,-8 - 14238: 16,-7 - 14239: 16,-6 - 14240: 16,-5 - 14241: 16,-3 - 14242: 16,-2 - 14243: 13,-2 - 14244: 4,-2 - 14245: 0,1 - 14246: 0,2 - 14247: 0,3 - 14248: 0,4 - 14249: 0,6 - 14250: 0,7 - 14251: 0,5 - 14252: 0,9 - 14253: 0,10 - 14254: 0,11 - 14255: 0,12 - 14256: 0,13 - 14257: 0,14 - 14258: 0,15 - 14259: 1,20 - 14260: 6,20 - 14261: -3,20 - 14262: -8,-2 - 14263: -15,-2 - 14264: -21,-2 - 14265: -28,-2 - 14266: -37,-2 - 14267: -45,-2 - 14268: -16,-5 - 14269: -16,-6 - 14270: -16,-7 - 14271: -16,-8 - 14272: -16,-9 - 14273: -16,-10 - 14274: -16,-10 - 14275: -16,-11 - 14276: -16,-13 - 14277: -16,-14 - 14278: -16,-15 - 14279: -16,-16 - 14280: -16,-16 - 14281: -16,-17 - 14282: -16,-18 - 14283: -16,-19 - 14284: -16,-23 - 14285: -16,-24 - 14286: -16,-25 - 14287: -16,-26 - 14288: -16,-27 - 14289: -16,-28 - 14290: -16,-29 - 14291: -11,-31 - 14292: -3,-31 - 14474: 26,-14 - 14475: 33,-14 - 14476: 40,-14 - 14477: 48,-14 - 14478: 54,-14 - 14479: 66,-14 - 14480: 76,-14 - 14496: 20,9 - 14670: 20,-5 - 14671: 20,-4 - 14672: 20,-3 - 14673: 18,-4 - 14674: 18,-5 - 14675: 18,-3 - 14764: 22,-11 - 14766: 22,-9 - 14767: 22,-8 - 14768: 22,-7 - 14826: -2,-39 - 14827: -2,-35 - - node: - color: '#DE3A3AFC' - id: BrickTileSteelLineW - decals: - 10606: 0,33 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineW - decals: - 4119: 38,-22 - 4124: 38,-21 - 4125: 38,-20 - 4126: 38,-19 - 4127: 38,-18 - 4128: 38,-17 - 4129: 38,-16 - 5070: 62,-21 - 5071: 62,-22 - 5113: 62,-24 - 6185: -2,-65 - 6186: -2,-64 - 6187: -2,-63 - 6188: -2,-62 - 6189: -2,-61 - 7410: 18,32 - 7411: 18,33 - 7432: 12,32 - 7433: 12,33 - 7434: 12,34 - 7435: 12,35 - 7436: 12,36 - 7437: 12,37 - 8070: -1,28 - 8071: 2,28 - 8074: 1,24 - 8080: 6,23 - 8081: 6,24 - 8086: 9,25 - 8087: 7,28 - 8088: 7,28 - 8153: 1,25 - 8207: -18,22 - 8208: -18,21 - 8283: 1,23 - 8290: 1,22 - 8307: -1,29 - 8308: -1,30 - 8309: 2,29 - 8310: 2,30 - 8342: 8,32 - 8343: 8,33 - 8344: 7,30 - 8347: 7,29 - 8370: 4,25 - 8371: 4,22 - 8372: 6,22 - 8373: 6,25 - 8575: -11,37 - 8577: -11,39 - 8580: -11,42 - 8592: -11,38 - 8593: -11,38 - 8606: -11,41 - 9089: 7,38 - 9090: 7,39 - 9091: 7,40 - 9092: 7,40 - 9093: 7,41 - 9094: 9,38 - 9095: 9,39 - 9096: 9,40 - 9097: 9,41 - 9110: 8,34 - 9111: 8,35 - 9269: 15,39 - 9416: -61,2 - 9417: -61,3 - 9421: -57,5 - 10039: 23,48 - 10040: 23,47 - 10041: 23,46 - 10042: 23,45 - 10043: 23,44 - 10044: 23,43 - 10045: 23,42 - 10047: 23,40 - 10304: -25,-33 - 10305: -25,-32 - 10306: -25,-31 - 10307: -25,-30 - 10308: -25,-29 - 10593: 12,26 - 10825: 62,-25 - 10826: 62,-26 - 11026: 83,-3 - 11027: 83,-1 - 12475: -10,28 - 12476: -10,29 - 12477: -10,30 - 12478: -10,31 - 12479: -10,32 - 12480: -10,33 - 12481: -10,34 - 12482: -10,35 - 12483: -11,40 - 12559: 0,34 - 12560: 0,35 - 12562: 0,37 - 12563: 0,38 - 12564: 0,40 - 12565: 0,41 - 12566: 0,42 - 12567: 0,44 - 12568: 0,45 - 12589: 4,37 - 12590: 4,38 - 12595: 2,37 - 12596: 2,38 - 12645: 4,40 - 12646: 4,41 - 12647: 4,42 - 12648: 4,43 - 12881: 23,41 - 12882: 27,42 - 12883: 27,43 - 12986: 22,37 - 12989: 23,39 - 12990: 28,36 - 12991: 28,37 - 15517: -15,26 - 15518: -18,24 - 15519: -18,25 - 15520: -18,26 - - node: - zIndex: 3 - color: '#DE3A3AFF' - id: BrickTileSteelLineW - decals: - 9437: -59,2 - 9438: -59,3 - - node: - zIndex: 5 - color: '#DE3A3AFF' - id: BrickTileSteelLineW - decals: - 10959: 80,-4 - 10960: 80,-3 - 10961: 80,-2 - 10962: 80,-1 - 10963: 80,0 - 10964: 80,1 - 10965: 80,2 - 10966: 80,3 - 10967: 80,3 - 11069: -15,34 - - node: - zIndex: 6 - color: '#DE3A3AFF' - id: BrickTileSteelLineW - decals: - 11053: 13,21 - 11054: 13,22 - - node: - zIndex: 8 - color: '#DE3A3AFF' - id: BrickTileSteelLineW - decals: - 14834: -22,-30 - 14835: -22,-29 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 2434: 46,-54 - 3389: 45,-1 - 3390: 45,0 - 4916: 36,-11 - 4917: 36,-10 - 4918: 36,-9 - 15738: 6,-35 - - node: - color: '#D4D4D428' - id: BrickTileWhiteBox - decals: - 2272: -16,-56 - 2273: -16,-52 - - node: - color: '#0096FFFF' - id: BrickTileWhiteCornerNe - decals: - 8637: -5,24 + 3278: 70,60 + 5524: -45,-5 - node: color: '#32CD32FF' - id: BrickTileWhiteCornerNe + id: BrickTileSteelInnerSe decals: - 8642: -9,24 + 357: 29,18 + - node: + zIndex: 6 + angle: 6.283185307179586 rad + color: '#B48357FF' + id: BrickTileSteelLineE + decals: + 3901: -26,66 + 3902: -26,65 + 3903: -26,67 + 3904: -26,68 + 3905: -26,69 + 3906: -26,70 + 3907: -26,70 + 3908: -26,71 + - node: + color: '#CB8B5563' + id: BrickTileSteelLineE + decals: + 4698: -29.983158,66.96614 + - node: + color: '#CB8B556F' + id: BrickTileSteelLineE + decals: + 4697: -30.230614,66.97363 + - node: + color: '#CB8B55BE' + id: BrickTileSteelLineE + decals: + 4696: -30.463074,66.97363 + - node: + color: '#CB8B55FF' + id: BrickTileSteelLineE + decals: + 4695: -30.725527,66.98863 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 2268: -6,-51 - - node: - color: '#334E6DFC' - id: BrickTileWhiteCornerNe - decals: - 11023: 84,1 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerNe - decals: - 3757: -7,-12 - 3873: 8,-13 - 10101: -11,-26 - 10102: -11,-26 - 16065: 3,-8 - 16182: -28,9 - - node: - color: '#3EB388FF' - id: BrickTileWhiteCornerNe - decals: - 12297: 4,-47 - 12730: 7,-42 - - node: - color: '#439909FF' - id: BrickTileWhiteCornerNe - decals: - 5833: 44,-59 - 5834: 37,-52 - 5835: 47,-56 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNe - decals: - 2242: -15,-50 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNe - decals: - 3972: 42,-23 - 4253: 37,-35 - 4394: 21,-22 - 4503: 42,-18 - 4698: 41,-32 - 5784: 41,-52 - - node: - color: '#8932B8FF' - id: BrickTileWhiteCornerNe - decals: - 15472: -13,24 - - node: - color: '#9FED58FC' - id: BrickTileWhiteCornerNe - decals: - 9543: 48,-4 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerNe - decals: - 6125: 30,-1 - 6132: 32,-2 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerNe - decals: - 9722: -21,-22 - 10297: -27,-30 - 11499: -41,-37 - 11523: -36,-35 - - node: - color: '#D381C9FF' - id: BrickTileWhiteCornerNe - decals: - 4970: 59,-17 - 5766: 50,-27 - 6016: 70,-51 - 10707: 73,-18 - 10713: 74,-23 - 10714: 74,-23 - 10728: 67,-26 - 11558: 55,-17 - 11593: 75,-27 - 11647: 72,-44 - 11648: 79,-43 - - node: - zIndex: 3 - color: '#D381C9FF' - id: BrickTileWhiteCornerNe - decals: - 11802: 63,-40 - - node: - color: '#D4D4D496' - id: BrickTileWhiteCornerNe - decals: - 2256: -12,-57 + 978: -16,84 + 1005: -11,83 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 2252: -15,-57 + 643: 98,55 + 644: 99,54 + 3282: 72,55 + 5099: 38,63 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2248: -12,-50 + 4071: -119,108 - node: - color: '#EFB341FF' + color: '#FFC364FF' id: BrickTileWhiteCornerNe decals: - 6408: 9,-53 - 6650: -10,-73 - 6852: -6,-54 - 9031: -12,-53 - 11871: 9,-73 - 11872: 9,-66 - 12368: -70,18 + 15: -26,0 - node: - zIndex: 4 - color: '#EFB341FF' + color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 12077: -10,-63 - 12078: -5,-63 - 12098: -14,-73 - 12116: -15,-79 - - node: - color: '#FFA500FF' - id: BrickTileWhiteCornerNe - decals: - 8620: -1,24 - - node: - color: '#0096FFFF' - id: BrickTileWhiteCornerNw - decals: - 8638: -7,24 - - node: - color: '#32CD32FF' - id: BrickTileWhiteCornerNw - decals: - 8651: -11,24 + 397: 31,20 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 2267: -8,-51 - - node: - color: '#334E6DFC' - id: BrickTileWhiteCornerNw - decals: - 11020: 83,1 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerNw - decals: - 3756: -9,-12 - 10110: -12,-26 - 16064: -5,-8 - 16183: -34,9 - - node: - color: '#3EB388FF' - id: BrickTileWhiteCornerNw - decals: - 12703: 3,-42 - - node: - color: '#439909FF' - id: BrickTileWhiteCornerNw - decals: - 5845: 34,-52 - 5846: 46,-59 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNw - decals: - 2241: -16,-50 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNw - decals: - 4068: 18,-25 - 4238: 34,-35 - 4395: 19,-22 - 4504: 41,-18 - 4778: 34,-40 - 5776: 48,-27 - 5783: 39,-52 - - node: - color: '#8932B8FF' - id: BrickTileWhiteCornerNw - decals: - 15469: -15,24 - - node: - color: '#8D1C99FF' - id: BrickTileWhiteCornerNw - decals: - 11485: -44,-37 - 11526: -39,-37 - - node: - color: '#9FED58FC' - id: BrickTileWhiteCornerNw - decals: - 9542: 43,-4 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerNw - decals: - 9744: -28,-20 - - node: - zIndex: 3 - color: '#A46106FF' - id: BrickTileWhiteCornerNw - decals: - 9647: -29,-30 - - node: - zIndex: 5 - color: '#A46106FF' - id: BrickTileWhiteCornerNw - decals: - 10386: -42,-21 - - node: - color: '#D381C9FF' - id: BrickTileWhiteCornerNw - decals: - 5308: 51,-40 - 5764: 52,-27 - 10715: 69,-23 - 10727: 65,-26 - 11554: 51,-21 - 11555: 51,-17 - 11601: 77,-43 - 11602: 70,-44 - 11603: 69,-41 - - node: - color: '#D4D4D496' - id: BrickTileWhiteCornerNw - decals: - 2255: -13,-57 + 976: -21,84 + 1004: -13,83 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 2251: -16,-57 + 645: 92,55 + 3281: 70,55 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2247: -13,-50 + 4070: -123,108 - node: - color: '#EFB341FF' + color: '#FFC364FF' id: BrickTileWhiteCornerNw decals: - 6635: -18,-73 - 9030: -16,-53 - 11873: 6,-66 - 12367: -74,18 - - node: - zIndex: 4 - color: '#EFB341FF' - id: BrickTileWhiteCornerNw - decals: - 12056: -8,-73 - 12073: -16,-63 - 12074: -7,-63 - 12092: -3,-69 - 12099: -12,-73 - 12114: -17,-79 - - node: - color: '#FFA500FF' - id: BrickTileWhiteCornerNw - decals: - 8621: -3,24 - - node: - color: '#0096FFFF' - id: BrickTileWhiteCornerSe - decals: - 8640: -5,23 - - node: - color: '#32CD32FF' - id: BrickTileWhiteCornerSe - decals: - 8641: -9,23 + 16: -30,0 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 2250: -15,-58 + 977: -16,81 - node: - color: '#334E6DFF' + color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 10112: -11,-28 - 10119: -7,-20 - 15985: 2,-14 - 16010: 1,-20 + 602: 62,58 + 646: 99,52 + 647: 98,51 + 3286: 72,52 - node: - zIndex: 7 - color: '#334E6DFF' + color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 11166: -18,2 + 4072: -119,105 - node: - color: '#3EB388FF' + color: '#FFC364FF' id: BrickTileWhiteCornerSe decals: - 12296: 4,-50 - 12731: 7,-44 + 17: -26,-2 - node: - color: '#439909FF' + color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 5810: 37,-54 - 5811: 41,-61 - 5812: 44,-61 - 5813: 47,-61 - 5840: 41,-54 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerSe - decals: - 3971: 42,-25 - 4073: 22,-28 - 4176: 26,-31 - 4254: 37,-36 - 4659: 46,-29 - - node: - color: '#8932B8FF' - id: BrickTileWhiteCornerSe - decals: - 15471: -13,23 - - node: - zIndex: 3 - color: '#8D1C99FF' - id: BrickTileWhiteCornerSe - decals: - 9631: -25,-39 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSe - decals: - 2253: -12,-58 - - node: - color: '#9FED58FC' - id: BrickTileWhiteCornerSe - decals: - 9546: 48,-9 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSe - decals: - 2246: -12,-51 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerSe - decals: - 11497: -38,-37 - - node: - zIndex: 5 - color: '#A46106FF' - id: BrickTileWhiteCornerSe - decals: - 10385: -40,-33 - 12709: -36,-39 - 14818: -21,-28 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSe - decals: - 2243: -15,-51 - - node: - color: '#D381C9FF' - id: BrickTileWhiteCornerSe - decals: - 4969: 59,-25 - 5301: 63,-42 - 5652: 67,-49 - 5767: 50,-29 - 5875: 74,-25 - 6017: 70,-53 - 10791: 67,-20 - 11007: 53,-25 - 11556: 55,-19 - 11594: 75,-28 - 11653: 75,-42 - 11677: 72,-48 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerSe - decals: - 6404: 9,-54 - 6652: -10,-77 - 6760: 1,-79 - 6853: -6,-58 - 9033: -12,-55 - 12369: -70,12 - - node: - zIndex: 4 - color: '#EFB341FF' - id: BrickTileWhiteCornerSe - decals: - 12091: -10,-67 - 12101: -14,-77 - 12118: -15,-82 - - node: - color: '#FFA500FF' - id: BrickTileWhiteCornerSe - decals: - 8623: -1,23 - - node: - color: '#0096FFFF' - id: BrickTileWhiteCornerSw - decals: - 8639: -7,23 - - node: - color: '#32CD32FF' - id: BrickTileWhiteCornerSw - decals: - 8650: -11,23 + 398: 31,18 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 2249: -16,-58 + 979: -21,81 - node: - color: '#334E6DFC' + color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 11019: 83,-5 + 648: 92,51 + 3287: 70,52 + 5102: 35,59 - node: - color: '#334E6DFF' + color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 3758: -9,-20 - 3916: 5,-14 - 10111: -12,-28 - 15984: -4,-14 - 16009: -3,-20 + 4073: -123,105 - node: - zIndex: 5 - color: '#334E6DFF' + color: '#FFC364FF' id: BrickTileWhiteCornerSw decals: - 14664: -24,2 + 18: -30,-2 - node: - color: '#439909FF' + color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 5828: 38,-61 - 5829: 43,-61 - 5830: 46,-61 - 5831: 34,-56 - 5832: 39,-54 + 379: 26,11 + 405: 26,14 - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerSw - decals: - 4255: 28,-36 - 4480: 39,-29 - 4697: 39,-50 - 4772: 34,-43 - 5779: 48,-29 - - node: - color: '#8932B8FF' - id: BrickTileWhiteCornerSw - decals: - 15468: -15,23 - - node: - color: '#8D1C99FF' - id: BrickTileWhiteCornerSw - decals: - 11527: -39,-39 - - node: - zIndex: 3 - color: '#8D1C99FF' - id: BrickTileWhiteCornerSw - decals: - 9633: -29,-39 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSw - decals: - 2254: -13,-58 - - node: - color: '#9FED58FC' - id: BrickTileWhiteCornerSw - decals: - 9544: 43,-9 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSw - decals: - 2245: -13,-51 - - node: - zIndex: 5 - color: '#A46106FF' - id: BrickTileWhiteCornerSw - decals: - 10384: -42,-33 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSw - decals: - 2244: -16,-51 - - node: - color: '#D381C9FF' - id: BrickTileWhiteCornerSw - decals: - 4972: 51,-25 - 5176: 57,-25 - 5309: 51,-42 - 5651: 65,-49 - 10722: 69,-25 - 11034: 69,-19 - 11557: 51,-19 - 11649: 70,-48 - 11651: 69,-42 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerSw - decals: - 6405: 3,-54 - 6636: -8,-76 - 6637: -18,-77 - 6638: -18,-77 - 6759: -3,-79 - 6854: -8,-58 - 9032: -16,-55 - 11874: 6,-71 - 12365: -74,12 - - node: - zIndex: 4 - color: '#EFB341FF' - id: BrickTileWhiteCornerSw - decals: - 12079: -16,-67 - 12093: -3,-71 - 12100: -12,-77 - 12117: -17,-82 - - node: - color: '#FFA500FF' - id: BrickTileWhiteCornerSw - decals: - 8622: -3,23 - - node: - zIndex: 5 - color: '#A46106FF' + color: '#DE3A3A96' id: BrickTileWhiteEndE decals: - 14795: -26,-22 + 805: 100,53 - node: - color: '#D381C9FF' - id: BrickTileWhiteEndE - decals: - 11646: 79,-41 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteEndN - decals: - 4227: 28,-33 - 4502: 46,-17 - - node: - zIndex: 5 - color: '#52B4E9FF' - id: BrickTileWhiteEndN - decals: - 12721: -13,33 - - node: - color: '#A46106FF' - id: BrickTileWhiteEndN - decals: - 16222: -20,-16 - 16225: -22,-16 - - node: - color: '#EFB341FF' - id: BrickTileWhiteEndN - decals: - 9029: -14,-50 - 12366: -67,18 - - node: - color: '#334E6DFF' + color: '#DE3A3A96' id: BrickTileWhiteEndS decals: - 16184: -33,5 - 16185: -29,5 + 3293: 71,51 - node: - zIndex: 5 - color: '#52B4E9FF' - id: BrickTileWhiteEndS - decals: - 12722: -15,30 - - node: - color: '#A46106FF' - id: BrickTileWhiteEndS - decals: - 16223: -20,-20 - - node: - color: '#EFB341FF' - id: BrickTileWhiteEndS - decals: - 9028: -14,-58 - - node: - color: '#A46106FF' - id: BrickTileWhiteEndW - decals: - 16224: -25,-18 - - node: - color: '#EFB341FF' - id: BrickTileWhiteEndW - decals: - 6324: 1,-61 - - node: - color: '#0096FFFF' + color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 8636: -6,24 + 1034: -13,77 - node: - color: '#32CD32FF' + color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 8648: -10,24 + 807: 99,53 - node: - color: '#334E6DFF' - id: BrickTileWhiteInnerNe + color: '#334E6DC8' + id: BrickTileWhiteInnerNw decals: - 3768: -8,-12 - 3853: -9,-10 - 3854: 5,-10 - 3915: 7,-15 - 3944: -13,-14 - 4641: -8,-17 - 4642: -8,-13 - 4650: -16,-13 - 7184: -16,-17 - 10105: -7,-19 - 10108: -9,-28 - 10109: -9,-28 - 10117: -11,-27 - 10121: -8,-30 - 15972: -5,-10 - 15991: -4,-14 - 15994: 1,-19 - 16003: -3,-20 - 16004: -4,-11 - 16090: -3,-26 - 16179: -33,6 - - node: - zIndex: 4 - color: '#334E6DFF' - id: BrickTileWhiteInnerNe - decals: - 8458: 5,-30 - 8459: 9,-30 - 8469: -10,-30 - 8470: -16,-29 - - node: - zIndex: 5 - color: '#334E6DFF' - id: BrickTileWhiteInnerNe - decals: - 7512: 13,-10 - 7516: -16,-11 - 10947: 82,-7 - 10948: 84,-7 - 14665: -22,1 - - node: - zIndex: 7 - color: '#334E6DFF' - id: BrickTileWhiteInnerNe - decals: - 11165: -25,-1 - 11169: -23,-1 - 11170: -21,-1 - 11171: -24,1 - 11172: -23,3 - 11173: -21,3 - - node: - color: '#3EB388FF' - id: BrickTileWhiteInnerNe - decals: - 12308: 4,-48 - 12691: 3,-52 - - node: - zIndex: 5 - color: '#3EB388FF' - id: BrickTileWhiteInnerNe - decals: - 12706: 3,-47 - - node: - color: '#439909FF' - id: BrickTileWhiteInnerNe - decals: - 5847: 43,-59 - - node: - zIndex: 3 - color: '#439909FF' - id: BrickTileWhiteInnerNe - decals: - 10447: 40,-56 - 10448: 36,-56 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteInnerNe - decals: - 3994: 34,-26 - 3995: 41,-23 - 3996: 42,-24 - 4006: 24,-21 - 4039: 30,-31 - 4075: 21,-25 - 4107: 34,-23 - 4117: 33,-21 - 4208: 24,-37 - 4222: 21,-26 - 4257: 36,-35 - 4302: 44,-25 - 4324: 41,-24 - 4529: 46,-21 - 4592: 40,-46 - 4593: 40,-40 - 4594: 40,-33 - 4595: 21,-36 - 4707: 41,-46 - 4708: 41,-43 - 4709: 41,-50 - 4798: 37,-48 - 4799: 36,-44 - 4802: 36,-49 - 5786: 40,-52 - 5790: 41,-53 - 6874: 37,-24 - - node: - zIndex: 4 - color: '#52B4E9FF' - id: BrickTileWhiteInnerNe - decals: - 8483: 16,-30 - 8490: 16,-28 - 8499: 20,-30 - - node: - zIndex: 5 - color: '#52B4E9FF' - id: BrickTileWhiteInnerNe - decals: - 11108: -13,27 - - node: - color: '#8932B8FF' - id: BrickTileWhiteInnerNe - decals: - 15470: -14,24 - - node: - color: '#8D1C99FC' - id: BrickTileWhiteInnerNe - decals: - 10286: -28,-30 - - node: - color: '#8D1C99FF' - id: BrickTileWhiteInnerNe - decals: - 11464: -29,-36 - 11480: -39,-39 - 13615: -41,-38 - - node: - zIndex: 5 - color: '#8D1C99FF' - id: BrickTileWhiteInnerNe - decals: - 12713: -36,-38 - - node: - color: '#9FED58FC' - id: BrickTileWhiteInnerNe - decals: - 9553: 46,-6 - - node: - color: '#9FED58FF' - id: BrickTileWhiteInnerNe - decals: - 6121: 30,-2 - 6135: 31,-3 - - node: - color: '#A46106FF' - id: BrickTileWhiteInnerNe - decals: - 9723: -22,-22 - 9776: -29,-23 - 9828: -31,-31 - 10294: -25,-34 - 10295: -27,-34 - 15431: -41,-26 - 16232: -22,-17 - 16234: -19,-20 - 16397: -38,-21 - 16398: -32,-21 - 16399: -20,-19 - - node: - zIndex: 5 - color: '#A46106FF' - id: BrickTileWhiteInnerNe - decals: - 10391: -40,-31 - 10392: -36,-31 - 14796: -27,-22 - 14820: -23,-28 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerNe - decals: - 5152: 55,-18 - 5177: 56,-25 - 5306: 63,-41 - 5373: 66,-35 - 5374: 66,-31 - 5375: 66,-27 - 5377: 66,-39 - 5378: 66,-45 - 5659: 54,-40 - 5770: 49,-27 - 5771: 50,-28 - 5899: 59,-18 - 5952: 66,-51 - 6890: 73,-24 - 10736: 67,-27 - 10737: 66,-26 - 10766: 71,-27 - 10857: 65,-20 - 11006: 58,-27 - 11039: 71,-20 - 11582: 54,-17 - 11669: 70,-41 - 11670: 74,-41 - 11672: 72,-46 - 11673: 71,-44 - 11691: 71,-45 - 11701: 78,-44 - - node: - zIndex: 3 - color: '#D381C9FF' - id: BrickTileWhiteInnerNe - decals: - 11800: 74,-24 - - node: - zIndex: 5 - color: '#D381C9FF' - id: BrickTileWhiteInnerNe - decals: - 11731: 78,-43 + 1033: -11,77 - node: angle: 3.141592653589793 rad - color: '#D381C9FF' - id: BrickTileWhiteInnerNe - decals: - 5245: 58,-41 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteInnerNe - decals: - 6430: -2,-67 - - node: - color: '#EFB341FF' - id: BrickTileWhiteInnerNe - decals: - 6242: 2,-70 - 6257: -2,-72 - 6327: 2,-64 - 6328: 2,-62 - 6419: 3,-58 - 6420: 3,-55 - 6421: 7,-55 - 6613: -10,-75 - 6614: -11,-69 - 6618: -5,-74 - 6675: -11,-70 - 6764: -1,-74 - 6862: -6,-57 - 6866: -7,-54 - 6867: -4,-58 - 9014: -15,-56 - 9015: -12,-54 - 11861: 7,-64 - 11862: 8,-66 - 11863: 8,-73 - 11869: 4,-68 - 11870: 9,-74 - 12318: 7,-62 - 12370: -70,17 - 12373: -68,12 - 12374: -71,17 - - node: - zIndex: 1 - color: '#EFB341FF' - id: BrickTileWhiteInnerNe - decals: - 11335: -69,10 - 11336: -67,10 - - node: - zIndex: 4 - color: '#EFB341FF' - id: BrickTileWhiteInnerNe - decals: - 12014: -21,-69 - 12015: -18,-69 - 12040: -17,-70 - 12067: -10,-65 - 12068: -8,-66 - 12075: -5,-70 - 12111: -16,-79 - 12112: -16,-73 - - node: - zIndex: 5 - color: '#EFB341FF' - id: BrickTileWhiteInnerNe - decals: - 7684: 0,-51 - 7710: -13,-37 - - node: - color: '#FA7500FF' - id: BrickTileWhiteInnerNe - decals: - 4432: 19,-19 - 4434: 19,-21 - - node: - color: '#FFA500FF' - id: BrickTileWhiteInnerNe - decals: - 8625: -2,24 - - node: - color: '#0096FFFF' + color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 8635: -6,24 + 806: 99,53 - node: - color: '#32CD32FF' - id: BrickTileWhiteInnerNw - decals: - 8647: -10,24 - - node: - color: '#334E6DFF' - id: BrickTileWhiteInnerNw - decals: - 3765: -9,-13 - 3766: -8,-12 - 3851: -7,-10 - 3852: 7,-10 - 3889: 9,-15 - 4633: -8,-17 - 4634: -8,-13 - 10120: -8,-30 - 11159: -21,-1 - 11160: -23,-1 - 12448: 14,-26 - 15969: 3,-10 - 15992: 2,-14 - 15993: 1,-20 - 16005: 2,-11 - 16093: 1,-26 - 16127: -3,-19 - 16192: -29,6 - - node: - zIndex: 4 - color: '#334E6DFF' - id: BrickTileWhiteInnerNw - decals: - 8456: 14,-28 - 8460: 9,-30 - 8461: 13,-30 - 8481: 5,-30 - 12134: 85,-3 - - node: - zIndex: 5 - color: '#334E6DFF' - id: BrickTileWhiteInnerNw - decals: - 7507: 14,-11 - 7513: -15,-10 - 10950: 84,-7 - 10951: 85,-5 - 14669: -18,3 - - node: - zIndex: 7 - color: '#334E6DFF' - id: BrickTileWhiteInnerNw - decals: - 11164: -19,-1 - 11167: -20,1 - 11168: -22,1 - 11174: -23,3 - 11175: -21,3 - - node: - color: '#3EB388FF' - id: BrickTileWhiteInnerNw - decals: - 12686: 3,-52 - 12687: 1,-45 - 12699: 3,-43 - - node: - zIndex: 5 - color: '#3EB388FF' - id: BrickTileWhiteInnerNw - decals: - 12707: 4,-45 - - node: - color: '#439909FF' - id: BrickTileWhiteInnerNw - decals: - 5849: 47,-59 - - node: - zIndex: 3 - color: '#439909FF' - id: BrickTileWhiteInnerNw - decals: - 10446: 40,-56 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteInnerNw - decals: - 3992: 41,-23 - 4037: 32,-31 - 4038: 27,-31 - 4070: 18,-28 - 4074: 19,-25 - 4094: 27,-26 - 4116: 35,-21 - 4207: 26,-35 - 4221: 19,-26 - 4241: 28,-34 - 4256: 35,-35 - 4258: 35,-29 - 4301: 46,-25 - 4323: 35,-24 - 4327: 24,-20 - 4588: 19,-36 - 4589: 40,-33 - 4590: 40,-40 - 4591: 40,-46 - 4705: 39,-40 - 4706: 39,-48 - 5774: 48,-28 - 5775: 49,-27 - 5785: 40,-52 - 5789: 39,-53 - 6875: 39,-24 - - node: - zIndex: 4 - color: '#52B4E9FF' - id: BrickTileWhiteInnerNw - decals: - 8498: 20,-30 - - node: - zIndex: 5 - color: '#52B4E9FF' - id: BrickTileWhiteInnerNw - decals: - 11095: -13,31 - 11107: -13,27 - 12727: -14,30 - - node: - color: '#8932B8FF' - id: BrickTileWhiteInnerNw - decals: - 15463: -14,24 - - node: - color: '#8D1C99FC' - id: BrickTileWhiteInnerNw - decals: - 10285: -28,-30 - - node: - color: '#8D1C99FF' - id: BrickTileWhiteInnerNw - decals: - 10300: -29,-31 - 11471: -27,-36 - - node: - color: '#9FED58FC' - id: BrickTileWhiteInnerNw - decals: - 9552: 45,-6 - - node: - color: '#9FED58FF' - id: BrickTileWhiteInnerNw - decals: - 6119: 29,-3 - - node: - color: '#A46106FF' - id: BrickTileWhiteInnerNw - decals: - 9737: -20,-26 - 9821: -18,-28 - 10293: -25,-34 - 11514: -38,-37 - 11515: -39,-38 - 13614: -44,-38 - 15428: -36,-26 - 15429: -32,-21 - 15890: -42,-31 - 16230: -19,-20 - 16231: -20,-17 - 16239: -22,-18 - 16396: -38,-21 - 16400: -18,-19 - - node: - zIndex: 3 - color: '#A46106FF' - id: BrickTileWhiteInnerNw - decals: - 9642: -29,-38 - - node: - zIndex: 5 - color: '#A46106FF' - id: BrickTileWhiteInnerNw - decals: - 10389: -38,-31 - 10408: -34,-31 - 12710: -36,-39 - 14798: -27,-20 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerNw - decals: - 5272: 52,-41 - 5311: 51,-41 - 5368: 66,-27 - 5369: 66,-31 - 5370: 66,-35 - 5371: 66,-39 - 5372: 66,-45 - 5648: 65,-41 - 5658: 54,-40 - 5763: 52,-28 - 5962: 67,-54 - 6143: 65,-27 - 6889: 70,-24 - 9353: 68,-47 - 10738: 66,-26 - 10764: 70,-27 - 10765: 70,-27 - 10856: 63,-20 - 11005: 58,-27 - 11577: 53,-21 - 11578: 51,-18 - 11579: 52,-17 - 11664: 70,-41 - 11665: 74,-41 - 11666: 71,-44 - 11667: 78,-43 - 11681: 70,-46 - 11690: 71,-45 - 11695: 78,-44 - - node: - zIndex: 3 - color: '#D381C9FF' - id: BrickTileWhiteInnerNw - decals: - 11795: 55,-31 - - node: - angle: 3.141592653589793 rad - color: '#D381C9FF' - id: BrickTileWhiteInnerNw - decals: - 5243: 55,-41 - 5246: 61,-41 - - node: - color: '#EFB341FF' - id: BrickTileWhiteInnerNw - decals: - 6239: -1,-70 - 6256: 0,-72 - 6415: 5,-55 - 6416: 9,-55 - 6425: 1,-58 - 6620: -8,-75 - 6738: 3,-74 - 6763: -1,-74 - 6865: -7,-54 - 9013: -13,-56 - 11866: 8,-66 - 11867: 5,-64 - 11868: 6,-68 - 12319: 5,-62 - 12377: -73,17 - - node: - zIndex: 1 - color: '#EFB341FF' - id: BrickTileWhiteInnerNw - decals: - 11333: -67,10 - 11334: -65,10 - - node: - zIndex: 4 - color: '#EFB341FF' - id: BrickTileWhiteInnerNw - decals: - 7675: -3,-59 - 12012: -21,-69 - 12013: -18,-69 - 12038: -20,-70 - 12039: -14,-70 - 12069: -7,-73 - 12072: -16,-65 - 12095: -3,-70 - 12108: -16,-79 - 12109: -16,-73 - - node: - zIndex: 5 - color: '#EFB341FF' - id: BrickTileWhiteInnerNw - decals: - 7686: -2,-37 - - node: - color: '#FA7500FF' - id: BrickTileWhiteInnerNw - decals: - 4431: 21,-19 - 4435: 21,-21 - - node: - color: '#FFA500FF' - id: BrickTileWhiteInnerNw - decals: - 8624: -2,24 - - node: - color: '#0096FFFF' + color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 8634: -6,26 + 1032: -13,83 - node: - color: '#32CD32FF' + color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 8646: -10,26 + 3292: 71,52 - node: - color: '#334E6DFF' + color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 3762: -8,-20 - 3863: 5,-12 - 3906: 7,-18 - 3945: -13,-17 - 4639: -8,-15 - 4640: -8,-19 - 4652: -16,-13 - 7183: -16,-11 - 9991: -16,-3 - 10106: -7,-19 - 10107: -9,-26 - 10118: -11,-27 - 13661: -4,-3 - 15971: -4,-9 - 15995: 1,-14 - 15996: -3,-14 - 15997: -4,-11 - 15998: 1,-19 - 16012: -1,-20 - 16062: -6,-8 - 16067: -6,-8 - 16091: -3,-22 - 16172: -34,9 - 16173: -29,9 - 16174: -33,6 + 399: 29,18 - node: - zIndex: 4 - color: '#334E6DFF' - id: BrickTileWhiteInnerSe - decals: - 8440: 5,-3 - 8441: 2,-3 - 8443: -7,-3 - 8471: -16,-22 - - node: - zIndex: 5 - color: '#334E6DFF' - id: BrickTileWhiteInnerSe - decals: - 7511: 13,-8 - - node: - zIndex: 7 - color: '#334E6DFF' - id: BrickTileWhiteInnerSe - decals: - 11185: -23,7 - - node: - color: '#3EB388FF' - id: BrickTileWhiteInnerSe - decals: - 12309: 4,-49 - 12689: 3,-50 - 12690: 5,-41 - - node: - zIndex: 5 - color: '#3EB388FF' - id: BrickTileWhiteInnerSe - decals: - 12705: 0,-40 - - node: - color: '#439909FF' - id: BrickTileWhiteInnerSe - decals: - 5848: 43,-57 - 5851: 40,-54 - 5852: 41,-53 - - node: - zIndex: 3 - color: '#439909FF' - id: BrickTileWhiteInnerSe - decals: - 10445: 36,-54 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteInnerSe - decals: - 3989: 33,-24 - 3998: 40,-25 - 3999: 42,-24 - 4000: 24,-24 - 4007: 24,-17 - 4053: 28,-24 - 4072: 20,-28 - 4115: 33,-19 - 4177: 25,-31 - 4206: 24,-35 - 4220: 21,-27 - 4240: 33,-35 - 4271: 36,-33 - 4272: 36,-33 - 4283: 29,-22 - 4300: 44,-23 - 4322: 41,-24 - 4453: 30,-35 - 4483: 44,-27 - 4512: 45,-21 - 4520: 41,-21 - 4521: 43,-20 - 4522: 45,-20 - 4584: 40,-49 - 4585: 40,-43 - 4586: 40,-36 - 4587: 21,-36 - 4660: 46,-28 - 4702: 40,-50 - 4703: 41,-46 - 4704: 41,-43 - 4797: 37,-48 - 4800: 37,-40 - 4801: 36,-47 - 4893: 19,-34 - 6872: 37,-24 - 6984: 26,-15 - 6993: 44,-15 - 6994: 34,-15 - - node: - zIndex: 3 - color: '#52B4E9FF' - id: BrickTileWhiteInnerSe - decals: - 10449: 22,-26 - - node: - zIndex: 4 - color: '#52B4E9FF' - id: BrickTileWhiteInnerSe - decals: - 8488: 16,-28 - 8489: 16,-26 - - node: - zIndex: 5 - color: '#52B4E9FF' - id: BrickTileWhiteInnerSe - decals: - 7478: 23,-15 - 7479: 32,-15 - 7480: 42,-15 - - node: - color: '#8932B8FF' - id: BrickTileWhiteInnerSe - decals: - 15467: -14,26 - - node: - color: '#8D1C99FF' - id: BrickTileWhiteInnerSe - decals: - 11467: -29,-30 - 11478: -39,-37 - 11479: -38,-36 - - node: - zIndex: 5 - color: '#8D1C99FF' - id: BrickTileWhiteInnerSe - decals: - 12714: -36,-38 - - node: - color: '#9FED58FC' - id: BrickTileWhiteInnerSe - decals: - 9548: 46,-7 - - node: - color: '#9FED58FF' - id: BrickTileWhiteInnerSe - decals: - 6114: 28,0 - - node: - color: '#A46106FF' - id: BrickTileWhiteInnerSe - decals: - 9775: -29,-20 - 9826: -31,-31 - 9827: -31,-29 - 10292: -25,-34 - 15430: -41,-22 - 16236: -22,-17 - 16237: -19,-18 - 16402: -20,-19 - - node: - zIndex: 1 - color: '#A46106FF' - id: BrickTileWhiteInnerSe - decals: - 14846: -22,-28 - - node: - zIndex: 5 - color: '#A46106FF' - id: BrickTileWhiteInnerSe - decals: - 10322: -28,-28 - 10328: -36,-22 - 10397: -40,-31 - 10401: -40,-27 - 14797: -27,-22 - 14814: -25,-27 - 14815: -23,-25 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerSe - decals: - 5182: 57,-17 - 5209: 55,-28 - 5220: 59,-20 - 5304: 63,-41 - 5379: 66,-41 - 5382: 66,-47 - 5383: 66,-37 - 5386: 66,-33 - 5387: 66,-29 - 5512: 66,-49 - 5609: 59,-18 - 5686: 54,-38 - 5768: 49,-29 - 5769: 50,-28 - 6888: 73,-24 - 7006: 58,-15 - 10743: 67,-28 - 10744: 67,-28 - 10745: 71,-22 - 10746: 71,-22 - 10747: 71,-25 - 10748: 71,-25 - 10808: 62,-17 - 10809: 67,-18 - 10819: 65,-15 - 10848: 66,-20 - 11004: 58,-25 - 11581: 56,-21 - 11583: 55,-18 - 11654: 71,-42 - 11655: 75,-41 - 11656: 78,-41 - 11657: 72,-46 - 11675: 77,-40 - 11693: 71,-47 - 11694: 78,-47 - - node: - zIndex: 3 - color: '#D381C9FF' - id: BrickTileWhiteInnerSe - decals: - 11766: 62,-28 - 11797: 61,-30 - 11799: 74,-24 - - node: - zIndex: 5 - color: '#D381C9FF' - id: BrickTileWhiteInnerSe - decals: - 7473: 50,-15 - 7474: 56,-15 - - node: - angle: 3.141592653589793 rad - color: '#D381C9FF' - id: BrickTileWhiteInnerSe - decals: - 5248: 58,-41 - - node: - color: '#EFB341FF' - id: BrickTileWhiteInnerSe - decals: - 6245: 2,-70 - 6293: 2,-68 - 6301: -3,-68 - 6326: 2,-62 - 6354: 3,-60 - 6609: -10,-75 - 6619: -5,-75 - 6678: -11,-70 - 6742: 5,-76 - 6762: 1,-75 - 6863: -6,-57 - 6868: -4,-56 - 9016: -12,-54 - 9017: -15,-52 - 11859: 4,-68 - 11860: 7,-60 - 11876: 9,-75 - 12321: 7,-62 - 12371: -70,13 - 12372: -68,18 - 12375: -71,14 - - node: - zIndex: 4 - color: '#EFB341FF' - id: BrickTileWhiteInnerSe - decals: - 12010: -16,-71 - 12011: -20,-71 - 12037: -17,-70 - 12064: -8,-68 - 12065: -10,-65 - 12066: -8,-64 - 12076: -5,-70 - 12113: -16,-77 - - node: - zIndex: 5 - color: '#EFB341FF' - id: BrickTileWhiteInnerSe - decals: - 7711: -13,-37 - - node: - color: '#FA7500FF' - id: BrickTileWhiteInnerSe - decals: - 4427: 19,-17 - 4428: 19,-19 - 6982: 20,-15 - - node: - zIndex: 5 - color: '#FA7500FF' - id: BrickTileWhiteInnerSe - decals: - 7476: 18,-15 - - node: - color: '#FFA500FF' - id: BrickTileWhiteInnerSe - decals: - 8619: -2,26 - - node: - color: '#0096FFFF' + color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 8633: -6,26 + 1031: -11,83 - node: - color: '#32CD32FF' + color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 8645: -10,26 - - node: - color: '#334E6DFC' - id: BrickTileWhiteInnerSw - decals: - 11017: 85,-3 - 11024: 84,-5 - - node: - color: '#334E6DFF' - id: BrickTileWhiteInnerSw - decals: - 3760: -8,-20 - 3761: -8,-20 - 3764: -9,-13 - 3864: 7,-12 - 3888: 9,-13 - 3917: 5,-13 - 3929: 9,-18 - 3946: -11,-17 - 4631: -8,-15 - 4632: -8,-19 - 9990: 14,-3 - 11157: -24,3 - 12449: 14,-26 - 13660: -4,-3 - 15970: 2,-9 - 15999: -3,-19 - 16000: 1,-14 - 16001: -3,-14 - 16002: 2,-11 - 16011: -1,-20 - 16063: 4,-8 - 16066: 4,-8 - 16092: 1,-22 - 16176: -28,9 - 16177: -33,9 - 16180: -29,9 - 16191: -29,6 - - node: - zIndex: 4 - color: '#334E6DFF' - id: BrickTileWhiteInnerSw - decals: - 8436: -7,-3 - 8438: 2,-3 - 8439: 5,-3 - 8457: 14,-24 - 12133: 85,-1 - - node: - zIndex: 5 - color: '#334E6DFF' - id: BrickTileWhiteInnerSw - decals: - 7514: -15,-8 - - node: - zIndex: 7 - color: '#334E6DFF' - id: BrickTileWhiteInnerSw - decals: - 11184: -21,7 - - node: - color: '#3EB388FF' - id: BrickTileWhiteInnerSw - decals: - 12688: 1,-42 - 12700: 3,-44 - 12729: 7,-41 - - node: - color: '#439909FF' - id: BrickTileWhiteInnerSw - decals: - 5841: 39,-53 - 5842: 38,-56 - 5843: 43,-57 - 5844: 47,-57 - 5850: 40,-54 - - node: - zIndex: 5 - color: '#52B4E996' - id: BrickTileWhiteInnerSw - decals: - 7464: 36,-15 - 7465: 31,-15 - 7466: 46,-15 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteInnerSw - decals: - 3988: 30,-24 - 3997: 39,-25 - 4036: 27,-28 - 4052: 27,-24 - 4071: 20,-28 - 4089: 27,-18 - 4114: 35,-19 - 4205: 26,-33 - 4219: 19,-27 - 4239: 29,-35 - 4242: 28,-34 - 4259: 35,-30 - 4282: 29,-22 - 4299: 46,-23 - 4321: 35,-24 - 4326: 24,-18 - 4452: 32,-35 - 4481: 41,-27 - 4482: 46,-27 - 4511: 45,-21 - 4518: 43,-20 - 4519: 45,-20 - 4580: 19,-36 - 4581: 40,-36 - 4582: 40,-43 - 4583: 40,-49 - 4699: 39,-40 - 4700: 39,-48 - 4701: 40,-50 - 4894: 21,-34 - 5772: 49,-29 - 5773: 48,-28 - 6873: 39,-24 - 6987: 44,-15 - 6989: 34,-15 - 6992: 25,-15 - - node: - zIndex: 3 - color: '#52B4E9FF' - id: BrickTileWhiteInnerSw - decals: - 10450: 25,-26 - 10452: 39,-33 - - node: - zIndex: 5 - color: '#52B4E9FF' - id: BrickTileWhiteInnerSw - decals: - 7467: 36,-15 - 7468: 31,-15 - 7469: 46,-15 - 11096: -13,31 - 12723: -14,32 - - node: - color: '#8932B8FF' - id: BrickTileWhiteInnerSw - decals: - 15464: -14,26 - - node: - color: '#8D1C99FF' - id: BrickTileWhiteInnerSw - decals: - 10301: -29,-31 - 11468: -27,-30 - 11477: -36,-36 - - node: - color: '#9FED58FC' - id: BrickTileWhiteInnerSw - decals: - 9549: 45,-7 - - node: - color: '#9FED58FF' - id: BrickTileWhiteInnerSw - decals: - 6116: 30,0 - 6126: 28,-1 - - node: - color: '#A46106FF' - id: BrickTileWhiteInnerSw - decals: - 9729: -18,-25 - 9734: -20,-23 - 9891: -32,-17 - 9892: -30,-17 - 11516: -39,-38 - 11524: -38,-35 - 15427: -36,-22 - 15891: -42,-31 - 16226: -19,-18 - 16227: -20,-17 - 16238: -22,-18 - 16401: -18,-19 - - node: - zIndex: 3 - color: '#A46106FF' - id: BrickTileWhiteInnerSw - decals: - 9643: -29,-38 - - node: - zIndex: 5 - color: '#A46106FF' - id: BrickTileWhiteInnerSw - decals: - 10324: -25,-28 - 10400: -38,-27 - 10404: -34,-29 - 10409: -34,-31 - 14816: -26,-25 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerSw - decals: - 5208: 55,-28 - 5271: 52,-41 - 5310: 51,-41 - 5380: 66,-41 - 5381: 66,-47 - 5384: 66,-37 - 5385: 66,-33 - 5390: 66,-29 - 5649: 65,-41 - 5650: 66,-49 - 5685: 54,-38 - 6144: 65,-28 - 6887: 70,-24 - 7007: 58,-15 - 9352: 68,-45 - 10739: 74,-22 - 10740: 74,-22 - 10741: 70,-25 - 10742: 70,-25 - 10780: 69,-18 - 10807: 66,-17 - 10818: 63,-15 - 10847: 61,-18 - 11003: 58,-25 - 11364: 74,-15 - 11575: 53,-19 - 11576: 57,-18 - 11580: 51,-18 - 11660: 71,-42 - 11661: 70,-46 - 11663: 78,-41 - 11676: 79,-40 - 11692: 71,-47 - 11702: 78,-47 - - node: - zIndex: 3 - color: '#D381C9FF' - id: BrickTileWhiteInnerSw - decals: - 11765: 62,-28 - 11796: 56,-30 - 11798: 62,-31 - - node: - zIndex: 5 - color: '#D381C9FF' - id: BrickTileWhiteInnerSw - decals: - 7470: 56,-15 - - node: - angle: 3.141592653589793 rad - color: '#D381C9FF' - id: BrickTileWhiteInnerSw - decals: - 5249: 61,-41 - 5269: 55,-41 - - node: - color: '#EFB341FF' - id: BrickTileWhiteInnerSw - decals: - 6236: -1,-70 - 6296: 3,-71 - 6300: -1,-68 - 6417: 5,-60 - 6418: 4,-52 - 6426: 1,-56 - 6605: -7,-76 - 6612: -8,-75 - 6739: 9,-76 - 6740: 5,-73 - 6741: 3,-75 - 6761: -3,-75 - 6864: -8,-54 - 9018: -13,-52 - 11857: 6,-68 - 12320: 5,-62 - 12376: -73,14 - - node: - zIndex: 4 - color: '#EFB341FF' - id: BrickTileWhiteInnerSw - decals: - 12008: -20,-71 - 12009: -16,-71 - 12034: -20,-70 - 12035: -14,-70 - 12070: -7,-71 - 12071: -16,-65 - 12094: -3,-70 - 12110: -16,-77 - - node: - zIndex: 5 - color: '#EFB341FF' - id: BrickTileWhiteInnerSw - decals: - 7680: -2,-37 - - node: - color: '#FA7500FF' - id: BrickTileWhiteInnerSw - decals: - 4436: 21,-19 - 4437: 21,-17 - 6980: 20,-15 - - node: - zIndex: 5 - color: '#FA7500FF' - id: BrickTileWhiteInnerSw - decals: - 7477: 22,-15 - - node: - color: '#FFA500FF' - id: BrickTileWhiteInnerSw - decals: - 8618: -2,26 - - node: - color: '#0096FFFF' - id: BrickTileWhiteLineE - decals: - 8628: -6,25 - - node: - color: '#32CD32FF' - id: BrickTileWhiteLineE - decals: - 8643: -10,25 + 3291: 71,52 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 2270: -6,-52 + 980: -16,82 + 981: -16,83 + 1006: -11,82 + 1007: -11,81 + 1008: -11,80 + 1009: -11,79 + 1010: -11,78 + 1011: -11,77 + 1026: -13,78 + 1027: -13,79 + 1028: -13,80 + 1029: -13,81 + 1030: -13,82 - node: - color: '#334E6DFC' + color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 11011: 84,-5 - 11012: 84,-3 + 3284: 72,54 + 3285: 72,53 + 5106: 38,62 + 5107: 38,60 - node: - color: '#334E6DFF' + color: '#EFB34196' id: BrickTileWhiteLineE decals: - 3747: -7,-16 - 3748: -7,-15 - 3839: -8,-10 - 3846: 6,-10 - 3861: 6,-12 - 3890: 8,-15 - 3922: 8,-16 - 3923: 8,-17 - 3924: 8,-18 - 3947: -12,-17 - 3948: -12,-16 - 3949: -12,-15 - 3960: -7,-18 - 3961: -7,-17 - 4141: 6,-11 - 4143: -8,-11 - 4604: -9,-19 - 4605: -9,-18 - 4606: -9,-17 - 4607: -9,-15 - 4608: -9,-14 - 4609: -9,-13 - 4645: -16,-14 - 4646: -16,-12 - 4647: -16,-15 - 4648: -16,-16 - 9512: -12,-14 - 10092: -8,-29 - 10093: -8,-28 - 10094: -8,-27 - 10095: -8,-26 - 10096: -8,-25 - 10097: -8,-24 - 10098: -8,-23 - 10099: -8,-22 - 10100: -8,-21 - 11142: -21,0 - 11143: -21,1 - 11144: -23,0 - 11145: -23,0 - 11146: -23,1 - 15894: -7,-14 - 15895: -7,-13 - 15945: 1,-18 - 15946: 1,-17 - 15947: 1,-16 - 15948: 1,-15 - 15949: -3,-15 - 15950: -3,-16 - 15951: -3,-17 - 15952: -3,-18 - 15953: -3,-19 - 15954: -4,-13 - 15955: -4,-12 - 15957: -4,-10 - 15958: 2,-13 - 15959: 2,-12 - 15960: 2,-10 - 15961: 2,-11 - 16085: -3,-25 - 16086: -3,-24 - 16087: -3,-23 - 16158: -34,5 - 16159: -34,6 - 16160: -34,7 - 16161: -34,8 - 16162: -33,7 - 16163: -28,5 - 16164: -28,6 - 16165: -28,7 - 16166: -28,8 - 16169: -29,7 - 16170: -29,8 - 16193: -29,6 - - node: - zIndex: 4 - color: '#334E6DFF' - id: BrickTileWhiteLineE - decals: - 8432: -16,-7 - 8433: -16,-6 - 8434: -16,-5 - 8435: -16,-4 - 8472: -16,-28 - 8473: -16,-27 - 8474: -16,-26 - 8475: -16,-25 - 8476: -16,-24 - 8477: -16,-23 - 12130: 84,0 - 12131: 84,-1 - - node: - zIndex: 5 - color: '#334E6DFF' - id: BrickTileWhiteLineE - decals: - 7486: -16,-10 - 7487: -16,-8 - 10957: 84,-6 - 14667: -18,3 - 14668: -18,4 - - node: - zIndex: 7 - color: '#334E6DFF' - id: BrickTileWhiteLineE - decals: - 11179: -23,4 - 11180: -23,5 - 11181: -23,6 - - node: - color: '#3AB3DAFF' - id: BrickTileWhiteLineE - decals: - 12821: 21,-45 - 12822: 21,-46 - - node: - color: '#3EB388FF' - id: BrickTileWhiteLineE - decals: - 12662: 0,-50 - 12663: 0,-49 - 12664: 0,-48 - 12665: 0,-47 - 12666: 0,-46 - 12667: 0,-45 - 12668: 0,-42 - 12669: 0,-41 - 12672: 6,-41 - 12673: 3,-46 - 12674: 3,-45 - 12676: 3,-51 - 12733: 7,-43 - - node: - color: '#439909FF' - id: BrickTileWhiteLineE - decals: - 5791: 47,-60 - 5794: 36,-55 - 5795: 37,-53 - 5796: 41,-60 - 5797: 41,-59 - 5798: 41,-58 - 5799: 44,-60 - 5800: 47,-58 - 5801: 43,-58 - 5802: 40,-55 - 5814: 47,-59 - 5838: 47,-57 - - node: - color: '#474F52FF' - id: BrickTileWhiteLineE - decals: - 12863: 21,-66 - 12864: 21,-65 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteLineE - decals: - 4015: 26,-28 - 4034: 31,-31 - 4043: 29,-24 - 4046: 26,-24 - 4047: 26,-23 - 4051: 36,-26 - 4055: 26,-27 - 4064: 22,-27 - 4076: 26,-22 - 4077: 26,-21 - 4078: 26,-20 - 4087: 26,-18 - 4088: 26,-17 - 4093: 26,-26 - 4096: 34,-21 - 4097: 34,-19 - 4098: 34,-18 - 4099: 34,-17 - 4105: 34,-22 - 4199: 25,-37 - 4200: 25,-36 - 4201: 25,-35 - 4202: 25,-33 - 4203: 25,-32 - 4217: 18,-26 - 4218: 18,-27 - 4223: 28,-35 - 4224: 28,-34 - 4266: 36,-27 - 4267: 36,-28 - 4268: 36,-29 - 4269: 36,-30 - 4270: 36,-31 - 4280: 29,-23 - 4295: 45,-25 - 4296: 45,-23 - 4319: 34,-24 - 4382: 26,-16 - 4392: 21,-24 - 4393: 21,-23 - 4443: 31,-33 - 4444: 31,-34 - 4445: 31,-35 - 4451: 31,-32 - 4458: 45,-26 - 4459: 45,-27 - 4473: 40,-27 - 4474: 40,-26 - 4488: 36,-34 - 4489: 45,-22 - 4491: 44,-20 - 4492: 44,-19 - 4493: 44,-18 - 4494: 44,-17 - 4495: 42,-20 - 4496: 42,-19 - 4498: 46,-20 - 4499: 46,-19 - 4500: 46,-18 - 4528: 44,-16 - 4537: 41,-22 - 4561: 18,-36 - 4562: 39,-33 - 4563: 39,-34 - 4564: 39,-35 - 4565: 39,-36 - 4566: 39,-40 - 4567: 39,-41 - 4568: 39,-42 - 4569: 39,-43 - 4570: 39,-46 - 4571: 39,-47 - 4572: 39,-48 - 4573: 39,-49 - 4661: 41,-33 - 4662: 41,-34 - 4663: 41,-35 - 4664: 41,-36 - 4665: 41,-37 - 4666: 41,-38 - 4667: 41,-39 - 4668: 41,-40 - 4669: 41,-41 - 4670: 41,-42 - 4671: 41,-44 - 4672: 41,-45 - 4674: 41,-47 - 4675: 41,-48 - 4676: 41,-49 - 4765: 37,-41 - 4768: 37,-42 - 4774: 37,-44 - 4775: 37,-43 - 4790: 37,-47 - 4791: 37,-46 - 4792: 37,-45 - 4793: 37,-49 - 4794: 37,-50 - 4885: 20,-34 - 4886: 20,-33 - 5787: 40,-51 - 6869: 38,-24 - - node: - zIndex: 4 - color: '#52B4E9FF' - id: BrickTileWhiteLineE - decals: - 8484: 16,-29 - 8485: 16,-27 - 8491: 20,-29 - - node: - zIndex: 5 - color: '#52B4E9FF' - id: BrickTileWhiteLineE - decals: - 11103: -13,28 - 11104: -13,29 - 11105: -13,30 - 11106: -13,31 - 12715: -13,32 - 12716: -15,32 - 12717: -15,33 - - node: - color: '#8932B8FF' - id: BrickTileWhiteLineE - decals: - 15465: -14,25 - - node: - color: '#8D1C99FC' - id: BrickTileWhiteLineE - decals: - 10287: -27,-31 - 10288: -27,-33 - - node: - color: '#8D1C99FF' - id: BrickTileWhiteLineE - decals: - 11465: -29,-34 - 11466: -29,-32 - 11531: -36,-36 - - node: - zIndex: 3 - color: '#8D1C99FF' - id: BrickTileWhiteLineE - decals: - 9627: -25,-35 - 9630: -25,-37 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteLineE - decals: - 12825: 21,-50 - 12826: 21,-49 - - node: - color: '#9FED58FC' - id: BrickTileWhiteLineE - decals: - 9529: 48,-8 - 9530: 48,-7 - 9531: 48,-6 - 9533: 48,-5 - 9534: 44,-7 - 9535: 44,-6 - - node: - color: '#9FED58FF' - id: BrickTileWhiteLineE - decals: - 6110: 28,-3 - 6128: 29,0 - 6129: 32,-3 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineE - decals: - 9696: -21,-23 - 9739: -27,-24 - 9740: -27,-23 - 9742: -27,-21 - 9781: -27,-19 - 9783: -27,-17 - 9824: -31,-30 - 9825: -31,-32 - 9885: -32,-20 - 9886: -32,-19 - 9887: -32,-18 - 10296: -27,-32 - 11500: -39,-38 - 11501: -29,-35 - 11502: -29,-33 - 11503: -29,-31 - 12734: -27,-18 - 12735: -27,-16 - 16208: -20,-18 - 16209: -20,-17 - 16210: -22,-21 - 16211: -22,-20 - 16212: -22,-19 - 16229: -22,-18 - - node: - zIndex: 3 - color: '#A46106FF' - id: BrickTileWhiteLineE - decals: - 9652: -25,-36 - 9653: -25,-38 - - node: - zIndex: 5 - color: '#A46106FF' - id: BrickTileWhiteLineE - decals: - 10321: -25,-28 - 10323: -28,-29 - 10358: -41,-25 - 10359: -41,-24 - 10360: -41,-23 - 10361: -36,-23 - 10362: -36,-24 - 10363: -36,-25 - 10364: -36,-26 - 10365: -36,-27 - 10366: -36,-28 - 10367: -36,-29 - 10368: -36,-30 - 10382: -40,-29 - 10383: -40,-28 - 10393: -40,-30 - 10396: -40,-32 - 12711: -36,-37 - 14799: -27,-20 - 14800: -21,-26 - 14805: -27,-25 - 14819: -21,-27 - - node: - color: '#B02E26FF' - id: BrickTileWhiteLineE - decals: - 12823: 21,-48 - 12824: 21,-47 - - node: - color: '#C74EBDFF' - id: BrickTileWhiteLineE - decals: - 12861: 21,-68 - 12862: 21,-67 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineE - decals: - 4981: 59,-19 - 4982: 59,-20 - 5221: 59,-21 - 5329: 65,-37 - 5332: 65,-33 - 5333: 65,-32 - 5334: 65,-31 - 5335: 65,-29 - 5336: 65,-28 - 5337: 65,-27 - 5341: 65,-41 - 5342: 65,-40 - 5343: 65,-39 - 5344: 65,-47 - 5345: 65,-46 - 5346: 65,-45 - 5431: 67,-43 - 5434: 67,-42 - 5435: 67,-41 - 5436: 67,-40 - 5437: 67,-39 - 5438: 67,-38 - 5439: 67,-36 - 5440: 67,-35 - 5441: 67,-34 - 5442: 67,-33 - 5444: 67,-32 - 5445: 67,-31 - 5446: 67,-31 - 5447: 67,-30 - 5448: 67,-30 - 5449: 67,-29 - 5451: 67,-29 - 5452: 67,-29 - 5653: 67,-48 - 5654: 67,-47 - 5656: 67,-45 - 5657: 67,-44 - 5684: 54,-39 - 5942: 66,-50 - 5955: 66,-54 - 6015: 70,-52 - 6885: 69,-24 - 10708: 73,-19 - 10709: 73,-20 - 10710: 73,-21 - 10711: 73,-22 - 10712: 73,-22 - 10729: 66,-25 - 10730: 66,-24 - 10731: 66,-23 - 10732: 66,-22 - 10733: 66,-21 - 10734: 66,-21 - 10735: 66,-21 - 10773: 71,-26 - 10781: 67,-19 - 10792: 65,-17 - 10793: 65,-16 - 10816: 58,-16 - 10854: 62,-20 - 10855: 62,-20 - 11002: 58,-26 - 11559: 53,-21 - 11560: 53,-20 - 11585: 54,-16 - 11588: 67,-37 - 11589: 65,-36 - 11590: 65,-35 - 11607: 78,-38 - 11608: 78,-39 - 11609: 78,-40 - 11610: 72,-45 - 11611: 72,-47 - 11630: 71,-43 - 11631: 78,-42 - 11685: 70,-47 - 11686: 70,-46 - 11687: 70,-45 - - node: - zIndex: 3 - color: '#D381C9FF' - id: BrickTileWhiteLineE - decals: - 11734: 77,-47 - 11735: 77,-46 - 11736: 77,-45 - 11737: 77,-44 - 11767: 62,-34 - 11768: 62,-33 - 11769: 62,-32 - 11770: 62,-30 - 11771: 62,-31 - 11772: 62,-29 - 11794: 55,-30 - - node: - angle: 3.141592653589793 rad - color: '#D381C9FF' - id: BrickTileWhiteLineE - decals: - 5235: 56,-41 - 5259: 62,-41 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineE - decals: - 6230: -2,-70 - 6255: -1,-72 - 6302: -2,-68 - 6303: -2,-67 - 6311: 8,-64 - 6356: 4,-60 - 6357: 4,-59 - 6359: 8,-60 - 6360: 8,-59 - 6382: 4,-58 - 6383: 4,-57 - 6384: 4,-56 - 6385: 4,-55 - 6386: 8,-58 - 6387: 8,-57 - 6388: 8,-55 - 6390: 8,-56 - 6414: 3,-52 - 6422: 0,-56 - 6599: -10,-76 - 6600: -10,-74 - 6602: -5,-73 - 6603: -5,-72 - 6604: -5,-76 - 6724: 4,-73 - 6735: 9,-76 - 6753: 1,-78 - 6754: 1,-77 - 6755: 1,-76 - 6765: -1,-73 - 6860: -6,-56 - 6861: -6,-55 - 9019: -14,-52 - 9020: -14,-51 - 9021: -14,-56 - 9022: -14,-57 - 11821: 9,-68 - 11822: 9,-67 - 11824: 8,-72 - 11825: 8,-65 - 11826: 8,-63 - 11827: 8,-62 - 11828: 8,-61 - 11829: 4,-64 - 11831: 4,-66 - 11832: 4,-67 - 11833: 4,-65 - 11834: 4,-69 - 11835: 4,-70 - 11836: 4,-71 - 11837: 4,-72 - 12316: 4,-62 - 12340: -74,14 - 12341: -74,15 - 12342: -74,16 - 12343: -74,17 - 12344: -67,13 - 12345: -67,14 - 12346: -67,15 - 12347: -67,16 - 12348: -67,17 - - node: - zIndex: 1 - color: '#EFB341FF' - id: BrickTileWhiteLineE - decals: - 11323: -67,11 - 11324: -67,12 - - node: - zIndex: 4 - color: '#EFB341FF' - id: BrickTileWhiteLineE - decals: - 7674: 0,-58 - 12018: -15,-70 - 12019: -21,-70 - 12057: -5,-71 - 12058: -5,-69 - 12059: -5,-68 - 12060: -5,-67 - 12061: -5,-66 - 12062: -5,-65 - 12063: -5,-64 - 12089: -10,-64 - 12090: -10,-66 - 12102: -14,-76 - 12103: -14,-75 - 12104: -14,-74 - 12115: -15,-80 - 12120: -16,-72 - 12121: -16,-78 - - node: - zIndex: 5 - color: '#EFB341FF' - id: BrickTileWhiteLineE - decals: - 7708: -13,-38 - 7709: -13,-36 - - node: - color: '#FA7500FF' - id: BrickTileWhiteLineE - decals: - 4408: 20,-21 - 4409: 20,-19 - 4410: 20,-17 - 4425: 20,-16 - - node: - color: '#FED83DFF' - id: BrickTileWhiteLineE - decals: - 12859: 21,-64 - 12860: 21,-63 - - node: - color: '#FFA500FF' - id: BrickTileWhiteLineE - decals: - 8617: -2,25 + 4079: -119,106 + 4080: -119,107 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 5738: 69,-30 + 372: 33,15 + 395: 31,19 + 400: 29,16 + 401: 29,15 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 2269: -7,-51 + 982: -20,84 + 983: -19,84 + 984: -18,84 + 985: -17,84 + 1024: -12,83 + 1025: -12,77 - node: - color: '#334E6DFF' + color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 3855: 5,-13 - 3856: 7,-13 - 3887: 9,-14 - 3896: 6,-19 - 3897: 5,-19 - 3898: 7,-19 - 3925: 9,-19 - 3926: 10,-19 - 3927: 11,-19 - 3928: 12,-19 - 3932: -14,-13 - 3933: -13,-13 - 3934: -12,-13 - 3935: -11,-13 - 3950: -11,-18 - 3951: -13,-18 - 3952: -14,-18 - 4140: -10,-13 - 4602: -8,-16 - 4603: -8,-20 - 4653: -15,-13 - 10104: -10,-27 - 10115: -9,-27 - 10116: -10,-27 - 11135: -24,-1 - 11136: -22,-1 - 11137: -20,-1 - 11150: -19,3 - 11151: -20,3 - 11153: -22,3 - 11154: -24,3 - 12193: -3,-30 - 12194: -2,-30 - 12195: -1,-30 - 12196: 0,-30 - 12197: 1,-30 - 12451: 13,-26 - 15923: -5,-19 - 15924: -4,-19 - 15976: -6,-19 - 15977: 3,-19 - 15978: 2,-19 - 15980: 4,-19 - 15986: -3,-14 - 15987: -2,-14 - 15988: -1,-14 - 15989: 0,-14 - 15990: 1,-14 - 16006: -2,-20 - 16007: -1,-20 - 16008: 0,-20 - 16045: -9,-9 - 16046: -8,-9 - 16047: -7,-9 - 16048: -6,-9 - 16049: 7,-9 - 16050: 6,-9 - 16051: 5,-9 - 16052: 4,-9 - 16054: 2,-8 - 16055: 1,-8 - 16056: 0,-8 - 16057: -1,-8 - 16058: -2,-8 - 16059: -3,-8 - 16061: -4,-8 - 16079: -2,-26 - 16080: -1,-26 - 16081: 0,-26 - 16101: -3,-11 - 16102: -2,-11 - 16103: -1,-11 - 16104: 0,-11 - 16105: 1,-11 - 16144: -33,9 - 16145: -32,9 - 16146: -31,9 - 16147: -30,9 - 16148: -29,9 - 16149: -31,6 - 16150: -32,6 - 16151: -30,6 + 654: 97,55 + 655: 93,55 + 3283: 71,55 + 5100: 37,63 + 5101: 36,63 - node: - zIndex: 4 - color: '#334E6DFF' + color: '#EFB34196' id: BrickTileWhiteLineN decals: - 8444: 6,-30 - 8445: 7,-30 - 8446: 8,-30 - 8447: 10,-30 - 8450: 12,-30 - 8451: 11,-30 - 8463: -9,-30 - 8465: -7,-30 - 8466: -6,-30 - 8467: -5,-30 - 8468: -4,-30 - 8478: 2,-30 - 8479: 3,-30 - 8480: 4,-30 - 12142: 85,-2 - 12143: 85,-4 + 4081: -122,108 + 4082: -121,108 + 4083: -120,108 - node: - zIndex: 5 - color: '#334E6DFF' + color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 7488: -15,-9 - 7489: -14,-9 - 7490: -13,-9 - 7491: -12,-9 - 7493: -10,-9 - 7501: 8,-9 - 7502: 10,-9 - 7503: 11,-9 - 7505: 12,-9 - 7506: 13,-9 - 10945: 83,-7 - 10946: 85,-7 + 373: 32,16 + 380: 27,12 + 381: 28,12 + 392: 30,20 + 393: 28,20 + 394: 27,20 - node: - color: '#3EB388FF' - id: BrickTileWhiteLineN - decals: - 12303: 9,-48 - 12304: 8,-48 - 12305: 7,-48 - 12306: 6,-48 - 12307: 5,-48 - 12684: 4,-42 - 12685: 5,-42 - 12696: 2,-43 - 12697: 1,-43 - - node: - color: '#439909FF' - id: BrickTileWhiteLineN - decals: - 5853: 46,-56 - 5854: 45,-56 - 5855: 44,-56 - 5856: 43,-56 - 5857: 42,-56 - 5858: 41,-56 - 5860: 39,-56 - 5861: 38,-56 - 5862: 37,-56 - 5864: 35,-52 - 5865: 36,-52 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteLineN - decals: - 3978: 40,-23 - 3981: 36,-23 - 3984: 30,-25 - 3985: 31,-25 - 3986: 33,-25 - 4001: 24,-25 - 4008: 24,-18 - 4021: 27,-29 - 4027: 29,-29 - 4028: 30,-29 - 4029: 31,-29 - 4030: 32,-29 - 4031: 33,-29 - 4032: 28,-29 - 4044: 28,-25 - 4045: 27,-25 - 4050: 32,-25 - 4066: 23,-25 - 4067: 22,-25 - 4083: 30,-19 - 4084: 29,-19 - 4085: 28,-19 - 4086: 27,-19 - 4106: 35,-23 - 4108: 33,-20 - 4109: 32,-20 - 4110: 35,-20 - 4190: 26,-34 - 4191: 24,-36 - 4192: 23,-36 - 4193: 27,-34 - 4209: 19,-28 - 4210: 20,-28 - 4211: 21,-28 - 4233: 29,-36 - 4234: 30,-36 - 4236: 32,-36 - 4237: 33,-36 - 4290: 43,-24 - 4291: 44,-24 - 4292: 46,-24 - 4293: 46,-24 - 4294: 47,-24 - 4303: 35,-25 - 4305: 37,-25 - 4307: 39,-25 - 4308: 41,-25 - 4309: 40,-25 - 4310: 35,-23 - 4328: 23,-18 - 4442: 34,-29 - 4475: 41,-28 - 4476: 42,-28 - 4477: 43,-28 - 4478: 44,-28 - 4479: 46,-28 - 4485: 23,-20 - 4516: 43,-21 - 4517: 45,-21 - 4574: 40,-50 - 4575: 40,-44 - 4576: 40,-37 - 4577: 21,-37 - 4578: 20,-37 - 4579: 19,-37 - 4693: 37,-32 - 4694: 38,-32 - 4695: 39,-32 - 4696: 40,-32 - 4762: 37,-40 - 4763: 36,-40 - 4764: 35,-40 - 4787: 36,-48 - 4788: 35,-48 - 4789: 34,-48 - 4796: 38,-48 - 4803: 38,-40 - 4887: 18,-35 - 4888: 19,-35 - 4889: 21,-35 - 4890: 22,-35 - 5777: 47,-28 - 15394: 47,-46 - 15407: 42,-46 - 15531: -14,27 - - node: - zIndex: 3 - color: '#52B4E9FF' - id: BrickTileWhiteLineN - decals: - 10453: 36,-25 - - node: - zIndex: 4 - color: '#52B4E9FF' - id: BrickTileWhiteLineN - decals: - 8486: 17,-28 - 8493: 18,-30 - 8494: 19,-30 - 8496: 21,-30 - 8497: 22,-30 - - node: - zIndex: 5 - color: '#52B4E9FF' - id: BrickTileWhiteLineN - decals: - 11098: -12,27 - 12725: -14,31 - - node: - color: '#8D1C99FC' - id: BrickTileWhiteLineN - decals: - 10289: -26,-34 - 10290: -24,-34 - - node: - color: '#8D1C99FF' - id: BrickTileWhiteLineN - decals: - 11481: -37,-39 - 11482: -42,-37 - 11532: -37,-35 - - node: - zIndex: 3 - color: '#8D1C99FF' - id: BrickTileWhiteLineN - decals: - 9660: -30,-38 - - node: - color: '#9FED58FC' - id: BrickTileWhiteLineN - decals: - 9523: 44,-4 - 9524: 45,-4 - 9525: 46,-4 - 9526: 47,-4 - 9527: 45,-8 - 9528: 46,-8 - - node: - color: '#9FED58FF' - id: BrickTileWhiteLineN - decals: - 6127: 28,-1 - 6131: 31,-2 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineN - decals: - 9720: -20,-24 - 9721: -19,-24 - 9746: -29,-21 - 9747: -30,-21 - 9748: -31,-21 - 9749: -33,-21 - 9772: -34,-21 - 10298: -30,-31 - 11486: -31,-38 - 11487: -38,-39 - 11489: -43,-37 - 11508: -28,-36 - 11522: -38,-35 - 12397: -43,-31 - 12398: -44,-31 - 12399: -46,-31 - 12400: -45,-31 - 16218: -21,-17 - 16219: -23,-18 - 16220: -24,-18 - 16221: -19,-19 - 16395: -40,-21 - - node: - zIndex: 5 - color: '#A46106FF' - id: BrickTileWhiteLineN - decals: - 10329: -35,-21 - 10330: -36,-21 - 10331: -37,-21 - 10335: -39,-21 - 10336: -41,-21 - 10337: -40,-26 - 10338: -39,-26 - 10339: -38,-26 - 10340: -37,-26 - 10395: -39,-31 - 10402: -35,-31 - 14801: -23,-26 - 14802: -26,-26 - 14803: -25,-26 - 14804: -24,-26 - - node: - color: '#B02E26FF' - id: BrickTileWhiteLineN - decals: - 11128: -9,4 - 11129: -8,4 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 1186: 60,-27 - 1187: 59,-27 - 1189: 57,-27 - 1190: 56,-27 - 1191: 55,-27 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineN - decals: - 5183: 57,-18 - 5184: 56,-18 - 5187: 55,-27 - 5188: 56,-27 - 5189: 57,-27 - 5190: 59,-27 - 5193: 60,-27 - 5212: 52,-31 - 5213: 53,-31 - 5223: 53,-42 - 5224: 54,-42 - 5225: 55,-42 - 5267: 52,-42 - 5274: 52,-40 - 5275: 56,-40 - 5276: 55,-40 - 5277: 53,-40 - 5278: 57,-40 - 5279: 58,-40 - 5280: 59,-40 - 5281: 60,-40 - 5282: 61,-40 - 5283: 61,-40 - 5284: 62,-40 - 5323: 66,-48 - 5324: 66,-42 - 5325: 66,-38 - 5326: 66,-34 - 5327: 66,-30 - 5759: 64,-41 - 5780: 51,-28 - 5959: 67,-51 - 5960: 68,-51 - 5961: 69,-51 - 6142: 64,-27 - 6883: 72,-25 - 6884: 73,-25 - 9345: 68,-46 - 10704: 70,-18 - 10705: 71,-18 - 10706: 72,-18 - 10716: 70,-23 - 10717: 71,-23 - 10721: 69,-18 - 10751: 68,-27 - 10752: 69,-27 - 10753: 72,-27 - 10754: 73,-27 - 10783: 67,-18 - 10784: 66,-18 - 10785: 61,-18 - 10786: 62,-18 - 10811: 68,-18 - 10817: 60,-18 - 10844: 70,-25 - 10845: 70,-25 - 10846: 71,-25 - 10999: 53,-27 - 11000: 54,-27 - 11571: 54,-22 - 11572: 55,-22 - 11573: 56,-22 - 11574: 52,-21 - 11595: 74,-27 - 11633: 73,-46 - 11638: 71,-41 - 11639: 72,-41 - 11640: 73,-41 - 11641: 75,-41 - 11643: 77,-41 - 11644: 76,-41 - 11680: 69,-46 - 11688: 71,-48 - 11707: 78,-48 - - node: - zIndex: 3 - color: '#D381C9FF' - id: BrickTileWhiteLineN - decals: - 11778: 59,-31 - 11779: 60,-31 - 11780: 61,-31 - 11781: 58,-31 - 11782: 57,-31 - 11783: 56,-31 - 11784: 54,-31 - - node: - angle: 3.141592653589793 rad - color: '#D381C9FF' - id: BrickTileWhiteLineN - decals: - 5238: 53,-40 - 5239: 54,-40 - 5240: 55,-40 - 5250: 58,-40 - 5251: 59,-40 - 5252: 60,-40 - 5253: 61,-40 - 5268: 52,-40 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineN - decals: - 6202: 0,-71 - 6203: 1,-71 - 6204: 2,-71 - 6253: -1,-71 - 6269: 2,-69 - 6270: 1,-69 - 6271: 0,-69 - 6272: -1,-69 - 6316: 2,-63 - 6317: 1,-63 - 6322: 2,-61 - 6323: 2,-61 - 6395: 1,-57 - 6396: 2,-57 - 6397: 3,-57 - 6409: 8,-53 - 6410: 7,-53 - 6411: 6,-53 - 6412: 5,-53 - 6413: 4,-53 - 6567: -9,-69 - 6568: -10,-69 - 6569: -14,-69 - 6573: -17,-73 - 6575: -15,-73 - 6579: -11,-73 - 6665: -12,-71 - 6666: -11,-71 - 6686: -9,-75 - 6687: -9,-75 - 6725: 5,-74 - 6726: 6,-74 - 6727: 7,-74 - 6728: 7,-74 - 6744: -4,-74 - 6745: -3,-74 - 6746: -2,-74 - 6747: 0,-74 - 6748: 1,-74 - 6749: 2,-74 - 6819: 2,-43 - 6851: -8,-54 - 6858: -5,-57 - 6859: -4,-57 - 9008: -15,-53 - 9009: -13,-53 - 9010: -11,-54 - 9011: -10,-54 - 9012: -9,-54 - 10195: -12,-37 - 11850: 3,-61 - 11851: 5,-61 - 11852: 6,-61 - 11854: 7,-61 - 11855: 5,-68 - 11856: 7,-66 - 11878: 10,-74 - 12313: 5,-63 - 12314: 6,-63 - 12315: 7,-63 - 12333: -68,17 - 12334: -71,18 - 12335: -72,18 - 12336: -73,18 - 12337: -73,13 - 12338: -72,13 - 12339: -71,13 - 12379: -69,17 - - node: - zIndex: 1 - color: '#EFB341FF' - id: BrickTileWhiteLineN - decals: - 11331: -66,10 - 11332: -68,10 - - node: - zIndex: 4 - color: '#EFB341FF' - id: BrickTileWhiteLineN - decals: - 11997: -19,-69 - 11998: -20,-69 - 11999: -17,-69 - 12000: -16,-69 - 12001: -15,-69 - 12003: -12,-69 - 12004: -11,-69 - 12016: -22,-69 - 12020: -13,-69 - 12021: -14,-71 - 12022: -13,-71 - 12023: -17,-71 - 12024: -18,-71 - 12025: -19,-71 - 12026: -20,-71 - 12047: -15,-63 - 12048: -14,-63 - 12049: -13,-63 - 12050: -12,-63 - 12051: -11,-63 - 12052: -6,-63 - 12053: -8,-69 - 12087: -9,-65 - 12088: -8,-65 - 12096: -4,-70 - - node: - zIndex: 5 - color: '#EFB341FF' - id: BrickTileWhiteLineN - decals: - 7698: -11,-37 - 7699: -10,-37 - 7700: -9,-37 - 7701: -8,-37 - 7702: -7,-37 - 7703: -6,-37 - 7704: -5,-37 - 7705: -4,-37 - 7706: -3,-37 - - node: - color: '#FA7500FF' - id: BrickTileWhiteLineN - decals: - 4415: 18,-20 - 4416: 19,-20 - 4417: 21,-20 - 4418: 22,-20 - 4419: 22,-18 - 4420: 21,-18 - 4421: 19,-18 - 4422: 18,-18 - - node: - color: '#0096FFFF' + color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 8630: -7,26 - 8632: -6,23 - 15479: -5,26 - 15480: -4,26 + 986: -20,81 + 987: -19,81 + 988: -18,81 + 989: -17,81 + 1023: -12,83 - node: - color: '#32CD32FF' + color: '#7C521DF0' id: BrickTileWhiteLineS decals: - 8649: -10,23 - 8652: -11,26 - 15477: -9,26 - 15478: -8,26 + 3916: -29.995827,67.92475 - node: - color: '#334E6DFF' + color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 3816: -2,-9 - 3817: 0,-9 - 3838: -6,-9 - 3843: 5,-9 - 3844: 4,-9 - 3891: 9,-14 - 3918: 6,-14 - 3919: 7,-14 - 3936: -11,-13 - 3937: -14,-13 - 3942: -13,-13 - 4149: -10,-13 - 4619: -8,-12 - 4620: -8,-16 - 4654: -15,-13 - 10113: -10,-27 - 10114: -9,-27 - 11147: -22,2 - 11148: -20,2 - 11149: -19,2 - 12450: 13,-26 - 15940: -2,-14 - 15941: -1,-14 - 15942: 0,-14 - 15943: -2,-20 - 15944: 0,-20 - 15973: -6,-19 - 15974: -5,-19 - 15975: -4,-19 - 15981: 4,-19 - 15982: 3,-19 - 15983: 2,-19 - 16068: -7,-9 - 16069: -5,-9 - 16070: 3,-9 - 16071: 1,-9 - 16072: -1,-9 - 16073: -3,-9 - 16074: -9,-9 - 16075: 7,-9 - 16076: -2,-22 - 16077: -1,-22 - 16078: 0,-22 - 16096: -3,-11 - 16097: -2,-11 - 16098: -1,-11 - 16099: 0,-11 - 16100: 1,-11 - 16152: -32,6 - 16153: -31,6 - 16154: -30,6 - 16155: -30,9 - 16156: -32,9 - 16157: -31,9 + 652: 93,51 + 653: 97,51 + 5109: 36,59 - node: - zIndex: 4 - color: '#334E6DFF' + color: '#EFB34196' id: BrickTileWhiteLineS decals: - 8406: 13,-3 - 8407: 12,-3 - 8408: 11,-3 - 8409: 10,-3 - 8410: 9,-3 - 8411: 8,-3 - 8412: 7,-3 - 8413: 6,-3 - 8414: 4,-3 - 8415: 3,-3 - 8416: 1,-3 - 8417: 0,-3 - 8418: -1,-3 - 8419: -3,-3 - 8420: -2,-3 - 8421: -5,-3 - 8422: -6,-3 - 8423: -8,-3 - 8424: -9,-3 - 8426: -10,-3 - 8427: -11,-3 - 8428: -12,-3 - 8429: -13,-3 - 8430: -14,-3 - 8431: -15,-3 - 12144: 85,-4 - 12145: 85,-2 + 4074: -122,105 + 4075: -121,105 + 4076: -120,105 - node: - zIndex: 5 - color: '#334E6DFF' + color: '#FFC364FF' id: BrickTileWhiteLineS decals: - 7494: -15,-9 - 7495: -14,-9 - 7496: -13,-9 - 7497: -12,-9 - 7498: -10,-9 - 7499: 8,-9 - 7500: 10,-9 - 7508: 11,-9 - 7509: 12,-9 - 7510: 13,-9 + 19: -27,-2 - node: - zIndex: 7 - color: '#334E6DFF' + color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 11183: -22,7 - - node: - color: '#3AB3DAFF' - id: BrickTileWhiteLineS - decals: - 11126: -9,4 - 11127: -8,4 - - node: - color: '#3EB388FF' - id: BrickTileWhiteLineS - decals: - 12298: 5,-49 - 12299: 6,-49 - 12300: 7,-49 - 12301: 8,-49 - 12302: 9,-49 - 12692: 1,-44 - 12693: 4,-44 - 12694: 5,-44 - 12695: 2,-44 - 12728: 6,-44 - - node: - color: '#439909FF' - id: BrickTileWhiteLineS - decals: - 5803: 42,-57 - 5804: 44,-57 - 5805: 45,-57 - 5806: 46,-57 - 5807: 40,-61 - 5808: 39,-61 - 5809: 35,-56 - 5839: 36,-56 - 5863: 37,-56 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteLineS - decals: - 3962: 33,-25 - 3963: 34,-25 - 3964: 31,-25 - 3965: 30,-25 - 3966: 37,-25 - 3969: 41,-25 - 4005: 24,-20 - 4022: 27,-30 - 4023: 33,-30 - 4024: 32,-30 - 4025: 30,-30 - 4026: 29,-30 - 4033: 28,-30 - 4049: 32,-25 - 4059: 24,-26 - 4060: 21,-28 - 4061: 19,-28 - 4065: 23,-26 - 4069: 18,-28 - 4079: 27,-19 - 4080: 28,-19 - 4081: 29,-19 - 4082: 30,-19 - 4091: 28,-25 - 4092: 27,-25 - 4111: 33,-20 - 4112: 32,-20 - 4113: 35,-20 - 4186: 24,-36 - 4187: 23,-36 - 4188: 27,-34 - 4189: 26,-34 - 4214: 21,-25 - 4215: 20,-25 - 4216: 19,-25 - 4245: 29,-36 - 4246: 30,-36 - 4248: 32,-36 - 4249: 34,-36 - 4250: 35,-36 - 4251: 36,-36 - 4252: 33,-36 - 4273: 37,-33 - 4274: 38,-33 - 4284: 28,-22 - 4285: 30,-22 - 4286: 43,-24 - 4287: 44,-24 - 4288: 46,-24 - 4289: 47,-24 - 4311: 35,-23 - 4312: 36,-23 - 4313: 37,-23 - 4314: 39,-23 - 4315: 40,-23 - 4316: 41,-23 - 4317: 37,-23 - 4441: 34,-30 - 4454: 31,-36 - 4455: 29,-25 - 4462: 45,-29 - 4463: 44,-29 - 4464: 43,-29 - 4465: 42,-29 - 4466: 41,-29 - 4467: 40,-29 - 4486: 23,-20 - 4487: 23,-18 - 4507: 42,-21 - 4508: 43,-21 - 4509: 44,-21 - 4510: 46,-21 - 4552: 40,-45 - 4553: 40,-39 - 4554: 40,-32 - 4558: 19,-35 - 4559: 20,-35 - 4560: 21,-35 - 4677: 41,-50 - 4770: 36,-43 - 4771: 35,-43 - 4784: 36,-48 - 4785: 35,-48 - 4786: 34,-48 - 4795: 38,-48 - 4804: 38,-40 - 5778: 47,-28 - 6871: 38,-25 - 6995: 33,-15 - 6996: 30,-15 - 6997: 29,-15 - 6998: 28,-15 - 6999: 27,-15 - 7000: 24,-15 - 7001: 35,-15 - 7002: 43,-15 - 7003: 45,-15 - 15395: 47,-46 - 15408: 42,-46 - - node: - zIndex: 4 - color: '#52B4E9FF' - id: BrickTileWhiteLineS - decals: - 8487: 17,-28 - - node: - zIndex: 5 - color: '#52B4E9FF' - id: BrickTileWhiteLineS - decals: - 12726: -14,31 - - node: - color: '#8932B8FF' - id: BrickTileWhiteLineS - decals: - 15459: -13,26 - 15460: -12,26 - 15461: -15,26 - 15462: -14,23 - - node: - color: '#8D1C99FC' - id: BrickTileWhiteLineS - decals: - 10291: -24,-34 - - node: - color: '#8D1C99FF' - id: BrickTileWhiteLineS - decals: - 11528: -37,-39 - - node: - zIndex: 3 - color: '#8D1C99FF' - id: BrickTileWhiteLineS - decals: - 9632: -27,-39 - 9662: -30,-38 - - node: - color: '#9FED58FC' - id: BrickTileWhiteLineS - decals: - 9536: 44,-9 - 9537: 45,-9 - 9538: 46,-9 - 9540: 46,-5 - 9541: 45,-5 - 9547: 47,-9 - - node: - color: '#9FED58FF' - id: BrickTileWhiteLineS - decals: - 6111: 29,-2 - 6112: 30,-2 - 6134: 31,-2 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineS - decals: - 9698: -20,-25 - 9699: -19,-25 - 9704: -29,-22 - 9705: -30,-22 - 9706: -31,-22 - 9707: -32,-22 - 9758: -33,-22 - 9774: -34,-22 - 9889: -33,-17 - 9890: -31,-17 - 10299: -30,-31 - 11490: -31,-38 - 11491: -37,-36 - 11504: -28,-30 - 11520: -38,-39 - 12401: -46,-31 - 12402: -45,-31 - 12403: -44,-31 - 12404: -43,-31 - 16214: -24,-18 - 16215: -23,-18 - 16216: -21,-17 - 16217: -19,-19 - - node: - zIndex: 3 - color: '#A46106FF' - id: BrickTileWhiteLineS - decals: - 9654: -26,-39 - 9655: -26,-39 - 9656: -28,-39 - - node: - zIndex: 5 - color: '#A46106FF' - id: BrickTileWhiteLineS - decals: - 10319: -27,-28 - 10320: -26,-28 - 10369: -38,-31 - 10370: -37,-31 - 10371: -36,-31 - 10373: -39,-31 - 10374: -41,-33 - 10375: -39,-27 - 10376: -40,-22 - 10377: -39,-22 - 10378: -38,-22 - 10379: -37,-22 - 10380: -35,-22 - 10403: -35,-31 - 14809: -24,-27 - 14812: -23,-27 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 1176: 63,-28 - 1178: 60,-28 - 1179: 59,-28 - 1180: 58,-28 - 1181: 56,-28 - 1182: 57,-28 - 1197: 60,-25 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineS - decals: - 4986: 52,-25 - 5197: 63,-28 - 5198: 60,-28 - 5199: 59,-28 - 5200: 57,-28 - 5201: 56,-28 - 5202: 58,-28 - 5203: 54,-28 - 5204: 53,-28 - 5205: 52,-28 - 5214: 52,-31 - 5215: 53,-31 - 5286: 52,-42 - 5287: 53,-42 - 5288: 54,-42 - 5289: 54,-42 - 5290: 56,-42 - 5291: 57,-42 - 5292: 55,-42 - 5293: 58,-42 - 5294: 59,-42 - 5295: 61,-42 - 5297: 62,-42 - 5298: 60,-42 - 5319: 66,-30 - 5320: 66,-34 - 5321: 66,-38 - 5322: 66,-44 - 5615: 55,-15 - 5674: 64,-41 - 5687: 53,-38 - 5688: 55,-38 - 5689: 52,-38 - 5690: 51,-38 - 5691: 56,-38 - 5692: 57,-38 - 5697: 72,-25 - 5781: 51,-28 - 5876: 73,-25 - 5956: 67,-53 - 5957: 68,-53 - 5958: 69,-53 - 6141: 64,-28 - 6877: 73,-23 - 6878: 72,-23 - 6879: 70,-23 - 6880: 71,-23 - 7004: 51,-15 - 7012: 59,-15 - 7013: 57,-15 - 9348: 68,-46 - 10755: 68,-28 - 10756: 69,-28 - 10757: 70,-28 - 10758: 71,-28 - 10759: 72,-28 - 10760: 73,-28 - 10794: 60,-15 - 10795: 61,-15 - 10796: 62,-15 - 10797: 66,-15 - 10798: 67,-15 - 10799: 68,-15 - 10800: 69,-15 - 10801: 70,-15 - 10802: 71,-15 - 10803: 71,-15 - 10804: 72,-15 - 10805: 73,-15 - 10810: 68,-18 - 10815: 60,-18 - 10851: 63,-19 - 10852: 64,-19 - 10853: 65,-19 - 11037: 70,-19 - 11038: 71,-19 - 11566: 52,-19 - 11567: 54,-19 - 11568: 54,-24 - 11569: 55,-24 - 11570: 56,-24 - 11584: 56,-18 - 11596: 74,-28 - 11616: 71,-48 - 11621: 78,-48 - 11622: 77,-41 - 11624: 74,-42 - 11625: 73,-42 - 11626: 72,-42 - 11627: 70,-42 - 11645: 76,-41 - 11678: 69,-46 - 11679: 73,-46 - 11689: 71,-44 - 11700: 78,-43 - - node: - zIndex: 3 - color: '#D381C9FF' - id: BrickTileWhiteLineS - decals: - 11732: 77,-48 - 11733: 79,-48 - 11764: 61,-28 - 11785: 54,-31 - 11786: 56,-31 - 11787: 57,-31 - 11788: 58,-31 - 11789: 59,-31 - 11790: 61,-31 - 11791: 60,-31 - 11793: 55,-31 - - node: - angle: 3.141592653589793 rad - color: '#D381C9FF' - id: BrickTileWhiteLineS - decals: - 5254: 59,-42 - 5255: 58,-42 - 5256: 60,-42 - 5257: 61,-42 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineS - decals: - 6221: -1,-69 - 6222: 0,-69 - 6223: 1,-69 - 6224: 2,-69 - 6249: -2,-71 - 6251: 0,-71 - 6252: 1,-71 - 6258: 2,-71 - 6318: 2,-63 - 6319: 1,-63 - 6320: 2,-61 - 6391: 3,-57 - 6392: 2,-57 - 6394: 1,-57 - 6398: 2,-57 - 6400: 5,-54 - 6401: 6,-54 - 6402: 7,-54 - 6580: -9,-71 - 6581: -10,-71 - 6582: -11,-71 - 6583: -12,-71 - 6592: -17,-77 - 6594: -15,-77 - 6598: -11,-77 - 6671: -12,-69 - 6672: -11,-69 - 6681: -9,-75 - 6729: 6,-76 - 6730: 7,-76 - 6731: 8,-76 - 6750: -2,-79 - 6751: -1,-79 - 6752: 0,-79 - 6786: -4,-75 - 6787: 2,-75 - 6820: 2,-44 - 6855: -7,-58 - 6856: -4,-57 - 6857: -5,-57 - 9003: -9,-54 - 9004: -10,-54 - 9005: -11,-54 - 9006: -13,-55 - 9007: -15,-55 - 11814: 7,-63 - 11815: 6,-63 - 11816: 5,-63 - 11817: 5,-68 - 11877: 10,-75 - 12310: 7,-61 - 12311: 6,-61 - 12312: 5,-61 - 12349: -73,12 - 12350: -72,12 - 12351: -71,12 - 12352: -71,18 - 12353: -72,18 - 12354: -73,18 - 12355: -68,13 - 12378: -69,13 - - node: - zIndex: 4 - color: '#EFB341FF' - id: BrickTileWhiteLineS - decals: - 11991: -18,-71 - 11992: -19,-71 - 11993: -21,-71 - 11994: -22,-71 - 12005: -17,-71 - 12006: -15,-71 - 12007: -14,-71 - 12027: -20,-69 - 12028: -19,-69 - 12029: -18,-69 - 12030: -17,-69 - 12031: -14,-69 - 12032: -13,-69 - 12033: -13,-71 - 12054: -8,-71 - 12080: -15,-67 - 12081: -14,-67 - 12082: -13,-67 - 12083: -12,-67 - 12084: -11,-67 - 12085: -8,-65 - 12086: -9,-65 - 12097: -4,-70 - - node: - zIndex: 5 - color: '#EFB341FF' - id: BrickTileWhiteLineS - decals: - 7687: -3,-37 - 7688: -4,-37 - 7689: -5,-37 - 7690: -6,-37 - 7691: -7,-37 - 7692: -8,-37 - 7693: -9,-37 - 7694: -10,-37 - 7695: -11,-37 - 7707: -12,-37 - - node: - color: '#FA7500FF' - id: BrickTileWhiteLineS - decals: - 4399: 18,-18 - 4400: 19,-18 - 4401: 21,-18 - 4402: 22,-18 - 4403: 22,-20 - 4404: 21,-20 - 4406: 19,-20 - 4407: 18,-20 - 4423: 19,-15 - 6979: 21,-15 - - node: - color: '#FFA500FF' - id: BrickTileWhiteLineS - decals: - 8613: -3,26 - 8614: -1,26 - 8615: -2,23 - 15481: 0,26 - - node: - color: '#0096FFFF' - id: BrickTileWhiteLineW - decals: - 8629: -6,25 - - node: - color: '#32CD32FF' - id: BrickTileWhiteLineW - decals: - 8644: -10,25 + 375: 32,13 + 376: 32,11 + 377: 29,11 + 378: 28,11 + 396: 30,18 + 402: 28,14 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 2271: -8,-52 + 990: -21,82 + 991: -21,83 + 1012: -13,82 + 1013: -13,81 + 1014: -13,80 + 1015: -13,79 + 1016: -13,78 + 1017: -13,77 + 1018: -11,78 + 1019: -11,79 + 1020: -11,80 + 1021: -11,81 + 1022: -11,82 - node: - color: '#334E6DFC' + color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 11021: 83,-4 - 11022: 83,0 + 649: 92,52 + 650: 92,54 + 651: 92,53 + 3288: 70,53 + 3289: 70,54 + 5103: 35,60 + 5104: 35,61 + 5105: 35,62 - node: - color: '#334E6DFF' + color: '#EFB34196' id: BrickTileWhiteLineW decals: - 3750: -9,-19 - 3751: -9,-18 - 3752: -9,-17 - 3753: -9,-16 - 3754: -9,-15 - 3755: -9,-14 - 3840: -8,-10 - 3841: 6,-10 - 3862: 6,-12 - 3894: 8,-18 - 3912: 8,-17 - 3920: 8,-15 - 3921: 8,-16 - 3953: -12,-17 - 3954: -12,-16 - 3955: -12,-15 - 4145: -8,-11 - 4146: 6,-11 - 4622: -7,-18 - 4623: -7,-17 - 4624: -7,-15 - 9513: -12,-14 - 10082: -8,-29 - 10083: -8,-28 - 10084: -8,-28 - 10085: -8,-26 - 10086: -8,-25 - 10087: -8,-24 - 10088: -8,-23 - 10089: -8,-22 - 10090: -8,-21 - 10091: -7,-19 - 10103: -12,-27 - 11138: -23,0 - 11139: -23,1 - 11140: -21,0 - 11141: -21,1 - 15892: -7,-13 - 15893: -7,-14 - 15925: -3,-18 - 15926: -3,-17 - 15927: -3,-16 - 15928: -3,-15 - 15935: 1,-19 - 15936: 1,-18 - 15937: 1,-17 - 15938: 1,-16 - 15939: 1,-15 - 15962: -4,-13 - 15963: -4,-12 - 15964: -4,-11 - 15965: -4,-10 - 15966: 2,-13 - 15967: 2,-12 - 15968: 2,-10 - 16082: 1,-25 - 16083: 1,-24 - 16084: 1,-23 - 16134: -34,6 - 16135: -34,7 - 16136: -34,8 - 16137: -33,6 - 16138: -28,5 - 16139: -28,6 - 16140: -28,7 - 16141: -28,8 - 16142: -34,5 - 16171: -33,7 - 16181: -29,7 + 4077: -123,106 + 4078: -123,107 - node: - zIndex: 4 - color: '#334E6DFF' + color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 8402: 14,-7 - 8403: 14,-6 - 8404: 14,-5 - 8405: 14,-4 - 8452: 14,-27 - 8453: 14,-27 - 8455: 14,-25 + 374: 31,14 + 403: 26,16 + 404: 26,18 - node: - zIndex: 5 - color: '#334E6DFF' - id: BrickTileWhiteLineW + color: '#FFFFFFFF' + id: BushAOne decals: - 7483: 14,-10 - 7485: 14,-8 - 10956: 84,-6 - 14666: -18,4 + 1699: -96,153 + 1700: -97,147 + 1971: -91,168 + 2227: -60,174 + 2228: -60,172 - node: - zIndex: 7 - color: '#334E6DFF' - id: BrickTileWhiteLineW + cleanable: True + color: '#FFFFFFFF' + id: BushAOne decals: - 11176: -21,4 - 11177: -21,5 - 11178: -21,6 + 1805: -77,174 - node: - color: '#3EB388FF' - id: BrickTileWhiteLineW + color: '#FFFFFFFF' + id: BushAThree decals: - 12677: 3,-51 - 12678: 3,-50 - 12679: 3,-49 - 12680: 3,-48 - 12681: 3,-47 - 12682: 3,-46 - 12683: 3,-45 - 12702: 6,-41 + 1686: -90,151 + 1687: -91,151 + 1793: -81,155 + 1794: -89,154 + 1970: -90,167 + 1974: -91,173 + 1978: -90,175 + 1979: -89,174 + 1980: -86,170 + 2169: -70,170 + 2229: -59,173 + 2952: 11,195 + 4262: -71,155 + 4263: -72,154 + 4932: -70.62138,66.85323 + 4933: -70.62138,66.85323 - node: - color: '#439909FF' - id: BrickTileWhiteLineW + cleanable: True + color: '#FFFFFFFF' + id: BushAThree decals: - 5815: 38,-60 - 5816: 38,-59 - 5817: 38,-58 - 5818: 38,-57 - 5819: 34,-55 - 5820: 34,-54 - 5821: 34,-53 - 5822: 43,-60 - 5823: 46,-60 - 5824: 43,-59 - 5825: 43,-58 - 5826: 47,-58 - 5827: 47,-58 + 1800: -84,168 + 1809: -76,168 - node: - zIndex: 3 - color: '#439909FF' - id: BrickTileWhiteLineW + color: '#FFFFFFFF' + id: BushATwo decals: - 10444: 40,-55 + 1685: -91,152 + 3676: -65,89 + 3790: -64,107 - node: - color: '#52B4E9FF' - id: BrickTileWhiteLineW + color: '#FFFFFFFF' + id: BushCOne decals: - 3976: 34,-23 - 3977: 34,-24 - 3982: 35,-26 - 4002: 25,-24 - 4003: 25,-23 - 4004: 25,-21 - 4009: 25,-17 - 4017: 25,-31 - 4018: 25,-30 - 4019: 25,-29 - 4020: 25,-28 - 4035: 31,-31 - 4042: 29,-24 - 4048: 25,-22 - 4058: 25,-27 - 4062: 18,-27 - 4063: 18,-26 - 4100: 34,-22 - 4101: 34,-21 - 4102: 34,-19 - 4103: 34,-18 - 4104: 34,-17 - 4194: 25,-33 - 4195: 25,-34 - 4196: 25,-35 - 4198: 25,-37 - 4204: 25,-32 - 4212: 22,-27 - 4213: 22,-26 - 4243: 28,-35 - 4260: 35,-34 - 4261: 35,-33 - 4262: 35,-32 - 4263: 35,-31 - 4264: 35,-28 - 4265: 35,-27 - 4281: 29,-23 - 4297: 45,-23 - 4298: 45,-25 - 4320: 42,-24 - 4325: 24,-19 - 4383: 25,-16 - 4390: 19,-24 - 4391: 19,-23 - 4446: 31,-35 - 4447: 31,-34 - 4448: 31,-33 - 4450: 31,-32 - 4468: 39,-28 - 4469: 39,-27 - 4470: 39,-26 - 4471: 45,-27 - 4505: 41,-20 - 4506: 41,-21 - 4513: 46,-20 - 4514: 46,-19 - 4515: 46,-18 - 4523: 44,-20 - 4524: 44,-19 - 4525: 44,-18 - 4526: 44,-17 - 4527: 44,-16 - 4536: 41,-22 - 4538: 45,-22 - 4539: 22,-36 - 4540: 41,-36 - 4541: 41,-35 - 4542: 41,-34 - 4543: 41,-33 - 4544: 41,-40 - 4545: 41,-41 - 4546: 41,-42 - 4547: 41,-43 - 4548: 41,-49 - 4549: 41,-48 - 4550: 41,-47 - 4678: 39,-49 - 4679: 39,-47 - 4680: 39,-46 - 4681: 39,-45 - 4682: 41,-46 - 4683: 39,-44 - 4684: 39,-43 - 4685: 39,-42 - 4686: 39,-41 - 4687: 39,-39 - 4688: 39,-38 - 4689: 39,-37 - 4690: 39,-36 - 4691: 39,-35 - 4692: 39,-34 - 4773: 37,-44 - 4776: 34,-42 - 4777: 34,-41 - 4779: 37,-47 - 4780: 37,-46 - 4781: 37,-45 - 4782: 37,-49 - 4783: 37,-50 - 4891: 20,-34 - 4892: 20,-33 - 5788: 40,-51 - 6870: 38,-24 + 1090: -10,73 + 1695: -82,150 + 1973: -90,173 + 2267: -65,162 + 2330: -58,153 + 2331: -59,153 + 2954: 12,200 - node: - zIndex: 4 - color: '#52B4E9FF' - id: BrickTileWhiteLineW + cleanable: True + color: '#FFFFFFFF' + id: BushCOne decals: - 8492: 20,-29 + 1808: -76,167 - node: - zIndex: 5 - color: '#52B4E9FF' - id: BrickTileWhiteLineW + color: '#FFFFFFFF' + id: BushCThree decals: - 11100: -13,28 - 11101: -13,29 - 11102: -13,30 - 12718: -15,31 - 12719: -15,32 - 12720: -15,33 - 12724: -13,32 + 1688: -96,149 + 1692: -81,151 + 2962: 13,188 + 2963: 17,189 + 4202: -90,152 - node: - color: '#8932B8FF' - id: BrickTileWhiteLineW + color: '#FFFFFFFF' + id: BushCTwo decals: - 15466: -14,25 + 1684: -96,147 + 1972: -91,172 + 1986: -90,168 + 2265: -61,159 + 2266: -60,163 + 2329: -60,153 + 2948: 8,193 + 2956: 8,188 + 2964: 17,188 + 2966: 14,184 + 2967: 12,187 + 3670: -66,106 + 3671: -70,100 + 3672: -64,97 + 3673: -65,98 + 3674: -68,92 + 3950: -42,109 + 4264: -72,153 - node: - color: '#8D1C99FF' - id: BrickTileWhiteLineW + cleanable: True + color: '#FFFFFFFF' + id: BushCTwo decals: - 11469: -27,-32 - 11470: -27,-34 - 11525: -38,-36 + 1806: -76,175 + 1807: -77,167 - node: - zIndex: 3 - color: '#8D1C99FF' - id: BrickTileWhiteLineW + color: '#FFFFFFFF' + id: BushDOne decals: - 9634: -29,-37 - 9635: -29,-35 - 9636: -29,-33 + 4155: -32.197315,101.97789 - node: - zIndex: 5 - color: '#8D1C99FF' - id: BrickTileWhiteLineW + color: '#FFFFFFFF' + id: BushDTwo decals: - 12712: -36,-38 + 4156: -30.96294,100.29039 - node: - color: '#9FED58FC' - id: BrickTileWhiteLineW + color: '#FFFFFFFF' + id: Busha1 decals: - 9517: 43,-8 - 9518: 43,-6 - 9519: 43,-5 - 9520: 43,-7 - 9521: 47,-7 - 9522: 47,-6 + 1696: -86,151 + 1697: -89,151 + 1984: -94,175 + 2135: -74,175 + 2958: 8,189 + 2975: 8,191 + 2976: 14,191 + 3791: -64,106 + 4265: -71,153 - node: - color: '#9FED58FF' - id: BrickTileWhiteLineW + color: '#FFFFFFFF' + id: Busha2 decals: - 6122: 28,-3 - 6123: 28,-2 - 6124: 29,0 - 6133: 32,-3 + 1682: -86,150 + 1690: -99,149 + 2271: -67,168 + 2272: -63,169 + 2950: 9,195 + 2951: 10,195 - node: - color: '#A46106FF' - id: BrickTileWhiteLineW + cleanable: True + color: '#FFFFFFFF' + id: Busha2 decals: - 9695: -22,-22 - 9777: -27,-19 - 9779: -27,-17 - 9893: -32,-20 - 9894: -32,-19 - 9895: -32,-18 - 11505: -27,-35 - 11506: -27,-33 - 11507: -27,-31 - 12736: -27,-18 - 12737: -27,-16 - 16198: -22,-21 - 16199: -22,-20 - 16200: -22,-19 - 16201: -22,-17 - 16202: -20,-19 - 16203: -20,-18 - 16204: -18,-18 - 16205: -18,-17 - 16206: -18,-16 - 16207: -18,-20 - - node: - zIndex: 1 - color: '#A46106FF' - id: BrickTileWhiteLineW - decals: - 14845: -22,-28 - - node: - zIndex: 3 - color: '#A46106FF' - id: BrickTileWhiteLineW - decals: - 9644: -29,-36 - 9645: -29,-34 - 9646: -29,-32 - 9665: -18,-22 - 9666: -18,-23 - 9667: -18,-27 - 9668: -18,-26 - 9672: -28,-27 - 9673: -28,-26 - 9674: -28,-25 - 9675: -28,-24 - 9676: -28,-23 - - node: - zIndex: 5 - color: '#A46106FF' - id: BrickTileWhiteLineW - decals: - 10317: -28,-29 - 10318: -28,-28 - 10341: -42,-22 - 10342: -42,-23 - 10343: -42,-24 - 10344: -42,-25 - 10345: -42,-26 - 10346: -42,-27 - 10347: -42,-28 - 10348: -42,-29 - 10349: -42,-30 - 10351: -42,-32 - 10353: -38,-29 - 10354: -38,-28 - 10355: -36,-25 - 10356: -36,-24 - 10357: -36,-23 - 10394: -38,-30 - 10405: -34,-30 - 10407: -34,-32 - 12708: -36,-37 - 14806: -22,-25 - 14807: -22,-24 - 14808: -22,-23 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineW - decals: - 4979: 57,-21 - 4997: 51,-24 - 5347: 67,-47 - 5349: 67,-45 - 5350: 67,-41 - 5351: 67,-40 - 5352: 67,-40 - 5353: 67,-39 - 5355: 67,-36 - 5356: 67,-35 - 5357: 67,-32 - 5358: 67,-33 - 5359: 67,-31 - 5360: 67,-29 - 5391: 65,-29 - 5393: 65,-30 - 5398: 65,-31 - 5399: 65,-32 - 5400: 65,-33 - 5402: 65,-34 - 5408: 65,-37 - 5409: 65,-39 - 5411: 65,-38 - 5414: 65,-40 - 5417: 65,-42 - 5420: 65,-44 - 5421: 65,-45 - 5422: 65,-46 - 5424: 65,-47 - 5426: 65,-48 - 5683: 54,-39 - 5762: 65,-43 - 5948: 66,-51 - 5949: 66,-52 - 5953: 66,-53 - 5954: 66,-54 - 9351: 67,-46 - 10718: 72,-22 - 10723: 69,-24 - 10725: 67,-28 - 10726: 67,-27 - 10767: 66,-25 - 10768: 66,-24 - 10769: 66,-23 - 10770: 66,-22 - 10771: 66,-21 - 10772: 70,-26 - 10787: 63,-17 - 10788: 63,-16 - 10789: 61,-20 - 10790: 61,-19 - 10813: 58,-17 - 10814: 58,-16 - 10849: 66,-20 - 10850: 66,-20 - 11001: 58,-26 - 11035: 72,-21 - 11036: 72,-20 - 11561: 53,-20 - 11562: 57,-20 - 11563: 57,-19 - 11564: 51,-23 - 11565: 51,-22 - 11586: 52,-16 - 11587: 67,-37 - 11591: 65,-36 - 11592: 65,-35 - 11597: 70,-45 - 11604: 78,-40 - 11605: 78,-39 - 11606: 78,-38 - 11615: 70,-47 - 11628: 78,-42 - 11629: 71,-43 - 11682: 72,-47 - 11683: 72,-46 - 11684: 72,-45 - 11697: 79,-46 - - node: - zIndex: 3 - color: '#D381C9FF' - id: BrickTileWhiteLineW - decals: - 11738: 79,-47 - 11739: 79,-45 - 11740: 79,-44 - 11773: 62,-34 - 11774: 62,-33 - 11775: 62,-32 - 11776: 62,-30 - 11777: 62,-29 - 11792: 55,-30 - 11801: 74,-24 - - node: - angle: 3.141592653589793 rad - color: '#D381C9FF' - id: BrickTileWhiteLineW - decals: - 5236: 51,-41 - 5258: 57,-41 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineW - decals: - 6233: 3,-70 - 6254: -1,-72 - 6304: -2,-68 - 6305: -2,-67 - 6334: 8,-64 - 6363: 4,-60 - 6364: 4,-59 - 6366: 8,-60 - 6367: 8,-59 - 6374: 4,-58 - 6376: 4,-56 - 6377: 4,-55 - 6378: 8,-58 - 6379: 8,-57 - 6380: 8,-56 - 6381: 8,-55 - 6406: 3,-53 - 6407: 3,-52 - 6642: -18,-76 - 6643: -18,-75 - 6644: -18,-74 - 6645: -8,-74 - 6660: -10,-70 - 6719: 3,-73 - 6734: 3,-76 - 6756: -3,-77 - 6757: -3,-76 - 6758: -3,-78 - 6766: -1,-73 - 6840: -3,-56 - 6841: -3,-55 - 6842: -3,-54 - 6843: -3,-53 - 6845: -3,-58 - 6848: -8,-57 - 6849: -8,-56 - 6850: -8,-55 - 9023: -16,-54 - 9024: -14,-52 - 9025: -14,-51 - 9026: -14,-56 - 9027: -14,-57 - 11838: 3,-72 - 11839: 3,-68 - 11840: 3,-67 - 11841: 3,-66 - 11842: 3,-65 - 11843: 3,-64 - 11844: 3,-62 - 11845: 6,-70 - 11846: 6,-69 - 11847: 6,-67 - 11848: 8,-72 - 11849: 8,-65 - 11864: 8,-73 - 12317: 8,-62 - 12356: -70,14 - 12357: -70,15 - 12358: -70,16 - 12359: -70,17 - 12360: -74,17 - 12361: -74,16 - 12362: -74,15 - 12363: -74,14 - 12364: -74,13 - - node: - zIndex: 1 - color: '#EFB341FF' - id: BrickTileWhiteLineW - decals: - 11315: -67,12 - 11322: -67,11 - - node: - zIndex: 4 - color: '#EFB341FF' - id: BrickTileWhiteLineW - decals: - 7676: -3,-52 - 11988: -27,-71 - 11989: -27,-70 - 11990: -27,-69 - 12036: -16,-70 - 12041: -7,-68 - 12042: -7,-67 - 12043: -7,-66 - 12044: -7,-64 - 12045: -16,-66 - 12046: -16,-64 - 12055: -7,-72 - 12105: -12,-76 - 12106: -12,-75 - 12107: -12,-74 - 12119: -17,-80 - 12122: -16,-78 - 12123: -16,-72 - - node: - zIndex: 5 - color: '#EFB341FF' - id: BrickTileWhiteLineW - decals: - 7677: -2,-38 - 7678: -2,-36 - - node: - color: '#FA7500FF' - id: BrickTileWhiteLineW - decals: - 4411: 20,-21 - 4412: 20,-19 - 4413: 20,-17 - 4426: 20,-16 - - node: - color: '#FFA500FF' - id: BrickTileWhiteLineW - decals: - 8616: -2,25 + 1803: -77,175 - node: color: '#FFFFFFFF' id: Busha3 decals: - 10565: 7,-28 + 2968: 13,189 + 2969: 13,193 + 2970: 11,193 + 2971: 12,196 + 3786: -63,106 + 5496: -42,88 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Busha3 + decals: + 1801: -84,170 + 1802: -83,174 - node: color: '#FFFFFFFF' - id: Bushe2 + id: Bushb1 decals: - 10564: 8.268509,-27.995733 + 1683: -81,150 + 1975: -91,174 + 2136: -74,177 + 2224: -60,171 + 2226: -59,174 + 2269: -65,166 + 2270: -66,168 + 2321: -98,155 + 2991: 11,184 + 3669: -64,104 + 4259: -72,156 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushb1 + decals: + 1799: -84,167 - node: color: '#FFFFFFFF' - id: Bushi1 + id: Bushb2 decals: - 1143: 44.560696,-52.296127 + 1694: -85,151 + 2167: -69,172 + 2268: -65,165 - node: color: '#FFFFFFFF' - id: Bushi3 + id: Bushb3 decals: - 1144: 47.01382,-53.968002 + 1698: -95,152 + 1791: -80,154 + 1967: -91,167 + 1982: -86,168 + 1983: -93,175 + 2166: -69,168 + 2225: -59,172 + 2949: 8,194 + 2957: 9,188 + 5494: -39,75 + 5495: -42,87 - node: color: '#FFFFFFFF' - id: Bushj3 + id: Bushc1 decals: - 1142: 45.623196,-52.499252 + 1689: -98,150 + 1693: -80,152 + 1792: -81,154 + 1968: -93,167 + 1969: -89,167 + 1981: -86,169 + 1985: -93,173 + 2168: -70,171 + 2273: -65,168 + 2274: -62,168 + 2947: 10,194 + 2959: 14,187 + 2960: 15,188 + 2961: 13,190 + 2972: 9,190 + 2973: 12,189 + 2974: 13,197 + 3787: -63,105 + 3788: -64,105 + 3789: -65,107 + 3953: -42,110 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushc1 + decals: + 1804: -76,174 + - node: + color: '#FFFFFFFF' + id: Bushc2 + decals: + 1691: -83,150 + 2275: -67,167 + 2276: -60,162 + 2946: 12,194 + 2953: 15,197 + 2992: 12,184 + 3675: -67,90 + 3951: -40,110 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 1976: -90,174 + 1977: -91,175 + 2955: 15,200 + 2965: 18,186 + 3952: -40,109 + 4260: -72,155 + 4261: -71,156 + - node: + color: '#FFFFFFFF' + id: Bushf3 + decals: + 4357: -31.097195,101.354744 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 4356: -33.05032,102.05787 + - node: + color: '#FFFFFFFF' + id: Bushk3 + decals: + 4931: -66.90263,71.07198 + 4937: -65.01435,71.22823 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushk3 + decals: + 4468: -46.96315,172.26266 - node: color: '#FFFFFFFF' id: Caution decals: - 2432: 31,-34 + 601: 60.50598,58.82719 - node: - color: '#9FED5896' - id: CheckerNESW + cleanable: True + color: '#FFFFFFFF' + id: Caution decals: - 3377: 45,-1 - 3378: 45,0 - 3379: 46,-1 - 3380: 46,0 - 3381: 47,-1 - 3382: 47,0 - 3383: 48,-1 - 3384: 48,0 - 3385: 48,1 - 3386: 49,1 - 3387: 49,0 - 3388: 49,-1 + 4366: -125,66 - node: color: '#FFFFFFFF' id: CheckerNESW decals: - 3365: 45,-1 - 3366: 45,0 - 3367: 46,0 - 3368: 46,-1 - 3369: 47,-1 - 3370: 47,0 - 3371: 48,-1 - 3372: 48,0 - 3373: 49,-1 - 3374: 49,0 - 3375: 49,1 - 3376: 48,1 + 180: -29,-5 + 181: -28,-5 + 182: -27,-5 + 183: -27,-6 + 184: -28,-6 + 185: -29,-6 + 186: -29,-7 + 187: -28,-7 + 188: -27,-7 - node: - color: '#52B4E996' + color: '#D381C996' id: CheckerNWSE decals: - 1645: 49,-38 - 1646: 49,-37 - 1647: 49,-36 - 1648: 49,-35 - 1649: 49,-34 + 1891: -92,164 + 1892: -92,163 + 1893: -91,163 + 1894: -91,164 + 1895: -90,164 + 1896: -90,163 + 1897: -89,163 + 1898: -89,164 + 1899: -88,163 + 1900: -88,164 + 1901: -87,163 + 1902: -87,164 + 1903: -86,164 + 1904: -86,163 + 1905: -85,163 + 1906: -85,164 + 1907: -84,164 + 1908: -84,163 - node: - zIndex: 5 - color: '#D4D4D4FF' - id: Delivery + color: '#DE3A3A96' + id: ConcreteTrimCornerNw decals: - 14691: 64,-27 - 14692: 64,-28 - 14693: 68,-27 - 14694: 68,-28 - 14695: 67,-26 - 14696: 66,-26 - 14697: 65,-26 - 14698: 52,-28 - 14699: 52,-27 - 14700: 67,-43 - 14701: 66,-43 - 14702: 65,-43 - 14703: 67,-49 - 14704: 66,-49 - 14705: 65,-49 - 14706: 36,-27 - 14707: 35,-27 - 14708: 28,-29 - 14709: 28,-30 - 14710: 26,-27 - 14711: 25,-27 - 14712: 41,-38 - 14713: 40,-38 - 14714: 39,-38 - 14715: -10,29 - 14716: -9,29 + 5126: 35,63 + - node: + color: '#2D7230FF' + id: Damaged + decals: + 801: 55,43 + 802: 53,40 + 803: 55,39 + 804: 51,38 + - node: + color: '#5E7C16FF' + id: Damaged + decals: + 358: 32,16 + 359: 33,15 + 360: 29,15 + 361: 29,19 + 362: 28,18 + 382: 28,12 + 383: 32,11 - node: color: '#FFFFFFFF' id: Delivery decals: - 481: -14,-23 - 3647: 57,-44 - 3648: 58,-44 - 3649: 59,-44 - 3650: 60,-44 - 3654: 58,-51 - 4967: 29,-7 - 4968: 29,-6 - 9339: 71,-53 - 9340: 71,-52 - 9341: 71,-51 - 12653: 2,40 - 12654: 2,41 - 12655: 2,42 - 12656: 2,43 - 12657: 4,43 - 12658: 4,42 - 12659: 4,41 - 12660: 4,40 - 12740: -2,-86 - 12741: -2,-88 - 12742: 0,-88 - 12743: 0,-86 - 12744: 3,-83 - 12745: 3,-91 - 12746: -5,-91 - 12747: -5,-83 - 12748: -9,-83 - 12749: -9,-86 - 12750: -9,-87 - 12751: -9,-88 - 12752: -9,-91 - 12753: 7,-91 - 12754: 7,-83 - 12755: 7,-86 - 12756: 7,-87 - 12757: 7,-88 - 12758: 3,-86 - 12759: 3,-87 - 12760: 3,-88 - 12761: -5,-86 - 12762: -5,-87 - 12763: -5,-88 - 12809: 10,-89 - 12810: 10,-87 - 12895: 33,34 - 12896: 33,35 - 12897: 33,36 - 13617: -44,-39 - 13662: -2,17 - 13663: -1,17 - 13664: 0,17 - 13665: 7,19 - 13666: 7,20 - 13667: 7,21 - 13668: 5,-1 - 13669: 5,-2 - 13670: 5,-3 - 13671: 16,-11 - 13672: 15,-11 - 13673: 14,-11 - 13674: 18,-13 - 13675: 18,-14 - 13676: 18,-15 - 13677: 16,-24 - 13678: 15,-24 - 13679: 14,-24 - 13680: 9,-30 - 13681: 9,-31 - 13682: 9,-32 - 13683: -10,-32 - 13684: -10,-31 - 13685: -10,-30 - 13686: -19,-25 - 13687: -19,-24 - 13688: -18,-21 - 13689: -17,-21 - 13690: -17,-21 - 13691: -16,-21 - 13692: -20,-3 - 13693: -20,-2 - 13694: -20,-1 - 13695: -36,-3 - 13696: -36,-2 - 13697: -36,-1 - 13698: -53,-3 - 13699: -53,-2 - 13700: -53,-1 - 13701: -63,0 - 13702: -63,1 - 13703: -63,-5 - 13704: -63,-6 - 13705: -64,-7 - 13706: -65,-7 - 13707: -65,-13 - 13708: -64,-13 - 13709: -65,7 - 13710: -64,7 - 13711: -69,13 - 13712: -69,14 - 13713: -69,15 - 13714: -69,16 - 13715: -69,17 - 13716: -7,-1 - 13717: -7,-2 - 13718: -7,-3 - 15414: -40,-25 - 15415: -40,-23 - 15416: -33,-20 - 15417: -33,-19 - 16095: -1,-28 - 16186: -32,6 - 16188: -30,6 - 16241: -24,-20 - 16242: -24,-19 - 16243: -23,-20 - 16244: -23,-19 + 53: -27,0 + 102: -32.993034,-17.985094 + 247: -10,-1 + 248: -8,-1 + 249: -15,-1 + 250: -17,-1 + 1001: -17,79 + 3290: 71,53 - node: - zIndex: 1 + cleanable: True color: '#FFFFFFFF' id: Delivery decals: - 8995: -11,-8 - 8996: -11,-9 - 8997: -11,-10 - 8998: 9,-8 - 8999: 9,-9 - 9000: 9,-10 + 5517: -114,24 - node: - zIndex: 4 color: '#FFFFFFFF' - id: Delivery - decals: - 8501: 1,-50 - 8502: 1,-49 - 8503: 1,-48 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: Delivery - decals: - 10412: -42,-28 - 10413: -41,-28 - 10414: -40,-28 - 13784: 63,-16 - 13785: 64,-16 - 13786: 65,-16 - 13787: 55,-13 - 13788: 55,-14 - 13789: 55,-15 - 13790: 77,-13 - 13791: 77,-14 - 13792: 77,-15 - 13793: 41,-13 - 13794: 41,-14 - 13795: 41,-15 - 13796: -16,20 - 13797: -16,19 - 13923: 27,12 - 13924: 27,13 - 13925: 27,14 - 13926: 27,15 - 14717: -10,29 - 14718: -9,29 - 14719: 71,3 - 14720: 71,2 - 14721: 71,1 - 14722: 71,0 - 14828: -2,-34 - 14829: -1,-34 - 14830: 0,-34 - - node: - zIndex: 6 - color: '#FFFFFFFF' - id: Delivery - decals: - 11968: -27,-67 - 11969: -27,-68 - 11970: -27,-72 - 11971: -26,-72 - 11972: -25,-72 - 11973: -24,-72 - 11974: -23,-72 - 11975: -23,-68 - 11976: -23,-67 - 11977: -25,-67 - 11978: -25,-68 - 11979: -23,-65 - 11980: -24,-65 - 11981: -25,-65 - 11982: -26,-65 - 11983: -26,-65 - 11984: -27,-65 - - node: - color: '#DE3A3AFF' id: DeliveryGreyscale decals: - 7381: 13,30 - 7382: 14,30 - 7383: 16,30 - 7384: 17,30 - 7385: 15,30 - 7460: 12,44 - 7461: 18,44 + 453: 71,46 - node: - cleanable: True - zIndex: 1 - color: '#474F52FF' + color: '#B0B1B160' id: Dirt decals: - 214: -32,-13 - 219: -32,-14 - 242: -32,-18 - 258: -6,-46 - 259: -3,-44 - 2527: -1,-57 - 2531: -2,-53 - 2537: -1,-46 - 2538: -1,-45 - 3483: 6,-54 - 3620: 55,-53 - 3621: 53,-55 - 3622: 60,-55 - 3623: 61,-56 - 3624: 65,-56 - 3625: 51,-56 - 3626: 50,-55 - 3627: 44,-50 - 3628: 43,-50 - 3629: 51,-49 - 3630: 50,-48 - 3631: 47,-42 - 3632: 48,-43 - 3633: 44,-43 - 3634: 51,-46 - 3635: 57,-51 - 3636: 57,-52 - 3637: 61,-53 - 3638: 63,-52 - 3639: 60,-51 - 3642: 60,-48 - 3643: 53,-50 - 3644: 55,-49 - 3645: 57,-45 - 3646: 58,-46 + 4952: -63,90 + 4953: -60,89 + 4954: -62,89 + 4955: -61,90 + 4956: -61,91 + - node: + cleanable: True + color: '#D4D4D43C' + id: Dirt + decals: + 5158: 80,22 + 5162: 79,22 + 5163: 80,19 + - node: + cleanable: True + color: '#FFFFFF28' + id: Dirt + decals: + 4963: -63,90 + 4964: -62,91 + 4965: -62,91 + 4966: -61,89 + 4967: -65,90 + 4968: -65,91 + 4969: -64,89 + - node: + cleanable: True + color: '#FFFFFF30' + id: Dirt + decals: + 4957: -64,90 + - node: + cleanable: True + color: '#FFFFFF41' + id: Dirt + decals: + 4970: -62,90 + 4971: -62,90 + 4972: -63,91 + 4973: -61,89 + - node: + cleanable: True + color: '#FFFFFF56' + id: Dirt + decals: + 4958: -62,90 + 4959: -62,89 + 4960: -61,91 + - node: + cleanable: True + color: '#FFFFFF92' + id: Dirt + decals: + 4961: -64,90 + 4962: -61,90 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 3917: -126,88 + 3936: -138,89 + 3938: -139,89 + 3987: -49,-1 + 3988: -50,-1 + 3989: -51,-1 + 3990: -53,-1 + 3991: -52,-1 + 3992: -52,-2 + 3993: -49,-2 + 3994: -47,-2 + 3995: -48,-1 + 3996: -50,-2 + 3997: -51,-2 + 3998: -51,-3 + 3999: -52,-3 + 4000: -53,-3 + 4001: -53,-4 + 4002: -55,-5 + 4003: -55,-6 + 4004: -54,-5 + 4005: -55,-3 + 4006: -52,1 + 4007: -52,0 + 4008: -53,2 + 4009: -52,4 + 4010: -52,3 + 4011: -51,4 + 4012: -51,5 + 4013: -50,6 + 4014: -51,6 + 4015: -50,7 + 4016: -52,2 + 4017: -52,5 + 4018: -49,8 + 4019: -51,8 + 4020: -52,9 + 4021: -51,7 + 4022: -52,7 + 4023: -48,9 + 4024: -50,8 + 4025: -49,9 + 4026: -47,9 + 4027: -45,9 + 4028: -46,9 + 4029: -46,10 + 4030: -47,10 + 4031: -44,10 + 4032: -42,10 + 4410: -10,180 + 4411: -10,178 + 4412: -11,179 + 4413: -11,180 + 4414: -12,181 + 4415: -11,175 + 4416: -11,176 + 4417: -12,175 + 4418: -10,177 + 4457: 9,219 + 4458: 7,217 + 4459: 9,218 + 4461: -7,219 + 4462: -7,218 + 4573: 51,49 + 4574: 48,49 + 4575: 49,50 + 4576: 50,48 + 4577: 49,48 + 4578: 51,48 + 4579: 51,52 + 4580: 50,52 + 4581: 49,53 + 4582: 48,53 + 4583: 47,52 + 4584: 45,53 + 4585: 50,49 + 4586: 49,49 + 4587: 49,49 + 4588: 46,50 + 4589: 45,50 + 4590: 45,49 + 4591: 46,49 + 4592: 46,48 + 4593: 52,53 + 4594: 51,53 + 4595: 52,47 + 4596: 52,49 + 4597: 51,51 + 4598: 48,51 + 4599: 51,52 + 5360: -146,110 + 5361: -146,108 + 5362: -147,106 + 5363: -144,107 + 5364: -142,108 + 5365: -141,110 + 5366: -139,108 + 5367: -139,107 + 5368: -140,105 + 5369: -142,105 + 5370: -142,106 + 5371: -144,106 + 5372: -148,105 + 5373: -150,104 + 5374: -151,105 + 5375: -145,107 + 5376: -140,109 + 5377: -134,107 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 87: -34.024284,-17.96947 + 88: -33.961784,-19.96947 + 89: -36.03991,-20.016344 + 351: 28,15 + 352: 30,19 + 363: 26,18 + 389: 31,18 + 390: 33,16 + 636: 66,66 + 797: 52,43 + 1504: -56,91 + 1579: -48,72 + 1580: -48,73 + 1581: -49,73 + 1582: -54,73 + 1583: -54,79 + 1584: -51,81 + 1585: -50,81 + 1586: -54,85 + 1587: -54,86 + 1588: -52,70 + 1589: -52,69 + 1590: -51,63 + 1591: -51,62 + 1592: -49,61 + 1593: -47,61 + 1594: -48,61 + 1595: -51,60 + 1596: -42,62 + 1597: -42,62 + 1598: -43,62 + 1599: -36,63 + 1600: -36,62 + 1601: -37,62 + 1602: -42,58 + 1603: -41,57 + 1604: -42,59 + 2034: -93,174 + 2035: -93,172 + 2036: -96,175 + 2037: -97,176 + 2038: -97,175 + 2039: -97,175 + 2040: -98,174 + 2382: 0,184 + 2383: -1,184 + 2384: 0,185 + 2385: -2,184 + 2386: -4,185 + 2387: -5,185 + 2388: -8,184 + 2389: -7,184 + 2390: -7,185 + 2391: -6,185 + 2392: -1,184 + 2393: -3,185 + 2394: -10,183 + 2395: -9,183 + 2396: -10,182 + 2397: -9,182 + 2398: -9,174 + 2399: -10,175 + 2400: -9,177 + 2401: -9,179 + 2402: -10,179 + 2403: -9,176 + 2404: -9,175 + 2405: -9,175 + 2406: -10,179 + 2407: -11,181 + 2408: -10,181 + 2509: -11,182 + 2510: -12,183 + 2511: -12,184 + 2512: -13,184 + 2513: -12,184 + 2514: -13,182 + 2515: -14,182 + 2516: -15,182 + 2517: -16,183 + 2518: -17,183 + 2519: -18,184 + 2520: -19,184 + 2521: -16,182 + 2522: -18,183 + 2523: -20,184 + 2524: -21,186 + 2525: -22,186 + 2526: -23,187 + 2527: -24,188 + 2528: -24,189 + 2529: -23,188 + 2530: -23,189 + 2531: -22,187 + 2532: -23,188 + 2533: -21,185 + 2534: -19,183 + 2535: -22,186 + 2536: -18,183 + 2537: -20,187 + 2538: -20,188 + 2539: -19,189 + 2540: -12,182 + 2541: -13,183 + 2542: -14,183 + 2543: -11,183 + 2544: -15,183 + 2545: -13,183 + 2546: -13,184 + 2547: -11,182 + 2548: -15,183 + 2549: -10,174 + 2550: -10,176 + 2551: -9,178 + 2552: -9,180 + 2553: -9,181 + 2554: -17,182 + 2555: -20,183 + 2556: -21,182 + 2557: -21,181 + 2558: -20,182 + 2559: -20,181 + 2560: -24,187 + 2561: -23,186 + 2562: -22,185 + 2563: -21,184 + 2564: -8,183 + 2565: -7,183 + 2566: -8,182 + 2567: -6,184 + 2568: -5,184 + 2569: -4,184 + 2570: -3,184 + 2571: -2,185 + 2572: -1,185 + 2573: -4,184 + 2574: -5,184 + 2575: -8,183 + 2576: -9,182 + 2577: -10,182 + 2578: -19,183 + 2579: -20,184 + 2580: -20,185 + 2581: -21,185 + 2582: -9,176 + 2583: -2,186 + 2584: -3,186 + 2585: -2,187 + 2586: -1,189 + 2724: -3,203 + 2725: -3,204 + 2726: -4,203 + 2727: -4,204 + 2728: -5,203 + 2729: -6,202 + 2730: -6,203 + 2731: -7,202 + 2732: -7,203 + 2733: -8,202 + 2734: -8,203 + 2735: -9,202 + 2736: -9,203 + 2737: -13,204 + 2738: -12,204 + 2739: -13,205 + 2740: -11,204 + 2741: -10,204 + 2742: -10,205 + 2743: -9,205 + 2744: -9,204 + 2745: -10,203 + 2746: -11,203 + 2747: -12,203 + 2748: -11,202 + 2749: -11,201 + 2750: -12,202 + 2751: -12,201 + 2752: -13,200 + 2753: -12,200 + 2754: -13,199 + 2755: -12,199 + 2756: -14,200 + 2757: -15,200 + 2758: -17,200 + 2759: -13,204 + 2760: -12,204 + 2761: -12,202 + 2762: -12,201 + 2763: -13,199 + 2764: -12,199 + 2765: -12,200 + 2766: -10,205 + 2767: -10,204 + 2768: -11,203 + 2769: -9,203 + 2770: -8,203 + 2771: -6,203 + 2772: -11,204 + 2773: -12,203 + 2774: -13,205 + 2775: -12,204 + 2776: -12,199 + 2806: -22,199 + 2807: -21,199 + 2808: -21,200 + 2809: -20,200 + 2810: -22,200 + 2811: -19,200 + 2812: -18,200 + 2813: -22,199 + 2814: -21,200 + 2815: -20,200 + 2816: -18,200 + 3520: -71,92 + 3521: -73,75 + 3522: -76,74 + 3523: -76,75 + 3524: -76,75 + 3525: -76,75 + 3526: -76,75 + 3527: -76,75 + 3528: -76,75 + 3529: -76,75 + 3530: -76,75 + 3531: -76,75 + 3532: -76,75 + 3533: -76,75 + 3534: -76,75 + 3605: -42,60 + 3606: -42,60 + 3607: -42,60 + 3608: -42,60 + 3609: -42,60 + 3610: -42,60 + 3611: -42,60 + 3612: -42,60 + 3613: -42,60 + 3614: -42,60 + 3615: -42,60 + 3616: -42,60 + 3618: -42,60 + 3619: -42,60 + 3620: -41,58 + 3621: -40,58 + 3622: -39,58 + 3623: -38,58 + 3624: -40,58 + 3625: -40,58 + 3626: -41,58 + 3627: -41,58 + 3628: -40,58 + 3629: -40,58 + 3630: -41,59 + 3631: -40,59 + 3632: -40,59 + 3633: -40,59 + 3634: -41,59 + 3635: -39,58 + 3636: -39,58 + 3637: -37,58 + 3638: -36,58 + 3639: -36,57 + 3640: -36,59 + 3641: -37,59 + 3642: -37,60 + 3643: -37,60 + 3644: -36,60 + 3645: -38,59 + 3646: -42,57 + 3647: -43,57 + 3648: -43,59 + 3649: -44,59 + 3777: -22,60 + 3778: -22,61 + 3779: -20,60 + 3780: -21,61 + 3781: -21,62 + 3782: -21,61 + 3783: -22,60 + 3784: -20,60 + 4244: -99,53 + 4246: -89,58 + 4247: -88,59 + 4363: -119,66 + 4364: -125,65 + 4365: -120,63 + 5007: -30,189 + 5010: -27,205 + 5013: -19,209 + 5014: -19,209 + 5017: -10,212 + 5018: -5,211 + 5020: -2,211 + 5021: 1,214 + 5024: 3,208 + 5028: 11,202 + 5032: 22,201 + 5033: 23,197 + 5034: 23,197 + 5036: 24,192 + 5037: 23,186 + 5042: 19,182 + 5044: 21,179 + 5045: 22,176 + 5051: 13,181 + 5055: 3,169 + 5058: 3,174 + 5059: -30,177 + 5060: -30,177 + 5066: -32,178 + 5067: -35,180 + 5068: -41,176 + 5069: -41,176 + 5070: -48,177 + 5071: -40,173 + 5072: -38,174 + 5073: -52,172 + 5074: -56,169 + 5079: -80,144 + 5080: -85,144 + 5082: -87,143 + 5084: -89,145 + 5085: -89,145 + 5090: -101,149 + 5092: -109,149 + 5093: -131,25 + 5095: -130,31 + 5124: 31,59 + 5125: 31,61 + 5142: -104,149 + 5152: 81,18 + 5154: 80,23 + 5155: 80,18 + 5180: 85,45 + 5184: 87,61 + 5199: -130,105 + 5200: -132,108 + 5201: -134,109 + 5202: -135,105 + 5203: -136,109 + 5204: -129,108 + 5205: -131,108 + 5206: -135,105 + 5207: -134,107 + 5212: -133,109 + 5213: -131,109 + 5216: -132,106 + 5224: -124,102 + 5225: -121,102 + 5226: -121,103 + 5227: -116,100 + 5228: -118,99 + 5229: -119,97 + 5230: -117,98 + 5231: -115,100 + 5232: -119,101 + 5234: -119,103 + 5235: -119,102 + 5236: -117,103 + 5237: -115,102 + 5247: -103,100 + 5248: -101,100 + 5249: -102,99 + 5250: -105,98 + 5251: -107,100 + 5252: -105,99 + 5253: -110,99 + 5254: -111,100 + 5255: -112,98 + 5256: -108,98 + 5257: -108,99 + 5258: -107,100 + 5259: -110,100 + 5260: -103,98 + 5263: -112,98 + 5264: -110,99 + 5265: -113,99 + 5266: -109,100 + 5267: -105,98 + 5268: -100,100 + 5269: -100,98 + 5270: -105,98 + 5271: -107,99 + 5274: -104,103 + 5275: -101,102 + 5276: -104,102 + 5277: -118,94 + 5278: -115,92 + 5279: -120,91 + 5280: -120,94 + 5281: -115,95 + 5286: -119,94 + 5287: -120,95 + 5288: -116,92 + 5289: -120,92 + 5290: -119,93 + 5291: -116,94 + 5292: -117,93 + 5293: -117,92 + 5294: -118,93 + 5295: -117,93 + 5296: -115,91 + 5297: -126,107 + 5298: -127,108 + 5299: -127,107 + 5300: -127,109 + 5301: -125,108 + 5302: -126,106 + 5303: -125,105 + 5305: -127,108 + 5310: -122,107 + 5311: -121,107 + 5312: -119,106 + 5313: -123,105 + 5314: -119,105 + 5315: -119,106 + 5316: -130,105 + 5317: -136,107 + 5318: -136,108 + 5319: -136,107 + 5320: -136,106 + 5321: -137,107 + 5322: -133,106 + 5323: -133,107 + 5324: -131,107 + 5325: -130,106 + 5326: -129,105 + 5327: -124,97 + 5328: -126,95 + 5329: -123,98 + 5330: -125,99 + 5331: -122,95 + 5337: -126,92 + 5338: -124,91 + 5339: -123,92 + 5340: -122,91 + 5344: -129,98 + 5345: -128,98 + 5346: -128,101 + 5347: -129,102 + 5348: -128,91 + 5396: -123,93 + 5397: -123,94 + 5399: -144,90 + 5401: -98,98 + 5404: -100,98 + 5420: -98,99 + 5421: -98,100 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 5019: -5,212 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 15533: -13,24 - 15534: -14,24 - 15535: -13,23 - 15536: -14,24 - 15537: -14,23 - 15538: -15,24 - 15545: -49,-30 - 15546: -49,-31 - 15547: -49,-32 - 15548: -49,-33 - 15549: -48,-29 - 15550: -48,-28 - 15551: -48,-29 - 15552: -48,-27 - 15553: -49,-26 - 15554: -48,-26 - 15555: -49,-26 - 15556: -49,-24 - 15557: -49,-24 - 15558: -49,-24 - 15559: -49,-25 - 15560: -49,-22 - 15561: -49,-22 - 15562: -49,-23 - 15563: -50,-19 - 15564: -50,-18 - 15565: -51,-17 - 15566: -49,-17 - 15567: -47,-16 - 15568: -47,-14 - 15569: -47,-15 - 15570: -47,-15 - 15571: -49,-14 - 15572: -50,-14 - 15573: -52,-13 - 15574: -53,-12 - 15575: -52,-11 - 15576: -52,-13 - 15577: -52,-13 - 15578: -52,-12 - 15579: -52,-15 - 15580: -55,-18 - 15581: -56,-17 - 15582: -55,-17 - 15583: -57,-18 - 15584: -59,-18 - 15585: -59,-16 - 15586: -60,-17 - 15587: -60,-17 - 15588: -61,-17 - 15589: -61,-16 - 15590: -61,-17 - 15591: -61,-16 - 15592: -59,-16 - 15593: -61,-17 - 15594: -60,-17 - 15595: -59,-17 - 15596: -58,-16 - 15597: -59,-17 - 15598: -60,-16 - 15599: -57,-18 - 15600: -58,-19 - 15601: -59,-20 - 15602: -59,-20 - 15603: -60,-19 - 15604: -58,-20 - 15605: -59,-19 - 15606: -59,-19 - 15607: -57,-19 - 15608: -57,-20 - 15609: -57,-20 - 15610: -57,-19 - 15611: -55,-19 - 15612: -54,-19 - 15613: -55,-17 - 15614: -55,-17 - 15615: -55,-17 - 15616: -55,-17 - 15617: -54,-17 - 15618: -55,-15 - 15619: -56,-14 - 15620: -53,-12 - 15683: -43,-13 - 15684: -42,-14 - 15685: -41,-14 - 15686: -39,-12 - 15687: -43,-12 - 15688: -44,-12 - 15689: -43,-11 - 15690: -39,-13 - 15691: -38,-13 - 15692: -37,-13 - 15693: -37,-12 - 15694: -37,-14 - 15695: -46,-15 - 15696: -40,-18 - 15697: -40,-18 - 15698: -40,-19 - 15699: -42,-16 - 15700: -43,-17 - 15701: -44,-17 - 15702: -43,-16 - 15703: -42,-17 - 15704: -38,-17 - 15705: -37,-16 - 15706: -35,-17 - 15707: -35,-16 - 15708: -35,-15 - 15709: -35,-15 - 15710: -35,-14 - 15711: -31,-8 - 15712: -38,-9 - 15713: -39,-8 - 15714: -38,-7 - 15715: -38,-7 - 15716: -39,-8 - 15717: -39,-6 - 15718: -39,-6 - 15719: -38,-5 - 15720: -38,-8 - 15721: -42,-8 - 15722: -43,-8 - 15723: -43,-6 - 15724: -42,-8 - 15725: -43,-6 - 15726: -44,-7 - 15727: -44,-8 - 15728: -46,-15 - 15729: -46,-15 - 15730: -46,-15 - 15731: -46,-15 - 15790: 69,1 - 15791: 69,1 - 15792: 70,2 - 15793: 69,3 - 15794: 70,1 - 15795: 73,1 - 15796: 72,3 - 15797: 73,3 - 15798: 73,1 - 15799: 71,-5 - 15800: 72,-5 - 15801: 73,-5 - 15826: -59,-11 - 15827: -59,-10 - 15828: -57,-9 - 15829: -56,-10 - 15830: -57,-10 - 15831: -59,-9 - 15832: -59,-9 - 15833: -59,-10 - 15834: -60,-10 - 15835: -61,-9 - 15836: -61,-10 - 15837: -60,-11 - 15838: -57,-10 - 15839: -55,-9 - 15840: -55,-9 - 15841: -58,-10 - 15842: -56,-11 - 15843: -55,-12 - 15844: -58,-12 - 15845: -59,-12 - 15846: -60,-11 - 15847: -60,-12 - 15848: -60,-11 - 15849: -60,-10 - 15850: -60,-10 - 15851: -59,-11 - 15852: -58,-11 - 15853: -59,-9 - 15854: -57,-9 + 3922: -129,89 + 3923: -126,88 + 3935: -140,88 + 3937: -139,89 + 4460: 9,218 + 4464: -7,217 + 4512: 59,39 + 4514: 59,43 + 5116: 38,59 - node: cleanable: True - zIndex: 1 color: '#FFFFFFFF' id: DirtHeavy decals: - 455: -28,-37 - 2913: -7,-73 - 2914: -6,-73 - 3279: -32,-22 - 3281: -38,-24 - 3314: -27,-38 - 3315: -28,-36 - 3316: -28,-35 - 3317: -28,-34 - 3612: 63,-56 - 3613: 58,-56 - 4724: 36,-30 - 4725: 36,-29 - 4726: 42,-25 - 4727: 41,-25 - 4737: 45,-33 - 4738: 45,-32 - 4739: 42,-34 - 4740: 42,-33 - 6067: 36,-11 - 6068: 34,-10 - 6069: 34,-9 - 6070: 35,-9 - 8655: -10,24 - 8656: -9,24 - 8658: -4,27 - 8659: -1,26 - 8662: 10,26 - 8663: 8,26 - 8664: 9,26 - 8665: 10,27 - 8666: 9,32 - 8667: 7,32 - 8668: 8,33 - 8669: 10,32 - 8670: 17,32 - 8671: 13,33 - 8672: 11,35 - 8673: 18,36 - 8674: 16,38 - 8675: 17,37 - 8676: 4,23 - 8677: 1,23 - 8678: 2,24 - 8679: -2,23 - 8680: -3,24 - 8681: -2,24 - 8735: 7,33 - 8736: 2,31 - 8737: 1,31 - 8738: -1,31 - 8741: -6,23 - 8742: -7,23 - 8743: -7,24 - 8744: -10,23 - 9898: -32,-15 - 9899: -32,-14 - 9900: -32,-13 - 9901: -31,-15 - 9902: -30,-12 - 9903: -31,-11 - 9904: -32,-12 - 9905: -32,-13 - 9906: -33,-14 - 9907: -33,-15 - 9908: -32,-16 - 9909: -31,-16 - 9910: -30,-17 - 9911: -31,-17 - 9912: -32,-17 - 9913: -32,-17 - 9914: -33,-17 - 9915: -32,-11 - 9916: -33,-11 - 9917: -32,-13 - 9918: -31,-14 - 9919: -32,-15 - 9920: -32,-15 - 9921: -31,-15 - 9922: -31,-15 - 9923: -31,-16 - 9924: -30,-14 - 9925: -30,-14 - 9926: -31,-13 - 9927: -27,-23 - 9928: -28,-26 - 9929: -27,-27 - 9930: -26,-27 - 9931: -27,-25 - 9934: -22,-22 - 9935: -21,-22 - 9937: -22,-24 - 9938: -20,-27 - 9940: -39,-22 - 9942: -37,-21 - 9943: -38,-22 - 9944: -41,-22 - 9947: -36,-26 - 9948: -36,-29 - 9949: -37,-30 - 9952: -41,-30 - 9953: -37,-30 - 9954: -34,-30 - 9955: -32,-31 - 9956: -32,-29 - 9957: -33,-30 - 9958: -25,-38 - 9959: -25,-39 - 9960: -26,-39 - 9961: -25,-39 - 9962: -24,-38 - 9963: -24,-36 - 9964: -24,-37 - 9965: -29,-39 - 9966: -29,-37 - 9967: -30,-37 - 9968: -30,-36 - 9969: -30,-36 - 9971: -29,-30 - 9976: -22,-32 - 9978: -21,-28 - 9979: -21,-28 - 12920: 31,35 - 12921: 32,35 - 12922: 32,35 - 12923: 32,35 - 12924: 32,35 - 12925: 28,35 - 12926: 29,35 - 12927: 26,36 - 12928: 24,36 - 12929: 23,36 - 12930: 24,38 - 12931: 23,36 - 12932: 24,40 - 12933: 23,42 - 12934: 23,42 - 12935: 23,41 - 12936: 22,46 - 12937: 22,46 - 12938: 23,47 - 12939: 28,45 - 12940: 27,46 - 12941: 26,46 - 12942: 26,47 - 12943: 26,47 - 12944: 27,47 - 12945: 28,47 - 12946: 28,47 - 12947: 28,46 - 12948: 28,46 - 12949: 28,46 - 12950: 28,46 - 12951: 28,47 - 12952: 28,47 - 12953: 27,46 - 12954: 27,40 - 12955: 26,41 - 12956: 28,41 - 12957: 26,42 - 12958: 27,41 - 12959: 27,41 - 12960: 28,42 - 12961: 27,41 - 12962: 28,41 - 12963: 28,42 - 12964: 27,41 - 12965: 28,40 - 12966: 28,38 - 12967: 27,38 - 12968: 28,37 - 12969: 23,38 - 12970: 22,37 - 12971: 22,36 - 12972: 21,36 - 12973: 22,34 - 12974: 24,34 - 12975: 25,35 - 13260: -26,32 - 13457: 66,24 - 13458: 66,25 - 13459: 68,26 - 13460: 66,27 - 13461: 65,27 - 13462: 65,27 - 13463: 66,27 - 13464: 66,26 - 13465: 66,24 - 13466: 66,22 - 13467: 68,21 - 13468: 69,21 - 13469: 68,21 - 13470: 66,21 - 13471: 65,21 - 13472: 65,21 - 13473: 65,23 + 0: -31,7 + 1: -33,8 + 41: -34,-1 + 42: -33,0 + 48: -28,-7 + 49: -29,-2 + 51: -30,0 + 52: -30,-8 + 54: -29,-5 + 69: -36,-4 + 112: -31.977407,-20.016344 + 231: -23,3 + 232: -11,3 + 258: -20,-3 + 259: -18,-6 + 260: -14,-6 + 261: -14,-3 + 262: -12,-1 + 263: -9,-1 + 365: 32,15 + 387: 28,20 + 428: 61,54 + 441: 76,46 + 442: 78,50 + 443: 76,51 + 519: 81,57 + 637: 65,66 + 638: 73,65 + 639: 77,67 + 694: 97,54 + 702: 97,47 + 706: 104,61 + 707: 110,57 + 714: 113,46 + 800: 53,43 + 859: 49,61 + 870: 53,66 + 920: 68,22 + 1059: -21,82 + 1060: -17,84 + 1061: -16,82 + 1605: -57,76 + 1606: -59,77 + 2017: -94,168 + 2025: -86,162 + 2031: -80,175 + 2032: -76,171 + 2041: -96,175 + 2042: -97,176 + 2146: -70,178 + 2147: -70,180 + 2148: -74,178 + 3514: -41,92 + 3515: -41,94 + 3516: -42,108 + 3518: -74,96 + 3519: -73,97 + 3723: -45,88 + 3724: -45,80 + 3725: -37,78 + 3726: -38,73 + 3727: -42,72 + 3728: -54,90 + 3729: -58,89 + 3730: -57,81 + 3731: -58,73 + 3732: -66,74 + 3733: -71,73 + 3752: -24,73 + 3753: -11,71 + 3754: -7,75 + 3755: -7,81 + 3756: -6,71 + 3757: -11,67 + 3758: -7,66 + 3759: -7,68 + 3764: -11,62 + 3765: -9,62 + 3766: -12,63 + 3767: -18,64 + 3768: -22,61 + 3769: -20,62 + 3770: -21,63 + 3771: -21,62 + 3772: -22,63 + 3942: -4,60 + 3943: -3,62 + 4237: -94,73 + 4239: -108,67 + 4243: -98,53 + 4248: -86,59 + 4252: -76,64 + 4274: -139,39 + 4329: -26,208 + 4352: -1,163 + 4369: -125,66 + 4442: -25,166 + 4447: 5,166 + 5008: -31,188 + 5022: 0,212 + 5025: 6,209 + 5029: 19,200 + 5043: 17,180 + 5046: 20,175 + 5047: 20,175 + 5056: 0,169 + 5077: -79,145 + 5081: -84,140 + 5141: -105,148 + 5153: 80,23 + 5183: 90,61 + 5208: -134,109 + 5220: -125,103 + 5238: -117,102 + 5239: -113,98 + 5272: -105,102 + 5282: -116,91 + 5304: -127,107 + 5309: -121,106 + 5332: -125,95 + 5333: -123,99 + 5349: -120,91 + 5400: -144,90 + 5402: -98,98 + 5422: -98,99 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 5222: -122,102 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 15191: 57,-72 - 15192: 57,-72 - 15193: 57,-73 - 15194: 58,-74 - 15195: 58,-73 + 3920: -128,88 + 3932: -140,89 + 5117: 38,63 - node: cleanable: True - zIndex: 1 color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 3607: 51,-56 - 3608: 51,-48 - 4722: 39,-32 - 4723: 35,-30 - 6039: 24,-1 - 6040: 25,-1 - 6044: 29,-11 - 6045: 29,-9 - 6085: 29,9 - 6087: 34,8 - 6089: 37,10 - 8688: -7,27 - 8689: -6,24 - 8690: -10,23 - 8691: -2,26 - 8692: -1,27 - 8713: -15,31 - 8714: -14,31 - 8716: -13,30 - 8719: -11,34 - 8720: -13,34 - 9980: -31,-21 - 9981: -32,-20 - 9984: -37,-21 - 9985: -39,-21 - 9986: -42,-27 - 9987: -42,-24 - 9988: -42,-23 - 9989: -42,-24 - 12158: 5,-63 - 12159: 7,-63 - 12160: 7,-62 - 12161: 8,-62 - 12162: 8,-54 - 12163: 7,-53 - 12164: 4,-53 - 12165: 8,-67 - 12166: 7,-67 - 12167: 6,-70 + 2: -35,7 + 3: -32,9 + 4: -30,4 + 43: -35,-2 + 44: -28,-1 + 70: -39,-15 + 90: -49,-12 + 91: -46,-10 + 113: -34.993034,-18.016344 + 117: -40,-5 + 118: -40,-6 + 119: -61,-4 + 264: -24,-5 + 265: -15,-3 + 266: -12,-3 + 267: -6,-3 + 283: -1,0 + 369: 30,18 + 386: 27,14 + 388: 31,19 + 391: 33,13 + 429: 62,51 + 430: 60,51 + 431: 61,48 + 640: 67,68 + 641: 73,68 + 695: 93,52 + 696: 98,51 + 700: 97,59 + 701: 93,48 + 708: 113,58 + 710: 116,58 + 711: 103,64 + 799: 52,42 + 860: 42,60 + 861: 44,61 + 862: 57,67 + 877: 63,66 + 926: 70,40 + 927: 70,35 + 928: 77,39 + 929: 82,38 + 930: 80,42 + 931: 87,45 + 932: 90,49 + 933: 88,52 + 934: 90,55 + 935: 93,59 + 936: 102,57 + 937: 115,58 + 1062: -13,78 + 1063: -11,77 + 1572: -41,78 + 1573: -41,84 + 1574: -41,81 + 1578: -8,71 + 1607: -62,66 + 1608: -58,66 + 1609: -58,69 + 2018: -88,168 + 2022: -90,171 + 2023: -92,165 + 2024: -93,162 + 2142: -70,174 + 2143: -72,176 + 2144: -70,176 + 2145: -73,174 + 3026: -30,175 + 3413: 72,54 + 3517: -72,94 + 3535: -82,101 + 3655: -84,33 + 3734: -69,73 + 3735: -58,78 + 3736: -50,89 + 3737: -39,92 + 3738: -33,90 + 3739: -37,83 + 3740: -37,72 + 3760: -5,65 + 3761: -10,66 + 3762: -11,63 + 3763: -10,61 + 4236: -98,72 + 4249: -82,61 + 4328: -27,209 + 4331: -30,212 + 5009: -30,193 + 5015: -17,210 + 5040: 21,185 + 5050: 23,175 + 5054: 1,172 + 5064: -19,174 + 5065: -19,174 + 5075: -40,173 + 5078: -77,149 + 5087: -93,143 + 5088: -93,143 + 5097: -132,28 + 5156: 81,19 + 5211: -136,109 + 5221: -116,98 + 5241: -112,100 + 5245: -106,98 + 5273: -101,102 + 5306: -127,108 + 5334: -124,97 + 5336: -122,94 + 5342: -129,92 + 5343: -129,100 + 5398: -123,93 - node: - cleanable: True - zIndex: 1 - color: '#474F52FF' + color: '#FFFFFFFF' id: DirtLight decals: - 250: -32,-13 - 450: -26,-27 - 452: -20,-24 - 457: -28,-23 - 458: -31,-22 - 462: -40,-29 - 463: -33,-26 - 464: -32,-25 - 1020: -62,-5 - 1021: -61,-5 - 1022: -55,-3 - 1024: -64,2 - 1027: -45,2 - 1029: -38,-2 - 1031: -2,1 - 1032: -1,5 - 1044: 5,-46 - 1045: -7,-67 - 1050: -25,-37 - 1053: -41,-30 - 1249: 11,-53 - 1252: -1,-42 - 1258: -1,-38 - 1410: -6,47 - 1411: -6,47 - 1412: -9,49 - 1413: -8,48 - 1420: -10,50 - 1421: -12,49 - 1429: -10,49 - 1430: -7,51 - 1431: -10,52 - 2724: 8,-75 - 2728: 4,-74 - 2730: 1,-74 - 2731: 0,-74 - 2733: -3,-75 - 2737: -6,-73 - 2740: -10,-70 - 3264: -41,-31 - 3267: -36,-31 - 3269: -41,-27 - 3272: -39,-24 - 3275: -33,-21 - 3276: -33,-21 - 3277: -31,-22 - 3326: -25,-35 - 3331: -28,-31 - 3332: -28,-32 - 3342: -28,-27 - 3343: -28,-26 - 3489: 7,-57 - 3501: 6,-57 - 3606: 53,-55 - 3614: 62,-56 - 3615: 58,-55 - 3616: 57,-56 - 3617: 59,-56 - 3618: 60,-56 - 3619: 54,-55 - 4729: 40,-27 - 4730: 44,-29 - 4731: 45,-28 - 4732: 44,-28 - 4733: 46,-34 - 6057: 26,-10 - 6060: 32,-5 - 8699: 1,26 - 8700: 2,27 - 8701: 7,31 - 8702: 8,27 - 8703: 9,24 - 8704: 8,23 - 8705: 9,24 - 8706: 4,24 - 8708: -14,22 - 8709: -13,23 - 12146: -7,-69 - 12147: -6,-69 - 12148: -6,-65 - 12149: -6,-64 - 12150: -5,-64 - 12168: 7,-67 - 12188: -15,-67 - 12189: -13,-67 - 12190: -10,-67 - 12191: -10,-65 - 12192: -6,-65 - 12912: 32,34 - 12914: 32,36 - 12917: 32,34 - 12919: 32,36 + 3919: -128,88 + 3924: -126,88 + 3926: -130,87 + 3927: -140,89 + 3928: -140,89 + 3929: -140,89 + 3930: -140,89 + 3931: -139,88 + 4455: 8,217 + 4463: -7,219 + 4465: -9,219 + 4466: -9,217 + 5118: 37,61 - node: cleanable: True - zIndex: 1 - color: '#474F52FF' - id: DirtMedium + color: '#FFFFFFFF' + id: DirtLight decals: - 241: -32,-18 - 453: -22,-25 - 465: -32,-24 - 1428: -8,50 - 3288: -37,-26 - 3294: -41,-24 - 3296: -41,-25 - 3297: -41,-26 - 3298: -32,-20 - 3300: -34,-20 - 3302: -28,-21 - 3303: -27,-23 - 3305: -26,-26 - 3306: -27,-26 - 3307: -27,-27 - 3310: -29,-38 - 3311: -28,-38 - 3312: -26,-38 - 3319: -28,-33 - 3320: -26,-36 - 3321: -27,-36 - 3323: -28,-32 - 3609: 55,-53 - 3610: 64,-56 - 3611: 62,-55 - 4728: 35,-23 - 4734: 45,-33 - 4735: 45,-34 - 4736: 46,-33 - 4741: 42,-33 - 4742: 42,-34 - 4743: 42,-35 - 4744: 33,-34 - 4745: 30,-29 - 4746: 25,-30 - 4747: 25,-24 - 4748: 30,-25 - 4749: 29,-18 - 4750: 25,-19 - 4751: 24,-17 - 4752: 28,-36 - 4753: 22,-35 - 4754: 18,-37 - 4755: 19,-31 - 4756: 21,-30 - 4757: 18,-28 - 4758: 22,-26 - 4759: 20,-23 - 4760: 18,-18 - 4761: 21,-18 - 8693: -5,27 - 8696: 4,26 - 8697: 4,28 - 8698: 3,28 - 8745: -6,23 - 8746: -2,23 - 8747: -1,24 - 8748: -2,24 - 12151: -5,-63 - 12152: -6,-63 - 12153: -5,-65 - 12154: 4,-66 - 12155: 3,-67 - 12156: 3,-61 - 12157: 4,-61 - 12169: 8,-67 - 12170: 9,-73 - 12171: 8,-73 - 12172: -15,-69 - 12173: -17,-69 - 12174: -24,-71 - 12175: -26,-71 - 12176: -27,-69 - 12177: -25,-70 - 12178: -26,-70 - 12179: -23,-69 - 12180: -20,-69 - 12181: -21,-69 - 12182: -23,-66 - 12183: -24,-66 - 12184: -24,-68 - 12185: -13,-63 - 12186: -15,-63 - 12187: -15,-63 - 12905: 31,36 - 12908: 31,34 - 12909: 32,34 - 13041: -37,42 - 13042: -38,42 - 13043: -38,43 - 13044: -38,43 - 13048: -35,45 - 13050: -35,45 - 13051: -35,42 - 13052: -35,41 - 13053: -37,40 - 13054: -36,39 - 13055: -36,39 - 13056: -37,40 - 13057: -37,37 - 13058: -37,38 - 13059: -35,39 - 13060: -34,38 - 13061: -35,38 - 13062: -35,37 - 13063: -35,37 - 13064: -35,37 - 13065: -33,37 - 13066: -33,37 - 13067: -33,38 - 13068: -35,38 - 13069: -36,39 - 13070: -38,39 - 13071: -38,40 - 13072: -38,40 - 13073: -38,42 - 13074: -38,43 - 13075: -39,44 - 13076: -39,44 - 13077: -38,45 - 13078: -38,45 - 13079: -38,45 - 13080: -35,45 - 13081: -35,45 - 13082: -36,42 - 13083: -35,42 - 13084: -35,42 - 13085: -35,42 - 13086: -36,43 - 13087: -36,43 - 13088: -36,43 - 13089: -35,45 - 13090: -35,44 - 13091: -35,43 - 13092: -35,42 - 13095: -25,30 - 13096: -26,31 - 13097: -26,31 - 13098: -26,31 - 13101: -25,31 - 13102: -25,31 - 13103: -25,32 - 13104: -25,31 - 13105: -26,30 - 13106: -26,30 - 13107: -25,30 - 13108: -25,30 - 13109: -25,30 - 13110: -25,31 - 13111: -25,31 - 13112: -25,31 - 13113: -25,31 - 13114: -25,31 - 13115: -26,31 - 13116: -25,31 - 13118: -25,31 - 13139: -32,43 - 13140: -33,44 - 13141: -33,44 - 13142: -33,45 - 13143: -33,45 - 13144: -33,44 - 13145: -33,44 - 13146: -32,43 + 5: -27,4 + 6: -34,1 + 45: -27,-1 + 46: -27,-5 + 67: -33,-5 + 96: -47,-11 + 97: -47,-14 + 98: -48,-8 + 99: -48,-6 + 100: -49,-5 + 101: -47,-5 + 111: -35.00866,-21.03197 + 116: -40,0 + 233: -18,3 + 234: -14,3 + 235: -8,3 + 268: -7,-3 + 269: -7,-2 + 270: -11,-2 + 271: -22,-5 + 272: -20,-6 + 282: 2,2 + 350: 29,19 + 367: 28,15 + 368: 26,17 + 432: 62,48 + 433: 61,52 + 436: 65,52 + 437: 65,46 + 438: 68,47 + 445: 77,56 + 446: 74,59 + 447: 72,58 + 574: 63,61 + 578: 69,44 + 642: 76,66 + 697: 99,52 + 698: 92,54 + 699: 94,58 + 703: 99,48 + 704: 91,48 + 712: 103,48 + 713: 109,46 + 798: 51,42 + 863: 63,67 + 864: 53,59 + 865: 40,61 + 878: 62,66 + 879: 74,66 + 938: 112,59 + 939: 95,58 + 940: 89,56 + 941: 87,55 + 942: 89,50 + 943: 89,47 + 944: 87,46 + 945: 90,42 + 946: 90,47 + 947: 88,44 + 948: 85,38 + 949: 84,40 + 950: 80,39 + 1064: -11,81 + 1065: -12,83 + 1575: -25,86 + 1576: -23,84 + 1610: -58,70 + 2026: -85,164 + 2033: -79,167 + 2043: -98,174 + 2044: -98,174 + 3025: -26,173 + 3251: 106,58 + 3652: -85,33 + 3741: -29,91 + 3742: -23,88 + 3743: -19,92 + 3744: -19,99 + 3773: -22,60 + 3774: -20,60 + 3775: -22,63 + 3776: -20,62 + 3944: -5,62 + 3945: -5,63 + 3946: -7,62 + 4234: -103,68 + 4238: -91,74 + 4240: -94,55 + 4241: -91,57 + 4250: -83,62 + 4327: -30,208 + 4330: -28,210 + 4368: -123,64 + 4370: -125,64 + 4440: -21,162 + 4443: -20,165 + 4444: 17,205 + 5012: -22,209 + 5016: -15,212 + 5023: 3,210 + 5027: 5,205 + 5030: 21,199 + 5031: 21,199 + 5041: 22,184 + 5049: 23,181 + 5053: 4,175 + 5063: -23,173 + 5083: -85,145 + 5089: -99,145 + 5096: -133,33 + 5098: -131,25 + 5157: 80,21 + 5182: 84,54 + 5209: -129,108 + 5214: -132,106 + 5218: -118,99 + 5242: -108,99 + 5244: -103,100 + 5261: -103,98 + 5284: -115,94 + 5285: -119,91 + 5307: -126,107 + 5335: -126,100 + 5341: -129,92 + 5403: -100,98 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 5223: -121,102 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 15196: 58,-73 - 15197: 57,-73 - 15198: 59,-74 - 15199: 58,-73 - 15200: 57,-72 - 15201: 57,-71 - 15202: 55,-72 - 15203: 54,-73 - 15204: 56,-74 - 15205: 59,-73 - 15206: 57,-72 - 15207: 59,-72 - 15208: 60,-73 - 15209: 61,-74 - 15210: 60,-74 - 15211: 62,-74 - 15212: 63,-76 - 15213: 62,-78 - 15214: 63,-80 - 15215: 63,-80 - 15216: 62,-79 - 15217: 62,-79 - 15218: 60,-79 - 15219: 57,-79 - 15220: 58,-80 - 15221: 57,-79 - 15222: 56,-78 - 15223: 55,-78 - 15224: 55,-79 - 15225: 55,-79 - 15226: 55,-77 - 15227: 55,-76 - 15228: 54,-75 - 15229: 54,-74 - 15230: 54,-74 - 15231: 53,-73 - 15232: 50,-72 - 15233: 50,-73 - 15234: 50,-73 - 15235: 50,-73 - 15236: 49,-72 - 15237: 49,-71 - 15238: 51,-70 - 15239: 51,-71 - 15240: 51,-72 - 15241: 53,-71 - 15242: 53,-70 - 15243: 53,-70 - 15244: 53,-71 - 15245: 53,-70 - 15246: 53,-69 - 15247: 55,-71 - 15248: 55,-69 - 15249: 56,-69 - 15250: 58,-69 - 15251: 60,-69 - 15252: 58,-70 - 15253: 58,-71 - 15254: 56,-71 - 15255: 58,-72 - 15256: 59,-73 - 15257: 59,-74 - 15258: 60,-74 - 15259: 60,-73 - 15260: 62,-71 - 15261: 62,-69 - 15262: 63,-70 - 15263: 64,-72 - 15264: 65,-72 - 15265: 65,-70 - 15266: 65,-68 - 15267: 66,-69 - 15268: 67,-69 - 15269: 65,-67 - 15270: 66,-65 - 15271: 66,-68 - 15272: 66,-69 - 15273: 66,-69 - 15274: 65,-70 - 15275: 65,-71 - 15276: 65,-72 - 15277: 65,-73 - 15278: 65,-73 - 15279: 65,-72 - 15280: 65,-72 - 15281: 64,-71 - 15282: 57,-72 - 15283: -24,-53 - 15284: -25,-55 - 15285: -26,-54 - 15286: -25,-52 - 15287: -25,-53 - 15288: -26,-53 - 15289: -25,-52 - 15290: -26,-52 - 15291: -26,-53 - 15292: -28,-50 - 15293: -26,-50 - 15294: -24,-50 - 15295: -22,-50 - 15296: -22,-51 - 15297: -21,-53 - 15298: -25,-52 - 15299: -27,-55 - 15300: -28,-57 - 15301: -28,-58 - 15302: -30,-57 - 15303: -29,-55 - 15304: -30,-55 - 15305: -30,-57 - 15306: -30,-58 - 15307: -27,-59 - 15308: -28,-58 - 15309: -28,-54 - 15310: -29,-52 - 15311: -29,-51 - 15312: -28,-50 - 15313: -29,-50 - 15314: -29,-53 - 15315: -27,-55 - 15316: -26,-53 - 15363: -55,10 - 15364: -56,10 - 15365: -58,10 - 15366: -56,11 - 15367: -56,11 - 15368: -57,10 - 15369: -60,11 - 15370: -60,11 - 15371: -60,12 - 15372: -60,12 - 15373: -60,14 - 15374: -59,15 - 15375: -59,16 - 15376: -57,17 - 15377: -54,17 - 15378: -54,17 - 15379: -54,17 - 15380: -53,17 + 3918: -129,89 + 3921: -129,89 + 3925: -130,87 + 3933: -139,89 + 3934: -139,88 + 4456: 7,218 + 4511: 57,42 + 4513: 57,38 + 5119: 32,59 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 7: -31,3 + 8: -29,3 + 47: -29,-6 + 50: -26,-1 + 68: -35,-5 + 92: -48,-12 + 93: -49,-9 + 94: -45,-8 + 95: -50,-13 + 110: -34.993034,-20.00072 + 120: -51,0 + 121: -53,1 + 122: -51,2 + 123: -50,-1 + 124: -52,-3 + 125: -47,-2 + 126: -45,-1 + 127: -44,0 + 128: -43,0 + 129: -53,4 + 130: -51,5 + 131: -48,7 + 132: -52,-1 + 133: -48,8 + 134: -46,12 + 135: -50,10 + 136: -45,10 + 137: -42,12 + 138: -41,11 + 139: -46,14 + 236: -23,4 + 237: -16,3 + 238: -12,4 + 273: -11,-3 + 274: -7,-1 + 275: -15,0 + 276: -22,0 + 277: -12,0 + 278: -16,-4 + 279: -3,-1 + 280: 1,1 + 281: 4,-1 + 349: 26.966436,17.025229 + 364: 27,11 + 366: 30,11 + 384: 27,11 + 385: 27,16 + 434: 60,49 + 435: 65,54 + 439: 69,47 + 440: 71,46 + 444: 77,53 + 575: 66,49 + 576: 71,44 + 577: 73,43 + 715: 114,49 + 716: 103,47 + 867: 42,64 + 924: 65,20 + 925: 66,39 + 1577: -25,73 + 2019: -89,170 + 2020: -88,172 + 2021: -87,175 + 2027: -87,163 + 2028: -83,164 + 2029: -84,172 + 2030: -82,174 + 3250: 110,60 + 3414: 70,52 + 3551: -33,57 + 3552: -34,57 + 3553: -34,60 + 3554: -33,60 + 3555: -33,60 + 3556: -33,60 + 3557: -33,60 + 3558: -33,60 + 3561: -33,60 + 3563: -33,60 + 3564: -33,60 + 3566: -33,60 + 3568: -33,60 + 3577: -43,57 + 3578: -43,57 + 3579: -43,57 + 3580: -43,60 + 3581: -42,60 + 3582: -42,60 + 3583: -42,60 + 3584: -43,60 + 3585: -43,60 + 3586: -43,60 + 3587: -43,60 + 3588: -42,60 + 3589: -42,60 + 3590: -42,60 + 3591: -42,60 + 3592: -42,60 + 3593: -42,60 + 3594: -42,60 + 3595: -42,60 + 3596: -42,60 + 3598: -42,60 + 3599: -42,60 + 3601: -42,60 + 3602: -42,60 + 3604: -42,60 + 3653: -84,33 + 3654: -85,33 + 3745: -18,98 + 3746: -17,93 + 3747: -19,90 + 3748: -24,82 + 3749: -25,75 + 3750: -20,77 + 3751: -15,74 + 4235: -101,70 + 4242: -93,56 + 4245: -88,58 + 4251: -81,63 + 4253: -78,63 + 4351: 1,162 + 4367: -121,65 + 4441: -19,161 + 4445: 16,205 + 4446: 16,205 + 4897: -82,83 + 5006: -31,183 + 5011: -24,205 + 5026: 7,203 + 5035: 23,193 + 5038: 23,189 + 5039: 23,189 + 5048: 23,179 + 5052: 10,180 + 5057: 0,174 + 5061: -24,174 + 5062: -24,174 + 5076: -39,173 + 5086: -92,144 + 5091: -109,147 + 5094: -129,28 + 5143: -111,147 + 5181: 85,48 + 5210: -135,105 + 5215: -132,106 + 5217: -120,97 + 5219: -120,99 + 5233: -119,101 + 5240: -113,100 + 5243: -109,98 + 5246: -101,99 + 5262: -112,98 + 5283: -115,93 + 5308: -125,106 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 10251: 70,-8 - 10252: 76,-7 + 3230: 105,60 - node: + cleanable: True color: '#FFFFFFFF' id: FlowersBRThree decals: - 11344: -13,10 + 1101: -18,76 - node: + cleanable: True color: '#FFFFFFFF' id: FlowersBRTwo decals: - 10560: 8.002884,-28.026983 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: FlowersBRTwo - decals: - 10436: 80,-12 - 10437: 83,-10 + 1100: -19,75 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 4457: 32,-23 - 16128: -4,-20 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 10438: 83,-11 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 10558: 6,-28 - 16129: 3,-20 + 3229: 104,60 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 10559: 7,-28 + 1091: -9,73 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 10249: 70,-7 - 10250: 76,-8 - 11345: -13,8 - 11346: -13,9 + 4203: -96,148 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 1141: 43.154446,-52.983627 - 16130: -5,-20 - 16131: 3,-20 + 3227: 112,60 + 4199: -97,148 + 4200: -98,149 + 4201: -94,152 - node: - zIndex: 3 color: '#FFFFFFFF' id: Flowerspv3 decals: - 10441: 80,-11 - 10442: 83,-12 - 10443: 80,-10 + 3228: 111,60 + 4204: -99,150 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 11343: -13,9 + 3224: 107,60 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 4456: 32,-23 + 3225: 108,60 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 1140: 43.85757,-52.030502 - 10248: 70,-7 + 3226: 109,60 - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 1139: 46.216946,-53.983627 - 16132: -4,-20 - 16133: 2,-20 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 10439: 83,-11 - 10440: 80,-10 - - node: - color: '#0096FFFF' + color: '#14253AC6' id: FullTileOverlayGreyscale decals: - 15483: 0,28 + 1035: -14,82 + 1036: -14,83 + 1037: -14,84 + 1038: -13,84 + 1039: -12,84 + 1040: -11,84 + 1041: -10,84 + 1042: -10,83 + 1043: -10,82 + 1044: -10,81 + 1045: -10,80 + 1046: -10,79 + 1047: -10,78 + 1048: -10,77 + 1049: -14,77 + 1050: -14,78 + 1051: -14,79 + 1052: -14,80 + 1053: -14,81 - node: - color: '#32CD32FF' + color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 15484: -2,28 + 1219: -35,84 + 1220: -35,85 + 1221: -35,86 - node: - color: '#52B4E9FF' + color: '#A4610696' id: FullTileOverlayGreyscale decals: - 4275: 25,-19 + 1216: -42,70 + 1217: -41,70 + 1218: -40,70 + 1359: -36,5 + 1360: -35,5 + 1361: -34,5 - node: - color: '#8932B8FF' + color: '#B0B1B160' id: FullTileOverlayGreyscale decals: - 15485: -3,28 + 4944: -63,89 + 4945: -61,89 + 4946: -63,90 + 4947: -62,91 + 4948: -64,91 + 4949: -63,90 + 4950: -63,91 + 4951: -65,90 - node: - color: '#FFA500FF' + color: '#D381C996' id: FullTileOverlayGreyscale decals: - 15482: 1,28 + 1211: -47,84 + 1212: -47,85 + 1213: -47,86 + 2084: -68,156 + 2085: -68,157 + 2086: -68,158 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 1214: -35,76 + 1215: -35,77 + 1417: 69,35 + 1418: 69,34 + 1419: 69,33 + 1420: -35,78 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 3170: -88,42 + 3171: -88,41 + 3172: -88,40 + 4353: -47,77 + 4354: -47,78 + 4355: -47,76 - node: color: '#FFFFFFFF' id: Grassa1 decals: - 11416: 72.20051,8.902444 - 11417: 72.70051,9.824319 - 11418: 74.27863,10.949319 - 11419: 70.18488,10.996194 - 11420: 69.13801,10.168069 - 11421: 68.27863,10.933694 - 15776: -12.026538,51.065056 + 2138: -73,176 + 2277: -67,166 + 2278: -60,165 + 2286: -61,167 + 3685: -70,99 + 3686: -69,100 + 3687: -66,98 + 4129: -1.2747536,60.71662 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 10561: 8,-28 - 15777: -15.135913,52.846306 + 2281: -66,162 + 2282: -65,161 + 2988: 9,186 + 2989: 11,185 + 5487: -43,87 + 5488: -41,88 + 5489: -39,87 + 5490: -40,74 + 5491: -39,76 + 5492: -43,75 + 5493: -40,75 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 11415: 72.24738,9.136819 - 11428: 67.99738,10.730569 - 11429: 71.60676,11.746194 - 15775: -12.573413,51.096306 + 2234: -65,171 + 2283: -62,161 + 3680: -65,105 + 4127: 0.6537819,59.959724 + 4267: -70,161 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 11422: 73.27863,9.964944 - 11423: 72.30988,10.824319 - 11424: 72.93488,11.277444 - 11425: 71.73176,10.949319 - 11426: 73.26301,10.621194 - 11427: 69.80988,10.933694 - 11430: 70.32551,11.746194 + 2231: -58,171 + 2981: 12,199 + 4125: 0.61068726,61.074062 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 11409: 68.10676,9.714944 - 11431: 70.87238,12.074319 - 11432: 73.99738,9.230569 - 11433: 74.68488,8.699319 - 15774: -11.948413,52.846306 + 2232: -58,172 + 2233: -58,174 + 2290: -61,158 + 3681: -66,104 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassa5 + decals: + 1098: -19,76 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 1145: 47.091946,-51.921127 + 2118: -91,171 + 2279: -60,164 + 2280: -61,162 + 2284: -67,165 + 2294: -65,164 + 2333: -61,153 + 2334: -70,156 + 2978: 13,191 + 3677: -66,90 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 2111: -82,168 + 2113: -92,168 + 2171: -70,168 + 2174: -73,167 + 2230: -61,171 + 2287: -60,166 + 2288: -67,172 + 2289: -60,159 + 2332: -57,153 + 2993: 12,183 + 3678: -64,95 + 3679: -63,97 + 4268: -69,161 + 4909: -71.068665,65.61056 + 4919: -68.80304,68.00118 + 4920: -68.80304,68.00118 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb2 + decals: + 1099: -18,75 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 11406: 69.32551,8.933694 - 11408: 68.85676,9.808694 - 11411: 66.91926,10.589944 - 11412: 67.46613,9.761819 - 11414: 71.65363,9.308694 + 2122: -82,168 + 2123: -77,173 + 2322: -98,156 + 2335: -73,157 + 2979: 10,187 + 4266: -73,154 + 4910: -70.474915,64.89181 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 11407: 69.52863,9.589944 - 11410: 67.57551,10.027444 - 15778: -15.917163,52.940056 + 2170: -70,169 + 2291: -61,157 + 2292: -63,166 + 2293: -63,165 + 2977: 9,191 + 3682: -64,102 + 3683: -67,102 + 3954: -43,109 + 4123: -1.0299377,62.839687 + 4916: -68.89679,66.11056 + 4917: -68.89679,66.09493 + 4934: -65.13701,71.18136 + 4983: -67.859055,90.60883 + 4984: -67.859055,90.59321 + 4985: -66.265305,105.00909 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 1146: 42.85757,-51.827377 - 15779: -15.948413,51.033806 - - node: - color: '#FFFFFFFF' - id: Grassc1 - decals: - 15780: -15.089038,51.14318 - - node: - color: '#FFFFFFFF' - id: Grassc2 - decals: - 10566: 5.956009,-27.995733 - 15781: -12.495288,51.127556 - - node: - color: '#FFFFFFFF' - id: Grassc3 - decals: - 15782: -12.464038,52.940056 - - node: - color: '#FFFFFFFF' - id: Grassc4 - decals: - 15783: -15.964038,53.033806 + 2119: -93,174 + 2120: -89,173 + 2121: -86,171 + 2124: -78,175 + 2140: -73,175 + 2141: -69,173 + 2172: -70,172 + 2173: -71,171 + 2285: -61,168 + 2295: -64,166 + 2980: 8,197 + 2990: 10,185 + 3684: -69,99 + 3955: -39,109 + 4124: -0.061187744,61.933437 + 4130: -0.9622536,60.09162 + 4269: -72,159 + 4911: -69.099915,65.20431 + 4918: -70.61554,66.26681 + 4935: -64.9206,70.82198 + 4936: -64.9206,70.82198 + 4980: -63.92388,95.910164 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1138: 46.57632,-52.483627 - 3357: 42,0 - 10562: 7,-28 + 4126: -0.2524681,60.995605 + 4912: -69.756165,65.89181 + 4913: -69.756165,65.89181 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 1137: 44.04507,-52.733627 - 3356: 44,0 + 4122: -0.99868774,62.355312 + 4131: -1.7278786,60.263496 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 3358: 43,0 + 4128: -0.2524681,60.044746 + 4132: -1.5418396,61.884384 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 1135: 46.42007,-53.327377 - 1136: 43.29507,-52.358627 - 3354: 43,-1 + 4120: -0.18618774,62.683437 + 4914: -69.95929,66.70431 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 3355: 42,-1 - 10563: 6,-28 - 15784: -15.979663,51.190056 + 4915: -69.24054,67.46993 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 3353: 44,-1 - 15785: -12.854663,51.190056 + 4121: 0.81381226,62.245937 - node: color: '#FFFFFFFF' - id: GrayConcreteTrimInnerSw + id: GrayConcreteTrimCornerNe decals: - 11443: 71,9 + 5185: -129,109 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimCornerSw + decals: + 5196: -137,105 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerNe + decals: + 5190: -129,107 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerNw + decals: + 5197: -137,109 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerSe + decals: + 5195: -133,105 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineE + decals: + 5191: -129,106 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 11435: 67,8 - 11436: 68,8 - 11437: 69,8 - 11438: 70,8 + 5186: -130,109 + 5187: -131,109 + 5188: -132,109 + 5189: -133,109 + 5198: -135,109 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 11439: 67,9 - 11440: 68,9 - 11441: 69,9 - 11442: 70,9 - 13610: -41,-38 - 13611: -42,-38 - 13612: -43,-38 - 13613: -44,-38 + 5192: -131,105 + 5193: -132,105 + 5194: -134,105 - node: - color: '#52B4E9FF' + color: '#8932B878' id: HalfTileOverlayGreyscale decals: - 4279: 25,-20 + 1080: -3,82 + 1081: -2,82 + 1082: -1,82 + - node: + color: '#966E50FF' + id: HalfTileOverlayGreyscale + decals: + 166: -62,-2 + 167: -61,-2 + 168: -60,-2 + 177: -58,-7 + 178: -57,-7 + 179: -56,-7 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 522: 70,41 + 523: 71,41 + 524: 72,41 + 527: 68,40 + 528: 65,40 + 529: 64,40 + 530: 66,40 + 531: 67,40 + 532: 74,40 + 533: 75,40 + 534: 76,40 + 535: 77,40 + 536: 78,40 + 662: 91,49 + 663: 92,49 + 664: 93,49 + 665: 94,49 + 666: 95,49 + 667: 96,49 + 668: 97,49 + 669: 98,49 + 670: 99,49 + 5599: 71,30 + - node: + color: '#6B84BAFF' + id: HalfTileOverlayGreyscale180 + decals: + 407: 60,54 + 408: 61,54 + 409: 62,54 + - node: + color: '#6BA487FF' + id: HalfTileOverlayGreyscale180 + decals: + 418: 60,51 + 419: 61,51 + 420: 62,51 + - node: + color: '#8932B878' + id: HalfTileOverlayGreyscale180 + decals: + 1083: -3,80 + 1084: -2,80 + 1085: -1,80 + - node: + color: '#966E50FF' + id: HalfTileOverlayGreyscale180 + decals: + 160: -66,-10 + 161: -65,-10 + 162: -64,-10 + 163: -62,-10 + 164: -61,-10 + 165: -60,-10 + 174: -56,-1 + 175: -57,-1 + 176: -58,-1 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 1112: -43,71 + 1113: -42,71 + 1114: -41,71 + 1326: -40,71 + 3720: -39,71 + - node: + color: '#A77E7DFF' + id: HalfTileOverlayGreyscale180 + decals: + 421: 60,48 + 422: 61,48 + 423: 62,48 + - node: + color: '#B2B4BE93' + id: HalfTileOverlayGreyscale180 + decals: + 4829: 81,51 + - node: + color: '#D1CA4493' + id: HalfTileOverlayGreyscale180 + decals: + 4834: 81,48 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 4823: 81,54 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 671: 91,57 + 672: 92,57 + 673: 93,57 + 674: 94,57 + 675: 95,57 + 676: 96,57 + 677: 97,57 + 678: 98,57 + 5600: 71,26 - node: color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 2413: 34,-37 - - node: - color: '#52B4E9FF' - id: HalfTileOverlayGreyscale180 - decals: - 4277: 25,-18 - - node: - color: '#52B4E9FF' id: HalfTileOverlayGreyscale270 decals: - 4278: 26,-19 + 4407: -11,170 + 4408: -11,169 + 4409: -11,168 - node: - color: '#52B4E9FF' + color: '#6B84BAFF' + id: HalfTileOverlayGreyscale270 + decals: + 410: 60,54 + 411: 60,55 + - node: + color: '#6BA487FF' + id: HalfTileOverlayGreyscale270 + decals: + 416: 60,52 + 417: 60,51 + - node: + color: '#8932B878' + id: HalfTileOverlayGreyscale270 + decals: + 1079: -4,81 + - node: + color: '#966E50FF' + id: HalfTileOverlayGreyscale270 + decals: + 151: -62,-10 + 152: -62,-9 + 153: -62,-8 + 154: -62,-7 + 155: -62,-6 + 156: -62,-5 + 157: -62,-4 + 158: -62,-3 + 159: -62,-2 + 169: -55,-2 + 170: -55,-3 + 171: -55,-4 + 172: -55,-5 + 173: -55,-6 + - node: + color: '#A77E7DFF' + id: HalfTileOverlayGreyscale270 + decals: + 424: 60,48 + 425: 60,49 + - node: + color: '#B2B4BE93' + id: HalfTileOverlayGreyscale270 + decals: + 4830: 80,52 + - node: + color: '#D1CA4493' + id: HalfTileOverlayGreyscale270 + decals: + 4833: 80,49 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 1108: -46,87 + 1109: -46,86 + 1110: -46,84 + 1111: -46,83 + 1321: -46,85 + 4824: 80,55 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 539: 79,41 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 1115: -46,78 + 1116: -46,79 + 3717: -46,77 + 3718: -46,76 + 3719: -46,75 + - node: + color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 4276: 24,-19 + 1104: -36,83 + 1105: -36,84 + 1106: -36,86 + 1107: -36,87 + 3722: -36,85 - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea + color: '#6B84BAFF' + id: HalfTileOverlayGreyscale90 decals: - 488: -15,-23 + 412: 62,54 + 413: 62,55 + - node: + color: '#6BA487FF' + id: HalfTileOverlayGreyscale90 + decals: + 414: 62,52 + 415: 62,51 + - node: + color: '#8932B878' + id: HalfTileOverlayGreyscale90 + decals: + 1078: 0,81 + - node: + color: '#966E50FF' + id: HalfTileOverlayGreyscale90 + decals: + 140: -60,-2 + 141: -60,-3 + 142: -60,-4 + 143: -60,-5 + 144: -60,-6 + 145: -60,-7 + 146: -60,-8 + 147: -60,-9 + 148: -60,-10 + 149: -64,-10 + 150: -64,-9 + - node: + color: '#A77E7DFF' + id: HalfTileOverlayGreyscale90 + decals: + 426: 62,48 + 427: 62,49 + - node: + color: '#B2B4BE93' + id: HalfTileOverlayGreyscale90 + decals: + 4831: 82,52 + - node: + color: '#D1CA4493' + id: HalfTileOverlayGreyscale90 + decals: + 4832: 82,49 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 2112: -69,155 + 2114: -69,156 + 2115: -69,157 + 2116: -69,158 + 2117: -69,159 + 4822: 82,55 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 538: 63,41 + 679: 90,56 + 680: 90,55 + 681: 90,54 + 682: 90,53 + 683: 90,52 + 684: 90,51 + 685: 90,50 + 1102: -36,77 + 1103: -36,79 + 1296: -36,75 + 1422: -36,78 + 3721: -36,76 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 3173: -89,39 + 3174: -89,40 + 3175: -89,41 + 3176: -89,42 + 3177: -89,43 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 3651: 57,-52 + 543: 62,59 + 1002: -16,79 + 4148: 59,59 + 4273: -73,165 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 487: -15,-28 + 3498: -96,40 - node: - zIndex: 5 - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingLine - decals: - 13780: 66,-11 - 13781: 67,-11 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: LoadingLine - decals: - 13762: 8,16 - 13763: 9,16 - 13782: 66,-13 - 13783: 67,-13 - 13798: -2,-52 - 13799: -1,-52 - 13800: 0,-52 - 13921: 8,1 - 13922: 9,1 - - node: - zIndex: 5 - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingLine - decals: - 13764: 55,-10 - 13765: 55,-9 - 13766: 65,-10 - 13767: 65,-9 - 13768: 70,-10 - 13769: 70,-9 - 13770: 78,-10 - 13771: 78,-9 - - node: - zIndex: 5 angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: LoadingLine + id: LoadingArea decals: - 13801: -2,-50 - 13802: -1,-50 - 13803: 0,-50 + 240: -11,-3 + 1003: -21,79 + - node: + color: '#D381C996' + id: MiniTileDarkCornerNe + decals: + 2068: -63,159 + - node: + color: '#D381C996' + id: MiniTileDarkCornerNw + decals: + 2069: -67,159 + - node: + color: '#D381C996' + id: MiniTileDarkCornerSe + decals: + 2076: -63,155 + - node: + color: '#D381C996' + id: MiniTileDarkCornerSw + decals: + 2077: -67,155 + - node: + color: '#D381C996' + id: MiniTileDarkLineE + decals: + 2073: -63,156 + 2074: -63,157 + 2075: -63,158 + - node: + color: '#D381C996' + id: MiniTileDarkLineN + decals: + 2070: -66,159 + 2071: -64,159 + 2072: -65,159 + - node: + color: '#D381C996' + id: MiniTileDarkLineS + decals: + 2078: -64,155 + 2079: -65,155 + 2080: -66,155 + - node: + color: '#D4D4D496' + id: MiniTileDarkLineW + decals: + 1067: -7,84 + 1068: -7,85 + 1069: -7,86 + 1070: -7,86 + 1071: -7,85 + 1072: -7,84 + 1073: -8,85 + - node: + color: '#EFB34196' + id: MiniTileLineOverlayN + decals: + 5561: -124,55 + 5562: -123,55 + 5563: -122,55 + - node: + color: '#EFB34196' + id: MiniTileLineOverlayS + decals: + 5558: -123,53 + 5559: -124,53 + - node: + color: '#EFB34196' + id: MiniTileLineOverlayW + decals: + 5560: -125,54 + - node: + color: '#D4D4D496' + id: MiniTileOverlay + decals: + 1066: -8,85 + 1074: -8,84 + 1075: -8,86 + - node: + color: '#334E6DC8' + id: MiniTileSteelCornerNe + decals: + 1498: -40,107 + - node: + color: '#52B4E996' + id: MiniTileSteelCornerNe + decals: + 1263: -30,87 + 2450: -19,194 + 4405: -12,171 + - node: + color: '#A4610696' + id: MiniTileSteelCornerNe + decals: + 1264: -39,69 + 1337: -33,10 + - node: + color: '#D381C996' + id: MiniTileSteelCornerNe + decals: + 1209: -48,87 + 2087: -69,180 + 2088: -70,181 + - node: + color: '#DE3A3A96' + id: MiniTileSteelCornerNe + decals: + 1173: -30,79 + 1407: 68,36 + - node: + color: '#EFB34196' + id: MiniTileSteelCornerNe + decals: + 1120: -48,79 + 3144: -83,43 + - node: + color: '#FFC364FF' + id: MiniTileSteelCornerNe + decals: + 84: -45,-8 + 208: -36,-13 + 215: -40,-11 + - node: + color: '#334E6DC8' + id: MiniTileSteelCornerNw + decals: + 1497: -42,107 + - node: + color: '#52B4E996' + id: MiniTileSteelCornerNw + decals: + 1260: -34,87 + 2443: -25,194 + 4402: -16,171 + - node: + color: '#A4610696' + id: MiniTileSteelCornerNw + decals: + 1265: -43,69 + 1336: -37,10 + - node: + color: '#D381C996' + id: MiniTileSteelCornerNw + decals: + 1206: -52,87 + - node: + color: '#D4D4D496' + id: MiniTileSteelCornerNw + decals: + 1076: -8,86 + - node: + color: '#DE3A3A96' + id: MiniTileSteelCornerNw + decals: + 1176: -34,79 + 1401: 64,36 + - node: + color: '#EFB34196' + id: MiniTileSteelCornerNw + decals: + 896: 66,21 + 897: 67,23 + 898: 69,24 + 1117: -52,79 + 3141: -87,43 + - node: + color: '#FFC364FF' + id: MiniTileSteelCornerNw + decals: + 82: -50,-8 + 195: -38,-13 + 197: -43,-15 + - node: + color: '#334E6DC8' + id: MiniTileSteelCornerSe + decals: + 1496: -40,106 + - node: + color: '#52B4E996' + id: MiniTileSteelCornerSe + decals: + 1261: -30,83 + 2444: -19,191 + 4403: -12,167 + - node: + color: '#A4610696' + id: MiniTileSteelCornerSe + decals: + 1266: -39,65 + 1338: -33,6 + - node: + color: '#D381C996' + id: MiniTileSteelCornerSe + decals: + 1208: -48,83 + 2097: -69,167 + - node: + color: '#DE3A3A96' + id: MiniTileSteelCornerSe + decals: + 1174: -30,75 + 1402: 68,32 + - node: + color: '#EFB34196' + id: MiniTileSteelCornerSe + decals: + 1118: -48,75 + 3142: -83,39 + - node: + color: '#FFC364FF' + id: MiniTileSteelCornerSe + decals: + 207: -36,-16 + 209: -40,-13 + - node: + color: '#334E6DC8' + id: MiniTileSteelCornerSw + decals: + 1500: -42,106 + - node: + color: '#52B4E996' + id: MiniTileSteelCornerSw + decals: + 1262: -34,83 + 4404: -16,167 + - node: + color: '#A4610696' + id: MiniTileSteelCornerSw + decals: + 1267: -43,65 + 1339: -37,6 + - node: + color: '#D381C996' + id: MiniTileSteelCornerSw + decals: + 1207: -52,83 + - node: + color: '#D4D4D496' + id: MiniTileSteelCornerSw + decals: + 1077: -8,84 + - node: + color: '#DE3A3A96' + id: MiniTileSteelCornerSw + decals: + 1175: -34,75 + 1403: 64,32 + - node: + color: '#EFB34196' + id: MiniTileSteelCornerSw + decals: + 1119: -52,75 + 3143: -87,39 + - node: + color: '#FFC364FF' + id: MiniTileSteelCornerSw + decals: + 83: -50,-13 + 196: -43,-16 + - node: + color: '#D381C996' + id: MiniTileSteelInnerNe + decals: + 2089: -70,180 + - node: + color: '#FFC364FF' + id: MiniTileSteelInnerNe + decals: + 216: -45,-11 + - node: + color: '#EFB34196' + id: MiniTileSteelInnerNw + decals: + 916: 67,21 + 919: 69,23 + - node: + color: '#FFC364FF' + id: MiniTileSteelInnerNw + decals: + 203: -38,-15 + - node: + color: '#52B4E996' + id: MiniTileSteelLineE + decals: + 1257: -30,86 + 1258: -30,85 + 1259: -30,84 + 2701: -6,209 + 2702: -6,208 + 2703: -6,207 + 4393: -12,168 + 4394: -12,169 + 4395: -12,170 + - node: + color: '#A4610696' + id: MiniTileSteelLineE + decals: + 1274: -39,66 + 1275: -39,67 + 1276: -39,68 + 1333: -33,9 + 1334: -33,8 + 1335: -33,7 + - node: + color: '#D381C996' + id: MiniTileSteelLineE + decals: + 2090: -69,179 + 2091: -69,178 + 2092: -69,177 + 2093: -69,176 + 2094: -69,175 + 2095: -69,174 + 2096: -69,173 + - node: + color: '#DE3A3A96' + id: MiniTileSteelLineE + decals: + 1167: -30,76 + 1168: -30,77 + 1169: -30,78 + - node: + color: '#EFB34196' + id: MiniTileSteelLineE + decals: + 3151: -83,40 + 3152: -83,41 + 3153: -83,42 + - node: + color: '#FFC364FF' + id: MiniTileSteelLineE + decals: + 71: -45,-9 + 72: -45,-10 + 205: -36,-14 + 206: -36,-15 + 214: -40,-12 + - node: + color: '#334E6DC8' + id: MiniTileSteelLineN + decals: + 1499: -41,107 + - node: + color: '#52B4E996' + id: MiniTileSteelLineN + decals: + 1254: -33,87 + 1255: -32,87 + 1256: -31,87 + 2445: -24,194 + 2446: -23,194 + 2447: -22,194 + 2448: -21,194 + 2449: -20,194 + 2695: -12,210 + 2696: -11,210 + 2697: -10,210 + 2698: -9,210 + 2699: -8,210 + 2700: -7,210 + 4396: -15,171 + 4397: -14,171 + 4398: -13,171 + - node: + color: '#A4610696' + id: MiniTileSteelLineN + decals: + 1330: -36,10 + 1331: -35,10 + 1332: -34,10 + - node: + color: '#D381C996' + id: MiniTileSteelLineN + decals: + 1197: -51,87 + 1198: -50,87 + 1199: -49,87 + - node: + color: '#DE3A3A96' + id: MiniTileSteelLineN + decals: + 1170: -33,79 + 1171: -32,79 + 1172: -31,79 + 1404: 65,36 + 1405: 66,36 + 1406: 67,36 + - node: + color: '#EFB34196' + id: MiniTileSteelLineN + decals: + 908: 68,23 + 1127: -51,79 + 1128: -50,79 + 1129: -49,79 + 3145: -86,43 + 3146: -85,43 + 3147: -84,43 + - node: + color: '#FFC364FF' + id: MiniTileSteelLineN + decals: + 73: -46,-8 + 74: -47,-8 + 75: -48,-8 + 76: -49,-8 + 198: -42,-15 + 199: -41,-15 + 200: -40,-15 + 201: -39,-15 + 204: -37,-13 + 210: -41,-11 + 211: -42,-11 + 212: -44,-11 + 213: -43,-11 - node: - zIndex: 5 - angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: LoadingLine + id: MiniTileSteelLineN decals: - 13772: 76,-10 - 13773: 76,-9 - 13774: 68,-10 - 13775: 68,-9 - 13776: 63,-10 - 13777: 63,-9 + 3707: -82,100 + 3708: -81,100 + 3709: -80,100 + 3710: -79,100 + 3711: -78,100 + 3712: -77,100 + 3713: -76,100 - node: - zIndex: 1 - color: '#144BB37F' - id: MiniTileCheckerAOverlay + color: '#52B4E996' + id: MiniTileSteelLineS decals: - 14917: 22,14 - 14918: 23,14 - 14919: 24,14 - 14920: 23,13 - 14921: 23,12 + 1251: -33,83 + 1252: -32,83 + 1253: -31,83 + 2451: -22,191 + 2452: -21,191 + 2453: -20,191 + 4390: -15,167 + 4391: -14,167 + 4392: -13,167 - node: - zIndex: 1 - color: '#B328287F' - id: MiniTileCheckerBOverlay + color: '#A4610696' + id: MiniTileSteelLineS decals: - 14912: 24,14 - 14913: 23,14 - 14914: 22,14 - 14915: 23,13 - 14916: 23,12 + 1268: -42,65 + 1269: -41,65 + 1270: -40,65 + - node: + color: '#D381C996' + id: MiniTileSteelLineS + decals: + 1200: -51,83 + 1201: -50,83 + 1202: -49,83 + 2098: -70,167 + 2099: -71,167 + 2100: -72,167 + 2101: -73,167 + 2102: -74,167 + - node: + color: '#DE3A3A96' + id: MiniTileSteelLineS + decals: + 1164: -33,75 + 1165: -32,75 + 1166: -31,75 + 1411: 65,32 + 1412: 66,32 + 1413: 67,32 + - node: + color: '#EFB34196' + id: MiniTileSteelLineS + decals: + 1124: -51,75 + 1125: -50,75 + 1126: -49,75 + 3148: -86,39 + 3149: -85,39 + 3150: -84,39 + - node: + color: '#FFC364FF' + id: MiniTileSteelLineS + decals: + 77: -48,-13 + 189: -42,-16 + 190: -41,-16 + 191: -40,-16 + 192: -39,-16 + 193: -38,-16 + 194: -37,-16 + 217: -41,-13 + 218: -42,-13 + 219: -43,-13 + 220: -44,-13 + 221: -45,-13 + 222: -46,-13 + - node: + color: '#52B4E996' + id: MiniTileSteelLineW + decals: + 2454: -25,192 + 2455: -25,193 + 2704: -13,209 + 2705: -13,208 + 2706: -13,207 + 4399: -16,168 + 4400: -16,169 + 4401: -16,170 + - node: + color: '#A4610696' + id: MiniTileSteelLineW + decals: + 1271: -43,66 + 1272: -43,67 + 1273: -43,68 + 1327: -37,7 + 1328: -37,8 + 1329: -37,9 + - node: + color: '#D381C996' + id: MiniTileSteelLineW + decals: + 1203: -52,84 + 1204: -52,85 + 1205: -52,86 + 2103: -74,168 + 2104: -74,169 + 2105: -74,173 + 2106: -74,178 + - node: + color: '#DE3A3A96' + id: MiniTileSteelLineW + decals: + 1408: 64,35 + 1409: 64,34 + 1410: 64,33 + - node: + color: '#EFB34196' + id: MiniTileSteelLineW + decals: + 911: 66,20 + 917: 67,22 + 1121: -52,78 + 1122: -52,77 + 1123: -52,76 + - node: + color: '#FFC364FF' + id: MiniTileSteelLineW + decals: + 78: -50,-12 + 79: -50,-11 + 80: -50,-10 + 81: -50,-9 + 202: -38,-14 + - node: + color: '#00BEBE88' + id: MiniTileWhiteCornerNe + decals: + 3483: -103,37 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNe + decals: + 1476: -39,101 + 1515: -69,79 + 1628: -46,96 + 1647: -45,101 + 1651: -48,105 + 3445: -108,36 + 3471: -112,36 + 3972: -36,108 + 3973: -37,109 + 4167: -25,101 + 4168: -26,102 + 4169: -27,103 + 4170: -28,104 + 4171: -29,105 + 4184: -36,105 + 4190: -35,101 + 5579: -112,32 + 5580: -108,32 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerNe + decals: + 2357: 5,186 + 2414: -12,189 + 2430: -12,194 + 2461: -6,194 + 2480: -12,197 + 2506: -6,199 + 2671: -15,207 + 2684: -7,209 + 2795: -24,202 + 2879: 2,205 + 2880: 2,200 + 3054: 3,167 + 3055: -2,171 + 3056: -3,172 + 4847: 82,46 + - node: + color: '#6BA698FF' + id: MiniTileWhiteCornerNe + decals: + 3827: -122,100 + 3864: -115,100 + 3876: -115,103 + 3879: -122,92 + - node: + color: '#80C71FFF' + id: MiniTileWhiteCornerNe + decals: + 2918: 21,192 + 2925: 17,195 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerNe + decals: + 3688: 1,69 + 4926: -65,69 + - node: + color: '#9FED58E6' + id: MiniTileWhiteCornerNe + decals: + 3705: -20,63 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerNe + decals: + 4649: -38,0 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerNe + decals: + 1656: -80,152 + 1662: -92,148 + 1741: -84,160 + 1742: -84,156 + 1781: -80,155 + 1931: -83,165 + 1948: -86,175 + 4043: -79,165 + 4224: -76,165 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteCornerNe + decals: + 1859: -78,186 + 1860: -77,185 + 1861: -76,183 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerNe + decals: + 474: 68,50 + 496: 67,55 + 548: 77,44 + 583: 74,63 + 618: 77,68 + 619: 76,69 + 1315: -40,85 + 2347: -76,155 + 3205: -92,37 + 4033: 80,36 + 4044: -101,103 + 4571: 52,53 + 4613: 49,58 + 4619: 55,57 + 4852: 79,63 + 4853: 80,60 + 4854: 82,58 + 4987: 63,62 + 4993: 66,58 + 4994: 66,62 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerNe + decals: + 1615: -86,79 + 1616: -84,77 + 3206: -92,48 + 3241: -115,56 + 3242: -121,55 + 3299: -98,51 + 3340: -97,43 + 3354: -113,49 + 3355: -114,50 + 3356: -115,51 + - node: + color: '#FF6464FF' + id: MiniTileWhiteCornerNe + decals: + 58: -32,-4 + - node: + color: '#FFC364FF' + id: MiniTileWhiteCornerNe + decals: + 287: -20,0 + 288: -14,0 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNe decals: - 15744: 4,-35 + 1442: -14,71 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNw + decals: + 1475: -43,101 + 1626: -49,96 + 1639: -49,101 + 1650: -49,105 + 3446: -114,36 + 3470: -110,36 + 3968: -46,108 + 3969: -46,105 + 3974: -45,109 + 4175: -34,105 + 4189: -37,101 + 5581: -114,32 + 5582: -110,32 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerNw + decals: + 2358: 2,186 + 2413: -17,189 + 2429: -17,194 + 2460: -10,194 + 2477: -20,197 + 2500: -10,199 + 2670: -18,207 + 2682: -12,209 + 2792: -27,202 + 2873: -1,205 + 2874: -1,200 + 3053: -6,167 + 3057: -6,171 + 3058: -5,172 + 4848: 79,46 + - node: + color: '#6BA698FF' + id: MiniTileWhiteCornerNw + decals: + 3842: -126,103 + 3873: -117,103 + 3880: -126,92 + - node: + color: '#80C71FFF' + id: MiniTileWhiteCornerNw + decals: + 2926: 16,195 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerNw + decals: + 3023: -1,69 + 4925: -67,69 + - node: + color: '#9FED58E6' + id: MiniTileWhiteCornerNw + decals: + 3706: -22,63 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerNw + decals: + 4648: -41,0 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerNw + decals: + 1658: -99,153 + 1659: -93,148 + 1746: -85,156 + 1797: -92,160 + 1930: -93,165 + 1935: -99,169 + 1936: -98,170 + 3027: 8,185 + 4042: -81,165 + 5536: -77,165 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteCornerNw + decals: + 1856: -83,185 + 1857: -82,186 + 1858: -84,183 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerNw + decals: + 473: 74,50 + 491: 64,55 + 552: 65,44 + 596: 57,62 + 620: 65,68 + 621: 66,69 + 842: 40,62 + 844: 52,65 + 846: 53,66 + 847: 54,67 + 1314: -42,85 + 2344: -78,155 + 3202: -96,37 + 4045: -105,103 + 4212: 75,36 + 4552: 45,53 + 4610: 45,58 + 4615: 51,57 + 4849: 76,63 + 4992: 65,58 + 4995: 65,62 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerNw + decals: + 1614: -89,79 + 3207: -96,48 + 3240: -119,56 + 3298: -106,51 + 3326: -101,37 + 3371: -121,49 + 3372: -120,50 + 3373: -119,51 + 5565: -125,55 + - node: + color: '#FF6464FF' + id: MiniTileWhiteCornerNw + decals: + 57: -36,-4 + - node: + color: '#FFC364FF' + id: MiniTileWhiteCornerNw + decals: + 33: -30,-4 + 284: -24,0 + 285: -18,0 + 286: -12,0 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw decals: - 15743: 3,-35 + 1437: -19,71 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSe + decals: + 1467: -39,97 + 1468: -48,103 + 1514: -69,77 + 1625: -46,93 + 1644: -45,98 + 3448: -108,30 + 3465: -112,30 + 3966: -37,103 + 3967: -36,107 + 4166: -25,97 + 4183: -36,104 + 4187: -35,97 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerSe + decals: + 2348: 5,182 + 2427: -12,191 + 2458: -6,188 + 2478: -12,196 + 2501: -6,196 + 2668: -15,203 + 2681: -7,207 + 2793: -24,198 + 2875: 2,196 + 2876: 2,202 + 3013: -23,190 + 3051: 3,165 + 3059: -2,169 + 4845: 82,43 + - node: + color: '#6BA698FF' + id: MiniTileWhiteCornerSe + decals: + 3839: -122,94 + 3862: -117,97 + 3863: -115,98 + 3877: -115,102 + 3878: -122,91 + - node: + color: '#80C71FFF' + id: MiniTileWhiteCornerSe + decals: + 2914: 21,188 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerSe + decals: + 3024: 1,65 + 4930: -65,65 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerSe + decals: + 4645: -38,-8 + 4646: -40,-9 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerSe + decals: + 1657: -92,147 + 1725: -87,154 + 1743: -84,154 + 1744: -84,158 + 1932: -83,162 + 1951: -86,167 + 3030: 12,183 + 4041: -79,162 + 4225: -76,161 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerSe + decals: + 511: 77,47 + 549: 77,42 + 571: 63,59 + 850: 55,64 + 1092: 74,57 + 1304: -40,77 + 2345: -76,151 + 3203: -92,34 + 4046: -101,102 + 4209: 80,33 + 4565: 52,47 + 4611: 49,55 + 4626: 55,47 + 4850: 82,57 + 4990: 66,57 + 4996: 66,60 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerSe + decals: + 1612: -84,75 + 3208: -92,45 + 3244: -121,52 + 3333: -98,34 + 3341: -97,39 + 3357: -113,42 + 3358: -114,41 + 3359: -115,40 + 3949: -115,53 + - node: + color: '#FF6464FF' + id: MiniTileWhiteCornerSe + decals: + 55: -32,-6 + - node: + color: '#FFC364FF' + id: MiniTileWhiteCornerSe + decals: + 31: -26,-8 + 301: -20,-6 + 302: -14,-6 + 324: -6,-6 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteCornerSe + decals: + 1451: -14,62 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSw + decals: + 1469: -43,97 + 1513: -79,77 + 1627: -49,93 + 1640: -49,98 + 1648: -49,103 + 3450: -114,30 + 3466: -110,30 + 3970: -46,104 + 3971: -46,107 + 4172: -34,103 + 4173: -30,97 + 4174: -29,96 + 4188: -37,97 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerSw + decals: + 2349: 2,182 + 2422: -17,187 + 2428: -17,191 + 2459: -10,188 + 2479: -20,196 + 2502: -10,196 + 2669: -18,203 + 2683: -12,207 + 2794: -27,198 + 2877: -1,196 + 2878: -1,202 + 3014: -25,190 + 3052: -6,165 + 3060: -6,169 + 4846: 79,43 + - node: + color: '#6BA698FF' + id: MiniTileWhiteCornerSw + decals: + 3840: -126,94 + 3841: -126,102 + 3869: -120,97 + 3872: -117,102 + 3881: -126,91 + - node: + color: '#80C71FFF' + id: MiniTileWhiteCornerSw + decals: + 2913: 19,188 + 2930: 16,191 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerSw + decals: + 3690: -1,65 + 4924: -67,65 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerSw + decals: + 4647: -41,-9 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerSw + decals: + 1660: -99,147 + 1661: -93,147 + 1724: -89,154 + 1745: -85,154 + 1782: -82,154 + 1796: -92,158 + 1933: -93,162 + 1934: -99,167 + 4040: -81,162 + 5532: -77,161 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteCornerSw + decals: + 1865: -84,177 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerSw + decals: + 479: 65,47 + 550: 65,42 + 589: 68,57 + 832: 40,60 + 1306: -42,77 + 2346: -78,151 + 3204: -96,34 + 4047: -105,102 + 4142: 58,58 + 4143: 57,59 + 4208: 75,33 + 4558: 45,47 + 4612: 45,55 + 4851: 76,57 + 4991: 65,57 + 4997: 65,60 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerSw + decals: + 1613: -89,75 + 3209: -96,45 + 3239: -119,53 + 3243: -122,52 + 3312: -106,45 + 3329: -101,34 + 3362: -119,40 + 3363: -120,41 + 3364: -121,42 + 5564: -125,53 + - node: + color: '#FF6464FF' + id: MiniTileWhiteCornerSw + decals: + 56: -36,-6 + - node: + color: '#FFC364FF' + id: MiniTileWhiteCornerSw + decals: + 32: -30,-8 + 303: -18,-6 + 325: -12,-6 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw decals: - 15742: 3,-36 + 1456: -19,62 - node: - color: '#FFFFFFFF' + color: '#DE3A3A96' + id: MiniTileWhiteEndE + decals: + 4813: 79,51 + 4814: 79,54 + 4815: 79,48 + - node: + color: '#9FED58E6' + id: MiniTileWhiteEndS + decals: + 3700: -22,60 + 3701: -20,60 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteEndW + decals: + 484: 63,48 + 485: 63,51 + 486: 63,54 + - node: + color: '#334E6DC8' id: MiniTileWhiteInnerNe decals: - 15745: 4,-36 + 1533: -73,79 + 3985: -37,108 + 4176: -29,104 + 4177: -28,103 + 4178: -27,102 + 4179: -26,101 + 4185: -37,105 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerNe + decals: + 1250: -34,83 + 3068: -3,171 + 4406: -16,167 + - node: + color: '#6BA698FF' + id: MiniTileWhiteInnerNe + decals: + 3871: -119,100 + - node: + color: '#80C71FFF' + id: MiniTileWhiteInnerNe + decals: + 2924: 17,192 + - node: + color: '#A4610696' + id: MiniTileWhiteInnerNe + decals: + 1292: -43,65 + 1357: -37,6 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerNe + decals: + 1195: -52,83 + 2065: -67,155 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteInnerNe + decals: + 1862: -77,183 + 1876: -78,185 + 1877: -82,182 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerNe + decals: + 477: 67,50 + 855: 53.25877,58.263847 + 856: 53.493145,58.498222 + 857: 53.743145,58.763847 + 858: 54,59 + 1149: -34,75 + 1400: 64,32 + 4060: -106,100 + 4657: 68,49 + 4816: 78,48 + 4817: 78,51 + 4818: 78,54 + 4855: 79,60 + 4856: 80,58 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerNe + decals: + 1148: -52,75 + 1624: -86,77 + 3169: -87,39 + 3343: -98,43 + 3377: -115,50 + 3378: -114,49 + 3433: -105,46 + - node: + color: '#FFC364FF' + id: MiniTileWhiteInnerNe + decals: + 328: -14,-1 + 341: -20,-1 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerNw + decals: + 3983: -45,105 + 3986: -45,108 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerNw + decals: + 1249: -30,83 + 3067: -5,171 + 4387: -12,167 + - node: + color: '#A4610696' + id: MiniTileWhiteInnerNw + decals: + 1291: -39,65 + 1358: -33,6 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerNw + decals: + 1210: -48,83 + 1960: -91,170 + 2066: -63,155 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteInnerNw + decals: + 1863: -83,183 + 1864: -82,185 + 1878: -78,182 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerNw + decals: + 475: 74,49 + 476: 75,50 + 494: 64,51 + 495: 64,54 + 848: 53,65 + 866: 52,62 + 868: 52,59 + 871: 52.243145,58.761017 + 872: 52.493145,58.52664 + 1150: -30,75 + 1399: 68,32 + 3819: 54,66 + 4059: -100,100 + 4812: 64,48 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerNw + decals: + 1147: -48,75 + 3168: -83,39 + 3330: -100,37 + 3379: -119,50 + 3380: -120,49 + 3434: -99,46 + - node: + color: '#FFC364FF' + id: MiniTileWhiteInnerNw + decals: + 329: -12,-1 + 342: -18,-1 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerSe + decals: + 1495: -48,97 + 3982: -37,107 + 4186: -37,104 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerSe + decals: + 1248: -34,87 + 2694: -8,207 + 3016: -23,191 + 4388: -16,171 + - node: + color: '#9FED58D3' + id: MiniTileWhiteInnerSe + decals: + 1462: -12,69 + - node: + color: '#9FED58E6' + id: MiniTileWhiteInnerSe + decals: + 3704: -22,61 + - node: + color: '#A4610696' + id: MiniTileWhiteInnerSe + decals: + 1290: -43,69 + 1355: -37,10 + 4650: -40,-8 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerSe + decals: + 1196: -52,87 + 1753: -87,158 + 2067: -67,159 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteInnerSe + decals: + 1879: -82,185 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerSe + decals: + 512: 76,47 + 513: 77,48 + 572: 62,59 + 851: 54.52013,64.24274 + 869: 52,59 + 1151: -34,79 + 1398: 64,36 + 3820: 54.763725,64.49484 + 4819: 78,54 + 4820: 78,51 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerSe + decals: + 1146: -52,79 + 3167: -87,43 + 3342: -98,39 + 3383: -114,42 + 3384: -115,41 + 3431: -105,50 + - node: + color: '#FF0000FF' + id: MiniTileWhiteInnerSe + decals: + 406: 67,56 + - node: + color: '#FFC364FF' + id: MiniTileWhiteInnerSe + decals: + 327: -14,-5 + 339: -20,-5 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerSw + decals: + 3981: -45,107 + 3984: -45,104 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerSw + decals: + 1247: -30,87 + 2424: -13,187 + 2680: -21,205 + 2693: -11,207 + 4389: -12,171 + - node: + color: '#6BA698FF' + id: MiniTileWhiteInnerSw + decals: + 3870: -120,102 + - node: + color: '#80C71FFF' + id: MiniTileWhiteInnerSw + decals: + 2935: 19,191 + - node: + color: '#9FED58E6' + id: MiniTileWhiteInnerSw + decals: + 3703: -20,61 + - node: + color: '#A4610696' + id: MiniTileWhiteInnerSw + decals: + 1289: -39,69 + 1356: -33,10 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerSw + decals: + 1194: -48,87 + 1754: -89,158 + 2064: -63,159 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteInnerSw + decals: + 1880: -78,185 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerSw + decals: + 478: 75,56 + 481: 66,47 + 483: 65,48 + 492: 64,51 + 493: 64,54 + 1152: -30,79 + 1397: 68,36 + 4146: 58,59 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerSw + decals: + 1145: -48,79 + 3166: -83,43 + 3318: -100,45 + 3381: -120,42 + 3382: -119,41 + 3432: -99,50 + 5566: -122,53 + - node: + color: '#FFC364FF' + id: MiniTileWhiteInnerSw + decals: + 326: -12,-5 + 340: -18,-5 + - node: + color: '#00BEBE88' + id: MiniTileWhiteLineE + decals: + 3484: -103,36 + 3485: -103,35 + 3486: -103,34 + 3487: -103,33 + 3488: -103,32 + 3489: -103,31 + 3490: -103,30 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineE + decals: + 1470: -48,104 + 1471: -45,99 + 1472: -39,99 + 1473: -39,100 + 1474: -39,98 + 1516: -69,78 + 1520: -73,80 + 1634: -46,94 + 1635: -46,95 + 3441: -108,34 + 3442: -108,35 + 3473: -112,34 + 3474: -112,35 + 3714: -74,73 + 3715: -74,74 + 3716: -74,75 + 3980: -37,106 + 4157: -25,98 + 4158: -25,99 + 4159: -25,100 + 4195: -35,98 + 4196: -35,99 + 4197: -35,100 + 5577: -112,31 + 5578: -108,31 + - node: + color: '#37363BFF' + id: MiniTileWhiteLineE + decals: + 371: 28,13 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineE + decals: + 1241: -34,84 + 1242: -34,85 + 1243: -34,86 + 2354: 5,183 + 2355: 5,184 + 2356: 5,185 + 2415: -12,188 + 2416: -12,187 + 2417: -12,186 + 2431: -12,193 + 2432: -12,192 + 2462: -6,193 + 2463: -6,192 + 2464: -6,191 + 2465: -6,190 + 2466: -6,189 + 2507: -6,198 + 2508: -6,197 + 2672: -15,206 + 2673: -15,205 + 2674: -15,204 + 2685: -8,206 + 2686: -7,208 + 2796: -24,201 + 2797: -24,200 + 2798: -24,199 + 2881: 2,199 + 2882: 2,198 + 2883: 2,197 + 2884: 2,204 + 2885: 2,203 + 3050: 3,166 + 3064: -2,170 + 4384: -16,168 + 4385: -16,169 + 4386: -16,170 + 4843: 82,44 + 4844: 82,45 + - node: + color: '#6BA698FF' + id: MiniTileWhiteLineE + decals: + 3822: -122,99 + 3823: -122,98 + 3824: -122,97 + 3825: -122,96 + 3826: -122,95 + 3860: -119,101 + 3861: -115,99 + 3888: -128,103 + 3889: -128,102 + 3890: -128,101 + 3891: -128,100 + 3892: -128,99 + 3893: -128,98 + 3894: -128,97 + 3895: -128,96 + 3896: -128,95 + 3897: -128,94 + 3898: -128,93 + 3899: -128,92 + 3900: -128,91 + - node: + color: '#80C71FFF' + id: MiniTileWhiteLineE + decals: + 2915: 21,189 + 2916: 21,190 + 2917: 21,191 + 2922: 17,193 + 2923: 17,194 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineE + decals: + 3017: 1,66 + 3018: 1,68 + 3689: 1,67 + 4927: -65,68 + 4928: -65,67 + 4929: -65,66 + - node: + color: '#9FED58D3' + id: MiniTileWhiteLineE + decals: + 1459: -12,66 + 1460: -12,65 + 1461: -12,68 + - node: + color: '#9FED58E6' + id: MiniTileWhiteLineE + decals: + 3694: -12,67 + 3695: -20,61 + 3696: -20,62 + - node: + color: '#A4610696' + id: MiniTileWhiteLineE + decals: + 1286: -43,66 + 1287: -43,67 + 1288: -43,68 + 1352: -37,7 + 1353: -37,8 + 1354: -37,9 + 3964: -46,107 + 3965: -46,108 + 4638: -38,-1 + 4639: -38,-2 + 4640: -38,-3 + 4641: -38,-4 + 4642: -38,-5 + 4643: -38,-6 + 4644: -38,-7 + - node: + color: '#D381C996' + id: MiniTileWhiteLineE + decals: + 1191: -52,84 + 1192: -52,85 + 1193: -52,86 + 1680: -95,148 + 1681: -95,149 + 1739: -84,159 + 1740: -84,155 + 1750: -87,155 + 1751: -87,156 + 1752: -87,157 + 1928: -83,163 + 1929: -83,164 + 1949: -86,174 + 1950: -86,173 + 1952: -86,168 + 2052: -67,156 + 2053: -67,157 + 2054: -67,158 + 4038: -79,163 + 4039: -79,164 + 4226: -76,162 + 4227: -76,163 + 4228: -76,164 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteLineE + decals: + 1822: -76,169 + 1823: -76,173 + 1841: -76,182 + 1842: -76,181 + 1843: -76,180 + 1844: -76,179 + 1845: -76,178 + 1846: -77,184 + 1874: -82,183 + 1875: -82,184 + - node: + color: '#DE3A3A95' + id: MiniTileWhiteLineE + decals: + 875: 53,58 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineE + decals: + 470: 67,51 + 510: 76,46 + 514: 78,49 + 515: 78,50 + 516: 78,52 + 517: 78,53 + 518: 78,55 + 547: 77,43 + 553: 67,43 + 563: 67,42 + 564: 67,44 + 584: 74,62 + 585: 74,61 + 586: 74,60 + 587: 74,59 + 588: 74,58 + 605: 77,67 + 615: 77,65 + 817: 63,67 + 818: 63,65 + 852: 54,63 + 853: 54,60 + 874: 54,62 + 1153: -34,76 + 1154: -34,77 + 1297: -40,78 + 1298: -40,79 + 1299: -40,80 + 1300: -40,81 + 1301: -40,82 + 1302: -40,83 + 1303: -40,84 + 1394: 64,33 + 1395: 64,34 + 1396: 64,35 + 1421: -34,78 + 2336: -76,152 + 2337: -76,153 + 2338: -76,154 + 3192: -92,35 + 3193: -92,36 + 4150: 54,61 + 4217: 80,35 + 4218: 80,34 + 4566: 52,48 + 4567: 52,49 + 4568: 52,50 + 4569: 52,51 + 4570: 52,52 + 4600: 49,56 + 4601: 49,57 + 4620: 55,56 + 4621: 55,55 + 4622: 55,54 + 4623: 55,53 + 4624: 55,52 + 4625: 55,50 + 4862: 79,62 + 4863: 79,61 + 4864: 80,59 + 4988: 63,61 + 4989: 63,60 + 4998: 66,61 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineE + decals: + 1139: -52,78 + 1140: -52,77 + 1141: -52,76 + 1620: -84,76 + 1621: -86,78 + 3163: -87,40 + 3164: -87,41 + 3165: -87,42 + 3218: -92,46 + 3219: -92,47 + 3233: -115,55 + 3246: -121,54 + 3247: -121,53 + 3295: -98,48 + 3296: -98,49 + 3297: -98,50 + 3334: -98,35 + 3335: -98,36 + 3336: -98,37 + 3337: -98,38 + 3338: -97,41 + 3339: -97,42 + 3344: -98,44 + 3345: -98,45 + 3346: -98,46 + 3347: -98,47 + 3348: -113,48 + 3349: -113,47 + 3350: -113,46 + 3351: -113,45 + 3352: -113,44 + 3353: -113,43 + 3423: -105,49 + 3424: -105,48 + 3425: -105,47 + 3948: -115,54 + 3962: -46,104 + 3963: -46,105 + - node: + color: '#FF6464FF' + id: MiniTileWhiteLineE + decals: + 66: -32,-5 + - node: + color: '#FFC364FF' + id: MiniTileWhiteLineE + decals: + 34: -26,-7 + 308: -6,-2 + 309: -6,-3 + 310: -6,-4 + 311: -6,-5 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineE + decals: + 1443: -14,70 + 1444: -14,69 + 1445: -14,68 + 1446: -14,67 + 1447: -14,66 + 1448: -14,65 + 1449: -14,64 + 1450: -14,63 + - node: + color: '#00BEBE88' + id: MiniTileWhiteLineN + decals: + 3493: -105,37 + 3494: -104,37 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineN + decals: + 992: -21,79 + 993: -20,79 + 994: -19,79 + 995: -18,79 + 996: -17,79 + 997: -16,79 + 1477: -48,101 + 1478: -42,101 + 1479: -41,101 + 1480: -40,101 + 1517: -70,79 + 1518: -71,79 + 1519: -72,79 + 1629: -48,96 + 1630: -47,96 + 1645: -47,101 + 1646: -46,101 + 3439: -113,36 + 3440: -109,36 + 3975: -44,109 + 3976: -43,109 + 3977: -39,109 + 3978: -38,109 + 4162: -30,105 + 4163: -31,105 + 4164: -32,105 + 4165: -33,105 + 4191: -36,101 + 5573: -113,32 + 5574: -109,32 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineN + decals: + 1235: -33,83 + 1236: -32,83 + 1237: -31,83 + 2350: 3,186 + 2351: 4,186 + 2409: -16,189 + 2410: -15,189 + 2411: -14,189 + 2412: -13,189 + 2437: -16,194 + 2438: -15,194 + 2439: -14,194 + 2440: -13,194 + 2474: -9,194 + 2475: -8,194 + 2476: -7,194 + 2481: -13,197 + 2482: -14,197 + 2483: -15,197 + 2484: -16,197 + 2485: -17,197 + 2486: -18,197 + 2487: -19,197 + 2495: -9,199 + 2496: -8,199 + 2497: -7,199 + 2689: -11,209 + 2690: -10,209 + 2691: -9,209 + 2692: -8,209 + 2804: -26,202 + 2805: -25,202 + 2895: 0,205 + 2896: 1,205 + 2897: 0,200 + 2898: 1,200 + 3042: -5,167 + 3043: -4,167 + 3044: -3,167 + 3045: -2,167 + 3046: -1,167 + 3047: 0,167 + 3048: 1,167 + 3049: 2,167 + 3066: -4,172 + 4381: -15,167 + 4382: -14,167 + 4383: -13,167 + 4841: 80,46 + 4842: 81,46 + - node: + color: '#6BA698FF' + id: MiniTileWhiteLineN + decals: + 3828: -123,100 + 3829: -124,100 + 3830: -125,100 + 3851: -125,103 + 3852: -124,103 + 3853: -123,103 + 3854: -122,103 + 3855: -121,103 + 3856: -120,103 + 3857: -118,100 + 3858: -117,100 + 3859: -116,100 + 3875: -116,103 + 3885: -125,92 + 3886: -124,92 + 3887: -123,92 + - node: + color: '#80C71FFF' + id: MiniTileWhiteLineN + decals: + 2919: 20,192 + 2920: 19,192 + 2921: 18,192 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineN + decals: + 3022: 0,69 + - node: + color: '#9FED58E6' + id: MiniTileWhiteLineN + decals: + 3697: -21,63 + - node: + color: '#A4610696' + id: MiniTileWhiteLineN + decals: + 1283: -42,65 + 1284: -41,65 + 1285: -40,65 + 1349: -36,6 + 1350: -35,6 + 1351: -34,6 + 4636: -40,0 + 4637: -39,0 + - node: + color: '#D381C996' + id: MiniTileWhiteLineN + decals: + 1182: -51,83 + 1183: -50,83 + 1184: -49,83 + 1652: -86,152 + 1653: -87,152 + 1654: -83,152 + 1655: -82,152 + 1675: -97,153 + 1676: -98,153 + 1732: -91,160 + 1733: -90,160 + 1734: -89,160 + 1735: -88,160 + 1736: -87,160 + 1737: -86,160 + 1738: -85,160 + 1920: -92,165 + 1921: -91,165 + 1922: -89,165 + 1923: -90,165 + 1924: -88,165 + 1925: -87,165 + 1926: -86,165 + 1927: -85,165 + 1938: -97,170 + 1939: -96,170 + 1940: -95,170 + 1941: -94,170 + 1942: -92,170 + 1945: -91,175 + 1946: -90,175 + 1947: -87,175 + 2058: -64,155 + 2059: -65,155 + 2060: -66,155 + 3028: 9,185 + 3029: 10,185 + 4035: -80,165 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteLineN + decals: + 1824: -82,175 + 1825: -78,175 + 1866: -81,182 + 1867: -80,182 + 1868: -79,182 + 1881: -81,186 + 1882: -80,186 + 1883: -79,186 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineN + decals: + 471: 69,49 + 472: 73,49 + 567: 62,62 + 568: 61,62 + 569: 60,62 + 570: 59,62 + 580: 68,63 + 581: 69,63 + 582: 73,63 + 597: 58,62 + 622: 67,69 + 623: 68,69 + 624: 69,69 + 625: 70,69 + 626: 71,69 + 627: 72,69 + 628: 73,69 + 629: 74,69 + 630: 75,69 + 811: 56,67 + 812: 57,67 + 813: 58,67 + 814: 60,67 + 815: 61,67 + 816: 62,67 + 820: 63,67 + 833: 42,62 + 834: 43,62 + 835: 44,62 + 836: 46,62 + 837: 47,62 + 838: 48,62 + 839: 49,62 + 840: 50,62 + 841: 51,62 + 843: 55,67 + 1155: -33,75 + 1156: -32,75 + 1157: -31,75 + 1316: -41,85 + 1391: 65,32 + 1392: 66,32 + 1393: 67,32 + 2343: -77,155 + 3199: -95,37 + 3200: -94,37 + 3201: -93,37 + 3785: 41,62 + 4051: -104,103 + 4052: -103,103 + 4053: -102,103 + 4054: -105,100 + 4055: -104,100 + 4056: -103,100 + 4057: -102,100 + 4058: -101,100 + 4213: 76,36 + 4214: 78,36 + 4215: 77,36 + 4216: 79,36 + 4546: 46,53 + 4547: 47,53 + 4548: 48,53 + 4549: 49,53 + 4550: 50,53 + 4551: 51,53 + 4572: 51,53 + 4607: 46,58 + 4608: 47,58 + 4609: 48,58 + 4616: 52,57 + 4617: 53,57 + 4618: 54,57 + 4811: 45,62 + 4865: 81,58 + 4866: 78,63 + 4867: 77,63 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineN + decals: + 1142: -51,75 + 1143: -50,75 + 1144: -49,75 + 1623: -85,77 + 3160: -86,39 + 3161: -85,39 + 3162: -84,39 + 3215: -95,48 + 3216: -94,48 + 3217: -93,48 + 3234: -116,56 + 3235: -117,56 + 3236: -118,56 + 3300: -99,51 + 3301: -100,51 + 3302: -101,51 + 3303: -102,51 + 3304: -103,51 + 3305: -104,51 + 3306: -105,51 + 3374: -118,51 + 3375: -117,51 + 3376: -116,51 + 3386: -129,51 + 3387: -128,51 + 3388: -127,51 + 3389: -130,51 + 3390: -126,51 + 3426: -104,46 + 3427: -103,46 + 3428: -102,46 + 3429: -101,46 + 3430: -100,46 + - node: + color: '#FF6464FF' + id: MiniTileWhiteLineN + decals: + 63: -35,-4 + 64: -34,-4 + 65: -33,-4 + - node: + color: '#FFC364FF' + id: MiniTileWhiteLineN + decals: + 40: -27,-4 + 289: -8,0 + 290: -7,0 + 300: -26,-4 + 312: -13,-1 + 313: -19,-1 + 323: -6,0 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 15748: 5,-36 + 1438: -18,71 + 1439: -17,71 + 1440: -16,71 + 1441: -15,71 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineS + decals: + 1484: -46,97 + 1485: -47,97 + 1486: -42,97 + 1487: -41,97 + 1488: -40,97 + 1489: -43,103 + 1490: -42,103 + 1491: -41,103 + 1492: -40,103 + 1493: -39,103 + 1494: -38,103 + 1524: -78,77 + 1525: -77,77 + 1526: -76,77 + 1527: -75,77 + 1528: -74,77 + 1529: -73,77 + 1530: -72,77 + 1531: -71,77 + 1532: -70,77 + 1631: -48,93 + 1632: -47,93 + 1641: -48,98 + 1642: -47,98 + 1643: -46,98 + 3451: -113,30 + 3452: -109,30 + 4160: -27,96 + 4161: -28,96 + 4198: -36,97 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineS + decals: + 1238: -33,87 + 1239: -32,87 + 1240: -31,87 + 2352: 3,182 + 2353: 4,182 + 2419: -14,187 + 2420: -15,187 + 2421: -16,187 + 2433: -13,191 + 2434: -14,191 + 2435: -15,191 + 2436: -16,191 + 2471: -9,188 + 2472: -8,188 + 2473: -7,188 + 2488: -19,196 + 2489: -18,196 + 2490: -17,196 + 2491: -16,196 + 2492: -15,196 + 2493: -14,196 + 2494: -13,196 + 2503: -9,196 + 2504: -8,196 + 2505: -7,196 + 2678: -17,203 + 2679: -16,203 + 2799: -25,198 + 2800: -26,198 + 2886: 1,196 + 2887: 0,196 + 2888: 1,202 + 2889: 0,202 + 3015: -24,190 + 3033: -5,165 + 3034: -4,165 + 3035: -1,165 + 3036: -3,165 + 3037: 0,165 + 3038: 1,165 + 3039: -2,165 + 3040: 2,165 + 3061: -5,169 + 3062: -4,169 + 3063: -3,169 + 4375: -15,171 + 4376: -14,171 + 4377: -13,171 + 4837: 80,43 + 4838: 81,43 + - node: + color: '#6BA698FF' + id: MiniTileWhiteLineS + decals: + 3836: -125,94 + 3837: -124,94 + 3838: -123,94 + 3843: -125,102 + 3844: -124,102 + 3845: -123,102 + 3846: -122,102 + 3847: -121,102 + 3848: -119,97 + 3849: -118,97 + 3850: -116,98 + 3874: -116,102 + 3882: -125,91 + 3883: -124,91 + 3884: -123,91 + - node: + color: '#80C71FFF' + id: MiniTileWhiteLineS + decals: + 2931: 17,191 + 2932: 18,191 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineS + decals: + 3691: 0,65 + 3958: -38,109 + 3959: -37,109 + 4923: -66,65 + - node: + color: '#9FED58D3' + id: MiniTileWhiteLineS + decals: + 1463: -11,69 + 1464: -10,69 + 1465: -7,69 + 1466: -6,69 + - node: + color: '#9FED58E6' + id: MiniTileWhiteLineS + decals: + 3692: -9,69 + 3693: -8,69 + 3702: -21,61 + 3939: -5,69 + 3940: -4,69 + 3941: -3,69 + - node: + color: '#A4610696' + id: MiniTileWhiteLineS + decals: + 1280: -42,69 + 1281: -41,69 + 1282: -40,69 + 1346: -34,10 + 1347: -35,10 + 1348: -36,10 + 4635: -39,-8 + - node: + color: '#D381C996' + id: MiniTileWhiteLineS + decals: + 1185: -51,87 + 1186: -50,87 + 1187: -49,87 + 1663: -82,150 + 1664: -83,150 + 1665: -84,150 + 1666: -85,150 + 1667: -87,150 + 1668: -88,150 + 1669: -89,150 + 1670: -90,150 + 1671: -91,150 + 1672: -93,150 + 1673: -94,150 + 1674: -98,147 + 1726: -88,154 + 1727: -91,158 + 1728: -90,158 + 1729: -86,158 + 1730: -85,158 + 1911: -92,162 + 1912: -91,162 + 1913: -90,162 + 1914: -89,162 + 1915: -88,162 + 1916: -87,162 + 1917: -86,162 + 1918: -85,162 + 1919: -84,162 + 1953: -87,167 + 1954: -93,167 + 1955: -94,167 + 1956: -95,167 + 1957: -96,167 + 1958: -97,167 + 1959: -98,167 + 2061: -66,159 + 2062: -64,159 + 2063: -65,159 + 3031: 11,183 + 3032: 10,183 + 3960: -45,109 + 3961: -44,109 + 4034: -80,162 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteLineS + decals: + 1821: -78,167 + 1853: -83,177 + 1854: -82,177 + 1855: -78,177 + 1871: -79,185 + 1872: -80,185 + 1873: -81,185 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineS + decals: + 468: 73,57 + 469: 69,57 + 482: 64,48 + 504: 68,46 + 505: 69,46 + 506: 70,46 + 507: 72,46 + 508: 73,46 + 509: 74,46 + 598: 60,58 + 606: 76,65 + 607: 75,65 + 608: 74,65 + 609: 73,65 + 610: 68,65 + 611: 67,65 + 612: 66,65 + 613: 65,65 + 614: 77,65 + 808: 63,65 + 809: 58,65 + 810: 57,65 + 821: 51,60 + 822: 50,60 + 823: 49,60 + 824: 48,60 + 825: 47,60 + 826: 46,60 + 827: 45,60 + 828: 44,60 + 829: 43,60 + 830: 42,60 + 831: 41,60 + 1158: -33,79 + 1159: -32,79 + 1160: -31,79 + 1305: -41,77 + 1385: 65,36 + 1386: 66,36 + 1387: 67,36 + 2342: -77,151 + 3196: -95,34 + 3197: -94,34 + 3198: -93,34 + 3821: 56,65 + 4048: -104,102 + 4049: -103,102 + 4050: -102,102 + 4144: 59,58 + 4151: 59,65 + 4152: 60,65 + 4153: 61,65 + 4154: 62,65 + 4205: 76,33 + 4206: 77,33 + 4207: 79,33 + 4223: 78,33 + 4559: 46,47 + 4560: 47,47 + 4561: 48,47 + 4562: 49,47 + 4563: 50,47 + 4564: 51,47 + 4604: 46,55 + 4605: 47,55 + 4606: 48,55 + 4821: 78,48 + 4868: 77,57 + 4869: 78,57 + 4870: 79,57 + 4871: 80,57 + 4872: 81,57 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineS + decals: + 1136: -49,79 + 1137: -50,79 + 1138: -51,79 + 1617: -85,75 + 1618: -86,75 + 1619: -87,75 + 3157: -84,43 + 3158: -85,43 + 3159: -86,43 + 3212: -95,45 + 3213: -94,45 + 3214: -93,45 + 3231: -118,53 + 3232: -117,53 + 3313: -105,45 + 3314: -104,45 + 3315: -103,45 + 3316: -102,45 + 3317: -101,45 + 3331: -100,34 + 3332: -99,34 + 3360: -116,40 + 3361: -118,40 + 3385: -117,40 + 3415: -104,50 + 3416: -103,50 + 3417: -102,50 + 3418: -101,50 + 3419: -100,50 + 3947: -116,53 + - node: + color: '#FF6464FF' + id: MiniTileWhiteLineS + decals: + 60: -35,-6 + 61: -34,-6 + 62: -33,-6 + - node: + color: '#FFC364FF' + id: MiniTileWhiteLineS + decals: + 37: -29,-8 + 38: -28,-8 + 39: -27,-8 + 293: -21,-6 + 304: -17,-6 + 305: -16,-6 + 306: -15,-6 + 307: -9,-6 + 314: -19,-5 + 315: -13,-5 + 343: -24,-6 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 15746: 4,-36 - 15747: 5,-36 + 1452: -15,62 + 1453: -16,62 + 1454: -17,62 + 1455: -18,62 - node: - color: '#D4D4D428' + color: '#00BEBE88' + id: MiniTileWhiteLineW + decals: + 3477: -106,32 + 3478: -106,33 + 3479: -106,34 + 3480: -106,35 + 3481: -106,36 + 3482: -106,37 + 3491: -106,31 + 3492: -106,30 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineW + decals: + 1481: -43,100 + 1482: -43,99 + 1483: -43,98 + 1521: -79,80 + 1522: -79,79 + 1523: -79,78 + 1534: -78,73 + 1535: -78,74 + 1536: -78,75 + 1633: -49,94 + 1636: -49,95 + 1637: -49,99 + 1638: -49,100 + 1649: -49,104 + 3435: -114,34 + 3436: -114,35 + 3475: -110,34 + 3476: -110,35 + 3979: -45,106 + 4180: -30,98 + 4181: -30,99 + 4182: -34,104 + 4192: -37,100 + 4193: -37,99 + 4194: -37,98 + 5575: -114,31 + 5576: -110,31 + - node: + color: '#37363BFF' + id: MiniTileWhiteLineW + decals: + 370: 28,13 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineW + decals: + 1244: -30,84 + 1245: -30,85 + 1246: -30,86 + 2359: 2,183 + 2360: 2,184 + 2361: 2,185 + 2418: -13,186 + 2423: -17,188 + 2467: -10,189 + 2468: -10,190 + 2469: -10,192 + 2470: -10,193 + 2498: -10,198 + 2499: -10,197 + 2675: -18,206 + 2676: -18,205 + 2677: -18,204 + 2687: -11,206 + 2688: -12,208 + 2801: -27,199 + 2802: -27,200 + 2803: -27,201 + 2890: -1,197 + 2891: -1,198 + 2892: -1,199 + 2893: -1,203 + 2894: -1,204 + 3012: -25,191 + 3041: -6,166 + 3065: -6,170 + 4378: -12,170 + 4379: -12,169 + 4380: -12,168 + 4839: 79,44 + 4840: 79,45 + - node: + color: '#6BA698FF' + id: MiniTileWhiteLineW + decals: + 3831: -126,99 + 3832: -126,98 + 3833: -126,97 + 3834: -126,96 + 3835: -126,95 + 3865: -120,101 + 3866: -120,100 + 3867: -120,99 + 3868: -120,98 + - node: + color: '#80C71FFF' + id: MiniTileWhiteLineW + decals: + 2927: 16,194 + 2928: 16,193 + 2929: 16,192 + 2933: 19,190 + 2934: 19,189 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineW + decals: + 3019: -1,66 + 3020: -1,67 + 3021: -1,68 + 4921: -67,68 + 4922: -67,67 + - node: + color: '#9FED58E6' + id: MiniTileWhiteLineW + decals: + 3698: -22,62 + 3699: -22,61 + - node: + color: '#A4610696' + id: MiniTileWhiteLineW + decals: + 1277: -39,66 + 1278: -39,67 + 1279: -39,68 + 1343: -33,7 + 1344: -33,8 + 1345: -33,9 + 4627: -41,-8 + 4628: -41,-7 + 4629: -41,-6 + 4630: -41,-5 + 4631: -41,-4 + 4632: -41,-3 + 4633: -41,-2 + 4634: -41,-1 + - node: + color: '#D381C996' + id: MiniTileWhiteLineW + decals: + 1188: -48,86 + 1189: -48,85 + 1190: -48,84 + 1677: -99,152 + 1678: -99,149 + 1679: -99,148 + 1731: -85,155 + 1747: -89,155 + 1748: -89,156 + 1749: -89,157 + 1795: -92,159 + 1909: -93,163 + 1910: -93,164 + 1937: -99,168 + 1943: -91,171 + 1944: -91,172 + 2055: -63,157 + 2056: -63,158 + 2057: -63,156 + 4036: -81,163 + 4037: -81,164 + 5533: -77,162 + 5534: -77,163 + 5535: -77,164 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteLineW + decals: + 1820: -84,173 + 1847: -84,182 + 1848: -84,181 + 1849: -84,180 + 1850: -84,179 + 1851: -84,178 + 1852: -83,184 + 1869: -78,184 + 1870: -78,183 + - node: + color: '#DE3A3A95' + id: MiniTileWhiteLineW + decals: + 876: 53,58 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineW + decals: + 466: 75,51 + 467: 75,55 + 480: 66,46 + 487: 64,49 + 488: 64,50 + 489: 64,52 + 490: 64,53 + 551: 65,43 + 554: 75,43 + 565: 75,42 + 566: 75,44 + 590: 68,58 + 591: 68,59 + 595: 57,61 + 616: 65,65 + 617: 65,67 + 845: 52,63 + 849: 52,64 + 1161: -30,78 + 1162: -30,77 + 1163: -30,76 + 1307: -42,78 + 1308: -42,79 + 1309: -42,80 + 1310: -42,81 + 1311: -42,82 + 1312: -42,83 + 1313: -42,84 + 1388: 68,35 + 1389: 68,34 + 1390: 68,33 + 2339: -78,152 + 2340: -78,153 + 2341: -78,154 + 3194: -96,35 + 3195: -96,36 + 3956: -36,107 + 3957: -36,108 + 4145: 57,60 + 4210: 75,34 + 4211: 75,35 + 4553: 45,52 + 4554: 45,51 + 4555: 45,50 + 4556: 45,49 + 4557: 45,48 + 4602: 45,56 + 4603: 45,57 + 4614: 51,56 + 4857: 76,58 + 4858: 76,59 + 4859: 76,60 + 4860: 76,61 + 4861: 76,62 + 4999: 65,61 + 5001: 68,60 + 5002: 68,61 + 5003: 68,62 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineW + decals: + 1133: -48,77 + 1134: -48,78 + 1135: -48,76 + 1622: -89,77 + 3154: -83,40 + 3155: -83,41 + 3156: -83,42 + 3210: -96,46 + 3211: -96,47 + 3237: -119,55 + 3238: -119,54 + 3307: -106,50 + 3308: -106,49 + 3309: -106,48 + 3310: -106,47 + 3311: -106,46 + 3319: -100,44 + 3320: -100,43 + 3321: -100,42 + 3322: -100,41 + 3323: -100,40 + 3324: -100,39 + 3325: -100,38 + 3327: -101,36 + 3328: -101,35 + 3365: -121,43 + 3366: -121,44 + 3367: -121,45 + 3368: -121,46 + 3369: -121,47 + 3370: -121,48 + 3420: -99,49 + 3421: -99,48 + 3422: -99,47 + - node: + color: '#FF6464FF' + id: MiniTileWhiteLineW + decals: + 59: -36,-5 + - node: + color: '#FFC364FF' + id: MiniTileWhiteLineW + decals: + 35: -30,-7 + 36: -30,-6 + 291: -24,-2 + 292: -24,-3 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineW + decals: + 1432: -19,66 + 1433: -19,67 + 1434: -19,68 + 1435: -19,69 + 1436: -19,70 + 1457: -19,63 + 1458: -19,64 + - node: + color: '#FFFFFFFF' + id: OriginStationSign10 + decals: + 1097: -40,91 + - node: + color: '#FFFFFFFF' + id: OriginStationSign11 + decals: + 1093: -42,89 + - node: + color: '#FFFFFFFF' + id: OriginStationSign12 + decals: + 1094: -41,89 + - node: + color: '#FFFFFFFF' + id: OriginStationSign13 + decals: + 1095: -40,89 + - node: + color: '#FFFFFFFF' + id: OriginStationSign8 + decals: + 1096: -42,91 + - node: + color: '#FFFFFFFF' + id: OriginStationSign9 + decals: + 3513: -41,91 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 1226: -46,82 + 2175: -74,165 + 2176: -73,165 + 2177: -72,165 + 2178: -71,165 + 2179: -70,165 + 2180: -69,165 + 2181: -82,160 + 2182: -81,160 + 2183: -80,160 + 2184: -79,160 + 2185: -82,159 + 2186: -82,158 + 2187: -82,157 + 2188: -74,164 + 2189: -74,163 + 2190: -74,162 + 2191: -74,161 + 2192: -74,160 + 2193: -74,159 + 2194: -75,159 + 2195: -76,159 + 2196: -77,159 + 2197: -78,159 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 525: 69,40 + 3264: 79,40 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 1229: -46,74 + 3180: -95,41 + 3181: -95,42 + 3182: -95,43 + 3183: -94,43 + 3184: -93,43 + 3185: -92,43 + 3186: -91,43 + 3187: -90,43 + 3188: -90,44 + 3189: -90,45 + 3190: -90,46 + 3191: -90,47 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale + decals: + 736: 115,59 + 737: 116,59 + - node: + color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 1055: 59,-27 + 1222: -36,88 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 1230: -44,71 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 2139: -69,160 + 2198: -79,160 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 686: 90,57 + 1225: -36,80 + 5597: 72,27 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 3178: -89,44 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale180 + decals: + 733: 114,62 + 734: 114,61 + 735: 114,60 + 738: 116,59 + 739: 116,58 + 740: 116,57 + 741: 115,57 + 742: 114,57 + 743: 113,57 + 744: 112,57 + 745: 111,57 + 746: 110,57 + 747: 109,57 + 748: 108,57 + 749: 107,57 + 750: 106,57 + 751: 105,57 + 752: 104,57 + 753: 103,57 + 754: 102,57 + 755: 101,57 + 3817: 116,47 + 3818: 115,47 + 4508: 100,57 + 4509: 99,57 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 1231: -38,71 + 1362: -30,2 + 1363: -26,2 + 1364: -31,2 + 1369: -24,2 + 1370: -23,2 + 1371: -22,2 + 1372: -21,2 + 1373: -20,2 + 1374: -19,2 + 1375: -18,2 + 1376: -17,2 + 1377: -16,2 + 1378: -15,2 + 1379: -14,2 + 1380: -13,2 + 1381: -12,2 + 1382: -11,2 + 1383: -10,2 + 1384: -8,2 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 1227: -46,88 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 4510: 99,57 + 5598: 70,27 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 1228: -46,80 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale270 + decals: + 775: 114,45 + 776: 113,45 + 777: 112,45 + 778: 111,45 + 781: 109,43 + 782: 110,43 + 783: 108,43 + 784: 107,43 + 785: 107,44 + 786: 107,45 + 787: 106,45 + 788: 105,45 + 789: 104,45 + 790: 103,45 + 791: 103,46 + 792: 103,47 + 793: 102,47 + 794: 101,47 + 795: 100,47 + 796: 99,47 + 3252: 104.00407,62.76564 + 3253: 104.98844,62.750015 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 1223: -36,82 + 3069: -8,171 + 3070: -8,170 + 3071: -8,169 + 3072: -8,168 + 3073: -8,167 + 3074: -8,166 + 3075: -8,165 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 1365: -32,1 + 1366: -32,0 + 1367: -32,-2 + 1368: -32,-1 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 2137: -69,154 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 526: 73,40 + 537: 63,40 + 687: 90,49 + 1224: -36,74 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 3179: -89,38 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale90 + decals: + 756: 99,49 + 757: 100,49 + 758: 101,49 + 759: 102,49 + 760: 103,49 + 761: 104,49 + 762: 105,49 + 763: 106,49 + 764: 107,49 + 765: 108,49 + 766: 109,49 + 767: 110,49 + 768: 111,49 + 769: 112,49 + 770: 113,49 + 771: 114,49 + 772: 114,47 + 773: 114,46 + 774: 114,45 + 779: 110,44 + 780: 110,43 + 3815: 115,49 + 3816: 116,49 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale90 + decals: + 717: 114,62 + 718: 113,62 + 719: 112,62 + 720: 111,62 + 721: 110,62 + 722: 106,62 + 723: 103,62 + 724: 102,62 + 725: 107,63 + 726: 108,63 + 727: 109,63 + 728: 107,62 + 729: 102,61 + 730: 102,60 + 731: 102,59 + 732: 101,59 + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 348: -3.3238854,-3.8811738 + 2199: -61.178123,176.36215 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Remains + decals: + 1798: -81,148 - node: color: '#FFFFFFFF' id: Rock01 decals: - 15773: -12.885913,52.86193 - - node: - zIndex: 3 - color: '#D4D4D4FF' - id: SidingLineW - decals: - 10433: 80,-12 - 10434: 80,-11 - 10435: 80,-10 - - node: - color: '#FED83DFF' - id: WarnBox - decals: - 64: 47,21 - 65: 91,-26 - 66: 91,-27 - 67: 91,-30 - 68: 87,-39 - 69: 87,-58 - 70: 81,-67 - 73: -43,-49 - 74: -43,-50 - 75: -43,-51 - 77: -62,-22 - 78: -69,-16 - 79: -76,-16 - 80: -78,-14 - 81: -66,-10 - 83: -62,15 - 84: -50,24 + 1502: -68,101 + 4908: -71.162415,64.86056 - node: color: '#FFFFFFFF' - id: WarnBox + id: Rock02 decals: - 1014: -69,-17 - 1015: -76,-17 - 1016: -67,-10 + 1701: -97,153 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 4982: -64.59343,92.29767 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 4981: -65.83321,96.8207 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 1702: -99,151 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 223: -25,-16 + 3792: -74,115 + 3793: -66,116 + 3794: -63,118 + 4087: -119,89 + 4088: -121,83 + 4089: -126,82 + 4119: -32.732414,42.217537 + 4133: 11.436943,74.22253 + 4507: 65.81558,17.196243 + 4532: 25.886436,7.3399963 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 224: -25,-19 + 225: -26,-18 + 1503: -65,101 + 4090: -122,81 + 4091: -120,86 + 4092: -130,81 + 4093: -132,83 + 4094: -134,85 + 5378: -123.47132,110.934074 + - node: + color: '#95FF5EFF' + id: Rust + decals: + 1703: -95,149 + 1704: -93,150 + 1705: -94,150 + 1706: -93,150 + 1707: -92,152 + 1708: -88,151 + 1709: -87,151 + 1710: -88,150 + 1711: -88,151 + 1712: -88,152 + 1713: -83,151 + 1714: -83,152 + 1715: -81,152 + 1716: -99,147 + 1717: -99,152 + 1718: -98,153 + 1719: -99,153 + 1720: -99,153 + 1723: -93,148 + - node: + color: '#9FED5896' + id: Rust + decals: + 1755: -88,154 + 1756: -87,154 + 1757: -87,155 + 1758: -87,154 + 1759: -91,154 + 1760: -92,154 + 1761: -93,154 + 1762: -93,154 + 1763: -92,154 + 1764: -93,155 + 1765: -89,154 + 1766: -89,155 + 1767: -88,154 + 1768: -89,154 + 1769: -88,154 + 1783: -80,154 + 1784: -81,154 + 1785: -81,155 + 1786: -81,154 + 1787: -82,154 + 1788: -81,154 + 1789: -81,154 + 1790: -80,154 + 1987: -88,167 + 1988: -89,168 + 1989: -89,167 + 1990: -92,168 + 1991: -91,170 + 1992: -91,171 + 1993: -90,172 + 1994: -89,173 + 1995: -88,174 + 1996: -89,175 + 1997: -89,172 + 1998: -88,173 + 1999: -89,173 + 2000: -90,172 + 2001: -91,171 + 2002: -93,168 + 2003: -95,167 + 2004: -96,167 + 2005: -95,167 + 2006: -94,167 + 2007: -93,167 + 2008: -94,167 + 2009: -92,170 + 2010: -93,170 + 2011: -92,170 + 2012: -86,171 + 2013: -86,172 + 2014: -86,171 + 2015: -86,170 + 2016: -86,169 + 2125: -73,176 + 2126: -73,176 + 2127: -70,173 + 2128: -69,173 + 2129: -70,172 + 2130: -69,174 + 2131: -69,173 + 2132: -70,172 + 2133: -71,172 + 2134: -71,171 + 2156: -71,169 + 2157: -72,169 + 2158: -71,168 + 2159: -73,167 + 2160: -74,167 + 2161: -72,170 + 2162: -71,169 + 2163: -71,170 + 2164: -71,171 + 2165: -71,170 + 2200: -62,171 + 2201: -61,172 + 2202: -61,171 + 2203: -61,171 + 2204: -60,172 + 2205: -58,172 + 2206: -58,172 + 2207: -58,171 + 2208: -58,173 + 2209: -58,173 + 2210: -59,173 + 2211: -59,173 + 2212: -59,174 + 2213: -59,173 + 2214: -60,173 + 2215: -63,171 + 2216: -64,171 + 2217: -64,174 + 2218: -64,174 + 2219: -65,174 + 2220: -65,174 + 2221: -65,173 + 2222: -65,173 + 2223: -63,172 + 2235: -60,158 + 2236: -61,158 + 2237: -60,159 + 2238: -60,158 + 2239: -60,156 + 2240: -62,161 + 2241: -63,161 + 2242: -63,161 + 2243: -63,161 + 2244: -64,161 + 2245: -60,166 + 2246: -60,167 + 2247: -60,166 + 2248: -60,165 + 2249: -65,169 + 2250: -64,169 + 2251: -65,169 + 2252: -65,169 + 2253: -66,169 + 2254: -67,170 + 2255: -67,171 + 2256: -67,170 + 2257: -67,172 + 2258: -67,166 + 2259: -67,166 + 2260: -67,165 + 2261: -66,161 + 2262: -66,161 + 2263: -67,161 + 2264: -66,162 + 2309: -98,155 + 2310: -98,155 + 2311: -98,155 + 2312: -98,156 + 2313: -98,156 + 2314: -98,158 + 2315: -98,157 + 2316: -99,158 + 2317: -99,159 + 2318: -99,158 + 2319: -99,158 + 2320: -97,158 + 2982: 10,185 + 2983: 9,185 + 2984: 10,185 + 2985: 11,184 + 2986: 10,185 + 2987: 9,185 + - node: + cleanable: True + color: '#9FED5896' + id: Rust + decals: + 1810: -81,167 + 1811: -80,167 + 1812: -81,167 + 1813: -81,168 + 1814: -83,169 + 1815: -83,169 + 1816: -84,170 + 1817: -84,171 + 1818: -76,169 + 1819: -82,174 + 1835: -84,173 + 1836: -79,175 + 1837: -78,175 + 1838: -78,174 + 1839: -78,175 + 1840: -76,172 + - node: + color: '#FFFFFFFF' + id: Rust + decals: + 108: -32.024284,-19.016344 + 109: -37.024284,-18.00072 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 1058: -44,90 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 1057: -43,90 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 1056: -42,90 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 3656: -41,90 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 1054: -40,90 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 1055: -39,90 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 1323: -38,90 + - node: + color: '#FFFFFFFF' + id: StairsMS + decals: + 5652: -44,-5 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 9: -34,1 + 106: -49,-13 + 107: -47,-13 + 228: -22,4 + 229: -16,4 + 230: -10,4 + 257: -9,-6 + 1320: -41,72 + - node: + cleanable: True + color: '#FFFFFFFF' + id: StandClear + decals: + 4333: -72.52609,179.6773 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 1319: -45,77 + 1322: -45,85 + 3497: -95,40 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 1317: -37,77 + 1318: -37,85 + - node: + color: '#FFFFFFFF' + id: StandClearGreyscale + decals: + 1966: -93,170 + - node: + color: '#8932B878' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1087: -4,82 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 520: 69,41 + 5593: 70,30 + - node: + color: '#8932B878' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1088: 0,80 + - node: + color: '#B2B4BE93' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 4827: 82,51 + - node: + color: '#D1CA4493' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 4835: 82,48 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 4826: 82,54 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 5595: 72,26 + - node: + color: '#8932B878' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1089: -4,80 + - node: + color: '#B2B4BE93' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 4828: 80,51 + - node: + color: '#D1CA4493' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 4836: 80,48 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 4825: 80,54 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 5596: 70,26 + - node: + color: '#8932B878' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1086: 0,82 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 521: 73,41 + 5594: 72,30 + - node: + color: '#00BEBEFF' + id: WarnCornerGreyscaleNE + decals: + 5004: -104,28 + - node: + color: '#80C71FFF' + id: WarnCornerGreyscaleNE + decals: + 2942: 21,195 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleNE + decals: + 5127: 63,46 + - node: + color: '#EFB34196' + id: WarnCornerGreyscaleNE + decals: + 3409: -127,55 + - node: + color: '#00BEBE87' + id: WarnCornerGreyscaleNW + decals: + 3542: -110,28 + - node: + color: '#80C71FFF' + id: WarnCornerGreyscaleNW + decals: + 2943: 18,195 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleNW + decals: + 5128: 60,46 + - node: + color: '#EFB34196' + id: WarnCornerGreyscaleNW + decals: + 3412: -129,55 + - node: + color: '#00BEBE87' + id: WarnCornerGreyscaleSE + decals: + 3575: -105,18 + 3576: -104,20 + - node: + color: '#80C71FFF' + id: WarnCornerGreyscaleSE + decals: + 2944: 21,193 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleSE + decals: + 5129: 63,43 + - node: + color: '#EFB34196' + id: WarnCornerGreyscaleSE + decals: + 3410: -127,53 + - node: + color: '#00BEBE87' + id: WarnCornerGreyscaleSW + decals: + 3573: -114,20 + 3574: -113,18 + - node: + color: '#80C71FFF' + id: WarnCornerGreyscaleSW + decals: + 2945: 18,193 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleSW + decals: + 5130: 60,43 + - node: + color: '#EFB34196' + id: WarnCornerGreyscaleSW + decals: + 3411: -129,53 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 10500: -21,7 - 10578: 20,28 - 12216: 11,-50 - 12295: 11,-76 - 12469: 18,-55 - 12470: 16,-46 - 12738: 11,-70 - 12792: 22,-86 - 12867: 23,-55 - - node: - zIndex: 4 - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 12126: -17,-82 + 2900: 5,193 + 2901: 6,192 + 3404: -127,49 + 5537: 76,20 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 10501: -23,7 - 10577: 15,28 - 12214: 14,-55 - 12280: 14,-46 - 12661: 21,-55 - 12781: 14,-86 - 12866: 21,-60 - - node: - zIndex: 4 - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 12125: -15,-82 + 2899: 4,193 + 3403: -129,49 + 5538: 74,20 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 10576: 20,26 - 12251: 18,-57 - 12255: 16,-52 - 12272: 11,-47 - 12461: 11,-73 - 12471: 16,-44 - 12739: 11,-57 - 12793: 22,-90 - 12868: 23,-57 - - node: - zIndex: 4 - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 12127: -17,-80 + 2902: 6,191 + 2903: 5,190 + 3402: -127,44 + 5539: 76,18 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 10575: 15,26 - 12215: 14,-52 - 12249: 14,-57 - 12279: 14,-44 - 12780: 14,-90 - 12850: 21,-52 - 12865: 21,-57 + 2904: 4,190 + 3401: -129,44 + 5540: 74,18 - node: - zIndex: 4 - color: '#FFFFFFFF' - id: WarnCornerSW + color: '#D381C996' + id: WarnCornerSmallGreyscaleNE decals: - 12124: -15,-80 + 2155: -72,168 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallGreyscaleNE + decals: + 5112: 32,59 + 5603: 72,28 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallGreyscaleNW + decals: + 5602: 70,28 + - node: + color: '#00BEBE87' + id: WarnCornerSmallGreyscaleSE + decals: + 3617: -105,20 + - node: + color: '#D381C996' + id: WarnCornerSmallGreyscaleSE + decals: + 2154: -72,172 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallGreyscaleSE + decals: + 5111: 32,61 + - node: + color: '#00BEBE87' + id: WarnCornerSmallGreyscaleSW + decals: + 3650: -113,20 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 6782: -3,-79 - 11903: -16,-67 - 11928: -18,-77 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 11722: 76,-47 - - node: - zIndex: 6 - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 11966: -26,-69 - 11967: -24,-69 + 2908: 2,190 + 2912: 5,192 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 6783: 1,-79 - 11902: -10,-67 - 11927: -14,-77 - 12806: 11,-88 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 11730: 80,-47 - - node: - zIndex: 6 - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 11964: -26,-69 - 11965: -24,-69 + 2050: -70,178 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 6785: -3,-74 - 11901: -16,-63 - 11926: -18,-73 + 2907: 2,193 + 2911: 5,191 - node: - zIndex: 5 + cleanable: True color: '#FFFFFFFF' - id: WarnCornerSmallSE + id: WarnEndN decals: - 11721: 76,-45 + 5120: 31,61 - node: - zIndex: 6 + cleanable: True color: '#FFFFFFFF' - id: WarnCornerSmallSE + id: WarnEndS decals: - 11960: -26,-66 - 11961: -24,-66 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 6784: 1,-74 - 11899: -10,-63 - 11925: -14,-73 - 12803: 11,-88 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 11729: 80,-45 - - node: - zIndex: 6 - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 11962: -26,-66 - 11963: -24,-66 + 5121: 31,59 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 6777: -3,-78 - 6778: -3,-77 - 6780: -3,-76 - 6781: -3,-75 - 10497: -21,4 - 10498: -21,5 - 10499: -21,6 - 10579: 20,27 - 11896: -16,-66 - 11897: -16,-65 - 11898: -16,-64 - 11916: -18,-76 - 11917: -18,-75 - 11918: -18,-74 - 12207: 11,-56 - 12208: 11,-55 - 12209: 11,-54 - 12210: 11,-53 - 12211: 11,-52 - 12256: 16,-51 - 12257: 16,-50 - 12258: 16,-49 - 12259: 16,-48 - 12260: 16,-47 - 12268: 11,-46 - 12269: 11,-45 - 12270: 11,-44 - 12271: 11,-43 - 12281: 11,-81 - 12282: 11,-80 - 12283: 11,-79 - 12284: 11,-77 - 12285: 11,-78 - 12458: 11,-71 - 12767: 11,-90 - 12768: 11,-89 - 12769: 11,-91 - 12770: 11,-92 - 12771: 11,-88 - 12772: 11,-87 - 12773: 11,-86 - 12774: 11,-85 - 12775: 11,-84 - 12794: 22,-88 - 12813: 11,-93 - 12814: 11,-83 - 12869: 23,-56 - 13010: 22,45 - 13011: 22,46 - 13012: 22,47 - 13013: 22,48 + 2905: 2,191 + 2906: 2,192 + 3396: -127,45 + 3397: -127,46 + 3398: -127,47 + 3399: -127,48 + 5541: 76,19 + 5554: 22,171 + 5555: 22,172 + 5556: 22,173 - node: - zIndex: 5 + cleanable: True color: '#FFFFFFFF' id: WarnLineE decals: - 11723: 79,-45 - 11724: 79,-44 - 11725: 79,-47 - 11726: 79,-48 + 5122: 31,60 - node: - zIndex: 6 - color: '#FFFFFFFF' - id: WarnLineE + color: '#00BEBE87' + id: WarnLineGreyscaleE decals: - 11941: -26,-68 - 11942: -26,-67 - 11943: -24,-68 - 11944: -24,-67 + 3543: -104,27 + 3544: -104,26 + 3545: -104,25 + 3546: -104,24 + 3547: -104,23 + 3548: -104,22 + 3549: -104,21 + 3550: -105,19 - node: - color: '#D381C9FF' + color: '#25548C93' + id: WarnLineGreyscaleE + decals: + 2456: -19,192 + 2457: -19,193 + - node: + color: '#80C71FFF' + id: WarnLineGreyscaleE + decals: + 2941: 21,194 + - node: + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 1179: -48,84 + 1180: -48,85 + 1181: -48,86 + 1963: -86,171 + 1964: -86,172 + 2149: -72,169 + 2150: -72,170 + 2151: -72,171 + - node: + cleanable: True + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 1832: -76,170 + 1833: -76,171 + 1834: -76,172 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 457: 67,54 + 458: 67,53 + 459: 67,52 + 503: 78,56 + 604: 58,61 + 632: 77,66 + 819: 63,66 + 1414: 68,33 + 1415: 68,34 + 1416: 68,35 + 4149: 58,60 + 5108: 38,61 + 5113: 32,60 + 5131: 63,44 + 5132: 63,45 + 5604: 72,29 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleE + decals: + 1130: -48,76 + 1131: -48,77 + 1132: -48,78 + 3405: -127,54 + - node: + color: '#FFC364FF' + id: WarnLineGreyscaleE + decals: + 26: -26,-1 + 30: -26,-5 + 298: -26,-6 + 299: -26,-4 + 321: -6,-1 + 322: -6,0 + - node: + color: '#00BEBE87' + id: WarnLineGreyscaleN + decals: + 3536: -109,28 + 3537: -108,28 + 3538: -107,28 + 3539: -106,28 + 3571: -113,25 + 3572: -112,25 + - node: + color: '#00BEBEFF' + id: WarnLineGreyscaleN + decals: + 5005: -105,28 + - node: + color: '#80C71FFF' + id: WarnLineGreyscaleN + decals: + 2939: 19,195 + 2940: 20,195 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleN + decals: + 4906: -66,69 + 4907: -66,69 + - node: + color: '#A4610696' + id: WarnLineGreyscaleN + decals: + 1293: -42,69 + 1294: -41,69 + 1295: -40,69 + - node: + color: '#D381C996' + id: WarnLineGreyscaleN + decals: + 1961: -89,175 + 1962: -88,175 + 1965: -93,170 + 2152: -71,168 + - node: + cleanable: True + color: '#D381C996' + id: WarnLineGreyscaleN + decals: + 1826: -81,175 + 1827: -80,175 + 1828: -79,175 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 454: 72,49 + 455: 71,49 + 456: 70,49 + 497: 65,55 + 498: 66,55 + 555: 66,44 + 556: 67,44 + 557: 75,44 + 558: 76,44 + 592: 70,63 + 593: 71,63 + 594: 72,63 + 659: 94,55 + 660: 95,55 + 661: 96,55 + 873: 59,67 + 5114: 33,59 + 5115: 33,59 + 5137: 61,46 + 5138: 62,46 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleN + decals: + 3408: -128,55 + - node: + color: '#FFC364FF' + id: WarnLineGreyscaleN + decals: + 23: -29,0 + 24: -28,0 + 25: -27,0 + 27: -29,-4 + 28: -28,-4 + 330: -11,0 + 331: -10,0 + 332: -9,0 + 333: -15,0 + 334: -16,0 + 335: -17,0 + 336: -21,0 + 337: -22,0 + 338: -23,0 + - node: + color: '#00BEBE87' id: WarnLineGreyscaleS decals: - 5159: 54,-15 - 7015: 53,-15 - 7016: 52,-15 + 3509: -105,30 + 3510: -104,30 + 3511: -106,30 + 3512: -103,30 + 3559: -106,18 + 3560: -107,18 + 3562: -108,18 + 3565: -109,18 + 3567: -110,18 + 3569: -111,18 + 3570: -112,18 - node: - color: '#FFFFFFFF' - id: WarnLineN + color: '#80C71FFF' + id: WarnLineGreyscaleS decals: - 6774: -2,-74 - 6775: -1,-74 - 6776: 0,-74 - 10585: 16,26 - 10586: 17,26 - 10587: 18,26 - 10588: 19,26 - 11886: -11,-63 - 11887: -12,-63 - 11888: -13,-63 - 11889: -14,-63 - 11890: -15,-63 - 11922: -17,-73 - 11924: -15,-73 - 11934: -25,-66 - 11935: -27,-66 - 11936: -23,-66 - 12252: 15,-57 - 12253: 16,-57 - 12254: 17,-57 - 12276: 10,-47 - 12783: 15,-90 - 12784: 19,-90 - 12785: 18,-90 - 12786: 17,-90 - 12787: 21,-90 - 12808: 10,-88 - 12898: 26,45 - 12899: 27,45 - 12900: 28,45 + 2937: 19,193 + 2938: 20,193 - node: - zIndex: 4 - color: '#FFFFFFFF' - id: WarnLineN + color: '#A4610696' + id: WarnLineGreyscaleS decals: - 12129: -16,-73 + 1340: -36,6 + 1341: -35,6 + 1342: -34,6 - node: - zIndex: 5 - color: '#FFFFFFFF' - id: WarnLineN + color: '#D381C996' + id: WarnLineGreyscaleS decals: - 11715: 74,-46 - 11716: 75,-46 - 11717: 76,-46 - 11728: 80,-46 - - node: - zIndex: 6 - color: '#FFFFFFFF' - id: WarnLineN - decals: - 11954: -26,-71 - 11955: -25,-71 - 11956: -24,-71 - 11957: -23,-71 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 6770: 1,-78 - 6771: 1,-77 - 6772: 1,-76 - 6773: 1,-75 - 10503: -23,6 - 10504: -23,5 - 10505: -23,4 - 10584: 15,27 - 11883: -10,-66 - 11884: -10,-65 - 11885: -10,-64 - 11913: -14,-76 - 11914: -14,-75 - 11915: -14,-74 - 11937: -24,-68 - 11938: -24,-67 - 11939: -26,-68 - 11940: -26,-67 - 12198: 14,-56 - 12199: 14,-50 - 12200: 14,-49 - 12201: 14,-48 - 12202: 14,-47 - 12277: 14,-43 - 12278: 14,-42 - 12777: 14,-89 - 12778: 14,-88 - 12779: 14,-87 - 12795: 11,-87 - 12796: 11,-86 - 12797: 11,-85 - 12798: 11,-84 - 12799: 11,-90 - 12800: 11,-89 - 12801: 11,-91 - 12802: 11,-92 - 12811: 11,-83 - 12812: 11,-93 - 12827: 21,-70 - 12834: 21,-63 - 12835: 21,-62 - 12836: 21,-61 - 12841: 21,-51 - 12842: 21,-50 - 12843: 21,-49 - 12844: 21,-48 - 12845: 21,-47 - 12846: 21,-46 - 12847: 21,-45 - 12848: 21,-44 - 12853: 21,-69 - 12854: 21,-68 - 12855: 21,-67 - 12856: 21,-66 - 12857: 21,-65 - 12858: 21,-64 - 13006: 24,45 - 13007: 24,46 - 13008: 24,47 - 13009: 24,48 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: WarnLineS - decals: - 11711: 77,-45 - 11712: 77,-44 - 11713: 77,-47 - 11714: 77,-48 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 6767: -2,-79 - 6768: -1,-79 - 6769: 0,-79 - 10580: 16,28 - 10581: 17,28 - 10582: 18,28 - 10583: 19,28 - 11891: -15,-67 - 11892: -14,-67 - 11893: -13,-67 - 11894: -12,-67 - 11895: -11,-67 - 11919: -17,-77 - 11921: -15,-77 - 12275: 10,-50 - 12467: 16,-55 - 12468: 17,-55 - 12782: 15,-86 - 12788: 17,-86 - 12789: 18,-86 - 12790: 19,-86 - 12791: 21,-86 - 12807: 10,-88 - - node: - zIndex: 4 - color: '#FFFFFFFF' - id: WarnLineW - decals: - 12128: -16,-77 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: WarnLineW - decals: - 11718: 74,-46 - 11719: 75,-46 - 11720: 76,-46 - 11727: 80,-46 - - node: - zIndex: 6 - color: '#FFFFFFFF' - id: WarnLineW - decals: - 11946: -25,-69 - 11947: -23,-69 - 11948: -23,-66 - 11949: -24,-66 - 11950: -25,-66 - 11951: -27,-66 - 11959: -26,-66 - - node: - zIndex: 7 - color: '#FFFFFFFF' - id: WarnLineW - decals: - 11186: -22,7 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 3411: 12,-26 - 7393: 13,44 - 10264: 57,2 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 11121: -12,5 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 7392: 17,44 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 2439: 12,-37 - 3412: 12,-27 - 10266: 57,-1 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 10423: 70,-8 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 11123: -12,3 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 2440: 10,-37 - 10265: 54,-1 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 10426: 76,-8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 9260: 13,40 - 9261: 17,40 - 10145: 73,-9 - 10227: 56,-9 - 10246: 67,-9 - 10263: 54,2 - 16029: -3,-20 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 9258: 17,40 - 9259: 13,40 - 10144: 73,-9 - 10226: 55,-9 - 10245: 66,-9 - 13456: 65,23 - 15157: 26,20 - 16030: 1,-20 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 3422: 9,-27 - 10142: 73,-5 - 10247: 67,-10 - 10268: 56,-1 - 16039: -3,-14 - 16044: 1,-14 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 3421: 9,-27 - 10143: 73,-5 - 10244: 66,-10 - 10267: 55,-1 - 13455: 65,25 - 16040: 1,-14 - 16041: -3,-14 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 2967: 12,-36 - 7386: 13,41 - 7387: 13,42 - 7388: 13,43 - 7394: 17,41 - 7395: 17,42 - 7396: 17,43 - 10130: 73,-8 - 10131: 73,-7 - 10132: 73,-6 - 10201: 56,-8 - 10202: 56,-7 - 10203: 56,-6 - 10204: 56,-5 - 10205: 56,-4 - 10206: 56,-3 - 10233: 67,-8 - 10234: 67,-7 - 10235: 67,-11 - 10236: 67,-11 - 10258: 57,0 - 10259: 57,1 - 10260: 56,-2 - 15131: 26,17 - 15132: 26,18 - 15133: 26,19 - 15135: 26,21 - 15136: 26,22 - 15137: 25,18 - 15138: 25,19 - 15158: 26,20 - 16013: -3,-19 - 16014: -3,-18 - 16015: -3,-17 - 16016: -3,-16 - 16017: -3,-15 - 16018: 1,-18 - 16019: 1,-17 - 16020: 1,-16 - 16021: 1,-15 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 10424: 70,-7 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 11114: -10,5 - 11115: -10,6 - 11116: -10,7 - 11117: -10,3 - 11118: -10,2 - 11119: -10,1 - 11122: -12,4 - - node: - angle: 0.6108652381980153 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 13030: -38.27722,31.416235 - - node: - angle: 0.9773843811168246 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 13031: -37.318886,31.457903 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 1638: 51,-38 - 1639: 52,-38 - 1640: 53,-38 - 1641: 54,-38 - 1642: 55,-38 - 1643: 56,-38 - 1644: 57,-38 - 3198: -32,-25 - 3409: 10,-26 - 3410: 11,-26 - 5092: 30,12 - 5093: 36,12 - 5094: 37,12 - 5392: 24,2 - 5394: 25,2 - 5395: 23,2 - 6893: 29,12 - 9254: 14,40 - 9255: 16,40 - 9256: 18,40 - 9257: 12,40 - 9841: -34,-29 - 9842: -33,-29 - 9843: -32,-29 - 9844: -31,-29 - 10126: 71,-9 - 10127: 72,-9 - 10128: 71,-5 - 10129: 75,-5 - 10133: 74,-9 - 10134: 75,-9 - 10216: 57,-9 - 10217: 58,-9 - 10218: 59,-9 - 10220: 60,-9 - 10221: 61,-9 - 10222: 62,-9 - 10223: 63,-9 - 10228: 64,-9 - 10229: 65,-9 - 10230: 70,-9 - 10231: 69,-9 - 10232: 68,-9 - 10256: 55,2 - 10257: 56,2 - 12411: 15,40 - 15154: 23,20 - 15155: 24,20 - 15156: 25,20 - 16026: -2,-20 - 16027: -1,-20 - 16028: 0,-20 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 10422: 76,-9 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 11120: -13,5 - - node: - angle: 1.2217304763960306 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 13020: -27.861385,31.79673 - - node: - angle: 1.361356816555577 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 13021: -27.59576,31.79673 - - node: - angle: 2.111848394913139 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 13022: -28.70535,31.105547 - 13023: -22.7118,32.102066 - - node: - angle: 3.6826447217080354 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 13025: -23.2743,32.24269 - - node: - angle: 4.834562028024293 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 13026: -22.455835,31.808434 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 2441: 11,-37 - 3413: 11,-27 - 3414: 10,-27 - 5008: 22,-1 - 5009: 23,-1 - 5010: 24,-1 - 5011: 25,-1 - 5012: 26,-1 - 10135: 74,-5 - 10136: 75,-5 - 10137: 72,-5 - 10138: 71,-5 - 10155: 70,-10 - 10156: 71,-10 - 10157: 72,-10 - 10158: 72,-10 - 10159: 73,-10 - 10160: 74,-10 - 10163: 76,-10 - 10164: 75,-10 - 10207: 55,-10 - 10208: 56,-10 - 10209: 57,-10 - 10210: 58,-10 - 10211: 59,-10 - 10213: 61,-10 - 10214: 62,-10 - 10215: 63,-10 - 10224: 60,-10 - 10240: 64,-10 - 10241: 65,-10 - 10242: 68,-10 - 10243: 69,-10 - 11040: 60,-5 - 11041: 61,-5 - 13188: -33,29 - 13189: -31,29 - 13454: 64,26 - 15139: 23,18 - 15140: 24,18 - 15141: 25,18 - 16036: -2,-14 - 16037: -1,-14 - 16038: 0,-14 - 16042: -4,-14 - 16043: 2,-14 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 11124: -13,3 - 11125: -13,3 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 2968: 10,-36 - 7389: 17,41 - 7390: 17,42 - 7391: 17,43 - 7397: 13,41 - 7398: 13,42 - 7399: 13,43 - 10139: 73,-6 - 10140: 73,-7 - 10141: 73,-8 - 10146: 67,-1 - 10147: 67,0 - 10148: 67,1 - 10149: 67,1 - 10150: 67,2 - 10151: 67,3 - 10152: 67,-5 - 10153: 67,-4 - 10154: 67,-3 - 10196: 55,-7 - 10197: 55,-6 - 10198: 55,-5 - 10199: 55,-4 - 10200: 55,-3 - 10225: 55,-8 - 10237: 66,-11 - 10238: 66,-8 - 10239: 66,-7 - 10254: 54,0 - 10255: 54,1 - 10261: 55,-2 - 10262: 54,2 - 13452: 65,24 - 15125: 26,17 - 15126: 26,18 - 15127: 26,19 - 15129: 26,21 - 15130: 26,22 - 15142: 23,18 - 15143: 23,19 - 16022: -3,-18 - 16023: -3,-17 - 16024: -3,-16 - 16025: -3,-15 - 16031: 1,-19 - 16032: 1,-18 - 16033: 1,-17 - 16034: 1,-16 - 16035: 1,-15 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 10425: 76,-7 - 11744: 62,-38 - 11745: 62,-37 - 11746: 62,-36 - - node: - zIndex: 5 - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 11109: -10,2 - 11110: -10,3 - 11111: -10,4 - 11112: -10,5 - 11113: -10,6 + 2153: -71,172 - node: cleanable: True - color: '#640000FF' + color: '#D381C996' + id: WarnLineGreyscaleS + decals: + 1831: -79,167 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 463: 70,57 + 464: 71,57 + 465: 72,57 + 499: 66,46 + 500: 67,46 + 501: 75,46 + 502: 76,46 + 559: 66,42 + 560: 67,42 + 561: 75,42 + 562: 76,42 + 633: 70,65 + 634: 71,65 + 635: 72,65 + 656: 94,51 + 657: 95,51 + 658: 96,51 + 854: 53,59 + 5110: 33,61 + 5135: 61,43 + 5136: 62,43 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleS + decals: + 3407: -128,53 + - node: + color: '#FFC364FF' + id: WarnLineGreyscaleS + decals: + 21: -29,-2 + 22: -28,-2 + 85: -49,-13 + 86: -47,-13 + 294: -23,-6 + 295: -22,-6 + 317: -10,-6 + 318: -11,-6 + 319: -8,-6 + 320: -7,-6 + - node: + color: '#00BEBE87' + id: WarnLineGreyscaleW + decals: + 3540: -110,27 + 3541: -110,26 + 3597: -114,23 + 3600: -114,22 + 3603: -114,21 + 3651: -113,19 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 1232: -34,84 + 1233: -34,85 + 1234: -34,86 + 2441: -17,192 + 2442: -17,193 + - node: + color: '#80C71FFF' + id: WarnLineGreyscaleW + decals: + 2936: 18,194 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleW + decals: + 4905: -67,66 + - node: + color: '#D381C996' + id: WarnLineGreyscaleW + decals: + 2081: -67,156 + 2082: -67,158 + 2083: -67,157 + 2107: -74,170 + 2108: -74,171 + 2109: -74,172 + - node: + cleanable: True + color: '#D381C996' + id: WarnLineGreyscaleW + decals: + 1829: -84,171 + 1830: -84,172 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 460: 75,52 + 461: 75,53 + 462: 75,54 + 573: 63,61 + 579: 68,63 + 631: 65,66 + 1177: -34,76 + 1178: -34,77 + 1423: -34,78 + 5000: 63,60 + 5133: 60,44 + 5134: 60,45 + 5601: 70,29 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleW + decals: + 3138: -87,40 + 3139: -87,41 + 3140: -87,42 + 3406: -129,54 + - node: + color: '#FFC364FF' + id: WarnLineGreyscaleW + decals: + 20: -30,-1 + 29: -30,-5 + 296: -24,-5 + 297: -24,-4 + 316: -24,-6 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 103: -49,-13 + 104: -48,-13 + 105: -47,-13 + 3395: -128,44 + 3496: -96,40 + 5542: 75,18 + 5548: -86,71 + 5549: -85,71 + 5550: -84,71 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineN + decals: + 5615: 8.962517,70.28028 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 2048: -70,179 + 2049: -70,180 + 2110: -70,181 + 2909: 4,191 + 2910: 4,192 + 3391: -129,48 + 3392: -129,47 + 3393: -129,46 + 3394: -129,45 + 5543: 74,19 + 5551: 20,171 + 5552: 20,172 + 5553: 20,173 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineS + decals: + 5123: 31,60 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 2045: -74,178 + 2046: -72,178 + 2047: -71,178 + 3400: -128,49 + 3495: -96,40 + 5544: 75,20 + 5545: -86,73 + 5546: -85,73 + 5547: -84,73 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineW + decals: + 4334: -73,178 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinBox + decals: + 4358: -65,62 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 1426: -4,75 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 1427: -4,76 + 1428: -4,77 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 1429: -3,77 + 1430: -1,77 + 1431: 0,77 + - node: + zIndex: 6 + color: '#D4D0DCFF' + id: WoodTrimThinLineS + decals: + 3910: -32,67 + - node: + zIndex: 6 + angle: 1.5707963267948966 rad + color: '#D4D0DCFF' + id: WoodTrimThinLineS + decals: + 3911: -30,68 + 3912: -30,69 + 3913: -30,69 + 3914: -30,70 + 3915: -30,71 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 1424: -1,77 + 1425: 0,77 + 5589: 50,24 + 5590: 49,24 + 5591: 48,24 + - node: + zIndex: 1 + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 3909: -32,67 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 5586: 52,23 + 5587: 52,22 + 5588: 52,21 + - node: + color: '#FFFFFFFF' + id: amyjon + decals: + 14: -35.9595,-8.013108 + - node: + cleanable: True + angle: 0.7853981633974483 rad + color: '#FF434BFF' id: body decals: - 13556: 60.711197,23.914898 - 13557: 64.285805,21.477398 - 13558: 67.85446,27.180609 - 13559: 69.22768,22.358131 - - node: - color: '#D4D4D4FF' - id: burnt1 - decals: - 13147: -32,42 - 13149: -32,43 - 13150: -33,44 - 13151: -33,45 + 951: 98.219505,19.126734 - node: color: '#FFFFFFFF' - id: burnt1 + id: bushsnowa1 decals: - 13560: 59,26 - 13561: 59,26 - 13562: 60,24 - 13563: 60,24 - 13564: 59,24 - 13565: 59,25 - 13566: 59,25 - 13567: 59,25 - 13568: 59,23 - 13569: 59,22 - 13573: 59,22 - 13574: 59,22 - 13575: 60,21 - 13576: 60,22 - 13577: 60,22 - 15034: 53,-69 - 15035: 58,-69 - 15036: 56,-70 - 15037: 57,-69 - 15038: 55,-69 - 15039: 62,-71 - 15040: 60,-72 - 15041: 61,-74 - 15042: 62,-74 - 15057: 55,-78 - 15058: 54,-77 - 15059: 54,-76 - 15060: 55,-74 - 15061: 54,-74 - 15062: 51,-70 - 15063: 52,-71 - 15064: 49,-68 - 15065: 61,-69 - 15066: 58,-74 - 15067: 57,-73 - 15068: 57,-72 - 15069: 59,-72 - 15070: 58,-73 - 15071: 56,-73 - 15072: 55,-72 - 15073: 55,-74 - 15170: 62,-75 - 15171: 61,-75 - 15172: 62,-82 - 15173: 61,-82 - 15174: 62,-79 - 15175: 59,-80 - 15317: -24,-58 - 15318: -21,-57 - 15319: -22,-55 - 15320: -24,-54 - 15321: -25,-55 - 15322: -26,-55 - 15323: -22,-51 - 15324: -24,-51 - 15325: -27,-52 - 15326: -29,-54 - 15327: -28,-57 - 15328: -30,-59 - 15351: -25,-57 - 15352: -26,-56 - 15353: -24,-55 - 15354: -24,-57 - 15625: -61,-17 - 15626: -61,-16 - 15627: -61,-16 - 15628: -61,-16 - 15666: -43,-13 - 15667: -43,-13 - 15668: -42,-14 - 15669: -41,-14 - 15670: -40,-13 - 15671: -39,-11 - 15672: -41,-12 - 15673: -41,-14 - 15674: -42,-14 - 15855: -60,-11 - 15856: -61,-10 - 15857: -60,-9 - 15858: -59,-9 - 15859: -58,-11 - 15860: -59,-9 - 15861: -57,-10 - 15862: -56,-10 - 15878: -60,-10 - 15879: -61,-9 - 15880: -59,-9 - 15881: -59,-10 - 15882: -60,-10 - 15883: -60,-10 - 15884: -60,-11 - 15885: -58,-12 - 15886: -56,-11 - 15887: -55,-11 - 15888: -56,-9 - 15889: -55,-8 - 16283: -50,7 - 16284: -51,9 - 16285: -50,9 - 16286: -49,10 - 16287: -49,10 - 16288: -48,7 - 16289: -49,8 - 16290: -49,7 - 16291: -49,6 - 16292: -48,8 - 16293: -49,6 - 16294: -49,3 - 16295: -48,2 - 16296: -53,4 - 16297: -54,6 - 16298: -54,6 - 16299: -55,6 - 16300: -53,7 - 16301: -54,6 - 16302: -53,5 - 16303: -52,7 - 16304: -54,6 - 16305: -54,5 - 16306: -54,4 - 16307: -54,4 - 16308: -56,8 - 16309: -58,9 - 16310: -59,8 - 16311: -57,7 - 16312: -57,7 - 16313: -63,11 - 16314: -64,13 - 16315: -61,13 - 16316: -55,17 - 16317: -58,18 - 16318: -59,18 - 16319: -56,18 - 16320: -54,18 + 2600: -6.546962,185.9682 + - node: + color: '#FFFFFFFF' + id: bushsnowa2 + decals: + 2664: -3.996482,193.076 + - node: + color: '#FFFFFFFF' + id: bushsnowb1 + decals: + 2872: -17,201 + - node: + color: '#FFFFFFFF' + id: bushsnowb2 + decals: + 2598: -8,186 + 2599: -7.8517294,184.98994 - node: cleanable: True + color: '#D381C996' + id: carp + decals: + 4233: -103.02707,63.924225 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#79150096' + id: clawprint + decals: + 4303: -44.048668,53.062798 + 4304: -43.783043,52.781548 + 4305: -44.095543,52.203423 + - node: + cleanable: True + color: '#9FED5896' + id: clown + decals: + 4256: -82.63508,61.869827 + - node: + color: '#9D80FF44' + id: corgi + decals: + 968: -20.896149,87.042656 + - node: + color: '#FF808944' + id: corgi + decals: + 967: -20.941143,86.96394 + - node: + color: '#FFFFFF46' + id: corgi + decals: + 966: -20.907398,87.00893 + - node: + color: '#FFFFFFFF' + id: cyka + decals: + 3814: -104.52734,92.377655 + - node: + color: '#00000013' + id: cyr_d + decals: + 1325: -40.981544,89.189835 + - node: + color: '#00000017' + id: cyr_eh + decals: + 1324: -41.37693,89.20982 + - node: + color: '#FF004193' + id: danger + decals: + 4084: -130,82 + 4085: -131,81 + 4086: -129,83 + - node: + cleanable: True + color: '#D4D4D496' + id: face + decals: + 5145: 79.75583,21.841293 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#EFB34196' + id: fireaxe + decals: + 4255: -81.99445,61.760452 + - node: + cleanable: True + color: '#EFB34196' + id: ghost + decals: + 4254: -106.91884,66.03075 + - node: + color: '#FFFFFFFF' + id: grasssnow + decals: + 1507: -86.07398,99.993645 + 1508: -86.16396,97.81223 + 1509: -85.30912,97.50489 + 1510: -85.28662,100.40594 + 1511: -83.80939,100.17355 + 1512: -83.7344,97.49739 + 2587: -8,185 + 2588: -9,186 + 2589: -10,186 + 2590: -10,185 + 2591: -8,186 + 2592: -7,186 + 2593: -9,185 + 2613: -2,176 + 2614: -1,177 + 2615: 2,179 + 2616: 3,180 + 2617: 2,180 + 2618: 0,180 + 2628: -15,185 + 2629: -16,185 + 2630: -17,185 + 2631: -15,184 + 2632: -19,186 + 2641: -3,193 + 2642: -2,193 + 2643: 0,193 + 2644: -1,194 + 2645: -2,194 + 2646: -4,194 + 2647: -4,195 + 2648: -3,195 + 2649: -3,194 + 2650: 2,193 + 2663: -4,193 + 2665: 2,189 + 2707: -4,196 + 2708: -3,196 + 2709: -3,197 + 2710: -4,197 + 2711: -3,198 + 2712: -4,198 + 2713: -3,199 + 2714: -4,199 + 2718: -3,201 + 2719: -4,201 + 2781: -6,205 + 2786: -12,205 + 2817: -22,202 + 2818: -21,202 + 2819: -20,202 + 2820: -22,201 + 2821: -21,201 + 2826: -18,199 + 2836: -4,208 + 2837: -3,207 + 2838: -4,207 + 2839: -3,206 + 2845: -23,196 + 2846: -22,196 + 2847: -25,196 + 2848: -24,196 + 2849: -26,196 + 2850: -27,196 + 2851: -27,195 + 2852: -27,194 + 2853: -27,193 + 3455: -3.0550146,190.83821 + 4422: -17,175 + 4423: -16,175 + 4424: -15,175 + - node: + color: '#FFFFFFFF' + id: grasssnow01 + decals: + 2594: -6,186 + 3459: -3.8987646,189.79134 + 3460: -1.9612646,191.58821 + 4067: -21.084127,182.9265 + 4068: -21.18536,183.45499 + - node: + color: '#FFFFFFFF' + id: grasssnow02 + decals: + 2372: -5,184 + 2595: -9,184 + 2596: -10,184 + 2782: -6,204 + 2865: -14,201 + 4069: -21.893982,184.87178 + - node: + color: '#FFFFFFFF' + id: grasssnow03 + decals: + 2370: -3,184 + 2371: -4,188 + 2597: -5,186 + 3456: -2.2893896,189.15071 + 3457: -0.3518896,190.46321 + 3458: -3.9143896,191.93196 + 4428: -13,177 + 4429: -15,180 + - node: + color: '#FFFFFFFF' + id: grasssnow04 + decals: + 2835: -15,199 + 4430: -14,177 + - node: + color: '#FFFFFFFF' + id: grasssnow05 + decals: + 2607: -8,176 + 2619: 0,179 + 2620: -1,181 + 2621: -1,180 + 2635: -19,187 + 2636: -22,188 + 2637: -26,188 + 2638: -21,182 + 2722: -6,201 + 4420: -16,177 + - node: + color: '#FFFFFFFF' + id: grasssnow06 + decals: + 2373: 0,187 + 2374: 1,188 + 2655: 2,191 + 2656: 1,193 + 2723: -5,202 + 2834: -18,201 + 2866: -15,201 + 2867: -17,201 + - node: + color: '#FFFFFFFF' + id: grasssnow07 + decals: + 1505: -84.09434,99.813736 + 2608: -8,180 + 2609: -6,183 + 2610: -3,183 + 2654: 0,192 + 4438: -15,181 + - node: + color: '#FFFFFFFF' + id: grasssnow08 + decals: + 2633: -18,185 + 2634: -19,187 + 2657: 0,194 + 2791: -7,201 + 4061: -24.93094,179.96924 + - node: + color: '#FFFFFFFF' + id: grasssnow09 + decals: + 2362: 0,186 + 2363: -1,182 + 2364: -4,183 + 2365: -3,186 + 2606: -8,178 + 2779: -4,205 + 2780: -7,204 + 2864: -13,202 + 4062: -23.063774,180.07043 + 4063: -27.934155,180.98123 + 4064: -26.955578,181.12741 + 4065: -27.180538,180.23909 + 4425: -15,176 + 4426: -14,175 + 4431: -15,178 + - node: + color: '#FFFFFFFF' + id: grasssnow10 + decals: + 1506: -84.32679,98.232025 + 2366: 0,183 + 2367: -1,186 + 2368: -5,187 + 2369: -2,187 + 2603: -11,174 + 2604: -8,175 + 2605: -8,177 + 2611: -2,179 + 2612: 1,178 + 2651: -1,193 + 2652: -3,194 + 2653: 1,192 + 2666: 1,189 + 2720: -4,202 + 2721: -5,201 + 2777: -7,205 + 2778: -5,205 + 2822: -20,201 + 2823: -22,198 + 2824: -19,199 + 2825: -17,199 + 2840: -4,206 + 2868: -17,201 + 4066: -25.189644,179.8343 + 4419: -16,176 + 4437: -16,181 + - node: + color: '#FFFFFFFF' + id: grasssnow11 + decals: + 2667: 2,190 + 2785: -11,205 + 4421: -16,178 + 4427: -13,175 + - node: + color: '#FFFFFFFF' + id: grasssnow12 + decals: + 2790: -10,202 + - node: + color: '#FFFFFFFF' + id: grasssnow13 + decals: + 2832: -22,200 + 2833: -19,201 + - node: + color: '#FFFFFFFF' + id: grasssnowa1 + decals: + 2375: 1,180 + 2376: -1,178 + 2622: 2,179 + 2858: -25,196 + 2863: -22,197 + - node: + color: '#FFFFFFFF' + id: grasssnowa2 + decals: + 2602: -13,174 + 2640: -21,189 + 2869: -13,202 + - node: + color: '#FFFFFFFF' + id: grasssnowa3 + decals: + 2377: -2,177 + 2715: -4,197 + 2831: -22,201 + 2841: -4,208 + 4435: -13,176 + - node: + color: '#FFFFFFFF' + id: grasssnowb1 + decals: + 2623: 3,180 + 2626: -8,173 + 2627: -16,184 + 2660: -2,194 + 2661: -4,195 + 2783: -6,205 + 2784: -10,201 + 2829: -20,202 + 2830: -21,202 + 2842: -3,207 + 2859: -22,196 + 2860: -22,198 + 2861: -27,192 + 2862: -27,190 + 2870: -19,201 + 4436: -16,180 + 4439: -12,178 + - node: + color: '#FFFFFFFF' + id: grasssnowb2 + decals: + 2662: 0,193 + 2789: -9,201 + 2843: -3,206 + 2844: -4,207 + 3464: -1.6800146,190.83821 + - node: + color: '#FFFFFFFF' + id: grasssnowb3 + decals: + 2639: -19,186 + 3462: -1.9300146,190.22884 + 3463: -2.6018896,191.38509 + 4433: -17,175 + - node: + color: '#FFFFFFFF' + id: grasssnowc1 + decals: + 2378: 0,177 + 2379: 0,181 + 2380: -4,183 + 2381: 1,188 + 2624: -2,179 + 2625: -8,180 + 2659: -4,194 + 2716: -3,198 + 2717: -4,199 + 2787: -12,205 + 2788: -8,201 + 2827: -18,199 + 2871: -18,201 + - node: + color: '#FFFFFFFF' + id: grasssnowc2 + decals: + 2854: -27,194 + 2855: -26,196 + 2856: -27,196 + 2857: -23,196 + 4434: -16,176 + - node: + color: '#FFFFFFFF' + id: grasssnowc3 + decals: + 2601: -12,174 + 2658: -3,193 + 2828: -22,202 + 3461: 1.1481104,190.55696 + 4432: -16,175 + - node: + color: '#FFFFFFFF' + id: i + decals: + 953: -20.423735,87.1551 + 954: -20.288757,87.16634 + 955: -20.120039,87.132614 + 956: -19.940071,87.14386 + 957: -21.267334,85.85075 + 958: -21.109861,85.88448 + 959: -20.952389,85.83951 + 960: -20.772423,85.88448 + - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: burnt1 + id: i decals: - 13127: -37,34 - 13128: -37,33 - 13190: -35,26 - 13192: -31,28 - 13193: -36,24 - 13194: -37,22 - 13195: -38,26 - 13236: -38,24 - 13237: -37,24 - 13238: -36,27 - 13239: -35,24 - 13240: -36,24 - 13241: -30,24 - 13242: -31,24 - 13243: -31,24 - 13244: -31,28 - 13245: -31,28 - 13247: -32,26 - 13248: -32,27 - 13249: -36,26 - 13250: -36,26 - 13251: -33,36 - 13252: -33,36 - 13253: -33,36 - 13347: -25,35 - 13348: -26,35 - 13378: -32,28 - 13379: -33,28 - 13380: -33,28 - 13381: -35,27 - 13382: -36,22 - 13383: -36,22 - 13384: -32,19 - 13385: -32,19 - 13386: -32,19 - 13387: -33,21 - 13388: -33,21 - 13390: -33,25 - 13393: -37,28 - 13394: -37,28 - 13407: -28,32 - 13408: -28,31 - 13409: -29,31 - 13410: -28,31 - 13411: -28,32 - 13412: -28,33 + 961: -21.166101,85.81702 + 962: -20.83991,85.77204 + 963: -20.322502,87.188835 + 964: -19.962566,87.12137 - node: - color: '#0000007B' - id: burnt2 + cleanable: True + color: '#D4D4D496' + id: like decals: - 15357: -23,-59 - 15358: -21,-58 - 15359: -21,-56 - 15360: -21,-55 + 5144: 80.333954,21.763168 - node: + cleanable: True + color: '#9FED5896' + id: o + decals: + 4257: -82.54133,61.463577 + - node: + cleanable: True + color: '#FFFFFFFF' + id: prolizard + decals: + 5523: -102,20 + - node: + cleanable: True + color: '#D4D4D496' + id: questionmark + decals: + 5148: 80.427704,18.950668 + 5149: 80.03708,19.075668 + 5150: 79.708954,18.856918 + - node: + color: '#FFFFFF46' + id: questionmark + decals: + 965: -19.748856,85.80578 + - node: + cleanable: True + color: '#FFFFFFFF' + id: safe + decals: + 5423: -110.65491,24.910793 + - node: + cleanable: True + angle: 1.9373154697137058 rad + color: '#79150096' + id: shortline + decals: + 5620: -31.128754,200.42957 + 5621: -31.321384,200.20941 + 5622: -31.018679,200.26445 + 5623: -31.238829,199.90671 + 5624: -31.156273,200.29196 + 5625: -31.45898,200.07181 + 5626: -31.45898,200.07181 + 5627: -31.376423,199.90671 + 5628: -31.45898,199.90671 + 5629: -31.514017,199.90671 + 5630: -31.816725,200.01678 + 5631: -31.816725,200.01678 + 5632: -31.761688,199.85165 + 5633: -31.9268,199.79663 + 5634: -32.064392,199.71408 + 5635: -32.284546,199.604 + 5636: -32.532215,199.54895 + 5637: -30.99116,200.15437 + 5638: -30.908604,199.98926 + 5639: -30.715971,200.0443 + 5640: -30.936123,200.01678 + 5641: -31.211311,199.98926 + 5642: -31.376423,199.93422 + 5643: -31.871761,199.87918 + 5644: -31.073715,200.34702 + 5645: -30.963642,200.37451 + 5646: -30.715971,200.18188 + 5647: -30.908604,200.0443 + 5648: -31.238829,200.07181 + - node: + zIndex: 1 color: '#000000FF' - id: burnt2 + id: shotgun decals: - 15361: -21,-51 - 15362: -27,-50 - - node: - color: '#D4D4D4FF' - id: burnt2 - decals: - 13032: -37,40 - 13033: -37,42 - 13034: -38,42 - 13035: -37,42 - - node: - color: '#FFFFFFFF' - id: burnt2 - decals: - 13474: 60,23 - 13475: 59,24 - 13476: 60,25 - 13477: 60,26 - 13478: 60,27 - 13479: 63,24 - 13480: 65,23 - 13481: 65,24 - 13482: 65,24 - 13483: 67,22 - 13484: 67,25 - 13485: 68,25 - 13486: 66,25 - 13487: 69,23 - 13488: 69,22 - 13489: 67,22 - 13490: 67,26 - 13491: 66,27 - 13492: 64,27 - 13494: 67,24 - 13495: 63,22 - 13496: 60,21 - 13497: 62,21 - 13498: 63,21 - 14847: 6,3 - 14856: 68,-71 - 14857: 67,-72 - 14861: 66,-80 - 14862: 65,-77 - 14863: 65,-75 - 15164: 62,-78 - 15176: 58,-81 - 15177: 59,-81 - 15355: -25,-59 - 15356: -24,-59 - 15621: -60,-17 - 15622: -58,-16 - 15623: -59,-17 - 15624: -60,-16 - 15639: -59,-18 - 15640: -59,-18 - 15641: -60,-19 - 15642: -60,-19 - 15643: -60,-20 - 15644: -58,-20 - 15645: -58,-18 - 15646: -58,-19 - 15647: -56,-19 - 15648: -46,-15 - 15649: -47,-11 - 15650: -46,-12 - 15651: -46,-14 - 15652: -40,-14 - 15653: -40,-13 - 15654: -39,-13 - 15655: -39,-12 - 15656: -41,-12 - 15657: -42,-12 - 15658: -43,-12 - 15659: -43,-12 - 15660: -44,-12 - 15661: -44,-12 - 15662: -43,-11 - 15663: -43,-13 - 15664: -42,-14 - 15665: -42,-14 + 5614: 5.084179,70.683784 - node: cleanable: True angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: burnt2 + color: '#DE3A3A96' + id: shotgun decals: - 13121: -39,32 - 13122: -38,31 - 13123: -38,32 - 13124: -37,32 - 13129: -38,29 - 13164: -37,31 - 13168: -36,34 - 13169: -37,34 - 13170: -36,35 - 13171: -38,35 - 13172: -37,30 - 13174: -35,29 - 13196: -38,26 - 13197: -35,26 - 13198: -36,25 - 13199: -36,27 - 13200: -36,28 - 13201: -34,24 - 13202: -39,23 - 13203: -38,23 - 13204: -38,23 - 13207: -32,26 - 13208: -32,26 - 13254: -31,36 - 13255: -31,36 - 13256: -33,37 - 13257: -32,38 - 13258: -32,38 - 13259: -32,38 - 13261: -32,42 - 13262: -32,42 - 13263: -31,43 - 13264: -31,43 - 13265: -32,44 - 13266: -32,40 - 13267: -33,39 - 13268: -33,39 - 13269: -32,39 - 13270: -32,39 - 13271: -32,31 - 13272: -32,32 - 13273: -33,31 - 13274: -33,30 - 13275: -31,30 - 13298: -33,29 - 13299: -33,29 - 13300: -32,29 - 13301: -31,29 - 13302: -31,29 - 13395: -37,28 - 13396: -37,28 - 13405: -26,32 - 13406: -26,31 - 13420: -23,31 - 13421: -23,31 - 13422: -23,31 - 13423: -23,31 - 13424: -23,33 - 13425: -22,32 - 13426: -22,33 - 13427: -22,33 - 13428: -23,32 - 13429: -23,31 - 13430: -26,32 - 13431: -25,32 - 13432: -26,31 - 13433: -25,31 - 13434: -26,30 - 13435: -25,30 - 13436: -25,31 - 13437: -26,31 - 13438: -26,30 - 13439: -29,31 - 13440: -29,30 - 13441: -28,30 - 13442: -28,31 - 13443: -29,33 - 13444: -29,33 - 13445: -22,32 - 13446: -26,32 - 13447: -26,32 - 13448: -23,35 - 13449: -23,35 - 13450: -23,36 - - node: - color: '#D4D4D4FF' - id: burnt3 - decals: - 13036: -36,43 - 13038: -35,45 - 13039: -38,46 - 13040: -38,45 - 13155: -33,45 - 13156: -33,45 - 13157: -31,44 + 4258: -83.13508,61.182327 - node: + cleanable: True color: '#FFFFFFFF' - id: burnt3 + id: snake decals: - 13499: 61,23 - 13500: 60,23 - 13502: 62,25 - 13504: 61,22 - 13506: 60,25 - 13507: 60,25 - 13508: 60,23 - 13509: 62,22 - 13510: 61,23 - 13511: 59,22 - 13513: 63,22 - 13514: 65,25 - 13515: 65,24 - 13516: 68,24 - 13517: 69,25 - 13518: 70,25 - 13519: 68,24 - 13520: 69,23 - 13521: 69,24 - 13522: 69,24 - 13523: 70,24 - 13524: 68,25 - 13525: 68,25 - 13526: 69,24 - 13527: 70,23 - 13528: 69,22 - 13529: 71,25 - 13530: 70,25 - 13532: 67,27 - 13533: 65,27 - 13534: 63,26 - 13535: 66,25 - 13536: 66,24 - 13537: 65,22 - 13538: 66,21 - 13539: 68,22 - 13540: 67,24 - 13541: 67,25 - 13542: 67,21 - 13543: 68,20 - 13544: 67,20 - 13551: 71,24 - 13552: 71,23 - 13578: 60,21 - 13580: 60,21 - 13581: 59,22 - 13582: 59,21 - 13583: 59,21 - 13584: 60,22 - 13585: 63,25 - 13586: 62,27 - 13587: 62,27 - 13588: 67,22 - 13589: 68,20 - 13590: 69,21 - 13591: 68,22 - 13592: 67,21 - 13593: 69,21 - 14848: 5,2 - 14849: 4,3 - 14850: 3,2 - 14851: 3,1 - 14852: 3,3 - 14853: 3,3 - 14858: 70,-71 - 14859: 70,-74 - 14860: 70,-80 - 14966: 63,-74 - 14967: 63,-72 - 14969: 60,-74 - 14970: 58,-74 - 14971: 56,-72 - 14972: 57,-70 - 14973: 52,-73 - 14974: 53,-71 - 14975: 53,-70 - 14976: 53,-69 - 14977: 53,-72 - 14978: 53,-74 - 14979: 51,-72 - 14980: 50,-72 - 14981: 51,-73 - 14982: 50,-71 - 14983: 50,-70 - 14984: 49,-69 - 14985: 55,-70 - 14986: 56,-72 - 14987: 58,-71 - 14988: 58,-71 - 14989: 55,-73 - 14990: 60,-71 - 14991: 59,-73 - 14992: 59,-70 - 14993: 58,-70 - 14994: 58,-72 - 14995: 58,-73 - 14996: 56,-70 - 14997: 56,-73 - 14998: 60,-69 - 14999: 56,-71 - 15000: 61,-71 - 15001: 59,-72 - 15002: 59,-72 - 15003: 54,-74 - 15004: 54,-71 - 15005: 54,-70 - 15006: 55,-76 - 15007: 53,-69 - 15008: 54,-76 - 15009: 54,-78 - 15010: 54,-79 - 15011: 54,-79 - 15013: 55,-81 - 15014: 56,-79 - 15020: 60,-79 - 15025: 56,-72 - 15026: 61,-74 - 15027: 62,-73 - 15028: 54,-72 - 15029: 57,-73 - 15030: 60,-73 - 15031: 60,-73 - 15032: 51,-70 - 15033: 49,-73 - 15163: 61,-77 - 15178: 58,-81 - 15179: 57,-79 - 15329: -28,-59 - 15330: -22,-59 - 15331: -27,-56 - 15332: -27,-55 - 15333: -23,-53 - 15334: -26,-52 - 15335: -28,-52 - 15336: -29,-50 - 15337: -24,-50 - 15338: -22,-50 - 15339: -21,-52 - 15340: -30,-55 - 15341: -30,-56 - 15629: -61,-16 - 15630: -60,-17 - 15631: -60,-17 - 15632: -59,-16 - 15633: -59,-19 - 15634: -60,-19 - 15635: -60,-18 - 15636: -58,-18 - 15637: -59,-19 - 15638: -59,-18 - 15863: -59,-10 - 15864: -57,-10 - 15865: -55,-9 - 15866: -56,-8 - 15867: -55,-8 - 15868: -55,-9 - 15869: -55,-11 - 15870: -55,-12 - 15871: -57,-12 - 15872: -59,-12 - 15873: -61,-12 - 15874: -61,-12 - 15875: -61,-11 - 15876: -62,-9 - 15877: -61,-8 - 16246: -48,7 - 16247: -48,8 - 16248: -49,7 - 16249: -50,9 - 16250: -52,11 - 16251: -51,10 - 16252: -50,11 - 16253: -55,9 - 16254: -54,10 - 16255: -55,10 - 16256: -57,11 - 16257: -57,10 - 16258: -56,13 - 16259: -56,17 - 16260: -54,18 - 16261: -54,18 - 16262: -53,18 - 16263: -54,17 - 16264: -52,17 - 16265: -48,18 - 16266: -47,16 - 16267: -48,18 - 16268: -47,15 - 16269: -48,14 - 16270: -48,16 - 16271: -48,14 - 16272: -44,12 - 16273: -42,10 - 16274: -41,11 - 16275: -41,9 - 16276: -44,7 - 16277: -45,7 - 16278: -47,7 - 16279: -49,8 - 16280: -49,8 - 16281: -51,9 - 16282: -51,9 - 16321: -49,18 - 16322: -49,18 - 16323: -47,17 - 16324: -47,17 - 16325: -48,18 + 5522: -114,27 + - node: + color: '#2D7230FF' + id: splatter + decals: + 356: 27,19 + - node: + color: '#3128305D' + id: splatter + decals: + 4095: 64.87597,56.083145 + - node: + color: '#3D8C40FF' + id: splatter + decals: + 353: 30,19 + 354: 26,15 + 355: 32,14 + - node: + cleanable: True + color: '#3E0000FF' + id: splatter + decals: + 1543: -40.520287,58.69102 + 1544: -40.115356,59.005867 + - node: + color: '#461000D3' + id: splatter + decals: + 972: -21.593525,85.60338 + 975: -20.300007,86.71657 + - node: + cleanable: True + angle: 1.9198621771937625 rad + color: '#55001252' + id: splatter + decals: + 4098: -40.88162,61.563427 + 4099: -41.241554,61.552185 + 4100: -40.476692,61.563427 + - node: + cleanable: True + angle: 1.9198621771937625 rad + color: '#55001299' + id: splatter + decals: + 4101: -41.027843,61.36103 + 4102: -41.16282,60.416504 + 4103: -40.76914,60.382767 + 4104: -40.971603,59.449486 + - node: + color: '#5E7500FF' + id: splatter + decals: + 114: -36.046883,-20.035028 + 115: -34.062508,-18.347528 + - node: + color: '#611000D3' + id: splatter + decals: + 973: -20.210022,86.784035 + 974: -20.17628,86.53666 + - node: + cleanable: True + color: '#650000FF' + id: splatter + decals: + 1537: -39.744175,59.11831 + 1538: -39.98038,58.612312 + 1539: -40.194096,59.09582 + 1540: -40.295326,58.67978 + 1541: -39.66544,58.612312 + 1542: -40.48654,58.37618 + - node: + color: '#79150096' + id: splatter + decals: + 4302: -43.954918,53.797173 + - node: + cleanable: True + color: '#79150096' + id: splatter + decals: + 5618: -32.642292,204.52988 + 5619: -30.660934,200.48459 + - node: + cleanable: True + angle: 1.9373154697137058 rad + color: '#79150096' + id: splatter + decals: + 5649: -30.74349,200.37451 + 5650: -31.128754,200.12686 + - node: + color: '#801000D3' + id: splatter + decals: + 969: -20.61495,86.71657 + 970: -21.368565,85.64835 + 971: -21.57103,85.85075 + - node: + cleanable: True + color: '#9517108A' + id: splatter + decals: + 4359: -3.052929,72.808846 + 4360: -2.756054,73.08301 + 4361: -3.099804,73.08301 + 4362: -3.209179,73.02051 + - node: + cleanable: True + color: '#A461064E' + id: splatter + decals: + 4336: -71.33859,181.50168 + 4337: -73.82297,180.4548 + 4338: -71.29172,179.42355 + - node: + cleanable: True + color: '#A7FF72FF' + id: splatter + decals: + 4986: -115.35729,52.941154 + - node: + cleanable: True + color: '#B02E26FF' + id: star + decals: + 4467: -46.96315,171.95016 + - node: + cleanable: True + color: '#D4D4D496' + id: stickman + decals: + 5147: 80.06833,18.341293 + - node: + cleanable: True + angle: 1.9198621771937625 rad + color: '#55001252' + id: thinline + decals: + 4097: -39.687008,62.046936 + - node: + cleanable: True + angle: 1.9198621771937625 rad + color: '#55001293' + id: thinline + decals: + 4096: -40.474365,61.765827 + - node: + cleanable: True + angle: 1.6057029118347832 rad + color: '#65000063' + id: thinline + decals: + 1550: -42.83737,58.882175 + - node: + cleanable: True + angle: 1.6057029118347832 rad + color: '#6500007E' + id: thinline + decals: + 1547: -42.747387,59.084576 - node: cleanable: True angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: burnt3 + color: '#65000082' + id: thinline decals: - 13125: -36,31 - 13126: -35,33 - 13131: -37,38 - 13132: -37,39 - 13165: -37,31 - 13209: -35,24 - 13210: -34,24 - 13211: -35,25 - 13212: -35,26 - 13213: -37,26 - 13215: -33,27 - 13216: -33,27 - 13217: -32,27 - 13218: -32,27 - 13219: -36,22 - 13220: -35,19 - 13221: -35,19 - 13222: -33,19 - 13223: -33,19 - 13224: -34,18 - 13225: -34,21 - 13226: -38,18 - 13227: -39,18 - 13228: -39,19 - 13229: -31,18 - 13230: -39,21 - 13231: -35,24 - 13232: -35,25 - 13233: -38,24 - 13234: -38,24 - 13235: -37,24 - 13276: -34,30 - 13277: -33,29 - 13278: -32,29 - 13279: -32,32 - 13280: -33,31 - 13281: -32,30 - 13282: -31,29 - 13283: -31,34 - 13284: -32,34 - 13285: -32,34 - 13286: -33,35 - 13287: -31,37 - 13288: -32,37 - 13289: -32,37 - 13290: -32,36 - 13291: -33,29 - 13292: -32,29 - 13293: -32,29 - 13294: -31,29 - 13295: -31,29 - 13296: -32,31 - 13297: -31,32 - 13334: -27,36 - 13335: -28,36 - 13336: -28,35 - 13337: -28,35 - 13338: -25,35 - 13349: -39,32 - 13350: -37,32 - 13351: -38,32 - 13352: -38,32 - 13353: -39,31 - 13354: -38,31 - 13355: -39,33 - 13356: -39,33 - 13357: -39,33 - 13358: -35,33 - 13359: -35,33 - 13360: -35,33 - 13389: -33,25 - 13397: -37,28 - 13399: -27,35 - 13400: -24,35 - 13401: -23,35 - 13402: -25,32 - 13403: -25,32 - 13404: -25,32 - - node: - color: '#FFFFFFFF' - id: burnt4 - decals: - 14854: 3,2 - 14855: 70,-73 - 14864: 70,-77 - 15074: 63,-70 - 15075: 54,-71 - 15076: 53,-71 - 15165: 62,-81 - 15166: 61,-81 - 15342: -28,-59 - 15343: -22,-59 - 15344: -24,-56 - 15345: -25,-56 - 15346: -24,-54 - 15347: -23,-52 - 15348: -25,-50 - 15349: -28,-51 - 15350: -29,-56 - 15675: -44,-14 - 15676: -43,-13 - 15677: -43,-13 - 15678: -41,-14 - 15679: -39,-12 - 15680: -41,-12 - 15681: -40,-12 - 15682: -39,-12 - 16326: -49,18 - 16327: -48,18 - 16328: -48,18 - 16329: -48,17 - 16330: -47,18 - 16331: -47,17 - 16332: -48,16 - 16333: -48,15 - 16334: -48,13 - 16335: -46,12 - 16336: -53,17 - 16337: -52,19 - 16338: -46,19 - 16339: -46,20 - 16340: -42,21 - 16341: -39,20 - 16342: -29,11 - 16343: -28,11 - 16344: -35,10 - 16345: -38,9 - 16346: -40,9 - 16347: -38,10 - 16348: -40,8 - 16349: -40,7 - 16350: -38,7 - 16351: -40,6 - 16352: -43,6 - 16353: -27,10 - 16354: -26,11 - 16355: -24,10 - 16356: -25,11 - 16357: -25,12 - 16358: -25,11 - 16359: -25,11 - 16360: -25,12 - 16361: -23,11 - 16362: -21,13 - 16363: -19,12 - 16364: -19,12 - 16365: -21,13 - 16366: -22,14 - 16367: -20,14 - 16368: -19,13 - 16369: -20,13 - 16370: -21,15 - 16371: -20,14 - 16372: -18,13 - 16373: -19,12 - 16374: -15,12 - 16375: -17,13 - 16376: -15,12 - 16377: -14,11 - 16378: -14,10 - 16379: -10,12 - 16387: -26,10 + 1552: -41.96003,58.58982 - node: cleanable: True - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: burnt4 + angle: 1.6057029118347832 rad + color: '#6500009D' + id: thinline decals: - 13130: -39,33 - 13134: -38,44 - 13135: -35,34 - 13166: -37,34 - 13167: -36,34 - 13175: -35,29 - 13177: -37,30 - 13178: -35,32 - 13179: -38,37 - 13180: -37,37 - 13181: -36,38 - 13182: -37,40 - 13183: -37,39 - 13184: -37,44 - 13185: -37,42 - 13186: -35,43 - 13187: -38,45 - 13303: -33,29 - 13304: -32,29 - 13305: -31,29 - 13306: -33,30 - 13307: -33,31 - 13308: -32,31 - 13309: -32,30 - 13310: -31,31 - 13311: -33,32 - 13312: -32,34 - 13313: -33,35 - 13314: -33,35 - 13315: -32,34 - 13316: -31,34 - 13317: -31,36 - 13318: -32,38 - 13319: -33,38 - 13320: -33,38 - 13321: -33,40 - 13322: -31,40 - 13323: -31,40 - 13324: -32,40 - 13325: -27,36 - 13326: -28,35 - 13327: -25,35 - 13328: -26,35 - 13329: -26,35 - 13332: -25,35 - 13333: -25,36 - 13339: -25,36 - 13340: -26,36 - 13341: -28,36 - 13342: -29,35 - 13343: -23,36 - 13344: -23,35 - 13345: -22,35 - 13346: -24,36 - 13361: -35,31 - 13362: -35,31 - 13363: -35,31 - 13364: -36,30 - 13365: -37,31 - 13366: -36,32 - 13367: -39,32 - 13368: -39,33 - 13369: -38,34 - 13370: -38,35 - 13371: -36,34 - 13372: -36,35 - 13373: -35,27 - 13374: -35,27 - 13375: -34,27 - 13376: -34,28 - 13377: -32,28 - 13391: -38,28 - 13392: -38,28 - 13413: -28,31 - 13414: -28,32 - 13415: -28,33 - 13416: -29,32 - 13417: -23,30 - 13418: -23,30 - 13419: -23,30 - - node: - color: '#FF0000FF' - id: rune1 - decals: - 15772: 43,-73 - - node: - color: '#640000FF' - id: rune2 - decals: - 13549: 66,25 - 13550: 66,23 - - node: - color: '#640000FF' - id: rune4 - decals: - 13545: 64,23 - 13546: 68,25 - - node: - color: '#640000FF' - id: rune6 - decals: - 13547: 68,23 - 13548: 64,25 - - node: - color: '#501500FF' - id: splatter - decals: - 13158: -32.396484,43.52294 - 13159: -32.88086,44.02294 - 13160: -32.490234,44.007317 - 13161: -31.615234,44.413567 - 13162: -31.53711,42.382317 - 13163: -32.240234,43.101067 + 1549: -41.937534,58.949642 - node: cleanable: True - angle: 0.9773843811168246 rad - color: '#5A130FFF' - id: splatter + angle: 1.6057029118347832 rad + color: '#650000B6' + id: thinline decals: - 13094: -34.9993,39.071335 + 1546: -41.8363,59.129555 - node: cleanable: True - angle: 0.9773843811168246 rad - color: '#5A690FFF' - id: splatter + angle: 1.3962634015954636 rad + color: '#650000BC' + id: thinline decals: - 13093: -36.936794,29.002934 + 1551: -41.026447,58.511112 - node: - color: '#601306FF' - id: splatter + cleanable: True + angle: 1.6057029118347832 rad + color: '#650000C9' + id: thinline decals: - 12976: 31.948952,34.57937 - 12977: 31.167702,34.92312 - 12978: 31.870827,35.188744 - 12979: 31.558327,34.86062 - 12980: 32.183327,35.313744 + 1548: -40.981453,59.01711 - node: - zIndex: 3 - color: '#A10000FF' - id: splatter + cleanable: True + angle: 1.6057029118347832 rad + color: '#650000FF' + id: thinline decals: - 11803: 76.86993,-29.179483 - 11804: 77.26055,-28.773233 + 1545: -40.925213,59.185776 - type: GridAtmosphere version: 2 data: tiles: - -4,-4: - 0: 64989 - -4,-5: - 0: 56671 - -5,-4: - 0: 61135 - -4,-3: - 0: 65309 - -5,-3: - 0: 52975 - -4,-2: - 0: 4383 - -5,-2: - 0: 52701 - -4,-1: - 0: 65521 - -5,-1: - 0: 65532 - -4,0: - 0: 43683 - -3,-4: - 0: 64443 - -3,-3: - 0: 64011 - -3,-1: - 0: 65520 - -3,-5: - 0: 48011 - -3,-2: - 0: 10 - -2,-4: - 0: 15291 - -2,-3: - 0: 65435 - -2,-2: - 0: 207 - 1: 8192 - -2,-1: - 0: 65520 - -2,-5: - 0: 48123 - -1,-4: - 0: 8191 - -1,-3: - 0: 65535 - -1,-2: - 0: 57599 - 1: 4096 - -1,-1: - 0: 65520 - -2,0: - 0: 56792 - -1,-5: - 0: 65535 - -1,0: - 0: 56796 - 0,-4: - 0: 20479 - 0,-3: - 0: 65535 - 0,-2: - 0: 12543 - 1: 16384 + 0,0: + 0: 4095 0,-1: 0: 65520 - 0,0: - 0: 56789 + -1,0: + 0: 143 + 1: 25088 0,1: - 0: 21845 + 1: 3315 -1,1: - 0: 56797 - 0,2: - 0: 21845 - -1,2: - 0: 53244 - 0,3: - 0: 21847 - -1,3: - 0: 56783 - 0,4: - 0: 61909 + 1: 140 1,0: - 0: 63328 + 0: 49 + 1: 57344 1,1: - 0: 2032 - 1,2: - 0: 61567 - 1,3: - 0: 32519 + 1: 59160 1,-1: - 0: 65520 + 0: 4352 + 1: 35018 2,0: - 0: 48051 + 1: 4096 2,1: - 0: 15291 + 1: 6375 + 1,2: + 1: 8 2,2: - 0: 65535 - 2,3: - 0: 48959 - 2,-1: - 0: 65520 - 2,4: - 0: 29683 - 3,0: - 0: 22001 + 1: 2279 3,1: - 0: 7665 + 1: 61200 3,2: - 0: 49147 - 3,3: - 0: 48003 - 3,-1: - 0: 65532 - 4,0: - 0: 56796 + 1: 53040 4,1: - 0: 19932 + 1: 12288 4,2: - 0: 65535 - 4,3: - 0: 65528 - 0,-5: - 0: 65535 - 1,-3: - 0: 65358 + 1: 6351 + 0,-2: + 1: 61455 + -1,-2: + 1: 58447 + 0: 4096 + -1,-1: + 0: 63511 1,-2: - 0: 31 - 1: 8192 - 1,-4: - 0: 61166 - 1,-5: - 0: 61176 - 2,-4: - 0: 65535 - 2,-3: - 0: 64015 - 2,-5: - 0: 65520 + 1: 39055 + 1,-3: + 1: 34944 2,-2: - 0: 10 - 3,-4: - 0: 56797 - 3,-3: - 0: 65485 - 3,-2: - 0: 52431 - 3,-5: - 0: 56797 - 4,-4: - 0: 65521 - 4,-3: - 0: 56785 - 4,-2: - 0: 56797 - 4,-1: - 0: 24029 + 1: 3 + -4,0: + 0: 65335 + -4,-1: + 0: 65535 -5,0: - 0: 65392 + 0: 65421 -4,1: - 0: 43690 + 0: 4383 -5,1: - 0: 56669 - -4,2: - 0: 15274 - -5,2: - 0: 36684 - -4,3: - 0: 57535 - -5,3: - 0: 35771 - -4,4: - 0: 61678 + 0: 15 + 1: 1792 -3,0: - 0: 65520 + 0: 65519 -3,1: + 0: 43695 + -3,-1: 0: 65535 - -3,2: - 0: 8191 - -3,3: - 0: 47423 - -3,4: - 0: 61631 + -2,0: + 0: 64783 -2,1: - 0: 56799 - -2,2: - 0: 3577 - -2,3: - 0: 65311 - -2,4: - 0: 63743 - -1,4: - 0: 64733 - 4,-5: - 0: 56797 - 5,-4: - 0: 65521 - 5,-3: - 0: 65524 - 5,-2: - 0: 65535 - 5,-1: - 0: 56799 - 5,-5: - 0: 32639 - 5,0: - 0: 47901 - 6,-4: - 0: 65526 - 6,-3: - 0: 65521 - 6,-2: - 0: 65535 - 6,-1: + 0: 13 + -2,-1: 0: 63351 - 6,-5: + -4,-2: + 0: 63247 + -5,-2: + 0: 64777 + -5,-1: 0: 65535 - 6,0: - 0: 65319 - 7,-4: - 0: 65520 - 7,-3: - 0: 65456 - 7,-2: - 0: 49151 - 7,-1: - 0: 65521 - 7,-5: - 0: 30583 - 7,0: - 0: 52775 - 8,-4: - 0: 65524 - 8,-3: - 0: 65520 - 8,-2: - 0: 65527 - 8,-1: - 0: 13105 - 2: 34944 + -4,-3: + 0: 32768 + -3,-2: + 0: 65350 + -3,-3: + 0: 16384 + -2,-3: + 0: 4096 + -2,-2: + 0: 30483 + 1: 8 + -1,-3: + 1: 16384 -8,-4: - 0: 30583 - -8,-5: - 0: 28731 + 0: 60943 -9,-4: - 0: 43690 + 0: 56797 -8,-3: - 0: 62583 + 0: 3854 -9,-3: - 0: 58026 + 0: 8188 -8,-2: - 0: 10914 + 0: 64975 -9,-2: - 0: 61152 + 0: 65295 -8,-1: - 0: 65526 + 0: 64909 -9,-1: - 0: 65524 + 0: 65439 -8,0: - 0: 61986 - 1: 128 + 0: 65437 + -8,-5: + 0: 49425 -7,-4: - 0: 64299 + 0: 64783 -7,-3: - 0: 15291 + 0: 4045 -7,-2: - 0: 30578 + 0: 65399 -7,-1: - 0: 65522 + 0: 63263 -7,-5: - 0: 48043 + 0: 56558 + -7,0: + 0: 63255 -6,-4: - 0: 65287 + 0: 63247 -6,-3: - 0: 4095 + 0: 65535 -6,-2: - 0: 20479 + 0: 65391 -6,-1: 0: 65535 -6,-5: - 0: 63351 + 0: 30515 -6,0: - 0: 65530 - -5,-5: - 0: 65535 - -8,-8: - 0: 15355 - -9,-8: - 0: 56828 - -8,-7: - 0: 48059 - -9,-7: - 0: 56797 - -8,-6: - 0: 65464 - -9,-6: - 0: 65521 - -9,-5: - 0: 45311 - -8,-9: - 0: 34956 - -7,-8: - 0: 48059 - -7,-7: - 0: 65535 - -7,-6: - 0: 16383 - -7,-9: - 0: 49151 - -6,-8: - 0: 20479 - -6,-7: - 0: 61438 - -6,-6: - 0: 20207 - -5,-7: - 0: 64989 - -5,-6: - 0: 52703 - -5,-8: - 0: 52974 - -5,-9: - 0: 18279 - -4,-8: - 0: 8191 - -4,-7: - 0: 30583 - -4,-6: - 0: 5623 - 4,-8: - 0: 7633 - 4,-9: - 0: 56829 - 3,-8: - 0: 53247 - 4,-7: - 0: 56799 - 3,-7: - 0: 57309 - 4,-6: - 0: 56793 - 3,-6: - 0: 56797 - 5,-8: - 0: 6000 - 5,-7: - 0: 65399 - 5,-6: - 0: 30579 - 5,-9: - 0: 30591 - 6,-8: - 0: 65522 - 6,-7: - 0: 65391 - 6,-6: - 0: 63103 - 6,-9: - 0: 32631 - 7,-8: - 0: 65512 - 7,-7: - 0: 63246 - 7,-6: - 0: 30503 - 7,-9: - 0: 65535 - 8,-8: - 0: 65464 - 8,-7: - 0: 65419 - 8,-6: - 0: 62719 - 8,-5: - 0: 65535 - 0,-8: - 0: 4095 - 0,-9: - 0: 4505 - -1,-8: - 0: 4095 - 0,-7: - 1: 14 - 0: 13056 - -1,-7: - 0: 60936 - 1: 3 - 0,-6: - 0: 819 - 1: 2048 - -1,-6: - 0: 3822 - 1,-8: - 0: 4095 - 1,-7: - 1: 4369 - 0: 52236 - 1,-6: - 1: 273 - 0: 52428 - 2,-8: - 0: 4095 - 2,-7: - 0: 56781 - 2,-6: - 0: 30033 - 3,-9: - 0: 53695 - -3,-8: - 0: 4095 - -3,-7: - 0: 3067 - -3,-6: - 0: 4095 - -2,-8: - 0: 8191 - -2,-7: - 0: 4369 - 1: 17484 - -2,-6: - 0: 4369 - 1: 3140 - -1,-9: - 0: 52701 + 0: 65519 + -5,-3: + 0: 54545 -9,0: - 1: 416 - 0: 49152 + 0: 65535 -8,1: - 0: 44960 + 0: 24687 -9,1: - 0: 52420 - 1: 256 + 0: 65407 -8,2: - 0: 61688 + 0: 4130 -9,2: - 0: 53708 - -8,3: - 0: 4383 - -9,3: - 0: 4623 - 1: 9472 - -8,4: - 0: 13073 - -7,0: - 0: 4096 - 1: 1056 + 0: 4095 -7,1: - 0: 4369 - 1: 1024 - -7,2: - 0: 64721 - -7,3: - 0: 35983 + 0: 7 -6,1: - 0: 65535 - -6,2: - 0: 40718 - -6,3: - 0: 3533 - -6,4: - 1: 1094 - -5,4: - 0: 64187 - -8,-12: - 0: 64783 - -8,-13: - 0: 7645 - -9,-12: - 0: 57116 - -8,-11: - 0: 17421 - 1: 43520 - -9,-11: - 0: 13 - -8,-10: - 0: 57296 - -9,-10: - 0: 65520 - -7,-12: - 0: 65455 - -7,-11: - 0: 17423 - 1: 43520 - -7,-10: - 0: 65520 - -6,-12: - 0: 4367 - -6,-11: - 0: 49351 - -6,-10: - 0: 53724 - -6,-9: - 0: 3869 - -5,-12: 0: 17487 - -5,-11: - 0: 25716 - -5,-10: - 0: 26215 - -5,-13: - 0: 10922 - -4,-12: - 0: 35007 - -4,-10: - 0: 52224 - -4,-9: - 0: 12 - -3,-12: - 0: 65039 - -3,-11: - 0: 3822 - -3,-10: - 0: 61166 - -3,-9: - 0: 3822 - -2,-12: - 0: 65295 - -2,-11: - 0: 4095 - -2,-10: + -12,0: + 0: 31547 + -12,-1: + 0: 64313 + -13,0: 0: 65535 - -2,-9: - 0: 4095 - -2,-13: - 0: 33655 - -1,-12: - 0: 56783 - -1,-11: - 0: 52703 - -1,-10: - 0: 64989 - -1,-13: - 0: 56783 - 0,-12: - 0: 48059 - 0,-11: - 0: 48063 - 0,-10: - 0: 4593 - 0,-13: - 0: 48029 - 1,-12: - 0: 61695 - 1,-11: + -12,1: + 0: 14335 + -13,1: 0: 65535 - 1,-10: - 0: 49396 - 1,-9: - 0: 3295 - 1,-13: - 0: 65295 - 2,-12: - 0: 60639 - 2,-10: - 0: 57598 - 2,-9: - 0: 3823 - 2,-13: - 0: 64779 - 2,-11: - 0: 24814 - 3,-12: + -12,2: + 0: 65527 + -13,2: + 0: 65535 + -12,3: + 0: 65167 + -13,3: + 0: 32847 + -12,4: + 0: 1 + -11,0: + 0: 65291 + -11,2: + 0: 65520 + -11,3: + 0: 1023 + -11,-1: + 0: 64395 + -10,0: + 0: 47879 + -10,1: + 0: 47658 + -10,2: + 0: 31675 + -10,3: + 0: 63 + -10,-1: 0: 63351 - 3,-11: - 0: 10103 - 3,-10: - 0: 45311 - 3,-13: - 0: 30519 - 4,-12: - 0: 65535 - 4,-11: - 0: 65295 - 4,-10: - 0: 53759 - 4,-13: - 0: 65535 - 5,-12: - 0: 13107 - 1: 34952 - 5,-11: - 0: 45827 + -9,3: + 0: 1 + -12,-5: + 1: 61986 + -12,-4: + 0: 61986 1: 136 - 5,-10: - 0: 28915 - 5,-13: + -13,-4: + 0: 55432 + 1: 34 + -12,-3: + 0: 65535 + -13,-3: + 0: 56780 + -12,-2: + 0: 47903 + -13,-2: + 0: 43020 + -13,-1: + 0: 65523 + -11,-4: + 0: 63726 + -11,-3: + 0: 33023 + -11,-2: + 0: 64392 + -10,-4: + 0: 56575 + -10,-3: + 0: 24017 + -10,-2: + 0: 30583 + -9,-5: + 0: 20479 + -8,-7: + 0: 16128 + -9,-7: + 0: 64512 + -8,-6: + 0: 4113 + -9,-6: + 0: 61695 + -7,-7: + 0: 256 + -7,-6: + 0: 51200 + -6,-6: + 0: 4096 + -12,-6: + 1: 12064 + -13,-6: + 1: 36480 + -13,-5: + 1: 59528 + -11,-6: + 1: 1868 + 0: 51328 + -11,-7: + 1: 52416 + -10,-7: + 1: 4368 + 0: 49152 + -10,-6: + 0: 33791 + -10,-5: + 0: 2184 + -16,-3: + 0: 64768 + -17,-3: + 0: 65319 + -16,-2: + 0: 56797 + -17,-2: + 0: 65535 + -16,-1: + 0: 7644 + -17,-1: + 0: 3312 + -16,0: + 0: 34954 + -16,-4: + 1: 68 + 0: 2176 + -15,-4: + 0: 28932 + 1: 128 + -15,-3: + 0: 4367 + -15,-2: + 0: 53713 + -15,-1: + 0: 53727 + -15,0: + 0: 6621 + -15,-5: + 0: 17408 + 1: 2560 + -14,-3: + 0: 1 + -14,-1: + 0: 65263 + -14,-2: + 0: 24576 + -14,0: + 0: 65535 + -13,4: + 0: 63 + -16,4: + 0: 48 + -15,4: + 0: 3584 + -15,3: + 2: 52224 + 0: 28 + -14,4: + 0: 2032 + -14,3: + 2: 26112 + 1: 1 + 0: 6 + -16,1: + 1: 13056 + 0: 32904 + -17,1: + 1: 49152 + -17,2: + 1: 33086 + -16,2: + 1: 768 + 0: 14472 + -16,3: + 0: 19 + -17,3: + 0: 51336 + 1: 374 + -15,1: + 0: 61713 + -15,2: + 0: 53023 + -14,1: + 0: 24831 + -14,2: + 0: 30479 + -20,4: + 1: 33078 + -21,4: + 1: 27776 + -20,5: + 1: 382 + -21,5: + 1: 51219 + -20,7: + 0: 4096 + -21,7: + 0: 36070 + -20,3: + 1: 51200 + -19,4: + 1: 6120 + -19,3: + 1: 5100 + -18,4: + 1: 3 + -18,3: + 1: 31873 + -17,4: + 0: 4 + -18,2: + 1: 32384 + -20,-4: + 1: 20720 + -21,-4: + 1: 16624 + -20,-3: + 1: 65501 + -21,-3: + 1: 64972 + -20,-2: + 1: 24031 + -21,-2: + 1: 19661 + -20,-1: + 1: 240 + -21,-1: + 1: 240 + -19,-4: + 1: 4336 + -19,-3: + 1: 30481 + 0: 32768 + -19,-2: + 1: 4375 + -19,-1: + 1: 240 + -18,-4: + 1: 112 + 0: 25344 + -18,-3: + 0: 63234 + -18,-2: + 0: 7 + 1: 16384 + -18,-1: + 1: 54 + 0: 192 + -17,-4: + 0: 30496 + 1: 2 + -2,56: + 1: 53721 + -2,55: + 1: 53521 + 0: 8 + -2,57: + 1: 53721 + -2,58: + 1: 53721 + -2,59: + 1: 4569 + -2,60: + 1: 31 + -1,56: + 1: 63743 + -1,57: + 1: 63743 + -1,58: + 1: 63743 + -1,59: + 1: 33023 + -1,55: + 1: 63616 + 0: 99 + 0,56: + 1: 62463 + 0,57: + 1: 62463 + 0,58: + 1: 62463 + 0,59: + 1: 12799 + -1,60: + 1: 143 + -22,-4: + 1: 35016 + -22,-3: + 1: 52360 + -22,-2: + 1: 34956 + -22,-1: + 1: 2248 + -24,2: + 1: 4368 + -25,2: + 1: 240 + -24,3: + 1: 4369 + -25,3: + 1: 52464 + 2: 4096 + -24,4: + 1: 53239 + 0: 12288 + 0,55: + 1: 62256 + 0: 9 + 0,60: + 1: 63 + 1,56: + 1: 28787 + 1,57: + 1: 28787 + 1,58: + 1: 28787 + 1,59: + 1: 115 + 1,55: + 1: 28672 + 2,56: + 1: 4369 + 2,55: + 1: 4369 + 2,57: + 1: 4369 + 2,58: + 1: 4369 + 2,59: + 1: 4369 + 2,60: + 1: 19 + 4,3: + 1: 2279 + 5,2: + 1: 1808 + 0: 59392 + 5,3: + 1: 26384 + 0: 32776 + 5,4: + 0: 25804 + 1: 512 + 6,2: + 0: 49462 + 6,1: + 0: 57344 + 6,3: + 0: 52236 + 6,4: + 0: 52428 + 7,2: + 0: 61440 + 7,3: + 0: 64403 + 7,4: + 0: 65339 + 8,2: + 0: 61454 + 8,3: + 0: 13104 + 5,5: + 0: 36726 + 6,5: + 0: 61452 + 7,5: + 0: 32783 + 6,6: + 0: 8 + 7,6: + 0: 143 + 8,4: + 0: 3 + 8,5: + 0: 61440 + 8,6: + 0: 52991 + 9,5: + 0: 12544 + 9,6: + 0: 65527 + 9,7: + 0: 35022 + 9,3: + 0: 52462 + 9,4: + 0: 136 + 10,4: + 0: 1023 + 10,5: + 0: 61424 + 10,6: + 0: 4100 + 10,7: + 0: 65395 + 10,3: + 0: 62224 + 10,8: + 0: 61439 + 11,4: + 0: 52423 + 11,5: + 0: 30583 + 11,6: + 0: 26183 + 11,7: + 0: 4110 + 11,3: + 0: 4096 + 11,8: + 0: 63347 + 12,4: + 0: 33040 + 12,5: + 0: 65520 + 12,6: + 0: 4087 + 12,7: + 0: 15019 + 8,1: + 0: 61440 + 9,1: + 0: 4096 + 9,2: + 0: 63091 + 12,8: + 0: 3142 + 13,4: + 0: 61696 + 13,5: + 0: 65520 + 13,6: + 0: 8191 + 13,7: + 0: 8191 + 13,8: + 0: 32643 + 14,6: + 0: 2995 + 14,7: + 0: 35578 + 14,8: + 0: 2047 + 14,5: + 0: 2252 + 14,4: + 0: 32768 + 15,4: + 0: 63488 + 1: 68 + 15,5: + 0: 9087 + 15,6: + 0: 65399 + 15,7: + 0: 5119 + 15,8: + 0: 1 + 15,3: + 1: 17476 + 16,4: + 0: 6142 + 16,5: + 0: 52429 + 16,6: + 0: 45056 + 16,7: + 0: 4095 + 10,9: + 0: 50926 + 10,11: + 0: 60620 + 10,12: + 0: 61166 + 10,10: + 0: 52428 + 11,9: + 0: 61459 + 11,10: + 0: 65535 + 11,11: + 0: 57599 + 11,12: + 0: 28390 + 12,10: + 0: 48057 + 12,11: + 0: 61683 + 12,12: + 0: 65535 + 12,9: + 0: 34816 + 13,9: + 0: 65286 + 13,10: + 0: 65535 + 13,11: + 0: 61684 + 13,12: + 0: 65535 + 14,11: + 0: 26230 + 14,9: + 0: 61166 + 14,10: + 0: 25314 + 14,12: + 0: 30310 + 15,9: + 0: 61184 + 15,10: + 0: 61646 + 15,11: + 0: 4095 + 15,12: + 0: 61567 + 16,8: + 0: 65535 + 16,9: + 0: 65295 + 16,10: + 0: 61135 + 16,11: + 0: 61390 + 12,13: + 0: 47359 + 11,13: + 0: 57582 + 12,14: + 0: 955 + 11,14: + 0: 36590 + 12,15: + 0: 4095 + 11,15: + 0: 4095 + 12,16: + 1: 7 + 13,13: + 0: 65535 + 13,14: + 0: 29439 + 13,15: + 0: 30583 + 13,16: + 0: 52991 + 14,13: + 0: 30576 + 14,14: + 0: 60416 + 14,15: + 0: 3822 + 15,13: + 0: 32519 + 15,14: + 0: 63232 + 15,15: + 0: 4095 + 16,12: + 0: 65535 + 16,13: + 0: 65535 + 8,15: + 0: 63931 + 7,16: + 1: 8 + 9,15: + 0: 30711 + 9,16: + 1: 8 + 10,16: + 0: 17493 + 10,15: + 0: 20479 + 11,16: + 1: 15 + 17,8: + 0: 65533 + 17,9: + 0: 65485 + 17,10: + 0: 59631 + 17,11: + 0: 65422 + 17,12: + 0: 51711 + 17,7: + 0: 36349 + 18,8: + 0: 56785 + 18,9: + 0: 65309 + 18,10: + 0: 47295 + 18,11: + 0: 65419 + 18,12: + 0: 40191 + 18,7: + 0: 36349 + 19,8: + 0: 65520 + 19,9: + 0: 65295 + 19,10: + 0: 48031 + 19,11: + 0: 16283 + 19,7: + 0: 32767 + 19,12: + 0: 63359 + 20,8: + 0: 48056 + 20,9: + 0: 65435 + 20,10: + 0: 28799 + 20,11: + 0: 2039 + 16,3: + 0: 32768 + 1: 254 + 17,5: + 0: 65535 + 17,6: + 0: 56460 + 17,3: + 0: 61440 + 1: 3839 + 17,4: + 0: 20196 + 18,5: + 0: 4350 + 18,6: + 0: 53505 + 18,3: + 0: 12288 + 1: 255 + 18,4: + 0: 61152 + 19,4: + 0: 13104 + 19,5: + 0: 3831 + 19,6: + 0: 65024 + 19,3: + 1: 17492 + 20,4: + 0: 13056 + 20,5: + 0: 33043 + 20,6: + 0: 65529 + 20,7: + 0: 53247 + 16,1: + 1: 61455 + 15,1: + 1: 17486 + 16,2: + 1: 61694 + 17,1: + 1: 62703 + 17,2: + 1: 65279 + 17,0: + 1: 57344 + 18,1: + 1: 61455 + 18,2: + 1: 61695 + 19,1: + 1: 21583 + 19,2: + 1: 21588 + 19,0: + 1: 16384 + 16,14: + 0: 3814 + 16,15: + 0: 1638 + 17,14: + 0: 65528 + 17,15: + 0: 65535 + 17,13: + 0: 61166 + 17,16: + 0: 65532 + 18,13: + 0: 48059 + 18,14: + 0: 32752 + 18,15: + 0: 30583 + 18,16: + 0: 65521 + 19,13: + 0: 32631 + 19,14: + 0: 65523 + 19,15: + 0: 65535 + 20,12: + 0: 28791 + 20,13: + 0: 30471 + 20,14: + 0: 6000 + 20,15: + 0: 60941 + 8,14: + 0: 45056 + 7,14: + 1: 2048 + 9,14: + 0: 30848 + 10,14: + 0: 439 + 10,13: + 0: 32767 + 21,5: + 0: 47372 + 21,6: + 0: 65339 + 21,7: + 0: 65535 + 21,4: + 0: 61152 + 21,8: + 0: 36079 + 21,3: + 2: 25600 + 22,4: + 0: 65521 + 22,5: + 0: 45847 + 22,6: + 0: 65435 + 22,7: + 0: 65535 + 22,3: + 0: 4352 + 2: 50176 + 1: 8 + 22,8: + 0: 65535 + 23,5: + 0: 65506 + 23,6: + 0: 4407 + 23,7: + 0: 4401 + 23,8: + 0: 4369 + 23,4: + 1: 192 + 24,4: + 1: 273 + 0: 51328 + 24,5: + 0: 8287 + 14,16: + 0: 65520 + 15,16: + 0: 65520 + 16,16: + 0: 61408 + 16,17: + 0: 206 + 1: 256 + 17,17: + 0: 255 + 18,17: + 0: 255 + 19,16: + 0: 49072 + 19,17: + 0: 19 + 1: 1024 + 20,16: + 0: 65524 + 21,16: + 0: 14334 + 21,15: + 0: 58593 + 22,16: + 0: 1 + 22,15: + 0: 4336 + 21,12: + 0: 64411 + 21,13: + 0: 48043 + 21,14: + 0: 48011 + 21,11: + 0: 48057 + 22,12: + 0: 30719 + 22,13: + 0: 30711 + 22,14: + 0: 65527 + 22,11: + 0: 63351 + 23,12: + 0: 60671 + 23,13: + 0: 61439 + 23,14: + 0: 65532 + 23,15: + 0: 51440 + 23,11: + 0: 61440 + 24,12: + 0: 13311 + 24,13: + 0: 16383 + 24,14: + 0: 65523 + 24,15: + 0: 880 + 21,9: + 0: 65288 + 21,10: + 0: 48031 + 22,9: + 0: 14799 + 22,10: + 0: 30583 + 23,9: + 0: 13105 + 23,10: + 0: 3831 + 24,10: + 0: 63248 + 24,11: + 0: 61448 + 25,12: + 0: 255 + 1: 61440 + 25,13: + 0: 16 + 1: 61986 + 25,14: + 0: 65520 + 25,11: + 0: 63619 + 25,15: + 0: 36044 + 25,16: + 0: 2186 + 26,12: + 0: 127 + 1: 61440 + 26,13: + 1: 63624 + 26,14: + 0: 65520 + 26,15: + 0: 45044 + 26,11: + 0: 65530 + 26,16: + 0: 546 + 1: 2048 + 27,12: + 0: 255 + 1: 61440 + 27,13: + 1: 61440 + 27,14: + 0: 65520 + 27,15: + 0: 49140 + 27,11: + 0: 65527 + 28,12: + 0: 239 + 1: 61440 + 28,13: + 1: 61986 + 28,14: + 0: 65520 + 28,15: + 0: 10102 + 27,16: + 0: 2184 + 1: 784 + 25,10: + 0: 4096 + 26,10: + 0: 41506 + 27,10: + 0: 28672 + 28,10: + 0: 4369 + 28,11: + 0: 63345 + 29,11: + 0: 4096 + 29,12: + 0: 31 + 1: 13312 + 28,16: + 0: 546 + 29,13: + 1: 12288 + 29,14: + 0: 7952 + 1: 4 + 20,3: + 0: 1024 + 20,2: + 0: 2048 + 21,2: + 0: 4096 + 1: 224 + 22,2: + 1: 4592 + 23,2: + 1: 50736 + 23,3: + 1: 8 + 24,3: + 1: 4369 + 15,0: + 1: 16384 + 15,2: + 1: 17476 + 0,16: + 0: 48056 + 0,15: + 0: 15291 + -1,16: + 0: 48115 + 0,17: + 0: 62139 + -1,17: + 0: 61627 + 0,18: + 0: 39864 + 0,19: + 0: 52701 + -1,18: + 0: 63344 + -1,19: + 0: 4095 + 0,20: + 0: 19933 + 1,16: + 0: 65535 + 1,17: + 0: 65279 + 1,18: + 0: 65248 + 1,19: + 0: 24814 + 1,20: + 0: 24679 + 2,16: + 0: 13072 + 2,17: + 0: 13107 + 2,18: + 0: 40400 + 2,19: + 0: 51217 + 2,20: + 0: 19711 + 3,18: + 0: 4352 + 3,19: + 0: 275 + -4,16: + 0: 65399 + -4,15: + 0: 63232 + 1: 7 + -5,16: + 0: 65516 + -4,17: + 0: 30591 + -5,17: + 0: 61439 + -4,18: + 0: 65521 + -5,18: + 0: 65528 + -4,19: + 0: 56785 + -5,19: + 0: 65535 + -4,20: + 0: 57308 + -3,16: + 0: 65520 + -3,17: + 0: 65279 + -3,18: + 0: 65535 + -3,19: + 0: 30576 + -3,15: + 3: 65520 + -3,20: + 0: 32631 + -2,16: + 0: 65534 + -2,17: + 0: 61951 + -2,18: + 0: 30583 + -2,19: + 0: 30711 + -2,20: + 0: 10231 + -2,15: + 0: 61166 + -1,15: + 0: 65535 + -1,20: + 0: 4095 + 0,21: + 0: 17749 + -1,21: + 0: 4095 + 0,22: + 0: 15 + -1,22: + 0: 15 + 1,21: + 0: 4215 + 1: 16384 + 1,22: + 0: 3 + 1: 92 + 2,21: + 0: 4 + -8,16: + 0: 65529 + -8,15: + 0: 65473 + -9,16: + 0: 28256 + -8,17: + 0: 65535 + -9,17: + 0: 25588 + -8,18: + 0: 28912 + -9,18: + 0: 53716 + -8,19: + 0: 30583 + -9,19: + 0: 57343 + -7,16: + 0: 65535 + -7,17: + 0: 65535 + -7,18: + 0: 48048 + -7,19: + 0: 48047 + -7,15: + 0: 65520 + -7,20: + 0: 48059 + -6,16: + 0: 65528 + -6,17: + 0: 65535 + -6,18: + 0: 65527 + -6,19: + 0: 48127 + -6,15: + 0: 65492 + -6,20: + 0: 49075 + -5,15: + 0: 65297 + 1: 12 + -5,20: + 0: 65528 + -4,21: + 0: 57101 + -5,21: + 0: 56719 + -4,22: + 0: 116 + 1: 4096 + -5,22: + 0: 30704 + -4,23: + 1: 4096 + -3,21: + 0: 30471 + -3,22: + 0: 15 + -2,21: + 0: 12287 + -2,22: + 0: 15 + -8,20: + 0: 28912 + -9,20: + 0: 53745 + -8,21: + 0: 30583 + -9,21: + 0: 57343 + -8,22: + 0: 65520 + -9,22: + 0: 65521 + -8,23: + 0: 240 + -9,23: + 0: 5104 + -8,24: + 0: 52697 + -7,21: + 0: 48057 + -7,22: + 0: 65529 + -7,23: + 0: 3568 + -7,24: + 0: 65527 + -6,21: + 0: 47931 + -6,22: + 0: 65523 + -6,23: + 0: 59184 + -5,23: + 0: 30711 + -5,24: + 0: 65527 + -4,24: + 0: 61680 + -4,25: + 0: 9280 + -9,24: + 0: 15352 + -8,25: + 0: 65534 + -9,25: + 0: 51251 + -8,26: + 0: 255 + -9,26: + 0: 37087 + -7,25: + 0: 14335 + -7,26: + 0: 9 + -6,25: + 0: 5702 + 1: 16384 + -6,26: + 1: 7 + -6,24: + 0: 26112 + -5,25: + 0: 30583 + -5,26: + 0: 546 + -3,14: + 0: 64640 + -2,14: + 0: 57584 + -1,14: + 0: 12400 + 0,14: + 0: 256 + -8,14: + 0: 4352 + -9,14: + 0: 56784 + -9,15: + 0: 57229 + -6,14: + 0: 16384 + -5,14: + 0: 4096 + -12,14: + 0: 30591 + -13,13: + 0: 63328 + -13,14: + 0: 8879 + -12,15: + 0: 48112 + -13,15: + 0: 26342 + -12,16: + 0: 65291 + -12,12: + 0: 44160 + -12,13: + 0: 51200 + -11,12: + 0: 30718 + -11,13: + 0: 39219 + -11,14: + 0: 65504 + -11,15: + 0: 65294 + -11,11: + 0: 32768 + -10,12: + 0: 3 + -10,13: + 0: 65526 + -10,14: + 0: 65520 + -10,15: + 0: 48911 + -10,11: + 0: 65152 + -10,16: + 0: 48056 + -9,12: + 0: 25668 + -9,13: + 0: 546 + -12,17: + 0: 14127 + -12,18: + 0: 56537 + -13,18: + 0: 61682 + -12,19: + 0: 57343 + -13,19: + 0: 65535 + -12,20: + 0: 56572 + -11,17: + 0: 64750 + -11,18: + 0: 65535 + -11,19: + 0: 56659 + -11,16: + 0: 61152 + -11,20: + 0: 55801 + -10,17: + 0: 29115 + -10,18: + 0: 65535 + -10,19: + 0: 56798 + -10,20: + 0: 56572 + -16,14: + 0: 15872 + -16,15: + 0: 61160 + -17,15: + 0: 41089 + -16,16: + 0: 61166 + -15,14: + 0: 36656 + -15,15: + 0: 65523 + -15,16: + 0: 65535 + -14,14: + 0: 65535 + -14,15: + 0: 61408 + -14,13: + 0: 60416 + -14,16: + 0: 28206 + -13,16: + 0: 30566 + -13,20: + 0: 61680 + -12,21: + 0: 57343 + -13,21: + 0: 65535 + -12,22: + 0: 65532 + -13,22: + 0: 65520 + -12,23: + 0: 30576 + -13,23: + 0: 35504 + -12,24: + 0: 65287 + -11,21: + 0: 62429 + -11,22: + 0: 65535 + -11,23: + 0: 56719 + -10,21: + 0: 65245 + -10,22: + 0: 65535 + -10,23: + 0: 56583 + -11,24: + 0: 65256 + -17,16: + 0: 61408 + -16,17: + 0: 61166 + -17,17: + 0: 58606 + -16,18: + 0: 65528 + -17,18: + 0: 65534 + -16,19: + 0: 65520 + -17,19: + 0: 61152 + -16,20: + 0: 65533 + -15,17: + 0: 65535 + -15,18: + 0: 65523 + -15,19: + 0: 61166 + -15,20: + 0: 65534 + -14,17: + 0: 26230 + -14,18: + 0: 30432 + -14,19: + 0: 21606 + -14,20: + 0: 25813 + -13,17: + 0: 30577 + -17,20: + 0: 61422 + -16,21: + 0: 65533 + -17,21: + 0: 65262 + -16,22: + 0: 65520 + -17,22: + 0: 65216 + -16,23: + 0: 32624 + -17,23: + 0: 65535 + -16,24: + 0: 40883 + -15,22: + 0: 65534 + -15,23: + 0: 30576 + -15,21: + 0: 61166 + -14,22: + 0: 65524 + -14,23: + 0: 480 + -14,21: + 0: 26214 + -13,24: + 0: 34824 + -20,15: + 0: 28928 + -20,16: + 0: 32910 + -20,17: + 0: 65286 + -21,17: + 0: 55296 + -21,18: + 0: 56541 + -20,18: + 0: 61152 + -21,19: + 0: 56829 + -20,19: + 0: 61408 + -20,20: + 0: 61166 + -19,16: + 0: 52465 + -19,17: + 0: 65356 + -19,18: + 0: 65520 + -19,19: + 0: 65520 + -19,20: + 0: 65535 + -19,15: + 0: 32768 + -18,17: + 0: 65294 + -18,18: + 0: 61412 + -18,19: + 0: 65524 + -18,15: + 0: 5760 + -18,16: + 0: 61152 + -21,20: + 0: 64440 + -20,21: + 0: 3822 + -21,21: + 0: 48043 + -20,22: + 0: 57583 + -21,22: + 0: 48127 + -20,23: + 0: 61166 + -21,23: + 0: 63944 + -20,24: + 0: 65486 + -19,21: + 0: 4095 + -19,22: + 0: 28799 + -19,23: + 0: 65399 + -19,24: + 0: 56591 + -18,22: + 0: 63271 + -18,23: + 0: 62215 + -18,20: + 0: 61152 + -18,21: + 0: 58592 + -18,24: + 0: 63883 + -17,24: + 0: 65399 + -24,18: + 0: 3315 + -25,17: + 0: 62208 + 1: 2 + -25,18: + 0: 12 + -24,17: + 1: 36040 + -24,16: + 1: 32768 + -23,16: + 1: 4918 + -23,17: + 1: 1 + -23,18: + 0: 62208 + -23,19: + 1: 4368 + 0: 34952 + -23,20: + 1: 21841 + -23,15: + 1: 27840 + -22,18: + 0: 63692 + 1: 17 + -22,19: + 0: 30719 + -22,17: + 0: 49152 + 1: 204 + -22,16: + 1: 34816 + -21,16: + 1: 4403 + -21,15: + 0: 36465 + -24,22: + 0: 49040 + -25,22: + 0: 65504 + 1: 4 + -24,23: + 0: 61065 + -25,23: + 0: 46 + -24,24: + 0: 57343 + -24,21: + 1: 3072 + -23,21: + 1: 4885 + 0: 43008 + -23,22: + 0: 35771 + -23,23: + 0: 63264 + -23,24: + 0: 65407 + -22,20: + 0: 65520 + -22,21: + 0: 65519 + -22,22: + 0: 65535 + -22,23: + 0: 65280 + -22,24: + 0: 5135 + 3: 51200 + -21,24: + 0: 60685 + 3: 4096 + -12,25: + 0: 37375 + -13,25: + 0: 32908 + -12,26: + 0: 51421 + -13,26: + 0: 32904 + -12,27: + 0: 141 + -11,25: + 0: 64750 + -11,26: + 0: 65535 + -11,27: + 0: 3327 + -10,24: + 0: 64432 + -10,25: + 0: 61883 + -10,26: + 0: 65535 + -10,27: + 0: 511 + -9,27: + 0: 5 + -16,25: + 0: 57297 + -17,25: + 0: 52991 + -16,26: + 0: 40881 + -17,26: + 0: 40924 + -16,27: + 0: 62449 + -17,27: + 0: 65528 + -16,28: + 0: 1011 + -15,24: + 0: 13104 + -15,25: + 0: 4368 + -15,26: + 0: 13104 + -15,28: + 0: 17476 + -20,25: + 0: 64719 + -21,25: + 0: 49165 + -20,26: + 0: 65535 + -21,26: + 0: 36044 + -19,25: + 0: 61453 + -19,26: + 0: 32767 + -19,27: + 0: 52992 + -19,28: + 0: 62223 + -18,25: + 0: 13 + -18,27: + 0: 65248 + -18,26: + 0: 52416 + -18,28: + 0: 64526 + -17,28: + 0: 14799 + -25,24: + 0: 64896 + -25,25: + 0: 13 + -24,26: + 0: 2 + -24,25: + 0: 32780 + -23,25: + 0: 141 + -22,25: + 0: 21 + 3: 8 + -22,26: + 0: 2241 + -21,27: + 0: 16 + -21,28: + 0: 140 + -16,29: + 0: 61297 + -17,29: + 0: 65535 + -16,30: + 0: 36046 + -17,30: + 0: 65535 + -16,31: + 0: 12041 + -17,31: + 0: 61199 + -16,32: + 0: 65534 + -15,29: + 0: 13092 + -15,30: + 0: 13107 + -15,31: + 0: 1811 + 1: 12 + -15,32: + 0: 32631 + -14,31: + 1: 34320 + -14,32: 0: 13107 1: 34952 - 6,-11: + -20,12: + 0: 31 + -20,11: + 0: 16383 + -21,12: + 0: 35036 + -21,13: + 0: 8 + -19,12: + 0: 7 + -17,14: + 0: 8192 + -24,12: + 0: 48015 + -24,11: + 0: 65532 + -24,13: + 0: 61945 + -25,13: + 0: 36593 + -24,14: + 0: 142 + 1: 13056 + -25,14: + 1: 192 + 0: 48 + -24,15: + 1: 17 + -25,15: + 1: 52360 + -23,12: + 0: 24001 + -23,13: + 0: 21521 + -23,14: + 0: 36465 + -23,11: + 0: 56796 + -22,12: + 0: 112 + -22,14: + 0: 28928 + -22,11: + 0: 65520 + -22,15: + 0: 142 + -21,11: + 0: 65528 + -28,16: + 0: 1662 + -29,16: + 0: 61680 + -28,15: + 0: 61135 + -27,16: + 0: 62237 + -27,15: + 0: 61697 + -27,17: + 0: 12 + 1: 32768 + -26,16: + 0: 3 + -26,17: + 0: 3315 + -27,18: + 1: 34952 + -27,19: + 1: 8 + -26,15: + 0: 14062 + -25,16: + 1: 13158 + -9,11: + 0: 35123 + -9,10: + 0: 27776 + -8,10: + 0: 8755 + -8,11: + 0: 17 + -36,4: + 0: 51440 + 1: 1792 + -36,3: + 0: 4096 + -37,4: + 0: 228 + 1: 34816 + -36,5: + 1: 36744 + -37,5: + 1: 36744 + 0: 4096 + -36,6: + 0: 8224 + 1: 35976 + -37,6: + 0: 2080 + 1: 776 + -36,7: + 0: 51201 + 1: 1928 + -37,7: + 1: 36480 + -36,8: + 0: 12 + -35,4: + 0: 65520 + -35,5: + 0: 61183 + 1: 256 + -35,6: + 1: 256 + 0: 61166 + -35,7: + 0: 65535 + -35,8: + 0: 52991 + -34,4: + 0: 61696 + -34,5: + 0: 23839 + -34,6: + 0: 21845 + -34,7: + 0: 7509 + -34,8: + 0: 511 + -33,4: + 0: 28872 + -33,5: + 0: 52687 + -33,6: + 0: 65535 + -33,7: + 0: 52687 + -33,8: + 0: 127 + -33,3: + 0: 52479 + -32,4: + 0: 61439 + -32,6: + 0: 65533 + -32,7: + 0: 36045 + -24,8: + 0: 65392 + -24,9: + 0: 58111 + -25,8: + 0: 63232 + -25,9: + 0: 63351 + -24,10: + 0: 61438 + -25,10: + 0: 65535 + -25,11: + 0: 65399 + -23,8: + 0: 61696 + -23,9: + 0: 64733 + -23,10: + 0: 65535 + -23,7: + 0: 61439 + -22,8: + 0: 62114 + -22,9: + 0: 57599 + -22,10: + 0: 61439 + -22,7: + 0: 9079 + -21,8: + 0: 64720 + -21,9: + 0: 47359 + -21,10: + 0: 48059 + -20,8: + 0: 16144 + -20,9: + 0: 16383 + -20,10: + 0: 16191 + -25,4: + 1: 3276 + 0: 49152 + 2: 273 + -24,5: + 0: 65535 + -25,5: + 0: 65535 + -24,6: + 0: 65535 + -25,6: + 0: 65535 + -24,7: + 0: 4095 + -25,7: + 0: 239 + -23,4: + 1: 65328 + -23,5: + 0: 32625 + 1: 142 + -23,6: + 0: 65527 + -22,4: + 1: 12288 + -22,5: + 1: 3839 + -22,6: + 0: 12544 + -21,6: + 1: 54 + -20,28: + 0: 53104 + -20,29: + 0: 8 + -19,29: + 0: 207 + -18,29: + 0: 61439 + -18,30: + 0: 2188 + -18,31: + 1: 17536 + -23,31: + 0: 34816 + -23,32: + 0: 8 + -22,31: + 0: 4096 + -22,32: + 0: 10611 + -28,24: + 0: 65295 + -28,23: + 0: 65535 + -29,24: + 0: 64298 + -28,25: + 0: 271 + -29,25: + 0: 47883 + -27,24: + 0: 65343 + -27,25: + 0: 43567 + -27,23: + 0: 65535 + -27,26: + 0: 2 + -26,24: + 0: 65287 + -26,25: + 0: 65311 + -26,23: + 0: 30583 + -26,26: + 0: 96 + -25,26: + 0: 128 + -28,21: + 1: 63761 + -28,22: + 1: 249 + 0: 61440 + -29,21: + 1: 49152 + -29,22: + 1: 192 + 0: 12288 + -29,23: + 0: 48059 + -27,21: + 1: 62528 + -27,22: + 1: 244 + 0: 61440 + -26,21: + 1: 29218 + -26,22: + 1: 2290 + 0: 12288 + -26,20: + 1: 8192 + -25,21: + 1: 17408 + -8,9: + 0: 8192 + -28,11: + 0: 65518 + -28,12: + 0: 65262 + -29,12: + 0: 14335 + -28,13: + 0: 65535 + -29,13: + 0: 48057 + -28,14: + 0: 65535 + -29,14: + 0: 65419 + -29,15: + 0: 65535 + -27,12: + 0: 56797 + -27,13: + 0: 65393 + -27,14: + 0: 65535 + -27,11: + 0: 65497 + -26,12: + 0: 65535 + -26,14: + 0: 50645 + -26,11: + 0: 65521 + -26,13: + 0: 50368 + -25,12: + 0: 30583 + -24,35: + 0: 49400 + -24,36: + 0: 45279 + -23,35: + 0: 61459 + -23,36: + 0: 4351 + 1: 49152 + -22,35: + 0: 61166 + -22,36: + 0: 28911 + -22,33: + 0: 35938 + -22,34: + 0: 3072 + -21,32: + 0: 12288 + -21,33: + 0: 6342 + -21,34: + 0: 4081 + -21,35: + 0: 15291 + -21,36: + 0: 61691 + -20,33: + 0: 64256 + -20,34: + 0: 53247 + -20,35: + 0: 24021 + -20,36: + 0: 56575 + -19,33: + 0: 65472 + -19,34: + 0: 16383 + -19,36: + 2: 1542 + -18,33: + 0: 63347 + -18,34: + 0: 65535 + -18,35: + 0: 142 + -18,36: + 0: 61439 + -18,32: + 1: 2 + 0: 34944 + -17,32: + 0: 65520 + -17,33: + 0: 4064 + -17,34: + 0: 65535 + -17,35: + 0: 26495 + 1: 34944 + -16,33: + 0: 3886 + -16,34: + 0: 279 + 1: 128 + -17,36: + 1: 51336 + 0: 4368 + -20,37: + 0: 53709 + -21,37: + 0: 65295 + -20,38: + 0: 56781 + -21,38: + 0: 56719 + -20,39: + 0: 65528 + -21,39: + 0: 64969 + -20,40: + 0: 64435 + -19,37: + 0: 55535 + -19,38: + 0: 56797 + -19,39: + 0: 65532 + -19,40: + 0: 56796 + -18,37: + 0: 61679 + -18,38: + 0: 65535 + -18,39: + 0: 65535 + -18,40: + 0: 65535 + -17,37: + 0: 61457 + 1: 200 + -17,38: + 0: 57599 + -17,39: + 0: 61439 + -16,37: + 1: 112 + 0: 61440 + -16,38: + 0: 45311 + -16,39: + 0: 48059 + -25,36: + 0: 57599 + -24,37: + 0: 65339 + -25,37: + 0: 61167 + -24,38: + 0: 60943 + -25,38: + 0: 17646 + -24,39: + 0: 26126 + -25,39: + 0: 65092 + -24,40: + 0: 43558 + -23,37: + 0: 65297 + 1: 12 + -23,38: + 0: 64271 + -23,39: + 0: 65419 + -23,40: + 0: 65311 + -22,37: + 0: 65351 + -22,38: + 0: 64271 + -22,39: + 0: 65339 + -22,40: + 0: 65295 + -21,40: + 0: 64397 + -15,37: + 0: 61712 + 1: 192 + -15,38: + 0: 53503 + -15,39: + 0: 56797 + -16,40: + 0: 36856 + -15,40: + 0: 21980 + -14,37: 1: 240 0: 61440 - 6,-10: - 0: 29431 - 6,-12: - 3: 224 - 4: 57344 - 6,-13: - 0: 57344 - 1: 255 - 7,-11: - 1: 50 - 0: 63496 - 7,-10: - 0: 61690 - 7,-12: - 1: 8738 - 0: 34952 - 7,-13: - 1: 8755 - 0: 34952 - 8,-12: - 0: 7647 - 8,-11: - 0: 56797 - 8,-10: - 0: 61661 - 8,-9: - 0: 48127 - 5,1: - 0: 7963 - 5,2: - 0: 40959 - 5,3: - 0: 56796 - 4,4: - 0: 40184 - 6,1: - 0: 3919 - 6,2: - 0: 20479 - 6,3: - 0: 56797 - 6,4: - 0: 65524 - 7,1: - 0: 1997 - 7,2: - 0: 61438 - 7,3: + -14,38: + 0: 61183 + -14,39: 0: 61166 - 7,4: - 0: 61030 - 8,0: - 0: 64304 - 2: 8 - 8,1: - 0: 29371 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 0,5: - 0: 59135 - -1,5: - 0: 57599 - 0,6: - 0: 65326 - -1,6: - 0: 65358 - 0,7: - 0: 65359 - -1,7: - 0: 61070 - 0,8: - 0: 28927 - 1,4: - 0: 61680 - 1,5: - 0: 30207 - 1,6: - 0: 65367 - 1,7: - 0: 64911 - 1,8: - 0: 53469 - 2,5: - 0: 28799 - 2,6: - 0: 63271 - 2,7: - 0: 63239 - 2,8: - 0: 47415 - 3,4: - 0: 61680 - 3,5: - 0: 65535 - 3,6: - 0: 65520 - 3,7: - 0: 65295 - 3,8: - 0: 65535 - 4,5: - 0: 30495 - 4,6: - 0: 65286 - 4,7: - 0: 30479 - -4,5: - 0: 57583 - -5,5: - 0: 65359 - -4,6: - 0: 65102 - -5,6: - 0: 61007 - -5,7: - 0: 12 - 1: 8976 - -4,7: - 0: 65512 - -4,8: - 0: 30719 - -3,5: - 0: 57599 - -3,6: - 0: 65358 - -3,7: - 0: 56796 - -3,8: - 0: 64733 - -2,5: - 0: 57599 - -2,6: - 0: 65358 - -2,7: - 0: 61408 - -2,8: - 0: 65038 - -1,8: - 0: 57582 - 4,8: - 0: 65407 - 5,4: - 0: 56784 - 5,5: - 0: 11193 - 5,6: - 0: 55759 - 5,7: - 0: 65485 - 5,8: - 0: 65039 - 6,5: - 0: 4095 - 6,6: - 0: 53503 - 6,7: - 0: 57567 - 6,8: - 0: 64271 - 7,6: - 0: 20208 - 7,5: - 0: 61156 - 7,7: - 0: 78 + -14,40: + 0: 4174 + -13,37: + 1: 560 + -13,38: + 0: 7 1: 8704 - 7,8: + -13,39: + 0: 1792 1: 2 - 0: 64256 - 8,4: - 0: 65399 - 8,6: - 0: 242 - -4,9: - 0: 15 - -5,8: - 0: 61440 - 1: 34 - -4,10: - 0: 63351 - -4,11: - 0: 62719 - -5,10: - 0: 63078 - -5,11: - 0: 26367 - -4,12: - 0: 65535 - -3,9: - 0: 62207 - -3,10: - 0: 62207 - -3,11: - 0: 53503 - -3,12: - 0: 56799 - -2,9: - 0: 61678 - -2,10: - 0: 12543 + -13,40: + 1: 802 + -17,40: + 0: 45024 + -16,41: + 0: 57275 + -17,41: + 0: 10986 + -16,42: + 0: 61695 + -17,42: + 0: 41710 + -16,43: + 0: 4095 + -17,43: + 0: 10923 + -16,44: + 0: 20478 + -15,41: + 0: 6557 + -15,42: + 0: 29425 + -15,43: + 0: 1911 + -15,44: + 0: 31 1: 32768 - -2,11: - 0: 12595 - 1: 34952 - -2,12: + -14,41: + 0: 12561 + -14,42: + 0: 15088 + -14,43: + 0: 15 + 1: 2048 + -14,44: + 0: 2279 + 1: 61440 + -13,42: + 0: 880 + 1: 2184 + -13,43: + 0: 15 + 1: 18176 + -13,44: + 1: 29764 + 0: 272 + -12,43: + 0: 4915 + 1: 128 + -20,41: + 0: 62399 + -21,41: + 0: 63679 + -20,42: + 0: 52991 + -21,42: + 0: 32767 + -20,43: + 0: 65534 + -21,43: + 0: 65535 + -20,44: + 0: 65523 + -19,41: + 0: 53469 + -19,42: + 0: 65501 + -19,43: + 0: 56607 + -19,44: + 0: 56796 + -18,41: + 0: 63487 + -18,42: + 0: 65535 + -18,43: + 0: 65343 + -18,44: + 0: 65535 + -17,44: + 0: 10786 + -28,36: + 0: 45260 + -28,37: + 0: 191 + -29,37: + 0: 8 + 1: 13175 + -28,35: + 0: 52430 + -27,36: + 0: 61441 + -27,37: + 0: 57599 + -27,35: + 0: 4232 + -26,36: + 0: 56552 + -26,37: + 0: 4319 + -26,38: + 0: 2115 + -26,39: + 0: 49152 + -25,40: + 0: 20222 + -24,41: + 0: 61611 + -24,42: + 0: 36863 + -25,41: + 0: 58436 + 1: 17 + -25,42: + 0: 3310 + -24,43: + 1: 1 + 0: 64972 + -25,43: + 1: 4414 + 0: 52224 + -24,44: + 0: 61281 + -23,41: + 0: 63743 + -23,42: + 0: 61439 + -23,43: + 0: 61166 + -22,41: + 0: 29183 + -22,42: + 0: 65399 + -22,43: + 0: 30591 + -23,44: + 0: 61160 + -22,44: + 0: 30577 + -21,44: + 0: 65528 + -20,45: + 0: 65535 + -21,45: + 0: 65535 + -20,46: + 0: 2047 + -21,46: + 0: 3310 + 1: 4096 + -20,47: + 1: 61727 + -21,47: + 1: 61454 + -19,45: + 0: 7645 + -19,46: + 1: 7712 + -19,47: + 1: 61440 + -18,45: + 0: 895 + -18,46: + 1: 3857 + -17,45: + 0: 53230 + -17,46: + 1: 3840 + -16,45: + 0: 13073 + -25,44: + 0: 2060 + 1: 1585 + -24,46: + 1: 57344 + -24,45: + 0: 8 + -23,46: + 1: 63628 + -23,45: + 0: 2254 + -22,45: + 0: 1911 + -22,46: + 1: 14471 + -22,47: + 1: 57344 + -26,43: + 1: 57856 + -26,44: + 1: 8738 + -26,40: + 0: 192 + 1: 32768 + -26,41: + 1: 8 + -26,45: + 1: 546 + -28,32: + 1: 13241 + -28,31: + 1: 40134 + -29,32: + 1: 8 + -28,33: + 0: 4096 + 1: 3174 + -29,33: + 0: 35008 + -28,34: + 0: 26211 + -27,32: + 1: 13073 + -27,31: + 1: 4096 + -27,33: + 1: 36038 + -26,33: + 1: 4096 + -26,35: + 0: 272 + -26,34: + 0: 2112 + -25,34: + 0: 8448 + -25,35: + 0: 4 + -32,35: + 1: 47791 + -33,35: + 1: 39327 + -32,36: + 1: 64443 + -31,35: + 1: 47791 + -31,36: + 1: 64443 + -30,35: + 1: 47791 + -30,36: + 1: 64443 + -29,35: + 1: 12847 + -29,36: + 1: 29491 + -29,31: + 1: 36038 + -12,44: + 0: 255 + 1: 8192 + -12,45: + 1: 255 + -13,45: + 1: 61455 + -12,46: + 1: 255 + -13,46: + 1: 15 + -11,44: + 0: 255 + 1: 36864 + -11,45: + 1: 3833 + -11,46: + 1: 3825 + -10,44: + 0: 35071 + 1: 8192 + -10,45: + 1: 818 + 0: 1032 + -10,46: + 1: 16 + 0: 62208 + -11,47: + 0: 34944 + -10,47: + 0: 65535 + -11,48: + 0: 52428 + -10,43: + 0: 6007 + -10,48: + 0: 65535 + -9,44: + 0: 345 + 1: 4 + -9,45: + 0: 15 + -9,47: + 0: 57361 + -9,48: + 0: 13071 + -9,43: + 1: 17648 + 0: 34816 + -8,44: + 0: 14304 + -8,45: 0: 13107 - 1: 32904 - -1,9: - 0: 61166 - -1,10: + -8,46: + 0: 8755 + -16,46: + 0: 3303 + -15,46: + 0: 46402 + -15,45: + 1: 36448 + -15,47: + 0: 12 + -14,45: + 1: 65280 + -14,47: + 0: 1 + -28,29: + 1: 4368 + -29,29: + 1: 47517 + -28,30: + 1: 25395 + -30,28: + 1: 52967 + -30,27: + 1: 16384 + 0: 3 + -30,29: + 1: 2184 + -29,28: + 1: 52326 + -29,30: + 1: 26163 + -29,27: + 1: 25600 + 0: 102 + -32,20: + 0: 3996 + -33,20: + 0: 65504 + -32,21: + 0: 28672 + -32,22: + 0: 53367 + -33,21: + 0: 49171 + -33,22: + 0: 35020 + 1: 12288 + -32,23: + 0: 56607 + -33,23: + 0: 34956 + 1: 8755 + -32,24: + 0: 56797 + -31,20: + 0: 61297 + -31,22: + 0: 28680 + -31,23: + 0: 30503 + -31,21: + 0: 52430 + -31,24: + 0: 30583 + -30,20: + 1: 20288 + 0: 4096 + -30,21: + 0: 29489 + 1: 1092 + -30,22: + 0: 61559 + -30,23: + 0: 65535 + -29,20: + 1: 768 + -33,24: + 0: 34952 + 1: 8738 + -32,25: + 0: 57117 + -33,25: + 0: 35976 + 1: 13106 + -33,26: + 0: 65528 + -32,26: + 0: 61152 + -32,27: + 0: 33006 + -33,27: + 0: 255 + -31,25: + 0: 65319 + -31,26: + 0: 65252 + -31,27: + 0: 31758 + -30,24: + 0: 65520 + -30,25: + 0: 64319 + -30,26: + 0: 29488 + -29,26: + 0: 26312 + -36,22: + 1: 7 + 0: 392 + -37,22: + 1: 4127 + -36,21: + 0: 34952 + -35,20: + 0: 16 + -35,19: + 1: 60616 + -34,21: + 0: 65260 + -34,22: + 0: 78 + 1: 49152 + -34,19: + 0: 17408 + 1: 137 + -34,20: + 0: 32768 + -34,23: + 1: 12 + -33,19: + 0: 32768 + 1: 17 + -36,26: + 0: 22514 + 1: 8192 + -37,26: + 0: 50864 + 1: 10496 + -37,27: + 0: 12 + -36,27: + 0: 2060 + 1: 192 + -35,26: + 0: 43953 + -35,27: + 0: 187 + 1: 256 + -34,26: + 0: 65520 + -34,27: + 0: 255 + -34,25: + 1: 52224 + -38,26: + 0: 172 + 1: 64 + -38,24: + 1: 2048 + -37,24: + 1: 4881 + -38,25: + 1: 128 + -37,25: + 1: 4401 + -37,23: + 1: 12563 + -32,12: + 0: 30583 + -32,11: + 0: 63351 + -33,12: + 0: 52428 + -32,13: + 0: 48049 + -33,13: + 0: 35200 + -32,14: + 0: 52371 + -33,14: + 0: 12569 + -32,15: + 0: 12 + -31,12: + 0: 5048 + -31,13: + 0: 65532 + -31,14: + 0: 65524 + -31,15: + 0: 57359 + -32,16: + 0: 34952 + 1: 12800 + -31,11: + 0: 47291 + -31,16: + 0: 3823 + -30,12: + 0: 61439 + -30,13: + 0: 61168 + -30,15: + 0: 28910 + -30,11: + 0: 65535 + -30,14: 0: 60942 - -1,11: + -30,16: + 0: 2039 + -29,11: + 0: 65535 + -32,17: + 1: 3871 + -33,17: + 1: 27785 + -31,17: + 1: 20295 + 0: 8 + -31,18: + 1: 17484 + -30,17: + 0: 1791 + 1: 16384 + -30,18: + 1: 79 + -29,17: + 0: 23 + 1: 17472 + -29,18: + 1: 1103 + -35,12: + 0: 52942 + -35,13: + 0: 36078 + -35,11: + 0: 52968 + -34,12: + 0: 65535 + -34,13: + 0: 65535 + -34,11: + 0: 65535 + -34,14: + 0: 36079 + -33,15: + 0: 8739 + -33,16: + 0: 3 + 1: 4976 + -33,11: + 0: 52428 + -35,18: + 1: 34816 + -34,18: + 1: 37174 + -34,17: + 1: 26312 + -34,16: + 1: 32768 + -33,18: + 1: 13158 + -8,43: + 0: 32766 + 1: 1 + -8,47: + 0: 28258 + -8,48: + 0: 26215 + -7,44: + 0: 248 + -7,45: + 0: 65534 + -7,46: + 0: 61439 + -7,47: + 0: 47934 + -7,48: + 0: 10939 + -7,43: + 0: 34945 + -6,44: + 0: 34961 + -6,45: + 0: 65467 + -6,46: + 0: 65535 + -6,47: + 0: 62367 + -6,43: + 0: 8176 + -6,48: + 0: 4095 + -5,44: + 0: 30576 + -5,45: + 0: 65286 + -5,46: + 0: 46079 + -5,47: + 0: 45243 + -5,48: + 0: 12287 + -5,43: + 0: 33780 + -4,44: + 0: 65535 + -4,45: + 0: 65535 + -4,46: + 0: 63675 + -4,47: + 0: 62975 + -8,49: + 0: 65350 + -9,49: + 0: 51201 + -8,50: + 0: 53247 + -9,50: + 0: 3276 + -8,51: + 0: 3581 + -9,51: + 0: 3276 + -8,52: + 0: 17662 + 1: 4096 + -7,50: + 0: 61182 + -7,51: + 0: 36592 + -7,49: + 0: 60942 + -7,52: + 0: 4607 + 1: 49152 + -6,49: + 0: 62791 + -6,50: + 0: 7645 + -6,51: + 0: 7644 + -6,52: + 0: 247 + 1: 28672 + -5,49: + 0: 61695 + -5,50: + 0: 49663 + -5,51: + 0: 52733 + -4,48: + 0: 8191 + -4,49: + 0: 47359 + -4,50: + 0: 14591 + -4,51: + 0: 46079 + -11,49: + 0: 34952 + -10,49: + 0: 1919 + -10,51: + 0: 35906 + -8,42: + 1: 57344 + -7,42: + 1: 61986 + -7,41: + 0: 3584 + -6,41: + 0: 61422 + -6,40: + 1: 768 + 0: 34952 + -6,42: + 0: 59616 + -5,41: + 0: 30719 + -5,42: + 0: 30310 + -5,40: + 0: 8738 + 1: 2048 + -4,40: + 1: 3840 + -4,41: + 0: 61695 + -4,42: + 0: 65535 + -4,43: + 0: 61440 + -3,40: + 1: 3840 + -3,41: + 0: 56575 + -3,42: + 0: 57343 + -3,43: + 0: 65512 + -3,44: + 0: 65535 + -2,40: + 1: 50944 + -2,41: + 0: 57297 + -2,42: + 0: 57297 + -2,43: + 0: 53532 + -2,44: + 0: 56785 + -1,40: + 1: 12288 + 0: 34944 + -1,41: + 0: 65528 + -1,42: + 0: 30577 + -1,43: + 0: 23559 + -1,44: + 0: 56788 + 0,41: + 0: 65522 + 0,42: + 0: 46068 + 0,43: + 0: 3883 + -11,43: + 1: 48 + 0: 2184 + 0,40: + 0: 8736 + 1: 32768 + 1,40: + 1: 12288 + 1,41: + 0: 3840 + 1: 6 + 1,42: + 0: 61440 + 1,43: + 0: 65327 + 1,44: + 0: 50415 + 2,42: + 0: 61440 + 2,43: + 0: 60943 + 2,44: + 0: 4334 + 2: 3072 + 3,42: + 0: 61440 + 3,43: + 0: 65311 + 3,44: + 0: 255 + 1: 256 + 2: 1536 + 4,42: + 0: 28896 + 4,43: + 0: 26223 + 0,44: + 0: 29456 + 0,45: + 0: 56607 + -1,45: + 0: 64735 + 0,46: + 0: 24029 + -1,46: + 0: 65535 + 0,47: + 0: 63359 + -1,47: + 0: 65535 + 0,48: + 0: 1919 + 1,45: + 0: 13056 + 1,46: + 0: 819 + 1,47: + 0: 63239 + 1,48: + 0: 127 + 2,45: + 0: 61695 + 2,46: + 0: 64255 + 2,47: + 0: 65535 + 2,48: + 0: 65535 + 3,45: + 0: 53503 + 3,46: + 0: 64733 + 3,47: + 0: 62463 + 3,48: + 0: 30527 + 4,45: + 0: 36471 + 4,46: + 0: 16243 + 4,47: + 0: 63675 + 4,44: + 0: 9838 + 4,48: + 0: 65535 + 5,44: + 0: 65535 + 5,45: + 0: 29151 + 5,46: + 0: 36071 + 5,47: + 0: 48059 + 5,43: + 0: 61559 + 5,48: + 0: 48059 + 6,46: + 0: 7616 + 6,47: + 0: 54545 + 6,44: 0: 61166 - 0,9: - 0: 53623 - 0,10: + 6,45: + 0: 2 + 6,48: + 0: 4445 + 6,43: + 0: 49152 + 7,44: + 0: 30583 + 7,45: + 0: 35 + 7,46: + 0: 25395 + 7,43: + 0: 30564 + 7,47: + 0: 36046 + 8,47: + 0: 29456 + -1,48: + 0: 16383 + 0,49: + 0: 30583 + -1,49: + 0: 48059 + 0,50: + 0: 30519 + -1,50: + 0: 63803 + 0,51: + 0: 119 + -1,51: + 0: 13215 + 0,52: + 0: 32732 + 1,49: + 0: 29555 + 1,50: + 0: 33203 + 1,51: + 0: 25836 + 1,52: + 0: 33655 + 2,49: + 0: 52991 + 2,50: + 0: 65392 + 2,51: + 0: 16065 + 2,52: + 0: 62225 + 3,49: + 0: 65527 + 3,50: + 0: 65295 + 3,51: + 0: 51056 + 4,49: + 0: 16368 + 4,50: + 0: 16360 + 4,51: + 0: 63921 + 4,52: + 0: 16367 + 5,49: + 0: 61408 + 5,50: + 0: 3823 + 5,51: + 0: 61696 + 5,52: + 0: 4095 + 6,49: + 0: 37137 + 6,50: + 0: 273 + 6,51: + 0: 4096 + 6,52: + 0: 127 + 7,49: + 0: 65518 + 7,50: + 0: 26231 + 7,51: + 0: 30916 + 7,52: + 0: 1 + 7,48: + 0: 51200 + 8,48: + 0: 4919 + 8,49: + 0: 17 + -3,48: + 0: 36319 + -3,49: + 0: 56831 + -3,50: + 0: 65521 + -3,51: + 0: 65279 + -4,52: + 0: 28808 + -3,47: + 0: 56799 + -3,52: + 0: 4095 + -2,48: + 0: 6007 + -2,49: + 0: 30583 + -2,50: + 0: 65520 + -2,51: + 0: 29183 + -2,47: + 0: 30583 + -2,52: + 0: 33655 + -1,52: + 0: 57105 + 0,53: + 0: 30577 + -1,53: + 0: 56529 + 0,54: + 0: 47895 + -1,54: + 0: 47901 + 1,53: + 0: 65535 + 1,54: + 0: 65535 + 2,53: + 0: 65535 + 2,54: + 0: 14079 + 3,53: + 0: 4919 + 3,52: + 0: 51200 + -5,52: + 0: 53040 + -4,53: + 0: 32911 + -3,53: + 0: 61695 + -3,54: + 0: 35023 + -2,53: + 0: 61695 + -2,54: + 0: 65279 + -9,52: + 1: 32768 + -8,53: + 0: 4 + -7,53: + 0: 1 + -6,53: + 1: 8 + -5,53: + 1: 1 + -3,45: + 0: 65535 + -3,46: + 0: 7645 + -2,45: + 0: 61917 + -2,46: + 0: 4095 + 5,42: + 0: 28691 + -38,22: + 1: 526 + 0: 1024 + -38,23: + 1: 32776 + -35,9: + 0: 52960 + -35,10: + 0: 52942 + -34,9: + 0: 65280 + -34,10: + 0: 65535 + -33,9: + 0: 65420 + -33,10: + 0: 49167 + -32,9: + 0: 65535 + -32,10: + 0: 28687 + -32,8: + 0: 60616 + -31,8: + 0: 65535 + -31,9: + 0: 65535 + -31,10: + 0: 47655 + -31,7: + 0: 65535 + -30,8: + 0: 65535 + -30,9: + 0: 36313 + -30,10: + 0: 65534 + -30,7: + 0: 65535 + -29,8: + 0: 56605 + -29,9: + 0: 36124 + -29,10: + 0: 65395 + -29,7: + 0: 56607 + -28,8: + 0: 65327 + -28,9: + 0: 65327 + -28,10: + 0: 61167 + -28,7: + 0: 65295 + -27,8: 0: 56781 - 0,11: + -27,9: + 0: 61901 + -27,10: + 0: 65535 + -27,7: + 0: 56719 + -26,8: + 0: 64307 + -26,9: + 0: 4287 + -26,10: + 0: 14195 + -26,7: + 0: 13073 + -28,4: + 2: 7 + 0: 65280 + -28,3: + 2: 28672 + 1: 241 + -29,4: + 2: 8 + 0: 34816 + 1: 4898 + -28,5: + 0: 65535 + -29,5: + 0: 52940 + 1: 4369 + -28,6: + 0: 56575 + -29,6: + 0: 49356 + 1: 17 + -27,4: + 2: 15 + 0: 65280 + -27,5: + 0: 65535 + -27,6: + 0: 65535 + -27,3: + 2: 61440 + 1: 240 + -26,5: + 0: 56797 + -26,6: + 0: 56799 + -26,4: + 2: 3822 + -26,3: + 2: 57344 + 1: 242 + -19,8: + 0: 1792 + -19,10: + 0: 1799 + -19,9: + 1: 2 + -19,11: + 1: 512 + -32,3: + 0: 65535 + -32,5: + 0: 52974 + -31,4: + 0: 33291 + -31,6: + 0: 65392 + -31,3: + 0: 65535 + -31,5: + 0: 61152 + -30,4: + 0: 1587 + 1: 49288 + -30,5: + 0: 4880 + 1: 52428 + -30,6: + 0: 63232 + 1: 8 + -30,3: 0: 13105 1: 34944 - 1,9: - 0: 56543 - 1,10: - 0: 7645 - 0,12: - 1: 61688 - 1,11: - 1: 57888 - 1,12: - 1: 30310 - 2,9: - 0: 29627 - 2,10: - 0: 1911 - 2,11: - 1: 64580 - 2,12: - 1: 8750 - 3,9: - 0: 36863 - 3,10: - 0: 65535 - 3,11: - 0: 239 - 1: 16384 - 3,12: - 1: 15 - 4,9: - 0: 2047 - 4,10: - 0: 30583 - 4,11: - 0: 55 - 1: 6144 - 4,12: - 1: 15 - 5,10: - 1: 1 - 0: 52428 - 5,11: - 1: 4352 - 0: 52424 - 5,9: - 0: 36078 - 5,12: - 1: 1 - 0: 34956 - 6,9: - 0: 2491 - 6,10: - 0: 40445 - 6,11: - 0: 56796 - 6,12: - 0: 1 - 7,9: - 0: 827 - 1: 2048 - 7,10: - 0: 273 - 7,11: - 0: 4369 - 8,8: - 0: 4352 - 1: 52448 - 8,9: - 0: 1 - 1: 1004 - 8,5: - 0: 43682 - 8,7: - 1: 14 - 9,4: - 0: 48059 - 9,5: - 0: 48057 - 9,6: - 0: 2040 - 9,3: - 0: 46011 - 10,4: - 0: 4369 - 1: 192 - 10,5: - 0: 273 - 9,7: - 1: 34952 - 10,7: - 1: 33249 - 0: 3598 - 9,8: - 1: 34952 - 10,3: - 0: 64729 - 10,6: - 1: 20000 - 11,4: - 1: 16 - 0: 52364 - 11,6: - 1: 40844 - 11,7: - 0: 771 - 1: 35064 - 10,8: - 0: 3598 - 1: 33249 - 11,3: - 0: 57296 - 11,5: - 0: 34956 - 12,4: - 0: 4335 - 1: 16384 - 12,5: - 0: 1 - 1: 19524 - 12,6: - 1: 20293 - 12,7: - 1: 33008 - 0: 3598 - 11,8: - 1: 35064 - 0: 771 - 9,0: - 2: 15 - 0: 65296 - 9,1: - 0: 35763 - 9,2: - 0: 48955 - 9,-1: - 2: 65520 - 0: 1 - 10,0: - 2: 1 - 0: 65292 - 10,1: - 0: 56789 - 10,2: - 0: 64961 - 10,-1: - 2: 4368 - 0: 57548 - 11,0: - 0: 30543 - 11,2: - 0: 65382 - 11,-1: - 0: 61695 - 11,1: - 0: 26214 - 12,0: - 0: 51387 - 12,1: - 1: 16 - 0: 45260 - 12,2: - 0: 48939 - 12,3: - 0: 65520 - -9,4: - 0: 65280 - 1: 1 - -8,5: - 0: 13104 - -9,5: - 0: 65521 - -8,6: - 0: 13107 + -29,3: + 1: 13024 + 2: 32768 + -38,5: + 1: 1672 + -38,6: + 1: 35976 + -38,4: 1: 32768 - -9,6: - 0: 65535 - -8,7: - 0: 47923 - -9,7: - 0: 64447 - -8,8: - 0: 62363 - -7,6: - 1: 61440 - -7,7: - 0: 56576 - -7,8: - 0: 64861 - -6,6: - 1: 61440 - 0: 12 - -6,7: - 0: 25088 - 1: 136 - -6,5: - 0: 14 - -6,8: - 0: 62054 - -9,8: - 0: 47935 - -8,9: - 0: 13115 - -9,9: - 0: 48057 - -8,10: - 0: 13059 - 1: 8 - -9,10: - 0: 47923 - -8,11: - 0: 51 - 1: 12296 - -9,11: - 0: 955 - 1: 32768 - -8,12: - 1: 497 - -7,9: - 0: 15 - -7,10: - 1: 4375 - 0: 32768 - -7,11: - 1: 4371 - 0: 136 - -7,12: - 1: 4369 - -6,9: - 0: 7 - -6,10: - 0: 64989 - -6,11: - 0: 56831 - -6,12: - 0: 65309 - -5,9: - 1: 3680 - -5,12: - 0: 32518 - -1,12: - 1: 61680 - 0,13: - 1: 240 - -1,13: - 1: 4594 - 1,13: - 1: 124 - 2,13: - 1: 547 - -12,-1: - 0: 65520 - -13,0: - 0: 64604 - -12,0: - 0: 61156 - -12,1: - 0: 62702 - -13,1: - 0: 56797 - -12,2: - 0: 15283 - -13,2: - 0: 65532 - -12,3: - 0: 47935 - -13,3: - 0: 43944 - -12,4: - 0: 13115 - -11,0: - 0: 65520 - -11,1: - 0: 61695 - -11,2: - 0: 56784 - -11,3: - 0: 4383 - 1: 19456 - -11,-1: - 0: 65527 - -11,4: - 0: 1 - 1: 3724 - -10,0: - 0: 30578 - -10,1: - 0: 28791 - -10,2: - 0: 40742 - -10,3: - 0: 15 - 1: 60416 - -10,-1: - 0: 65524 - -10,4: - 1: 3 - 0: 60936 - -13,4: - 0: 61432 - -12,5: - 0: 1646 - -13,5: - 0: 61156 - -12,6: - 1: 44868 - -12,7: - 0: 3855 - 1: 16624 - -13,7: - 1: 17652 - 0: 257 - -12,8: - 0: 3855 - 1: 16624 - -11,5: - 0: 4095 - -11,6: - 1: 18210 - -11,7: - 0: 257 - 1: 18134 - -11,8: - 1: 50774 - 0: 257 - -10,5: - 0: 59646 - -10,6: - 0: 52430 - -10,7: - 0: 61132 - -10,8: - 0: 52974 - -16,4: - 1: 22289 - 0: 68 - -16,3: - 0: 20343 - -16,5: - 1: 12 - -15,4: - 0: 4095 - -15,5: - 1: 17487 - -15,3: - 0: 65535 - -15,6: - 1: 19524 - -15,7: - 1: 19524 - -15,8: - 1: 19532 - -14,4: - 0: 4095 - -14,5: - 1: 39327 - -14,6: - 1: 44953 - -14,7: - 0: 3855 - 1: 16624 - -14,3: - 0: 65535 - -14,8: - 0: 3855 - 1: 16624 - -13,6: - 1: 57600 - 0: 1092 - -13,8: - 1: 17652 - 0: 257 - -16,0: - 0: 55807 - -16,-1: - 0: 56797 - -17,0: - 0: 34952 - -16,1: - 0: 53725 - -17,1: - 0: 34952 - -16,2: - 0: 21853 - -17,2: - 0: 12287 - -15,0: - 0: 62207 - -15,1: - 0: 63743 - -15,2: - 0: 65295 - -15,-1: - 0: 30583 - -14,0: - 0: 57463 - -14,1: - 0: 65262 - -14,2: - 0: 65504 - -14,-1: - 0: 65527 - -13,-1: - 0: 65522 - -20,2: - 0: 3838 - -21,2: - 0: 2248 - -20,3: - 1: 15 - -20,1: - 0: 16384 - -19,2: - 0: 4095 - -19,3: - 1: 1 - 0: 52428 - -19,4: - 0: 36044 - -18,2: - 0: 4095 - -18,3: - 0: 65527 - -18,1: - 0: 8192 - -18,4: - 0: 14335 - -17,3: - 0: 30583 - -17,4: - 0: 1911 - -17,-1: - 0: 34959 - -19,5: - 1: 2240 - -18,5: - 1: 880 - -20,-4: - 0: 4002 - -20,-2: - 0: 65024 - -21,-2: - 0: 51200 - -20,-1: - 0: 78 - -21,-1: - 0: 8 - -19,-4: - 0: 4093 - -19,-2: - 0: 65280 - -19,-1: - 0: 15 - -19,-5: - 0: 53504 - -18,-4: - 0: 4091 - -18,-2: - 0: 65280 - -18,-1: - 0: 47 - -18,-5: - 0: 47104 - -17,-4: - 0: 36862 - -17,-2: - 0: 65420 - -17,-3: - 0: 36748 - -16,-4: - 0: 7965 - -16,-3: - 0: 56797 - -16,-2: - 0: 65309 - -16,-5: - 0: 50240 - 1: 256 - -15,-4: - 0: 32519 - -15,-3: - 0: 65535 - -15,-2: - 0: 65295 - -15,-5: - 0: 30719 - -14,-4: - 0: 39711 - -14,-3: - 0: 46011 - -14,-2: - 0: 30491 - -14,-5: - 0: 65136 - -13,-4: - 0: 65467 - -13,-3: - 0: 29375 - -13,-2: - 0: 30583 - -13,-5: - 0: 62456 - -12,-4: - 0: 61552 - -12,-3: - 0: 30311 - -12,-2: - 0: 32631 - -12,-5: - 0: 30705 - -11,-4: - 0: 65295 - -11,-3: - 0: 29439 - -11,-2: - 0: 12151 - -11,-5: - 0: 30704 - -10,-4: - 0: 65357 - -10,-3: - 0: 62719 - -10,-2: - 0: 65535 - -10,-5: - 0: 62836 - 12,-1: - 0: 47547 - 13,1: - 0: 56567 - 13,2: - 0: 16349 - 13,3: - 0: 48120 - 13,0: - 0: 20206 - 13,4: - 0: 35003 - 1: 8192 - 13,-1: - 0: 59630 - 14,0: - 0: 30583 - 14,1: - 0: 26864 - 14,2: - 0: 36614 - 14,3: - 0: 30719 - 14,-1: - 0: 29047 - 14,4: - 0: 30583 - 15,0: - 0: 10111 - 15,1: - 0: 65527 - 15,2: - 0: 53759 - 15,3: - 0: 12125 - 15,-1: - 0: 28863 - 15,4: - 0: 30583 - 16,0: - 0: 65535 - 16,1: - 0: 16368 - 16,2: - 0: 60089 - 16,3: - 0: 12074 - 9,-4: - 0: 65524 - 9,-3: - 0: 57308 - 9,-2: - 0: 65521 - 9,-5: - 0: 61166 - 10,-4: - 0: 65520 - 10,-3: - 0: 57297 - 10,-2: - 0: 65532 - 10,-5: - 0: 61182 - 11,-4: - 0: 65521 - 11,-3: - 0: 65436 - 11,-2: - 0: 65535 - 11,-5: - 0: 65527 - 12,-4: - 0: 65522 - 12,-3: - 0: 48027 - 12,-2: - 0: 48059 - 13,5: - 1: 11042 - 0: 8 - 13,6: - 1: 40866 - 13,7: - 0: 771 - 1: 36024 - 12,8: - 0: 3598 - 1: 33008 - 14,5: - 0: 34947 - 14,6: - 1: 306 - 0: 34952 - 13,8: - 1: 36028 - 0: 771 - 15,5: - 0: 65520 - 15,6: - 0: 65535 - 16,4: - 0: 65535 - 16,5: - 0: 65526 - 16,6: - 0: 65535 - 17,4: - 0: 30583 - 17,5: - 0: 63345 - 17,6: - 0: 30719 - 18,4: - 1: 5888 - 18,3: - 0: 65295 - 16,-1: - 0: 62685 - 17,0: - 0: 61422 - 17,1: - 0: 10022 - 17,2: - 0: 65527 - 17,3: - 0: 3855 - 17,-1: - 0: 25256 - 18,0: - 0: 32631 - 18,1: - 0: 61559 - 18,2: - 0: 65522 - 18,-1: - 0: 10239 - 19,0: - 0: 47931 - 19,1: - 0: 30507 - 19,3: - 0: 33570 - 1: 128 - 19,-1: - 0: 47778 - 19,2: - 0: 8742 - 20,0: - 0: 13211 - 20,1: - 0: 3 - 20,2: - 1: 49168 - 20,-1: - 0: 49081 - 20,3: - 1: 24576 - 21,0: - 0: 51 - 21,-1: - 0: 16191 - 12,-5: - 0: 44706 - 13,-4: - 0: 65520 - 13,-3: - 0: 65459 - 13,-5: - 0: 65522 - 13,-2: - 0: 61160 - 14,-4: - 0: 65524 - 14,-3: - 0: 65520 - 14,-2: - 0: 32767 - 14,-5: - 0: 61422 - 15,-4: - 0: 65528 - 15,-3: - 0: 65520 - 15,-2: - 0: 46079 - 15,-5: - 0: 61422 - 16,-4: - 0: 65523 - 16,-3: - 0: 65516 - 16,-2: - 0: 54510 - -20,-5: - 1: 1792 - -17,-5: - 1: 3660 - -17,-6: - 1: 32768 - -16,-6: - 1: 4352 - 0: 16384 - -15,-6: - 0: 62532 - -15,-8: - 0: 60928 - -15,-7: - 0: 17486 - -14,-8: - 0: 61440 - -14,-6: - 1: 3584 - -13,-8: - 0: 64648 - 1: 2 - -13,-6: - 1: 4864 - 0: 34952 - -13,-9: - 1: 8738 - 0: 34952 - -13,-7: - 0: 52428 - -12,-8: - 0: 56829 - -12,-7: - 0: 4369 - 1: 35008 - -12,-6: - 0: 4369 - 1: 51336 - -12,-9: - 0: 53744 - -11,-8: - 0: 65535 - -11,-7: - 1: 16 - 0: 52424 - -11,-6: - 1: 4096 - 0: 52428 - -11,-9: - 0: 61680 - -10,-8: - 0: 56817 - -10,-7: - 0: 65533 - -10,-6: - 0: 65535 - -10,-9: - 0: 4348 - 1: 49152 - -9,-9: - 1: 6272 - 0: 17 - -12,-11: - 1: 30591 - 0: 34944 - -13,-11: - 1: 34952 - -13,-10: - 1: 8 - 0: 3584 - -12,-10: - 0: 28516 - -11,-11: - 1: 2959 - 0: 62576 - -11,-10: - 0: 65520 - -11,-13: - 0: 19520 - 1: 1 - -10,-11: - 1: 3840 - 0: 61454 - -10,-10: - 0: 61408 - -10,-13: - 0: 57296 - -10,-12: - 0: 61152 - -9,-13: - 0: 65535 - -8,-16: - 0: 61713 - -8,-17: - 0: 57105 - -9,-16: - 0: 61422 - -8,-15: - 0: 56785 - -9,-15: - 0: 65128 - -8,-14: - 0: 53244 - -9,-14: - 0: 20196 - -7,-16: - 0: 61440 - -7,-15: - 0: 65520 - -7,-14: - 0: 65535 - -7,-13: - 0: 4095 - -7,-17: - 0: 61422 - -6,-16: - 0: 61440 - -6,-15: - 0: 65520 - -6,-14: - 0: 65535 - -6,-13: - 0: 4095 - -6,-17: - 0: 13243 - -5,-16: - 0: 62054 - -5,-14: - 0: 43946 - -5,-15: - 0: 43566 - -5,-17: - 0: 58980 - -4,-16: - 0: 61695 - -4,-15: - 0: 65295 - -4,-14: - 0: 65535 - -4,-13: - 0: 4095 - -4,-17: - 0: 65520 - -3,-16: - 0: 61559 - -3,-15: - 0: 47887 - -3,-14: - 0: 7963 - -3,-13: - 0: 3003 - -3,-17: - 0: 63344 - -2,-16: - 0: 3839 - -2,-15: - 0: 63247 - -2,-14: - 0: 10103 - -2,-17: - 0: 65535 - -1,-15: - 0: 65519 - -1,-14: - 0: 65535 - -1,-16: - 0: 20206 - -1,-17: - 0: 58606 - 0,-16: - 0: 61182 - 0,-15: - 0: 64270 - 0,-14: - 0: 64923 - 0,-17: - 0: 36607 - 1,-16: - 0: 65535 - 1,-15: - 0: 65311 - 1,-14: - 0: 65535 - 1,-17: - 0: 7647 - 2,-16: - 0: 48059 - 2,-15: - 0: 48027 - 2,-14: - 0: 48059 - 2,-17: - 0: 39867 - 3,-16: - 0: 65535 - 3,-15: - 0: 65535 - 3,-14: - 0: 65399 - 3,-17: - 0: 65535 - 4,-16: - 0: 65535 - 4,-15: - 0: 65535 - 4,-14: - 0: 65528 - 8,-13: - 0: 56605 - 9,-12: - 0: 43967 - 9,-11: - 0: 48059 - 9,-10: - 0: 47295 - 9,-9: - 0: 63931 - 9,-13: - 0: 47883 - 9,-8: - 0: 56607 - 10,-12: - 0: 48123 - 10,-11: - 0: 48123 - 10,-10: - 0: 29627 - 10,-9: - 0: 30591 - 10,-13: - 0: 16155 - 10,-8: - 0: 64263 - 11,-12: - 0: 1911 - 11,-11: - 0: 40191 - 11,-10: - 0: 61661 - 11,-9: - 0: 65535 - 11,-8: - 0: 30479 - 12,-12: - 0: 43967 - 12,-11: - 0: 59962 - 12,-9: - 0: 10927 - 9,-7: - 0: 63965 - 9,-6: - 0: 20223 - 10,-7: - 0: 29119 - 10,-6: - 0: 57983 - 11,-7: - 0: 62079 - 11,-6: - 0: 62207 - 12,-8: - 0: 30566 - 12,-7: - 0: 41599 - 12,-6: - 0: 47787 - 8,-16: - 0: 53503 - 8,-17: - 0: 64443 - 8,-15: - 0: 7967 - 7,-16: - 0: 32768 - 1: 12834 - 7,-15: - 0: 2184 - 1: 8738 - 8,-14: - 0: 56797 - 7,-14: - 0: 34952 - 1: 8738 - 9,-16: - 0: 53744 - 9,-15: - 0: 52701 - 9,-14: - 0: 47903 - 9,-17: - 0: 65523 - 10,-16: - 0: 45241 - 10,-15: - 0: 64443 - 10,-14: - 0: 47903 - 10,-17: - 0: 16313 - 11,-16: - 0: 53435 - 11,-15: - 0: 63709 - 11,-14: - 0: 65327 - 11,-13: - 0: 3855 - 11,-17: - 0: 40942 - 12,-16: - 0: 10993 - 12,-13: - 0: 61422 - 13,-8: - 0: 35835 - 13,-7: - 0: 61695 - 13,-6: - 0: 65535 - 14,-8: - 0: 3067 - 14,-7: - 0: 62719 - 14,-6: - 0: 65535 - 14,-9: - 0: 35643 - 15,-8: - 0: 20479 - 15,-7: - 0: 58623 - 15,-6: - 0: 20222 - 15,-9: - 0: 65311 - 16,-7: - 0: 20223 - 16,-5: - 0: 65535 - 16,-8: - 0: 61166 - 16,-6: - 0: 20206 - 16,-9: - 0: 61166 - 17,-7: - 0: 60671 - 17,-5: - 0: 61422 - 17,-8: - 0: 61166 - 17,-6: - 0: 61166 - 18,-8: - 0: 65535 - 18,-7: - 0: 28927 - 18,-6: - 0: 32639 - 18,-5: - 0: 14199 - 19,-7: - 0: 28910 - 19,-6: - 0: 61167 - 19,-5: - 0: 56735 - 18,-4: - 0: 65528 - 19,-8: - 0: 60934 - 19,-4: - 0: 65521 - 19,-9: - 0: 61166 - 20,-8: - 0: 30576 - 20,-7: - 0: 1919 - 20,-6: - 0: 4078 - 20,-5: - 0: 4359 - 1: 3208 - 20,-9: - 0: 61222 - 20,-4: - 0: 28668 - 21,-8: - 0: 63271 - 21,-7: - 0: 30583 - 21,-6: - 0: 1919 - 21,-5: - 1: 18227 - 21,-9: - 0: 28999 - 21,-4: - 0: 13105 - 22,-8: - 0: 32631 - 22,-7: - 0: 30711 - 22,-6: - 0: 15 - 23,-8: - 0: 784 - 23,-7: - 0: 305 - 23,-9: - 1: 12288 - 23,-6: - 1: 2 - 16,-12: - 0: 61166 - 15,-12: - 0: 56781 - 16,-11: - 0: 65262 - 15,-11: - 0: 65293 - 16,-10: - 0: 61166 - 15,-10: - 0: 65295 - 16,-13: - 0: 58606 - 17,-12: - 0: 57309 - 17,-11: - 0: 61069 - 17,-10: - 0: 61164 - 17,-9: - 0: 14 - 1: 3584 - 18,-12: - 0: 57309 - 18,-11: - 0: 65293 - 18,-10: - 0: 61158 - 18,-9: - 0: 14 - 1: 3584 - 19,-12: - 0: 65535 - 19,-11: - 0: 62703 - 19,-10: - 0: 20206 - 20,-12: - 0: 23901 - 20,-11: - 0: 28229 - 12,-10: - 0: 43562 - 13,-12: - 0: 65518 - 13,-11: - 0: 65295 - 13,-10: - 0: 65359 - 13,-9: - 0: 4095 - 13,-13: - 0: 60943 - 14,-12: - 0: 61054 - 14,-11: - 0: 65294 - 14,-10: - 0: 47887 - 14,-13: - 0: 61166 - 15,-13: - 0: 53759 - 16,-16: - 0: 60338 - 15,-16: - 0: 4080 - 16,-15: - 0: 58922 - 16,-14: - 0: 60999 - 15,-14: - 0: 61695 - 16,-17: - 0: 28262 - 17,-16: - 0: 65521 - 17,-15: - 0: 30479 - 17,-14: - 0: 63239 - 17,-13: - 0: 1791 - 17,-17: - 0: 65535 - 18,-16: - 0: 61440 - 18,-15: - 0: 30470 - 18,-14: - 0: 65527 - 18,-13: - 0: 4095 - 18,-17: - 0: 61713 - 1: 68 - 19,-16: - 0: 62327 - 19,-15: - 0: 52696 - 19,-14: - 0: 65520 - 19,-13: - 0: 4095 - 19,-17: - 0: 28672 - 1: 68 - 20,-16: - 0: 30503 - 20,-15: - 0: 24020 - 20,-14: - 0: 54612 - 20,-13: - 0: 17885 - 20,-10: - 0: 58918 - 21,-12: - 0: 13063 - 1: 34816 - 21,-11: - 0: 30576 - 21,-10: - 0: 29040 - 21,-13: - 0: 28791 - 22,-12: - 1: 4096 - 22,-11: - 1: 4099 - 22,-10: - 1: 4867 - 22,-9: - 1: 273 - 20,-17: - 0: 30498 - 21,-16: - 0: 12287 - 21,-15: - 0: 32631 - 21,-14: - 0: 30471 - 21,-17: - 0: 65280 - 1: 5 - 22,-16: - 0: 273 - 1: 64 - 22,-15: - 0: 768 - 1: 19526 - 22,-14: - 1: 61719 - 22,-13: - 1: 785 - 22,-17: - 0: 4352 - 1: 66 - 23,-15: - 1: 3840 - 12,-17: - 0: 13090 - 12,-15: - 0: 8738 - 12,-14: - 0: 61166 - 13,-16: - 0: 4080 - 13,-14: - 0: 65279 - 13,-17: - 1: 17472 - 13,-15: - 1: 1092 - 14,-16: - 0: 4080 - 14,-14: - 0: 61695 - 15,-17: - 1: 21840 - 15,-15: - 1: 1365 - 17,-4: - 0: 65520 - 17,-3: - 0: 65488 - 17,-2: - 0: 59613 - 18,-3: - 0: 65520 - 18,-2: - 0: 65535 - 19,-3: - 0: 65500 - 19,-2: - 0: 63709 - 20,-3: - 0: 28671 - 20,-2: - 0: 46079 - 21,-3: - 0: 16191 - 21,-2: - 0: 12595 - 1: 128 - 22,-3: - 0: 1799 - 22,-2: - 1: 1140 - 22,-1: - 0: 1799 - 16,-20: - 0: 61166 - 15,-20: - 0: 36591 - 16,-19: - 0: 43246 - 15,-19: - 0: 65388 - 16,-18: - 0: 58938 - 15,-18: - 0: 48127 - 16,-21: - 0: 49152 - 1: 15 - 17,-20: - 0: 30583 - 17,-19: - 0: 30583 - 17,-18: - 0: 62071 - 17,-21: + -37,3: + 0: 35938 + -38,1: + 0: 61184 + -38,2: + 0: 2244 + -37,1: + 0: 62208 + -37,2: + 0: 4364 + -36,1: 0: 12288 - 1: 15 - 18,-20: - 1: 9910 - 0: 2056 - 18,-19: - 1: 13990 - 0: 2056 - 18,-18: - 0: 4096 - 1: 17486 - 18,-21: - 1: 9895 - 0: 2056 - 19,-20: - 0: 3855 - 1: 8432 - 19,-19: - 0: 3855 - 1: 20720 - 19,-18: - 1: 17487 - 19,-21: - 1: 8432 - 0: 3855 - 20,-20: - 1: 8946 - 0: 2056 - 20,-19: - 1: 8946 - 0: 2056 - 20,-18: - 1: 1839 - 0: 8192 - 20,-21: - 1: 8946 - 0: 2056 - 21,-20: - 0: 3855 - 1: 8432 - 21,-19: - 0: 3855 - 1: 20720 - 21,-18: - 1: 21855 - 21,-21: - 1: 8432 - 0: 3855 - 22,-20: - 1: 8995 - 22,-19: - 1: 8995 - 22,-18: - 1: 8739 - 22,-21: - 1: 8995 - 12,-20: - 1: 12288 - 11,-20: - 1: 62464 - 0: 4 - 12,-19: - 0: 57344 - 1: 226 - 11,-19: - 0: 62208 - 12,-18: - 0: 52974 - 11,-18: - 0: 61695 - 13,-18: - 0: 43774 - 13,-20: - 1: 4403 - 0: 19072 - 13,-21: - 1: 29937 - 0: 2048 - 13,-19: - 1: 1 - 0: 61120 - 14,-20: - 0: 3838 - 14,-19: - 0: 65294 - 14,-18: - 0: 65535 - 14,-21: - 0: 60928 - 15,-21: - 0: 25088 - 1: 35022 - 8,-20: - 1: 15 - 7,-20: - 1: 13119 - 8,-19: - 1: 52992 - 7,-19: - 1: 16163 - 8,-18: - 0: 40209 - 1: 12 - 7,-18: - 0: 140 - 1: 29491 - 8,-21: - 1: 17487 - 9,-20: - 1: 34959 - 9,-19: - 1: 6016 - 9,-18: - 1: 1 - 0: 62912 - 9,-21: - 1: 34959 - 10,-20: - 1: 62532 - 10,-19: - 0: 65024 - 1: 5 - 10,-18: - 0: 63743 - 10,-21: - 1: 62543 - 4,-20: - 0: 65535 - 4,-21: - 0: 61695 - 3,-20: - 0: 65535 - 4,-19: - 0: 255 - 5: 57344 - 3,-19: - 0: 13311 - 1: 32768 - 4,-18: - 5: 238 - 0: 61440 - 3,-18: - 1: 136 - 0: 62259 - 4,-17: - 0: 65535 - 5,-20: - 0: 30583 - 5,-19: - 0: 8823 - 1: 32768 - 5,-18: - 0: 12839 - 1: 34952 - 5,-17: - 0: 13107 - 1: 34952 - 5,-21: - 0: 28927 - 5,-16: - 0: 13107 - 1: 34952 - 6,-20: - 1: 65535 - 6,-19: - 1: 65311 - 6,-18: - 1: 65535 - 6,-21: - 1: 21580 - 0: 17 - 6,-17: - 6: 224 - 5: 57344 - 7,-17: - 1: 8738 - 5,-15: - 0: 49075 - 5,-14: - 0: 49081 - 6,-16: + -36,2: + 0: 2287 + -35,2: + 0: 61439 + -35,3: + 0: 8 + -34,2: + 0: 65393 + 1: 14 + -34,3: + 0: 3311 + -34,1: + 1: 57344 + -33,1: 1: 61440 - 5: 224 - 6,-15: - 0: 65520 - 6,-14: - 0: 65535 - -4,-20: - 0: 28979 - -4,-21: - 0: 13056 - -5,-20: - 0: 49288 - 1: 4369 - -4,-19: - 0: 32767 - -5,-19: - 0: 56780 - 1: 1 - -4,-18: - 0: 65521 - -5,-18: - 0: 65521 - -3,-20: - 0: 28672 - 1: 96 - -3,-19: - 0: 30711 - -3,-18: - 0: 65520 - -3,-21: - 0: 52430 - -2,-20: - 0: 3855 - -2,-19: - 0: 65535 - -2,-18: - 0: 65534 - -2,-21: - 0: 61824 - 1: 120 - -1,-18: - 0: 61422 - -1,-21: - 0: 61440 - 1: 2290 - -1,-20: - 0: 61152 - -1,-19: - 0: 36590 - 0,-20: - 0: 15160 - 0,-19: - 0: 35771 - 0,-18: - 0: 65531 - -8,-19: - 0: 13104 - 1: 34824 - -9,-19: - 0: 34944 - 1: 8192 - -8,-18: - 0: 4369 - 1: 3072 - -9,-17: - 0: 36608 - -7,-18: - 0: 61166 - -7,-19: - 1: 1024 - -6,-18: - 0: 48051 - -6,-19: - 1: 524 - 0: 34816 - -6,-20: - 1: 17476 - 0: 32768 - -6,-21: - 1: 17476 - -5,-21: - 1: 4369 - 0: 34816 - -12,-16: - 1: 20292 - 0: 10 - -13,-16: - 1: 20292 - 0: 10 - -12,-15: - 1: 17732 - 0: 43690 - -13,-15: - 0: 43690 - 1: 17732 - -12,-14: - 1: 49060 - 0: 10 - -13,-14: - 1: 65444 - 0: 10 - -12,-13: - 1: 62 - -12,-17: - 0: 43690 - 1: 17732 - -11,-16: - 1: 8994 - 0: 3072 - -11,-15: - 1: 15922 - -11,-14: - 1: 62434 - -11,-17: - 1: 32434 - -10,-16: - 0: 61408 - -10,-14: - 1: 28672 - 0: 232 - -10,-15: - 0: 59616 - -10,-17: - 1: 34963 - -12,-18: - 1: 44800 - -13,-18: - 1: 44800 - -13,-17: - 0: 43690 - 1: 17732 - -11,-18: - 1: 8960 - -10,-18: - 1: 27776 - -9,-18: - 1: 1811 - 0,-21: - 0: 61568 - 1: 122 - 1,-20: - 0: 1799 - 1,-19: - 0: 65535 - 1,-18: - 0: 56785 - 1,-21: - 0: 64648 - 1: 112 - 2,-20: - 0: 39865 - 2,-19: - 0: 49147 - 2,-18: - 0: 48049 - 2,-21: - 0: 45981 - 3,-21: - 0: 62463 - 0,-24: - 0: 64512 - 1: 136 - -1,-24: - 0: 61696 - 1: 136 - 0,-23: - 1: 64120 - 0: 128 - -1,-23: - 1: 62200 - 0,-22: - 0: 2441 - 1: 62002 - -1,-22: - 1: 64234 - 0: 1028 - 0,-25: - 1: 36744 - 1,-24: - 0: 62208 - 1: 136 - 1,-23: - 1: 112 - 0: 34956 - 1,-22: - 1: 112 - 0: 34952 - 1,-25: - 1: 36736 - 2,-23: - 0: 56797 - 2,-22: - 0: 56797 - 2,-24: - 0: 32768 - 3,-24: - 0: 61440 - 1: 231 - 3,-23: - 0: 65535 - 3,-22: - 0: 65535 - 3,-25: - 1: 16128 - 4,-24: - 0: 61440 - 4,-23: - 0: 3823 - 5: 57344 - -4,-24: - 1: 310 - -5,-24: - 1: 51200 - -4,-23: - 1: 61440 - -5,-23: - 1: 53558 - -4,-22: - 1: 240 - -5,-22: - 1: 4593 - 0: 4 - -4,-25: - 1: 51200 - -3,-23: - 1: 4352 - 0: 52462 - -3,-22: - 1: 16 - 0: 61132 - -3,-24: - 0: 32768 - 1: 136 - -3,-25: - 1: 36342 - -2,-24: + -33,2: + 1: 2207 0: 63232 - 1: 136 - -2,-23: - 0: 129 - 1: 34936 - -2,-22: - 1: 32880 - 0: 2184 - -2,-25: - 1: 36744 - -1,-25: - 1: 36744 - 4,-22: - 5: 238 - 0: 60928 - 5,-24: + -32,1: + 1: 61440 + -32,2: + 1: 1103 0: 61440 - 1: 31 - 5,-23: - 0: 36591 - 5,-22: - 0: 61071 - 5,-25: - 1: 4352 - 6,-24: - 1: 17479 - 0: 4096 - 6,-23: - 0: 4369 - 1: 52428 - 6,-22: - 0: 4369 - 1: 52428 - 7,-23: - 1: 30591 - 7,-22: - 1: 30583 - 7,-21: - 1: 15 - 8,-23: - 1: 8739 - 8,-22: - 1: 8738 - 11,-21: - 1: 79 - 12,-21: - 1: 32783 - -6,-23: - 1: 27776 - -6,-22: - 1: 49346 - -15,-16: - 1: 23391 - 0: 1024 - -15,-15: - 1: 34959 - -15,-17: - 1: 34952 - -14,-16: - 1: 20292 - 0: 10 - -14,-15: - 1: 21588 - 0: 43690 - -15,-14: - 1: 2184 - -14,-14: - 1: 36772 - 0: 10 - -14,-17: - 0: 43690 - 1: 21588 - -15,-18: - 1: 34816 - -14,-18: - 1: 44800 - -15,9: - 1: 19532 - -15,10: - 1: 12 - -14,9: - 0: 3855 - 1: 41200 - -14,10: - 1: 15 - -13,9: - 0: 257 - 1: 17652 - -13,10: - 1: 62901 - 0: 64 - -12,9: - 1: 41200 - 0: 3855 - -12,10: + -31,1: + 1: 61440 + -31,2: + 1: 559 + 0: 12288 + -30,1: + 1: 61440 + -30,2: 1: 4383 - -11,9: - 0: 257 - 1: 50774 - -11,10: - 1: 17479 - -11,11: - 1: 17604 - -11,12: - 1: 196 - -10,9: - 1: 4369 - 0: 52420 - -10,10: - 1: 1 - 0: 61132 - -10,11: - 0: 3278 - -10,12: - 1: 3634 - -4,13: - 0: 255 - 1: 28672 - -5,13: + -29,2: 1: 61440 - -4,14: - 1: 3916 - -5,14: - 1: 3840 - -3,13: - 0: 221 - -3,14: - 1: 3855 - -2,13: - 0: 3 - 1: 9728 - -2,14: - 1: 1839 - -1,14: - 1: 1 - 9,9: - 1: 34952 - 10,9: - 1: 16865 - 0: 3598 - 9,10: + -28,2: + 1: 61440 + -27,2: + 1: 28896 + -26,2: + 1: 8944 + 1,15: + 0: 272 + -33,36: + 1: 47513 + -32,37: + 1: 48127 + -33,37: + 1: 39359 + -32,38: + 1: 43707 + -33,38: + 1: 39321 + -32,39: + 1: 15 + -33,39: + 1: 31 + -31,37: + 1: 48127 + -31,38: + 1: 43707 + -31,39: + 1: 15 + -30,37: + 1: 48127 + -30,38: + 1: 43707 + -30,39: + 1: 15 + -29,38: + 1: 8755 + -29,39: + 1: 15 + 1,60: + 1: 15 + -3,60: 1: 8 - 10,10: - 1: 15 - 11,9: - 0: 771 - 1: 39160 - 11,10: - 1: 60011 - 0: 128 - 12,9: - 1: 16624 - 0: 3598 - 12,10: - 1: 12862 - 13,9: - 0: 771 - 1: 40124 - 13,10: - 1: 15 - -9,12: - 1: 3840 - -7,13: - 1: 58167 - -7,14: - 1: 3072 - -6,13: - 1: 64160 - -6,14: - 1: 3976 - 20,-23: - 1: 61440 - 19,-23: + -34,36: 1: 32768 - 20,-22: - 1: 10970 - 0: 32 - 19,-22: - 1: 24456 - 21,-22: - 1: 24320 - 22,-22: - 1: 8960 - 16,-23: - 1: 36608 - 15,-23: - 1: 34816 - 16,-22: - 1: 35064 - 15,-22: - 1: 34952 - 17,-23: - 1: 36608 - 17,-22: - 1: 248 - 18,-23: - 1: 61440 - 18,-22: - 1: 11912 - -3,-26: - 1: 17408 - 0: 34944 - -2,-26: - 0: 61680 - -1,-26: - 0: 61680 - 0,-26: - 0: 61680 - 1,-26: - 0: 63728 - 2,-26: - 1: 12544 - 2,-25: - 1: 36343 - 4,-25: - 1: 3840 + -34,37: + 1: 136 + -34,39: + 1: 8 + -34,35: + 1: 8 + -33,34: + 1: 4096 + -15,33: + 0: 5895 + -15,34: + 0: 1 + 1: 60 + -14,33: + 0: 3 + 1: 5768 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -14825,11 +12709,26 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: - - 27.225372 - - 102.419266 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -14840,99065 +12739,93115 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - - type: OccluderTree - - type: Shuttle - - type: RadiationGridResistance - - type: GravityShake - shakeTimes: 10 - type: GasTileOverlay - - type: SpreaderGrid - - type: GridPathfinding + - type: RadiationGridResistance + - type: Joint + joints: + docking457717: !type:WeldJoint + bodyB: 37842 + bodyA: 2 + id: docking457717 + localAnchorB: -3,-1.5 + localAnchorA: -8.5,8 + referenceAngle: 1.5707964 + damping: 753.6482 + stiffness: 6764.7305 + docking457716: !type:WeldJoint + bodyB: 37842 + bodyA: 2 + id: docking457716 + localAnchorB: -3,0.5 + localAnchorA: -10.5,8 + referenceAngle: 1.5707964 + damping: 753.6482 + stiffness: 6764.7305 + docking168406: !type:WeldJoint + bodyB: 21114 + bodyA: 2 + id: docking168406 + localAnchorB: 6,1.5 + localAnchorA: -50,100.5 + damping: 433.784 + stiffness: 3893.6365 + docking51973: !type:WeldJoint + bodyB: 30902 + bodyA: 2 + id: docking51973 + localAnchorB: 2.5,-4 + localAnchorA: -0.5,161 + referenceAngle: 3.1415927 + damping: 621.39874 + stiffness: 5577.6626 + docking51974: !type:WeldJoint + bodyB: 30902 + bodyA: 2 + id: docking51974 + localAnchorB: 0.49999997,-4 + localAnchorA: 1.5,161 + referenceAngle: 3.1415927 + damping: 621.39874 + stiffness: 5577.6626 + docking15994: !type:WeldJoint + bodyB: 13386 + bodyA: 2 + id: docking15994 + localAnchorB: 5,0.49999997 + localAnchorA: 42.5,68 + referenceAngle: 4.712389 + damping: 922.5353 + stiffness: 8280.658 + - type: BecomesStation + id: Gate + - type: FTLDestination - type: NavMap - - uid: 3 + - uid: 13386 components: - type: MetaData - - type: Transform - pos: 5.5,-13.5 - parent: 2 - - uid: 5 - components: - - type: MetaData - name: solution - food - - type: Transform - parent: 4 - - type: Solution - solution: - maxVol: 1 - name: food - reagents: - - data: [] - ReagentId: Fiber - Quantity: 1 - - type: ContainedSolution - containerName: food - container: 4 - - uid: 23620 - components: - - type: MetaData - name: solution - food - - type: Transform - parent: 23606 - - type: Solution - solution: - maxVol: 30 - name: food - reagents: - - data: [] - ReagentId: Fiber - Quantity: 30 - - type: ContainedSolution - containerName: food - container: 23606 - - uid: 30817 - components: - - type: MetaData - name: solution - food - - type: Transform - parent: 30816 - - type: Solution - solution: - maxVol: 1 - name: food - reagents: - - data: [] - ReagentId: Fiber - Quantity: 1 - - type: ContainedSolution - containerName: food - container: 30816 -- proto: AcousticGuitarInstrument - entities: - - uid: 6 - components: - - type: Transform - pos: 31.571953,21.43236 - parent: 2 - - uid: 8 - components: - - type: Transform - pos: 28.395172,-8.445005 - parent: 2 - - uid: 9 - components: - - type: Transform - pos: -58.55762,-61.482254 - parent: 2 - - uid: 10 - components: - - type: Transform - pos: 1.5165133,30.497892 - parent: 2 - - uid: 21435 - components: - - type: Transform - pos: 9.494503,-68.45696 - parent: 2 - - uid: 29559 - components: - - type: Transform - pos: 57.495346,-62.54486 - parent: 2 -- proto: ActionToggleInternals - entities: - - uid: 23169 - components: - - type: Transform - parent: 22849 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 22849 - - uid: 23211 - components: - - type: Transform - parent: 23210 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 23210 -- proto: AirAlarm - entities: - - uid: 12 - components: - - type: Transform - pos: 47.5,-21.5 - parent: 2 - - type: DeviceList - devices: - - 17546 - - 17750 - - uid: 13 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-35.5 - parent: 2 - - type: DeviceList - devices: - - 17548 - - 17752 - - 626 - - uid: 15 - components: - - type: Transform - pos: 11.5,13.5 - parent: 2 - - type: DeviceList - devices: - - 653 - - 17608 - - 17808 - - 26154 - - 31463 - - 26908 - - 31464 - - 17799 - - 17601 - - 17798 - - 17602 - - 17609 - - 17806 - - 13599 - - 13600 - - 13614 - - 13615 - - 31468 - - 31467 - - uid: 16 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 2 - - type: DeviceList - devices: - - 17596 - - 17795 - - 640 - - uid: 17 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-27.5 - parent: 2 - - type: DeviceList - devices: - - 13688 - - 13689 - - 13686 - - 13701 - - 13707 - - 13708 - - 651 - - 17787 - - 17588 - - uid: 18 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-15.5 - parent: 2 - - type: DeviceList - devices: - - 631 - - 17840 - - 17640 - - 29433 - - 29434 - - 29432 - - 13855 - - 13856 - - 13857 - - 13620 - - 13621 - - 13710 - - 13712 - - 13711 - - uid: 19 - components: - - type: Transform - pos: -30.5,-23.5 - parent: 2 - - type: DeviceList - devices: - - 17582 - - 17781 - - uid: 20 - components: - - type: Transform - pos: -27.5,-18.5 - parent: 2 - - type: DeviceList - devices: - - 21618 - - 13716 - - 13604 - - 13601 - - 13603 - - 13602 - - 648 - - 17779 - - 17580 - - uid: 21 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-6.5 - parent: 2 - - type: DeviceList - devices: - - 700 - - 13851 - - 13850 - - 13759 - - 13763 - - 13650 - - 13762 - - 13800 - - 13801 - - 17855 - - 17658 - - 17657 - - 17854 - - uid: 22 - components: - - type: Transform - pos: 4.5,-50.5 - parent: 2 - - type: DeviceList - devices: - - 635 - - 13818 - - 13776 - - 13777 - - 13819 - - 17762 - - 17561 - - 16535 - - uid: 23 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-64.5 - parent: 2 - - type: DeviceList - devices: - - 17549 - - 17753 - - 628 - - uid: 24 - components: - - type: Transform - pos: -3.5,-50.5 - parent: 2 - - type: DeviceList - devices: - - 13616 - - 13608 - - 13606 - - 13609 - - 13619 - - 13605 - - 623 - - 17562 - - 17763 - - uid: 26 - components: - - type: Transform - pos: -12.5,-10.5 - parent: 2 - - type: DeviceList - devices: - - 17757 - - 17557 - - 632 - - uid: 27 - components: - - type: Transform - pos: 1.5,-39.5 - parent: 2 - - type: DeviceList - devices: - - 13605 - - 13619 - - 13609 - - 13779 - - 17570 - - 633 - - 17772 - - 17572 - - 13606 - - 13608 - - 13616 - - 624 - - 17746 - - 13307 - - 13597 - - 13241 - - uid: 28 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-42.5 - parent: 2 - - type: DeviceList - devices: - - 13779 - - 17749 - - 17545 - - uid: 29 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-56.5 - parent: 2 - - type: DeviceList - devices: - - 14131 - - 17032 - - 17034 - - 30002 - - 29996 - - 4196 - - 30001 - - uid: 31 - components: - - type: Transform - pos: -2.5,-28.5 - parent: 2 - - type: DeviceList - devices: - - 637 - - 13692 - - 13720 - - 13719 - - 17774 - - 17574 - - 13307 - - 13597 - - 13241 - - uid: 32 - components: - - type: Transform - pos: -13.5,-28.5 - parent: 2 - - type: DeviceList - devices: - - 13692 - - 13720 - - 13719 - - 638 - - 13675 - - 13671 - - 13722 - - 13690 - - 13691 - - 13764 - - 13758 - - 17575 - - 17775 - - 17784 - - 17585 - - 17583 - - 17782 - - uid: 33 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-26.5 - parent: 2 - - type: DeviceList - devices: - - 639 - - 13672 - - uid: 35 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 2 - - type: DeviceList - devices: - - 17594 - - 17794 - - 643 - - 17703 - - uid: 36 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 2 - - type: DeviceList - devices: - - 17793 - - 17595 - - 644 - - uid: 37 - components: - - type: Transform - pos: -9.5,0.5 - parent: 2 - - type: DeviceList - devices: - - 13658 - - 13657 - - 13656 - - 13698 - - 13697 - - 13699 - - 646 - - 13753 - - 13754 - - 13755 - - 645 - - 13722 - - 13690 - - 13691 - - 17604 - - 17803 - - 17597 - - 17796 - - 17785 - - 17586 - - uid: 39 - components: - - type: Transform - pos: 14.5,0.5 - parent: 2 - - type: DeviceList - devices: - - 13615 - - 13614 - - 650 - - 13756 - - 13765 - - 13766 - - 13685 - - 13684 - - 13687 - - 17603 - - 17801 - - 17797 - - 17598 - - 7769 - - 7767 - - 13298 - - uid: 40 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-20.5 - parent: 2 - - type: DeviceList - devices: - - 652 - - 13688 - - 13689 - - 13686 - - 13685 - - 13684 - - 13687 - - 13744 - - 13745 - - 13746 - - 17789 - - 17589 - - uid: 41 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-11.5 - parent: 2 - - type: DeviceList - devices: - - 17702 - - 17900 - - uid: 42 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-6.5 - parent: 2 - - type: DeviceList - devices: - - 13725 - - 13726 - - 654 - - 17539 - - 17837 - - 17638 - - 17838 - - 21953 - - 21954 - - uid: 43 - components: - - type: Transform - pos: 32.5,-11.5 - parent: 2 - - type: DeviceList - devices: - - 13746 - - 13745 - - 13744 - - 13815 - - 13816 - - 13649 - - 13752 - - 13761 - - 13740 - - 655 - - 13749 - - 13748 - - 13747 - - 17814 - - 17615 - - uid: 44 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-20.5 - parent: 2 - - type: DeviceList - devices: - - 13649 - - 13651 - - 13757 - - 656 - - 13793 - - 17617 - - 17816 - - uid: 45 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-20.5 - parent: 2 - - type: DeviceList - devices: - - 13757 - - 13651 - - 13752 - - 13761 - - 657 - - 13740 - - 17614 - - 17812 - - 17613 - - 17813 - - uid: 46 - components: - - type: Transform - pos: 40.5,-21.5 - parent: 2 - - type: DeviceList - devices: - - 13796 - - 13797 - - 13670 - - 13717 - - 13780 - - 13781 - - 658 - - 17815 - - 17616 - - uid: 47 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-31.5 - parent: 2 - - type: DeviceList - devices: - - 13706 - - 13669 - - 13674 - - 13673 - - 659 - - 17823 - - 17622 - - uid: 48 - components: - - type: Transform - pos: 45.5,-30.5 - parent: 2 - - type: DeviceList - devices: - - 660 - - 17824 - - 17626 - - uid: 49 - components: - - type: Transform - pos: 37.5,-30.5 - parent: 2 - - type: DeviceList - devices: - - 13706 - - 13669 - - 13780 - - 13781 - - 661 - - 13704 - - 13668 - - 13705 - - 17825 - - 17625 - - uid: 50 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-44.5 - parent: 2 - - type: DeviceList - devices: - - 13704 - - 13668 - - 13705 - - 664 - - 17631 - - 17828 - - 17630 - - 17829 - - 17629 - - 17830 - - 17627 - - 17827 - - 17628 - - 17826 - - uid: 51 - components: - - type: Transform - pos: 42.5,-54.5 - parent: 2 - - type: DeviceList - devices: - - 17635 - - 665 - - 17835 - - 17834 - - 17634 - - 17833 - - 17636 - - 17832 - - 17637 - - 17831 - - 17632 - - uid: 52 - components: - - type: Transform - pos: 54.5,-11.5 - parent: 2 - - type: DeviceList - devices: - - 666 - - 13749 - - 13748 - - 13747 - - 13725 - - 13726 - - 667 - - 17639 - - 17839 - - 17640 - - 17840 - - uid: 53 - components: - - type: Transform - pos: 66.5,4.5 - parent: 2 - - type: DeviceList - devices: - - 668 - - 17714 - - 17910 - - 13863 - - 13864 - - 17907 - - 17716 - - 725 - - 17715 - - 17909 - - uid: 54 - components: - - type: Transform - pos: 60.5,-25.5 - parent: 2 - - type: DeviceList - devices: - - 17650 - - 17649 - - 17848 - - 17844 - - 17643 - - 17743 - - 17552 - - 622 - - 13821 - - 13646 - - 13660 - - 13659 - - uid: 59 - components: - - type: Transform - pos: 62.5,-38.5 - parent: 2 - - type: DeviceList - devices: - - 17850 - - 17652 - - 17851 - - 17653 - - 677 - - 676 - - uid: 60 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-30.5 - parent: 2 - - type: DeviceList - devices: - - 678 - - 17645 - - 17644 - - 17842 - - 17843 - - uid: 61 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-61.5 - parent: 2 - - type: DeviceList - devices: - - 13776 - - 13777 - - 13820 - - 627 - - 17747 - - 17543 - - uid: 62 - components: - - type: Transform - pos: 73.5,-48.5 - parent: 2 - - type: DeviceList - devices: - - 13665 - - 13666 - - 13667 - - 617 - - 17651 - - 17849 - - uid: 63 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-39.5 - parent: 2 - - type: DeviceList - devices: - - 17771 - - 17571 - - 679 - - uid: 64 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-34.5 - parent: 2 - - type: DeviceList - devices: - - 680 - - 17541 - - 17744 - - 13716 - - uid: 65 - components: - - type: Transform - pos: -40.5,-19.5 - parent: 2 - - type: DeviceList - devices: - - 17578 - - 17579 - - 17776 - - uid: 67 - components: - - type: Transform - pos: -23.5,0.5 - parent: 2 - - type: DeviceList - devices: - - 13694 - - 13718 - - 13721 - - 13658 - - 13657 - - 13656 - - 682 - - 17868 - - 17671 - - uid: 69 - components: - - type: Transform - pos: -50.5,0.5 - parent: 2 - - type: DeviceList - devices: - - 13694 - - 13718 - - 13721 - - 684 - - 13696 - - 13700 - - 13695 - - 17866 - - 17669 - - uid: 70 - components: - - type: Transform - pos: -44.5,6.5 - parent: 2 - - type: DeviceList - devices: - - 17863 - - 685 - - 17666 - - uid: 73 - components: - - type: Transform - pos: 8.5,22.5 - parent: 2 - - type: DeviceList - devices: - - 13731 - - 13736 - - 690 - - 691 - - 17679 - - 17876 - - 17878 - - 17680 - - uid: 74 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,19.5 - parent: 2 - - type: DeviceList - devices: - - 17535 - - 17877 - - 692 - - uid: 77 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,40.5 - parent: 2 - - type: DeviceList - devices: - - 17892 - - 17692 - - 695 - - uid: 80 - components: - - type: Transform - pos: -61.5,2.5 - parent: 2 - - type: DeviceList - devices: - - 13759 - - 13763 - - 13650 - - 13762 - - 13696 - - 13700 - - 13695 - - 699 - - 698 - - 17661 - - 17857 - - 17858 - - 17660 - - 13739 - - uid: 81 - components: - - type: Transform - pos: -74.5,11.5 - parent: 2 - - type: DeviceList - devices: - - 701 - - 13801 - - 13800 - - 17656 - - 17853 - - uid: 82 - components: - - type: Transform - pos: -66.5,-12.5 - parent: 2 - - type: DeviceList - devices: - - 702 - - 13799 - - 13798 - - 17655 - - 17754 - - uid: 83 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-7.5 - parent: 2 - - type: DeviceList - devices: - - 703 - - 17663 - - 17860 - - uid: 84 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-37.5 - parent: 2 - - type: DeviceList - devices: - - 704 - - 17624 - - 17822 - - uid: 85 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-76.5 - parent: 2 - - type: DeviceList - devices: - - 17695 - - 17896 - - 710 - - uid: 87 - components: - - type: Transform - pos: -14.5,-67.5 - parent: 2 - - type: DeviceList - devices: - - 10578 - - 8625 - - 10577 - - 14458 - - 14788 - - uid: 88 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-76.5 - parent: 2 - - type: DeviceList - devices: - - 709 - - 17768 - - 17567 - - uid: 89 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-68.5 - parent: 2 - - type: DeviceList - devices: - - 13662 - - 17566 - - 17767 - - uid: 90 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,1.5 - parent: 2 - - type: DeviceList - devices: - - 17718 - - 17911 - - 719 - - 13824 - - 13825 - - 13827 - - 13826 - - 13863 - - 13862 - - uid: 91 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-5.5 - parent: 2 - - type: DeviceList - devices: - - 17717 - - 17912 - - 13640 - - 13637 - - 13636 - - 13638 - - 13639 - - 17719 - - 723 - - 17918 - - 13632 - - 13633 - - 13630 - - 13631 - - uid: 92 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-4.5 - parent: 2 - - type: DeviceList - devices: - - 17917 - - 724 - - 17711 - - 17712 - - 17908 - - 13641 - - 13642 - - uid: 93 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,0.5 - parent: 2 - - type: DeviceList - devices: - - 13626 - - 13627 - - 13612 - - 13613 - - 17905 - - 17726 - - 17521 - - 17713 - - 669 - - 13641 - - 13642 - - uid: 94 - components: - - type: Transform - pos: 78.5,-5.5 - parent: 2 - - uid: 95 - components: - - type: Transform - pos: 78.5,-5.5 - parent: 2 - - type: DeviceList - devices: - - 13710 - - 13712 - - 13711 - - 13634 - - 13635 - - 13865 - - 13866 - - 17914 - - 17720 - - 722 - - uid: 96 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,0.5 - parent: 2 - - type: DeviceList - devices: - - 720 - - 17913 - - 17721 - - 17916 - - 17723 - - 13865 - - uid: 97 - components: - - type: Transform - pos: 27.5,5.5 - parent: 2 - - type: DeviceList - devices: - - 17529 - - 17893 - - 713 - - 17528 - - 17737 - - 13732 - - 13743 - - 13795 - - 13794 - - 13730 - - uid: 98 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-1.5 - parent: 2 - - type: DeviceList - devices: - - 714 - - 17738 - - 17555 - - uid: 99 - components: - - type: Transform - pos: 33.5,-3.5 - parent: 2 - - type: DeviceList - devices: - - 17537 - - 17751 - - 715 - - 13648 - - 13652 - - 13655 - - 13653 - - 13654 - - uid: 100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,33.5 - parent: 2 - - type: DeviceList - devices: - - 621 - - 17527 - - 17736 - - uid: 101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,39.5 - parent: 2 - - type: DeviceList - devices: - - 17899 - - 616 - - 17704 - - uid: 102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-1.5 - parent: 2 - - type: DeviceList - devices: - - 17740 - - 17551 - - uid: 103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,38.5 - parent: 2 - - type: DeviceList - devices: - - 30132 - - 30131 - - 716 - - 30128 - - 30129 - - 717 - - uid: 104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-7.5 - parent: 2 - - type: DeviceList - devices: - - 13628 - - 13629 - - 13623 - - 13622 - - 13624 - - 13625 - - 17710 - - 17906 - - 718 - - uid: 105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-0.5 - parent: 2 - - type: DeviceList - devices: - - 13866 - - 23554 - - 721 - - 17722 - - uid: 106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,2.5 - parent: 2 - - uid: 1107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-42.5 - parent: 2 - - type: DeviceList - devices: - - 11503 - - 11223 - - 11094 - - 11226 - - 11096 - - uid: 1324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-42.5 - parent: 2 - - type: DeviceList - devices: - - 11455 - - 5622 - - 11269 - - 11093 - - 11151 - - uid: 3504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,14.5 - parent: 2 - - type: DeviceList - devices: - - 27155 - - 26800 - - 28606 - - 25909 - - 26799 - - 31467 - - 31468 - - uid: 4407 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-71.5 - parent: 2 - - uid: 4495 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - - type: DeviceList - devices: - - 13648 - - 13652 - - 13655 - - 13653 - - 13654 - - 17538 - - 712 - - 17811 - - 13730 - - 13794 - - 13795 - - 13743 - - 13732 - - 13816 - - 13815 - - uid: 8697 - components: - - type: Transform - pos: -16.5,-71.5 - parent: 2 - - uid: 10831 - components: - - type: Transform - pos: -1.5,-20.5 - parent: 2 - - type: DeviceList - devices: - - 22309 - - 13592 - - 22429 - - uid: 14983 - components: - - type: Transform - pos: -21.5,-14.5 - parent: 2 - - type: DeviceList - devices: - - 21472 - - 21475 - - 649 - - 21474 - - 21473 - - uid: 14987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-77.5 - parent: 2 - - type: DeviceList - devices: - - 14988 - - 4122 - - 14043 - - uid: 15115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-49.5 - parent: 2 - - type: DeviceList - devices: - - 5969 - - 17033 - - 25883 - - 953 - - 14984 - - 14146 - - uid: 15732 - components: - - type: Transform - pos: -18.5,25.5 - parent: 2 - - type: DeviceList - devices: - - 15869 - - 17675 - - uid: 17417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-36.5 - parent: 2 - - type: DeviceList - devices: - - 277 - - 29988 - - 18132 - - uid: 17452 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,14.5 - parent: 2 - - type: DeviceList - devices: - - 17871 - - 17673 - - 688 - - 13298 - - 7767 - - 7769 - - 13698 - - 13697 - - 13699 - - 7986 - - 7570 - - 17870 - - 689 - - 17674 - - uid: 17459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-33.5 - parent: 2 - - type: DeviceList - devices: - - 11736 - - 16263 - - 14382 - - 5377 - - 12864 - - uid: 19153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-65.5 - parent: 2 - - type: DeviceList - devices: - - 17121 - - 18478 - - 17252 - - 15148 - - 17310 - - uid: 20129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,13.5 - parent: 2 - - uid: 20365 - components: - - type: Transform - pos: 32.5,20.5 - parent: 2 - - type: DeviceList - devices: - - 20022 - - 20269 - - 20904 - - 20389 - - 20510 - - 20491 - - 20492 - - 20493 - - 20494 - - 20511 - - 20512 - - 20513 - - 20311 - - 20334 - - 20307 - - 20024 - - 20309 - - 20119 - - uid: 20388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,12.5 - parent: 2 - - type: DeviceList - devices: - - 20021 - - 20130 - - 20389 - - 20510 - - 20491 - - 20492 - - 20493 - - 20494 - - 20511 - - 20512 - - 20513 - - 20884 - - uid: 21141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-10.5 - parent: 2 - - type: DeviceList - devices: - - 17790 - - 17590 - - 642 - - 17591 - - 17791 - - 22239 - - 22380 - - uid: 22027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,18.5 - parent: 2 - - type: DeviceList - devices: - - 22193 - - 22198 - - 22194 - - 22192 - - 22195 - - 21867 - - 21866 - - 21865 - - 21864 - - 21849 - - uid: 22509 - components: - - type: Transform - pos: -1.5,-12.5 - parent: 2 - - type: DeviceList - devices: - - 11519 - - 20084 - - uid: 25482 - components: - - type: Transform - pos: -9.5,38.5 - parent: 2 - - type: DeviceList - devices: - - 17047 - - 11129 - - 17887 - - 3052 - - 25484 - - uid: 25483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,43.5 - parent: 2 - - type: DeviceList - devices: - - 17533 - - 17733 - - 17732 - - 17525 - - 17526 - - 17731 - - 17532 - - 17734 - - uid: 25632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,32.5 - parent: 2 - - type: DeviceList - devices: - - 17518 - - 694 - - 13714 - - 17891 - - uid: 25633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,38.5 - parent: 2 - - type: DeviceList - devices: - - 25622 - - 25631 - - 25623 - - 25608 - - 25626 - - uid: 27405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-6.5 - parent: 2 - - type: DeviceList - devices: - - 31718 - - 31694 - - 1023 - - 27550 - - uid: 29429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-20.5 - parent: 2 - - type: DeviceList - devices: - - 17554 - - 29403 - - 29431 - - 29432 - - 29434 - - 29433 - - 13728 - - 13724 - - uid: 29439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-32.5 - parent: 2 - - type: DeviceList - devices: - - 29436 - - 29438 - - 29437 - - 13822 - - 13823 - - 13821 - - 13646 - - 629 - - 17650 - - 29404 - - 29405 - - 17848 - - 17649 - - 17652 - - 17850 - - 676 - - 13677 - - 13676 - - 13678 - - uid: 29440 - components: - - type: Transform - pos: 73.5,-25.5 - parent: 2 - - type: DeviceList - devices: - - 29442 - - 29406 - - 29407 - - 13823 - - 13822 - - uid: 29441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-22.5 - parent: 2 - - type: DeviceList - devices: - - 670 - - 17641 - - 17756 - - 13728 - - uid: 29740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,3.5 - parent: 2 - - type: DeviceList - devices: - - 29628 - - 29634 - - 29632 - - 29633 - - 17115 - - 29630 - - 29627 - - 29631 - - uid: 29741 - components: - - type: Transform - pos: -7.5,18.5 - parent: 2 - - type: DeviceList - devices: - - 29621 - - 29624 - - 29620 - - 29635 - - 29625 - - 29623 - - 29619 - - 29618 - - 29636 - - 29622 - - uid: 29968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,32.5 - parent: 2 - - type: DeviceList - devices: - - 17540 - - 17735 - - 17729 - - 17556 - - 29969 - - uid: 29991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-34.5 - parent: 2 - - type: DeviceList - devices: - - 607 - - 29990 - - 606 - - uid: 30133 - components: - - type: Transform - pos: 24.5,44.5 - parent: 2 - - type: DeviceList - devices: - - 30022 - - 717 - - 30026 - - 30025 - - 30021 - - 30024 - - 30134 - - 30023 - - uid: 31424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 2 - - type: DeviceList - devices: - - 31363 - - 31362 - - 31428 - - uid: 31425 - components: - - type: Transform - pos: 26.5,23.5 - parent: 2 - - type: DeviceList - devices: - - 31394 - - 31388 - - 31387 - - 31399 - - 19602 - - uid: 31896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-36.5 - parent: 2 - - type: DeviceList - devices: - - 22879 - - 10564 - - 10565 - - 22881 - - 30784 - - 22848 - - 31897 - - uid: 32132 - components: - - type: Transform - pos: -29.5,10.5 - parent: 2 - - type: DeviceList - devices: - - 32133 - - 32069 - - 32070 - - 32068 - - 32071 -- proto: AirCanister - entities: - - uid: 107 - components: - - type: Transform - pos: -43.5,16.5 - parent: 2 - - uid: 108 - components: - - type: Transform - pos: -44.5,16.5 - parent: 2 - - uid: 109 - components: - - type: Transform - pos: 39.5,8.5 - parent: 2 - - uid: 110 - components: - - type: Transform - pos: 39.5,7.5 - parent: 2 - - uid: 111 - components: - - type: Transform - pos: 36.5,-69.5 - parent: 2 - - uid: 116 - components: - - type: Transform - pos: -41.5,10.5 - parent: 2 - - uid: 117 - components: - - type: Transform - pos: -52.5,-10.5 - parent: 2 - - uid: 118 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 2 - - uid: 119 - components: - - type: Transform - pos: -21.5,-38.5 - parent: 2 - - uid: 120 - components: - - type: Transform - pos: 1.5,-47.5 - parent: 2 - - uid: 123 - components: - - type: Transform - pos: 44.5,-38.5 - parent: 2 - - uid: 124 - components: - - type: Transform - pos: 43.5,-38.5 - parent: 2 - - uid: 125 - components: - - type: Transform - pos: 86.5,-47.5 - parent: 2 - - uid: 126 - components: - - type: Transform - pos: 86.5,-48.5 - parent: 2 - - uid: 127 - components: - - type: Transform - pos: 69.5,-59.5 - parent: 2 - - uid: 128 - components: - - type: Transform - pos: -21.5,51.5 - parent: 2 - - uid: 133 - components: - - type: Transform - pos: 36.5,26.5 - parent: 2 - - uid: 9462 - components: - - type: Transform - pos: 76.5,-44.5 - parent: 2 - - uid: 9463 - components: - - type: Transform - pos: 76.5,-43.5 - parent: 2 - - uid: 13881 - components: - - type: Transform - pos: 51.5,17.5 - parent: 2 - - uid: 14698 - components: - - type: Transform - pos: 26.5,-48.5 - parent: 2 - - uid: 25787 - components: - - type: Transform - pos: 27.5,32.5 - parent: 2 -- proto: Airlock - entities: - - uid: 134 - components: - - type: Transform - pos: 14.5,2.5 - parent: 2 - - type: Door - secondsUntilStateChange: -47868.25 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - uid: 135 - components: - - type: Transform - pos: 16.5,2.5 - parent: 2 - - uid: 136 - components: - - type: Transform - pos: 12.5,7.5 - parent: 2 - - uid: 138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 2 - - uid: 140 - components: - - type: Transform - pos: 12.5,0.5 - parent: 2 - - uid: 146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-4.5 - parent: 2 - - uid: 148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,14.5 - parent: 2 - - uid: 754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,8.5 - parent: 2 - - uid: 1150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,14.5 - parent: 2 - - uid: 3230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,35.5 - parent: 2 - - uid: 5774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 2 - - type: Door - secondsUntilStateChange: -51356.586 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - uid: 11346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,33.5 - parent: 2 - - uid: 20037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,31.5 - parent: 2 - - uid: 23413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,5.5 - parent: 2 - - uid: 30278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,34.5 - parent: 2 - - uid: 30289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,33.5 - parent: 2 - - uid: 30700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,34.5 - parent: 2 -- proto: AirlockArmoryGlassLocked - entities: - - uid: 152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,31.5 - parent: 2 - - uid: 153 - components: - - type: Transform - pos: 2.5,29.5 - parent: 2 -- proto: AirlockAssembly - entities: - - uid: 21538 - components: - - type: Transform - pos: -35.5,36.5 - parent: 2 -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-45.5 - parent: 2 - - uid: 384 - components: - - type: Transform - pos: 20.5,-55.5 - parent: 2 - - uid: 1236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-53.5 - parent: 2 - - uid: 4206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-52.5 - parent: 2 - - uid: 4450 - components: - - type: Transform - pos: 19.5,-55.5 - parent: 2 - - uid: 11055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-57.5 - parent: 2 - - uid: 13265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-50.5 - parent: 2 - - uid: 14435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-53.5 - parent: 2 - - uid: 15001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-44.5 - parent: 2 - - uid: 16773 - components: - - type: Transform - pos: 12.5,-50.5 - parent: 2 -- proto: AirlockAtmosphericsLocked - entities: - - uid: 159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-47.5 - parent: 2 - - uid: 160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,4.5 - parent: 2 - - uid: 161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-39.5 - parent: 2 - - uid: 165 - components: - - type: Transform - pos: -43.5,13.5 - parent: 2 - - uid: 166 - components: - - type: Transform - pos: 43.5,-41.5 - parent: 2 - - uid: 268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-50.5 - parent: 2 - - uid: 278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-81.5 - parent: 2 - - uid: 4138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-47.5 - parent: 2 - - uid: 10620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-74.5 - parent: 2 - - uid: 10691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-73.5 - parent: 2 - - uid: 14038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-48.5 - parent: 2 - - uid: 21375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,32.5 - parent: 2 - - uid: 28871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-81.5 - parent: 2 - - uid: 28992 - components: - - type: Transform - pos: 12.5,-71.5 - parent: 2 - - uid: 28993 - components: - - type: Transform - pos: 13.5,-71.5 - parent: 2 -- proto: AirlockBarLocked - entities: - - uid: 167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-0.5 - parent: 2 - - uid: 168 - components: - - type: Transform - pos: 25.5,1.5 - parent: 2 -- proto: AirlockBlueShieldLocked - entities: - - uid: 169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 2 - - uid: 170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 2 -- proto: AirlockBrigGlassLocked - entities: - - uid: 171 - components: - - type: Transform - pos: 6.5,25.5 - parent: 2 - - uid: 175 - components: - - type: Transform - pos: 4.5,25.5 - parent: 2 - - uid: 176 - components: - - type: Transform - pos: 4.5,22.5 - parent: 2 - - uid: 177 - components: - - type: Transform - pos: 6.5,22.5 - parent: 2 - - uid: 11542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,4.5 - parent: 2 -- proto: AirlockBrigLocked - entities: - - uid: 179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,27.5 - parent: 2 - - uid: 16462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,30.5 - parent: 2 - - uid: 24209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,35.5 - parent: 2 -- proto: AirlockCaptainLocked - entities: - - uid: 184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-3.5 - parent: 2 - - uid: 185 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 2 - - uid: 186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-20.5 - parent: 2 - - uid: 187 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 2 - - uid: 210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-25.5 - parent: 2 - - uid: 22072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 2 -- proto: AirlockCargoGlassLocked - entities: - - uid: 188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-30.5 - parent: 2 - - uid: 190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-18.5 - parent: 2 - - uid: 192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-26.5 - parent: 2 - - uid: 193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-25.5 - parent: 2 - - uid: 194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-21.5 - parent: 2 - - uid: 195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-20.5 - parent: 2 -- proto: AirlockCargoLocked - entities: - - uid: 32126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-20.5 - parent: 2 - - uid: 32127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-16.5 - parent: 2 -- proto: AirlockChapelGlassLocked - entities: - - uid: 197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-0.5 - parent: 2 -- proto: AirlockChapelLocked - entities: - - uid: 198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-5.5 - parent: 2 - - uid: 199 - components: - - type: Transform - pos: 69.5,-1.5 - parent: 2 - - uid: 200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-1.5 - parent: 2 - - uid: 201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,0.5 - parent: 2 - - uid: 202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,2.5 - parent: 2 -- proto: AirlockChemistryLocked - entities: - - uid: 203 - components: - - type: MetaData - name: Chemistry - - type: Transform - pos: 19.5,-23.5 - parent: 2 -- proto: AirlockChiefEngineerLocked - entities: - - uid: 253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-56.5 - parent: 2 - - uid: 9916 - components: - - type: Transform - pos: 8.5,-64.5 - parent: 2 - - uid: 18343 - components: - - type: Transform - pos: -15.5,-77.5 - parent: 2 - - uid: 20224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-71.5 - parent: 2 - - uid: 22836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-71.5 - parent: 2 - - uid: 23548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-67.5 - parent: 2 -- proto: AirlockChiefMedicalOfficerLocked - entities: - - uid: 206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-39.5 - parent: 2 - - uid: 207 - components: - - type: Transform - pos: 37.5,-44.5 - parent: 2 -- proto: AirlockCommandGlassLocked - entities: - - uid: 113 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 2 - - uid: 205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-53.5 - parent: 2 - - uid: 209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-8.5 - parent: 2 - - uid: 212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 2 - - uid: 213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 2 - - uid: 215 - components: - - type: Transform - pos: -6.5,-52.5 - parent: 2 - - uid: 216 - components: - - type: Transform - pos: -20.5,0.5 - parent: 2 - - uid: 217 - components: - - type: Transform - pos: -22.5,0.5 - parent: 2 - - uid: 223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-53.5 - parent: 2 - - uid: 371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 2 - - uid: 1777 - components: - - type: Transform - pos: 2.5,-12.5 - parent: 2 -- proto: AirlockCommandLocked - entities: - - uid: 219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-5.5 - parent: 2 - - uid: 220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-10.5 - parent: 2 - - uid: 22071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 2 -- proto: AirlockDetectiveLocked - entities: - - uid: 10729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,20.5 - parent: 2 -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-56.5 - parent: 2 - - uid: 232 - components: - - type: MetaData - name: Engineering Toolroom - - type: Transform - pos: 8.5,-58.5 - parent: 2 - - uid: 233 - components: - - type: MetaData - name: Engineering Toolroom - - type: Transform - pos: 4.5,-58.5 - parent: 2 - - uid: 235 - components: - - type: Transform - pos: 3.5,-64.5 - parent: 2 - - uid: 238 - components: - - type: Transform - pos: 4.5,-71.5 - parent: 2 - - uid: 239 - components: - - type: Transform - pos: 3.5,-71.5 - parent: 2 - - uid: 22915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-69.5 - parent: 2 - - uid: 23192 - components: - - type: Transform - pos: 4.5,-64.5 - parent: 2 -- proto: AirlockEngineeringLocked - entities: - - uid: 240 - components: - - type: Transform - pos: -0.5,-72.5 - parent: 2 - - uid: 241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,11.5 - parent: 2 - - uid: 242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,4.5 - parent: 2 - - uid: 244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-45.5 - parent: 2 - - uid: 245 - components: - - type: Transform - pos: -49.5,20.5 - parent: 2 - - uid: 247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-35.5 - parent: 2 - - uid: 248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-65.5 - parent: 2 - - uid: 250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-61.5 - parent: 2 - - uid: 251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-71.5 - parent: 2 - - uid: 252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 2 - - uid: 258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-36.5 - parent: 2 - - uid: 259 - components: - - type: MetaData - name: Port Bow Service Power - - type: Transform - pos: -43.5,11.5 - parent: 2 - - uid: 260 - components: - - type: MetaData - name: 'Starboard Bow Solars ' - - type: Transform - pos: 47.5,17.5 - parent: 2 - - uid: 262 - components: - - type: MetaData - name: Medbay Power - - type: Transform - pos: 47.5,-40.5 - parent: 2 - - uid: 263 - components: - - type: MetaData - name: Starboard Quarter Solars - - type: Transform - pos: 81.5,-62.5 - parent: 2 - - uid: 6181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-74.5 - parent: 2 - - uid: 7779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,28.5 - parent: 2 - - uid: 10610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-64.5 - parent: 2 -- proto: AirlockExternal - entities: - - uid: 265 - components: - - type: Transform - pos: -61.5,17.5 - parent: 2 - - uid: 266 - components: - - type: Transform - pos: -61.5,15.5 - parent: 2 -- proto: AirlockExternalCargoLocked - entities: - - uid: 9600 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-39.5 - parent: 2 - - uid: 16883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-37.5 - parent: 2 - - uid: 16892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-37.5 - parent: 2 -- proto: AirlockExternalEngineeringLocked - entities: - - uid: 19358 - components: - - type: Transform - pos: 8.5,-76.5 - parent: 2 - - uid: 25399 - components: - - type: Transform - pos: 8.5,-79.5 - parent: 2 -- proto: AirlockExternalGlass - entities: - - uid: 261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-3.5 - parent: 2 - - uid: 270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 91.5,-29.5 - parent: 2 - - uid: 271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,24.5 - parent: 2 - - uid: 272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-9.5 - parent: 2 - - uid: 273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 91.5,-26.5 - parent: 2 - - uid: 274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,49.5 - parent: 2 - - uid: 287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-11.5 - parent: 2 - - uid: 6544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-9.5 - parent: 2 - - uid: 6601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-1.5 - parent: 2 - - uid: 6699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,29.5 - parent: 2 - - uid: 11306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,27.5 - parent: 2 -- proto: AirlockExternalGlassAtmosphericsLocked - entities: - - uid: 4145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-70.5 - parent: 2 - - uid: 4195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-71.5 - parent: 2 - - uid: 5479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-71.5 - parent: 2 - - uid: 14980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-72.5 - parent: 2 - - uid: 17977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-87.5 - parent: 2 - - uid: 18282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-87.5 - parent: 2 -- proto: AirlockExternalGlassEngineeringLocked - entities: - - uid: 285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-61.5 - parent: 2 -- proto: AirlockExternalGlassLocked - entities: - - uid: 284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-61.5 - parent: 2 - - uid: 288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-13.5 - parent: 2 - - uid: 290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,20.5 - parent: 2 - - uid: 292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-65.5 - parent: 2 - - uid: 293 - components: - - type: Transform - pos: -49.5,26.5 - parent: 2 - - uid: 294 - components: - - type: Transform - pos: -49.5,24.5 - parent: 2 - - uid: 297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-57.5 - parent: 2 - - uid: 300 - components: - - type: Transform - pos: -68.5,-15.5 - parent: 2 - - uid: 301 - components: - - type: Transform - pos: -75.5,-15.5 - parent: 2 - - uid: 318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-65.5 - parent: 2 - - uid: 322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-57.5 - parent: 2 - - uid: 4591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 2 - - uid: 16679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 2 - - uid: 27702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-71.5 - parent: 2 - - uid: 29548 - components: - - type: Transform - pos: 32.5,-69.5 - parent: 2 - - uid: 31984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,15.5 - parent: 2 -- proto: AirlockExternalGlassShuttleArrivalsLocked - entities: - - uid: 307 - components: - - type: Transform - pos: -70.5,7.5 - parent: 2 - - uid: 308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-2.5 - parent: 2 - - uid: 330 - components: - - type: Transform - pos: -77.5,7.5 - parent: 2 - - uid: 895 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-2.5 - parent: 2 -- proto: AirlockExternalGlassShuttleEscape - entities: - - uid: 22397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-9.5 - parent: 2 -- proto: AirlockExternalGlassShuttleGamma - entities: - - uid: 310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,24.5 - parent: 2 -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-3.5 - parent: 2 - - uid: 6599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-1.5 - parent: 2 - - uid: 22488 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-11.5 - parent: 2 - - uid: 22531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-9.5 - parent: 2 -- proto: AirlockExternalLocked - entities: - - uid: 315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-4.5 - parent: 2 - - uid: 316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,9.5 - parent: 2 - - uid: 317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-19.5 - parent: 2 - - uid: 320 - components: - - type: Transform - pos: 81.5,-66.5 - parent: 2 - - uid: 321 - components: - - type: Transform - pos: 81.5,-68.5 - parent: 2 - - uid: 323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-19.5 - parent: 2 - - uid: 324 - components: - - type: Transform - pos: 47.5,23.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 325: - - - DoorStatus - - DoorBolt - - uid: 325 - components: - - type: Transform - pos: 47.5,21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 324: - - - DoorStatus - - DoorBolt -- proto: AirlockExternalShuttleLocked - entities: - - uid: 306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,9.5 - parent: 2 - - uid: 309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-4.5 - parent: 2 - - uid: 331 - components: - - type: Transform - pos: -68.5,-17.5 - parent: 2 - - uid: 920 - components: - - type: Transform - pos: -75.5,-17.5 - parent: 2 - - uid: 921 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-13.5 - parent: 2 -- proto: AirlockFreezer - entities: - - uid: 332 - components: - - type: Transform - pos: -23.5,42.5 - parent: 2 -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 2 - - uid: 377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-9.5 - parent: 2 - - uid: 955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-9.5 - parent: 2 - - uid: 1158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-3.5 - parent: 2 -- proto: AirlockFreezerLocked - entities: - - uid: 334 - components: - - type: MetaData - name: Freezer - - type: Transform - pos: 36.5,-3.5 - parent: 2 -- proto: AirlockGlass - entities: - - uid: 335 - components: - - type: Transform - pos: -13.5,46.5 - parent: 2 - - uid: 336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-49.5 - parent: 2 - - uid: 338 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 2 - - uid: 339 - components: - - type: Transform - pos: 24.5,-11.5 - parent: 2 - - uid: 340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,43.5 - parent: 2 - - uid: 341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,44.5 - parent: 2 - - uid: 342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,45.5 - parent: 2 - - uid: 344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 2 - - uid: 345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,0.5 - parent: 2 - - uid: 346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,0.5 - parent: 2 - - uid: 349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-49.5 - parent: 2 - - uid: 350 - components: - - type: Transform - pos: -31.5,13.5 - parent: 2 - - uid: 351 - components: - - type: MetaData - name: Art Storage - - type: Transform - pos: -33.5,-3.5 - parent: 2 - - uid: 352 - components: - - type: MetaData - name: Auxiliary Tool Storage - - type: Transform - pos: -21.5,-4.5 - parent: 2 - - uid: 353 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 2 - - uid: 354 - components: - - type: Transform - pos: -1.5,-50.5 - parent: 2 - - uid: 355 - components: - - type: Transform - pos: -7.5,46.5 - parent: 2 - - uid: 356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,7.5 - parent: 2 - - uid: 358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-0.5 - parent: 2 - - uid: 359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-0.5 - parent: 2 - - uid: 360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,7.5 - parent: 2 - - uid: 361 - components: - - type: Transform - pos: 0.5,-50.5 - parent: 2 - - uid: 9813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,8.5 - parent: 2 - - uid: 14409 - components: - - type: Transform - pos: -4.5,0.5 - parent: 2 - - uid: 26987 - components: - - type: Transform - pos: 19.5,12.5 - parent: 2 - - type: Door - secondsUntilStateChange: -37745.3 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True -- proto: AirlockGlassShuttle - entities: - - uid: 364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,51.5 - parent: 2 - - uid: 365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-29.5 - parent: 2 - - uid: 366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-26.5 - parent: 2 -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 211 - components: - - type: Transform - pos: -7.5,-28.5 - parent: 2 - - uid: 368 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 2 - - uid: 369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-24.5 - parent: 2 - - uid: 370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-20.5 - parent: 2 -- proto: AirlockHeadOfSecurityLocked - entities: - - uid: 372 - components: - - type: Transform - pos: 15.5,39.5 - parent: 2 -- proto: AirlockHydroGlassLocked - entities: - - uid: 374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-1.5 - parent: 2 -- proto: AirlockJanitorLocked - entities: - - uid: 25668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-3.5 - parent: 2 - - uid: 26213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-5.5 - parent: 2 - - uid: 26864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-9.5 - parent: 2 -- proto: AirlockLawyerGlassLocked - entities: - - uid: 2266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,18.5 - parent: 2 -- proto: AirlockLawyerLocked - entities: - - uid: 7025 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,11.5 - parent: 2 - - uid: 7026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,9.5 - parent: 2 - - uid: 7028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,14.5 - parent: 2 - - uid: 11243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,16.5 - parent: 2 -- proto: AirlockMaint - entities: - - uid: 147 - components: - - type: Transform - pos: 44.5,-64.5 - parent: 2 - - uid: 375 - components: - - type: Transform - pos: 49.5,-66.5 - parent: 2 - - uid: 378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-58.5 - parent: 2 - - uid: 379 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-56.5 - parent: 2 - - uid: 380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-54.5 - parent: 2 - - uid: 381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-62.5 - parent: 2 - - uid: 382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,50.5 - parent: 2 - - uid: 383 - components: - - type: Transform - pos: -23.5,46.5 - parent: 2 -- proto: AirlockMaintAtmoLocked - entities: - - uid: 509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-39.5 - parent: 2 - - uid: 16663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-40.5 - parent: 2 -- proto: AirlockMaintBarLocked - entities: - - uid: 385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,5.5 - parent: 2 - - uid: 386 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,1.5 - parent: 2 -- proto: AirlockMaintBlueShieldLocked - entities: - - uid: 387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-18.5 - parent: 2 -- proto: AirlockMaintCaptainLocked - entities: - - uid: 389 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 2 - - uid: 390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-23.5 - parent: 2 - - uid: 11672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-9.5 - parent: 2 -- proto: AirlockMaintCargoLocked - entities: - - uid: 391 - components: - - type: MetaData - name: 'Delivery Office Maintenance ' - - type: Transform - pos: -26.5,-14.5 - parent: 2 - - uid: 393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-33.5 - parent: 2 - - uid: 394 - components: - - type: MetaData - name: Warehouse Maintenance - - type: Transform - pos: -29.5,-9.5 - parent: 2 - - uid: 395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-30.5 - parent: 2 - - uid: 3460 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-34.5 - parent: 2 - - uid: 6386 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 2 -- proto: AirlockMaintChapelLocked - entities: - - uid: 398 - components: - - type: Transform - pos: 61.5,3.5 - parent: 2 - - uid: 400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,2.5 - parent: 2 - - uid: 2440 - components: - - type: Transform - pos: 69.5,5.5 - parent: 2 -- proto: AirlockMaintCommandLocked - entities: - - uid: 402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,5.5 - parent: 2 - - uid: 403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,9.5 - parent: 2 - - uid: 404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-19.5 - parent: 2 -- proto: AirlockMaintDetectiveLocked - entities: - - uid: 7035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,20.5 - parent: 2 -- proto: AirlockMaintEngiLocked - entities: - - uid: 237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-65.5 - parent: 2 - - uid: 407 - components: - - type: Transform - pos: 61.5,15.5 - parent: 2 - - uid: 409 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-44.5 - parent: 2 - - uid: 878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,5.5 - parent: 2 - - uid: 5556 - components: - - type: Transform - pos: -18.5,-61.5 - parent: 2 - - uid: 7189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-64.5 - parent: 2 - - uid: 9272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,10.5 - parent: 2 - - uid: 24059 - components: - - type: Transform - pos: -17.5,-67.5 - parent: 2 -- proto: AirlockMaintGlassLocked - entities: - - uid: 410 - components: - - type: Transform - pos: -57.5,-21.5 - parent: 2 - - uid: 412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-56.5 - parent: 2 - - uid: 413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-18.5 - parent: 2 - - uid: 414 - components: - - type: Transform - pos: -26.5,-46.5 - parent: 2 - - uid: 415 - components: - - type: Transform - pos: 49.5,-32.5 - parent: 2 - - uid: 416 - components: - - type: Transform - pos: -31.5,-71.5 - parent: 2 - - uid: 417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-28.5 - parent: 2 - - uid: 418 - components: - - type: MetaData - name: the church of the tide - - type: Transform - pos: 43.5,-69.5 - parent: 2 -- proto: AirlockMaintHydroLocked - entities: - - uid: 421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,1.5 - parent: 2 -- proto: AirlockMaintKitchenLocked - entities: - - uid: 423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,1.5 - parent: 2 -- proto: AirlockMaintLawyerLocked - entities: - - uid: 2258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,13.5 - parent: 2 -- proto: AirlockMaintLocked - entities: - - uid: 399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-28.5 - parent: 2 - - uid: 419 - components: - - type: Transform - pos: -57.5,-26.5 - parent: 2 - - uid: 420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,6.5 - parent: 2 - - uid: 425 - components: - - type: Transform - pos: 51.5,-46.5 - parent: 2 - - uid: 429 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 2 - - uid: 430 - components: - - type: Transform - pos: 69.5,-69.5 - parent: 2 - - uid: 431 - components: - - type: MetaData - name: Incinerator - - type: Transform - pos: -33.5,-52.5 - parent: 2 - - uid: 436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,6.5 - parent: 2 - - uid: 437 - components: - - type: Transform - pos: 33.5,6.5 - parent: 2 - - uid: 438 - components: - - type: Transform - pos: -16.5,18.5 - parent: 2 - - uid: 439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-4.5 - parent: 2 - - uid: 440 - components: - - type: Transform - pos: -18.5,18.5 - parent: 2 - - uid: 441 - components: - - type: Transform - pos: 54.5,3.5 - parent: 2 - - uid: 442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,10.5 - parent: 2 - - uid: 443 - components: - - type: Transform - pos: 79.5,-18.5 - parent: 2 - - uid: 444 - components: - - type: Transform - pos: 51.5,-7.5 - parent: 2 - - uid: 445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-4.5 - parent: 2 - - uid: 449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-46.5 - parent: 2 - - uid: 451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-45.5 - parent: 2 - - uid: 453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,6.5 - parent: 2 - - uid: 454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,17.5 - parent: 2 - - uid: 455 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 2 - - uid: 456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,11.5 - parent: 2 - - uid: 458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-13.5 - parent: 2 - - uid: 459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-47.5 - parent: 2 - - uid: 460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-53.5 - parent: 2 - - uid: 461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-52.5 - parent: 2 - - uid: 462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-47.5 - parent: 2 - - uid: 463 - components: - - type: Transform - pos: -17.5,-32.5 - parent: 2 - - uid: 464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-23.5 - parent: 2 - - uid: 465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-28.5 - parent: 2 - - uid: 466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,11.5 - parent: 2 - - uid: 468 - components: - - type: Transform - pos: 49.5,-15.5 - parent: 2 - - uid: 469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-33.5 - parent: 2 - - uid: 470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,3.5 - parent: 2 - - uid: 471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,7.5 - parent: 2 - - uid: 472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-38.5 - parent: 2 - - uid: 473 - components: - - type: Transform - pos: 49.5,-25.5 - parent: 2 - - uid: 474 - components: - - type: Transform - pos: 49.5,-38.5 - parent: 2 - - uid: 475 - components: - - type: Transform - pos: 76.5,-16.5 - parent: 2 - - uid: 476 - components: - - type: Transform - pos: 81.5,-34.5 - parent: 2 - - uid: 477 - components: - - type: Transform - pos: 81.5,-38.5 - parent: 2 - - uid: 478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,14.5 - parent: 2 - - uid: 479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,12.5 - parent: 2 - - uid: 480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,25.5 - parent: 2 - - uid: 481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,8.5 - parent: 2 - - uid: 482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,11.5 - parent: 2 - - uid: 541 - components: - - type: Transform - pos: -55.5,-6.5 - parent: 2 - - uid: 641 - components: - - type: Transform - pos: 2.5,0.5 - parent: 2 - - uid: 933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-38.5 - parent: 2 - - uid: 1269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-27.5 - parent: 2 - - uid: 1817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,16.5 - parent: 2 - - uid: 3353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,12.5 - parent: 2 - - uid: 3365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,12.5 - parent: 2 - - uid: 5418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-41.5 - parent: 2 - - uid: 5601 - components: - - type: Transform - pos: 82.5,-49.5 - parent: 2 - - uid: 5708 - components: - - type: Transform - pos: 85.5,-30.5 - parent: 2 - - uid: 5904 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 2 - - uid: 7470 - components: - - type: Transform - pos: 69.5,7.5 - parent: 2 - - uid: 7736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-21.5 - parent: 2 - - uid: 8429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,23.5 - parent: 2 - - uid: 8895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-60.5 - parent: 2 - - uid: 9212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-16.5 - parent: 2 - - uid: 9417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-59.5 - parent: 2 - - uid: 11152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-63.5 - parent: 2 - - uid: 12282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,12.5 - parent: 2 - - uid: 13295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,12.5 - parent: 2 - - uid: 16396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-33.5 - parent: 2 - - uid: 16881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-16.5 - parent: 2 - - uid: 17460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,3.5 - parent: 2 - - uid: 19947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,1.5 - parent: 2 - - uid: 20818 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 2 - - uid: 20869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-12.5 - parent: 2 - - uid: 22349 - components: - - type: Transform - pos: -42.5,-9.5 - parent: 2 - - uid: 23182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-40.5 - parent: 2 - - uid: 23535 - components: - - type: Transform - pos: -42.5,-4.5 - parent: 2 - - uid: 24253 - components: - - type: Transform - pos: -14.5,1.5 - parent: 2 - - uid: 26530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-5.5 - parent: 2 - - uid: 27428 - components: - - type: Transform - pos: -55.5,-12.5 - parent: 2 - - uid: 31243 - components: - - type: Transform - pos: 65.5,15.5 - parent: 2 - - uid: 31298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,3.5 - parent: 2 - - uid: 31325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-14.5 - parent: 2 - - uid: 31329 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-70.5 - parent: 2 - - uid: 31741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-14.5 - parent: 2 -- proto: AirlockMaintMedLocked - entities: - - uid: 483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-23.5 - parent: 2 - - uid: 484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 - parent: 2 - - uid: 485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 2 - - uid: 486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-42.5 - parent: 2 - - uid: 487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-49.5 - parent: 2 - - uid: 488 - components: - - type: Transform - pos: 25.5,-37.5 - parent: 2 - - uid: 489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-20.5 - parent: 2 - - uid: 490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-47.5 - parent: 2 - - uid: 17949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-44.5 - parent: 2 -- proto: AirlockMaintRnDLocked - entities: - - uid: 494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-40.5 - parent: 2 - - uid: 495 - components: - - type: MetaData - name: Testing Lab Maintenance - - type: Transform - pos: 66.5,-54.5 - parent: 2 - - uid: 1648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-23.5 - parent: 2 - - uid: 5241 - components: - - type: Transform - pos: 78.5,-36.5 - parent: 2 - - uid: 5598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-17.5 - parent: 2 -- proto: AirlockMaintSecLocked - entities: - - uid: 496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,32.5 - parent: 2 - - uid: 497 - components: - - type: MetaData - name: Security Checkpoint Maintenance - - type: Transform - pos: -56.5,6.5 - parent: 2 - - uid: 21535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,35.5 - parent: 2 - - uid: 21980 - components: - - type: Transform - pos: 23.5,26.5 - parent: 2 - - uid: 26242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,35.5 - parent: 2 -- proto: AirlockMaintServiceLocked - entities: - - uid: 498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 2 -- proto: AirlockMaintTheatreLocked - entities: - - uid: 499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 2 -- proto: AirlockMedicalGlassLocked - entities: - - uid: 500 - components: - - type: Transform - pos: 39.5,-25.5 - parent: 2 - - uid: 501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 2 - - uid: 502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 2 - - uid: 503 - components: - - type: Transform - pos: 29.5,-22.5 - parent: 2 - - uid: 504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-29.5 - parent: 2 - - uid: 505 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-24.5 - parent: 2 - - uid: 506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-28.5 - parent: 2 - - uid: 507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-47.5 - parent: 2 - - uid: 508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-35.5 - parent: 2 - - uid: 510 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 2 - - uid: 511 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 2 - - uid: 512 - components: - - type: Transform - pos: 26.5,-21.5 - parent: 2 - - uid: 514 - components: - - type: Transform - pos: 25.5,-31.5 - parent: 2 - - uid: 515 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-33.5 - parent: 2 - - uid: 516 - components: - - type: Transform - pos: 36.5,-33.5 - parent: 2 - - uid: 517 - components: - - type: Transform - pos: 35.5,-33.5 - parent: 2 - - uid: 518 - components: - - type: Transform - pos: 40.5,-25.5 - parent: 2 -- proto: AirlockMedicalLocked - entities: - - uid: 520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-27.5 - parent: 2 - - uid: 521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-27.5 - parent: 2 - - uid: 522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-28.5 - parent: 2 - - uid: 523 - components: - - type: Transform - pos: 31.5,-31.5 - parent: 2 - - uid: 524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-25.5 - parent: 2 - - uid: 525 - components: - - type: MetaData - name: Psych office - - type: Transform - pos: 12.5,-32.5 - parent: 2 - - uid: 526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-35.5 - parent: 2 - - uid: 527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 2 - - uid: 528 - components: - - type: MetaData - name: Morgue - - type: Transform - pos: 44.5,-15.5 - parent: 2 - - uid: 529 - components: - - type: Transform - pos: 20.5,-28.5 - parent: 2 - - uid: 530 - components: - - type: Transform - pos: 41.5,-21.5 - parent: 2 - - uid: 531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-15.5 - parent: 2 - - uid: 532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-21.5 - parent: 2 - - uid: 829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-23.5 - parent: 2 - - uid: 3511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-35.5 - parent: 2 - - uid: 17950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-46.5 - parent: 2 - - uid: 21360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-35.5 - parent: 2 -- proto: AirlockMedicalScienceGlassLocked - entities: - - uid: 534 - components: - - type: Transform - pos: 58.5,-25.5 - parent: 2 - - uid: 536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-17.5 - parent: 2 - - uid: 17648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-19.5 - parent: 2 -- proto: AirlockMedicalScienceLocked - entities: - - uid: 539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-35.5 - parent: 2 - - uid: 540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-35.5 - parent: 2 -- proto: AirlockQuartermasterLocked - entities: - - uid: 542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-30.5 - parent: 2 - - uid: 4245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 2 -- proto: AirlockResearchDirectorLocked - entities: - - uid: 544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-30.5 - parent: 2 - - uid: 545 - components: - - type: MetaData - name: Server Room - - type: Transform - pos: 55.5,-28.5 - parent: 2 - - uid: 5423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-34.5 - parent: 2 - - uid: 6780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,4.5 - parent: 2 - - uid: 8158 - components: - - type: Transform - pos: -30.5,2.5 - parent: 2 - - uid: 8224 - components: - - type: Transform - pos: -30.5,0.5 - parent: 2 - - uid: 8507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,4.5 - parent: 2 - - uid: 12868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-30.5 - parent: 2 - - uid: 18193 - components: - - type: Transform - pos: 62.5,-28.5 - parent: 2 -- proto: AirlockSalvageGlassLocked - entities: - - uid: 280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-37.5 - parent: 2 - - uid: 546 - components: - - type: Transform - pos: -27.5,-28.5 - parent: 2 - - uid: 16875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-37.5 - parent: 2 -- proto: AirlockScienceGlassLocked - entities: - - uid: 547 - components: - - type: MetaData - name: Testing Lab - - type: Transform - pos: 66.5,-49.5 - parent: 2 - - uid: 548 - components: - - type: Transform - pos: 70.5,-25.5 - parent: 2 - - uid: 551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-40.5 - parent: 2 - - uid: 555 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-36.5 - parent: 2 - - uid: 558 - components: - - type: MetaData - name: Giga Break Room - - type: Transform - pos: 54.5,-38.5 - parent: 2 - - uid: 559 - components: - - type: Transform - pos: 71.5,-25.5 - parent: 2 - - uid: 11453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-45.5 - parent: 2 - - uid: 11568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-42.5 - parent: 2 -- proto: AirlockScienceLocked - entities: - - uid: 538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-40.5 - parent: 2 - - uid: 560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-15.5 - parent: 2 - - type: AccessReader - access: - - - Research - - uid: 561 - components: - - type: Transform - pos: 66.5,-24.5 - parent: 2 - - uid: 562 - components: - - type: Transform - pos: 66.5,-20.5 - parent: 2 - - uid: 563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-27.5 - parent: 2 - - uid: 5415 - components: - - type: Transform - pos: 78.5,-41.5 - parent: 2 - - uid: 5416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-45.5 - parent: 2 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 78 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,1.5 - parent: 2 - - uid: 567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-22.5 - parent: 2 - - uid: 569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-20.5 - parent: 2 - - uid: 570 - components: - - type: Transform - pos: 38.5,-15.5 - parent: 2 - - uid: 571 - components: - - type: Transform - pos: -1.5,-60.5 - parent: 2 - - uid: 572 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-65.5 - parent: 2 - - uid: 573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-62.5 - parent: 2 - - uid: 574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-32.5 - parent: 2 - - uid: 575 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-28.5 - parent: 2 - - uid: 577 - components: - - type: Transform - pos: -10.5,42.5 - parent: 2 - - uid: 578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,31.5 - parent: 2 - - uid: 579 - components: - - type: MetaData - name: Equipment Room - - type: Transform - pos: 8.5,34.5 - parent: 2 - - uid: 580 - components: - - type: MetaData - name: Brig Desk - - type: Transform - pos: 1.5,25.5 - parent: 2 - - uid: 583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,35.5 - parent: 2 - - uid: 584 - components: - - type: Transform - pos: 38.5,-20.5 - parent: 2 - - uid: 587 - components: - - type: Transform - pos: 7.5,29.5 - parent: 2 - - uid: 588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,21.5 - parent: 2 - - uid: 590 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,2.5 - parent: 2 - - uid: 591 - components: - - type: Transform - pos: 62.5,-25.5 - parent: 2 - - uid: 1362 - components: - - type: Transform - pos: -5.5,25.5 - parent: 2 - - uid: 5834 - components: - - type: Transform - pos: -13.5,25.5 - parent: 2 - - uid: 16466 - components: - - type: Transform - pos: -21.5,-28.5 - parent: 2 - - uid: 19217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,27.5 - parent: 2 - - uid: 24261 - components: - - type: Transform - pos: -17.5,25.5 - parent: 2 - - uid: 30042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,35.5 - parent: 2 - - uid: 31109 - components: - - type: Transform - pos: -1.5,25.5 - parent: 2 - - uid: 31112 - components: - - type: Transform - pos: -9.5,25.5 - parent: 2 -- proto: AirlockSecurityLocked - entities: - - uid: 172 - components: - - type: Transform - pos: 80.5,-3.5 - parent: 2 - - uid: 173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-1.5 - parent: 2 - - uid: 595 - components: - - type: Transform - pos: -12.5,28.5 - parent: 2 - - uid: 597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,39.5 - parent: 2 - - uid: 598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-18.5 - parent: 2 - - uid: 1010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,41.5 - parent: 2 - - uid: 9802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,36.5 - parent: 2 - - uid: 11868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,36.5 - parent: 2 - - uid: 21547 - components: - - type: Transform - pos: -10.5,38.5 - parent: 2 - - uid: 26655 - components: - - type: Transform - pos: 23.5,44.5 - parent: 2 - - uid: 26684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,35.5 - parent: 2 - - uid: 30044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,43.5 - parent: 2 -- proto: AirlockServiceGlassLocked - entities: - - uid: 599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 2 - - uid: 601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-5.5 - parent: 2 - - uid: 2409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,11.5 - parent: 2 - - uid: 4273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,11.5 - parent: 2 -- proto: AirlockServiceLocked - entities: - - uid: 604 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 2 - - uid: 605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-3.5 - parent: 2 - - uid: 7774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,16.5 - parent: 2 -- proto: AirlockShuttle - entities: - - uid: 29882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-37.5 - parent: 2 - - type: DeviceLinkSource - lastSignals: - DoorStatus: False - DockStatus: False - - type: Door - changeAirtight: False -- proto: AirlockTheatreLocked - entities: - - uid: 608 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 609 - components: - - type: Transform - pos: 36.5,20.5 - parent: 2 -- proto: AirlockVirologyGlassLocked - entities: - - uid: 610 - components: - - type: Transform - pos: 47.5,-57.5 - parent: 2 - - uid: 611 - components: - - type: Transform - pos: 45.5,-54.5 - parent: 2 - - uid: 612 - components: - - type: Transform - pos: 43.5,-57.5 - parent: 2 - - uid: 613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-55.5 - parent: 2 -- proto: AirlockVirologyLocked - entities: - - uid: 614 - components: - - type: Transform - pos: 40.5,-50.5 - parent: 2 - - uid: 615 - components: - - type: Transform - pos: 40.5,-54.5 - parent: 2 -- proto: AirSensor - entities: - - uid: 616 - components: - - type: Transform - pos: 15.5,44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 101 - - uid: 617 - components: - - type: Transform - pos: 69.5,-52.5 - parent: 2 - - uid: 618 - components: - - type: Transform - pos: -11.5,-68.5 - parent: 2 - - uid: 619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-23.5 - parent: 2 - - uid: 621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 100 - - uid: 622 - components: - - type: Transform - pos: 62.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - uid: 623 - components: - - type: Transform - pos: -0.5,-55.5 - parent: 2 - - uid: 624 - components: - - type: Transform - pos: -0.5,-47.5 - parent: 2 - - uid: 626 - components: - - type: Transform - pos: 32.5,-34.5 - parent: 2 - - uid: 627 - components: - - type: Transform - pos: 6.5,-60.5 - parent: 2 - - uid: 628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-61.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23 - - uid: 629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - uid: 631 - components: - - type: Transform - pos: 63.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18 - - uid: 632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 26 - - uid: 633 - components: - - type: Transform - pos: -0.5,-39.5 - parent: 2 - - uid: 635 - components: - - type: Transform - pos: 4.5,-54.5 - parent: 2 - - uid: 637 - components: - - type: Transform - pos: -3.5,-30.5 - parent: 2 - - uid: 638 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 2 - - uid: 639 - components: - - type: Transform - pos: -7.5,-22.5 - parent: 2 - - uid: 640 - components: - - type: Transform - pos: -7.5,-17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16 - - uid: 642 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21141 - - uid: 643 - components: - - type: Transform - pos: 10.5,-16.5 - parent: 2 - - uid: 644 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 2 - - uid: 645 - components: - - type: Transform - pos: -16.5,-16.5 - parent: 2 - - uid: 646 - components: - - type: Transform - pos: -13.5,-1.5 - parent: 2 - - uid: 647 - components: - - type: Transform - pos: -21.5,-26.5 - parent: 2 - - uid: 648 - components: - - type: Transform - pos: -26.5,-24.5 - parent: 2 - - uid: 649 - components: - - type: Transform - pos: -22.5,-17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14983 - - uid: 650 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 2 - - uid: 651 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 2 - - uid: 652 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 2 - - uid: 653 - components: - - type: Transform - pos: 10.5,10.5 - parent: 2 - - uid: 654 - components: - - type: Transform - pos: 45.5,-7.5 - parent: 2 - - uid: 655 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 2 - - uid: 656 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 2 - - uid: 657 - components: - - type: Transform - pos: 28.5,-17.5 - parent: 2 - - uid: 658 - components: - - type: Transform - pos: 30.5,-24.5 - parent: 2 - - uid: 659 - components: - - type: Transform - pos: 31.5,-29.5 - parent: 2 - - uid: 660 - components: - - type: Transform - pos: 46.5,-34.5 - parent: 2 - - uid: 661 - components: - - type: Transform - pos: 40.5,-33.5 - parent: 2 - - uid: 662 - components: - - type: Transform - pos: 45.5,-27.5 - parent: 2 - - uid: 663 - components: - - type: Transform - pos: 39.5,-28.5 - parent: 2 - - uid: 664 - components: - - type: Transform - pos: 40.5,-43.5 - parent: 2 - - uid: 665 - components: - - type: Transform - pos: 40.5,-57.5 - parent: 2 - - uid: 666 - components: - - type: Transform - pos: 66.5,-13.5 - parent: 2 - - uid: 667 - components: - - type: Transform - pos: 48.5,-13.5 - parent: 2 - - uid: 668 - components: - - type: Transform - pos: 66.5,3.5 - parent: 2 - - uid: 669 - components: - - type: Transform - pos: 54.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - - uid: 670 - components: - - type: Transform - pos: 73.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29441 - - uid: 675 - components: - - type: Transform - pos: 66.5,-45.5 - parent: 2 - - uid: 676 - components: - - type: Transform - pos: 67.5,-39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - uid: 677 - components: - - type: Transform - pos: 54.5,-39.5 - parent: 2 - - uid: 678 - components: - - type: Transform - pos: 55.5,-30.5 - parent: 2 - - uid: 679 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 2 - - uid: 680 - components: - - type: Transform - pos: -26.5,-33.5 - parent: 2 - - uid: 682 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 2 - - uid: 684 - components: - - type: Transform - pos: -46.5,-1.5 - parent: 2 - - uid: 685 - components: - - type: Transform - pos: -42.5,3.5 - parent: 2 - - uid: 688 - components: - - type: Transform - pos: -0.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - uid: 689 - components: - - type: Transform - pos: -0.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - uid: 690 - components: - - type: Transform - pos: 7.5,20.5 - parent: 2 - - uid: 691 - components: - - type: Transform - pos: -8.5,20.5 - parent: 2 - - uid: 692 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - - uid: 693 - components: - - type: Transform - pos: -3.5,27.5 - parent: 2 - - uid: 694 - components: - - type: Transform - pos: 0.5,32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25632 - - uid: 695 - components: - - type: Transform - pos: 9.5,37.5 - parent: 2 - - uid: 698 - components: - - type: Transform - pos: -57.5,1.5 - parent: 2 - - uid: 699 - components: - - type: Transform - pos: -57.5,-5.5 - parent: 2 - - uid: 700 - components: - - type: Transform - pos: -65.5,-4.5 - parent: 2 - - uid: 701 - components: - - type: Transform - pos: -73.5,9.5 - parent: 2 - - uid: 702 - components: - - type: Transform - pos: -70.5,-14.5 - parent: 2 - - uid: 703 - components: - - type: Transform - pos: -51.5,-8.5 - parent: 2 - - uid: 704 - components: - - type: Transform - pos: 20.5,-36.5 - parent: 2 - - uid: 707 - components: - - type: Transform - pos: -9.5,-75.5 - parent: 2 - - uid: 708 - components: - - type: Transform - pos: -7.5,-75.5 - parent: 2 - - uid: 709 - components: - - type: Transform - pos: 3.5,-75.5 - parent: 2 - - uid: 710 - components: - - type: Transform - pos: -0.5,-73.5 - parent: 2 - - uid: 711 - components: - - type: Transform - pos: 3.5,-66.5 - parent: 2 - - uid: 712 - components: - - type: Transform - pos: 22.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - uid: 713 - components: - - type: Transform - pos: 24.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 97 - - uid: 714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 98 - - uid: 715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 99 - - uid: 716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - - uid: 717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,47.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - - 30133 - - uid: 718 - components: - - type: Transform - pos: 65.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - uid: 719 - components: - - type: Transform - pos: 73.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 90 - - uid: 720 - components: - - type: Transform - pos: 80.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 96 - - uid: 721 - components: - - type: Transform - pos: 84.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - uid: 722 - components: - - type: Transform - pos: 85.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 95 - - uid: 723 - components: - - type: Transform - pos: 73.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - uid: 724 - components: - - type: Transform - pos: 61.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 92 - - uid: 725 - components: - - type: Transform - pos: 61.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - uid: 953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15115 - - uid: 7261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-79.5 - parent: 2 - - uid: 8625 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-70.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - uid: 11455 - components: - - type: Transform - pos: 72.5,-40.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 1324 - - uid: 11503 - components: - - type: Transform - pos: 80.5,-45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 1107 - - uid: 11736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17459 - - uid: 13592 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10831 - - uid: 13662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-66.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 89 - - uid: 14131 - components: - - type: Transform - pos: 14.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29 - - uid: 14933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,26.5 - parent: 2 - - uid: 14988 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-76.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14987 - - uid: 17121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-62.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19153 - - uid: 20884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20388 - - uid: 20904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20365 - - uid: 22198 - components: - - type: Transform - pos: -71.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22027 - - uid: 25484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,40.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25482 - - uid: 25631 - components: - - type: Transform - pos: 1.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25633 - - uid: 28606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3504 - - uid: 29431 - components: - - type: Transform - pos: 64.5,-19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29429 - - uid: 29442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29440 - - uid: 29633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29740 - - uid: 29634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29740 - - uid: 29635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29741 - - uid: 29636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29741 - - uid: 29969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29968 - - uid: 29988 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17417 - - uid: 29990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29991 - - uid: 30002 - components: - - type: Transform - pos: 23.5,-56.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29 - - uid: 30134 - components: - - type: Transform - pos: 27.5,41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 30133 - - uid: 31399 - components: - - type: Transform - pos: 26.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31425 - - uid: 31428 - components: - - type: Transform - pos: 23.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31424 - - uid: 31897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31896 - - uid: 32133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 32132 -- proto: AltarChaos - entities: - - uid: 869 - components: - - type: MetaData - desc: Только священик может понять что этот алтарь пренадлежите Гро-Гороту. - name: Алтарь Неизвестного Древнего Бога. - - type: Transform - pos: 43.5,-73.5 - parent: 2 -- proto: AltarSpawner - entities: - - uid: 727 - components: - - type: Transform - pos: 73.5,-3.5 - parent: 2 -- proto: AmeJar - entities: - - uid: 4417 - components: - - type: Transform - pos: -5.515408,-61.35573 - parent: 2 - - uid: 5907 - components: - - type: Transform - pos: -5.421658,-61.558853 - parent: 2 - - uid: 5908 - components: - - type: Transform - pos: -5.2707825,-61.391197 - parent: 2 - - uid: 22170 - components: - - type: Transform - pos: -5.671658,-61.590103 - parent: 2 -- proto: AmePartFlatpack - entities: - - uid: 636 - components: - - type: Transform - parent: 4363 + name: SEC "Patrule-2" + - type: Transform + rot: 4.71238898038469 rad + pos: 80.81577,-15.422404 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: HwAAAAAAHwAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAHwAAAAAAHwAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 683 + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 0: -1,-1 + 1: 1,1 + 2: -2,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3: 0,-2 + 4: 3,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 5: -3,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 6: -2,3 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerNe + decals: + 7: 1,3 + 8: 3,1 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerNw + decals: + 9: -4,1 + 10: 0,3 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerSe + decals: + 11: 1,-2 + 12: 2,-1 + 13: 3,0 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerSw + decals: + 14: -2,-2 + 15: -3,-1 + 16: -4,0 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerNe + decals: + 17: 1,1 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerNw + decals: + 18: 0,1 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerSe + decals: + 19: 1,-1 + 20: 2,0 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerSw + decals: + 21: -2,-1 + 22: -3,0 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineE + decals: + 23: 1,2 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineN + decals: + 24: -1,1 + 25: -3,1 + 28: 2,1 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineS + decals: + 26: -1,-2 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineW + decals: + 27: 0,2 + - node: + color: '#DE3A3A96' + id: WarnEndGreyscaleN + decals: + 31: -2,5 + - node: + color: '#DE3A3A96' + id: WarnEndGreyscaleS + decals: + 32: -2,3 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 33: -2,4 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 29: -2,1 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 30: 0,-2 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 34: -2,4 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 7 + 1,0: + 0: 273 + 0,-2: + 0: 30576 + 1,-1: + 0: 4096 + -2,-1: + 0: 32768 + -1,-2: + 0: 61152 + -2,0: + 0: 34952 + -2,1: + 0: 2184 + -1,1: + 0: 3838 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: Joint + joints: + docking15994: !type:WeldJoint + bodyB: 13386 + bodyA: 2 + id: docking15994 + localAnchorB: 5,0.49999997 + localAnchorA: 42.5,68 + referenceAngle: 4.712389 + damping: 922.8537 + stiffness: 8283.516 + - uid: 21114 components: + - type: MetaData + name: CMD "Rainy day" - type: Transform - parent: 4363 + pos: -17.420502,10.4385195 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: eQAAAAAAJgAAAAAAIgAAAAAAIgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAIgAAAAAAIgAAAAAAJgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAIgAAAAAAIgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 782 - components: - - type: Transform - parent: 4363 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4364 - components: - - type: Transform - parent: 4363 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4371 - components: - - type: Transform - parent: 4363 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4372 - components: - - type: Transform - parent: 4363 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: AnomalyScanner - entities: - - uid: 732 - components: - - type: Transform - pos: 73.60628,-49.3431 - parent: 2 - - uid: 733 - components: - - type: Transform - pos: 73.76253,-49.43685 - parent: 2 - - uid: 734 - components: - - type: Transform - pos: 74.46565,-49.3431 - parent: 2 - - uid: 735 - components: - - type: Transform - pos: 74.59065,-49.452477 - parent: 2 -- proto: AntiPoisonMedipen - entities: - - uid: 736 - components: - - type: Transform - pos: -13.584658,29.422077 - parent: 2 -- proto: APCBasic - entities: - - uid: 742 - components: - - type: MetaData - name: Cargo Bay APC - - type: Transform - pos: -38.5,-19.5 - parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 85 - supplyRampPosition: 53.91901 - - uid: 743 - components: - - type: MetaData - name: South Maint APC - - type: Transform - pos: 46.5,-64.5 - parent: 2 - - uid: 748 - components: - - type: MetaData - name: Engineering Locker RoomsAPC - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-60.5 - parent: 2 - - uid: 750 - components: - - type: MetaData - name: Captain's Office APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-14.5 - parent: 2 - - uid: 752 - components: - - type: MetaData - name: Conf Room APC - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 2 - - uid: 753 - components: - - type: MetaData - name: Captain's Bedroom APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 2 - - uid: 755 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 2 - - uid: 758 - components: - - type: Transform - pos: 34.5,20.5 - parent: 2 - - uid: 759 - components: - - type: MetaData - name: Port Quarter Maintenance APC - - type: Transform - pos: -29.5,-63.5 - parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 55 - supplyRampPosition: 2.6408517 - - uid: 760 - components: - - type: MetaData - name: Kitchen APC - - type: Transform - pos: 37.5,-3.5 - parent: 2 - - uid: 762 - components: - - type: Transform - pos: -7.5,53.5 - parent: 2 - - uid: 764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,39.5 - parent: 2 - - uid: 766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,38.5 - parent: 2 - - uid: 767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,22.5 - parent: 2 - - uid: 769 - components: - - type: MetaData - name: Brig Control APC - - type: Transform - pos: -1.5,34.5 - parent: 2 - - type: Battery - startingCharge: 12000 - - uid: 770 - components: - - type: Transform - pos: -19.5,46.5 - parent: 2 - - uid: 771 - components: - - type: Transform - pos: -10.5,46.5 - parent: 2 - - uid: 772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-33.5 - parent: 2 - - uid: 773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,31.5 - parent: 2 - - uid: 775 - components: - - type: MetaData - name: Hydroponics APC - - type: Transform - pos: 43.5,-1.5 - parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 65 - supplyRampPosition: 17.574497 - - uid: 778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-18.5 - parent: 2 - - uid: 780 - components: - - type: MetaData - name: Solars North West APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,22.5 - parent: 2 - - uid: 783 - components: - - type: MetaData - name: Primary Tool Storage APC - - type: Transform - pos: -43.5,6.5 - parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 30 - supplyRampPosition: 18.132214 - - uid: 784 - components: - - type: MetaData - name: Security Checkpoint APC - - type: Transform - pos: -57.5,6.5 - parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 25 - supplyRampPosition: 9.296312 - - uid: 785 - components: - - type: MetaData - name: Arrivals APC - - type: Transform - pos: -65.5,-2.5 - parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 145 - supplyRampPosition: 32.478764 - - uid: 786 - components: - - type: MetaData - name: Disposals APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-17.5 - parent: 2 - - uid: 789 - components: - - type: MetaData - name: Vacant Office B APC - - type: Transform - pos: -19.5,-10.5 - parent: 2 - - uid: 790 - components: - - type: MetaData - name: Chemistry APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 2 - - uid: 791 - components: - - type: MetaData - name: Solars South West APC - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-63.5 - parent: 2 - - uid: 792 - components: - - type: MetaData - name: Janitor Closet APC - - type: Transform - pos: -52.5,-6.5 - parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 5 - supplyRampPosition: 2.4463015 - - uid: 793 - components: - - type: MetaData - name: Cargo Office APC - - type: Transform - pos: -25.5,-20.5 - parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 65 - supplyRampPosition: 2.4463015 - - uid: 794 - components: - - type: MetaData - name: Salvage APC - - type: Transform - pos: -29.5,-34.5 - parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 25 - supplyRampPosition: 9.488577 - - uid: 795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-0.5 - parent: 2 - - uid: 797 - components: - - type: MetaData - name: Technical Storage APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-35.5 - parent: 2 - - uid: 798 - components: - - type: MetaData - name: Telecomms APC - - type: Transform - pos: -8.5,-54.5 - parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 10 - supplyRampPosition: 1.347667 - - uid: 800 - components: - - type: MetaData - name: Surgery APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-33.5 - parent: 2 - - uid: 803 - components: - - type: MetaData - name: QM Office APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-28.5 - parent: 2 - - uid: 804 - components: - - type: MetaData - name: Medbay APC - - type: Transform - pos: 30.5,-26.5 - parent: 2 - - type: Battery - startingCharge: 12000 - - type: PowerNetworkBattery - loadingNetworkDemand: 55 - currentReceiving: 55.01975 - currentSupply: 55 - - uid: 805 - components: - - type: MetaData - name: Virology APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-54.5 - parent: 2 - - uid: 806 - components: - - type: MetaData - name: Aft Maintenance APC - - type: Transform - pos: 46.5,-40.5 - parent: 2 - - type: Battery - startingCharge: 12000 - - type: PowerNetworkBattery - loadingNetworkDemand: 20 - currentReceiving: 19.980549 - currentSupply: 20 - supplyRampPosition: 0.019451141 - - uid: 807 - components: - - type: Transform - pos: 46.5,-21.5 - parent: 2 - - uid: 811 - components: - - type: MetaData - name: Sci Server Room APC - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-32.5 - parent: 2 - - uid: 812 - components: - - type: MetaData - name: HoP Office APC - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-22.5 - parent: 2 - - uid: 814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,4.5 - parent: 2 - - uid: 815 - components: - - type: MetaData - name: Psych APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-36.5 - parent: 2 - - uid: 818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-63.5 - parent: 2 - - uid: 819 - components: - - type: MetaData - name: Engineering APC - - type: Transform - pos: 8.5,-50.5 - parent: 2 - - uid: 820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,11.5 - parent: 2 - - uid: 821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,1.5 - parent: 2 - - uid: 822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-69.5 - parent: 2 - - uid: 823 - components: - - type: MetaData - name: Singulo APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-76.5 - parent: 2 - - uid: 824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-49.5 - parent: 2 - - uid: 825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,3.5 - parent: 2 - - uid: 826 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 2 - - uid: 827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,33.5 - parent: 2 - - uid: 828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,38.5 - parent: 2 - - uid: 830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-3.5 - parent: 2 - - uid: 831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-5.5 - parent: 2 - - uid: 832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-6.5 - parent: 2 - - uid: 833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,1.5 - parent: 2 - - uid: 834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-5.5 - parent: 2 - - uid: 835 - components: - - type: Transform - pos: 82.5,-5.5 - parent: 2 - - uid: 836 - components: - - type: Transform - pos: 82.5,-5.5 - parent: 2 - - uid: 837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-0.5 - parent: 2 - - uid: 838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-0.5 - parent: 2 - - uid: 1822 - components: - - type: Transform - pos: 20.5,12.5 - parent: 2 - - uid: 1928 - components: - - type: Transform - pos: 12.5,29.5 - parent: 2 - - uid: 2984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-23.5 - parent: 2 - - uid: 3903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-34.5 - parent: 2 - - uid: 4327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-42.5 - parent: 2 - - uid: 6723 - components: - - type: Transform - pos: 13.5,13.5 - parent: 2 - - uid: 7150 - components: - - type: Transform - pos: -12.5,-67.5 - parent: 2 - - uid: 8270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,30.5 - parent: 2 - - uid: 8998 - components: - - type: Transform - pos: 61.5,-34.5 - parent: 2 - - uid: 9418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-65.5 - parent: 2 - - uid: 10861 - components: - - type: Transform - pos: 0.5,-12.5 - parent: 2 - - uid: 11495 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-29.5 - parent: 2 - - uid: 11779 - components: - - type: Transform - pos: -12.5,34.5 - parent: 2 - - uid: 12204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-42.5 - parent: 2 - - uid: 12805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-42.5 - parent: 2 - - uid: 15138 - components: - - type: Transform - pos: -23.5,-14.5 - parent: 2 - - uid: 20152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 2 - - uid: 20228 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 2 - - uid: 22028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,18.5 - parent: 2 - - uid: 22829 - components: - - type: Transform - pos: -16.5,-77.5 - parent: 2 - - uid: 22911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-62.5 - parent: 2 - - uid: 24460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-69.5 - parent: 2 - - uid: 24470 - components: - - type: Transform - pos: 55.5,-38.5 - parent: 2 - - uid: 25934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-26.5 - parent: 2 - - uid: 26616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-48.5 - parent: 2 - - uid: 27083 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - uid: 28792 - components: - - type: Transform - pos: -23.5,-28.5 - parent: 2 - - uid: 29637 - components: - - type: Transform - pos: -6.5,18.5 - parent: 2 - - uid: 29638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,5.5 - parent: 2 - - uid: 29639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,4.5 - parent: 2 - - uid: 29930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-35.5 - parent: 2 - - uid: 29931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-38.5 - parent: 2 - - uid: 30097 - components: - - type: Transform - pos: -30.5,10.5 - parent: 2 - - uid: 30640 - components: - - type: Transform - pos: -22.5,37.5 - parent: 2 - - uid: 31422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,14.5 - parent: 2 - - uid: 31423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,20.5 - parent: 2 - - uid: 31807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-6.5 - parent: 2 - - uid: 31878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,28.5 - parent: 2 -- proto: APCElectronics - entities: - - uid: 839 - components: - - type: Transform - pos: -22.30238,-5.274679 - parent: 2 -- proto: APCHighCapacity - entities: - - uid: 741 - components: - - type: Transform - pos: 14.5,-73.5 - parent: 2 - - uid: 840 - components: - - type: MetaData - name: Morgue APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-17.5 - parent: 2 - - uid: 843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,10.5 - parent: 2 - - uid: 844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,5.5 - parent: 2 - - uid: 845 - components: - - type: MetaData - name: Solars North East APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,19.5 - parent: 2 - - uid: 846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-19.5 - parent: 2 - - uid: 847 - components: - - type: MetaData - name: Medical Breakroom APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-36.5 - parent: 2 - - uid: 848 - components: - - type: MetaData - name: Maints South West APC - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-46.5 - parent: 2 - - uid: 850 - components: - - type: MetaData - name: Solars South East APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-64.5 - parent: 2 - - uid: 851 - components: - - type: MetaData - name: Engineering Desk APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-41.5 - parent: 2 - - uid: 4326 - components: - - type: Transform - pos: 15.5,-55.5 - parent: 2 - - uid: 14025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-46.5 - parent: 2 - - uid: 18141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-48.5 - parent: 2 - - uid: 29435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-87.5 - parent: 2 - - uid: 29853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-19.5 - parent: 2 -- proto: APCHyperCapacity - entities: - - uid: 852 - components: - - type: MetaData - name: RoboTechARC - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-20.5 - parent: 2 -- proto: ArtistCircuitBoard - entities: - - uid: 20209 - components: - - type: Transform - parent: 19293 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Ashtray - entities: - - uid: 855 - components: - - type: Transform - pos: 18.863773,-9.666474 - parent: 2 - - uid: 9866 - components: - - type: Transform - pos: 24.5,18.5 - parent: 2 - - uid: 24095 - components: - - type: Transform - pos: 14.683933,37.32389 - parent: 2 - - uid: 25008 - components: - - type: Transform - pos: 0.51393366,-15.294291 - parent: 2 - - uid: 29334 - components: - - type: Transform - pos: 8.31061,-22.064962 - parent: 2 - - uid: 30773 - components: - - type: Transform - pos: 14.064619,36.554924 - parent: 2 -- proto: AsimovCircuitBoard - entities: - - uid: 20208 - components: - - type: Transform - parent: 19293 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ATM - entities: - - uid: 8695 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 2 - - uid: 8873 - components: - - type: Transform - pos: 10.5,28.5 - parent: 2 - - uid: 9745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-21.5 - parent: 2 - - uid: 10121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-55.5 - parent: 2 - - uid: 14986 - components: - - type: Transform - pos: 65.5,-7.5 - parent: 2 - - uid: 15114 - components: - - type: Transform - pos: 28.5,0.5 - parent: 2 - - uid: 20586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-6.5 - parent: 2 - - uid: 20626 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-19.5 - parent: 2 - - uid: 21729 - components: - - type: Transform - pos: 20.5,11.5 - parent: 2 - - uid: 26375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-9.5 - parent: 2 - - uid: 29155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-27.5 - parent: 2 -- proto: AtmosDeviceFanDirectional - entities: - - uid: 291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 2 - - uid: 304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-11.5 - parent: 2 - - uid: 312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-9.5 - parent: 2 - - uid: 327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,9.5 - parent: 2 - - uid: 883 - components: - - type: Transform - pos: -70.5,7.5 - parent: 2 - - uid: 888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,51.5 - parent: 2 - - uid: 891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-3.5 - parent: 2 - - uid: 896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-61.5 - parent: 2 - - uid: 900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-2.5 - parent: 2 - - uid: 904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-2.5 - parent: 2 - - uid: 905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-9.5 - parent: 2 - - uid: 906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-19.5 - parent: 2 - - uid: 911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-65.5 - parent: 2 - - uid: 913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-57.5 - parent: 2 - - uid: 914 - components: - - type: Transform - pos: 81.5,-68.5 - parent: 2 - - uid: 916 - components: - - type: Transform - pos: -68.5,-17.5 - parent: 2 - - uid: 922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-4.5 - parent: 2 - - uid: 923 - components: - - type: Transform - pos: -77.5,7.5 - parent: 2 - - uid: 1068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,48.5 - parent: 2 - - uid: 1069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,48.5 - parent: 2 - - uid: 1339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,15.5 - parent: 2 - - uid: 2331 - components: - - type: Transform - pos: -75.5,-17.5 - parent: 2 - - uid: 10622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-71.5 - parent: 2 - - uid: 10912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-1.5 - parent: 2 - - uid: 11567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-71.5 - parent: 2 - - uid: 11823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-26.5 - parent: 2 - - uid: 15876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,20.5 - parent: 2 - - uid: 16411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,20.5 - parent: 2 - - uid: 18962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,35.5 - parent: 2 - - uid: 20288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-13.5 - parent: 2 - - uid: 20367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,48.5 - parent: 2 - - uid: 21595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-29.5 - parent: 2 - - uid: 21770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,20.5 - parent: 2 - - uid: 22515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,29.5 - parent: 2 - - uid: 25317 - components: - - type: Transform - pos: 8.5,-79.5 - parent: 2 - - uid: 27442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-9.5 - parent: 2 - - uid: 29508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-87.5 - parent: 2 - - uid: 29543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-71.5 - parent: 2 - - uid: 29897 - components: - - type: Transform - pos: -45.5,-39.5 - parent: 2 - - uid: 29898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-37.5 - parent: 2 - - uid: 31155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,35.5 - parent: 2 -- proto: AtmosDeviceFanTiny - entities: - - uid: 898 - components: - - type: Transform - pos: -49.5,26.5 - parent: 2 - - uid: 901 - components: - - type: Transform - pos: 36.5,-3.5 - parent: 2 - - uid: 902 - components: - - type: Transform - pos: -21.5,24.5 - parent: 2 - - uid: 903 - components: - - type: Transform - pos: 36.5,1.5 - parent: 2 - - uid: 907 - components: - - type: Transform - pos: 41.5,-0.5 - parent: 2 - - uid: 910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,17.5 - parent: 2 - - uid: 919 - components: - - type: Transform - pos: -40.5,-49.5 - parent: 2 - - uid: 31470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-70.5 - parent: 2 -- proto: AtmosFixBlockerMarker - entities: - - uid: 5539 - components: - - type: Transform - pos: 26.5,-62.5 - parent: 2 - - uid: 13782 - components: - - type: Transform - pos: 27.5,-62.5 - parent: 2 - - uid: 14120 - components: - - type: Transform - pos: 25.5,-62.5 - parent: 2 - - uid: 22146 - components: - - type: Transform - pos: 27.5,-64.5 - parent: 2 - - uid: 23330 - components: - - type: Transform - pos: 26.5,-64.5 - parent: 2 - - uid: 26584 - components: - - type: Transform - pos: 25.5,-64.5 - parent: 2 - - uid: 29565 - components: - - type: Transform - pos: 19.5,-72.5 - parent: 2 - - uid: 29566 - components: - - type: Transform - pos: 19.5,-71.5 - parent: 2 - - uid: 29567 - components: - - type: Transform - pos: 19.5,-70.5 - parent: 2 - - uid: 29568 - components: - - type: Transform - pos: 18.5,-72.5 - parent: 2 - - uid: 29569 - components: - - type: Transform - pos: 18.5,-71.5 - parent: 2 - - uid: 29571 - components: - - type: Transform - pos: 18.5,-70.5 - parent: 2 - - uid: 29629 - components: - - type: Transform - pos: 17.5,-72.5 - parent: 2 - - uid: 29722 - components: - - type: Transform - pos: 17.5,-71.5 - parent: 2 - - uid: 29724 - components: - - type: Transform - pos: 17.5,-70.5 - parent: 2 - - uid: 29765 - components: - - type: Transform - pos: 16.5,-72.5 - parent: 2 - - uid: 29777 - components: - - type: Transform - pos: 16.5,-71.5 - parent: 2 - - uid: 29870 - components: - - type: Transform - pos: 16.5,-70.5 - parent: 2 - - uid: 29871 - components: - - type: Transform - pos: 17.5,-86.5 - parent: 2 - - uid: 29872 - components: - - type: Transform - pos: 17.5,-87.5 - parent: 2 - - uid: 29873 - components: - - type: Transform - pos: 17.5,-88.5 - parent: 2 - - uid: 29874 - components: - - type: Transform - pos: 18.5,-86.5 - parent: 2 - - uid: 29876 - components: - - type: Transform - pos: 18.5,-87.5 - parent: 2 - - uid: 29877 - components: - - type: Transform - pos: 18.5,-88.5 - parent: 2 - - uid: 29878 - components: - - type: Transform - pos: 19.5,-86.5 - parent: 2 - - uid: 29880 - components: - - type: Transform - pos: 19.5,-88.5 - parent: 2 - - uid: 29935 - components: - - type: Transform - pos: 19.5,-87.5 - parent: 2 -- proto: AtmosFixFreezerMarker - entities: - - uid: 961 - components: - - type: Transform - pos: 40.5,-2.5 - parent: 2 - - uid: 962 - components: - - type: Transform - pos: 39.5,-0.5 - parent: 2 - - uid: 963 - components: - - type: Transform - pos: 39.5,0.5 - parent: 2 - - uid: 964 - components: - - type: Transform - pos: 40.5,-0.5 - parent: 2 - - uid: 965 - components: - - type: Transform - pos: 39.5,-1.5 - parent: 2 - - uid: 966 - components: - - type: Transform - pos: 39.5,-2.5 - parent: 2 - - uid: 967 - components: - - type: Transform - pos: 38.5,0.5 - parent: 2 - - uid: 968 - components: - - type: Transform - pos: 38.5,-0.5 - parent: 2 - - uid: 969 - components: - - type: Transform - pos: 38.5,-1.5 - parent: 2 - - uid: 970 - components: - - type: Transform - pos: 38.5,-2.5 - parent: 2 - - uid: 971 - components: - - type: Transform - pos: 37.5,0.5 - parent: 2 - - uid: 972 - components: - - type: Transform - pos: 37.5,-0.5 - parent: 2 - - uid: 973 - components: - - type: Transform - pos: 37.5,-1.5 - parent: 2 - - uid: 974 - components: - - type: Transform - pos: 37.5,-2.5 - parent: 2 - - uid: 975 - components: - - type: Transform - pos: 36.5,0.5 - parent: 2 - - uid: 976 - components: - - type: Transform - pos: 36.5,-0.5 - parent: 2 - - uid: 977 - components: - - type: Transform - pos: 36.5,-1.5 - parent: 2 - - uid: 978 - components: - - type: Transform - pos: 36.5,-2.5 - parent: 2 - - uid: 979 - components: - - type: Transform - pos: 35.5,0.5 - parent: 2 - - uid: 980 - components: - - type: Transform - pos: 35.5,-0.5 - parent: 2 - - uid: 981 - components: - - type: Transform - pos: 35.5,-1.5 - parent: 2 - - uid: 982 - components: - - type: Transform - pos: 35.5,-2.5 - parent: 2 - - uid: 983 - components: - - type: Transform - pos: 40.5,-1.5 - parent: 2 - - uid: 984 - components: - - type: Transform - pos: 40.5,0.5 - parent: 2 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 14129 - components: - - type: Transform - pos: 27.5,-46.5 - parent: 2 - - uid: 16793 - components: - - type: Transform - pos: 25.5,-46.5 - parent: 2 - - uid: 19280 - components: - - type: Transform - pos: 26.5,-46.5 - parent: 2 -- proto: AtmosFixOxygenMarker - entities: - - uid: 7588 - components: - - type: Transform - pos: 25.5,-44.5 - parent: 2 - - uid: 7646 - components: - - type: Transform - pos: 27.5,-44.5 - parent: 2 - - uid: 11175 - components: - - type: Transform - pos: 26.5,-44.5 - parent: 2 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 14897 - components: - - type: Transform - pos: 27.5,-66.5 - parent: 2 - - uid: 16787 - components: - - type: Transform - pos: 25.5,-66.5 - parent: 2 - - uid: 16788 - components: - - type: Transform - pos: 26.5,-66.5 - parent: 2 -- proto: Autolathe - entities: - - uid: 115 - components: - - type: Transform - pos: -65.5,17.5 - parent: 2 - - uid: 1013 - components: - - type: Transform - pos: -28.5,-24.5 - parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - - uid: 1015 - components: - - type: Transform - pos: -41.5,5.5 - parent: 2 - - uid: 1016 - components: - - type: Transform - pos: 69.5,-20.5 - parent: 2 - - uid: 3053 - components: - - type: Transform - pos: -56.5,-7.5 - parent: 2 - - uid: 19221 - components: - - type: Transform - pos: 56.5,-20.5 - parent: 2 - - uid: 21762 - components: - - type: Transform - pos: 6.5,-61.5 - parent: 2 -- proto: BannerCargo - entities: - - uid: 1017 - components: - - type: Transform - pos: -32.5,-22.5 - parent: 2 -- proto: BannerEngineering - entities: - - uid: 22821 - components: - - type: Transform - pos: -7.5,-65.5 - parent: 2 - - uid: 23631 - components: - - type: Transform - pos: 6.5,-46.5 - parent: 2 -- proto: BannerNanotrasen - entities: - - uid: 1019 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 2 - - uid: 9964 - components: - - type: Transform - pos: 3.5,-13.5 - parent: 2 - - uid: 10736 - components: - - type: Transform - pos: -4.5,-13.5 - parent: 2 - - uid: 29806 - components: - - type: Transform - pos: -5.5,14.5 - parent: 2 -- proto: BannerSecurity - entities: - - uid: 1020 - components: - - type: Transform - pos: 37.5,-21.5 - parent: 2 - - uid: 1021 - components: - - type: Transform - pos: 18.5,30.5 - parent: 2 - - uid: 1022 - components: - - type: Transform - pos: 6.5,30.5 - parent: 2 -- proto: BarberBigBox - entities: - - uid: 15906 - components: - - type: Transform - pos: 22.509222,12.466672 - parent: 2 -- proto: BarberHairDyeBlue - entities: - - uid: 31312 - components: - - type: Transform - pos: 24.249956,13.5 - parent: 2 -- proto: BarberHairDyeDark - entities: - - uid: 288791 - components: - - type: Transform - pos: 24.175882,13.5 - parent: 2 -- proto: BarberHairDyeGreen - entities: - - uid: 31315 - components: - - type: Transform - pos: 24.430511,13.5 - parent: 2 -- proto: BarberHairDyeLight - entities: - - uid: 31313 - components: - - type: Transform - pos: 24.31014,13.5 - parent: 2 -- proto: BarberHairDyeRed - entities: - - uid: 31314 - components: - - type: Transform - pos: 24.370327,13.5 - parent: 2 -- proto: BarberPole - entities: - - uid: 281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,11.5 - parent: 2 - - uid: 757 - components: - - type: Transform - pos: 22.5,11.5 - parent: 2 -- proto: BarberRazor - entities: - - uid: 31321 - components: - - type: Transform - pos: 24.072445,15.581144 - parent: 2 -- proto: BarberScissors - entities: - - uid: 1038 - components: - - type: Transform - pos: 35.532795,23.646767 - parent: 2 - - uid: 31320 - components: - - type: Transform - pos: 24.544668,15.571886 - parent: 2 -- proto: Barricade - entities: - - uid: 1039 - components: - - type: Transform - pos: -20.5,12.5 - parent: 2 - - uid: 1041 - components: - - type: Transform - pos: 62.5,16.5 - parent: 2 - - uid: 1042 - components: - - type: Transform - pos: 61.5,16.5 - parent: 2 - - uid: 1043 - components: - - type: Transform - pos: 60.5,16.5 - parent: 2 - - uid: 1047 - components: - - type: Transform - pos: -33.5,-52.5 - parent: 2 - - uid: 1048 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 2 - - uid: 1049 - components: - - type: Transform - pos: -30.5,-53.5 - parent: 2 - - uid: 1050 - components: - - type: Transform - pos: -33.5,-55.5 - parent: 2 - - uid: 1051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-58.5 - parent: 2 - - uid: 1052 - components: - - type: Transform - pos: -30.5,-44.5 - parent: 2 - - uid: 1053 - components: - - type: Transform - pos: 87.5,-23.5 - parent: 2 - - uid: 1054 - components: - - type: Transform - pos: 87.5,-28.5 - parent: 2 - - uid: 1055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-45.5 - parent: 2 - - uid: 1056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-53.5 - parent: 2 - - uid: 1057 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-47.5 - parent: 2 - - uid: 1058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-70.5 - parent: 2 - - uid: 10715 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,5.5 - parent: 2 - - uid: 15866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,12.5 - parent: 2 - - uid: 15908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,13.5 - parent: 2 - - uid: 26173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,13.5 - parent: 2 - - uid: 26877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-75.5 - parent: 2 - - uid: 27391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-75.5 - parent: 2 - - uid: 27404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-74.5 - parent: 2 - - uid: 29148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-77.5 - parent: 2 - - uid: 30391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,41.5 - parent: 2 - - uid: 30397 - components: - - type: Transform - pos: -35.5,30.5 - parent: 2 - - uid: 30441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,42.5 - parent: 2 - - uid: 30466 - components: - - type: Transform - pos: -37.5,21.5 - parent: 2 - - uid: 30467 - components: - - type: Transform - pos: -36.5,21.5 - parent: 2 - - uid: 30468 - components: - - type: Transform - pos: -36.5,20.5 - parent: 2 - - uid: 30474 - components: - - type: Transform - pos: -35.5,21.5 - parent: 2 - - uid: 30475 - components: - - type: Transform - pos: -31.5,17.5 - parent: 2 - - uid: 30510 - components: - - type: Transform - pos: -32.5,24.5 - parent: 2 - - uid: 30511 - components: - - type: Transform - pos: -31.5,22.5 - parent: 2 - - uid: 30534 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,21.5 - parent: 2 - - uid: 30697 - components: - - type: Transform - pos: -43.5,22.5 - parent: 2 - - uid: 30698 - components: - - type: Transform - pos: -43.5,21.5 - parent: 2 - - uid: 30703 - components: - - type: Transform - pos: -41.5,20.5 - parent: 2 - - uid: 30704 - components: - - type: Transform - pos: -41.5,21.5 - parent: 2 - - uid: 30708 - components: - - type: Transform - pos: -40.5,22.5 - parent: 2 - - uid: 30876 - components: - - type: Transform - pos: 61.5,21.5 - parent: 2 - - uid: 30877 - components: - - type: Transform - pos: 60.5,25.5 - parent: 2 - - uid: 30878 - components: - - type: Transform - pos: 60.5,24.5 - parent: 2 - - uid: 30879 - components: - - type: Transform - pos: 61.5,25.5 - parent: 2 - - uid: 30885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,20.5 - parent: 2 - - uid: 30888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,19.5 - parent: 2 - - uid: 30889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,20.5 - parent: 2 - - uid: 30890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,20.5 - parent: 2 - - uid: 30895 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,24.5 - parent: 2 - - uid: 30896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,24.5 - parent: 2 + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNe + decals: + 6: 3,4 + 7: 4,2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNw + decals: + 2: 1,2 + 3: 2,4 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSe + decals: + 0: 4,0 + 4: 3,-1 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSw + decals: + 1: 1,0 + 5: 2,-1 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerNe + decals: + 14: 3,2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerNw + decals: + 15: 2,2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerSe + decals: + 12: 3,0 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerSw + decals: + 13: 2,0 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineE + decals: + 9: 4,1 + 10: 3,3 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineW + decals: + 8: 2,3 + 11: 1,1 + - node: + color: '#FFFFFFFF' + id: StandClearGreyscale + decals: + 16: 2.5143104,1.9497223 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 1,0: + 0: 13107 + 0,1: + 0: 239 + 1,1: + 0: 19 + 0,-1: + 0: 65504 + 1,-1: + 0: 13072 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: Joint + joints: + docking168406: !type:WeldJoint + bodyB: 21114 + bodyA: 2 + id: docking168406 + localAnchorB: 6,1.5 + localAnchorA: -50,100.5 + damping: 433.85437 + stiffness: 3894.268 - uid: 30902 components: - - type: Transform - pos: 65.5,22.5 - parent: 2 - - uid: 30903 - components: - - type: Transform - pos: 66.5,22.5 - parent: 2 - - uid: 30909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,25.5 - parent: 2 - - uid: 31195 - components: - - type: Transform - pos: 66.5,16.5 - parent: 2 - - uid: 31196 - components: - - type: Transform - pos: 66.5,18.5 - parent: 2 - - uid: 31244 - components: - - type: Transform - pos: 64.5,19.5 - parent: 2 - - uid: 31245 - components: - - type: Transform - pos: 67.5,19.5 - parent: 2 - - uid: 31469 - components: - - type: Transform - pos: 49.5,-69.5 - parent: 2 - - uid: 31472 - components: - - type: Transform - pos: 51.5,-69.5 - parent: 2 - - uid: 31473 - components: - - type: Transform - pos: 52.5,-70.5 - parent: 2 - - uid: 31475 - components: - - type: Transform - pos: 51.5,-70.5 - parent: 2 - - uid: 31476 - components: - - type: Transform - pos: 51.5,-71.5 - parent: 2 - - uid: 31481 - components: - - type: Transform - pos: 54.5,-74.5 - parent: 2 - - uid: 31482 - components: - - type: Transform - pos: 55.5,-74.5 - parent: 2 - - uid: 31503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-71.5 - parent: 2 - - uid: 31504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-70.5 - parent: 2 - - uid: 31505 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-71.5 - parent: 2 - - uid: 31506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-71.5 - parent: 2 - - uid: 31507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-70.5 - parent: 2 - - uid: 31508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-72.5 - parent: 2 - - uid: 31509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-71.5 - parent: 2 - - uid: 31517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-70.5 - parent: 2 - - uid: 31518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-71.5 - parent: 2 - - uid: 31519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-70.5 - parent: 2 - - uid: 31520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-71.5 - parent: 2 - - uid: 31522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-72.5 - parent: 2 - - uid: 31523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-73.5 - parent: 2 - - uid: 31525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-71.5 - parent: 2 - - uid: 31552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-74.5 - parent: 2 - - uid: 31559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-77.5 - parent: 2 -- proto: BarricadeBlock - entities: - - uid: 1059 - components: - - type: Transform - pos: -31.5,13.5 - parent: 2 - - uid: 1060 - components: + - type: MetaData + name: MED "First aid" - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-69.5 - parent: 2 - - uid: 16460 - components: - - type: Transform - pos: 79.5,-59.5 - parent: 2 - - uid: 30437 - components: - - type: Transform - pos: -31.5,41.5 - parent: 2 - - uid: 30502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,20.5 - parent: 2 - - uid: 30552 - components: - - type: Transform - pos: -31.5,33.5 - parent: 2 - - uid: 30555 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,35.5 - parent: 2 - - uid: 30719 - components: - - type: Transform - pos: -44.5,20.5 - parent: 2 - - uid: 31515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-66.5 - parent: 2 - - uid: 31516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-70.5 - parent: 2 - - uid: 31521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-79.5 - parent: 2 - - uid: 31524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-70.5 - parent: 2 - - uid: 31526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-72.5 - parent: 2 - - uid: 31527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-73.5 - parent: 2 - - uid: 31528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-71.5 - parent: 2 - - uid: 31529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-71.5 - parent: 2 - - uid: 31530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-70.5 - parent: 2 - - uid: 31531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-71.5 - parent: 2 - - uid: 31532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-71.5 - parent: 2 - - uid: 31533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-74.5 - parent: 2 - - uid: 31534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-75.5 - parent: 2 - - uid: 31535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-76.5 - parent: 2 -- proto: BarricadeDirectional - entities: - - uid: 1061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-71.5 - parent: 2 - - uid: 1062 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-70.5 - parent: 2 - - uid: 1063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-70.5 - parent: 2 - - uid: 11193 - components: - - type: Transform - pos: -34.5,29.5 - parent: 2 - - uid: 21537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,22.5 - parent: 2 - - uid: 29846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,5.5 - parent: 2 - - uid: 29847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,12.5 - parent: 2 - - uid: 29849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,12.5 - parent: 2 - - uid: 30353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,20.5 - parent: 2 - - uid: 30392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,31.5 - parent: 2 - - uid: 30394 - components: - - type: Transform - pos: -37.5,30.5 - parent: 2 - - uid: 30438 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,43.5 - parent: 2 - - uid: 30469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,20.5 - parent: 2 - - uid: 30470 - components: - - type: Transform - pos: -36.5,22.5 - parent: 2 - - uid: 30473 - components: - - type: Transform - pos: -31.5,18.5 - parent: 2 - - uid: 30512 - components: - - type: Transform - pos: -31.5,23.5 - parent: 2 - - uid: 30515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,24.5 - parent: 2 - - uid: 30533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,21.5 - parent: 2 - - uid: 30553 - components: - - type: Transform - pos: -31.5,34.5 - parent: 2 - - uid: 30558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,43.5 - parent: 2 - - uid: 30559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,44.5 - parent: 2 - - uid: 30585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,35.5 - parent: 2 - - uid: 30720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 2 - - uid: 30833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,19.5 - parent: 2 - - uid: 30875 - components: - - type: Transform - pos: 65.5,25.5 - parent: 2 - - uid: 30880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,21.5 - parent: 2 - - uid: 30881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,23.5 - parent: 2 - - uid: 30882 - components: - - type: Transform - pos: 60.5,26.5 - parent: 2 - - uid: 30883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,25.5 - parent: 2 - - uid: 30891 - components: - - type: Transform - pos: 66.5,21.5 - parent: 2 - - uid: 30892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,19.5 - parent: 2 - - uid: 30893 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,18.5 - parent: 2 - - uid: 30894 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,19.5 - parent: 2 - - uid: 30898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,24.5 - parent: 2 - - uid: 30900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,22.5 - parent: 2 - - uid: 30904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,23.5 - parent: 2 - - uid: 30905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,23.5 - parent: 2 - - uid: 30906 - components: - - type: Transform - pos: 65.5,23.5 - parent: 2 - - uid: 30908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,25.5 - parent: 2 - - uid: 31201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,17.5 - parent: 2 - - uid: 31202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,18.5 - parent: 2 - - uid: 31510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-79.5 - parent: 2 - - uid: 31511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-70.5 - parent: 2 - - uid: 31512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-70.5 - parent: 2 - - uid: 31513 - components: - - type: Transform - pos: 49.5,-65.5 - parent: 2 - - uid: 31514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-67.5 - parent: 2 - - uid: 31536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-72.5 - parent: 2 - - uid: 31538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-71.5 - parent: 2 - - uid: 31541 - components: - - type: Transform - pos: 63.5,-71.5 - parent: 2 - - uid: 31542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-70.5 - parent: 2 - - uid: 31544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-70.5 - parent: 2 - - uid: 31547 - components: - - type: Transform - pos: 55.5,-70.5 - parent: 2 - - uid: 31549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-70.5 - parent: 2 - - uid: 31550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-70.5 - parent: 2 - - uid: 31551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-70.5 - parent: 2 - - uid: 31560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-78.5 - parent: 2 - - uid: 31561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-77.5 - parent: 2 - - uid: 31562 - components: - - type: Transform - pos: 62.5,-73.5 - parent: 2 - - uid: 31563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-72.5 - parent: 2 - - uid: 31564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-73.5 - parent: 2 - - uid: 31565 - components: - - type: Transform - pos: 60.5,-70.5 - parent: 2 - - uid: 31566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-79.5 - parent: 2 - - uid: 31567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-76.5 - parent: 2 - - uid: 31568 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-73.5 - parent: 2 -- proto: BarSignMaidCafe - entities: - - uid: 1064 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 2 -- proto: BarSignOfficerBeersky - entities: - - uid: 1065 - components: - - type: Transform - pos: -34.5,17.5 - parent: 2 -- proto: BarSignTheDrunkCarp - entities: - - uid: 1066 - components: - - type: Transform - pos: 23.5,1.5 - parent: 2 -- proto: BaseBallBat - entities: - - uid: 30367 - components: - - type: Transform - pos: -28.388245,32.530838 - parent: 2 -- proto: BaseComputer - entities: - - uid: 1071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-51.5 - parent: 2 - - uid: 13445 - components: - - type: Transform - pos: 57.5,-29.5 - parent: 2 -- proto: BaseGasCondenser - entities: - - uid: 1073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-19.5 - parent: 2 - - uid: 28319 - components: - - type: Transform - pos: 14.5,-45.5 - parent: 2 -- proto: BaseResearchAndDevelopmentPointSource - entities: - - uid: 600 - components: - - type: Transform - pos: 53.5,-29.5 - parent: 2 -- proto: Beaker - entities: - - uid: 1075 - components: - - type: Transform - pos: 74.27338,-18.287746 - parent: 2 - - uid: 1076 - components: - - type: Transform - pos: 19.78197,-9.326267 - parent: 2 - - uid: 1078 - components: - - type: Transform - pos: 65.25272,-76.32206 - parent: 2 - - uid: 1079 - components: - - type: Transform - pos: 22.496002,-21.382046 - parent: 2 - - uid: 1080 - components: - - type: Transform - pos: 65.41172,-76.48106 - parent: 2 - - uid: 1081 - components: - - type: Transform - pos: 18.797594,-9.435642 - parent: 2 - - uid: 1082 - components: - - type: Transform - pos: 19.172594,-9.060642 - parent: 2 - - uid: 24247 - components: - - type: Transform - pos: 42.362797,-10.3899 - parent: 2 -- proto: Bed - entities: - - uid: 1101 - components: - - type: Transform - pos: -6.5,23.5 - parent: 2 - - uid: 1102 - components: - - type: Transform - pos: -14.5,23.5 - parent: 2 - - uid: 1103 - components: - - type: Transform - pos: -2.5,23.5 - parent: 2 - - uid: 1111 - components: - - type: Transform - pos: -18.5,40.5 - parent: 2 - - uid: 1112 - components: - - type: Transform - pos: -21.5,40.5 - parent: 2 - - uid: 1113 - components: - - type: Transform - pos: -20.5,48.5 - parent: 2 - - uid: 1114 - components: - - type: Transform - pos: -17.5,48.5 - parent: 2 - - uid: 1117 - components: - - type: Transform - pos: 4.5,-34.5 - parent: 2 - - uid: 1118 - components: - - type: Transform - pos: -10.5,23.5 - parent: 2 -- proto: BedsheetGreen - entities: - - uid: 1122 - components: - - type: Transform - pos: 44.5,-58.5 - parent: 2 - - uid: 1124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-58.5 - parent: 2 -- proto: BedsheetHOP - entities: - - uid: 1125 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 2 -- proto: BedsheetMedical - entities: - - uid: 1127 - components: - - type: Transform - pos: -11.5,30.5 - parent: 2 - - uid: 1128 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 2 - - uid: 1129 - components: - - type: Transform - pos: 30.5,-27.5 - parent: 2 - - uid: 1130 - components: - - type: Transform - pos: -11.5,32.5 - parent: 2 - - uid: 1131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-36.5 - parent: 2 - - uid: 1132 - components: - - type: Transform - pos: 29.5,-36.5 - parent: 2 - - uid: 1133 - components: - - type: Transform - pos: 32.5,-36.5 - parent: 2 - - uid: 1134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-29.5 - parent: 2 - - uid: 1135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 2 - - uid: 1136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-27.5 - parent: 2 - - uid: 14954 - components: - - type: Transform - pos: -11.5,33.5 - parent: 2 -- proto: BedsheetOrange - entities: - - uid: 1138 - components: - - type: Transform - pos: -20.5,48.5 - parent: 2 - - uid: 1139 - components: - - type: Transform - pos: -18.5,40.5 - parent: 2 - - uid: 1140 - components: - - type: Transform - pos: -21.5,40.5 - parent: 2 -- proto: BedsheetSpawner - entities: - - uid: 1144 - components: - - type: Transform - pos: 55.5,-49.5 - parent: 2 - - uid: 1149 - components: - - type: Transform - pos: -19.5,16.5 - parent: 2 -- proto: BedsheetSyndie - entities: - - uid: 1152 - components: - - type: Transform - pos: -17.5,48.5 - parent: 2 -- proto: BedsheetWhite - entities: - - uid: 1153 - components: - - type: Transform - pos: -10.5,23.5 - parent: 2 - - uid: 1154 - components: - - type: Transform - pos: -6.5,23.5 - parent: 2 - - uid: 1155 - components: - - type: Transform - pos: -2.5,23.5 - parent: 2 - - uid: 31706 - components: - - type: Transform - pos: -14.5,23.5 - parent: 2 - - uid: 31767 - components: - - type: Transform - pos: 4.5,-34.5 - parent: 2 -- proto: Bible - entities: - - uid: 1156 - components: - - type: Transform - pos: 73.522736,-3.3729205 - parent: 2 -- proto: BikeHorn - entities: - - uid: 1159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.4752,-16.595829 - parent: 2 -- proto: Biogenerator - entities: - - uid: 20737 - components: - - type: Transform - pos: 46.5,-5.5 - parent: 2 -- proto: BiomassReclaimer - entities: - - uid: 1161 - components: - - type: Transform - pos: 45.5,-19.5 - parent: 2 -- proto: BlastDoor - entities: - - uid: 1011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,36.5 - parent: 2 - - uid: 1163 + pos: 40.83828,68.43776 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: dQAAAAAALAAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAALAAAAAAAdQAAAAAAdQAAAAAAVQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#3747FEFF' + id: BrickTileWhiteBox + decals: + 1: 4,-2 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerSe + decals: + 22: 2,-3 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerSw + decals: + 23: 0,-3 + - node: + color: '#3747FEFF' + id: BrickTileWhiteInnerSw + decals: + 0: 0,-2 + - node: + color: '#52B4E9FF' + id: MiniTileSteelCornerNe + decals: + 4: 2,4 + - node: + color: '#52B4E9FF' + id: MiniTileSteelCornerNw + decals: + 5: 0,4 + - node: + color: '#52B4E9FF' + id: MiniTileSteelCornerSe + decals: + 6: 2,3 + - node: + color: '#52B4E9FF' + id: MiniTileSteelCornerSw + decals: + 7: 0,3 + - node: + color: '#52B4E9FF' + id: MiniTileSteelLineN + decals: + 3: 1,4 + - node: + color: '#52B4E9FF' + id: MiniTileSteelLineS + decals: + 2: 1,3 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNe + decals: + 8: 3,1 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNw + decals: + 9: -1,1 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSe + decals: + 10: 3,-2 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSw + decals: + 11: -1,-2 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerSe + decals: + 18: 2,-2 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerSw + decals: + 19: 0,-2 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineE + decals: + 12: 3,-1 + 13: 3,0 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineN + decals: + 14: 2,1 + 15: 0,1 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineW + decals: + 16: -1,-1 + 17: -1,0 + - node: + color: '#52B4E9FF' + id: WarnLineGreyscaleN + decals: + 20: 1,1 + - node: + color: '#52B4E9FF' + id: WarnLineGreyscaleS + decals: + 21: 1,-3 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,1: + 0: 127 + 1: 128 + 1,0: + 0: 275 + -1,0: + 0: 36046 + -1,1: + 0: 8 + 1: 128 + 0,-1: + 0: 65535 + 1,-1: + 0: 13105 + -1,-1: + 0: 61164 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: Joint + joints: + docking51973: !type:WeldJoint + bodyB: 30902 + bodyA: 2 + id: docking51973 + localAnchorB: 2.5,-4 + localAnchorA: -0.5,161 + referenceAngle: 3.1415927 + damping: 621.5432 + stiffness: 5578.9595 + docking51974: !type:WeldJoint + bodyB: 30902 + bodyA: 2 + id: docking51974 + localAnchorB: 0.49999997,-4 + localAnchorA: 1.5,161 + referenceAngle: 3.1415927 + damping: 621.5432 + stiffness: 5578.9595 + - uid: 36996 components: - type: MetaData - name: Incinerator Vent + name: ??? - type: Transform - pos: -42.5,-49.5 - parent: 2 - - uid: 1165 - components: - - type: Transform - pos: -6.5,-76.5 - parent: 2 - - uid: 1166 - components: - - type: Transform - pos: 3.5,-76.5 - parent: 2 - - uid: 1167 + rot: 1.7453292519943295 rad + pos: -98.10943,8.592921 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: UAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAUAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAUAAAAAAALAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAUAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 18: 0,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 4: 0,1 + 5: 2,-1 + 6: -1,-4 + 7: 1,-3 + 8: -2,-1 + 10: 0,-2 + 15: 0,-4 + 16: -1,-2 + 17: 0,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 9: -1,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 14: 0,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 13: 0,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 11: 2,-2 + 12: 0,0 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineE + decals: + 0: 2,-2 + 1: 2,-1 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineW + decals: + 2: -2,-2 + 3: -2,-1 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 819 + 1: 31948 + -1,0: + 0: 2184 + 1: 50791 + 1,0: + 1: 1 + -2,-1: + 1: 34816 + -1,-1: + 1: 65516 + -1,-2: + 1: 49152 + 0,-2: + 1: 28672 + 0,-1: + 1: 65527 + 1,-1: + 1: 13056 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - uid: 37842 components: - type: MetaData - name: Incinerator Vent - - type: Transform - pos: -42.5,-48.5 - parent: 2 - - uid: 1168 - components: - - type: MetaData - name: Incinerator Vent - - type: Transform - pos: -42.5,-50.5 - parent: 2 - - uid: 1170 - components: - - type: Transform - pos: 5.5,-76.5 - parent: 2 - - uid: 1171 - components: - - type: Transform - pos: 4.5,-76.5 - parent: 2 - - uid: 1172 - components: - - type: Transform - pos: -4.5,-76.5 - parent: 2 - - uid: 1173 - components: - - type: Transform - pos: -5.5,-76.5 - parent: 2 - - uid: 1174 - components: - - type: Transform - pos: -61.5,-21.5 - parent: 2 - - uid: 1179 - components: - - type: Transform - pos: 93.5,-25.5 - parent: 2 - - uid: 1180 - components: - - type: Transform - pos: 91.5,-25.5 - parent: 2 - - uid: 1186 - components: - - type: Transform - pos: 87.5,-38.5 - parent: 2 - - uid: 1189 - components: - - type: Transform - pos: -3.5,-74.5 - parent: 2 - - uid: 1190 - components: - - type: Transform - pos: -3.5,-73.5 - parent: 2 - - uid: 1191 - components: - - type: Transform - pos: 2.5,-74.5 - parent: 2 - - uid: 1192 - components: - - type: Transform - pos: 2.5,-73.5 - parent: 2 - - uid: 2209 - components: - - type: Transform - pos: -61.5,-19.5 - parent: 2 - - uid: 4114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,48.5 - parent: 2 - - uid: 4131 - components: + name: SUP "Based taxi" - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,36.5 - parent: 2 - - uid: 7642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-71.5 - parent: 2 - - uid: 10418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-69.5 - parent: 2 - - uid: 11127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,38.5 - parent: 2 - - uid: 12023 - components: - - type: Transform - pos: 74.5,-34.5 - parent: 2 - - uid: 12024 - components: - - type: Transform - pos: 75.5,-34.5 - parent: 2 - - uid: 12186 - components: - - type: Transform - pos: 69.5,-34.5 - parent: 2 - - uid: 13680 - components: - - type: Transform - pos: 73.5,-34.5 - parent: 2 - - uid: 14012 - components: - - type: Transform - pos: 70.5,-34.5 - parent: 2 - - uid: 14013 - components: - - type: Transform - pos: 71.5,-34.5 - parent: 2 - - uid: 15874 - components: - - type: Transform - pos: -71.5,20.5 - parent: 2 - - uid: 15875 - components: - - type: Transform - pos: -72.5,20.5 - parent: 2 - - uid: 15883 - components: - - type: Transform - pos: -70.5,20.5 - parent: 2 - - uid: 17462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,35.5 - parent: 2 - - uid: 18863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-70.5 - parent: 2 - - uid: 19082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-68.5 - parent: 2 - - uid: 20239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,34.5 - parent: 2 - - uid: 22224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-72.5 - parent: 2 - - uid: 23486 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-70.5 - parent: 2 - - uid: 26650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,48.5 - parent: 2 - - uid: 28455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,48.5 - parent: 2 - - uid: 31465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-79.5 - parent: 2 -- proto: BlastDoorOpen - entities: - - uid: 1187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,43.5 - parent: 2 - - uid: 1193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,43.5 - parent: 2 - - uid: 1200 - components: - - type: Transform - pos: 17.5,39.5 - parent: 2 - - uid: 1203 - components: - - type: Transform - pos: 13.5,39.5 - parent: 2 - - uid: 1206 - components: - - type: Transform - pos: 17.5,46.5 - parent: 2 - - uid: 1207 - components: - - type: Transform - pos: 15.5,46.5 - parent: 2 - - uid: 1208 - components: - - type: Transform - pos: 13.5,46.5 - parent: 2 - - uid: 1209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,42.5 - parent: 2 - - uid: 1210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,41.5 - parent: 2 - - uid: 21252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 2 - - uid: 21286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-8.5 - parent: 2 - - uid: 21295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-9.5 - parent: 2 - - uid: 21297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-7.5 - parent: 2 - - uid: 21451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-9.5 - parent: 2 - - uid: 21452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-8.5 - parent: 2 - - uid: 24750 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 2 - - uid: 30030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,42.5 - parent: 2 - - uid: 30031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,41.5 - parent: 2 - - uid: 30032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,50.5 - parent: 2 - - uid: 30033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,42.5 - parent: 2 - - uid: 30034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,41.5 - parent: 2 - - uid: 30035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,40.5 - parent: 2 - - uid: 31466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-79.5 - parent: 2 -- proto: BlockGameArcade - entities: - - uid: 1223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-33.5 - parent: 2 - - type: SpamEmitSound - enabled: False - - uid: 1224 - components: - - type: Transform - pos: 7.5,-51.5 - parent: 2 - - type: SpamEmitSound - enabled: False - - uid: 1225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,47.5 - parent: 2 - - type: SpamEmitSound - enabled: False -- proto: Bola - entities: - - uid: 6734 - components: - - type: Transform - pos: 9.575473,32.5 - parent: 2 - - uid: 6800 - components: - - type: Transform - pos: 9.544223,32.5 - parent: 2 - - uid: 10818 - components: - - type: Transform - pos: 9.356723,32.5 - parent: 2 - - uid: 10868 - components: - - type: Transform - pos: 9.434848,32.5 - parent: 2 - - uid: 11795 - components: - - type: Transform - pos: 9.497348,32.5 - parent: 2 -- proto: BookHowToCookForFortySpaceman - entities: - - uid: 1226 - components: - - type: Transform - pos: 38.39524,-6.593956 - parent: 2 -- proto: BookNarsieLegend - entities: - - uid: 10570 - components: - - type: MetaData - desc: Библия в старом кожаном переплетё с Сигилами древнего бога. - name: Неизвестная Библия. - - type: Transform - pos: 43.46805,-73.4107 - parent: 2 - - uid: 10981 - components: - - type: Transform - pos: 62.492783,24.58197 - parent: 2 -- proto: BookRandomStory - entities: - - uid: 1229 - components: - - type: Transform - pos: 63.37631,-2.5543425 - parent: 2 - - uid: 1230 - components: - - type: Transform - pos: 63.61705,-2.484898 - parent: 2 - - uid: 1232 - components: - - type: Transform - pos: 63.450386,-2.3830462 - parent: 2 - - uid: 15893 - components: - - type: Transform - pos: 68.55093,-6.3993797 - parent: 2 - - uid: 16525 - components: - - type: Transform - pos: 61.54323,-10.415005 - parent: 2 - - uid: 29387 - components: - - type: Transform - pos: 61.452785,-7.4040236 - parent: 2 -- proto: BookScientistsGuidebook - entities: - - uid: 1233 - components: - - type: Transform - pos: 70.48863,-53.4144 - parent: 2 -- proto: Bookshelf - entities: - - uid: 1239 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 2 - - uid: 1242 - components: - - type: Transform - pos: 56.5,-33.5 - parent: 2 - - uid: 1243 - components: - - type: Transform - pos: 57.5,-33.5 - parent: 2 - - uid: 1244 - components: - - type: Transform - pos: 55.5,-33.5 - parent: 2 - - uid: 24754 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 2 - - uid: 26376 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 2 -- proto: BookshelfFilled - entities: - - uid: 1246 - components: - - type: Transform - pos: 54.5,-4.5 - parent: 2 - - uid: 1247 - components: - - type: Transform - pos: 57.5,-4.5 - parent: 2 - - uid: 1248 - components: - - type: Transform - pos: 58.5,-4.5 - parent: 2 - - uid: 1249 - components: - - type: Transform - pos: 53.5,-4.5 - parent: 2 - - uid: 1250 - components: - - type: Transform - pos: 57.5,-2.5 - parent: 2 - - uid: 1252 - components: - - type: Transform - pos: 58.5,-2.5 - parent: 2 - - uid: 1253 - components: - - type: Transform - pos: 54.5,-2.5 - parent: 2 - - uid: 1256 - components: - - type: Transform - pos: 54.5,-6.5 - parent: 2 - - uid: 1257 - components: - - type: Transform - pos: 53.5,-6.5 - parent: 2 - - uid: 1258 - components: - - type: Transform - pos: 53.5,-2.5 - parent: 2 - - uid: 1260 - components: - - type: Transform - pos: 63.5,-7.5 - parent: 2 - - uid: 1261 - components: - - type: Transform - pos: 63.5,-6.5 - parent: 2 - - uid: 1262 - components: - - type: Transform - pos: 58.5,-6.5 - parent: 2 - - uid: 1264 - components: - - type: Transform - pos: 71.5,-10.5 - parent: 2 - - uid: 1265 - components: - - type: Transform - pos: 75.5,-10.5 - parent: 2 - - uid: 1431 - components: - - type: Transform - pos: 22.5,19.5 - parent: 2 - - uid: 1818 - components: - - type: Transform - pos: 82.5,-30.5 - parent: 2 - - uid: 2678 - components: - - type: Transform - pos: -3.5,-17.5 - parent: 2 - - uid: 5613 - components: - - type: Transform - pos: 80.5,-25.5 - parent: 2 - - uid: 5685 - components: - - type: Transform - pos: 82.5,-25.5 - parent: 2 - - uid: 5686 - components: - - type: Transform - pos: 78.5,-28.5 - parent: 2 - - uid: 5687 - components: - - type: Transform - pos: 78.5,-26.5 - parent: 2 - - uid: 5716 - components: - - type: Transform - pos: 78.5,-27.5 - parent: 2 - - uid: 5717 - components: - - type: Transform - pos: 78.5,-29.5 - parent: 2 - - uid: 8987 - components: - - type: Transform - pos: 80.5,-30.5 - parent: 2 - - uid: 11818 - components: - - type: Transform - pos: 22.5,17.5 - parent: 2 - - uid: 21964 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 2 - - uid: 22064 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 2 - - uid: 22882 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 2 - - uid: 28849 - components: - - type: Transform - pos: 22.5,18.5 - parent: 2 -- proto: BoozeDispenser - entities: - - uid: 1267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,0.5 - parent: 2 -- proto: BorgCharger - entities: - - uid: 367 - components: - - type: Transform - pos: 81.5,-5.5 - parent: 2 - - uid: 1271 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 2 - - uid: 1272 - components: - - type: Transform - pos: 19.5,34.5 - parent: 2 - - uid: 1273 - components: - - type: Transform - pos: 16.5,3.5 - parent: 2 - - uid: 16262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-16.5 - parent: 2 - - uid: 18961 - components: - - type: Transform - pos: -16.5,28.5 - parent: 2 - - uid: 19967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-18.5 - parent: 2 - - uid: 22281 - components: - - type: Transform - pos: 24.5,-34.5 - parent: 2 - - uid: 22283 - components: - - type: Transform - pos: -8.5,-11.5 - parent: 2 - - uid: 22285 - components: - - type: Transform - pos: -30.5,-19.5 - parent: 2 - - uid: 22286 - components: - - type: Transform - pos: 10.5,26.5 - parent: 2 - - uid: 22287 - components: - - type: Transform - pos: 9.5,-72.5 - parent: 2 - - uid: 22296 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-51.5 - parent: 2 - - uid: 22297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-36.5 - parent: 2 - - uid: 30154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,40.5 - parent: 2 -- proto: BoxBeaker - entities: - - uid: 1275 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 2 - - uid: 1276 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 2 - - uid: 1277 - components: - - type: Transform - pos: 38.5,-60.5 - parent: 2 - - uid: 1278 - components: - - type: Transform - pos: 69.43082,-28.496725 - parent: 2 - - uid: 1279 - components: - - type: Transform - pos: 76.50828,-54.33026 - parent: 2 - - uid: 16459 - components: - - type: Transform - pos: 61.000057,-29.373474 - parent: 2 - - uid: 27393 - components: - - type: Transform - pos: -13.619799,33.438126 - parent: 2 -- proto: BoxBeanbag - entities: - - uid: 1282 - components: - - type: Transform - pos: 27.54389,2.6184087 - parent: 2 - - uid: 23644 - components: - - type: Transform - pos: -0.5203941,40.392708 - parent: 2 - - uid: 23671 - components: - - type: Transform - pos: -0.5360191,40.642708 - parent: 2 - - uid: 30830 - components: - - type: Transform - pos: 66.69846,2.2875042 - parent: 2 -- proto: BoxBodyBag - entities: - - uid: 1285 - components: - - type: Transform - rot: 0.00039273296715691686 rad - pos: 41.63594,-16.263338 - parent: 2 - - uid: 1286 - components: - - type: Transform - pos: 60.481464,1.5919132 - parent: 2 - - uid: 17457 - components: - - type: Transform - parent: 19891 + pos: 28.874403,-77.32722 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: IgAAAAAAHgAAAAAAHgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22020 - components: - - type: Transform - pos: 18.532383,23.562057 - parent: 2 -- proto: BoxCandle + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#A4610696' + id: MiniTileWhiteCornerNe + decals: + 6: 1,1 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerNw + decals: + 5: -1,1 + - node: + color: '#A4610696' + id: MiniTileWhiteEndE + decals: + 1: 2,0 + - node: + color: '#A4610696' + id: MiniTileWhiteEndW + decals: + 0: -2,0 + - node: + color: '#A4610696' + id: MiniTileWhiteInnerNe + decals: + 8: 1,0 + - node: + color: '#A4610696' + id: MiniTileWhiteInnerNw + decals: + 9: -1,0 + - node: + color: '#A4610696' + id: MiniTileWhiteLineN + decals: + 7: 0,1 + - node: + color: '#A4610696' + id: MiniTileWhiteLineS + decals: + 2: -1,0 + 3: 0,0 + 4: 1,0 + - node: + angle: 1.5707963267948966 rad + color: '#00000023' + id: line + decals: + 10: -1.9145966,-2.4307117 + 11: -0.9847641,-2.4057236 + 12: -0.03492737,-2.395729 + 13: 0.9348984,-2.370741 + 14: -1.9995804,-2.4906807 + 15: -1.0147552,-2.5206661 + 16: -0.06492615,-2.4856834 + 17: 0.954895,-2.4856834 + 18: -1.9545898,-2.5706406 + 19: -1.0397491,-2.5306606 + 20: -0.03492737,-2.5506516 + 21: 1.0348816,-2.560646 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 32735 + 1: 32 + -1,0: + 0: 52974 + -1,-1: + 0: 61166 + 0,-1: + 0: 65535 + -1,-2: + 0: 61166 + -1,-3: + 0: 49152 + 0,-3: + 0: 28672 + 0,-2: + 0: 65535 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: Joint + joints: + docking457716: !type:WeldJoint + bodyB: 37842 + bodyA: 2 + id: docking457716 + localAnchorB: -3,0.5 + localAnchorA: -10.5,8 + referenceAngle: 1.5707964 + damping: 753.86066 + stiffness: 6766.638 + docking457717: !type:WeldJoint + bodyB: 37842 + bodyA: 2 + id: docking457717 + localAnchorB: -3,-1.5 + localAnchorA: -8.5,8 + referenceAngle: 1.5707964 + damping: 753.86066 + stiffness: 6766.638 +- proto: AcousticGuitarInstrument entities: - - uid: 1288 + - uid: 14069 components: - type: Transform - pos: 62.481464,1.6075382 + pos: -67.53158,101.24338 parent: 2 -- proto: BoxCandleSmall + - uid: 43179 + components: + - type: Transform + pos: 0.4563446,-2.5673122 + parent: 37842 +- proto: AirAlarm entities: - - uid: 1289 + - uid: 942 components: - type: Transform - pos: 74.522736,-3.4354205 - parent: 2 -- proto: BoxCardboard - entities: - - uid: 1290 - components: - - type: Transform - pos: -31.5,-16.5 - parent: 2 -- proto: BoxFolderBlack - entities: - - uid: 29810 - components: - - type: Transform - pos: -3.3045344,14.572521 - parent: 2 - - uid: 30755 - components: - - type: Transform - pos: 17.576515,36.726646 - parent: 2 -- proto: BoxFolderBlue - entities: - - uid: 858 - components: - - type: Transform - pos: -5.559759,32.150177 - parent: 2 - - uid: 1300 - components: - - type: Transform - pos: 6.4906216,-15.486443 - parent: 2 - - uid: 1308 - components: - - type: Transform - pos: -13.37221,-14.547139 - parent: 2 - - uid: 25581 - components: - - type: Transform - pos: -0.59544134,-16.63804 - parent: 2 - - uid: 29768 - components: - - type: Transform - pos: -8.411642,3.509203 - parent: 2 - - uid: 29769 - components: - - type: Transform - pos: -11.630392,4.134203 - parent: 2 - - uid: 31728 - components: - - type: Transform - pos: -5.6656427,37.009354 - parent: 2 -- proto: BoxFolderGreen - entities: - - uid: 25322 - components: - - type: Transform - pos: -0.26731634,-15.669291 - parent: 2 - - uid: 30764 - components: - - type: Transform - pos: 17.170265,36.61727 - parent: 2 -- proto: BoxFolderGrey - entities: - - uid: 1310 - components: - - type: Transform - pos: 29.490276,-19.429476 - parent: 2 - - uid: 25684 - components: - - type: Transform - pos: -0.42356634,-16.91929 - parent: 2 -- proto: BoxFolderRed - entities: - - uid: 1317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.441441,42.626167 - parent: 2 - - uid: 1318 - components: - - type: Transform - pos: -13.59096,-14.422139 - parent: 2 - - uid: 3528 - components: - - type: Transform - pos: -17.467995,28.523663 - parent: 2 - - uid: 8425 - components: - - type: Transform - pos: -5.2437677,37.259354 - parent: 2 - - uid: 11389 - components: - - type: Transform - pos: -17.467995,28.523663 - parent: 2 - - uid: 11393 - components: - - type: Transform - pos: -17.467995,28.523663 - parent: 2 - - uid: 17558 - components: - - type: Transform - pos: -5.231634,32.259552 - parent: 2 - - uid: 25375 - components: - - type: Transform - pos: -0.48606634,-15.872416 - parent: 2 - - uid: 28709 - components: - - type: Transform - pos: 1.4284415,30.717924 - parent: 2 - - uid: 29767 - components: - - type: Transform - pos: -7.474142,5.524828 - parent: 2 - - uid: 29770 - components: - - type: Transform - pos: -11.411642,4.337328 - parent: 2 - - uid: 29809 - components: - - type: Transform - pos: -3.6170344,14.666271 - parent: 2 - - uid: 30765 - components: - - type: Transform - pos: 17.420265,36.445396 - parent: 2 -- proto: BoxFolderWhite - entities: - - uid: 1320 - components: - - type: Transform - pos: 11.014877,-34.353035 - parent: 2 - - uid: 1321 - components: - - type: Transform - pos: 36.5333,-40.44767 - parent: 2 - - uid: 1322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.571228,-10.220275 - parent: 2 - - uid: 1323 - components: - - type: Transform - pos: 57.263947,-29.582045 - parent: 2 - - uid: 12187 - components: - - type: Transform - pos: 61.53902,-29.407612 - parent: 2 -- proto: BoxFolderYellow - entities: - - uid: 1331 - components: - - type: Transform - pos: -32.517574,-27.457346 - parent: 2 - - uid: 1332 - components: - - type: Transform - pos: 55.5,1.5 - parent: 2 - - uid: 1333 - components: - - type: Transform - pos: -28.5,-33.5 - parent: 2 - - uid: 1336 - components: - - type: Transform - pos: -28.451855,-25.468752 - parent: 2 - - uid: 1337 - components: - - type: Transform - pos: 6.5516477,-55.92527 - parent: 2 - - uid: 1338 - components: - - type: Transform - pos: -8.5061,-50.749557 - parent: 2 - - uid: 29771 - components: - - type: Transform - pos: -11.349142,4.181078 - parent: 2 - - uid: 29791 - components: - - type: Transform - pos: -13.455156,17.552866 - parent: 2 - - uid: 30342 - components: - - type: Transform - pos: -25.682241,-22.266886 - parent: 2 -- proto: BoxLatexGloves - entities: - - uid: 1341 - components: - - type: Transform - pos: 24.498875,-36.223793 - parent: 2 - - uid: 26234 - components: - - type: Transform - pos: 47.69308,-24.579962 - parent: 2 -- proto: BoxLightbulb - entities: - - uid: 1342 - components: - - type: Transform - pos: 55.44968,-51.427322 - parent: 2 - - uid: 1343 - components: - - type: Transform - pos: -20.70863,-5.352804 - parent: 2 - - uid: 23468 - components: - - type: Transform - pos: 31.48803,-52.438545 - parent: 2 -- proto: BoxLightMixed - entities: - - uid: 1346 - components: - - type: Transform - pos: -20.20863,-5.399679 - parent: 2 - - uid: 15129 - components: - - type: Transform - pos: 9.439946,-63.44857 - parent: 2 - - uid: 23438 - components: - - type: Transform - pos: 9.564946,-63.370445 - parent: 2 -- proto: BoxLighttube - entities: - - uid: 1347 - components: - - type: Transform - pos: -20.536755,-5.462179 - parent: 2 -- proto: BoxMiniSyringe - entities: - - uid: 11194 - components: - - type: Transform - pos: 36.64888,-38.499374 - parent: 2 - - uid: 31353 - components: - - type: Transform - pos: 19.224562,-20.718649 - parent: 2 -- proto: BoxMouthSwab - entities: - - uid: 1348 - components: - - type: Transform - pos: 38.38778,-59.853592 - parent: 2 -- proto: BoxMRE - entities: - - uid: 1312 - components: - - type: Transform - pos: 7.416569,-33.46914 - parent: 2 - - uid: 1349 - components: - - type: Transform - pos: 48.424255,8.669407 - parent: 2 - - uid: 1350 - components: - - type: Transform - pos: 80.49012,4.561222 - parent: 2 - - uid: 11994 - components: - - type: Transform - pos: 7.479069,-33.56289 - parent: 2 - - uid: 12072 - components: - - type: Transform - pos: 7.6978188,-33.484764 - parent: 2 - - uid: 24244 - components: - - type: Transform - parent: 24243 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24245 - components: - - type: Transform - parent: 24243 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24266 - components: - - type: Transform - parent: 24243 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24298 - components: - - type: Transform - parent: 24243 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24313 - components: - - type: Transform - parent: 24243 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24314 - components: - - type: Transform - parent: 24243 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24316 - components: - - type: Transform - parent: 24243 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24324 - components: - - type: Transform - parent: 24243 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29744 - components: - - type: Transform - pos: -12.499552,1.5838027 - parent: 2 -- proto: BoxPDA - entities: - - uid: 1351 - components: - - type: Transform - pos: -11.614725,-21.270159 - parent: 2 -- proto: BoxShotgunFlare - entities: - - uid: 1344 - components: - - type: Transform - pos: 12.67149,42.707497 - parent: 2 -- proto: BoxSterileMask - entities: - - uid: 1352 - components: - - type: Transform - pos: 38.48153,-59.041092 - parent: 2 - - uid: 1353 - components: - - type: Transform - pos: 24.405125,-36.239418 - parent: 2 -- proto: BoxSyringe - entities: - - uid: 1354 - components: - - type: Transform - pos: 38.5,-59.5 - parent: 2 -- proto: BoxTearGasGrenade - entities: - - uid: 11108 - components: - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxVial - entities: - - uid: 24561 - components: - - type: Transform - pos: -13.453518,33.443085 - parent: 2 -- proto: BrbSign - entities: - - uid: 1356 - components: - - type: Transform - pos: -11.524348,-21.41842 - parent: 2 -- proto: BriefcaseBrown - entities: - - uid: 1357 - components: - - type: Transform - pos: 57.77009,-49.405586 - parent: 2 -- proto: BriefcaseBrownFilled - entities: - - uid: 10125 - components: - - type: Transform - pos: 12.495494,19.59398 - parent: 2 - - uid: 23919 - components: - - type: Transform - pos: -11.4694,5.5093794 - parent: 2 - - uid: 29797 - components: - - type: Transform - pos: -8.501482,14.610687 - parent: 2 -- proto: BrigTimer - entities: - - uid: 1361 - components: - - type: Transform - pos: -3.5,25.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1362: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - - uid: 1363 - components: - - type: Transform - pos: -11.5,25.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5834: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - - uid: 25274 - components: - - type: Transform - pos: 0.5,25.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31109: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - - uid: 31108 - components: - - type: Transform - pos: -7.5,25.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31112: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open -- proto: BrokenBottle - entities: - - uid: 30011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.4368,35.80242 - parent: 2 -- proto: BruteAutoInjector - entities: - - uid: 1365 - components: - - type: Transform - pos: -13.591463,29.264568 - parent: 2 -- proto: Brutepack - entities: - - uid: 30181 - components: - - type: Transform - pos: 27.33677,34.785942 - parent: 2 - - uid: 30182 - components: - - type: Transform - pos: 29.74302,34.942192 - parent: 2 -- proto: Bucket - entities: - - uid: 1367 - components: - - type: Transform - pos: 48.5,-9.5 - parent: 2 - - uid: 1368 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 2 - - uid: 8069 - components: - - type: Transform - pos: -15.466546,47.668076 - parent: 2 - - uid: 30612 - components: - - type: Transform - pos: -24.18188,31.631845 - parent: 2 - - uid: 31681 - components: - - type: Transform - pos: -38.5,-6.5 - parent: 2 - - uid: 31724 - components: - - type: Transform - pos: -39.5,-6.5 - parent: 2 -- proto: BurnAutoInjector - entities: - - uid: 1373 - components: - - type: Transform - pos: -13.586834,29.329384 - parent: 2 -- proto: ButtonFrameCaution - entities: - - uid: 5913 - components: - - type: Transform - pos: 20.5,-73.5 - parent: 2 - - uid: 9344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-69.5 - parent: 2 - - uid: 22590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 2 - - uid: 23350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 2 -- proto: ButtonFrameCautionSecurity - entities: - - uid: 15139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,37.5 - parent: 2 - - uid: 24536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-26.5 - parent: 2 - - uid: 25378 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,38.5 - parent: 2 -- proto: CableApcExtension - entities: - - uid: 34 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 2 - - uid: 71 - components: - - type: Transform - pos: -7.5,12.5 - parent: 2 - - uid: 72 - components: - - type: Transform - pos: -8.5,37.5 - parent: 2 - - uid: 121 - components: - - type: Transform - pos: -25.5,-69.5 - parent: 2 - - uid: 129 - components: - - type: Transform - pos: 20.5,21.5 - parent: 2 - - uid: 182 - components: - - type: Transform - pos: 30.5,19.5 - parent: 2 - - uid: 257 - components: - - type: Transform - pos: 80.5,-25.5 - parent: 2 - - uid: 295 - components: - - type: Transform - pos: 23.5,-85.5 - parent: 2 - - uid: 319 - components: - - type: Transform - pos: 17.5,-87.5 - parent: 2 - - uid: 328 - components: - - type: Transform - pos: -50.5,-25.5 - parent: 2 - - uid: 329 - components: - - type: Transform - pos: -49.5,-25.5 - parent: 2 - - uid: 408 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 2 - - uid: 434 - components: - - type: Transform - pos: -15.5,-79.5 - parent: 2 - - uid: 594 - components: - - type: Transform - pos: -68.5,17.5 - parent: 2 - - uid: 672 - components: - - type: Transform - pos: 23.5,-76.5 - parent: 2 - - uid: 687 - components: - - type: Transform - pos: -13.5,5.5 - parent: 2 - - uid: 731 - components: - - type: Transform - pos: -15.5,-59.5 - parent: 2 - - uid: 751 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 2 - - uid: 763 - components: - - type: Transform - pos: 12.5,26.5 - parent: 2 - - uid: 781 - components: - - type: Transform - pos: -44.5,20.5 - parent: 2 - - uid: 1014 - components: - - type: Transform - pos: 22.5,-87.5 - parent: 2 - - uid: 1027 - components: - - type: Transform - pos: 27.5,-57.5 - parent: 2 - - uid: 1032 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 1033 - components: - - type: Transform - pos: 18.5,10.5 - parent: 2 - - uid: 1095 - components: - - type: Transform - pos: 14.5,10.5 - parent: 2 - - uid: 1126 - components: - - type: Transform - pos: 15.5,10.5 - parent: 2 - - uid: 1145 - components: - - type: Transform - pos: 2.5,2.5 - parent: 2 - - uid: 1201 - components: - - type: Transform - pos: 37.5,-67.5 - parent: 2 - - uid: 1212 - components: - - type: Transform - pos: 21.5,36.5 - parent: 2 - - uid: 1216 - components: - - type: Transform - pos: 25.5,35.5 - parent: 2 - - uid: 1263 - components: - - type: Transform - pos: 32.5,17.5 - parent: 2 - - uid: 1309 - components: - - type: Transform - pos: 36.5,20.5 - parent: 2 - - uid: 1316 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 2 - - uid: 1319 - components: - - type: Transform - pos: 36.5,22.5 - parent: 2 - - uid: 1375 - components: - - type: Transform - pos: -19.5,44.5 - parent: 2 - - uid: 1376 - components: - - type: Transform - pos: -1.5,-65.5 - parent: 2 - - uid: 1377 - components: - - type: Transform - pos: -61.5,15.5 - parent: 2 - - uid: 1378 - components: - - type: Transform - pos: -61.5,16.5 - parent: 2 - - uid: 1379 - components: - - type: Transform - pos: 9.5,-77.5 - parent: 2 - - uid: 1380 - components: - - type: Transform - pos: 31.5,-8.5 - parent: 2 - - uid: 1381 - components: - - type: Transform - pos: 25.5,0.5 - parent: 2 - - uid: 1382 - components: - - type: Transform - pos: -23.5,48.5 - parent: 2 - - uid: 1384 - components: - - type: Transform - pos: -37.5,47.5 - parent: 2 - - uid: 1386 - components: - - type: Transform - pos: -55.5,12.5 - parent: 2 - - uid: 1387 - components: - - type: Transform - pos: -55.5,13.5 - parent: 2 - - uid: 1388 - components: - - type: Transform - pos: -53.5,12.5 - parent: 2 - - uid: 1389 - components: - - type: Transform - pos: -54.5,12.5 - parent: 2 - - uid: 1390 - components: - - type: Transform - pos: -47.5,13.5 - parent: 2 - - uid: 1391 - components: - - type: Transform - pos: -51.5,13.5 - parent: 2 - - uid: 1392 - components: - - type: Transform - pos: -52.5,13.5 - parent: 2 - - uid: 1393 - components: - - type: Transform - pos: -58.5,11.5 - parent: 2 - - uid: 1394 - components: - - type: Transform - pos: -18.5,50.5 - parent: 2 - - uid: 1395 - components: - - type: Transform - pos: -23.5,46.5 - parent: 2 - - uid: 1399 - components: - - type: Transform - pos: -53.5,-1.5 - parent: 2 - - uid: 1400 - components: - - type: Transform - pos: -66.5,15.5 - parent: 2 - - uid: 1401 - components: - - type: Transform - pos: 77.5,12.5 - parent: 2 - - uid: 1402 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 2 - - uid: 1403 - components: - - type: Transform - pos: -27.5,30.5 - parent: 2 - - uid: 1404 - components: - - type: Transform - pos: -50.5,-1.5 - parent: 2 - - uid: 1405 - components: - - type: Transform - pos: -49.5,-1.5 - parent: 2 - - uid: 1406 - components: - - type: Transform - pos: 77.5,11.5 - parent: 2 - - uid: 1408 - components: - - type: Transform - pos: -80.5,-4.5 - parent: 2 - - uid: 1409 - components: - - type: Transform - pos: -74.5,-2.5 - parent: 2 - - uid: 1410 - components: - - type: Transform - pos: -75.5,7.5 - parent: 2 - - uid: 1411 - components: - - type: Transform - pos: -74.5,7.5 - parent: 2 - - uid: 1412 - components: - - type: Transform - pos: -73.5,7.5 - parent: 2 - - uid: 1413 - components: - - type: Transform - pos: -79.5,9.5 - parent: 2 - - uid: 1414 - components: - - type: Transform - pos: -75.5,-2.5 - parent: 2 - - uid: 1415 - components: - - type: Transform - pos: -73.5,-2.5 - parent: 2 - - uid: 1416 - components: - - type: Transform - pos: -72.5,7.5 - parent: 2 - - uid: 1417 - components: - - type: Transform - pos: -72.5,-2.5 - parent: 2 - - uid: 1418 - components: - - type: Transform - pos: -80.5,9.5 - parent: 2 - - uid: 1419 - components: - - type: Transform - pos: -78.5,9.5 - parent: 2 - - uid: 1420 - components: - - type: Transform - pos: -77.5,-4.5 - parent: 2 - - uid: 1421 - components: - - type: Transform - pos: -78.5,-4.5 - parent: 2 - - uid: 1422 - components: - - type: Transform - pos: 77.5,6.5 - parent: 2 - - uid: 1423 - components: - - type: Transform - pos: 77.5,3.5 - parent: 2 - - uid: 1427 - components: - - type: Transform - pos: 79.5,-13.5 - parent: 2 - - uid: 1428 - components: - - type: Transform - pos: 56.5,2.5 - parent: 2 - - uid: 1429 - components: - - type: Transform - pos: 60.5,-21.5 - parent: 2 - - uid: 1430 - components: - - type: Transform - pos: -75.5,-17.5 - parent: 2 - - uid: 1432 - components: - - type: Transform - pos: -75.5,-15.5 - parent: 2 - - uid: 1433 - components: - - type: Transform - pos: -50.5,-6.5 - parent: 2 - - uid: 1434 - components: - - type: Transform - pos: -52.5,-6.5 - parent: 2 - - uid: 1435 - components: - - type: Transform - pos: -26.5,-33.5 - parent: 2 - - uid: 1436 - components: - - type: Transform - pos: -38.5,-22.5 - parent: 2 - - uid: 1437 - components: - - type: Transform - pos: -38.5,-23.5 - parent: 2 - - uid: 1438 - components: - - type: Transform - pos: -38.5,-24.5 - parent: 2 - - uid: 1439 - components: - - type: Transform - pos: -38.5,-25.5 - parent: 2 - - uid: 1440 - components: - - type: Transform - pos: 34.5,11.5 - parent: 2 - - uid: 1441 - components: - - type: Transform - pos: 23.5,3.5 - parent: 2 - - uid: 1442 - components: - - type: Transform - pos: -18.5,-35.5 - parent: 2 - - uid: 1443 - components: - - type: Transform - pos: -27.5,-33.5 - parent: 2 - - uid: 1444 - components: - - type: Transform - pos: -27.5,-29.5 - parent: 2 - - uid: 1445 - components: - - type: Transform - pos: -28.5,-30.5 - parent: 2 - - uid: 1446 - components: - - type: Transform - pos: -31.5,-27.5 - parent: 2 - - uid: 1447 - components: - - type: Transform - pos: -32.5,-28.5 - parent: 2 - - uid: 1448 - components: - - type: Transform - pos: -38.5,-19.5 - parent: 2 - - uid: 1449 - components: - - type: Transform - pos: -19.5,-35.5 - parent: 2 - - uid: 1450 - components: - - type: Transform - pos: -31.5,-28.5 - parent: 2 - - uid: 1451 - components: - - type: Transform - pos: 30.5,4.5 - parent: 2 - - uid: 1452 - components: - - type: Transform - pos: -27.5,-31.5 - parent: 2 - - uid: 1453 - components: - - type: Transform - pos: 59.5,-17.5 - parent: 2 - - uid: 1454 - components: - - type: Transform - pos: -20.5,-35.5 - parent: 2 - - uid: 1455 - components: - - type: Transform - pos: 9.5,-35.5 - parent: 2 - - uid: 1456 - components: - - type: Transform - pos: 16.5,-34.5 - parent: 2 - - uid: 1457 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 2 - - uid: 1458 - components: - - type: Transform - pos: 11.5,-35.5 - parent: 2 - - uid: 1459 - components: - - type: Transform - pos: 14.5,-35.5 - parent: 2 - - uid: 1460 - components: - - type: Transform - pos: 15.5,-35.5 - parent: 2 - - uid: 1461 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 2 - - uid: 1462 - components: - - type: Transform - pos: 13.5,-35.5 - parent: 2 - - uid: 1463 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 2 - - uid: 1464 - components: - - type: Transform - pos: 45.5,-25.5 - parent: 2 - - uid: 1465 - components: - - type: Transform - pos: 69.5,2.5 - parent: 2 - - uid: 1467 - components: - - type: Transform - pos: 29.5,-22.5 - parent: 2 - - uid: 1468 - components: - - type: Transform - pos: 29.5,-21.5 - parent: 2 - - uid: 1469 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 2 - - uid: 1470 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - - uid: 1471 - components: - - type: Transform - pos: 46.5,-64.5 - parent: 2 - - uid: 1472 - components: - - type: Transform - pos: 25.5,-36.5 - parent: 2 - - uid: 1473 - components: - - type: Transform - pos: 25.5,-37.5 - parent: 2 - - uid: 1474 - components: - - type: Transform - pos: 34.5,-47.5 - parent: 2 - - uid: 1475 - components: - - type: Transform - pos: 35.5,-47.5 - parent: 2 - - uid: 1476 - components: - - type: Transform - pos: 15.5,6.5 - parent: 2 - - uid: 1477 - components: - - type: Transform - pos: 27.5,6.5 - parent: 2 - - uid: 1478 - components: - - type: Transform - pos: 70.5,-25.5 - parent: 2 - - uid: 1479 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 2 - - uid: 1480 - components: - - type: Transform - pos: 55.5,-46.5 - parent: 2 - - uid: 1481 - components: - - type: Transform - pos: 58.5,-46.5 - parent: 2 - - uid: 1482 - components: - - type: Transform - pos: 58.5,-45.5 - parent: 2 - - uid: 1483 - components: - - type: Transform - pos: 58.5,-47.5 - parent: 2 - - uid: 1484 - components: - - type: Transform - pos: 56.5,-46.5 - parent: 2 - - uid: 1485 - components: - - type: Transform - pos: 33.5,-47.5 - parent: 2 - - uid: 1486 - components: - - type: Transform - pos: 54.5,-46.5 - parent: 2 - - uid: 1487 - components: - - type: Transform - pos: 25.5,-35.5 - parent: 2 - - uid: 1488 - components: - - type: Transform - pos: 50.5,-47.5 - parent: 2 - - uid: 1489 - components: - - type: Transform - pos: 51.5,-47.5 - parent: 2 - - uid: 1490 - components: - - type: Transform - pos: 58.5,-48.5 - parent: 2 - - uid: 1491 - components: - - type: Transform - pos: 57.5,-46.5 - parent: 2 - - uid: 1492 - components: - - type: Transform - pos: 70.5,2.5 - parent: 2 - - uid: 1493 - components: - - type: Transform - pos: 11.5,-24.5 - parent: 2 - - uid: 1494 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 2 - - uid: 1495 - components: - - type: Transform - pos: 78.5,-13.5 - parent: 2 - - uid: 1496 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 2 - - uid: 1497 - components: - - type: Transform - pos: 73.5,-25.5 - parent: 2 - - uid: 1498 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 2 - - uid: 1499 - components: - - type: Transform - pos: 40.5,-5.5 - parent: 2 - - uid: 1500 - components: - - type: Transform - pos: 39.5,-48.5 - parent: 2 - - uid: 1501 - components: - - type: Transform - pos: 25.5,-34.5 - parent: 2 - - uid: 1502 - components: - - type: Transform - pos: 20.5,-6.5 - parent: 2 - - uid: 1503 - components: - - type: Transform - pos: 27.5,32.5 - parent: 2 - - uid: 1504 - components: - - type: Transform - pos: 22.5,24.5 - parent: 2 - - uid: 1505 - components: - - type: Transform - pos: 9.5,34.5 - parent: 2 - - uid: 1506 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 2 - - uid: 1507 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 2 - - uid: 1508 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 2 - - uid: 1509 - components: - - type: Transform - pos: 13.5,-4.5 - parent: 2 - - uid: 1510 - components: - - type: Transform - pos: 13.5,-3.5 - parent: 2 - - uid: 1511 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 2 - - uid: 1513 - components: - - type: Transform - pos: 75.5,-13.5 - parent: 2 - - uid: 1514 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 2 - - uid: 1515 - components: - - type: Transform - pos: -35.5,-37.5 - parent: 2 - - uid: 1516 - components: - - type: Transform - pos: 43.5,-67.5 - parent: 2 - - uid: 1517 - components: - - type: Transform - pos: 43.5,-68.5 - parent: 2 - - uid: 1518 - components: - - type: Transform - pos: 43.5,-71.5 - parent: 2 - - uid: 1519 - components: - - type: Transform - pos: 43.5,-72.5 - parent: 2 - - uid: 1520 - components: - - type: Transform - pos: 43.5,-73.5 - parent: 2 - - uid: 1521 - components: - - type: Transform - pos: 44.5,-74.5 - parent: 2 - - uid: 1522 - components: - - type: Transform - pos: 48.5,-65.5 - parent: 2 - - uid: 1523 - components: - - type: Transform - pos: 43.5,-69.5 - parent: 2 - - uid: 1524 - components: - - type: Transform - pos: 43.5,-70.5 - parent: 2 - - uid: 1525 - components: - - type: Transform - pos: 43.5,-66.5 - parent: 2 - - uid: 1526 - components: - - type: Transform - pos: 33.5,-66.5 - parent: 2 - - uid: 1527 - components: - - type: Transform - pos: 37.5,-65.5 - parent: 2 - - uid: 1528 - components: - - type: Transform - pos: 37.5,-66.5 - parent: 2 - - uid: 1530 - components: - - type: Transform - pos: 33.5,-64.5 - parent: 2 - - uid: 1531 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 2 - - uid: 1532 - components: - - type: Transform - pos: -36.5,-37.5 - parent: 2 - - uid: 1533 - components: - - type: Transform - pos: -34.5,-37.5 - parent: 2 - - uid: 1534 - components: - - type: Transform - pos: -34.5,-25.5 - parent: 2 - - uid: 1535 - components: - - type: Transform - pos: 37.5,-64.5 - parent: 2 - - uid: 1536 - components: - - type: Transform - pos: 35.5,-61.5 - parent: 2 - - uid: 1537 - components: - - type: Transform - pos: -36.5,-30.5 - parent: 2 - - uid: 1538 - components: - - type: Transform - pos: 43.5,-74.5 - parent: 2 - - uid: 1539 - components: - - type: Transform - pos: 42.5,-74.5 - parent: 2 - - uid: 1540 - components: - - type: Transform - pos: 69.5,4.5 - parent: 2 - - uid: 1541 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 2 - - uid: 1542 - components: - - type: Transform - pos: 34.5,-61.5 - parent: 2 - - uid: 1543 - components: - - type: Transform - pos: 36.5,-64.5 - parent: 2 - - uid: 1544 - components: - - type: Transform - pos: 33.5,-65.5 - parent: 2 - - uid: 1545 - components: - - type: Transform - pos: 39.5,-64.5 - parent: 2 - - uid: 1546 - components: - - type: Transform - pos: 35.5,-64.5 - parent: 2 - - uid: 1547 - components: - - type: Transform - pos: 38.5,-64.5 - parent: 2 - - uid: 1548 - components: - - type: Transform - pos: 34.5,-64.5 - parent: 2 - - uid: 1549 - components: - - type: Transform - pos: 4.5,-71.5 - parent: 2 - - uid: 1552 - components: - - type: Transform - pos: -2.5,-47.5 - parent: 2 - - uid: 1555 - components: - - type: Transform - pos: -5.5,-59.5 - parent: 2 - - uid: 1556 - components: - - type: Transform - pos: -6.5,-59.5 - parent: 2 - - uid: 1558 - components: - - type: Transform - pos: -1.5,-47.5 - parent: 2 - - uid: 1566 - components: - - type: Transform - pos: 4.5,-70.5 - parent: 2 - - uid: 1569 - components: - - type: Transform - pos: 8.5,-63.5 - parent: 2 - - uid: 1570 - components: - - type: Transform - pos: 7.5,-63.5 - parent: 2 - - uid: 1571 - components: - - type: Transform - pos: 6.5,-63.5 - parent: 2 - - uid: 1572 - components: - - type: Transform - pos: 5.5,-63.5 - parent: 2 - - uid: 1573 - components: - - type: Transform - pos: -10.5,46.5 - parent: 2 - - uid: 1574 - components: - - type: Transform - pos: 1.5,-63.5 - parent: 2 - - uid: 1575 - components: - - type: Transform - pos: 0.5,-62.5 - parent: 2 - - uid: 1576 - components: - - type: Transform - pos: 0.5,-63.5 - parent: 2 - - uid: 1579 - components: - - type: Transform - pos: 0.5,-61.5 - parent: 2 - - uid: 1580 - components: - - type: Transform - pos: 3.5,-63.5 - parent: 2 - - uid: 1581 - components: - - type: Transform - pos: 8.5,-60.5 - parent: 2 - - uid: 1582 - components: - - type: Transform - pos: 2.5,-63.5 - parent: 2 - - uid: 1583 - components: - - type: Transform - pos: -19.5,-72.5 - parent: 2 - - uid: 1591 - components: - - type: Transform - pos: -16.5,1.5 - parent: 2 - - uid: 1592 - components: - - type: Transform - pos: -18.5,42.5 - parent: 2 - - uid: 1593 - components: - - type: Transform - pos: -20.5,45.5 - parent: 2 - - uid: 1594 - components: - - type: Transform - pos: 0.5,-60.5 - parent: 2 - - uid: 1597 - components: - - type: Transform - pos: 69.5,3.5 - parent: 2 - - uid: 1598 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 2 - - uid: 1599 - components: - - type: Transform - pos: 11.5,-27.5 - parent: 2 - - uid: 1600 - components: - - type: Transform - pos: 9.5,35.5 - parent: 2 - - uid: 1601 - components: - - type: Transform - pos: -8.5,44.5 - parent: 2 - - uid: 1604 - components: - - type: Transform - pos: -13.5,31.5 - parent: 2 - - uid: 1605 - components: - - type: Transform - pos: -7.5,53.5 - parent: 2 - - uid: 1606 - components: - - type: Transform - pos: -7.5,48.5 - parent: 2 - - uid: 1607 - components: - - type: Transform - pos: -7.5,51.5 - parent: 2 - - uid: 1608 - components: - - type: Transform - pos: -14.5,35.5 - parent: 2 - - uid: 1611 - components: - - type: Transform - pos: -9.5,36.5 - parent: 2 - - uid: 1612 - components: - - type: Transform - pos: -7.5,47.5 - parent: 2 - - uid: 1614 - components: - - type: Transform - pos: -7.5,52.5 - parent: 2 - - uid: 1617 - components: - - type: Transform - pos: -10.5,36.5 - parent: 2 - - uid: 1621 - components: - - type: Transform - pos: -14.5,34.5 - parent: 2 - - uid: 1622 - components: - - type: Transform - pos: -14.5,33.5 - parent: 2 - - uid: 1623 - components: - - type: Transform - pos: -15.5,33.5 - parent: 2 - - uid: 1624 - components: - - type: Transform - pos: -14.5,32.5 - parent: 2 - - uid: 1625 - components: - - type: Transform - pos: -7.5,50.5 - parent: 2 - - uid: 1626 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 2 - - uid: 1627 - components: - - type: Transform - pos: -7.5,49.5 - parent: 2 - - uid: 1628 - components: - - type: Transform - pos: -8.5,48.5 - parent: 2 - - uid: 1629 - components: - - type: Transform - pos: -9.5,48.5 - parent: 2 - - uid: 1630 - components: - - type: Transform - pos: -7.5,44.5 - parent: 2 - - uid: 1631 - components: - - type: Transform - pos: -6.5,44.5 - parent: 2 - - uid: 1633 - components: - - type: Transform - pos: 26.5,3.5 - parent: 2 - - uid: 1634 - components: - - type: Transform - pos: -14.5,31.5 - parent: 2 - - uid: 1635 - components: - - type: Transform - pos: -16.5,2.5 - parent: 2 - - uid: 1636 - components: - - type: Transform - pos: 36.5,-34.5 - parent: 2 - - uid: 1637 - components: - - type: Transform - pos: 73.5,4.5 - parent: 2 - - uid: 1638 - components: - - type: Transform - pos: -27.5,-34.5 - parent: 2 - - uid: 1639 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 2 - - uid: 1640 - components: - - type: Transform - pos: 8.5,32.5 - parent: 2 - - uid: 1641 - components: - - type: Transform - pos: -14.5,30.5 - parent: 2 - - uid: 1642 - components: - - type: Transform - pos: -12.5,30.5 - parent: 2 - - uid: 1643 - components: - - type: Transform - pos: -12.5,31.5 - parent: 2 - - uid: 1644 - components: - - type: Transform - pos: 28.5,3.5 - parent: 2 - - uid: 1645 - components: - - type: Transform - pos: -21.5,2.5 - parent: 2 - - uid: 1646 - components: - - type: Transform - pos: -22.5,2.5 - parent: 2 - - uid: 1647 - components: - - type: Transform - pos: 11.5,-26.5 - parent: 2 - - uid: 1649 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 2 - - uid: 1650 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 2 - - uid: 1651 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 2 - - uid: 1653 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 2 - - uid: 1655 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 2 - - uid: 1656 - components: - - type: Transform - pos: 4.5,-14.5 - parent: 2 - - uid: 1657 - components: - - type: Transform - pos: -7.5,-26.5 - parent: 2 - - uid: 1659 - components: - - type: Transform - pos: -12.5,29.5 - parent: 2 - - uid: 1660 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 2 - - uid: 1662 - components: - - type: Transform - pos: -8.5,-26.5 - parent: 2 - - uid: 1663 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 2 - - uid: 1665 - components: - - type: Transform - pos: -10.5,-26.5 - parent: 2 - - uid: 1666 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 2 - - uid: 1667 - components: - - type: Transform - pos: -6.5,-22.5 - parent: 2 - - uid: 1668 - components: - - type: Transform - pos: -7.5,-22.5 - parent: 2 - - uid: 1669 - components: - - type: Transform - pos: -8.5,-22.5 - parent: 2 - - uid: 1670 - components: - - type: Transform - pos: -9.5,-22.5 - parent: 2 - - uid: 1671 - components: - - type: Transform - pos: 24.5,4.5 - parent: 2 - - uid: 1672 - components: - - type: Transform - pos: 25.5,1.5 - parent: 2 - - uid: 1673 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 2 - - uid: 1674 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 2 - - uid: 1675 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 2 - - uid: 1676 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 2 - - uid: 1677 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 2 - - uid: 1678 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 2 - - uid: 1679 - components: - - type: Transform - pos: -8.5,-14.5 - parent: 2 - - uid: 1680 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 2 - - uid: 1681 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 2 - - uid: 1682 - components: - - type: Transform - pos: -10.5,-12.5 - parent: 2 - - uid: 1683 - components: - - type: Transform - pos: -11.5,-12.5 - parent: 2 - - uid: 1684 - components: - - type: Transform - pos: -9.5,-12.5 - parent: 2 - - uid: 1685 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 2 - - uid: 1686 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 2 - - uid: 1687 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 2 - - uid: 1688 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 2 - - uid: 1689 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 2 - - uid: 1690 - components: - - type: Transform - pos: 5.5,-16.5 - parent: 2 - - uid: 1691 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 2 - - uid: 1692 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 2 - - uid: 1693 - components: - - type: Transform - pos: 7.5,-15.5 - parent: 2 - - uid: 1694 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 2 - - uid: 1695 - components: - - type: Transform - pos: 7.5,-13.5 - parent: 2 - - uid: 1696 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 2 - - uid: 1697 - components: - - type: Transform - pos: 8.5,-12.5 - parent: 2 - - uid: 1698 - components: - - type: Transform - pos: 9.5,-12.5 - parent: 2 - - uid: 1699 - components: - - type: Transform - pos: 10.5,-12.5 - parent: 2 - - uid: 1700 - components: - - type: Transform - pos: 10.5,-13.5 - parent: 2 - - uid: 1701 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 2 - - uid: 1702 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 2 - - uid: 1703 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 2 - - uid: 1704 - components: - - type: Transform - pos: 10.5,-16.5 - parent: 2 - - uid: 1705 - components: - - type: Transform - pos: 11.5,-25.5 - parent: 2 - - uid: 1707 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 2 - - uid: 1708 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 2 - - uid: 1709 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 2 - - uid: 1710 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 2 - - uid: 1711 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 2 - - uid: 1712 - components: - - type: Transform - pos: -9.5,-8.5 - parent: 2 - - uid: 1713 - components: - - type: Transform - pos: -10.5,-8.5 - parent: 2 - - uid: 1714 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 2 - - uid: 1715 - components: - - type: Transform - pos: -10.5,-22.5 - parent: 2 - - uid: 1716 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 2 - - uid: 1717 - components: - - type: Transform - pos: -8.5,-8.5 - parent: 2 - - uid: 1718 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 2 - - uid: 1719 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 2 - - uid: 1720 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 2 - - uid: 1721 - components: - - type: Transform - pos: -6.5,-8.5 - parent: 2 - - uid: 1722 - components: - - type: Transform - pos: -7.5,-8.5 - parent: 2 - - uid: 1723 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 2 - - uid: 1724 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 2 - - uid: 1729 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 2 - - uid: 1730 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 2 - - uid: 1731 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 2 - - uid: 1732 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 2 - - uid: 1733 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 - - uid: 1734 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 2 - - uid: 1735 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 2 - - uid: 1736 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - - uid: 1737 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 2 - - uid: 1738 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 2 - - uid: 1739 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 2 - - uid: 1740 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 2 - - uid: 1741 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 2 - - uid: 1742 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 2 - - uid: 1743 - components: - - type: Transform - pos: -10.5,-25.5 - parent: 2 - - uid: 1744 - components: - - type: Transform - pos: -12.5,-14.5 - parent: 2 - - uid: 1745 - components: - - type: Transform - pos: -9.5,-26.5 - parent: 2 - - uid: 1746 - components: - - type: Transform - pos: -12.5,-15.5 - parent: 2 - - uid: 1747 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 2 - - uid: 1748 - components: - - type: Transform - pos: -13.5,-16.5 - parent: 2 - - uid: 1749 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 2 - - uid: 1754 - components: - - type: Transform - pos: 14.5,9.5 - parent: 2 - - uid: 1755 - components: - - type: Transform - pos: 14.5,11.5 - parent: 2 - - uid: 1756 - components: - - type: Transform - pos: 13.5,12.5 - parent: 2 - - uid: 1761 - components: - - type: Transform - pos: 13.5,4.5 - parent: 2 - - uid: 1762 - components: - - type: Transform - pos: 12.5,4.5 - parent: 2 - - uid: 1763 - components: - - type: Transform - pos: 12.5,3.5 - parent: 2 - - uid: 1764 - components: - - type: Transform - pos: 12.5,2.5 - parent: 2 - - uid: 1765 - components: - - type: Transform - pos: 12.5,1.5 - parent: 2 - - uid: 1766 - components: - - type: Transform - pos: 13.5,1.5 - parent: 2 - - uid: 1767 - components: - - type: Transform - pos: 25.5,2.5 - parent: 2 - - uid: 1768 - components: - - type: Transform - pos: 14.5,1.5 - parent: 2 - - uid: 1769 - components: - - type: Transform - pos: 15.5,1.5 - parent: 2 - - uid: 1770 - components: - - type: Transform - pos: 16.5,1.5 - parent: 2 - - uid: 1771 - components: - - type: Transform - pos: 13.5,5.5 - parent: 2 - - uid: 1772 - components: - - type: Transform - pos: 14.5,5.5 - parent: 2 - - uid: 1773 - components: - - type: Transform - pos: 15.5,5.5 - parent: 2 - - uid: 1774 - components: - - type: Transform - pos: 16.5,5.5 - parent: 2 - - uid: 1775 - components: - - type: Transform - pos: 16.5,10.5 - parent: 2 - - uid: 1778 - components: - - type: Transform - pos: 39.5,13.5 - parent: 2 - - uid: 1779 - components: - - type: Transform - pos: 39.5,12.5 - parent: 2 - - uid: 1782 - components: - - type: Transform - pos: 30.5,10.5 - parent: 2 - - uid: 1783 - components: - - type: Transform - pos: 28.5,8.5 - parent: 2 - - uid: 1784 - components: - - type: Transform - pos: 17.5,10.5 - parent: 2 - - uid: 1785 - components: - - type: Transform - pos: 19.5,13.5 - parent: 2 - - uid: 1787 - components: - - type: Transform - pos: 19.5,10.5 - parent: 2 - - uid: 1790 - components: - - type: Transform - pos: 22.5,-60.5 - parent: 2 - - uid: 1792 - components: - - type: Transform - pos: 29.5,9.5 - parent: 2 - - uid: 1793 - components: - - type: Transform - pos: 27.5,-53.5 - parent: 2 - - uid: 1796 - components: - - type: Transform - pos: 12.5,11.5 - parent: 2 - - uid: 1798 - components: - - type: Transform - pos: 26.5,-52.5 - parent: 2 - - uid: 1799 - components: - - type: Transform - pos: 11.5,11.5 - parent: 2 - - uid: 1800 - components: - - type: Transform - pos: 10.5,11.5 - parent: 2 - - uid: 1801 - components: - - type: Transform - pos: 9.5,11.5 - parent: 2 - - uid: 1802 - components: - - type: Transform - pos: 8.5,11.5 - parent: 2 - - uid: 1803 - components: - - type: Transform - pos: 7.5,11.5 - parent: 2 - - uid: 1804 - components: - - type: Transform - pos: 8.5,12.5 - parent: 2 - - uid: 1805 - components: - - type: Transform - pos: 8.5,13.5 - parent: 2 - - uid: 1806 - components: - - type: Transform - pos: 8.5,14.5 - parent: 2 - - uid: 1807 - components: - - type: Transform - pos: 7.5,14.5 - parent: 2 - - uid: 1808 - components: - - type: Transform - pos: 8.5,10.5 - parent: 2 - - uid: 1809 - components: - - type: Transform - pos: 8.5,9.5 - parent: 2 - - uid: 1810 - components: - - type: Transform - pos: 8.5,8.5 - parent: 2 - - uid: 1814 - components: - - type: Transform - pos: -29.5,-38.5 - parent: 2 - - uid: 1819 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 - - uid: 1820 - components: - - type: Transform - pos: 8.5,2.5 - parent: 2 - - uid: 1823 - components: - - type: Transform - pos: 6.5,11.5 - parent: 2 - - uid: 1824 - components: - - type: Transform - pos: 6.5,14.5 - parent: 2 - - uid: 1825 - components: - - type: Transform - pos: 20.5,12.5 - parent: 2 - - uid: 1826 - components: - - type: Transform - pos: -42.5,-37.5 - parent: 2 - - uid: 1827 - components: - - type: Transform - pos: 35.5,11.5 - parent: 2 - - uid: 1828 - components: - - type: Transform - pos: 36.5,11.5 - parent: 2 - - uid: 1829 - components: - - type: Transform - pos: 37.5,11.5 - parent: 2 - - uid: 1830 - components: - - type: Transform - pos: 33.5,8.5 - parent: 2 - - uid: 1831 - components: - - type: Transform - pos: 33.5,10.5 - parent: 2 - - uid: 1832 - components: - - type: Transform - pos: 39.5,-12.5 - parent: 2 - - uid: 1833 - components: - - type: Transform - pos: 29.5,6.5 - parent: 2 - - uid: 1834 - components: - - type: Transform - pos: 25.5,3.5 - parent: 2 - - uid: 1835 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 2 - - uid: 1836 - components: - - type: Transform - pos: 60.5,-20.5 - parent: 2 - - uid: 1837 - components: - - type: Transform - pos: 60.5,-20.5 - parent: 2 - - uid: 1838 - components: - - type: Transform - pos: 59.5,-20.5 - parent: 2 - - uid: 1839 - components: - - type: Transform - pos: 60.5,-23.5 - parent: 2 - - uid: 1840 - components: - - type: Transform - pos: 60.5,-21.5 - parent: 2 - - uid: 1841 - components: - - type: Transform - pos: 32.5,-8.5 - parent: 2 - - uid: 1842 - components: - - type: Transform - pos: 60.5,-24.5 - parent: 2 - - uid: 1843 - components: - - type: Transform - pos: 60.5,-25.5 - parent: 2 - - uid: 1844 - components: - - type: Transform - pos: -36.5,-25.5 - parent: 2 - - uid: 1845 - components: - - type: Transform - pos: -36.5,-27.5 - parent: 2 - - uid: 1846 - components: - - type: Transform - pos: 23.5,-9.5 - parent: 2 - - uid: 1847 - components: - - type: Transform - pos: 38.5,11.5 - parent: 2 - - uid: 1848 - components: - - type: Transform - pos: 26.5,-9.5 - parent: 2 - - uid: 1851 - components: - - type: Transform - pos: 22.5,-4.5 - parent: 2 - - uid: 1852 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 2 - - uid: 1853 - components: - - type: Transform - pos: 19.5,-8.5 - parent: 2 - - uid: 1854 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 2 - - uid: 1855 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 2 - - uid: 1856 - components: - - type: Transform - pos: 22.5,-9.5 - parent: 2 - - uid: 1857 - components: - - type: Transform - pos: -33.5,-37.5 - parent: 2 - - uid: 1858 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 2 - - uid: 1859 - components: - - type: Transform - pos: -37.5,-25.5 - parent: 2 - - uid: 1860 - components: - - type: Transform - pos: 57.5,-17.5 - parent: 2 - - uid: 1861 - components: - - type: Transform - pos: 20.5,-9.5 - parent: 2 - - uid: 1863 - components: - - type: Transform - pos: -14.5,29.5 - parent: 2 - - uid: 1865 - components: - - type: Transform - pos: 52.5,-23.5 - parent: 2 - - uid: 1866 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 2 - - uid: 1867 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 2 - - uid: 1868 - components: - - type: Transform - pos: 54.5,-23.5 - parent: 2 - - uid: 1869 - components: - - type: Transform - pos: 23.5,-4.5 - parent: 2 - - uid: 1870 - components: - - type: Transform - pos: 30.5,5.5 - parent: 2 - - uid: 1871 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 2 - - uid: 1872 - components: - - type: Transform - pos: 29.5,-9.5 - parent: 2 - - uid: 1873 - components: - - type: Transform - pos: 19.5,-7.5 - parent: 2 - - uid: 1874 - components: - - type: Transform - pos: 55.5,-18.5 - parent: 2 - - uid: 1875 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 2 - - uid: 1876 - components: - - type: Transform - pos: -36.5,-26.5 - parent: 2 - - uid: 1877 - components: - - type: Transform - pos: 22.5,-5.5 - parent: 2 - - uid: 1878 - components: - - type: Transform - pos: -29.5,-63.5 - parent: 2 - - uid: 1880 - components: - - type: Transform - pos: -36.5,-29.5 - parent: 2 - - uid: 1881 - components: - - type: Transform - pos: 57.5,-20.5 - parent: 2 - - uid: 1882 - components: - - type: Transform - pos: 19.5,-9.5 - parent: 2 - - uid: 1883 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 2 - - uid: 1885 - components: - - type: Transform - pos: -13.5,35.5 - parent: 2 - - uid: 1886 - components: - - type: Transform - pos: 23.5,24.5 - parent: 2 - - uid: 1887 - components: - - type: Transform - pos: 28.5,-5.5 - parent: 2 - - uid: 1889 - components: - - type: Transform - pos: 21.5,-5.5 - parent: 2 - - uid: 1890 - components: - - type: Transform - pos: 21.5,-9.5 - parent: 2 - - uid: 1891 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 2 - - uid: 1892 - components: - - type: Transform - pos: -20.5,43.5 - parent: 2 - - uid: 1894 - components: - - type: Transform - pos: 51.5,-17.5 - parent: 2 - - uid: 1895 - components: - - type: Transform - pos: 27.5,3.5 - parent: 2 - - uid: 1896 - components: - - type: Transform - pos: 56.5,-23.5 - parent: 2 - - uid: 1897 - components: - - type: Transform - pos: -44.5,-37.5 - parent: 2 - - uid: 1898 - components: - - type: Transform - pos: 79.5,-10.5 - parent: 2 - - uid: 1899 - components: - - type: Transform - pos: -43.5,-37.5 - parent: 2 - - uid: 1900 - components: - - type: Transform - pos: 11.5,33.5 - parent: 2 - - uid: 1902 - components: - - type: Transform - pos: 66.5,14.5 - parent: 2 - - uid: 1903 - components: - - type: Transform - pos: -1.5,23.5 - parent: 2 - - uid: 1905 - components: - - type: Transform - pos: -1.5,32.5 - parent: 2 - - uid: 1906 - components: - - type: Transform - pos: -1.5,24.5 - parent: 2 - - uid: 1907 - components: - - type: Transform - pos: -46.5,21.5 - parent: 2 - - uid: 1912 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 2 - - uid: 1915 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 2 - - uid: 1916 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 2 - - uid: 1917 - components: - - type: Transform - pos: 16.5,20.5 - parent: 2 - - uid: 1918 - components: - - type: Transform - pos: 13.5,27.5 - parent: 2 - - uid: 1919 - components: - - type: Transform - pos: 15.5,22.5 - parent: 2 - - uid: 1920 - components: - - type: Transform - pos: 26.5,46.5 - parent: 2 - - uid: 1921 - components: - - type: Transform - pos: 23.5,32.5 - parent: 2 - - uid: 1922 - components: - - type: Transform - pos: 17.5,32.5 - parent: 2 - - uid: 1929 - components: - - type: Transform - pos: 12.5,29.5 - parent: 2 - - uid: 1933 - components: - - type: Transform - pos: 15.5,21.5 - parent: 2 - - uid: 1934 - components: - - type: Transform - pos: 15.5,20.5 - parent: 2 - - uid: 1935 - components: - - type: Transform - pos: 14.5,20.5 - parent: 2 - - uid: 1936 - components: - - type: Transform - pos: 13.5,20.5 - parent: 2 - - uid: 1937 - components: - - type: Transform - pos: 17.5,20.5 - parent: 2 - - uid: 1938 - components: - - type: Transform - pos: -21.5,42.5 - parent: 2 - - uid: 1939 - components: - - type: Transform - pos: -21.5,41.5 - parent: 2 - - uid: 1940 - components: - - type: Transform - pos: -18.5,41.5 - parent: 2 - - uid: 1941 - components: - - type: Transform - pos: -19.5,46.5 - parent: 2 - - uid: 1942 - components: - - type: Transform - pos: -5.5,27.5 - parent: 2 - - uid: 1943 - components: - - type: Transform - pos: -7.5,27.5 - parent: 2 - - uid: 1944 - components: - - type: Transform - pos: -6.5,27.5 - parent: 2 - - uid: 1945 - components: - - type: Transform - pos: -8.5,27.5 - parent: 2 - - uid: 1946 - components: - - type: Transform - pos: -9.5,27.5 - parent: 2 - - uid: 1951 - components: - - type: Transform - pos: -4.5,25.5 - parent: 2 - - uid: 1952 - components: - - type: Transform - pos: -2.5,25.5 - parent: 2 - - uid: 1953 - components: - - type: Transform - pos: -1.5,25.5 - parent: 2 - - uid: 1954 - components: - - type: Transform - pos: -4.5,27.5 - parent: 2 - - uid: 1955 - components: - - type: Transform - pos: -3.5,27.5 - parent: 2 - - uid: 1956 - components: - - type: Transform - pos: -2.5,27.5 - parent: 2 - - uid: 1957 - components: - - type: Transform - pos: -1.5,27.5 - parent: 2 - - uid: 1958 - components: - - type: Transform - pos: 2.5,27.5 - parent: 2 - - uid: 1959 - components: - - type: Transform - pos: 3.5,27.5 - parent: 2 - - uid: 1960 - components: - - type: Transform - pos: 4.5,27.5 - parent: 2 - - uid: 1961 - components: - - type: Transform - pos: 5.5,27.5 - parent: 2 - - uid: 1962 - components: - - type: Transform - pos: 6.5,27.5 - parent: 2 - - uid: 1963 - components: - - type: Transform - pos: 7.5,27.5 - parent: 2 - - uid: 1964 - components: - - type: Transform - pos: 8.5,27.5 - parent: 2 - - uid: 1965 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 - - uid: 1966 - components: - - type: Transform - pos: 9.5,26.5 - parent: 2 - - uid: 1967 - components: - - type: Transform - pos: 9.5,25.5 - parent: 2 - - uid: 1968 - components: - - type: Transform - pos: 9.5,24.5 - parent: 2 - - uid: 1969 - components: - - type: Transform - pos: 5.5,26.5 - parent: 2 - - uid: 1970 - components: - - type: Transform - pos: 5.5,25.5 - parent: 2 - - uid: 1971 - components: - - type: Transform - pos: 5.5,24.5 - parent: 2 - - uid: 1972 - components: - - type: Transform - pos: 5.5,23.5 - parent: 2 - - uid: 1973 - components: - - type: Transform - pos: 5.5,22.5 - parent: 2 - - uid: 1974 - components: - - type: Transform - pos: 4.5,22.5 - parent: 2 - - uid: 1975 - components: - - type: Transform - pos: 3.5,22.5 - parent: 2 - - uid: 1976 - components: - - type: Transform - pos: 2.5,26.5 - parent: 2 - - uid: 1977 - components: - - type: Transform - pos: 2.5,25.5 - parent: 2 - - uid: 1978 - components: - - type: Transform - pos: -9.5,26.5 - parent: 2 - - uid: 1979 - components: - - type: Transform - pos: -0.5,25.5 - parent: 2 - - uid: 1980 - components: - - type: Transform - pos: 1.5,27.5 - parent: 2 - - uid: 1981 - components: - - type: Transform - pos: -9.5,25.5 - parent: 2 - - uid: 1982 - components: - - type: Transform - pos: -10.5,25.5 - parent: 2 - - uid: 1983 - components: - - type: Transform - pos: -5.5,26.5 - parent: 2 - - uid: 1984 - components: - - type: Transform - pos: 2.5,24.5 - parent: 2 - - uid: 1985 - components: - - type: Transform - pos: 0.5,27.5 - parent: 2 - - uid: 1986 - components: - - type: Transform - pos: -0.5,27.5 - parent: 2 - - uid: 1987 - components: - - type: Transform - pos: -5.5,25.5 - parent: 2 - - uid: 1988 - components: - - type: Transform - pos: -6.5,25.5 - parent: 2 - - uid: 1989 - components: - - type: Transform - pos: -8.5,25.5 - parent: 2 - - uid: 1990 - components: - - type: Transform - pos: -1.5,26.5 - parent: 2 - - uid: 1991 - components: - - type: Transform - pos: -1.5,22.5 - parent: 2 - - uid: 1992 - components: - - type: Transform - pos: -2.5,22.5 - parent: 2 - - uid: 1993 - components: - - type: Transform - pos: -0.5,22.5 - parent: 2 - - uid: 1994 - components: - - type: Transform - pos: -5.5,24.5 - parent: 2 - - uid: 1995 - components: - - type: Transform - pos: -5.5,23.5 - parent: 2 - - uid: 1996 - components: - - type: Transform - pos: -5.5,22.5 - parent: 2 - - uid: 1997 - components: - - type: Transform - pos: -6.5,22.5 - parent: 2 - - uid: 1998 - components: - - type: Transform - pos: -4.5,22.5 - parent: 2 - - uid: 1999 - components: - - type: Transform - pos: -9.5,24.5 - parent: 2 - - uid: 2000 - components: - - type: Transform - pos: -9.5,23.5 - parent: 2 - - uid: 2001 - components: - - type: Transform - pos: -9.5,22.5 - parent: 2 - - uid: 2002 - components: - - type: Transform - pos: -10.5,22.5 - parent: 2 - - uid: 2003 - components: - - type: Transform - pos: -8.5,22.5 - parent: 2 - - uid: 2004 - components: - - type: Transform - pos: -10.5,27.5 - parent: 2 - - uid: 2005 - components: - - type: Transform - pos: -12.5,27.5 - parent: 2 - - uid: 2006 - components: - - type: Transform - pos: -11.5,27.5 - parent: 2 - - uid: 2007 - components: - - type: Transform - pos: -13.5,27.5 - parent: 2 - - uid: 2008 - components: - - type: Transform - pos: -13.5,26.5 - parent: 2 - - uid: 2012 - components: - - type: Transform - pos: -19.5,-31.5 - parent: 2 - - uid: 2015 - components: - - type: Transform - pos: 8.5,42.5 - parent: 2 - - uid: 2018 - components: - - type: Transform - pos: -20.5,22.5 - parent: 2 - - uid: 2019 - components: - - type: Transform - pos: -20.5,46.5 - parent: 2 - - uid: 2020 - components: - - type: Transform - pos: -17.5,46.5 - parent: 2 - - uid: 2021 - components: - - type: Transform - pos: -17.5,47.5 - parent: 2 - - uid: 2022 - components: - - type: Transform - pos: -18.5,45.5 - parent: 2 - - uid: 2023 - components: - - type: Transform - pos: -17.5,45.5 - parent: 2 - - uid: 2024 - components: - - type: Transform - pos: -18.5,43.5 - parent: 2 - - uid: 2025 - components: - - type: Transform - pos: -19.5,45.5 - parent: 2 - - uid: 2026 - components: - - type: Transform - pos: -23.5,45.5 - parent: 2 - - uid: 2027 - components: - - type: Transform - pos: -23.5,49.5 - parent: 2 - - uid: 2028 - components: - - type: Transform - pos: -21.5,50.5 - parent: 2 - - uid: 2029 - components: - - type: Transform - pos: -23.5,50.5 - parent: 2 - - uid: 2030 - components: - - type: Transform - pos: -20.5,50.5 - parent: 2 - - uid: 2031 - components: - - type: Transform - pos: -22.5,50.5 - parent: 2 - - uid: 2032 - components: - - type: Transform - pos: 79.5,-9.5 - parent: 2 - - uid: 2033 - components: - - type: Transform - pos: -10.5,40.5 - parent: 2 - - uid: 2034 - components: - - type: Transform - pos: -10.5,42.5 - parent: 2 - - uid: 2035 - components: - - type: Transform - pos: -10.5,39.5 - parent: 2 - - uid: 2036 - components: - - type: Transform - pos: -10.5,43.5 - parent: 2 - - uid: 2037 - components: - - type: Transform - pos: -10.5,44.5 - parent: 2 - - uid: 2038 - components: - - type: Transform - pos: -10.5,45.5 - parent: 2 - - uid: 2039 - components: - - type: Transform - pos: -10.5,41.5 - parent: 2 - - uid: 2040 - components: - - type: Transform - pos: 65.5,-11.5 - parent: 2 - - uid: 2041 - components: - - type: Transform - pos: -13.5,44.5 - parent: 2 - - uid: 2042 - components: - - type: Transform - pos: -14.5,44.5 - parent: 2 - - uid: 2043 - components: - - type: Transform - pos: -14.5,42.5 - parent: 2 - - uid: 2044 - components: - - type: Transform - pos: -14.5,41.5 - parent: 2 - - uid: 2045 - components: - - type: Transform - pos: -15.5,44.5 - parent: 2 - - uid: 2046 - components: - - type: Transform - pos: -14.5,43.5 - parent: 2 - - uid: 2047 - components: - - type: Transform - pos: -31.5,14.5 - parent: 2 - - uid: 2048 - components: - - type: Transform - pos: -10.5,38.5 - parent: 2 - - uid: 2049 - components: - - type: Transform - pos: -23.5,47.5 - parent: 2 - - uid: 2050 - components: - - type: Transform - pos: -21.5,43.5 - parent: 2 - - uid: 2051 - components: - - type: Transform - pos: -22.5,43.5 - parent: 2 - - uid: 2052 - components: - - type: Transform - pos: -19.5,43.5 - parent: 2 - - uid: 2053 - components: - - type: Transform - pos: -20.5,47.5 - parent: 2 - - uid: 2054 - components: - - type: Transform - pos: -21.5,45.5 - parent: 2 - - uid: 2055 - components: - - type: Transform - pos: -22.5,45.5 - parent: 2 - - uid: 2056 - components: - - type: Transform - pos: -23.5,43.5 - parent: 2 - - uid: 2057 - components: - - type: Transform - pos: -24.5,43.5 - parent: 2 - - uid: 2058 - components: - - type: Transform - pos: -19.5,22.5 - parent: 2 - - uid: 2059 - components: - - type: Transform - pos: -18.5,22.5 - parent: 2 - - uid: 2060 - components: - - type: Transform - pos: -19.5,20.5 - parent: 2 - - uid: 2061 - components: - - type: Transform - pos: -18.5,20.5 - parent: 2 - - uid: 2062 - components: - - type: Transform - pos: -20.5,20.5 - parent: 2 - - uid: 2066 - components: - - type: Transform - pos: 5.5,38.5 - parent: 2 - - uid: 2067 - components: - - type: Transform - pos: 6.5,38.5 - parent: 2 - - uid: 2069 - components: - - type: Transform - pos: 7.5,38.5 - parent: 2 - - uid: 2070 - components: - - type: Transform - pos: 8.5,38.5 - parent: 2 - - uid: 2071 - components: - - type: Transform - pos: 8.5,39.5 - parent: 2 - - uid: 2072 - components: - - type: Transform - pos: 8.5,37.5 - parent: 2 - - uid: 2073 - components: - - type: Transform - pos: 8.5,36.5 - parent: 2 - - uid: 2074 - components: - - type: Transform - pos: 19.5,33.5 - parent: 2 - - uid: 2075 - components: - - type: Transform - pos: 18.5,33.5 - parent: 2 - - uid: 2076 - components: - - type: Transform - pos: 17.5,33.5 - parent: 2 - - uid: 2077 - components: - - type: Transform - pos: 16.5,33.5 - parent: 2 - - uid: 2078 - components: - - type: Transform - pos: 15.5,33.5 - parent: 2 - - uid: 2079 - components: - - type: Transform - pos: 14.5,33.5 - parent: 2 - - uid: 2080 - components: - - type: Transform - pos: 13.5,33.5 - parent: 2 - - uid: 2081 - components: - - type: Transform - pos: 13.5,32.5 - parent: 2 - - uid: 2082 - components: - - type: Transform - pos: 13.5,31.5 - parent: 2 - - uid: 2083 - components: - - type: Transform - pos: 69.5,-74.5 - parent: 2 - - uid: 2084 - components: - - type: Transform - pos: 12.5,31.5 - parent: 2 - - uid: 2085 - components: - - type: Transform - pos: 11.5,31.5 - parent: 2 - - uid: 2086 - components: - - type: Transform - pos: 10.5,31.5 - parent: 2 - - uid: 2087 - components: - - type: Transform - pos: 9.5,31.5 - parent: 2 - - uid: 2088 - components: - - type: Transform - pos: 8.5,31.5 - parent: 2 - - uid: 2089 - components: - - type: Transform - pos: 7.5,31.5 - parent: 2 - - uid: 2090 - components: - - type: Transform - pos: 15.5,34.5 - parent: 2 - - uid: 2091 - components: - - type: Transform - pos: 12.5,33.5 - parent: 2 - - uid: 2092 - components: - - type: Transform - pos: 18.5,34.5 - parent: 2 - - uid: 2093 - components: - - type: Transform - pos: 18.5,35.5 - parent: 2 - - uid: 2094 - components: - - type: Transform - pos: 19.5,35.5 - parent: 2 - - uid: 2095 - components: - - type: Transform - pos: 22.5,35.5 - parent: 2 - - uid: 2096 - components: - - type: Transform - pos: 23.5,35.5 - parent: 2 - - uid: 2097 - components: - - type: Transform - pos: -1.5,34.5 - parent: 2 - - uid: 2098 - components: - - type: Transform - pos: -1.5,33.5 - parent: 2 - - uid: 2100 - components: - - type: Transform - pos: 0.5,31.5 - parent: 2 - - uid: 2101 - components: - - type: Transform - pos: -0.5,31.5 - parent: 2 - - uid: 2102 - components: - - type: Transform - pos: -1.5,31.5 - parent: 2 - - uid: 2103 - components: - - type: Transform - pos: 1.5,31.5 - parent: 2 - - uid: 2104 - components: - - type: Transform - pos: 2.5,31.5 - parent: 2 - - uid: 2105 - components: - - type: Transform - pos: 3.5,31.5 - parent: 2 - - uid: 2106 - components: - - type: Transform - pos: 69.5,-70.5 - parent: 2 - - uid: 2107 - components: - - type: Transform - pos: 23.5,42.5 - parent: 2 - - uid: 2108 - components: - - type: Transform - pos: 21.5,35.5 - parent: 2 - - uid: 2109 - components: - - type: Transform - pos: 22.5,32.5 - parent: 2 - - uid: 2110 - components: - - type: Transform - pos: 21.5,32.5 - parent: 2 - - uid: 2111 - components: - - type: Transform - pos: -19.5,50.5 - parent: 2 - - uid: 2112 - components: - - type: Transform - pos: 69.5,-77.5 - parent: 2 - - uid: 2113 - components: - - type: Transform - pos: 23.5,48.5 - parent: 2 - - uid: 2114 - components: - - type: Transform - pos: 23.5,36.5 - parent: 2 - - uid: 2115 - components: - - type: Transform - pos: 23.5,44.5 - parent: 2 - - uid: 2116 - components: - - type: Transform - pos: 23.5,46.5 - parent: 2 - - uid: 2117 - components: - - type: Transform - pos: 23.5,45.5 - parent: 2 - - uid: 2118 - components: - - type: Transform - pos: 23.5,41.5 - parent: 2 - - uid: 2119 - components: - - type: Transform - pos: 23.5,40.5 - parent: 2 - - uid: 2120 - components: - - type: Transform - pos: 23.5,37.5 - parent: 2 - - uid: 2121 - components: - - type: Transform - pos: 23.5,38.5 - parent: 2 - - uid: 2122 - components: - - type: Transform - pos: 23.5,39.5 - parent: 2 - - uid: 2123 - components: - - type: Transform - pos: 23.5,43.5 - parent: 2 - - uid: 2125 - components: - - type: Transform - pos: 15.5,35.5 - parent: 2 - - uid: 2126 - components: - - type: Transform - pos: 24.5,38.5 - parent: 2 - - uid: 2136 - components: - - type: Transform - pos: -43.5,-39.5 - parent: 2 - - uid: 2143 - components: - - type: Transform - pos: -13.5,-26.5 - parent: 2 - - uid: 2144 - components: - - type: Transform - pos: -13.5,-25.5 - parent: 2 - - uid: 2146 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 2 - - uid: 2147 - components: - - type: Transform - pos: -57.5,17.5 - parent: 2 - - uid: 2148 - components: - - type: Transform - pos: -47.5,12.5 - parent: 2 - - uid: 2149 - components: - - type: Transform - pos: 5.5,-53.5 - parent: 2 - - uid: 2150 - components: - - type: Transform - pos: 69.5,-71.5 - parent: 2 - - uid: 2151 - components: - - type: Transform - pos: 69.5,-75.5 - parent: 2 - - uid: 2152 - components: - - type: Transform - pos: 69.5,-72.5 - parent: 2 - - uid: 2157 - components: - - type: Transform - pos: 25.5,6.5 - parent: 2 - - uid: 2160 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 2 - - uid: 2161 - components: - - type: Transform - pos: -10.5,-3.5 - parent: 2 - - uid: 2162 - components: - - type: Transform - pos: 21.5,24.5 - parent: 2 - - uid: 2163 - components: - - type: Transform - pos: 21.5,23.5 - parent: 2 - - uid: 2164 - components: - - type: Transform - pos: 21.5,22.5 - parent: 2 - - uid: 2171 - components: - - type: Transform - pos: 20.5,17.5 - parent: 2 - - uid: 2172 - components: - - type: Transform - pos: 19.5,17.5 - parent: 2 - - uid: 2173 - components: - - type: Transform - pos: 18.5,17.5 - parent: 2 - - uid: 2174 - components: - - type: Transform - pos: 17.5,17.5 - parent: 2 - - uid: 2175 - components: - - type: Transform - pos: 16.5,17.5 - parent: 2 - - uid: 2176 - components: - - type: Transform - pos: 15.5,17.5 - parent: 2 - - uid: 2177 - components: - - type: Transform - pos: 14.5,17.5 - parent: 2 - - uid: 2178 - components: - - type: Transform - pos: 13.5,17.5 - parent: 2 - - uid: 2179 - components: - - type: Transform - pos: 12.5,17.5 - parent: 2 - - uid: 2180 - components: - - type: Transform - pos: 11.5,17.5 - parent: 2 - - uid: 2181 - components: - - type: Transform - pos: 10.5,17.5 - parent: 2 - - uid: 2182 - components: - - type: Transform - pos: 9.5,17.5 - parent: 2 - - uid: 2183 - components: - - type: Transform - pos: 8.5,17.5 - parent: 2 - - uid: 2184 - components: - - type: Transform - pos: 7.5,17.5 - parent: 2 - - uid: 2185 - components: - - type: Transform - pos: 6.5,17.5 - parent: 2 - - uid: 2186 - components: - - type: Transform - pos: 5.5,17.5 - parent: 2 - - uid: 2187 - components: - - type: Transform - pos: 4.5,17.5 - parent: 2 - - uid: 2188 - components: - - type: Transform - pos: 3.5,17.5 - parent: 2 - - uid: 2189 - components: - - type: Transform - pos: 2.5,17.5 - parent: 2 - - uid: 2190 - components: - - type: Transform - pos: 2.5,16.5 - parent: 2 - - uid: 2191 - components: - - type: Transform - pos: 2.5,15.5 - parent: 2 - - uid: 2192 - components: - - type: Transform - pos: 2.5,14.5 - parent: 2 - - uid: 2193 - components: - - type: Transform - pos: 2.5,13.5 - parent: 2 - - uid: 2194 - components: - - type: Transform - pos: 2.5,12.5 - parent: 2 - - uid: 2195 - components: - - type: Transform - pos: 2.5,11.5 - parent: 2 - - uid: 2196 - components: - - type: Transform - pos: 2.5,10.5 - parent: 2 - - uid: 2197 - components: - - type: Transform - pos: -42.5,-39.5 - parent: 2 - - uid: 2198 - components: - - type: Transform - pos: 2.5,8.5 - parent: 2 - - uid: 2199 - components: - - type: Transform - pos: 2.5,7.5 - parent: 2 - - uid: 2201 - components: - - type: Transform - pos: 2.5,5.5 - parent: 2 - - uid: 2202 - components: - - type: Transform - pos: 2.5,4.5 - parent: 2 - - uid: 2203 - components: - - type: Transform - pos: 2.5,3.5 - parent: 2 - - uid: 2204 - components: - - type: Transform - pos: 2.5,6.5 - parent: 2 - - uid: 2205 - components: - - type: Transform - pos: -40.5,-39.5 - parent: 2 - - uid: 2206 - components: - - type: Transform - pos: 19.5,15.5 - parent: 2 - - uid: 2207 - components: - - type: Transform - pos: 4.5,-52.5 - parent: 2 - - uid: 2211 - components: - - type: Transform - pos: -46.5,19.5 - parent: 2 - - uid: 2212 - components: - - type: Transform - pos: -47.5,19.5 - parent: 2 - - uid: 2213 - components: - - type: Transform - pos: -49.5,18.5 - parent: 2 - - uid: 2214 - components: - - type: Transform - pos: -48.5,13.5 - parent: 2 - - uid: 2215 - components: - - type: Transform - pos: -48.5,17.5 - parent: 2 - - uid: 2216 - components: - - type: Transform - pos: -45.5,12.5 - parent: 2 - - uid: 2217 - components: - - type: Transform - pos: -40.5,10.5 - parent: 2 - - uid: 2218 - components: - - type: Transform - pos: -40.5,12.5 - parent: 2 - - uid: 2219 - components: - - type: Transform - pos: -42.5,12.5 - parent: 2 - - uid: 2220 - components: - - type: Transform - pos: -43.5,10.5 - parent: 2 - - uid: 2221 - components: - - type: Transform - pos: -27.5,29.5 - parent: 2 - - uid: 2222 - components: - - type: Transform - pos: -18.5,23.5 - parent: 2 - - uid: 2223 - components: - - type: Transform - pos: -3.5,-28.5 - parent: 2 - - uid: 2224 - components: - - type: Transform - pos: -14.5,-4.5 - parent: 2 - - uid: 2225 - components: - - type: Transform - pos: 9.5,36.5 - parent: 2 - - uid: 2226 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 2 - - uid: 2227 - components: - - type: Transform - pos: 7.5,36.5 - parent: 2 - - uid: 2228 - components: - - type: Transform - pos: 6.5,36.5 - parent: 2 - - uid: 2229 - components: - - type: Transform - pos: 6.5,35.5 - parent: 2 - - uid: 2230 - components: - - type: Transform - pos: 6.5,34.5 - parent: 2 - - uid: 2231 - components: - - type: Transform - pos: 7.5,34.5 - parent: 2 - - uid: 2232 - components: - - type: Transform - pos: 8.5,40.5 - parent: 2 - - uid: 2233 - components: - - type: Transform - pos: 8.5,41.5 - parent: 2 - - uid: 2234 - components: - - type: Transform - pos: 7.5,41.5 - parent: 2 - - uid: 2235 - components: - - type: Transform - pos: 9.5,41.5 - parent: 2 - - uid: 2236 - components: - - type: Transform - pos: 69.5,-78.5 - parent: 2 - - uid: 2238 - components: - - type: Transform - pos: 4.5,31.5 - parent: 2 - - uid: 2239 - components: - - type: Transform - pos: 5.5,31.5 - parent: 2 - - uid: 2240 - components: - - type: Transform - pos: 5.5,32.5 - parent: 2 - - uid: 2241 - components: - - type: Transform - pos: 5.5,30.5 - parent: 2 - - uid: 2242 - components: - - type: Transform - pos: 3.5,30.5 - parent: 2 - - uid: 2243 - components: - - type: Transform - pos: 3.5,29.5 - parent: 2 - - uid: 2244 - components: - - type: Transform - pos: 1.5,30.5 - parent: 2 - - uid: 2245 - components: - - type: Transform - pos: 1.5,29.5 - parent: 2 - - uid: 2246 - components: - - type: Transform - pos: 0.5,29.5 - parent: 2 - - uid: 2247 - components: - - type: Transform - pos: -1.5,30.5 - parent: 2 - - uid: 2248 - components: - - type: Transform - pos: -1.5,29.5 - parent: 2 - - uid: 2249 - components: - - type: Transform - pos: -2.5,29.5 - parent: 2 - - uid: 2251 - components: - - type: Transform - pos: -2.5,32.5 - parent: 2 - - uid: 2253 - components: - - type: Transform - pos: 2.5,23.5 - parent: 2 - - uid: 2254 - components: - - type: Transform - pos: 2.5,22.5 - parent: 2 - - uid: 2255 - components: - - type: Transform - pos: 3.5,22.5 - parent: 2 - - uid: 2256 - components: - - type: Transform - pos: 8.5,25.5 - parent: 2 - - uid: 2257 - components: - - type: Transform - pos: 10.5,25.5 - parent: 2 - - uid: 2267 - components: - - type: Transform - pos: -21.5,21.5 - parent: 2 - - uid: 2268 - components: - - type: Transform - pos: -22.5,21.5 - parent: 2 - - uid: 2269 - components: - - type: Transform - pos: -22.5,19.5 - parent: 2 - - uid: 2270 - components: - - type: Transform - pos: -20.5,21.5 - parent: 2 - - uid: 2271 - components: - - type: Transform - pos: -18.5,21.5 - parent: 2 - - uid: 2272 - components: - - type: Transform - pos: -17.5,21.5 - parent: 2 - - uid: 2273 - components: - - type: Transform - pos: -16.5,21.5 - parent: 2 - - uid: 2274 - components: - - type: Transform - pos: -17.5,23.5 - parent: 2 - - uid: 2275 - components: - - type: Transform - pos: 69.5,-69.5 - parent: 2 - - uid: 2276 - components: - - type: Transform - pos: 12.5,20.5 - parent: 2 - - uid: 2277 - components: - - type: Transform - pos: 11.5,20.5 - parent: 2 - - uid: 2278 - components: - - type: Transform - pos: 11.5,21.5 - parent: 2 - - uid: 2279 - components: - - type: Transform - pos: 11.5,19.5 - parent: 2 - - uid: 2280 - components: - - type: Transform - pos: -26.5,-33.5 - parent: 2 - - uid: 2281 - components: - - type: Transform - pos: 33.5,7.5 - parent: 2 - - uid: 2284 - components: - - type: Transform - pos: 28.5,10.5 - parent: 2 - - uid: 2285 - components: - - type: Transform - pos: 28.5,9.5 - parent: 2 - - uid: 2288 - components: - - type: Transform - pos: 18.5,-5.5 - parent: 2 - - uid: 2289 - components: - - type: Transform - pos: 18.5,-9.5 - parent: 2 - - uid: 2290 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 2 - - uid: 2291 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 2 - - uid: 2292 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 2 - - uid: 2293 - components: - - type: Transform - pos: -6.5,-4.5 - parent: 2 - - uid: 2294 - components: - - type: Transform - pos: -4.5,-3.5 - parent: 2 - - uid: 2295 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 2 - - uid: 2296 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 2 - - uid: 2297 - components: - - type: Transform - pos: -7.5,-3.5 - parent: 2 - - uid: 2298 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 2 - - uid: 2299 - components: - - type: Transform - pos: -14.5,-5.5 - parent: 2 - - uid: 2300 - components: - - type: Transform - pos: -14.5,-6.5 - parent: 2 - - uid: 2301 - components: - - type: Transform - pos: -13.5,-6.5 - parent: 2 - - uid: 2303 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 2 - - uid: 2304 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 2 - - uid: 2305 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 2 - - uid: 2306 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - - uid: 2307 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 2 - - uid: 2308 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 2 - - uid: 2309 - components: - - type: Transform - pos: 13.5,-5.5 - parent: 2 - - uid: 2310 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 2 - - uid: 2311 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 2 - - uid: 2312 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 2 - - uid: 2313 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 2 - - uid: 2314 - components: - - type: Transform - pos: 10.5,-9.5 - parent: 2 - - uid: 2315 - components: - - type: Transform - pos: -11.5,-8.5 - parent: 2 - - uid: 2316 - components: - - type: Transform - pos: -11.5,-7.5 - parent: 2 - - uid: 2317 - components: - - type: Transform - pos: -11.5,-9.5 - parent: 2 - - uid: 2318 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 2 - - uid: 2319 - components: - - type: Transform - pos: -14.5,-12.5 - parent: 2 - - uid: 2320 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 2 - - uid: 2321 - components: - - type: Transform - pos: -14.5,-14.5 - parent: 2 - - uid: 2322 - components: - - type: Transform - pos: -11.5,-23.5 - parent: 2 - - uid: 2323 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 2 - - uid: 2324 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 2 - - uid: 2327 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 2 - - uid: 2328 - components: - - type: Transform - pos: -2.5,-28.5 - parent: 2 - - uid: 2329 - components: - - type: Transform - pos: -5.5,-28.5 - parent: 2 - - uid: 2333 - components: - - type: Transform - pos: 1.5,-28.5 - parent: 2 - - uid: 2334 - components: - - type: Transform - pos: 2.5,-28.5 - parent: 2 - - uid: 2335 - components: - - type: Transform - pos: 3.5,-28.5 - parent: 2 - - uid: 2336 - components: - - type: Transform - pos: 4.5,-28.5 - parent: 2 - - uid: 2337 - components: - - type: Transform - pos: 53.5,-23.5 - parent: 2 - - uid: 2338 - components: - - type: Transform - pos: 36.5,-5.5 - parent: 2 - - uid: 2339 - components: - - type: Transform - pos: 25.5,-1.5 - parent: 2 - - uid: 2340 - components: - - type: Transform - pos: 37.5,-3.5 - parent: 2 - - uid: 2341 - components: - - type: Transform - pos: 37.5,-2.5 - parent: 2 - - uid: 2342 - components: - - type: Transform - pos: 37.5,-1.5 - parent: 2 - - uid: 2343 - components: - - type: Transform - pos: 37.5,-0.5 - parent: 2 - - uid: 2344 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 2 - - uid: 2345 - components: - - type: Transform - pos: 37.5,-5.5 - parent: 2 - - uid: 2346 - components: - - type: Transform - pos: 37.5,-6.5 - parent: 2 - - uid: 2347 - components: - - type: Transform - pos: 36.5,-8.5 - parent: 2 - - uid: 2348 - components: - - type: Transform - pos: 35.5,-8.5 - parent: 2 - - uid: 2349 - components: - - type: Transform - pos: 34.5,-8.5 - parent: 2 - - uid: 2350 - components: - - type: Transform - pos: 34.5,-7.5 - parent: 2 - - uid: 2351 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 2 - - uid: 2352 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 - - uid: 2353 - components: - - type: Transform - pos: 39.5,-6.5 - parent: 2 - - uid: 2354 - components: - - type: Transform - pos: 39.5,-5.5 - parent: 2 - - uid: 2355 - components: - - type: Transform - pos: 48.5,-2.5 - parent: 2 - - uid: 2356 - components: - - type: Transform - pos: 69.5,-73.5 - parent: 2 - - uid: 2357 - components: - - type: Transform - pos: 69.5,-76.5 - parent: 2 - - uid: 2360 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 2 - - uid: 2363 - components: - - type: Transform - pos: 45.5,-0.5 - parent: 2 - - uid: 2364 - components: - - type: Transform - pos: 46.5,-0.5 - parent: 2 - - uid: 2365 - components: - - type: Transform - pos: 47.5,-0.5 - parent: 2 - - uid: 2366 - components: - - type: Transform - pos: 48.5,-0.5 - parent: 2 - - uid: 2367 - components: - - type: Transform - pos: 49.5,-0.5 - parent: 2 - - uid: 2368 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 2 - - uid: 2369 - components: - - type: Transform - pos: 47.5,-1.5 - parent: 2 - - uid: 2370 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 2 - - uid: 2371 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 2 - - uid: 2372 - components: - - type: Transform - pos: 43.5,-4.5 - parent: 2 - - uid: 2373 - components: - - type: Transform - pos: 44.5,-3.5 - parent: 2 - - uid: 2374 - components: - - type: Transform - pos: 45.5,-3.5 - parent: 2 - - uid: 2375 - components: - - type: Transform - pos: 46.5,-3.5 - parent: 2 - - uid: 2376 - components: - - type: Transform - pos: 47.5,-3.5 - parent: 2 - - uid: 2377 - components: - - type: Transform - pos: 48.5,-3.5 - parent: 2 - - uid: 2378 - components: - - type: Transform - pos: 48.5,-4.5 - parent: 2 - - uid: 2379 - components: - - type: Transform - pos: 48.5,-5.5 - parent: 2 - - uid: 2380 - components: - - type: Transform - pos: 48.5,-6.5 - parent: 2 - - uid: 2381 - components: - - type: Transform - pos: 48.5,-7.5 - parent: 2 - - uid: 2382 - components: - - type: Transform - pos: 48.5,-8.5 - parent: 2 - - uid: 2383 - components: - - type: Transform - pos: 47.5,-8.5 - parent: 2 - - uid: 2384 - components: - - type: Transform - pos: 46.5,-8.5 - parent: 2 - - uid: 2385 - components: - - type: Transform - pos: 45.5,-8.5 - parent: 2 - - uid: 2386 - components: - - type: Transform - pos: 44.5,-8.5 - parent: 2 - - uid: 2387 - components: - - type: Transform - pos: 43.5,-8.5 - parent: 2 - - uid: 2388 - components: - - type: Transform - pos: 43.5,-7.5 - parent: 2 - - uid: 2389 - components: - - type: Transform - pos: 43.5,-6.5 - parent: 2 - - uid: 2390 - components: - - type: Transform - pos: 43.5,-5.5 - parent: 2 - - uid: 2391 - components: - - type: Transform - pos: 43.5,-9.5 - parent: 2 - - uid: 2392 - components: - - type: Transform - pos: 43.5,-10.5 - parent: 2 - - uid: 2393 - components: - - type: Transform - pos: 43.5,-11.5 - parent: 2 - - uid: 2394 - components: - - type: Transform - pos: 42.5,-11.5 - parent: 2 - - uid: 2395 - components: - - type: Transform - pos: 44.5,-11.5 - parent: 2 - - uid: 2396 - components: - - type: Transform - pos: 45.5,-11.5 - parent: 2 - - uid: 2397 - components: - - type: Transform - pos: 45.5,-10.5 - parent: 2 - - uid: 2398 - components: - - type: Transform - pos: 46.5,-10.5 - parent: 2 - - uid: 2399 - components: - - type: Transform - pos: 47.5,-10.5 - parent: 2 - - uid: 2400 - components: - - type: Transform - pos: 48.5,-10.5 - parent: 2 - - uid: 2401 - components: - - type: Transform - pos: 49.5,-10.5 - parent: 2 - - uid: 2402 - components: - - type: Transform - pos: 48.5,-9.5 - parent: 2 - - uid: 2403 - components: - - type: Transform - pos: -12.5,44.5 - parent: 2 - - uid: 2404 - components: - - type: Transform - pos: -11.5,44.5 - parent: 2 - - uid: 2406 - components: - - type: Transform - pos: 66.5,-78.5 - parent: 2 - - uid: 2410 - components: - - type: Transform - pos: 68.5,-78.5 - parent: 2 - - uid: 2411 - components: - - type: Transform - pos: 48.5,-1.5 - parent: 2 - - uid: 2412 - components: - - type: Transform - pos: 57.5,-0.5 - parent: 2 - - uid: 2413 - components: - - type: Transform - pos: 57.5,0.5 - parent: 2 - - uid: 2414 - components: - - type: Transform - pos: 57.5,1.5 - parent: 2 - - uid: 2415 - components: - - type: Transform - pos: 57.5,2.5 - parent: 2 - - uid: 2416 - components: - - type: Transform - pos: 56.5,-3.5 - parent: 2 - - uid: 2417 - components: - - type: Transform - pos: 55.5,-3.5 - parent: 2 - - uid: 2418 - components: - - type: Transform - pos: 54.5,-3.5 - parent: 2 - - uid: 2419 - components: - - type: Transform - pos: 56.5,-4.5 - parent: 2 - - uid: 2420 - components: - - type: Transform - pos: 56.5,-5.5 - parent: 2 - - uid: 2421 - components: - - type: Transform - pos: 56.5,-6.5 - parent: 2 - - uid: 2422 - components: - - type: Transform - pos: 56.5,-7.5 - parent: 2 - - uid: 2423 - components: - - type: Transform - pos: 56.5,-8.5 - parent: 2 - - uid: 2424 - components: - - type: Transform - pos: 56.5,-9.5 - parent: 2 - - uid: 2425 - components: - - type: Transform - pos: 57.5,-9.5 - parent: 2 - - uid: 2426 - components: - - type: Transform - pos: 58.5,-9.5 - parent: 2 - - uid: 2427 - components: - - type: Transform - pos: 59.5,-9.5 - parent: 2 - - uid: 2428 - components: - - type: Transform - pos: 59.5,-10.5 - parent: 2 - - uid: 2429 - components: - - type: Transform - pos: 59.5,-11.5 - parent: 2 - - uid: 2430 - components: - - type: Transform - pos: 57.5,-10.5 - parent: 2 - - uid: 2431 - components: - - type: Transform - pos: 57.5,-11.5 - parent: 2 - - uid: 2432 - components: - - type: Transform - pos: -7.5,-25.5 - parent: 2 - - uid: 2433 - components: - - type: Transform - pos: -7.5,-23.5 - parent: 2 - - uid: 2434 - components: - - type: Transform - pos: 76.5,14.5 - parent: 2 - - uid: 2435 - components: - - type: Transform - pos: 77.5,9.5 - parent: 2 - - uid: 2437 - components: - - type: Transform - pos: 77.5,5.5 - parent: 2 - - uid: 2438 - components: - - type: Transform - pos: 73.5,14.5 - parent: 2 - - uid: 2439 - components: - - type: Transform - pos: 77.5,-3.5 - parent: 2 - - uid: 2441 - components: - - type: Transform - pos: 72.5,5.5 - parent: 2 - - uid: 2442 - components: - - type: Transform - pos: 73.5,5.5 - parent: 2 - - uid: 2443 - components: - - type: Transform - pos: 71.5,3.5 - parent: 2 - - uid: 2444 - components: - - type: Transform - pos: 72.5,3.5 - parent: 2 - - uid: 2445 - components: - - type: Transform - pos: 64.5,1.5 - parent: 2 - - uid: 2446 - components: - - type: Transform - pos: 65.5,1.5 - parent: 2 - - uid: 2447 - components: - - type: Transform - pos: 65.5,2.5 - parent: 2 - - uid: 2448 - components: - - type: Transform - pos: 65.5,0.5 - parent: 2 - - uid: 2449 - components: - - type: Transform - pos: 45.5,19.5 - parent: 2 - - uid: 2450 - components: - - type: Transform - pos: 46.5,19.5 - parent: 2 - - uid: 2453 - components: - - type: Transform - pos: 65.5,18.5 - parent: 2 - - uid: 2454 - components: - - type: Transform - pos: 65.5,17.5 - parent: 2 - - uid: 2455 - components: - - type: Transform - pos: 42.5,5.5 - parent: 2 - - uid: 2456 - components: - - type: Transform - pos: 41.5,5.5 - parent: 2 - - uid: 2457 - components: - - type: Transform - pos: 42.5,4.5 - parent: 2 - - uid: 2458 - components: - - type: Transform - pos: 42.5,3.5 - parent: 2 - - uid: 2459 - components: - - type: Transform - pos: 41.5,3.5 - parent: 2 - - uid: 2460 - components: - - type: Transform - pos: 40.5,3.5 - parent: 2 - - uid: 2461 - components: - - type: Transform - pos: 39.5,3.5 - parent: 2 - - uid: 2462 - components: - - type: Transform - pos: 38.5,3.5 - parent: 2 - - uid: 2463 - components: - - type: Transform - pos: 37.5,3.5 - parent: 2 - - uid: 2464 - components: - - type: Transform - pos: 36.5,3.5 - parent: 2 - - uid: 2465 - components: - - type: Transform - pos: 35.5,3.5 - parent: 2 - - uid: 2466 - components: - - type: Transform - pos: 34.5,3.5 - parent: 2 - - uid: 2467 - components: - - type: Transform - pos: 33.5,3.5 - parent: 2 - - uid: 2468 - components: - - type: Transform - pos: 32.5,3.5 - parent: 2 - - uid: 2469 - components: - - type: Transform - pos: 31.5,3.5 - parent: 2 - - uid: 2470 - components: - - type: Transform - pos: 30.5,3.5 - parent: 2 - - uid: 2471 - components: - - type: Transform - pos: 43.5,3.5 - parent: 2 - - uid: 2472 - components: - - type: Transform - pos: 44.5,3.5 - parent: 2 - - uid: 2473 - components: - - type: Transform - pos: 45.5,3.5 - parent: 2 - - uid: 2474 - components: - - type: Transform - pos: 45.5,4.5 - parent: 2 - - uid: 2475 - components: - - type: Transform - pos: 45.5,5.5 - parent: 2 - - uid: 2476 - components: - - type: Transform - pos: 45.5,6.5 - parent: 2 - - uid: 2477 - components: - - type: Transform - pos: 45.5,7.5 - parent: 2 - - uid: 2478 - components: - - type: Transform - pos: 45.5,8.5 - parent: 2 - - uid: 2479 - components: - - type: Transform - pos: 45.5,9.5 - parent: 2 - - uid: 2480 - components: - - type: Transform - pos: 45.5,10.5 - parent: 2 - - uid: 2481 - components: - - type: Transform - pos: 46.5,10.5 - parent: 2 - - uid: 2482 - components: - - type: Transform - pos: 47.5,10.5 - parent: 2 - - uid: 2483 - components: - - type: Transform - pos: 48.5,10.5 - parent: 2 - - uid: 2484 - components: - - type: Transform - pos: 49.5,10.5 - parent: 2 - - uid: 2485 - components: - - type: Transform - pos: 50.5,10.5 - parent: 2 - - uid: 2486 - components: - - type: Transform - pos: 51.5,10.5 - parent: 2 - - uid: 2487 - components: - - type: Transform - pos: 52.5,10.5 - parent: 2 - - uid: 2488 - components: - - type: Transform - pos: 53.5,10.5 - parent: 2 - - uid: 2489 - components: - - type: Transform - pos: 54.5,10.5 - parent: 2 - - uid: 2490 - components: - - type: Transform - pos: 55.5,10.5 - parent: 2 - - uid: 2491 - components: - - type: Transform - pos: 56.5,10.5 - parent: 2 - - uid: 2492 - components: - - type: Transform - pos: 57.5,10.5 - parent: 2 - - uid: 2493 - components: - - type: Transform - pos: 58.5,10.5 - parent: 2 - - uid: 2494 - components: - - type: Transform - pos: 59.5,10.5 - parent: 2 - - uid: 2495 - components: - - type: Transform - pos: 59.5,11.5 - parent: 2 - - uid: 2496 - components: - - type: Transform - pos: 59.5,12.5 - parent: 2 - - uid: 2497 - components: - - type: Transform - pos: 59.5,13.5 - parent: 2 - - uid: 2498 - components: - - type: Transform - pos: 58.5,13.5 - parent: 2 - - uid: 2499 - components: - - type: Transform - pos: 57.5,13.5 - parent: 2 - - uid: 2500 - components: - - type: Transform - pos: 56.5,13.5 - parent: 2 - - uid: 2501 - components: - - type: Transform - pos: 55.5,13.5 - parent: 2 - - uid: 2502 - components: - - type: Transform - pos: 54.5,13.5 - parent: 2 - - uid: 2503 - components: - - type: Transform - pos: 53.5,13.5 - parent: 2 - - uid: 2504 - components: - - type: Transform - pos: 52.5,13.5 - parent: 2 - - uid: 2505 - components: - - type: Transform - pos: 51.5,13.5 - parent: 2 - - uid: 2506 - components: - - type: Transform - pos: 50.5,13.5 - parent: 2 - - uid: 2507 - components: - - type: Transform - pos: 49.5,13.5 - parent: 2 - - uid: 2508 - components: - - type: Transform - pos: 48.5,13.5 - parent: 2 - - uid: 2509 - components: - - type: Transform - pos: 52.5,14.5 - parent: 2 - - uid: 2510 - components: - - type: Transform - pos: 52.5,15.5 - parent: 2 - - uid: 2511 - components: - - type: Transform - pos: 52.5,16.5 - parent: 2 - - uid: 2512 - components: - - type: Transform - pos: 60.5,13.5 - parent: 2 - - uid: 2513 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 - - uid: 2514 - components: - - type: Transform - pos: 61.5,14.5 - parent: 2 - - uid: 2515 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 2516 - components: - - type: Transform - pos: 63.5,14.5 - parent: 2 - - uid: 2517 - components: - - type: Transform - pos: 64.5,14.5 - parent: 2 - - uid: 2518 - components: - - type: Transform - pos: 65.5,14.5 - parent: 2 - - uid: 2519 - components: - - type: Transform - pos: 68.5,14.5 - parent: 2 - - uid: 2520 - components: - - type: Transform - pos: 69.5,14.5 - parent: 2 - - uid: 2522 - components: - - type: Transform - pos: 65.5,13.5 - parent: 2 - - uid: 2523 - components: - - type: Transform - pos: 65.5,12.5 - parent: 2 - - uid: 2524 - components: - - type: Transform - pos: 65.5,11.5 - parent: 2 - - uid: 2525 - components: - - type: Transform - pos: 65.5,10.5 - parent: 2 - - uid: 2526 - components: - - type: Transform - pos: 65.5,9.5 - parent: 2 - - uid: 2529 - components: - - type: Transform - pos: 64.5,9.5 - parent: 2 - - uid: 2530 - components: - - type: Transform - pos: 63.5,9.5 - parent: 2 - - uid: 2531 - components: - - type: Transform - pos: 61.5,9.5 - parent: 2 - - uid: 2532 - components: - - type: Transform - pos: 62.5,9.5 - parent: 2 - - uid: 2534 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 2 - - uid: 2535 - components: - - type: Transform - pos: 61.5,15.5 - parent: 2 - - uid: 2536 - components: - - type: Transform - pos: 61.5,16.5 - parent: 2 - - uid: 2537 - components: - - type: Transform - pos: 61.5,17.5 - parent: 2 - - uid: 2538 - components: - - type: Transform - pos: 61.5,18.5 - parent: 2 - - uid: 2539 - components: - - type: Transform - pos: 60.5,18.5 - parent: 2 - - uid: 2540 - components: - - type: Transform - pos: 60.5,19.5 - parent: 2 - - uid: 2541 - components: - - type: Transform - pos: 56.5,14.5 - parent: 2 - - uid: 2543 - components: - - type: Transform - pos: 62.5,18.5 - parent: 2 - - uid: 2544 - components: - - type: Transform - pos: 62.5,19.5 - parent: 2 - - uid: 2546 - components: - - type: Transform - pos: 56.5,15.5 - parent: 2 - - uid: 2547 - components: - - type: Transform - pos: 56.5,16.5 - parent: 2 - - uid: 2548 - components: - - type: Transform - pos: 56.5,17.5 - parent: 2 - - uid: 2549 - components: - - type: Transform - pos: 56.5,18.5 - parent: 2 - - uid: 2550 - components: - - type: Transform - pos: 56.5,19.5 - parent: 2 - - uid: 2551 - components: - - type: Transform - pos: 56.5,20.5 - parent: 2 - - uid: 2552 - components: - - type: Transform - pos: 56.5,21.5 - parent: 2 - - uid: 2553 - components: - - type: Transform - pos: 55.5,21.5 - parent: 2 - - uid: 2554 - components: - - type: Transform - pos: 57.5,21.5 - parent: 2 - - uid: 2555 - components: - - type: Transform - pos: 46.5,3.5 - parent: 2 - - uid: 2556 - components: - - type: Transform - pos: 47.5,3.5 - parent: 2 - - uid: 2557 - components: - - type: Transform - pos: 47.5,4.5 - parent: 2 - - uid: 2558 - components: - - type: Transform - pos: 54.5,9.5 - parent: 2 - - uid: 2559 - components: - - type: Transform - pos: 54.5,8.5 - parent: 2 - - uid: 2560 - components: - - type: Transform - pos: 54.5,7.5 - parent: 2 - - uid: 2561 - components: - - type: Transform - pos: 54.5,6.5 - parent: 2 - - uid: 2562 - components: - - type: Transform - pos: 54.5,5.5 - parent: 2 - - uid: 2563 - components: - - type: Transform - pos: 54.5,4.5 - parent: 2 - - uid: 2564 - components: - - type: Transform - pos: 53.5,4.5 - parent: 2 - - uid: 2565 - components: - - type: Transform - pos: 52.5,4.5 - parent: 2 - - uid: 2566 - components: - - type: Transform - pos: 51.5,4.5 - parent: 2 - - uid: 2567 - components: - - type: Transform - pos: 50.5,4.5 - parent: 2 - - uid: 2568 - components: - - type: Transform - pos: 49.5,4.5 - parent: 2 - - uid: 2569 - components: - - type: Transform - pos: 51.5,3.5 - parent: 2 - - uid: 2570 - components: - - type: Transform - pos: 51.5,2.5 - parent: 2 - - uid: 2571 - components: - - type: Transform - pos: 51.5,1.5 - parent: 2 - - uid: 2572 - components: - - type: Transform - pos: 51.5,0.5 - parent: 2 - - uid: 2573 - components: - - type: Transform - pos: 51.5,-0.5 - parent: 2 - - uid: 2574 - components: - - type: Transform - pos: 51.5,-1.5 - parent: 2 - - uid: 2575 - components: - - type: Transform - pos: 51.5,-2.5 - parent: 2 - - uid: 2576 - components: - - type: Transform - pos: 51.5,-3.5 - parent: 2 - - uid: 2577 - components: - - type: Transform - pos: 51.5,-4.5 - parent: 2 - - uid: 2578 - components: - - type: Transform - pos: 51.5,-6.5 - parent: 2 - - uid: 2579 - components: - - type: Transform - pos: 55.5,5.5 - parent: 2 - - uid: 2580 - components: - - type: Transform - pos: 56.5,5.5 - parent: 2 - - uid: 2581 - components: - - type: Transform - pos: 57.5,5.5 - parent: 2 - - uid: 2582 - components: - - type: Transform - pos: 58.5,5.5 - parent: 2 - - uid: 2583 - components: - - type: Transform - pos: 59.5,5.5 - parent: 2 - - uid: 2584 - components: - - type: Transform - pos: 60.5,5.5 - parent: 2 - - uid: 2585 - components: - - type: Transform - pos: 61.5,5.5 - parent: 2 - - uid: 2586 - components: - - type: Transform - pos: 62.5,5.5 - parent: 2 - - uid: 2587 - components: - - type: Transform - pos: 63.5,5.5 - parent: 2 - - uid: 2588 - components: - - type: Transform - pos: 64.5,5.5 - parent: 2 - - uid: 2589 - components: - - type: Transform - pos: 65.5,5.5 - parent: 2 - - uid: 2590 - components: - - type: Transform - pos: 66.5,5.5 - parent: 2 - - uid: 2591 - components: - - type: Transform - pos: 49.5,9.5 - parent: 2 - - uid: 2592 - components: - - type: Transform - pos: 49.5,8.5 - parent: 2 - - uid: 2593 - components: - - type: Transform - pos: 52.5,9.5 - parent: 2 - - uid: 2594 - components: - - type: Transform - pos: 52.5,8.5 - parent: 2 - - uid: 2598 - components: - - type: Transform - pos: -20.5,2.5 - parent: 2 - - uid: 2599 - components: - - type: Transform - pos: -19.5,2.5 - parent: 2 - - uid: 2600 - components: - - type: Transform - pos: 29.5,-20.5 - parent: 2 - - uid: 2601 - components: - - type: Transform - pos: 47.5,13.5 - parent: 2 - - uid: 2602 - components: - - type: Transform - pos: 62.5,10.5 - parent: 2 - - uid: 2605 - components: - - type: Transform - pos: 79.5,-18.5 - parent: 2 - - uid: 2606 - components: - - type: Transform - pos: 47.5,19.5 - parent: 2 - - uid: 2607 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - - uid: 2608 - components: - - type: Transform - pos: 47.5,21.5 - parent: 2 - - uid: 2609 - components: - - type: Transform - pos: 47.5,23.5 - parent: 2 - - uid: 2610 - components: - - type: Transform - pos: 48.5,23.5 - parent: 2 - - uid: 2611 - components: - - type: Transform - pos: 46.5,23.5 - parent: 2 - - uid: 2612 - components: - - type: Transform - pos: 46.5,22.5 - parent: 2 - - uid: 2613 - components: - - type: Transform - pos: 46.5,21.5 - parent: 2 - - uid: 2614 - components: - - type: Transform - pos: 45.5,21.5 - parent: 2 - - uid: 2615 - components: - - type: Transform - pos: -11.5,-3.5 - parent: 2 - - uid: 2619 - components: - - type: Transform - pos: -66.5,16.5 - parent: 2 - - uid: 2621 - components: - - type: Transform - pos: 67.5,-78.5 - parent: 2 - - uid: 2622 - components: - - type: Transform - pos: -22.5,5.5 - parent: 2 - - uid: 2623 - components: - - type: Transform - pos: 67.5,14.5 - parent: 2 - - uid: 2624 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 2 - - uid: 2626 - components: - - type: Transform - pos: 77.5,14.5 - parent: 2 - - uid: 2656 - components: - - type: Transform - pos: -2.5,12.5 - parent: 2 - - uid: 2657 - components: - - type: Transform - pos: -1.5,12.5 - parent: 2 - - uid: 2658 - components: - - type: Transform - pos: -4.5,12.5 - parent: 2 - - uid: 2659 - components: - - type: Transform - pos: -5.5,12.5 - parent: 2 - - uid: 2660 - components: - - type: Transform - pos: -3.5,12.5 - parent: 2 - - uid: 2662 - components: - - type: Transform - pos: -8.5,12.5 - parent: 2 - - uid: 2663 - components: - - type: Transform - pos: -14.5,0.5 - parent: 2 - - uid: 2672 - components: - - type: Transform - pos: -19.5,24.5 - parent: 2 - - uid: 2684 - components: - - type: Transform - pos: -30.5,0.5 - parent: 2 - - uid: 2685 - components: - - type: Transform - pos: -29.5,0.5 - parent: 2 - - uid: 2686 - components: - - type: Transform - pos: -28.5,0.5 - parent: 2 - - uid: 2687 - components: - - type: Transform - pos: -27.5,0.5 - parent: 2 - - uid: 2688 - components: - - type: Transform - pos: -32.5,0.5 - parent: 2 - - uid: 2689 - components: - - type: Transform - pos: -33.5,0.5 - parent: 2 - - uid: 2690 - components: - - type: Transform - pos: -34.5,0.5 - parent: 2 - - uid: 2691 - components: - - type: Transform - pos: -35.5,0.5 - parent: 2 - - uid: 2692 - components: - - type: Transform - pos: -62.5,14.5 - parent: 2 - - uid: 2693 - components: - - type: Transform - pos: -60.5,14.5 - parent: 2 - - uid: 2694 - components: - - type: Transform - pos: -61.5,14.5 - parent: 2 - - uid: 2695 - components: - - type: Transform - pos: -58.5,8.5 - parent: 2 - - uid: 2696 - components: - - type: Transform - pos: -60.5,8.5 - parent: 2 - - uid: 2697 - components: - - type: Transform - pos: -61.5,8.5 - parent: 2 - - uid: 2698 - components: - - type: Transform - pos: -61.5,9.5 - parent: 2 - - uid: 2699 - components: - - type: Transform - pos: -61.5,10.5 - parent: 2 - - uid: 2700 - components: - - type: Transform - pos: -61.5,11.5 - parent: 2 - - uid: 2701 - components: - - type: Transform - pos: -61.5,12.5 - parent: 2 - - uid: 2702 - components: - - type: Transform - pos: -61.5,13.5 - parent: 2 - - uid: 2703 - components: - - type: Transform - pos: -46.5,12.5 - parent: 2 - - uid: 2704 - components: - - type: Transform - pos: -44.5,12.5 - parent: 2 - - uid: 2705 - components: - - type: Transform - pos: -40.5,11.5 - parent: 2 - - uid: 2706 - components: - - type: Transform - pos: -41.5,12.5 - parent: 2 - - uid: 2707 - components: - - type: Transform - pos: -43.5,12.5 - parent: 2 - - uid: 2708 - components: - - type: Transform - pos: -43.5,11.5 - parent: 2 - - uid: 2709 - components: - - type: Transform - pos: -42.5,10.5 - parent: 2 - - uid: 2710 - components: - - type: Transform - pos: -56.5,17.5 - parent: 2 - - uid: 2711 - components: - - type: Transform - pos: -59.5,8.5 - parent: 2 - - uid: 2712 - components: - - type: Transform - pos: -57.5,8.5 - parent: 2 - - uid: 2713 - components: - - type: Transform - pos: -57.5,11.5 - parent: 2 - - uid: 2714 - components: - - type: Transform - pos: -51.5,14.5 - parent: 2 - - uid: 2715 - components: - - type: Transform - pos: -46.5,20.5 - parent: 2 - - uid: 2716 - components: - - type: Transform - pos: -48.5,19.5 - parent: 2 - - uid: 2717 - components: - - type: Transform - pos: -49.5,19.5 - parent: 2 - - uid: 2718 - components: - - type: Transform - pos: -50.5,11.5 - parent: 2 - - uid: 2720 - components: - - type: Transform - pos: -43.5,6.5 - parent: 2 - - uid: 2721 - components: - - type: Transform - pos: -43.5,5.5 - parent: 2 - - uid: 2722 - components: - - type: Transform - pos: -43.5,4.5 - parent: 2 - - uid: 2723 - components: - - type: Transform - pos: -44.5,4.5 - parent: 2 - - uid: 2724 - components: - - type: Transform - pos: -45.5,1.5 - parent: 2 - - uid: 2725 - components: - - type: Transform - pos: -45.5,2.5 - parent: 2 - - uid: 2726 - components: - - type: Transform - pos: -45.5,4.5 - parent: 2 - - uid: 2727 - components: - - type: Transform - pos: -44.5,0.5 - parent: 2 - - uid: 2728 - components: - - type: Transform - pos: -45.5,0.5 - parent: 2 - - uid: 2729 - components: - - type: Transform - pos: -46.5,0.5 - parent: 2 - - uid: 2730 - components: - - type: Transform - pos: -45.5,3.5 - parent: 2 - - uid: 2731 - components: - - type: Transform - pos: -42.5,4.5 - parent: 2 - - uid: 2732 - components: - - type: Transform - pos: -41.5,4.5 - parent: 2 - - uid: 2733 - components: - - type: Transform - pos: -40.5,4.5 - parent: 2 - - uid: 2734 - components: - - type: Transform - pos: -39.5,4.5 - parent: 2 - - uid: 2735 - components: - - type: Transform - pos: -38.5,4.5 - parent: 2 - - uid: 2736 - components: - - type: Transform - pos: -38.5,3.5 - parent: 2 - - uid: 2737 - components: - - type: Transform - pos: -38.5,2.5 - parent: 2 - - uid: 2738 - components: - - type: Transform - pos: -38.5,1.5 - parent: 2 - - uid: 2739 - components: - - type: Transform - pos: -38.5,0.5 - parent: 2 - - uid: 2740 - components: - - type: Transform - pos: -39.5,0.5 - parent: 2 - - uid: 2741 - components: - - type: Transform - pos: -37.5,0.5 - parent: 2 - - uid: 2742 - components: - - type: Transform - pos: 15.5,38.5 - parent: 2 - - uid: 2743 - components: - - type: Transform - pos: 15.5,36.5 - parent: 2 - - uid: 2744 - components: - - type: Transform - pos: -41.5,3.5 - parent: 2 - - uid: 2745 - components: - - type: Transform - pos: -41.5,2.5 - parent: 2 - - uid: 2746 - components: - - type: Transform - pos: -57.5,6.5 - parent: 2 - - uid: 2747 - components: - - type: Transform - pos: -57.5,5.5 - parent: 2 - - uid: 2748 - components: - - type: Transform - pos: -57.5,4.5 - parent: 2 - - uid: 2749 - components: - - type: Transform - pos: -57.5,3.5 - parent: 2 - - uid: 2750 - components: - - type: Transform - pos: -57.5,2.5 - parent: 2 - - uid: 2751 - components: - - type: Transform - pos: -58.5,2.5 - parent: 2 - - uid: 2752 - components: - - type: Transform - pos: -59.5,2.5 - parent: 2 - - uid: 2753 - components: - - type: Transform - pos: -58.5,4.5 - parent: 2 - - uid: 2754 - components: - - type: Transform - pos: -59.5,4.5 - parent: 2 - - uid: 2755 - components: - - type: Transform - pos: -60.5,4.5 - parent: 2 - - uid: 2756 - components: - - type: Transform - pos: -52.5,10.5 - parent: 2 - - uid: 2757 - components: - - type: Transform - pos: -58.5,16.5 - parent: 2 - - uid: 2758 - components: - - type: Transform - pos: -66.5,17.5 - parent: 2 - - uid: 2759 - components: - - type: Transform - pos: -51.5,-1.5 - parent: 2 - - uid: 2760 - components: - - type: Transform - pos: -66.5,18.5 - parent: 2 - - uid: 2761 - components: - - type: Transform - pos: -67.5,17.5 - parent: 2 - - uid: 2763 - components: - - type: Transform - pos: -66.5,14.5 - parent: 2 - - uid: 2764 - components: - - type: Transform - pos: -66.5,13.5 - parent: 2 - - uid: 2765 - components: - - type: Transform - pos: -66.5,12.5 - parent: 2 - - uid: 2766 - components: - - type: Transform - pos: -66.5,11.5 - parent: 2 - - uid: 2767 - components: - - type: Transform - pos: -67.5,11.5 - parent: 2 - - uid: 2768 - components: - - type: Transform - pos: -67.5,13.5 - parent: 2 - - uid: 2772 - components: - - type: Transform - pos: -65.5,14.5 - parent: 2 - - uid: 2773 - components: - - type: Transform - pos: -64.5,9.5 - parent: 2 - - uid: 2774 - components: - - type: Transform - pos: -65.5,9.5 - parent: 2 - - uid: 2775 - components: - - type: Transform - pos: -66.5,9.5 - parent: 2 - - uid: 2776 - components: - - type: Transform - pos: -67.5,9.5 - parent: 2 - - uid: 2777 - components: - - type: Transform - pos: -68.5,9.5 - parent: 2 - - uid: 2778 - components: - - type: Transform - pos: -69.5,9.5 - parent: 2 - - uid: 2779 - components: - - type: Transform - pos: -70.5,9.5 - parent: 2 - - uid: 2780 - components: - - type: Transform - pos: -71.5,9.5 - parent: 2 - - uid: 2781 - components: - - type: Transform - pos: -72.5,9.5 - parent: 2 - - uid: 2782 - components: - - type: Transform - pos: -73.5,9.5 - parent: 2 - - uid: 2783 - components: - - type: Transform - pos: -74.5,9.5 - parent: 2 - - uid: 2784 - components: - - type: Transform - pos: -75.5,9.5 - parent: 2 - - uid: 2785 - components: - - type: Transform - pos: -76.5,9.5 - parent: 2 - - uid: 2786 - components: - - type: Transform - pos: -77.5,9.5 - parent: 2 - - uid: 2787 - components: - - type: Transform - pos: -79.5,-4.5 - parent: 2 - - uid: 2788 - components: - - type: Transform - pos: -75.5,8.5 - parent: 2 - - uid: 2789 - components: - - type: Transform - pos: -69.5,8.5 - parent: 2 - - uid: 2790 - components: - - type: Transform - pos: -63.5,8.5 - parent: 2 - - uid: 2791 - components: - - type: Transform - pos: -63.5,7.5 - parent: 2 - - uid: 2792 - components: - - type: Transform - pos: -63.5,6.5 - parent: 2 - - uid: 2793 - components: - - type: Transform - pos: -63.5,5.5 - parent: 2 - - uid: 2794 - components: - - type: Transform - pos: -63.5,4.5 - parent: 2 - - uid: 2795 - components: - - type: Transform - pos: -63.5,3.5 - parent: 2 - - uid: 2796 - components: - - type: Transform - pos: -63.5,2.5 - parent: 2 - - uid: 2797 - components: - - type: Transform - pos: -63.5,1.5 - parent: 2 - - uid: 2798 - components: - - type: Transform - pos: -63.5,0.5 - parent: 2 - - uid: 2799 - components: - - type: Transform - pos: -63.5,-1.5 - parent: 2 - - uid: 2800 - components: - - type: Transform - pos: -63.5,-0.5 - parent: 2 - - uid: 2801 - components: - - type: Transform - pos: -63.5,-2.5 - parent: 2 - - uid: 2802 - components: - - type: Transform - pos: -63.5,-4.5 - parent: 2 - - uid: 2803 - components: - - type: Transform - pos: -63.5,-5.5 - parent: 2 - - uid: 2804 - components: - - type: Transform - pos: -63.5,-6.5 - parent: 2 - - uid: 2805 - components: - - type: Transform - pos: -63.5,-7.5 - parent: 2 - - uid: 2806 - components: - - type: Transform - pos: -63.5,-8.5 - parent: 2 - - uid: 2807 - components: - - type: Transform - pos: -63.5,-9.5 - parent: 2 - - uid: 2808 - components: - - type: Transform - pos: -63.5,-10.5 - parent: 2 - - uid: 2809 - components: - - type: Transform - pos: -63.5,-11.5 - parent: 2 - - uid: 2810 - components: - - type: Transform - pos: -63.5,-12.5 - parent: 2 - - uid: 2811 - components: - - type: Transform - pos: -63.5,-13.5 - parent: 2 - - uid: 2812 - components: - - type: Transform - pos: -63.5,-14.5 - parent: 2 - - uid: 2813 - components: - - type: Transform - pos: -64.5,-14.5 - parent: 2 - - uid: 2814 - components: - - type: Transform - pos: -65.5,-14.5 - parent: 2 - - uid: 2815 - components: - - type: Transform - pos: -66.5,-14.5 - parent: 2 - - uid: 2816 - components: - - type: Transform - pos: -67.5,-14.5 - parent: 2 - - uid: 2817 - components: - - type: Transform - pos: -68.5,-14.5 - parent: 2 - - uid: 2818 - components: - - type: Transform - pos: -69.5,-14.5 - parent: 2 - - uid: 2819 - components: - - type: Transform - pos: -70.5,-14.5 - parent: 2 - - uid: 2820 - components: - - type: Transform - pos: -71.5,-14.5 - parent: 2 - - uid: 2821 - components: - - type: Transform - pos: -72.5,-14.5 - parent: 2 - - uid: 2822 - components: - - type: Transform - pos: -76.5,-14.5 - parent: 2 - - uid: 2823 - components: - - type: Transform - pos: -75.5,-16.5 - parent: 2 - - uid: 2825 - components: - - type: Transform - pos: -72.5,-15.5 - parent: 2 - - uid: 2826 - components: - - type: Transform - pos: -72.5,-16.5 - parent: 2 - - uid: 2827 - components: - - type: Transform - pos: -72.5,-17.5 - parent: 2 - - uid: 2828 - components: - - type: Transform - pos: -73.5,-17.5 - parent: 2 - - uid: 2829 - components: - - type: Transform - pos: -71.5,-17.5 - parent: 2 - - uid: 2830 - components: - - type: Transform - pos: -70.5,-17.5 - parent: 2 - - uid: 2831 - components: - - type: Transform - pos: -67.5,-15.5 - parent: 2 - - uid: 2832 - components: - - type: Transform - pos: -67.5,-16.5 - parent: 2 - - uid: 2833 - components: - - type: Transform - pos: -67.5,-17.5 - parent: 2 - - uid: 2834 - components: - - type: Transform - pos: -66.5,-16.5 - parent: 2 - - uid: 2835 - components: - - type: Transform - pos: -64.5,-10.5 - parent: 2 - - uid: 2836 - components: - - type: Transform - pos: -65.5,-10.5 - parent: 2 - - uid: 2837 - components: - - type: Transform - pos: -66.5,-10.5 - parent: 2 - - uid: 2838 - components: - - type: Transform - pos: -67.5,-10.5 - parent: 2 - - uid: 2839 - components: - - type: Transform - pos: -66.5,-11.5 - parent: 2 - - uid: 2840 - components: - - type: Transform - pos: -62.5,-0.5 - parent: 2 - - uid: 2841 - components: - - type: Transform - pos: -62.5,-1.5 - parent: 2 - - uid: 2842 - components: - - type: Transform - pos: -62.5,-2.5 - parent: 2 - - uid: 2843 - components: - - type: Transform - pos: -62.5,-3.5 - parent: 2 - - uid: 2844 - components: - - type: Transform - pos: -63.5,-3.5 - parent: 2 - - uid: 2845 - components: - - type: Transform - pos: -65.5,2.5 - parent: 2 - - uid: 2846 - components: - - type: Transform - pos: -65.5,3.5 - parent: 2 - - uid: 2847 - components: - - type: Transform - pos: -65.5,4.5 - parent: 2 - - uid: 2848 - components: - - type: Transform - pos: -65.5,1.5 - parent: 2 - - uid: 2849 - components: - - type: Transform - pos: -65.5,0.5 - parent: 2 - - uid: 2850 - components: - - type: Transform - pos: -73.5,-14.5 - parent: 2 - - uid: 2851 - components: - - type: Transform - pos: -72.5,-12.5 - parent: 2 - - uid: 2852 - components: - - type: Transform - pos: -74.5,-12.5 - parent: 2 - - uid: 2853 - components: - - type: Transform - pos: -75.5,-12.5 - parent: 2 - - uid: 2854 - components: - - type: Transform - pos: -71.5,-12.5 - parent: 2 - - uid: 2855 - components: - - type: Transform - pos: -70.5,-12.5 - parent: 2 - - uid: 2856 - components: - - type: Transform - pos: -69.5,-12.5 - parent: 2 - - uid: 2857 - components: - - type: Transform - pos: -68.5,-12.5 - parent: 2 - - uid: 2858 - components: - - type: Transform - pos: -73.5,-12.5 - parent: 2 - - uid: 2859 - components: - - type: Transform - pos: -62.5,-4.5 - parent: 2 - - uid: 2860 - components: - - type: Transform - pos: -61.5,-4.5 - parent: 2 - - uid: 2861 - components: - - type: Transform - pos: -60.5,-4.5 - parent: 2 - - uid: 2862 - components: - - type: Transform - pos: -59.5,-4.5 - parent: 2 - - uid: 2863 - components: - - type: Transform - pos: -58.5,-4.5 - parent: 2 - - uid: 2864 - components: - - type: Transform - pos: -57.5,-4.5 - parent: 2 - - uid: 2865 - components: - - type: Transform - pos: -56.5,-4.5 - parent: 2 - - uid: 2866 - components: - - type: Transform - pos: -55.5,-4.5 - parent: 2 - - uid: 2867 - components: - - type: Transform - pos: -54.5,-4.5 - parent: 2 - - uid: 2868 - components: - - type: Transform - pos: -54.5,-3.5 - parent: 2 - - uid: 2869 - components: - - type: Transform - pos: -54.5,-2.5 - parent: 2 - - uid: 2870 - components: - - type: Transform - pos: -54.5,-1.5 - parent: 2 - - uid: 2871 - components: - - type: Transform - pos: -54.5,-0.5 - parent: 2 - - uid: 2872 - components: - - type: Transform - pos: -54.5,0.5 - parent: 2 - - uid: 2873 - components: - - type: Transform - pos: -55.5,0.5 - parent: 2 - - uid: 2874 - components: - - type: Transform - pos: -56.5,0.5 - parent: 2 - - uid: 2875 - components: - - type: Transform - pos: -57.5,0.5 - parent: 2 - - uid: 2876 - components: - - type: Transform - pos: -58.5,0.5 - parent: 2 - - uid: 2877 - components: - - type: Transform - pos: -59.5,0.5 - parent: 2 - - uid: 2878 - components: - - type: Transform - pos: -60.5,0.5 - parent: 2 - - uid: 2879 - components: - - type: Transform - pos: -61.5,0.5 - parent: 2 - - uid: 2880 - components: - - type: Transform - pos: -62.5,0.5 - parent: 2 - - uid: 2881 - components: - - type: Transform - pos: -64.5,-4.5 - parent: 2 - - uid: 2882 - components: - - type: Transform - pos: -65.5,-4.5 - parent: 2 - - uid: 2883 - components: - - type: Transform - pos: -66.5,-4.5 - parent: 2 - - uid: 2884 - components: - - type: Transform - pos: -67.5,-4.5 - parent: 2 - - uid: 2885 - components: - - type: Transform - pos: -68.5,-4.5 - parent: 2 - - uid: 2886 - components: - - type: Transform - pos: -69.5,-4.5 - parent: 2 - - uid: 2887 - components: - - type: Transform - pos: -70.5,-4.5 - parent: 2 - - uid: 2888 - components: - - type: Transform - pos: -71.5,-4.5 - parent: 2 - - uid: 2889 - components: - - type: Transform - pos: -72.5,-4.5 - parent: 2 - - uid: 2890 - components: - - type: Transform - pos: -73.5,-4.5 - parent: 2 - - uid: 2891 - components: - - type: Transform - pos: -74.5,-4.5 - parent: 2 - - uid: 2892 - components: - - type: Transform - pos: -75.5,-4.5 - parent: 2 - - uid: 2893 - components: - - type: Transform - pos: -76.5,-4.5 - parent: 2 - - uid: 2894 - components: - - type: Transform - pos: -74.5,-3.5 - parent: 2 - - uid: 2895 - components: - - type: Transform - pos: -30.5,-29.5 - parent: 2 - - uid: 2896 - components: - - type: Transform - pos: -74.5,-5.5 - parent: 2 - - uid: 2897 - components: - - type: Transform - pos: -74.5,-6.5 - parent: 2 - - uid: 2898 - components: - - type: Transform - pos: -75.5,-6.5 - parent: 2 - - uid: 2899 - components: - - type: Transform - pos: -73.5,-6.5 - parent: 2 - - uid: 2900 - components: - - type: Transform - pos: -72.5,-6.5 - parent: 2 - - uid: 2901 - components: - - type: Transform - pos: -71.5,-6.5 - parent: 2 - - uid: 2902 - components: - - type: Transform - pos: -70.5,-6.5 - parent: 2 - - uid: 2903 - components: - - type: Transform - pos: -69.5,-6.5 - parent: 2 - - uid: 2904 - components: - - type: Transform - pos: -68.5,-6.5 - parent: 2 - - uid: 2905 - components: - - type: Transform - pos: -69.5,-5.5 - parent: 2 - - uid: 2906 - components: - - type: Transform - pos: 51.5,-9.5 - parent: 2 - - uid: 2907 - components: - - type: Transform - pos: 51.5,-10.5 - parent: 2 - - uid: 2909 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 2 - - uid: 2910 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 2 - - uid: 2911 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - uid: 2912 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 2 - - uid: 2913 - components: - - type: Transform - pos: -63.5,9.5 - parent: 2 - - uid: 2914 - components: - - type: Transform - pos: -74.5,-14.5 - parent: 2 - - uid: 2915 - components: - - type: Transform - pos: -75.5,-14.5 - parent: 2 - - uid: 2916 - components: - - type: Transform - pos: -76.5,-13.5 - parent: 2 - - uid: 2918 - components: - - type: Transform - pos: -47.5,-1.5 - parent: 2 - - uid: 2919 - components: - - type: Transform - pos: -46.5,-1.5 - parent: 2 - - uid: 2920 - components: - - type: Transform - pos: -45.5,-1.5 - parent: 2 - - uid: 2921 - components: - - type: Transform - pos: -44.5,-1.5 - parent: 2 - - uid: 2922 - components: - - type: Transform - pos: -43.5,-1.5 - parent: 2 - - uid: 2923 - components: - - type: Transform - pos: -42.5,-1.5 - parent: 2 - - uid: 2924 - components: - - type: Transform - pos: -41.5,-1.5 - parent: 2 - - uid: 2925 - components: - - type: Transform - pos: -40.5,-1.5 - parent: 2 - - uid: 2926 - components: - - type: Transform - pos: -39.5,-1.5 - parent: 2 - - uid: 2927 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 2 - - uid: 2928 - components: - - type: Transform - pos: -37.5,-1.5 - parent: 2 - - uid: 2929 - components: - - type: Transform - pos: -36.5,-1.5 - parent: 2 - - uid: 2930 - components: - - type: Transform - pos: -35.5,-1.5 - parent: 2 - - uid: 2931 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 2 - - uid: 2932 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 2 - - uid: 2933 - components: - - type: Transform - pos: -32.5,-1.5 - parent: 2 - - uid: 2934 - components: - - type: Transform - pos: -31.5,-1.5 - parent: 2 - - uid: 2935 - components: - - type: Transform - pos: -30.5,-1.5 - parent: 2 - - uid: 2936 - components: - - type: Transform - pos: -29.5,-1.5 - parent: 2 - - uid: 2937 - components: - - type: Transform - pos: -24.5,-1.5 - parent: 2 - - uid: 2938 - components: - - type: Transform - pos: -25.5,-1.5 - parent: 2 - - uid: 2939 - components: - - type: Transform - pos: -26.5,-1.5 - parent: 2 - - uid: 2940 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 2 - - uid: 2941 - components: - - type: Transform - pos: -28.5,-1.5 - parent: 2 - - uid: 2942 - components: - - type: Transform - pos: -23.5,-1.5 - parent: 2 - - uid: 2943 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 2 - - uid: 2944 - components: - - type: Transform - pos: -22.5,-1.5 - parent: 2 - - uid: 2945 - components: - - type: Transform - pos: -20.5,-1.5 - parent: 2 - - uid: 2946 - components: - - type: Transform - pos: 5.5,20.5 - parent: 2 - - uid: 2947 - components: - - type: Transform - pos: 6.5,20.5 - parent: 2 - - uid: 2948 - components: - - type: Transform - pos: 7.5,20.5 - parent: 2 - - uid: 2949 - components: - - type: Transform - pos: 8.5,20.5 - parent: 2 - - uid: 2950 - components: - - type: Transform - pos: 9.5,20.5 - parent: 2 - - uid: 2951 - components: - - type: Transform - pos: 4.5,20.5 - parent: 2 - - uid: 2952 - components: - - type: Transform - pos: 3.5,20.5 - parent: 2 - - uid: 2953 - components: - - type: Transform - pos: 2.5,20.5 - parent: 2 - - uid: 2954 - components: - - type: Transform - pos: 1.5,20.5 - parent: 2 - - uid: 2955 - components: - - type: Transform - pos: 0.5,20.5 - parent: 2 - - uid: 2956 - components: - - type: Transform - pos: -0.5,20.5 - parent: 2 - - uid: 2957 - components: - - type: Transform - pos: -1.5,20.5 - parent: 2 - - uid: 2958 - components: - - type: Transform - pos: -2.5,20.5 - parent: 2 - - uid: 2959 - components: - - type: Transform - pos: -3.5,20.5 - parent: 2 - - uid: 2960 - components: - - type: Transform - pos: -4.5,20.5 - parent: 2 - - uid: 2961 - components: - - type: Transform - pos: -5.5,20.5 - parent: 2 - - uid: 2962 - components: - - type: Transform - pos: -6.5,20.5 - parent: 2 - - uid: 2963 - components: - - type: Transform - pos: -7.5,20.5 - parent: 2 - - uid: 2964 - components: - - type: Transform - pos: -8.5,20.5 - parent: 2 - - uid: 2965 - components: - - type: Transform - pos: -9.5,20.5 - parent: 2 - - uid: 2966 - components: - - type: Transform - pos: -10.5,20.5 - parent: 2 - - uid: 2967 - components: - - type: Transform - pos: -11.5,20.5 - parent: 2 - - uid: 2968 - components: - - type: Transform - pos: -12.5,20.5 - parent: 2 - - uid: 2969 - components: - - type: Transform - pos: -13.5,20.5 - parent: 2 - - uid: 2970 - components: - - type: Transform - pos: -14.5,20.5 - parent: 2 - - uid: 2971 - components: - - type: Transform - pos: -0.5,19.5 - parent: 2 - - uid: 2972 - components: - - type: Transform - pos: -0.5,18.5 - parent: 2 - - uid: 2973 - components: - - type: Transform - pos: -0.5,17.5 - parent: 2 - - uid: 2974 - components: - - type: Transform - pos: -0.5,16.5 - parent: 2 - - uid: 2975 - components: - - type: Transform - pos: -0.5,15.5 - parent: 2 - - uid: 2976 - components: - - type: Transform - pos: -0.5,14.5 - parent: 2 - - uid: 2977 - components: - - type: Transform - pos: -0.5,13.5 - parent: 2 - - uid: 2978 - components: - - type: Transform - pos: -0.5,12.5 - parent: 2 - - uid: 2979 - components: - - type: Transform - pos: -0.5,11.5 - parent: 2 - - uid: 2980 - components: - - type: Transform - pos: -0.5,10.5 - parent: 2 - - uid: 2981 - components: - - type: Transform - pos: -0.5,9.5 - parent: 2 - - uid: 2982 - components: - - type: Transform - pos: -0.5,8.5 - parent: 2 - - uid: 2983 - components: - - type: Transform - pos: -0.5,7.5 - parent: 2 - - uid: 2986 - components: - - type: Transform - pos: -0.5,4.5 - parent: 2 - - uid: 2988 - components: - - type: Transform - pos: 76.5,-13.5 - parent: 2 - - uid: 2989 - components: - - type: Transform - pos: 51.5,-7.5 - parent: 2 - - uid: 2990 - components: - - type: Transform - pos: 51.5,-8.5 - parent: 2 - - uid: 2991 - components: - - type: Transform - pos: 51.5,-5.5 - parent: 2 - - uid: 2992 - components: - - type: Transform - pos: 72.5,-13.5 - parent: 2 - - uid: 2993 - components: - - type: Transform - pos: 71.5,-13.5 - parent: 2 - - uid: 2994 - components: - - type: Transform - pos: 70.5,-13.5 - parent: 2 - - uid: 2995 - components: - - type: Transform - pos: 69.5,-13.5 - parent: 2 - - uid: 2996 - components: - - type: Transform - pos: 68.5,-13.5 - parent: 2 - - uid: 2997 - components: - - type: Transform - pos: 67.5,-13.5 - parent: 2 - - uid: 2998 - components: - - type: Transform - pos: 66.5,-13.5 - parent: 2 - - uid: 2999 - components: - - type: Transform - pos: 65.5,-13.5 - parent: 2 - - uid: 3000 - components: - - type: Transform - pos: 64.5,-13.5 - parent: 2 - - uid: 3001 - components: - - type: Transform - pos: 63.5,-13.5 - parent: 2 - - uid: 3002 - components: - - type: Transform - pos: 62.5,-13.5 - parent: 2 - - uid: 3003 - components: - - type: Transform - pos: 61.5,-13.5 - parent: 2 - - uid: 3004 - components: - - type: Transform - pos: 60.5,-13.5 - parent: 2 - - uid: 3005 - components: - - type: Transform - pos: 59.5,-13.5 - parent: 2 - - uid: 3006 - components: - - type: Transform - pos: 58.5,-13.5 - parent: 2 - - uid: 3007 - components: - - type: Transform - pos: 57.5,-13.5 - parent: 2 - - uid: 3008 - components: - - type: Transform - pos: 56.5,-13.5 - parent: 2 - - uid: 3009 - components: - - type: Transform - pos: 55.5,-13.5 - parent: 2 - - uid: 3010 - components: - - type: Transform - pos: 54.5,-13.5 - parent: 2 - - uid: 3011 - components: - - type: Transform - pos: 53.5,-13.5 - parent: 2 - - uid: 3012 - components: - - type: Transform - pos: 52.5,-13.5 - parent: 2 - - uid: 3013 - components: - - type: Transform - pos: 51.5,-13.5 - parent: 2 - - uid: 3014 - components: - - type: Transform - pos: 50.5,-13.5 - parent: 2 - - uid: 3015 - components: - - type: Transform - pos: 49.5,-13.5 - parent: 2 - - uid: 3016 - components: - - type: Transform - pos: 48.5,-13.5 - parent: 2 - - uid: 3017 - components: - - type: Transform - pos: 47.5,-13.5 - parent: 2 - - uid: 3018 - components: - - type: Transform - pos: 46.5,-13.5 - parent: 2 - - uid: 3019 - components: - - type: Transform - pos: 45.5,-13.5 - parent: 2 - - uid: 3020 - components: - - type: Transform - pos: 44.5,-13.5 - parent: 2 - - uid: 3021 - components: - - type: Transform - pos: 43.5,-13.5 - parent: 2 - - uid: 3022 - components: - - type: Transform - pos: 42.5,-13.5 - parent: 2 - - uid: 3023 - components: - - type: Transform - pos: 41.5,-13.5 - parent: 2 - - uid: 3024 - components: - - type: Transform - pos: 40.5,-13.5 - parent: 2 - - uid: 3025 - components: - - type: Transform - pos: 39.5,-13.5 - parent: 2 - - uid: 3026 - components: - - type: Transform - pos: 38.5,-13.5 - parent: 2 - - uid: 3027 - components: - - type: Transform - pos: 37.5,-13.5 - parent: 2 - - uid: 3028 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 2 - - uid: 3029 - components: - - type: Transform - pos: 35.5,-13.5 - parent: 2 - - uid: 3030 - components: - - type: Transform - pos: 34.5,-13.5 - parent: 2 - - uid: 3031 - components: - - type: Transform - pos: 33.5,-13.5 - parent: 2 - - uid: 3032 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 2 - - uid: 3033 - components: - - type: Transform - pos: 31.5,-13.5 - parent: 2 - - uid: 3034 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 2 - - uid: 3035 - components: - - type: Transform - pos: 29.5,-13.5 - parent: 2 - - uid: 3036 - components: - - type: Transform - pos: 28.5,-13.5 - parent: 2 - - uid: 3037 - components: - - type: Transform - pos: 27.5,-13.5 - parent: 2 - - uid: 3038 - components: - - type: Transform - pos: 26.5,-13.5 - parent: 2 - - uid: 3039 - components: - - type: Transform - pos: 25.5,-13.5 - parent: 2 - - uid: 3040 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 2 - - uid: 3041 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 2 - - uid: 3042 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 2 - - uid: 3043 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 2 - - uid: 3044 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 2 - - uid: 3045 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 2 - - uid: 3046 - components: - - type: Transform - pos: 51.5,-12.5 - parent: 2 - - uid: 3047 - components: - - type: Transform - pos: 51.5,-11.5 - parent: 2 - - uid: 3051 - components: - - type: Transform - pos: 52.5,-38.5 - parent: 2 - - uid: 3060 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 2 - - uid: 3061 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 2 - - uid: 3062 - components: - - type: Transform - pos: -16.5,-18.5 - parent: 2 - - uid: 3063 - components: - - type: Transform - pos: -16.5,-17.5 - parent: 2 - - uid: 3064 - components: - - type: Transform - pos: -16.5,-16.5 - parent: 2 - - uid: 3065 - components: - - type: Transform - pos: -16.5,-15.5 - parent: 2 - - uid: 3066 - components: - - type: Transform - pos: -16.5,-14.5 - parent: 2 - - uid: 3067 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 2 - - uid: 3068 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 2 - - uid: 3069 - components: - - type: Transform - pos: -16.5,-11.5 - parent: 2 - - uid: 3070 - components: - - type: Transform - pos: -16.5,-10.5 - parent: 2 - - uid: 3071 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 2 - - uid: 3072 - components: - - type: Transform - pos: -16.5,-8.5 - parent: 2 - - uid: 3073 - components: - - type: Transform - pos: -16.5,-7.5 - parent: 2 - - uid: 3074 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 2 - - uid: 3075 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 2 - - uid: 3076 - components: - - type: Transform - pos: -16.5,-4.5 - parent: 2 - - uid: 3077 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 2 - - uid: 3078 - components: - - type: Transform - pos: -16.5,-2.5 - parent: 2 - - uid: 3079 - components: - - type: Transform - pos: -16.5,-1.5 - parent: 2 - - uid: 3080 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 2 - - uid: 3081 - components: - - type: Transform - pos: -14.5,-1.5 - parent: 2 - - uid: 3082 - components: - - type: Transform - pos: -13.5,-1.5 - parent: 2 - - uid: 3083 - components: - - type: Transform - pos: -12.5,-1.5 - parent: 2 - - uid: 3084 - components: - - type: Transform - pos: -11.5,-1.5 - parent: 2 - - uid: 3085 - components: - - type: Transform - pos: -10.5,-1.5 - parent: 2 - - uid: 3086 - components: - - type: Transform - pos: -9.5,-1.5 - parent: 2 - - uid: 3087 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 2 - - uid: 3088 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 2 - - uid: 3089 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 2 - - uid: 3090 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 2 - - uid: 3091 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 2 - - uid: 3092 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 2 - - uid: 3093 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 2 - - uid: 3094 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 2 - - uid: 3095 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 - - uid: 3096 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 2 - - uid: 3097 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 2 - - uid: 3098 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 2 - - uid: 3099 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 2 - - uid: 3100 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 2 - - uid: 3101 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 2 - - uid: 3102 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 2 - - uid: 3103 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 2 - - uid: 3104 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 2 - - uid: 3105 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 2 - - uid: 3106 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 2 - - uid: 3107 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 2 - - uid: 3108 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 2 - - uid: 3109 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 2 - - uid: 3110 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 2 - - uid: 3111 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 2 - - uid: 3112 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 2 - - uid: 3113 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 2 - - uid: 3114 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 2 - - uid: 3115 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 2 - - uid: 3116 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 2 - - uid: 3117 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 2 - - uid: 3118 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 2 - - uid: 3119 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 2 - - uid: 3120 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 2 - - uid: 3121 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - uid: 3122 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 2 - - uid: 3123 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 2 - - uid: 3124 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 2 - - uid: 3125 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 2 - - uid: 3126 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 2 - - uid: 3127 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 2 - - uid: 3128 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 2 - - uid: 3129 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 2 - - uid: 3130 - components: - - type: Transform - pos: 15.5,-20.5 - parent: 2 - - uid: 3131 - components: - - type: Transform - pos: 15.5,-21.5 - parent: 2 - - uid: 3132 - components: - - type: Transform - pos: 15.5,-22.5 - parent: 2 - - uid: 3133 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 2 - - uid: 3134 - components: - - type: Transform - pos: 15.5,-24.5 - parent: 2 - - uid: 3135 - components: - - type: Transform - pos: 15.5,-25.5 - parent: 2 - - uid: 3136 - components: - - type: Transform - pos: 15.5,-26.5 - parent: 2 - - uid: 3137 - components: - - type: Transform - pos: 15.5,-27.5 - parent: 2 - - uid: 3138 - components: - - type: Transform - pos: 15.5,-28.5 - parent: 2 - - uid: 3139 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 2 - - uid: 3140 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 2 - - uid: 3141 - components: - - type: Transform - pos: 14.5,-30.5 - parent: 2 - - uid: 3142 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 2 - - uid: 3143 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 2 - - uid: 3144 - components: - - type: Transform - pos: 11.5,-30.5 - parent: 2 - - uid: 3145 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 2 - - uid: 3146 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 2 - - uid: 3147 - components: - - type: Transform - pos: 8.5,-30.5 - parent: 2 - - uid: 3148 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 2 - - uid: 3149 - components: - - type: Transform - pos: 6.5,-30.5 - parent: 2 - - uid: 3150 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 2 - - uid: 3151 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 2 - - uid: 3152 - components: - - type: Transform - pos: 3.5,-30.5 - parent: 2 - - uid: 3153 - components: - - type: Transform - pos: 2.5,-30.5 - parent: 2 - - uid: 3154 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 2 - - uid: 3155 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 2 - - uid: 3156 - components: - - type: Transform - pos: -0.5,-30.5 - parent: 2 - - uid: 3157 - components: - - type: Transform - pos: -1.5,-30.5 - parent: 2 - - uid: 3158 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 2 - - uid: 3159 - components: - - type: Transform - pos: -3.5,-30.5 - parent: 2 - - uid: 3160 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 2 - - uid: 3161 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 2 - - uid: 3162 - components: - - type: Transform - pos: -6.5,-30.5 - parent: 2 - - uid: 3163 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 2 - - uid: 3164 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 2 - - uid: 3165 - components: - - type: Transform - pos: -9.5,-30.5 - parent: 2 - - uid: 3166 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 2 - - uid: 3167 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 2 - - uid: 3168 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 2 - - uid: 3169 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 2 - - uid: 3170 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 2 - - uid: 3171 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 2 - - uid: 3172 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 2 - - uid: 3173 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 2 - - uid: 3174 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 2 - - uid: 3175 - components: - - type: Transform - pos: -16.5,-27.5 - parent: 2 - - uid: 3176 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 2 - - uid: 3177 - components: - - type: Transform - pos: -16.5,-25.5 - parent: 2 - - uid: 3178 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 2 - - uid: 3179 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 2 - - uid: 3180 - components: - - type: Transform - pos: -16.5,-22.5 - parent: 2 - - uid: 3181 - components: - - type: Transform - pos: -16.5,-21.5 - parent: 2 - - uid: 3182 - components: - - type: Transform - pos: -16.5,-20.5 - parent: 2 - - uid: 3183 - components: - - type: Transform - pos: -16.5,-19.5 - parent: 2 - - uid: 3186 - components: - - type: Transform - pos: -10.5,12.5 - parent: 2 - - uid: 3187 - components: - - type: Transform - pos: -11.5,12.5 - parent: 2 - - uid: 3188 - components: - - type: Transform - pos: -12.5,12.5 - parent: 2 - - uid: 3196 - components: - - type: Transform - pos: -15.5,-8.5 - parent: 2 - - uid: 3197 - components: - - type: Transform - pos: -14.5,-8.5 - parent: 2 - - uid: 3198 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 2 - - uid: 3199 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 2 - - uid: 3200 - components: - - type: Transform - pos: -49.5,17.5 - parent: 2 - - uid: 3201 - components: - - type: Transform - pos: -48.5,14.5 - parent: 2 - - uid: 3202 - components: - - type: Transform - pos: -51.5,22.5 - parent: 2 - - uid: 3203 - components: - - type: Transform - pos: -50.5,22.5 - parent: 2 - - uid: 3204 - components: - - type: Transform - pos: -49.5,22.5 - parent: 2 - - uid: 3205 - components: - - type: Transform - pos: -49.5,23.5 - parent: 2 - - uid: 3206 - components: - - type: Transform - pos: -49.5,24.5 - parent: 2 - - uid: 3207 - components: - - type: Transform - pos: -50.5,24.5 - parent: 2 - - uid: 3208 - components: - - type: Transform - pos: -51.5,24.5 - parent: 2 - - uid: 3209 - components: - - type: Transform - pos: -50.5,25.5 - parent: 2 - - uid: 3210 - components: - - type: Transform - pos: -50.5,26.5 - parent: 2 - - uid: 3211 - components: - - type: Transform - pos: -49.5,26.5 - parent: 2 - - uid: 3212 - components: - - type: Transform - pos: -48.5,26.5 - parent: 2 - - uid: 3213 - components: - - type: Transform - pos: -48.5,16.5 - parent: 2 - - uid: 3214 - components: - - type: Transform - pos: -49.5,11.5 - parent: 2 - - uid: 3215 - components: - - type: Transform - pos: -52.5,11.5 - parent: 2 - - uid: 3219 - components: - - type: Transform - pos: -40.5,20.5 - parent: 2 - - uid: 3220 - components: - - type: Transform - pos: -41.5,21.5 - parent: 2 - - uid: 3221 - components: - - type: Transform - pos: -41.5,20.5 - parent: 2 - - uid: 3222 - components: - - type: Transform - pos: -42.5,21.5 - parent: 2 - - uid: 3242 - components: - - type: Transform - pos: -45.5,20.5 - parent: 2 - - uid: 3243 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 2 - - uid: 3247 - components: - - type: Transform - pos: 23.5,-0.5 - parent: 2 - - uid: 3249 - components: - - type: Transform - pos: -31.5,12.5 - parent: 2 - - uid: 3251 - components: - - type: Transform - pos: -51.5,11.5 - parent: 2 - - uid: 3252 - components: - - type: Transform - pos: -48.5,11.5 - parent: 2 - - uid: 3253 - components: - - type: Transform - pos: -48.5,15.5 - parent: 2 - - uid: 3254 - components: - - type: Transform - pos: -51.5,15.5 - parent: 2 - - uid: 3255 - components: - - type: Transform - pos: -58.5,17.5 - parent: 2 - - uid: 3256 - components: - - type: Transform - pos: -56.5,11.5 - parent: 2 - - uid: 3258 - components: - - type: Transform - pos: -30.5,-2.5 - parent: 2 - - uid: 3259 - components: - - type: Transform - pos: 71.5,14.5 - parent: 2 - - uid: 3260 - components: - - type: Transform - pos: 77.5,10.5 - parent: 2 - - uid: 3261 - components: - - type: Transform - pos: 77.5,8.5 - parent: 2 - - uid: 3262 - components: - - type: Transform - pos: -7.5,-24.5 - parent: 2 - - uid: 3263 - components: - - type: Transform - pos: 77.5,13.5 - parent: 2 - - uid: 3267 - components: - - type: Transform - pos: -55.5,16.5 - parent: 2 - - uid: 3268 - components: - - type: Transform - pos: -55.5,15.5 - parent: 2 - - uid: 3269 - components: - - type: Transform - pos: -58.5,14.5 - parent: 2 - - uid: 3270 - components: - - type: Transform - pos: -58.5,13.5 - parent: 2 - - uid: 3271 - components: - - type: Transform - pos: -58.5,12.5 - parent: 2 - - uid: 3272 - components: - - type: Transform - pos: -47.5,11.5 - parent: 2 - - uid: 3273 - components: - - type: Transform - pos: -47.5,10.5 - parent: 2 - - uid: 3274 - components: - - type: Transform - pos: -47.5,9.5 - parent: 2 - - uid: 3275 - components: - - type: Transform - pos: -48.5,9.5 - parent: 2 - - uid: 3276 - components: - - type: Transform - pos: -49.5,9.5 - parent: 2 - - uid: 3277 - components: - - type: Transform - pos: -49.5,8.5 - parent: 2 - - uid: 3278 - components: - - type: Transform - pos: -49.5,7.5 - parent: 2 - - uid: 3279 - components: - - type: Transform - pos: -49.5,6.5 - parent: 2 - - uid: 3280 - components: - - type: Transform - pos: -49.5,5.5 - parent: 2 - - uid: 3281 - components: - - type: Transform - pos: -49.5,4.5 - parent: 2 - - uid: 3282 - components: - - type: Transform - pos: -49.5,3.5 - parent: 2 - - uid: 3283 - components: - - type: Transform - pos: -49.5,2.5 - parent: 2 - - uid: 3284 - components: - - type: Transform - pos: -46.5,9.5 - parent: 2 - - uid: 3285 - components: - - type: Transform - pos: -46.5,8.5 - parent: 2 - - uid: 3286 - components: - - type: Transform - pos: -46.5,7.5 - parent: 2 - - uid: 3287 - components: - - type: Transform - pos: -31.5,13.5 - parent: 2 - - uid: 3293 - components: - - type: Transform - pos: -39.5,10.5 - parent: 2 - - uid: 3294 - components: - - type: Transform - pos: -38.5,7.5 - parent: 2 - - uid: 3295 - components: - - type: Transform - pos: -38.5,8.5 - parent: 2 - - uid: 3296 - components: - - type: Transform - pos: -38.5,9.5 - parent: 2 - - uid: 3297 - components: - - type: Transform - pos: -38.5,10.5 - parent: 2 - - uid: 3298 - components: - - type: Transform - pos: -23.5,11.5 - parent: 2 - - uid: 3305 - components: - - type: Transform - pos: -39.5,12.5 - parent: 2 - - uid: 3306 - components: - - type: Transform - pos: -38.5,12.5 - parent: 2 - - uid: 3307 - components: - - type: Transform - pos: -52.5,12.5 - parent: 2 - - uid: 3308 - components: - - type: Transform - pos: -55.5,14.5 - parent: 2 - - uid: 3309 - components: - - type: Transform - pos: -38.5,13.5 - parent: 2 - - uid: 3310 - components: - - type: Transform - pos: -37.5,13.5 - parent: 2 - - uid: 3311 - components: - - type: Transform - pos: -35.5,13.5 - parent: 2 - - uid: 3312 - components: - - type: Transform - pos: -36.5,13.5 - parent: 2 - - uid: 3314 - components: - - type: Transform - pos: -32.5,14.5 - parent: 2 - - uid: 3315 - components: - - type: Transform - pos: -32.5,15.5 - parent: 2 - - uid: 3316 - components: - - type: Transform - pos: -32.5,16.5 - parent: 2 - - uid: 3319 - components: - - type: Transform - pos: -30.5,14.5 - parent: 2 - - uid: 3320 - components: - - type: Transform - pos: -30.5,15.5 - parent: 2 - - uid: 3321 - components: - - type: Transform - pos: -30.5,16.5 - parent: 2 - - uid: 3323 - components: - - type: Transform - pos: -30.5,-38.5 - parent: 2 - - uid: 3324 - components: - - type: Transform - pos: 3.5,-56.5 - parent: 2 - - uid: 3325 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 2 - - uid: 3328 - components: - - type: Transform - pos: -20.5,19.5 - parent: 2 - - uid: 3329 - components: - - type: Transform - pos: -25.5,-30.5 - parent: 2 - - uid: 3330 - components: - - type: Transform - pos: -25.5,-31.5 - parent: 2 - - uid: 3331 - components: - - type: Transform - pos: -23.5,10.5 - parent: 2 - - uid: 3332 - components: - - type: Transform - pos: -22.5,10.5 - parent: 2 - - uid: 3333 - components: - - type: Transform - pos: -21.5,10.5 - parent: 2 - - uid: 3334 - components: - - type: Transform - pos: -20.5,10.5 - parent: 2 - - uid: 3335 - components: - - type: Transform - pos: -19.5,10.5 - parent: 2 - - uid: 3336 - components: - - type: Transform - pos: -18.5,10.5 - parent: 2 - - uid: 3337 - components: - - type: Transform - pos: -17.5,10.5 - parent: 2 - - uid: 3338 - components: - - type: Transform - pos: -16.5,10.5 - parent: 2 - - uid: 3339 - components: - - type: Transform - pos: -16.5,11.5 - parent: 2 - - uid: 3340 - components: - - type: Transform - pos: -16.5,12.5 - parent: 2 - - uid: 3341 - components: - - type: Transform - pos: -16.5,13.5 - parent: 2 - - uid: 3342 - components: - - type: Transform - pos: -16.5,14.5 - parent: 2 - - uid: 3343 - components: - - type: Transform - pos: -16.5,15.5 - parent: 2 - - uid: 3344 - components: - - type: Transform - pos: -16.5,16.5 - parent: 2 - - uid: 3345 - components: - - type: Transform - pos: -15.5,12.5 - parent: 2 - - uid: 3361 - components: - - type: Transform - pos: -20.5,11.5 - parent: 2 - - uid: 3362 - components: - - type: Transform - pos: -20.5,12.5 - parent: 2 - - uid: 3363 - components: - - type: Transform - pos: -20.5,13.5 - parent: 2 - - uid: 3368 - components: - - type: Transform - pos: -55.5,17.5 - parent: 2 - - uid: 3369 - components: - - type: Transform - pos: -58.5,15.5 - parent: 2 - - uid: 3370 - components: - - type: Transform - pos: -50.5,3.5 - parent: 2 - - uid: 3371 - components: - - type: Transform - pos: -51.5,3.5 - parent: 2 - - uid: 3372 - components: - - type: Transform - pos: -52.5,3.5 - parent: 2 - - uid: 3373 - components: - - type: Transform - pos: -53.5,3.5 - parent: 2 - - uid: 3374 - components: - - type: Transform - pos: -53.5,4.5 - parent: 2 - - uid: 3375 - components: - - type: Transform - pos: -53.5,5.5 - parent: 2 - - uid: 3376 - components: - - type: Transform - pos: 54.5,-17.5 - parent: 2 - - uid: 3377 - components: - - type: Transform - pos: -59.5,14.5 - parent: 2 - - uid: 3378 - components: - - type: Transform - pos: -60.5,-17.5 - parent: 2 - - uid: 3379 - components: - - type: Transform - pos: -59.5,-17.5 - parent: 2 - - uid: 3380 - components: - - type: Transform - pos: -58.5,-17.5 - parent: 2 - - uid: 3381 - components: - - type: Transform - pos: -58.5,-18.5 - parent: 2 - - uid: 3382 - components: - - type: Transform - pos: -58.5,-19.5 - parent: 2 - - uid: 3383 - components: - - type: Transform - pos: -57.5,-19.5 - parent: 2 - - uid: 3384 - components: - - type: Transform - pos: -61.5,-17.5 - parent: 2 - - uid: 3385 - components: - - type: Transform - pos: -61.5,-18.5 - parent: 2 - - uid: 3387 - components: - - type: Transform - pos: -59.5,-16.5 - parent: 2 - - uid: 3388 - components: - - type: Transform - pos: -65.5,-2.5 - parent: 2 - - uid: 3389 - components: - - type: Transform - pos: -64.5,-2.5 - parent: 2 - - uid: 3390 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 2 - - uid: 3391 - components: - - type: Transform - pos: -30.5,-8.5 - parent: 2 - - uid: 3392 - components: - - type: Transform - pos: -29.5,-8.5 - parent: 2 - - uid: 3393 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 2 - - uid: 3394 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 2 - - uid: 3395 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 2 - - uid: 3396 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 2 - - uid: 3397 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 2 - - uid: 3398 - components: - - type: Transform - pos: -26.5,-11.5 - parent: 2 - - uid: 3399 - components: - - type: Transform - pos: -26.5,-12.5 - parent: 2 - - uid: 3400 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 2 - - uid: 3401 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - - uid: 3402 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 2 - - uid: 3403 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 2 - - uid: 3404 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 2 - - uid: 3405 - components: - - type: Transform - pos: -34.5,-10.5 - parent: 2 - - uid: 3406 - components: - - type: Transform - pos: -34.5,-11.5 - parent: 2 - - uid: 3407 - components: - - type: Transform - pos: -34.5,-12.5 - parent: 2 - - uid: 3408 - components: - - type: Transform - pos: -34.5,-13.5 - parent: 2 - - uid: 3409 - components: - - type: Transform - pos: -34.5,-14.5 - parent: 2 - - uid: 3410 - components: - - type: Transform - pos: -34.5,-15.5 - parent: 2 - - uid: 3411 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 2 - - uid: 3412 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 2 - - uid: 3413 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 2 - - uid: 3414 - components: - - type: Transform - pos: -37.5,-16.5 - parent: 2 - - uid: 3415 - components: - - type: Transform - pos: -38.5,-16.5 - parent: 2 - - uid: 3416 - components: - - type: Transform - pos: -39.5,-16.5 - parent: 2 - - uid: 3417 - components: - - type: Transform - pos: -39.5,-17.5 - parent: 2 - - uid: 3418 - components: - - type: Transform - pos: -39.5,-18.5 - parent: 2 - - uid: 3419 - components: - - type: Transform - pos: -39.5,-15.5 - parent: 2 - - uid: 3420 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 2 - - uid: 3421 - components: - - type: Transform - pos: -41.5,-15.5 - parent: 2 - - uid: 3422 - components: - - type: Transform - pos: -40.5,-18.5 - parent: 2 - - uid: 3423 - components: - - type: Transform - pos: -41.5,-18.5 - parent: 2 - - uid: 3424 - components: - - type: Transform - pos: -42.5,-18.5 - parent: 2 - - uid: 3425 - components: - - type: Transform - pos: -43.5,-18.5 - parent: 2 - - uid: 3426 - components: - - type: Transform - pos: -44.5,-18.5 - parent: 2 - - uid: 3427 - components: - - type: Transform - pos: -45.5,-18.5 - parent: 2 - - uid: 3428 - components: - - type: Transform - pos: -46.5,-18.5 - parent: 2 - - uid: 3429 - components: - - type: Transform - pos: -47.5,-18.5 - parent: 2 - - uid: 3430 - components: - - type: Transform - pos: -48.5,-18.5 - parent: 2 - - uid: 3431 - components: - - type: Transform - pos: -49.5,-18.5 - parent: 2 - - uid: 3432 - components: - - type: Transform - pos: -50.5,-18.5 - parent: 2 - - uid: 3433 - components: - - type: Transform - pos: -50.5,-17.5 - parent: 2 - - uid: 3434 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 2 - - uid: 3435 - components: - - type: Transform - pos: -50.5,-15.5 - parent: 2 - - uid: 3436 - components: - - type: Transform - pos: -51.5,-15.5 - parent: 2 - - uid: 3437 - components: - - type: Transform - pos: -52.5,-15.5 - parent: 2 - - uid: 3438 - components: - - type: Transform - pos: -53.5,-15.5 - parent: 2 - - uid: 3439 - components: - - type: Transform - pos: -54.5,-15.5 - parent: 2 - - uid: 3440 - components: - - type: Transform - pos: -55.5,-15.5 - parent: 2 - - uid: 3441 - components: - - type: Transform - pos: -55.5,-14.5 - parent: 2 - - uid: 3442 - components: - - type: Transform - pos: -55.5,-13.5 - parent: 2 - - uid: 3443 - components: - - type: Transform - pos: -56.5,-13.5 - parent: 2 - - uid: 3444 - components: - - type: Transform - pos: -57.5,-13.5 - parent: 2 - - uid: 3445 - components: - - type: Transform - pos: -58.5,-13.5 - parent: 2 - - uid: 3446 - components: - - type: Transform - pos: -59.5,-13.5 - parent: 2 - - uid: 3447 - components: - - type: Transform - pos: -60.5,-13.5 - parent: 2 - - uid: 3448 - components: - - type: Transform - pos: -50.5,-14.5 - parent: 2 - - uid: 3449 - components: - - type: Transform - pos: -50.5,-13.5 - parent: 2 - - uid: 3450 - components: - - type: Transform - pos: -50.5,-12.5 - parent: 2 - - uid: 3451 - components: - - type: Transform - pos: -50.5,-11.5 - parent: 2 - - uid: 3452 - components: - - type: Transform - pos: -52.5,-16.5 - parent: 2 - - uid: 3454 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 2 - - uid: 3455 - components: - - type: Transform - pos: -39.5,-25.5 - parent: 2 - - uid: 3456 - components: - - type: Transform - pos: -41.5,-31.5 - parent: 2 - - uid: 3457 - components: - - type: Transform - pos: -41.5,-33.5 - parent: 2 - - uid: 3458 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 2 - - uid: 3459 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 2 - - uid: 3462 - components: - - type: Transform - pos: -42.5,-30.5 - parent: 2 - - uid: 3463 - components: - - type: Transform - pos: -37.5,-37.5 - parent: 2 - - uid: 3464 - components: - - type: Transform - pos: -50.5,-5.5 - parent: 2 - - uid: 3467 - components: - - type: Transform - pos: -25.5,-29.5 - parent: 2 - - uid: 3488 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - - uid: 3489 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 2 - - uid: 3490 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 2 - - uid: 3491 - components: - - type: Transform - pos: -33.5,-5.5 - parent: 2 - - uid: 3492 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 2 - - uid: 3493 - components: - - type: Transform - pos: -27.5,-4.5 - parent: 2 - - uid: 3494 - components: - - type: Transform - pos: -27.5,-3.5 - parent: 2 - - uid: 3495 - components: - - type: Transform - pos: -27.5,-5.5 - parent: 2 - - uid: 3496 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 2 - - uid: 3497 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 2 - - uid: 3498 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 2 - - uid: 3499 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 2 - - uid: 3500 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 2 - - uid: 3501 - components: - - type: Transform - pos: -51.5,-6.5 - parent: 2 - - uid: 3512 - components: - - type: Transform - pos: -50.5,-7.5 - parent: 2 - - uid: 3514 - components: - - type: Transform - pos: -19.5,-10.5 - parent: 2 - - uid: 3515 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 2 - - uid: 3516 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 2 - - uid: 3517 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 2 - - uid: 3518 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 2 - - uid: 3519 - components: - - type: Transform - pos: -23.5,-11.5 - parent: 2 - - uid: 3520 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 2 - - uid: 3521 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 2 - - uid: 3522 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 2 - - uid: 3523 - components: - - type: Transform - pos: 39.5,-11.5 - parent: 2 - - uid: 3524 - components: - - type: Transform - pos: 46.5,-21.5 - parent: 2 - - uid: 3525 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 2 - - uid: 3536 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 2 - - uid: 3538 - components: - - type: Transform - pos: -31.5,-21.5 - parent: 2 - - uid: 3539 - components: - - type: Transform - pos: -31.5,-20.5 - parent: 2 - - uid: 3540 - components: - - type: Transform - pos: -31.5,-19.5 - parent: 2 - - uid: 3541 - components: - - type: Transform - pos: -31.5,-18.5 - parent: 2 - - uid: 3542 - components: - - type: Transform - pos: -31.5,-17.5 - parent: 2 - - uid: 3543 - components: - - type: Transform - pos: -31.5,-16.5 - parent: 2 - - uid: 3544 - components: - - type: Transform - pos: -31.5,-15.5 - parent: 2 - - uid: 3545 - components: - - type: Transform - pos: -31.5,-14.5 - parent: 2 - - uid: 3546 - components: - - type: Transform - pos: -31.5,-13.5 - parent: 2 - - uid: 3547 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 2 - - uid: 3548 - components: - - type: Transform - pos: -31.5,-11.5 - parent: 2 - - uid: 3549 - components: - - type: Transform - pos: -34.5,-27.5 - parent: 2 - - uid: 3550 - components: - - type: Transform - pos: -34.5,-26.5 - parent: 2 - - uid: 3551 - components: - - type: Transform - pos: -40.5,-26.5 - parent: 2 - - uid: 3552 - components: - - type: Transform - pos: -41.5,-32.5 - parent: 2 - - uid: 3553 - components: - - type: Transform - pos: -43.5,-30.5 - parent: 2 - - uid: 3554 - components: - - type: Transform - pos: -41.5,-25.5 - parent: 2 - - uid: 3555 - components: - - type: Transform - pos: -41.5,-24.5 - parent: 2 - - uid: 3556 - components: - - type: Transform - pos: -60.5,-18.5 - parent: 2 - - uid: 3557 - components: - - type: Transform - pos: -58.5,-20.5 - parent: 2 - - uid: 3558 - components: - - type: Transform - pos: -59.5,-20.5 - parent: 2 - - uid: 3559 - components: - - type: Transform - pos: -59.5,-21.5 - parent: 2 - - uid: 3560 - components: - - type: Transform - pos: -9.5,-67.5 - parent: 2 - - uid: 3561 - components: - - type: Transform - pos: -60.5,-20.5 - parent: 2 - - uid: 3562 - components: - - type: Transform - pos: -54.5,-19.5 - parent: 2 - - uid: 3563 - components: - - type: Transform - pos: -53.5,-19.5 - parent: 2 - - uid: 3564 - components: - - type: Transform - pos: -54.5,-18.5 - parent: 2 - - uid: 3565 - components: - - type: Transform - pos: -54.5,-17.5 - parent: 2 - - uid: 3566 - components: - - type: Transform - pos: -53.5,-17.5 - parent: 2 - - uid: 3567 - components: - - type: Transform - pos: -52.5,-17.5 - parent: 2 - - uid: 3568 - components: - - type: Transform - pos: -32.5,-19.5 - parent: 2 - - uid: 3569 - components: - - type: Transform - pos: -33.5,-19.5 - parent: 2 - - uid: 3570 - components: - - type: Transform - pos: -34.5,-19.5 - parent: 2 - - uid: 3571 - components: - - type: Transform - pos: -35.5,-19.5 - parent: 2 - - uid: 3573 - components: - - type: Transform - pos: -36.5,-21.5 - parent: 2 - - uid: 3574 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 2 - - uid: 3575 - components: - - type: Transform - pos: -37.5,-21.5 - parent: 2 - - uid: 3576 - components: - - type: Transform - pos: -38.5,-21.5 - parent: 2 - - uid: 3577 - components: - - type: Transform - pos: -39.5,-21.5 - parent: 2 - - uid: 3578 - components: - - type: Transform - pos: -40.5,-21.5 - parent: 2 - - uid: 3579 - components: - - type: Transform - pos: -29.5,-34.5 - parent: 2 - - uid: 3580 - components: - - type: Transform - pos: -29.5,-35.5 - parent: 2 - - uid: 3581 - components: - - type: Transform - pos: -29.5,-36.5 - parent: 2 - - uid: 3582 - components: - - type: Transform - pos: -29.5,-37.5 - parent: 2 - - uid: 3584 - components: - - type: Transform - pos: -31.5,-37.5 - parent: 2 - - uid: 3585 - components: - - type: Transform - pos: -32.5,-37.5 - parent: 2 - - uid: 3591 - components: - - type: Transform - pos: -28.5,-37.5 - parent: 2 - - uid: 3592 - components: - - type: Transform - pos: -27.5,-37.5 - parent: 2 - - uid: 3593 - components: - - type: Transform - pos: -26.5,-37.5 - parent: 2 - - uid: 3594 - components: - - type: Transform - pos: -25.5,-37.5 - parent: 2 - - uid: 3595 - components: - - type: Transform - pos: -24.5,-37.5 - parent: 2 - - uid: 3596 - components: - - type: Transform - pos: -25.5,-36.5 - parent: 2 - - uid: 3597 - components: - - type: Transform - pos: -25.5,-35.5 - parent: 2 - - uid: 3598 - components: - - type: Transform - pos: -25.5,-34.5 - parent: 2 - - uid: 3599 - components: - - type: Transform - pos: -25.5,-33.5 - parent: 2 - - uid: 3600 - components: - - type: Transform - pos: -27.5,-32.5 - parent: 2 - - uid: 3601 - components: - - type: Transform - pos: -23.5,-24.5 - parent: 2 - - uid: 3602 - components: - - type: Transform - pos: -27.5,-30.5 - parent: 2 - - uid: 3603 - components: - - type: Transform - pos: -27.5,-38.5 - parent: 2 - - uid: 3604 - components: - - type: Transform - pos: -27.5,-39.5 - parent: 2 - - uid: 3605 - components: - - type: Transform - pos: -28.5,-39.5 - parent: 2 - - uid: 3606 - components: - - type: Transform - pos: -26.5,-39.5 - parent: 2 - - uid: 3607 - components: - - type: Transform - pos: -19.5,-30.5 - parent: 2 - - uid: 3608 - components: - - type: Transform - pos: -20.5,-30.5 - parent: 2 - - uid: 3609 - components: - - type: Transform - pos: -21.5,-30.5 - parent: 2 - - uid: 3610 - components: - - type: Transform - pos: -22.5,-30.5 - parent: 2 - - uid: 3611 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 2 - - uid: 3612 - components: - - type: Transform - pos: -23.5,-29.5 - parent: 2 - - uid: 3613 - components: - - type: Transform - pos: -23.5,-31.5 - parent: 2 - - uid: 3614 - components: - - type: Transform - pos: -33.5,-30.5 - parent: 2 - - uid: 3615 - components: - - type: Transform - pos: -32.5,-30.5 - parent: 2 - - uid: 3616 - components: - - type: Transform - pos: -31.5,-30.5 - parent: 2 - - uid: 3617 - components: - - type: Transform - pos: -30.5,-30.5 - parent: 2 - - uid: 3618 - components: - - type: Transform - pos: -29.5,-29.5 - parent: 2 - - uid: 3619 - components: - - type: Transform - pos: -31.5,-29.5 - parent: 2 - - uid: 3620 - components: - - type: Transform - pos: -31.5,-31.5 - parent: 2 - - uid: 3621 - components: - - type: Transform - pos: -31.5,-32.5 - parent: 2 - - uid: 3622 - components: - - type: Transform - pos: -32.5,-32.5 - parent: 2 - - uid: 3623 - components: - - type: Transform - pos: -33.5,-32.5 - parent: 2 - - uid: 3624 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 2 - - uid: 3625 - components: - - type: Transform - pos: -26.5,-19.5 - parent: 2 - - uid: 3626 - components: - - type: Transform - pos: -25.5,-19.5 - parent: 2 - - uid: 3627 - components: - - type: Transform - pos: -23.5,-19.5 - parent: 2 - - uid: 3628 - components: - - type: Transform - pos: -26.5,-18.5 - parent: 2 - - uid: 3629 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 2 - - uid: 3630 - components: - - type: Transform - pos: -18.5,-19.5 - parent: 2 - - uid: 3631 - components: - - type: Transform - pos: -18.5,-18.5 - parent: 2 - - uid: 3632 - components: - - type: Transform - pos: -20.5,-18.5 - parent: 2 - - uid: 3633 - components: - - type: Transform - pos: -23.5,-18.5 - parent: 2 - - uid: 3634 - components: - - type: Transform - pos: -18.5,-17.5 - parent: 2 - - uid: 3635 - components: - - type: Transform - pos: -18.5,-17.5 - parent: 2 - - uid: 3636 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 2 - - uid: 3637 - components: - - type: Transform - pos: -21.5,-18.5 - parent: 2 - - uid: 3638 - components: - - type: Transform - pos: -22.5,-18.5 - parent: 2 - - uid: 3639 - components: - - type: Transform - pos: -26.5,-17.5 - parent: 2 - - uid: 3640 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 2 - - uid: 3641 - components: - - type: Transform - pos: -24.5,-17.5 - parent: 2 - - uid: 3643 - components: - - type: Transform - pos: -28.5,-22.5 - parent: 2 - - uid: 3644 - components: - - type: Transform - pos: -22.5,-26.5 - parent: 2 - - uid: 3645 - components: - - type: Transform - pos: -24.5,-26.5 - parent: 2 - - uid: 3646 - components: - - type: Transform - pos: -26.5,-26.5 - parent: 2 - - uid: 3647 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 2 - - uid: 3648 - components: - - type: Transform - pos: -21.5,-21.5 - parent: 2 - - uid: 3649 - components: - - type: Transform - pos: -21.5,-20.5 - parent: 2 - - uid: 3650 - components: - - type: Transform - pos: -21.5,-19.5 - parent: 2 - - uid: 3651 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 2 - - uid: 3652 - components: - - type: Transform - pos: -18.5,-24.5 - parent: 2 - - uid: 3653 - components: - - type: Transform - pos: -18.5,-23.5 - parent: 2 - - uid: 3654 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 2 - - uid: 3655 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 2 - - uid: 3656 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 2 - - uid: 3657 - components: - - type: Transform - pos: -21.5,-21.5 - parent: 2 - - uid: 3658 - components: - - type: Transform - pos: -20.5,-23.5 - parent: 2 - - uid: 3659 - components: - - type: Transform - pos: -20.5,-22.5 - parent: 2 - - uid: 3660 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 2 - - uid: 3661 - components: - - type: Transform - pos: -18.5,-25.5 - parent: 2 - - uid: 3662 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 2 - - uid: 3663 - components: - - type: Transform - pos: -25.5,-26.5 - parent: 2 - - uid: 3664 - components: - - type: Transform - pos: -23.5,-26.5 - parent: 2 - - uid: 3665 - components: - - type: Transform - pos: -21.5,-26.5 - parent: 2 - - uid: 3666 - components: - - type: Transform - pos: -27.5,-25.5 - parent: 2 - - uid: 3667 - components: - - type: Transform - pos: -20.5,-26.5 - parent: 2 - - uid: 3668 - components: - - type: Transform - pos: -20.5,-25.5 - parent: 2 - - uid: 3669 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 2 - - uid: 3670 - components: - - type: Transform - pos: -23.5,-25.5 - parent: 2 - - uid: 3671 - components: - - type: Transform - pos: -23.5,-21.5 - parent: 2 - - uid: 3672 - components: - - type: Transform - pos: -24.5,-20.5 - parent: 2 - - uid: 3673 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 2 - - uid: 3674 - components: - - type: Transform - pos: -27.5,-23.5 - parent: 2 - - uid: 3675 - components: - - type: Transform - pos: -27.5,-22.5 - parent: 2 - - uid: 3676 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 2 - - uid: 3677 - components: - - type: Transform - pos: -27.5,-20.5 - parent: 2 - - uid: 3678 - components: - - type: Transform - pos: -27.5,-19.5 - parent: 2 - - uid: 3679 - components: - - type: Transform - pos: -28.5,-19.5 - parent: 2 - - uid: 3680 - components: - - type: Transform - pos: -29.5,-19.5 - parent: 2 - - uid: 3681 - components: - - type: Transform - pos: -29.5,-22.5 - parent: 2 - - uid: 3682 - components: - - type: Transform - pos: -26.5,-22.5 - parent: 2 - - uid: 3683 - components: - - type: Transform - pos: -23.5,-22.5 - parent: 2 - - uid: 3685 - components: - - type: Transform - pos: -25.5,-22.5 - parent: 2 - - uid: 3686 - components: - - type: Transform - pos: -24.5,-22.5 - parent: 2 - - uid: 3687 - components: - - type: Transform - pos: -19.5,-26.5 - parent: 2 - - uid: 3689 - components: - - type: Transform - pos: -20.5,-28.5 - parent: 2 - - uid: 3691 - components: - - type: Transform - pos: -21.5,-28.5 - parent: 2 - - uid: 3692 - components: - - type: Transform - pos: -22.5,-28.5 - parent: 2 - - uid: 3694 - components: - - type: Transform - pos: -1.5,-25.5 - parent: 2 - - uid: 3695 - components: - - type: Transform - pos: -31.5,-26.5 - parent: 2 - - uid: 3696 - components: - - type: Transform - pos: -24.5,-27.5 - parent: 2 - - uid: 3697 - components: - - type: Transform - pos: 39.5,-9.5 - parent: 2 - - uid: 3698 - components: - - type: Transform - pos: 39.5,-10.5 - parent: 2 - - uid: 3699 - components: - - type: Transform - pos: -17.5,-35.5 - parent: 2 - - uid: 3700 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 2 - - uid: 3701 - components: - - type: Transform - pos: -17.5,-33.5 - parent: 2 - - uid: 3702 - components: - - type: Transform - pos: -18.5,-33.5 - parent: 2 - - uid: 3703 - components: - - type: Transform - pos: -19.5,-33.5 - parent: 2 - - uid: 3704 - components: - - type: Transform - pos: -20.5,-33.5 - parent: 2 - - uid: 3705 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 2 - - uid: 3706 - components: - - type: Transform - pos: -17.5,-37.5 - parent: 2 - - uid: 3707 - components: - - type: Transform - pos: -17.5,-38.5 - parent: 2 - - uid: 3708 - components: - - type: Transform - pos: -17.5,-39.5 - parent: 2 - - uid: 3709 - components: - - type: Transform - pos: -17.5,-40.5 - parent: 2 - - uid: 3710 - components: - - type: Transform - pos: -17.5,-41.5 - parent: 2 - - uid: 3711 - components: - - type: Transform - pos: -17.5,-42.5 - parent: 2 - - uid: 3712 - components: - - type: Transform - pos: -17.5,-43.5 - parent: 2 - - uid: 3713 - components: - - type: Transform - pos: -17.5,-44.5 - parent: 2 - - uid: 3714 - components: - - type: Transform - pos: -17.5,-45.5 - parent: 2 - - uid: 3715 - components: - - type: Transform - pos: -17.5,-46.5 - parent: 2 - - uid: 3716 - components: - - type: Transform - pos: -17.5,-47.5 - parent: 2 - - uid: 3717 - components: - - type: Transform - pos: -16.5,-47.5 - parent: 2 - - uid: 3718 - components: - - type: Transform - pos: -15.5,-47.5 - parent: 2 - - uid: 3719 - components: - - type: Transform - pos: -14.5,-47.5 - parent: 2 - - uid: 3720 - components: - - type: Transform - pos: -13.5,-47.5 - parent: 2 - - uid: 3721 - components: - - type: Transform - pos: -12.5,-47.5 - parent: 2 - - uid: 3722 - components: - - type: Transform - pos: -11.5,-47.5 - parent: 2 - - uid: 3723 - components: - - type: Transform - pos: -10.5,-47.5 - parent: 2 - - uid: 3724 - components: - - type: Transform - pos: -9.5,-47.5 - parent: 2 - - uid: 3725 - components: - - type: Transform - pos: -8.5,-47.5 - parent: 2 - - uid: 3726 - components: - - type: Transform - pos: -7.5,-47.5 - parent: 2 - - uid: 3727 - components: - - type: Transform - pos: -6.5,-47.5 - parent: 2 - - uid: 3728 - components: - - type: Transform - pos: -5.5,-47.5 - parent: 2 - - uid: 3729 - components: - - type: Transform - pos: -4.5,-47.5 - parent: 2 - - uid: 3730 - components: - - type: Transform - pos: -3.5,-47.5 - parent: 2 - - uid: 3731 - components: - - type: Transform - pos: -12.5,-46.5 - parent: 2 - - uid: 3732 - components: - - type: Transform - pos: -12.5,-45.5 - parent: 2 - - uid: 3733 - components: - - type: Transform - pos: -18.5,-47.5 - parent: 2 - - uid: 3734 - components: - - type: Transform - pos: -18.5,-48.5 - parent: 2 - - uid: 3735 - components: - - type: Transform - pos: -18.5,-49.5 - parent: 2 - - uid: 3736 - components: - - type: Transform - pos: -18.5,-50.5 - parent: 2 - - uid: 3737 - components: - - type: Transform - pos: -18.5,-51.5 - parent: 2 - - uid: 3738 - components: - - type: Transform - pos: -18.5,-52.5 - parent: 2 - - uid: 3739 - components: - - type: Transform - pos: -18.5,-53.5 - parent: 2 - - uid: 3740 - components: - - type: Transform - pos: -18.5,-54.5 - parent: 2 - - uid: 3741 - components: - - type: Transform - pos: -18.5,-55.5 - parent: 2 - - uid: 3742 - components: - - type: Transform - pos: -18.5,-56.5 - parent: 2 - - uid: 3743 - components: - - type: Transform - pos: -18.5,-57.5 - parent: 2 - - uid: 3744 - components: - - type: Transform - pos: -18.5,-58.5 - parent: 2 - - uid: 3745 - components: - - type: Transform - pos: -18.5,-59.5 - parent: 2 - - uid: 3746 - components: - - type: Transform - pos: -18.5,-60.5 - parent: 2 - - uid: 3751 - components: - - type: Transform - pos: -10.5,-59.5 - parent: 2 - - uid: 3752 - components: - - type: Transform - pos: -9.5,-59.5 - parent: 2 - - uid: 3753 - components: - - type: Transform - pos: -8.5,-59.5 - parent: 2 - - uid: 3754 - components: - - type: Transform - pos: -7.5,-59.5 - parent: 2 - - uid: 3763 - components: - - type: Transform - pos: -17.5,-64.5 - parent: 2 - - uid: 3764 - components: - - type: Transform - pos: -17.5,-65.5 - parent: 2 - - uid: 3765 - components: - - type: Transform - pos: -19.5,-60.5 - parent: 2 - - uid: 3766 - components: - - type: Transform - pos: -20.5,-60.5 - parent: 2 - - uid: 3767 - components: - - type: Transform - pos: -21.5,-60.5 - parent: 2 - - uid: 3768 - components: - - type: Transform - pos: -22.5,-60.5 - parent: 2 - - uid: 3769 - components: - - type: Transform - pos: -23.5,-60.5 - parent: 2 - - uid: 3770 - components: - - type: Transform - pos: -24.5,-60.5 - parent: 2 - - uid: 3771 - components: - - type: Transform - pos: -25.5,-60.5 - parent: 2 - - uid: 3772 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 2 - - uid: 3773 - components: - - type: Transform - pos: -27.5,-60.5 - parent: 2 - - uid: 3774 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 2 - - uid: 3775 - components: - - type: Transform - pos: -29.5,-60.5 - parent: 2 - - uid: 3776 - components: - - type: Transform - pos: -30.5,-60.5 - parent: 2 - - uid: 3777 - components: - - type: Transform - pos: -31.5,-60.5 - parent: 2 - - uid: 3778 - components: - - type: Transform - pos: -31.5,-61.5 - parent: 2 - - uid: 3779 - components: - - type: Transform - pos: -31.5,-62.5 - parent: 2 - - uid: 3780 - components: - - type: Transform - pos: -31.5,-63.5 - parent: 2 - - uid: 3781 - components: - - type: Transform - pos: -31.5,-64.5 - parent: 2 - - uid: 3782 - components: - - type: Transform - pos: -31.5,-65.5 - parent: 2 - - uid: 3783 - components: - - type: Transform - pos: -31.5,-66.5 - parent: 2 - - uid: 3784 - components: - - type: Transform - pos: -31.5,-67.5 - parent: 2 - - uid: 3785 - components: - - type: Transform - pos: -41.5,-61.5 - parent: 2 - - uid: 3787 - components: - - type: Transform - pos: -31.5,-70.5 - parent: 2 - - uid: 3788 - components: - - type: Transform - pos: -31.5,-71.5 - parent: 2 - - uid: 3789 - components: - - type: Transform - pos: -31.5,-72.5 - parent: 2 - - uid: 3790 - components: - - type: Transform - pos: -31.5,-73.5 - parent: 2 - - uid: 3791 - components: - - type: Transform - pos: -30.5,-65.5 - parent: 2 - - uid: 3792 - components: - - type: Transform - pos: -29.5,-65.5 - parent: 2 - - uid: 3793 - components: - - type: Transform - pos: -19.5,-47.5 - parent: 2 - - uid: 3794 - components: - - type: Transform - pos: -20.5,-47.5 - parent: 2 - - uid: 3795 - components: - - type: Transform - pos: -21.5,-47.5 - parent: 2 - - uid: 3796 - components: - - type: Transform - pos: -22.5,-47.5 - parent: 2 - - uid: 3797 - components: - - type: Transform - pos: -23.5,-47.5 - parent: 2 - - uid: 3798 - components: - - type: Transform - pos: -24.5,-47.5 - parent: 2 - - uid: 3799 - components: - - type: Transform - pos: -25.5,-47.5 - parent: 2 - - uid: 3800 - components: - - type: Transform - pos: -26.5,-47.5 - parent: 2 - - uid: 3801 - components: - - type: Transform - pos: -27.5,-47.5 - parent: 2 - - uid: 3802 - components: - - type: Transform - pos: -28.5,-47.5 - parent: 2 - - uid: 3803 - components: - - type: Transform - pos: -29.5,-47.5 - parent: 2 - - uid: 3804 - components: - - type: Transform - pos: -30.5,-47.5 - parent: 2 - - uid: 3805 - components: - - type: Transform - pos: -31.5,-47.5 - parent: 2 - - uid: 3806 - components: - - type: Transform - pos: -18.5,-42.5 - parent: 2 - - uid: 3807 - components: - - type: Transform - pos: -19.5,-42.5 - parent: 2 - - uid: 3808 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 2 - - uid: 3809 - components: - - type: Transform - pos: -21.5,-42.5 - parent: 2 - - uid: 3810 - components: - - type: Transform - pos: -21.5,-43.5 - parent: 2 - - uid: 3811 - components: - - type: Transform - pos: -22.5,-43.5 - parent: 2 - - uid: 3812 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 2 - - uid: 3813 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 2 - - uid: 3814 - components: - - type: Transform - pos: -24.5,-44.5 - parent: 2 - - uid: 3815 - components: - - type: Transform - pos: -25.5,-44.5 - parent: 2 - - uid: 3816 - components: - - type: Transform - pos: -26.5,-44.5 - parent: 2 - - uid: 3817 - components: - - type: Transform - pos: -27.5,-44.5 - parent: 2 - - uid: 3818 - components: - - type: Transform - pos: -28.5,-44.5 - parent: 2 - - uid: 3819 - components: - - type: Transform - pos: -29.5,-44.5 - parent: 2 - - uid: 3820 - components: - - type: Transform - pos: -30.5,-44.5 - parent: 2 - - uid: 3821 - components: - - type: Transform - pos: -31.5,-44.5 - parent: 2 - - uid: 3822 - components: - - type: Transform - pos: -32.5,-44.5 - parent: 2 - - uid: 3823 - components: - - type: Transform - pos: -33.5,-44.5 - parent: 2 - - uid: 3824 - components: - - type: Transform - pos: -35.5,-44.5 - parent: 2 - - uid: 3825 - components: - - type: Transform - pos: -36.5,-44.5 - parent: 2 - - uid: 3826 - components: - - type: Transform - pos: -37.5,-44.5 - parent: 2 - - uid: 3827 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 2 - - uid: 3828 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 2 - - uid: 3829 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 2 - - uid: 3830 - components: - - type: Transform - pos: -16.5,-39.5 - parent: 2 - - uid: 3831 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 2 - - uid: 3832 - components: - - type: Transform - pos: -16.5,-41.5 - parent: 2 - - uid: 3833 - components: - - type: Transform - pos: -16.5,-42.5 - parent: 2 - - uid: 3834 - components: - - type: Transform - pos: -16.5,-43.5 - parent: 2 - - uid: 3835 - components: - - type: Transform - pos: -16.5,-44.5 - parent: 2 - - uid: 3836 - components: - - type: Transform - pos: -18.5,-44.5 - parent: 2 - - uid: 3837 - components: - - type: Transform - pos: -18.5,-45.5 - parent: 2 - - uid: 3839 - components: - - type: Transform - pos: -40.5,-61.5 - parent: 2 - - uid: 3840 - components: - - type: Transform - pos: 4.5,-69.5 - parent: 2 - - uid: 3841 - components: - - type: Transform - pos: 5.5,-69.5 - parent: 2 - - uid: 3842 - components: - - type: Transform - pos: -21.5,-44.5 - parent: 2 - - uid: 3843 - components: - - type: Transform - pos: -23.5,-45.5 - parent: 2 - - uid: 3844 - components: - - type: Transform - pos: -21.5,-61.5 - parent: 2 - - uid: 3845 - components: - - type: Transform - pos: -22.5,-61.5 - parent: 2 - - uid: 3846 - components: - - type: Transform - pos: -23.5,-61.5 - parent: 2 - - uid: 3847 - components: - - type: Transform - pos: -24.5,-61.5 - parent: 2 - - uid: 3848 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 2 - - uid: 3849 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 2 - - uid: 3850 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 2 - - uid: 3851 - components: - - type: Transform - pos: -28.5,-61.5 - parent: 2 - - uid: 3852 - components: - - type: Transform - pos: -29.5,-61.5 - parent: 2 - - uid: 3853 - components: - - type: Transform - pos: -29.5,-64.5 - parent: 2 - - uid: 3854 - components: - - type: Transform - pos: -28.5,-64.5 - parent: 2 - - uid: 3855 - components: - - type: Transform - pos: -28.5,-63.5 - parent: 2 - - uid: 3856 - components: - - type: Transform - pos: -32.5,-67.5 - parent: 2 - - uid: 3857 - components: - - type: Transform - pos: -32.5,-68.5 - parent: 2 - - uid: 3858 - components: - - type: Transform - pos: -32.5,-69.5 - parent: 2 - - uid: 3859 - components: - - type: Transform - pos: -32.5,-70.5 - parent: 2 - - uid: 3860 - components: - - type: Transform - pos: -30.5,-67.5 - parent: 2 - - uid: 3861 - components: - - type: Transform - pos: -30.5,-68.5 - parent: 2 - - uid: 3862 - components: - - type: Transform - pos: -30.5,-69.5 - parent: 2 - - uid: 3863 - components: - - type: Transform - pos: -30.5,-70.5 - parent: 2 - - uid: 3864 - components: - - type: Transform - pos: -32.5,-73.5 - parent: 2 - - uid: 3865 - components: - - type: Transform - pos: -33.5,-73.5 - parent: 2 - - uid: 3866 - components: - - type: Transform - pos: -33.5,-74.5 - parent: 2 - - uid: 3867 - components: - - type: Transform - pos: -33.5,-75.5 - parent: 2 - - uid: 3868 - components: - - type: Transform - pos: -32.5,-75.5 - parent: 2 - - uid: 3869 - components: - - type: Transform - pos: -31.5,-75.5 - parent: 2 - - uid: 3870 - components: - - type: Transform - pos: -30.5,-75.5 - parent: 2 - - uid: 3871 - components: - - type: Transform - pos: -27.5,-43.5 - parent: 2 - - uid: 3872 - components: - - type: Transform - pos: -28.5,-42.5 - parent: 2 - - uid: 3873 - components: - - type: Transform - pos: -27.5,-42.5 - parent: 2 - - uid: 3874 - components: - - type: Transform - pos: -26.5,-42.5 - parent: 2 - - uid: 3875 - components: - - type: Transform - pos: -25.5,-42.5 - parent: 2 - - uid: 3876 - components: - - type: Transform - pos: -35.5,-43.5 - parent: 2 - - uid: 3877 - components: - - type: Transform - pos: -35.5,-42.5 - parent: 2 - - uid: 3878 - components: - - type: Transform - pos: -37.5,-43.5 - parent: 2 - - uid: 3879 - components: - - type: Transform - pos: -37.5,-42.5 - parent: 2 - - uid: 3880 - components: - - type: Transform - pos: -37.5,-45.5 - parent: 2 - - uid: 3881 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 2 - - uid: 3882 - components: - - type: Transform - pos: -39.5,-45.5 - parent: 2 - - uid: 3883 - components: - - type: Transform - pos: -18.5,-39.5 - parent: 2 - - uid: 3884 - components: - - type: Transform - pos: -19.5,-39.5 - parent: 2 - - uid: 3885 - components: - - type: Transform - pos: -20.5,-39.5 - parent: 2 - - uid: 3886 - components: - - type: Transform - pos: -21.5,-39.5 - parent: 2 - - uid: 3887 - components: - - type: Transform - pos: -21.5,-40.5 - parent: 2 - - uid: 3888 - components: - - type: Transform - pos: -22.5,-40.5 - parent: 2 - - uid: 3889 - components: - - type: Transform - pos: -12.5,-44.5 - parent: 2 - - uid: 3890 - components: - - type: Transform - pos: -12.5,-43.5 - parent: 2 - - uid: 3891 - components: - - type: Transform - pos: -13.5,-43.5 - parent: 2 - - uid: 3892 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 2 - - uid: 3893 - components: - - type: Transform - pos: -37.5,-62.5 - parent: 2 - - uid: 3894 - components: - - type: Transform - pos: -37.5,-63.5 - parent: 2 - - uid: 3895 - components: - - type: Transform - pos: -37.5,-61.5 - parent: 2 - - uid: 3896 - components: - - type: Transform - pos: -38.5,-61.5 - parent: 2 - - uid: 3897 - components: - - type: Transform - pos: -39.5,-61.5 - parent: 2 - - uid: 3898 - components: - - type: Transform - pos: -32.5,-47.5 - parent: 2 - - uid: 3899 - components: - - type: Transform - pos: -32.5,-48.5 - parent: 2 - - uid: 3900 - components: - - type: Transform - pos: 5.5,-66.5 - parent: 2 - - uid: 3902 - components: - - type: Transform - pos: 20.5,-27.5 - parent: 2 - - uid: 3904 - components: - - type: Transform - pos: -32.5,-49.5 - parent: 2 - - uid: 3905 - components: - - type: Transform - pos: -32.5,-50.5 - parent: 2 - - uid: 3906 - components: - - type: Transform - pos: -33.5,-50.5 - parent: 2 - - uid: 3907 - components: - - type: Transform - pos: -34.5,-50.5 - parent: 2 - - uid: 3908 - components: - - type: Transform - pos: -35.5,-50.5 - parent: 2 - - uid: 3909 - components: - - type: Transform - pos: -36.5,-50.5 - parent: 2 - - uid: 3910 - components: - - type: Transform - pos: -37.5,-51.5 - parent: 2 - - uid: 3911 - components: - - type: Transform - pos: -36.5,-51.5 - parent: 2 - - uid: 3915 - components: - - type: Transform - pos: -29.5,-26.5 - parent: 2 - - uid: 3916 - components: - - type: Transform - pos: -34.5,-28.5 - parent: 2 - - uid: 3924 - components: - - type: Transform - pos: -2.5,-18.5 - parent: 2 - - uid: 3930 - components: - - type: Transform - pos: -36.5,-42.5 - parent: 2 - - uid: 3931 - components: - - type: Transform - pos: -33.5,-51.5 - parent: 2 - - uid: 3932 - components: - - type: Transform - pos: -19.5,-53.5 - parent: 2 - - uid: 3933 - components: - - type: Transform - pos: -20.5,-53.5 - parent: 2 - - uid: 3934 - components: - - type: Transform - pos: -21.5,-53.5 - parent: 2 - - uid: 3935 - components: - - type: Transform - pos: -21.5,-52.5 - parent: 2 - - uid: 3936 - components: - - type: Transform - pos: -21.5,-51.5 - parent: 2 - - uid: 3937 - components: - - type: Transform - pos: -21.5,-50.5 - parent: 2 - - uid: 3938 - components: - - type: Transform - pos: -28.5,-50.5 - parent: 2 - - uid: 3939 - components: - - type: Transform - pos: -27.5,-50.5 - parent: 2 - - uid: 3940 - components: - - type: Transform - pos: -26.5,-50.5 - parent: 2 - - uid: 3941 - components: - - type: Transform - pos: -25.5,-50.5 - parent: 2 - - uid: 3942 - components: - - type: Transform - pos: -24.5,-50.5 - parent: 2 - - uid: 3943 - components: - - type: Transform - pos: -23.5,-50.5 - parent: 2 - - uid: 3944 - components: - - type: Transform - pos: -22.5,-50.5 - parent: 2 - - uid: 3945 - components: - - type: Transform - pos: -31.5,-59.5 - parent: 2 - - uid: 3946 - components: - - type: Transform - pos: -31.5,-58.5 - parent: 2 - - uid: 3947 - components: - - type: Transform - pos: -31.5,-57.5 - parent: 2 - - uid: 3948 - components: - - type: Transform - pos: -31.5,-56.5 - parent: 2 - - uid: 3949 - components: - - type: Transform - pos: -32.5,-56.5 - parent: 2 - - uid: 3950 - components: - - type: Transform - pos: -33.5,-56.5 - parent: 2 - - uid: 3951 - components: - - type: Transform - pos: -28.5,-57.5 - parent: 2 - - uid: 3952 - components: - - type: Transform - pos: -21.5,-56.5 - parent: 2 - - uid: 3953 - components: - - type: Transform - pos: -21.5,-57.5 - parent: 2 - - uid: 3954 - components: - - type: Transform - pos: -22.5,-57.5 - parent: 2 - - uid: 3955 - components: - - type: Transform - pos: -23.5,-57.5 - parent: 2 - - uid: 3956 - components: - - type: Transform - pos: -24.5,-57.5 - parent: 2 - - uid: 3957 - components: - - type: Transform - pos: -25.5,-57.5 - parent: 2 - - uid: 3958 - components: - - type: Transform - pos: -26.5,-57.5 - parent: 2 - - uid: 3959 - components: - - type: Transform - pos: -27.5,-57.5 - parent: 2 - - uid: 3960 - components: - - type: Transform - pos: -34.5,-56.5 - parent: 2 - - uid: 3961 - components: - - type: Transform - pos: -35.5,-56.5 - parent: 2 - - uid: 3962 - components: - - type: Transform - pos: -36.5,-56.5 - parent: 2 - - uid: 3963 - components: - - type: Transform - pos: -37.5,-56.5 - parent: 2 - - uid: 3964 - components: - - type: Transform - pos: -33.5,-55.5 - parent: 2 - - uid: 3965 - components: - - type: Transform - pos: -33.5,-54.5 - parent: 2 - - uid: 3966 - components: - - type: Transform - pos: -38.5,-56.5 - parent: 2 - - uid: 3967 - components: - - type: Transform - pos: -36.5,-55.5 - parent: 2 - - uid: 3968 - components: - - type: Transform - pos: -36.5,-54.5 - parent: 2 - - uid: 3969 - components: - - type: Transform - pos: -37.5,-54.5 - parent: 2 - - uid: 3970 - components: - - type: Transform - pos: -38.5,-54.5 - parent: 2 - - uid: 3971 - components: - - type: Transform - pos: -36.5,-57.5 - parent: 2 - - uid: 3972 - components: - - type: Transform - pos: -36.5,-58.5 - parent: 2 - - uid: 3973 - components: - - type: Transform - pos: -37.5,-58.5 - parent: 2 - - uid: 3974 - components: - - type: Transform - pos: -38.5,-58.5 - parent: 2 - - uid: 3976 - components: - - type: Transform - pos: -32.5,-65.5 - parent: 2 - - uid: 3977 - components: - - type: Transform - pos: -34.5,-65.5 - parent: 2 - - uid: 3978 - components: - - type: Transform - pos: -33.5,-65.5 - parent: 2 - - uid: 3979 - components: - - type: Transform - pos: -21.5,-54.5 - parent: 2 - - uid: 3980 - components: - - type: Transform - pos: -21.5,-55.5 - parent: 2 - - uid: 3981 - components: - - type: Transform - pos: -19.5,-73.5 - parent: 2 - - uid: 3983 - components: - - type: Transform - pos: -11.5,-35.5 - parent: 2 - - uid: 3984 - components: - - type: Transform - pos: -10.5,-35.5 - parent: 2 - - uid: 3985 - components: - - type: Transform - pos: -9.5,-35.5 - parent: 2 - - uid: 3986 - components: - - type: Transform - pos: -9.5,-34.5 - parent: 2 - - uid: 3987 - components: - - type: Transform - pos: -8.5,-34.5 - parent: 2 - - uid: 3988 - components: - - type: Transform - pos: -7.5,-34.5 - parent: 2 - - uid: 3989 - components: - - type: Transform - pos: -6.5,-34.5 - parent: 2 - - uid: 3990 - components: - - type: Transform - pos: -5.5,-34.5 - parent: 2 - - uid: 3991 - components: - - type: Transform - pos: -4.5,-34.5 - parent: 2 - - uid: 3992 - components: - - type: Transform - pos: -4.5,-35.5 - parent: 2 - - uid: 3993 - components: - - type: Transform - pos: -4.5,-36.5 - parent: 2 - - uid: 3994 - components: - - type: Transform - pos: -4.5,-37.5 - parent: 2 - - uid: 3995 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 2 - - uid: 3996 - components: - - type: Transform - pos: -5.5,-38.5 - parent: 2 - - uid: 3997 - components: - - type: Transform - pos: -6.5,-38.5 - parent: 2 - - uid: 3998 - components: - - type: Transform - pos: -7.5,-38.5 - parent: 2 - - uid: 3999 - components: - - type: Transform - pos: -8.5,-38.5 - parent: 2 - - uid: 4000 - components: - - type: Transform - pos: -9.5,-38.5 - parent: 2 - - uid: 4001 - components: - - type: Transform - pos: -9.5,-37.5 - parent: 2 - - uid: 4002 - components: - - type: Transform - pos: -9.5,-36.5 - parent: 2 - - uid: 4003 - components: - - type: Transform - pos: -11.5,-36.5 - parent: 2 - - uid: 4004 - components: - - type: Transform - pos: -12.5,-36.5 - parent: 2 - - uid: 4005 - components: - - type: Transform - pos: -13.5,-36.5 - parent: 2 - - uid: 4006 - components: - - type: Transform - pos: -14.5,-36.5 - parent: 2 - - uid: 4007 - components: - - type: Transform - pos: -14.5,-35.5 - parent: 2 - - uid: 4008 - components: - - type: Transform - pos: -14.5,-34.5 - parent: 2 - - uid: 4009 - components: - - type: Transform - pos: -14.5,-37.5 - parent: 2 - - uid: 4010 - components: - - type: Transform - pos: -14.5,-38.5 - parent: 2 - - uid: 4011 - components: - - type: Transform - pos: -13.5,-38.5 - parent: 2 - - uid: 4012 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 2 - - uid: 4013 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 2 - - uid: 4014 - components: - - type: Transform - pos: -11.5,-34.5 - parent: 2 - - uid: 4015 - components: - - type: Transform - pos: -12.5,-34.5 - parent: 2 - - uid: 4016 - components: - - type: Transform - pos: -13.5,-34.5 - parent: 2 - - uid: 4017 - components: - - type: Transform - pos: 23.5,6.5 - parent: 2 - - uid: 4018 - components: - - type: Transform - pos: -8.5,-44.5 - parent: 2 - - uid: 4019 - components: - - type: Transform - pos: -9.5,-44.5 - parent: 2 - - uid: 4020 - components: - - type: Transform - pos: -11.5,-44.5 - parent: 2 - - uid: 4021 - components: - - type: Transform - pos: -10.5,-44.5 - parent: 2 - - uid: 4022 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 2 - - uid: 4023 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 2 - - uid: 4024 - components: - - type: Transform - pos: -2.5,-56.5 - parent: 2 - - uid: 4025 - components: - - type: Transform - pos: -1.5,-56.5 - parent: 2 - - uid: 4026 - components: - - type: Transform - pos: 0.5,-56.5 - parent: 2 - - uid: 4027 - components: - - type: Transform - pos: -7.5,-44.5 - parent: 2 - - uid: 4028 - components: - - type: Transform - pos: -0.5,-56.5 - parent: 2 - - uid: 4029 - components: - - type: Transform - pos: -0.5,-53.5 - parent: 2 - - uid: 4030 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 2 - - uid: 4031 - components: - - type: Transform - pos: -6.5,-44.5 - parent: 2 - - uid: 4032 - components: - - type: Transform - pos: -0.5,-55.5 - parent: 2 - - uid: 4033 - components: - - type: Transform - pos: -0.5,-54.5 - parent: 2 - - uid: 4034 - components: - - type: Transform - pos: -5.5,-44.5 - parent: 2 - - uid: 4035 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 2 - - uid: 4036 - components: - - type: Transform - pos: -0.5,-49.5 - parent: 2 - - uid: 4037 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 2 - - uid: 4038 - components: - - type: Transform - pos: -0.5,-47.5 - parent: 2 - - uid: 4039 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 2 - - uid: 4040 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 2 - - uid: 4041 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 2 - - uid: 4042 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 2 - - uid: 4043 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 2 - - uid: 4044 - components: - - type: Transform - pos: -0.5,-41.5 - parent: 2 - - uid: 4045 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 2 - - uid: 4046 - components: - - type: Transform - pos: -0.5,-39.5 - parent: 2 - - uid: 4047 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 2 - - uid: 4048 - components: - - type: Transform - pos: -0.5,-37.5 - parent: 2 - - uid: 4049 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 2 - - uid: 4050 - components: - - type: Transform - pos: -0.5,-35.5 - parent: 2 - - uid: 4051 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 2 - - uid: 4052 - components: - - type: Transform - pos: -7.5,-43.5 - parent: 2 - - uid: 4053 - components: - - type: Transform - pos: -7.5,-42.5 - parent: 2 - - uid: 4054 - components: - - type: Transform - pos: -7.5,-54.5 - parent: 2 - - uid: 4055 - components: - - type: Transform - pos: -8.5,-54.5 - parent: 2 - - uid: 4056 - components: - - type: Transform - pos: -6.5,-54.5 - parent: 2 - - uid: 4057 - components: - - type: Transform - pos: -6.5,-53.5 - parent: 2 - - uid: 4058 - components: - - type: Transform - pos: -6.5,-52.5 - parent: 2 - - uid: 4059 - components: - - type: Transform - pos: -6.5,-50.5 - parent: 2 - - uid: 4060 - components: - - type: Transform - pos: -6.5,-51.5 - parent: 2 - - uid: 4061 - components: - - type: Transform - pos: -7.5,-50.5 - parent: 2 - - uid: 4062 - components: - - type: Transform - pos: -6.5,-55.5 - parent: 2 - - uid: 4063 - components: - - type: Transform - pos: -6.5,-56.5 - parent: 2 - - uid: 4064 - components: - - type: Transform - pos: -7.5,-56.5 - parent: 2 - - uid: 4065 - components: - - type: Transform - pos: -8.5,-53.5 - parent: 2 - - uid: 4066 - components: - - type: Transform - pos: -9.5,-53.5 - parent: 2 - - uid: 4067 - components: - - type: Transform - pos: -10.5,-53.5 - parent: 2 - - uid: 4068 - components: - - type: Transform - pos: -11.5,-53.5 - parent: 2 - - uid: 4069 - components: - - type: Transform - pos: -12.5,-53.5 - parent: 2 - - uid: 4070 - components: - - type: Transform - pos: -13.5,-53.5 - parent: 2 - - uid: 4071 - components: - - type: Transform - pos: -13.5,-52.5 - parent: 2 - - uid: 4072 - components: - - type: Transform - pos: -13.5,-51.5 - parent: 2 - - uid: 4073 - components: - - type: Transform - pos: -13.5,-50.5 - parent: 2 - - uid: 4074 - components: - - type: Transform - pos: -13.5,-54.5 - parent: 2 - - uid: 4075 - components: - - type: Transform - pos: -13.5,-55.5 - parent: 2 - - uid: 4076 - components: - - type: Transform - pos: -13.5,-56.5 - parent: 2 - - uid: 4077 - components: - - type: Transform - pos: -14.5,-53.5 - parent: 2 - - uid: 4078 - components: - - type: Transform - pos: -15.5,-53.5 - parent: 2 - - uid: 4079 - components: - - type: Transform - pos: -9.5,-52.5 - parent: 2 - - uid: 4080 - components: - - type: Transform - pos: -9.5,-51.5 - parent: 2 - - uid: 4081 - components: - - type: Transform - pos: -9.5,-50.5 - parent: 2 - - uid: 4082 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 2 - - uid: 4083 - components: - - type: Transform - pos: -9.5,-54.5 - parent: 2 - - uid: 4084 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 2 - - uid: 4085 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 2 - - uid: 4086 - components: - - type: Transform - pos: -9.5,-57.5 - parent: 2 - - uid: 4087 - components: - - type: Transform - pos: -10.5,-54.5 - parent: 2 - - uid: 4088 - components: - - type: Transform - pos: -10.5,-52.5 - parent: 2 - - uid: 4089 - components: - - type: Transform - pos: -7.5,-52.5 - parent: 2 - - uid: 4090 - components: - - type: Transform - pos: -5.5,-52.5 - parent: 2 - - uid: 4091 - components: - - type: Transform - pos: 21.5,42.5 - parent: 2 - - uid: 4092 - components: - - type: Transform - pos: 21.5,41.5 - parent: 2 - - uid: 4093 - components: - - type: Transform - pos: 37.5,-8.5 - parent: 2 - - uid: 4094 - components: - - type: Transform - pos: 7.5,-41.5 - parent: 2 - - uid: 4095 - components: - - type: Transform - pos: 6.5,-41.5 - parent: 2 - - uid: 4096 - components: - - type: Transform - pos: 5.5,-41.5 - parent: 2 - - uid: 4097 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 2 - - uid: 4098 - components: - - type: Transform - pos: 4.5,-41.5 - parent: 2 - - uid: 4099 - components: - - type: Transform - pos: 4.5,-42.5 - parent: 2 - - uid: 4100 - components: - - type: Transform - pos: 4.5,-43.5 - parent: 2 - - uid: 4102 - components: - - type: Transform - pos: 5.5,-43.5 - parent: 2 - - uid: 4103 - components: - - type: Transform - pos: 3.5,-43.5 - parent: 2 - - uid: 4104 - components: - - type: Transform - pos: 2.5,-43.5 - parent: 2 - - uid: 4107 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 2 - - uid: 4108 - components: - - type: Transform - pos: -0.5,-65.5 - parent: 2 - - uid: 4110 - components: - - type: Transform - pos: -2.5,-65.5 - parent: 2 - - uid: 4111 - components: - - type: Transform - pos: 8.5,-41.5 - parent: 2 - - uid: 4112 - components: - - type: Transform - pos: 26.5,35.5 - parent: 2 - - uid: 4126 - components: - - type: Transform - pos: 24.5,50.5 - parent: 2 - - uid: 4140 - components: - - type: Transform - pos: 20.5,-53.5 - parent: 2 - - uid: 4142 - components: - - type: Transform - pos: 20.5,-52.5 - parent: 2 - - uid: 4143 - components: - - type: Transform - pos: 36.5,-42.5 - parent: 2 - - uid: 4160 - components: - - type: Transform - pos: 13.5,-61.5 - parent: 2 - - uid: 4161 - components: - - type: Transform - pos: 12.5,-61.5 - parent: 2 - - uid: 4168 - components: - - type: Transform - pos: -35.5,-20.5 - parent: 2 - - uid: 4173 - components: - - type: Transform - pos: 14.5,-61.5 - parent: 2 - - uid: 4177 - components: - - type: Transform - pos: 38.5,-39.5 - parent: 2 - - uid: 4181 - components: - - type: Transform - pos: 28.5,-29.5 - parent: 2 - - uid: 4182 - components: - - type: Transform - pos: 26.5,-32.5 - parent: 2 - - uid: 4192 - components: - - type: Transform - pos: 20.5,-44.5 - parent: 2 - - uid: 4197 - components: - - type: Transform - pos: 20.5,-46.5 - parent: 2 - - uid: 4198 - components: - - type: Transform - pos: 15.5,-61.5 - parent: 2 - - uid: 4202 - components: - - type: Transform - pos: 20.5,-45.5 - parent: 2 - - uid: 4204 - components: - - type: Transform - pos: 16.5,-61.5 - parent: 2 - - uid: 4205 - components: - - type: Transform - pos: 17.5,-61.5 - parent: 2 - - uid: 4207 - components: - - type: Transform - pos: 24.5,6.5 - parent: 2 - - uid: 4208 - components: - - type: Transform - pos: 18.5,-61.5 + pos: 81.5,59.5 parent: 2 + - type: DeviceList + devices: + - 22402 + - 36588 + - 4458 + - 10998 + - 4454 + - 4456 - uid: 4212 components: - type: Transform - pos: 19.5,-61.5 - parent: 2 - - uid: 4213 - components: - - type: Transform - pos: 20.5,-61.5 - parent: 2 - - uid: 4214 - components: - - type: Transform - pos: 20.5,-47.5 - parent: 2 - - uid: 4215 - components: - - type: Transform - pos: 20.5,-48.5 - parent: 2 - - uid: 4216 - components: - - type: Transform - pos: 20.5,-49.5 - parent: 2 - - uid: 4218 - components: - - type: Transform - pos: 20.5,-50.5 - parent: 2 - - uid: 4219 - components: - - type: Transform - pos: 20.5,-51.5 - parent: 2 - - uid: 4226 - components: - - type: Transform - pos: 20.5,-67.5 - parent: 2 - - uid: 4231 - components: - - type: Transform - pos: 20.5,-66.5 - parent: 2 - - uid: 4246 - components: - - type: Transform - pos: 20.5,-64.5 - parent: 2 - - uid: 4258 - components: - - type: Transform - pos: -30.5,-26.5 - parent: 2 - - uid: 4259 - components: - - type: Transform - pos: -29.5,-25.5 - parent: 2 - - uid: 4265 - components: - - type: Transform - pos: 20.5,-63.5 - parent: 2 - - uid: 4270 - components: - - type: Transform - pos: 20.5,-62.5 - parent: 2 - - uid: 4284 - components: - - type: Transform - pos: 20.5,-60.5 - parent: 2 - - uid: 4299 - components: - - type: Transform - pos: 20.5,-59.5 - parent: 2 - - uid: 4300 - components: - - type: Transform - pos: 20.5,-57.5 - parent: 2 - - uid: 4302 - components: - - type: Transform - pos: 20.5,-58.5 - parent: 2 - - uid: 4304 - components: - - type: Transform - pos: -4.5,-43.5 - parent: 2 - - uid: 4305 - components: - - type: Transform - pos: 8.5,-50.5 - parent: 2 - - uid: 4306 - components: - - type: Transform - pos: 8.5,-51.5 - parent: 2 - - uid: 4307 - components: - - type: Transform - pos: 8.5,-52.5 - parent: 2 - - uid: 4308 - components: - - type: Transform - pos: 8.5,-53.5 - parent: 2 - - uid: 4309 - components: - - type: Transform - pos: 8.5,-54.5 - parent: 2 - - uid: 4310 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 2 - - uid: 4311 - components: - - type: Transform - pos: 7.5,-54.5 - parent: 2 - - uid: 4312 - components: - - type: Transform - pos: 6.5,-54.5 - parent: 2 - - uid: 4313 - components: - - type: Transform - pos: 6.5,-53.5 - parent: 2 - - uid: 4316 - components: - - type: Transform - pos: 9.5,-76.5 - parent: 2 - - uid: 4318 - components: - - type: Transform - pos: -1.5,-52.5 - parent: 2 - - uid: 4319 - components: - - type: Transform - pos: 74.5,14.5 - parent: 2 - - uid: 4320 - components: - - type: Transform - pos: 5.5,-73.5 - parent: 2 - - uid: 4321 - components: - - type: Transform - pos: 4.5,-73.5 - parent: 2 - - uid: 4322 - components: - - type: Transform - pos: 3.5,-73.5 - parent: 2 - - uid: 4328 - components: - - type: Transform - pos: 77.5,7.5 - parent: 2 - - uid: 4330 - components: - - type: Transform - pos: 4.5,-49.5 - parent: 2 - - uid: 4333 - components: - - type: Transform - pos: -7.5,-68.5 - parent: 2 - - uid: 4334 - components: - - type: Transform - pos: 5.5,-47.5 - parent: 2 - - uid: 4335 - components: - - type: Transform - pos: 5.5,-48.5 - parent: 2 - - uid: 4336 - components: - - type: Transform - pos: 7.5,-44.5 - parent: 2 - - uid: 4337 - components: - - type: Transform - pos: 4.5,-46.5 - parent: 2 - - uid: 4343 - components: - - type: Transform - pos: 7.5,-70.5 - parent: 2 - - uid: 4345 - components: - - type: Transform - pos: 8.5,-70.5 - parent: 2 - - uid: 4346 - components: - - type: Transform - pos: 9.5,-73.5 - parent: 2 - - uid: 4347 - components: - - type: Transform - pos: -3.5,-78.5 - parent: 2 - - uid: 4348 - components: - - type: Transform - pos: -4.5,-78.5 - parent: 2 - - uid: 4349 - components: - - type: Transform - pos: -5.5,-78.5 - parent: 2 - - uid: 4350 - components: - - type: Transform - pos: 2.5,-78.5 - parent: 2 - - uid: 4351 - components: - - type: Transform - pos: 3.5,-78.5 - parent: 2 - - uid: 4352 - components: - - type: Transform - pos: 4.5,-78.5 - parent: 2 - - uid: 4353 - components: - - type: Transform - pos: 7.5,-60.5 - parent: 2 - - uid: 4354 - components: - - type: Transform - pos: 22.5,6.5 - parent: 2 - - uid: 4355 - components: - - type: Transform - pos: 75.5,14.5 - parent: 2 - - uid: 4356 - components: - - type: Transform - pos: 22.5,-22.5 - parent: 2 - - uid: 4357 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 2 - - uid: 4358 - components: - - type: Transform - pos: 26.5,6.5 - parent: 2 - - uid: 4366 - components: - - type: Transform - pos: -5.5,-67.5 - parent: 2 - - uid: 4367 - components: - - type: Transform - pos: -6.5,-67.5 - parent: 2 - - uid: 4368 - components: - - type: Transform - pos: -7.5,-67.5 - parent: 2 - - uid: 4369 - components: - - type: Transform - pos: 72.5,14.5 - parent: 2 - - uid: 4370 - components: - - type: Transform - pos: -9.5,-69.5 - parent: 2 - - uid: 4376 - components: - - type: Transform - pos: 7.5,-67.5 - parent: 2 - - uid: 4377 - components: - - type: Transform - pos: 8.5,-67.5 - parent: 2 - - uid: 4378 - components: - - type: Transform - pos: 8.5,-68.5 - parent: 2 - - uid: 4379 - components: - - type: Transform - pos: 8.5,-69.5 - parent: 2 - - uid: 4381 - components: - - type: Transform - pos: 8.5,-72.5 - parent: 2 - - uid: 4382 - components: - - type: Transform - pos: 8.5,-73.5 - parent: 2 - - uid: 4383 - components: - - type: Transform - pos: 8.5,-74.5 - parent: 2 - - uid: 4384 - components: - - type: Transform - pos: 8.5,-75.5 - parent: 2 - - uid: 4385 - components: - - type: Transform - pos: 5.5,-46.5 - parent: 2 - - uid: 4386 - components: - - type: Transform - pos: 7.5,-74.5 - parent: 2 - - uid: 4387 - components: - - type: Transform - pos: 6.5,-74.5 - parent: 2 - - uid: 4388 - components: - - type: Transform - pos: 5.5,-74.5 - parent: 2 - - uid: 4389 - components: - - type: Transform - pos: -10.5,-69.5 - parent: 2 - - uid: 4390 - components: - - type: Transform - pos: -11.5,-69.5 - parent: 2 - - uid: 4391 - components: - - type: Transform - pos: -12.5,-69.5 - parent: 2 - - uid: 4392 - components: - - type: Transform - pos: -13.5,-69.5 - parent: 2 - - uid: 4393 - components: - - type: Transform - pos: -14.5,-69.5 - parent: 2 - - uid: 4394 - components: - - type: Transform - pos: -15.5,-69.5 - parent: 2 - - uid: 4395 - components: - - type: Transform - pos: -16.5,-69.5 - parent: 2 - - uid: 4396 - components: - - type: Transform - pos: 7.5,-50.5 - parent: 2 - - uid: 4398 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 2 - - uid: 4399 - components: - - type: Transform - pos: 8.5,-56.5 - parent: 2 - - uid: 4400 - components: - - type: Transform - pos: 7.5,-56.5 - parent: 2 - - uid: 4401 - components: - - type: Transform - pos: 6.5,-56.5 - parent: 2 - - uid: 4402 - components: - - type: Transform - pos: 5.5,-56.5 - parent: 2 - - uid: 4403 - components: - - type: Transform - pos: 4.5,-56.5 - parent: 2 - - uid: 4404 - components: - - type: Transform - pos: 4.5,-55.5 - parent: 2 - - uid: 4405 - components: - - type: Transform - pos: 4.5,-54.5 - parent: 2 - - uid: 4406 - components: - - type: Transform - pos: 4.5,-53.5 - parent: 2 - - uid: 4411 - components: - - type: Transform - pos: -12.5,-59.5 - parent: 2 - - uid: 4414 - components: - - type: Transform - pos: -16.5,-59.5 - parent: 2 - - uid: 4415 - components: - - type: Transform - pos: -17.5,-59.5 - parent: 2 - - uid: 4419 - components: - - type: Transform - pos: -20.5,-69.5 - parent: 2 - - uid: 4420 - components: - - type: Transform - pos: -19.5,-69.5 - parent: 2 - - uid: 4421 - components: - - type: Transform - pos: -19.5,-70.5 - parent: 2 - - uid: 4422 - components: - - type: Transform - pos: -19.5,-71.5 - parent: 2 - - uid: 4432 - components: - - type: Transform - pos: 3.5,-69.5 - parent: 2 - - uid: 4433 - components: - - type: Transform - pos: 2.5,-69.5 - parent: 2 - - uid: 4434 - components: - - type: Transform - pos: 1.5,-69.5 - parent: 2 - - uid: 4435 - components: - - type: Transform - pos: 0.5,-69.5 - parent: 2 - - uid: 4436 - components: - - type: Transform - pos: -0.5,-69.5 - parent: 2 - - uid: 4437 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 2 - - uid: 4438 - components: - - type: Transform - pos: 1.5,-60.5 - parent: 2 - - uid: 4439 - components: - - type: Transform - pos: 2.5,-60.5 - parent: 2 - - uid: 4440 - components: - - type: Transform - pos: 3.5,-60.5 - parent: 2 - - uid: 4441 - components: - - type: Transform - pos: 4.5,-60.5 - parent: 2 - - uid: 4442 - components: - - type: Transform - pos: 5.5,-60.5 - parent: 2 - - uid: 4443 - components: - - type: Transform - pos: 6.5,-60.5 - parent: 2 - - uid: 4444 - components: - - type: Transform - pos: 4.5,-61.5 - parent: 2 - - uid: 4445 - components: - - type: Transform - pos: 4.5,-62.5 - parent: 2 - - uid: 4446 - components: - - type: Transform - pos: 4.5,-63.5 - parent: 2 - - uid: 4447 - components: - - type: Transform - pos: -40.5,-25.5 - parent: 2 - - uid: 4448 - components: - - type: Transform - pos: 5.5,-49.5 - parent: 2 - - uid: 4452 - components: - - type: Transform - pos: -33.5,-28.5 - parent: 2 - - uid: 4453 - components: - - type: Transform - pos: -18.5,2.5 - parent: 2 - - uid: 4455 - components: - - type: Transform - pos: -1.5,-69.5 - parent: 2 - - uid: 4456 - components: - - type: Transform - pos: -1.5,-68.5 - parent: 2 - - uid: 4458 - components: - - type: Transform - pos: 55.5,8.5 - parent: 2 - - uid: 4460 - components: - - type: Transform - pos: -39.5,-30.5 - parent: 2 - - uid: 4461 - components: - - type: Transform - pos: -44.5,-30.5 - parent: 2 - - uid: 4462 - components: - - type: Transform - pos: -40.5,-30.5 - parent: 2 - - uid: 4463 - components: - - type: Transform - pos: 8.5,-66.5 - parent: 2 - - uid: 4464 - components: - - type: Transform - pos: 30.5,-26.5 - parent: 2 - - uid: 4466 - components: - - type: Transform - pos: -24.5,-30.5 - parent: 2 + pos: 72.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 21086 + - 4460 + - 21177 + - 4469 + - 4468 + - 6749 + - uid: 4465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 5135 + - 4225 + - 20345 + - 20347 + - 20348 + - 20349 + - 30093 + - 20056 + - 20076 + - 20174 + - 20055 + - 20098 + - 4466 + - 11991 - uid: 4467 components: - type: Transform - pos: 21.5,-21.5 - parent: 2 - - uid: 4468 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 2 - - uid: 4469 - components: - - type: Transform - pos: 19.5,-21.5 - parent: 2 - - uid: 4470 - components: - - type: Transform - pos: 19.5,-20.5 - parent: 2 - - uid: 4471 - components: - - type: Transform - pos: 19.5,-19.5 - parent: 2 - - uid: 4472 - components: - - type: Transform - pos: 19.5,-18.5 - parent: 2 - - uid: 4473 - components: - - type: Transform - pos: 19.5,-17.5 - parent: 2 - - uid: 4474 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 2 - - uid: 4475 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 2 - - uid: 4476 - components: - - type: Transform - pos: 22.5,-17.5 - parent: 2 - - uid: 4477 - components: - - type: Transform - pos: 23.5,-17.5 - parent: 2 - - uid: 4478 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 2 - - uid: 4479 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 2 - - uid: 4480 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 2 - - uid: 4481 - components: - - type: Transform - pos: 30.5,-24.5 - parent: 2 - - uid: 4482 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 2 - - uid: 4483 - components: - - type: Transform - pos: 29.5,-23.5 - parent: 2 - - uid: 4484 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 2 - - uid: 4485 - components: - - type: Transform - pos: 27.5,-23.5 - parent: 2 - - uid: 4486 - components: - - type: Transform - pos: 26.5,-23.5 - parent: 2 - - uid: 4487 - components: - - type: Transform - pos: 25.5,-23.5 - parent: 2 - - uid: 4488 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 2 - - uid: 4489 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 2 - - uid: 4490 - components: - - type: Transform - pos: 24.5,-25.5 - parent: 2 - - uid: 4491 - components: - - type: Transform - pos: 23.5,-25.5 - parent: 2 - - uid: 4492 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 2 - - uid: 4493 - components: - - type: Transform - pos: 21.5,-25.5 - parent: 2 - - uid: 4494 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 2 - - uid: 4496 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 2 - - uid: 4497 - components: - - type: Transform - pos: 31.5,-23.5 - parent: 2 - - uid: 4499 - components: - - type: Transform - pos: 33.5,-23.5 - parent: 2 - - uid: 4500 - components: - - type: Transform - pos: 34.5,-23.5 - parent: 2 - - uid: 4501 - components: - - type: Transform - pos: 35.5,-23.5 - parent: 2 - - uid: 4502 - components: - - type: Transform - pos: 36.5,-23.5 - parent: 2 - - uid: 4503 - components: - - type: Transform - pos: 37.5,-23.5 - parent: 2 - - uid: 4504 - components: - - type: Transform - pos: 38.5,-23.5 - parent: 2 - - uid: 4505 - components: - - type: Transform - pos: 39.5,-23.5 - parent: 2 - - uid: 4506 - components: - - type: Transform - pos: 39.5,-22.5 - parent: 2 - - uid: 4507 - components: - - type: Transform - pos: 42.5,-22.5 - parent: 2 - - uid: 4508 - components: - - type: Transform - pos: 43.5,-22.5 - parent: 2 - - uid: 4509 - components: - - type: Transform - pos: 44.5,-22.5 - parent: 2 - - uid: 4510 - components: - - type: Transform - pos: 45.5,-22.5 - parent: 2 - - uid: 4511 - components: - - type: Transform - pos: 46.5,-22.5 - parent: 2 - - uid: 4512 - components: - - type: Transform - pos: 40.5,-17.5 - parent: 2 - - uid: 4513 - components: - - type: Transform - pos: 39.5,-17.5 - parent: 2 - - uid: 4514 - components: - - type: Transform - pos: 38.5,-17.5 - parent: 2 - - uid: 4515 - components: - - type: Transform - pos: 38.5,-18.5 - parent: 2 - - uid: 4516 - components: - - type: Transform - pos: 38.5,-19.5 - parent: 2 - - uid: 4517 - components: - - type: Transform - pos: 38.5,-20.5 - parent: 2 - - uid: 4518 - components: - - type: Transform - pos: 37.5,-20.5 - parent: 2 - - uid: 4519 - components: - - type: Transform - pos: 39.5,-20.5 - parent: 2 - - uid: 4520 - components: - - type: Transform - pos: 36.5,-24.5 - parent: 2 - - uid: 4521 - components: - - type: Transform - pos: 36.5,-25.5 - parent: 2 - - uid: 4522 - components: - - type: Transform - pos: 36.5,-26.5 - parent: 2 - - uid: 4523 - components: - - type: Transform - pos: 36.5,-27.5 - parent: 2 - - uid: 4524 - components: - - type: Transform - pos: 36.5,-28.5 - parent: 2 - - uid: 4525 - components: - - type: Transform - pos: 36.5,-29.5 - parent: 2 - - uid: 4526 - components: - - type: Transform - pos: 36.5,-30.5 - parent: 2 - - uid: 4527 - components: - - type: Transform - pos: 36.5,-31.5 - parent: 2 - - uid: 4528 - components: - - type: Transform - pos: 36.5,-32.5 - parent: 2 - - uid: 4529 - components: - - type: Transform - pos: 37.5,-32.5 - parent: 2 - - uid: 4530 - components: - - type: Transform - pos: 38.5,-32.5 - parent: 2 - - uid: 4531 - components: - - type: Transform - pos: 39.5,-32.5 - parent: 2 - - uid: 4532 - components: - - type: Transform - pos: 40.5,-32.5 - parent: 2 - - uid: 4533 - components: - - type: Transform - pos: 41.5,-32.5 - parent: 2 - - uid: 4534 - components: - - type: Transform - pos: 41.5,-33.5 - parent: 2 - - uid: 4535 - components: - - type: Transform - pos: 41.5,-34.5 - parent: 2 - - uid: 4536 - components: - - type: Transform - pos: 41.5,-35.5 - parent: 2 - - uid: 4537 - components: - - type: Transform - pos: 40.5,-35.5 - parent: 2 - - uid: 4538 - components: - - type: Transform - pos: 40.5,-36.5 - parent: 2 - - uid: 4539 - components: - - type: Transform - pos: 40.5,-37.5 - parent: 2 - - uid: 4540 - components: - - type: Transform - pos: 40.5,-38.5 - parent: 2 - - uid: 4541 - components: - - type: Transform - pos: 40.5,-39.5 - parent: 2 - - uid: 4542 - components: - - type: Transform - pos: 37.5,-54.5 - parent: 2 - - uid: 4543 - components: - - type: Transform - pos: 37.5,-53.5 - parent: 2 - - uid: 4545 - components: - - type: Transform - pos: -51.5,-27.5 - parent: 2 - - uid: 4546 - components: - - type: Transform - pos: 37.5,-39.5 - parent: 2 - - uid: 4547 - components: - - type: Transform - pos: 36.5,-39.5 - parent: 2 - - uid: 4548 - components: - - type: Transform - pos: 35.5,-39.5 - parent: 2 - - uid: 4549 - components: - - type: Transform - pos: 35.5,-40.5 - parent: 2 - - uid: 4550 - components: - - type: Transform - pos: 35.5,-41.5 - parent: 2 - - uid: 4551 - components: - - type: Transform - pos: 35.5,-42.5 - parent: 2 - - uid: 4552 - components: - - type: Transform - pos: 38.5,-38.5 - parent: 2 - - uid: 4553 - components: - - type: Transform - pos: 38.5,-40.5 - parent: 2 - - uid: 4554 - components: - - type: Transform - pos: 43.5,-36.5 - parent: 2 - - uid: 4555 - components: - - type: Transform - pos: 43.5,-35.5 - parent: 2 - - uid: 4556 - components: - - type: Transform - pos: 45.5,-35.5 - parent: 2 - - uid: 4557 - components: - - type: Transform - pos: 44.5,-35.5 - parent: 2 - - uid: 4558 - components: - - type: Transform - pos: 44.5,-32.5 - parent: 2 - - uid: 4559 - components: - - type: Transform - pos: 45.5,-32.5 - parent: 2 - - uid: 4560 - components: - - type: Transform - pos: 46.5,-32.5 - parent: 2 - - uid: 4561 - components: - - type: Transform - pos: 46.5,-33.5 - parent: 2 - - uid: 4562 - components: - - type: Transform - pos: 46.5,-34.5 - parent: 2 - - uid: 4563 - components: - - type: Transform - pos: 46.5,-35.5 - parent: 2 - - uid: 4564 - components: - - type: Transform - pos: 42.5,-29.5 - parent: 2 - - uid: 4565 - components: - - type: Transform - pos: 42.5,-28.5 - parent: 2 - - uid: 4566 - components: - - type: Transform - pos: 42.5,-27.5 - parent: 2 - - uid: 4567 - components: - - type: Transform - pos: 42.5,-26.5 - parent: 2 - - uid: 4568 - components: - - type: Transform - pos: 43.5,-26.5 - parent: 2 - - uid: 4569 - components: - - type: Transform - pos: 42.5,-24.5 - parent: 2 - - uid: 4570 - components: - - type: Transform - pos: 41.5,-25.5 - parent: 2 - - uid: 4571 - components: - - type: Transform - pos: 40.5,-25.5 - parent: 2 - - uid: 4572 - components: - - type: Transform - pos: 43.5,-24.5 - parent: 2 - - uid: 4573 - components: - - type: Transform - pos: 44.5,-24.5 - parent: 2 - - uid: 4574 - components: - - type: Transform - pos: 45.5,-24.5 - parent: 2 - - uid: 4575 - components: - - type: Transform - pos: 46.5,-24.5 - parent: 2 - - uid: 4576 - components: - - type: Transform - pos: 43.5,-28.5 - parent: 2 - - uid: 4577 - components: - - type: Transform - pos: 44.5,-28.5 - parent: 2 - - uid: 4578 - components: - - type: Transform - pos: 45.5,-28.5 - parent: 2 - - uid: 4579 - components: - - type: Transform - pos: 46.5,-28.5 - parent: 2 - - uid: 4580 - components: - - type: Transform - pos: 46.5,-27.5 - parent: 2 - - uid: 4581 - components: - - type: Transform - pos: 46.5,-26.5 - parent: 2 - - uid: 4582 - components: - - type: Transform - pos: 45.5,-26.5 - parent: 2 - - uid: 4583 - components: - - type: Transform - pos: 44.5,-26.5 - parent: 2 - - uid: 4584 - components: - - type: Transform - pos: 41.5,-28.5 - parent: 2 - - uid: 4585 - components: - - type: Transform - pos: 40.5,-28.5 - parent: 2 - - uid: 4586 - components: - - type: Transform - pos: 39.5,-28.5 - parent: 2 - - uid: 4587 - components: - - type: Transform - pos: 39.5,-27.5 - parent: 2 - - uid: 4588 - components: - - type: Transform - pos: 42.5,-47.5 - parent: 2 - - uid: 4589 - components: - - type: Transform - pos: 42.5,-46.5 - parent: 2 - - uid: 4590 - components: - - type: Transform - pos: 42.5,-45.5 - parent: 2 - - uid: 4593 - components: - - type: Transform - pos: 43.5,-45.5 - parent: 2 - - uid: 4594 - components: - - type: Transform - pos: 44.5,-45.5 - parent: 2 - - uid: 4595 - components: - - type: Transform - pos: 45.5,-45.5 - parent: 2 - - uid: 4596 - components: - - type: Transform - pos: 45.5,-46.5 - parent: 2 - - uid: 4597 - components: - - type: Transform - pos: 41.5,-45.5 - parent: 2 - - uid: 4598 - components: - - type: Transform - pos: 40.5,-45.5 - parent: 2 - - uid: 4599 - components: - - type: Transform - pos: 39.5,-45.5 - parent: 2 - - uid: 4600 - components: - - type: Transform - pos: 38.5,-45.5 - parent: 2 - - uid: 4601 - components: - - type: Transform - pos: 37.5,-45.5 - parent: 2 - - uid: 4602 - components: - - type: Transform - pos: 36.5,-45.5 - parent: 2 - - uid: 4603 - components: - - type: Transform - pos: 35.5,-45.5 - parent: 2 - - uid: 4604 - components: - - type: Transform - pos: 40.5,-46.5 - parent: 2 - - uid: 4605 - components: - - type: Transform - pos: 40.5,-47.5 - parent: 2 - - uid: 4606 - components: - - type: Transform - pos: 40.5,-48.5 - parent: 2 - - uid: 4607 - components: - - type: Transform - pos: 36.5,-48.5 - parent: 2 - - uid: 4608 - components: - - type: Transform - pos: 38.5,-48.5 - parent: 2 - - uid: 4609 - components: - - type: Transform - pos: 37.5,-48.5 - parent: 2 - - uid: 4610 - components: - - type: Transform - pos: 35.5,-48.5 - parent: 2 - - uid: 4611 - components: - - type: Transform - pos: 40.5,-44.5 - parent: 2 - - uid: 4612 - components: - - type: Transform - pos: 40.5,-43.5 - parent: 2 - - uid: 4613 - components: - - type: Transform - pos: 37.5,-52.5 - parent: 2 - - uid: 4614 - components: - - type: Transform - pos: 36.5,-52.5 - parent: 2 - - uid: 4615 - components: - - type: Transform - pos: 35.5,-52.5 - parent: 2 - - uid: 4616 - components: - - type: Transform - pos: 35.5,-53.5 - parent: 2 - - uid: 4617 - components: - - type: Transform - pos: 35.5,-54.5 - parent: 2 - - uid: 4618 - components: - - type: Transform - pos: 37.5,-55.5 - parent: 2 - - uid: 4619 - components: - - type: Transform - pos: 38.5,-55.5 - parent: 2 - - uid: 4620 - components: - - type: Transform - pos: 39.5,-55.5 - parent: 2 - - uid: 4621 - components: - - type: Transform - pos: 40.5,-55.5 - parent: 2 - - uid: 4622 - components: - - type: Transform - pos: 40.5,-54.5 - parent: 2 - - uid: 4623 - components: - - type: Transform - pos: 40.5,-53.5 - parent: 2 - - uid: 4624 - components: - - type: Transform - pos: 40.5,-52.5 - parent: 2 - - uid: 4625 - components: - - type: Transform - pos: 40.5,-51.5 - parent: 2 - - uid: 4626 - components: - - type: Transform - pos: 39.5,-56.5 - parent: 2 - - uid: 4627 - components: - - type: Transform - pos: 39.5,-57.5 - parent: 2 - - uid: 4628 - components: - - type: Transform - pos: 39.5,-58.5 - parent: 2 - - uid: 4629 - components: - - type: Transform - pos: 39.5,-59.5 - parent: 2 - - uid: 4630 - components: - - type: Transform - pos: 40.5,-59.5 - parent: 2 - - uid: 4631 - components: - - type: Transform - pos: 41.5,-59.5 - parent: 2 - - uid: 4632 - components: - - type: Transform - pos: 42.5,-59.5 - parent: 2 - - uid: 4633 - components: - - type: Transform - pos: 42.5,-60.5 - parent: 2 - - uid: 4634 - components: - - type: Transform - pos: 42.5,-57.5 - parent: 2 - - uid: 4635 - components: - - type: Transform - pos: 45.5,-59.5 - parent: 2 - - uid: 4636 - components: - - type: Transform - pos: 42.5,-58.5 - parent: 2 - - uid: 4637 - components: - - type: Transform - pos: 45.5,-58.5 - parent: 2 - - uid: 4638 - components: - - type: Transform - pos: 45.5,-57.5 - parent: 2 - - uid: 4639 - components: - - type: Transform - pos: 44.5,-57.5 - parent: 2 - - uid: 4640 - components: - - type: Transform - pos: 46.5,-57.5 - parent: 2 - - uid: 4641 - components: - - type: Transform - pos: 45.5,-60.5 - parent: 2 - - uid: 4642 - components: - - type: Transform - pos: 44.5,-59.5 - parent: 2 - - uid: 4643 - components: - - type: Transform - pos: 43.5,-59.5 - parent: 2 - - uid: 4644 - components: - - type: Transform - pos: 45.5,-56.5 - parent: 2 - - uid: 4645 - components: - - type: Transform - pos: 45.5,-55.5 - parent: 2 - - uid: 4646 - components: - - type: Transform - pos: 45.5,-54.5 - parent: 2 - - uid: 4647 - components: - - type: Transform - pos: 44.5,-54.5 - parent: 2 - - uid: 4648 - components: - - type: Transform - pos: 43.5,-54.5 - parent: 2 - - uid: 4649 - components: - - type: Transform - pos: 46.5,-54.5 - parent: 2 - - uid: 4650 - components: - - type: Transform - pos: 47.5,-54.5 - parent: 2 - - uid: 4651 - components: - - type: Transform - pos: 45.5,-53.5 - parent: 2 - - uid: 4652 - components: - - type: Transform - pos: 46.5,-23.5 - parent: 2 - - uid: 4653 - components: - - type: Transform - pos: 23.5,-33.5 - parent: 2 - - uid: 4654 - components: - - type: Transform - pos: 22.5,-33.5 - parent: 2 - - uid: 4655 - components: - - type: Transform - pos: 21.5,-33.5 - parent: 2 - - uid: 4656 - components: - - type: Transform - pos: 20.5,-33.5 - parent: 2 - - uid: 4657 - components: - - type: Transform - pos: 20.5,-32.5 - parent: 2 - - uid: 4658 - components: - - type: Transform - pos: 20.5,-31.5 - parent: 2 - - uid: 4659 - components: - - type: Transform - pos: 20.5,-30.5 - parent: 2 - - uid: 4660 - components: - - type: Transform - pos: 20.5,-29.5 - parent: 2 - - uid: 4661 - components: - - type: Transform - pos: 21.5,-31.5 - parent: 2 - - uid: 4662 - components: - - type: Transform - pos: 22.5,-31.5 - parent: 2 - - uid: 4663 - components: - - type: Transform - pos: 19.5,-31.5 - parent: 2 - - uid: 4664 - components: - - type: Transform - pos: 18.5,-31.5 - parent: 2 - - uid: 4665 - components: - - type: Transform - pos: 20.5,-34.5 - parent: 2 - - uid: 4666 - components: - - type: Transform - pos: 20.5,-35.5 - parent: 2 - - uid: 4667 - components: - - type: Transform - pos: 24.5,-33.5 - parent: 2 - - uid: 4668 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 2 - - uid: 4669 - components: - - type: Transform - pos: 25.5,-32.5 - parent: 2 - - uid: 4670 - components: - - type: Transform - pos: 25.5,-31.5 - parent: 2 - - uid: 4671 - components: - - type: Transform - pos: 24.5,-31.5 - parent: 2 - - uid: 4672 - components: - - type: Transform - pos: 26.5,-31.5 - parent: 2 - - uid: 4673 - components: - - type: Transform - pos: -53.5,-27.5 - parent: 2 - - uid: 4674 - components: - - type: Transform - pos: -56.5,-25.5 - parent: 2 - - uid: 4675 - components: - - type: Transform - pos: -56.5,-24.5 - parent: 2 - - uid: 4676 - components: - - type: Transform - pos: 35.5,-29.5 - parent: 2 - - uid: 4677 - components: - - type: Transform - pos: 34.5,-29.5 - parent: 2 - - uid: 4678 - components: - - type: Transform - pos: 33.5,-29.5 - parent: 2 - - uid: 4679 - components: - - type: Transform - pos: 32.5,-29.5 - parent: 2 - - uid: 4680 - components: - - type: Transform - pos: 31.5,-29.5 - parent: 2 - - uid: 4681 - components: - - type: Transform - pos: 30.5,-29.5 - parent: 2 - - uid: 4682 - components: - - type: Transform - pos: 29.5,-29.5 - parent: 2 - - uid: 4683 - components: - - type: Transform - pos: 29.5,-28.5 - parent: 2 - - uid: 4684 - components: - - type: Transform - pos: 29.5,-27.5 - parent: 2 - - uid: 4685 - components: - - type: Transform - pos: 29.5,-26.5 - parent: 2 - - uid: 4686 - components: - - type: Transform - pos: 31.5,-28.5 - parent: 2 - - uid: 4687 - components: - - type: Transform - pos: 31.5,-27.5 - parent: 2 - - uid: 4688 - components: - - type: Transform - pos: 31.5,-26.5 - parent: 2 - - uid: 4689 - components: - - type: Transform - pos: 33.5,-28.5 - parent: 2 - - uid: 4690 - components: - - type: Transform - pos: 33.5,-27.5 - parent: 2 - - uid: 4691 - components: - - type: Transform - pos: 33.5,-26.5 - parent: 2 - - uid: 4692 - components: - - type: Transform - pos: 35.5,-32.5 - parent: 2 - - uid: 4693 - components: - - type: Transform - pos: 33.5,-33.5 - parent: 2 - - uid: 4694 - components: - - type: Transform - pos: 32.5,-33.5 - parent: 2 - - uid: 4695 - components: - - type: Transform - pos: 31.5,-33.5 - parent: 2 - - uid: 4696 - components: - - type: Transform - pos: 30.5,-33.5 - parent: 2 - - uid: 4697 - components: - - type: Transform - pos: 29.5,-33.5 - parent: 2 - - uid: 4698 - components: - - type: Transform - pos: 29.5,-34.5 - parent: 2 - - uid: 4699 - components: - - type: Transform - pos: 29.5,-35.5 - parent: 2 - - uid: 4700 - components: - - type: Transform - pos: 30.5,-35.5 - parent: 2 - - uid: 4701 - components: - - type: Transform - pos: 31.5,-35.5 - parent: 2 - - uid: 4702 - components: - - type: Transform - pos: 32.5,-35.5 - parent: 2 - - uid: 4703 - components: - - type: Transform - pos: -36.5,-28.5 - parent: 2 - - uid: 4704 - components: - - type: Transform - pos: 47.5,-19.5 - parent: 2 - - uid: 4705 - components: - - type: Transform - pos: 46.5,-19.5 - parent: 2 - - uid: 4706 - components: - - type: Transform - pos: 44.5,-19.5 - parent: 2 - - uid: 4707 - components: - - type: Transform - pos: 43.5,-19.5 - parent: 2 - - uid: 4708 - components: - - type: Transform - pos: 42.5,-19.5 - parent: 2 - - uid: 4709 - components: - - type: Transform - pos: 42.5,-18.5 - parent: 2 - - uid: 4710 - components: - - type: Transform - pos: 42.5,-17.5 - parent: 2 - - uid: 4711 - components: - - type: Transform - pos: 43.5,-17.5 - parent: 2 - - uid: 4712 - components: - - type: Transform - pos: 44.5,-17.5 - parent: 2 - - uid: 4713 - components: - - type: Transform - pos: 45.5,-17.5 - parent: 2 - - uid: 4714 - components: - - type: Transform - pos: 46.5,-17.5 - parent: 2 - - uid: 4715 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 2 - - uid: 4716 - components: - - type: Transform - pos: 55.5,-23.5 - parent: 2 - - uid: 4717 - components: - - type: Transform - pos: 34.5,-18.5 - parent: 2 - - uid: 4718 - components: - - type: Transform - pos: 34.5,-17.5 - parent: 2 - - uid: 4719 - components: - - type: Transform - pos: 34.5,-16.5 - parent: 2 - - uid: 4720 - components: - - type: Transform - pos: 5.5,-68.5 - parent: 2 - - uid: 4721 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 2 - - uid: 4722 - components: - - type: Transform - pos: 28.5,-18.5 - parent: 2 - - uid: 4723 - components: - - type: Transform - pos: 27.5,-18.5 - parent: 2 - - uid: 4724 - components: - - type: Transform - pos: 26.5,-18.5 - parent: 2 - - uid: 4725 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 2 - - uid: 4726 - components: - - type: Transform - pos: 26.5,-17.5 - parent: 2 - - uid: 4727 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 2 - - uid: 4728 - components: - - type: Transform - pos: 26.5,-15.5 - parent: 2 - - uid: 4729 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 2 - - uid: 4730 - components: - - type: Transform - pos: 46.5,-40.5 - parent: 2 - - uid: 4731 - components: - - type: Transform - pos: 46.5,-41.5 - parent: 2 - - uid: 4732 - components: - - type: Transform - pos: 46.5,-42.5 - parent: 2 - - uid: 4733 - components: - - type: Transform - pos: 45.5,-42.5 - parent: 2 - - uid: 4734 - components: - - type: Transform - pos: 44.5,-42.5 - parent: 2 - - uid: 4735 - components: - - type: Transform - pos: 43.5,-42.5 - parent: 2 - - uid: 4736 - components: - - type: Transform - pos: 43.5,-41.5 - parent: 2 - - uid: 4737 - components: - - type: Transform - pos: 43.5,-40.5 - parent: 2 - - uid: 4738 - components: - - type: Transform - pos: 43.5,-39.5 - parent: 2 - - uid: 4739 - components: - - type: Transform - pos: 47.5,-39.5 - parent: 2 - - uid: 4740 - components: - - type: Transform - pos: 47.5,-40.5 - parent: 2 - - uid: 4741 - components: - - type: Transform - pos: 47.5,-42.5 - parent: 2 - - uid: 4742 - components: - - type: Transform - pos: 48.5,-42.5 - parent: 2 - - uid: 4743 - components: - - type: Transform - pos: 49.5,-42.5 - parent: 2 - - uid: 4744 - components: - - type: Transform - pos: 49.5,-41.5 - parent: 2 - - uid: 4745 - components: - - type: Transform - pos: 49.5,-40.5 - parent: 2 - - uid: 4746 - components: - - type: Transform - pos: 49.5,-39.5 - parent: 2 - - uid: 4747 - components: - - type: Transform - pos: 49.5,-38.5 - parent: 2 - - uid: 4748 - components: - - type: Transform - pos: 49.5,-37.5 - parent: 2 - - uid: 4749 - components: - - type: Transform - pos: 49.5,-36.5 - parent: 2 - - uid: 4750 - components: - - type: Transform - pos: 49.5,-35.5 - parent: 2 - - uid: 4751 - components: - - type: Transform - pos: 49.5,-34.5 - parent: 2 - - uid: 4752 - components: - - type: Transform - pos: 49.5,-33.5 - parent: 2 - - uid: 4753 - components: - - type: Transform - pos: 49.5,-32.5 - parent: 2 - - uid: 4754 - components: - - type: Transform - pos: 49.5,-31.5 - parent: 2 - - uid: 4755 - components: - - type: Transform - pos: 49.5,-30.5 - parent: 2 - - uid: 4756 - components: - - type: Transform - pos: 49.5,-29.5 - parent: 2 - - uid: 4757 - components: - - type: Transform - pos: 49.5,-28.5 - parent: 2 - - uid: 4758 - components: - - type: Transform - pos: 49.5,-27.5 - parent: 2 - - uid: 4759 - components: - - type: Transform - pos: 49.5,-26.5 - parent: 2 - - uid: 4760 - components: - - type: Transform - pos: 49.5,-25.5 - parent: 2 - - uid: 4761 - components: - - type: Transform - pos: 49.5,-24.5 - parent: 2 - - uid: 4762 - components: - - type: Transform - pos: 49.5,-23.5 - parent: 2 - - uid: 4763 - components: - - type: Transform - pos: 49.5,-22.5 - parent: 2 - - uid: 4764 - components: - - type: Transform - pos: 49.5,-21.5 - parent: 2 - - uid: 4765 - components: - - type: Transform - pos: 49.5,-20.5 - parent: 2 - - uid: 4766 - components: - - type: Transform - pos: 49.5,-19.5 - parent: 2 - - uid: 4767 - components: - - type: Transform - pos: 49.5,-18.5 - parent: 2 - - uid: 4768 - components: - - type: Transform - pos: 49.5,-17.5 - parent: 2 - - uid: 4769 - components: - - type: Transform - pos: 49.5,-43.5 - parent: 2 - - uid: 4770 - components: - - type: Transform - pos: 49.5,-44.5 - parent: 2 - - uid: 4771 - components: - - type: Transform - pos: 49.5,-45.5 - parent: 2 - - uid: 4772 - components: - - type: Transform - pos: 49.5,-46.5 - parent: 2 - - uid: 4773 - components: - - type: Transform - pos: 49.5,-47.5 - parent: 2 - - uid: 4774 - components: - - type: Transform - pos: 49.5,-48.5 - parent: 2 - - uid: 4775 - components: - - type: Transform - pos: 49.5,-49.5 - parent: 2 - - uid: 4776 - components: - - type: Transform - pos: 49.5,-50.5 - parent: 2 - - uid: 4777 - components: - - type: Transform - pos: 49.5,-51.5 - parent: 2 - - uid: 4778 - components: - - type: Transform - pos: 49.5,-52.5 - parent: 2 - - uid: 4779 - components: - - type: Transform - pos: 49.5,-53.5 - parent: 2 - - uid: 4780 - components: - - type: Transform - pos: 49.5,-54.5 - parent: 2 - - uid: 4781 - components: - - type: Transform - pos: 49.5,-55.5 - parent: 2 - - uid: 4782 - components: - - type: Transform - pos: 49.5,-56.5 - parent: 2 - - uid: 4783 - components: - - type: Transform - pos: 49.5,-57.5 - parent: 2 - - uid: 4784 - components: - - type: Transform - pos: 49.5,-58.5 - parent: 2 - - uid: 4785 - components: - - type: Transform - pos: 49.5,-59.5 - parent: 2 - - uid: 4786 - components: - - type: Transform - pos: 49.5,-60.5 - parent: 2 - - uid: 4787 - components: - - type: Transform - pos: 48.5,-49.5 - parent: 2 - - uid: 4788 - components: - - type: Transform - pos: 47.5,-49.5 - parent: 2 - - uid: 4789 - components: - - type: Transform - pos: 46.5,-49.5 - parent: 2 - - uid: 4790 - components: - - type: Transform - pos: 45.5,-49.5 - parent: 2 - - uid: 4791 - components: - - type: Transform - pos: 44.5,-49.5 - parent: 2 - - uid: 4792 - components: - - type: Transform - pos: 48.5,-62.5 - parent: 2 - - uid: 4793 - components: - - type: Transform - pos: 47.5,-62.5 - parent: 2 - - uid: 4794 - components: - - type: Transform - pos: 47.5,-63.5 - parent: 2 - - uid: 4795 - components: - - type: Transform - pos: 47.5,-64.5 - parent: 2 - - uid: 4796 - components: - - type: Transform - pos: 47.5,-65.5 - parent: 2 - - uid: 4797 - components: - - type: Transform - pos: 46.5,-65.5 - parent: 2 - - uid: 4798 - components: - - type: Transform - pos: 45.5,-65.5 - parent: 2 - - uid: 4799 - components: - - type: Transform - pos: 44.5,-65.5 - parent: 2 - - uid: 4800 - components: - - type: Transform - pos: 43.5,-65.5 - parent: 2 - - uid: 4801 - components: - - type: Transform - pos: 42.5,-65.5 - parent: 2 - - uid: 4802 - components: - - type: Transform - pos: 41.5,-65.5 - parent: 2 - - uid: 4803 - components: - - type: Transform - pos: 40.5,-65.5 - parent: 2 - - uid: 4804 - components: - - type: Transform - pos: 40.5,-64.5 - parent: 2 - - uid: 4805 - components: - - type: Transform - pos: 40.5,-63.5 - parent: 2 - - uid: 4806 - components: - - type: Transform - pos: 40.5,-62.5 - parent: 2 - - uid: 4807 - components: - - type: Transform - pos: 39.5,-62.5 - parent: 2 - - uid: 4808 - components: - - type: Transform - pos: 38.5,-62.5 - parent: 2 - - uid: 4809 - components: - - type: Transform - pos: 37.5,-62.5 - parent: 2 - - uid: 4810 - components: - - type: Transform - pos: 36.5,-62.5 - parent: 2 - - uid: 4811 - components: - - type: Transform - pos: 36.5,-61.5 - parent: 2 - - uid: 4812 - components: - - type: Transform - pos: 36.5,-60.5 - parent: 2 - - uid: 4813 - components: - - type: Transform - pos: 36.5,-59.5 - parent: 2 - - uid: 4814 - components: - - type: Transform - pos: 36.5,-58.5 - parent: 2 - - uid: 4815 - components: - - type: Transform - pos: 36.5,-57.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 78.5,68.5 + parent: 2 + - type: DeviceList + devices: + - 22504 + - 36568 + - 22503 + - 4807 + - 4811 + - 4812 + - 6824 + - 6827 - uid: 4816 components: - type: Transform - pos: 35.5,-57.5 - parent: 2 - - uid: 4817 - components: - - type: Transform - pos: 34.5,-57.5 - parent: 2 - - uid: 4818 - components: - - type: Transform - pos: 33.5,-57.5 - parent: 2 - - uid: 4819 - components: - - type: Transform - pos: 32.5,-55.5 - parent: 2 - - uid: 4820 - components: - - type: Transform - pos: 32.5,-54.5 - parent: 2 - - uid: 4821 - components: - - type: Transform - pos: 32.5,-53.5 + pos: 98.5,55.5 parent: 2 + - type: DeviceList + devices: + - 5097 + - 19961 + - 19960 + - 6846 + - 6847 + - 6848 + - 6839 + - 6840 + - 6841 + - 6850 + - 6849 + - 6842 - uid: 4822 components: - type: Transform - pos: 32.5,-52.5 - parent: 2 - - uid: 4823 - components: - - type: Transform - pos: 32.5,-51.5 - parent: 2 - - uid: 4824 - components: - - type: Transform - pos: 32.5,-50.5 - parent: 2 - - uid: 4825 - components: - - type: Transform - pos: 32.5,-49.5 - parent: 2 - - uid: 4826 - components: - - type: Transform - pos: 32.5,-48.5 - parent: 2 - - uid: 4827 - components: - - type: Transform - pos: 32.5,-47.5 - parent: 2 - - uid: 4828 - components: - - type: Transform - pos: 32.5,-46.5 - parent: 2 - - uid: 4829 - components: - - type: Transform - pos: 32.5,-45.5 - parent: 2 - - uid: 4830 - components: - - type: Transform - pos: 32.5,-44.5 - parent: 2 - - uid: 4831 - components: - - type: Transform - pos: 32.5,-43.5 - parent: 2 - - uid: 4832 - components: - - type: Transform - pos: 32.5,-42.5 - parent: 2 - - uid: 4833 - components: - - type: Transform - pos: 32.5,-41.5 - parent: 2 - - uid: 4834 - components: - - type: Transform - pos: 32.5,-40.5 - parent: 2 - - uid: 4835 - components: - - type: Transform - pos: 32.5,-39.5 - parent: 2 - - uid: 4836 - components: - - type: Transform - pos: 31.5,-38.5 - parent: 2 - - uid: 4837 - components: - - type: Transform - pos: 30.5,-38.5 - parent: 2 - - uid: 4838 - components: - - type: Transform - pos: 29.5,-38.5 - parent: 2 - - uid: 4839 - components: - - type: Transform - pos: 28.5,-38.5 - parent: 2 - - uid: 4840 - components: - - type: Transform - pos: 27.5,-38.5 - parent: 2 - - uid: 4841 - components: - - type: Transform - pos: 26.5,-38.5 - parent: 2 - - uid: 4842 - components: - - type: Transform - pos: 25.5,-38.5 - parent: 2 - - uid: 4843 - components: - - type: Transform - pos: 24.5,-38.5 - parent: 2 - - uid: 4844 - components: - - type: Transform - pos: 23.5,-38.5 - parent: 2 - - uid: 4845 - components: - - type: Transform - pos: 22.5,-38.5 - parent: 2 - - uid: 4846 - components: - - type: Transform - pos: 21.5,-38.5 - parent: 2 - - uid: 4847 - components: - - type: Transform - pos: 20.5,-38.5 - parent: 2 - - uid: 4848 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 2 - - uid: 4849 - components: - - type: Transform - pos: 16.5,-38.5 - parent: 2 - - uid: 4850 - components: - - type: Transform - pos: 15.5,-38.5 - parent: 2 - - uid: 4851 - components: - - type: Transform - pos: 14.5,-38.5 - parent: 2 - - uid: 4852 - components: - - type: Transform - pos: 13.5,-38.5 - parent: 2 - - uid: 4853 - components: - - type: Transform - pos: 12.5,-38.5 - parent: 2 - - uid: 4854 - components: - - type: Transform - pos: 11.5,-38.5 - parent: 2 - - uid: 4855 - components: - - type: Transform - pos: 10.5,-38.5 - parent: 2 - - uid: 4856 - components: - - type: Transform - pos: 9.5,-38.5 - parent: 2 - - uid: 4858 - components: - - type: Transform - pos: 7.5,-38.5 - parent: 2 - - uid: 4859 - components: - - type: Transform - pos: 6.5,-38.5 - parent: 2 - - uid: 4860 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 2 - - uid: 4861 - components: - - type: Transform - pos: 4.5,-38.5 - parent: 2 - - uid: 4862 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 2 - - uid: 4863 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 2 - - uid: 4864 - components: - - type: Transform - pos: 49.5,-65.5 - parent: 2 - - uid: 4865 - components: - - type: Transform - pos: 50.5,-65.5 - parent: 2 - - uid: 4867 - components: - - type: Transform - pos: 50.5,-64.5 - parent: 2 - - uid: 4868 - components: - - type: Transform - pos: 50.5,-63.5 - parent: 2 - - uid: 4869 - components: - - type: Transform - pos: 51.5,-63.5 - parent: 2 - - uid: 4870 - components: - - type: Transform - pos: 52.5,-63.5 - parent: 2 - - uid: 4871 - components: - - type: Transform - pos: 53.5,-63.5 - parent: 2 - - uid: 4872 - components: - - type: Transform - pos: -9.5,44.5 - parent: 2 - - uid: 4873 - components: - - type: Transform - pos: 41.5,-24.5 - parent: 2 - - uid: 4875 - components: - - type: Transform - pos: -1.5,-66.5 - parent: 2 - - uid: 4876 - components: - - type: Transform - pos: 2.5,-42.5 - parent: 2 - - uid: 4877 - components: - - type: Transform - pos: -1.5,-67.5 - parent: 2 - - uid: 4879 - components: - - type: Transform - pos: -2.5,-52.5 - parent: 2 - - uid: 4881 - components: - - type: Transform - pos: 34.5,-32.5 - parent: 2 - - uid: 4882 - components: - - type: Transform - pos: 33.5,-35.5 - parent: 2 - - uid: 4883 - components: - - type: Transform - pos: 34.5,-35.5 - parent: 2 - - uid: 4884 - components: - - type: Transform - pos: 35.5,-35.5 - parent: 2 - - uid: 4885 - components: - - type: Transform - pos: 36.5,-35.5 - parent: 2 - - uid: 4886 - components: - - type: Transform - pos: 37.5,-35.5 - parent: 2 - - uid: 4887 - components: - - type: Transform - pos: 38.5,-35.5 - parent: 2 - - uid: 4889 - components: - - type: Transform - pos: 3.5,-68.5 - parent: 2 - - uid: 4890 - components: - - type: Transform - pos: 37.5,-33.5 - parent: 2 - - uid: 4891 - components: - - type: Transform - pos: 38.5,-34.5 - parent: 2 - - uid: 4892 - components: - - type: Transform - pos: 38.5,-36.5 - parent: 2 - - uid: 4896 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 2 - - uid: 4897 - components: - - type: Transform - pos: 45.5,-19.5 - parent: 2 - - uid: 4898 - components: - - type: Transform - pos: 64.5,-70.5 - parent: 2 - - uid: 4900 - components: - - type: Transform - pos: 84.5,-46.5 - parent: 2 - - uid: 4901 - components: - - type: Transform - pos: 84.5,-45.5 - parent: 2 - - uid: 4902 - components: - - type: Transform - pos: 83.5,-45.5 - parent: 2 - - uid: 4903 - components: - - type: Transform - pos: 82.5,-45.5 - parent: 2 - - uid: 4904 - components: - - type: Transform - pos: 82.5,-44.5 - parent: 2 - - uid: 4905 - components: - - type: Transform - pos: 82.5,-43.5 - parent: 2 - - uid: 4906 - components: - - type: Transform - pos: 82.5,-42.5 - parent: 2 - - uid: 4907 - components: - - type: Transform - pos: 82.5,-41.5 - parent: 2 - - uid: 4908 - components: - - type: Transform - pos: 82.5,-40.5 - parent: 2 - - uid: 4909 - components: - - type: Transform - pos: 81.5,-33.5 - parent: 2 - - uid: 4910 - components: - - type: Transform - pos: 81.5,-34.5 - parent: 2 - - uid: 4911 - components: - - type: Transform - pos: 81.5,-35.5 - parent: 2 - - uid: 4912 - components: - - type: Transform - pos: 81.5,-36.5 - parent: 2 - - uid: 4913 - components: - - type: Transform - pos: 81.5,-37.5 - parent: 2 - - uid: 4914 - components: - - type: Transform - pos: 81.5,-38.5 - parent: 2 - - uid: 4915 - components: - - type: Transform - pos: 81.5,-39.5 - parent: 2 - - uid: 4916 - components: - - type: Transform - pos: 81.5,-40.5 - parent: 2 - - uid: 4917 - components: - - type: Transform - pos: 84.5,-32.5 - parent: 2 - - uid: 4918 - components: - - type: Transform - pos: 84.5,-33.5 - parent: 2 - - uid: 4919 - components: - - type: Transform - pos: 83.5,-33.5 - parent: 2 - - uid: 4920 - components: - - type: Transform - pos: 82.5,-33.5 - parent: 2 - - uid: 4921 - components: - - type: Transform - pos: 85.5,-32.5 - parent: 2 - - uid: 4922 - components: - - type: Transform - pos: 83.5,-41.5 - parent: 2 - - uid: 4923 - components: - - type: Transform - pos: 84.5,-41.5 - parent: 2 - - uid: 4924 - components: - - type: Transform - pos: 85.5,-41.5 - parent: 2 - - uid: 4925 - components: - - type: Transform - pos: 86.5,-41.5 - parent: 2 - - uid: 4926 - components: - - type: Transform - pos: 87.5,-41.5 - parent: 2 - - uid: 4927 - components: - - type: Transform - pos: 87.5,-40.5 - parent: 2 - - uid: 4928 - components: - - type: Transform - pos: 87.5,-42.5 - parent: 2 - - uid: 4929 - components: - - type: Transform - pos: 82.5,-36.5 - parent: 2 - - uid: 4930 - components: - - type: Transform - pos: 83.5,-36.5 - parent: 2 - - uid: 4931 - components: - - type: Transform - pos: 84.5,-36.5 - parent: 2 - - uid: 4932 - components: - - type: Transform - pos: 85.5,-36.5 - parent: 2 - - uid: 4933 - components: - - type: Transform - pos: 85.5,-37.5 - parent: 2 - - uid: 4934 - components: - - type: Transform - pos: 86.5,-37.5 - parent: 2 - - uid: 4935 - components: - - type: Transform - pos: 86.5,-36.5 - parent: 2 - - uid: 4936 - components: - - type: Transform - pos: 87.5,-36.5 - parent: 2 - - uid: 4937 - components: - - type: Transform - pos: 87.5,-35.5 - parent: 2 - - uid: 4938 - components: - - type: Transform - pos: 87.5,-34.5 - parent: 2 - - uid: 4939 - components: - - type: Transform - pos: 85.5,-31.5 - parent: 2 - - uid: 4940 - components: - - type: Transform - pos: 85.5,-30.5 - parent: 2 - - uid: 4941 - components: - - type: Transform - pos: 85.5,-29.5 - parent: 2 - - uid: 4942 - components: - - type: Transform - pos: 85.5,-28.5 - parent: 2 - - uid: 4943 - components: - - type: Transform - pos: 85.5,-27.5 - parent: 2 - - uid: 4944 - components: - - type: Transform - pos: 85.5,-26.5 - parent: 2 - - uid: 4945 - components: - - type: Transform - pos: 85.5,-25.5 - parent: 2 - - uid: 4946 - components: - - type: Transform - pos: 85.5,-24.5 - parent: 2 - - uid: 4947 - components: - - type: Transform - pos: 85.5,-23.5 - parent: 2 - - uid: 4948 - components: - - type: Transform - pos: 85.5,-22.5 - parent: 2 - - uid: 4949 - components: - - type: Transform - pos: 85.5,-21.5 - parent: 2 - - uid: 4950 - components: - - type: Transform - pos: 84.5,-21.5 - parent: 2 - - uid: 4951 - components: - - type: Transform - pos: 83.5,-21.5 - parent: 2 - - uid: 4952 - components: - - type: Transform - pos: 82.5,-21.5 - parent: 2 - - uid: 4953 - components: - - type: Transform - pos: 81.5,-21.5 - parent: 2 - - uid: 4954 - components: - - type: Transform - pos: 80.5,-21.5 - parent: 2 - - uid: 4955 - components: - - type: Transform - pos: 79.5,-21.5 - parent: 2 - - uid: 4956 - components: - - type: Transform - pos: 79.5,-20.5 - parent: 2 - - uid: 4957 - components: - - type: Transform - pos: 79.5,-19.5 - parent: 2 - - uid: 4958 - components: - - type: Transform - pos: 80.5,-19.5 - parent: 2 - - uid: 4959 - components: - - type: Transform - pos: 78.5,-19.5 - parent: 2 - - uid: 4960 - components: - - type: Transform - pos: 77.5,-19.5 - parent: 2 - - uid: 4961 - components: - - type: Transform - pos: 76.5,-19.5 - parent: 2 - - uid: 4962 - components: - - type: Transform - pos: 76.5,-18.5 - parent: 2 - - uid: 4963 - components: - - type: Transform - pos: 76.5,-17.5 - parent: 2 - - uid: 4964 - components: - - type: Transform - pos: 82.5,-46.5 - parent: 2 - - uid: 4965 - components: - - type: Transform - pos: 82.5,-47.5 - parent: 2 - - uid: 4966 - components: - - type: Transform - pos: 82.5,-48.5 - parent: 2 - - uid: 4967 - components: - - type: Transform - pos: 82.5,-49.5 - parent: 2 - - uid: 4968 - components: - - type: Transform - pos: 82.5,-50.5 - parent: 2 - - uid: 4969 - components: - - type: Transform - pos: 82.5,-51.5 - parent: 2 - - uid: 4970 - components: - - type: Transform - pos: 82.5,-52.5 - parent: 2 - - uid: 4971 - components: - - type: Transform - pos: 83.5,-52.5 - parent: 2 - - uid: 4972 - components: - - type: Transform - pos: 84.5,-52.5 - parent: 2 - - uid: 4973 - components: - - type: Transform - pos: 85.5,-52.5 - parent: 2 - - uid: 4974 - components: - - type: Transform - pos: 86.5,-52.5 - parent: 2 - - uid: 4975 - components: - - type: Transform - pos: 87.5,-52.5 - parent: 2 - - uid: 4976 - components: - - type: Transform - pos: 87.5,-51.5 - parent: 2 - - uid: 4977 - components: - - type: Transform - pos: 87.5,-53.5 - parent: 2 - - uid: 4978 - components: - - type: Transform - pos: 82.5,-53.5 - parent: 2 - - uid: 4979 - components: - - type: Transform - pos: 82.5,-54.5 - parent: 2 - - uid: 4980 - components: - - type: Transform - pos: 82.5,-55.5 - parent: 2 - - uid: 4981 - components: - - type: Transform - pos: 82.5,-56.5 - parent: 2 - - uid: 4982 - components: - - type: Transform - pos: 82.5,-57.5 - parent: 2 - - uid: 4983 - components: - - type: Transform - pos: 83.5,-57.5 - parent: 2 - - uid: 4984 - components: - - type: Transform - pos: 84.5,-57.5 - parent: 2 - - uid: 4985 - components: - - type: Transform - pos: 85.5,-57.5 - parent: 2 - - uid: 4986 - components: - - type: Transform - pos: 86.5,-57.5 - parent: 2 - - uid: 4987 - components: - - type: Transform - pos: 87.5,-57.5 - parent: 2 - - uid: 4988 - components: - - type: Transform - pos: 88.5,-57.5 - parent: 2 - - uid: 4989 - components: - - type: Transform - pos: 82.5,-58.5 - parent: 2 - - uid: 4990 - components: - - type: Transform - pos: 82.5,-59.5 - parent: 2 - - uid: 4991 - components: - - type: Transform - pos: 82.5,-60.5 - parent: 2 - - uid: 4992 - components: - - type: Transform - pos: 81.5,-60.5 - parent: 2 - - uid: 4993 - components: - - type: Transform - pos: 80.5,-60.5 - parent: 2 - - uid: 4994 - components: - - type: Transform - pos: 79.5,-60.5 - parent: 2 - - uid: 4995 - components: - - type: Transform - pos: 78.5,-60.5 - parent: 2 - - uid: 4996 - components: - - type: Transform - pos: 77.5,-60.5 - parent: 2 - - uid: 4997 - components: - - type: Transform - pos: 76.5,-60.5 - parent: 2 - - uid: 4998 - components: - - type: Transform - pos: 74.5,-60.5 - parent: 2 - - uid: 4999 - components: - - type: Transform - pos: 73.5,-60.5 - parent: 2 - - uid: 5000 - components: - - type: Transform - pos: 72.5,-60.5 - parent: 2 - - uid: 5001 - components: - - type: Transform - pos: 71.5,-60.5 - parent: 2 - - uid: 5002 - components: - - type: Transform - pos: 70.5,-60.5 - parent: 2 - - uid: 5003 - components: - - type: Transform - pos: 69.5,-60.5 - parent: 2 - - uid: 5004 - components: - - type: Transform - pos: 68.5,-60.5 - parent: 2 - - uid: 5005 - components: - - type: Transform - pos: 67.5,-60.5 - parent: 2 - - uid: 5006 - components: - - type: Transform - pos: 66.5,-60.5 - parent: 2 - - uid: 5007 - components: - - type: Transform - pos: 65.5,-60.5 - parent: 2 - - uid: 5008 - components: - - type: Transform - pos: 65.5,-59.5 - parent: 2 - - uid: 5009 - components: - - type: Transform - pos: 65.5,-58.5 - parent: 2 - - uid: 5010 - components: - - type: Transform - pos: 65.5,-57.5 - parent: 2 - - uid: 5011 - components: - - type: Transform - pos: 65.5,-56.5 - parent: 2 - - uid: 5012 - components: - - type: Transform - pos: 66.5,-56.5 - parent: 2 - - uid: 5013 - components: - - type: Transform - pos: 67.5,-56.5 - parent: 2 - - uid: 5014 - components: - - type: Transform - pos: 68.5,-56.5 - parent: 2 - - uid: 5015 - components: - - type: Transform - pos: 69.5,-56.5 - parent: 2 - - uid: 5016 - components: - - type: Transform - pos: 66.5,-55.5 - parent: 2 - - uid: 5017 - components: - - type: Transform - pos: 68.5,-61.5 - parent: 2 - - uid: 5018 - components: - - type: Transform - pos: 68.5,-62.5 - parent: 2 - - uid: 5019 - components: - - type: Transform - pos: 68.5,-63.5 - parent: 2 - - uid: 5020 - components: - - type: Transform - pos: 68.5,-64.5 - parent: 2 - - uid: 5021 - components: - - type: Transform - pos: 68.5,-65.5 - parent: 2 - - uid: 5022 - components: - - type: Transform - pos: 77.5,-61.5 - parent: 2 - - uid: 5023 - components: - - type: Transform - pos: 77.5,-62.5 - parent: 2 - - uid: 5024 - components: - - type: Transform - pos: 77.5,-63.5 - parent: 2 - - uid: 5025 - components: - - type: Transform - pos: 77.5,-64.5 - parent: 2 - - uid: 5026 - components: - - type: Transform - pos: 76.5,-64.5 - parent: 2 - - uid: 5027 - components: - - type: Transform - pos: 75.5,-64.5 - parent: 2 - - uid: 5028 - components: - - type: Transform - pos: 74.5,-64.5 - parent: 2 - - uid: 5029 - components: - - type: Transform - pos: 73.5,-64.5 - parent: 2 - - uid: 5030 - components: - - type: Transform - pos: 72.5,-64.5 - parent: 2 - - uid: 5031 - components: - - type: Transform - pos: 72.5,-65.5 - parent: 2 - - uid: 5032 - components: - - type: Transform - pos: 71.5,-65.5 - parent: 2 - - uid: 5033 - components: - - type: Transform - pos: 70.5,-65.5 - parent: 2 - - uid: 5034 - components: - - type: Transform - pos: 69.5,-65.5 - parent: 2 - - uid: 5035 - components: - - type: Transform - pos: 72.5,-66.5 - parent: 2 - - uid: 5036 - components: - - type: Transform - pos: 72.5,-67.5 - parent: 2 - - uid: 5037 - components: - - type: Transform - pos: 72.5,-68.5 - parent: 2 - - uid: 5038 - components: - - type: Transform - pos: 71.5,-68.5 - parent: 2 - - uid: 5039 - components: - - type: Transform - pos: 70.5,-68.5 - parent: 2 - - uid: 5040 - components: - - type: Transform - pos: 69.5,-68.5 - parent: 2 - - uid: 5041 - components: - - type: Transform - pos: 68.5,-68.5 - parent: 2 - - uid: 5042 - components: - - type: Transform - pos: 67.5,-68.5 - parent: 2 - - uid: 5043 - components: - - type: Transform - pos: 66.5,-68.5 - parent: 2 - - uid: 5044 - components: - - type: Transform - pos: 65.5,-68.5 - parent: 2 - - uid: 5045 - components: - - type: Transform - pos: 65.5,-69.5 - parent: 2 - - uid: 5046 - components: - - type: Transform - pos: 65.5,-70.5 - parent: 2 - - uid: 5052 - components: - - type: Transform - pos: 65.5,-67.5 - parent: 2 - - uid: 5053 - components: - - type: Transform - pos: 65.5,-66.5 - parent: 2 - - uid: 5054 - components: - - type: Transform - pos: 65.5,-65.5 - parent: 2 - - uid: 5055 - components: - - type: Transform - pos: 65.5,-64.5 - parent: 2 - - uid: 5056 - components: - - type: Transform - pos: 65.5,-63.5 - parent: 2 - - uid: 5057 - components: - - type: Transform - pos: 65.5,-62.5 - parent: 2 - - uid: 5058 - components: - - type: Transform - pos: 65.5,-61.5 - parent: 2 - - uid: 5059 - components: - - type: Transform - pos: 64.5,-61.5 - parent: 2 - - uid: 5060 - components: - - type: Transform - pos: 63.5,-61.5 - parent: 2 - - uid: 5061 - components: - - type: Transform - pos: 62.5,-61.5 - parent: 2 - - uid: 5062 - components: - - type: Transform - pos: 61.5,-61.5 - parent: 2 - - uid: 5063 - components: - - type: Transform - pos: 60.5,-61.5 - parent: 2 - - uid: 5064 - components: - - type: Transform - pos: 59.5,-61.5 - parent: 2 - - uid: 5065 - components: - - type: Transform - pos: 58.5,-61.5 - parent: 2 - - uid: 5066 - components: - - type: Transform - pos: 57.5,-61.5 - parent: 2 - - uid: 5067 - components: - - type: Transform - pos: 56.5,-61.5 - parent: 2 - - uid: 5068 - components: - - type: Transform - pos: 55.5,-61.5 - parent: 2 - - uid: 5069 - components: - - type: Transform - pos: 54.5,-61.5 - parent: 2 - - uid: 5070 - components: - - type: Transform - pos: 53.5,-61.5 - parent: 2 - - uid: 5071 - components: - - type: Transform - pos: 53.5,-60.5 - parent: 2 - - uid: 5072 - components: - - type: Transform - pos: 52.5,-60.5 - parent: 2 - - uid: 5073 - components: - - type: Transform - pos: 56.5,-60.5 - parent: 2 - - uid: 5074 - components: - - type: Transform - pos: 57.5,-60.5 - parent: 2 - - uid: 5075 - components: - - type: Transform - pos: 58.5,-60.5 - parent: 2 - - uid: 5076 - components: - - type: Transform - pos: 61.5,-60.5 - parent: 2 - - uid: 5077 - components: - - type: Transform - pos: 62.5,-60.5 - parent: 2 - - uid: 5078 - components: - - type: Transform - pos: 63.5,-60.5 - parent: 2 - - uid: 5079 - components: - - type: Transform - pos: 63.5,-62.5 - parent: 2 - - uid: 5080 - components: - - type: Transform - pos: 63.5,-63.5 - parent: 2 - - uid: 5081 - components: - - type: Transform - pos: 62.5,-63.5 - parent: 2 - - uid: 5082 - components: - - type: Transform - pos: 61.5,-63.5 - parent: 2 - - uid: 5083 - components: - - type: Transform - pos: 58.5,-62.5 - parent: 2 - - uid: 5084 - components: - - type: Transform - pos: 58.5,-63.5 - parent: 2 - - uid: 5085 - components: - - type: Transform - pos: 57.5,-63.5 - parent: 2 - - uid: 5086 - components: - - type: Transform - pos: 56.5,-63.5 - parent: 2 - - uid: 5093 - components: - - type: Transform - pos: 78.5,-58.5 - parent: 2 - - uid: 5096 - components: - - type: Transform - pos: 73.5,-61.5 - parent: 2 - - uid: 5097 - components: - - type: Transform - pos: 74.5,-61.5 - parent: 2 - - uid: 5098 - components: - - type: Transform - pos: 74.5,-63.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -41.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 2240 + - 6551 + - 7145 + - 706 + - 3165 - uid: 5099 components: - type: Transform - pos: 73.5,-63.5 - parent: 2 - - uid: 5100 - components: - - type: Transform - pos: 75.5,-60.5 - parent: 2 - - uid: 5101 - components: - - type: Transform - pos: 78.5,-61.5 - parent: 2 - - uid: 5102 - components: - - type: Transform - pos: 77.5,-65.5 + pos: 61.5,41.5 parent: 2 + - type: DeviceList + devices: + - 23509 + - 23514 + - 6722 + - 6723 + - 6724 + - 12874 + - 36580 + - 36581 - uid: 5103 components: - type: Transform - pos: 76.5,-65.5 - parent: 2 - - uid: 5104 - components: - - type: Transform - pos: 86.5,-28.5 + pos: 101.5,50.5 parent: 2 + - type: DeviceList + devices: + - 5319 + - 36579 + - 19945 + - 5096 + - 5095 + - 5094 + - 6848 + - 6849 + - 6847 + - 6846 - uid: 5105 components: - type: Transform - pos: 87.5,-28.5 - parent: 2 - - uid: 5106 - components: - - type: Transform - pos: 88.5,-28.5 - parent: 2 - - uid: 5107 - components: - - type: Transform - pos: 89.5,-28.5 - parent: 2 - - uid: 5108 - components: - - type: Transform - pos: 90.5,-28.5 - parent: 2 - - uid: 5109 - components: - - type: Transform - pos: 91.5,-28.5 - parent: 2 - - uid: 5110 - components: - - type: Transform - pos: 92.5,-28.5 - parent: 2 - - uid: 5111 - components: - - type: Transform - pos: 93.5,-28.5 - parent: 2 - - uid: 5112 - components: - - type: Transform - pos: 91.5,-27.5 - parent: 2 - - uid: 5113 - components: - - type: Transform - pos: 93.5,-27.5 - parent: 2 - - uid: 5114 - components: - - type: Transform - pos: 91.5,-30.5 - parent: 2 - - uid: 5115 - components: - - type: Transform - pos: 91.5,-29.5 - parent: 2 - - uid: 5116 - components: - - type: Transform - pos: 93.5,-29.5 - parent: 2 - - uid: 5117 - components: - - type: Transform - pos: 93.5,-30.5 - parent: 2 - - uid: 5118 - components: - - type: Transform - pos: 89.5,-27.5 - parent: 2 - - uid: 5119 - components: - - type: Transform - pos: 89.5,-26.5 - parent: 2 - - uid: 5120 - components: - - type: Transform - pos: 89.5,-25.5 - parent: 2 - - uid: 5121 - components: - - type: Transform - pos: 89.5,-24.5 - parent: 2 - - uid: 5122 - components: - - type: Transform - pos: 89.5,-23.5 - parent: 2 - - uid: 5123 - components: - - type: Transform - pos: 89.5,-22.5 - parent: 2 - - uid: 5124 - components: - - type: Transform - pos: 88.5,-22.5 - parent: 2 - - uid: 5125 - components: - - type: Transform - pos: 90.5,-22.5 - parent: 2 - - uid: 5126 - components: - - type: Transform - pos: 91.5,-22.5 - parent: 2 - - uid: 5127 - components: - - type: Transform - pos: 92.5,-22.5 - parent: 2 - - uid: 5128 - components: - - type: Transform - pos: 92.5,-23.5 - parent: 2 - - uid: 5129 - components: - - type: Transform - pos: 89.5,-29.5 - parent: 2 - - uid: 5130 - components: - - type: Transform - pos: 89.5,-30.5 - parent: 2 - - uid: 5131 - components: - - type: Transform - pos: 83.5,-47.5 - parent: 2 - - uid: 5132 - components: - - type: Transform - pos: 84.5,-47.5 - parent: 2 - - uid: 5134 - components: - - type: Transform - pos: 79.5,-59.5 - parent: 2 - - uid: 5135 - components: - - type: Transform - pos: 79.5,-58.5 - parent: 2 - - uid: 5140 - components: - - type: Transform - pos: 83.5,-64.5 - parent: 2 - - uid: 5141 - components: - - type: Transform - pos: 82.5,-64.5 - parent: 2 - - uid: 5142 - components: - - type: Transform - pos: 81.5,-64.5 - parent: 2 - - uid: 5143 - components: - - type: Transform - pos: 81.5,-65.5 - parent: 2 - - uid: 5144 - components: - - type: Transform - pos: 81.5,-66.5 - parent: 2 - - uid: 5145 - components: - - type: Transform - pos: 81.5,-67.5 - parent: 2 - - uid: 5146 - components: - - type: Transform - pos: 82.5,-66.5 - parent: 2 - - uid: 5148 - components: - - type: Transform - pos: 82.5,-67.5 - parent: 2 - - uid: 5149 - components: - - type: Transform - pos: 82.5,-68.5 - parent: 2 - - uid: 5150 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 2 - - uid: 5151 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 2 - - uid: 5152 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 2 - - uid: 5153 - components: - - type: Transform - pos: 24.5,3.5 - parent: 2 - - uid: 5155 - components: - - type: Transform - pos: 70.5,-26.5 - parent: 2 - - uid: 5156 - components: - - type: Transform - pos: 70.5,-27.5 - parent: 2 - - uid: 5157 - components: - - type: Transform - pos: 70.5,-28.5 - parent: 2 - - uid: 5158 - components: - - type: Transform - pos: 70.5,-29.5 - parent: 2 - - uid: 5159 - components: - - type: Transform - pos: 70.5,-30.5 - parent: 2 - - uid: 5160 - components: - - type: Transform - pos: 71.5,-30.5 - parent: 2 - - uid: 5161 - components: - - type: Transform - pos: 72.5,-30.5 - parent: 2 - - uid: 5162 - components: - - type: Transform - pos: 73.5,-30.5 - parent: 2 - - uid: 5163 - components: - - type: Transform - pos: 73.5,-29.5 - parent: 2 - - uid: 5164 - components: - - type: Transform - pos: 73.5,-28.5 - parent: 2 - - uid: 5165 - components: - - type: Transform - pos: 73.5,-27.5 - parent: 2 - - uid: 5166 - components: - - type: Transform - pos: 73.5,-26.5 - parent: 2 - - uid: 5167 - components: - - type: Transform - pos: 73.5,-24.5 - parent: 2 - - uid: 5168 - components: - - type: Transform - pos: 73.5,-23.5 - parent: 2 - - uid: 5169 - components: - - type: Transform - pos: 73.5,-22.5 - parent: 2 - - uid: 5170 - components: - - type: Transform - pos: 73.5,-21.5 - parent: 2 - - uid: 5171 - components: - - type: Transform - pos: 73.5,-20.5 - parent: 2 - - uid: 5172 - components: - - type: Transform - pos: 73.5,-19.5 - parent: 2 - - uid: 5173 - components: - - type: Transform - pos: 73.5,-18.5 - parent: 2 - - uid: 5174 - components: - - type: Transform - pos: 73.5,-17.5 - parent: 2 - - uid: 5175 - components: - - type: Transform - pos: 72.5,-18.5 - parent: 2 - - uid: 5176 - components: - - type: Transform - pos: 71.5,-18.5 - parent: 2 - - uid: 5177 - components: - - type: Transform - pos: 70.5,-18.5 - parent: 2 - - uid: 5178 - components: - - type: Transform - pos: 70.5,-19.5 - parent: 2 - - uid: 5179 - components: - - type: Transform - pos: 70.5,-20.5 - parent: 2 - - uid: 5180 - components: - - type: Transform - pos: 70.5,-21.5 - parent: 2 - - uid: 5181 - components: - - type: Transform - pos: 70.5,-22.5 - parent: 2 - - uid: 5182 - components: - - type: Transform - pos: 67.5,-26.5 - parent: 2 - - uid: 5183 - components: - - type: Transform - pos: 66.5,-23.5 - parent: 2 - - uid: 5184 - components: - - type: Transform - pos: 66.5,-24.5 - parent: 2 - - uid: 5185 - components: - - type: Transform - pos: 66.5,-25.5 - parent: 2 - - uid: 5186 - components: - - type: Transform - pos: 66.5,-26.5 - parent: 2 - - uid: 5187 - components: - - type: Transform - pos: 66.5,-27.5 - parent: 2 - - uid: 5188 - components: - - type: Transform - pos: 62.5,-25.5 - parent: 2 - - uid: 5189 - components: - - type: Transform - pos: 61.5,-25.5 - parent: 2 - - uid: 5190 - components: - - type: Transform - pos: 63.5,-25.5 - parent: 2 - - uid: 5191 - components: - - type: Transform - pos: 62.5,-26.5 - parent: 2 - - uid: 5192 - components: - - type: Transform - pos: 61.5,-26.5 - parent: 2 - - uid: 5193 - components: - - type: Transform - pos: 60.5,-26.5 - parent: 2 - - uid: 5194 - components: - - type: Transform - pos: 59.5,-26.5 - parent: 2 - - uid: 5195 - components: - - type: Transform - pos: 58.5,-26.5 - parent: 2 - - uid: 5196 - components: - - type: Transform - pos: 57.5,-26.5 - parent: 2 - - uid: 5197 - components: - - type: Transform - pos: 56.5,-26.5 - parent: 2 - - uid: 5198 - components: - - type: Transform - pos: 55.5,-26.5 - parent: 2 - - uid: 5199 - components: - - type: Transform - pos: 54.5,-26.5 - parent: 2 - - uid: 5200 - components: - - type: Transform - pos: 55.5,-32.5 - parent: 2 - - uid: 5201 - components: - - type: Transform - pos: 70.5,-24.5 - parent: 2 - - uid: 5202 - components: - - type: Transform - pos: 70.5,-23.5 - parent: 2 - - uid: 5203 - components: - - type: Transform - pos: 71.5,-22.5 - parent: 2 - - uid: 5204 - components: - - type: Transform - pos: 72.5,-22.5 - parent: 2 - - uid: 5205 - components: - - type: Transform - pos: 66.5,-28.5 - parent: 2 - - uid: 5206 - components: - - type: Transform - pos: 66.5,-29.5 - parent: 2 - - uid: 5207 - components: - - type: Transform - pos: 66.5,-30.5 - parent: 2 - - uid: 5208 - components: - - type: Transform - pos: 66.5,-31.5 - parent: 2 - - uid: 5209 - components: - - type: Transform - pos: 66.5,-32.5 - parent: 2 - - uid: 5210 - components: - - type: Transform - pos: 66.5,-33.5 - parent: 2 - - uid: 5211 - components: - - type: Transform - pos: 66.5,-34.5 - parent: 2 - - uid: 5212 - components: - - type: Transform - pos: 66.5,-35.5 - parent: 2 - - uid: 5213 - components: - - type: Transform - pos: 66.5,-36.5 - parent: 2 - - uid: 5214 - components: - - type: Transform - pos: 66.5,-37.5 - parent: 2 - - uid: 5215 - components: - - type: Transform - pos: 66.5,-38.5 - parent: 2 - - uid: 5216 - components: - - type: Transform - pos: 66.5,-39.5 - parent: 2 - - uid: 5217 - components: - - type: Transform - pos: 66.5,-40.5 - parent: 2 - - uid: 5218 - components: - - type: Transform - pos: 66.5,-41.5 - parent: 2 - - uid: 5219 - components: - - type: Transform - pos: 66.5,-42.5 - parent: 2 - - uid: 5220 - components: - - type: Transform - pos: 66.5,-43.5 - parent: 2 - - uid: 5221 - components: - - type: Transform - pos: 66.5,-44.5 - parent: 2 - - uid: 5222 - components: - - type: Transform - pos: 66.5,-45.5 - parent: 2 - - uid: 5223 - components: - - type: Transform - pos: 66.5,-46.5 - parent: 2 - - uid: 5224 - components: - - type: Transform - pos: 66.5,-47.5 - parent: 2 - - uid: 5225 - components: - - type: Transform - pos: 67.5,-45.5 - parent: 2 - - uid: 5226 - components: - - type: Transform - pos: 67.5,-43.5 - parent: 2 - - uid: 5227 - components: - - type: Transform - pos: 67.5,-47.5 - parent: 2 - - uid: 5228 - components: - - type: Transform - pos: 67.5,-40.5 - parent: 2 - - uid: 5232 - components: - - type: Transform - pos: 71.5,-17.5 - parent: 2 - - uid: 5233 - components: - - type: Transform - pos: 71.5,-16.5 - parent: 2 - - uid: 5234 - components: - - type: Transform - pos: 69.5,-18.5 - parent: 2 - - uid: 5235 - components: - - type: Transform - pos: 69.5,-17.5 - parent: 2 - - uid: 5236 - components: - - type: Transform - pos: 69.5,-16.5 - parent: 2 - - uid: 5259 - components: - - type: Transform - pos: 79.5,-28.5 - parent: 2 - - uid: 5260 - components: - - type: Transform - pos: 83.5,-28.5 - parent: 2 - - uid: 5264 - components: - - type: Transform - pos: 55.5,-31.5 - parent: 2 - - uid: 5265 - components: - - type: Transform - pos: 55.5,-30.5 - parent: 2 - - uid: 5266 - components: - - type: Transform - pos: 54.5,-30.5 - parent: 2 - - uid: 5267 - components: - - type: Transform - pos: 53.5,-30.5 - parent: 2 - - uid: 5268 - components: - - type: Transform - pos: 56.5,-30.5 - parent: 2 - - uid: 5270 - components: - - type: Transform - pos: 82.5,-28.5 - parent: 2 - - uid: 5272 - components: - - type: Transform - pos: 61.5,-30.5 - parent: 2 - - uid: 5273 - components: - - type: Transform - pos: 62.5,-30.5 - parent: 2 - - uid: 5274 - components: - - type: Transform - pos: 61.5,-29.5 - parent: 2 - - uid: 5275 - components: - - type: Transform - pos: 61.5,-31.5 - parent: 2 - - uid: 5276 - components: - - type: Transform - pos: 63.5,-30.5 - parent: 2 - - uid: 5277 - components: - - type: Transform - pos: 64.5,-30.5 - parent: 2 - - uid: 5278 - components: - - type: Transform - pos: 64.5,-29.5 - parent: 2 - - uid: 5279 - components: - - type: Transform - pos: 64.5,-28.5 - parent: 2 - - uid: 5280 - components: - - type: Transform - pos: 63.5,-28.5 - parent: 2 - - uid: 5281 - components: - - type: Transform - pos: 62.5,-28.5 - parent: 2 - - uid: 5282 - components: - - type: Transform - pos: 64.5,-31.5 - parent: 2 - - uid: 5283 - components: - - type: Transform - pos: 54.5,-29.5 - parent: 2 - - uid: 5284 - components: - - type: Transform - pos: 54.5,-31.5 - parent: 2 - - uid: 5285 - components: - - type: Transform - pos: 51.5,-38.5 - parent: 2 - - uid: 5286 - components: - - type: Transform - pos: 62.5,-36.5 - parent: 2 - - uid: 5291 - components: - - type: Transform - pos: 61.5,-32.5 - parent: 2 - - uid: 5294 - components: - - type: Transform - pos: 61.5,-34.5 - parent: 2 - - uid: 5295 - components: - - type: Transform - pos: 59.5,-40.5 - parent: 2 - - uid: 5296 - components: - - type: Transform - pos: 60.5,-40.5 - parent: 2 - - uid: 5297 - components: - - type: Transform - pos: 61.5,-40.5 - parent: 2 - - uid: 5298 - components: - - type: Transform - pos: 62.5,-40.5 - parent: 2 - - uid: 5299 - components: - - type: Transform - pos: 63.5,-40.5 - parent: 2 - - uid: 5300 - components: - - type: Transform - pos: 64.5,-40.5 - parent: 2 - - uid: 5301 - components: - - type: Transform - pos: 64.5,-39.5 - parent: 2 - - uid: 5302 - components: - - type: Transform - pos: 64.5,-41.5 - parent: 2 - - uid: 5303 - components: - - type: Transform - pos: 58.5,-40.5 - parent: 2 - - uid: 5304 - components: - - type: Transform - pos: 57.5,-40.5 - parent: 2 - - uid: 5305 - components: - - type: Transform - pos: 56.5,-40.5 - parent: 2 - - uid: 5306 - components: - - type: Transform - pos: 55.5,-40.5 - parent: 2 - - uid: 5307 - components: - - type: Transform - pos: 54.5,-40.5 - parent: 2 - - uid: 5308 - components: - - type: Transform - pos: 53.5,-40.5 - parent: 2 - - uid: 5309 - components: - - type: Transform - pos: 52.5,-40.5 - parent: 2 - - uid: 5310 - components: - - type: Transform - pos: 54.5,-39.5 - parent: 2 - - uid: 5311 - components: - - type: Transform - pos: 54.5,-38.5 - parent: 2 - - uid: 5312 - components: - - type: Transform - pos: 54.5,-37.5 - parent: 2 - - uid: 5313 - components: - - type: Transform - pos: 54.5,-36.5 - parent: 2 - - uid: 5314 - components: - - type: Transform - pos: 54.5,-35.5 - parent: 2 - - uid: 5315 - components: - - type: Transform - pos: 54.5,-34.5 - parent: 2 - - uid: 5316 - components: - - type: Transform - pos: 53.5,-34.5 - parent: 2 - - uid: 5317 - components: - - type: Transform - pos: 52.5,-34.5 - parent: 2 - - uid: 5318 - components: - - type: Transform - pos: 55.5,-34.5 - parent: 2 - - uid: 5319 - components: - - type: Transform - pos: 56.5,-34.5 - parent: 2 - - uid: 5320 - components: - - type: Transform - pos: 61.5,-35.5 - parent: 2 - - uid: 5321 - components: - - type: Transform - pos: 61.5,-36.5 - parent: 2 - - uid: 5322 - components: - - type: Transform - pos: 53.5,-37.5 - parent: 2 - - uid: 5323 - components: - - type: Transform - pos: 52.5,-37.5 - parent: 2 - - uid: 5324 - components: - - type: Transform - pos: 71.5,-52.5 - parent: 2 - - uid: 5326 - components: - - type: Transform - pos: 11.5,6.5 - parent: 2 - - uid: 5327 - components: - - type: Transform - pos: 12.5,6.5 - parent: 2 - - uid: 5328 - components: - - type: Transform - pos: 13.5,6.5 - parent: 2 - - uid: 5329 - components: - - type: Transform - pos: 30.5,6.5 - parent: 2 - - uid: 5330 - components: - - type: Transform - pos: 59.5,-23.5 - parent: 2 - - uid: 5331 - components: - - type: Transform - pos: 38.5,-5.5 - parent: 2 - - uid: 5332 - components: - - type: Transform - pos: 55.5,-24.5 - parent: 2 - - uid: 5333 - components: - - type: Transform - pos: 70.5,-52.5 - parent: 2 - - uid: 5334 - components: - - type: Transform - pos: 69.5,-52.5 - parent: 2 - - uid: 5335 - components: - - type: Transform - pos: 68.5,-52.5 - parent: 2 + pos: 101.5,60.5 + parent: 2 + - type: DeviceList + devices: + - 5104 + - 20204 + - 20206 + - 20203 + - 5102 + - 5101 + - 5100 + - 6842 + - 6840 + - 6841 + - 6839 - uid: 5336 components: - type: Transform - pos: 67.5,-52.5 - parent: 2 - - uid: 5337 - components: - - type: Transform - pos: 66.5,-52.5 - parent: 2 - - uid: 5338 - components: - - type: Transform - pos: 66.5,-51.5 - parent: 2 - - uid: 5339 - components: - - type: Transform - pos: 66.5,-50.5 - parent: 2 - - uid: 5340 - components: - - type: Transform - pos: 66.5,-49.5 - parent: 2 - - uid: 5341 - components: - - type: Transform - pos: 67.5,-49.5 - parent: 2 - - uid: 5342 - components: - - type: Transform - pos: 65.5,-49.5 - parent: 2 - - uid: 5343 - components: - - type: Transform - pos: 71.5,-51.5 - parent: 2 - - uid: 5344 - components: - - type: Transform - pos: 71.5,-50.5 - parent: 2 - - uid: 5345 - components: - - type: Transform - pos: 71.5,-49.5 - parent: 2 - - uid: 5346 - components: - - type: Transform - pos: 72.5,-49.5 - parent: 2 - - uid: 5347 - components: - - type: Transform - pos: 73.5,-49.5 - parent: 2 - - uid: 5348 - components: - - type: Transform - pos: 74.5,-49.5 - parent: 2 - - uid: 5349 - components: - - type: Transform - pos: 75.5,-49.5 - parent: 2 - - uid: 5350 - components: - - type: Transform - pos: 76.5,-49.5 - parent: 2 - - uid: 5351 - components: - - type: Transform - pos: 77.5,-49.5 - parent: 2 - - uid: 5352 - components: - - type: Transform - pos: 78.5,-49.5 - parent: 2 - - uid: 5353 - components: - - type: Transform - pos: 79.5,-49.5 - parent: 2 - - uid: 5354 - components: - - type: Transform - pos: 79.5,-50.5 - parent: 2 - - uid: 5355 - components: - - type: Transform - pos: 79.5,-51.5 - parent: 2 - - uid: 5356 - components: - - type: Transform - pos: 79.5,-52.5 - parent: 2 - - uid: 5357 - components: - - type: Transform - pos: 79.5,-53.5 - parent: 2 - - uid: 5358 - components: - - type: Transform - pos: 78.5,-53.5 - parent: 2 - - uid: 5359 - components: - - type: Transform - pos: 77.5,-53.5 - parent: 2 - - uid: 5360 - components: - - type: Transform - pos: 76.5,-53.5 - parent: 2 - - uid: 5361 - components: - - type: Transform - pos: 72.5,-52.5 - parent: 2 - - uid: 5362 - components: - - type: Transform - pos: 73.5,-52.5 - parent: 2 - - uid: 5363 - components: - - type: Transform - pos: 77.5,-51.5 - parent: 2 - - uid: 5364 - components: - - type: Transform - pos: 78.5,-51.5 - parent: 2 - - uid: 5365 - components: - - type: Transform - pos: 77.5,-52.5 - parent: 2 - - uid: 5366 - components: - - type: Transform - pos: 74.5,-52.5 - parent: 2 - - uid: 5367 - components: - - type: Transform - pos: 75.5,-52.5 - parent: 2 - - uid: 5368 - components: - - type: Transform - pos: 75.5,-51.5 - parent: 2 - - uid: 5369 - components: - - type: Transform - pos: 75.5,-53.5 - parent: 2 - - uid: 5370 - components: - - type: Transform - pos: 75.5,-54.5 - parent: 2 - - uid: 5371 - components: - - type: Transform - pos: 73.5,-53.5 - parent: 2 - - uid: 5372 - components: - - type: Transform - pos: 73.5,-54.5 - parent: 2 - - uid: 5373 - components: - - type: Transform - pos: 73.5,-55.5 - parent: 2 - - uid: 5374 - components: - - type: Transform - pos: 73.5,-56.5 - parent: 2 - - uid: 5375 - components: - - type: Transform - pos: 61.5,-37.5 - parent: 2 - - uid: 5380 - components: - - type: Transform - pos: 81.5,-28.5 - parent: 2 - - uid: 5382 - components: - - type: Transform - pos: 71.5,-45.5 - parent: 2 - - uid: 5383 - components: - - type: Transform - pos: 70.5,-45.5 - parent: 2 - - uid: 5384 - components: - - type: Transform - pos: 69.5,-45.5 - parent: 2 - - uid: 5385 - components: - - type: Transform - pos: 69.5,-44.5 - parent: 2 - - uid: 5386 - components: - - type: Transform - pos: 69.5,-46.5 - parent: 2 - - uid: 5394 - components: - - type: Transform - pos: 53.5,-19.5 - parent: 2 - - uid: 5396 - components: - - type: Transform - pos: 53.5,-18.5 - parent: 2 - - uid: 5399 - components: - - type: Transform - pos: 53.5,-21.5 - parent: 2 - - uid: 5400 - components: - - type: Transform - pos: 53.5,-22.5 - parent: 2 - - uid: 5405 - components: - - type: Transform - pos: 80.5,-28.5 - parent: 2 - - uid: 5406 - components: - - type: Transform - pos: 59.5,-36.5 - parent: 2 - - uid: 5407 - components: - - type: Transform - pos: 60.5,-36.5 - parent: 2 - - uid: 5408 - components: - - type: Transform - pos: 63.5,-36.5 - parent: 2 - - uid: 5424 - components: - - type: Transform - pos: 60.5,-29.5 - parent: 2 - - uid: 5426 - components: - - type: Transform - pos: 51.5,-23.5 - parent: 2 - - uid: 5427 - components: - - type: Transform - pos: -24.5,-33.5 - parent: 2 - - uid: 5428 - components: - - type: Transform - pos: 84.5,-28.5 - parent: 2 - - uid: 5429 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 2 - - uid: 5434 - components: - - type: Transform - pos: 58.5,-23.5 - parent: 2 - - uid: 5435 - components: - - type: Transform - pos: 52.5,-17.5 - parent: 2 - - uid: 5436 - components: - - type: Transform - pos: 58.5,-17.5 - parent: 2 - - uid: 5438 - components: - - type: Transform - pos: 28.5,6.5 - parent: 2 - - uid: 5439 - components: - - type: Transform - pos: 56.5,-17.5 - parent: 2 - - uid: 5440 - components: - - type: Transform - pos: 12.5,-34.5 - parent: 2 - - uid: 5441 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 2 - - uid: 5442 - components: - - type: Transform - pos: 12.5,-32.5 - parent: 2 - - uid: 5443 - components: - - type: Transform - pos: 12.5,-31.5 - parent: 2 - - uid: 5444 - components: - - type: Transform - pos: 70.5,14.5 - parent: 2 - - uid: 5446 - components: - - type: Transform - pos: -22.5,-45.5 - parent: 2 - - uid: 5447 - components: - - type: Transform - pos: -77.5,-13.5 - parent: 2 - - uid: 5448 - components: - - type: Transform - pos: -78.5,-13.5 - parent: 2 - - uid: 5455 - components: - - type: Transform - pos: -36.5,-22.5 - parent: 2 - - uid: 5456 - components: - - type: Transform - pos: -41.5,-29.5 - parent: 2 - - uid: 5457 - components: - - type: Transform - pos: -41.5,-30.5 - parent: 2 - - uid: 5458 - components: - - type: Transform - pos: 9.5,-34.5 - parent: 2 - - uid: 5459 - components: - - type: Transform - pos: 8.5,-36.5 - parent: 2 - - uid: 5461 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 2 - - uid: 5464 - components: - - type: Transform - pos: 77.5,-2.5 - parent: 2 - - uid: 5465 - components: - - type: Transform - pos: 77.5,-1.5 - parent: 2 - - uid: 5469 - components: - - type: Transform - pos: -28.5,12.5 - parent: 2 - - uid: 5470 - components: - - type: Transform - pos: -29.5,12.5 - parent: 2 - - uid: 5471 - components: - - type: Transform - pos: -30.5,12.5 - parent: 2 - - uid: 5477 - components: - - type: Transform - pos: 17.5,31.5 - parent: 2 - - uid: 5495 - components: - - type: Transform - pos: 9.5,-78.5 - parent: 2 - - uid: 5501 - components: - - type: Transform - pos: 77.5,4.5 - parent: 2 - - uid: 5502 - components: - - type: Transform - pos: -22.5,6.5 - parent: 2 - - uid: 5503 - components: - - type: Transform - pos: -41.5,-28.5 - parent: 2 - - uid: 5506 - components: - - type: Transform - pos: 77.5,0.5 - parent: 2 - - uid: 5507 - components: - - type: Transform - pos: 77.5,1.5 - parent: 2 - - uid: 5512 - components: - - type: Transform - pos: 77.5,2.5 - parent: 2 - - uid: 5513 - components: - - type: Transform - pos: 77.5,-0.5 - parent: 2 - - uid: 5514 - components: - - type: Transform - pos: -22.5,7.5 - parent: 2 - - uid: 5515 - components: - - type: Transform - pos: -22.5,4.5 - parent: 2 - - uid: 5516 - components: - - type: Transform - pos: -17.5,-30.5 - parent: 2 - - uid: 5517 - components: - - type: Transform - pos: 60.5,-22.5 - parent: 2 - - uid: 5519 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - - uid: 5525 - components: - - type: Transform - pos: 70.5,-0.5 - parent: 2 - - uid: 5526 - components: - - type: Transform - pos: 69.5,-0.5 - parent: 2 - - uid: 5527 - components: - - type: Transform - pos: -20.5,4.5 - parent: 2 - - uid: 5528 - components: - - type: Transform - pos: -10.5,48.5 - parent: 2 - - uid: 5529 - components: - - type: Transform - pos: -11.5,48.5 - parent: 2 - - uid: 5530 - components: - - type: Transform - pos: -11.5,49.5 - parent: 2 - - uid: 5531 - components: - - type: Transform - pos: -11.5,50.5 - parent: 2 - - uid: 5532 - components: - - type: Transform - pos: 46.5,5.5 - parent: 2 - - uid: 5533 - components: - - type: Transform - pos: -13.5,51.5 - parent: 2 - - uid: 5534 - components: - - type: Transform - pos: -13.5,50.5 - parent: 2 - - uid: 5535 - components: - - type: Transform - pos: -10.5,-21.5 - parent: 2 - - uid: 5538 - components: - - type: Transform - pos: -13.5,53.5 - parent: 2 - - uid: 5540 - components: - - type: Transform - pos: 9.5,-75.5 - parent: 2 - - uid: 5542 - components: - - type: Transform - pos: -13.5,52.5 - parent: 2 - - uid: 5543 - components: - - type: Transform - pos: -12.5,49.5 - parent: 2 - - uid: 5544 - components: - - type: Transform - pos: -13.5,49.5 - parent: 2 - - uid: 5545 - components: - - type: Transform - pos: -14.5,49.5 - parent: 2 - - uid: 5546 - components: - - type: Transform - pos: -15.5,49.5 - parent: 2 - - uid: 5547 - components: - - type: Transform - pos: -6.5,50.5 - parent: 2 - - uid: 5562 - components: - - type: Transform - pos: -20.5,3.5 - parent: 2 - - uid: 5563 - components: - - type: Transform - pos: 6.5,5.5 - parent: 2 - - uid: 5567 - components: - - type: Transform - pos: -22.5,3.5 - parent: 2 - - uid: 5568 - components: - - type: Transform - pos: 55.5,-16.5 - parent: 2 - - uid: 5569 - components: - - type: Transform - pos: 57.5,-23.5 - parent: 2 - - uid: 5576 - components: - - type: Transform - pos: -20.5,7.5 - parent: 2 - - uid: 5577 - components: - - type: Transform - pos: 9.5,-36.5 - parent: 2 - - uid: 5578 - components: - - type: Transform - pos: -3.5,-63.5 - parent: 2 - - uid: 5587 - components: - - type: Transform - pos: 2.5,-41.5 - parent: 2 - - uid: 5589 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 2 - - uid: 5591 - components: - - type: Transform - pos: 9.5,-69.5 - parent: 2 - - uid: 5592 - components: - - type: Transform - pos: 10.5,-69.5 - parent: 2 - - uid: 5593 - components: - - type: Transform - pos: 4.5,-72.5 - parent: 2 - - uid: 5595 - components: - - type: Transform - pos: 55.5,-17.5 - parent: 2 - - uid: 5596 - components: - - type: Transform - pos: 55.5,-22.5 - parent: 2 - - uid: 5597 - components: - - type: Transform - pos: 58.5,-20.5 - parent: 2 - - uid: 5599 - components: - - type: Transform - pos: 53.5,-20.5 - parent: 2 - - uid: 5603 - components: - - type: Transform - pos: -2.5,-63.5 - parent: 2 - - uid: 5627 - components: - - type: Transform - pos: 80.5,-27.5 - parent: 2 - - uid: 5628 - components: - - type: Transform - pos: 80.5,-26.5 - parent: 2 - - uid: 5657 - components: - - type: Transform - pos: -0.5,-21.5 - parent: 2 - - uid: 5670 - components: - - type: Transform - pos: -68.5,18.5 - parent: 2 - - uid: 5675 - components: - - type: Transform - pos: -1.5,-21.5 - parent: 2 - - uid: 5720 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 2 - - uid: 5721 - components: - - type: Transform - pos: 11.5,-18.5 - parent: 2 - - uid: 5722 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 2 - - uid: 5723 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 2 - - uid: 5724 - components: - - type: Transform - pos: 24.5,-4.5 - parent: 2 - - uid: 5725 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 2 - - uid: 5726 - components: - - type: Transform - pos: 53.5,-17.5 - parent: 2 - - uid: 5727 - components: - - type: Transform - pos: -14.5,-50.5 - parent: 2 - - uid: 5728 - components: - - type: Transform - pos: -12.5,-50.5 - parent: 2 - - uid: 5729 - components: - - type: Transform - pos: -12.5,-56.5 - parent: 2 - - uid: 5730 - components: - - type: Transform - pos: -14.5,-56.5 - parent: 2 - - uid: 5731 - components: - - type: Transform - pos: -11.5,-50.5 - parent: 2 - - uid: 5732 - components: - - type: Transform - pos: -15.5,-50.5 - parent: 2 - - uid: 5733 - components: - - type: Transform - pos: -15.5,-56.5 - parent: 2 - - uid: 5734 - components: - - type: Transform - pos: -11.5,-56.5 - parent: 2 - - uid: 5735 - components: - - type: Transform - pos: -1.5,-60.5 - parent: 2 - - uid: 5736 - components: - - type: Transform - pos: -1.5,-63.5 - parent: 2 - - uid: 5737 - components: - - type: Transform - pos: -7.5,-69.5 - parent: 2 - - uid: 5738 - components: - - type: Transform - pos: -7.5,-70.5 - parent: 2 - - uid: 5739 - components: - - type: Transform - pos: -7.5,-71.5 - parent: 2 - - uid: 5740 - components: - - type: Transform - pos: -7.5,-72.5 - parent: 2 - - uid: 5741 - components: - - type: Transform - pos: -7.5,-73.5 - parent: 2 - - uid: 5742 - components: - - type: Transform - pos: -7.5,-74.5 - parent: 2 - - uid: 5743 - components: - - type: Transform - pos: -6.5,-74.5 - parent: 2 - - uid: 5744 - components: - - type: Transform - pos: -5.5,-74.5 - parent: 2 - - uid: 5745 - components: - - type: Transform - pos: -6.5,-78.5 - parent: 2 - - uid: 5746 - components: - - type: Transform - pos: -0.5,-79.5 - parent: 2 - - uid: 5747 - components: - - type: Transform - pos: -1.5,-79.5 - parent: 2 - - uid: 5748 - components: - - type: Transform - pos: -2.5,-79.5 - parent: 2 - - uid: 5749 - components: - - type: Transform - pos: -3.5,-79.5 - parent: 2 - - uid: 5750 - components: - - type: Transform - pos: -3.5,-77.5 - parent: 2 - - uid: 5751 - components: - - type: Transform - pos: 0.5,-79.5 - parent: 2 - - uid: 5752 - components: - - type: Transform - pos: 1.5,-79.5 - parent: 2 - - uid: 5753 - components: - - type: Transform - pos: 2.5,-79.5 - parent: 2 - - uid: 5755 - components: - - type: Transform - pos: 5.5,-78.5 - parent: 2 - - uid: 5756 - components: - - type: Transform - pos: 2.5,-76.5 - parent: 2 - - uid: 5757 - components: - - type: Transform - pos: 1.5,-76.5 - parent: 2 - - uid: 5758 - components: - - type: Transform - pos: 1.5,-77.5 - parent: 2 - - uid: 5759 - components: - - type: Transform - pos: 0.5,-76.5 - parent: 2 - - uid: 5760 - components: - - type: Transform - pos: -0.5,-76.5 - parent: 2 - - uid: 5761 - components: - - type: Transform - pos: -0.5,-75.5 - parent: 2 - - uid: 5762 - components: - - type: Transform - pos: -0.5,-74.5 - parent: 2 - - uid: 5763 - components: - - type: Transform - pos: -1.5,-74.5 - parent: 2 - - uid: 5768 - components: - - type: Transform - pos: 33.5,9.5 - parent: 2 - - uid: 5769 - components: - - type: Transform - pos: 30.5,12.5 - parent: 2 - - uid: 5770 - components: - - type: Transform - pos: 32.5,11.5 - parent: 2 - - uid: 5771 - components: - - type: Transform - pos: 33.5,11.5 - parent: 2 - - uid: 5772 - components: - - type: Transform - pos: 31.5,11.5 - parent: 2 - - uid: 5773 - components: - - type: Transform - pos: 30.5,11.5 - parent: 2 - - uid: 5775 - components: - - type: Transform - pos: 30.5,13.5 - parent: 2 - - uid: 5776 - components: - - type: Transform - pos: 30.5,14.5 - parent: 2 - - uid: 5777 - components: - - type: Transform - pos: 30.5,15.5 - parent: 2 - - uid: 5778 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - - uid: 5779 - components: - - type: Transform - pos: 31.5,15.5 - parent: 2 - - uid: 5780 - components: - - type: Transform - pos: 32.5,15.5 - parent: 2 - - uid: 5781 - components: - - type: Transform - pos: 34.5,15.5 - parent: 2 - - uid: 5782 - components: - - type: Transform - pos: 35.5,15.5 - parent: 2 - - uid: 5783 - components: - - type: Transform - pos: 33.5,15.5 - parent: 2 - - uid: 5784 - components: - - type: Transform - pos: 36.5,16.5 - parent: 2 - - uid: 5785 - components: - - type: Transform - pos: 36.5,15.5 - parent: 2 - - uid: 5786 - components: - - type: Transform - pos: 36.5,14.5 - parent: 2 - - uid: 5787 - components: - - type: Transform - pos: 36.5,13.5 - parent: 2 - - uid: 5789 - components: - - type: Transform - pos: 36.5,12.5 - parent: 2 - - uid: 5793 - components: - - type: Transform - pos: -1.5,-62.5 - parent: 2 - - uid: 5794 - components: - - type: Transform - pos: 45.5,11.5 - parent: 2 - - uid: 5795 - components: - - type: Transform - pos: 44.5,11.5 - parent: 2 - - uid: 5796 - components: - - type: Transform - pos: 43.5,11.5 - parent: 2 - - uid: 5797 - components: - - type: Transform - pos: 43.5,12.5 - parent: 2 - - uid: 5798 - components: - - type: Transform - pos: 43.5,13.5 - parent: 2 - - uid: 5799 - components: - - type: Transform - pos: 43.5,14.5 - parent: 2 - - uid: 5800 - components: - - type: Transform - pos: 43.5,15.5 - parent: 2 - - uid: 5801 - components: - - type: Transform - pos: 42.5,15.5 - parent: 2 - - uid: 5802 - components: - - type: Transform - pos: 40.5,15.5 - parent: 2 - - uid: 5803 - components: - - type: Transform - pos: 39.5,15.5 - parent: 2 - - uid: 5804 - components: - - type: Transform - pos: 41.5,15.5 - parent: 2 - - uid: 5805 - components: - - type: Transform - pos: 39.5,16.5 - parent: 2 - - uid: 5806 - components: - - type: Transform - pos: 39.5,17.5 - parent: 2 - - uid: 5807 - components: - - type: Transform - pos: 39.5,19.5 - parent: 2 - - uid: 5808 - components: - - type: Transform - pos: 39.5,20.5 - parent: 2 - - uid: 5809 - components: - - type: Transform - pos: 39.5,21.5 - parent: 2 - - uid: 5810 - components: - - type: Transform - pos: 39.5,22.5 - parent: 2 - - uid: 5811 - components: - - type: Transform - pos: 39.5,23.5 - parent: 2 - - uid: 5812 - components: - - type: Transform - pos: 39.5,18.5 - parent: 2 - - uid: 5813 - components: - - type: Transform - pos: 39.5,24.5 - parent: 2 - - uid: 5814 - components: - - type: Transform - pos: 39.5,25.5 - parent: 2 - - uid: 5815 - components: - - type: Transform - pos: 38.5,25.5 - parent: 2 - - uid: 5816 - components: - - type: Transform - pos: 37.5,25.5 - parent: 2 - - uid: 5817 - components: - - type: Transform - pos: 36.5,25.5 - parent: 2 - - uid: 5818 - components: - - type: Transform - pos: 34.5,25.5 - parent: 2 - - uid: 5819 - components: - - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 5820 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 5821 - components: - - type: Transform - pos: 32.5,25.5 - parent: 2 - - uid: 5822 - components: - - type: Transform - pos: 30.5,25.5 - parent: 2 - - uid: 5823 - components: - - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 5824 - components: - - type: Transform - pos: 33.5,24.5 - parent: 2 - - uid: 5825 - components: - - type: Transform - pos: 33.5,23.5 - parent: 2 - - uid: 5826 - components: - - type: Transform - pos: 33.5,22.5 - parent: 2 - - uid: 5827 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - - uid: 5828 - components: - - type: Transform - pos: 38.5,-0.5 - parent: 2 - - uid: 5829 - components: - - type: Transform - pos: 39.5,-0.5 - parent: 2 - - uid: 5830 - components: - - type: Transform - pos: 36.5,-0.5 - parent: 2 - - uid: 5831 - components: - - type: Transform - pos: -1.5,-61.5 - parent: 2 - - uid: 5832 - components: - - type: Transform - pos: -2.5,-60.5 - parent: 2 - - uid: 5833 - components: - - type: Transform - pos: -0.5,-60.5 - parent: 2 - - uid: 5854 - components: - - type: Transform - pos: -20.5,6.5 - parent: 2 - - uid: 5855 - components: - - type: Transform - pos: 79.5,-17.5 - parent: 2 - - uid: 5856 - components: - - type: Transform - pos: 79.5,-16.5 - parent: 2 - - uid: 5857 - components: - - type: Transform - pos: -20.5,5.5 - parent: 2 - - uid: 5858 - components: - - type: Transform - pos: 23.5,49.5 - parent: 2 - - uid: 5859 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 2 - - uid: 5860 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 2 - - uid: 5861 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 2 - - uid: 5862 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 2 - - uid: 5863 - components: - - type: Transform - pos: 18.5,-4.5 - parent: 2 - - uid: 5864 - components: - - type: Transform - pos: 18.5,-3.5 - parent: 2 - - uid: 5865 - components: - - type: Transform - pos: 17.5,-3.5 - parent: 2 - - uid: 5866 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 2 - - uid: 5867 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 2 - - uid: 5868 - components: - - type: Transform - pos: 28.5,-0.5 - parent: 2 - - uid: 5869 - components: - - type: Transform - pos: 28.5,0.5 - parent: 2 - - uid: 5870 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 2 - - uid: 5871 - components: - - type: Transform - pos: 29.5,-1.5 - parent: 2 - - uid: 5872 - components: - - type: Transform - pos: 31.5,-1.5 - parent: 2 - - uid: 5873 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 2 - - uid: 5874 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 2 - - uid: 5875 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 2 - - uid: 5876 - components: - - type: Transform - pos: 15.5,37.5 - parent: 2 - - uid: 5877 - components: - - type: Transform - pos: 13.5,36.5 - parent: 2 - - uid: 5878 - components: - - type: Transform - pos: 12.5,36.5 - parent: 2 - - uid: 5879 - components: - - type: Transform - pos: 14.5,36.5 - parent: 2 - - uid: 5880 - components: - - type: Transform - pos: 23.5,50.5 - parent: 2 - - uid: 5881 - components: - - type: Transform - pos: 23.5,51.5 - parent: 2 - - uid: 5882 - components: - - type: Transform - pos: 23.5,47.5 - parent: 2 - - uid: 5885 - components: - - type: Transform - pos: 14.5,40.5 - parent: 2 - - uid: 5886 - components: - - type: Transform - pos: 13.5,40.5 - parent: 2 - - uid: 5887 - components: - - type: Transform - pos: 13.5,42.5 - parent: 2 - - uid: 5888 - components: - - type: Transform - pos: 13.5,43.5 - parent: 2 - - uid: 5889 - components: - - type: Transform - pos: 13.5,44.5 - parent: 2 - - uid: 5890 - components: - - type: Transform - pos: 13.5,41.5 - parent: 2 - - uid: 5891 - components: - - type: Transform - pos: 14.5,44.5 - parent: 2 - - uid: 5892 - components: - - type: Transform - pos: 16.5,44.5 - parent: 2 - - uid: 5893 - components: - - type: Transform - pos: 17.5,44.5 - parent: 2 - - uid: 5894 - components: - - type: Transform - pos: 15.5,44.5 - parent: 2 - - uid: 5895 - components: - - type: Transform - pos: 17.5,43.5 - parent: 2 - - uid: 5896 - components: - - type: Transform - pos: 17.5,42.5 - parent: 2 - - uid: 5897 - components: - - type: Transform - pos: 17.5,41.5 - parent: 2 - - uid: 5898 - components: - - type: Transform - pos: 17.5,40.5 - parent: 2 - - uid: 5899 - components: - - type: Transform - pos: 16.5,40.5 - parent: 2 - - uid: 5900 - components: - - type: Transform - pos: 15.5,40.5 - parent: 2 - - uid: 5901 - components: - - type: Transform - pos: 22.5,38.5 - parent: 2 - - uid: 5902 - components: - - type: Transform - pos: 21.5,38.5 - parent: 2 - - uid: 5903 - components: - - type: Transform - pos: 24.5,35.5 - parent: 2 - - uid: 5905 - components: - - type: Transform - pos: 10.5,-24.5 - parent: 2 - - uid: 5906 - components: - - type: Transform - pos: -21.5,1.5 - parent: 2 - - uid: 5910 - components: - - type: Transform - pos: -17.5,4.5 - parent: 2 - - uid: 5911 - components: - - type: Transform - pos: -17.5,3.5 - parent: 2 - - uid: 5915 - components: - - type: Transform - pos: -17.5,2.5 - parent: 2 - - uid: 5916 - components: - - type: Transform - pos: -17.5,6.5 - parent: 2 - - uid: 5917 - components: - - type: Transform - pos: -17.5,7.5 - parent: 2 - - uid: 5918 - components: - - type: Transform - pos: -47.5,-19.5 - parent: 2 - - uid: 5919 - components: - - type: Transform - pos: -47.5,-20.5 - parent: 2 - - uid: 5920 - components: - - type: Transform - pos: -47.5,-21.5 - parent: 2 - - uid: 5921 - components: - - type: Transform - pos: -47.5,-22.5 - parent: 2 - - uid: 5922 - components: - - type: Transform - pos: -47.5,-23.5 - parent: 2 - - uid: 5923 - components: - - type: Transform - pos: -47.5,-24.5 - parent: 2 - - uid: 5924 - components: - - type: Transform - pos: -47.5,-25.5 - parent: 2 - - uid: 5925 - components: - - type: Transform - pos: -47.5,-26.5 - parent: 2 - - uid: 5926 - components: - - type: Transform - pos: -47.5,-27.5 - parent: 2 - - uid: 5927 - components: - - type: Transform - pos: -47.5,-28.5 - parent: 2 - - uid: 5928 - components: - - type: Transform - pos: -47.5,-29.5 - parent: 2 - - uid: 5929 - components: - - type: Transform - pos: -47.5,-30.5 - parent: 2 - - uid: 5930 - components: - - type: Transform - pos: -47.5,-31.5 - parent: 2 - - uid: 5931 - components: - - type: Transform - pos: -47.5,-32.5 - parent: 2 - - uid: 5932 - components: - - type: Transform - pos: -47.5,-33.5 - parent: 2 - - uid: 5933 - components: - - type: Transform - pos: -47.5,-34.5 - parent: 2 - - uid: 5934 - components: - - type: Transform - pos: -48.5,-28.5 - parent: 2 - - uid: 5935 - components: - - type: Transform - pos: -49.5,-28.5 - parent: 2 - - uid: 5936 - components: - - type: Transform - pos: -50.5,-28.5 - parent: 2 - - uid: 5939 - components: - - type: Transform - pos: -51.5,-28.5 - parent: 2 - - uid: 5940 - components: - - type: Transform - pos: -54.5,-28.5 - parent: 2 - - uid: 5941 - components: - - type: Transform - pos: -56.5,-28.5 - parent: 2 - - uid: 5942 - components: - - type: Transform - pos: -55.5,-28.5 - parent: 2 - - uid: 5943 - components: - - type: Transform - pos: -57.5,-28.5 - parent: 2 - - uid: 5944 - components: - - type: Transform - pos: -57.5,-27.5 - parent: 2 - - uid: 5945 - components: - - type: Transform - pos: -57.5,-26.5 - parent: 2 - - uid: 5946 - components: - - type: Transform - pos: -57.5,-25.5 - parent: 2 - - uid: 5950 - components: - - type: Transform - pos: -57.5,-22.5 - parent: 2 - - uid: 5955 - components: - - type: Transform - pos: -42.5,-34.5 - parent: 2 - - uid: 5957 - components: - - type: Transform - pos: -46.5,-34.5 - parent: 2 - - uid: 5958 - components: - - type: Transform - pos: -41.5,-34.5 - parent: 2 - - uid: 5959 - components: - - type: Transform - pos: -43.5,-34.5 - parent: 2 - - uid: 5960 - components: - - type: Transform - pos: -44.5,-34.5 - parent: 2 - - uid: 5967 - components: - - type: Transform - pos: -40.5,-34.5 - parent: 2 - - uid: 5968 - components: - - type: Transform - pos: -39.5,-34.5 - parent: 2 - - uid: 5973 - components: - - type: Transform - pos: -17.5,8.5 - parent: 2 - - uid: 5974 - components: - - type: Transform - pos: -17.5,5.5 - parent: 2 - - uid: 5975 - components: - - type: Transform - pos: 55.5,-9.5 - parent: 2 - - uid: 5976 - components: - - type: Transform - pos: 55.5,-10.5 - parent: 2 - - uid: 5977 - components: - - type: Transform - pos: 55.5,-11.5 - parent: 2 - - uid: 5978 - components: - - type: Transform - pos: 60.5,-9.5 - parent: 2 - - uid: 5979 - components: - - type: Transform - pos: 61.5,-9.5 - parent: 2 - - uid: 5980 - components: - - type: Transform - pos: 62.5,-9.5 - parent: 2 - - uid: 5981 - components: - - type: Transform - pos: 63.5,-9.5 - parent: 2 - - uid: 5982 - components: - - type: Transform - pos: 63.5,-10.5 - parent: 2 - - uid: 5983 - components: - - type: Transform - pos: 63.5,-11.5 - parent: 2 - - uid: 5984 - components: - - type: Transform - pos: 61.5,-10.5 - parent: 2 - - uid: 5985 - components: - - type: Transform - pos: 61.5,-11.5 - parent: 2 - - uid: 5986 - components: - - type: Transform - pos: 57.5,-3.5 - parent: 2 - - uid: 5987 - components: - - type: Transform - pos: 58.5,-3.5 - parent: 2 - - uid: 5988 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 2 - - uid: 5989 - components: - - type: Transform - pos: 56.5,-2.5 - parent: 2 - - uid: 5990 - components: - - type: Transform - pos: 56.5,-1.5 - parent: 2 - - uid: 5991 - components: - - type: Transform - pos: 56.5,-0.5 - parent: 2 - - uid: 5992 - components: - - type: Transform - pos: 54.5,2.5 - parent: 2 - - uid: 5993 - components: - - type: Transform - pos: 55.5,2.5 - parent: 2 - - uid: 5994 - components: - - type: Transform - pos: 62.5,-5.5 - parent: 2 - - uid: 5995 - components: - - type: Transform - pos: 60.5,-5.5 - parent: 2 - - uid: 5996 - components: - - type: Transform - pos: 59.5,-5.5 - parent: 2 - - uid: 5997 - components: - - type: Transform - pos: 61.5,-5.5 - parent: 2 - - uid: 5998 - components: - - type: Transform - pos: 60.5,-6.5 - parent: 2 - - uid: 5999 - components: - - type: Transform - pos: 60.5,-7.5 - parent: 2 - - uid: 6000 - components: - - type: Transform - pos: 61.5,-4.5 - parent: 2 - - uid: 6001 - components: - - type: Transform - pos: 61.5,-3.5 - parent: 2 - - uid: 6002 - components: - - type: Transform - pos: 61.5,-2.5 - parent: 2 - - uid: 6003 - components: - - type: Transform - pos: 62.5,-3.5 - parent: 2 - - uid: 6004 - components: - - type: Transform - pos: 63.5,-3.5 - parent: 2 - - uid: 6005 - components: - - type: Transform - pos: 64.5,-3.5 - parent: 2 - - uid: 6006 - components: - - type: Transform - pos: 60.5,1.5 - parent: 2 - - uid: 6007 - components: - - type: Transform - pos: 61.5,1.5 - parent: 2 - - uid: 6008 - components: - - type: Transform - pos: 63.5,1.5 - parent: 2 - - uid: 6009 - components: - - type: Transform - pos: 64.5,1.5 - parent: 2 - - uid: 6010 - components: - - type: Transform - pos: 65.5,1.5 - parent: 2 - - uid: 6011 - components: - - type: Transform - pos: 66.5,1.5 - parent: 2 - - uid: 6012 - components: - - type: Transform - pos: 62.5,1.5 - parent: 2 - - uid: 6013 - components: - - type: Transform - pos: 67.5,1.5 - parent: 2 - - uid: 6014 - components: - - type: Transform - pos: 66.5,3.5 - parent: 2 - - uid: 6015 - components: - - type: Transform - pos: 66.5,2.5 - parent: 2 - - uid: 6016 - components: - - type: Transform - pos: 66.5,0.5 - parent: 2 - - uid: 6017 - components: - - type: Transform - pos: 66.5,-1.5 - parent: 2 - - uid: 6018 - components: - - type: Transform - pos: 66.5,-2.5 - parent: 2 - - uid: 6019 - components: - - type: Transform - pos: 66.5,-3.5 - parent: 2 - - uid: 6020 - components: - - type: Transform - pos: 66.5,-4.5 - parent: 2 - - uid: 6021 - components: - - type: Transform - pos: 66.5,-0.5 - parent: 2 - - uid: 6022 - components: - - type: Transform - pos: 64.5,-6.5 - parent: 2 - - uid: 6023 - components: - - type: Transform - pos: 65.5,-6.5 - parent: 2 - - uid: 6024 - components: - - type: Transform - pos: 67.5,-6.5 - parent: 2 - - uid: 6025 - components: - - type: Transform - pos: 68.5,-6.5 - parent: 2 - - uid: 6026 - components: - - type: Transform - pos: 66.5,-6.5 - parent: 2 - - uid: 6027 - components: - - type: Transform - pos: 66.5,-7.5 - parent: 2 - - uid: 6028 - components: - - type: Transform - pos: 66.5,-8.5 - parent: 2 - - uid: 6029 - components: - - type: Transform - pos: 66.5,-10.5 - parent: 2 - - uid: 6030 - components: - - type: Transform - pos: 66.5,-9.5 - parent: 2 - - uid: 6031 - components: - - type: Transform - pos: 70.5,-5.5 - parent: 2 - - uid: 6032 - components: - - type: Transform - pos: 72.5,-5.5 - parent: 2 - - uid: 6033 - components: - - type: Transform - pos: 73.5,-5.5 - parent: 2 - - uid: 6034 - components: - - type: Transform - pos: 74.5,-5.5 - parent: 2 - - uid: 6035 - components: - - type: Transform - pos: 75.5,-5.5 - parent: 2 - - uid: 6036 - components: - - type: Transform - pos: 71.5,-5.5 - parent: 2 - - uid: 6037 - components: - - type: Transform - pos: 73.5,-6.5 - parent: 2 - - uid: 6038 - components: - - type: Transform - pos: 73.5,-8.5 - parent: 2 - - uid: 6039 - components: - - type: Transform - pos: 73.5,-9.5 - parent: 2 - - uid: 6040 - components: - - type: Transform - pos: 73.5,-7.5 - parent: 2 - - uid: 6041 - components: - - type: Transform - pos: 74.5,-9.5 - parent: 2 - - uid: 6042 - components: - - type: Transform - pos: 75.5,-9.5 - parent: 2 - - uid: 6043 - components: - - type: Transform - pos: 76.5,-9.5 - parent: 2 - - uid: 6044 - components: - - type: Transform - pos: 72.5,-9.5 - parent: 2 - - uid: 6045 - components: - - type: Transform - pos: 71.5,-9.5 - parent: 2 - - uid: 6046 - components: - - type: Transform - pos: 70.5,-9.5 - parent: 2 - - uid: 6047 - components: - - type: Transform - pos: 73.5,-4.5 - parent: 2 - - uid: 6048 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 2 - - uid: 6049 - components: - - type: Transform - pos: 73.5,-1.5 - parent: 2 - - uid: 6050 - components: - - type: Transform - pos: 73.5,-3.5 - parent: 2 - - uid: 6051 - components: - - type: Transform - pos: 71.5,-0.5 - parent: 2 - - uid: 6052 - components: - - type: Transform - pos: 71.5,1.5 - parent: 2 - - uid: 6053 - components: - - type: Transform - pos: 71.5,2.5 - parent: 2 - - uid: 6054 - components: - - type: Transform - pos: 71.5,3.5 - parent: 2 - - uid: 6055 - components: - - type: Transform - pos: 71.5,0.5 - parent: 2 - - uid: 6056 - components: - - type: Transform - pos: 73.5,3.5 - parent: 2 - - uid: 6057 - components: - - type: Transform - pos: 74.5,3.5 - parent: 2 - - uid: 6058 - components: - - type: Transform - pos: 74.5,2.5 - parent: 2 - - uid: 6059 - components: - - type: Transform - pos: 74.5,1.5 - parent: 2 - - uid: 6060 - components: - - type: Transform - pos: 74.5,0.5 - parent: 2 - - uid: 6061 - components: - - type: Transform - pos: 82.5,-5.5 - parent: 2 - - uid: 6062 - components: - - type: Transform - pos: 82.5,-6.5 - parent: 2 - - uid: 6063 - components: - - type: Transform - pos: 82.5,-8.5 - parent: 2 - - uid: 6064 - components: - - type: Transform - pos: 82.5,-9.5 - parent: 2 - - uid: 6065 - components: - - type: Transform - pos: 82.5,-10.5 - parent: 2 - - uid: 6066 - components: - - type: Transform - pos: 82.5,-11.5 - parent: 2 - - uid: 6067 - components: - - type: Transform - pos: 82.5,-12.5 - parent: 2 - - uid: 6068 - components: - - type: Transform - pos: 82.5,-7.5 - parent: 2 - - uid: 6069 - components: - - type: Transform - pos: 82.5,-13.5 - parent: 2 - - uid: 6070 - components: - - type: Transform - pos: 82.5,-14.5 - parent: 2 - - uid: 6071 - components: - - type: Transform - pos: 74.5,-13.5 - parent: 2 - - uid: 6072 - components: - - type: Transform - pos: 73.5,-13.5 - parent: 2 - - uid: 6073 - components: - - type: Transform - pos: 81.5,-13.5 - parent: 2 - - uid: 6074 - components: - - type: Transform - pos: 80.5,-13.5 - parent: 2 - - uid: 6075 - components: - - type: Transform - pos: 83.5,-13.5 - parent: 2 - - uid: 6076 - components: - - type: Transform - pos: 84.5,-13.5 - parent: 2 - - uid: 6077 - components: - - type: Transform - pos: 85.5,-13.5 - parent: 2 - - uid: 6078 - components: - - type: Transform - pos: 85.5,-12.5 - parent: 2 - - uid: 6079 - components: - - type: Transform - pos: 85.5,-11.5 - parent: 2 - - uid: 6080 - components: - - type: Transform - pos: 85.5,-9.5 - parent: 2 - - uid: 6081 - components: - - type: Transform - pos: 85.5,-8.5 - parent: 2 - - uid: 6082 - components: - - type: Transform - pos: 85.5,-7.5 - parent: 2 - - uid: 6083 - components: - - type: Transform - pos: 85.5,-10.5 - parent: 2 - - uid: 6084 - components: - - type: Transform - pos: 84.5,-7.5 - parent: 2 - - uid: 6085 - components: - - type: Transform - pos: 83.5,-7.5 - parent: 2 - - uid: 6087 - components: - - type: Transform - pos: 85.5,-6.5 - parent: 2 - - uid: 6088 - components: - - type: Transform - pos: 79.5,-11.5 - parent: 2 - - uid: 6089 - components: - - type: Transform - pos: 74.5,5.5 - parent: 2 - - uid: 6090 - components: - - type: Transform - pos: 79.5,-12.5 - parent: 2 - - uid: 6091 - components: - - type: Transform - pos: 79.5,-7.5 - parent: 2 - - uid: 6092 - components: - - type: Transform - pos: 78.5,-6.5 - parent: 2 - - uid: 6093 - components: - - type: Transform - pos: 80.5,-6.5 - parent: 2 - - uid: 6094 - components: - - type: Transform - pos: 81.5,-6.5 - parent: 2 - - uid: 6095 - components: - - type: Transform - pos: 79.5,-6.5 - parent: 2 - - uid: 6096 - components: - - type: Transform - pos: 80.5,-5.5 - parent: 2 - - uid: 6097 - components: - - type: Transform - pos: 80.5,-4.5 - parent: 2 - - uid: 6098 - components: - - type: Transform - pos: 82.5,-0.5 - parent: 2 - - uid: 6099 - components: - - type: Transform - pos: 80.5,-0.5 - parent: 2 - - uid: 6100 - components: - - type: Transform - pos: 79.5,-0.5 - parent: 2 - - uid: 6101 - components: - - type: Transform - pos: 78.5,-0.5 - parent: 2 - - uid: 6102 - components: - - type: Transform - pos: 81.5,-0.5 - parent: 2 - - uid: 6103 - components: - - type: Transform - pos: 80.5,-1.5 - parent: 2 - - uid: 6104 - components: - - type: Transform - pos: 80.5,-2.5 - parent: 2 - - uid: 6105 - components: - - type: Transform - pos: 80.5,0.5 - parent: 2 - - uid: 6106 - components: - - type: Transform - pos: 80.5,1.5 - parent: 2 - - uid: 6107 - components: - - type: Transform - pos: 80.5,3.5 - parent: 2 - - uid: 6108 - components: - - type: Transform - pos: 80.5,4.5 - parent: 2 - - uid: 6109 - components: - - type: Transform - pos: 80.5,2.5 - parent: 2 - - uid: 6110 - components: - - type: Transform - pos: 86.5,-0.5 - parent: 2 - - uid: 6111 - components: - - type: Transform - pos: 85.5,-0.5 - parent: 2 - - uid: 6112 - components: - - type: Transform - pos: 84.5,-0.5 - parent: 2 - - uid: 6113 - components: - - type: Transform - pos: 84.5,0.5 - parent: 2 - - uid: 6114 - components: - - type: Transform - pos: 84.5,1.5 - parent: 2 - - uid: 6115 - components: - - type: Transform - pos: 84.5,-1.5 - parent: 2 - - uid: 6116 - components: - - type: Transform - pos: 84.5,-2.5 - parent: 2 - - uid: 6117 - components: - - type: Transform - pos: 84.5,-4.5 - parent: 2 - - uid: 6118 - components: - - type: Transform - pos: 84.5,-3.5 - parent: 2 - - uid: 6122 - components: - - type: Transform - pos: -15.5,-78.5 - parent: 2 - - uid: 6123 - components: - - type: Transform - pos: -15.5,-80.5 - parent: 2 - - uid: 6124 - components: - - type: Transform - pos: 85.5,-3.5 - parent: 2 - - uid: 6125 - components: - - type: Transform - pos: 86.5,-3.5 - parent: 2 - - uid: 6126 - components: - - type: Transform - pos: 88.5,-3.5 - parent: 2 - - uid: 6127 - components: - - type: Transform - pos: 89.5,-3.5 - parent: 2 - - uid: 6128 - components: - - type: Transform - pos: 90.5,-3.5 - parent: 2 - - uid: 6129 - components: - - type: Transform - pos: 87.5,-3.5 - parent: 2 - - uid: 6130 - components: - - type: Transform - pos: 67.5,-11.5 - parent: 2 - - uid: 6131 - components: - - type: Transform - pos: 66.5,-11.5 - parent: 2 - - uid: 6132 - components: - - type: Transform - pos: 68.5,-11.5 - parent: 2 - - uid: 6133 - components: - - type: Transform - pos: 70.5,-10.5 - parent: 2 - - uid: 6134 - components: - - type: Transform - pos: 70.5,-11.5 - parent: 2 - - uid: 6135 - components: - - type: Transform - pos: 72.5,-10.5 - parent: 2 - - uid: 6136 - components: - - type: Transform - pos: 72.5,-11.5 - parent: 2 - - uid: 6137 - components: - - type: Transform - pos: 74.5,-10.5 - parent: 2 - - uid: 6138 - components: - - type: Transform - pos: 74.5,-11.5 - parent: 2 - - uid: 6139 - components: - - type: Transform - pos: 76.5,-10.5 - parent: 2 - - uid: 6140 - components: - - type: Transform - pos: 76.5,-11.5 - parent: 2 - - uid: 6141 - components: - - type: Transform - pos: 77.5,-10.5 - parent: 2 - - uid: 6142 - components: - - type: Transform - pos: 69.5,-10.5 - parent: 2 - - uid: 6143 - components: - - type: Transform - pos: 64.5,-10.5 - parent: 2 - - uid: 6144 - components: - - type: Transform - pos: 79.5,-8.5 - parent: 2 - - uid: 6769 - components: - - type: Transform - pos: -24.5,12.5 - parent: 2 - - uid: 6770 - components: - - type: Transform - pos: -25.5,12.5 - parent: 2 - - uid: 6771 - components: - - type: Transform - pos: -26.5,12.5 - parent: 2 - - uid: 6772 - components: - - type: Transform - pos: -27.5,12.5 - parent: 2 - - uid: 6773 - components: - - type: Transform - pos: -23.5,12.5 - parent: 2 - - uid: 7038 - components: - - type: Transform - pos: -14.5,12.5 - parent: 2 - - uid: 7185 - components: - - type: Transform - pos: -18.5,-62.5 - parent: 2 - - uid: 7249 - components: - - type: Transform - pos: -10.5,-74.5 - parent: 2 - - uid: 7433 - components: - - type: Transform - pos: -4.5,-74.5 - parent: 2 - - uid: 7651 - components: - - type: Transform - pos: 26.5,41.5 - parent: 2 - - uid: 7753 - components: - - type: Transform - pos: 19.5,11.5 - parent: 2 - - uid: 7776 - components: - - type: Transform - pos: 22.5,-52.5 - parent: 2 - - uid: 7995 - components: - - type: Transform - pos: 25.5,-52.5 - parent: 2 - - uid: 8006 - components: - - type: Transform - pos: -25.5,0.5 - parent: 2 - - uid: 8162 - components: - - type: Transform - pos: -34.5,12.5 - parent: 2 - - uid: 8163 - components: - - type: Transform - pos: -35.5,12.5 - parent: 2 - - uid: 8172 - components: - - type: Transform - pos: -33.5,12.5 - parent: 2 - - uid: 8193 - components: - - type: Transform - pos: -6.5,12.5 - parent: 2 - - uid: 8257 - components: - - type: Transform - pos: 8.5,-38.5 - parent: 2 - - uid: 8271 - components: - - type: Transform - pos: -43.5,21.5 - parent: 2 - - uid: 8428 - components: - - type: Transform - pos: 20.5,22.5 - parent: 2 - - uid: 8580 - components: - - type: Transform - pos: -8.5,-74.5 - parent: 2 - - uid: 8581 - components: - - type: Transform - pos: -9.5,-74.5 - parent: 2 - - uid: 8678 - components: - - type: Transform - pos: -8.5,-62.5 - parent: 2 - - uid: 8696 - components: - - type: Transform - pos: -13.5,-59.5 - parent: 2 - - uid: 8698 - components: - - type: Transform - pos: -11.5,-59.5 - parent: 2 - - uid: 8780 - components: - - type: Transform - pos: -32.5,12.5 - parent: 2 - - uid: 9049 - components: - - type: Transform - pos: 17.5,30.5 - parent: 2 - - uid: 9083 - components: - - type: Transform - pos: 24.5,-52.5 - parent: 2 - - uid: 9217 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 2 - - uid: 9230 - components: - - type: Transform - pos: 3.5,-12.5 - parent: 2 - - uid: 9232 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 2 - - uid: 9235 - components: - - type: Transform - pos: -3.5,-8.5 - parent: 2 - - uid: 9341 - components: - - type: Transform - pos: 89.5,-2.5 - parent: 2 - - uid: 9342 - components: - - type: Transform - pos: 13.5,-65.5 - parent: 2 - - uid: 9348 - components: - - type: Transform - pos: 30.5,26.5 - parent: 2 - - uid: 9403 - components: - - type: Transform - pos: 30.5,-22.5 - parent: 2 - - uid: 9424 - components: - - type: Transform - pos: 5.5,-65.5 - parent: 2 - - uid: 9593 - components: - - type: Transform - pos: -13.5,12.5 - parent: 2 - - uid: 9599 - components: - - type: Transform - pos: 22.5,-63.5 - parent: 2 - - uid: 9601 - components: - - type: Transform - pos: 23.5,-58.5 - parent: 2 - - uid: 9602 - components: - - type: Transform - pos: -45.5,-34.5 - parent: 2 - - uid: 9716 - components: - - type: Transform - pos: 2.5,-66.5 - parent: 2 - - uid: 9732 - components: - - type: Transform - pos: 3.5,-66.5 - parent: 2 - - uid: 9733 - components: - - type: Transform - pos: 4.5,-66.5 - parent: 2 - - uid: 9734 - components: - - type: Transform - pos: 4.5,-65.5 - parent: 2 - - uid: 9778 - components: - - type: Transform - pos: 21.5,-58.5 - parent: 2 - - uid: 9796 - components: - - type: Transform - pos: 22.5,-58.5 - parent: 2 - - uid: 9798 - components: - - type: Transform - pos: 49.5,-66.5 - parent: 2 - - uid: 9877 - components: - - type: Transform - pos: 2.5,1.5 - parent: 2 - - uid: 9885 - components: - - type: Transform - pos: 17.5,39.5 - parent: 2 - - uid: 9994 - components: - - type: Transform - pos: 23.5,27.5 - parent: 2 - - uid: 10165 - components: - - type: Transform - pos: -52.5,-27.5 - parent: 2 - - uid: 10177 - components: - - type: Transform - pos: -54.5,-27.5 - parent: 2 - - uid: 10181 - components: - - type: Transform - pos: -58.5,-22.5 - parent: 2 - - uid: 10556 - components: - - type: Transform - pos: -15.5,37.5 - parent: 2 - - uid: 10562 - components: - - type: Transform - pos: -14.5,37.5 - parent: 2 - - uid: 10598 - components: - - type: Transform - pos: -56.5,-22.5 - parent: 2 - - uid: 10607 - components: - - type: Transform - pos: -56.5,-23.5 - parent: 2 - - uid: 10674 - components: - - type: Transform - pos: -48.5,-33.5 - parent: 2 - - uid: 10702 - components: - - type: Transform - pos: -10.5,-62.5 - parent: 2 - - uid: 10782 - components: - - type: Transform - pos: 3.5,-18.5 - parent: 2 - - uid: 10817 - components: - - type: Transform - pos: -49.5,-38.5 - parent: 2 - - uid: 10836 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 2 - - uid: 10863 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 2 - - uid: 10864 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 2 - - uid: 10869 - components: - - type: Transform - pos: -55.5,-10.5 - parent: 2 - - uid: 10880 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - - uid: 11115 - components: - - type: Transform - pos: 9.5,-47.5 - parent: 2 - - uid: 11131 - components: - - type: Transform - pos: 55.5,15.5 - parent: 2 - - uid: 11137 - components: - - type: Transform - pos: -13.5,-74.5 - parent: 2 - - uid: 11146 - components: - - type: Transform - pos: -39.5,-36.5 - parent: 2 - - uid: 11190 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 2 - - uid: 11201 - components: - - type: Transform - pos: -9.5,-6.5 - parent: 2 - - uid: 11256 - components: - - type: Transform - pos: -5.5,-65.5 - parent: 2 - - uid: 11265 - components: - - type: Transform - pos: 23.5,-75.5 - parent: 2 - - uid: 11282 - components: - - type: Transform - pos: 38.5,-7.5 - parent: 2 - - uid: 11399 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - - uid: 11444 - components: - - type: Transform - pos: 12.5,-65.5 - parent: 2 - - uid: 11549 - components: - - type: Transform - pos: -15.5,-74.5 - parent: 2 - - uid: 11550 - components: - - type: Transform - pos: -15.5,-73.5 - parent: 2 - - uid: 11598 - components: - - type: Transform - pos: -14.5,-74.5 - parent: 2 - - uid: 11599 - components: - - type: Transform - pos: -15.5,-76.5 - parent: 2 - - uid: 11686 - components: - - type: Transform - pos: -15.5,-72.5 - parent: 2 - - uid: 11691 - components: - - type: Transform - pos: 58.5,-29.5 - parent: 2 - - uid: 11732 - components: - - type: Transform - pos: -15.5,-75.5 - parent: 2 - - uid: 11746 - components: - - type: Transform - pos: -16.5,-74.5 - parent: 2 - - uid: 11749 - components: - - type: Transform - pos: 14.5,27.5 - parent: 2 - - uid: 11778 - components: - - type: Transform - pos: 2.5,-77.5 - parent: 2 - - uid: 11836 - components: - - type: Transform - pos: 20.5,20.5 - parent: 2 - - uid: 11952 - components: - - type: Transform - pos: 49.5,-67.5 - parent: 2 - - uid: 11992 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 2 - - uid: 12122 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 2 - - uid: 12181 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 2 - - uid: 12201 - components: - - type: Transform - pos: 12.5,12.5 - parent: 2 - - uid: 12232 - components: - - type: Transform - pos: 20.5,18.5 - parent: 2 - - uid: 12278 - components: - - type: Transform - pos: -2.5,2.5 - parent: 2 - - uid: 12450 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 2 - - uid: 12559 - components: - - type: Transform - pos: -3.5,-69.5 - parent: 2 - - uid: 12578 - components: - - type: Transform - pos: -5.5,-64.5 - parent: 2 - - uid: 12865 - components: - - type: Transform - pos: -8.5,31.5 - parent: 2 - - uid: 12919 - components: - - type: Transform - pos: 25.5,32.5 - parent: 2 - - uid: 12975 - components: - - type: Transform - pos: -8.5,28.5 - parent: 2 - - uid: 13097 - components: - - type: Transform - pos: 2.5,-8.5 - parent: 2 - - uid: 13197 - components: - - type: Transform - pos: 80.5,-42.5 - parent: 2 - - uid: 13198 - components: - - type: Transform - pos: 78.5,-42.5 - parent: 2 - - uid: 13199 - components: - - type: Transform - pos: 77.5,-42.5 - parent: 2 - - uid: 13200 - components: - - type: Transform - pos: 79.5,-42.5 - parent: 2 - - uid: 13201 - components: - - type: Transform - pos: 78.5,-43.5 - parent: 2 - - uid: 13202 - components: - - type: Transform - pos: 78.5,-44.5 - parent: 2 - - uid: 13203 - components: - - type: Transform - pos: 78.5,-45.5 - parent: 2 - - uid: 13204 - components: - - type: Transform - pos: 78.5,-46.5 - parent: 2 - - uid: 13205 - components: - - type: Transform - pos: 78.5,-47.5 - parent: 2 - - uid: 13235 - components: - - type: Transform - pos: 79.5,-45.5 - parent: 2 - - uid: 13243 - components: - - type: Transform - pos: 80.5,-45.5 - parent: 2 - - uid: 13260 - components: - - type: Transform - pos: -8.5,29.5 - parent: 2 - - uid: 13276 - components: - - type: Transform - pos: 79.5,-47.5 - parent: 2 - - uid: 13286 - components: - - type: Transform - pos: 2.5,-9.5 - parent: 2 - - uid: 13304 - components: - - type: Transform - pos: 77.5,-47.5 - parent: 2 - - uid: 13317 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 2 - - uid: 13328 - components: - - type: Transform - pos: 77.5,-45.5 - parent: 2 - - uid: 13334 - components: - - type: Transform - pos: 76.5,-45.5 - parent: 2 - - uid: 13362 - components: - - type: Transform - pos: -4.5,-69.5 - parent: 2 - - uid: 13392 - components: - - type: Transform - pos: 75.5,-45.5 - parent: 2 - - uid: 13409 - components: - - type: Transform - pos: 74.5,-45.5 - parent: 2 - - uid: 13420 - components: - - type: Transform - pos: -12.5,-64.5 - parent: 2 - - uid: 13421 - components: - - type: Transform - pos: -12.5,-63.5 - parent: 2 - - uid: 13422 - components: - - type: Transform - pos: -12.5,-65.5 - parent: 2 - - uid: 13424 - components: - - type: Transform - pos: -9.5,-64.5 - parent: 2 - - uid: 13451 - components: - - type: Transform - pos: 73.5,-45.5 - parent: 2 - - uid: 13455 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 2 - - uid: 13495 - components: - - type: Transform - pos: 71.5,-45.5 - parent: 2 - - uid: 13496 - components: - - type: Transform - pos: 70.5,-45.5 - parent: 2 - - uid: 13501 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - uid: 13518 - components: - - type: Transform - pos: -2.5,-10.5 - parent: 2 - - uid: 13521 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 2 - - uid: 13523 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 2 - - uid: 13551 - components: - - type: Transform - pos: 72.5,-45.5 - parent: 2 - - uid: 13554 - components: - - type: Transform - pos: 0.5,-10.5 - parent: 2 - - uid: 13555 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 2 - - uid: 13576 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 2 - - uid: 13682 - components: - - type: Transform - pos: 71.5,-44.5 - parent: 2 - - uid: 13778 - components: - - type: Transform - pos: -18.5,-61.5 - parent: 2 - - uid: 13828 - components: - - type: Transform - pos: 71.5,-43.5 - parent: 2 - - uid: 13899 - components: - - type: Transform - pos: -26.5,-69.5 - parent: 2 - - uid: 13900 - components: - - type: Transform - pos: -23.5,-67.5 - parent: 2 - - uid: 13945 - components: - - type: Transform - pos: 71.5,-46.5 - parent: 2 - - uid: 14010 - components: - - type: Transform - pos: 8.5,-47.5 - parent: 2 - - uid: 14011 - components: - - type: Transform - pos: 71.5,-47.5 - parent: 2 - - uid: 14016 - components: - - type: Transform - pos: 9.5,-46.5 - parent: 2 - - uid: 14047 - components: - - type: Transform - pos: -42.5,-25.5 - parent: 2 - - uid: 14048 - components: - - type: Transform - pos: -41.5,-23.5 - parent: 2 - - uid: 14054 - components: - - type: Transform - pos: -27.5,-69.5 - parent: 2 - - uid: 14055 - components: - - type: Transform - pos: -25.5,-68.5 - parent: 2 - - uid: 14107 - components: - - type: Transform - pos: 73.5,-42.5 - parent: 2 - - uid: 14108 - components: - - type: Transform - pos: 73.5,-41.5 - parent: 2 - - uid: 14113 - components: - - type: Transform - pos: 7.5,-47.5 - parent: 2 - - uid: 14242 - components: - - type: Transform - pos: 73.5,-40.5 - parent: 2 - - uid: 14243 - components: - - type: Transform - pos: 74.5,-40.5 - parent: 2 - - uid: 14256 - components: - - type: Transform - pos: -55.5,-12.5 - parent: 2 - - uid: 14264 - components: - - type: Transform - pos: 75.5,-40.5 - parent: 2 - - uid: 14288 - components: - - type: Transform - pos: -25.5,-67.5 - parent: 2 - - uid: 14290 - components: - - type: Transform - pos: 76.5,-40.5 - parent: 2 - - uid: 14299 - components: - - type: Transform - pos: 77.5,-40.5 - parent: 2 - - uid: 14302 - components: - - type: Transform - pos: 78.5,-40.5 - parent: 2 - - uid: 14324 - components: - - type: Transform - pos: -71.5,20.5 - parent: 2 - - uid: 14327 - components: - - type: Transform - pos: 79.5,-40.5 - parent: 2 - - uid: 14331 - components: - - type: Transform - pos: -73.5,17.5 - parent: 2 - - uid: 14353 - components: - - type: Transform - pos: -8.5,30.5 - parent: 2 - - uid: 14376 - components: - - type: Transform - pos: -25.5,-66.5 - parent: 2 - - uid: 14378 - components: - - type: Transform - pos: -25.5,-65.5 - parent: 2 - - uid: 14389 - components: - - type: Transform - pos: -24.5,-70.5 - parent: 2 - - uid: 14399 - components: - - type: Transform - pos: -20.5,24.5 - parent: 2 - - uid: 14444 - components: - - type: Transform - pos: 20.5,-65.5 - parent: 2 - - uid: 14446 - components: - - type: Transform - pos: 19.5,-65.5 - parent: 2 - - uid: 14457 - components: - - type: Transform - pos: -23.5,-68.5 - parent: 2 - - uid: 14524 - components: - - type: Transform - pos: -71.5,17.5 - parent: 2 - - uid: 14529 - components: - - type: Transform - pos: -23.5,-15.5 - parent: 2 - - uid: 14685 - components: - - type: Transform - pos: -69.5,13.5 - parent: 2 - - uid: 14713 - components: - - type: Transform - pos: 78.5,-39.5 - parent: 2 - - uid: 14714 - components: - - type: Transform - pos: 78.5,-38.5 - parent: 2 - - uid: 14715 - components: - - type: Transform - pos: 78.5,-37.5 - parent: 2 - - uid: 14755 - components: - - type: Transform - pos: 15.5,-65.5 - parent: 2 - - uid: 14796 - components: - - type: Transform - pos: 18.5,-65.5 - parent: 2 - - uid: 14835 - components: - - type: Transform - pos: -49.5,-32.5 - parent: 2 - - uid: 14847 - components: - - type: Transform - pos: -15.5,-65.5 - parent: 2 - - uid: 14857 - components: - - type: Transform - pos: -5.5,28.5 - parent: 2 - - uid: 14858 - components: - - type: Transform - pos: 17.5,-65.5 - parent: 2 - - uid: 14863 - components: - - type: Transform - pos: -15.5,-62.5 - parent: 2 - - uid: 14894 - components: - - type: Transform - pos: 72.5,-40.5 - parent: 2 - - uid: 14936 - components: - - type: Transform - pos: -9.5,-62.5 - parent: 2 - - uid: 14944 - components: - - type: Transform - pos: 16.5,-65.5 - parent: 2 - - uid: 14945 - components: - - type: Transform - pos: 14.5,-65.5 - parent: 2 - - uid: 14974 - components: - - type: Transform - pos: -70.5,13.5 - parent: 2 - - uid: 15007 - components: - - type: Transform - pos: -23.5,-16.5 - parent: 2 - - uid: 15079 - components: - - type: Transform - pos: -4.5,-64.5 - parent: 2 - - uid: 15124 - components: - - type: Transform - pos: -27.5,34.5 - parent: 2 - - uid: 15125 - components: - - type: Transform - pos: -23.5,-14.5 - parent: 2 - - uid: 15131 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 2 - - uid: 15298 - components: - - type: Transform - pos: -25.5,32.5 - parent: 2 - - uid: 15303 - components: - - type: Transform - pos: 27.5,-56.5 - parent: 2 - - uid: 15549 - components: - - type: Transform - pos: 26.5,32.5 - parent: 2 - - uid: 15641 - components: - - type: Transform - pos: 71.5,-40.5 - parent: 2 - - uid: 15642 - components: - - type: Transform - pos: 70.5,-40.5 - parent: 2 - - uid: 15643 - components: - - type: Transform - pos: 69.5,-40.5 - parent: 2 - - uid: 15644 - components: - - type: Transform - pos: 70.5,-39.5 - parent: 2 - - uid: 15645 - components: - - type: Transform - pos: 70.5,-38.5 - parent: 2 - - uid: 15646 - components: - - type: Transform - pos: 70.5,-37.5 - parent: 2 - - uid: 15647 - components: - - type: Transform - pos: 70.5,-36.5 - parent: 2 - - uid: 15648 - components: - - type: Transform - pos: 70.5,-35.5 - parent: 2 - - uid: 15649 - components: - - type: Transform - pos: 74.5,-39.5 - parent: 2 - - uid: 15650 - components: - - type: Transform - pos: 74.5,-38.5 - parent: 2 - - uid: 15651 - components: - - type: Transform - pos: 74.5,-37.5 - parent: 2 - - uid: 15795 - components: - - type: Transform - pos: 74.5,-36.5 - parent: 2 - - uid: 15850 - components: - - type: Transform - pos: 19.5,12.5 - parent: 2 - - uid: 15867 - components: - - type: Transform - pos: 2.5,9.5 - parent: 2 - - uid: 15868 - components: - - type: Transform - pos: 30.5,9.5 - parent: 2 - - uid: 15909 - components: - - type: Transform - pos: 27.5,-54.5 - parent: 2 - - uid: 15910 - components: - - type: Transform - pos: 27.5,-58.5 - parent: 2 - - uid: 15919 - components: - - type: Transform - pos: 21.5,-52.5 - parent: 2 - - uid: 15920 - components: - - type: Transform - pos: 22.5,-62.5 - parent: 2 - - uid: 16272 - components: - - type: Transform - pos: 74.5,-35.5 - parent: 2 - - uid: 16500 - components: - - type: Transform - pos: -18.5,24.5 - parent: 2 - - uid: 16501 - components: - - type: Transform - pos: -21.5,24.5 - parent: 2 - - uid: 16524 - components: - - type: Transform - pos: -26.5,0.5 - parent: 2 - - uid: 16865 - components: - - type: Transform - pos: 13.5,-77.5 - parent: 2 - - uid: 17069 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 2 - - uid: 17074 - components: - - type: Transform - pos: -8.5,36.5 - parent: 2 - - uid: 17090 - components: - - type: Transform - pos: 23.5,-77.5 - parent: 2 - - uid: 17114 - components: - - type: Transform - pos: -0.5,2.5 - parent: 2 - - uid: 17302 - components: - - type: Transform - pos: 2.5,0.5 - parent: 2 - - uid: 17385 - components: - - type: Transform - pos: -72.5,17.5 - parent: 2 - - uid: 17388 - components: - - type: Transform - pos: -71.5,19.5 - parent: 2 - - uid: 17449 - components: - - type: Transform - pos: 21.5,43.5 - parent: 2 - - uid: 17479 - components: - - type: Transform - pos: 10.5,-46.5 - parent: 2 - - uid: 17480 - components: - - type: Transform - pos: 11.5,-46.5 - parent: 2 - - uid: 17482 - components: - - type: Transform - pos: 12.5,-46.5 - parent: 2 - - uid: 17483 - components: - - type: Transform - pos: 13.5,-46.5 - parent: 2 - - uid: 17484 - components: - - type: Transform - pos: 13.5,-45.5 - parent: 2 - - uid: 17485 - components: - - type: Transform - pos: 13.5,-44.5 - parent: 2 - - uid: 17486 - components: - - type: Transform - pos: 13.5,-43.5 - parent: 2 - - uid: 17487 - components: - - type: Transform - pos: 13.5,-41.5 - parent: 2 - - uid: 17488 - components: - - type: Transform - pos: 13.5,-42.5 - parent: 2 - - uid: 17489 - components: - - type: Transform - pos: 13.5,-48.5 - parent: 2 - - uid: 17500 - components: - - type: Transform - pos: -71.5,18.5 - parent: 2 - - uid: 17506 - components: - - type: Transform - pos: 25.5,-58.5 - parent: 2 - - uid: 17509 - components: - - type: Transform - pos: 26.5,-58.5 - parent: 2 - - uid: 17515 - components: - - type: Transform - pos: 27.5,-52.5 - parent: 2 - - uid: 17516 - components: - - type: Transform - pos: 27.5,-55.5 - parent: 2 - - uid: 17599 - components: - - type: Transform - pos: -27.5,32.5 - parent: 2 - - uid: 17611 - components: - - type: Transform - pos: -25.5,31.5 - parent: 2 - - uid: 17691 - components: - - type: Transform - pos: -70.5,17.5 - parent: 2 - - uid: 17759 - components: - - type: Transform - pos: -11.5,-62.5 - parent: 2 - - uid: 17761 - components: - - type: Transform - pos: 29.5,42.5 - parent: 2 - - uid: 17894 - components: - - type: Transform - pos: 59.5,-29.5 - parent: 2 - - uid: 17978 - components: - - type: Transform - pos: -42.5,-23.5 - parent: 2 - - uid: 18007 - components: - - type: Transform - pos: -71.5,16.5 - parent: 2 - - uid: 18013 - components: - - type: Transform - pos: -71.5,13.5 - parent: 2 - - uid: 18236 - components: - - type: Transform - pos: -25.5,33.5 - parent: 2 - - uid: 18272 - components: - - type: Transform - pos: 24.5,-85.5 - parent: 2 - - uid: 18283 - components: - - type: Transform - pos: 24.5,-89.5 - parent: 2 - - uid: 18285 - components: - - type: Transform - pos: -41.5,-22.5 - parent: 2 - - uid: 18365 - components: - - type: Transform - pos: -16.5,-77.5 - parent: 2 - - uid: 18377 - components: - - type: Transform - pos: 15.5,-48.5 - parent: 2 - - uid: 18378 - components: - - type: Transform - pos: 16.5,-48.5 - parent: 2 - - uid: 18380 - components: - - type: Transform - pos: 16.5,-47.5 - parent: 2 - - uid: 18381 - components: - - type: Transform - pos: 16.5,-46.5 - parent: 2 - - uid: 18382 - components: - - type: Transform - pos: 16.5,-45.5 - parent: 2 - - uid: 18383 - components: - - type: Transform - pos: 16.5,-44.5 - parent: 2 - - uid: 18384 - components: - - type: Transform - pos: 16.5,-43.5 - parent: 2 - - uid: 18394 - components: - - type: Transform - pos: 16.5,-49.5 - parent: 2 - - uid: 18409 - components: - - type: Transform - pos: 16.5,-50.5 - parent: 2 - - uid: 18410 - components: - - type: Transform - pos: 16.5,-51.5 - parent: 2 - - uid: 18411 - components: - - type: Transform - pos: 16.5,-52.5 - parent: 2 - - uid: 18412 - components: - - type: Transform - pos: 16.5,-53.5 - parent: 2 - - uid: 18414 - components: - - type: Transform - pos: 16.5,-54.5 - parent: 2 - - uid: 18415 - components: - - type: Transform - pos: 17.5,-54.5 - parent: 2 - - uid: 18416 - components: - - type: Transform - pos: 18.5,-54.5 - parent: 2 - - uid: 18417 - components: - - type: Transform - pos: 19.5,-54.5 - parent: 2 - - uid: 18418 - components: - - type: Transform - pos: 20.5,-54.5 - parent: 2 - - uid: 18420 - components: - - type: Transform - pos: 17.5,-43.5 - parent: 2 - - uid: 18421 - components: - - type: Transform - pos: 18.5,-43.5 - parent: 2 - - uid: 18422 - components: - - type: Transform - pos: 19.5,-43.5 - parent: 2 - - uid: 18423 - components: - - type: Transform - pos: 20.5,-43.5 - parent: 2 - - uid: 18428 - components: - - type: Transform - pos: -27.5,31.5 - parent: 2 - - uid: 18471 - components: - - type: Transform - pos: -3.5,7.5 - parent: 2 - - uid: 18745 - components: - - type: Transform - pos: -5.5,7.5 - parent: 2 - - uid: 18788 - components: - - type: Transform - pos: -71.5,12.5 - parent: 2 - - uid: 18789 - components: - - type: Transform - pos: -72.5,13.5 - parent: 2 - - uid: 18945 - components: - - type: Transform - pos: -73.5,13.5 - parent: 2 - - uid: 19051 - components: - - type: Transform - pos: 16.5,-56.5 - parent: 2 - - uid: 19086 - components: - - type: Transform - pos: -46.5,-21.5 - parent: 2 - - uid: 19087 - components: - - type: Transform - pos: -46.5,-25.5 - parent: 2 - - uid: 19096 - components: - - type: Transform - pos: 15.5,-56.5 - parent: 2 - - uid: 19098 - components: - - type: Transform - pos: 15.5,-45.5 - parent: 2 - - uid: 19101 - components: - - type: Transform - pos: 15.5,-47.5 - parent: 2 - - uid: 19102 - components: - - type: Transform - pos: 17.5,-56.5 - parent: 2 - - uid: 19107 - components: - - type: Transform - pos: 18.5,-56.5 - parent: 2 - - uid: 19109 - components: - - type: Transform - pos: 19.5,-56.5 - parent: 2 - - uid: 19155 - components: - - type: Transform - pos: 20.5,-56.5 - parent: 2 - - uid: 19170 - components: - - type: Transform - pos: -54.5,-29.5 - parent: 2 - - uid: 19174 - components: - - type: Transform - pos: 57.5,15.5 - parent: 2 - - uid: 19199 - components: - - type: Transform - pos: -58.5,-25.5 - parent: 2 - - uid: 19233 - components: - - type: Transform - pos: 24.5,-83.5 - parent: 2 - - uid: 19234 - components: - - type: Transform - pos: 25.5,-85.5 - parent: 2 - - uid: 19262 - components: - - type: Transform - pos: 11.5,-68.5 - parent: 2 - - uid: 19269 - components: - - type: Transform - pos: 55.5,-38.5 - parent: 2 - - uid: 19345 - components: - - type: Transform - pos: -73.5,-13.5 - parent: 2 - - uid: 19411 - components: - - type: Transform - pos: -50.5,-24.5 - parent: 2 - - uid: 19412 - components: - - type: Transform - pos: -58.5,-23.5 - parent: 2 - - uid: 19496 - components: - - type: Transform - pos: 11.5,-67.5 - parent: 2 - - uid: 19502 - components: - - type: Transform - pos: 14.5,-73.5 - parent: 2 - - uid: 19503 - components: - - type: Transform - pos: 11.5,-66.5 - parent: 2 - - uid: 19504 - components: - - type: Transform - pos: 11.5,-65.5 - parent: 2 - - uid: 19507 - components: - - type: Transform - pos: 13.5,-73.5 - parent: 2 - - uid: 19508 - components: - - type: Transform - pos: 12.5,-73.5 - parent: 2 - - uid: 19510 - components: - - type: Transform - pos: 11.5,-73.5 - parent: 2 - - uid: 19511 - components: - - type: Transform - pos: 13.5,-72.5 - parent: 2 - - uid: 19512 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 2 - - uid: 19529 - components: - - type: Transform - pos: 11.5,-64.5 - parent: 2 - - uid: 19536 - components: - - type: Transform - pos: 13.5,-74.5 - parent: 2 - - uid: 19537 - components: - - type: Transform - pos: 13.5,-75.5 - parent: 2 - - uid: 19538 - components: - - type: Transform - pos: 13.5,-76.5 - parent: 2 - - uid: 19540 - components: - - type: Transform - pos: 13.5,-78.5 - parent: 2 - - uid: 19541 - components: - - type: Transform - pos: 13.5,-79.5 - parent: 2 - - uid: 19546 - components: - - type: Transform - pos: 13.5,-80.5 - parent: 2 - - uid: 19547 - components: - - type: Transform - pos: 14.5,-75.5 - parent: 2 - - uid: 19548 - components: - - type: Transform - pos: 15.5,-75.5 - parent: 2 - - uid: 19549 - components: - - type: Transform - pos: 16.5,-75.5 - parent: 2 - - uid: 19550 - components: - - type: Transform - pos: 17.5,-75.5 - parent: 2 - - uid: 19551 - components: - - type: Transform - pos: 18.5,-75.5 - parent: 2 - - uid: 19552 - components: - - type: Transform - pos: 19.5,-75.5 - parent: 2 - - uid: 19553 - components: - - type: Transform - pos: 20.5,-75.5 - parent: 2 - - uid: 19610 - components: - - type: Transform - pos: 21.5,-75.5 - parent: 2 - - uid: 19611 - components: - - type: Transform - pos: 22.5,-75.5 - parent: 2 - - uid: 19612 - components: - - type: Transform - pos: 14.5,-79.5 - parent: 2 - - uid: 19613 - components: - - type: Transform - pos: 15.5,-79.5 - parent: 2 - - uid: 19621 - components: - - type: Transform - pos: 16.5,-79.5 - parent: 2 - - uid: 19632 - components: - - type: Transform - pos: 17.5,-79.5 - parent: 2 - - uid: 19656 - components: - - type: Transform - pos: -23.5,-28.5 - parent: 2 - - uid: 19661 - components: - - type: Transform - pos: 18.5,-79.5 - parent: 2 - - uid: 19662 - components: - - type: Transform - pos: 19.5,-79.5 - parent: 2 - - uid: 19673 - components: - - type: Transform - pos: 20.5,-79.5 - parent: 2 - - uid: 19678 - components: - - type: Transform - pos: 11.5,-63.5 - parent: 2 - - uid: 19692 - components: - - type: Transform - pos: -15.5,-81.5 - parent: 2 - - uid: 19706 - components: - - type: Transform - pos: 22.5,-79.5 - parent: 2 - - uid: 19712 - components: - - type: Transform - pos: 21.5,-79.5 - parent: 2 - - uid: 19731 - components: - - type: Transform - pos: -34.5,-66.5 - parent: 2 - - uid: 19744 - components: - - type: Transform - pos: -3.5,-70.5 - parent: 2 - - uid: 19745 - components: - - type: Transform - pos: -11.5,-67.5 - parent: 2 - - uid: 19758 - components: - - type: Transform - pos: 11.5,-62.5 - parent: 2 - - uid: 19775 - components: - - type: Transform - pos: -5.5,-69.5 - parent: 2 - - uid: 19781 - components: - - type: Transform - pos: 21.5,-74.5 - parent: 2 - - uid: 19782 - components: - - type: Transform - pos: 21.5,-73.5 - parent: 2 - - uid: 19783 - components: - - type: Transform - pos: 21.5,-72.5 - parent: 2 - - uid: 19784 - components: - - type: Transform - pos: 21.5,-71.5 - parent: 2 - - uid: 19785 - components: - - type: Transform - pos: 20.5,-71.5 - parent: 2 - - uid: 19786 - components: - - type: Transform - pos: 19.5,-71.5 - parent: 2 - - uid: 19787 - components: - - type: Transform - pos: 18.5,-71.5 - parent: 2 - - uid: 19788 - components: - - type: Transform - pos: 17.5,-71.5 - parent: 2 - - uid: 19789 - components: - - type: Transform - pos: 20.5,-68.5 - parent: 2 - - uid: 19790 - components: - - type: Transform - pos: 19.5,-68.5 - parent: 2 - - uid: 19791 - components: - - type: Transform - pos: 18.5,-68.5 - parent: 2 - - uid: 19792 - components: - - type: Transform - pos: 17.5,-68.5 - parent: 2 - - uid: 19793 - components: - - type: Transform - pos: 11.5,-61.5 - parent: 2 - - uid: 19823 - components: - - type: Transform - pos: 16.5,-68.5 - parent: 2 - - uid: 19837 - components: - - type: Transform - pos: -52.5,-29.5 - parent: 2 - - uid: 19840 - components: - - type: Transform - pos: 23.5,-52.5 - parent: 2 - - uid: 19863 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 2 - - uid: 19894 - components: - - type: Transform - pos: 13.5,13.5 - parent: 2 - - uid: 19907 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 2 - - uid: 19928 - components: - - type: Transform - pos: 15.5,-68.5 - parent: 2 - - uid: 19933 - components: - - type: Transform - pos: 57.5,-37.5 - parent: 2 - - uid: 19934 - components: - - type: Transform - pos: 11.5,-60.5 - parent: 2 - - uid: 19936 - components: - - type: Transform - pos: 11.5,-59.5 - parent: 2 - - uid: 19937 - components: - - type: Transform - pos: 11.5,-58.5 - parent: 2 - - uid: 19938 - components: - - type: Transform - pos: 11.5,-57.5 - parent: 2 - - uid: 19943 - components: - - type: Transform - pos: 11.5,-56.5 - parent: 2 - - uid: 19955 - components: - - type: Transform - pos: 12.5,-56.5 - parent: 2 - - uid: 19956 - components: - - type: Transform - pos: 13.5,-56.5 - parent: 2 - - uid: 19964 - components: - - type: Transform - pos: 14.5,-56.5 - parent: 2 - - uid: 19973 - components: - - type: Transform - pos: 13.5,-55.5 - parent: 2 - - uid: 19974 - components: - - type: Transform - pos: 13.5,-54.5 - parent: 2 - - uid: 19975 - components: - - type: Transform - pos: 13.5,-53.5 - parent: 2 - - uid: 19986 - components: - - type: Transform - pos: 14.5,-68.5 - parent: 2 - - uid: 20050 - components: - - type: Transform - pos: 13.5,-52.5 - parent: 2 - - uid: 20051 - components: - - type: Transform - pos: 13.5,-51.5 - parent: 2 - - uid: 20052 - components: - - type: Transform - pos: 13.5,-68.5 - parent: 2 - - uid: 20072 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 2 - - uid: 20086 - components: - - type: Transform - pos: 33.5,18.5 - parent: 2 - - uid: 20087 - components: - - type: Transform - pos: 36.5,23.5 - parent: 2 - - uid: 20088 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 20110 - components: - - type: Transform - pos: 12.5,-68.5 - parent: 2 - - uid: 20111 - components: - - type: Transform - pos: 21.5,-78.5 - parent: 2 - - uid: 20116 - components: - - type: Transform - pos: 21.5,-77.5 - parent: 2 - - uid: 20117 - components: - - type: Transform - pos: 21.5,-76.5 - parent: 2 - - uid: 20120 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 2 - - uid: 20125 - components: - - type: Transform - pos: 19.5,27.5 - parent: 2 - - uid: 20140 - components: - - type: Transform - pos: 21.5,-80.5 - parent: 2 - - uid: 20156 - components: - - type: Transform - pos: 36.5,21.5 - parent: 2 - - uid: 20173 - components: - - type: Transform - pos: 13.5,-69.5 - parent: 2 - - uid: 20180 - components: - - type: Transform - pos: 13.5,-70.5 - parent: 2 - - uid: 20185 - components: - - type: Transform - pos: 15.5,-49.5 - parent: 2 - - uid: 20186 - components: - - type: Transform - pos: 15.5,-43.5 - parent: 2 - - uid: 20197 - components: - - type: Transform - pos: 22.5,-64.5 - parent: 2 - - uid: 20200 - components: - - type: Transform - pos: 54.5,-45.5 - parent: 2 - - uid: 20211 - components: - - type: Transform - pos: 22.5,-61.5 - parent: 2 - - uid: 20270 - components: - - type: Transform - pos: 0.5,-21.5 - parent: 2 - - uid: 20298 - components: - - type: Transform - pos: 53.5,-45.5 - parent: 2 - - uid: 20301 - components: - - type: Transform - pos: 12.5,-70.5 - parent: 2 - - uid: 20304 - components: - - type: Transform - pos: 0.5,-28.5 - parent: 2 - - uid: 20340 - components: - - type: Transform - pos: 24.5,-58.5 - parent: 2 - - uid: 20341 - components: - - type: Transform - pos: 19.5,14.5 - parent: 2 - - uid: 20432 - components: - - type: Transform - pos: -6.5,-6.5 - parent: 2 - - uid: 20458 - components: - - type: Transform - pos: 1.5,46.5 - parent: 2 - - uid: 20479 - components: - - type: Transform - pos: -71.5,15.5 - parent: 2 - - uid: 20598 - components: - - type: Transform - pos: 24.5,41.5 - parent: 2 - - uid: 20618 - components: - - type: Transform - pos: 27.5,41.5 - parent: 2 - - uid: 20619 - components: - - type: Transform - pos: 28.5,41.5 - parent: 2 - - uid: 20639 - components: - - type: Transform - pos: 29.5,41.5 - parent: 2 - - uid: 20679 - components: - - type: Transform - pos: 29.5,40.5 - parent: 2 - - uid: 20686 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 2 - - uid: 20699 - components: - - type: Transform - pos: -10.5,-6.5 - parent: 2 - - uid: 20756 - components: - - type: Transform - pos: -3.5,0.5 - parent: 2 - - uid: 20760 - components: - - type: Transform - pos: -21.5,0.5 - parent: 2 - - uid: 20793 - components: - - type: Transform - pos: -68.5,13.5 - parent: 2 - - uid: 20819 - components: - - type: Transform - pos: -7.5,46.5 - parent: 2 - - uid: 20837 - components: - - type: Transform - pos: -5.5,0.5 - parent: 2 - - uid: 20922 - components: - - type: Transform - pos: -14.5,36.5 - parent: 2 - - uid: 20984 - components: - - type: Transform - pos: -12.5,-68.5 - parent: 2 - - uid: 21002 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 2 - - uid: 21135 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 2 - - uid: 21140 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 2 - - uid: 21152 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 2 - - uid: 21157 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 2 - - uid: 21167 - components: - - type: Transform - pos: 58.5,15.5 - parent: 2 - - uid: 21180 - components: - - type: Transform - pos: -17.5,-63.5 - parent: 2 - - uid: 21314 - components: - - type: Transform - pos: -17.5,-62.5 - parent: 2 - - uid: 21416 - components: - - type: Transform - pos: -39.5,-37.5 - parent: 2 - - uid: 21459 - components: - - type: Transform - pos: -69.5,17.5 - parent: 2 - - uid: 21464 - components: - - type: Transform - pos: -41.5,-13.5 - parent: 2 - - uid: 21513 - components: - - type: Transform - pos: -2.5,6.5 - parent: 2 - - uid: 21574 - components: - - type: Transform - pos: -2.5,-69.5 - parent: 2 - - uid: 21688 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 2 - - uid: 21689 - components: - - type: Transform - pos: 0.5,-26.5 - parent: 2 - - uid: 21693 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 2 - - uid: 21698 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 2 - - uid: 21701 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 2 - - uid: 21702 - components: - - type: Transform - pos: 1.5,-24.5 - parent: 2 - - uid: 21703 - components: - - type: Transform - pos: 1.5,-25.5 - parent: 2 - - uid: 21704 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 2 - - uid: 21705 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 2 - - uid: 21739 - components: - - type: Transform - pos: -3.5,1.5 - parent: 2 - - uid: 21740 - components: - - type: Transform - pos: 77.5,-58.5 - parent: 2 - - uid: 21755 - components: - - type: Transform - pos: -2.5,1.5 - parent: 2 - - uid: 21760 - components: - - type: Transform - pos: -71.5,14.5 - parent: 2 - - uid: 21859 - components: - - type: Transform - pos: -2.5,7.5 - parent: 2 - - uid: 21860 - components: - - type: Transform - pos: -3.5,8.5 - parent: 2 - - uid: 21868 - components: - - type: Transform - pos: -68.5,14.5 - parent: 2 - - uid: 21869 - components: - - type: Transform - pos: -68.5,16.5 - parent: 2 - - uid: 21870 - components: - - type: Transform - pos: -68.5,15.5 - parent: 2 - - uid: 21895 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 2 - - uid: 21896 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 2 - - uid: 21897 - components: - - type: Transform - pos: -2.5,-21.5 - parent: 2 - - uid: 21898 - components: - - type: Transform - pos: -1.5,-26.5 - parent: 2 - - uid: 21899 - components: - - type: Transform - pos: -1.5,-28.5 - parent: 2 - - uid: 21900 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 2 - - uid: 21906 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 2 - - uid: 21907 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 2 - - uid: 21918 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 2 - - uid: 21919 - components: - - type: Transform - pos: 0.5,-12.5 - parent: 2 - - uid: 21939 - components: - - type: Transform - pos: -5.5,8.5 - parent: 2 - - uid: 21972 - components: - - type: Transform - pos: 23.5,25.5 - parent: 2 - - uid: 21975 - components: - - type: Transform - pos: 16.5,30.5 - parent: 2 - - uid: 21976 - components: - - type: Transform - pos: 23.5,26.5 - parent: 2 - - uid: 22101 - components: - - type: Transform - pos: -48.5,-25.5 - parent: 2 - - uid: 22202 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 2 - - uid: 22211 - components: - - type: Transform - pos: -17.5,-74.5 - parent: 2 - - uid: 22292 - components: - - type: Transform - pos: -15.5,-63.5 - parent: 2 - - uid: 22298 - components: - - type: Transform - pos: -46.5,-23.5 - parent: 2 - - uid: 22382 - components: - - type: Transform - pos: -58.5,-24.5 - parent: 2 - - uid: 22386 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 2 - - uid: 22395 - components: - - type: Transform - pos: -50.5,-26.5 - parent: 2 - - uid: 22432 - components: - - type: Transform - pos: -53.5,-29.5 - parent: 2 - - uid: 22490 - components: - - type: Transform - pos: -40.5,-62.5 - parent: 2 - - uid: 22507 - components: - - type: Transform - pos: 86.5,-1.5 - parent: 2 - - uid: 22510 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 2 - - uid: 22579 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 2 - - uid: 22593 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 2 - - uid: 22600 - components: - - type: Transform - pos: -3.5,-68.5 - parent: 2 - - uid: 22617 - components: - - type: Transform - pos: 16.5,27.5 - parent: 2 - - uid: 22618 - components: - - type: Transform - pos: 15.5,27.5 - parent: 2 - - uid: 22619 - components: - - type: Transform - pos: 18.5,27.5 - parent: 2 - - uid: 22620 - components: - - type: Transform - pos: 17.5,27.5 - parent: 2 - - uid: 22644 - components: - - type: Transform - pos: -3.5,-17.5 - parent: 2 - - uid: 22649 - components: - - type: Transform - pos: 12.5,28.5 - parent: 2 - - uid: 22650 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 2 - - uid: 22715 - components: - - type: Transform - pos: 15.5,30.5 - parent: 2 - - uid: 22727 - components: - - type: Transform - pos: 14.5,30.5 - parent: 2 - - uid: 22733 - components: - - type: Transform - pos: 13.5,30.5 - parent: 2 - - uid: 22819 - components: - - type: Transform - pos: -23.5,-69.5 - parent: 2 - - uid: 22822 - components: - - type: Transform - pos: 2.5,-12.5 - parent: 2 - - uid: 22827 - components: - - type: Transform - pos: -12.5,-67.5 - parent: 2 - - uid: 22869 - components: - - type: Transform - pos: -5.5,-63.5 - parent: 2 - - uid: 22899 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 22912 - components: - - type: Transform - pos: -5.5,-62.5 - parent: 2 - - uid: 22913 - components: - - type: Transform - pos: -5.5,-61.5 - parent: 2 - - uid: 22917 - components: - - type: Transform - pos: -22.5,-69.5 - parent: 2 - - uid: 22918 - components: - - type: Transform - pos: -24.5,-69.5 - parent: 2 - - uid: 23198 - components: - - type: Transform - pos: -9.5,-63.5 - parent: 2 - - uid: 23259 - components: - - type: Transform - pos: -5.5,-68.5 - parent: 2 - - uid: 23467 - components: - - type: Transform - pos: -15.5,-64.5 - parent: 2 - - uid: 23470 - components: - - type: Transform - pos: -8.5,-64.5 - parent: 2 - - uid: 23493 - components: - - type: Transform - pos: -14.5,-62.5 - parent: 2 - - uid: 23495 - components: - - type: Transform - pos: -13.5,-62.5 - parent: 2 - - uid: 23511 - components: - - type: Transform - pos: -15.5,-66.5 - parent: 2 - - uid: 23512 - components: - - type: Transform - pos: -9.5,-66.5 - parent: 2 - - uid: 23515 - components: - - type: Transform - pos: -12.5,-62.5 - parent: 2 - - uid: 23520 - components: - - type: Transform - pos: -39.5,-38.5 - parent: 2 - - uid: 23522 - components: - - type: Transform - pos: 88.5,-11.5 - parent: 2 - - uid: 23523 - components: - - type: Transform - pos: -15.5,-67.5 - parent: 2 - - uid: 23525 - components: - - type: Transform - pos: -15.5,-77.5 - parent: 2 - - uid: 23527 - components: - - type: Transform - pos: -9.5,-65.5 - parent: 2 - - uid: 23545 - components: - - type: Transform - pos: -13.5,-67.5 - parent: 2 - - uid: 23558 - components: - - type: Transform - pos: -7.5,-64.5 - parent: 2 - - uid: 23580 - components: - - type: Transform - pos: 89.5,-1.5 - parent: 2 - - uid: 23583 - components: - - type: Transform - pos: 89.5,-9.5 - parent: 2 - - uid: 23591 - components: - - type: Transform - pos: 90.5,-11.5 - parent: 2 - - uid: 23630 - components: - - type: Transform - pos: 90.5,-9.5 - parent: 2 - - uid: 23633 - components: - - type: Transform - pos: -51.5,-29.5 - parent: 2 - - uid: 23684 - components: - - type: Transform - pos: 0.5,32.5 - parent: 2 - - uid: 23685 - components: - - type: Transform - pos: 0.5,33.5 - parent: 2 - - uid: 23687 - components: - - type: Transform - pos: 0.5,34.5 - parent: 2 - - uid: 23716 - components: - - type: Transform - pos: -14.5,-59.5 - parent: 2 - - uid: 23724 - components: - - type: Transform - pos: 0.5,35.5 - parent: 2 - - uid: 23727 - components: - - type: Transform - pos: 0.5,36.5 - parent: 2 - - uid: 23730 - components: - - type: Transform - pos: 0.5,38.5 - parent: 2 - - uid: 23735 - components: - - type: Transform - pos: 0.5,39.5 - parent: 2 - - uid: 23736 - components: - - type: Transform - pos: 0.5,40.5 - parent: 2 - - uid: 23737 - components: - - type: Transform - pos: 0.5,41.5 - parent: 2 - - uid: 23738 - components: - - type: Transform - pos: 0.5,37.5 - parent: 2 - - uid: 23739 - components: - - type: Transform - pos: 0.5,44.5 - parent: 2 - - uid: 23740 - components: - - type: Transform - pos: 0.5,45.5 - parent: 2 - - uid: 23741 - components: - - type: Transform - pos: 0.5,46.5 - parent: 2 - - uid: 23742 - components: - - type: Transform - pos: 0.5,47.5 - parent: 2 - - uid: 23744 - components: - - type: Transform - pos: 0.5,43.5 - parent: 2 - - uid: 23745 - components: - - type: Transform - pos: 0.5,42.5 - parent: 2 - - uid: 23751 - components: - - type: Transform - pos: -0.5,45.5 - parent: 2 - - uid: 23756 - components: - - type: Transform - pos: -1.5,45.5 - parent: 2 - - uid: 23759 - components: - - type: Transform - pos: -2.5,45.5 - parent: 2 - - uid: 23760 - components: - - type: Transform - pos: -0.5,39.5 - parent: 2 - - uid: 23770 - components: - - type: Transform - pos: -1.5,39.5 - parent: 2 - - uid: 23823 - components: - - type: Transform - pos: -49.5,-33.5 - parent: 2 - - uid: 23824 - components: - - type: Transform - pos: 86.5,-9.5 - parent: 2 - - uid: 23833 - components: - - type: Transform - pos: -2.5,39.5 - parent: 2 - - uid: 23857 - components: - - type: Transform - pos: -2.5,36.5 - parent: 2 - - uid: 23859 - components: - - type: Transform - pos: -1.5,36.5 - parent: 2 - - uid: 23860 - components: - - type: Transform - pos: -0.5,36.5 - parent: 2 - - uid: 23874 - components: - - type: Transform - pos: 1.5,36.5 - parent: 2 - - uid: 23882 - components: - - type: Transform - pos: 2.5,36.5 - parent: 2 - - uid: 23883 - components: - - type: Transform - pos: 3.5,36.5 - parent: 2 - - uid: 23911 - components: - - type: Transform - pos: 87.5,-9.5 - parent: 2 - - uid: 23923 - components: - - type: Transform - pos: 4.5,36.5 - parent: 2 - - uid: 23952 - components: - - type: Transform - pos: 2.5,37.5 - parent: 2 - - uid: 23953 - components: - - type: Transform - pos: 2.5,38.5 - parent: 2 - - uid: 23954 - components: - - type: Transform - pos: 2.5,39.5 - parent: 2 - - uid: 23968 - components: - - type: Transform - pos: 4.5,37.5 - parent: 2 - - uid: 23998 - components: - - type: Transform - pos: 88.5,-9.5 - parent: 2 - - uid: 23999 - components: - - type: Transform - pos: 20.5,19.5 - parent: 2 - - uid: 24048 - components: - - type: Transform - pos: 89.5,-11.5 - parent: 2 - - uid: 24055 - components: - - type: Transform - pos: 87.5,-11.5 - parent: 2 - - uid: 24056 - components: - - type: Transform - pos: 87.5,-1.5 - parent: 2 - - uid: 24057 - components: - - type: Transform - pos: 88.5,-1.5 - parent: 2 - - uid: 24058 - components: - - type: Transform - pos: 86.5,-11.5 - parent: 2 - - uid: 24064 - components: - - type: Transform - pos: 90.5,-1.5 - parent: 2 - - uid: 24093 - components: - - type: Transform - pos: 4.5,38.5 - parent: 2 - - uid: 24094 - components: - - type: Transform - pos: 4.5,39.5 - parent: 2 - - uid: 24125 - components: - - type: Transform - pos: -17.5,-66.5 - parent: 2 - - uid: 24207 - components: - - type: Transform - pos: 3.5,39.5 - parent: 2 - - uid: 24231 - components: - - type: Transform - pos: 3.5,40.5 - parent: 2 - - uid: 24232 - components: - - type: Transform - pos: 3.5,41.5 - parent: 2 - - uid: 24238 - components: - - type: Transform - pos: -6.5,-64.5 - parent: 2 - - uid: 24250 - components: - - type: Transform - pos: 3.5,42.5 - parent: 2 - - uid: 24252 - components: - - type: Transform - pos: 3.5,43.5 - parent: 2 - - uid: 24431 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 24433 - components: - - type: Transform - pos: 30.5,18.5 - parent: 2 - - uid: 24434 - components: - - type: Transform - pos: 29.5,18.5 - parent: 2 - - uid: 24442 - components: - - type: Transform - pos: -23.5,-66.5 - parent: 2 - - uid: 24449 - components: - - type: Transform - pos: -23.5,-65.5 - parent: 2 - - uid: 24619 - components: - - type: Transform - pos: 34.5,20.5 - parent: 2 - - uid: 24657 - components: - - type: Transform - pos: -2.5,5.5 - parent: 2 - - uid: 24660 - components: - - type: Transform - pos: -6.5,1.5 - parent: 2 - - uid: 24674 - components: - - type: Transform - pos: -5.5,1.5 - parent: 2 - - uid: 24762 - components: - - type: Transform - pos: -21.5,19.5 - parent: 2 - - uid: 24948 - components: - - type: Transform - pos: -41.5,-21.5 - parent: 2 - - uid: 24949 - components: - - type: Transform - pos: 3.5,-67.5 - parent: 2 - - uid: 24951 - components: - - type: Transform - pos: -49.5,-34.5 - parent: 2 - - uid: 25043 - components: - - type: Transform - pos: 25.5,-83.5 - parent: 2 - - uid: 25049 - components: - - type: Transform - pos: 23.5,-91.5 - parent: 2 - - uid: 25051 - components: - - type: Transform - pos: 22.5,-82.5 - parent: 2 - - uid: 25052 - components: - - type: Transform - pos: 23.5,-89.5 - parent: 2 - - uid: 25064 - components: - - type: Transform - pos: 23.5,-86.5 - parent: 2 - - uid: 25066 - components: - - type: Transform - pos: 23.5,-88.5 - parent: 2 - - uid: 25080 - components: - - type: Transform - pos: 23.5,-82.5 - parent: 2 - - uid: 25099 - components: - - type: Transform - pos: 9.5,3.5 - parent: 2 - - uid: 25123 - components: - - type: Transform - pos: 89.5,-10.5 - parent: 2 - - uid: 25178 - components: - - type: Transform - pos: 11.5,-70.5 - parent: 2 - - uid: 25293 - components: - - type: Transform - pos: 34.5,19.5 - parent: 2 - - uid: 25373 - components: - - type: Transform - pos: 23.5,28.5 - parent: 2 - - uid: 25669 - components: - - type: Transform - pos: 76.5,-58.5 - parent: 2 - - uid: 25752 - components: - - type: Transform - pos: -5.5,29.5 - parent: 2 - - uid: 25765 - components: - - type: Transform - pos: -5.5,30.5 - parent: 2 - - uid: 25766 - components: - - type: Transform - pos: -5.5,31.5 - parent: 2 - - uid: 25767 - components: - - type: Transform - pos: -5.5,32.5 - parent: 2 - - uid: 25772 - components: - - type: Transform - pos: -12.5,32.5 - parent: 2 - - uid: 25773 - components: - - type: Transform - pos: -12.5,33.5 - parent: 2 - - uid: 25774 - components: - - type: Transform - pos: -12.5,34.5 - parent: 2 - - uid: 25775 - components: - - type: Transform - pos: -8.5,32.5 - parent: 2 - - uid: 25776 - components: - - type: Transform - pos: -8.5,33.5 - parent: 2 - - uid: 25779 - components: - - type: Transform - pos: -8.5,34.5 - parent: 2 - - uid: 25780 - components: - - type: Transform - pos: -8.5,35.5 - parent: 2 - - uid: 25783 - components: - - type: Transform - pos: -11.5,36.5 - parent: 2 - - uid: 25784 - components: - - type: Transform - pos: -10.5,37.5 - parent: 2 - - uid: 25785 - components: - - type: Transform - pos: -10.5,31.5 - parent: 2 - - uid: 25786 - components: - - type: Transform - pos: -9.5,31.5 - parent: 2 - - uid: 25801 - components: - - type: Transform - pos: -35.5,-65.5 - parent: 2 - - uid: 25802 - components: - - type: Transform - pos: -59.5,-29.5 - parent: 2 - - uid: 25803 - components: - - type: Transform - pos: -57.5,-29.5 - parent: 2 - - uid: 25804 - components: - - type: Transform - pos: -42.5,-21.5 - parent: 2 - - uid: 25805 - components: - - type: Transform - pos: -59.5,-30.5 - parent: 2 - - uid: 25806 - components: - - type: Transform - pos: -56.5,-30.5 - parent: 2 - - uid: 25807 - components: - - type: Transform - pos: -59.5,-28.5 - parent: 2 - - uid: 25808 - components: - - type: Transform - pos: -58.5,-30.5 - parent: 2 - - uid: 25810 - components: - - type: Transform - pos: -57.5,-30.5 - parent: 2 - - uid: 25854 - components: - - type: Transform - pos: -2.5,3.5 - parent: 2 - - uid: 25864 - components: - - type: Transform - pos: 41.5,-48.5 - parent: 2 - - uid: 25871 - components: - - type: Transform - pos: 42.5,-48.5 - parent: 2 - - uid: 25872 - components: - - type: Transform - pos: 13.5,-47.5 - parent: 2 - - uid: 25873 - components: - - type: Transform - pos: 13.5,-40.5 - parent: 2 - - uid: 25874 - components: - - type: Transform - pos: 13.5,-39.5 - parent: 2 - - uid: 25881 - components: - - type: Transform - pos: 32.5,-70.5 - parent: 2 - - uid: 25884 - components: - - type: Transform - pos: 6.5,-47.5 - parent: 2 - - uid: 25920 - components: - - type: Transform - pos: -6.5,2.5 - parent: 2 - - uid: 25921 - components: - - type: Transform - pos: -6.5,3.5 - parent: 2 - - uid: 25922 - components: - - type: Transform - pos: -6.5,4.5 - parent: 2 - - uid: 25923 - components: - - type: Transform - pos: -6.5,5.5 - parent: 2 - - uid: 25924 - components: - - type: Transform - pos: -6.5,6.5 - parent: 2 - - uid: 25925 - components: - - type: Transform - pos: -6.5,7.5 - parent: 2 - - uid: 25927 - components: - - type: Transform - pos: 56.5,-38.5 - parent: 2 - - uid: 25928 - components: - - type: Transform - pos: 57.5,-38.5 - parent: 2 - - uid: 25939 - components: - - type: Transform - pos: 19.5,-26.5 - parent: 2 - - uid: 25941 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 2 - - uid: 25942 - components: - - type: Transform - pos: 17.5,-26.5 - parent: 2 - - uid: 25955 - components: - - type: Transform - pos: 28.5,-34.5 - parent: 2 - - uid: 25956 - components: - - type: Transform - pos: 27.5,-34.5 - parent: 2 - - uid: 25957 - components: - - type: Transform - pos: 27.5,-32.5 - parent: 2 - - uid: 25958 - components: - - type: Transform - pos: 27.5,-29.5 - parent: 2 - - uid: 25959 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 2 - - uid: 25960 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 2 - - uid: 25965 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 2 - - uid: 25966 - components: - - type: Transform - pos: 25.5,-28.5 - parent: 2 - - uid: 25967 - components: - - type: Transform - pos: 25.5,-27.5 - parent: 2 - - uid: 26082 - components: - - type: Transform - pos: 37.5,-42.5 - parent: 2 - - uid: 26083 - components: - - type: Transform - pos: 38.5,-42.5 - parent: 2 - - uid: 26084 - components: - - type: Transform - pos: 64.5,-14.5 - parent: 2 - - uid: 26085 - components: - - type: Transform - pos: 64.5,-15.5 - parent: 2 - - uid: 26086 - components: - - type: Transform - pos: 64.5,-16.5 - parent: 2 - - uid: 26087 - components: - - type: Transform - pos: 64.5,-18.5 - parent: 2 - - uid: 26090 - components: - - type: Transform - pos: 64.5,-19.5 - parent: 2 - - uid: 26091 - components: - - type: Transform - pos: 64.5,-17.5 - parent: 2 - - uid: 26109 - components: - - type: Transform - pos: 65.5,-17.5 - parent: 2 - - uid: 26110 - components: - - type: Transform - pos: 66.5,-17.5 - parent: 2 - - uid: 26111 - components: - - type: Transform - pos: 68.5,-18.5 - parent: 2 - - uid: 26112 - components: - - type: Transform - pos: 63.5,-17.5 - parent: 2 - - uid: 26113 - components: - - type: Transform - pos: 62.5,-17.5 - parent: 2 - - uid: 26114 - components: - - type: Transform - pos: 68.5,-16.5 - parent: 2 - - uid: 26115 - components: - - type: Transform - pos: 63.5,-15.5 - parent: 2 - - uid: 26116 - components: - - type: Transform - pos: 62.5,-15.5 - parent: 2 - - uid: 26117 - components: - - type: Transform - pos: 61.5,-15.5 - parent: 2 - - uid: 26118 - components: - - type: Transform - pos: 65.5,-15.5 - parent: 2 - - uid: 26119 - components: - - type: Transform - pos: 66.5,-15.5 - parent: 2 - - uid: 26121 - components: - - type: Transform - pos: 67.5,-15.5 - parent: 2 - - uid: 26124 - components: - - type: Transform - pos: 60.5,-18.5 - parent: 2 - - uid: 26125 - components: - - type: Transform - pos: 60.5,-17.5 - parent: 2 - - uid: 26127 - components: - - type: Transform - pos: 60.5,-16.5 - parent: 2 - - uid: 26141 - components: - - type: Transform - pos: 69.5,-15.5 - parent: 2 - - uid: 26144 - components: - - type: Transform - pos: 70.5,-15.5 - parent: 2 - - uid: 26167 - components: - - type: Transform - pos: 34.5,18.5 - parent: 2 - - uid: 26168 - components: - - type: Transform - pos: 71.5,-15.5 - parent: 2 - - uid: 26170 - components: - - type: Transform - pos: 89.5,-4.5 - parent: 2 - - uid: 26171 - components: - - type: Transform - pos: 89.5,-0.5 - parent: 2 - - uid: 26176 - components: - - type: Transform - pos: 89.5,-8.5 - parent: 2 - - uid: 26186 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 26193 - components: - - type: Transform - pos: 89.5,-12.5 - parent: 2 - - uid: 26223 - components: - - type: Transform - pos: 37.5,18.5 - parent: 2 - - uid: 26258 - components: - - type: Transform - pos: 39.5,-25.5 - parent: 2 - - uid: 26278 - components: - - type: Transform - pos: 38.5,-25.5 - parent: 2 - - uid: 26279 - components: - - type: Transform - pos: 37.5,-28.5 - parent: 2 - - uid: 26280 - components: - - type: Transform - pos: 37.5,-27.5 - parent: 2 - - uid: 26281 - components: - - type: Transform - pos: 40.5,-31.5 - parent: 2 - - uid: 26282 - components: - - type: Transform - pos: 40.5,-30.5 - parent: 2 - - uid: 26283 - components: - - type: Transform - pos: 41.5,-30.5 - parent: 2 - - uid: 26284 - components: - - type: Transform - pos: 39.5,-30.5 - parent: 2 - - uid: 26294 - components: - - type: Transform - pos: 43.5,-34.5 - parent: 2 - - uid: 26298 - components: - - type: Transform - pos: 43.5,-32.5 - parent: 2 - - uid: 26299 - components: - - type: Transform - pos: 43.5,-33.5 - parent: 2 - - uid: 26395 - components: - - type: Transform - pos: 38.5,-49.5 - parent: 2 - - uid: 26396 - components: - - type: Transform - pos: 38.5,-46.5 - parent: 2 - - uid: 26407 - components: - - type: Transform - pos: 24.5,-26.5 - parent: 2 - - uid: 26409 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - - uid: 26415 - components: - - type: Transform - pos: 34.5,17.5 - parent: 2 - - uid: 26417 - components: - - type: Transform - pos: 27.5,-26.5 - parent: 2 - - uid: 26418 - components: - - type: Transform - pos: 27.5,-25.5 - parent: 2 - - uid: 26419 - components: - - type: Transform - pos: 27.5,-24.5 - parent: 2 - - uid: 26425 - components: - - type: Transform - pos: 38.5,-16.5 - parent: 2 - - uid: 26428 - components: - - type: Transform - pos: -43.5,20.5 - parent: 2 - - uid: 26445 - components: - - type: Transform - pos: 38.5,-15.5 - parent: 2 - - uid: 26446 - components: - - type: Transform - pos: 37.5,-15.5 - parent: 2 - - uid: 26447 - components: - - type: Transform - pos: 39.5,-15.5 - parent: 2 - - uid: 26457 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - - uid: 26460 - components: - - type: Transform - pos: 9.5,7.5 - parent: 2 - - uid: 26465 - components: - - type: Transform - pos: 9.5,8.5 - parent: 2 - - uid: 26488 - components: - - type: Transform - pos: 22.5,42.5 - parent: 2 - - uid: 26512 - components: - - type: Transform - pos: -5.5,18.5 - parent: 2 - - uid: 26513 - components: - - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 26516 - components: - - type: Transform - pos: 35.5,18.5 - parent: 2 - - uid: 26522 - components: - - type: Transform - pos: -4.5,18.5 - parent: 2 - - uid: 26523 - components: - - type: Transform - pos: -3.5,18.5 - parent: 2 - - uid: 26525 - components: - - type: Transform - pos: -2.5,15.5 - parent: 2 - - uid: 26526 - components: - - type: Transform - pos: -2.5,16.5 - parent: 2 - - uid: 26534 - components: - - type: Transform - pos: 6.5,43.5 - parent: 2 - - uid: 26541 - components: - - type: Transform - pos: 7.5,43.5 - parent: 2 - - uid: 26550 - components: - - type: Transform - pos: 8.5,43.5 - parent: 2 - - uid: 26565 - components: - - type: Transform - pos: 9.5,43.5 - parent: 2 - - uid: 26567 - components: - - type: Transform - pos: 10.5,43.5 - parent: 2 - - uid: 26568 - components: - - type: Transform - pos: 13.5,45.5 - parent: 2 - - uid: 26569 - components: - - type: Transform - pos: 13.5,46.5 - parent: 2 - - uid: 26570 - components: - - type: Transform - pos: 15.5,45.5 - parent: 2 - - uid: 26573 - components: - - type: Transform - pos: 15.5,46.5 - parent: 2 - - uid: 26574 - components: - - type: Transform - pos: 17.5,45.5 - parent: 2 - - uid: 26575 - components: - - type: Transform - pos: 17.5,46.5 - parent: 2 - - uid: 26576 - components: - - type: Transform - pos: 18.5,42.5 - parent: 2 - - uid: 26577 - components: - - type: Transform - pos: 19.5,42.5 - parent: 2 - - uid: 26579 - components: - - type: Transform - pos: 19.5,43.5 - parent: 2 - - uid: 26581 - components: - - type: Transform - pos: 19.5,41.5 - parent: 2 - - uid: 26595 - components: - - type: Transform - pos: 20.5,36.5 - parent: 2 - - uid: 26596 - components: - - type: Transform - pos: 21.5,34.5 - parent: 2 - - uid: 26597 - components: - - type: Transform - pos: 20.5,34.5 - parent: 2 - - uid: 26598 - components: - - type: Transform - pos: 11.5,32.5 - parent: 2 - - uid: 26599 - components: - - type: Transform - pos: 11.5,30.5 - parent: 2 - - uid: 26603 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 2 - - uid: 26606 - components: - - type: Transform - pos: 9.5,5.5 - parent: 2 - - uid: 26613 - components: - - type: Transform - pos: -4.5,-28.5 - parent: 2 - - uid: 26615 - components: - - type: Transform - pos: 15.5,-51.5 - parent: 2 - - uid: 26645 - components: - - type: Transform - pos: 15.5,-55.5 - parent: 2 - - uid: 26646 - components: - - type: Transform - pos: 13.5,39.5 - parent: 2 - - uid: 26659 - components: - - type: Transform - pos: 21.5,-63.5 - parent: 2 - - uid: 26691 - components: - - type: Transform - pos: -32.5,-59.5 - parent: 2 - - uid: 26703 - components: - - type: Transform - pos: 37.5,-68.5 - parent: 2 - - uid: 26706 - components: - - type: Transform - pos: -32.5,-36.5 - parent: 2 - - uid: 26708 - components: - - type: Transform - pos: -32.5,-35.5 - parent: 2 - - uid: 26709 - components: - - type: Transform - pos: -33.5,-35.5 - parent: 2 - - uid: 26710 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - - uid: 26711 - components: - - type: Transform - pos: -32.5,-38.5 - parent: 2 - - uid: 26712 - components: - - type: Transform - pos: -32.5,-39.5 - parent: 2 - - uid: 26729 - components: - - type: Transform - pos: -31.5,-39.5 - parent: 2 - - uid: 26730 - components: - - type: Transform - pos: -33.5,-39.5 - parent: 2 - - uid: 26733 - components: - - type: Transform - pos: -36.5,-38.5 - parent: 2 - - uid: 26734 - components: - - type: Transform - pos: -36.5,-39.5 - parent: 2 - - uid: 26735 - components: - - type: Transform - pos: -37.5,-39.5 - parent: 2 - - uid: 26736 - components: - - type: Transform - pos: -35.5,-39.5 - parent: 2 - - uid: 26741 - components: - - type: Transform - pos: 39.5,-7.5 - parent: 2 - - uid: 26743 - components: - - type: Transform - pos: 40.5,-7.5 - parent: 2 - - uid: 26745 - components: - - type: Transform - pos: 37.5,-10.5 - parent: 2 - - uid: 26747 - components: - - type: Transform - pos: 37.5,-9.5 - parent: 2 - - uid: 26748 - components: - - type: Transform - pos: 42.5,-9.5 - parent: 2 - - uid: 26749 - components: - - type: Transform - pos: 41.5,-9.5 - parent: 2 - - uid: 26752 - components: - - type: Transform - pos: 41.5,-10.5 - parent: 2 - - uid: 26755 - components: - - type: Transform - pos: -15.5,10.5 - parent: 2 - - uid: 26756 - components: - - type: Transform - pos: -14.5,10.5 - parent: 2 - - uid: 26761 - components: - - type: Transform - pos: 41.5,-8.5 - parent: 2 - - uid: 26780 - components: - - type: Transform - pos: 44.5,-1.5 - parent: 2 - - uid: 26781 - components: - - type: Transform - pos: 42.5,-1.5 - parent: 2 - - uid: 26784 - components: - - type: Transform - pos: -14.5,9.5 - parent: 2 - - uid: 26787 - components: - - type: Transform - pos: -8.5,46.5 - parent: 2 - - uid: 26788 - components: - - type: Transform - pos: -6.5,46.5 - parent: 2 - - uid: 26792 - components: - - type: Transform - pos: 51.5,-45.5 - parent: 2 - - uid: 26793 - components: - - type: Transform - pos: 52.5,-45.5 - parent: 2 - - uid: 26796 - components: - - type: Transform - pos: 51.5,-46.5 - parent: 2 - - uid: 26797 - components: - - type: Transform - pos: 50.5,-54.5 - parent: 2 - - uid: 26798 - components: - - type: Transform - pos: 36.5,19.5 - parent: 2 - - uid: 26807 - components: - - type: Transform - pos: 51.5,-54.5 - parent: 2 - - uid: 26814 - components: - - type: Transform - pos: 52.5,-54.5 - parent: 2 - - uid: 26816 - components: - - type: Transform - pos: 53.5,-54.5 - parent: 2 - - uid: 26818 - components: - - type: Transform - pos: 54.5,-54.5 - parent: 2 - - uid: 26819 - components: - - type: Transform - pos: 55.5,-54.5 - parent: 2 - - uid: 26820 - components: - - type: Transform - pos: 56.5,-54.5 - parent: 2 - - uid: 26821 - components: - - type: Transform - pos: 58.5,-54.5 - parent: 2 - - uid: 26822 - components: - - type: Transform - pos: 57.5,-54.5 - parent: 2 - - uid: 26823 - components: - - type: Transform - pos: 59.5,-54.5 - parent: 2 - - uid: 26824 - components: - - type: Transform - pos: 60.5,-54.5 - parent: 2 - - uid: 26852 - components: - - type: Transform - pos: 61.5,-54.5 - parent: 2 - - uid: 26854 - components: - - type: Transform - pos: 62.5,-54.5 - parent: 2 - - uid: 26856 - components: - - type: Transform - pos: 52.5,-55.5 - parent: 2 - - uid: 26857 - components: - - type: Transform - pos: 52.5,-56.5 - parent: 2 - - uid: 26860 - components: - - type: Transform - pos: -14.5,8.5 - parent: 2 - - uid: 26861 - components: - - type: Transform - pos: -14.5,7.5 - parent: 2 - - uid: 26862 - components: - - type: Transform - pos: -14.5,6.5 - parent: 2 - - uid: 26863 - components: - - type: Transform - pos: -14.5,4.5 - parent: 2 - - uid: 26869 - components: - - type: Transform - pos: 53.5,-56.5 - parent: 2 - - uid: 26878 - components: - - type: Transform - pos: 51.5,-56.5 - parent: 2 - - uid: 26879 - components: - - type: Transform - pos: 57.5,-55.5 - parent: 2 - - uid: 26880 - components: - - type: Transform - pos: 57.5,-56.5 - parent: 2 - - uid: 26883 - components: - - type: Transform - pos: 56.5,-56.5 - parent: 2 - - uid: 26887 - components: - - type: Transform - pos: 58.5,-56.5 - parent: 2 - - uid: 26892 - components: - - type: Transform - pos: 62.5,-55.5 - parent: 2 - - uid: 26893 - components: - - type: Transform - pos: 62.5,-56.5 - parent: 2 - - uid: 26894 - components: - - type: Transform - pos: 61.5,-56.5 - parent: 2 - - uid: 26895 - components: - - type: Transform - pos: 63.5,-56.5 - parent: 2 - - uid: 26897 - components: - - type: Transform - pos: 36.5,18.5 - parent: 2 - - uid: 26900 - components: - - type: Transform - pos: 63.5,-54.5 - parent: 2 - - uid: 26936 - components: - - type: Transform - pos: 61.5,-53.5 - parent: 2 - - uid: 26938 - components: - - type: Transform - pos: 59.5,-53.5 - parent: 2 - - uid: 26939 - components: - - type: Transform - pos: 57.5,-53.5 - parent: 2 - - uid: 26943 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - uid: 26945 - components: - - type: Transform - pos: -14.5,2.5 - parent: 2 - - uid: 26950 - components: - - type: Transform - pos: -14.5,3.5 - parent: 2 - - uid: 27010 - components: - - type: Transform - pos: -19.5,-29.5 - parent: 2 - - uid: 27011 - components: - - type: Transform - pos: -21.5,-29.5 - parent: 2 - - uid: 27024 - components: - - type: Transform - pos: -34.5,-29.5 - parent: 2 - - uid: 27025 - components: - - type: Transform - pos: -67.5,19.5 - parent: 2 - - uid: 27026 - components: - - type: Transform - pos: -66.5,19.5 - parent: 2 - - uid: 27027 - components: - - type: Transform - pos: -65.5,19.5 - parent: 2 - - uid: 27028 - components: - - type: Transform - pos: -74.5,13.5 - parent: 2 - - uid: 27029 - components: - - type: Transform - pos: -74.5,14.5 - parent: 2 - - uid: 27033 - components: - - type: Transform - pos: -74.5,15.5 - parent: 2 - - uid: 27035 - components: - - type: Transform - pos: -74.5,16.5 - parent: 2 - - uid: 27036 - components: - - type: Transform - pos: -74.5,17.5 - parent: 2 - - uid: 27037 - components: - - type: Transform - pos: -67.5,8.5 - parent: 2 - - uid: 27038 - components: - - type: Transform - pos: -68.5,7.5 - parent: 2 - - uid: 27039 - components: - - type: Transform - pos: -67.5,7.5 - parent: 2 - - uid: 27045 - components: - - type: Transform - pos: -66.5,7.5 - parent: 2 - - uid: 27046 - components: - - type: Transform - pos: -64.5,1.5 - parent: 2 - - uid: 27047 - components: - - type: Transform - pos: -67.5,-3.5 - parent: 2 - - uid: 27055 - components: - - type: Transform - pos: -67.5,-2.5 - parent: 2 - - uid: 27064 - components: - - type: Transform - pos: -68.5,-2.5 - parent: 2 - - uid: 27076 - components: - - type: Transform - pos: -0.5,3.5 - parent: 2 - - uid: 27078 - components: - - type: Transform - pos: -9.5,12.5 - parent: 2 - - uid: 27079 - components: - - type: Transform - pos: 69.5,-23.5 - parent: 2 - - uid: 27080 - components: - - type: Transform - pos: 68.5,-23.5 - parent: 2 - - uid: 27081 - components: - - type: Transform - pos: 68.5,-26.5 - parent: 2 - - uid: 27082 - components: - - type: Transform - pos: 69.5,-26.5 - parent: 2 - - uid: 27101 - components: - - type: Transform - pos: 13.5,21.5 - parent: 2 - - uid: 27102 - components: - - type: Transform - pos: 13.5,22.5 - parent: 2 - - uid: 27103 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - uid: 27139 - components: - - type: Transform - pos: -28.5,29.5 - parent: 2 - - uid: 27162 - components: - - type: Transform - pos: 8.5,28.5 - parent: 2 - - uid: 27165 - components: - - type: Transform - pos: -27.5,33.5 - parent: 2 - - uid: 27166 - components: - - type: Transform - pos: 22.5,-65.5 - parent: 2 - - uid: 27167 - components: - - type: Transform - pos: 22.5,-66.5 - parent: 2 - - uid: 27168 - components: - - type: Transform - pos: 22.5,-67.5 - parent: 2 - - uid: 27171 - components: - - type: Transform - pos: 22.5,-68.5 - parent: 2 - - uid: 27186 - components: - - type: Transform - pos: 8.5,29.5 - parent: 2 - - uid: 27192 - components: - - type: Transform - pos: 6.5,28.5 - parent: 2 - - uid: 27200 - components: - - type: Transform - pos: 6.5,29.5 - parent: 2 - - uid: 27202 - components: - - type: Transform - pos: 23.5,-62.5 - parent: 2 - - uid: 27206 - components: - - type: Transform - pos: 24.5,-62.5 - parent: 2 - - uid: 27211 - components: - - type: Transform - pos: 23.5,-64.5 - parent: 2 - - uid: 27212 - components: - - type: Transform - pos: 24.5,-64.5 - parent: 2 - - uid: 27213 - components: - - type: Transform - pos: 19.5,9.5 - parent: 2 - - uid: 27214 - components: - - type: Transform - pos: 19.5,8.5 - parent: 2 - - uid: 27216 - components: - - type: Transform - pos: 19.5,7.5 - parent: 2 - - uid: 27217 - components: - - type: Transform - pos: 19.5,6.5 - parent: 2 - - uid: 27218 - components: - - type: Transform - pos: 19.5,5.5 - parent: 2 - - uid: 27219 - components: - - type: Transform - pos: 19.5,4.5 - parent: 2 - - uid: 27220 - components: - - type: Transform - pos: 19.5,-3.5 - parent: 2 - - uid: 27223 - components: - - type: Transform - pos: 19.5,-1.5 - parent: 2 - - uid: 27224 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 2 - - uid: 27225 - components: - - type: Transform - pos: 19.5,0.5 - parent: 2 - - uid: 27226 - components: - - type: Transform - pos: 19.5,1.5 - parent: 2 - - uid: 27231 - components: - - type: Transform - pos: 19.5,2.5 - parent: 2 - - uid: 27248 - components: - - type: Transform - pos: 25.5,-62.5 - parent: 2 - - uid: 27249 - components: - - type: Transform - pos: 26.5,-62.5 - parent: 2 - - uid: 27250 - components: - - type: Transform - pos: 27.5,-62.5 - parent: 2 - - uid: 27251 - components: - - type: Transform - pos: 27.5,-64.5 - parent: 2 - - uid: 27252 - components: - - type: Transform - pos: 26.5,-64.5 - parent: 2 - - uid: 27253 - components: - - type: Transform - pos: 25.5,-64.5 - parent: 2 - - uid: 27254 - components: - - type: Transform - pos: 23.5,-66.5 - parent: 2 - - uid: 27255 - components: - - type: Transform - pos: 24.5,-66.5 - parent: 2 - - uid: 27342 - components: - - type: Transform - pos: 19.5,-2.5 - parent: 2 - - uid: 27436 - components: - - type: Transform - pos: -13.5,37.5 - parent: 2 - - uid: 27481 - components: - - type: Transform - pos: -25.5,30.5 - parent: 2 - - uid: 27494 - components: - - type: Transform - pos: -25.5,29.5 - parent: 2 - - uid: 27560 - components: - - type: Transform - pos: -8.5,-3.5 - parent: 2 - - uid: 27688 - components: - - type: Transform - pos: 32.5,-71.5 - parent: 2 - - uid: 27690 - components: - - type: Transform - pos: 25.5,-66.5 - parent: 2 - - uid: 27697 - components: - - type: Transform - pos: 26.5,-66.5 - parent: 2 - - uid: 27701 - components: - - type: Transform - pos: 27.5,-66.5 - parent: 2 - - uid: 27777 - components: - - type: Transform - pos: 23.5,-48.5 - parent: 2 - - uid: 27780 - components: - - type: Transform - pos: 24.5,-48.5 - parent: 2 - - uid: 27824 - components: - - type: Transform - pos: 25.5,-48.5 - parent: 2 - - uid: 28007 - components: - - type: Transform - pos: 26.5,-48.5 - parent: 2 - - uid: 28056 - components: - - type: Transform - pos: 27.5,-48.5 - parent: 2 - - uid: 28057 - components: - - type: Transform - pos: 27.5,-46.5 - parent: 2 - - uid: 28064 - components: - - type: Transform - pos: 26.5,-46.5 - parent: 2 - - uid: 28066 - components: - - type: Transform - pos: 25.5,-46.5 - parent: 2 - - uid: 28068 - components: - - type: Transform - pos: 24.5,-46.5 - parent: 2 - - uid: 28115 - components: - - type: Transform - pos: 23.5,-46.5 - parent: 2 - - uid: 28126 - components: - - type: Transform - pos: 23.5,-44.5 - parent: 2 - - uid: 28127 - components: - - type: Transform - pos: 24.5,-44.5 - parent: 2 - - uid: 28128 - components: - - type: Transform - pos: 25.5,-44.5 - parent: 2 - - uid: 28129 - components: - - type: Transform - pos: 26.5,-44.5 - parent: 2 - - uid: 28136 - components: - - type: Transform - pos: 27.5,-44.5 - parent: 2 - - uid: 28149 - components: - - type: Transform - pos: 21.5,-50.5 - parent: 2 - - uid: 28180 - components: - - type: Transform - pos: 22.5,-50.5 - parent: 2 - - uid: 28187 - components: - - type: Transform - pos: 22.5,-49.5 - parent: 2 - - uid: 28188 - components: - - type: Transform - pos: 22.5,-48.5 - parent: 2 - - uid: 28189 - components: - - type: Transform - pos: 22.5,-47.5 - parent: 2 - - uid: 28226 - components: - - type: Transform - pos: 22.5,-46.5 - parent: 2 - - uid: 28227 - components: - - type: Transform - pos: 22.5,-45.5 - parent: 2 - - uid: 28228 - components: - - type: Transform - pos: 22.5,-44.5 - parent: 2 - - uid: 28229 - components: - - type: Transform - pos: 22.5,-43.5 - parent: 2 - - uid: 28230 - components: - - type: Transform - pos: 13.5,-50.5 - parent: 2 - - uid: 28231 - components: - - type: Transform - pos: 14.5,-50.5 - parent: 2 - - uid: 28313 - components: - - type: Transform - pos: 12.5,-50.5 - parent: 2 - - uid: 28315 - components: - - type: Transform - pos: 11.5,-50.5 - parent: 2 - - uid: 28369 - components: - - type: Transform - pos: 32.5,-72.5 - parent: 2 - - uid: 28385 - components: - - type: Transform - pos: 25.5,-87.5 - parent: 2 - - uid: 28387 - components: - - type: Transform - pos: 33.5,-67.5 - parent: 2 - - uid: 28579 - components: - - type: Transform - pos: -24.5,29.5 - parent: 2 - - uid: 28580 - components: - - type: Transform - pos: -22.5,29.5 - parent: 2 - - uid: 28587 - components: - - type: Transform - pos: -21.5,32.5 - parent: 2 - - uid: 28590 - components: - - type: Transform - pos: -20.5,32.5 - parent: 2 - - uid: 28591 - components: - - type: Transform - pos: -20.5,33.5 - parent: 2 - - uid: 28592 - components: - - type: Transform - pos: -20.5,31.5 - parent: 2 - - uid: 28640 - components: - - type: Transform - pos: 22.5,-92.5 - parent: 2 - - uid: 28650 - components: - - type: Transform - pos: -23.5,37.5 - parent: 2 - - uid: 28655 - components: - - type: Transform - pos: 49.5,-68.5 - parent: 2 - - uid: 28764 - components: - - type: Transform - pos: 23.5,-83.5 - parent: 2 - - uid: 28808 - components: - - type: Transform - pos: 13.5,23.5 - parent: 2 - - uid: 28809 - components: - - type: Transform - pos: -7.5,35.5 - parent: 2 - - uid: 28811 - components: - - type: Transform - pos: -6.5,35.5 - parent: 2 - - uid: 28815 - components: - - type: Transform - pos: 25.5,41.5 - parent: 2 - - uid: 28816 - components: - - type: Transform - pos: -5.5,35.5 - parent: 2 - - uid: 28819 - components: - - type: Transform - pos: -4.5,35.5 - parent: 2 - - uid: 28829 - components: - - type: Transform - pos: 23.5,-87.5 - parent: 2 - - uid: 28870 - components: - - type: Transform - pos: 25.5,-89.5 - parent: 2 - - uid: 28874 - components: - - type: Transform - pos: 24.5,-87.5 - parent: 2 - - uid: 28875 - components: - - type: Transform - pos: 24.5,-91.5 - parent: 2 - - uid: 28877 - components: - - type: Transform - pos: 25.5,-91.5 - parent: 2 - - uid: 28917 - components: - - type: Transform - pos: 23.5,-92.5 - parent: 2 - - uid: 28960 - components: - - type: Transform - pos: 23.5,-90.5 - parent: 2 - - uid: 28961 - components: - - type: Transform - pos: 23.5,-84.5 - parent: 2 - - uid: 29001 - components: - - type: Transform - pos: 12.5,27.5 - parent: 2 - - uid: 29144 - components: - - type: Transform - pos: -24.5,37.5 - parent: 2 - - uid: 29176 - components: - - type: Transform - pos: -25.5,37.5 - parent: 2 - - uid: 29177 - components: - - type: Transform - pos: -26.5,37.5 - parent: 2 - - uid: 29191 - components: - - type: Transform - pos: -27.5,37.5 - parent: 2 - - uid: 29212 - components: - - type: Transform - pos: -21.5,37.5 - parent: 2 - - uid: 29213 - components: - - type: Transform - pos: -36.5,47.5 - parent: 2 - - uid: 29214 - components: - - type: Transform - pos: -35.5,47.5 - parent: 2 - - uid: 29229 - components: - - type: Transform - pos: -34.5,47.5 - parent: 2 - - uid: 29243 - components: - - type: Transform - pos: -35.5,44.5 - parent: 2 - - uid: 29337 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 2 - - uid: 29339 - components: - - type: Transform - pos: 7.5,-22.5 - parent: 2 - - uid: 29340 - components: - - type: Transform - pos: 7.5,-23.5 - parent: 2 - - uid: 29341 - components: - - type: Transform - pos: 7.5,-24.5 - parent: 2 - - uid: 29342 - components: - - type: Transform - pos: 7.5,-25.5 - parent: 2 - - uid: 29343 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 2 - - uid: 29344 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 2 - - uid: 29345 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 2 - - uid: 29346 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 2 - - uid: 29351 - components: - - type: Transform - pos: -14.5,26.5 - parent: 2 - - uid: 29371 - components: - - type: Transform - pos: -34.5,44.5 - parent: 2 - - uid: 29373 - components: - - type: Transform - pos: -33.5,44.5 - parent: 2 - - uid: 29444 - components: - - type: Transform - pos: 9.5,-87.5 - parent: 2 - - uid: 29445 - components: - - type: Transform - pos: 10.5,-87.5 - parent: 2 - - uid: 29446 - components: - - type: Transform - pos: 11.5,-87.5 - parent: 2 - - uid: 29447 - components: - - type: Transform - pos: 12.5,-87.5 - parent: 2 - - uid: 29448 - components: - - type: Transform - pos: 13.5,-87.5 - parent: 2 - - uid: 29449 - components: - - type: Transform - pos: 14.5,-87.5 - parent: 2 - - uid: 29452 - components: - - type: Transform - pos: 15.5,-87.5 - parent: 2 - - uid: 29453 - components: - - type: Transform - pos: 16.5,-87.5 - parent: 2 - - uid: 29455 - components: - - type: Transform - pos: 17.5,-86.5 - parent: 2 - - uid: 29456 - components: - - type: Transform - pos: 18.5,-86.5 - parent: 2 - - uid: 29457 - components: - - type: Transform - pos: 19.5,-86.5 - parent: 2 - - uid: 29458 - components: - - type: Transform - pos: 19.5,-87.5 - parent: 2 - - uid: 29459 - components: - - type: Transform - pos: 19.5,-88.5 - parent: 2 - - uid: 29460 - components: - - type: Transform - pos: 18.5,-88.5 - parent: 2 - - uid: 29461 - components: - - type: Transform - pos: 17.5,-88.5 - parent: 2 - - uid: 29462 - components: - - type: Transform - pos: 11.5,-86.5 - parent: 2 - - uid: 29463 - components: - - type: Transform - pos: 11.5,-84.5 - parent: 2 - - uid: 29464 - components: - - type: Transform - pos: 11.5,-83.5 - parent: 2 - - uid: 29465 - components: - - type: Transform - pos: 11.5,-82.5 - parent: 2 - - uid: 29466 - components: - - type: Transform - pos: 11.5,-85.5 - parent: 2 - - uid: 29467 - components: - - type: Transform - pos: 12.5,-82.5 - parent: 2 - - uid: 29468 - components: - - type: Transform - pos: 13.5,-82.5 - parent: 2 - - uid: 29469 - components: - - type: Transform - pos: 14.5,-82.5 - parent: 2 - - uid: 29471 - components: - - type: Transform - pos: 15.5,-82.5 - parent: 2 - - uid: 29472 - components: - - type: Transform - pos: 16.5,-82.5 - parent: 2 - - uid: 29473 - components: - - type: Transform - pos: 17.5,-82.5 - parent: 2 - - uid: 29474 - components: - - type: Transform - pos: 19.5,-82.5 - parent: 2 - - uid: 29475 - components: - - type: Transform - pos: 20.5,-82.5 - parent: 2 - - uid: 29476 - components: - - type: Transform - pos: 18.5,-82.5 - parent: 2 - - uid: 29477 - components: - - type: Transform - pos: 21.5,-82.5 - parent: 2 - - uid: 29487 - components: - - type: Transform - pos: 21.5,-92.5 - parent: 2 - - uid: 29488 - components: - - type: Transform - pos: 20.5,-92.5 - parent: 2 - - uid: 29489 - components: - - type: Transform - pos: 19.5,-92.5 - parent: 2 - - uid: 29490 - components: - - type: Transform - pos: 18.5,-92.5 - parent: 2 - - uid: 29491 - components: - - type: Transform - pos: 17.5,-92.5 - parent: 2 - - uid: 29492 - components: - - type: Transform - pos: 16.5,-92.5 - parent: 2 - - uid: 29493 - components: - - type: Transform - pos: 14.5,-92.5 - parent: 2 - - uid: 29494 - components: - - type: Transform - pos: 13.5,-92.5 - parent: 2 - - uid: 29495 - components: - - type: Transform - pos: 15.5,-92.5 - parent: 2 - - uid: 29496 - components: - - type: Transform - pos: 11.5,-92.5 - parent: 2 - - uid: 29497 - components: - - type: Transform - pos: 12.5,-92.5 - parent: 2 - - uid: 29498 - components: - - type: Transform - pos: 11.5,-91.5 - parent: 2 - - uid: 29499 - components: - - type: Transform - pos: 11.5,-90.5 - parent: 2 - - uid: 29500 - components: - - type: Transform - pos: 11.5,-89.5 - parent: 2 - - uid: 29501 - components: - - type: Transform - pos: 11.5,-88.5 - parent: 2 - - uid: 29510 - components: - - type: Transform - pos: 20.5,-87.5 - parent: 2 - - uid: 29511 - components: - - type: Transform - pos: 21.5,-87.5 - parent: 2 - - uid: 29515 - components: - - type: Transform - pos: 18.5,-91.5 - parent: 2 - - uid: 29516 - components: - - type: Transform - pos: 18.5,-90.5 - parent: 2 - - uid: 29517 - components: - - type: Transform - pos: 18.5,-89.5 - parent: 2 - - uid: 29518 - components: - - type: Transform - pos: 18.5,-85.5 - parent: 2 - - uid: 29519 - components: - - type: Transform - pos: 18.5,-84.5 - parent: 2 - - uid: 29520 - components: - - type: Transform - pos: 18.5,-83.5 - parent: 2 - - uid: 29538 - components: - - type: Transform - pos: 32.5,-67.5 - parent: 2 - - uid: 29539 - components: - - type: Transform - pos: 32.5,-68.5 - parent: 2 - - uid: 29540 - components: - - type: Transform - pos: 32.5,-69.5 - parent: 2 - - uid: 29544 - components: - - type: Transform - pos: 31.5,-72.5 - parent: 2 - - uid: 29674 - components: - - type: Transform - pos: -6.5,18.5 - parent: 2 - - uid: 29675 - components: - - type: Transform - pos: -6.5,17.5 - parent: 2 - - uid: 29676 - components: - - type: Transform - pos: -6.5,15.5 - parent: 2 - - uid: 29677 - components: - - type: Transform - pos: -6.5,14.5 - parent: 2 - - uid: 29678 - components: - - type: Transform - pos: -6.5,16.5 - parent: 2 - - uid: 29679 - components: - - type: Transform - pos: -5.5,15.5 - parent: 2 - - uid: 29680 - components: - - type: Transform - pos: -4.5,15.5 - parent: 2 - - uid: 29681 - components: - - type: Transform - pos: -3.5,15.5 - parent: 2 - - uid: 29682 - components: - - type: Transform - pos: -4.5,14.5 - parent: 2 - - uid: 29683 - components: - - type: Transform - pos: -4.5,16.5 - parent: 2 - - uid: 29684 - components: - - type: Transform - pos: -4.5,17.5 - parent: 2 - - uid: 29685 - components: - - type: Transform - pos: -7.5,16.5 - parent: 2 - - uid: 29686 - components: - - type: Transform - pos: -8.5,16.5 - parent: 2 - - uid: 29687 - components: - - type: Transform - pos: -9.5,16.5 - parent: 2 - - uid: 29688 - components: - - type: Transform - pos: -11.5,16.5 - parent: 2 - - uid: 29689 - components: - - type: Transform - pos: -12.5,16.5 - parent: 2 - - uid: 29690 - components: - - type: Transform - pos: -13.5,16.5 - parent: 2 - - uid: 29691 - components: - - type: Transform - pos: -14.5,16.5 - parent: 2 - - uid: 29692 - components: - - type: Transform - pos: -10.5,16.5 - parent: 2 - - uid: 29693 - components: - - type: Transform - pos: -11.5,17.5 - parent: 2 - - uid: 29694 - components: - - type: Transform - pos: -11.5,15.5 - parent: 2 - - uid: 29695 - components: - - type: Transform - pos: 15.5,23.5 - parent: 2 - - uid: 29696 - components: - - type: Transform - pos: -11.5,12.5 - parent: 2 - - uid: 29697 - components: - - type: Transform - pos: -11.5,13.5 - parent: 2 - - uid: 29698 - components: - - type: Transform - pos: -14.5,1.5 - parent: 2 - - uid: 29699 - components: - - type: Transform - pos: -12.5,6.5 - parent: 2 - - uid: 29700 - components: - - type: Transform - pos: -12.5,4.5 - parent: 2 - - uid: 29701 - components: - - type: Transform - pos: -12.5,3.5 - parent: 2 - - uid: 29702 - components: - - type: Transform - pos: -12.5,2.5 - parent: 2 - - uid: 29703 - components: - - type: Transform - pos: -12.5,5.5 - parent: 2 - - uid: 29704 - components: - - type: Transform - pos: -11.5,2.5 - parent: 2 - - uid: 29705 - components: - - type: Transform - pos: -10.5,2.5 - parent: 2 - - uid: 29706 - components: - - type: Transform - pos: -9.5,2.5 - parent: 2 - - uid: 29707 - components: - - type: Transform - pos: -9.5,3.5 - parent: 2 - - uid: 29708 - components: - - type: Transform - pos: -9.5,4.5 - parent: 2 - - uid: 29709 - components: - - type: Transform - pos: -9.5,6.5 - parent: 2 - - uid: 29710 - components: - - type: Transform - pos: -9.5,5.5 - parent: 2 - - uid: 29711 - components: - - type: Transform - pos: -10.5,6.5 - parent: 2 - - uid: 29712 - components: - - type: Transform - pos: -11.5,6.5 - parent: 2 - - uid: 29713 - components: - - type: Transform - pos: -11.5,7.5 - parent: 2 - - uid: 29714 - components: - - type: Transform - pos: -11.5,9.5 - parent: 2 - - uid: 29715 - components: - - type: Transform - pos: -11.5,10.5 - parent: 2 - - uid: 29716 - components: - - type: Transform - pos: -11.5,8.5 - parent: 2 - - uid: 29717 - components: - - type: Transform - pos: -10.5,9.5 - parent: 2 - - uid: 29718 - components: - - type: Transform - pos: -7.5,9.5 - parent: 2 - - uid: 29719 - components: - - type: Transform - pos: -8.5,9.5 - parent: 2 - - uid: 29720 - components: - - type: Transform - pos: -9.5,9.5 - parent: 2 - - uid: 29721 - components: - - type: Transform - pos: -8.5,2.5 - parent: 2 - - uid: 29723 - components: - - type: Transform - pos: -8.5,6.5 - parent: 2 - - uid: 29725 - components: - - type: Transform - pos: -2.5,4.5 - parent: 2 - - uid: 29726 - components: - - type: Transform - pos: -3.5,4.5 - parent: 2 - - uid: 29727 - components: - - type: Transform - pos: -5.5,4.5 - parent: 2 - - uid: 29728 - components: - - type: Transform - pos: -4.5,4.5 - parent: 2 - - uid: 29729 - components: - - type: Transform - pos: -4.5,5.5 - parent: 2 - - uid: 29730 - components: - - type: Transform - pos: -4.5,7.5 - parent: 2 - - uid: 29731 - components: - - type: Transform - pos: -4.5,6.5 - parent: 2 - - uid: 29732 - components: - - type: Transform - pos: -4.5,3.5 - parent: 2 - - uid: 29733 - components: - - type: Transform - pos: -4.5,2.5 - parent: 2 - - uid: 29734 - components: - - type: Transform - pos: -4.5,1.5 - parent: 2 - - uid: 29735 - components: - - type: Transform - pos: -1.5,10.5 - parent: 2 - - uid: 29736 - components: - - type: Transform - pos: -2.5,10.5 - parent: 2 - - uid: 29737 - components: - - type: Transform - pos: -4.5,10.5 - parent: 2 - - uid: 29738 - components: - - type: Transform - pos: -5.5,10.5 - parent: 2 - - uid: 29739 - components: - - type: Transform - pos: -3.5,10.5 - parent: 2 - - uid: 29795 - components: - - type: Transform - pos: -33.5,42.5 - parent: 2 - - uid: 29814 - components: - - type: Transform - pos: 16.5,22.5 - parent: 2 - - uid: 29815 - components: - - type: Transform - pos: 17.5,22.5 - parent: 2 - - uid: 29816 - components: - - type: Transform - pos: 17.5,23.5 - parent: 2 - - uid: 29817 - components: - - type: Transform - pos: 17.5,24.5 - parent: 2 - - uid: 29818 - components: - - type: Transform - pos: 18.5,23.5 - parent: 2 - - uid: 29819 - components: - - type: Transform - pos: 13.5,19.5 - parent: 2 - - uid: 29844 - components: - - type: Transform - pos: -34.5,42.5 - parent: 2 - - uid: 29845 - components: - - type: Transform - pos: -35.5,42.5 - parent: 2 - - uid: 29850 - components: - - type: Transform - pos: 23.5,-78.5 - parent: 2 - - uid: 29851 - components: - - type: Transform - pos: 23.5,-79.5 - parent: 2 - - uid: 29860 - components: - - type: Transform - pos: 36.5,-19.5 - parent: 2 - - uid: 29861 - components: - - type: Transform - pos: 34.5,-19.5 - parent: 2 - - uid: 29862 - components: - - type: Transform - pos: 33.5,-19.5 - parent: 2 - - uid: 29863 - components: - - type: Transform - pos: 32.5,-19.5 - parent: 2 - - uid: 29864 - components: - - type: Transform - pos: 35.5,-19.5 - parent: 2 - - uid: 29865 - components: - - type: Transform - pos: 34.5,-20.5 - parent: 2 - - uid: 29932 - components: - - type: Transform - pos: -38.5,-37.5 - parent: 2 - - uid: 29933 - components: - - type: Transform - pos: -36.5,-36.5 - parent: 2 - - uid: 29934 - components: - - type: Transform - pos: -36.5,-35.5 - parent: 2 - - uid: 29936 - components: - - type: Transform - pos: -36.5,-34.5 - parent: 2 - - uid: 29937 - components: - - type: Transform - pos: -35.5,-35.5 - parent: 2 - - uid: 29938 - components: - - type: Transform - pos: -34.5,-35.5 - parent: 2 - - uid: 29939 - components: - - type: Transform - pos: -44.5,-38.5 - parent: 2 - - uid: 29941 - components: - - type: Transform - pos: -41.5,-38.5 - parent: 2 - - uid: 29942 - components: - - type: Transform - pos: -37.5,43.5 - parent: 2 - - uid: 29943 - components: - - type: Transform - pos: -38.5,43.5 - parent: 2 - - uid: 29944 - components: - - type: Transform - pos: -45.5,-38.5 - parent: 2 - - uid: 29945 - components: - - type: Transform - pos: -45.5,-37.5 - parent: 2 - - uid: 29946 - components: - - type: Transform - pos: -45.5,-36.5 - parent: 2 - - uid: 29947 - components: - - type: Transform - pos: -46.5,-37.5 - parent: 2 - - uid: 29948 - components: - - type: Transform - pos: -47.5,-37.5 - parent: 2 - - uid: 29949 - components: - - type: Transform - pos: -49.5,-37.5 - parent: 2 - - uid: 29950 - components: - - type: Transform - pos: -50.5,-37.5 - parent: 2 - - uid: 29951 - components: - - type: Transform - pos: -48.5,-37.5 - parent: 2 - - uid: 29952 - components: - - type: Transform - pos: -45.5,-39.5 - parent: 2 - - uid: 29953 - components: - - type: Transform - pos: -45.5,-40.5 - parent: 2 - - uid: 29954 - components: - - type: Transform - pos: -45.5,-41.5 - parent: 2 - - uid: 29955 - components: - - type: Transform - pos: -45.5,-42.5 - parent: 2 - - uid: 29956 - components: - - type: Transform - pos: -45.5,-43.5 - parent: 2 - - uid: 29957 - components: - - type: Transform - pos: -46.5,-42.5 - parent: 2 - - uid: 29958 - components: - - type: Transform - pos: -47.5,-42.5 - parent: 2 - - uid: 29959 - components: - - type: Transform - pos: -48.5,-42.5 - parent: 2 - - uid: 29960 - components: - - type: Transform - pos: -41.5,-37.5 - parent: 2 - - uid: 29961 - components: - - type: Transform - pos: -41.5,-36.5 - parent: 2 - - uid: 29962 - components: - - type: Transform - pos: -41.5,-39.5 - parent: 2 - - uid: 29963 - components: - - type: Transform - pos: -39.5,43.5 - parent: 2 - - uid: 30027 - components: - - type: Transform - pos: -39.5,42.5 - parent: 2 - - uid: 30028 - components: - - type: Transform - pos: -39.5,44.5 - parent: 2 - - uid: 30029 - components: - - type: Transform - pos: -37.5,32.5 - parent: 2 - - uid: 30079 - components: - - type: Transform - pos: -38.5,32.5 - parent: 2 - - uid: 30135 - components: - - type: Transform - pos: 27.5,42.5 - parent: 2 - - uid: 30136 - components: - - type: Transform - pos: 27.5,43.5 - parent: 2 - - uid: 30137 - components: - - type: Transform - pos: 27.5,44.5 - parent: 2 - - uid: 30138 - components: - - type: Transform - pos: 27.5,45.5 - parent: 2 - - uid: 30139 - components: - - type: Transform - pos: 27.5,46.5 - parent: 2 - - uid: 30140 - components: - - type: Transform - pos: 27.5,47.5 - parent: 2 - - uid: 30141 - components: - - type: Transform - pos: 27.5,35.5 - parent: 2 - - uid: 30142 - components: - - type: Transform - pos: 28.5,35.5 - parent: 2 - - uid: 30143 - components: - - type: Transform - pos: 29.5,35.5 - parent: 2 - - uid: 30144 - components: - - type: Transform - pos: 30.5,35.5 - parent: 2 - - uid: 30145 - components: - - type: Transform - pos: 31.5,35.5 - parent: 2 - - uid: 30146 - components: - - type: Transform - pos: 32.5,35.5 - parent: 2 - - uid: 30147 - components: - - type: Transform - pos: 33.5,35.5 - parent: 2 - - uid: 30148 - components: - - type: Transform - pos: 28.5,36.5 - parent: 2 - - uid: 30149 - components: - - type: Transform - pos: 28.5,37.5 - parent: 2 - - uid: 30150 - components: - - type: Transform - pos: 28.5,38.5 - parent: 2 - - uid: 30213 - components: - - type: Transform - pos: -39.5,32.5 - parent: 2 - - uid: 30214 - components: - - type: Transform - pos: -39.5,30.5 - parent: 2 - - uid: 30217 - components: - - type: Transform - pos: 51.5,-53.5 - parent: 2 - - uid: 30219 - components: - - type: Transform - pos: 67.5,-65.5 - parent: 2 - - uid: 30220 - components: - - type: Transform - pos: 38.5,-68.5 - parent: 2 - - uid: 30221 - components: - - type: Transform - pos: 38.5,-69.5 - parent: 2 - - uid: 30226 - components: - - type: Transform - pos: -27.5,-45.5 - parent: 2 - - uid: 30287 - components: - - type: Transform - pos: -25.5,34.5 - parent: 2 - - uid: 30384 - components: - - type: Transform - pos: -39.5,31.5 - parent: 2 - - uid: 30395 - components: - - type: Transform - pos: -0.5,0.5 - parent: 2 - - uid: 30396 - components: - - type: Transform - pos: -0.5,1.5 - parent: 2 - - uid: 30443 - components: - - type: Transform - pos: -39.5,33.5 - parent: 2 - - uid: 30458 - components: - - type: Transform - pos: -39.5,34.5 - parent: 2 - - uid: 30459 - components: - - type: Transform - pos: -33.5,26.5 - parent: 2 - - uid: 30613 - components: - - type: Transform - pos: -33.5,30.5 - parent: 2 - - uid: 30614 - components: - - type: Transform - pos: -32.5,30.5 - parent: 2 - - uid: 30615 - components: - - type: Transform - pos: -31.5,30.5 - parent: 2 - - uid: 30616 - components: - - type: Transform - pos: -34.5,29.5 - parent: 2 - - uid: 30617 - components: - - type: Transform - pos: -34.5,30.5 - parent: 2 - - uid: 30618 - components: - - type: Transform - pos: -35.5,30.5 - parent: 2 - - uid: 30619 - components: - - type: Transform - pos: -36.5,30.5 - parent: 2 - - uid: 30620 - components: - - type: Transform - pos: -37.5,30.5 - parent: 2 - - uid: 30621 - components: - - type: Transform - pos: -36.5,31.5 - parent: 2 - - uid: 30622 - components: - - type: Transform - pos: -36.5,32.5 - parent: 2 - - uid: 30623 - components: - - type: Transform - pos: -36.5,33.5 - parent: 2 - - uid: 30624 - components: - - type: Transform - pos: -36.5,34.5 - parent: 2 - - uid: 30625 - components: - - type: Transform - pos: -36.5,35.5 - parent: 2 - - uid: 30627 - components: - - type: Transform - pos: -34.5,28.5 - parent: 2 - - uid: 30628 - components: - - type: Transform - pos: -34.5,27.5 - parent: 2 - - uid: 30629 - components: - - type: Transform - pos: -34.5,26.5 - parent: 2 - - uid: 30630 - components: - - type: Transform - pos: -34.5,25.5 - parent: 2 - - uid: 30631 - components: - - type: Transform - pos: -34.5,24.5 - parent: 2 - - uid: 30632 - components: - - type: Transform - pos: -34.5,23.5 - parent: 2 - - uid: 30633 - components: - - type: Transform - pos: -34.5,22.5 - parent: 2 - - uid: 30634 - components: - - type: Transform - pos: -34.5,21.5 - parent: 2 - - uid: 30635 - components: - - type: Transform - pos: -34.5,20.5 - parent: 2 - - uid: 30636 - components: - - type: Transform - pos: -34.5,19.5 - parent: 2 - - uid: 30637 - components: - - type: Transform - pos: -34.5,18.5 - parent: 2 - - uid: 30655 - components: - - type: Transform - pos: -31.5,31.5 - parent: 2 - - uid: 30656 - components: - - type: Transform - pos: -31.5,32.5 - parent: 2 - - uid: 30657 - components: - - type: Transform - pos: -31.5,33.5 - parent: 2 - - uid: 30658 - components: - - type: Transform - pos: -31.5,34.5 - parent: 2 - - uid: 30659 - components: - - type: Transform - pos: -31.5,35.5 - parent: 2 - - uid: 30660 - components: - - type: Transform - pos: -31.5,37.5 - parent: 2 - - uid: 30661 - components: - - type: Transform - pos: -31.5,38.5 - parent: 2 - - uid: 30662 - components: - - type: Transform - pos: -31.5,39.5 - parent: 2 - - uid: 30663 - components: - - type: Transform - pos: -31.5,40.5 - parent: 2 - - uid: 30664 - components: - - type: Transform - pos: -31.5,41.5 - parent: 2 - - uid: 30665 - components: - - type: Transform - pos: -31.5,42.5 - parent: 2 - - uid: 30666 - components: - - type: Transform - pos: -31.5,43.5 - parent: 2 - - uid: 30667 - components: - - type: Transform - pos: -31.5,44.5 - parent: 2 - - uid: 30668 - components: - - type: Transform - pos: -31.5,45.5 - parent: 2 - - uid: 30669 - components: - - type: Transform - pos: -31.5,36.5 - parent: 2 - - uid: 30670 - components: - - type: Transform - pos: -36.5,37.5 - parent: 2 - - uid: 30671 - components: - - type: Transform - pos: -36.5,38.5 - parent: 2 - - uid: 30672 - components: - - type: Transform - pos: -36.5,39.5 - parent: 2 - - uid: 30673 - components: - - type: Transform - pos: -36.5,40.5 - parent: 2 - - uid: 30674 - components: - - type: Transform - pos: -36.5,41.5 - parent: 2 - - uid: 30675 - components: - - type: Transform - pos: -36.5,42.5 - parent: 2 - - uid: 30676 - components: - - type: Transform - pos: -36.5,44.5 - parent: 2 - - uid: 30677 - components: - - type: Transform - pos: -36.5,45.5 - parent: 2 - - uid: 30678 - components: - - type: Transform - pos: -36.5,46.5 - parent: 2 - - uid: 30679 - components: - - type: Transform - pos: -36.5,43.5 - parent: 2 - - uid: 30680 - components: - - type: Transform - pos: -22.5,36.5 - parent: 2 - - uid: 30681 - components: - - type: Transform - pos: -22.5,35.5 - parent: 2 - - uid: 30682 - components: - - type: Transform - pos: -22.5,34.5 - parent: 2 - - uid: 30683 - components: - - type: Transform - pos: -22.5,33.5 - parent: 2 - - uid: 30684 - components: - - type: Transform - pos: -22.5,32.5 - parent: 2 - - uid: 30685 - components: - - type: Transform - pos: -22.5,30.5 - parent: 2 - - uid: 30686 - components: - - type: Transform - pos: -22.5,31.5 - parent: 2 - - uid: 30687 - components: - - type: Transform - pos: -22.5,37.5 - parent: 2 - - uid: 30688 - components: - - type: Transform - pos: -23.5,35.5 - parent: 2 - - uid: 30689 - components: - - type: Transform - pos: -24.5,35.5 - parent: 2 - - uid: 30690 - components: - - type: Transform - pos: -25.5,35.5 - parent: 2 - - uid: 30691 - components: - - type: Transform - pos: -26.5,35.5 - parent: 2 - - uid: 30692 - components: - - type: Transform - pos: -27.5,35.5 - parent: 2 - - uid: 30693 - components: - - type: Transform - pos: -28.5,35.5 - parent: 2 - - uid: 30695 - components: - - type: Transform - pos: -25.5,34.5 - parent: 2 - - uid: 30696 - components: - - type: Transform - pos: -25.5,36.5 - parent: 2 - - uid: 30770 - components: - - type: Transform - pos: -32.5,26.5 - parent: 2 - - uid: 30771 - components: - - type: Transform - pos: -31.5,26.5 - parent: 2 - - uid: 30787 - components: - - type: Transform - pos: 7.5,8.5 - parent: 2 - - uid: 30829 - components: - - type: Transform - pos: 14.5,39.5 - parent: 2 - - uid: 30899 - components: - - type: Transform - pos: 8.5,5.5 - parent: 2 - - uid: 30953 - components: - - type: Transform - pos: -30.5,26.5 - parent: 2 - - uid: 30954 - components: - - type: Transform - pos: 7.5,5.5 - parent: 2 - - uid: 30997 - components: - - type: Transform - pos: -29.5,26.5 - parent: 2 - - uid: 30998 - components: - - type: Transform - pos: -29.5,27.5 - parent: 2 - - uid: 31000 - components: - - type: Transform - pos: -29.5,28.5 - parent: 2 - - uid: 31004 - components: - - type: Transform - pos: -33.5,24.5 - parent: 2 - - uid: 31012 - components: - - type: Transform - pos: -32.5,24.5 - parent: 2 - - uid: 31040 - components: - - type: Transform - pos: -31.5,24.5 - parent: 2 - - uid: 31113 - components: - - type: Transform - pos: -30.5,24.5 - parent: 2 - - uid: 31152 - components: - - type: Transform - pos: 65.5,15.5 - parent: 2 - - uid: 31153 - components: - - type: Transform - pos: 65.5,16.5 - parent: 2 - - uid: 31161 - components: - - type: Transform - pos: 64.5,24.5 - parent: 2 - - uid: 31162 - components: - - type: Transform - pos: 65.5,19.5 - parent: 2 - - uid: 31163 - components: - - type: Transform - pos: 65.5,20.5 - parent: 2 - - uid: 31164 - components: - - type: Transform - pos: 65.5,21.5 - parent: 2 - - uid: 31165 - components: - - type: Transform - pos: 65.5,23.5 - parent: 2 - - uid: 31166 - components: - - type: Transform - pos: 65.5,24.5 - parent: 2 - - uid: 31167 - components: - - type: Transform - pos: 65.5,25.5 - parent: 2 - - uid: 31168 - components: - - type: Transform - pos: 65.5,26.5 - parent: 2 - - uid: 31169 - components: - - type: Transform - pos: 65.5,27.5 - parent: 2 - - uid: 31170 - components: - - type: Transform - pos: 65.5,22.5 - parent: 2 - - uid: 31171 - components: - - type: Transform - pos: 66.5,24.5 - parent: 2 - - uid: 31172 - components: - - type: Transform - pos: 67.5,24.5 - parent: 2 - - uid: 31173 - components: - - type: Transform - pos: 68.5,24.5 - parent: 2 - - uid: 31174 - components: - - type: Transform - pos: 63.5,24.5 - parent: 2 - - uid: 31175 - components: - - type: Transform - pos: 62.5,24.5 - parent: 2 - - uid: 31176 - components: - - type: Transform - pos: 61.5,24.5 - parent: 2 - - uid: 31294 - components: - - type: Transform - pos: 6.5,8.5 - parent: 2 - - uid: 31296 - components: - - type: Transform - pos: -29.5,24.5 - parent: 2 - - uid: 31304 - components: - - type: Transform - pos: -29.5,23.5 - parent: 2 - - uid: 31318 - components: - - type: Transform - pos: -29.5,22.5 - parent: 2 - - uid: 31327 - components: - - type: Transform - pos: 24.5,32.5 - parent: 2 - - uid: 31330 - components: - - type: Transform - pos: 23.5,29.5 - parent: 2 - - uid: 31331 - components: - - type: Transform - pos: 23.5,30.5 - parent: 2 - - uid: 31332 - components: - - type: Transform - pos: 23.5,31.5 - parent: 2 - - uid: 31341 - components: - - type: Transform - pos: 30.5,27.5 - parent: 2 - - uid: 31342 - components: - - type: Transform - pos: 30.5,28.5 - parent: 2 - - uid: 31343 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - - uid: 31352 - components: - - type: Transform - pos: -55.5,-11.5 - parent: 2 - - uid: 31429 - components: - - type: Transform - pos: 20.5,9.5 - parent: 2 - - uid: 31430 - components: - - type: Transform - pos: 21.5,9.5 - parent: 2 - - uid: 31431 - components: - - type: Transform - pos: 22.5,9.5 - parent: 2 - - uid: 31432 - components: - - type: Transform - pos: 23.5,9.5 - parent: 2 - - uid: 31433 - components: - - type: Transform - pos: 24.5,9.5 - parent: 2 - - uid: 31434 - components: - - type: Transform - pos: 25.5,9.5 - parent: 2 - - uid: 31435 - components: - - type: Transform - pos: 26.5,9.5 - parent: 2 - - uid: 31436 - components: - - type: Transform - pos: 26.5,12.5 - parent: 2 - - uid: 31437 - components: - - type: Transform - pos: 26.5,13.5 - parent: 2 - - uid: 31438 - components: - - type: Transform - pos: 26.5,14.5 - parent: 2 - - uid: 31439 - components: - - type: Transform - pos: 26.5,15.5 - parent: 2 - - uid: 31440 - components: - - type: Transform - pos: 26.5,16.5 - parent: 2 - - uid: 31441 - components: - - type: Transform - pos: 26.5,17.5 - parent: 2 - - uid: 31442 - components: - - type: Transform - pos: 26.5,18.5 - parent: 2 - - uid: 31443 - components: - - type: Transform - pos: 26.5,19.5 - parent: 2 - - uid: 31444 - components: - - type: Transform - pos: 26.5,20.5 - parent: 2 - - uid: 31445 - components: - - type: Transform - pos: 26.5,21.5 - parent: 2 - - uid: 31446 - components: - - type: Transform - pos: 26.5,22.5 - parent: 2 - - uid: 31447 - components: - - type: Transform - pos: 25.5,20.5 - parent: 2 - - uid: 31448 - components: - - type: Transform - pos: 24.5,20.5 - parent: 2 - - uid: 31449 - components: - - type: Transform - pos: 23.5,20.5 - parent: 2 - - uid: 31450 - components: - - type: Transform - pos: 22.5,20.5 - parent: 2 - - uid: 31451 - components: - - type: Transform - pos: 25.5,18.5 - parent: 2 - - uid: 31452 - components: - - type: Transform - pos: 24.5,18.5 - parent: 2 - - uid: 31453 - components: - - type: Transform - pos: 23.5,18.5 - parent: 2 - - uid: 31454 - components: - - type: Transform - pos: 21.5,14.5 - parent: 2 - - uid: 31455 - components: - - type: Transform - pos: 22.5,14.5 - parent: 2 - - uid: 31456 - components: - - type: Transform - pos: 23.5,14.5 - parent: 2 - - uid: 31457 - components: - - type: Transform - pos: 24.5,14.5 - parent: 2 - - uid: 31458 - components: - - type: Transform - pos: 23.5,13.5 - parent: 2 - - uid: 31459 - components: - - type: Transform - pos: 23.5,12.5 - parent: 2 - - uid: 31460 - components: - - type: Transform - pos: 9.5,14.5 - parent: 2 - - uid: 31461 - components: - - type: Transform - pos: 10.5,14.5 - parent: 2 - - uid: 31462 - components: - - type: Transform - pos: 11.5,14.5 - parent: 2 - - uid: 31672 - components: - - type: Transform - pos: -29.5,19.5 - parent: 2 - - uid: 31676 - components: - - type: Transform - pos: -30.5,19.5 - parent: 2 - - uid: 31772 - components: - - type: Transform - pos: -45.5,-17.5 - parent: 2 - - uid: 31773 - components: - - type: Transform - pos: -49.5,-11.5 - parent: 2 - - uid: 31774 - components: - - type: Transform - pos: -48.5,-11.5 - parent: 2 - - uid: 31775 - components: - - type: Transform - pos: -47.5,-11.5 - parent: 2 - - uid: 31776 - components: - - type: Transform - pos: -46.5,-11.5 - parent: 2 - - uid: 31777 - components: - - type: Transform - pos: -50.5,-10.5 - parent: 2 - - uid: 31778 - components: - - type: Transform - pos: -46.5,-10.5 - parent: 2 - - uid: 31779 - components: - - type: Transform - pos: -46.5,-9.5 - parent: 2 - - uid: 31780 - components: - - type: Transform - pos: -46.5,-8.5 - parent: 2 - - uid: 31781 - components: - - type: Transform - pos: -46.5,-7.5 - parent: 2 - - uid: 31782 - components: - - type: Transform - pos: -46.5,-6.5 - parent: 2 - - uid: 31783 - components: - - type: Transform - pos: -46.5,-5.5 - parent: 2 - - uid: 31786 - components: - - type: Transform - pos: -31.5,19.5 - parent: 2 - - uid: 31808 - components: - - type: Transform - pos: -43.5,-6.5 - parent: 2 - - uid: 31809 - components: - - type: Transform - pos: -42.5,-6.5 - parent: 2 - - uid: 31810 - components: - - type: Transform - pos: -41.5,-6.5 - parent: 2 - - uid: 31811 - components: - - type: Transform - pos: -40.5,-6.5 - parent: 2 - - uid: 31812 - components: - - type: Transform - pos: -39.5,-6.5 - parent: 2 - - uid: 31813 - components: - - type: Transform - pos: -38.5,-6.5 - parent: 2 - - uid: 31814 - components: - - type: Transform - pos: -37.5,-6.5 - parent: 2 - - uid: 31815 - components: - - type: Transform - pos: -36.5,-6.5 - parent: 2 - - uid: 31816 - components: - - type: Transform - pos: -37.5,-5.5 - parent: 2 - - uid: 31817 - components: - - type: Transform - pos: -37.5,-4.5 - parent: 2 - - uid: 31818 - components: - - type: Transform - pos: -42.5,-5.5 - parent: 2 - - uid: 31819 - components: - - type: Transform - pos: -42.5,-7.5 - parent: 2 - - uid: 31820 - components: - - type: Transform - pos: -42.5,-8.5 - parent: 2 - - uid: 31821 - components: - - type: Transform - pos: -42.5,-9.5 - parent: 2 - - uid: 31822 - components: - - type: Transform - pos: -42.5,-10.5 - parent: 2 - - uid: 31823 - components: - - type: Transform - pos: -42.5,-11.5 - parent: 2 - - uid: 31824 - components: - - type: Transform - pos: -42.5,-12.5 - parent: 2 - - uid: 31825 - components: - - type: Transform - pos: -42.5,-13.5 - parent: 2 - - uid: 31826 - components: - - type: Transform - pos: -40.5,-13.5 - parent: 2 - - uid: 31827 - components: - - type: Transform - pos: -39.5,-13.5 - parent: 2 - - uid: 31828 - components: - - type: Transform - pos: -38.5,-13.5 - parent: 2 - - uid: 31829 - components: - - type: Transform - pos: -37.5,-13.5 - parent: 2 - - uid: 31831 - components: - - type: Transform - pos: -37.5,-12.5 - parent: 2 - - uid: 31832 - components: - - type: Transform - pos: -37.5,-11.5 - parent: 2 - - uid: 31833 - components: - - type: Transform - pos: -37.5,-10.5 - parent: 2 - - uid: 31834 - components: - - type: Transform - pos: -37.5,-9.5 - parent: 2 - - uid: 31835 - components: - - type: Transform - pos: -37.5,-8.5 - parent: 2 - - uid: 31836 - components: - - type: Transform - pos: -37.5,-7.5 - parent: 2 - - uid: 31837 - components: - - type: Transform - pos: -16.5,23.5 - parent: 2 - - uid: 31838 - components: - - type: Transform - pos: -17.5,24.5 - parent: 2 - - uid: 31839 - components: - - type: Transform - pos: -17.5,25.5 - parent: 2 - - uid: 31840 - components: - - type: Transform - pos: -17.5,26.5 - parent: 2 - - uid: 31841 - components: - - type: Transform - pos: -17.5,27.5 - parent: 2 - - uid: 31854 - components: - - type: Transform - pos: -57.5,-9.5 - parent: 2 - - uid: 31856 - components: - - type: Transform - pos: -56.5,-9.5 - parent: 2 - - uid: 31857 - components: - - type: Transform - pos: -55.5,-8.5 - parent: 2 - - uid: 31858 - components: - - type: Transform - pos: -55.5,-7.5 - parent: 2 - - uid: 31859 - components: - - type: Transform - pos: -55.5,-9.5 - parent: 2 - - uid: 31860 - components: - - type: Transform - pos: -32.5,19.5 - parent: 2 - - uid: 31861 - components: - - type: Transform - pos: -58.5,-9.5 - parent: 2 - - uid: 31862 - components: - - type: Transform - pos: -59.5,-9.5 - parent: 2 - - uid: 31863 - components: - - type: Transform - pos: -60.5,-9.5 - parent: 2 - - uid: 31873 - components: - - type: Transform - pos: 24.5,28.5 - parent: 2 - - uid: 31874 - components: - - type: Transform - pos: 25.5,28.5 - parent: 2 - - uid: 31875 - components: - - type: Transform - pos: 26.5,28.5 - parent: 2 - - uid: 31876 - components: - - type: Transform - pos: 27.5,28.5 - parent: 2 - - uid: 31877 - components: - - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 31888 - components: - - type: Transform - pos: 9.5,-33.5 - parent: 2 - - uid: 31889 - components: - - type: Transform - pos: 8.5,-34.5 - parent: 2 - - uid: 31890 - components: - - type: Transform - pos: 7.5,-34.5 - parent: 2 - - uid: 31891 - components: - - type: Transform - pos: 6.5,-34.5 - parent: 2 - - uid: 31892 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 2 - - uid: 31893 - components: - - type: Transform - pos: 4.5,-34.5 - parent: 2 - - uid: 31894 - components: - - type: Transform - pos: 3.5,-34.5 - parent: 2 - - uid: 31898 - components: - - type: Transform - pos: -33.5,19.5 - parent: 2 - - uid: 31899 - components: - - type: Transform - pos: -29.5,18.5 - parent: 2 - - uid: 31900 - components: - - type: Transform - pos: -29.5,20.5 - parent: 2 - - uid: 31901 - components: - - type: Transform - pos: -35.5,19.5 - parent: 2 - - uid: 31902 - components: - - type: Transform - pos: -36.5,19.5 - parent: 2 - - uid: 31903 - components: - - type: Transform - pos: -37.5,19.5 - parent: 2 - - uid: 31904 - components: - - type: Transform - pos: -37.5,18.5 - parent: 2 - - uid: 31905 - components: - - type: Transform - pos: -38.5,17.5 - parent: 2 - - uid: 31906 - components: - - type: Transform - pos: -37.5,17.5 - parent: 2 - - uid: 31907 - components: - - type: Transform - pos: -36.5,17.5 - parent: 2 - - uid: 31908 - components: - - type: Transform - pos: -43.5,19.5 - parent: 2 - - uid: 31911 - components: - - type: Transform - pos: -42.5,19.5 - parent: 2 - - uid: 31924 - components: - - type: Transform - pos: 2.5,46.5 - parent: 2 - - uid: 31925 - components: - - type: Transform - pos: 3.5,46.5 - parent: 2 - - uid: 31926 - components: - - type: Transform - pos: 4.5,46.5 - parent: 2 - - uid: 31927 - components: - - type: Transform - pos: 0.5,48.5 - parent: 2 - - uid: 31928 - components: - - type: Transform - pos: 0.5,49.5 - parent: 2 - - uid: 31929 - components: - - type: Transform - pos: 0.5,50.5 - parent: 2 - - uid: 31930 - components: - - type: Transform - pos: 1.5,50.5 - parent: 2 - - uid: 31931 - components: - - type: Transform - pos: -0.5,50.5 - parent: 2 - - uid: 31932 - components: - - type: Transform - pos: -1.5,50.5 - parent: 2 - - uid: 31933 - components: - - type: Transform - pos: -2.5,50.5 - parent: 2 - - uid: 31934 - components: - - type: Transform - pos: 4.5,47.5 - parent: 2 - - uid: 31935 - components: - - type: Transform - pos: 4.5,45.5 - parent: 2 - - uid: 31955 - components: - - type: Transform - pos: 12.5,-53.5 - parent: 2 - - uid: 31956 - components: - - type: Transform - pos: 11.5,-53.5 - parent: 2 - - uid: 31957 - components: - - type: Transform - pos: 10.5,-53.5 - parent: 2 - - uid: 31958 - components: - - type: Transform - pos: 10.5,-54.5 - parent: 2 - - uid: 31959 - components: - - type: Transform - pos: 10.5,-51.5 - parent: 2 - - uid: 31960 - components: - - type: Transform - pos: 10.5,-52.5 - parent: 2 - - uid: 31961 - components: - - type: Transform - pos: 2.5,-56.5 - parent: 2 - - uid: 31962 - components: - - type: Transform - pos: 2.5,-55.5 - parent: 2 - - uid: 31963 - components: - - type: Transform - pos: 2.5,-57.5 - parent: 2 - - uid: 31964 - components: - - type: Transform - pos: 3.5,-52.5 - parent: 2 - - uid: 31965 - components: - - type: Transform - pos: 2.5,-52.5 - parent: 2 - - uid: 31966 - components: - - type: Transform - pos: 1.5,-53.5 - parent: 2 - - uid: 31967 - components: - - type: Transform - pos: 1.5,-52.5 - parent: 2 - - uid: 31968 - components: - - type: Transform - pos: 1.5,-51.5 - parent: 2 - - uid: 31976 - components: - - type: Transform - pos: -31.5,0.5 - parent: 2 - - uid: 31996 - components: - - type: Transform - pos: -30.5,1.5 - parent: 2 - - uid: 31997 - components: - - type: Transform - pos: -30.5,2.5 - parent: 2 - - uid: 31998 - components: - - type: Transform - pos: -30.5,3.5 - parent: 2 - - uid: 31999 - components: - - type: Transform - pos: -29.5,3.5 - parent: 2 - - uid: 32000 - components: - - type: Transform - pos: -28.5,3.5 - parent: 2 - - uid: 32001 - components: - - type: Transform - pos: -27.5,3.5 - parent: 2 - - uid: 32002 - components: - - type: Transform - pos: -27.5,4.5 - parent: 2 - - uid: 32003 - components: - - type: Transform - pos: -27.5,5.5 - parent: 2 - - uid: 32004 - components: - - type: Transform - pos: -27.5,6.5 - parent: 2 - - uid: 32005 - components: - - type: Transform - pos: -27.5,7.5 - parent: 2 - - uid: 32006 - components: - - type: Transform - pos: -27.5,8.5 - parent: 2 - - uid: 32007 - components: - - type: Transform - pos: -27.5,9.5 - parent: 2 - - uid: 32008 - components: - - type: Transform - pos: -28.5,9.5 - parent: 2 - - uid: 32009 - components: - - type: Transform - pos: -29.5,9.5 - parent: 2 - - uid: 32010 - components: - - type: Transform - pos: -30.5,9.5 - parent: 2 - - uid: 32011 - components: - - type: Transform - pos: -30.5,10.5 - parent: 2 - - uid: 32012 - components: - - type: Transform - pos: -31.5,3.5 - parent: 2 - - uid: 32013 - components: - - type: Transform - pos: -32.5,3.5 - parent: 2 - - uid: 32014 - components: - - type: Transform - pos: -33.5,3.5 - parent: 2 - - uid: 32015 - components: - - type: Transform - pos: -33.5,4.5 - parent: 2 - - uid: 32016 - components: - - type: Transform - pos: -33.5,5.5 - parent: 2 - - uid: 32017 - components: - - type: Transform - pos: -33.5,6.5 - parent: 2 - - uid: 32018 - components: - - type: Transform - pos: -33.5,7.5 - parent: 2 - - uid: 32019 - components: - - type: Transform - pos: -33.5,8.5 - parent: 2 - - uid: 32020 - components: - - type: Transform - pos: -33.5,9.5 - parent: 2 - - uid: 32021 - components: - - type: Transform - pos: -32.5,9.5 - parent: 2 - - uid: 32022 - components: - - type: Transform - pos: -31.5,9.5 - parent: 2 - - uid: 32023 - components: - - type: Transform - pos: -32.5,6.5 - parent: 2 - - uid: 32024 - components: - - type: Transform - pos: -31.5,6.5 - parent: 2 - - uid: 32025 - components: - - type: Transform - pos: -30.5,6.5 - parent: 2 - - uid: 32026 - components: - - type: Transform - pos: -29.5,6.5 - parent: 2 - - uid: 32027 - components: - - type: Transform - pos: -28.5,6.5 - parent: 2 -- proto: CableApcStack - entities: - - uid: 6148 - components: - - type: Transform - pos: -51.663174,-6.0246577 - parent: 2 - - uid: 6149 - components: - - type: Transform - pos: 60.473213,-49.45246 - parent: 2 - - uid: 6151 - components: - - type: Transform - pos: -46.301056,3.4515293 - parent: 2 - - uid: 6152 - components: - - type: Transform - rot: -0.02363373152911663 rad - pos: -65.26673,14.742755 - parent: 2 - - uid: 6153 - components: - - type: Transform - pos: -4.4804783,-45.275856 - parent: 2 - - uid: 6154 - components: - - type: Transform - pos: -28.687122,-54.44169 - parent: 2 - - uid: 6155 - components: - - type: Transform - pos: -8.310263,-35.572342 - parent: 2 - - uid: 6156 - components: - - type: Transform - pos: -8.325888,-37.791092 - parent: 2 - - uid: 6157 - components: - - type: Transform - pos: 47.398952,-68.41422 - parent: 2 - - uid: 6158 - components: - - type: Transform - pos: 74.33588,-19.006496 - parent: 2 - - uid: 6159 - components: - - type: Transform - pos: 74.7265,-19.100246 - parent: 2 - - uid: 6160 - components: - - type: Transform - pos: 78.68335,-64.45979 - parent: 2 - - uid: 6161 - components: - - type: Transform - pos: -51.663174,-6.0246577 - parent: 2 - - uid: 6162 - components: - - type: Transform - pos: 6.5073543,-57.339874 - parent: 2 - - uid: 6164 - components: - - type: Transform - pos: -51.663174,-6.0246577 - parent: 2 - - uid: 6165 - components: - - type: Transform - pos: -16.512756,7.2967176 - parent: 2 - - uid: 20373 - components: - - type: Transform - pos: -2.596274,-71.31615 - parent: 2 - - uid: 25139 - components: - - type: Transform - pos: -10.13139,-72.553535 - parent: 2 -- proto: CableHV - entities: - - uid: 68 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 2 - - uid: 76 - components: - - type: Transform - pos: -15.5,27.5 - parent: 2 - - uid: 86 - components: - - type: Transform - pos: -17.5,-59.5 - parent: 2 - - uid: 114 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 2 - - uid: 137 - components: - - type: Transform - pos: 2.5,11.5 - parent: 2 - - uid: 224 - components: - - type: Transform - pos: -17.5,-65.5 - parent: 2 - - uid: 227 - components: - - type: Transform - pos: -15.5,-69.5 - parent: 2 - - uid: 347 - components: - - type: Transform - pos: 25.5,28.5 - parent: 2 - - uid: 357 - components: - - type: Transform - pos: 2.5,8.5 - parent: 2 - - uid: 401 - components: - - type: Transform - pos: -29.5,12.5 - parent: 2 - - uid: 554 - components: - - type: Transform - pos: 16.5,-33.5 - parent: 2 - - uid: 564 - components: - - type: Transform - pos: 35.5,-13.5 - parent: 2 - - uid: 568 - components: - - type: Transform - pos: -8.5,34.5 - parent: 2 - - uid: 671 - components: - - type: Transform - pos: 34.5,-13.5 - parent: 2 - - uid: 728 - components: - - type: Transform - pos: -13.5,-72.5 - parent: 2 - - uid: 730 - components: - - type: Transform - pos: -14.5,-72.5 - parent: 2 - - uid: 737 - components: - - type: Transform - pos: 33.5,-13.5 - parent: 2 - - uid: 738 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 2 - - uid: 739 - components: - - type: Transform - pos: -0.5,-30.5 - parent: 2 - - uid: 740 - components: - - type: Transform - pos: -17.5,26.5 - parent: 2 - - uid: 747 - components: - - type: Transform - pos: 43.5,-13.5 - parent: 2 - - uid: 756 - components: - - type: Transform - pos: 2.5,10.5 - parent: 2 - - uid: 796 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 2 - - uid: 808 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 2 - - uid: 842 - components: - - type: Transform - pos: -13.5,12.5 - parent: 2 - - uid: 877 - components: - - type: Transform - pos: 24.5,28.5 - parent: 2 - - uid: 886 - components: - - type: Transform - pos: 8.5,-76.5 - parent: 2 - - uid: 1034 - components: - - type: Transform - pos: -2.5,50.5 - parent: 2 - - uid: 1268 - components: - - type: Transform - pos: -12.5,12.5 - parent: 2 - - uid: 1294 - components: - - type: Transform - pos: -4.5,12.5 - parent: 2 - - uid: 1295 - components: - - type: Transform - pos: -5.5,12.5 - parent: 2 - - uid: 1296 - components: - - type: Transform - pos: 0.5,12.5 - parent: 2 - - uid: 1297 - components: - - type: Transform - pos: 1.5,12.5 - parent: 2 - - uid: 1298 - components: - - type: Transform - pos: -3.5,12.5 - parent: 2 - - uid: 1359 - components: - - type: Transform - pos: -15.5,12.5 - parent: 2 - - uid: 1795 - components: - - type: Transform - pos: 27.5,27.5 - parent: 2 - - uid: 1813 - components: - - type: Transform - pos: 0.5,50.5 - parent: 2 - - uid: 2620 - components: - - type: Transform - pos: 16.5,-37.5 - parent: 2 - - uid: 2636 - components: - - type: Transform - pos: -10.5,12.5 - parent: 2 - - uid: 2637 - components: - - type: Transform - pos: -11.5,12.5 - parent: 2 - - uid: 2638 - components: - - type: Transform - pos: -6.5,12.5 - parent: 2 - - uid: 2639 - components: - - type: Transform - pos: -7.5,12.5 - parent: 2 - - uid: 2640 - components: - - type: Transform - pos: -8.5,12.5 - parent: 2 - - uid: 3058 - components: - - type: Transform - pos: -3.5,-7.5 - parent: 2 - - uid: 3264 - components: - - type: Transform - pos: -0.5,-33.5 - parent: 2 - - uid: 3266 - components: - - type: Transform - pos: -0.5,-31.5 - parent: 2 - - uid: 3583 - components: - - type: Transform - pos: 38.5,-13.5 - parent: 2 - - uid: 3920 - components: - - type: Transform - pos: 39.5,-13.5 - parent: 2 - - uid: 3921 - components: - - type: Transform - pos: 40.5,-13.5 - parent: 2 - - uid: 3975 - components: - - type: Transform - pos: 42.5,-13.5 - parent: 2 - - uid: 4425 - components: - - type: Transform - pos: -11.5,-75.5 - parent: 2 - - uid: 4426 - components: - - type: Transform - pos: -13.5,-74.5 - parent: 2 - - uid: 4592 - components: - - type: Transform - pos: -23.5,11.5 - parent: 2 - - uid: 5229 - components: - - type: Transform - pos: 44.5,-13.5 - parent: 2 - - uid: 5230 - components: - - type: Transform - pos: 45.5,-13.5 - parent: 2 - - uid: 5231 - components: - - type: Transform - pos: 46.5,-13.5 - parent: 2 - - uid: 5237 - components: - - type: Transform - pos: 47.5,-13.5 - parent: 2 - - uid: 5238 - components: - - type: Transform - pos: 48.5,-13.5 - parent: 2 - - uid: 5239 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 2 - - uid: 5240 - components: - - type: Transform - pos: 41.5,-13.5 - parent: 2 - - uid: 5253 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 2 - - uid: 5254 - components: - - type: Transform - pos: 16.5,-36.5 - parent: 2 - - uid: 5255 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 2 - - uid: 5445 - components: - - type: Transform - pos: -27.5,12.5 - parent: 2 - - uid: 5486 - components: - - type: Transform - pos: 8.5,-86.5 - parent: 2 - - uid: 5510 - components: - - type: Transform - pos: -8.5,32.5 - parent: 2 - - uid: 5511 - components: - - type: Transform - pos: -8.5,28.5 - parent: 2 - - uid: 5518 - components: - - type: Transform - pos: 7.5,-86.5 - parent: 2 - - uid: 5521 - components: - - type: Transform - pos: -8.5,29.5 - parent: 2 - - uid: 5522 - components: - - type: Transform - pos: -8.5,31.5 - parent: 2 - - uid: 5548 - components: - - type: Transform - pos: 7.5,-87.5 - parent: 2 - - uid: 5549 - components: - - type: Transform - pos: 8.5,-85.5 - parent: 2 - - uid: 5571 - components: - - type: Transform - pos: 7.5,-85.5 - parent: 2 - - uid: 5574 - components: - - type: Transform - pos: -18.5,-69.5 - parent: 2 - - uid: 5606 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 2 - - uid: 5607 - components: - - type: Transform - pos: 16.5,-30.5 - parent: 2 - - uid: 5634 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 2 - - uid: 5636 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 2 - - uid: 5637 - components: - - type: Transform - pos: 25.5,-13.5 - parent: 2 - - uid: 5640 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 2 - - uid: 5641 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 2 - - uid: 5643 - components: - - type: Transform - pos: 29.5,-13.5 - parent: 2 - - uid: 5644 - components: - - type: Transform - pos: 28.5,-13.5 - parent: 2 - - uid: 5645 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 2 - - uid: 5646 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 2 - - uid: 5647 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 2 - - uid: 5648 - components: - - type: Transform - pos: 16.5,-31.5 - parent: 2 - - uid: 5649 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 2 - - uid: 5650 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 2 - - uid: 5651 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 2 - - uid: 5652 - components: - - type: Transform - pos: 26.5,-13.5 - parent: 2 - - uid: 5653 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 2 - - uid: 5654 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 2 - - uid: 5655 - components: - - type: Transform - pos: 31.5,-13.5 - parent: 2 - - uid: 5656 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 2 - - uid: 5671 - components: - - type: Transform - pos: 16.5,-32.5 - parent: 2 - - uid: 5672 - components: - - type: Transform - pos: -0.5,-35.5 - parent: 2 - - uid: 5673 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 2 - - uid: 5674 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 2 - - uid: 5677 - components: - - type: Transform - pos: 27.5,-13.5 - parent: 2 - - uid: 5678 - components: - - type: Transform - pos: -0.5,-32.5 - parent: 2 - - uid: 5681 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 2 - - uid: 5694 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 2 - - uid: 5696 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 2 - - uid: 5699 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - uid: 5700 - components: - - type: Transform - pos: 37.5,-13.5 - parent: 2 - - uid: 5701 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 2 - - uid: 5767 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 2 - - uid: 5788 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 2 - - uid: 5790 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 2 - - uid: 5792 - components: - - type: Transform - pos: -0.5,-37.5 - parent: 2 - - uid: 5835 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 2 - - uid: 5836 - components: - - type: Transform - pos: 15.5,-20.5 - parent: 2 - - uid: 5837 - components: - - type: Transform - pos: 15.5,-21.5 - parent: 2 - - uid: 5838 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 2 - - uid: 5839 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 2 - - uid: 5840 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 2 - - uid: 5841 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 2 - - uid: 5842 - components: - - type: Transform - pos: 2.5,-30.5 - parent: 2 - - uid: 6163 - components: - - type: Transform - pos: -11.5,-73.5 - parent: 2 - - uid: 6170 - components: - - type: Transform - pos: -14.5,-76.5 - parent: 2 - - uid: 6171 - components: - - type: Transform - pos: -10.5,-74.5 - parent: 2 - - uid: 6174 - components: - - type: Transform - pos: -20.5,-35.5 - parent: 2 - - uid: 6175 - components: - - type: Transform - pos: -18.5,-35.5 - parent: 2 - - uid: 6176 - components: - - type: Transform - pos: -21.5,-35.5 - parent: 2 - - uid: 6177 - components: - - type: Transform - pos: -11.5,-74.5 - parent: 2 - - uid: 6178 - components: - - type: Transform - pos: -13.5,-75.5 - parent: 2 - - uid: 6179 - components: - - type: Transform - pos: -19.5,-35.5 - parent: 2 - - uid: 6182 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 2 - - uid: 6183 - components: - - type: Transform - pos: -7.5,-12.5 - parent: 2 - - uid: 6184 - components: - - type: Transform - pos: -11.5,-12.5 - parent: 2 - - uid: 6185 - components: - - type: Transform - pos: -9.5,-12.5 - parent: 2 - - uid: 6186 - components: - - type: Transform - pos: -10.5,-12.5 - parent: 2 - - uid: 6187 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 2 - - uid: 6190 - components: - - type: Transform - pos: 22.5,24.5 - parent: 2 - - uid: 6191 - components: - - type: Transform - pos: -7.5,-10.5 - parent: 2 - - uid: 6192 - components: - - type: Transform - pos: -0.5,-73.5 - parent: 2 - - uid: 6193 - components: - - type: Transform - pos: -0.5,-78.5 - parent: 2 - - uid: 6194 - components: - - type: Transform - pos: 0.5,-78.5 - parent: 2 - - uid: 6195 - components: - - type: Transform - pos: -14.5,-78.5 - parent: 2 - - uid: 6196 - components: - - type: Transform - pos: -2.5,-77.5 - parent: 2 - - uid: 6197 - components: - - type: Transform - pos: 1.5,-74.5 - parent: 2 - - uid: 6198 - components: - - type: Transform - pos: 2.5,-74.5 - parent: 2 - - uid: 6199 - components: - - type: Transform - pos: 1.5,-77.5 - parent: 2 - - uid: 6200 - components: - - type: Transform - pos: -1.5,-78.5 - parent: 2 - - uid: 6201 - components: - - type: Transform - pos: -2.5,-78.5 - parent: 2 - - uid: 6202 - components: - - type: Transform - pos: 1.5,-78.5 - parent: 2 - - uid: 6203 - components: - - type: Transform - pos: -2.5,-76.5 - parent: 2 - - uid: 6204 - components: - - type: Transform - pos: 3.5,-74.5 - parent: 2 - - uid: 6205 - components: - - type: Transform - pos: 1.5,-76.5 - parent: 2 - - uid: 6206 - components: - - type: Transform - pos: 1.5,-75.5 - parent: 2 - - uid: 6207 - components: - - type: Transform - pos: 4.5,-74.5 - parent: 2 - - uid: 6208 - components: - - type: Transform - pos: -3.5,-56.5 - parent: 2 - - uid: 6211 - components: - - type: Transform - pos: 29.5,6.5 - parent: 2 - - uid: 6212 - components: - - type: Transform - pos: 8.5,-74.5 - parent: 2 - - uid: 6213 - components: - - type: Transform - pos: -0.5,-58.5 - parent: 2 - - uid: 6215 - components: - - type: Transform - pos: -12.5,-73.5 - parent: 2 - - uid: 6217 - components: - - type: Transform - pos: -3.5,-74.5 - parent: 2 - - uid: 6218 - components: - - type: Transform - pos: -5.5,-77.5 - parent: 2 - - uid: 6219 - components: - - type: Transform - pos: -4.5,-74.5 - parent: 2 - - uid: 6220 - components: - - type: Transform - pos: 4.5,-77.5 - parent: 2 - - uid: 6221 - components: - - type: Transform - pos: 3.5,-77.5 - parent: 2 - - uid: 6222 - components: - - type: Transform - pos: -4.5,-77.5 - parent: 2 - - uid: 6224 - components: - - type: Transform - pos: 7.5,-74.5 - parent: 2 - - uid: 6225 - components: - - type: Transform - pos: 47.5,16.5 - parent: 2 - - uid: 6226 - components: - - type: Transform - pos: 46.5,20.5 - parent: 2 - - uid: 6227 - components: - - type: Transform - pos: 46.5,19.5 - parent: 2 - - uid: 6230 - components: - - type: Transform - pos: -7.5,-9.5 - parent: 2 - - uid: 6231 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 2 - - uid: 6232 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 2 - - uid: 6233 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 2 - - uid: 6234 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 2 - - uid: 6237 - components: - - type: Transform - pos: -13.5,-76.5 - parent: 2 - - uid: 6238 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 2 - - uid: 6242 - components: - - type: Transform - pos: 49.5,-46.5 - parent: 2 - - uid: 6243 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 2 - - uid: 6244 - components: - - type: Transform - pos: -13.5,-16.5 - parent: 2 - - uid: 6245 - components: - - type: Transform - pos: 8.5,-60.5 - parent: 2 - - uid: 6246 - components: - - type: Transform - pos: -15.5,-78.5 - parent: 2 - - uid: 6247 - components: - - type: Transform - pos: 8.5,-61.5 - parent: 2 - - uid: 6248 - components: - - type: Transform - pos: 8.5,-62.5 - parent: 2 - - uid: 6249 - components: - - type: Transform - pos: 8.5,-63.5 - parent: 2 - - uid: 6250 - components: - - type: Transform - pos: 8.5,-65.5 - parent: 2 - - uid: 6252 - components: - - type: Transform - pos: -0.5,-41.5 - parent: 2 - - uid: 6253 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 2 - - uid: 6254 - components: - - type: Transform - pos: -0.5,-39.5 - parent: 2 - - uid: 6255 - components: - - type: Transform - pos: 0.5,-56.5 - parent: 2 - - uid: 6256 - components: - - type: Transform - pos: 1.5,-56.5 - parent: 2 - - uid: 6257 - components: - - type: Transform - pos: 2.5,-56.5 - parent: 2 - - uid: 6258 - components: - - type: Transform - pos: 3.5,-56.5 - parent: 2 - - uid: 6259 - components: - - type: Transform - pos: 4.5,-56.5 - parent: 2 - - uid: 6260 - components: - - type: Transform - pos: 5.5,-56.5 - parent: 2 - - uid: 6261 - components: - - type: Transform - pos: 6.5,-56.5 - parent: 2 - - uid: 6262 - components: - - type: Transform - pos: 7.5,-56.5 - parent: 2 - - uid: 6263 - components: - - type: Transform - pos: 8.5,-56.5 - parent: 2 - - uid: 6264 - components: - - type: Transform - pos: 8.5,-57.5 - parent: 2 - - uid: 6265 - components: - - type: Transform - pos: 8.5,-58.5 - parent: 2 - - uid: 6266 - components: - - type: Transform - pos: 8.5,-59.5 - parent: 2 - - uid: 6267 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 2 - - uid: 6268 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 2 - - uid: 6269 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 2 - - uid: 6270 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 2 - - uid: 6271 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 2 - - uid: 6272 - components: - - type: Transform - pos: -0.5,-47.5 - parent: 2 - - uid: 6273 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 2 - - uid: 6274 - components: - - type: Transform - pos: -0.5,-49.5 - parent: 2 - - uid: 6275 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 2 - - uid: 6276 - components: - - type: Transform - pos: -2.5,-59.5 - parent: 2 - - uid: 6277 - components: - - type: Transform - pos: -2.5,-57.5 - parent: 2 - - uid: 6278 - components: - - type: Transform - pos: -1.5,-57.5 - parent: 2 - - uid: 6279 - components: - - type: Transform - pos: -0.5,-57.5 - parent: 2 - - uid: 6280 - components: - - type: Transform - pos: -0.5,-56.5 - parent: 2 - - uid: 6281 - components: - - type: Transform - pos: -0.5,-55.5 - parent: 2 - - uid: 6282 - components: - - type: Transform - pos: -0.5,-54.5 - parent: 2 - - uid: 6283 - components: - - type: Transform - pos: -0.5,-53.5 - parent: 2 - - uid: 6284 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 2 - - uid: 6285 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 2 - - uid: 6286 - components: - - type: Transform - pos: -16.5,-17.5 - parent: 2 - - uid: 6287 - components: - - type: Transform - pos: -16.5,-18.5 - parent: 2 - - uid: 6288 - components: - - type: Transform - pos: -16.5,-19.5 - parent: 2 - - uid: 6289 - components: - - type: Transform - pos: -15.5,-19.5 - parent: 2 - - uid: 6290 - components: - - type: Transform - pos: -15.5,-59.5 - parent: 2 - - uid: 6291 - components: - - type: Transform - pos: -14.5,-59.5 - parent: 2 - - uid: 6292 - components: - - type: Transform - pos: -13.5,-59.5 - parent: 2 - - uid: 6293 - components: - - type: Transform - pos: -12.5,-59.5 - parent: 2 - - uid: 6294 - components: - - type: Transform - pos: -11.5,-59.5 - parent: 2 - - uid: 6295 - components: - - type: Transform - pos: -10.5,-59.5 - parent: 2 - - uid: 6296 - components: - - type: Transform - pos: -9.5,-59.5 - parent: 2 - - uid: 6297 - components: - - type: Transform - pos: -8.5,-59.5 - parent: 2 - - uid: 6298 - components: - - type: Transform - pos: -7.5,-59.5 - parent: 2 - - uid: 6299 - components: - - type: Transform - pos: -6.5,-59.5 - parent: 2 - - uid: 6300 - components: - - type: Transform - pos: -5.5,-59.5 - parent: 2 - - uid: 6301 - components: - - type: Transform - pos: -4.5,-59.5 - parent: 2 - - uid: 6302 - components: - - type: Transform - pos: -3.5,-59.5 - parent: 2 - - uid: 6303 - components: - - type: Transform - pos: -16.5,-16.5 - parent: 2 - - uid: 6304 - components: - - type: Transform - pos: -16.5,-15.5 - parent: 2 - - uid: 6305 - components: - - type: Transform - pos: -19.5,-12.5 - parent: 2 - - uid: 6306 - components: - - type: Transform - pos: -18.5,-12.5 - parent: 2 - - uid: 6307 - components: - - type: Transform - pos: -16.5,-14.5 - parent: 2 - - uid: 6308 - components: - - type: Transform - pos: -17.5,-12.5 - parent: 2 - - uid: 6309 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 2 - - uid: 6310 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 2 - - uid: 6311 - components: - - type: Transform - pos: 15.5,-38.5 - parent: 2 - - uid: 6312 - components: - - type: Transform - pos: -26.5,-12.5 - parent: 2 - - uid: 6313 - components: - - type: Transform - pos: -25.5,-12.5 - parent: 2 - - uid: 6314 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 2 - - uid: 6315 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 2 - - uid: 6316 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 2 - - uid: 6317 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 2 - - uid: 6318 - components: - - type: Transform - pos: -20.5,-12.5 - parent: 2 - - uid: 6319 - components: - - type: Transform - pos: -26.5,-11.5 - parent: 2 - - uid: 6320 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 2 - - uid: 6321 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 2 - - uid: 6322 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 2 - - uid: 6323 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 2 - - uid: 6324 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 2 - - uid: 6325 - components: - - type: Transform - pos: -29.5,-8.5 - parent: 2 - - uid: 6328 - components: - - type: Transform - pos: 14.5,-38.5 - parent: 2 - - uid: 6329 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 2 - - uid: 6330 - components: - - type: Transform - pos: -14.5,-19.5 - parent: 2 - - uid: 6331 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 2 - - uid: 6332 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 2 - - uid: 6333 - components: - - type: Transform - pos: -11.5,-19.5 - parent: 2 - - uid: 6334 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 2 - - uid: 6335 - components: - - type: Transform - pos: 29.5,-38.5 - parent: 2 - - uid: 6336 - components: - - type: Transform - pos: 27.5,-38.5 - parent: 2 - - uid: 6337 - components: - - type: Transform - pos: 25.5,-38.5 - parent: 2 - - uid: 6338 - components: - - type: Transform - pos: 23.5,-38.5 - parent: 2 - - uid: 6339 - components: - - type: Transform - pos: -18.5,-49.5 - parent: 2 - - uid: 6347 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 2 - - uid: 6348 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 2 - - uid: 6349 - components: - - type: Transform - pos: 13.5,-38.5 - parent: 2 - - uid: 6350 - components: - - type: Transform - pos: 21.5,-38.5 - parent: 2 - - uid: 6351 - components: - - type: Transform - pos: 22.5,-38.5 - parent: 2 - - uid: 6352 - components: - - type: Transform - pos: 24.5,-38.5 - parent: 2 - - uid: 6353 - components: - - type: Transform - pos: 26.5,-38.5 - parent: 2 - - uid: 6354 - components: - - type: Transform - pos: 28.5,-38.5 - parent: 2 - - uid: 6355 - components: - - type: Transform - pos: 32.5,-38.5 - parent: 2 - - uid: 6356 - components: - - type: Transform - pos: 32.5,-39.5 - parent: 2 - - uid: 6357 - components: - - type: Transform - pos: 32.5,-40.5 - parent: 2 - - uid: 6358 - components: - - type: Transform - pos: 32.5,-41.5 - parent: 2 - - uid: 6359 - components: - - type: Transform - pos: 32.5,-42.5 - parent: 2 - - uid: 6360 - components: - - type: Transform - pos: 32.5,-43.5 - parent: 2 - - uid: 6361 - components: - - type: Transform - pos: 32.5,-44.5 - parent: 2 - - uid: 6362 - components: - - type: Transform - pos: 20.5,-38.5 - parent: 2 - - uid: 6363 - components: - - type: Transform - pos: 32.5,-45.5 - parent: 2 - - uid: 6364 - components: - - type: Transform - pos: 32.5,-46.5 - parent: 2 - - uid: 6365 - components: - - type: Transform - pos: 32.5,-47.5 - parent: 2 - - uid: 6366 - components: - - type: Transform - pos: 32.5,-48.5 - parent: 2 - - uid: 6367 - components: - - type: Transform - pos: 32.5,-49.5 - parent: 2 - - uid: 6368 - components: - - type: Transform - pos: 32.5,-50.5 - parent: 2 - - uid: 6369 - components: - - type: Transform - pos: 32.5,-51.5 - parent: 2 - - uid: 6370 - components: - - type: Transform - pos: 32.5,-53.5 - parent: 2 - - uid: 6371 - components: - - type: Transform - pos: 32.5,-54.5 - parent: 2 - - uid: 6372 - components: - - type: Transform - pos: 32.5,-55.5 - parent: 2 - - uid: 6373 - components: - - type: Transform - pos: 32.5,-56.5 - parent: 2 - - uid: 6378 - components: - - type: Transform - pos: -0.5,-59.5 - parent: 2 - - uid: 6380 - components: - - type: Transform - pos: -1.5,-59.5 - parent: 2 - - uid: 6382 - components: - - type: Transform - pos: 19.5,17.5 - parent: 2 - - uid: 6383 - components: - - type: Transform - pos: 20.5,17.5 - parent: 2 - - uid: 6389 - components: - - type: Transform - pos: 21.5,22.5 - parent: 2 - - uid: 6392 - components: - - type: Transform - pos: 32.5,3.5 - parent: 2 - - uid: 6393 - components: - - type: Transform - pos: -18.5,-48.5 - parent: 2 - - uid: 6394 - components: - - type: Transform - pos: -18.5,-50.5 - parent: 2 - - uid: 6396 - components: - - type: Transform - pos: 30.5,5.5 - parent: 2 - - uid: 6397 - components: - - type: Transform - pos: 21.5,6.5 - parent: 2 - - uid: 6398 - components: - - type: Transform - pos: 32.5,-52.5 - parent: 2 - - uid: 6399 - components: - - type: Transform - pos: 30.5,-38.5 - parent: 2 - - uid: 6400 - components: - - type: Transform - pos: -18.5,-52.5 - parent: 2 - - uid: 6401 - components: - - type: Transform - pos: -18.5,-51.5 - parent: 2 - - uid: 6402 - components: - - type: Transform - pos: 32.5,-57.5 - parent: 2 - - uid: 6403 - components: - - type: Transform - pos: 33.5,-57.5 - parent: 2 - - uid: 6404 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 2 - - uid: 6405 - components: - - type: Transform - pos: 34.5,-57.5 - parent: 2 - - uid: 6406 - components: - - type: Transform - pos: 35.5,-57.5 - parent: 2 - - uid: 6407 - components: - - type: Transform - pos: 36.5,-57.5 - parent: 2 - - uid: 6408 - components: - - type: Transform - pos: 36.5,-58.5 - parent: 2 - - uid: 6409 - components: - - type: Transform - pos: 36.5,-59.5 - parent: 2 - - uid: 6410 - components: - - type: Transform - pos: 36.5,-60.5 - parent: 2 - - uid: 6411 - components: - - type: Transform - pos: 36.5,-61.5 - parent: 2 - - uid: 6412 - components: - - type: Transform - pos: 36.5,-62.5 - parent: 2 - - uid: 6413 - components: - - type: Transform - pos: 37.5,-62.5 - parent: 2 - - uid: 6414 - components: - - type: Transform - pos: 38.5,-62.5 - parent: 2 - - uid: 6415 - components: - - type: Transform - pos: 39.5,-62.5 - parent: 2 - - uid: 6416 - components: - - type: Transform - pos: 40.5,-64.5 - parent: 2 - - uid: 6417 - components: - - type: Transform - pos: 40.5,-63.5 - parent: 2 - - uid: 6418 - components: - - type: Transform - pos: 40.5,-62.5 - parent: 2 - - uid: 6419 - components: - - type: Transform - pos: 40.5,-65.5 - parent: 2 - - uid: 6420 - components: - - type: Transform - pos: 41.5,-65.5 - parent: 2 - - uid: 6421 - components: - - type: Transform - pos: 42.5,-65.5 - parent: 2 - - uid: 6422 - components: - - type: Transform - pos: 43.5,-65.5 - parent: 2 - - uid: 6423 - components: - - type: Transform - pos: 18.5,-38.5 - parent: 2 - - uid: 6424 - components: - - type: Transform - pos: 44.5,-65.5 - parent: 2 - - uid: 6425 - components: - - type: Transform - pos: 46.5,-65.5 - parent: 2 - - uid: 6426 - components: - - type: Transform - pos: 45.5,-65.5 - parent: 2 - - uid: 6427 - components: - - type: Transform - pos: 47.5,-65.5 - parent: 2 - - uid: 6428 - components: - - type: Transform - pos: 47.5,-64.5 - parent: 2 - - uid: 6429 - components: - - type: Transform - pos: 47.5,-63.5 - parent: 2 - - uid: 6430 - components: - - type: Transform - pos: 47.5,-62.5 - parent: 2 - - uid: 6431 - components: - - type: Transform - pos: 48.5,-62.5 - parent: 2 - - uid: 6432 - components: - - type: Transform - pos: 49.5,-62.5 - parent: 2 - - uid: 6433 - components: - - type: Transform - pos: 49.5,-61.5 - parent: 2 - - uid: 6434 - components: - - type: Transform - pos: 49.5,-60.5 - parent: 2 - - uid: 6435 - components: - - type: Transform - pos: 49.5,-59.5 - parent: 2 - - uid: 6436 - components: - - type: Transform - pos: 17.5,-38.5 - parent: 2 - - uid: 6437 - components: - - type: Transform - pos: 49.5,-58.5 - parent: 2 - - uid: 6438 - components: - - type: Transform - pos: 49.5,-57.5 - parent: 2 - - uid: 6439 - components: - - type: Transform - pos: 49.5,-56.5 - parent: 2 - - uid: 6440 - components: - - type: Transform - pos: 49.5,-52.5 - parent: 2 - - uid: 6441 - components: - - type: Transform - pos: 49.5,-53.5 - parent: 2 - - uid: 6442 - components: - - type: Transform - pos: 49.5,-54.5 - parent: 2 - - uid: 6443 - components: - - type: Transform - pos: 49.5,-55.5 - parent: 2 - - uid: 6444 - components: - - type: Transform - pos: 49.5,-47.5 - parent: 2 - - uid: 6445 - components: - - type: Transform - pos: 49.5,-48.5 - parent: 2 - - uid: 6446 - components: - - type: Transform - pos: 49.5,-49.5 - parent: 2 - - uid: 6447 - components: - - type: Transform - pos: 49.5,-50.5 - parent: 2 - - uid: 6448 - components: - - type: Transform - pos: 49.5,-51.5 - parent: 2 - - uid: 6449 - components: - - type: Transform - pos: 16.5,-38.5 - parent: 2 - - uid: 6450 - components: - - type: Transform - pos: 49.5,-45.5 - parent: 2 - - uid: 6451 - components: - - type: Transform - pos: 49.5,-44.5 - parent: 2 - - uid: 6452 - components: - - type: Transform - pos: 49.5,-43.5 - parent: 2 - - uid: 6453 - components: - - type: Transform - pos: 49.5,-42.5 - parent: 2 - - uid: 6454 - components: - - type: Transform - pos: 49.5,-41.5 - parent: 2 - - uid: 6455 - components: - - type: Transform - pos: 49.5,-40.5 - parent: 2 - - uid: 6456 - components: - - type: Transform - pos: 49.5,-39.5 - parent: 2 - - uid: 6457 - components: - - type: Transform - pos: 49.5,-38.5 - parent: 2 - - uid: 6458 - components: - - type: Transform - pos: 49.5,-37.5 - parent: 2 - - uid: 6459 - components: - - type: Transform - pos: 49.5,-36.5 - parent: 2 - - uid: 6460 - components: - - type: Transform - pos: 49.5,-35.5 - parent: 2 - - uid: 6461 - components: - - type: Transform - pos: 49.5,-34.5 - parent: 2 - - uid: 6462 - components: - - type: Transform - pos: 49.5,-33.5 - parent: 2 - - uid: 6463 - components: - - type: Transform - pos: 49.5,-32.5 - parent: 2 - - uid: 6464 - components: - - type: Transform - pos: 49.5,-31.5 - parent: 2 - - uid: 6465 - components: - - type: Transform - pos: 49.5,-30.5 - parent: 2 - - uid: 6466 - components: - - type: Transform - pos: 49.5,-29.5 - parent: 2 - - uid: 6467 - components: - - type: Transform - pos: 49.5,-28.5 - parent: 2 - - uid: 6468 - components: - - type: Transform - pos: 49.5,-27.5 - parent: 2 - - uid: 6469 - components: - - type: Transform - pos: 49.5,-26.5 - parent: 2 - - uid: 6470 - components: - - type: Transform - pos: 49.5,-25.5 - parent: 2 - - uid: 6471 - components: - - type: Transform - pos: 49.5,-24.5 - parent: 2 - - uid: 6472 - components: - - type: Transform - pos: 49.5,-23.5 - parent: 2 - - uid: 6473 - components: - - type: Transform - pos: 49.5,-22.5 - parent: 2 - - uid: 6474 - components: - - type: Transform - pos: 49.5,-21.5 - parent: 2 - - uid: 6475 - components: - - type: Transform - pos: 49.5,-20.5 - parent: 2 - - uid: 6476 - components: - - type: Transform - pos: 49.5,-19.5 - parent: 2 - - uid: 6477 - components: - - type: Transform - pos: 49.5,-18.5 - parent: 2 - - uid: 6478 - components: - - type: Transform - pos: 49.5,-17.5 - parent: 2 - - uid: 6479 - components: - - type: Transform - pos: 49.5,-16.5 - parent: 2 - - uid: 6480 - components: - - type: Transform - pos: 49.5,-15.5 - parent: 2 - - uid: 6481 - components: - - type: Transform - pos: 49.5,-14.5 - parent: 2 - - uid: 6482 - components: - - type: Transform - pos: 49.5,-13.5 - parent: 2 - - uid: 6483 - components: - - type: Transform - pos: 50.5,-13.5 - parent: 2 - - uid: 6484 - components: - - type: Transform - pos: 51.5,-13.5 - parent: 2 - - uid: 6485 - components: - - type: Transform - pos: 51.5,-12.5 - parent: 2 - - uid: 6486 - components: - - type: Transform - pos: 51.5,-11.5 - parent: 2 - - uid: 6487 - components: - - type: Transform - pos: 51.5,-10.5 - parent: 2 - - uid: 6488 - components: - - type: Transform - pos: 51.5,-9.5 - parent: 2 - - uid: 6489 - components: - - type: Transform - pos: 51.5,-8.5 - parent: 2 - - uid: 6490 - components: - - type: Transform - pos: 51.5,-7.5 - parent: 2 - - uid: 6491 - components: - - type: Transform - pos: 51.5,-6.5 - parent: 2 - - uid: 6492 - components: - - type: Transform - pos: 51.5,-5.5 - parent: 2 - - uid: 6493 - components: - - type: Transform - pos: 51.5,-4.5 - parent: 2 - - uid: 6494 - components: - - type: Transform - pos: 51.5,-3.5 - parent: 2 - - uid: 6495 - components: - - type: Transform - pos: 51.5,-2.5 - parent: 2 - - uid: 6496 - components: - - type: Transform - pos: 51.5,-1.5 - parent: 2 - - uid: 6497 - components: - - type: Transform - pos: 51.5,-0.5 - parent: 2 - - uid: 6498 - components: - - type: Transform - pos: 51.5,0.5 - parent: 2 - - uid: 6499 - components: - - type: Transform - pos: 51.5,1.5 - parent: 2 - - uid: 6500 - components: - - type: Transform - pos: 51.5,2.5 - parent: 2 - - uid: 6501 - components: - - type: Transform - pos: 51.5,3.5 - parent: 2 - - uid: 6502 - components: - - type: Transform - pos: 51.5,4.5 - parent: 2 - - uid: 6503 - components: - - type: Transform - pos: 52.5,4.5 - parent: 2 - - uid: 6504 - components: - - type: Transform - pos: 53.5,4.5 - parent: 2 - - uid: 6505 - components: - - type: Transform - pos: 54.5,4.5 - parent: 2 - - uid: 6506 - components: - - type: Transform - pos: 54.5,5.5 - parent: 2 - - uid: 6507 - components: - - type: Transform - pos: 54.5,6.5 - parent: 2 - - uid: 6508 - components: - - type: Transform - pos: 54.5,7.5 - parent: 2 - - uid: 6509 - components: - - type: Transform - pos: 54.5,8.5 - parent: 2 - - uid: 6510 - components: - - type: Transform - pos: 54.5,9.5 - parent: 2 - - uid: 6511 - components: - - type: Transform - pos: 54.5,10.5 - parent: 2 - - uid: 6512 - components: - - type: Transform - pos: 53.5,10.5 - parent: 2 - - uid: 6513 - components: - - type: Transform - pos: 52.5,10.5 - parent: 2 - - uid: 6514 - components: - - type: Transform - pos: 51.5,10.5 - parent: 2 - - uid: 6515 - components: - - type: Transform - pos: 50.5,10.5 - parent: 2 - - uid: 6516 - components: - - type: Transform - pos: 49.5,10.5 - parent: 2 - - uid: 6517 - components: - - type: Transform - pos: 48.5,10.5 - parent: 2 - - uid: 6518 - components: - - type: Transform - pos: 47.5,10.5 - parent: 2 - - uid: 6519 - components: - - type: Transform - pos: 46.5,10.5 - parent: 2 - - uid: 6520 - components: - - type: Transform - pos: 45.5,10.5 - parent: 2 - - uid: 6521 - components: - - type: Transform - pos: 45.5,9.5 - parent: 2 - - uid: 6522 - components: - - type: Transform - pos: 45.5,8.5 - parent: 2 - - uid: 6523 - components: - - type: Transform - pos: 45.5,7.5 - parent: 2 - - uid: 6524 - components: - - type: Transform - pos: 45.5,6.5 - parent: 2 - - uid: 6525 - components: - - type: Transform - pos: 45.5,5.5 - parent: 2 - - uid: 6526 - components: - - type: Transform - pos: 45.5,4.5 - parent: 2 - - uid: 6527 - components: - - type: Transform - pos: 45.5,3.5 - parent: 2 - - uid: 6528 - components: - - type: Transform - pos: 44.5,3.5 - parent: 2 - - uid: 6529 - components: - - type: Transform - pos: 43.5,3.5 - parent: 2 - - uid: 6530 - components: - - type: Transform - pos: 42.5,3.5 - parent: 2 - - uid: 6531 - components: - - type: Transform - pos: 42.5,4.5 - parent: 2 - - uid: 6532 - components: - - type: Transform - pos: 42.5,5.5 - parent: 2 - - uid: 6533 - components: - - type: Transform - pos: 42.5,6.5 - parent: 2 - - uid: 6534 - components: - - type: Transform - pos: 42.5,7.5 - parent: 2 - - uid: 6535 - components: - - type: Transform - pos: 43.5,7.5 - parent: 2 - - uid: 6537 - components: - - type: Transform - pos: 19.5,13.5 - parent: 2 - - uid: 6538 - components: - - type: Transform - pos: 20.5,6.5 - parent: 2 - - uid: 6541 - components: - - type: Transform - pos: 23.5,6.5 - parent: 2 - - uid: 6542 - components: - - type: Transform - pos: 22.5,6.5 - parent: 2 - - uid: 6543 - components: - - type: Transform - pos: 30.5,4.5 - parent: 2 - - uid: 6546 - components: - - type: Transform - pos: -18.5,-55.5 - parent: 2 - - uid: 6547 - components: - - type: Transform - pos: -18.5,-57.5 - parent: 2 - - uid: 6549 - components: - - type: Transform - pos: 8.5,-75.5 - parent: 2 - - uid: 6551 - components: - - type: Transform - pos: -18.5,-58.5 - parent: 2 - - uid: 6552 - components: - - type: Transform - pos: -18.5,-59.5 - parent: 2 - - uid: 6553 - components: - - type: Transform - pos: -18.5,-56.5 - parent: 2 - - uid: 6554 - components: - - type: Transform - pos: -18.5,-60.5 - parent: 2 - - uid: 6556 - components: - - type: Transform - pos: 18.5,32.5 - parent: 2 - - uid: 6557 - components: - - type: Transform - pos: 17.5,32.5 - parent: 2 - - uid: 6558 - components: - - type: Transform - pos: 5.5,-74.5 - parent: 2 - - uid: 6566 - components: - - type: Transform - pos: 16.5,30.5 - parent: 2 - - uid: 6567 - components: - - type: Transform - pos: 0.5,26.5 - parent: 2 - - uid: 6568 - components: - - type: Transform - pos: -0.5,26.5 - parent: 2 - - uid: 6569 - components: - - type: Transform - pos: -1.5,26.5 - parent: 2 - - uid: 6570 - components: - - type: Transform - pos: 2.5,26.5 - parent: 2 - - uid: 6571 - components: - - type: Transform - pos: -12.5,26.5 - parent: 2 - - uid: 6572 - components: - - type: Transform - pos: 21.5,23.5 - parent: 2 - - uid: 6573 - components: - - type: Transform - pos: 21.5,24.5 - parent: 2 - - uid: 6574 - components: - - type: Transform - pos: 17.5,31.5 - parent: 2 - - uid: 6575 - components: - - type: Transform - pos: 15.5,30.5 - parent: 2 - - uid: 6576 - components: - - type: Transform - pos: 14.5,30.5 - parent: 2 - - uid: 6577 - components: - - type: Transform - pos: 13.5,30.5 - parent: 2 - - uid: 6578 - components: - - type: Transform - pos: 12.5,30.5 - parent: 2 - - uid: 6579 - components: - - type: Transform - pos: 11.5,30.5 - parent: 2 - - uid: 6580 - components: - - type: Transform - pos: 10.5,30.5 - parent: 2 - - uid: 6581 - components: - - type: Transform - pos: 9.5,30.5 - parent: 2 - - uid: 6582 - components: - - type: Transform - pos: 8.5,30.5 - parent: 2 - - uid: 6583 - components: - - type: Transform - pos: 7.5,30.5 - parent: 2 - - uid: 6584 - components: - - type: Transform - pos: 7.5,29.5 - parent: 2 - - uid: 6585 - components: - - type: Transform - pos: 7.5,28.5 - parent: 2 - - uid: 6586 - components: - - type: Transform - pos: 7.5,27.5 - parent: 2 - - uid: 6587 - components: - - type: Transform - pos: 6.5,26.5 - parent: 2 - - uid: 6588 - components: - - type: Transform - pos: 4.5,26.5 - parent: 2 - - uid: 6589 - components: - - type: Transform - pos: 3.5,26.5 - parent: 2 - - uid: 6590 - components: - - type: Transform - pos: -4.5,26.5 - parent: 2 - - uid: 6591 - components: - - type: Transform - pos: -9.5,26.5 - parent: 2 - - uid: 6592 - components: - - type: Transform - pos: -11.5,26.5 - parent: 2 - - uid: 6593 - components: - - type: Transform - pos: -8.5,26.5 - parent: 2 - - uid: 6594 - components: - - type: Transform - pos: -7.5,26.5 - parent: 2 - - uid: 6595 - components: - - type: Transform - pos: -5.5,26.5 - parent: 2 - - uid: 6596 - components: - - type: Transform - pos: -3.5,26.5 - parent: 2 - - uid: 6597 - components: - - type: Transform - pos: 31.5,-38.5 - parent: 2 - - uid: 6598 - components: - - type: Transform - pos: -13.5,26.5 - parent: 2 - - uid: 6600 - components: - - type: Transform - pos: 8.5,-77.5 - parent: 2 - - uid: 6602 - components: - - type: Transform - pos: -18.5,-54.5 - parent: 2 - - uid: 6603 - components: - - type: Transform - pos: 5.5,26.5 - parent: 2 - - uid: 6604 - components: - - type: Transform - pos: -18.5,-53.5 - parent: 2 - - uid: 6606 - components: - - type: Transform - pos: 7.5,26.5 - parent: 2 - - uid: 6607 - components: - - type: Transform - pos: 17.5,30.5 - parent: 2 - - uid: 6609 - components: - - type: Transform - pos: 81.5,-83.5 - parent: 2 - - uid: 6610 - components: - - type: Transform - pos: 81.5,-84.5 - parent: 2 - - uid: 6611 - components: - - type: Transform - pos: 81.5,-85.5 - parent: 2 - - uid: 6612 - components: - - type: Transform - pos: 81.5,-86.5 - parent: 2 - - uid: 6613 - components: - - type: Transform - pos: 83.5,-82.5 - parent: 2 - - uid: 6614 - components: - - type: Transform - pos: 82.5,-82.5 - parent: 2 - - uid: 6615 - components: - - type: Transform - pos: 80.5,-82.5 - parent: 2 - - uid: 6616 - components: - - type: Transform - pos: 79.5,-82.5 - parent: 2 - - uid: 6617 - components: - - type: Transform - pos: 79.5,-78.5 - parent: 2 - - uid: 6618 - components: - - type: Transform - pos: 80.5,-78.5 - parent: 2 - - uid: 6619 - components: - - type: Transform - pos: 82.5,-78.5 - parent: 2 - - uid: 6620 - components: - - type: Transform - pos: 83.5,-78.5 - parent: 2 - - uid: 6621 - components: - - type: Transform - pos: 83.5,-74.5 - parent: 2 - - uid: 6622 - components: - - type: Transform - pos: 82.5,-74.5 - parent: 2 - - uid: 6623 - components: - - type: Transform - pos: 80.5,-74.5 - parent: 2 - - uid: 6624 - components: - - type: Transform - pos: 79.5,-74.5 - parent: 2 - - uid: 6625 - components: - - type: Transform - pos: 83.5,-73.5 - parent: 2 - - uid: 6626 - components: - - type: Transform - pos: 84.5,-73.5 - parent: 2 - - uid: 6627 - components: - - type: Transform - pos: 85.5,-73.5 - parent: 2 - - uid: 6628 - components: - - type: Transform - pos: 86.5,-73.5 - parent: 2 - - uid: 6629 - components: - - type: Transform - pos: 87.5,-73.5 - parent: 2 - - uid: 6630 - components: - - type: Transform - pos: 87.5,-75.5 - parent: 2 - - uid: 6631 - components: - - type: Transform - pos: 86.5,-75.5 - parent: 2 - - uid: 6632 - components: - - type: Transform - pos: 85.5,-75.5 - parent: 2 - - uid: 6633 - components: - - type: Transform - pos: 84.5,-75.5 - parent: 2 - - uid: 6634 - components: - - type: Transform - pos: 83.5,-75.5 - parent: 2 - - uid: 6635 - components: - - type: Transform - pos: 83.5,-77.5 - parent: 2 - - uid: 6636 - components: - - type: Transform - pos: 84.5,-77.5 - parent: 2 - - uid: 6637 - components: - - type: Transform - pos: 85.5,-77.5 - parent: 2 - - uid: 6638 - components: - - type: Transform - pos: 86.5,-77.5 - parent: 2 - - uid: 6639 - components: - - type: Transform - pos: 87.5,-77.5 - parent: 2 - - uid: 6640 - components: - - type: Transform - pos: 87.5,-79.5 - parent: 2 - - uid: 6641 - components: - - type: Transform - pos: 86.5,-79.5 - parent: 2 - - uid: 6642 - components: - - type: Transform - pos: 85.5,-79.5 - parent: 2 - - uid: 6643 - components: - - type: Transform - pos: 84.5,-79.5 - parent: 2 - - uid: 6644 - components: - - type: Transform - pos: -46.5,12.5 - parent: 2 - - uid: 6645 - components: - - type: Transform - pos: -44.5,12.5 - parent: 2 - - uid: 6646 - components: - - type: Transform - pos: 83.5,-79.5 - parent: 2 - - uid: 6647 - components: - - type: Transform - pos: 83.5,-81.5 - parent: 2 - - uid: 6648 - components: - - type: Transform - pos: 84.5,-81.5 - parent: 2 - - uid: 6649 - components: - - type: Transform - pos: 85.5,-81.5 - parent: 2 - - uid: 6650 - components: - - type: Transform - pos: 86.5,-81.5 - parent: 2 - - uid: 6651 - components: - - type: Transform - pos: 87.5,-81.5 - parent: 2 - - uid: 6652 - components: - - type: Transform - pos: 87.5,-83.5 - parent: 2 - - uid: 6653 - components: - - type: Transform - pos: 86.5,-83.5 - parent: 2 - - uid: 6654 - components: - - type: Transform - pos: 85.5,-83.5 - parent: 2 - - uid: 6655 - components: - - type: Transform - pos: 84.5,-83.5 - parent: 2 - - uid: 6656 - components: - - type: Transform - pos: 83.5,-83.5 - parent: 2 - - uid: 6657 - components: - - type: Transform - pos: 75.5,-83.5 - parent: 2 - - uid: 6658 - components: - - type: Transform - pos: 23.5,24.5 - parent: 2 - - uid: 6659 - components: - - type: Transform - pos: 76.5,-83.5 - parent: 2 - - uid: 6660 - components: - - type: Transform - pos: 81.5,-72.5 - parent: 2 - - uid: 6661 - components: - - type: Transform - pos: 81.5,-71.5 - parent: 2 - - uid: 6662 - components: - - type: Transform - pos: 81.5,-70.5 - parent: 2 - - uid: 6663 - components: - - type: Transform - pos: 81.5,-69.5 - parent: 2 - - uid: 6664 - components: - - type: Transform - pos: 81.5,-61.5 - parent: 2 - - uid: 6665 - components: - - type: Transform - pos: 81.5,-62.5 - parent: 2 - - uid: 6666 - components: - - type: Transform - pos: 81.5,-63.5 - parent: 2 - - uid: 6668 - components: - - type: Transform - pos: -24.5,-66.5 - parent: 2 - - uid: 6669 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 2 - - uid: 6670 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 2 - - uid: 6671 - components: - - type: Transform - pos: 4.5,-38.5 - parent: 2 - - uid: 6672 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 2 - - uid: 6673 - components: - - type: Transform - pos: 6.5,-38.5 - parent: 2 - - uid: 6674 - components: - - type: Transform - pos: 7.5,-38.5 - parent: 2 - - uid: 6675 - components: - - type: Transform - pos: 8.5,-38.5 - parent: 2 - - uid: 6676 - components: - - type: Transform - pos: 9.5,-38.5 - parent: 2 - - uid: 6677 - components: - - type: Transform - pos: 10.5,-38.5 - parent: 2 - - uid: 6678 - components: - - type: Transform - pos: 11.5,-38.5 - parent: 2 - - uid: 6679 - components: - - type: Transform - pos: 12.5,-38.5 - parent: 2 - - uid: 6680 - components: - - type: Transform - pos: -16.5,10.5 - parent: 2 - - uid: 6681 - components: - - type: Transform - pos: -16.5,11.5 - parent: 2 - - uid: 6682 - components: - - type: Transform - pos: -16.5,12.5 - parent: 2 - - uid: 6683 - components: - - type: Transform - pos: -16.5,13.5 - parent: 2 - - uid: 6684 - components: - - type: Transform - pos: -16.5,14.5 - parent: 2 - - uid: 6685 - components: - - type: Transform - pos: -16.5,15.5 - parent: 2 - - uid: 6686 - components: - - type: Transform - pos: -16.5,16.5 - parent: 2 - - uid: 6687 - components: - - type: Transform - pos: -16.5,17.5 - parent: 2 - - uid: 6688 - components: - - type: Transform - pos: -16.5,18.5 - parent: 2 - - uid: 6689 - components: - - type: Transform - pos: -16.5,19.5 - parent: 2 - - uid: 6690 - components: - - type: Transform - pos: -17.5,20.5 - parent: 2 - - uid: 6691 - components: - - type: Transform - pos: -17.5,19.5 - parent: 2 - - uid: 6692 - components: - - type: Transform - pos: -17.5,21.5 - parent: 2 - - uid: 6693 - components: - - type: Transform - pos: -17.5,22.5 - parent: 2 - - uid: 6694 - components: - - type: Transform - pos: -16.5,23.5 - parent: 2 - - uid: 6704 - components: - - type: Transform - pos: -17.5,-33.5 - parent: 2 - - uid: 6705 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 2 - - uid: 6706 - components: - - type: Transform - pos: -17.5,-35.5 - parent: 2 - - uid: 6707 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 2 - - uid: 6708 - components: - - type: Transform - pos: -17.5,-37.5 - parent: 2 - - uid: 6709 - components: - - type: Transform - pos: -17.5,-38.5 - parent: 2 - - uid: 6710 - components: - - type: Transform - pos: -17.5,-39.5 - parent: 2 - - uid: 6711 - components: - - type: Transform - pos: -17.5,-40.5 - parent: 2 - - uid: 6712 - components: - - type: Transform - pos: -17.5,-41.5 - parent: 2 - - uid: 6713 - components: - - type: Transform - pos: -17.5,-42.5 - parent: 2 - - uid: 6714 - components: - - type: Transform - pos: -17.5,-43.5 - parent: 2 - - uid: 6715 - components: - - type: Transform - pos: -17.5,-44.5 - parent: 2 - - uid: 6716 - components: - - type: Transform - pos: -17.5,-45.5 - parent: 2 - - uid: 6717 - components: - - type: Transform - pos: -17.5,-46.5 - parent: 2 - - uid: 6718 - components: - - type: Transform - pos: -17.5,-47.5 - parent: 2 - - uid: 6719 - components: - - type: Transform - pos: -18.5,-47.5 - parent: 2 - - uid: 6724 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 2 - - uid: 6725 - components: - - type: Transform - pos: 2.5,0.5 - parent: 2 - - uid: 6726 - components: - - type: Transform - pos: 2.5,1.5 - parent: 2 - - uid: 6727 - components: - - type: Transform - pos: 2.5,2.5 - parent: 2 - - uid: 6728 - components: - - type: Transform - pos: 2.5,5.5 - parent: 2 - - uid: 6729 - components: - - type: Transform - pos: 2.5,3.5 - parent: 2 - - uid: 6730 - components: - - type: Transform - pos: 2.5,7.5 - parent: 2 - - uid: 6731 - components: - - type: Transform - pos: 2.5,9.5 - parent: 2 - - uid: 6737 - components: - - type: Transform - pos: -39.5,-18.5 - parent: 2 - - uid: 6738 - components: - - type: Transform - pos: -39.5,-17.5 - parent: 2 - - uid: 6739 - components: - - type: Transform - pos: -39.5,-16.5 - parent: 2 - - uid: 6740 - components: - - type: Transform - pos: -38.5,-16.5 - parent: 2 - - uid: 6742 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 2 - - uid: 6743 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 2 - - uid: 6744 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 2 - - uid: 6745 - components: - - type: Transform - pos: -34.5,-15.5 - parent: 2 - - uid: 6746 - components: - - type: Transform - pos: -34.5,-14.5 - parent: 2 - - uid: 6747 - components: - - type: Transform - pos: -34.5,-13.5 - parent: 2 - - uid: 6748 - components: - - type: Transform - pos: -34.5,-12.5 - parent: 2 - - uid: 6749 - components: - - type: Transform - pos: -34.5,-11.5 - parent: 2 - - uid: 6750 - components: - - type: Transform - pos: -34.5,-10.5 - parent: 2 - - uid: 6751 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 2 - - uid: 6752 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 2 - - uid: 6753 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - - uid: 6754 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 2 - - uid: 6755 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 2 - - uid: 6756 - components: - - type: Transform - pos: -30.5,-8.5 - parent: 2 - - uid: 6757 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 2 - - uid: 6758 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 2 - - uid: 6759 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - uid: 6760 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 2 - - uid: 6761 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 2 - - uid: 6762 - components: - - type: Transform - pos: -30.5,-2.5 - parent: 2 - - uid: 6763 - components: - - type: Transform - pos: -30.5,-1.5 - parent: 2 - - uid: 6764 - components: - - type: Transform - pos: -29.5,-1.5 - parent: 2 - - uid: 6765 - components: - - type: Transform - pos: -28.5,-1.5 - parent: 2 - - uid: 6766 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 2 - - uid: 6767 - components: - - type: Transform - pos: -26.5,-1.5 - parent: 2 - - uid: 6768 - components: - - type: Transform - pos: -25.5,-1.5 - parent: 2 - - uid: 6782 - components: - - type: Transform - pos: -23.5,10.5 - parent: 2 - - uid: 6783 - components: - - type: Transform - pos: -22.5,10.5 - parent: 2 - - uid: 6784 - components: - - type: Transform - pos: -21.5,10.5 - parent: 2 - - uid: 6785 - components: - - type: Transform - pos: -20.5,10.5 - parent: 2 - - uid: 6786 - components: - - type: Transform - pos: -19.5,10.5 - parent: 2 - - uid: 6787 - components: - - type: Transform - pos: -18.5,10.5 - parent: 2 - - uid: 6788 - components: - - type: Transform - pos: -17.5,10.5 - parent: 2 - - uid: 6790 - components: - - type: Transform - pos: 19.5,14.5 - parent: 2 - - uid: 6791 - components: - - type: Transform - pos: 19.5,12.5 - parent: 2 - - uid: 6792 - components: - - type: Transform - pos: 19.5,11.5 - parent: 2 - - uid: 6793 - components: - - type: Transform - pos: 19.5,10.5 - parent: 2 - - uid: 6794 - components: - - type: Transform - pos: 19.5,9.5 - parent: 2 - - uid: 6795 - components: - - type: Transform - pos: 20.5,9.5 - parent: 2 - - uid: 6796 - components: - - type: Transform - pos: 24.5,6.5 - parent: 2 - - uid: 6797 - components: - - type: Transform - pos: 30.5,6.5 - parent: 2 - - uid: 6798 - components: - - type: Transform - pos: 30.5,3.5 - parent: 2 - - uid: 6799 - components: - - type: Transform - pos: 31.5,3.5 - parent: 2 - - uid: 6801 - components: - - type: Transform - pos: 33.5,3.5 - parent: 2 - - uid: 6802 - components: - - type: Transform - pos: 34.5,3.5 - parent: 2 - - uid: 6803 - components: - - type: Transform - pos: 35.5,3.5 - parent: 2 - - uid: 6804 - components: - - type: Transform - pos: 36.5,3.5 - parent: 2 - - uid: 6805 - components: - - type: Transform - pos: 37.5,3.5 - parent: 2 - - uid: 6806 - components: - - type: Transform - pos: 38.5,3.5 - parent: 2 - - uid: 6807 - components: - - type: Transform - pos: 39.5,3.5 - parent: 2 - - uid: 6808 - components: - - type: Transform - pos: 40.5,3.5 - parent: 2 - - uid: 6809 - components: - - type: Transform - pos: 41.5,3.5 - parent: 2 - - uid: 6812 - components: - - type: Transform - pos: 47.5,40.5 - parent: 2 - - uid: 6813 - components: - - type: Transform - pos: 47.5,41.5 - parent: 2 - - uid: 6814 - components: - - type: Transform - pos: 49.5,33.5 - parent: 2 - - uid: 6815 - components: - - type: Transform - pos: 48.5,29.5 - parent: 2 - - uid: 6816 - components: - - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 6817 - components: - - type: Transform - pos: 46.5,29.5 - parent: 2 - - uid: 6818 - components: - - type: Transform - pos: 47.5,39.5 - parent: 2 - - uid: 6819 - components: - - type: Transform - pos: 47.5,18.5 - parent: 2 - - uid: 6820 - components: - - type: Transform - pos: 20.5,8.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 56.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 42968 + - 42890 + - 42891 + - 6877 + - 42971 + - uid: 5483 + components: + - type: Transform + pos: 80.5,68.5 + parent: 2 + - type: DeviceList + devices: + - 22515 + - 36599 + - 22527 + - 4815 + - 6827 + - 4817 - uid: 6821 components: - type: Transform - pos: -6.5,-77.5 - parent: 2 - - uid: 6822 - components: - - type: Transform - pos: 6.5,-74.5 - parent: 2 - - uid: 6823 - components: - - type: Transform - pos: -12.5,-75.5 - parent: 2 - - uid: 6825 - components: - - type: Transform - pos: 5.5,-77.5 - parent: 2 - - uid: 6826 - components: - - type: Transform - pos: -2.5,-75.5 - parent: 2 - - uid: 6827 - components: - - type: Transform - pos: -2.5,-74.5 - parent: 2 - - uid: 6828 - components: - - type: Transform - pos: 41.5,38.5 - parent: 2 - - uid: 6829 - components: - - type: Transform - pos: 42.5,38.5 - parent: 2 - - uid: 6830 - components: - - type: Transform - pos: 43.5,38.5 - parent: 2 - - uid: 6831 - components: - - type: Transform - pos: 44.5,38.5 - parent: 2 - - uid: 6832 - components: - - type: Transform - pos: 45.5,38.5 - parent: 2 - - uid: 6833 - components: - - type: Transform - pos: 41.5,36.5 - parent: 2 - - uid: 6834 - components: - - type: Transform - pos: 42.5,36.5 - parent: 2 - - uid: 6835 - components: - - type: Transform - pos: 43.5,36.5 - parent: 2 - - uid: 6836 - components: - - type: Transform - pos: 44.5,36.5 - parent: 2 - - uid: 6837 - components: - - type: Transform - pos: 45.5,36.5 - parent: 2 - - uid: 6838 - components: - - type: Transform - pos: 41.5,34.5 - parent: 2 - - uid: 6839 - components: - - type: Transform - pos: 42.5,34.5 - parent: 2 - - uid: 6840 - components: - - type: Transform - pos: 43.5,34.5 - parent: 2 - - uid: 6841 - components: - - type: Transform - pos: 44.5,34.5 - parent: 2 - - uid: 6842 - components: - - type: Transform - pos: 45.5,34.5 - parent: 2 - - uid: 6843 - components: - - type: Transform - pos: 41.5,32.5 - parent: 2 - - uid: 6844 - components: - - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 6845 - components: - - type: Transform - pos: 43.5,32.5 - parent: 2 - - uid: 6846 - components: - - type: Transform - pos: 44.5,32.5 - parent: 2 - - uid: 6847 - components: - - type: Transform - pos: 45.5,32.5 - parent: 2 - - uid: 6848 - components: - - type: Transform - pos: 49.5,32.5 - parent: 2 - - uid: 6849 - components: - - type: Transform - pos: 50.5,32.5 - parent: 2 - - uid: 6850 - components: - - type: Transform - pos: 51.5,32.5 - parent: 2 - - uid: 6851 - components: - - type: Transform - pos: 52.5,32.5 - parent: 2 - - uid: 6852 - components: - - type: Transform - pos: 53.5,32.5 - parent: 2 - - uid: 6853 - components: - - type: Transform - pos: 49.5,34.5 - parent: 2 - - uid: 6854 - components: - - type: Transform - pos: 50.5,34.5 - parent: 2 - - uid: 6855 - components: - - type: Transform - pos: 51.5,34.5 - parent: 2 - - uid: 6856 - components: - - type: Transform - pos: 52.5,34.5 - parent: 2 - - uid: 6857 - components: - - type: Transform - pos: 53.5,34.5 - parent: 2 - - uid: 6858 - components: - - type: Transform - pos: 49.5,36.5 - parent: 2 - - uid: 6859 - components: - - type: Transform - pos: 50.5,36.5 - parent: 2 - - uid: 6860 - components: - - type: Transform - pos: 51.5,36.5 - parent: 2 - - uid: 6861 - components: - - type: Transform - pos: 52.5,36.5 - parent: 2 - - uid: 6862 - components: - - type: Transform - pos: 53.5,36.5 - parent: 2 - - uid: 6863 - components: - - type: Transform - pos: 49.5,38.5 - parent: 2 - - uid: 6864 - components: - - type: Transform - pos: 50.5,38.5 - parent: 2 - - uid: 6865 - components: - - type: Transform - pos: 51.5,38.5 - parent: 2 - - uid: 6866 - components: - - type: Transform - pos: 52.5,38.5 - parent: 2 - - uid: 6867 - components: - - type: Transform - pos: 53.5,38.5 - parent: 2 - - uid: 6868 - components: - - type: Transform - pos: 47.5,17.5 - parent: 2 - - uid: 6869 - components: - - type: Transform - pos: 45.5,30.5 - parent: 2 - - uid: 6870 - components: - - type: Transform - pos: 44.5,30.5 - parent: 2 - - uid: 6871 - components: - - type: Transform - pos: 43.5,30.5 - parent: 2 - - uid: 6872 - components: - - type: Transform - pos: 42.5,30.5 - parent: 2 - - uid: 6873 - components: - - type: Transform - pos: 41.5,30.5 - parent: 2 - - uid: 6874 - components: - - type: Transform - pos: 41.5,28.5 - parent: 2 - - uid: 6875 - components: - - type: Transform - pos: 42.5,28.5 - parent: 2 - - uid: 6876 - components: - - type: Transform - pos: 43.5,28.5 - parent: 2 - - uid: 6877 - components: - - type: Transform - pos: 44.5,28.5 - parent: 2 - - uid: 6878 - components: - - type: Transform - pos: 45.5,28.5 - parent: 2 - - uid: 6879 - components: - - type: Transform - pos: 49.5,28.5 - parent: 2 - - uid: 6880 - components: - - type: Transform - pos: 50.5,28.5 - parent: 2 - - uid: 6881 - components: - - type: Transform - pos: 51.5,28.5 - parent: 2 - - uid: 6882 - components: - - type: Transform - pos: 52.5,28.5 - parent: 2 - - uid: 6883 - components: - - type: Transform - pos: 53.5,28.5 - parent: 2 - - uid: 6884 - components: - - type: Transform - pos: 53.5,30.5 - parent: 2 - - uid: 6885 - components: - - type: Transform - pos: 52.5,30.5 - parent: 2 - - uid: 6886 - components: - - type: Transform - pos: 51.5,30.5 - parent: 2 - - uid: 6887 - components: - - type: Transform - pos: 50.5,30.5 - parent: 2 - - uid: 6888 - components: - - type: Transform - pos: 49.5,30.5 - parent: 2 - - uid: 6889 - components: - - type: Transform - pos: 49.5,29.5 - parent: 2 - - uid: 6890 - components: - - type: Transform - pos: 46.5,33.5 - parent: 2 - - uid: 6891 - components: - - type: Transform - pos: 48.5,13.5 - parent: 2 - - uid: 6892 - components: - - type: Transform - pos: 47.5,28.5 - parent: 2 - - uid: 6893 - components: - - type: Transform - pos: 47.5,27.5 - parent: 2 - - uid: 6894 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 6895 - components: - - type: Transform - pos: 47.5,25.5 - parent: 2 - - uid: 6896 - components: - - type: Transform - pos: 47.5,24.5 - parent: 2 - - uid: 6897 - components: - - type: Transform - pos: 47.5,23.5 - parent: 2 - - uid: 6898 - components: - - type: Transform - pos: 47.5,21.5 - parent: 2 - - uid: 6899 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - - uid: 6900 - components: - - type: Transform - pos: 47.5,15.5 - parent: 2 - - uid: 6901 - components: - - type: Transform - pos: 47.5,14.5 - parent: 2 - - uid: 6902 - components: - - type: Transform - pos: 47.5,13.5 - parent: 2 - - uid: 6903 - components: - - type: Transform - pos: 49.5,13.5 - parent: 2 - - uid: 6904 - components: - - type: Transform - pos: 50.5,13.5 - parent: 2 - - uid: 6905 - components: - - type: Transform - pos: 51.5,13.5 - parent: 2 - - uid: 6906 - components: - - type: Transform - pos: 52.5,13.5 - parent: 2 - - uid: 6907 - components: - - type: Transform - pos: 53.5,13.5 - parent: 2 - - uid: 6908 - components: - - type: Transform - pos: 54.5,13.5 - parent: 2 - - uid: 6909 - components: - - type: Transform - pos: 55.5,13.5 - parent: 2 - - uid: 6910 - components: - - type: Transform - pos: 56.5,13.5 - parent: 2 - - uid: 6911 - components: - - type: Transform - pos: 57.5,13.5 - parent: 2 - - uid: 6912 - components: - - type: Transform - pos: 58.5,13.5 - parent: 2 - - uid: 6913 - components: - - type: Transform - pos: 59.5,13.5 - parent: 2 - - uid: 6914 - components: - - type: Transform - pos: 59.5,12.5 - parent: 2 - - uid: 6915 - components: - - type: Transform - pos: 59.5,11.5 - parent: 2 - - uid: 6916 - components: - - type: Transform - pos: 59.5,10.5 - parent: 2 - - uid: 6917 - components: - - type: Transform - pos: 58.5,10.5 - parent: 2 - - uid: 6918 - components: - - type: Transform - pos: 57.5,10.5 - parent: 2 - - uid: 6919 - components: - - type: Transform - pos: 56.5,10.5 - parent: 2 - - uid: 6920 - components: - - type: Transform - pos: 55.5,10.5 - parent: 2 - - uid: 6921 - components: - - type: Transform - pos: 48.5,37.5 - parent: 2 - - uid: 6922 - components: - - type: Transform - pos: 46.5,37.5 - parent: 2 - - uid: 6923 - components: - - type: Transform - pos: 49.5,37.5 - parent: 2 - - uid: 6924 - components: - - type: Transform - pos: 45.5,33.5 - parent: 2 - - uid: 6925 - components: - - type: Transform - pos: 48.5,33.5 - parent: 2 - - uid: 6926 - components: - - type: Transform - pos: 45.5,37.5 - parent: 2 - - uid: 6927 - components: - - type: Transform - pos: 26.5,6.5 - parent: 2 - - uid: 6928 - components: - - type: Transform - pos: -51.5,29.5 - parent: 2 - - uid: 6929 - components: - - type: Transform - pos: -50.5,29.5 - parent: 2 - - uid: 6930 - components: - - type: Transform - pos: -51.5,28.5 - parent: 2 - - uid: 6931 - components: - - type: Transform - pos: -52.5,28.5 - parent: 2 - - uid: 6932 - components: - - type: Transform - pos: -51.5,30.5 - parent: 2 - - uid: 6933 - components: - - type: Transform - pos: -53.5,30.5 - parent: 2 - - uid: 6934 - components: - - type: Transform - pos: -52.5,30.5 - parent: 2 - - uid: 6935 - components: - - type: Transform - pos: -55.5,30.5 - parent: 2 - - uid: 6936 - components: - - type: Transform - pos: -54.5,30.5 - parent: 2 - - uid: 6937 - components: - - type: Transform - pos: -55.5,28.5 - parent: 2 - - uid: 6938 - components: - - type: Transform - pos: -54.5,28.5 - parent: 2 - - uid: 6939 - components: - - type: Transform - pos: -53.5,28.5 - parent: 2 - - uid: 6940 - components: - - type: Transform - pos: -43.5,32.5 - parent: 2 - - uid: 6941 - components: - - type: Transform - pos: -45.5,30.5 - parent: 2 - - uid: 6942 - components: - - type: Transform - pos: -44.5,30.5 - parent: 2 - - uid: 6943 - components: - - type: Transform - pos: -43.5,30.5 - parent: 2 - - uid: 6944 - components: - - type: Transform - pos: -43.5,28.5 - parent: 2 - - uid: 6945 - components: - - type: Transform - pos: -44.5,28.5 - parent: 2 - - uid: 6946 - components: - - type: Transform - pos: -45.5,28.5 - parent: 2 - - uid: 6947 - components: - - type: Transform - pos: -46.5,32.5 - parent: 2 - - uid: 6948 - components: - - type: Transform - pos: -46.5,30.5 - parent: 2 - - uid: 6949 - components: - - type: Transform - pos: -48.5,29.5 - parent: 2 - - uid: 6950 - components: - - type: Transform - pos: -47.5,29.5 - parent: 2 - - uid: 6951 - components: - - type: Transform - pos: -47.5,30.5 - parent: 2 - - uid: 6952 - components: - - type: Transform - pos: -47.5,32.5 - parent: 2 - - uid: 6953 - components: - - type: Transform - pos: -45.5,32.5 - parent: 2 - - uid: 6954 - components: - - type: Transform - pos: -44.5,32.5 - parent: 2 - - uid: 6955 - components: - - type: Transform - pos: -47.5,28.5 - parent: 2 - - uid: 6956 - components: - - type: Transform - pos: -46.5,28.5 - parent: 2 - - uid: 6957 - components: - - type: Transform - pos: -43.5,34.5 - parent: 2 - - uid: 6959 - components: - - type: Transform - pos: -44.5,10.5 - parent: 2 - - uid: 6960 - components: - - type: Transform - pos: -43.5,11.5 - parent: 2 - - uid: 6961 - components: - - type: Transform - pos: -45.5,12.5 - parent: 2 - - uid: 6962 - components: - - type: Transform - pos: -49.5,28.5 - parent: 2 - - uid: 6963 - components: - - type: Transform - pos: -49.5,27.5 - parent: 2 - - uid: 6964 - components: - - type: Transform - pos: -49.5,26.5 - parent: 2 - - uid: 6965 - components: - - type: Transform - pos: -49.5,25.5 - parent: 2 - - uid: 6966 - components: - - type: Transform - pos: -49.5,24.5 - parent: 2 - - uid: 6967 - components: - - type: Transform - pos: -51.5,37.5 - parent: 2 - - uid: 6968 - components: - - type: Transform - pos: -47.5,37.5 - parent: 2 - - uid: 6969 - components: - - type: Transform - pos: -47.5,33.5 - parent: 2 - - uid: 6970 - components: - - type: Transform - pos: -51.5,33.5 - parent: 2 - - uid: 6971 - components: - - type: Transform - pos: -49.5,21.5 - parent: 2 - - uid: 6972 - components: - - type: Transform - pos: -49.5,19.5 - parent: 2 - - uid: 6973 - components: - - type: Transform - pos: -49.5,18.5 - parent: 2 - - uid: 6974 - components: - - type: Transform - pos: -47.5,12.5 - parent: 2 - - uid: 6975 - components: - - type: Transform - pos: -47.5,11.5 - parent: 2 - - uid: 6976 - components: - - type: Transform - pos: -47.5,10.5 - parent: 2 - - uid: 6977 - components: - - type: Transform - pos: -47.5,9.5 - parent: 2 - - uid: 6978 - components: - - type: Transform - pos: -48.5,9.5 - parent: 2 - - uid: 6979 - components: - - type: Transform - pos: -49.5,9.5 - parent: 2 - - uid: 6980 - components: - - type: Transform - pos: -49.5,8.5 - parent: 2 - - uid: 6981 - components: - - type: Transform - pos: -49.5,7.5 - parent: 2 - - uid: 6982 - components: - - type: Transform - pos: -49.5,6.5 - parent: 2 - - uid: 6983 - components: - - type: Transform - pos: -49.5,5.5 - parent: 2 - - uid: 6984 - components: - - type: Transform - pos: -49.5,4.5 - parent: 2 - - uid: 6985 - components: - - type: Transform - pos: -49.5,3.5 - parent: 2 - - uid: 6986 - components: - - type: Transform - pos: -49.5,2.5 - parent: 2 - - uid: 6987 - components: - - type: Transform - pos: -49.5,1.5 - parent: 2 - - uid: 6988 - components: - - type: Transform - pos: -49.5,0.5 - parent: 2 - - uid: 6989 - components: - - type: Transform - pos: -49.5,-0.5 - parent: 2 - - uid: 6990 - components: - - type: Transform - pos: -49.5,-1.5 - parent: 2 - - uid: 6991 - components: - - type: Transform - pos: -50.5,-1.5 - parent: 2 - - uid: 6992 - components: - - type: Transform - pos: -50.5,-2.5 - parent: 2 - - uid: 6993 - components: - - type: Transform - pos: -50.5,-4.5 - parent: 2 - - uid: 6994 - components: - - type: Transform - pos: -50.5,-5.5 - parent: 2 - - uid: 6995 - components: - - type: Transform - pos: -50.5,-6.5 - parent: 2 - - uid: 6996 - components: - - type: Transform - pos: -50.5,-7.5 - parent: 2 - - uid: 6997 - components: - - type: Transform - pos: -50.5,-8.5 - parent: 2 - - uid: 6998 - components: - - type: Transform - pos: -50.5,-9.5 - parent: 2 - - uid: 6999 - components: - - type: Transform - pos: -50.5,-10.5 - parent: 2 - - uid: 7000 - components: - - type: Transform - pos: -50.5,-11.5 - parent: 2 - - uid: 7001 - components: - - type: Transform - pos: -50.5,-12.5 - parent: 2 - - uid: 7002 - components: - - type: Transform - pos: -50.5,-13.5 - parent: 2 - - uid: 7003 - components: - - type: Transform - pos: -50.5,-14.5 - parent: 2 - - uid: 7004 - components: - - type: Transform - pos: -50.5,-15.5 - parent: 2 - - uid: 7005 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 2 - - uid: 7006 - components: - - type: Transform - pos: -50.5,-17.5 - parent: 2 - - uid: 7007 - components: - - type: Transform - pos: -50.5,-18.5 - parent: 2 - - uid: 7008 - components: - - type: Transform - pos: -49.5,-18.5 - parent: 2 - - uid: 7009 - components: - - type: Transform - pos: -48.5,-18.5 - parent: 2 - - uid: 7010 - components: - - type: Transform - pos: -47.5,-18.5 - parent: 2 - - uid: 7011 - components: - - type: Transform - pos: -46.5,-18.5 - parent: 2 - - uid: 7012 - components: - - type: Transform - pos: -45.5,-18.5 - parent: 2 - - uid: 7013 - components: - - type: Transform - pos: -44.5,-18.5 - parent: 2 - - uid: 7014 - components: - - type: Transform - pos: -43.5,-18.5 - parent: 2 - - uid: 7015 - components: - - type: Transform - pos: -42.5,-18.5 - parent: 2 - - uid: 7016 - components: - - type: Transform - pos: -41.5,-18.5 - parent: 2 - - uid: 7017 - components: - - type: Transform - pos: -40.5,-18.5 - parent: 2 - - uid: 7018 - components: - - type: Transform - pos: -44.5,9.5 - parent: 2 - - uid: 7019 - components: - - type: Transform - pos: -43.5,10.5 - parent: 2 - - uid: 7020 - components: - - type: Transform - pos: -43.5,12.5 - parent: 2 - - uid: 7021 - components: - - type: Transform - pos: 19.5,32.5 - parent: 2 - - uid: 7022 - components: - - type: Transform - pos: -49.5,20.5 - parent: 2 - - uid: 7041 - components: - - type: Transform - pos: 2.5,12.5 - parent: 2 - - uid: 7042 - components: - - type: Transform - pos: 2.5,13.5 - parent: 2 - - uid: 7043 - components: - - type: Transform - pos: 2.5,14.5 - parent: 2 - - uid: 7044 - components: - - type: Transform - pos: 2.5,15.5 - parent: 2 - - uid: 7045 - components: - - type: Transform - pos: 2.5,16.5 - parent: 2 - - uid: 7046 - components: - - type: Transform - pos: 2.5,17.5 - parent: 2 - - uid: 7047 - components: - - type: Transform - pos: 3.5,17.5 - parent: 2 - - uid: 7048 - components: - - type: Transform - pos: 4.5,17.5 - parent: 2 - - uid: 7049 - components: - - type: Transform - pos: 5.5,17.5 - parent: 2 - - uid: 7050 - components: - - type: Transform - pos: 6.5,17.5 - parent: 2 - - uid: 7051 - components: - - type: Transform - pos: 7.5,17.5 - parent: 2 - - uid: 7052 - components: - - type: Transform - pos: 8.5,17.5 - parent: 2 - - uid: 7053 - components: - - type: Transform - pos: 9.5,17.5 - parent: 2 - - uid: 7054 - components: - - type: Transform - pos: 10.5,17.5 - parent: 2 - - uid: 7055 - components: - - type: Transform - pos: 11.5,17.5 - parent: 2 - - uid: 7056 - components: - - type: Transform - pos: 12.5,17.5 - parent: 2 - - uid: 7057 - components: - - type: Transform - pos: 13.5,17.5 - parent: 2 - - uid: 7058 - components: - - type: Transform - pos: 14.5,17.5 - parent: 2 - - uid: 7059 - components: - - type: Transform - pos: 15.5,17.5 - parent: 2 - - uid: 7060 - components: - - type: Transform - pos: 16.5,17.5 - parent: 2 - - uid: 7061 - components: - - type: Transform - pos: 17.5,17.5 - parent: 2 - - uid: 7062 - components: - - type: Transform - pos: 18.5,17.5 - parent: 2 - - uid: 7063 - components: - - type: Transform - pos: -50.5,-3.5 - parent: 2 - - uid: 7064 - components: - - type: Transform - pos: -0.5,-66.5 - parent: 2 - - uid: 7065 - components: - - type: Transform - pos: -0.5,-67.5 - parent: 2 - - uid: 7066 - components: - - type: Transform - pos: 8.5,-65.5 - parent: 2 - - uid: 7067 - components: - - type: Transform - pos: 8.5,-64.5 - parent: 2 - - uid: 7071 - components: - - type: Transform - pos: -4.5,-75.5 - parent: 2 - - uid: 7073 - components: - - type: Transform - pos: -4.5,-76.5 - parent: 2 - - uid: 7074 - components: - - type: Transform - pos: -6.5,-49.5 - parent: 2 - - uid: 7075 - components: - - type: Transform - pos: -7.5,-49.5 - parent: 2 - - uid: 7076 - components: - - type: Transform - pos: -6.5,-50.5 - parent: 2 - - uid: 7077 - components: - - type: Transform - pos: -54.5,-57.5 - parent: 2 - - uid: 7078 - components: - - type: Transform - pos: -54.5,-58.5 - parent: 2 - - uid: 7079 - components: - - type: Transform - pos: -52.5,-58.5 - parent: 2 - - uid: 7080 - components: - - type: Transform - pos: -52.5,-56.5 - parent: 2 - - uid: 7081 - components: - - type: Transform - pos: -52.5,-57.5 - parent: 2 - - uid: 7082 - components: - - type: Transform - pos: -54.5,-66.5 - parent: 2 - - uid: 7083 - components: - - type: Transform - pos: -54.5,-65.5 - parent: 2 - - uid: 7084 - components: - - type: Transform - pos: -52.5,-55.5 - parent: 2 - - uid: 7085 - components: - - type: Transform - pos: -49.5,-60.5 - parent: 2 - - uid: 7086 - components: - - type: Transform - pos: -49.5,-59.5 - parent: 2 - - uid: 7087 - components: - - type: Transform - pos: -50.5,-58.5 - parent: 2 - - uid: 7088 - components: - - type: Transform - pos: -50.5,-59.5 - parent: 2 - - uid: 7089 - components: - - type: Transform - pos: -52.5,-67.5 - parent: 2 - - uid: 7090 - components: - - type: Transform - pos: -52.5,-65.5 - parent: 2 - - uid: 7091 - components: - - type: Transform - pos: -54.5,-64.5 - parent: 2 - - uid: 7092 - components: - - type: Transform - pos: -54.5,-63.5 - parent: 2 - - uid: 7093 - components: - - type: Transform - pos: -53.5,-63.5 - parent: 2 - - uid: 7094 - components: - - type: Transform - pos: -52.5,-63.5 - parent: 2 - - uid: 7095 - components: - - type: Transform - pos: -52.5,-64.5 - parent: 2 - - uid: 7096 - components: - - type: Transform - pos: -36.5,-62.5 - parent: 2 - - uid: 7097 - components: - - type: Transform - pos: -38.5,-61.5 - parent: 2 - - uid: 7098 - components: - - type: Transform - pos: -37.5,-62.5 - parent: 2 - - uid: 7099 - components: - - type: Transform - pos: -54.5,-67.5 - parent: 2 - - uid: 7100 - components: - - type: Transform - pos: -53.5,-62.5 - parent: 2 - - uid: 7101 - components: - - type: Transform - pos: -53.5,-60.5 - parent: 2 - - uid: 7102 - components: - - type: Transform - pos: -53.5,-59.5 - parent: 2 - - uid: 7103 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 2 - - uid: 7104 - components: - - type: Transform - pos: -52.5,-59.5 - parent: 2 - - uid: 7105 - components: - - type: Transform - pos: -54.5,-55.5 - parent: 2 - - uid: 7106 - components: - - type: Transform - pos: -54.5,-56.5 - parent: 2 - - uid: 7107 - components: - - type: Transform - pos: -52.5,-66.5 - parent: 2 - - uid: 7108 - components: - - type: Transform - pos: -50.5,-57.5 - parent: 2 - - uid: 7109 - components: - - type: Transform - pos: -50.5,-56.5 - parent: 2 - - uid: 7110 - components: - - type: Transform - pos: -48.5,-55.5 - parent: 2 - - uid: 7111 - components: - - type: Transform - pos: -50.5,-55.5 - parent: 2 - - uid: 7112 - components: - - type: Transform - pos: -36.5,-61.5 - parent: 2 - - uid: 7113 - components: - - type: Transform - pos: -24.5,-69.5 - parent: 2 - - uid: 7114 - components: - - type: Transform - pos: -31.5,-61.5 - parent: 2 - - uid: 7115 - components: - - type: Transform - pos: -33.5,-61.5 - parent: 2 - - uid: 7116 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - - uid: 7117 - components: - - type: Transform - pos: 46.5,18.5 - parent: 2 - - uid: 7118 - components: - - type: Transform - pos: -41.5,-61.5 - parent: 2 - - uid: 7119 - components: - - type: Transform - pos: -40.5,-61.5 - parent: 2 - - uid: 7120 - components: - - type: Transform - pos: -39.5,-61.5 - parent: 2 - - uid: 7121 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 2 - - uid: 7122 - components: - - type: Transform - pos: -47.5,13.5 - parent: 2 - - uid: 7123 - components: - - type: Transform - pos: -48.5,13.5 - parent: 2 - - uid: 7124 - components: - - type: Transform - pos: -48.5,14.5 - parent: 2 - - uid: 7125 - components: - - type: Transform - pos: -48.5,15.5 - parent: 2 - - uid: 7126 - components: - - type: Transform - pos: -48.5,16.5 - parent: 2 - - uid: 7127 - components: - - type: Transform - pos: -20.5,-66.5 - parent: 2 - - uid: 7128 - components: - - type: Transform - pos: -48.5,17.5 - parent: 2 - - uid: 7129 - components: - - type: Transform - pos: -20.5,-67.5 - parent: 2 - - uid: 7130 - components: - - type: Transform - pos: -49.5,17.5 - parent: 2 - - uid: 7131 - components: - - type: Transform - pos: 0.5,-41.5 - parent: 2 - - uid: 7132 - components: - - type: Transform - pos: 1.5,-41.5 - parent: 2 - - uid: 7133 - components: - - type: Transform - pos: 2.5,-41.5 - parent: 2 - - uid: 7134 - components: - - type: Transform - pos: 3.5,-41.5 - parent: 2 - - uid: 7135 - components: - - type: Transform - pos: -0.5,-74.5 - parent: 2 - - uid: 7136 - components: - - type: Transform - pos: -0.5,-75.5 - parent: 2 - - uid: 7137 - components: - - type: Transform - pos: -6.5,-53.5 - parent: 2 - - uid: 7139 - components: - - type: Transform - pos: -31.5,-60.5 - parent: 2 - - uid: 7140 - components: - - type: Transform - pos: -32.5,-61.5 - parent: 2 - - uid: 7142 - components: - - type: Transform - pos: -34.5,-61.5 - parent: 2 - - uid: 7144 - components: - - type: Transform - pos: -35.5,-61.5 - parent: 2 - - uid: 7148 - components: - - type: Transform - pos: 6.5,-54.5 - parent: 2 - - uid: 7149 - components: - - type: Transform - pos: 6.5,-51.5 - parent: 2 - - uid: 7152 - components: - - type: Transform - pos: -4.5,-68.5 - parent: 2 - - uid: 7157 - components: - - type: Transform - pos: -20.5,-68.5 - parent: 2 - - uid: 7159 - components: - - type: Transform - pos: -15.5,-70.5 - parent: 2 - - uid: 7161 - components: - - type: Transform - pos: -4.5,-67.5 - parent: 2 - - uid: 7162 - components: - - type: Transform - pos: -50.5,21.5 - parent: 2 - - uid: 7163 - components: - - type: Transform - pos: -50.5,22.5 - parent: 2 - - uid: 7164 - components: - - type: Transform - pos: -50.5,23.5 - parent: 2 - - uid: 7165 - components: - - type: Transform - pos: -49.5,23.5 - parent: 2 - - uid: 7166 - components: - - type: Transform - pos: -49.5,39.5 - parent: 2 - - uid: 7167 - components: - - type: Transform - pos: -49.5,40.5 - parent: 2 - - uid: 7168 - components: - - type: Transform - pos: -49.5,41.5 - parent: 2 - - uid: 7169 - components: - - type: Transform - pos: -47.5,36.5 - parent: 2 - - uid: 7170 - components: - - type: Transform - pos: -46.5,36.5 - parent: 2 - - uid: 7171 - components: - - type: Transform - pos: -45.5,36.5 - parent: 2 - - uid: 7172 - components: - - type: Transform - pos: -44.5,36.5 - parent: 2 - - uid: 7173 - components: - - type: Transform - pos: -43.5,36.5 - parent: 2 - - uid: 7174 - components: - - type: Transform - pos: -43.5,38.5 - parent: 2 - - uid: 7175 - components: - - type: Transform - pos: -44.5,38.5 - parent: 2 - - uid: 7176 - components: - - type: Transform - pos: -45.5,38.5 - parent: 2 - - uid: 7177 - components: - - type: Transform - pos: -46.5,38.5 - parent: 2 - - uid: 7178 - components: - - type: Transform - pos: -47.5,38.5 - parent: 2 - - uid: 7179 - components: - - type: Transform - pos: -48.5,37.5 - parent: 2 - - uid: 7180 - components: - - type: Transform - pos: -50.5,37.5 - parent: 2 - - uid: 7181 - components: - - type: Transform - pos: -51.5,38.5 - parent: 2 - - uid: 7182 - components: - - type: Transform - pos: -52.5,38.5 - parent: 2 - - uid: 7183 - components: - - type: Transform - pos: -53.5,38.5 - parent: 2 - - uid: 7184 - components: - - type: Transform - pos: -54.5,38.5 - parent: 2 - - uid: 7187 - components: - - type: Transform - pos: -55.5,38.5 - parent: 2 - - uid: 7188 - components: - - type: Transform - pos: -55.5,36.5 - parent: 2 - - uid: 7191 - components: - - type: Transform - pos: -0.5,-70.5 - parent: 2 - - uid: 7192 - components: - - type: Transform - pos: -0.5,-71.5 - parent: 2 - - uid: 7194 - components: - - type: Transform - pos: 3.5,-75.5 - parent: 2 - - uid: 7195 - components: - - type: Transform - pos: -54.5,36.5 - parent: 2 - - uid: 7196 - components: - - type: Transform - pos: -53.5,36.5 - parent: 2 - - uid: 7197 - components: - - type: Transform - pos: -4.5,-70.5 - parent: 2 - - uid: 7199 - components: - - type: Transform - pos: 6.5,-53.5 - parent: 2 - - uid: 7200 - components: - - type: Transform - pos: 6.5,-52.5 - parent: 2 - - uid: 7202 - components: - - type: Transform - pos: -21.5,-69.5 - parent: 2 - - uid: 7204 - components: - - type: Transform - pos: -52.5,36.5 - parent: 2 - - uid: 7205 - components: - - type: Transform - pos: -51.5,36.5 - parent: 2 - - uid: 7206 - components: - - type: Transform - pos: -51.5,34.5 - parent: 2 - - uid: 7207 - components: - - type: Transform - pos: -52.5,34.5 - parent: 2 - - uid: 7208 - components: - - type: Transform - pos: -53.5,34.5 - parent: 2 - - uid: 7210 - components: - - type: Transform - pos: -0.5,-72.5 - parent: 2 - - uid: 7211 - components: - - type: Transform - pos: -0.5,-69.5 - parent: 2 - - uid: 7212 - components: - - type: Transform - pos: -0.5,-68.5 - parent: 2 - - uid: 7216 - components: - - type: Transform - pos: -54.5,34.5 - parent: 2 - - uid: 7217 - components: - - type: Transform - pos: -55.5,34.5 - parent: 2 - - uid: 7218 - components: - - type: Transform - pos: -55.5,32.5 - parent: 2 - - uid: 7219 - components: - - type: Transform - pos: -54.5,32.5 - parent: 2 - - uid: 7220 - components: - - type: Transform - pos: -53.5,32.5 - parent: 2 - - uid: 7221 - components: - - type: Transform - pos: -52.5,32.5 - parent: 2 - - uid: 7222 - components: - - type: Transform - pos: -51.5,32.5 - parent: 2 - - uid: 7223 - components: - - type: Transform - pos: -50.5,33.5 - parent: 2 - - uid: 7224 - components: - - type: Transform - pos: -48.5,33.5 - parent: 2 - - uid: 7225 - components: - - type: Transform - pos: -47.5,34.5 - parent: 2 - - uid: 7226 - components: - - type: Transform - pos: -46.5,34.5 - parent: 2 - - uid: 7227 - components: - - type: Transform - pos: -45.5,34.5 - parent: 2 - - uid: 7228 - components: - - type: Transform - pos: -44.5,34.5 - parent: 2 - - uid: 7233 - components: - - type: Transform - pos: -23.5,-69.5 - parent: 2 - - uid: 7235 - components: - - type: Transform - pos: 6.5,-55.5 - parent: 2 - - uid: 7239 - components: - - type: Transform - pos: 9.5,-74.5 - parent: 2 - - uid: 7240 - components: - - type: Transform - pos: 3.5,-40.5 - parent: 2 - - uid: 7241 - components: - - type: Transform - pos: -2.5,-56.5 - parent: 2 - - uid: 7243 - components: - - type: Transform - pos: 47.5,-41.5 - parent: 2 - - uid: 7244 - components: - - type: Transform - pos: 47.5,-40.5 - parent: 2 - - uid: 7245 - components: - - type: Transform - pos: 47.5,-39.5 - parent: 2 - - uid: 7246 - components: - - type: Transform - pos: 47.5,-38.5 - parent: 2 - - uid: 7247 - components: - - type: Transform - pos: 46.5,-38.5 - parent: 2 - - uid: 7248 - components: - - type: Transform - pos: -4.5,-56.5 - parent: 2 - - uid: 7250 - components: - - type: Transform - pos: -17.5,-64.5 - parent: 2 - - uid: 7252 - components: - - type: Transform - pos: -28.5,-64.5 - parent: 2 - - uid: 7253 - components: - - type: Transform - pos: -31.5,-62.5 - parent: 2 - - uid: 7254 - components: - - type: Transform - pos: -31.5,-63.5 - parent: 2 - - uid: 7255 - components: - - type: Transform - pos: -31.5,-64.5 - parent: 2 - - uid: 7256 - components: - - type: Transform - pos: -31.5,-65.5 - parent: 2 - - uid: 7257 - components: - - type: Transform - pos: -30.5,-65.5 - parent: 2 - - uid: 7258 - components: - - type: Transform - pos: -29.5,-65.5 - parent: 2 - - uid: 7259 - components: - - type: Transform - pos: -28.5,-65.5 - parent: 2 - - uid: 7260 - components: - - type: Transform - pos: -27.5,-65.5 - parent: 2 - - uid: 7265 - components: - - type: Transform - pos: -20.5,-69.5 - parent: 2 - - uid: 7266 - components: - - type: Transform - pos: -38.5,-62.5 - parent: 2 - - uid: 7267 - components: - - type: Transform - pos: -19.5,-60.5 - parent: 2 - - uid: 7268 - components: - - type: Transform - pos: -20.5,-60.5 - parent: 2 - - uid: 7269 - components: - - type: Transform - pos: -21.5,-60.5 - parent: 2 - - uid: 7270 - components: - - type: Transform - pos: -22.5,-60.5 - parent: 2 - - uid: 7271 - components: - - type: Transform - pos: -23.5,-60.5 - parent: 2 - - uid: 7272 - components: - - type: Transform - pos: -24.5,-60.5 - parent: 2 - - uid: 7273 - components: - - type: Transform - pos: -25.5,-60.5 - parent: 2 - - uid: 7274 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 2 - - uid: 7275 - components: - - type: Transform - pos: -27.5,-60.5 - parent: 2 - - uid: 7276 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 2 - - uid: 7277 - components: - - type: Transform - pos: -29.5,-60.5 - parent: 2 - - uid: 7278 - components: - - type: Transform - pos: -30.5,-60.5 - parent: 2 - - uid: 7279 - components: - - type: Transform - pos: -54.5,-61.5 - parent: 2 - - uid: 7280 - components: - - type: Transform - pos: -55.5,-61.5 - parent: 2 - - uid: 7281 - components: - - type: Transform - pos: -56.5,-61.5 - parent: 2 - - uid: 7282 - components: - - type: Transform - pos: -57.5,-61.5 - parent: 2 - - uid: 7283 - components: - - type: Transform - pos: -42.5,-61.5 - parent: 2 - - uid: 7285 - components: - - type: Transform - pos: -44.5,-63.5 - parent: 2 - - uid: 7286 - components: - - type: Transform - pos: -44.5,-64.5 - parent: 2 - - uid: 7287 - components: - - type: Transform - pos: -44.5,-65.5 - parent: 2 - - uid: 7288 - components: - - type: Transform - pos: -44.5,-66.5 - parent: 2 - - uid: 7289 - components: - - type: Transform - pos: -44.5,-67.5 - parent: 2 - - uid: 7290 - components: - - type: Transform - pos: -46.5,-67.5 - parent: 2 - - uid: 7291 - components: - - type: Transform - pos: -46.5,-66.5 - parent: 2 - - uid: 7292 - components: - - type: Transform - pos: -46.5,-65.5 - parent: 2 - - uid: 7293 - components: - - type: Transform - pos: -46.5,-64.5 - parent: 2 - - uid: 7294 - components: - - type: Transform - pos: -46.5,-63.5 - parent: 2 - - uid: 7295 - components: - - type: Transform - pos: 51.5,-61.5 - parent: 2 - - uid: 7296 - components: - - type: Transform - pos: 52.5,-61.5 - parent: 2 - - uid: 7297 - components: - - type: Transform - pos: 53.5,-61.5 - parent: 2 - - uid: 7298 - components: - - type: Transform - pos: 54.5,-61.5 - parent: 2 - - uid: 7299 - components: - - type: Transform - pos: 55.5,-61.5 - parent: 2 - - uid: 7300 - components: - - type: Transform - pos: 56.5,-61.5 - parent: 2 - - uid: 7301 - components: - - type: Transform - pos: 57.5,-61.5 - parent: 2 - - uid: 7302 - components: - - type: Transform - pos: 58.5,-61.5 - parent: 2 - - uid: 7303 - components: - - type: Transform - pos: 59.5,-61.5 - parent: 2 - - uid: 7304 - components: - - type: Transform - pos: 60.5,-61.5 - parent: 2 - - uid: 7305 - components: - - type: Transform - pos: 61.5,-61.5 - parent: 2 - - uid: 7306 - components: - - type: Transform - pos: 62.5,-61.5 - parent: 2 - - uid: 7307 - components: - - type: Transform - pos: 63.5,-61.5 - parent: 2 - - uid: 7308 - components: - - type: Transform - pos: 64.5,-61.5 - parent: 2 - - uid: 7309 - components: - - type: Transform - pos: 65.5,-61.5 - parent: 2 - - uid: 7310 - components: - - type: Transform - pos: 65.5,-60.5 - parent: 2 - - uid: 7311 - components: - - type: Transform - pos: 66.5,-60.5 - parent: 2 - - uid: 7312 - components: - - type: Transform - pos: 67.5,-60.5 - parent: 2 - - uid: 7313 - components: - - type: Transform - pos: 68.5,-60.5 - parent: 2 - - uid: 7314 - components: - - type: Transform - pos: 69.5,-60.5 - parent: 2 - - uid: 7315 - components: - - type: Transform - pos: 70.5,-60.5 - parent: 2 - - uid: 7316 - components: - - type: Transform - pos: 71.5,-60.5 - parent: 2 - - uid: 7317 - components: - - type: Transform - pos: 72.5,-60.5 - parent: 2 - - uid: 7318 - components: - - type: Transform - pos: 73.5,-60.5 - parent: 2 - - uid: 7319 - components: - - type: Transform - pos: 74.5,-60.5 - parent: 2 - - uid: 7320 - components: - - type: Transform - pos: 75.5,-60.5 - parent: 2 - - uid: 7321 - components: - - type: Transform - pos: 76.5,-60.5 - parent: 2 - - uid: 7322 - components: - - type: Transform - pos: 77.5,-60.5 - parent: 2 - - uid: 7323 - components: - - type: Transform - pos: 78.5,-60.5 - parent: 2 - - uid: 7324 - components: - - type: Transform - pos: 79.5,-60.5 - parent: 2 - - uid: 7325 - components: - - type: Transform - pos: 80.5,-60.5 - parent: 2 - - uid: 7326 - components: - - type: Transform - pos: 81.5,-60.5 - parent: 2 - - uid: 7327 - components: - - type: Transform - pos: 82.5,-60.5 - parent: 2 - - uid: 7328 - components: - - type: Transform - pos: 82.5,-59.5 - parent: 2 - - uid: 7329 - components: - - type: Transform - pos: 82.5,-58.5 - parent: 2 - - uid: 7330 - components: - - type: Transform - pos: 82.5,-57.5 - parent: 2 - - uid: 7331 - components: - - type: Transform - pos: 82.5,-56.5 - parent: 2 - - uid: 7332 - components: - - type: Transform - pos: 82.5,-55.5 - parent: 2 - - uid: 7333 - components: - - type: Transform - pos: 82.5,-54.5 - parent: 2 - - uid: 7334 - components: - - type: Transform - pos: 82.5,-53.5 - parent: 2 - - uid: 7335 - components: - - type: Transform - pos: 82.5,-52.5 - parent: 2 - - uid: 7336 - components: - - type: Transform - pos: 82.5,-51.5 - parent: 2 - - uid: 7337 - components: - - type: Transform - pos: 82.5,-50.5 - parent: 2 - - uid: 7338 - components: - - type: Transform - pos: 82.5,-49.5 - parent: 2 - - uid: 7339 - components: - - type: Transform - pos: 82.5,-48.5 - parent: 2 - - uid: 7340 - components: - - type: Transform - pos: 82.5,-47.5 - parent: 2 - - uid: 7341 - components: - - type: Transform - pos: 82.5,-46.5 - parent: 2 - - uid: 7342 - components: - - type: Transform - pos: 82.5,-45.5 - parent: 2 - - uid: 7343 - components: - - type: Transform - pos: 83.5,-45.5 - parent: 2 - - uid: 7344 - components: - - type: Transform - pos: 84.5,-45.5 - parent: 2 - - uid: 7345 - components: - - type: Transform - pos: 85.5,-45.5 - parent: 2 - - uid: 7346 - components: - - type: Transform - pos: 85.5,-44.5 - parent: 2 - - uid: 7347 - components: - - type: Transform - pos: -45.5,-62.5 - parent: 2 - - uid: 7348 - components: - - type: Transform - pos: -45.5,-63.5 - parent: 2 - - uid: 7349 - components: - - type: Transform - pos: 80.5,-63.5 - parent: 2 - - uid: 7350 - components: - - type: Transform - pos: 80.5,-64.5 - parent: 2 - - uid: 7351 - components: - - type: Transform - pos: 80.5,-65.5 - parent: 2 - - uid: 7352 - components: - - type: Transform - pos: 77.5,-81.5 - parent: 2 - - uid: 7353 - components: - - type: Transform - pos: 78.5,-81.5 - parent: 2 - - uid: 7354 - components: - - type: Transform - pos: 79.5,-81.5 - parent: 2 - - uid: 7355 - components: - - type: Transform - pos: 77.5,-83.5 - parent: 2 - - uid: 7356 - components: - - type: Transform - pos: 79.5,-83.5 - parent: 2 - - uid: 7357 - components: - - type: Transform - pos: 78.5,-83.5 - parent: 2 - - uid: 7358 - components: - - type: Transform - pos: 76.5,-81.5 - parent: 2 - - uid: 7359 - components: - - type: Transform - pos: 75.5,-81.5 - parent: 2 - - uid: 7360 - components: - - type: Transform - pos: 75.5,-79.5 - parent: 2 - - uid: 7361 - components: - - type: Transform - pos: 76.5,-79.5 - parent: 2 - - uid: 7362 - components: - - type: Transform - pos: 79.5,-79.5 - parent: 2 - - uid: 7363 - components: - - type: Transform - pos: 79.5,-77.5 - parent: 2 - - uid: 7364 - components: - - type: Transform - pos: 78.5,-77.5 - parent: 2 - - uid: 7365 - components: - - type: Transform - pos: 77.5,-77.5 - parent: 2 - - uid: 7366 - components: - - type: Transform - pos: 78.5,-79.5 - parent: 2 - - uid: 7367 - components: - - type: Transform - pos: 77.5,-79.5 - parent: 2 - - uid: 7368 - components: - - type: Transform - pos: 79.5,-73.5 - parent: 2 - - uid: 7369 - components: - - type: Transform - pos: 76.5,-73.5 - parent: 2 - - uid: 7370 - components: - - type: Transform - pos: 75.5,-73.5 - parent: 2 - - uid: 7371 - components: - - type: Transform - pos: 75.5,-75.5 - parent: 2 - - uid: 7372 - components: - - type: Transform - pos: 76.5,-77.5 - parent: 2 - - uid: 7373 - components: - - type: Transform - pos: 75.5,-77.5 - parent: 2 - - uid: 7374 - components: - - type: Transform - pos: 76.5,-75.5 - parent: 2 - - uid: 7375 - components: - - type: Transform - pos: 79.5,-75.5 - parent: 2 - - uid: 7376 - components: - - type: Transform - pos: 78.5,-75.5 - parent: 2 - - uid: 7377 - components: - - type: Transform - pos: 77.5,-75.5 - parent: 2 - - uid: 7378 - components: - - type: Transform - pos: 77.5,-73.5 - parent: 2 - - uid: 7379 - components: - - type: Transform - pos: 78.5,-73.5 - parent: 2 - - uid: 7380 - components: - - type: Transform - pos: -50.5,-63.5 - parent: 2 - - uid: 7381 - components: - - type: Transform - pos: -50.5,-64.5 - parent: 2 - - uid: 7382 - components: - - type: Transform - pos: -50.5,-65.5 - parent: 2 - - uid: 7383 - components: - - type: Transform - pos: -50.5,-66.5 - parent: 2 - - uid: 7384 - components: - - type: Transform - pos: -50.5,-67.5 - parent: 2 - - uid: 7385 - components: - - type: Transform - pos: -6.5,-56.5 - parent: 2 - - uid: 7386 - components: - - type: Transform - pos: -6.5,-55.5 - parent: 2 - - uid: 7387 - components: - - type: Transform - pos: -6.5,-54.5 - parent: 2 - - uid: 7388 - components: - - type: Transform - pos: -5.5,-56.5 - parent: 2 - - uid: 7389 - components: - - type: Transform - pos: 50.5,-62.5 - parent: 2 - - uid: 7390 - components: - - type: Transform - pos: -48.5,-67.5 - parent: 2 - - uid: 7391 - components: - - type: Transform - pos: -48.5,-66.5 - parent: 2 - - uid: 7392 - components: - - type: Transform - pos: -48.5,-65.5 - parent: 2 - - uid: 7393 - components: - - type: Transform - pos: -48.5,-64.5 - parent: 2 - - uid: 7394 - components: - - type: Transform - pos: -48.5,-63.5 - parent: 2 - - uid: 7395 - components: - - type: Transform - pos: -49.5,-63.5 - parent: 2 - - uid: 7396 - components: - - type: Transform - pos: -49.5,-62.5 - parent: 2 - - uid: 7397 - components: - - type: Transform - pos: -44.5,-59.5 - parent: 2 - - uid: 7398 - components: - - type: Transform - pos: -44.5,-58.5 - parent: 2 - - uid: 7399 - components: - - type: Transform - pos: -44.5,-57.5 - parent: 2 - - uid: 7400 - components: - - type: Transform - pos: -44.5,-56.5 - parent: 2 - - uid: 7401 - components: - - type: Transform - pos: -44.5,-55.5 - parent: 2 - - uid: 7402 - components: - - type: Transform - pos: -46.5,-55.5 - parent: 2 - - uid: 7403 - components: - - type: Transform - pos: -46.5,-56.5 - parent: 2 - - uid: 7404 - components: - - type: Transform - pos: -46.5,-57.5 - parent: 2 - - uid: 7405 - components: - - type: Transform - pos: -46.5,-58.5 - parent: 2 - - uid: 7406 - components: - - type: Transform - pos: -46.5,-59.5 - parent: 2 - - uid: 7407 - components: - - type: Transform - pos: -45.5,-59.5 - parent: 2 - - uid: 7408 - components: - - type: Transform - pos: -45.5,-60.5 - parent: 2 - - uid: 7409 - components: - - type: Transform - pos: -48.5,-59.5 - parent: 2 - - uid: 7410 - components: - - type: Transform - pos: -48.5,-58.5 - parent: 2 - - uid: 7411 - components: - - type: Transform - pos: -48.5,-57.5 - parent: 2 - - uid: 7412 - components: - - type: Transform - pos: -48.5,-56.5 - parent: 2 - - uid: 7413 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 2 - - uid: 7417 - components: - - type: Transform - pos: 51.5,-62.5 - parent: 2 - - uid: 7418 - components: - - type: Transform - pos: 81.5,-65.5 - parent: 2 - - uid: 7419 - components: - - type: Transform - pos: 81.5,-66.5 - parent: 2 - - uid: 7420 - components: - - type: Transform - pos: 81.5,-67.5 - parent: 2 - - uid: 7421 - components: - - type: Transform - pos: 81.5,-68.5 - parent: 2 - - uid: 7422 - components: - - type: Transform - pos: 27.5,6.5 - parent: 2 - - uid: 7423 - components: - - type: Transform - pos: 25.5,6.5 - parent: 2 - - uid: 7424 - components: - - type: Transform - pos: 28.5,6.5 - parent: 2 - - uid: 7427 - components: - - type: Transform - pos: 4.5,-80.5 - parent: 2 - - uid: 7428 - components: - - type: Transform - pos: 3.5,-80.5 - parent: 2 - - uid: 7429 - components: - - type: Transform - pos: 2.5,-80.5 - parent: 2 - - uid: 7430 - components: - - type: Transform - pos: 1.5,-80.5 - parent: 2 - - uid: 7431 - components: - - type: Transform - pos: -4.5,-65.5 - parent: 2 - - uid: 7432 - components: - - type: Transform - pos: 0.5,-80.5 - parent: 2 - - uid: 7435 - components: - - type: Transform - pos: 10.5,-74.5 - parent: 2 - - uid: 7436 - components: - - type: Transform - pos: -0.5,-80.5 - parent: 2 - - uid: 7437 - components: - - type: Transform - pos: 20.5,7.5 - parent: 2 - - uid: 7438 - components: - - type: Transform - pos: -2.5,26.5 - parent: 2 - - uid: 7439 - components: - - type: Transform - pos: 1.5,26.5 - parent: 2 - - uid: 7440 - components: - - type: Transform - pos: -6.5,26.5 - parent: 2 - - uid: 7441 - components: - - type: Transform - pos: -10.5,26.5 - parent: 2 - - uid: 7442 - components: - - type: Transform - pos: 23.5,32.5 - parent: 2 - - uid: 7443 - components: - - type: Transform - pos: -1.5,-80.5 - parent: 2 - - uid: 7445 - components: - - type: Transform - pos: -2.5,-80.5 - parent: 2 - - uid: 7446 - components: - - type: Transform - pos: -6.5,-52.5 - parent: 2 - - uid: 7447 - components: - - type: Transform - pos: -6.5,-51.5 - parent: 2 - - uid: 7448 - components: - - type: Transform - pos: -3.5,-80.5 - parent: 2 - - uid: 7449 - components: - - type: Transform - pos: -4.5,-80.5 - parent: 2 - - uid: 7450 - components: - - type: Transform - pos: -5.5,-80.5 - parent: 2 - - uid: 7451 - components: - - type: Transform - pos: -6.5,-80.5 - parent: 2 - - uid: 7452 - components: - - type: Transform - pos: -7.5,-80.5 - parent: 2 - - uid: 7453 - components: - - type: Transform - pos: -8.5,-80.5 - parent: 2 - - uid: 7454 - components: - - type: Transform - pos: -9.5,-80.5 - parent: 2 - - uid: 7455 - components: - - type: Transform - pos: -9.5,-81.5 - parent: 2 - - uid: 7456 - components: - - type: Transform - pos: -9.5,-82.5 - parent: 2 - - uid: 7457 - components: - - type: Transform - pos: -9.5,-83.5 - parent: 2 - - uid: 7458 - components: - - type: Transform - pos: -9.5,-84.5 - parent: 2 - - uid: 7459 - components: - - type: Transform - pos: -9.5,-85.5 - parent: 2 - - uid: 7460 - components: - - type: Transform - pos: -9.5,-86.5 - parent: 2 - - uid: 7461 - components: - - type: Transform - pos: -9.5,-87.5 - parent: 2 - - uid: 7462 - components: - - type: Transform - pos: -8.5,-85.5 - parent: 2 - - uid: 7463 - components: - - type: Transform - pos: -8.5,-86.5 - parent: 2 - - uid: 7464 - components: - - type: Transform - pos: 9.5,-77.5 - parent: 2 - - uid: 7465 - components: - - type: Transform - pos: -3.5,49.5 - parent: 2 - - uid: 7466 - components: - - type: Transform - pos: -4.5,49.5 - parent: 2 - - uid: 7467 - components: - - type: Transform - pos: -4.5,48.5 - parent: 2 - - uid: 7468 - components: - - type: Transform - pos: -14.5,-64.5 - parent: 2 - - uid: 7481 - components: - - type: Transform - pos: -8.5,35.5 - parent: 2 - - uid: 7482 - components: - - type: Transform - pos: -9.5,35.5 - parent: 2 - - uid: 7483 - components: - - type: Transform - pos: -10.5,35.5 - parent: 2 - - uid: 7484 - components: - - type: Transform - pos: -10.5,36.5 - parent: 2 - - uid: 7485 - components: - - type: Transform - pos: -10.5,37.5 - parent: 2 - - uid: 7486 - components: - - type: Transform - pos: -10.5,38.5 - parent: 2 - - uid: 7487 - components: - - type: Transform - pos: -10.5,39.5 - parent: 2 - - uid: 7488 - components: - - type: Transform - pos: -10.5,40.5 - parent: 2 - - uid: 7489 - components: - - type: Transform - pos: -10.5,41.5 - parent: 2 - - uid: 7490 - components: - - type: Transform - pos: -10.5,42.5 - parent: 2 - - uid: 7491 - components: - - type: Transform - pos: -10.5,43.5 - parent: 2 - - uid: 7492 - components: - - type: Transform - pos: -10.5,44.5 - parent: 2 - - uid: 7493 - components: - - type: Transform - pos: -11.5,44.5 - parent: 2 - - uid: 7494 - components: - - type: Transform - pos: -12.5,44.5 - parent: 2 - - uid: 7495 - components: - - type: Transform - pos: -13.5,44.5 - parent: 2 - - uid: 7496 - components: - - type: Transform - pos: -14.5,44.5 - parent: 2 - - uid: 7497 - components: - - type: Transform - pos: -15.5,44.5 - parent: 2 - - uid: 7498 - components: - - type: Transform - pos: -16.5,44.5 - parent: 2 - - uid: 7499 - components: - - type: Transform - pos: -17.5,44.5 - parent: 2 - - uid: 7500 - components: - - type: Transform - pos: -18.5,44.5 - parent: 2 - - uid: 7501 - components: - - type: Transform - pos: -19.5,44.5 - parent: 2 - - uid: 7502 - components: - - type: Transform - pos: -20.5,44.5 - parent: 2 - - uid: 7503 - components: - - type: Transform - pos: -21.5,44.5 - parent: 2 - - uid: 7504 - components: - - type: Transform - pos: -22.5,44.5 - parent: 2 - - uid: 7505 - components: - - type: Transform - pos: -23.5,44.5 - parent: 2 - - uid: 7506 - components: - - type: Transform - pos: -23.5,45.5 - parent: 2 - - uid: 7507 - components: - - type: Transform - pos: -23.5,46.5 - parent: 2 - - uid: 7508 - components: - - type: Transform - pos: -23.5,47.5 - parent: 2 - - uid: 7509 - components: - - type: Transform - pos: -23.5,48.5 - parent: 2 - - uid: 7510 - components: - - type: Transform - pos: -23.5,49.5 - parent: 2 - - uid: 7511 - components: - - type: Transform - pos: -23.5,50.5 - parent: 2 - - uid: 7512 - components: - - type: Transform - pos: -23.5,51.5 - parent: 2 - - uid: 7513 - components: - - type: Transform - pos: -22.5,51.5 - parent: 2 - - uid: 7514 - components: - - type: Transform - pos: -21.5,51.5 - parent: 2 - - uid: 7515 - components: - - type: Transform - pos: -20.5,51.5 - parent: 2 - - uid: 7517 - components: - - type: Transform - pos: 8.5,-84.5 - parent: 2 - - uid: 7518 - components: - - type: Transform - pos: 8.5,-83.5 - parent: 2 - - uid: 7519 - components: - - type: Transform - pos: 8.5,-82.5 - parent: 2 - - uid: 7520 - components: - - type: Transform - pos: 8.5,-81.5 - parent: 2 - - uid: 7525 - components: - - type: Transform - pos: -13.5,-64.5 - parent: 2 - - uid: 7527 - components: - - type: Transform - pos: -9.5,-64.5 - parent: 2 - - uid: 7528 - components: - - type: Transform - pos: -7.5,-64.5 - parent: 2 - - uid: 7529 - components: - - type: Transform - pos: -4.5,-64.5 - parent: 2 - - uid: 7531 - components: - - type: Transform - pos: -4.5,-73.5 - parent: 2 - - uid: 7534 - components: - - type: Transform - pos: -4.5,-72.5 - parent: 2 - - uid: 7535 - components: - - type: Transform - pos: -5.5,-64.5 - parent: 2 - - uid: 7537 - components: - - type: Transform - pos: -8.5,-87.5 - parent: 2 - - uid: 7538 - components: - - type: Transform - pos: 9.5,-78.5 - parent: 2 - - uid: 7539 - components: - - type: Transform - pos: -6.5,-64.5 - parent: 2 - - uid: 7545 - components: - - type: Transform - pos: 5.5,-80.5 - parent: 2 - - uid: 7546 - components: - - type: Transform - pos: 6.5,-80.5 - parent: 2 - - uid: 7547 - components: - - type: Transform - pos: 7.5,-80.5 - parent: 2 - - uid: 7550 - components: - - type: Transform - pos: 0.5,-68.5 - parent: 2 - - uid: 7551 - components: - - type: Transform - pos: 1.5,-68.5 - parent: 2 - - uid: 7552 - components: - - type: Transform - pos: 2.5,-68.5 - parent: 2 - - uid: 7553 - components: - - type: Transform - pos: 3.5,-68.5 - parent: 2 - - uid: 7554 - components: - - type: Transform - pos: 8.5,-66.5 - parent: 2 - - uid: 7555 - components: - - type: Transform - pos: 8.5,-67.5 - parent: 2 - - uid: 7556 - components: - - type: Transform - pos: 8.5,-68.5 - parent: 2 - - uid: 7557 - components: - - type: Transform - pos: 7.5,-68.5 - parent: 2 - - uid: 7558 - components: - - type: Transform - pos: 6.5,-68.5 - parent: 2 - - uid: 7559 - components: - - type: Transform - pos: 5.5,-68.5 - parent: 2 - - uid: 7560 - components: - - type: Transform - pos: 4.5,-68.5 - parent: 2 - - uid: 7561 - components: - - type: Transform - pos: 22.5,32.5 - parent: 2 - - uid: 7562 - components: - - type: Transform - pos: 21.5,32.5 - parent: 2 - - uid: 7563 - components: - - type: Transform - pos: 20.5,32.5 - parent: 2 - - uid: 7578 - components: - - type: Transform - pos: -8.5,-64.5 - parent: 2 - - uid: 7615 - components: - - type: Transform - pos: -17.5,23.5 - parent: 2 - - uid: 7629 - components: - - type: Transform - pos: -12.5,-64.5 - parent: 2 - - uid: 7630 - components: - - type: Transform - pos: -18.5,-62.5 - parent: 2 - - uid: 7632 - components: - - type: Transform - pos: -4.5,-69.5 - parent: 2 - - uid: 7697 - components: - - type: Transform - pos: -7.5,-8.5 - parent: 2 - - uid: 7740 - components: - - type: Transform - pos: -4.5,-71.5 - parent: 2 - - uid: 7745 - components: - - type: Transform - pos: 2.5,4.5 - parent: 2 - - uid: 7746 - components: - - type: Transform - pos: 2.5,6.5 - parent: 2 - - uid: 7759 - components: - - type: Transform - pos: 19.5,15.5 - parent: 2 - - uid: 7783 - components: - - type: Transform - pos: -37.5,-1.5 - parent: 2 - - uid: 7784 - components: - - type: Transform - pos: -35.5,-1.5 - parent: 2 - - uid: 7804 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 2 - - uid: 7840 - components: - - type: Transform - pos: -36.5,-1.5 - parent: 2 - - uid: 7939 - components: - - type: Transform - pos: -12.5,-8.5 - parent: 2 - - uid: 8077 - components: - - type: Transform - pos: -22.5,-69.5 - parent: 2 - - uid: 8078 - components: - - type: Transform - pos: -0.5,-26.5 - parent: 2 - - uid: 8176 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 2 - - uid: 8177 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 2 - - uid: 8178 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 2 - - uid: 8188 - components: - - type: Transform - pos: -1.5,12.5 - parent: 2 - - uid: 8189 - components: - - type: Transform - pos: -2.5,12.5 - parent: 2 - - uid: 8579 - components: - - type: Transform - pos: -4.5,-66.5 - parent: 2 - - uid: 8583 - components: - - type: Transform - pos: -17.5,-67.5 - parent: 2 - - uid: 8584 - components: - - type: Transform - pos: -17.5,-68.5 - parent: 2 - - uid: 8629 - components: - - type: Transform - pos: -12.5,-74.5 - parent: 2 - - uid: 8630 - components: - - type: Transform - pos: -13.5,-73.5 - parent: 2 - - uid: 8631 - components: - - type: Transform - pos: -11.5,-64.5 - parent: 2 - - uid: 8632 - components: - - type: Transform - pos: -10.5,-64.5 - parent: 2 - - uid: 8991 - components: - - type: Transform - pos: 15.5,-22.5 - parent: 2 - - uid: 8992 - components: - - type: Transform - pos: 8.5,-30.5 - parent: 2 - - uid: 8993 - components: - - type: Transform - pos: 6.5,-30.5 - parent: 2 - - uid: 8994 - components: - - type: Transform - pos: 16.5,-34.5 - parent: 2 - - uid: 9002 - components: - - type: Transform - pos: 15.5,-28.5 - parent: 2 - - uid: 9034 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 2 - - uid: 9035 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 2 - - uid: 9053 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 2 - - uid: 9056 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 2 - - uid: 9079 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 2 - - uid: 9080 - components: - - type: Transform - pos: 15.5,-24.5 - parent: 2 - - uid: 9234 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 2 - - uid: 9274 - components: - - type: Transform - pos: 3.5,-30.5 - parent: 2 - - uid: 9410 - components: - - type: Transform - pos: 2.5,-8.5 - parent: 2 - - uid: 9411 - components: - - type: Transform - pos: -15.5,-8.5 - parent: 2 - - uid: 9412 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 2 - - uid: 9413 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 2 - - uid: 9427 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 2 - - uid: 9432 - components: - - type: Transform - pos: 11.5,-30.5 - parent: 2 - - uid: 9433 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 2 - - uid: 9434 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 2 - - uid: 9435 - components: - - type: Transform - pos: 15.5,-25.5 - parent: 2 - - uid: 9436 - components: - - type: Transform - pos: 15.5,-26.5 - parent: 2 - - uid: 9437 - components: - - type: Transform - pos: 14.5,-30.5 - parent: 2 - - uid: 9438 - components: - - type: Transform - pos: 15.5,-27.5 - parent: 2 - - uid: 9439 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 2 - - uid: 9440 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 2 - - uid: 9750 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 2 - - uid: 9751 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 2 - - uid: 9752 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 2 - - uid: 9753 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 2 - - uid: 9754 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 2 - - uid: 9755 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 2 - - uid: 9756 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 2 - - uid: 9757 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 2 - - uid: 9759 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 2 - - uid: 9760 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 2 - - uid: 9761 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 2 - - uid: 9815 - components: - - type: Transform - pos: -14.5,12.5 - parent: 2 - - uid: 9819 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 2 - - uid: 9998 - components: - - type: Transform - pos: -3.5,-8.5 - parent: 2 - - uid: 9999 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 2 - - uid: 10000 - components: - - type: Transform - pos: -6.5,-8.5 - parent: 2 - - uid: 10008 - components: - - type: Transform - pos: -2.5,-8.5 - parent: 2 - - uid: 10009 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 2 - - uid: 10010 - components: - - type: Transform - pos: -9.5,-8.5 - parent: 2 - - uid: 10017 - components: - - type: Transform - pos: -10.5,-8.5 - parent: 2 - - uid: 10020 - components: - - type: Transform - pos: -11.5,-8.5 - parent: 2 - - uid: 10123 - components: - - type: Transform - pos: -14.5,-8.5 - parent: 2 - - uid: 10129 - components: - - type: Transform - pos: -0.5,12.5 - parent: 2 - - uid: 10142 - components: - - type: Transform - pos: -9.5,12.5 - parent: 2 - - uid: 10149 - components: - - type: Transform - pos: -24.5,12.5 - parent: 2 - - uid: 10156 - components: - - type: Transform - pos: -13.5,-8.5 - parent: 2 - - uid: 10176 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 2 - - uid: 10179 - components: - - type: Transform - pos: -8.5,-8.5 - parent: 2 - - uid: 10208 - components: - - type: Transform - pos: 8.5,18.5 - parent: 2 - - uid: 10242 - components: - - type: Transform - pos: -33.5,12.5 - parent: 2 - - uid: 10416 - components: - - type: Transform - pos: -15.5,-71.5 - parent: 2 - - uid: 10417 - components: - - type: Transform - pos: -17.5,-69.5 - parent: 2 - - uid: 10545 - components: - - type: Transform - pos: -0.5,-28.5 - parent: 2 - - uid: 10584 - components: - - type: Transform - pos: -15.5,-77.5 - parent: 2 - - uid: 10585 - components: - - type: Transform - pos: -15.5,-76.5 - parent: 2 - - uid: 10716 - components: - - type: Transform - pos: -45.5,-1.5 - parent: 2 - - uid: 10806 - components: - - type: Transform - pos: -24.5,-65.5 - parent: 2 - - uid: 10823 - components: - - type: Transform - pos: -44.5,-1.5 - parent: 2 - - uid: 10824 - components: - - type: Transform - pos: -43.5,-1.5 - parent: 2 - - uid: 10838 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 2 - - uid: 10848 - components: - - type: Transform - pos: -47.5,-1.5 - parent: 2 - - uid: 10882 - components: - - type: Transform - pos: -25.5,-65.5 - parent: 2 - - uid: 10891 - components: - - type: Transform - pos: -5.5,-74.5 - parent: 2 - - uid: 10949 - components: - - type: Transform - pos: -46.5,-1.5 - parent: 2 - - uid: 11046 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 2 - - uid: 11051 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 2 - - uid: 11158 - components: - - type: Transform - pos: -0.5,50.5 - parent: 2 - - uid: 11394 - components: - - type: Transform - pos: 20.5,21.5 - parent: 2 - - uid: 11499 - components: - - type: Transform - pos: -8.5,-74.5 - parent: 2 - - uid: 11546 - components: - - type: Transform - pos: -6.5,-74.5 - parent: 2 - - uid: 11547 - components: - - type: Transform - pos: -9.5,-74.5 - parent: 2 - - uid: 11788 - components: - - type: Transform - pos: 8.5,-80.5 - parent: 2 - - uid: 11790 - components: - - type: Transform - pos: -8.5,27.5 - parent: 2 - - uid: 11800 - components: - - type: Transform - pos: -7.5,-74.5 - parent: 2 - - uid: 11824 - components: - - type: Transform - pos: 20.5,18.5 - parent: 2 - - uid: 11828 - components: - - type: Transform - pos: 20.5,22.5 - parent: 2 - - uid: 11894 - components: - - type: Transform - pos: -8.5,30.5 - parent: 2 - - uid: 11979 - components: - - type: Transform - pos: -37.5,-16.5 - parent: 2 - - uid: 12275 - components: - - type: Transform - pos: -17.5,25.5 - parent: 2 - - uid: 12574 - components: - - type: Transform - pos: 7.5,-69.5 - parent: 2 - - uid: 12915 - components: - - type: Transform - pos: 23.5,26.5 - parent: 2 - - uid: 12916 - components: - - type: Transform - pos: 23.5,28.5 - parent: 2 - - uid: 12918 - components: - - type: Transform - pos: 23.5,27.5 - parent: 2 - - uid: 12966 - components: - - type: Transform - pos: 23.5,25.5 - parent: 2 - - uid: 12974 - components: - - type: Transform - pos: 20.5,20.5 - parent: 2 - - uid: 13263 - components: - - type: Transform - pos: 23.5,29.5 - parent: 2 - - uid: 13293 - components: - - type: Transform - pos: 23.5,30.5 - parent: 2 - - uid: 13400 - components: - - type: Transform - pos: -0.5,-21.5 - parent: 2 - - uid: 13410 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 2 - - uid: 13450 - components: - - type: Transform - pos: -15.5,-72.5 - parent: 2 - - uid: 13643 - components: - - type: Transform - pos: -8.5,33.5 - parent: 2 - - uid: 13847 - components: - - type: Transform - pos: -23.5,12.5 - parent: 2 - - uid: 14481 - components: - - type: Transform - pos: -17.5,27.5 - parent: 2 - - uid: 14501 - components: - - type: Transform - pos: -16.5,27.5 - parent: 2 - - uid: 14564 - components: - - type: Transform - pos: 12.5,-75.5 - parent: 2 - - uid: 14591 - components: - - type: Transform - pos: 23.5,31.5 - parent: 2 - - uid: 14597 - components: - - type: Transform - pos: -17.5,24.5 - parent: 2 - - uid: 14741 - components: - - type: Transform - pos: 12.5,-74.5 - parent: 2 - - uid: 14949 - components: - - type: Transform - pos: 12.5,-79.5 - parent: 2 - - uid: 14951 - components: - - type: Transform - pos: 12.5,-77.5 - parent: 2 - - uid: 15094 - components: - - type: Transform - pos: -17.5,-66.5 - parent: 2 - - uid: 16495 - components: - - type: Transform - pos: 48.5,-42.5 - parent: 2 - - uid: 16498 - components: - - type: Transform - pos: -26.5,12.5 - parent: 2 - - uid: 16890 - components: - - type: Transform - pos: 19.5,16.5 - parent: 2 - - uid: 16997 - components: - - type: Transform - pos: 1.5,48.5 - parent: 2 - - uid: 16998 - components: - - type: Transform - pos: -1.5,50.5 - parent: 2 - - uid: 16999 - components: - - type: Transform - pos: -1.5,48.5 - parent: 2 - - uid: 17000 - components: - - type: Transform - pos: -0.5,48.5 - parent: 2 - - uid: 17003 - components: - - type: Transform - pos: -2.5,48.5 - parent: 2 - - uid: 17077 - components: - - type: Transform - pos: -39.5,-1.5 - parent: 2 - - uid: 17305 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 2 - - uid: 17369 - components: - - type: Transform - pos: -40.5,-1.5 - parent: 2 - - uid: 17856 - components: - - type: Transform - pos: 20.5,19.5 - parent: 2 - - uid: 18163 - components: - - type: Transform - pos: 47.5,-42.5 - parent: 2 - - uid: 18367 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 2 - - uid: 18371 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 2 - - uid: 18373 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 2 - - uid: 18374 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 2 - - uid: 18375 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 2 - - uid: 18403 - components: - - type: Transform - pos: -32.5,12.5 - parent: 2 - - uid: 18438 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 2 - - uid: 18439 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 2 - - uid: 18440 - components: - - type: Transform - pos: 9.5,0.5 - parent: 2 - - uid: 18441 - components: - - type: Transform - pos: 9.5,1.5 - parent: 2 - - uid: 18442 - components: - - type: Transform - pos: 9.5,2.5 - parent: 2 - - uid: 18443 - components: - - type: Transform - pos: 9.5,3.5 - parent: 2 - - uid: 18444 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - - uid: 18445 - components: - - type: Transform - pos: 9.5,5.5 - parent: 2 - - uid: 18446 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - - uid: 18447 - components: - - type: Transform - pos: 9.5,7.5 - parent: 2 - - uid: 18448 - components: - - type: Transform - pos: 9.5,8.5 - parent: 2 - - uid: 18449 - components: - - type: Transform - pos: 9.5,9.5 - parent: 2 - - uid: 18450 - components: - - type: Transform - pos: 9.5,10.5 - parent: 2 - - uid: 18451 - components: - - type: Transform - pos: 10.5,10.5 - parent: 2 - - uid: 18452 - components: - - type: Transform - pos: 11.5,10.5 - parent: 2 - - uid: 18453 - components: - - type: Transform - pos: 12.5,10.5 - parent: 2 - - uid: 18454 - components: - - type: Transform - pos: 13.5,10.5 - parent: 2 - - uid: 18455 - components: - - type: Transform - pos: 14.5,10.5 - parent: 2 - - uid: 18456 - components: - - type: Transform - pos: 15.5,10.5 - parent: 2 - - uid: 18457 - components: - - type: Transform - pos: 16.5,10.5 - parent: 2 - - uid: 18458 - components: - - type: Transform - pos: 18.5,10.5 - parent: 2 - - uid: 18459 - components: - - type: Transform - pos: 17.5,10.5 - parent: 2 - - uid: 18460 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 2 - - uid: 18461 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 2 - - uid: 18462 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 2 - - uid: 18463 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 2 - - uid: 18464 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 2 - - uid: 18465 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 2 - - uid: 18466 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 2 - - uid: 18467 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 2 - - uid: 18468 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 - - uid: 18469 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 2 - - uid: 18943 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 2 - - uid: 19006 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 2 - - uid: 19007 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 2 - - uid: 19008 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 2 - - uid: 19009 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 2 - - uid: 19010 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 2 - - uid: 19011 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 2 - - uid: 19013 - components: - - type: Transform - pos: -9.5,-1.5 - parent: 2 - - uid: 19016 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 2 - - uid: 19017 - components: - - type: Transform - pos: -10.5,-1.5 - parent: 2 - - uid: 19020 - components: - - type: Transform - pos: -13.5,-1.5 - parent: 2 - - uid: 19021 - components: - - type: Transform - pos: -12.5,-1.5 - parent: 2 - - uid: 19022 - components: - - type: Transform - pos: -11.5,-1.5 - parent: 2 - - uid: 19023 - components: - - type: Transform - pos: -14.5,-1.5 - parent: 2 - - uid: 19024 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 2 - - uid: 19025 - components: - - type: Transform - pos: -14.5,0.5 - parent: 2 - - uid: 19026 - components: - - type: Transform - pos: -14.5,1.5 - parent: 2 - - uid: 19027 - components: - - type: Transform - pos: -14.5,2.5 - parent: 2 - - uid: 19028 - components: - - type: Transform - pos: -14.5,3.5 - parent: 2 - - uid: 19029 - components: - - type: Transform - pos: -14.5,4.5 - parent: 2 - - uid: 19030 - components: - - type: Transform - pos: -14.5,5.5 - parent: 2 - - uid: 19031 - components: - - type: Transform - pos: -14.5,6.5 - parent: 2 - - uid: 19032 - components: - - type: Transform - pos: -14.5,7.5 - parent: 2 - - uid: 19033 - components: - - type: Transform - pos: -14.5,8.5 - parent: 2 - - uid: 19034 - components: - - type: Transform - pos: -14.5,9.5 - parent: 2 - - uid: 19035 - components: - - type: Transform - pos: -14.5,10.5 - parent: 2 - - uid: 19036 - components: - - type: Transform - pos: -14.5,11.5 - parent: 2 - - uid: 19037 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 2 - - uid: 19038 - components: - - type: Transform - pos: -16.5,-1.5 - parent: 2 - - uid: 19039 - components: - - type: Transform - pos: -17.5,-1.5 - parent: 2 - - uid: 19040 - components: - - type: Transform - pos: -18.5,-1.5 - parent: 2 - - uid: 19041 - components: - - type: Transform - pos: -19.5,-1.5 - parent: 2 - - uid: 19042 - components: - - type: Transform - pos: -20.5,-1.5 - parent: 2 - - uid: 19053 - components: - - type: Transform - pos: -22.5,-1.5 - parent: 2 - - uid: 19064 - components: - - type: Transform - pos: -23.5,-1.5 - parent: 2 - - uid: 19065 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 2 - - uid: 19066 - components: - - type: Transform - pos: -24.5,-1.5 - parent: 2 - - uid: 19067 - components: - - type: Transform - pos: -16.5,-2.5 - parent: 2 - - uid: 19069 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 2 - - uid: 19070 - components: - - type: Transform - pos: -16.5,-4.5 - parent: 2 - - uid: 19081 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 2 - - uid: 19105 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 2 - - uid: 19106 - components: - - type: Transform - pos: -16.5,-7.5 - parent: 2 - - uid: 19108 - components: - - type: Transform - pos: -16.5,-8.5 - parent: 2 - - uid: 19111 - components: - - type: Transform - pos: -16.5,-10.5 - parent: 2 - - uid: 19175 - components: - - type: Transform - pos: -16.5,-11.5 - parent: 2 - - uid: 19179 - components: - - type: Transform - pos: -18.5,-61.5 - parent: 2 - - uid: 19192 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 2 - - uid: 19197 - components: - - type: Transform - pos: -16.5,-20.5 - parent: 2 - - uid: 19198 - components: - - type: Transform - pos: -16.5,-21.5 - parent: 2 - - uid: 19259 - components: - - type: Transform - pos: -16.5,-22.5 - parent: 2 - - uid: 19260 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 2 - - uid: 19333 - components: - - type: Transform - pos: -42.5,-1.5 - parent: 2 - - uid: 19516 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 2 - - uid: 19517 - components: - - type: Transform - pos: -16.5,-25.5 - parent: 2 - - uid: 19518 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 2 - - uid: 19519 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 2 - - uid: 19520 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 2 - - uid: 19521 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 2 - - uid: 19522 - components: - - type: Transform - pos: -16.5,-27.5 - parent: 2 - - uid: 19524 - components: - - type: Transform - pos: -17.5,-30.5 - parent: 2 - - uid: 19525 - components: - - type: Transform - pos: -17.5,-31.5 - parent: 2 - - uid: 19527 - components: - - type: Transform - pos: -17.5,-32.5 - parent: 2 - - uid: 19619 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 2 - - uid: 19719 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 2 - - uid: 19769 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 2 - - uid: 19774 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 2 - - uid: 19804 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 2 - - uid: 19817 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 2 - - uid: 19888 - components: - - type: Transform - pos: -41.5,-1.5 - parent: 2 - - uid: 19917 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 2 - - uid: 19923 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 2 - - uid: 19932 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 2 - - uid: 19970 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 2 - - uid: 19971 - components: - - type: Transform - pos: -9.5,-30.5 - parent: 2 - - uid: 19977 - components: - - type: Transform - pos: 3.5,-76.5 - parent: 2 - - uid: 19980 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 2 - - uid: 19981 - components: - - type: Transform - pos: -6.5,-30.5 - parent: 2 - - uid: 19982 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 2 - - uid: 19983 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 2 - - uid: 19984 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 2 - - uid: 20066 - components: - - type: Transform - pos: -3.5,-30.5 - parent: 2 - - uid: 20067 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 2 - - uid: 20068 - components: - - type: Transform - pos: -1.5,-30.5 - parent: 2 - - uid: 20074 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 2 - - uid: 20080 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 2 - - uid: 20133 - components: - - type: Transform - pos: -17.5,-62.5 - parent: 2 - - uid: 20254 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 2 - - uid: 20271 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 2 - - uid: 20456 - components: - - type: Transform - pos: 1.5,31.5 - parent: 2 - - uid: 20515 - components: - - type: Transform - pos: -1.5,-25.5 - parent: 2 - - uid: 20764 - components: - - type: Transform - pos: 2.5,29.5 - parent: 2 - - uid: 20801 - components: - - type: Transform - pos: 2.5,31.5 - parent: 2 - - uid: 20802 - components: - - type: Transform - pos: 2.5,30.5 - parent: 2 - - uid: 20803 - components: - - type: Transform - pos: 2.5,27.5 - parent: 2 - - uid: 20804 - components: - - type: Transform - pos: 2.5,28.5 - parent: 2 - - uid: 20817 - components: - - type: Transform - pos: 0.5,31.5 - parent: 2 - - uid: 20827 - components: - - type: Transform - pos: 0.5,32.5 - parent: 2 - - uid: 20853 - components: - - type: Transform - pos: 27.5,29.5 - parent: 2 - - uid: 20990 - components: - - type: Transform - pos: -19.5,-69.5 - parent: 2 - - uid: 21051 - components: - - type: Transform - pos: -24.5,-68.5 - parent: 2 - - uid: 21052 - components: - - type: Transform - pos: 0.5,33.5 - parent: 2 - - uid: 21053 - components: - - type: Transform - pos: 0.5,34.5 - parent: 2 - - uid: 21055 - components: - - type: Transform - pos: 0.5,35.5 - parent: 2 - - uid: 21056 - components: - - type: Transform - pos: 0.5,36.5 - parent: 2 - - uid: 21061 - components: - - type: Transform - pos: 0.5,37.5 - parent: 2 - - uid: 21072 - components: - - type: Transform - pos: 0.5,38.5 - parent: 2 - - uid: 21073 - components: - - type: Transform - pos: 0.5,39.5 - parent: 2 - - uid: 21074 - components: - - type: Transform - pos: 0.5,40.5 - parent: 2 - - uid: 21075 - components: - - type: Transform - pos: 0.5,42.5 - parent: 2 - - uid: 21076 - components: - - type: Transform - pos: 0.5,41.5 - parent: 2 - - uid: 21077 - components: - - type: Transform - pos: 0.5,43.5 - parent: 2 - - uid: 21078 - components: - - type: Transform - pos: 0.5,44.5 - parent: 2 - - uid: 21079 - components: - - type: Transform - pos: 0.5,45.5 - parent: 2 - - uid: 21089 - components: - - type: Transform - pos: 0.5,46.5 - parent: 2 - - uid: 21203 - components: - - type: Transform - pos: 0.5,48.5 - parent: 2 - - uid: 21226 - components: - - type: Transform - pos: 0.5,49.5 - parent: 2 - - uid: 21227 - components: - - type: Transform - pos: 0.5,47.5 - parent: 2 - - uid: 21228 - components: - - type: Transform - pos: 1.5,49.5 - parent: 2 - - uid: 21229 - components: - - type: Transform - pos: 2.5,49.5 - parent: 2 - - uid: 21230 - components: - - type: Transform - pos: 3.5,49.5 - parent: 2 - - uid: 21235 - components: - - type: Transform - pos: 3.5,48.5 - parent: 2 - - uid: 21238 - components: - - type: Transform - pos: 3.5,47.5 - parent: 2 - - uid: 21425 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 2 - - uid: 21461 - components: - - type: Transform - pos: 3.5,46.5 - parent: 2 - - uid: 21498 - components: - - type: Transform - pos: -25.5,12.5 - parent: 2 - - uid: 21541 - components: - - type: Transform - pos: 3.5,45.5 - parent: 2 - - uid: 21546 - components: - - type: Transform - pos: -0.5,49.5 - parent: 2 - - uid: 21571 - components: - - type: Transform - pos: -3.5,43.5 - parent: 2 - - uid: 21621 - components: - - type: Transform - pos: 8.5,-87.5 - parent: 2 - - uid: 21681 - components: - - type: Transform - pos: -1.5,49.5 - parent: 2 - - uid: 21927 - components: - - type: Transform - pos: -2.5,49.5 - parent: 2 - - uid: 21935 - components: - - type: Transform - pos: -4.5,47.5 - parent: 2 - - uid: 21942 - components: - - type: Transform - pos: -4.5,46.5 - parent: 2 - - uid: 21946 - components: - - type: Transform - pos: -4.5,45.5 - parent: 2 - - uid: 21950 - components: - - type: Transform - pos: -4.5,44.5 - parent: 2 - - uid: 21986 - components: - - type: Transform - pos: -4.5,43.5 - parent: 2 - - uid: 22186 - components: - - type: Transform - pos: -26.5,-65.5 - parent: 2 - - uid: 22305 - components: - - type: Transform - pos: -16.5,-59.5 - parent: 2 - - uid: 22533 - components: - - type: Transform - pos: -16.5,-69.5 - parent: 2 - - uid: 22652 - components: - - type: Transform - pos: -13.5,27.5 - parent: 2 - - uid: 22773 - components: - - type: Transform - pos: -24.5,-67.5 - parent: 2 - - uid: 22826 - components: - - type: Transform - pos: -17.5,-63.5 - parent: 2 - - uid: 23592 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 2 - - uid: 23876 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 2 - - uid: 24714 - components: - - type: Transform - pos: -34.5,12.5 - parent: 2 - - uid: 24728 - components: - - type: Transform - pos: -36.5,12.5 - parent: 2 - - uid: 24737 - components: - - type: Transform - pos: -31.5,12.5 - parent: 2 - - uid: 24739 - components: - - type: Transform - pos: -28.5,12.5 - parent: 2 - - uid: 24741 - components: - - type: Transform - pos: -38.5,12.5 - parent: 2 - - uid: 24742 - components: - - type: Transform - pos: -30.5,12.5 - parent: 2 - - uid: 24760 - components: - - type: Transform - pos: -35.5,12.5 - parent: 2 - - uid: 24761 - components: - - type: Transform - pos: -39.5,12.5 - parent: 2 - - uid: 24836 - components: - - type: Transform - pos: -37.5,12.5 - parent: 2 - - uid: 25094 - components: - - type: Transform - pos: 12.5,-88.5 - parent: 2 - - uid: 25379 - components: - - type: Transform - pos: -0.5,43.5 - parent: 2 - - uid: 25380 - components: - - type: Transform - pos: -1.5,43.5 - parent: 2 - - uid: 25381 - components: - - type: Transform - pos: -2.5,43.5 - parent: 2 - - uid: 25382 - components: - - type: Transform - pos: 1.5,45.5 - parent: 2 - - uid: 25383 - components: - - type: Transform - pos: 2.5,45.5 - parent: 2 - - uid: 25433 - components: - - type: Transform - pos: 11.5,-74.5 - parent: 2 - - uid: 25601 - components: - - type: Transform - pos: 12.5,-80.5 - parent: 2 - - uid: 25790 - components: - - type: Transform - pos: 27.5,28.5 - parent: 2 - - uid: 25879 - components: - - type: Transform - pos: 26.5,28.5 - parent: 2 - - uid: 25891 - components: - - type: Transform - pos: 13.5,-77.5 - parent: 2 - - uid: 25892 - components: - - type: Transform - pos: 14.5,-77.5 - parent: 2 - - uid: 25893 - components: - - type: Transform - pos: 15.5,-77.5 - parent: 2 - - uid: 25894 - components: - - type: Transform - pos: 16.5,-77.5 - parent: 2 - - uid: 25895 - components: - - type: Transform - pos: 17.5,-77.5 - parent: 2 - - uid: 25896 - components: - - type: Transform - pos: 18.5,-77.5 - parent: 2 - - uid: 25908 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 2 - - uid: 25930 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 2 - - uid: 26656 - components: - - type: Transform - pos: -32.5,-1.5 - parent: 2 - - uid: 26968 - components: - - type: Transform - pos: -31.5,-1.5 - parent: 2 - - uid: 27582 - components: - - type: Transform - pos: 12.5,-82.5 - parent: 2 - - uid: 27597 - components: - - type: Transform - pos: 12.5,-78.5 - parent: 2 - - uid: 27607 - components: - - type: Transform - pos: 12.5,-76.5 - parent: 2 - - uid: 27648 - components: - - type: Transform - pos: 12.5,-89.5 - parent: 2 - - uid: 27708 - components: - - type: Transform - pos: 12.5,-83.5 - parent: 2 - - uid: 27709 - components: - - type: Transform - pos: 12.5,-81.5 - parent: 2 - - uid: 27710 - components: - - type: Transform - pos: 13.5,-83.5 - parent: 2 - - uid: 27711 - components: - - type: Transform - pos: 14.5,-83.5 - parent: 2 - - uid: 27712 - components: - - type: Transform - pos: 15.5,-83.5 - parent: 2 - - uid: 27713 - components: - - type: Transform - pos: 16.5,-83.5 - parent: 2 - - uid: 27714 - components: - - type: Transform - pos: 17.5,-83.5 - parent: 2 - - uid: 27715 - components: - - type: Transform - pos: 18.5,-83.5 - parent: 2 - - uid: 27781 - components: - - type: Transform - pos: 22.5,-91.5 - parent: 2 - - uid: 27812 - components: - - type: Transform - pos: 21.5,-91.5 - parent: 2 - - uid: 27958 - components: - - type: Transform - pos: 20.5,-91.5 - parent: 2 - - uid: 27959 - components: - - type: Transform - pos: 19.5,-91.5 - parent: 2 - - uid: 28005 - components: - - type: Transform - pos: 17.5,-91.5 - parent: 2 - - uid: 28006 - components: - - type: Transform - pos: 16.5,-91.5 - parent: 2 - - uid: 28011 - components: - - type: Transform - pos: 15.5,-91.5 - parent: 2 - - uid: 28013 - components: - - type: Transform - pos: 14.5,-91.5 - parent: 2 - - uid: 28023 - components: - - type: Transform - pos: 13.5,-91.5 - parent: 2 - - uid: 28024 - components: - - type: Transform - pos: 12.5,-91.5 - parent: 2 - - uid: 28025 - components: - - type: Transform - pos: 18.5,-91.5 - parent: 2 - - uid: 28026 - components: - - type: Transform - pos: 12.5,-90.5 - parent: 2 - - uid: 28080 - components: - - type: Transform - pos: 12.5,-84.5 - parent: 2 - - uid: 28099 - components: - - type: Transform - pos: 18.5,-90.5 - parent: 2 - - uid: 28100 - components: - - type: Transform - pos: 18.5,-89.5 - parent: 2 - - uid: 28101 - components: - - type: Transform - pos: 17.5,-89.5 - parent: 2 - - uid: 28102 - components: - - type: Transform - pos: 19.5,-89.5 - parent: 2 - - uid: 28104 - components: - - type: Transform - pos: 19.5,-85.5 - parent: 2 - - uid: 28113 - components: - - type: Transform - pos: 18.5,-85.5 - parent: 2 - - uid: 28194 - components: - - type: Transform - pos: 17.5,-85.5 - parent: 2 - - uid: 28195 - components: - - type: Transform - pos: 18.5,-84.5 - parent: 2 - - uid: 28827 - components: - - type: Transform - pos: 12.5,-86.5 - parent: 2 - - uid: 28854 - components: - - type: Transform - pos: 1.5,50.5 - parent: 2 - - uid: 28914 - components: - - type: Transform - pos: 12.5,-87.5 - parent: 2 - - uid: 29008 - components: - - type: Transform - pos: -14.5,27.5 - parent: 2 - - uid: 29163 - components: - - type: Transform - pos: 2.5,46.5 - parent: 2 - - uid: 29164 - components: - - type: Transform - pos: 2.5,47.5 - parent: 2 - - uid: 29165 - components: - - type: Transform - pos: 4.5,45.5 - parent: 2 - - uid: 29166 - components: - - type: Transform - pos: 4.5,46.5 - parent: 2 - - uid: 29167 - components: - - type: Transform - pos: 4.5,47.5 - parent: 2 - - uid: 29528 - components: - - type: Transform - pos: 12.5,-85.5 - parent: 2 - - uid: 30051 - components: - - type: Transform - pos: 18.5,33.5 - parent: 2 - - uid: 30053 - components: - - type: Transform - pos: 18.5,34.5 - parent: 2 - - uid: 30054 - components: - - type: Transform - pos: 18.5,35.5 - parent: 2 - - uid: 30055 - components: - - type: Transform - pos: 19.5,35.5 - parent: 2 - - uid: 30056 - components: - - type: Transform - pos: 20.5,35.5 - parent: 2 - - uid: 30057 - components: - - type: Transform - pos: 21.5,35.5 - parent: 2 - - uid: 30058 - components: - - type: Transform - pos: 22.5,35.5 - parent: 2 - - uid: 30059 - components: - - type: Transform - pos: 23.5,35.5 - parent: 2 - - uid: 30060 - components: - - type: Transform - pos: 24.5,35.5 - parent: 2 - - uid: 30061 - components: - - type: Transform - pos: 25.5,35.5 - parent: 2 - - uid: 30062 - components: - - type: Transform - pos: 26.5,35.5 - parent: 2 - - uid: 30063 - components: - - type: Transform - pos: 27.5,35.5 - parent: 2 - - uid: 30064 - components: - - type: Transform - pos: 28.5,35.5 - parent: 2 - - uid: 30065 - components: - - type: Transform - pos: 29.5,35.5 - parent: 2 - - uid: 30066 - components: - - type: Transform - pos: 30.5,35.5 - parent: 2 - - uid: 30067 - components: - - type: Transform - pos: 31.5,35.5 - parent: 2 - - uid: 30068 - components: - - type: Transform - pos: 32.5,35.5 - parent: 2 - - uid: 30069 - components: - - type: Transform - pos: 33.5,35.5 - parent: 2 - - uid: 30070 - components: - - type: Transform - pos: 34.5,35.5 - parent: 2 - - uid: 30071 - components: - - type: Transform - pos: 35.5,35.5 - parent: 2 - - uid: 30072 - components: - - type: Transform - pos: 35.5,36.5 - parent: 2 - - uid: 30073 - components: - - type: Transform - pos: 35.5,37.5 - parent: 2 - - uid: 30074 - components: - - type: Transform - pos: 34.5,37.5 - parent: 2 - - uid: 30075 - components: - - type: Transform - pos: 35.5,34.5 - parent: 2 - - uid: 30076 - components: - - type: Transform - pos: 35.5,33.5 - parent: 2 - - uid: 30077 - components: - - type: Transform - pos: 34.5,33.5 - parent: 2 - - uid: 30230 - components: - - type: Transform - pos: -0.5,-79.5 - parent: 2 - - uid: 31844 - components: - - type: Transform - pos: 8.5,19.5 - parent: 2 - - uid: 31845 - components: - - type: Transform - pos: 8.5,20.5 - parent: 2 - - uid: 31846 - components: - - type: Transform - pos: 7.5,20.5 - parent: 2 - - uid: 31847 - components: - - type: Transform - pos: 6.5,20.5 - parent: 2 - - uid: 31848 - components: - - type: Transform - pos: 6.5,21.5 - parent: 2 - - uid: 31849 - components: - - type: Transform - pos: 6.5,22.5 - parent: 2 - - uid: 31850 - components: - - type: Transform - pos: 6.5,23.5 - parent: 2 - - uid: 31851 - components: - - type: Transform - pos: 6.5,24.5 - parent: 2 - - uid: 31852 - components: - - type: Transform - pos: 6.5,25.5 - parent: 2 - - uid: 31909 - components: - - type: Transform - pos: -38.5,10.5 - parent: 2 - - uid: 31910 - components: - - type: Transform - pos: -40.5,10.5 - parent: 2 - - uid: 31912 - components: - - type: Transform - pos: -39.5,10.5 - parent: 2 - - uid: 31913 - components: - - type: Transform - pos: -40.5,11.5 - parent: 2 - - uid: 31914 - components: - - type: Transform - pos: -40.5,12.5 - parent: 2 - - uid: 31915 - components: - - type: Transform - pos: -41.5,12.5 - parent: 2 - - uid: 31916 - components: - - type: Transform - pos: -42.5,12.5 - parent: 2 -- proto: CableHVStack - entities: - - uid: 7567 - components: - - type: Transform - pos: -51.3663,-6.2590327 - parent: 2 - - uid: 7568 - components: - - type: Transform - pos: -51.3663,-6.2590327 - parent: 2 - - uid: 7569 - components: - - type: Transform - pos: -51.3663,-6.2590327 - parent: 2 - - uid: 7571 - components: - - type: Transform - pos: -46.676056,3.7484043 - parent: 2 - - uid: 7572 - components: - - type: Transform - pos: -65.73044,14.545363 - parent: 2 - - uid: 7573 - components: - - type: Transform - pos: -28.452747,-54.81669 - parent: 2 - - uid: 7574 - components: - - type: Transform - pos: -8.716513,-35.166092 - parent: 2 - - uid: 7575 - components: - - type: Transform - pos: -8.747763,-37.275467 - parent: 2 - - uid: 7576 - components: - - type: Transform - pos: 47.727077,-68.63297 - parent: 2 - - uid: 7577 - components: - - type: Transform - pos: 78.323975,-64.10042 - parent: 2 - - uid: 7579 - components: - - type: Transform - pos: -16.544006,7.6092176 - parent: 2 - - uid: 7580 - components: - - type: Transform - pos: -2.3493428,-71.53375 - parent: 2 - - uid: 22459 - components: - - type: Transform - pos: -47.56485,-61.466362 - parent: 2 - - uid: 25137 - components: - - type: Transform - pos: -10.5812645,-72.303535 - parent: 2 - - uid: 29414 - components: - - type: Transform - pos: -49.51014,31.221733 - parent: 2 - - uid: 29422 - components: - - type: Transform - pos: 81.50068,-76.7152 - parent: 2 -- proto: CableMV - entities: - - uid: 38 - components: - - type: Transform - pos: -23.5,-15.5 - parent: 2 - - uid: 151 - components: - - type: Transform - pos: 12.5,8.5 - parent: 2 - - uid: 303 - components: - - type: Transform - pos: 24.5,28.5 - parent: 2 - - uid: 397 - components: - - type: Transform - pos: 68.5,6.5 - parent: 2 - - uid: 426 - components: - - type: Transform - pos: -8.5,30.5 - parent: 2 - - uid: 746 - components: - - type: Transform - pos: -22.5,-69.5 - parent: 2 - - uid: 816 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 2 - - uid: 908 - components: - - type: Transform - pos: -66.5,16.5 - parent: 2 - - uid: 929 - components: - - type: Transform - pos: 11.5,-73.5 - parent: 2 - - uid: 936 - components: - - type: Transform - pos: -23.5,-18.5 - parent: 2 - - uid: 937 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 2 - - uid: 989 - components: - - type: Transform - pos: -21.5,-23.5 - parent: 2 - - uid: 1036 - components: - - type: Transform - pos: 20.5,11.5 - parent: 2 - - uid: 1098 - components: - - type: Transform - pos: 15.5,9.5 - parent: 2 - - uid: 1274 - components: - - type: Transform - pos: -16.5,27.5 - parent: 2 - - uid: 1283 - components: - - type: Transform - pos: -17.5,27.5 - parent: 2 - - uid: 1284 - components: - - type: Transform - pos: -17.5,26.5 - parent: 2 - - uid: 1374 - components: - - type: Transform - pos: 20.5,10.5 - parent: 2 - - uid: 1553 - components: - - type: Transform - pos: -21.5,-19.5 - parent: 2 - - uid: 1554 - components: - - type: Transform - pos: -22.5,-24.5 - parent: 2 - - uid: 1557 - components: - - type: Transform - pos: -26.5,-24.5 - parent: 2 - - uid: 1559 - components: - - type: Transform - pos: -21.5,-21.5 - parent: 2 - - uid: 1812 - components: - - type: Transform - pos: 14.5,9.5 - parent: 2 - - uid: 1927 - components: - - type: Transform - pos: 12.5,28.5 - parent: 2 - - uid: 1930 - components: - - type: Transform - pos: 12.5,27.5 - parent: 2 - - uid: 1932 - components: - - type: Transform - pos: 12.5,29.5 - parent: 2 - - uid: 2210 - components: - - type: Transform - pos: 13.5,-35.5 - parent: 2 - - uid: 2675 - components: - - type: Transform - pos: -29.5,12.5 - parent: 2 - - uid: 2985 - components: - - type: Transform - pos: 68.5,-23.5 - parent: 2 - - uid: 3050 - components: - - type: Transform - pos: -66.5,17.5 - parent: 2 - - uid: 3292 - components: - - type: Transform - pos: -25.5,12.5 - parent: 2 - - uid: 3299 - components: - - type: Transform - pos: -24.5,12.5 - parent: 2 - - uid: 3300 - components: - - type: Transform - pos: -23.5,12.5 - parent: 2 - - uid: 3301 - components: - - type: Transform - pos: -30.5,12.5 - parent: 2 - - uid: 3302 - components: - - type: Transform - pos: -27.5,12.5 - parent: 2 - - uid: 3303 - components: - - type: Transform - pos: -28.5,12.5 - parent: 2 - - uid: 3304 - components: - - type: Transform - pos: -26.5,12.5 - parent: 2 - - uid: 3473 - components: - - type: Transform - pos: 14.5,-35.5 - parent: 2 - - uid: 3642 - components: - - type: Transform - pos: -21.5,-20.5 - parent: 2 - - uid: 3901 - components: - - type: Transform - pos: 36.5,-33.5 - parent: 2 - - uid: 3926 - components: - - type: Transform - pos: -22.5,-19.5 - parent: 2 - - uid: 3927 - components: - - type: Transform - pos: -23.5,-16.5 - parent: 2 - - uid: 3928 - components: - - type: Transform - pos: -21.5,-22.5 - parent: 2 - - uid: 3982 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 2 - - uid: 4105 - components: - - type: Transform - pos: -23.5,-19.5 - parent: 2 - - uid: 4124 - components: - - type: Transform - pos: -23.5,-24.5 - parent: 2 - - uid: 4242 - components: - - type: Transform - pos: 38.5,-39.5 - parent: 2 - - uid: 4288 - components: - - type: Transform - pos: 39.5,-39.5 - parent: 2 - - uid: 4359 - components: - - type: Transform - pos: 1.5,-69.5 - parent: 2 - - uid: 4360 - components: - - type: Transform - pos: 0.5,-69.5 - parent: 2 - - uid: 5242 - components: - - type: Transform - pos: 78.5,-34.5 - parent: 2 - - uid: 5243 - components: - - type: Transform - pos: 79.5,-33.5 - parent: 2 - - uid: 5245 - components: - - type: Transform - pos: 78.5,-38.5 - parent: 2 - - uid: 5251 - components: - - type: Transform - pos: 78.5,-36.5 - parent: 2 - - uid: 5252 - components: - - type: Transform - pos: 78.5,-40.5 - parent: 2 - - uid: 5289 - components: - - type: Transform - pos: 61.5,-32.5 - parent: 2 - - uid: 5290 - components: - - type: Transform - pos: 61.5,-33.5 - parent: 2 - - uid: 5401 - components: - - type: Transform - pos: 58.5,-29.5 - parent: 2 - - uid: 5409 - components: - - type: Transform - pos: 61.5,-34.5 - parent: 2 - - uid: 5462 - components: - - type: Transform - pos: 80.5,-33.5 - parent: 2 - - uid: 5463 - components: - - type: Transform - pos: -10.5,39.5 - parent: 2 - - uid: 5474 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 2 - - uid: 5575 - components: - - type: Transform - pos: -8.5,-80.5 - parent: 2 - - uid: 5611 - components: - - type: Transform - pos: 78.5,-39.5 - parent: 2 - - uid: 5618 - components: - - type: Transform - pos: -10.5,37.5 - parent: 2 - - uid: 5619 - components: - - type: Transform - pos: 12.5,5.5 - parent: 2 - - uid: 5620 - components: - - type: Transform - pos: 12.5,6.5 - parent: 2 - - uid: 5669 - components: - - type: Transform - pos: -10.5,36.5 - parent: 2 - - uid: 5698 - components: - - type: Transform - pos: 12.5,7.5 - parent: 2 - - uid: 5714 - components: - - type: Transform - pos: 78.5,-35.5 - parent: 2 - - uid: 5791 - components: - - type: Transform - pos: 78.5,-37.5 - parent: 2 - - uid: 6120 - components: - - type: Transform - pos: -5.5,-64.5 - parent: 2 - - uid: 6236 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 2 - - uid: 6241 - components: - - type: Transform - pos: 78.5,-33.5 - parent: 2 - - uid: 6536 - components: - - type: Transform - pos: 17.5,9.5 - parent: 2 - - uid: 6562 - components: - - type: Transform - pos: 9.5,-35.5 - parent: 2 - - uid: 6564 - components: - - type: Transform - pos: 11.5,-35.5 - parent: 2 - - uid: 6696 - components: - - type: Transform - pos: 9.5,-36.5 - parent: 2 - - uid: 6701 - components: - - type: Transform - pos: 18.5,9.5 - parent: 2 - - uid: 6702 - components: - - type: Transform - pos: 19.5,9.5 - parent: 2 - - uid: 6721 - components: - - type: Transform - pos: 12.5,4.5 - parent: 2 - - uid: 6774 - components: - - type: Transform - pos: -23.5,11.5 - parent: 2 - - uid: 7151 - components: - - type: Transform - pos: -12.5,-67.5 - parent: 2 - - uid: 7229 - components: - - type: Transform - pos: -7.5,-80.5 - parent: 2 - - uid: 7230 - components: - - type: Transform - pos: -15.5,-78.5 - parent: 2 - - uid: 7232 - components: - - type: Transform - pos: -14.5,-78.5 - parent: 2 - - uid: 7264 - components: - - type: Transform - pos: -12.5,-68.5 - parent: 2 - - uid: 7471 - components: - - type: Transform - pos: -8.5,35.5 - parent: 2 - - uid: 7473 - components: - - type: Transform - pos: -10.5,35.5 - parent: 2 - - uid: 7474 - components: - - type: Transform - pos: -8.5,34.5 - parent: 2 - - uid: 7475 - components: - - type: Transform - pos: -8.5,32.5 - parent: 2 - - uid: 7476 - components: - - type: Transform - pos: -10.5,38.5 - parent: 2 - - uid: 7530 - components: - - type: Transform - pos: -16.5,-78.5 - parent: 2 - - uid: 7533 - components: - - type: Transform - pos: -10.5,-69.5 - parent: 2 - - uid: 7540 - components: - - type: Transform - pos: 9.5,-80.5 - parent: 2 - - uid: 7548 - components: - - type: Transform - pos: -8.5,-81.5 - parent: 2 - - uid: 7581 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 2 - - uid: 7582 - components: - - type: Transform - pos: -48.5,13.5 - parent: 2 - - uid: 7583 - components: - - type: Transform - pos: -49.5,17.5 - parent: 2 - - uid: 7584 - components: - - type: Transform - pos: -48.5,14.5 - parent: 2 - - uid: 7586 - components: - - type: Transform - pos: -62.5,14.5 - parent: 2 - - uid: 7587 - components: - - type: Transform - pos: -63.5,14.5 - parent: 2 - - uid: 7590 - components: - - type: Transform - pos: 30.5,4.5 - parent: 2 - - uid: 7591 - components: - - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 7592 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 2 - - uid: 7593 - components: - - type: Transform - pos: 33.5,22.5 - parent: 2 - - uid: 7594 - components: - - type: Transform - pos: 21.5,35.5 - parent: 2 - - uid: 7596 - components: - - type: Transform - pos: -17.5,-40.5 - parent: 2 - - uid: 7597 - components: - - type: Transform - pos: -17.5,-37.5 - parent: 2 - - uid: 7598 - components: - - type: Transform - pos: 70.5,2.5 - parent: 2 - - uid: 7599 - components: - - type: Transform - pos: -21.5,-35.5 - parent: 2 - - uid: 7605 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 2 - - uid: 7606 - components: - - type: Transform - pos: 39.5,21.5 - parent: 2 - - uid: 7607 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 2 - - uid: 7608 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 2 - - uid: 7609 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 2 - - uid: 7610 - components: - - type: Transform - pos: 46.5,-64.5 - parent: 2 - - uid: 7612 - components: - - type: Transform - pos: 28.5,3.5 - parent: 2 - - uid: 7613 - components: - - type: Transform - pos: 69.5,4.5 - parent: 2 - - uid: 7617 - components: - - type: Transform - pos: 23.5,32.5 - parent: 2 - - uid: 7618 - components: - - type: Transform - pos: 21.5,32.5 - parent: 2 - - uid: 7620 - components: - - type: Transform - pos: -34.5,-28.5 - parent: 2 - - uid: 7621 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 2 - - uid: 7622 - components: - - type: Transform - pos: 22.5,-22.5 - parent: 2 - - uid: 7623 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 2 - - uid: 7624 - components: - - type: Transform - pos: -36.5,-26.5 - parent: 2 - - uid: 7625 - components: - - type: Transform - pos: -36.5,-25.5 - parent: 2 - - uid: 7626 - components: - - type: Transform - pos: -37.5,-25.5 - parent: 2 - - uid: 7627 - components: - - type: Transform - pos: -20.5,-68.5 - parent: 2 - - uid: 7628 - components: - - type: Transform - pos: 9.5,-69.5 - parent: 2 - - uid: 7631 - components: - - type: Transform - pos: -15.5,-69.5 - parent: 2 - - uid: 7633 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 2 - - uid: 7634 - components: - - type: Transform - pos: -16.5,1.5 - parent: 2 - - uid: 7638 - components: - - type: Transform - pos: 0.5,-60.5 - parent: 2 - - uid: 7639 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 2 - - uid: 7640 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 2 - - uid: 7641 - components: - - type: Transform - pos: 11.5,-26.5 - parent: 2 - - uid: 7644 - components: - - type: Transform - pos: 25.5,3.5 - parent: 2 - - uid: 7645 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 2 - - uid: 7647 - components: - - type: Transform - pos: -9.5,-12.5 - parent: 2 - - uid: 7648 - components: - - type: Transform - pos: -11.5,-12.5 - parent: 2 - - uid: 7649 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 2 - - uid: 7650 - components: - - type: Transform - pos: -10.5,-12.5 - parent: 2 - - uid: 7652 - components: - - type: Transform - pos: 56.5,-1.5 - parent: 2 - - uid: 7653 - components: - - type: Transform - pos: 55.5,-0.5 - parent: 2 - - uid: 7654 - components: - - type: Transform - pos: -12.5,28.5 - parent: 2 - - uid: 7655 - components: - - type: Transform - pos: -12.5,27.5 - parent: 2 - - uid: 7656 - components: - - type: Transform - pos: 11.5,-27.5 - parent: 2 - - uid: 7658 - components: - - type: Transform - pos: 46.5,-22.5 - parent: 2 - - uid: 7659 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 2 - - uid: 7661 - components: - - type: Transform - pos: 28.5,0.5 - parent: 2 - - uid: 7663 - components: - - type: Transform - pos: 48.5,-2.5 - parent: 2 - - uid: 7664 - components: - - type: Transform - pos: 48.5,-1.5 - parent: 2 - - uid: 7665 - components: - - type: Transform - pos: 48.5,-0.5 - parent: 2 - - uid: 7666 - components: - - type: Transform - pos: 46.5,0.5 - parent: 2 - - uid: 7667 - components: - - type: Transform - pos: 47.5,-0.5 - parent: 2 - - uid: 7668 - components: - - type: Transform - pos: -10.5,31.5 - parent: 2 - - uid: 7669 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 2 - - uid: 7670 - components: - - type: Transform - pos: 4.5,-14.5 - parent: 2 - - uid: 7671 - components: - - type: Transform - pos: -28.5,-64.5 - parent: 2 - - uid: 7672 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 2 - - uid: 7673 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 2 - - uid: 7674 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 2 - - uid: 7675 - components: - - type: Transform - pos: -13.5,-16.5 - parent: 2 - - uid: 7676 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 2 - - uid: 7677 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 2 - - uid: 7678 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 2 - - uid: 7679 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 2 - - uid: 7680 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 2 - - uid: 7681 - components: - - type: Transform - pos: -7.5,-13.5 - parent: 2 - - uid: 7682 - components: - - type: Transform - pos: -7.5,-12.5 - parent: 2 - - uid: 7683 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 2 - - uid: 7684 - components: - - type: Transform - pos: -7.5,-10.5 - parent: 2 - - uid: 7685 - components: - - type: Transform - pos: -7.5,-9.5 - parent: 2 - - uid: 7686 - components: - - type: Transform - pos: -7.5,-8.5 - parent: 2 - - uid: 7687 - components: - - type: Transform - pos: -6.5,-8.5 - parent: 2 - - uid: 7688 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 2 - - uid: 7689 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 2 - - uid: 7690 - components: - - type: Transform - pos: -3.5,-8.5 - parent: 2 - - uid: 7691 - components: - - type: Transform - pos: -2.5,-8.5 - parent: 2 - - uid: 7692 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 2 - - uid: 7693 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 2 - - uid: 7694 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 2 - - uid: 7695 - components: - - type: Transform - pos: 2.5,-8.5 - parent: 2 - - uid: 7696 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 2 - - uid: 7698 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 2 - - uid: 7699 - components: - - type: Transform - pos: -7.5,-17.5 - parent: 2 - - uid: 7700 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 2 - - uid: 7701 - components: - - type: Transform - pos: -7.5,-19.5 - parent: 2 - - uid: 7702 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 2 - - uid: 7703 - components: - - type: Transform - pos: -7.5,-21.5 - parent: 2 - - uid: 7704 - components: - - type: Transform - pos: -7.5,-22.5 - parent: 2 - - uid: 7705 - components: - - type: Transform - pos: -6.5,-22.5 - parent: 2 - - uid: 7706 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 2 - - uid: 7707 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 2 - - uid: 7708 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 2 - - uid: 7709 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 2 - - uid: 7710 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 2 - - uid: 7711 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 2 - - uid: 7712 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 2 - - uid: 7713 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 2 - - uid: 7714 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 2 - - uid: 7715 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 2 - - uid: 7716 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 2 - - uid: 7717 - components: - - type: Transform - pos: 5.5,-16.5 - parent: 2 - - uid: 7718 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 2 - - uid: 7719 - components: - - type: Transform - pos: 7.5,-17.5 - parent: 2 - - uid: 7720 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 2 - - uid: 7721 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 2 - - uid: 7722 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 2 - - uid: 7723 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 2 - - uid: 7724 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 2 - - uid: 7725 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 2 - - uid: 7726 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 2 - - uid: 7727 - components: - - type: Transform - pos: 11.5,-18.5 - parent: 2 - - uid: 7728 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 2 - - uid: 7729 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 2 - - uid: 7730 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 2 - - uid: 7731 - components: - - type: Transform - pos: 12.5,-21.5 - parent: 2 - - uid: 7732 - components: - - type: Transform - pos: 12.5,-22.5 - parent: 2 - - uid: 7733 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 2 - - uid: 7734 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 2 - - uid: 7735 - components: - - type: Transform - pos: 12.5,-25.5 - parent: 2 - - uid: 7739 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 2 - - uid: 7741 - components: - - type: Transform - pos: -0.5,-58.5 - parent: 2 - - uid: 7754 - components: - - type: Transform - pos: 13.5,4.5 - parent: 2 - - uid: 7761 - components: - - type: Transform - pos: 40.5,11.5 - parent: 2 - - uid: 7762 - components: - - type: Transform - pos: 41.5,11.5 - parent: 2 - - uid: 7763 - components: - - type: Transform - pos: 42.5,11.5 - parent: 2 - - uid: 7764 - components: - - type: Transform - pos: 43.5,11.5 - parent: 2 - - uid: 7765 - components: - - type: Transform - pos: 44.5,11.5 - parent: 2 - - uid: 7766 - components: - - type: Transform - pos: 45.5,11.5 - parent: 2 - - uid: 7770 - components: - - type: Transform - pos: 20.5,12.5 - parent: 2 - - uid: 7778 - components: - - type: Transform - pos: 20.5,32.5 - parent: 2 - - uid: 7780 - components: - - type: Transform - pos: 39.5,20.5 - parent: 2 - - uid: 7782 - components: - - type: Transform - pos: 27.5,29.5 - parent: 2 - - uid: 7785 - components: - - type: Transform - pos: 16.5,9.5 - parent: 2 - - uid: 7786 - components: - - type: Transform - pos: 3.5,-52.5 - parent: 2 - - uid: 7787 - components: - - type: Transform - pos: 3.5,-53.5 - parent: 2 - - uid: 7788 - components: - - type: Transform - pos: 3.5,-55.5 - parent: 2 - - uid: 7789 - components: - - type: Transform - pos: 3.5,-49.5 - parent: 2 - - uid: 7790 - components: - - type: Transform - pos: 3.5,-48.5 - parent: 2 - - uid: 7791 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 2 - - uid: 7792 - components: - - type: Transform - pos: 43.5,7.5 - parent: 2 - - uid: 7793 - components: - - type: Transform - pos: 42.5,7.5 - parent: 2 - - uid: 7794 - components: - - type: Transform - pos: 42.5,6.5 - parent: 2 - - uid: 7795 - components: - - type: Transform - pos: 42.5,5.5 - parent: 2 - - uid: 7796 - components: - - type: Transform - pos: 42.5,4.5 - parent: 2 - - uid: 7797 - components: - - type: Transform - pos: 42.5,3.5 - parent: 2 - - uid: 7798 - components: - - type: Transform - pos: 40.5,3.5 - parent: 2 - - uid: 7799 - components: - - type: Transform - pos: 38.5,3.5 - parent: 2 - - uid: 7800 - components: - - type: Transform - pos: 36.5,3.5 - parent: 2 - - uid: 7801 - components: - - type: Transform - pos: 34.5,3.5 - parent: 2 - - uid: 7802 - components: - - type: Transform - pos: 32.5,3.5 - parent: 2 - - uid: 7803 - components: - - type: Transform - pos: 30.5,3.5 - parent: 2 - - uid: 7805 - components: - - type: Transform - pos: 24.5,9.5 - parent: 2 - - uid: 7806 - components: - - type: Transform - pos: 29.5,-1.5 - parent: 2 - - uid: 7807 - components: - - type: Transform - pos: -36.5,-28.5 - parent: 2 - - uid: 7808 - components: - - type: Transform - pos: 32.5,-3.5 - parent: 2 - - uid: 7809 - components: - - type: Transform - pos: 36.5,-4.5 - parent: 2 - - uid: 7810 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 2 - - uid: 7811 - components: - - type: Transform - pos: 40.5,15.5 - parent: 2 - - uid: 7812 - components: - - type: Transform - pos: -18.5,-47.5 - parent: 2 - - uid: 7813 - components: - - type: Transform - pos: -17.5,-41.5 - parent: 2 - - uid: 7814 - components: - - type: Transform - pos: -18.5,-48.5 - parent: 2 - - uid: 7815 - components: - - type: Transform - pos: 48.5,-3.5 - parent: 2 - - uid: 7816 - components: - - type: Transform - pos: 43.5,12.5 - parent: 2 - - uid: 7817 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 7818 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 2 - - uid: 7819 - components: - - type: Transform - pos: 38.5,11.5 - parent: 2 - - uid: 7820 - components: - - type: Transform - pos: -17.5,-43.5 - parent: 2 - - uid: 7821 - components: - - type: Transform - pos: 60.5,-23.5 - parent: 2 - - uid: 7822 - components: - - type: Transform - pos: 61.5,1.5 - parent: 2 - - uid: 7823 - components: - - type: Transform - pos: -17.5,-46.5 - parent: 2 - - uid: 7824 - components: - - type: Transform - pos: -17.5,-47.5 - parent: 2 - - uid: 7825 - components: - - type: Transform - pos: -17.5,-42.5 - parent: 2 - - uid: 7826 - components: - - type: Transform - pos: -17.5,-45.5 - parent: 2 - - uid: 7827 - components: - - type: Transform - pos: 46.5,-0.5 - parent: 2 - - uid: 7828 - components: - - type: Transform - pos: -17.5,-44.5 - parent: 2 - - uid: 7829 - components: - - type: Transform - pos: 47.5,-3.5 - parent: 2 - - uid: 7830 - components: - - type: Transform - pos: 46.5,-3.5 - parent: 2 - - uid: 7831 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 2 - - uid: 7832 - components: - - type: Transform - pos: 45.5,-3.5 - parent: 2 - - uid: 7833 - components: - - type: Transform - pos: 12.5,-28.5 - parent: 2 - - uid: 7834 - components: - - type: Transform - pos: -11.5,-19.5 - parent: 2 - - uid: 7835 - components: - - type: Transform - pos: 24.5,0.5 - parent: 2 - - uid: 7836 - components: - - type: Transform - pos: 36.5,25.5 - parent: 2 - - uid: 7837 - components: - - type: Transform - pos: 41.5,15.5 - parent: 2 - - uid: 7838 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 7839 - components: - - type: Transform - pos: 33.5,24.5 - parent: 2 - - uid: 7841 - components: - - type: Transform - pos: 40.5,10.5 - parent: 2 - - uid: 7842 - components: - - type: Transform - pos: 38.5,10.5 - parent: 2 - - uid: 7846 - components: - - type: Transform - pos: 22.5,32.5 - parent: 2 - - uid: 7847 - components: - - type: Transform - pos: 19.5,32.5 - parent: 2 - - uid: 7848 - components: - - type: Transform - pos: 17.5,34.5 - parent: 2 - - uid: 7855 - components: - - type: Transform - pos: -12.5,29.5 - parent: 2 - - uid: 7857 - components: - - type: Transform - pos: 3.5,-45.5 - parent: 2 - - uid: 7858 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 2 - - uid: 7859 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 2 - - uid: 7861 - components: - - type: Transform - pos: 3.5,-44.5 - parent: 2 - - uid: 7862 - components: - - type: Transform - pos: 3.5,-42.5 - parent: 2 - - uid: 7863 - components: - - type: Transform - pos: 46.5,1.5 - parent: 2 - - uid: 7864 - components: - - type: Transform - pos: 46.5,2.5 - parent: 2 - - uid: 7867 - components: - - type: Transform - pos: 11.5,27.5 - parent: 2 - - uid: 7868 - components: - - type: Transform - pos: 8.5,27.5 - parent: 2 - - uid: 7869 - components: - - type: Transform - pos: 8.5,38.5 - parent: 2 - - uid: 7870 - components: - - type: Transform - pos: 8.5,37.5 - parent: 2 - - uid: 7871 - components: - - type: Transform - pos: 8.5,36.5 - parent: 2 - - uid: 7872 - components: - - type: Transform - pos: 8.5,35.5 - parent: 2 - - uid: 7873 - components: - - type: Transform - pos: 8.5,34.5 - parent: 2 - - uid: 7874 - components: - - type: Transform - pos: 8.5,33.5 - parent: 2 - - uid: 7875 - components: - - type: Transform - pos: 8.5,32.5 - parent: 2 - - uid: 7876 - components: - - type: Transform - pos: 8.5,31.5 - parent: 2 - - uid: 7877 - components: - - type: Transform - pos: 8.5,30.5 - parent: 2 - - uid: 7878 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 - - uid: 7879 - components: - - type: Transform - pos: 10.5,27.5 - parent: 2 - - uid: 7882 - components: - - type: Transform - pos: 2.5,27.5 - parent: 2 - - uid: 7883 - components: - - type: Transform - pos: 7.5,29.5 - parent: 2 - - uid: 7884 - components: - - type: Transform - pos: 7.5,28.5 - parent: 2 - - uid: 7885 - components: - - type: Transform - pos: 7.5,27.5 - parent: 2 - - uid: 7886 - components: - - type: Transform - pos: 7.5,26.5 - parent: 2 - - uid: 7887 - components: - - type: Transform - pos: 6.5,26.5 - parent: 2 - - uid: 7888 - components: - - type: Transform - pos: 5.5,26.5 - parent: 2 - - uid: 7889 - components: - - type: Transform - pos: 4.5,26.5 - parent: 2 - - uid: 7890 - components: - - type: Transform - pos: 3.5,26.5 - parent: 2 - - uid: 7891 - components: - - type: Transform - pos: 2.5,26.5 - parent: 2 - - uid: 7892 - components: - - type: Transform - pos: 0.5,26.5 - parent: 2 - - uid: 7893 - components: - - type: Transform - pos: -0.5,26.5 - parent: 2 - - uid: 7894 - components: - - type: Transform - pos: -1.5,26.5 - parent: 2 - - uid: 7895 - components: - - type: Transform - pos: -3.5,26.5 - parent: 2 - - uid: 7898 - components: - - type: Transform - pos: 56.5,-2.5 - parent: 2 - - uid: 7899 - components: - - type: Transform - pos: -9.5,31.5 - parent: 2 - - uid: 7900 - components: - - type: Transform - pos: -12.5,30.5 - parent: 2 - - uid: 7901 - components: - - type: Transform - pos: 56.5,-0.5 - parent: 2 - - uid: 7902 - components: - - type: Transform - pos: -12.5,31.5 - parent: 2 - - uid: 7903 - components: - - type: Transform - pos: 7.5,38.5 - parent: 2 - - uid: 7904 - components: - - type: Transform - pos: 6.5,38.5 - parent: 2 - - uid: 7905 - components: - - type: Transform - pos: 5.5,38.5 - parent: 2 - - uid: 7906 - components: - - type: Transform - pos: 7.5,30.5 - parent: 2 - - uid: 7907 - components: - - type: Transform - pos: 2.5,28.5 - parent: 2 - - uid: 7908 - components: - - type: Transform - pos: 2.5,30.5 - parent: 2 - - uid: 7909 - components: - - type: Transform - pos: 2.5,29.5 - parent: 2 - - uid: 7910 - components: - - type: Transform - pos: 2.5,31.5 - parent: 2 - - uid: 7911 - components: - - type: Transform - pos: 9.5,33.5 - parent: 2 - - uid: 7912 - components: - - type: Transform - pos: 10.5,33.5 - parent: 2 - - uid: 7913 - components: - - type: Transform - pos: 11.5,33.5 - parent: 2 - - uid: 7914 - components: - - type: Transform - pos: 12.5,33.5 - parent: 2 - - uid: 7915 - components: - - type: Transform - pos: 13.5,33.5 - parent: 2 - - uid: 7916 - components: - - type: Transform - pos: 14.5,33.5 - parent: 2 - - uid: 7917 - components: - - type: Transform - pos: 15.5,33.5 - parent: 2 - - uid: 7918 - components: - - type: Transform - pos: 16.5,33.5 - parent: 2 - - uid: 7919 - components: - - type: Transform - pos: 17.5,33.5 - parent: 2 - - uid: 7920 - components: - - type: Transform - pos: 18.5,32.5 - parent: 2 - - uid: 7921 - components: - - type: Transform - pos: 14.5,34.5 - parent: 2 - - uid: 7922 - components: - - type: Transform - pos: 14.5,35.5 - parent: 2 - - uid: 7931 - components: - - type: Transform - pos: -4.5,26.5 - parent: 2 - - uid: 7932 - components: - - type: Transform - pos: -5.5,26.5 - parent: 2 - - uid: 7933 - components: - - type: Transform - pos: -7.5,26.5 - parent: 2 - - uid: 7934 - components: - - type: Transform - pos: -8.5,26.5 - parent: 2 - - uid: 7935 - components: - - type: Transform - pos: -9.5,26.5 - parent: 2 - - uid: 7936 - components: - - type: Transform - pos: -11.5,26.5 - parent: 2 - - uid: 7937 - components: - - type: Transform - pos: -12.5,26.5 - parent: 2 - - uid: 7938 - components: - - type: Transform - pos: -13.5,26.5 - parent: 2 - - uid: 7941 - components: - - type: Transform - pos: 46.5,3.5 - parent: 2 - - uid: 7942 - components: - - type: Transform - pos: -20.5,22.5 - parent: 2 - - uid: 7943 - components: - - type: Transform - pos: -19.5,22.5 - parent: 2 - - uid: 7944 - components: - - type: Transform - pos: -17.5,3.5 - parent: 2 - - uid: 7950 - components: - - type: Transform - pos: -17.5,23.5 - parent: 2 - - uid: 7951 - components: - - type: Transform - pos: -18.5,23.5 - parent: 2 - - uid: 7952 - components: - - type: Transform - pos: -19.5,23.5 - parent: 2 - - uid: 7955 - components: - - type: Transform - pos: -39.5,-30.5 - parent: 2 - - uid: 7956 - components: - - type: Transform - pos: 61.5,2.5 - parent: 2 - - uid: 7958 - components: - - type: Transform - pos: 2.5,32.5 - parent: 2 - - uid: 7959 - components: - - type: Transform - pos: 2.5,33.5 - parent: 2 - - uid: 7960 - components: - - type: Transform - pos: 1.5,33.5 - parent: 2 - - uid: 7961 - components: - - type: Transform - pos: 0.5,33.5 - parent: 2 - - uid: 7962 - components: - - type: Transform - pos: -0.5,33.5 - parent: 2 - - uid: 7963 - components: - - type: Transform - pos: -1.5,33.5 - parent: 2 - - uid: 7964 - components: - - type: Transform - pos: -1.5,34.5 - parent: 2 - - uid: 7965 - components: - - type: Transform - pos: 60.5,-21.5 - parent: 2 - - uid: 7968 - components: - - type: Transform - pos: -19.5,21.5 - parent: 2 - - uid: 7969 - components: - - type: Transform - pos: -19.5,20.5 - parent: 2 - - uid: 7970 - components: - - type: Transform - pos: -18.5,20.5 - parent: 2 - - uid: 7971 - components: - - type: Transform - pos: -17.5,20.5 - parent: 2 - - uid: 7972 - components: - - type: Transform - pos: -16.5,20.5 - parent: 2 - - uid: 7973 - components: - - type: Transform - pos: -15.5,20.5 - parent: 2 - - uid: 7974 - components: - - type: Transform - pos: -5.5,20.5 - parent: 2 - - uid: 7975 - components: - - type: Transform - pos: -6.5,20.5 - parent: 2 - - uid: 7976 - components: - - type: Transform - pos: -7.5,20.5 - parent: 2 - - uid: 7977 - components: - - type: Transform - pos: -8.5,20.5 - parent: 2 - - uid: 7978 - components: - - type: Transform - pos: -9.5,20.5 - parent: 2 - - uid: 7979 - components: - - type: Transform - pos: -10.5,20.5 - parent: 2 - - uid: 7980 - components: - - type: Transform - pos: -11.5,20.5 - parent: 2 - - uid: 7981 - components: - - type: Transform - pos: -12.5,20.5 - parent: 2 - - uid: 7982 - components: - - type: Transform - pos: -13.5,20.5 - parent: 2 - - uid: 7983 - components: - - type: Transform - pos: -14.5,20.5 - parent: 2 - - uid: 7984 - components: - - type: Transform - pos: -4.5,20.5 - parent: 2 - - uid: 7985 - components: - - type: Transform - pos: -4.5,19.5 - parent: 2 - - uid: 7988 - components: - - type: Transform - pos: 60.5,-22.5 - parent: 2 - - uid: 7989 - components: - - type: Transform - pos: 60.5,-20.5 - parent: 2 - - uid: 7990 - components: - - type: Transform - pos: -48.5,15.5 - parent: 2 - - uid: 7993 - components: - - type: Transform - pos: -40.5,10.5 - parent: 2 - - uid: 7994 - components: - - type: Transform - pos: -40.5,12.5 - parent: 2 - - uid: 7996 - components: - - type: Transform - pos: 17.5,32.5 - parent: 2 - - uid: 7997 - components: - - type: Transform - pos: -33.5,-28.5 - parent: 2 - - uid: 7998 - components: - - type: Transform - pos: 41.5,3.5 - parent: 2 - - uid: 7999 - components: - - type: Transform - pos: 39.5,3.5 - parent: 2 - - uid: 8000 - components: - - type: Transform - pos: 37.5,3.5 - parent: 2 - - uid: 8001 - components: - - type: Transform - pos: 35.5,3.5 - parent: 2 - - uid: 8002 - components: - - type: Transform - pos: 33.5,3.5 - parent: 2 - - uid: 8003 - components: - - type: Transform - pos: 31.5,3.5 - parent: 2 - - uid: 8008 - components: - - type: Transform - pos: 24.5,6.5 - parent: 2 - - uid: 8009 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 2 - - uid: 8010 - components: - - type: Transform - pos: 36.5,2.5 - parent: 2 - - uid: 8011 - components: - - type: Transform - pos: 36.5,1.5 - parent: 2 - - uid: 8012 - components: - - type: Transform - pos: 36.5,0.5 - parent: 2 - - uid: 8013 - components: - - type: Transform - pos: 36.5,-0.5 - parent: 2 - - uid: 8014 - components: - - type: Transform - pos: 36.5,-1.5 - parent: 2 - - uid: 8015 - components: - - type: Transform - pos: 36.5,-2.5 - parent: 2 - - uid: 8016 - components: - - type: Transform - pos: 36.5,-3.5 - parent: 2 - - uid: 8017 - components: - - type: Transform - pos: 37.5,-3.5 - parent: 2 - - uid: 8018 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 2 - - uid: 8019 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 2 - - uid: 8020 - components: - - type: Transform - pos: 21.5,9.5 - parent: 2 - - uid: 8022 - components: - - type: Transform - pos: 43.5,3.5 - parent: 2 - - uid: 8023 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 2 - - uid: 8026 - components: - - type: Transform - pos: 27.5,6.5 - parent: 2 - - uid: 8027 - components: - - type: Transform - pos: 3.5,-43.5 - parent: 2 - - uid: 8028 - components: - - type: Transform - pos: 44.5,3.5 - parent: 2 - - uid: 8029 - components: - - type: Transform - pos: 45.5,3.5 - parent: 2 - - uid: 8030 - components: - - type: Transform - pos: 45.5,4.5 - parent: 2 - - uid: 8031 - components: - - type: Transform - pos: 45.5,5.5 - parent: 2 - - uid: 8032 - components: - - type: Transform - pos: 45.5,6.5 - parent: 2 - - uid: 8033 - components: - - type: Transform - pos: 45.5,7.5 - parent: 2 - - uid: 8034 - components: - - type: Transform - pos: 45.5,8.5 - parent: 2 - - uid: 8035 - components: - - type: Transform - pos: 45.5,9.5 - parent: 2 - - uid: 8036 - components: - - type: Transform - pos: 45.5,10.5 - parent: 2 - - uid: 8037 - components: - - type: Transform - pos: 46.5,10.5 - parent: 2 - - uid: 8038 - components: - - type: Transform - pos: 47.5,10.5 - parent: 2 - - uid: 8039 - components: - - type: Transform - pos: 48.5,10.5 - parent: 2 - - uid: 8040 - components: - - type: Transform - pos: 49.5,10.5 - parent: 2 - - uid: 8041 - components: - - type: Transform - pos: 50.5,10.5 - parent: 2 - - uid: 8042 - components: - - type: Transform - pos: 51.5,10.5 - parent: 2 - - uid: 8043 - components: - - type: Transform - pos: 52.5,10.5 - parent: 2 - - uid: 8044 - components: - - type: Transform - pos: 53.5,10.5 - parent: 2 - - uid: 8045 - components: - - type: Transform - pos: 54.5,10.5 - parent: 2 - - uid: 8046 - components: - - type: Transform - pos: 54.5,9.5 - parent: 2 - - uid: 8047 - components: - - type: Transform - pos: 54.5,8.5 - parent: 2 - - uid: 8048 - components: - - type: Transform - pos: 54.5,7.5 - parent: 2 - - uid: 8049 - components: - - type: Transform - pos: 54.5,6.5 - parent: 2 - - uid: 8050 - components: - - type: Transform - pos: 54.5,6.5 - parent: 2 - - uid: 8051 - components: - - type: Transform - pos: 54.5,5.5 - parent: 2 - - uid: 8052 - components: - - type: Transform - pos: 54.5,4.5 - parent: 2 - - uid: 8053 - components: - - type: Transform - pos: 54.5,3.5 - parent: 2 - - uid: 8054 - components: - - type: Transform - pos: 54.5,2.5 - parent: 2 - - uid: 8055 - components: - - type: Transform - pos: 54.5,1.5 - parent: 2 - - uid: 8056 - components: - - type: Transform - pos: 54.5,0.5 - parent: 2 - - uid: 8057 - components: - - type: Transform - pos: 54.5,-0.5 - parent: 2 - - uid: 8058 - components: - - type: Transform - pos: 56.5,-3.5 - parent: 2 - - uid: 8060 - components: - - type: Transform - pos: 55.5,5.5 - parent: 2 - - uid: 8061 - components: - - type: Transform - pos: 56.5,5.5 - parent: 2 - - uid: 8062 - components: - - type: Transform - pos: 57.5,5.5 - parent: 2 - - uid: 8063 - components: - - type: Transform - pos: 58.5,5.5 - parent: 2 - - uid: 8064 - components: - - type: Transform - pos: 59.5,5.5 - parent: 2 - - uid: 8065 - components: - - type: Transform - pos: 60.5,5.5 - parent: 2 - - uid: 8066 - components: - - type: Transform - pos: 61.5,5.5 - parent: 2 - - uid: 8067 - components: - - type: Transform - pos: 61.5,4.5 - parent: 2 - - uid: 8068 - components: - - type: Transform - pos: 61.5,3.5 - parent: 2 - - uid: 8070 - components: - - type: Transform - pos: 3.5,-46.5 - parent: 2 - - uid: 8071 - components: - - type: Transform - pos: 4.5,-52.5 - parent: 2 - - uid: 8072 - components: - - type: Transform - pos: 62.5,5.5 - parent: 2 - - uid: 8073 - components: - - type: Transform - pos: 63.5,5.5 - parent: 2 - - uid: 8074 - components: - - type: Transform - pos: 64.5,5.5 - parent: 2 - - uid: 8075 - components: - - type: Transform - pos: 65.5,5.5 - parent: 2 - - uid: 8076 - components: - - type: Transform - pos: 66.5,5.5 - parent: 2 - - uid: 8079 - components: - - type: Transform - pos: 69.5,5.5 - parent: 2 - - uid: 8080 - components: - - type: Transform - pos: 69.5,3.5 - parent: 2 - - uid: 8081 - components: - - type: Transform - pos: 26.5,6.5 - parent: 2 - - uid: 8082 - components: - - type: Transform - pos: 55.5,10.5 - parent: 2 - - uid: 8083 - components: - - type: Transform - pos: 56.5,10.5 - parent: 2 - - uid: 8084 - components: - - type: Transform - pos: 57.5,10.5 - parent: 2 - - uid: 8085 - components: - - type: Transform - pos: 58.5,10.5 - parent: 2 - - uid: 8086 - components: - - type: Transform - pos: 59.5,10.5 - parent: 2 - - uid: 8087 - components: - - type: Transform - pos: 59.5,11.5 - parent: 2 - - uid: 8088 - components: - - type: Transform - pos: 59.5,12.5 - parent: 2 - - uid: 8089 - components: - - type: Transform - pos: 59.5,13.5 - parent: 2 - - uid: 8090 - components: - - type: Transform - pos: 60.5,13.5 - parent: 2 - - uid: 8091 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 - - uid: 8092 - components: - - type: Transform - pos: 61.5,14.5 - parent: 2 - - uid: 8093 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 8094 - components: - - type: Transform - pos: 63.5,14.5 - parent: 2 - - uid: 8095 - components: - - type: Transform - pos: 64.5,14.5 - parent: 2 - - uid: 8096 - components: - - type: Transform - pos: 65.5,14.5 - parent: 2 - - uid: 8097 - components: - - type: Transform - pos: 65.5,15.5 - parent: 2 - - uid: 8101 - components: - - type: Transform - pos: 41.5,5.5 - parent: 2 - - uid: 8102 - components: - - type: Transform - pos: 21.5,6.5 - parent: 2 - - uid: 8103 - components: - - type: Transform - pos: 20.5,9.5 - parent: 2 - - uid: 8104 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 2 - - uid: 8105 - components: - - type: Transform - pos: -17.5,9.5 - parent: 2 - - uid: 8106 - components: - - type: Transform - pos: -17.5,8.5 - parent: 2 - - uid: 8107 - components: - - type: Transform - pos: 58.5,13.5 - parent: 2 - - uid: 8108 - components: - - type: Transform - pos: 57.5,13.5 - parent: 2 - - uid: 8109 - components: - - type: Transform - pos: 56.5,13.5 - parent: 2 - - uid: 8110 - components: - - type: Transform - pos: 55.5,13.5 - parent: 2 - - uid: 8111 - components: - - type: Transform - pos: 54.5,13.5 - parent: 2 - - uid: 8112 - components: - - type: Transform - pos: 53.5,13.5 - parent: 2 - - uid: 8113 - components: - - type: Transform - pos: 52.5,13.5 - parent: 2 - - uid: 8114 - components: - - type: Transform - pos: 51.5,13.5 - parent: 2 - - uid: 8115 - components: - - type: Transform - pos: 50.5,13.5 - parent: 2 - - uid: 8116 - components: - - type: Transform - pos: 49.5,13.5 - parent: 2 - - uid: 8117 - components: - - type: Transform - pos: 48.5,13.5 - parent: 2 - - uid: 8118 - components: - - type: Transform - pos: 47.5,13.5 - parent: 2 - - uid: 8119 - components: - - type: Transform - pos: 47.5,14.5 - parent: 2 - - uid: 8120 - components: - - type: Transform - pos: 47.5,15.5 - parent: 2 - - uid: 8121 - components: - - type: Transform - pos: 47.5,16.5 - parent: 2 - - uid: 8122 - components: - - type: Transform - pos: 47.5,17.5 - parent: 2 - - uid: 8123 - components: - - type: Transform - pos: 47.5,18.5 - parent: 2 - - uid: 8124 - components: - - type: Transform - pos: 46.5,18.5 - parent: 2 - - uid: 8125 - components: - - type: Transform - pos: 46.5,19.5 - parent: 2 - - uid: 8126 - components: - - type: Transform - pos: 45.5,19.5 - parent: 2 - - uid: 8145 - components: - - type: Transform - pos: -17.5,10.5 - parent: 2 - - uid: 8146 - components: - - type: Transform - pos: -18.5,10.5 - parent: 2 - - uid: 8147 - components: - - type: Transform - pos: -19.5,10.5 - parent: 2 - - uid: 8148 - components: - - type: Transform - pos: -20.5,10.5 - parent: 2 - - uid: 8149 - components: - - type: Transform - pos: -21.5,10.5 - parent: 2 - - uid: 8150 - components: - - type: Transform - pos: -22.5,10.5 - parent: 2 - - uid: 8151 - components: - - type: Transform - pos: -23.5,10.5 - parent: 2 - - uid: 8166 - components: - - type: Transform - pos: -25.5,-1.5 - parent: 2 - - uid: 8167 - components: - - type: Transform - pos: -26.5,-1.5 - parent: 2 - - uid: 8168 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 2 - - uid: 8169 - components: - - type: Transform - pos: -28.5,-1.5 - parent: 2 - - uid: 8170 - components: - - type: Transform - pos: -29.5,-1.5 - parent: 2 - - uid: 8171 - components: - - type: Transform - pos: -30.5,-1.5 - parent: 2 - - uid: 8173 - components: - - type: Transform - pos: -37.5,12.5 - parent: 2 - - uid: 8195 - components: - - type: Transform - pos: -45.5,12.5 - parent: 2 - - uid: 8196 - components: - - type: Transform - pos: -43.5,12.5 - parent: 2 - - uid: 8197 - components: - - type: Transform - pos: -43.5,10.5 - parent: 2 - - uid: 8198 - components: - - type: Transform - pos: -44.5,9.5 - parent: 2 - - uid: 8199 - components: - - type: Transform - pos: -46.5,12.5 - parent: 2 - - uid: 8200 - components: - - type: Transform - pos: -42.5,12.5 - parent: 2 - - uid: 8201 - components: - - type: Transform - pos: -41.5,12.5 - parent: 2 - - uid: 8202 - components: - - type: Transform - pos: -39.5,10.5 - parent: 2 - - uid: 8203 - components: - - type: Transform - pos: -40.5,11.5 - parent: 2 - - uid: 8204 - components: - - type: Transform - pos: -43.5,7.5 - parent: 2 - - uid: 8205 - components: - - type: Transform - pos: -42.5,7.5 - parent: 2 - - uid: 8206 - components: - - type: Transform - pos: -41.5,7.5 - parent: 2 - - uid: 8207 - components: - - type: Transform - pos: -40.5,7.5 - parent: 2 - - uid: 8208 - components: - - type: Transform - pos: -39.5,7.5 - parent: 2 - - uid: 8209 - components: - - type: Transform - pos: -38.5,7.5 - parent: 2 - - uid: 8210 - components: - - type: Transform - pos: -38.5,8.5 - parent: 2 - - uid: 8211 - components: - - type: Transform - pos: -38.5,9.5 - parent: 2 - - uid: 8212 - components: - - type: Transform - pos: -38.5,10.5 - parent: 2 - - uid: 8225 - components: - - type: Transform - pos: -43.5,6.5 - parent: 2 - - uid: 8226 - components: - - type: Transform - pos: -57.5,6.5 - parent: 2 - - uid: 8227 - components: - - type: Transform - pos: -57.5,7.5 - parent: 2 - - uid: 8228 - components: - - type: Transform - pos: -57.5,8.5 - parent: 2 - - uid: 8229 - components: - - type: Transform - pos: -58.5,8.5 - parent: 2 - - uid: 8230 - components: - - type: Transform - pos: -59.5,8.5 - parent: 2 - - uid: 8231 - components: - - type: Transform - pos: -60.5,8.5 - parent: 2 - - uid: 8232 - components: - - type: Transform - pos: -61.5,8.5 - parent: 2 - - uid: 8233 - components: - - type: Transform - pos: -61.5,9.5 - parent: 2 - - uid: 8234 - components: - - type: Transform - pos: -61.5,10.5 - parent: 2 - - uid: 8235 - components: - - type: Transform - pos: -61.5,11.5 - parent: 2 - - uid: 8236 - components: - - type: Transform - pos: -61.5,12.5 - parent: 2 - - uid: 8237 - components: - - type: Transform - pos: -61.5,13.5 - parent: 2 - - uid: 8238 - components: - - type: Transform - pos: -61.5,14.5 - parent: 2 - - uid: 8239 - components: - - type: Transform - pos: -60.5,14.5 - parent: 2 - - uid: 8240 - components: - - type: Transform - pos: -48.5,17.5 - parent: 2 - - uid: 8241 - components: - - type: Transform - pos: -47.5,13.5 - parent: 2 - - uid: 8242 - components: - - type: Transform - pos: -47.5,12.5 - parent: 2 - - uid: 8243 - components: - - type: Transform - pos: -47.5,11.5 - parent: 2 - - uid: 8244 - components: - - type: Transform - pos: -47.5,10.5 - parent: 2 - - uid: 8245 - components: - - type: Transform - pos: -47.5,9.5 - parent: 2 - - uid: 8246 - components: - - type: Transform - pos: -46.5,9.5 - parent: 2 - - uid: 8247 - components: - - type: Transform - pos: -46.5,7.5 - parent: 2 - - uid: 8248 - components: - - type: Transform - pos: -46.5,8.5 - parent: 2 - - uid: 8249 - components: - - type: Transform - pos: -45.5,7.5 - parent: 2 - - uid: 8250 - components: - - type: Transform - pos: -44.5,7.5 - parent: 2 - - uid: 8253 - components: - - type: Transform - pos: -30.5,-2.5 - parent: 2 - - uid: 8254 - components: - - type: Transform - pos: -65.5,7.5 - parent: 2 - - uid: 8255 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 2 - - uid: 8256 - components: - - type: Transform - pos: -50.5,-3.5 - parent: 2 - - uid: 8260 - components: - - type: Transform - pos: -31.5,13.5 - parent: 2 - - uid: 8261 - components: - - type: Transform - pos: -31.5,14.5 - parent: 2 - - uid: 8262 - components: - - type: Transform - pos: -31.5,15.5 - parent: 2 - - uid: 8263 - components: - - type: Transform - pos: -31.5,16.5 - parent: 2 - - uid: 8264 - components: - - type: Transform - pos: -31.5,17.5 - parent: 2 - - uid: 8272 - components: - - type: Transform - pos: 22.5,6.5 - parent: 2 - - uid: 8273 - components: - - type: Transform - pos: -44.5,12.5 - parent: 2 - - uid: 8274 - components: - - type: Transform - pos: -43.5,11.5 - parent: 2 - - uid: 8275 - components: - - type: Transform - pos: -43.5,9.5 - parent: 2 - - uid: 8276 - components: - - type: Transform - pos: -49.5,18.5 - parent: 2 - - uid: 8277 - components: - - type: Transform - pos: -49.5,19.5 - parent: 2 - - uid: 8278 - components: - - type: Transform - pos: -49.5,20.5 - parent: 2 - - uid: 8279 - components: - - type: Transform - pos: -49.5,21.5 - parent: 2 - - uid: 8280 - components: - - type: Transform - pos: -49.5,22.5 - parent: 2 - - uid: 8281 - components: - - type: Transform - pos: -50.5,22.5 - parent: 2 - - uid: 8282 - components: - - type: Transform - pos: -51.5,22.5 - parent: 2 - - uid: 8283 - components: - - type: Transform - pos: -48.5,16.5 - parent: 2 - - uid: 8286 - components: - - type: Transform - pos: 28.5,-0.5 - parent: 2 - - uid: 8287 - components: - - type: Transform - pos: -48.5,11.5 - parent: 2 - - uid: 8288 - components: - - type: Transform - pos: -49.5,11.5 - parent: 2 - - uid: 8289 - components: - - type: Transform - pos: -50.5,11.5 - parent: 2 - - uid: 8290 - components: - - type: Transform - pos: -51.5,11.5 - parent: 2 - - uid: 8291 - components: - - type: Transform - pos: -52.5,11.5 - parent: 2 - - uid: 8292 - components: - - type: Transform - pos: -53.5,11.5 - parent: 2 - - uid: 8293 - components: - - type: Transform - pos: -54.5,11.5 - parent: 2 - - uid: 8294 - components: - - type: Transform - pos: -55.5,11.5 - parent: 2 - - uid: 8295 - components: - - type: Transform - pos: -56.5,11.5 - parent: 2 - - uid: 8296 - components: - - type: Transform - pos: -57.5,11.5 - parent: 2 - - uid: 8297 - components: - - type: Transform - pos: -58.5,11.5 - parent: 2 - - uid: 8298 - components: - - type: Transform - pos: -58.5,12.5 - parent: 2 - - uid: 8299 - components: - - type: Transform - pos: -58.5,13.5 - parent: 2 - - uid: 8300 - components: - - type: Transform - pos: -58.5,14.5 - parent: 2 - - uid: 8301 - components: - - type: Transform - pos: -59.5,14.5 - parent: 2 - - uid: 8302 - components: - - type: Transform - pos: -42.5,10.5 - parent: 2 - - uid: 8303 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 2 - - uid: 8304 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 2 - - uid: 8305 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - uid: 8306 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 2 - - uid: 8307 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 2 - - uid: 8308 - components: - - type: Transform - pos: -30.5,-8.5 - parent: 2 - - uid: 8309 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 2 - - uid: 8310 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - - uid: 8311 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 2 - - uid: 8312 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 2 - - uid: 8313 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 2 - - uid: 8314 - components: - - type: Transform - pos: -34.5,-10.5 - parent: 2 - - uid: 8315 - components: - - type: Transform - pos: -34.5,-11.5 - parent: 2 - - uid: 8316 - components: - - type: Transform - pos: -34.5,-12.5 - parent: 2 - - uid: 8317 - components: - - type: Transform - pos: -34.5,-13.5 - parent: 2 - - uid: 8318 - components: - - type: Transform - pos: -34.5,-14.5 - parent: 2 - - uid: 8319 - components: - - type: Transform - pos: -34.5,-15.5 - parent: 2 - - uid: 8320 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 2 - - uid: 8321 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 2 - - uid: 8322 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 2 - - uid: 8323 - components: - - type: Transform - pos: -37.5,-16.5 - parent: 2 - - uid: 8324 - components: - - type: Transform - pos: -38.5,-16.5 - parent: 2 - - uid: 8325 - components: - - type: Transform - pos: -39.5,-16.5 - parent: 2 - - uid: 8326 - components: - - type: Transform - pos: -41.5,-16.5 - parent: 2 - - uid: 8327 - components: - - type: Transform - pos: -41.5,-15.5 - parent: 2 - - uid: 8328 - components: - - type: Transform - pos: -41.5,-17.5 - parent: 2 - - uid: 8329 - components: - - type: Transform - pos: -41.5,-18.5 - parent: 2 - - uid: 8330 - components: - - type: Transform - pos: -42.5,-18.5 - parent: 2 - - uid: 8331 - components: - - type: Transform - pos: -43.5,-18.5 - parent: 2 - - uid: 8332 - components: - - type: Transform - pos: -44.5,-18.5 - parent: 2 - - uid: 8333 - components: - - type: Transform - pos: -45.5,-18.5 - parent: 2 - - uid: 8334 - components: - - type: Transform - pos: -46.5,-18.5 - parent: 2 - - uid: 8335 - components: - - type: Transform - pos: -47.5,-18.5 - parent: 2 - - uid: 8336 - components: - - type: Transform - pos: -48.5,-18.5 - parent: 2 - - uid: 8337 - components: - - type: Transform - pos: -49.5,-18.5 - parent: 2 - - uid: 8338 - components: - - type: Transform - pos: -50.5,-18.5 - parent: 2 - - uid: 8339 - components: - - type: Transform - pos: -50.5,-17.5 - parent: 2 - - uid: 8340 - components: - - type: Transform - pos: -51.5,-17.5 - parent: 2 - - uid: 8341 - components: - - type: Transform - pos: -52.5,-17.5 - parent: 2 - - uid: 8342 - components: - - type: Transform - pos: -53.5,-17.5 - parent: 2 - - uid: 8343 - components: - - type: Transform - pos: -54.5,-17.5 - parent: 2 - - uid: 8344 - components: - - type: Transform - pos: -54.5,-18.5 - parent: 2 - - uid: 8345 - components: - - type: Transform - pos: -55.5,-18.5 - parent: 2 - - uid: 8346 - components: - - type: Transform - pos: -56.5,-18.5 - parent: 2 - - uid: 8347 - components: - - type: Transform - pos: -57.5,-18.5 - parent: 2 - - uid: 8348 - components: - - type: Transform - pos: -58.5,-18.5 - parent: 2 - - uid: 8349 - components: - - type: Transform - pos: -59.5,-18.5 - parent: 2 - - uid: 8350 - components: - - type: Transform - pos: -59.5,-17.5 - parent: 2 - - uid: 8351 - components: - - type: Transform - pos: -60.5,-17.5 - parent: 2 - - uid: 8352 - components: - - type: Transform - pos: -48.5,9.5 - parent: 2 - - uid: 8353 - components: - - type: Transform - pos: -49.5,9.5 - parent: 2 - - uid: 8354 - components: - - type: Transform - pos: -49.5,8.5 - parent: 2 - - uid: 8355 - components: - - type: Transform - pos: -49.5,7.5 - parent: 2 - - uid: 8356 - components: - - type: Transform - pos: -49.5,6.5 - parent: 2 - - uid: 8357 - components: - - type: Transform - pos: -49.5,5.5 - parent: 2 - - uid: 8358 - components: - - type: Transform - pos: -49.5,4.5 - parent: 2 - - uid: 8359 - components: - - type: Transform - pos: -49.5,3.5 - parent: 2 - - uid: 8360 - components: - - type: Transform - pos: -49.5,2.5 - parent: 2 - - uid: 8361 - components: - - type: Transform - pos: -49.5,1.5 - parent: 2 - - uid: 8362 - components: - - type: Transform - pos: -49.5,0.5 - parent: 2 - - uid: 8363 - components: - - type: Transform - pos: -49.5,-0.5 - parent: 2 - - uid: 8364 - components: - - type: Transform - pos: -49.5,-1.5 - parent: 2 - - uid: 8365 - components: - - type: Transform - pos: -50.5,-1.5 - parent: 2 - - uid: 8366 - components: - - type: Transform - pos: -50.5,-2.5 - parent: 2 - - uid: 8367 - components: - - type: Transform - pos: -50.5,-4.5 - parent: 2 - - uid: 8368 - components: - - type: Transform - pos: -50.5,-5.5 - parent: 2 - - uid: 8369 - components: - - type: Transform - pos: -50.5,-6.5 - parent: 2 - - uid: 8370 - components: - - type: Transform - pos: -50.5,-7.5 - parent: 2 - - uid: 8371 - components: - - type: Transform - pos: -50.5,-8.5 - parent: 2 - - uid: 8372 - components: - - type: Transform - pos: -50.5,-9.5 - parent: 2 - - uid: 8373 - components: - - type: Transform - pos: -50.5,-10.5 - parent: 2 - - uid: 8374 - components: - - type: Transform - pos: -50.5,-11.5 - parent: 2 - - uid: 8375 - components: - - type: Transform - pos: -50.5,-12.5 - parent: 2 - - uid: 8376 - components: - - type: Transform - pos: -50.5,-13.5 - parent: 2 - - uid: 8377 - components: - - type: Transform - pos: -50.5,-14.5 - parent: 2 - - uid: 8378 - components: - - type: Transform - pos: -50.5,-15.5 - parent: 2 - - uid: 8379 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 2 - - uid: 8380 - components: - - type: Transform - pos: -36.5,-29.5 - parent: 2 - - uid: 8383 - components: - - type: Transform - pos: -40.5,-30.5 - parent: 2 - - uid: 8384 - components: - - type: Transform - pos: -41.5,-31.5 - parent: 2 - - uid: 8385 - components: - - type: Transform - pos: -37.5,-30.5 - parent: 2 - - uid: 8386 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 2 - - uid: 8387 - components: - - type: Transform - pos: -47.5,-1.5 - parent: 2 - - uid: 8388 - components: - - type: Transform - pos: -46.5,-1.5 - parent: 2 - - uid: 8389 - components: - - type: Transform - pos: -45.5,-1.5 - parent: 2 - - uid: 8390 - components: - - type: Transform - pos: -44.5,-1.5 - parent: 2 - - uid: 8391 - components: - - type: Transform - pos: -43.5,-1.5 - parent: 2 - - uid: 8392 - components: - - type: Transform - pos: -42.5,-1.5 - parent: 2 - - uid: 8403 - components: - - type: Transform - pos: 43.5,15.5 - parent: 2 - - uid: 8404 - components: - - type: Transform - pos: -51.5,-15.5 - parent: 2 - - uid: 8405 - components: - - type: Transform - pos: -52.5,-15.5 - parent: 2 - - uid: 8406 - components: - - type: Transform - pos: -53.5,-15.5 - parent: 2 - - uid: 8407 - components: - - type: Transform - pos: -54.5,-15.5 - parent: 2 - - uid: 8408 - components: - - type: Transform - pos: -55.5,-13.5 - parent: 2 - - uid: 8409 - components: - - type: Transform - pos: -55.5,-14.5 - parent: 2 - - uid: 8410 - components: - - type: Transform - pos: -55.5,-15.5 - parent: 2 - - uid: 8411 - components: - - type: Transform - pos: -56.5,-13.5 - parent: 2 - - uid: 8412 - components: - - type: Transform - pos: -57.5,-13.5 - parent: 2 - - uid: 8413 - components: - - type: Transform - pos: -58.5,-13.5 - parent: 2 - - uid: 8414 - components: - - type: Transform - pos: -59.5,-13.5 - parent: 2 - - uid: 8415 - components: - - type: Transform - pos: -60.5,-13.5 - parent: 2 - - uid: 8416 - components: - - type: Transform - pos: -61.5,-13.5 - parent: 2 - - uid: 8417 - components: - - type: Transform - pos: -62.5,-13.5 - parent: 2 - - uid: 8418 - components: - - type: Transform - pos: -63.5,-13.5 - parent: 2 - - uid: 8419 - components: - - type: Transform - pos: -63.5,-12.5 - parent: 2 - - uid: 8420 - components: - - type: Transform - pos: -63.5,-11.5 - parent: 2 - - uid: 8421 - components: - - type: Transform - pos: -63.5,-10.5 - parent: 2 - - uid: 8422 - components: - - type: Transform - pos: 23.5,12.5 - parent: 2 - - uid: 8433 - components: - - type: Transform - pos: -51.5,-6.5 - parent: 2 - - uid: 8434 - components: - - type: Transform - pos: -52.5,-6.5 - parent: 2 - - uid: 8435 - components: - - type: Transform - pos: -29.5,-8.5 - parent: 2 - - uid: 8436 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 2 - - uid: 8437 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 2 - - uid: 8438 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 2 - - uid: 8439 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 2 - - uid: 8440 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 2 - - uid: 8441 - components: - - type: Transform - pos: -26.5,-11.5 - parent: 2 - - uid: 8442 - components: - - type: Transform - pos: -26.5,-12.5 - parent: 2 - - uid: 8443 - components: - - type: Transform - pos: -25.5,-12.5 - parent: 2 - - uid: 8444 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 2 - - uid: 8445 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 2 - - uid: 8446 - components: - - type: Transform - pos: -23.5,-11.5 - parent: 2 - - uid: 8447 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 2 - - uid: 8448 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 2 - - uid: 8449 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 2 - - uid: 8450 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 2 - - uid: 8451 - components: - - type: Transform - pos: -19.5,-10.5 - parent: 2 - - uid: 8452 - components: - - type: Transform - pos: -65.5,-2.5 - parent: 2 - - uid: 8453 - components: - - type: Transform - pos: -63.5,-2.5 - parent: 2 - - uid: 8454 - components: - - type: Transform - pos: -63.5,-1.5 - parent: 2 - - uid: 8455 - components: - - type: Transform - pos: -63.5,-0.5 - parent: 2 - - uid: 8456 - components: - - type: Transform - pos: -63.5,0.5 - parent: 2 - - uid: 8457 - components: - - type: Transform - pos: -63.5,1.5 - parent: 2 - - uid: 8458 - components: - - type: Transform - pos: -63.5,2.5 - parent: 2 - - uid: 8459 - components: - - type: Transform - pos: -63.5,3.5 - parent: 2 - - uid: 8460 - components: - - type: Transform - pos: -63.5,4.5 - parent: 2 - - uid: 8461 - components: - - type: Transform - pos: -63.5,5.5 - parent: 2 - - uid: 8462 - components: - - type: Transform - pos: -63.5,6.5 - parent: 2 - - uid: 8463 - components: - - type: Transform - pos: -63.5,7.5 - parent: 2 - - uid: 8464 - components: - - type: Transform - pos: -63.5,8.5 - parent: 2 - - uid: 8465 - components: - - type: Transform - pos: -63.5,9.5 - parent: 2 - - uid: 8466 - components: - - type: Transform - pos: -63.5,10.5 - parent: 2 - - uid: 8467 - components: - - type: Transform - pos: -63.5,11.5 - parent: 2 - - uid: 8468 - components: - - type: Transform - pos: -63.5,12.5 - parent: 2 - - uid: 8469 - components: - - type: Transform - pos: -63.5,13.5 - parent: 2 - - uid: 8470 - components: - - type: Transform - pos: -64.5,-2.5 - parent: 2 - - uid: 8471 - components: - - type: Transform - pos: -65.5,-2.5 - parent: 2 - - uid: 8472 - components: - - type: Transform - pos: -63.5,-3.5 - parent: 2 - - uid: 8473 - components: - - type: Transform - pos: -63.5,-4.5 - parent: 2 - - uid: 8474 - components: - - type: Transform - pos: -63.5,-5.5 - parent: 2 - - uid: 8475 - components: - - type: Transform - pos: -63.5,-6.5 - parent: 2 - - uid: 8476 - components: - - type: Transform - pos: -63.5,-7.5 - parent: 2 - - uid: 8477 - components: - - type: Transform - pos: -63.5,-8.5 - parent: 2 - - uid: 8478 - components: - - type: Transform - pos: -63.5,-9.5 - parent: 2 - - uid: 8479 - components: - - type: Transform - pos: -41.5,-32.5 - parent: 2 - - uid: 8480 - components: - - type: Transform - pos: -33.5,-29.5 - parent: 2 - - uid: 8481 - components: - - type: Transform - pos: 7.5,-63.5 - parent: 2 - - uid: 8482 - components: - - type: Transform - pos: 6.5,-63.5 - parent: 2 - - uid: 8483 - components: - - type: Transform - pos: -33.5,-30.5 - parent: 2 - - uid: 8484 - components: - - type: Transform - pos: -39.5,-15.5 - parent: 2 - - uid: 8485 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 2 - - uid: 8486 - components: - - type: Transform - pos: -38.5,-25.5 - parent: 2 - - uid: 8487 - components: - - type: Transform - pos: -36.5,-30.5 - parent: 2 - - uid: 8488 - components: - - type: Transform - pos: -35.5,-30.5 - parent: 2 - - uid: 8489 - components: - - type: Transform - pos: -38.5,-19.5 - parent: 2 - - uid: 8490 - components: - - type: Transform - pos: -31.5,-30.5 - parent: 2 - - uid: 8491 - components: - - type: Transform - pos: -30.5,-30.5 - parent: 2 - - uid: 8492 - components: - - type: Transform - pos: -29.5,-30.5 - parent: 2 - - uid: 8493 - components: - - type: Transform - pos: -28.5,-30.5 - parent: 2 - - uid: 8494 - components: - - type: Transform - pos: -27.5,-30.5 - parent: 2 - - uid: 8495 - components: - - type: Transform - pos: -26.5,-30.5 - parent: 2 - - uid: 8496 - components: - - type: Transform - pos: -26.5,-31.5 - parent: 2 - - uid: 8497 - components: - - type: Transform - pos: -26.5,-32.5 - parent: 2 - - uid: 8498 - components: - - type: Transform - pos: -26.5,-33.5 - parent: 2 - - uid: 8499 - components: - - type: Transform - pos: -26.5,-34.5 - parent: 2 - - uid: 8500 - components: - - type: Transform - pos: -27.5,-34.5 - parent: 2 - - uid: 8501 - components: - - type: Transform - pos: -28.5,-34.5 - parent: 2 - - uid: 8502 - components: - - type: Transform - pos: -29.5,-34.5 - parent: 2 - - uid: 8503 - components: - - type: Transform - pos: -24.5,-30.5 - parent: 2 - - uid: 8504 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 2 - - uid: 8509 - components: - - type: Transform - pos: -25.5,-24.5 - parent: 2 - - uid: 8510 - components: - - type: Transform - pos: -25.5,-23.5 - parent: 2 - - uid: 8511 - components: - - type: Transform - pos: -25.5,-22.5 - parent: 2 - - uid: 8512 - components: - - type: Transform - pos: -25.5,-21.5 - parent: 2 - - uid: 8513 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 2 - - uid: 8514 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 2 - - uid: 8515 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 2 - - uid: 8516 - components: - - type: Transform - pos: -35.5,-20.5 - parent: 2 - - uid: 8517 - components: - - type: Transform - pos: -34.5,-20.5 - parent: 2 - - uid: 8518 - components: - - type: Transform - pos: -33.5,-20.5 - parent: 2 - - uid: 8519 - components: - - type: Transform - pos: -32.5,-20.5 - parent: 2 - - uid: 8520 - components: - - type: Transform - pos: -31.5,-20.5 - parent: 2 - - uid: 8521 - components: - - type: Transform - pos: -30.5,-20.5 - parent: 2 - - uid: 8522 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 2 - - uid: 8523 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 2 - - uid: 8524 - components: - - type: Transform - pos: -27.5,-20.5 - parent: 2 - - uid: 8525 - components: - - type: Transform - pos: -26.5,-20.5 - parent: 2 - - uid: 8526 - components: - - type: Transform - pos: 40.5,16.5 - parent: 2 - - uid: 8527 - components: - - type: Transform - pos: -32.5,-30.5 - parent: 2 - - uid: 8528 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 2 - - uid: 8529 - components: - - type: Transform - pos: -20.5,-35.5 - parent: 2 - - uid: 8530 - components: - - type: Transform - pos: -19.5,-35.5 - parent: 2 - - uid: 8531 - components: - - type: Transform - pos: -18.5,-35.5 - parent: 2 - - uid: 8532 - components: - - type: Transform - pos: -17.5,-35.5 - parent: 2 - - uid: 8533 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 2 - - uid: 8534 - components: - - type: Transform - pos: -17.5,-33.5 - parent: 2 - - uid: 8535 - components: - - type: Transform - pos: -18.5,-33.5 - parent: 2 - - uid: 8536 - components: - - type: Transform - pos: -19.5,-33.5 - parent: 2 - - uid: 8537 - components: - - type: Transform - pos: -20.5,-33.5 - parent: 2 - - uid: 8538 - components: - - type: Transform - pos: -21.5,-33.5 - parent: 2 - - uid: 8539 - components: - - type: Transform - pos: -22.5,-33.5 - parent: 2 - - uid: 8540 - components: - - type: Transform - pos: -23.5,-33.5 - parent: 2 - - uid: 8541 - components: - - type: Transform - pos: -24.5,-33.5 - parent: 2 - - uid: 8542 - components: - - type: Transform - pos: -25.5,-33.5 - parent: 2 - - uid: 8543 - components: - - type: Transform - pos: -17.5,-38.5 - parent: 2 - - uid: 8544 - components: - - type: Transform - pos: -17.5,-39.5 - parent: 2 - - uid: 8545 - components: - - type: Transform - pos: -37.5,-63.5 - parent: 2 - - uid: 8546 - components: - - type: Transform - pos: -38.5,-21.5 - parent: 2 - - uid: 8547 - components: - - type: Transform - pos: -38.5,-23.5 - parent: 2 - - uid: 8548 - components: - - type: Transform - pos: -7.5,-50.5 - parent: 2 - - uid: 8549 - components: - - type: Transform - pos: -6.5,-52.5 - parent: 2 - - uid: 8550 - components: - - type: Transform - pos: -18.5,-49.5 - parent: 2 - - uid: 8551 - components: - - type: Transform - pos: -18.5,-50.5 - parent: 2 - - uid: 8552 - components: - - type: Transform - pos: -18.5,-51.5 - parent: 2 - - uid: 8553 - components: - - type: Transform - pos: -18.5,-52.5 - parent: 2 - - uid: 8554 - components: - - type: Transform - pos: -18.5,-53.5 - parent: 2 - - uid: 8555 - components: - - type: Transform - pos: -31.5,-60.5 - parent: 2 - - uid: 8556 - components: - - type: Transform - pos: -31.5,-61.5 - parent: 2 - - uid: 8557 - components: - - type: Transform - pos: -31.5,-62.5 - parent: 2 - - uid: 8558 - components: - - type: Transform - pos: -31.5,-63.5 - parent: 2 - - uid: 8559 - components: - - type: Transform - pos: -31.5,-64.5 - parent: 2 - - uid: 8560 - components: - - type: Transform - pos: -31.5,-65.5 - parent: 2 - - uid: 8561 - components: - - type: Transform - pos: -30.5,-65.5 - parent: 2 - - uid: 8562 - components: - - type: Transform - pos: -29.5,-65.5 - parent: 2 - - uid: 8563 - components: - - type: Transform - pos: -29.5,-64.5 - parent: 2 - - uid: 8564 - components: - - type: Transform - pos: -29.5,-63.5 - parent: 2 - - uid: 8565 - components: - - type: Transform - pos: 10.5,-28.5 - parent: 2 - - uid: 8566 - components: - - type: Transform - pos: -37.5,-62.5 - parent: 2 - - uid: 8567 - components: - - type: Transform - pos: -37.5,-61.5 - parent: 2 - - uid: 8568 - components: - - type: Transform - pos: -36.5,-61.5 - parent: 2 - - uid: 8569 - components: - - type: Transform - pos: -34.5,-61.5 - parent: 2 - - uid: 8570 - components: - - type: Transform - pos: -35.5,-61.5 - parent: 2 - - uid: 8571 - components: - - type: Transform - pos: -33.5,-61.5 - parent: 2 - - uid: 8572 - components: - - type: Transform - pos: -32.5,-61.5 - parent: 2 - - uid: 8573 - components: - - type: Transform - pos: -18.5,-69.5 - parent: 2 - - uid: 8574 - components: - - type: Transform - pos: -17.5,-69.5 - parent: 2 - - uid: 8575 - components: - - type: Transform - pos: -19.5,-69.5 - parent: 2 - - uid: 8576 - components: - - type: Transform - pos: -20.5,-67.5 - parent: 2 - - uid: 8577 - components: - - type: Transform - pos: -16.5,-69.5 - parent: 2 - - uid: 8578 - components: - - type: Transform - pos: -20.5,-66.5 - parent: 2 - - uid: 8585 - components: - - type: Transform - pos: -0.5,-57.5 - parent: 2 - - uid: 8586 - components: - - type: Transform - pos: -0.5,-56.5 - parent: 2 - - uid: 8587 - components: - - type: Transform - pos: -0.5,-55.5 - parent: 2 - - uid: 8588 - components: - - type: Transform - pos: -0.5,-54.5 - parent: 2 - - uid: 8589 - components: - - type: Transform - pos: -0.5,-53.5 - parent: 2 - - uid: 8590 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 2 - - uid: 8591 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 2 - - uid: 8592 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 2 - - uid: 8593 - components: - - type: Transform - pos: -0.5,-49.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -111.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 26482 + - 33233 + - 19243 + - 19516 + - 33270 + - 33271 + - 36545 + - 17934 + - 19801 + - 33317 - uid: 8594 components: - type: Transform - pos: -0.5,-48.5 - parent: 2 - - uid: 8595 - components: - - type: Transform - pos: -0.5,-47.5 - parent: 2 - - uid: 8596 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 2 - - uid: 8597 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 2 - - uid: 8598 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 2 - - uid: 8599 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 2 - - uid: 8600 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 2 - - uid: 8601 - components: - - type: Transform - pos: -0.5,-41.5 - parent: 2 - - uid: 8602 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 2 - - uid: 8603 - components: - - type: Transform - pos: -0.5,-39.5 - parent: 2 - - uid: 8604 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 2 - - uid: 8605 - components: - - type: Transform - pos: -0.5,-37.5 - parent: 2 - - uid: 8606 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 2 - - uid: 8607 - components: - - type: Transform - pos: -1.5,-36.5 - parent: 2 - - uid: 8608 - components: - - type: Transform - pos: -2.5,-36.5 - parent: 2 - - uid: 8609 - components: - - type: Transform - pos: -3.5,-36.5 - parent: 2 - - uid: 8610 - components: - - type: Transform - pos: -4.5,-36.5 - parent: 2 - - uid: 8611 - components: - - type: Transform - pos: -5.5,-36.5 - parent: 2 - - uid: 8612 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 2 - - uid: 8613 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 2 - - uid: 8614 - components: - - type: Transform - pos: -8.5,-36.5 - parent: 2 - - uid: 8615 - components: - - type: Transform - pos: -9.5,-36.5 - parent: 2 - - uid: 8616 - components: - - type: Transform - pos: -10.5,-36.5 - parent: 2 - - uid: 8617 - components: - - type: Transform - pos: -10.5,-35.5 - parent: 2 - - uid: 8618 - components: - - type: Transform - pos: -11.5,-35.5 - parent: 2 - - uid: 8619 - components: - - type: Transform - pos: -14.5,-69.5 - parent: 2 - - uid: 8620 - components: - - type: Transform - pos: -13.5,-69.5 - parent: 2 - - uid: 8621 - components: - - type: Transform - pos: -0.5,-59.5 - parent: 2 - - uid: 8635 - components: - - type: Transform - pos: 4.5,-67.5 - parent: 2 - - uid: 8636 - components: - - type: Transform - pos: 5.5,-67.5 - parent: 2 - - uid: 8637 - components: - - type: Transform - pos: 6.5,-67.5 - parent: 2 - - uid: 8638 - components: - - type: Transform - pos: 7.5,-67.5 - parent: 2 - - uid: 8639 - components: - - type: Transform - pos: 8.5,-67.5 - parent: 2 - - uid: 8643 - components: - - type: Transform - pos: 8.5,-63.5 - parent: 2 - - uid: 8644 - components: - - type: Transform - pos: 8.5,-62.5 - parent: 2 - - uid: 8645 - components: - - type: Transform - pos: 8.5,-61.5 - parent: 2 - - uid: 8646 - components: - - type: Transform - pos: 8.5,-60.5 - parent: 2 - - uid: 8647 - components: - - type: Transform - pos: 8.5,-59.5 - parent: 2 - - uid: 8648 - components: - - type: Transform - pos: 8.5,-58.5 - parent: 2 - - uid: 8649 - components: - - type: Transform - pos: 8.5,-57.5 - parent: 2 - - uid: 8650 - components: - - type: Transform - pos: 8.5,-56.5 - parent: 2 - - uid: 8651 - components: - - type: Transform - pos: 7.5,-56.5 - parent: 2 - - uid: 8652 - components: - - type: Transform - pos: 6.5,-56.5 - parent: 2 - - uid: 8653 - components: - - type: Transform - pos: 5.5,-56.5 - parent: 2 - - uid: 8654 - components: - - type: Transform - pos: 4.5,-56.5 - parent: 2 - - uid: 8655 - components: - - type: Transform - pos: 3.5,-56.5 - parent: 2 - - uid: 8656 - components: - - type: Transform - pos: 2.5,-56.5 - parent: 2 - - uid: 8657 - components: - - type: Transform - pos: 1.5,-56.5 - parent: 2 - - uid: 8658 - components: - - type: Transform - pos: 0.5,-56.5 - parent: 2 - - uid: 8659 - components: - - type: Transform - pos: 8.5,-41.5 - parent: 2 - - uid: 8660 - components: - - type: Transform - pos: 8.5,-73.5 - parent: 2 - - uid: 8661 - components: - - type: Transform - pos: 9.5,-73.5 - parent: 2 - - uid: 8664 - components: - - type: Transform - pos: 8.5,-47.5 - parent: 2 - - uid: 8665 - components: - - type: Transform - pos: 5.5,-47.5 - parent: 2 - - uid: 8666 - components: - - type: Transform - pos: 4.5,-47.5 - parent: 2 - - uid: 8667 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 2 - - uid: 8668 - components: - - type: Transform - pos: 3.5,-50.5 - parent: 2 - - uid: 8669 - components: - - type: Transform - pos: 4.5,-41.5 - parent: 2 - - uid: 8670 - components: - - type: Transform - pos: 4.5,-42.5 - parent: 2 - - uid: 8671 - components: - - type: Transform - pos: 5.5,-41.5 - parent: 2 - - uid: 8672 - components: - - type: Transform - pos: 6.5,-41.5 - parent: 2 - - uid: 8673 - components: - - type: Transform - pos: 7.5,-41.5 - parent: 2 - - uid: 8674 - components: - - type: Transform - pos: 6.5,-47.5 - parent: 2 - - uid: 8675 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 2 - - uid: 8676 - components: - - type: Transform - pos: 8.5,-46.5 - parent: 2 - - uid: 8679 - components: - - type: Transform - pos: -7.5,-64.5 - parent: 2 - - uid: 8680 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 2 - - uid: 8681 - components: - - type: Transform - pos: -5.5,-65.5 - parent: 2 - - uid: 8682 - components: - - type: Transform - pos: -9.5,-62.5 - parent: 2 - - uid: 8683 - components: - - type: Transform - pos: 5.5,-63.5 - parent: 2 - - uid: 8684 - components: - - type: Transform - pos: 5.5,-62.5 - parent: 2 - - uid: 8685 - components: - - type: Transform - pos: 5.5,-61.5 - parent: 2 - - uid: 8686 - components: - - type: Transform - pos: 5.5,-60.5 - parent: 2 - - uid: 8687 - components: - - type: Transform - pos: 4.5,-60.5 - parent: 2 - - uid: 8688 - components: - - type: Transform - pos: 3.5,-60.5 - parent: 2 - - uid: 8689 - components: - - type: Transform - pos: 2.5,-60.5 - parent: 2 - - uid: 8690 - components: - - type: Transform - pos: 1.5,-60.5 - parent: 2 - - uid: 8691 - components: - - type: Transform - pos: -20.5,-69.5 - parent: 2 - - uid: 8701 - components: - - type: Transform - pos: 5.5,-52.5 - parent: 2 - - uid: 8702 - components: - - type: Transform - pos: 6.5,-52.5 - parent: 2 - - uid: 8703 - components: - - type: Transform - pos: 7.5,-52.5 - parent: 2 - - uid: 8704 - components: - - type: Transform - pos: 8.5,-52.5 - parent: 2 - - uid: 8705 - components: - - type: Transform - pos: 8.5,-51.5 - parent: 2 - - uid: 8706 - components: - - type: Transform - pos: 8.5,-50.5 - parent: 2 - - uid: 8707 - components: - - type: Transform - pos: 7.5,-47.5 - parent: 2 - - uid: 8708 - components: - - type: Transform - pos: 7.5,-83.5 - parent: 2 - - uid: 8709 - components: - - type: Transform - pos: -34.5,-30.5 - parent: 2 - - uid: 8710 - components: - - type: Transform - pos: -38.5,-22.5 - parent: 2 - - uid: 8711 - components: - - type: Transform - pos: -38.5,-30.5 - parent: 2 - - uid: 8712 - components: - - type: Transform - pos: -31.5,-59.5 - parent: 2 - - uid: 8713 - components: - - type: Transform - pos: -31.5,-58.5 - parent: 2 - - uid: 8714 - components: - - type: Transform - pos: -31.5,-57.5 - parent: 2 - - uid: 8715 - components: - - type: Transform - pos: -31.5,-56.5 - parent: 2 - - uid: 8716 - components: - - type: Transform - pos: -32.5,-56.5 - parent: 2 - - uid: 8717 - components: - - type: Transform - pos: -33.5,-56.5 - parent: 2 - - uid: 8718 - components: - - type: Transform - pos: -33.5,-55.5 - parent: 2 - - uid: 8719 - components: - - type: Transform - pos: -33.5,-54.5 - parent: 2 - - uid: 8720 - components: - - type: Transform - pos: -32.5,-54.5 - parent: 2 - - uid: 8721 - components: - - type: Transform - pos: -31.5,-54.5 - parent: 2 - - uid: 8722 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 2 - - uid: 8723 - components: - - type: Transform - pos: -29.5,-54.5 - parent: 2 - - uid: 8724 - components: - - type: Transform - pos: -28.5,-54.5 - parent: 2 - - uid: 8725 - components: - - type: Transform - pos: -28.5,-55.5 - parent: 2 - - uid: 8726 - components: - - type: Transform - pos: -28.5,-56.5 - parent: 2 - - uid: 8727 - components: - - type: Transform - pos: -28.5,-57.5 - parent: 2 - - uid: 8728 - components: - - type: Transform - pos: -27.5,-57.5 - parent: 2 - - uid: 8729 - components: - - type: Transform - pos: -26.5,-57.5 - parent: 2 - - uid: 8730 - components: - - type: Transform - pos: -25.5,-57.5 - parent: 2 - - uid: 8731 - components: - - type: Transform - pos: -24.5,-57.5 - parent: 2 - - uid: 8732 - components: - - type: Transform - pos: -23.5,-57.5 - parent: 2 - - uid: 8733 - components: - - type: Transform - pos: -22.5,-57.5 - parent: 2 - - uid: 8734 - components: - - type: Transform - pos: -21.5,-57.5 - parent: 2 - - uid: 8735 - components: - - type: Transform - pos: -21.5,-56.5 - parent: 2 - - uid: 8736 - components: - - type: Transform - pos: -21.5,-55.5 - parent: 2 - - uid: 8737 - components: - - type: Transform - pos: -21.5,-54.5 - parent: 2 - - uid: 8738 - components: - - type: Transform - pos: -21.5,-53.5 - parent: 2 - - uid: 8739 - components: - - type: Transform - pos: -20.5,-53.5 - parent: 2 - - uid: 8740 - components: - - type: Transform - pos: -19.5,-53.5 - parent: 2 - - uid: 8741 - components: - - type: Transform - pos: -38.5,-24.5 - parent: 2 - - uid: 8742 - components: - - type: Transform - pos: 7.5,-90.5 - parent: 2 - - uid: 8743 - components: - - type: Transform - pos: 7.5,-88.5 - parent: 2 - - uid: 8744 - components: - - type: Transform - pos: 7.5,-85.5 - parent: 2 - - uid: 8746 - components: - - type: Transform - pos: -41.5,-33.5 - parent: 2 - - uid: 8747 - components: - - type: Transform - pos: -41.5,-30.5 - parent: 2 - - uid: 8748 - components: - - type: Transform - pos: -36.5,-27.5 - parent: 2 - - uid: 8749 - components: - - type: Transform - pos: 46.5,-38.5 - parent: 2 - - uid: 8750 - components: - - type: Transform - pos: 47.5,-38.5 - parent: 2 - - uid: 8751 - components: - - type: Transform - pos: 47.5,-39.5 - parent: 2 - - uid: 8752 - components: - - type: Transform - pos: 47.5,-40.5 - parent: 2 - - uid: 8753 - components: - - type: Transform - pos: 47.5,-41.5 - parent: 2 - - uid: 8754 - components: - - type: Transform - pos: 47.5,-42.5 - parent: 2 - - uid: 8755 - components: - - type: Transform - pos: 46.5,-42.5 - parent: 2 - - uid: 8756 - components: - - type: Transform - pos: 45.5,-42.5 - parent: 2 - - uid: 8757 - components: - - type: Transform - pos: 44.5,-42.5 - parent: 2 - - uid: 8758 - components: - - type: Transform - pos: 43.5,-42.5 - parent: 2 - - uid: 8759 - components: - - type: Transform - pos: 42.5,-42.5 - parent: 2 - - uid: 8760 - components: - - type: Transform - pos: 41.5,-42.5 - parent: 2 - - uid: 8761 - components: - - type: Transform - pos: 40.5,-42.5 - parent: 2 - - uid: 8762 - components: - - type: Transform - pos: 40.5,-43.5 - parent: 2 - - uid: 8763 - components: - - type: Transform - pos: 40.5,-44.5 - parent: 2 - - uid: 8764 - components: - - type: Transform - pos: 40.5,-45.5 - parent: 2 - - uid: 8765 - components: - - type: Transform - pos: 40.5,-46.5 - parent: 2 - - uid: 8766 - components: - - type: Transform - pos: 40.5,-47.5 - parent: 2 - - uid: 8767 - components: - - type: Transform - pos: 40.5,-48.5 - parent: 2 - - uid: 8768 - components: - - type: Transform - pos: 40.5,-49.5 - parent: 2 - - uid: 8769 - components: - - type: Transform - pos: 40.5,-50.5 - parent: 2 - - uid: 8770 - components: - - type: Transform - pos: 40.5,-51.5 - parent: 2 - - uid: 8771 - components: - - type: Transform - pos: 40.5,-52.5 - parent: 2 - - uid: 8772 - components: - - type: Transform - pos: 40.5,-53.5 - parent: 2 - - uid: 8773 - components: - - type: Transform - pos: 40.5,-54.5 - parent: 2 - - uid: 8774 - components: - - type: Transform - pos: 40.5,-55.5 - parent: 2 - - uid: 8775 - components: - - type: Transform - pos: 39.5,-55.5 - parent: 2 - - uid: 8776 - components: - - type: Transform - pos: 38.5,-55.5 - parent: 2 - - uid: 8777 - components: - - type: Transform - pos: 37.5,-55.5 - parent: 2 - - uid: 8778 - components: - - type: Transform - pos: 37.5,-54.5 - parent: 2 - - uid: 8781 - components: - - type: Transform - pos: 40.5,-41.5 - parent: 2 - - uid: 8782 - components: - - type: Transform - pos: 40.5,-40.5 - parent: 2 - - uid: 8783 - components: - - type: Transform - pos: 40.5,-39.5 - parent: 2 - - uid: 8784 - components: - - type: Transform - pos: 40.5,-38.5 - parent: 2 - - uid: 8785 - components: - - type: Transform - pos: 40.5,-37.5 - parent: 2 - - uid: 8786 - components: - - type: Transform - pos: 40.5,-36.5 - parent: 2 - - uid: 8787 - components: - - type: Transform - pos: 41.5,-36.5 - parent: 2 - - uid: 8788 - components: - - type: Transform - pos: 42.5,-36.5 - parent: 2 - - uid: 8789 - components: - - type: Transform - pos: 43.5,-36.5 - parent: 2 - - uid: 8790 - components: - - type: Transform - pos: 40.5,-35.5 - parent: 2 - - uid: 8791 - components: - - type: Transform - pos: 40.5,-34.5 - parent: 2 - - uid: 8792 - components: - - type: Transform - pos: 40.5,-33.5 - parent: 2 - - uid: 8793 - components: - - type: Transform - pos: 40.5,-32.5 - parent: 2 - - uid: 8794 - components: - - type: Transform - pos: 39.5,-32.5 - parent: 2 - - uid: 8795 - components: - - type: Transform - pos: 38.5,-32.5 - parent: 2 - - uid: 8796 - components: - - type: Transform - pos: 37.5,-32.5 - parent: 2 - - uid: 8797 - components: - - type: Transform - pos: 36.5,-32.5 - parent: 2 - - uid: 8798 - components: - - type: Transform - pos: 36.5,-31.5 - parent: 2 - - uid: 8799 - components: - - type: Transform - pos: 36.5,-30.5 - parent: 2 - - uid: 8800 - components: - - type: Transform - pos: 36.5,-29.5 - parent: 2 - - uid: 8801 - components: - - type: Transform - pos: 36.5,-28.5 - parent: 2 - - uid: 8802 - components: - - type: Transform - pos: 36.5,-27.5 - parent: 2 - - uid: 8803 - components: - - type: Transform - pos: 36.5,-26.5 - parent: 2 - - uid: 8804 - components: - - type: Transform - pos: 36.5,-25.5 - parent: 2 - - uid: 8805 - components: - - type: Transform - pos: 36.5,-24.5 - parent: 2 - - uid: 8806 - components: - - type: Transform - pos: 36.5,-23.5 - parent: 2 - - uid: 8807 - components: - - type: Transform - pos: 37.5,-23.5 - parent: 2 - - uid: 8808 - components: - - type: Transform - pos: 38.5,-23.5 - parent: 2 - - uid: 8809 - components: - - type: Transform - pos: 39.5,-23.5 - parent: 2 - - uid: 8810 - components: - - type: Transform - pos: 42.5,-23.5 - parent: 2 - - uid: 8811 - components: - - type: Transform - pos: 43.5,-23.5 - parent: 2 - - uid: 8812 - components: - - type: Transform - pos: 44.5,-23.5 - parent: 2 - - uid: 8813 - components: - - type: Transform - pos: 45.5,-23.5 - parent: 2 - - uid: 8814 - components: - - type: Transform - pos: 46.5,-23.5 - parent: 2 - - uid: 8815 - components: - - type: Transform - pos: 40.5,-23.5 - parent: 2 - - uid: 8816 - components: - - type: Transform - pos: 41.5,-23.5 - parent: 2 - - uid: 8817 - components: - - type: Transform - pos: 41.5,-22.5 - parent: 2 - - uid: 8818 - components: - - type: Transform - pos: 41.5,-21.5 - parent: 2 - - uid: 8819 - components: - - type: Transform - pos: 41.5,-20.5 - parent: 2 - - uid: 8820 - components: - - type: Transform - pos: 41.5,-19.5 - parent: 2 - - uid: 8821 - components: - - type: Transform - pos: 42.5,-19.5 - parent: 2 - - uid: 8822 - components: - - type: Transform - pos: 43.5,-19.5 - parent: 2 - - uid: 8823 - components: - - type: Transform - pos: 44.5,-19.5 - parent: 2 - - uid: 8824 - components: - - type: Transform - pos: 46.5,-19.5 - parent: 2 - - uid: 8825 - components: - - type: Transform - pos: 47.5,-19.5 - parent: 2 - - uid: 8826 - components: - - type: Transform - pos: 38.5,-22.5 - parent: 2 - - uid: 8827 - components: - - type: Transform - pos: 38.5,-21.5 - parent: 2 - - uid: 8828 - components: - - type: Transform - pos: 38.5,-20.5 - parent: 2 - - uid: 8829 - components: - - type: Transform - pos: 38.5,-19.5 - parent: 2 - - uid: 8830 - components: - - type: Transform - pos: 38.5,-18.5 - parent: 2 - - uid: 8831 - components: - - type: Transform - pos: 38.5,-17.5 - parent: 2 - - uid: 8832 - components: - - type: Transform - pos: 39.5,-17.5 - parent: 2 - - uid: 8833 - components: - - type: Transform - pos: 40.5,-17.5 - parent: 2 - - uid: 8834 - components: - - type: Transform - pos: 35.5,-23.5 - parent: 2 - - uid: 8835 - components: - - type: Transform - pos: 34.5,-23.5 - parent: 2 - - uid: 8836 - components: - - type: Transform - pos: 33.5,-23.5 - parent: 2 - - uid: 8837 - components: - - type: Transform - pos: 32.5,-23.5 - parent: 2 - - uid: 8838 - components: - - type: Transform - pos: 31.5,-23.5 - parent: 2 - - uid: 8839 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 2 - - uid: 8840 - components: - - type: Transform - pos: 30.5,-24.5 - parent: 2 - - uid: 8841 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 2 - - uid: 8842 - components: - - type: Transform - pos: 30.5,-26.5 - parent: 2 - - uid: 8843 - components: - - type: Transform - pos: 29.5,-23.5 - parent: 2 - - uid: 8844 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 2 - - uid: 8845 - components: - - type: Transform - pos: 27.5,-23.5 - parent: 2 - - uid: 8846 - components: - - type: Transform - pos: 26.5,-23.5 - parent: 2 - - uid: 8847 - components: - - type: Transform - pos: 25.5,-23.5 - parent: 2 - - uid: 8848 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 2 - - uid: 8849 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 2 - - uid: 8850 - components: - - type: Transform - pos: 24.5,-25.5 - parent: 2 - - uid: 8851 - components: - - type: Transform - pos: 23.5,-25.5 - parent: 2 - - uid: 8852 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 2 - - uid: 8853 - components: - - type: Transform - pos: 21.5,-25.5 - parent: 2 - - uid: 8854 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 2 - - uid: 8855 - components: - - type: Transform - pos: 20.5,-24.5 - parent: 2 - - uid: 8856 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 2 - - uid: 8857 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 2 - - uid: 8858 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 2 - - uid: 8859 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 2 - - uid: 8861 - components: - - type: Transform - pos: 25.5,-26.5 - parent: 2 - - uid: 8862 - components: - - type: Transform - pos: 25.5,-27.5 - parent: 2 - - uid: 8863 - components: - - type: Transform - pos: 25.5,-28.5 - parent: 2 - - uid: 8864 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 2 - - uid: 8865 - components: - - type: Transform - pos: 25.5,-30.5 - parent: 2 - - uid: 8866 - components: - - type: Transform - pos: 25.5,-31.5 - parent: 2 - - uid: 8867 - components: - - type: Transform - pos: 25.5,-32.5 - parent: 2 - - uid: 8868 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 2 - - uid: 8869 - components: - - type: Transform - pos: 24.5,-33.5 - parent: 2 - - uid: 8870 - components: - - type: Transform - pos: 23.5,-33.5 - parent: 2 - - uid: 8871 - components: - - type: Transform - pos: 45.5,-19.5 - parent: 2 - - uid: 8872 - components: - - type: Transform - pos: 46.5,-40.5 - parent: 2 - - uid: 8874 - components: - - type: Transform - pos: 24.5,1.5 - parent: 2 - - uid: 8875 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 2 - - uid: 8876 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 2 - - uid: 8878 - components: - - type: Transform - pos: 46.5,-21.5 - parent: 2 - - uid: 8879 - components: - - type: Transform - pos: 85.5,-44.5 - parent: 2 - - uid: 8880 - components: - - type: Transform - pos: 85.5,-45.5 - parent: 2 - - uid: 8881 - components: - - type: Transform - pos: 84.5,-45.5 - parent: 2 - - uid: 8882 - components: - - type: Transform - pos: 83.5,-45.5 - parent: 2 - - uid: 8883 - components: - - type: Transform - pos: 82.5,-45.5 - parent: 2 - - uid: 8884 - components: - - type: Transform - pos: 84.5,-46.5 - parent: 2 - - uid: 8885 - components: - - type: Transform - pos: 82.5,-44.5 - parent: 2 - - uid: 8886 - components: - - type: Transform - pos: 82.5,-43.5 - parent: 2 - - uid: 8887 - components: - - type: Transform - pos: 82.5,-42.5 - parent: 2 - - uid: 8888 - components: - - type: Transform - pos: 82.5,-41.5 - parent: 2 - - uid: 8889 - components: - - type: Transform - pos: 82.5,-40.5 - parent: 2 - - uid: 8890 - components: - - type: Transform - pos: 81.5,-40.5 - parent: 2 - - uid: 8891 - components: - - type: Transform - pos: 81.5,-39.5 - parent: 2 - - uid: 8892 - components: - - type: Transform - pos: 81.5,-38.5 - parent: 2 - - uid: 8893 - components: - - type: Transform - pos: 81.5,-37.5 - parent: 2 - - uid: 8894 - components: - - type: Transform - pos: 81.5,-36.5 - parent: 2 - - uid: 8901 - components: - - type: Transform - pos: 85.5,-23.5 - parent: 2 - - uid: 8902 - components: - - type: Transform - pos: 85.5,-24.5 - parent: 2 - - uid: 8903 - components: - - type: Transform - pos: 85.5,-25.5 - parent: 2 - - uid: 8904 - components: - - type: Transform - pos: 85.5,-26.5 - parent: 2 - - uid: 8905 - components: - - type: Transform - pos: 85.5,-27.5 - parent: 2 - - uid: 8906 - components: - - type: Transform - pos: 85.5,-28.5 - parent: 2 - - uid: 8907 - components: - - type: Transform - pos: 85.5,-29.5 - parent: 2 - - uid: 8908 - components: - - type: Transform - pos: 85.5,-30.5 - parent: 2 - - uid: 8909 - components: - - type: Transform - pos: 85.5,-31.5 - parent: 2 - - uid: 8910 - components: - - type: Transform - pos: 85.5,-32.5 - parent: 2 - - uid: 8911 - components: - - type: Transform - pos: 84.5,-32.5 - parent: 2 - - uid: 8912 - components: - - type: Transform - pos: 84.5,-33.5 - parent: 2 - - uid: 8913 - components: - - type: Transform - pos: 83.5,-33.5 - parent: 2 - - uid: 8914 - components: - - type: Transform - pos: 82.5,-33.5 - parent: 2 - - uid: 8915 - components: - - type: Transform - pos: 81.5,-33.5 - parent: 2 - - uid: 8916 - components: - - type: Transform - pos: 81.5,-34.5 - parent: 2 - - uid: 8917 - components: - - type: Transform - pos: 81.5,-35.5 - parent: 2 - - uid: 8918 - components: - - type: Transform - pos: 82.5,-46.5 - parent: 2 - - uid: 8919 - components: - - type: Transform - pos: 82.5,-47.5 - parent: 2 - - uid: 8920 - components: - - type: Transform - pos: 82.5,-48.5 - parent: 2 - - uid: 8921 - components: - - type: Transform - pos: 82.5,-49.5 - parent: 2 - - uid: 8922 - components: - - type: Transform - pos: 82.5,-50.5 - parent: 2 - - uid: 8923 - components: - - type: Transform - pos: 82.5,-51.5 - parent: 2 - - uid: 8924 - components: - - type: Transform - pos: 82.5,-52.5 - parent: 2 - - uid: 8925 - components: - - type: Transform - pos: 82.5,-53.5 - parent: 2 - - uid: 8926 - components: - - type: Transform - pos: 82.5,-54.5 - parent: 2 - - uid: 8927 - components: - - type: Transform - pos: 82.5,-55.5 - parent: 2 - - uid: 8928 - components: - - type: Transform - pos: 82.5,-56.5 - parent: 2 - - uid: 8929 - components: - - type: Transform - pos: 82.5,-57.5 - parent: 2 - - uid: 8930 - components: - - type: Transform - pos: 82.5,-58.5 - parent: 2 - - uid: 8931 - components: - - type: Transform - pos: 82.5,-59.5 - parent: 2 - - uid: 8932 - components: - - type: Transform - pos: 82.5,-60.5 - parent: 2 - - uid: 8933 - components: - - type: Transform - pos: 81.5,-60.5 - parent: 2 - - uid: 8934 - components: - - type: Transform - pos: 80.5,-60.5 - parent: 2 - - uid: 8935 - components: - - type: Transform - pos: 79.5,-60.5 - parent: 2 - - uid: 8936 - components: - - type: Transform - pos: 78.5,-60.5 - parent: 2 - - uid: 8937 - components: - - type: Transform - pos: 77.5,-60.5 - parent: 2 - - uid: 8938 - components: - - type: Transform - pos: 76.5,-60.5 - parent: 2 - - uid: 8939 - components: - - type: Transform - pos: 75.5,-60.5 - parent: 2 - - uid: 8940 - components: - - type: Transform - pos: 74.5,-60.5 - parent: 2 - - uid: 8941 - components: - - type: Transform - pos: 73.5,-60.5 - parent: 2 - - uid: 8942 - components: - - type: Transform - pos: 72.5,-60.5 - parent: 2 - - uid: 8943 - components: - - type: Transform - pos: 71.5,-60.5 - parent: 2 - - uid: 8944 - components: - - type: Transform - pos: 70.5,-60.5 - parent: 2 - - uid: 8945 - components: - - type: Transform - pos: 69.5,-60.5 - parent: 2 - - uid: 8946 - components: - - type: Transform - pos: 68.5,-60.5 - parent: 2 - - uid: 8947 - components: - - type: Transform - pos: 67.5,-60.5 - parent: 2 - - uid: 8948 - components: - - type: Transform - pos: 66.5,-60.5 - parent: 2 - - uid: 8949 - components: - - type: Transform - pos: 65.5,-60.5 - parent: 2 - - uid: 8950 - components: - - type: Transform - pos: 65.5,-59.5 - parent: 2 - - uid: 8951 - components: - - type: Transform - pos: 65.5,-58.5 - parent: 2 - - uid: 8952 - components: - - type: Transform - pos: 65.5,-57.5 - parent: 2 - - uid: 8953 - components: - - type: Transform - pos: 65.5,-56.5 - parent: 2 - - uid: 8954 - components: - - type: Transform - pos: 66.5,-56.5 - parent: 2 - - uid: 8955 - components: - - type: Transform - pos: 66.5,-55.5 - parent: 2 - - uid: 8956 - components: - - type: Transform - pos: 66.5,-54.5 - parent: 2 - - uid: 8957 - components: - - type: Transform - pos: 66.5,-53.5 - parent: 2 - - uid: 8958 - components: - - type: Transform - pos: 66.5,-52.5 - parent: 2 - - uid: 8960 - components: - - type: Transform - pos: 85.5,-21.5 - parent: 2 - - uid: 8961 - components: - - type: Transform - pos: 84.5,-21.5 - parent: 2 - - uid: 8962 - components: - - type: Transform - pos: 83.5,-21.5 - parent: 2 - - uid: 8963 - components: - - type: Transform - pos: 82.5,-21.5 - parent: 2 - - uid: 8964 - components: - - type: Transform - pos: 81.5,-21.5 - parent: 2 - - uid: 8965 - components: - - type: Transform - pos: 80.5,-21.5 - parent: 2 - - uid: 8966 - components: - - type: Transform - pos: 79.5,-21.5 - parent: 2 - - uid: 8967 - components: - - type: Transform - pos: 78.5,-21.5 - parent: 2 - - uid: 8968 - components: - - type: Transform - pos: 77.5,-21.5 - parent: 2 - - uid: 8969 - components: - - type: Transform - pos: 76.5,-21.5 - parent: 2 - - uid: 8970 - components: - - type: Transform - pos: 75.5,-21.5 - parent: 2 - - uid: 8971 - components: - - type: Transform - pos: 74.5,-21.5 - parent: 2 - - uid: 8972 - components: - - type: Transform - pos: -8.5,-54.5 - parent: 2 - - uid: 8973 - components: - - type: Transform - pos: -7.5,-54.5 - parent: 2 - - uid: 8974 - components: - - type: Transform - pos: 81.5,-61.5 - parent: 2 - - uid: 8975 - components: - - type: Transform - pos: 81.5,-62.5 - parent: 2 - - uid: 8976 - components: - - type: Transform - pos: 81.5,-63.5 - parent: 2 - - uid: 8977 - components: - - type: Transform - pos: 81.5,-64.5 - parent: 2 - - uid: 8978 - components: - - type: Transform - pos: 82.5,-64.5 - parent: 2 - - uid: 8979 - components: - - type: Transform - pos: 83.5,-64.5 - parent: 2 - - uid: 8980 - components: - - type: Transform - pos: 74.5,-22.5 - parent: 2 - - uid: 8981 - components: - - type: Transform - pos: 74.5,-23.5 - parent: 2 - - uid: 8982 - components: - - type: Transform - pos: 73.5,-23.5 - parent: 2 - - uid: 8983 - components: - - type: Transform - pos: 72.5,-23.5 - parent: 2 - - uid: 8984 - components: - - type: Transform - pos: 71.5,-23.5 - parent: 2 - - uid: 8985 - components: - - type: Transform - pos: 70.5,-23.5 - parent: 2 - - uid: 9003 - components: - - type: Transform - pos: 67.5,-53.5 - parent: 2 - - uid: 9004 - components: - - type: Transform - pos: 68.5,-53.5 - parent: 2 - - uid: 9005 - components: - - type: Transform - pos: 69.5,-53.5 - parent: 2 - - uid: 9006 - components: - - type: Transform - pos: 70.5,-53.5 - parent: 2 - - uid: 9007 - components: - - type: Transform - pos: 71.5,-53.5 - parent: 2 - - uid: 9008 - components: - - type: Transform - pos: 66.5,-51.5 - parent: 2 - - uid: 9009 - components: - - type: Transform - pos: 66.5,-50.5 - parent: 2 - - uid: 9010 - components: - - type: Transform - pos: 66.5,-49.5 - parent: 2 - - uid: 9011 - components: - - type: Transform - pos: 66.5,-48.5 - parent: 2 - - uid: 9012 - components: - - type: Transform - pos: 66.5,-47.5 - parent: 2 - - uid: 9013 - components: - - type: Transform - pos: 66.5,-46.5 - parent: 2 - - uid: 9014 - components: - - type: Transform - pos: 66.5,-45.5 - parent: 2 - - uid: 9015 - components: - - type: Transform - pos: 66.5,-44.5 - parent: 2 - - uid: 9016 - components: - - type: Transform - pos: 66.5,-43.5 - parent: 2 - - uid: 9017 - components: - - type: Transform - pos: 66.5,-42.5 - parent: 2 - - uid: 9018 - components: - - type: Transform - pos: 66.5,-40.5 - parent: 2 - - uid: 9019 - components: - - type: Transform - pos: 65.5,-40.5 - parent: 2 - - uid: 9020 - components: - - type: Transform - pos: 64.5,-40.5 - parent: 2 - - uid: 9021 - components: - - type: Transform - pos: 63.5,-40.5 - parent: 2 - - uid: 9022 - components: - - type: Transform - pos: 62.5,-40.5 - parent: 2 - - uid: 9023 - components: - - type: Transform - pos: 61.5,-40.5 - parent: 2 - - uid: 9024 - components: - - type: Transform - pos: 60.5,-40.5 - parent: 2 - - uid: 9025 - components: - - type: Transform - pos: 67.5,-45.5 - parent: 2 - - uid: 9026 - components: - - type: Transform - pos: 68.5,-45.5 - parent: 2 - - uid: 9027 - components: - - type: Transform - pos: 69.5,-45.5 - parent: 2 - - uid: 9028 - components: - - type: Transform - pos: 70.5,-45.5 - parent: 2 - - uid: 9029 - components: - - type: Transform - pos: 71.5,-45.5 - parent: 2 - - uid: 9038 - components: - - type: Transform - pos: 66.5,-39.5 - parent: 2 - - uid: 9039 - components: - - type: Transform - pos: 66.5,-38.5 - parent: 2 - - uid: 9040 - components: - - type: Transform - pos: 66.5,-37.5 - parent: 2 - - uid: 9041 - components: - - type: Transform - pos: 66.5,-36.5 - parent: 2 - - uid: 9042 - components: - - type: Transform - pos: 66.5,-35.5 - parent: 2 - - uid: 9057 - components: - - type: Transform - pos: 66.5,-34.5 - parent: 2 - - uid: 9058 - components: - - type: Transform - pos: 66.5,-33.5 - parent: 2 - - uid: 9059 - components: - - type: Transform - pos: 66.5,-32.5 - parent: 2 - - uid: 9060 - components: - - type: Transform - pos: 66.5,-31.5 - parent: 2 - - uid: 9061 - components: - - type: Transform - pos: 66.5,-30.5 - parent: 2 - - uid: 9062 - components: - - type: Transform - pos: 66.5,-29.5 - parent: 2 - - uid: 9063 - components: - - type: Transform - pos: 66.5,-28.5 - parent: 2 - - uid: 9064 - components: - - type: Transform - pos: 66.5,-27.5 - parent: 2 - - uid: 9065 - components: - - type: Transform - pos: 65.5,-27.5 - parent: 2 - - uid: 9066 - components: - - type: Transform - pos: 64.5,-27.5 - parent: 2 - - uid: 9067 - components: - - type: Transform - pos: 63.5,-27.5 - parent: 2 - - uid: 9068 - components: - - type: Transform - pos: 62.5,-27.5 - parent: 2 - - uid: 9069 - components: - - type: Transform - pos: 61.5,-27.5 - parent: 2 - - uid: 9070 - components: - - type: Transform - pos: 61.5,-28.5 - parent: 2 - - uid: 9071 - components: - - type: Transform - pos: 61.5,-30.5 - parent: 2 - - uid: 9075 - components: - - type: Transform - pos: 61.5,-29.5 - parent: 2 - - uid: 9076 - components: - - type: Transform - pos: 66.5,-26.5 - parent: 2 - - uid: 9077 - components: - - type: Transform - pos: 66.5,-25.5 - parent: 2 - - uid: 9078 - components: - - type: Transform - pos: 69.5,-23.5 - parent: 2 - - uid: 9081 - components: - - type: Transform - pos: 62.5,-26.5 - parent: 2 - - uid: 9082 - components: - - type: Transform - pos: 62.5,-25.5 - parent: 2 - - uid: 9084 - components: - - type: Transform - pos: 43.5,13.5 - parent: 2 - - uid: 9085 - components: - - type: Transform - pos: 60.5,-27.5 - parent: 2 - - uid: 9086 - components: - - type: Transform - pos: 59.5,-27.5 - parent: 2 - - uid: 9087 - components: - - type: Transform - pos: 58.5,-27.5 - parent: 2 - - uid: 9088 - components: - - type: Transform - pos: 57.5,-27.5 - parent: 2 - - uid: 9089 - components: - - type: Transform - pos: 56.5,-27.5 - parent: 2 - - uid: 9090 - components: - - type: Transform - pos: 55.5,-27.5 - parent: 2 - - uid: 9091 - components: - - type: Transform - pos: 55.5,-28.5 - parent: 2 - - uid: 9092 - components: - - type: Transform - pos: 55.5,-29.5 - parent: 2 - - uid: 9093 - components: - - type: Transform - pos: 55.5,-30.5 - parent: 2 - - uid: 9094 - components: - - type: Transform - pos: 55.5,-31.5 - parent: 2 - - uid: 9095 - components: - - type: Transform - pos: 55.5,-32.5 - parent: 2 - - uid: 9096 - components: - - type: Transform - pos: 33.5,20.5 - parent: 2 - - uid: 9097 - components: - - type: Transform - pos: 31.5,-1.5 - parent: 2 - - uid: 9098 - components: - - type: Transform - pos: 20.5,6.5 - parent: 2 - - uid: 9099 - components: - - type: Transform - pos: 43.5,14.5 - parent: 2 - - uid: 9100 - components: - - type: Transform - pos: 23.5,6.5 - parent: 2 - - uid: 9101 - components: - - type: Transform - pos: 28.5,6.5 - parent: 2 - - uid: 9102 - components: - - type: Transform - pos: 20.5,7.5 + pos: -41.5,-9.5 parent: 2 - uid: 9103 components: - type: Transform - pos: 20.5,8.5 - parent: 2 - - uid: 9104 - components: - - type: Transform - pos: 23.5,9.5 - parent: 2 - - uid: 9105 - components: - - type: Transform - pos: 30.5,2.5 - parent: 2 - - uid: 9107 - components: - - type: Transform - pos: 39.5,10.5 - parent: 2 - - uid: 9108 - components: - - type: Transform - pos: 39.5,23.5 - parent: 2 - - uid: 9109 - components: - - type: Transform - pos: 39.5,24.5 - parent: 2 - - uid: 9111 - components: - - type: Transform - pos: 29.5,1.5 - parent: 2 - - uid: 9112 - components: - - type: Transform - pos: 29.5,0.5 - parent: 2 - - uid: 9113 - components: - - type: Transform - pos: 29.5,2.5 - parent: 2 - - uid: 9114 - components: - - type: Transform - pos: 24.5,2.5 - parent: 2 - - uid: 9115 - components: - - type: Transform - pos: 39.5,22.5 - parent: 2 - - uid: 9118 - components: - - type: Transform - pos: 40.5,17.5 - parent: 2 - - uid: 9119 - components: - - type: Transform - pos: 42.5,15.5 - parent: 2 - - uid: 9120 - components: - - type: Transform - pos: 34.5,20.5 - parent: 2 - - uid: 9121 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - - uid: 9122 - components: - - type: Transform - pos: 27.5,3.5 - parent: 2 - - uid: 9123 - components: - - type: Transform - pos: -17.5,4.5 - parent: 2 - - uid: 9124 - components: - - type: Transform - pos: 49.5,-42.5 - parent: 2 - - uid: 9125 - components: - - type: Transform - pos: 48.5,-42.5 - parent: 2 - - uid: 9126 - components: - - type: Transform - pos: 49.5,-43.5 - parent: 2 - - uid: 9127 - components: - - type: Transform - pos: 49.5,-44.5 - parent: 2 - - uid: 9128 - components: - - type: Transform - pos: 49.5,-45.5 - parent: 2 - - uid: 9129 - components: - - type: Transform - pos: 49.5,-46.5 - parent: 2 - - uid: 9130 - components: - - type: Transform - pos: 49.5,-47.5 - parent: 2 - - uid: 9131 - components: - - type: Transform - pos: 49.5,-48.5 - parent: 2 - - uid: 9132 - components: - - type: Transform - pos: 49.5,-49.5 - parent: 2 - - uid: 9133 - components: - - type: Transform - pos: 49.5,-50.5 - parent: 2 - - uid: 9134 - components: - - type: Transform - pos: 49.5,-51.5 - parent: 2 - - uid: 9135 - components: - - type: Transform - pos: 49.5,-52.5 - parent: 2 - - uid: 9136 - components: - - type: Transform - pos: 49.5,-53.5 - parent: 2 - - uid: 9137 - components: - - type: Transform - pos: 49.5,-54.5 - parent: 2 - - uid: 9138 - components: - - type: Transform - pos: 49.5,-55.5 - parent: 2 - - uid: 9139 - components: - - type: Transform - pos: 49.5,-56.5 - parent: 2 - - uid: 9140 - components: - - type: Transform - pos: 49.5,-57.5 - parent: 2 - - uid: 9141 - components: - - type: Transform - pos: 49.5,-58.5 - parent: 2 - - uid: 9142 - components: - - type: Transform - pos: 49.5,-59.5 - parent: 2 - - uid: 9143 - components: - - type: Transform - pos: 49.5,-60.5 - parent: 2 - - uid: 9144 - components: - - type: Transform - pos: 49.5,-61.5 - parent: 2 - - uid: 9145 - components: - - type: Transform - pos: 49.5,-62.5 - parent: 2 - - uid: 9146 - components: - - type: Transform - pos: 48.5,-62.5 - parent: 2 - - uid: 9147 - components: - - type: Transform - pos: 47.5,-62.5 - parent: 2 - - uid: 9148 - components: - - type: Transform - pos: 47.5,-63.5 - parent: 2 - - uid: 9149 - components: - - type: Transform - pos: 47.5,-64.5 - parent: 2 - - uid: 9150 - components: - - type: Transform - pos: 47.5,-65.5 - parent: 2 - - uid: 9151 - components: - - type: Transform - pos: 46.5,-65.5 - parent: 2 - - uid: 9152 - components: - - type: Transform - pos: 45.5,-65.5 - parent: 2 - - uid: 9153 - components: - - type: Transform - pos: 44.5,-65.5 - parent: 2 - - uid: 9154 - components: - - type: Transform - pos: 43.5,-65.5 - parent: 2 - - uid: 9155 - components: - - type: Transform - pos: 42.5,-65.5 - parent: 2 - - uid: 9156 - components: - - type: Transform - pos: 41.5,-65.5 - parent: 2 - - uid: 9157 - components: - - type: Transform - pos: 40.5,-65.5 - parent: 2 - - uid: 9158 - components: - - type: Transform - pos: 40.5,-64.5 - parent: 2 - - uid: 9159 - components: - - type: Transform - pos: 40.5,-63.5 - parent: 2 - - uid: 9160 - components: - - type: Transform - pos: 40.5,-62.5 - parent: 2 - - uid: 9161 - components: - - type: Transform - pos: 39.5,-62.5 - parent: 2 - - uid: 9162 - components: - - type: Transform - pos: 38.5,-62.5 - parent: 2 - - uid: 9163 - components: - - type: Transform - pos: 37.5,-62.5 - parent: 2 - - uid: 9164 - components: - - type: Transform - pos: 36.5,-62.5 - parent: 2 - - uid: 9165 - components: - - type: Transform - pos: 36.5,-61.5 - parent: 2 - - uid: 9166 - components: - - type: Transform - pos: 36.5,-60.5 - parent: 2 - - uid: 9167 - components: - - type: Transform - pos: 36.5,-59.5 - parent: 2 - - uid: 9168 - components: - - type: Transform - pos: 36.5,-58.5 - parent: 2 - - uid: 9169 - components: - - type: Transform - pos: 36.5,-57.5 - parent: 2 - - uid: 9170 - components: - - type: Transform - pos: 35.5,-57.5 - parent: 2 - - uid: 9171 - components: - - type: Transform - pos: 34.5,-57.5 - parent: 2 - - uid: 9172 - components: - - type: Transform - pos: 33.5,-57.5 - parent: 2 - - uid: 9173 - components: - - type: Transform - pos: 32.5,-57.5 - parent: 2 - - uid: 9174 - components: - - type: Transform - pos: 32.5,-56.5 - parent: 2 - - uid: 9175 - components: - - type: Transform - pos: 32.5,-55.5 - parent: 2 - - uid: 9176 - components: - - type: Transform - pos: 32.5,-54.5 - parent: 2 - - uid: 9177 - components: - - type: Transform - pos: 32.5,-53.5 - parent: 2 - - uid: 9178 - components: - - type: Transform - pos: 32.5,-52.5 - parent: 2 - - uid: 9179 - components: - - type: Transform - pos: 32.5,-51.5 - parent: 2 - - uid: 9180 - components: - - type: Transform - pos: 32.5,-50.5 - parent: 2 - - uid: 9181 - components: - - type: Transform - pos: 32.5,-49.5 - parent: 2 - - uid: 9182 - components: - - type: Transform - pos: 32.5,-48.5 - parent: 2 - - uid: 9183 - components: - - type: Transform - pos: 32.5,-47.5 - parent: 2 - - uid: 9184 - components: - - type: Transform - pos: 32.5,-46.5 - parent: 2 - - uid: 9185 - components: - - type: Transform - pos: 32.5,-45.5 - parent: 2 - - uid: 9186 - components: - - type: Transform - pos: 32.5,-44.5 - parent: 2 - - uid: 9187 - components: - - type: Transform - pos: 32.5,-43.5 - parent: 2 - - uid: 9188 - components: - - type: Transform - pos: 32.5,-42.5 - parent: 2 - - uid: 9189 - components: - - type: Transform - pos: 32.5,-41.5 - parent: 2 - - uid: 9190 - components: - - type: Transform - pos: 32.5,-40.5 - parent: 2 - - uid: 9191 - components: - - type: Transform - pos: 32.5,-39.5 - parent: 2 - - uid: 9192 - components: - - type: Transform - pos: 32.5,-38.5 - parent: 2 - - uid: 9193 - components: - - type: Transform - pos: 31.5,-38.5 - parent: 2 - - uid: 9194 - components: - - type: Transform - pos: 30.5,-38.5 - parent: 2 - - uid: 9195 - components: - - type: Transform - pos: 29.5,-38.5 - parent: 2 - - uid: 9196 - components: - - type: Transform - pos: 28.5,-38.5 - parent: 2 - - uid: 9197 - components: - - type: Transform - pos: 27.5,-38.5 - parent: 2 - - uid: 9198 - components: - - type: Transform - pos: 26.5,-38.5 - parent: 2 - - uid: 9199 - components: - - type: Transform - pos: 25.5,-38.5 - parent: 2 - - uid: 9200 - components: - - type: Transform - pos: 24.5,-38.5 - parent: 2 - - uid: 9201 - components: - - type: Transform - pos: 23.5,-38.5 - parent: 2 - - uid: 9202 - components: - - type: Transform - pos: 22.5,-38.5 - parent: 2 - - uid: 9203 - components: - - type: Transform - pos: 21.5,-38.5 - parent: 2 - - uid: 9204 - components: - - type: Transform - pos: 20.5,-38.5 - parent: 2 - - uid: 9205 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 2 - - uid: 9206 - components: - - type: Transform - pos: 18.5,-38.5 - parent: 2 - - uid: 9207 - components: - - type: Transform - pos: 17.5,-38.5 - parent: 2 - - uid: 9208 - components: - - type: Transform - pos: 16.5,-38.5 - parent: 2 - - uid: 9220 - components: - - type: Transform - pos: 8.5,-36.5 - parent: 2 - - uid: 9221 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 2 - - uid: 9222 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 2 - - uid: 9223 - components: - - type: Transform - pos: 7.5,-86.5 - parent: 2 - - uid: 9224 - components: - - type: Transform - pos: 15.5,-85.5 - parent: 2 - - uid: 9226 - components: - - type: Transform - pos: -17.5,2.5 - parent: 2 - - uid: 9227 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 2 - - uid: 9236 - components: - - type: Transform - pos: 44.5,-3.5 - parent: 2 - - uid: 9237 - components: - - type: Transform - pos: 29.5,6.5 - parent: 2 - - uid: 9238 - components: - - type: Transform - pos: 25.5,6.5 - parent: 2 - - uid: 9239 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 2 - - uid: 9240 - components: - - type: Transform - pos: 22.5,9.5 - parent: 2 - - uid: 9241 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 2 - - uid: 9243 - components: - - type: Transform - pos: -24.5,-32.5 - parent: 2 - - uid: 9244 - components: - - type: Transform - pos: 7.5,-89.5 - parent: 2 - - uid: 9245 - components: - - type: Transform - pos: 7.5,-87.5 - parent: 2 - - uid: 9246 - components: - - type: Transform - pos: 8.5,-69.5 - parent: 2 - - uid: 9247 - components: - - type: Transform - pos: 8.5,-71.5 - parent: 2 - - uid: 9248 - components: - - type: Transform - pos: 8.5,-68.5 - parent: 2 - - uid: 9249 - components: - - type: Transform - pos: -1.5,-59.5 - parent: 2 - - uid: 9250 - components: - - type: Transform - pos: 8.5,-72.5 - parent: 2 - - uid: 9251 - components: - - type: Transform - pos: 8.5,-70.5 - parent: 2 - - uid: 9252 - components: - - type: Transform - pos: 10.5,-73.5 - parent: 2 - - uid: 9253 - components: - - type: Transform - pos: 14.5,-85.5 - parent: 2 - - uid: 9254 - components: - - type: Transform - pos: -1.5,-60.5 - parent: 2 - - uid: 9255 - components: - - type: Transform - pos: -1.5,-62.5 - parent: 2 - - uid: 9256 - components: - - type: Transform - pos: -1.5,-63.5 - parent: 2 - - uid: 9257 - components: - - type: Transform - pos: -1.5,-61.5 - parent: 2 - - uid: 9258 - components: - - type: Transform - pos: -2.5,-63.5 - parent: 2 - - uid: 9259 - components: - - type: Transform - pos: -3.5,-63.5 - parent: 2 - - uid: 9260 - components: - - type: Transform - pos: 7.5,-82.5 - parent: 2 - - uid: 9261 - components: - - type: Transform - pos: 7.5,-84.5 - parent: 2 - - uid: 9266 - components: - - type: Transform - pos: -24.5,-31.5 - parent: 2 - - uid: 9267 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 2 - - uid: 9269 - components: - - type: Transform - pos: 30.5,5.5 - parent: 2 - - uid: 9270 - components: - - type: Transform - pos: 30.5,6.5 - parent: 2 - - uid: 9275 - components: - - type: Transform - pos: 69.5,2.5 - parent: 2 - - uid: 9276 - components: - - type: Transform - pos: 34.5,25.5 - parent: 2 - - uid: 9277 - components: - - type: Transform - pos: 39.5,25.5 - parent: 2 - - uid: 9278 - components: - - type: Transform - pos: 37.5,25.5 - parent: 2 - - uid: 9279 - components: - - type: Transform - pos: 66.5,-41.5 - parent: 2 - - uid: 9280 - components: - - type: Transform - pos: -10.5,26.5 - parent: 2 - - uid: 9281 - components: - - type: Transform - pos: -6.5,26.5 - parent: 2 - - uid: 9282 - components: - - type: Transform - pos: -2.5,26.5 - parent: 2 - - uid: 9283 - components: - - type: Transform - pos: 1.5,26.5 - parent: 2 - - uid: 9284 - components: - - type: Transform - pos: 33.5,23.5 - parent: 2 - - uid: 9285 - components: - - type: Transform - pos: 11.5,-28.5 - parent: 2 - - uid: 9286 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 2 - - uid: 9287 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 2 - - uid: 9288 - components: - - type: Transform - pos: -8.5,-83.5 - parent: 2 - - uid: 9289 - components: - - type: Transform - pos: -8.5,-84.5 - parent: 2 - - uid: 9290 - components: - - type: Transform - pos: -8.5,-85.5 - parent: 2 - - uid: 9291 - components: - - type: Transform - pos: -8.5,-82.5 - parent: 2 - - uid: 9292 - components: - - type: Transform - pos: -8.5,-88.5 - parent: 2 - - uid: 9293 - components: - - type: Transform - pos: -8.5,-87.5 - parent: 2 - - uid: 9294 - components: - - type: Transform - pos: -8.5,-89.5 - parent: 2 - - uid: 9295 - components: - - type: Transform - pos: -8.5,-86.5 - parent: 2 - - uid: 9296 - components: - - type: Transform - pos: -8.5,-90.5 - parent: 2 - - uid: 9297 - components: - - type: Transform - pos: 60.5,-25.5 - parent: 2 - - uid: 9298 - components: - - type: Transform - pos: -20.5,51.5 - parent: 2 - - uid: 9299 - components: - - type: Transform - pos: -21.5,51.5 - parent: 2 - - uid: 9300 - components: - - type: Transform - pos: -22.5,51.5 - parent: 2 - - uid: 9301 - components: - - type: Transform - pos: -23.5,51.5 - parent: 2 - - uid: 9302 - components: - - type: Transform - pos: -23.5,50.5 - parent: 2 - - uid: 9303 - components: - - type: Transform - pos: -23.5,49.5 - parent: 2 - - uid: 9304 - components: - - type: Transform - pos: -23.5,48.5 - parent: 2 - - uid: 9305 - components: - - type: Transform - pos: -23.5,47.5 - parent: 2 - - uid: 9306 - components: - - type: Transform - pos: -23.5,46.5 - parent: 2 - - uid: 9307 - components: - - type: Transform - pos: -23.5,45.5 - parent: 2 - - uid: 9308 - components: - - type: Transform - pos: -23.5,44.5 - parent: 2 - - uid: 9309 - components: - - type: Transform - pos: -22.5,44.5 - parent: 2 - - uid: 9310 - components: - - type: Transform - pos: -21.5,44.5 - parent: 2 - - uid: 9311 - components: - - type: Transform - pos: -20.5,44.5 - parent: 2 - - uid: 9312 - components: - - type: Transform - pos: -19.5,44.5 - parent: 2 - - uid: 9313 - components: - - type: Transform - pos: -19.5,45.5 - parent: 2 - - uid: 9314 - components: - - type: Transform - pos: -19.5,46.5 - parent: 2 - - uid: 9315 - components: - - type: Transform - pos: -18.5,44.5 - parent: 2 - - uid: 9316 - components: - - type: Transform - pos: -17.5,44.5 - parent: 2 - - uid: 9317 - components: - - type: Transform - pos: -16.5,44.5 - parent: 2 - - uid: 9318 - components: - - type: Transform - pos: -15.5,44.5 - parent: 2 - - uid: 9319 - components: - - type: Transform - pos: -14.5,44.5 - parent: 2 - - uid: 9320 - components: - - type: Transform - pos: -13.5,44.5 - parent: 2 - - uid: 9321 - components: - - type: Transform - pos: -12.5,44.5 - parent: 2 - - uid: 9322 - components: - - type: Transform - pos: -11.5,44.5 - parent: 2 - - uid: 9323 - components: - - type: Transform - pos: -10.5,44.5 - parent: 2 - - uid: 9324 - components: - - type: Transform - pos: -10.5,45.5 - parent: 2 - - uid: 9325 - components: - - type: Transform - pos: -10.5,46.5 - parent: 2 - - uid: 9326 - components: - - type: Transform - pos: -9.5,45.5 - parent: 2 - - uid: 9327 - components: - - type: Transform - pos: -8.5,45.5 - parent: 2 - - uid: 9328 - components: - - type: Transform - pos: -7.5,45.5 - parent: 2 - - uid: 9329 - components: - - type: Transform - pos: -7.5,46.5 - parent: 2 - - uid: 9330 - components: - - type: Transform - pos: -7.5,47.5 - parent: 2 - - uid: 9331 - components: - - type: Transform - pos: -7.5,48.5 - parent: 2 - - uid: 9332 - components: - - type: Transform - pos: -7.5,49.5 - parent: 2 - - uid: 9333 - components: - - type: Transform - pos: -7.5,50.5 - parent: 2 - - uid: 9334 - components: - - type: Transform - pos: -7.5,51.5 - parent: 2 - - uid: 9335 - components: - - type: Transform - pos: -7.5,52.5 - parent: 2 - - uid: 9336 - components: - - type: Transform - pos: -7.5,53.5 - parent: 2 - - uid: 9346 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 2 - - uid: 9350 - components: - - type: Transform - pos: -24.5,44.5 - parent: 2 - - uid: 9351 - components: - - type: Transform - pos: -25.5,44.5 - parent: 2 - - uid: 9352 - components: - - type: Transform - pos: -25.5,45.5 - parent: 2 - - uid: 9353 - components: - - type: Transform - pos: -25.5,43.5 - parent: 2 - - uid: 9354 - components: - - type: Transform - pos: -21.5,43.5 - parent: 2 - - uid: 9355 - components: - - type: Transform - pos: -21.5,42.5 - parent: 2 - - uid: 9356 - components: - - type: Transform - pos: -21.5,41.5 - parent: 2 - - uid: 9357 - components: - - type: Transform - pos: -21.5,40.5 - parent: 2 - - uid: 9358 - components: - - type: Transform - pos: -21.5,39.5 - parent: 2 - - uid: 9359 - components: - - type: Transform - pos: -18.5,39.5 - parent: 2 - - uid: 9360 - components: - - type: Transform - pos: -18.5,40.5 - parent: 2 - - uid: 9361 - components: - - type: Transform - pos: -18.5,41.5 - parent: 2 - - uid: 9362 - components: - - type: Transform - pos: -18.5,42.5 - parent: 2 - - uid: 9363 - components: - - type: Transform - pos: -18.5,43.5 - parent: 2 - - uid: 9364 - components: - - type: Transform - pos: -14.5,43.5 - parent: 2 - - uid: 9365 - components: - - type: Transform - pos: -14.5,42.5 - parent: 2 - - uid: 9366 - components: - - type: Transform - pos: -14.5,41.5 - parent: 2 - - uid: 9367 - components: - - type: Transform - pos: -14.5,40.5 - parent: 2 - - uid: 9368 - components: - - type: Transform - pos: -14.5,39.5 - parent: 2 - - uid: 9369 - components: - - type: Transform - pos: -15.5,39.5 - parent: 2 - - uid: 9370 - components: - - type: Transform - pos: -13.5,39.5 - parent: 2 - - uid: 9371 - components: - - type: Transform - pos: -8.5,48.5 - parent: 2 - - uid: 9372 - components: - - type: Transform - pos: -9.5,48.5 - parent: 2 - - uid: 9373 - components: - - type: Transform - pos: -10.5,48.5 - parent: 2 - - uid: 9374 - components: - - type: Transform - pos: -11.5,48.5 - parent: 2 - - uid: 9375 - components: - - type: Transform - pos: -11.5,49.5 - parent: 2 - - uid: 9380 - components: - - type: Transform - pos: -11.5,54.5 - parent: 2 - - uid: 9381 - components: - - type: Transform - pos: -12.5,54.5 - parent: 2 - - uid: 9383 - components: - - type: Transform - pos: -13.5,53.5 - parent: 2 - - uid: 9384 - components: - - type: Transform - pos: -13.5,54.5 - parent: 2 - - uid: 9385 - components: - - type: Transform - pos: -14.5,54.5 - parent: 2 - - uid: 9386 - components: - - type: Transform - pos: -15.5,54.5 - parent: 2 - - uid: 9387 - components: - - type: Transform - pos: -20.5,50.5 - parent: 2 - - uid: 9388 - components: - - type: Transform - pos: -19.5,50.5 - parent: 2 - - uid: 9389 - components: - - type: Transform - pos: -18.5,50.5 - parent: 2 - - uid: 9390 - components: - - type: Transform - pos: -17.5,50.5 - parent: 2 - - uid: 9391 - components: - - type: Transform - pos: -16.5,50.5 - parent: 2 - - uid: 9392 - components: - - type: Transform - pos: -15.5,50.5 - parent: 2 - - uid: 9393 - components: - - type: Transform - pos: -15.5,49.5 - parent: 2 - - uid: 9394 - components: - - type: Transform - pos: -14.5,49.5 - parent: 2 - - uid: 9395 - components: - - type: Transform - pos: -13.5,49.5 - parent: 2 - - uid: 9396 - components: - - type: Transform - pos: -12.5,49.5 - parent: 2 - - uid: 9414 - components: - - type: Transform - pos: -17.5,6.5 - parent: 2 - - uid: 9415 - components: - - type: Transform - pos: 38.5,25.5 - parent: 2 - - uid: 9416 - components: - - type: Transform - pos: -16.5,2.5 - parent: 2 - - uid: 9419 - components: - - type: Transform - pos: 10.5,-69.5 - parent: 2 - - uid: 9420 - components: - - type: Transform - pos: -7.5,-69.5 - parent: 2 - - uid: 9421 - components: - - type: Transform - pos: -8.5,-69.5 - parent: 2 - - uid: 9422 - components: - - type: Transform - pos: -9.5,-69.5 - parent: 2 - - uid: 9423 - components: - - type: Transform - pos: 5.5,-65.5 - parent: 2 - - uid: 9425 - components: - - type: Transform - pos: 60.5,-24.5 - parent: 2 - - uid: 9426 - components: - - type: Transform - pos: 61.5,-25.5 - parent: 2 - - uid: 9430 - components: - - type: Transform - pos: -6.5,-80.5 - parent: 2 - - uid: 9442 - components: - - type: Transform - pos: 78.5,-41.5 - parent: 2 - - uid: 9448 - components: - - type: Transform - pos: 78.5,-42.5 - parent: 2 - - uid: 9449 - components: - - type: Transform - pos: 78.5,-43.5 - parent: 2 - - uid: 9450 - components: - - type: Transform - pos: 78.5,-44.5 - parent: 2 - - uid: 9451 - components: - - type: Transform - pos: 78.5,-45.5 - parent: 2 - - uid: 9452 - components: - - type: Transform - pos: 77.5,-45.5 - parent: 2 - - uid: 9453 - components: - - type: Transform - pos: 76.5,-45.5 - parent: 2 - - uid: 9454 - components: - - type: Transform - pos: 75.5,-45.5 - parent: 2 - - uid: 9455 - components: - - type: Transform - pos: 74.5,-45.5 - parent: 2 - - uid: 9456 - components: - - type: Transform - pos: 73.5,-45.5 - parent: 2 - - uid: 9457 - components: - - type: Transform - pos: 72.5,-45.5 - parent: 2 - - uid: 9495 - components: - - type: Transform - pos: 9.5,-78.5 - parent: 2 - - uid: 9496 - components: - - type: Transform - pos: -6.5,-51.5 - parent: 2 - - uid: 9497 - components: - - type: Transform - pos: -7.5,-51.5 - parent: 2 - - uid: 9498 - components: - - type: Transform - pos: -7.5,-49.5 - parent: 2 - - uid: 9499 - components: - - type: Transform - pos: -6.5,-53.5 - parent: 2 - - uid: 9500 - components: - - type: Transform - pos: -6.5,-54.5 - parent: 2 - - uid: 9501 - components: - - type: Transform - pos: 9.5,-79.5 - parent: 2 - - uid: 9504 - components: - - type: Transform - pos: -5.5,-80.5 - parent: 2 - - uid: 9505 - components: - - type: Transform - pos: -4.5,-80.5 - parent: 2 - - uid: 9506 - components: - - type: Transform - pos: -3.5,-80.5 - parent: 2 - - uid: 9507 - components: - - type: Transform - pos: -2.5,-80.5 - parent: 2 - - uid: 9508 - components: - - type: Transform - pos: -1.5,-80.5 - parent: 2 - - uid: 9509 - components: - - type: Transform - pos: -0.5,-80.5 - parent: 2 - - uid: 9510 - components: - - type: Transform - pos: 0.5,-80.5 - parent: 2 - - uid: 9511 - components: - - type: Transform - pos: 1.5,-80.5 - parent: 2 - - uid: 9512 - components: - - type: Transform - pos: 2.5,-80.5 - parent: 2 - - uid: 9513 - components: - - type: Transform - pos: 3.5,-80.5 - parent: 2 - - uid: 9514 - components: - - type: Transform - pos: 4.5,-80.5 - parent: 2 - - uid: 9515 - components: - - type: Transform - pos: 5.5,-80.5 - parent: 2 - - uid: 9516 - components: - - type: Transform - pos: 7.5,-73.5 - parent: 2 - - uid: 9517 - components: - - type: Transform - pos: 6.5,-73.5 - parent: 2 - - uid: 9518 - components: - - type: Transform - pos: 5.5,-73.5 - parent: 2 - - uid: 9519 - components: - - type: Transform - pos: 4.5,-73.5 - parent: 2 - - uid: 9520 - components: - - type: Transform - pos: 3.5,-73.5 - parent: 2 - - uid: 9521 - components: - - type: Transform - pos: 2.5,-73.5 - parent: 2 - - uid: 9522 - components: - - type: Transform - pos: 1.5,-73.5 - parent: 2 - - uid: 9523 - components: - - type: Transform - pos: 1.5,-74.5 - parent: 2 - - uid: 9524 - components: - - type: Transform - pos: 1.5,-75.5 - parent: 2 - - uid: 9525 - components: - - type: Transform - pos: 1.5,-76.5 - parent: 2 - - uid: 9526 - components: - - type: Transform - pos: 2.5,-76.5 - parent: 2 - - uid: 9527 - components: - - type: Transform - pos: 8.5,-80.5 - parent: 2 - - uid: 9528 - components: - - type: Transform - pos: 7.5,-80.5 - parent: 2 - - uid: 9529 - components: - - type: Transform - pos: 6.5,-80.5 - parent: 2 - - uid: 9530 - components: - - type: Transform - pos: -0.5,-79.5 - parent: 2 - - uid: 9531 - components: - - type: Transform - pos: -0.5,-78.5 - parent: 2 - - uid: 9532 - components: - - type: Transform - pos: -0.5,-77.5 - parent: 2 - - uid: 9533 - components: - - type: Transform - pos: -0.5,-76.5 - parent: 2 - - uid: 9534 - components: - - type: Transform - pos: 71.5,-52.5 - parent: 2 - - uid: 9535 - components: - - type: Transform - pos: 71.5,-51.5 - parent: 2 - - uid: 9536 - components: - - type: Transform - pos: 71.5,-49.5 - parent: 2 - - uid: 9537 - components: - - type: Transform - pos: 71.5,-50.5 - parent: 2 - - uid: 9538 - components: - - type: Transform - pos: 26.5,3.5 - parent: 2 - - uid: 9539 - components: - - type: Transform - pos: 24.5,3.5 - parent: 2 - - uid: 9540 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 2 - - uid: 9541 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 2 - - uid: 9542 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 2 - - uid: 9543 - components: - - type: Transform - pos: 18.5,34.5 - parent: 2 - - uid: 9544 - components: - - type: Transform - pos: 18.5,35.5 - parent: 2 - - uid: 9545 - components: - - type: Transform - pos: 20.5,35.5 - parent: 2 - - uid: 9546 - components: - - type: Transform - pos: 19.5,35.5 - parent: 2 - - uid: 9547 - components: - - type: Transform - pos: 14.5,36.5 - parent: 2 - - uid: 9548 - components: - - type: Transform - pos: 14.5,38.5 - parent: 2 - - uid: 9549 - components: - - type: Transform - pos: 14.5,39.5 - parent: 2 - - uid: 9550 - components: - - type: Transform - pos: 14.5,37.5 - parent: 2 - - uid: 9551 - components: - - type: Transform - pos: 23.5,35.5 - parent: 2 - - uid: 9552 - components: - - type: Transform - pos: 24.5,35.5 - parent: 2 - - uid: 9553 - components: - - type: Transform - pos: 22.5,35.5 - parent: 2 - - uid: 9554 - components: - - type: Transform - pos: 24.5,36.5 - parent: 2 - - uid: 9555 - components: - - type: Transform - pos: 24.5,37.5 - parent: 2 - - uid: 9556 - components: - - type: Transform - pos: 24.5,38.5 - parent: 2 - - uid: 9557 - components: - - type: Transform - pos: 23.5,38.5 - parent: 2 - - uid: 9558 - components: - - type: Transform - pos: 21.5,38.5 - parent: 2 - - uid: 9559 - components: - - type: Transform - pos: 22.5,38.5 - parent: 2 - - uid: 9560 - components: - - type: Transform - pos: -17.5,7.5 - parent: 2 - - uid: 9561 - components: - - type: Transform - pos: -17.5,5.5 - parent: 2 - - uid: 9579 - components: - - type: Transform - pos: 73.5,-0.5 - parent: 2 - - uid: 9580 - components: - - type: Transform - pos: 56.5,-5.5 - parent: 2 - - uid: 9581 - components: - - type: Transform - pos: -26.5,-35.5 - parent: 2 - - uid: 9582 - components: - - type: Transform - pos: -26.5,-37.5 - parent: 2 - - uid: 9583 - components: - - type: Transform - pos: -26.5,-36.5 - parent: 2 - - uid: 9584 - components: - - type: Transform - pos: -27.5,-37.5 - parent: 2 - - uid: 9585 - components: - - type: Transform - pos: -28.5,-37.5 - parent: 2 - - uid: 9586 - components: - - type: Transform - pos: -29.5,-37.5 - parent: 2 - - uid: 9587 - components: - - type: Transform - pos: -31.5,-37.5 - parent: 2 - - uid: 9588 - components: - - type: Transform - pos: -32.5,-37.5 - parent: 2 - - uid: 9589 - components: - - type: Transform - pos: -33.5,-37.5 - parent: 2 - - uid: 9590 - components: - - type: Transform - pos: -34.5,-37.5 - parent: 2 - - uid: 9591 - components: - - type: Transform - pos: -35.5,-37.5 - parent: 2 - - uid: 9592 - components: - - type: Transform - pos: -37.5,-37.5 - parent: 2 - - uid: 9598 - components: - - type: Transform - pos: -36.5,-37.5 - parent: 2 - - uid: 9605 - components: - - type: Transform - pos: -30.5,-37.5 - parent: 2 - - uid: 9608 - components: - - type: Transform - pos: 73.5,2.5 - parent: 2 - - uid: 9609 - components: - - type: Transform - pos: 73.5,1.5 - parent: 2 - - uid: 9610 - components: - - type: Transform - pos: 72.5,2.5 - parent: 2 - - uid: 9611 - components: - - type: Transform - pos: 71.5,2.5 - parent: 2 - - uid: 9612 - components: - - type: Transform - pos: 71.5,0.5 - parent: 2 - - uid: 9613 - components: - - type: Transform - pos: 71.5,-0.5 - parent: 2 - - uid: 9614 - components: - - type: Transform - pos: 71.5,1.5 - parent: 2 - - uid: 9615 - components: - - type: Transform - pos: 73.5,-1.5 - parent: 2 - - uid: 9616 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 2 - - uid: 9617 - components: - - type: Transform - pos: 73.5,-3.5 - parent: 2 - - uid: 9618 - components: - - type: Transform - pos: 73.5,0.5 - parent: 2 - - uid: 9619 - components: - - type: Transform - pos: 73.5,-4.5 - parent: 2 - - uid: 9620 - components: - - type: Transform - pos: 73.5,-5.5 - parent: 2 - - uid: 9621 - components: - - type: Transform - pos: 70.5,-5.5 - parent: 2 - - uid: 9623 - components: - - type: Transform - pos: 71.5,-5.5 - parent: 2 - - uid: 9624 - components: - - type: Transform - pos: 61.5,0.5 - parent: 2 - - uid: 9625 - components: - - type: Transform - pos: 62.5,0.5 - parent: 2 - - uid: 9626 - components: - - type: Transform - pos: 57.5,-3.5 - parent: 2 - - uid: 9627 - components: - - type: Transform - pos: 63.5,1.5 - parent: 2 - - uid: 9628 - components: - - type: Transform - pos: 58.5,-3.5 - parent: 2 - - uid: 9629 - components: - - type: Transform - pos: 63.5,0.5 - parent: 2 - - uid: 9630 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 2 - - uid: 9631 - components: - - type: Transform - pos: 56.5,-4.5 - parent: 2 - - uid: 9632 - components: - - type: Transform - pos: 57.5,-5.5 - parent: 2 - - uid: 9633 - components: - - type: Transform - pos: 58.5,-5.5 - parent: 2 - - uid: 9634 - components: - - type: Transform - pos: 60.5,-5.5 - parent: 2 - - uid: 9635 - components: - - type: Transform - pos: 61.5,-5.5 - parent: 2 - - uid: 9636 - components: - - type: Transform - pos: 62.5,-5.5 - parent: 2 - - uid: 9637 - components: - - type: Transform - pos: 59.5,-5.5 - parent: 2 - - uid: 9638 - components: - - type: Transform - pos: 66.5,14.5 - parent: 2 - - uid: 9639 - components: - - type: Transform - pos: 68.5,14.5 - parent: 2 - - uid: 9640 - components: - - type: Transform - pos: 69.5,14.5 - parent: 2 - - uid: 9641 - components: - - type: Transform - pos: 70.5,14.5 - parent: 2 - - uid: 9642 - components: - - type: Transform - pos: 71.5,14.5 - parent: 2 - - uid: 9643 - components: - - type: Transform - pos: 72.5,14.5 - parent: 2 - - uid: 9644 - components: - - type: Transform - pos: 67.5,14.5 - parent: 2 - - uid: 9645 - components: - - type: Transform - pos: 73.5,14.5 - parent: 2 - - uid: 9646 - components: - - type: Transform - pos: 75.5,14.5 - parent: 2 - - uid: 9647 - components: - - type: Transform - pos: 76.5,14.5 - parent: 2 - - uid: 9648 - components: - - type: Transform - pos: 74.5,14.5 - parent: 2 - - uid: 9649 - components: - - type: Transform - pos: 77.5,14.5 - parent: 2 - - uid: 9650 - components: - - type: Transform - pos: 77.5,13.5 - parent: 2 - - uid: 9651 - components: - - type: Transform - pos: 77.5,12.5 - parent: 2 - - uid: 9652 - components: - - type: Transform - pos: 77.5,10.5 - parent: 2 - - uid: 9653 - components: - - type: Transform - pos: 77.5,9.5 - parent: 2 - - uid: 9654 - components: - - type: Transform - pos: 77.5,8.5 - parent: 2 - - uid: 9655 - components: - - type: Transform - pos: 77.5,7.5 - parent: 2 - - uid: 9656 - components: - - type: Transform - pos: 77.5,6.5 - parent: 2 - - uid: 9657 - components: - - type: Transform - pos: 77.5,5.5 - parent: 2 - - uid: 9658 - components: - - type: Transform - pos: 77.5,11.5 - parent: 2 - - uid: 9659 - components: - - type: Transform - pos: 77.5,4.5 - parent: 2 - - uid: 9660 - components: - - type: Transform - pos: 77.5,1.5 - parent: 2 - - uid: 9661 - components: - - type: Transform - pos: 77.5,2.5 - parent: 2 - - uid: 9662 - components: - - type: Transform - pos: 77.5,0.5 - parent: 2 - - uid: 9663 - components: - - type: Transform - pos: 77.5,-0.5 - parent: 2 - - uid: 9664 - components: - - type: Transform - pos: 77.5,-1.5 - parent: 2 - - uid: 9665 - components: - - type: Transform - pos: 77.5,-2.5 - parent: 2 - - uid: 9666 - components: - - type: Transform - pos: 77.5,-3.5 - parent: 2 - - uid: 9667 - components: - - type: Transform - pos: 77.5,3.5 - parent: 2 - - uid: 9668 - components: - - type: Transform - pos: 77.5,-4.5 - parent: 2 - - uid: 9669 - components: - - type: Transform - pos: 78.5,-4.5 - parent: 2 - - uid: 9670 - components: - - type: Transform - pos: 80.5,-4.5 - parent: 2 - - uid: 9671 - components: - - type: Transform - pos: 79.5,-4.5 - parent: 2 - - uid: 9672 - components: - - type: Transform - pos: 80.5,-5.5 - parent: 2 - - uid: 9673 - components: - - type: Transform - pos: 80.5,-6.5 - parent: 2 - - uid: 9674 - components: - - type: Transform - pos: 81.5,-6.5 - parent: 2 - - uid: 9675 - components: - - type: Transform - pos: 82.5,-6.5 - parent: 2 - - uid: 9676 - components: - - type: Transform - pos: 82.5,-5.5 - parent: 2 - - uid: 9677 - components: - - type: Transform - pos: 83.5,-6.5 - parent: 2 - - uid: 9678 - components: - - type: Transform - pos: 84.5,-6.5 - parent: 2 - - uid: 9679 - components: - - type: Transform - pos: 84.5,-5.5 - parent: 2 - - uid: 9680 - components: - - type: Transform - pos: 84.5,-4.5 - parent: 2 - - uid: 9681 - components: - - type: Transform - pos: 84.5,-2.5 - parent: 2 - - uid: 9682 - components: - - type: Transform - pos: 84.5,-1.5 - parent: 2 - - uid: 9683 - components: - - type: Transform - pos: 84.5,-0.5 - parent: 2 - - uid: 9684 - components: - - type: Transform - pos: 84.5,-3.5 - parent: 2 - - uid: 9685 - components: - - type: Transform - pos: 85.5,-0.5 - parent: 2 - - uid: 9686 - components: - - type: Transform - pos: 86.5,-0.5 - parent: 2 - - uid: 9687 - components: - - type: Transform - pos: 80.5,-3.5 - parent: 2 - - uid: 9688 - components: - - type: Transform - pos: 80.5,-2.5 - parent: 2 - - uid: 9689 - components: - - type: Transform - pos: 80.5,-0.5 - parent: 2 - - uid: 9690 - components: - - type: Transform - pos: 80.5,-1.5 - parent: 2 - - uid: 9691 - components: - - type: Transform - pos: 81.5,-0.5 - parent: 2 - - uid: 9692 - components: - - type: Transform - pos: 82.5,-0.5 - parent: 2 - - uid: 9693 - components: - - type: Transform - pos: 57.5,-6.5 - parent: 2 - - uid: 9694 - components: - - type: Transform - pos: 57.5,-8.5 - parent: 2 - - uid: 9695 - components: - - type: Transform - pos: 57.5,-7.5 - parent: 2 - - uid: 9696 - components: - - type: Transform - pos: 58.5,-8.5 - parent: 2 - - uid: 9697 - components: - - type: Transform - pos: 60.5,-8.5 - parent: 2 - - uid: 9698 - components: - - type: Transform - pos: 61.5,-8.5 - parent: 2 - - uid: 9699 - components: - - type: Transform - pos: 62.5,-8.5 - parent: 2 - - uid: 9700 - components: - - type: Transform - pos: 59.5,-8.5 - parent: 2 - - uid: 9701 - components: - - type: Transform - pos: 63.5,-8.5 - parent: 2 - - uid: 9702 - components: - - type: Transform - pos: 64.5,-8.5 - parent: 2 - - uid: 9703 - components: - - type: Transform - pos: 65.5,-8.5 - parent: 2 - - uid: 9704 - components: - - type: Transform - pos: 65.5,-7.5 - parent: 2 - - uid: 9705 - components: - - type: Transform - pos: 65.5,-6.5 - parent: 2 - - uid: 9706 - components: - - type: Transform - pos: 64.5,-6.5 - parent: 2 - - uid: 9724 - components: - - type: Transform - pos: 85.5,-22.5 - parent: 2 - - uid: 9914 - components: - - type: Transform - pos: 23.5,30.5 - parent: 2 - - uid: 9986 - components: - - type: Transform - pos: 23.5,29.5 - parent: 2 - - uid: 9992 - components: - - type: Transform - pos: 23.5,28.5 - parent: 2 - - uid: 10097 - components: - - type: Transform - pos: 23.5,31.5 - parent: 2 - - uid: 10150 - components: - - type: Transform - pos: -36.5,12.5 - parent: 2 - - uid: 10151 - components: - - type: Transform - pos: -35.5,12.5 - parent: 2 - - uid: 10152 - components: - - type: Transform - pos: -34.5,12.5 - parent: 2 - - uid: 10153 - components: - - type: Transform - pos: -33.5,12.5 - parent: 2 - - uid: 10154 - components: - - type: Transform - pos: -32.5,12.5 - parent: 2 - - uid: 10155 - components: - - type: Transform - pos: -31.5,12.5 - parent: 2 - - uid: 10199 - components: - - type: Transform - pos: -66.5,14.5 - parent: 2 - - uid: 10200 - components: - - type: Transform - pos: -10.5,41.5 - parent: 2 - - uid: 10583 - components: - - type: Transform - pos: -24.5,-69.5 - parent: 2 - - uid: 10614 - components: - - type: Transform - pos: -16.5,-77.5 - parent: 2 - - uid: 10615 - components: - - type: Transform - pos: -8.5,-64.5 - parent: 2 - - uid: 10774 - components: - - type: Transform - pos: -9.5,-64.5 - parent: 2 - - uid: 10803 - components: - - type: Transform - pos: -8.5,-62.5 - parent: 2 - - uid: 11139 - components: - - type: Transform - pos: 60.5,-29.5 - parent: 2 - - uid: 11206 - components: - - type: Transform - pos: 15.5,-35.5 - parent: 2 - - uid: 11409 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 2 - - uid: 11452 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 2 - - uid: 11494 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 2 - - uid: 11497 - components: - - type: Transform - pos: -10.5,42.5 - parent: 2 - - uid: 11527 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 2 - - uid: 11580 - components: - - type: Transform - pos: 77.5,-40.5 - parent: 2 - - uid: 11603 - components: - - type: Transform - pos: 76.5,-40.5 - parent: 2 - - uid: 11735 - components: - - type: Transform - pos: 75.5,-40.5 - parent: 2 - - uid: 11804 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 2 - - uid: 11925 - components: - - type: Transform - pos: 74.5,-40.5 - parent: 2 - - uid: 11932 - components: - - type: Transform - pos: 73.5,-40.5 - parent: 2 - - uid: 11983 - components: - - type: Transform - pos: 4.5,-66.5 - parent: 2 - - uid: 11988 - components: - - type: Transform - pos: 73.5,-41.5 - parent: 2 - - uid: 11989 - components: - - type: Transform - pos: 73.5,-42.5 - parent: 2 - - uid: 12022 - components: - - type: Transform - pos: 59.5,-29.5 - parent: 2 - - uid: 12047 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 2 - - uid: 12222 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 2 - - uid: 12576 - components: - - type: Transform - pos: -6.5,-69.5 - parent: 2 - - uid: 12867 - components: - - type: Transform - pos: 61.5,-31.5 - parent: 2 - - uid: 12876 - components: - - type: Transform - pos: 79.5,-42.5 - parent: 2 - - uid: 12891 - components: - - type: Transform - pos: 80.5,-42.5 - parent: 2 - - uid: 12894 - components: - - type: Transform - pos: -9.5,35.5 - parent: 2 - - uid: 13245 - components: - - type: Transform - pos: -0.5,-69.5 - parent: 2 - - uid: 13281 - components: - - type: Transform - pos: -1.5,-69.5 - parent: 2 - - uid: 13901 - components: - - type: Transform - pos: -25.5,-69.5 - parent: 2 - - uid: 13997 - components: - - type: Transform - pos: 13.5,13.5 - parent: 2 - - uid: 14039 - components: - - type: Transform - pos: 16.5,-37.5 - parent: 2 - - uid: 14080 - components: - - type: Transform - pos: 16.5,-36.5 - parent: 2 - - uid: 14083 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 2 - - uid: 14249 - components: - - type: Transform - pos: 41.5,-48.5 - parent: 2 - - uid: 14329 - components: - - type: Transform - pos: -67.5,18.5 - parent: 2 - - uid: 14330 - components: - - type: Transform - pos: -66.5,18.5 - parent: 2 - - uid: 14422 - components: - - type: Transform - pos: 9.5,-46.5 - parent: 2 - - uid: 14556 - components: - - type: Transform - pos: -8.5,28.5 - parent: 2 - - uid: 14596 - components: - - type: Transform - pos: -68.5,18.5 - parent: 2 - - uid: 14681 - components: - - type: Transform - pos: 12.5,-86.5 - parent: 2 - - uid: 14791 - components: - - type: Transform - pos: 3.5,-69.5 - parent: 2 - - uid: 14843 - components: - - type: Transform - pos: 16.5,-51.5 - parent: 2 - - uid: 14990 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 2 - - uid: 15000 - components: - - type: Transform - pos: 7.5,-81.5 - parent: 2 - - uid: 15078 - components: - - type: Transform - pos: -23.5,-14.5 - parent: 2 - - uid: 15082 - components: - - type: Transform - pos: -12.5,-69.5 - parent: 2 - - uid: 15132 - components: - - type: Transform - pos: -21.5,-24.5 - parent: 2 - - uid: 15422 - components: - - type: Transform - pos: 27.5,28.5 - parent: 2 - - uid: 15730 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 2 - - uid: 15853 - components: - - type: Transform - pos: -43.5,-37.5 - parent: 2 - - uid: 15918 - components: - - type: Transform - pos: -17.5,25.5 - parent: 2 - - uid: 16416 - components: - - type: Transform - pos: -64.5,10.5 - parent: 2 - - uid: 16464 - components: - - type: Transform - pos: -14.5,26.5 - parent: 2 - - uid: 16469 - components: - - type: Transform - pos: -14.5,27.5 - parent: 2 - - uid: 16639 - components: - - type: Transform - pos: -17.5,24.5 - parent: 2 - - uid: 16667 - components: - - type: Transform - pos: -65.5,10.5 - parent: 2 - - uid: 17497 - components: - - type: Transform - pos: 12.5,-88.5 - parent: 2 - - uid: 17547 - components: - - type: Transform - pos: -5.5,-66.5 - parent: 2 - - uid: 17760 - components: - - type: Transform - pos: -9.5,-63.5 - parent: 2 - - uid: 18005 - components: - - type: Transform - pos: -8.5,27.5 - parent: 2 - - uid: 18142 - components: - - type: Transform - pos: 9.5,-47.5 - parent: 2 - - uid: 18199 - components: - - type: Transform - pos: 10.5,-47.5 - parent: 2 - - uid: 18254 - components: - - type: Transform - pos: 11.5,-47.5 - parent: 2 - - uid: 18255 - components: - - type: Transform - pos: 13.5,-47.5 - parent: 2 - - uid: 18256 - components: - - type: Transform - pos: 12.5,-47.5 - parent: 2 - - uid: 18257 - components: - - type: Transform - pos: 13.5,-48.5 - parent: 2 - - uid: 18258 - components: - - type: Transform - pos: 13.5,-49.5 - parent: 2 - - uid: 18259 - components: - - type: Transform - pos: 13.5,-50.5 - parent: 2 - - uid: 18260 - components: - - type: Transform - pos: 13.5,-51.5 - parent: 2 - - uid: 18261 - components: - - type: Transform - pos: 13.5,-52.5 - parent: 2 - - uid: 18262 - components: - - type: Transform - pos: 14.5,-52.5 - parent: 2 - - uid: 18263 - components: - - type: Transform - pos: 15.5,-52.5 - parent: 2 - - uid: 18264 - components: - - type: Transform - pos: 16.5,-52.5 - parent: 2 - - uid: 18337 - components: - - type: Transform - pos: 16.5,-50.5 - parent: 2 - - uid: 18364 - components: - - type: Transform - pos: 16.5,-49.5 - parent: 2 - - uid: 18369 - components: - - type: Transform - pos: 16.5,-48.5 - parent: 2 - - uid: 18372 - components: - - type: Transform - pos: 15.5,-48.5 - parent: 2 - - uid: 19088 - components: - - type: Transform - pos: 13.5,-53.5 - parent: 2 - - uid: 19092 - components: - - type: Transform - pos: 13.5,-54.5 - parent: 2 - - uid: 19093 - components: - - type: Transform - pos: 13.5,-55.5 - parent: 2 - - uid: 19094 - components: - - type: Transform - pos: 13.5,-56.5 - parent: 2 - - uid: 19095 - components: - - type: Transform - pos: 14.5,-56.5 - parent: 2 - - uid: 19100 - components: - - type: Transform - pos: 15.5,-56.5 - parent: 2 - - uid: 19157 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 2 - - uid: 19227 - components: - - type: Transform - pos: -66.5,13.5 - parent: 2 - - uid: 19257 - components: - - type: Transform - pos: -6.5,-64.5 - parent: 2 - - uid: 19291 - components: - - type: Transform - pos: -66.5,12.5 - parent: 2 - - uid: 19464 - components: - - type: Transform - pos: -66.5,10.5 - parent: 2 - - uid: 19473 - components: - - type: Transform - pos: 12.5,-73.5 - parent: 2 - - uid: 19474 - components: - - type: Transform - pos: 13.5,-73.5 - parent: 2 - - uid: 19475 - components: - - type: Transform - pos: 14.5,-73.5 - parent: 2 - - uid: 19479 - components: - - type: Transform - pos: -66.5,11.5 - parent: 2 - - uid: 19513 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 2 - - uid: 19647 - components: - - type: Transform - pos: -31.5,32.5 - parent: 2 - - uid: 19886 - components: - - type: Transform - pos: 23.5,10.5 - parent: 2 - - uid: 20075 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 2 - - uid: 20079 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 2 - - uid: 20229 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 2 - - uid: 20313 - components: - - type: Transform - pos: -23.5,-29.5 - parent: 2 - - uid: 20402 - components: - - type: Transform - pos: -8.5,31.5 - parent: 2 - - uid: 20744 - components: - - type: Transform - pos: 67.5,5.5 - parent: 2 - - uid: 20775 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 2 - - uid: 20830 - components: - - type: Transform - pos: -23.5,-69.5 - parent: 2 - - uid: 20892 - components: - - type: Transform - pos: -8.5,29.5 - parent: 2 - - uid: 20971 - components: - - type: Transform - pos: -26.5,-69.5 - parent: 2 - - uid: 20998 - components: - - type: Transform - pos: 0.5,-12.5 - parent: 2 - - uid: 21129 - components: - - type: Transform - pos: 2.5,-69.5 - parent: 2 - - uid: 21164 - components: - - type: Transform - pos: -5.5,-68.5 - parent: 2 - - uid: 21225 - components: - - type: Transform - pos: 13.5,-85.5 - parent: 2 - - uid: 21253 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 2 - - uid: 21303 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 2 - - uid: 21447 - components: - - type: Transform - pos: -27.5,-25.5 - parent: 2 - - uid: 21448 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 2 - - uid: 21449 - components: - - type: Transform - pos: -27.5,-27.5 - parent: 2 - - uid: 21450 - components: - - type: Transform - pos: -27.5,-28.5 - parent: 2 - - uid: 21453 - components: - - type: Transform - pos: -27.5,-29.5 - parent: 2 - - uid: 21457 - components: - - type: Transform - pos: -10.5,43.5 - parent: 2 - - uid: 21462 - components: - - type: Transform - pos: -10.5,40.5 - parent: 2 - - uid: 21545 - components: - - type: Transform - pos: -8.5,33.5 - parent: 2 - - uid: 21548 - components: - - type: Transform - pos: -66.5,15.5 - parent: 2 - - uid: 21712 - components: - - type: Transform - pos: 4.5,-65.5 - parent: 2 - - uid: 22295 - components: - - type: Transform - pos: 4.5,-68.5 - parent: 2 - - uid: 22318 - components: - - type: Transform - pos: -2.5,-69.5 - parent: 2 - - uid: 22334 - components: - - type: Transform - pos: -5.5,-69.5 - parent: 2 - - uid: 22430 - components: - - type: Transform - pos: -4.5,-69.5 - parent: 2 - - uid: 22828 - components: - - type: Transform - pos: -27.5,-69.5 - parent: 2 - - uid: 22873 - components: - - type: Transform - pos: 59.5,-40.5 - parent: 2 - - uid: 22880 - components: - - type: Transform - pos: -15.5,27.5 - parent: 2 - - uid: 23203 - components: - - type: Transform - pos: 58.5,-40.5 - parent: 2 - - uid: 23303 - components: - - type: Transform - pos: 4.5,-69.5 - parent: 2 - - uid: 23555 - components: - - type: Transform - pos: -11.5,-69.5 - parent: 2 - - uid: 23557 - components: - - type: Transform - pos: -3.5,-69.5 - parent: 2 - - uid: 23572 - components: - - type: Transform - pos: 4.5,-63.5 - parent: 2 - - uid: 23595 - components: - - type: Transform - pos: -23.5,-28.5 - parent: 2 - - uid: 23766 - components: - - type: Transform - pos: 57.5,-40.5 - parent: 2 - - uid: 23826 - components: - - type: Transform - pos: 56.5,-40.5 - parent: 2 - - uid: 24017 - components: - - type: Transform - pos: -21.5,-69.5 - parent: 2 - - uid: 24063 - components: - - type: Transform - pos: 4.5,-64.5 - parent: 2 - - uid: 24248 - components: - - type: Transform - pos: -5.5,-67.5 - parent: 2 - - uid: 24300 - components: - - type: Transform - pos: 55.5,-40.5 - parent: 2 - - uid: 24301 - components: - - type: Transform - pos: 55.5,-39.5 - parent: 2 - - uid: 24302 - components: - - type: Transform - pos: 55.5,-38.5 - parent: 2 - - uid: 24409 - components: - - type: Transform - pos: -30.5,-0.5 - parent: 2 - - uid: 24707 - components: - - type: Transform - pos: -30.5,0.5 - parent: 2 - - uid: 25000 - components: - - type: Transform - pos: -30.5,1.5 - parent: 2 - - uid: 25050 - components: - - type: Transform - pos: 13.5,12.5 - parent: 2 - - uid: 25294 - components: - - type: Transform - pos: 13.5,10.5 - parent: 2 - - uid: 25681 - components: - - type: Transform - pos: 13.5,11.5 - parent: 2 - - uid: 25769 - components: - - type: Transform - pos: -12.5,32.5 - parent: 2 - - uid: 25770 - components: - - type: Transform - pos: -12.5,33.5 - parent: 2 - - uid: 25771 - components: - - type: Transform - pos: -12.5,34.5 - parent: 2 - - uid: 25916 - components: - - type: Transform - pos: 42.5,-48.5 - parent: 2 - - uid: 25935 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 2 - - uid: 25936 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 2 - - uid: 25937 - components: - - type: Transform - pos: 17.5,-26.5 - parent: 2 - - uid: 25938 - components: - - type: Transform - pos: 19.5,-26.5 - parent: 2 - - uid: 25943 - components: - - type: Transform - pos: 36.5,-34.5 - parent: 2 - - uid: 25944 - components: - - type: Transform - pos: 35.5,-34.5 - parent: 2 - - uid: 25945 - components: - - type: Transform - pos: 34.5,-34.5 - parent: 2 - - uid: 25946 - components: - - type: Transform - pos: 33.5,-34.5 - parent: 2 - - uid: 25947 - components: - - type: Transform - pos: 32.5,-34.5 - parent: 2 - - uid: 25948 - components: - - type: Transform - pos: 30.5,-34.5 - parent: 2 - - uid: 25949 - components: - - type: Transform - pos: 29.5,-34.5 - parent: 2 - - uid: 25951 - components: - - type: Transform - pos: 28.5,-34.5 - parent: 2 - - uid: 25952 - components: - - type: Transform - pos: 27.5,-34.5 - parent: 2 - - uid: 25953 - components: - - type: Transform - pos: 31.5,-34.5 - parent: 2 - - uid: 25968 - components: - - type: Transform - pos: 37.5,-39.5 - parent: 2 - - uid: 25977 - components: - - type: Transform - pos: 36.5,-39.5 - parent: 2 - - uid: 25978 - components: - - type: Transform - pos: 35.5,-39.5 - parent: 2 - - uid: 25979 - components: - - type: Transform - pos: 34.5,-39.5 - parent: 2 - - uid: 26006 - components: - - type: Transform - pos: 34.5,-40.5 - parent: 2 - - uid: 26035 - components: - - type: Transform - pos: 34.5,-41.5 - parent: 2 - - uid: 26056 - components: - - type: Transform - pos: 34.5,-42.5 - parent: 2 - - uid: 26078 - components: - - type: Transform - pos: 35.5,-42.5 - parent: 2 - - uid: 26079 - components: - - type: Transform - pos: 36.5,-42.5 - parent: 2 - - uid: 26080 - components: - - type: Transform - pos: 37.5,-42.5 - parent: 2 - - uid: 26081 - components: - - type: Transform - pos: 38.5,-42.5 - parent: 2 - - uid: 26120 - components: - - type: Transform - pos: 26.5,28.5 - parent: 2 - - uid: 26654 - components: - - type: Transform - pos: 13.5,9.5 - parent: 2 - - uid: 26657 - components: - - type: Transform - pos: 12.5,9.5 - parent: 2 - - uid: 26662 - components: - - type: Transform - pos: 15.5,-55.5 - parent: 2 - - uid: 27084 - components: - - type: Transform - pos: 6.5,25.5 - parent: 2 - - uid: 27085 - components: - - type: Transform - pos: 6.5,24.5 - parent: 2 - - uid: 27086 - components: - - type: Transform - pos: 6.5,22.5 - parent: 2 - - uid: 27087 - components: - - type: Transform - pos: 6.5,21.5 - parent: 2 - - uid: 27088 - components: - - type: Transform - pos: 6.5,20.5 - parent: 2 - - uid: 27089 - components: - - type: Transform - pos: 6.5,23.5 - parent: 2 - - uid: 27090 - components: - - type: Transform - pos: 7.5,20.5 - parent: 2 - - uid: 27091 - components: - - type: Transform - pos: 8.5,20.5 - parent: 2 - - uid: 27092 - components: - - type: Transform - pos: 9.5,20.5 - parent: 2 - - uid: 27093 - components: - - type: Transform - pos: 11.5,20.5 - parent: 2 - - uid: 27094 - components: - - type: Transform - pos: 12.5,20.5 - parent: 2 - - uid: 27095 - components: - - type: Transform - pos: 10.5,20.5 - parent: 2 - - uid: 27096 - components: - - type: Transform - pos: 13.5,20.5 - parent: 2 - - uid: 27097 - components: - - type: Transform - pos: 13.5,21.5 - parent: 2 - - uid: 27098 - components: - - type: Transform - pos: 13.5,22.5 - parent: 2 - - uid: 27099 - components: - - type: Transform - pos: 13.5,23.5 - parent: 2 - - uid: 27100 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - uid: 27392 - components: - - type: Transform - pos: 23.5,11.5 - parent: 2 - - uid: 27403 - components: - - type: Transform - pos: 25.5,28.5 - parent: 2 - - uid: 27899 - components: - - type: Transform - pos: -30.5,2.5 - parent: 2 - - uid: 28306 - components: - - type: Transform - pos: -30.5,3.5 - parent: 2 - - uid: 28307 - components: - - type: Transform - pos: -30.5,4.5 - parent: 2 - - uid: 28435 - components: - - type: Transform - pos: -30.5,5.5 - parent: 2 - - uid: 28502 - components: - - type: Transform - pos: -30.5,6.5 - parent: 2 - - uid: 28674 - components: - - type: Transform - pos: 72.5,-5.5 - parent: 2 - - uid: 28703 - components: - - type: Transform - pos: -30.5,7.5 - parent: 2 - - uid: 28873 - components: - - type: Transform - pos: 12.5,-87.5 - parent: 2 - - uid: 29032 - components: - - type: Transform - pos: -30.5,8.5 - parent: 2 - - uid: 29071 - components: - - type: Transform - pos: 67.5,6.5 - parent: 2 - - uid: 29157 - components: - - type: Transform - pos: 33.5,4.5 - parent: 2 - - uid: 29158 - components: - - type: Transform - pos: 33.5,5.5 - parent: 2 - - uid: 29172 - components: - - type: Transform - pos: -30.5,9.5 - parent: 2 - - uid: 29217 - components: - - type: Transform - pos: 33.5,6.5 - parent: 2 - - uid: 29218 - components: - - type: Transform - pos: 33.5,7.5 - parent: 2 - - uid: 29220 - components: - - type: Transform - pos: 33.5,8.5 - parent: 2 - - uid: 29221 - components: - - type: Transform - pos: 33.5,9.5 - parent: 2 - - uid: 29352 - components: - - type: Transform - pos: 12.5,-74.5 - parent: 2 - - uid: 29353 - components: - - type: Transform - pos: 12.5,-75.5 - parent: 2 - - uid: 29354 - components: - - type: Transform - pos: 12.5,-76.5 - parent: 2 - - uid: 29355 - components: - - type: Transform - pos: 12.5,-77.5 - parent: 2 - - uid: 29356 - components: - - type: Transform - pos: 12.5,-78.5 - parent: 2 - - uid: 29357 - components: - - type: Transform - pos: 12.5,-79.5 - parent: 2 - - uid: 29361 - components: - - type: Transform - pos: 12.5,-80.5 - parent: 2 - - uid: 29362 - components: - - type: Transform - pos: 12.5,-81.5 - parent: 2 - - uid: 29363 - components: - - type: Transform - pos: 12.5,-83.5 - parent: 2 - - uid: 29366 - components: - - type: Transform - pos: 12.5,-82.5 - parent: 2 - - uid: 29367 - components: - - type: Transform - pos: 12.5,-84.5 - parent: 2 - - uid: 29370 - components: - - type: Transform - pos: 69.5,6.5 - parent: 2 - - uid: 29419 - components: - - type: Transform - pos: 11.5,-87.5 - parent: 2 - - uid: 29420 - components: - - type: Transform - pos: 10.5,-87.5 - parent: 2 - - uid: 29426 - components: - - type: Transform - pos: 9.5,-87.5 - parent: 2 - - uid: 29536 - components: - - type: Transform - pos: 12.5,-85.5 - parent: 2 - - uid: 29640 - components: - - type: Transform - pos: -4.5,18.5 - parent: 2 - - uid: 29641 - components: - - type: Transform - pos: -4.5,17.5 - parent: 2 - - uid: 29642 - components: - - type: Transform - pos: -5.5,17.5 - parent: 2 - - uid: 29643 - components: - - type: Transform - pos: -6.5,17.5 - parent: 2 - - uid: 29644 - components: - - type: Transform - pos: -6.5,18.5 - parent: 2 - - uid: 29645 - components: - - type: Transform - pos: -7.5,17.5 - parent: 2 - - uid: 29646 - components: - - type: Transform - pos: -9.5,17.5 - parent: 2 - - uid: 29647 - components: - - type: Transform - pos: -10.5,17.5 - parent: 2 - - uid: 29648 - components: - - type: Transform - pos: -11.5,17.5 - parent: 2 - - uid: 29649 - components: - - type: Transform - pos: -8.5,17.5 - parent: 2 - - uid: 29650 - components: - - type: Transform - pos: -11.5,16.5 - parent: 2 - - uid: 29651 - components: - - type: Transform - pos: -11.5,15.5 - parent: 2 - - uid: 29652 - components: - - type: Transform - pos: -11.5,13.5 - parent: 2 - - uid: 29653 - components: - - type: Transform - pos: -11.5,12.5 - parent: 2 - - uid: 29654 - components: - - type: Transform - pos: -11.5,11.5 - parent: 2 - - uid: 29655 - components: - - type: Transform - pos: -11.5,10.5 - parent: 2 - - uid: 29656 - components: - - type: Transform - pos: -11.5,9.5 - parent: 2 - - uid: 29657 - components: - - type: Transform - pos: -11.5,14.5 - parent: 2 - - uid: 29658 - components: - - type: Transform - pos: -11.5,7.5 - parent: 2 - - uid: 29659 - components: - - type: Transform - pos: -11.5,5.5 - parent: 2 - - uid: 29660 - components: - - type: Transform - pos: -11.5,8.5 - parent: 2 - - uid: 29661 - components: - - type: Transform - pos: -11.5,6.5 - parent: 2 - - uid: 29662 - components: - - type: Transform - pos: -12.5,5.5 - parent: 2 - - uid: 29663 - components: - - type: Transform - pos: -13.5,5.5 - parent: 2 - - uid: 29664 - components: - - type: Transform - pos: -11.5,4.5 - parent: 2 - - uid: 29665 - components: - - type: Transform - pos: -9.5,4.5 - parent: 2 - - uid: 29666 - components: - - type: Transform - pos: -8.5,4.5 - parent: 2 - - uid: 29667 - components: - - type: Transform - pos: -7.5,4.5 - parent: 2 - - uid: 29668 - components: - - type: Transform - pos: -6.5,4.5 - parent: 2 - - uid: 29669 - components: - - type: Transform - pos: -5.5,4.5 - parent: 2 - - uid: 29670 - components: - - type: Transform - pos: -3.5,4.5 - parent: 2 - - uid: 29671 - components: - - type: Transform - pos: -10.5,4.5 - parent: 2 - - uid: 29672 - components: - - type: Transform - pos: -2.5,4.5 - parent: 2 - - uid: 29673 - components: - - type: Transform - pos: -4.5,4.5 - parent: 2 - - uid: 29749 - components: - - type: Transform - pos: 32.5,9.5 - parent: 2 - - uid: 29848 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 29854 - components: - - type: Transform - pos: 34.5,-22.5 - parent: 2 - - uid: 29855 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 2 - - uid: 29856 - components: - - type: Transform - pos: 34.5,-20.5 - parent: 2 - - uid: 29857 - components: - - type: Transform - pos: 34.5,-19.5 - parent: 2 - - uid: 29858 - components: - - type: Transform - pos: 35.5,-19.5 - parent: 2 - - uid: 29859 - components: - - type: Transform - pos: 36.5,-19.5 - parent: 2 - - uid: 29918 - components: - - type: Transform - pos: -36.5,-36.5 - parent: 2 - - uid: 29919 - components: - - type: Transform - pos: -36.5,-35.5 - parent: 2 - - uid: 29920 - components: - - type: Transform - pos: -35.5,-35.5 - parent: 2 - - uid: 29921 - components: - - type: Transform - pos: -34.5,-35.5 - parent: 2 - - uid: 29922 - components: - - type: Transform - pos: -38.5,-37.5 - parent: 2 - - uid: 29923 - components: - - type: Transform - pos: -39.5,-37.5 - parent: 2 - - uid: 29924 - components: - - type: Transform - pos: -41.5,-37.5 - parent: 2 - - uid: 29925 - components: - - type: Transform - pos: -42.5,-37.5 - parent: 2 - - uid: 29926 - components: - - type: Transform - pos: -40.5,-37.5 - parent: 2 - - uid: 29927 - components: - - type: Transform - pos: -43.5,-38.5 - parent: 2 - - uid: 29929 - components: - - type: Transform - pos: -44.5,-38.5 - parent: 2 - - uid: 29965 - components: - - type: Transform - pos: -13.5,52.5 - parent: 2 - - uid: 29977 - components: - - type: Transform - pos: 13.5,-89.5 - parent: 2 - - uid: 29992 - components: - - type: Transform - pos: -13.5,51.5 - parent: 2 - - uid: 29993 - components: - - type: Transform - pos: 14.5,-89.5 - parent: 2 - - uid: 29994 - components: - - type: Transform - pos: 15.5,-89.5 - parent: 2 - - uid: 29995 - components: - - type: Transform - pos: 12.5,-89.5 - parent: 2 - - uid: 30013 - components: - - type: Transform - pos: -30.5,10.5 - parent: 2 - - uid: 30202 - components: - - type: Transform - pos: 31.5,9.5 - parent: 2 - - uid: 30297 - components: - - type: Transform - pos: -13.5,50.5 - parent: 2 - - uid: 30299 - components: - - type: Transform - pos: 30.5,9.5 - parent: 2 - - uid: 30314 - components: - - type: Transform - pos: 29.5,9.5 - parent: 2 - - uid: 30316 - components: - - type: Transform - pos: 28.5,9.5 - parent: 2 - - uid: 30370 - components: - - type: Transform - pos: 27.5,9.5 - parent: 2 - - uid: 30377 - components: - - type: Transform - pos: 26.5,9.5 - parent: 2 - - uid: 30597 - components: - - type: Transform - pos: -31.5,19.5 - parent: 2 - - uid: 30598 - components: - - type: Transform - pos: -31.5,18.5 - parent: 2 - - uid: 30599 - components: - - type: Transform - pos: -31.5,20.5 - parent: 2 - - uid: 30600 - components: - - type: Transform - pos: -31.5,21.5 - parent: 2 - - uid: 30601 - components: - - type: Transform - pos: -31.5,22.5 - parent: 2 - - uid: 30602 - components: - - type: Transform - pos: -31.5,23.5 - parent: 2 - - uid: 30603 - components: - - type: Transform - pos: -31.5,24.5 - parent: 2 - - uid: 30604 - components: - - type: Transform - pos: -31.5,25.5 - parent: 2 - - uid: 30605 - components: - - type: Transform - pos: -31.5,26.5 - parent: 2 - - uid: 30606 - components: - - type: Transform - pos: -31.5,27.5 - parent: 2 - - uid: 30607 - components: - - type: Transform - pos: -31.5,28.5 - parent: 2 - - uid: 30608 - components: - - type: Transform - pos: -31.5,29.5 - parent: 2 - - uid: 30609 - components: - - type: Transform - pos: -31.5,30.5 - parent: 2 - - uid: 30610 - components: - - type: Transform - pos: -32.5,30.5 - parent: 2 - - uid: 30611 - components: - - type: Transform - pos: -33.5,30.5 - parent: 2 - - uid: 30639 - components: - - type: Transform - pos: -31.5,31.5 - parent: 2 - - uid: 30641 - components: - - type: Transform - pos: -31.5,33.5 - parent: 2 - - uid: 30642 - components: - - type: Transform - pos: -31.5,34.5 - parent: 2 - - uid: 30643 - components: - - type: Transform - pos: -31.5,35.5 - parent: 2 - - uid: 30644 - components: - - type: Transform - pos: -30.5,35.5 - parent: 2 - - uid: 30645 - components: - - type: Transform - pos: -29.5,35.5 - parent: 2 - - uid: 30646 - components: - - type: Transform - pos: -28.5,35.5 - parent: 2 - - uid: 30647 - components: - - type: Transform - pos: -27.5,35.5 - parent: 2 - - uid: 30648 - components: - - type: Transform - pos: -26.5,35.5 - parent: 2 - - uid: 30649 - components: - - type: Transform - pos: -25.5,35.5 - parent: 2 - - uid: 30650 - components: - - type: Transform - pos: -24.5,35.5 - parent: 2 - - uid: 30651 - components: - - type: Transform - pos: -23.5,35.5 - parent: 2 - - uid: 30652 - components: - - type: Transform - pos: -22.5,35.5 - parent: 2 - - uid: 30653 - components: - - type: Transform - pos: -22.5,36.5 - parent: 2 - - uid: 30654 - components: - - type: Transform - pos: -22.5,37.5 - parent: 2 - - uid: 30778 - components: - - type: Transform - pos: 25.5,9.5 - parent: 2 - - uid: 31337 - components: - - type: Transform - pos: 40.5,18.5 - parent: 2 - - uid: 31338 - components: - - type: Transform - pos: 40.5,19.5 - parent: 2 - - uid: 31339 - components: - - type: Transform - pos: 40.5,20.5 - parent: 2 - - uid: 31400 - components: - - type: Transform - pos: 23.5,13.5 - parent: 2 - - uid: 31401 - components: - - type: Transform - pos: 23.5,14.5 - parent: 2 - - uid: 31402 - components: - - type: Transform - pos: 22.5,14.5 - parent: 2 - - uid: 31404 - components: - - type: Transform - pos: 21.5,14.5 - parent: 2 - - uid: 31405 - components: - - type: Transform - pos: 26.5,10.5 - parent: 2 - - uid: 31406 - components: - - type: Transform - pos: 26.5,11.5 - parent: 2 - - uid: 31407 - components: - - type: Transform - pos: 26.5,12.5 - parent: 2 - - uid: 31408 - components: - - type: Transform - pos: 26.5,13.5 - parent: 2 - - uid: 31409 - components: - - type: Transform - pos: 26.5,14.5 - parent: 2 - - uid: 31410 - components: - - type: Transform - pos: 26.5,15.5 - parent: 2 - - uid: 31411 - components: - - type: Transform - pos: 26.5,16.5 - parent: 2 - - uid: 31412 - components: - - type: Transform - pos: 26.5,17.5 - parent: 2 - - uid: 31413 - components: - - type: Transform - pos: 26.5,18.5 - parent: 2 - - uid: 31414 - components: - - type: Transform - pos: 26.5,19.5 - parent: 2 - - uid: 31415 - components: - - type: Transform - pos: 26.5,20.5 - parent: 2 - - uid: 31416 - components: - - type: Transform - pos: 25.5,20.5 - parent: 2 - - uid: 31417 - components: - - type: Transform - pos: 24.5,20.5 - parent: 2 - - uid: 31418 - components: - - type: Transform - pos: 23.5,20.5 - parent: 2 - - uid: 31419 - components: - - type: Transform - pos: 22.5,20.5 - parent: 2 - - uid: 31794 - components: - - type: Transform - pos: -41.5,-1.5 - parent: 2 - - uid: 31795 - components: - - type: Transform - pos: -40.5,-1.5 - parent: 2 - - uid: 31796 - components: - - type: Transform - pos: -39.5,-1.5 - parent: 2 - - uid: 31797 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 2 - - uid: 31798 - components: - - type: Transform - pos: -37.5,-1.5 - parent: 2 - - uid: 31799 - components: - - type: Transform - pos: -37.5,-2.5 - parent: 2 - - uid: 31800 - components: - - type: Transform - pos: -37.5,-3.5 - parent: 2 - - uid: 31801 - components: - - type: Transform - pos: -37.5,-4.5 - parent: 2 - - uid: 31802 - components: - - type: Transform - pos: -37.5,-5.5 - parent: 2 - - uid: 31803 - components: - - type: Transform - pos: -37.5,-6.5 - parent: 2 - - uid: 31804 - components: - - type: Transform - pos: -38.5,-6.5 - parent: 2 - - uid: 31805 - components: - - type: Transform - pos: -39.5,-6.5 - parent: 2 - - uid: 31806 - components: - - type: Transform - pos: -40.5,-6.5 - parent: 2 - - uid: 31868 - components: - - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 31983 - components: - - type: Transform - pos: -39.5,12.5 - parent: 2 - - uid: 31985 - components: - - type: Transform - pos: -38.5,12.5 - parent: 2 -- proto: CableMVStack - entities: - - uid: 9708 - components: - - type: Transform - pos: -51.506924,-6.1340327 - parent: 2 - - uid: 9709 - components: - - type: Transform - pos: -51.506924,-6.1340327 - parent: 2 - - uid: 9711 - components: - - type: Transform - pos: -46.519806,3.6077793 - parent: 2 - - uid: 9712 - components: - - type: Transform - pos: -65.41794,14.607863 - parent: 2 - - uid: 9713 - components: - - type: Transform - pos: -28.562122,-54.582314 - parent: 2 - - uid: 9714 - components: - - type: Transform - pos: -8.529013,-35.369217 - parent: 2 - - uid: 9715 - components: - - type: Transform - pos: -8.544638,-37.541092 - parent: 2 - - uid: 9717 - components: - - type: Transform - pos: 47.602077,-68.53922 - parent: 2 - - uid: 9718 - components: - - type: Transform - pos: 78.5271,-64.24104 - parent: 2 - - uid: 9719 - components: - - type: Transform - pos: -51.506924,-6.1340327 - parent: 2 - - uid: 9720 - components: - - type: Transform - pos: -2.4743428,-71.44 - parent: 2 - - uid: 9721 - components: - - type: Transform - pos: -16.528381,7.4373426 - parent: 2 - - uid: 25138 - components: - - type: Transform - pos: -10.365765,-72.428535 - parent: 2 -- proto: CableTerminal - entities: - - uid: 7070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-73.5 - parent: 2 - - uid: 7536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-77.5 - parent: 2 - - uid: 9729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,20.5 - parent: 2 - - uid: 9730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-50.5 - parent: 2 - - uid: 9731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,23.5 - parent: 2 - - uid: 9735 - components: - - type: Transform - pos: -38.5,-61.5 - parent: 2 - - uid: 9736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-65.5 - parent: 2 - - uid: 11454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-74.5 - parent: 2 - - uid: 11502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-75.5 - parent: 2 -- proto: CandleBlackInfinite - entities: - - uid: 30338 - components: - - type: Transform - pos: -22.090946,32.01098 - parent: 2 -- proto: CandleRedInfinite - entities: - - uid: 20453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,23.5 - parent: 2 - - uid: 30821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,25.5 - parent: 2 - - uid: 30823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,25.5 - parent: 2 - - uid: 30824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,23.5 - parent: 2 - - uid: 30826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,23.5 - parent: 2 - - uid: 30827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,25.5 - parent: 2 -- proto: CannabisSeeds - entities: - - uid: 9740 - components: - - type: Transform - pos: -23.525152,40.482742 - parent: 2 - - uid: 30560 - components: - - type: Transform - pos: -37.558216,44.440125 - parent: 2 - - uid: 30561 - components: - - type: Transform - pos: -34.60509,45.565125 - parent: 2 -- proto: CapacitorStockPart - entities: - - uid: 9741 - components: - - type: Transform - pos: -8.441639,-39.39827 - parent: 2 - - uid: 9742 - components: - - type: Transform - pos: -8.183451,-39.306458 - parent: 2 - - uid: 9743 - components: - - type: Transform - pos: 74.3515,-19.897121 - parent: 2 - - uid: 9744 - components: - - type: Transform - pos: 74.72912,-20.240425 - parent: 2 -- proto: CaptainIDCard - entities: - - uid: 26378 - components: - - type: Transform - pos: 9.503497,-11.415156 - parent: 2 -- proto: CarbonDioxideCanister - entities: - - uid: 17466 - components: - - type: Transform - pos: 14.5,-43.5 - parent: 2 - - uid: 30109 - components: - - type: Transform - pos: 27.5,37.5 - parent: 2 -- proto: CargoMailTeleporter - entities: - - uid: 32129 - components: - - type: Transform - pos: -22.5,-18.5 - parent: 2 -- proto: CargoPalletBuy - entities: - - uid: 7925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-31.5 - parent: 2 - - uid: 7926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-32.5 - parent: 2 - - uid: 7927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-32.5 - parent: 2 - - uid: 7928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-31.5 - parent: 2 - - uid: 7929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-32.5 - parent: 2 - - uid: 7930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-31.5 - parent: 2 - - uid: 25910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-31.5 - parent: 2 - - uid: 25911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-32.5 - parent: 2 -- proto: CargoPalletSell - entities: - - uid: 7477 - components: - - type: Transform - pos: -44.5,-28.5 - parent: 2 - - uid: 7662 - components: - - type: Transform - pos: -45.5,-29.5 - parent: 2 - - uid: 7851 - components: - - type: Transform - pos: -45.5,-28.5 - parent: 2 - - uid: 7896 - components: - - type: Transform - pos: -44.5,-29.5 - parent: 2 - - uid: 7923 - components: - - type: Transform - pos: -43.5,-28.5 - parent: 2 - - uid: 10180 - components: - - type: Transform - pos: -43.5,-29.5 - parent: 2 - - uid: 11202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-0.5 - parent: 2 - - uid: 13039 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-29.5 - parent: 2 - - uid: 13958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-28.5 - parent: 2 - - uid: 17962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,34.5 - parent: 2 - - uid: 21506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-29.5 - parent: 2 - - uid: 21508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-30.5 - parent: 2 - - uid: 29299 - components: - - type: Transform - pos: -42.5,5.5 - parent: 2 -- proto: Carpet - entities: - - uid: 9763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-12.5 - parent: 2 - - uid: 9764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-12.5 - parent: 2 - - uid: 9771 - components: - - type: Transform - pos: -58.5,-1.5 - parent: 2 - - uid: 9772 - components: - - type: Transform - pos: -58.5,-2.5 - parent: 2 - - uid: 9773 - components: - - type: Transform - pos: -59.5,-1.5 - parent: 2 - - uid: 9774 - components: - - type: Transform - pos: -59.5,-2.5 - parent: 2 - - uid: 9775 - components: - - type: Transform - pos: -60.5,-1.5 - parent: 2 - - uid: 9776 - components: - - type: Transform - pos: -60.5,-2.5 - parent: 2 - - uid: 9777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-11.5 - parent: 2 - - uid: 9779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,42.5 - parent: 2 - - uid: 9780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,43.5 - parent: 2 - - uid: 9781 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 2 - - uid: 9782 - components: - - type: Transform - pos: -31.5,-26.5 - parent: 2 - - uid: 9783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-11.5 - parent: 2 - - uid: 9784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-11.5 - parent: 2 - - uid: 9785 - components: - - type: Transform - pos: -13.5,41.5 - parent: 2 - - uid: 9786 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 2 - - uid: 9787 - components: - - type: Transform - pos: -32.5,-26.5 - parent: 2 - - uid: 9788 - components: - - type: Transform - pos: -32.5,-25.5 - parent: 2 - - uid: 9789 - components: - - type: Transform - pos: -15.5,40.5 - parent: 2 - - uid: 9790 - components: - - type: Transform - pos: -15.5,41.5 - parent: 2 - - uid: 9791 - components: - - type: Transform - pos: -14.5,40.5 - parent: 2 - - uid: 9792 - components: - - type: Transform - pos: -14.5,41.5 - parent: 2 - - uid: 9793 - components: - - type: Transform - pos: -13.5,40.5 - parent: 2 - - uid: 9794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,41.5 - parent: 2 - - uid: 9803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,43.5 - parent: 2 - - uid: 9804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,42.5 - parent: 2 - - uid: 9805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,41.5 - parent: 2 - - uid: 9806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,42.5 - parent: 2 - - uid: 9807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,41.5 - parent: 2 - - uid: 9808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,43.5 - parent: 2 - - uid: 29385 - components: - - type: Transform - pos: 59.5,-6.5 - parent: 2 - - uid: 29386 - components: - - type: Transform - pos: 53.5,-5.5 - parent: 2 - - uid: 29388 - components: - - type: Transform - pos: 57.5,-3.5 - parent: 2 - - uid: 29389 - components: - - type: Transform - pos: 58.5,-3.5 - parent: 2 - - uid: 29390 - components: - - type: Transform - pos: 61.5,-7.5 - parent: 2 - - uid: 29392 - components: - - type: Transform - pos: 54.5,-5.5 - parent: 2 - - uid: 29395 - components: - - type: Transform - pos: 60.5,-6.5 - parent: 2 - - uid: 29396 - components: - - type: Transform - pos: 61.5,-6.5 - parent: 2 - - uid: 29397 - components: - - type: Transform - pos: 60.5,-7.5 - parent: 2 - - uid: 29398 - components: - - type: Transform - pos: 59.5,-7.5 - parent: 2 - - uid: 29832 - components: - - type: Transform - pos: -56.5,-27.5 - parent: 2 -- proto: CarpetBlue - entities: - - uid: 9051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-24.5 - parent: 2 - - uid: 9814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 2 - - uid: 9816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-22.5 - parent: 2 - - uid: 9817 - components: - - type: Transform - pos: 8.5,-25.5 - parent: 2 - - uid: 9818 - components: - - type: Transform - pos: 8.5,-25.5 - parent: 2 - - uid: 9821 - components: - - type: Transform - pos: 8.5,-24.5 - parent: 2 - - uid: 22121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-25.5 - parent: 2 -- proto: CarpetChapel - entities: - - uid: 9822 - components: - - type: Transform - pos: 69.5,16.5 - parent: 2 - - uid: 9823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,19.5 - parent: 2 - - uid: 9825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,19.5 - parent: 2 - - uid: 9827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,18.5 - parent: 2 - - uid: 9828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,16.5 - parent: 2 -- proto: CarpetGreen - entities: - - uid: 9829 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 2 - - uid: 9830 - components: - - type: Transform - pos: 12.5,-36.5 - parent: 2 - - uid: 9831 - components: - - type: Transform - pos: 11.5,-36.5 - parent: 2 - - uid: 9832 - components: - - type: Transform - pos: 56.5,-34.5 - parent: 2 - - uid: 9833 - components: - - type: Transform - pos: 56.5,-35.5 - parent: 2 - - uid: 9834 - components: - - type: Transform - pos: 56.5,1.5 - parent: 2 - - uid: 9835 - components: - - type: Transform - pos: 56.5,0.5 - parent: 2 - - uid: 9836 - components: - - type: Transform - pos: 55.5,1.5 - parent: 2 - - uid: 9837 - components: - - type: Transform - pos: 55.5,0.5 - parent: 2 - - uid: 9838 - components: - - type: Transform - pos: 11.5,-35.5 - parent: 2 - - uid: 9839 - components: - - type: Transform - pos: 57.5,-34.5 - parent: 2 - - uid: 9840 - components: - - type: Transform - pos: 55.5,-34.5 - parent: 2 - - uid: 9841 - components: - - type: Transform - pos: 55.5,-35.5 - parent: 2 - - uid: 9842 - components: - - type: Transform - pos: 57.5,-35.5 - parent: 2 - - uid: 9843 - components: - - type: Transform - pos: 43.5,-63.5 - parent: 2 - - uid: 9844 - components: - - type: Transform - pos: 43.5,-62.5 - parent: 2 - - uid: 9845 - components: - - type: Transform - pos: 44.5,-63.5 - parent: 2 - - uid: 9846 - components: - - type: Transform - pos: 44.5,-62.5 - parent: 2 -- proto: CarpetOrange - entities: - - uid: 9847 - components: - - type: Transform - pos: 65.5,2.5 - parent: 2 - - uid: 9848 - components: - - type: Transform - pos: 65.5,1.5 - parent: 2 - - uid: 9849 - components: - - type: Transform - pos: 6.5,12.5 - parent: 2 - - uid: 9850 - components: - - type: Transform - pos: 6.5,11.5 - parent: 2 - - uid: 9851 - components: - - type: Transform - pos: 5.5,12.5 - parent: 2 - - uid: 9852 - components: - - type: Transform - pos: 5.5,11.5 - parent: 2 - - uid: 9853 - components: - - type: Transform - pos: 4.5,12.5 - parent: 2 - - uid: 9854 - components: - - type: Transform - pos: 4.5,11.5 - parent: 2 - - uid: 9855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,2.5 - parent: 2 - - uid: 9856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,1.5 - parent: 2 - - uid: 9857 - components: - - type: Transform - pos: 64.5,1.5 - parent: 2 - - uid: 9858 - components: - - type: Transform - pos: 64.5,2.5 - parent: 2 - - uid: 9859 - components: - - type: Transform - pos: 52.5,-36.5 - parent: 2 - - uid: 9860 - components: - - type: Transform - pos: 53.5,-35.5 - parent: 2 - - uid: 9861 - components: - - type: Transform - pos: 53.5,-36.5 - parent: 2 - - uid: 9862 - components: - - type: Transform - pos: 52.5,-35.5 - parent: 2 - - uid: 9863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-27.5 - parent: 2 - - uid: 9864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-27.5 - parent: 2 - - uid: 9865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-27.5 - parent: 2 -- proto: CarpetPink - entities: - - uid: 28653 - components: - - type: Transform - pos: 5.5,5.5 - parent: 2 - - uid: 28658 - components: - - type: Transform - pos: 4.5,5.5 - parent: 2 - - uid: 28707 - components: - - type: Transform - pos: 4.5,6.5 - parent: 2 - - uid: 28732 - components: - - type: Transform - pos: 5.5,6.5 - parent: 2 -- proto: CarpetPurple - entities: - - uid: 27480 - components: - - type: Transform - pos: 4.5,9.5 - parent: 2 - - uid: 28399 - components: - - type: Transform - pos: 5.5,9.5 - parent: 2 - - uid: 28576 - components: - - type: Transform - pos: 6.5,9.5 - parent: 2 -- proto: CarpetSBlue - entities: - - uid: 9893 - components: - - type: Transform - pos: -9.5,-23.5 - parent: 2 - - uid: 9894 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 2 - - uid: 9895 - components: - - type: Transform - pos: -8.5,-23.5 - parent: 2 -- proto: Catwalk - entities: - - uid: 122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-50.5 - parent: 2 - - uid: 178 - components: - - type: Transform - pos: -3.5,12.5 - parent: 2 - - uid: 196 - components: - - type: Transform - pos: 15.5,-52.5 - parent: 2 - - uid: 208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-37.5 - parent: 2 - - uid: 254 - components: - - type: Transform - pos: 18.5,-82.5 - parent: 2 - - uid: 311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-11.5 - parent: 2 - - uid: 314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-65.5 - parent: 2 - - uid: 799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-42.5 - parent: 2 - - uid: 917 - components: - - type: Transform - pos: 29.5,-68.5 - parent: 2 - - uid: 931 - components: - - type: Transform - pos: 29.5,-58.5 - parent: 2 - - uid: 932 - components: - - type: Transform - pos: 29.5,-59.5 - parent: 2 - - uid: 944 - components: - - type: Transform - pos: 29.5,-64.5 - parent: 2 - - uid: 947 - components: - - type: Transform - pos: 29.5,-65.5 - parent: 2 - - uid: 948 - components: - - type: Transform - pos: 29.5,-66.5 - parent: 2 - - uid: 954 - components: - - type: Transform - pos: 29.5,-67.5 - parent: 2 - - uid: 988 - components: - - type: Transform - pos: 20.5,-55.5 - parent: 2 - - uid: 993 - components: - - type: Transform - pos: 29.5,-55.5 - parent: 2 - - uid: 998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-50.5 - parent: 2 - - uid: 1002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-50.5 - parent: 2 - - uid: 1089 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,8.5 - parent: 2 - - uid: 1313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-14.5 - parent: 2 - - uid: 1326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-17.5 - parent: 2 - - uid: 1425 - components: - - type: Transform - pos: 10.5,-38.5 - parent: 2 - - uid: 1560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-70.5 - parent: 2 - - uid: 1561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-53.5 - parent: 2 - - uid: 1588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-48.5 - parent: 2 - - uid: 1652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-27.5 - parent: 2 - - uid: 1750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-32.5 - parent: 2 - - uid: 1751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-31.5 - parent: 2 - - uid: 1901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-26.5 - parent: 2 - - uid: 1908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-25.5 - parent: 2 - - uid: 1925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,24.5 - parent: 2 - - uid: 1926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-24.5 - parent: 2 - - uid: 2131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,12.5 - parent: 2 - - uid: 2140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,12.5 - parent: 2 - - uid: 2142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,12.5 - parent: 2 - - uid: 2237 - components: - - type: Transform - pos: 3.5,42.5 - parent: 2 - - uid: 2282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-33.5 - parent: 2 - - uid: 2283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 2 - - uid: 2325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-23.5 - parent: 2 - - uid: 2361 - components: - - type: Transform - pos: 3.5,43.5 - parent: 2 - - uid: 2362 - components: - - type: Transform - pos: 3.5,41.5 - parent: 2 - - uid: 2436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-29.5 - parent: 2 - - uid: 2603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-21.5 - parent: 2 - - uid: 2604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-21.5 - parent: 2 - - uid: 2616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-21.5 - parent: 2 - - uid: 2629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,12.5 - parent: 2 - - uid: 2682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,12.5 - parent: 2 - - uid: 3189 - components: - - type: Transform - pos: -14.5,3.5 - parent: 2 - - uid: 3193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-33.5 - parent: 2 - - uid: 3289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,12.5 - parent: 2 - - uid: 3290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,12.5 - parent: 2 - - uid: 3291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,12.5 - parent: 2 - - uid: 3313 - components: - - type: Transform - pos: -31.5,-70.5 - parent: 2 - - uid: 3317 - components: - - type: Transform - pos: -31.5,-69.5 - parent: 2 - - uid: 3358 - components: - - type: Transform - pos: -14.5,6.5 - parent: 2 - - uid: 3360 - components: - - type: Transform - pos: 3.5,40.5 - parent: 2 - - uid: 3476 - components: - - type: Transform - pos: -38.5,-13.5 - parent: 2 - - uid: 3513 - components: - - type: Transform - pos: 8.5,-38.5 - parent: 2 - - uid: 3533 - components: - - type: Transform - pos: 9.5,-38.5 - parent: 2 - - uid: 3913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-60.5 - parent: 2 - - uid: 4133 - components: - - type: Transform - pos: 29.5,-56.5 - parent: 2 - - uid: 4135 - components: - - type: Transform - pos: 29.5,-54.5 - parent: 2 - - uid: 4144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,39.5 - parent: 2 - - uid: 4188 - components: - - type: Transform - pos: 11.5,-47.5 - parent: 2 - - uid: 4200 - components: - - type: Transform - pos: 15.5,-53.5 - parent: 2 - - uid: 4203 - components: - - type: Transform - pos: 20.5,-56.5 - parent: 2 - - uid: 4211 - components: - - type: Transform - pos: 29.5,-57.5 - parent: 2 - - uid: 4225 - components: - - type: Transform - pos: 29.5,-45.5 - parent: 2 - - uid: 4227 - components: - - type: Transform - pos: 29.5,-48.5 - parent: 2 - - uid: 4236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-50.5 - parent: 2 - - uid: 4250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-17.5 - parent: 2 - - uid: 4251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,36.5 - parent: 2 - - uid: 4256 - components: - - type: Transform - pos: 29.5,-47.5 - parent: 2 - - uid: 4263 - components: - - type: Transform - pos: 29.5,-49.5 - parent: 2 - - uid: 4266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-62.5 - parent: 2 - - uid: 4267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-50.5 - parent: 2 - - uid: 4269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-42.5 - parent: 2 - - uid: 4285 - components: - - type: Transform - pos: 14.5,-52.5 - parent: 2 - - uid: 4292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-61.5 - parent: 2 - - uid: 4298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-49.5 - parent: 2 - - uid: 4329 - components: - - type: Transform - pos: -57.5,-25.5 - parent: 2 - - uid: 4338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-43.5 - parent: 2 - - uid: 4339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-54.5 - parent: 2 - - uid: 4340 - components: - - type: Transform - pos: 29.5,-50.5 - parent: 2 - - uid: 4341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-53.5 - parent: 2 - - uid: 4362 - components: - - type: Transform - pos: -10.5,-65.5 - parent: 2 - - uid: 4412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-62.5 - parent: 2 - - uid: 4416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-59.5 - parent: 2 - - uid: 4423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-66.5 - parent: 2 - - uid: 4544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,12.5 - parent: 2 - - uid: 4857 - components: - - type: Transform - pos: 20.5,20.5 - parent: 2 - - uid: 5454 - components: - - type: Transform - pos: 20.5,19.5 - parent: 2 - - uid: 5493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,24.5 - parent: 2 - - uid: 5600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-17.5 - parent: 2 - - uid: 5610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-21.5 - parent: 2 - - uid: 5635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-36.5 - parent: 2 - - uid: 5661 - components: - - type: Transform - pos: 78.5,-35.5 - parent: 2 - - uid: 5662 - components: - - type: Transform - pos: 78.5,-34.5 - parent: 2 - - uid: 5663 - components: - - type: Transform - pos: 78.5,-33.5 - parent: 2 - - uid: 5690 - components: - - type: Transform - pos: 78.5,-21.5 - parent: 2 - - uid: 5691 - components: - - type: Transform - pos: 77.5,-21.5 - parent: 2 - - uid: 5693 - components: - - type: Transform - pos: 79.5,-21.5 - parent: 2 - - uid: 5695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-19.5 - parent: 2 - - uid: 5849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-19.5 - parent: 2 - - uid: 5947 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-48.5 - parent: 2 - - uid: 5948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-56.5 - parent: 2 - - uid: 5963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-33.5 - parent: 2 - - uid: 5964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-34.5 - parent: 2 - - uid: 5965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-31.5 - parent: 2 - - uid: 5970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-37.5 - parent: 2 - - uid: 5972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-36.5 - parent: 2 - - uid: 6166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,36.5 - parent: 2 - - uid: 6169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,36.5 - parent: 2 - - uid: 6775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,12.5 - parent: 2 - - uid: 6776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,12.5 - parent: 2 - - uid: 6778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,3.5 - parent: 2 - - uid: 6779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,12.5 - parent: 2 - - uid: 7031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,12.5 - parent: 2 - - uid: 7039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-37.5 - parent: 2 - - uid: 7154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-64.5 - parent: 2 - - uid: 7155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-63.5 - parent: 2 - - uid: 7160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-59.5 - parent: 2 - - uid: 7190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-64.5 - parent: 2 - - uid: 7242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,12.5 - parent: 2 - - uid: 7416 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-47.5 - parent: 2 - - uid: 7479 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-56.5 - parent: 2 - - uid: 7526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-41.5 - parent: 2 - - uid: 7544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-33.5 - parent: 2 - - uid: 7565 - components: - - type: Transform - pos: 20.5,18.5 - parent: 2 - - uid: 7600 - components: - - type: Transform - pos: 20.5,17.5 - parent: 2 - - uid: 7611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-42.5 - parent: 2 - - uid: 7614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-40.5 - parent: 2 - - uid: 7619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-39.5 - parent: 2 - - uid: 7636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-33.5 - parent: 2 - - uid: 7637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-35.5 - parent: 2 - - uid: 7747 - components: - - type: Transform - pos: 2.5,2.5 - parent: 2 - - uid: 7991 - components: - - type: Transform - pos: 15.5,-38.5 - parent: 2 - - uid: 7992 - components: - - type: Transform - pos: 14.5,-38.5 - parent: 2 - - uid: 8135 - components: - - type: Transform - pos: -14.5,4.5 - parent: 2 - - uid: 8141 - components: - - type: Transform - pos: -14.5,7.5 - parent: 2 - - uid: 8155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 2 - - uid: 8159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,3.5 - parent: 2 - - uid: 8160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,3.5 - parent: 2 - - uid: 8161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,3.5 - parent: 2 - - uid: 8223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,12.5 - parent: 2 - - uid: 8259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,3.5 - parent: 2 - - uid: 8382 - components: - - type: Transform - pos: 13.5,-38.5 - parent: 2 - - uid: 8397 - components: - - type: Transform - pos: 11.5,-38.5 - parent: 2 - - uid: 8633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-64.5 - parent: 2 - - uid: 8634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-63.5 - parent: 2 - - uid: 8640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-64.5 - parent: 2 - - uid: 8641 - components: - - type: Transform - pos: -14.5,-65.5 - parent: 2 - - uid: 8642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-64.5 - parent: 2 - - uid: 8700 - components: - - type: Transform - pos: -14.5,-63.5 - parent: 2 - - uid: 8779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,3.5 - parent: 2 - - uid: 9242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-42.5 - parent: 2 - - uid: 9349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-55.5 - parent: 2 - - uid: 9749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-42.5 - parent: 2 - - uid: 9758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-18.5 - parent: 2 - - uid: 9897 - components: - - type: Transform - pos: 69.5,-74.5 - parent: 2 - - uid: 9898 - components: - - type: Transform - pos: 69.5,-75.5 - parent: 2 - - uid: 9900 - components: - - type: Transform - pos: 49.5,-29.5 - parent: 2 - - uid: 9901 - components: - - type: Transform - pos: 49.5,-30.5 - parent: 2 - - uid: 9902 - components: - - type: Transform - pos: 25.5,6.5 - parent: 2 - - uid: 9904 - components: - - type: Transform - pos: 69.5,-72.5 - parent: 2 - - uid: 9905 - components: - - type: Transform - pos: 49.5,-18.5 - parent: 2 - - uid: 9906 - components: - - type: Transform - pos: 49.5,-20.5 - parent: 2 - - uid: 9907 - components: - - type: Transform - pos: 49.5,-21.5 - parent: 2 - - uid: 9908 - components: - - type: Transform - pos: 49.5,-22.5 - parent: 2 - - uid: 9909 - components: - - type: Transform - pos: 89.5,-3.5 - parent: 2 - - uid: 9912 - components: - - type: Transform - pos: 55.5,-24.5 - parent: 2 - - uid: 9915 - components: - - type: Transform - pos: 69.5,-70.5 - parent: 2 - - uid: 9917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-65.5 - parent: 2 - - uid: 9919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-65.5 - parent: 2 - - uid: 9922 - components: - - type: Transform - pos: 69.5,-78.5 - parent: 2 - - uid: 9923 - components: - - type: Transform - pos: 69.5,-76.5 - parent: 2 - - uid: 9924 - components: - - type: Transform - pos: 67.5,-78.5 - parent: 2 - - uid: 9930 - components: - - type: Transform - pos: -18.5,-35.5 - parent: 2 - - uid: 9931 - components: - - type: Transform - pos: -17.5,-33.5 - parent: 2 - - uid: 9932 - components: - - type: Transform - pos: -17.5,-35.5 - parent: 2 - - uid: 9933 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 2 - - uid: 9934 - components: - - type: Transform - pos: -17.5,-37.5 - parent: 2 - - uid: 9935 - components: - - type: Transform - pos: 69.5,-77.5 - parent: 2 - - uid: 9936 - components: - - type: Transform - pos: -17.5,-38.5 - parent: 2 - - uid: 9941 - components: - - type: Transform - pos: -17.5,-44.5 - parent: 2 - - uid: 9942 - components: - - type: Transform - pos: -17.5,-45.5 - parent: 2 - - uid: 9943 - components: - - type: Transform - pos: -17.5,-46.5 - parent: 2 - - uid: 9944 - components: - - type: Transform - pos: -18.5,-48.5 - parent: 2 - - uid: 9945 - components: - - type: Transform - pos: -18.5,-49.5 - parent: 2 - - uid: 9946 - components: - - type: Transform - pos: -18.5,-50.5 - parent: 2 - - uid: 9947 - components: - - type: Transform - pos: -18.5,-51.5 - parent: 2 - - uid: 9948 - components: - - type: Transform - pos: -18.5,-52.5 - parent: 2 - - uid: 9949 - components: - - type: Transform - pos: -18.5,-53.5 - parent: 2 - - uid: 9950 - components: - - type: Transform - pos: -18.5,-54.5 - parent: 2 - - uid: 9951 - components: - - type: Transform - pos: -18.5,-55.5 - parent: 2 - - uid: 9952 - components: - - type: Transform - pos: -18.5,-56.5 - parent: 2 - - uid: 9953 - components: - - type: Transform - pos: -18.5,-57.5 - parent: 2 - - uid: 9954 - components: - - type: Transform - pos: -18.5,-58.5 - parent: 2 - - uid: 9955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-63.5 - parent: 2 - - uid: 9956 - components: - - type: Transform - pos: -32.5,-61.5 - parent: 2 - - uid: 9957 - components: - - type: Transform - pos: -33.5,-61.5 - parent: 2 - - uid: 9958 - components: - - type: Transform - pos: -34.5,-61.5 - parent: 2 - - uid: 9959 - components: - - type: Transform - pos: -31.5,-60.5 - parent: 2 - - uid: 9960 - components: - - type: Transform - pos: -31.5,-61.5 - parent: 2 - - uid: 9961 - components: - - type: Transform - pos: -31.5,-62.5 - parent: 2 - - uid: 9962 - components: - - type: Transform - pos: -31.5,-63.5 - parent: 2 - - uid: 9963 - components: - - type: Transform - pos: 68.5,-78.5 - parent: 2 - - uid: 9965 - components: - - type: Transform - pos: 49.5,-31.5 - parent: 2 - - uid: 9966 - components: - - type: Transform - pos: -31.5,-64.5 - parent: 2 - - uid: 9967 - components: - - type: Transform - pos: -31.5,-65.5 - parent: 2 - - uid: 9968 - components: - - type: Transform - pos: -20.5,-60.5 - parent: 2 - - uid: 9969 - components: - - type: Transform - pos: -21.5,-60.5 - parent: 2 - - uid: 9970 - components: - - type: Transform - pos: -22.5,-60.5 - parent: 2 - - uid: 9971 - components: - - type: Transform - pos: -23.5,-60.5 - parent: 2 - - uid: 9972 - components: - - type: Transform - pos: -24.5,-60.5 - parent: 2 - - uid: 9973 - components: - - type: Transform - pos: -25.5,-60.5 - parent: 2 - - uid: 9974 - components: - - type: Transform - pos: 69.5,-71.5 - parent: 2 - - uid: 9975 - components: - - type: Transform - pos: 88.5,-3.5 - parent: 2 - - uid: 9976 - components: - - type: Transform - pos: -10.5,-63.5 - parent: 2 - - uid: 9977 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 2 - - uid: 9978 - components: - - type: Transform - pos: -27.5,-60.5 - parent: 2 - - uid: 9979 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 2 - - uid: 9980 - components: - - type: Transform - pos: -29.5,-60.5 - parent: 2 - - uid: 9981 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 2 - - uid: 9982 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 2 - - uid: 9983 - components: - - type: Transform - pos: 4.5,-38.5 - parent: 2 - - uid: 9984 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 2 - - uid: 9985 - components: - - type: Transform - pos: 6.5,-38.5 - parent: 2 - - uid: 9988 - components: - - type: Transform - pos: 14.5,-53.5 - parent: 2 - - uid: 9995 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 2 - - uid: 9996 - components: - - type: Transform - pos: 20.5,-38.5 - parent: 2 - - uid: 9997 - components: - - type: Transform - pos: 21.5,-38.5 - parent: 2 - - uid: 10001 - components: - - type: Transform - pos: 25.5,-38.5 - parent: 2 - - uid: 10002 - components: - - type: Transform - pos: 26.5,-38.5 - parent: 2 - - uid: 10003 - components: - - type: Transform - pos: 27.5,-38.5 - parent: 2 - - uid: 10004 - components: - - type: Transform - pos: 28.5,-38.5 - parent: 2 - - uid: 10005 - components: - - type: Transform - pos: 29.5,-38.5 - parent: 2 - - uid: 10006 - components: - - type: Transform - pos: 30.5,-38.5 - parent: 2 - - uid: 10007 - components: - - type: Transform - pos: 31.5,-38.5 - parent: 2 - - uid: 10011 - components: - - type: Transform - pos: 32.5,-42.5 - parent: 2 - - uid: 10012 - components: - - type: Transform - pos: 32.5,-43.5 - parent: 2 - - uid: 10013 - components: - - type: Transform - pos: 32.5,-44.5 - parent: 2 - - uid: 10014 - components: - - type: Transform - pos: 32.5,-45.5 - parent: 2 - - uid: 10015 - components: - - type: Transform - pos: 32.5,-46.5 - parent: 2 - - uid: 10016 - components: - - type: Transform - pos: 32.5,-47.5 - parent: 2 - - uid: 10021 - components: - - type: Transform - pos: 32.5,-52.5 - parent: 2 - - uid: 10022 - components: - - type: Transform - pos: 32.5,-53.5 - parent: 2 - - uid: 10023 - components: - - type: Transform - pos: 32.5,-54.5 - parent: 2 - - uid: 10024 - components: - - type: Transform - pos: 32.5,-55.5 - parent: 2 - - uid: 10025 - components: - - type: Transform - pos: 33.5,-57.5 - parent: 2 - - uid: 10026 - components: - - type: Transform - pos: 34.5,-57.5 - parent: 2 - - uid: 10027 - components: - - type: Transform - pos: 35.5,-57.5 - parent: 2 - - uid: 10028 - components: - - type: Transform - pos: 36.5,-58.5 - parent: 2 - - uid: 10029 - components: - - type: Transform - pos: 36.5,-59.5 - parent: 2 - - uid: 10030 - components: - - type: Transform - pos: 36.5,-60.5 - parent: 2 - - uid: 10031 - components: - - type: Transform - pos: 36.5,-61.5 - parent: 2 - - uid: 10032 - components: - - type: Transform - pos: 37.5,-62.5 - parent: 2 - - uid: 10033 - components: - - type: Transform - pos: 38.5,-62.5 - parent: 2 - - uid: 10034 - components: - - type: Transform - pos: 39.5,-62.5 - parent: 2 - - uid: 10035 - components: - - type: Transform - pos: 41.5,-65.5 - parent: 2 - - uid: 10036 - components: - - type: Transform - pos: 42.5,-65.5 - parent: 2 - - uid: 10037 - components: - - type: Transform - pos: 43.5,-65.5 - parent: 2 - - uid: 10038 - components: - - type: Transform - pos: 44.5,-65.5 - parent: 2 - - uid: 10039 - components: - - type: Transform - pos: 45.5,-65.5 - parent: 2 - - uid: 10040 - components: - - type: Transform - pos: 46.5,-65.5 - parent: 2 - - uid: 10041 - components: - - type: Transform - pos: 47.5,-64.5 - parent: 2 - - uid: 10042 - components: - - type: Transform - pos: 47.5,-62.5 - parent: 2 - - uid: 10043 - components: - - type: Transform - pos: 47.5,-63.5 - parent: 2 - - uid: 10044 - components: - - type: Transform - pos: 48.5,-62.5 - parent: 2 - - uid: 10045 - components: - - type: Transform - pos: 82.5,-45.5 - parent: 2 - - uid: 10046 - components: - - type: Transform - pos: 82.5,-46.5 - parent: 2 - - uid: 10047 - components: - - type: Transform - pos: 82.5,-47.5 - parent: 2 - - uid: 10048 - components: - - type: Transform - pos: 82.5,-48.5 - parent: 2 - - uid: 10050 - components: - - type: Transform - pos: 82.5,-50.5 - parent: 2 - - uid: 10051 - components: - - type: Transform - pos: 82.5,-51.5 - parent: 2 - - uid: 10052 - components: - - type: Transform - pos: 82.5,-52.5 - parent: 2 - - uid: 10053 - components: - - type: Transform - pos: 82.5,-53.5 - parent: 2 - - uid: 10054 - components: - - type: Transform - pos: 82.5,-55.5 - parent: 2 - - uid: 10055 - components: - - type: Transform - pos: 82.5,-56.5 - parent: 2 - - uid: 10056 - components: - - type: Transform - pos: 82.5,-57.5 - parent: 2 - - uid: 10057 - components: - - type: Transform - pos: 82.5,-58.5 - parent: 2 - - uid: 10058 - components: - - type: Transform - pos: 82.5,-59.5 - parent: 2 - - uid: 10059 - components: - - type: Transform - pos: 81.5,-60.5 - parent: 2 - - uid: 10060 - components: - - type: Transform - pos: 80.5,-60.5 - parent: 2 - - uid: 10062 - components: - - type: Transform - pos: 79.5,-60.5 - parent: 2 - - uid: 10064 - components: - - type: Transform - pos: 78.5,-60.5 - parent: 2 - - uid: 10065 - components: - - type: Transform - pos: 77.5,-60.5 - parent: 2 - - uid: 10066 - components: - - type: Transform - pos: 76.5,-60.5 - parent: 2 - - uid: 10067 - components: - - type: Transform - pos: 74.5,-60.5 - parent: 2 - - uid: 10068 - components: - - type: Transform - pos: 73.5,-60.5 - parent: 2 - - uid: 10069 - components: - - type: Transform - pos: 72.5,-60.5 - parent: 2 - - uid: 10070 - components: - - type: Transform - pos: 71.5,-60.5 - parent: 2 - - uid: 10071 - components: - - type: Transform - pos: 70.5,-60.5 - parent: 2 - - uid: 10072 - components: - - type: Transform - pos: 69.5,-60.5 - parent: 2 - - uid: 10073 - components: - - type: Transform - pos: 68.5,-60.5 - parent: 2 - - uid: 10074 - components: - - type: Transform - pos: 67.5,-60.5 - parent: 2 - - uid: 10076 - components: - - type: Transform - pos: 64.5,-61.5 - parent: 2 - - uid: 10077 - components: - - type: Transform - pos: 63.5,-61.5 - parent: 2 - - uid: 10078 - components: - - type: Transform - pos: 62.5,-61.5 - parent: 2 - - uid: 10079 - components: - - type: Transform - pos: 61.5,-61.5 - parent: 2 - - uid: 10080 - components: - - type: Transform - pos: 60.5,-61.5 - parent: 2 - - uid: 10081 - components: - - type: Transform - pos: 59.5,-61.5 - parent: 2 - - uid: 10082 - components: - - type: Transform - pos: 58.5,-61.5 - parent: 2 - - uid: 10083 - components: - - type: Transform - pos: 57.5,-61.5 - parent: 2 - - uid: 10084 - components: - - type: Transform - pos: 56.5,-61.5 - parent: 2 - - uid: 10085 - components: - - type: Transform - pos: 55.5,-61.5 - parent: 2 - - uid: 10086 - components: - - type: Transform - pos: 54.5,-61.5 - parent: 2 - - uid: 10087 - components: - - type: Transform - pos: 53.5,-61.5 - parent: 2 - - uid: 10088 - components: - - type: Transform - pos: 52.5,-61.5 - parent: 2 - - uid: 10089 - components: - - type: Transform - pos: 49.5,-60.5 - parent: 2 - - uid: 10090 - components: - - type: Transform - pos: 49.5,-59.5 - parent: 2 - - uid: 10091 - components: - - type: Transform - pos: 49.5,-58.5 - parent: 2 - - uid: 10092 - components: - - type: Transform - pos: 49.5,-57.5 - parent: 2 - - uid: 10093 - components: - - type: Transform - pos: 49.5,-56.5 - parent: 2 - - uid: 10094 - components: - - type: Transform - pos: 49.5,-55.5 - parent: 2 - - uid: 10095 - components: - - type: Transform - pos: 49.5,-54.5 - parent: 2 - - uid: 10096 - components: - - type: Transform - pos: 49.5,-53.5 - parent: 2 - - uid: 10102 - components: - - type: Transform - pos: 19.5,17.5 - parent: 2 - - uid: 10103 - components: - - type: Transform - pos: 18.5,17.5 - parent: 2 - - uid: 10104 - components: - - type: Transform - pos: 16.5,17.5 - parent: 2 - - uid: 10105 - components: - - type: Transform - pos: 15.5,17.5 - parent: 2 - - uid: 10106 - components: - - type: Transform - pos: 14.5,17.5 - parent: 2 - - uid: 10107 - components: - - type: Transform - pos: 13.5,17.5 - parent: 2 - - uid: 10108 - components: - - type: Transform - pos: 12.5,17.5 - parent: 2 - - uid: 10109 - components: - - type: Transform - pos: 11.5,17.5 - parent: 2 - - uid: 10110 - components: - - type: Transform - pos: 6.5,17.5 - parent: 2 - - uid: 10111 - components: - - type: Transform - pos: 5.5,17.5 - parent: 2 - - uid: 10112 - components: - - type: Transform - pos: 4.5,17.5 - parent: 2 - - uid: 10113 - components: - - type: Transform - pos: 3.5,17.5 - parent: 2 - - uid: 10114 - components: - - type: Transform - pos: 2.5,16.5 - parent: 2 - - uid: 10115 - components: - - type: Transform - pos: 2.5,15.5 - parent: 2 - - uid: 10116 - components: - - type: Transform - pos: 2.5,14.5 - parent: 2 - - uid: 10117 - components: - - type: Transform - pos: 2.5,13.5 - parent: 2 - - uid: 10118 - components: - - type: Transform - pos: 2.5,12.5 - parent: 2 - - uid: 10119 - components: - - type: Transform - pos: 66.5,-78.5 - parent: 2 - - uid: 10120 - components: - - type: Transform - pos: 69.5,-73.5 - parent: 2 - - uid: 10122 - components: - - type: Transform - pos: 65.5,-78.5 - parent: 2 - - uid: 10136 - components: - - type: Transform - pos: -16.5,17.5 - parent: 2 - - uid: 10137 - components: - - type: Transform - pos: -16.5,16.5 - parent: 2 - - uid: 10138 - components: - - type: Transform - pos: -16.5,15.5 - parent: 2 - - uid: 10139 - components: - - type: Transform - pos: -16.5,14.5 - parent: 2 - - uid: 10140 - components: - - type: Transform - pos: -16.5,13.5 - parent: 2 - - uid: 10143 - components: - - type: Transform - pos: -17.5,10.5 - parent: 2 - - uid: 10144 - components: - - type: Transform - pos: -18.5,10.5 - parent: 2 - - uid: 10145 - components: - - type: Transform - pos: -19.5,10.5 - parent: 2 - - uid: 10146 - components: - - type: Transform - pos: -20.5,10.5 - parent: 2 - - uid: 10147 - components: - - type: Transform - pos: -21.5,10.5 - parent: 2 - - uid: 10148 - components: - - type: Transform - pos: -22.5,10.5 - parent: 2 - - uid: 10160 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - uid: 10161 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 2 - - uid: 10162 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 2 - - uid: 10169 - components: - - type: Transform - pos: -40.5,-18.5 - parent: 2 - - uid: 10170 - components: - - type: Transform - pos: -41.5,-18.5 - parent: 2 - - uid: 10171 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 2 - - uid: 10172 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 2 - - uid: 10173 - components: - - type: Transform - pos: -26.5,-11.5 - parent: 2 - - uid: 10174 - components: - - type: Transform - pos: -26.5,-12.5 - parent: 2 - - uid: 10175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-28.5 - parent: 2 - - uid: 10183 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 2 - - uid: 10184 - components: - - type: Transform - pos: -34.5,-10.5 - parent: 2 - - uid: 10185 - components: - - type: Transform - pos: -34.5,-11.5 - parent: 2 - - uid: 10186 - components: - - type: Transform - pos: -34.5,-12.5 - parent: 2 - - uid: 10195 - components: - - type: Transform - pos: -42.5,-18.5 - parent: 2 - - uid: 10196 - components: - - type: Transform - pos: -43.5,-18.5 - parent: 2 - - uid: 10197 - components: - - type: Transform - pos: -44.5,-18.5 - parent: 2 - - uid: 10201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,14.5 - parent: 2 - - uid: 10203 - components: - - type: Transform - pos: -50.5,-17.5 - parent: 2 - - uid: 10204 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 2 - - uid: 10211 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 2 - - uid: 10212 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 2 - - uid: 10213 - components: - - type: Transform - pos: -11.5,-19.5 - parent: 2 - - uid: 10214 - components: - - type: Transform - pos: 51.5,-6.5 - parent: 2 - - uid: 10215 - components: - - type: Transform - pos: 51.5,-5.5 - parent: 2 - - uid: 10216 - components: - - type: Transform - pos: 51.5,-4.5 - parent: 2 - - uid: 10217 - components: - - type: Transform - pos: 51.5,-3.5 - parent: 2 - - uid: 10218 - components: - - type: Transform - pos: 51.5,-2.5 - parent: 2 - - uid: 10219 - components: - - type: Transform - pos: 51.5,-1.5 - parent: 2 - - uid: 10220 - components: - - type: Transform - pos: 51.5,-0.5 - parent: 2 - - uid: 10221 - components: - - type: Transform - pos: 51.5,0.5 - parent: 2 - - uid: 10222 - components: - - type: Transform - pos: 51.5,1.5 - parent: 2 - - uid: 10223 - components: - - type: Transform - pos: 51.5,2.5 - parent: 2 - - uid: 10224 - components: - - type: Transform - pos: 51.5,3.5 - parent: 2 - - uid: 10225 - components: - - type: Transform - pos: 51.5,4.5 - parent: 2 - - uid: 10226 - components: - - type: Transform - pos: 52.5,4.5 - parent: 2 - - uid: 10227 - components: - - type: Transform - pos: 53.5,4.5 - parent: 2 - - uid: 10228 - components: - - type: Transform - pos: 54.5,4.5 - parent: 2 - - uid: 10229 - components: - - type: Transform - pos: 54.5,5.5 - parent: 2 - - uid: 10230 - components: - - type: Transform - pos: 54.5,6.5 - parent: 2 - - uid: 10231 - components: - - type: Transform - pos: 54.5,7.5 - parent: 2 - - uid: 10234 - components: - - type: Transform - pos: 47.5,16.5 - parent: 2 - - uid: 10235 - components: - - type: Transform - pos: 47.5,15.5 - parent: 2 - - uid: 10236 - components: - - type: Transform - pos: 47.5,14.5 - parent: 2 - - uid: 10237 - components: - - type: Transform - pos: 47.5,13.5 - parent: 2 - - uid: 10244 - components: - - type: Transform - pos: 55.5,13.5 - parent: 2 - - uid: 10245 - components: - - type: Transform - pos: 56.5,13.5 - parent: 2 - - uid: 10246 - components: - - type: Transform - pos: 57.5,13.5 - parent: 2 - - uid: 10247 - components: - - type: Transform - pos: 58.5,13.5 - parent: 2 - - uid: 10248 - components: - - type: Transform - pos: 59.5,13.5 - parent: 2 - - uid: 10249 - components: - - type: Transform - pos: 59.5,12.5 - parent: 2 - - uid: 10250 - components: - - type: Transform - pos: 59.5,10.5 - parent: 2 - - uid: 10251 - components: - - type: Transform - pos: 58.5,10.5 - parent: 2 - - uid: 10253 - components: - - type: Transform - pos: 55.5,10.5 - parent: 2 - - uid: 10254 - components: - - type: Transform - pos: 54.5,10.5 - parent: 2 - - uid: 10255 - components: - - type: Transform - pos: 53.5,10.5 - parent: 2 - - uid: 10256 - components: - - type: Transform - pos: 52.5,10.5 - parent: 2 - - uid: 10257 - components: - - type: Transform - pos: 51.5,10.5 - parent: 2 - - uid: 10258 - components: - - type: Transform - pos: 49.5,10.5 - parent: 2 - - uid: 10259 - components: - - type: Transform - pos: 48.5,10.5 - parent: 2 - - uid: 10260 - components: - - type: Transform - pos: 47.5,10.5 - parent: 2 - - uid: 10261 - components: - - type: Transform - pos: 46.5,10.5 - parent: 2 - - uid: 10262 - components: - - type: Transform - pos: 31.5,3.5 - parent: 2 - - uid: 10263 - components: - - type: Transform - pos: 32.5,3.5 - parent: 2 - - uid: 10264 - components: - - type: Transform - pos: 33.5,3.5 - parent: 2 - - uid: 10265 - components: - - type: Transform - pos: 35.5,3.5 - parent: 2 - - uid: 10266 - components: - - type: Transform - pos: 36.5,3.5 - parent: 2 - - uid: 10267 - components: - - type: Transform - pos: 37.5,3.5 - parent: 2 - - uid: 10268 - components: - - type: Transform - pos: 38.5,3.5 - parent: 2 - - uid: 10269 - components: - - type: Transform - pos: 39.5,3.5 - parent: 2 - - uid: 10270 - components: - - type: Transform - pos: 40.5,3.5 - parent: 2 - - uid: 10271 - components: - - type: Transform - pos: 41.5,3.5 - parent: 2 - - uid: 10272 - components: - - type: Transform - pos: 45.5,4.5 - parent: 2 - - uid: 10273 - components: - - type: Transform - pos: 45.5,5.5 - parent: 2 - - uid: 10274 - components: - - type: Transform - pos: 45.5,6.5 - parent: 2 - - uid: 10275 - components: - - type: Transform - pos: 45.5,7.5 - parent: 2 - - uid: 10276 - components: - - type: Transform - pos: 45.5,9.5 - parent: 2 - - uid: 10277 - components: - - type: Transform - pos: 41.5,29.5 - parent: 2 - - uid: 10278 - components: - - type: Transform - pos: 42.5,29.5 - parent: 2 - - uid: 10279 - components: - - type: Transform - pos: 43.5,29.5 - parent: 2 - - uid: 10280 - components: - - type: Transform - pos: 44.5,29.5 - parent: 2 - - uid: 10281 - components: - - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 10282 - components: - - type: Transform - pos: 46.5,29.5 - parent: 2 - - uid: 10283 - components: - - type: Transform - pos: 48.5,29.5 - parent: 2 - - uid: 10284 - components: - - type: Transform - pos: 49.5,29.5 - parent: 2 - - uid: 10285 - components: - - type: Transform - pos: 50.5,29.5 - parent: 2 - - uid: 10286 - components: - - type: Transform - pos: 51.5,29.5 - parent: 2 - - uid: 10287 - components: - - type: Transform - pos: 52.5,29.5 - parent: 2 - - uid: 10288 - components: - - type: Transform - pos: 53.5,29.5 - parent: 2 - - uid: 10289 - components: - - type: Transform - pos: 53.5,33.5 - parent: 2 - - uid: 10290 - components: - - type: Transform - pos: 52.5,33.5 - parent: 2 - - uid: 10291 - components: - - type: Transform - pos: 51.5,33.5 - parent: 2 - - uid: 10292 - components: - - type: Transform - pos: 50.5,33.5 - parent: 2 - - uid: 10293 - components: - - type: Transform - pos: 49.5,33.5 - parent: 2 - - uid: 10294 - components: - - type: Transform - pos: 48.5,33.5 - parent: 2 - - uid: 10295 - components: - - type: Transform - pos: 46.5,33.5 - parent: 2 - - uid: 10296 - components: - - type: Transform - pos: 45.5,33.5 - parent: 2 - - uid: 10297 - components: - - type: Transform - pos: 44.5,33.5 - parent: 2 - - uid: 10298 - components: - - type: Transform - pos: 43.5,33.5 - parent: 2 - - uid: 10299 - components: - - type: Transform - pos: 42.5,33.5 - parent: 2 - - uid: 10300 - components: - - type: Transform - pos: 41.5,33.5 - parent: 2 - - uid: 10301 - components: - - type: Transform - pos: 41.5,37.5 - parent: 2 - - uid: 10302 - components: - - type: Transform - pos: 42.5,37.5 - parent: 2 - - uid: 10303 - components: - - type: Transform - pos: 43.5,37.5 - parent: 2 - - uid: 10304 - components: - - type: Transform - pos: 44.5,37.5 - parent: 2 - - uid: 10305 - components: - - type: Transform - pos: 45.5,37.5 - parent: 2 - - uid: 10306 - components: - - type: Transform - pos: 46.5,37.5 - parent: 2 - - uid: 10307 - components: - - type: Transform - pos: 53.5,37.5 - parent: 2 - - uid: 10308 - components: - - type: Transform - pos: 52.5,37.5 - parent: 2 - - uid: 10309 - components: - - type: Transform - pos: 51.5,37.5 - parent: 2 - - uid: 10310 - components: - - type: Transform - pos: 50.5,37.5 - parent: 2 - - uid: 10311 - components: - - type: Transform - pos: 49.5,37.5 - parent: 2 - - uid: 10312 - components: - - type: Transform - pos: 48.5,37.5 - parent: 2 - - uid: 10313 - components: - - type: Transform - pos: 47.5,40.5 - parent: 2 - - uid: 10314 - components: - - type: Transform - pos: 47.5,39.5 - parent: 2 - - uid: 10315 - components: - - type: Transform - pos: 47.5,38.5 - parent: 2 - - uid: 10316 - components: - - type: Transform - pos: 47.5,37.5 - parent: 2 - - uid: 10317 - components: - - type: Transform - pos: 47.5,36.5 - parent: 2 - - uid: 10318 - components: - - type: Transform - pos: 47.5,35.5 + pos: -1.5,173.5 parent: 2 - uid: 10319 components: - type: Transform - pos: 47.5,34.5 + rot: 3.141592653589793 rad + pos: -81.5,166.5 parent: 2 + - type: DeviceList + devices: + - 17800 + - 18917 + - 18947 + - 21005 + - 21004 + - 21003 + - 21000 + - 21001 + - 21002 + - 21011 + - 21010 + - 21009 + - 12526 + - 32547 + - 31305 + - 32548 - uid: 10320 components: - type: Transform - pos: 47.5,33.5 - parent: 2 - - uid: 10321 - components: - - type: Transform - pos: 47.5,32.5 - parent: 2 - - uid: 10322 - components: - - type: Transform - pos: 47.5,31.5 - parent: 2 - - uid: 10323 - components: - - type: Transform - pos: 47.5,30.5 - parent: 2 - - uid: 10324 - components: - - type: Transform - pos: 47.5,29.5 - parent: 2 - - uid: 10325 - components: - - type: Transform - pos: 47.5,28.5 - parent: 2 - - uid: 10326 - components: - - type: Transform - pos: 47.5,27.5 - parent: 2 - - uid: 10327 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 10328 - components: - - type: Transform - pos: 47.5,25.5 - parent: 2 - - uid: 10329 - components: - - type: Transform - pos: 47.5,24.5 - parent: 2 - - uid: 10330 - components: - - type: Transform - pos: -55.5,29.5 - parent: 2 - - uid: 10331 - components: - - type: Transform - pos: -54.5,29.5 - parent: 2 - - uid: 10332 - components: - - type: Transform - pos: -53.5,29.5 - parent: 2 - - uid: 10333 - components: - - type: Transform - pos: -52.5,29.5 - parent: 2 - - uid: 10334 - components: - - type: Transform - pos: -51.5,29.5 - parent: 2 - - uid: 10335 - components: - - type: Transform - pos: -50.5,29.5 - parent: 2 - - uid: 10336 - components: - - type: Transform - pos: -48.5,29.5 - parent: 2 - - uid: 10337 - components: - - type: Transform - pos: -47.5,29.5 - parent: 2 - - uid: 10338 - components: - - type: Transform - pos: -46.5,29.5 - parent: 2 - - uid: 10339 - components: - - type: Transform - pos: -45.5,29.5 - parent: 2 - - uid: 10340 - components: - - type: Transform - pos: -44.5,29.5 - parent: 2 - - uid: 10341 - components: - - type: Transform - pos: -43.5,29.5 - parent: 2 - - uid: 10342 - components: - - type: Transform - pos: -43.5,33.5 - parent: 2 - - uid: 10343 - components: - - type: Transform - pos: -44.5,33.5 - parent: 2 - - uid: 10344 - components: - - type: Transform - pos: -45.5,33.5 - parent: 2 - - uid: 10345 - components: - - type: Transform - pos: -46.5,33.5 - parent: 2 - - uid: 10346 - components: - - type: Transform - pos: -47.5,33.5 - parent: 2 - - uid: 10347 - components: - - type: Transform - pos: -48.5,33.5 - parent: 2 - - uid: 10348 - components: - - type: Transform - pos: -50.5,33.5 - parent: 2 - - uid: 10349 - components: - - type: Transform - pos: -51.5,33.5 - parent: 2 - - uid: 10350 - components: - - type: Transform - pos: -52.5,33.5 - parent: 2 - - uid: 10351 - components: - - type: Transform - pos: -53.5,33.5 - parent: 2 - - uid: 10352 - components: - - type: Transform - pos: -54.5,33.5 - parent: 2 - - uid: 10353 - components: - - type: Transform - pos: -55.5,33.5 - parent: 2 - - uid: 10354 - components: - - type: Transform - pos: -55.5,37.5 - parent: 2 - - uid: 10355 - components: - - type: Transform - pos: -54.5,37.5 - parent: 2 - - uid: 10356 - components: - - type: Transform - pos: -53.5,37.5 - parent: 2 - - uid: 10357 - components: - - type: Transform - pos: -52.5,37.5 - parent: 2 - - uid: 10358 - components: - - type: Transform - pos: -51.5,37.5 - parent: 2 - - uid: 10359 - components: - - type: Transform - pos: -50.5,37.5 - parent: 2 - - uid: 10360 - components: - - type: Transform - pos: -43.5,37.5 - parent: 2 - - uid: 10361 - components: - - type: Transform - pos: -44.5,37.5 - parent: 2 - - uid: 10362 - components: - - type: Transform - pos: -45.5,37.5 - parent: 2 - - uid: 10363 - components: - - type: Transform - pos: -46.5,37.5 - parent: 2 - - uid: 10364 - components: - - type: Transform - pos: -47.5,37.5 - parent: 2 - - uid: 10365 - components: - - type: Transform - pos: -48.5,37.5 - parent: 2 - - uid: 10366 - components: - - type: Transform - pos: -49.5,40.5 - parent: 2 - - uid: 10367 - components: - - type: Transform - pos: -49.5,39.5 - parent: 2 - - uid: 10368 - components: - - type: Transform - pos: -49.5,38.5 - parent: 2 - - uid: 10369 - components: - - type: Transform - pos: -49.5,37.5 - parent: 2 - - uid: 10370 - components: - - type: Transform - pos: -49.5,36.5 - parent: 2 - - uid: 10371 - components: - - type: Transform - pos: -49.5,35.5 - parent: 2 - - uid: 10372 - components: - - type: Transform - pos: -49.5,34.5 - parent: 2 - - uid: 10373 - components: - - type: Transform - pos: -49.5,33.5 - parent: 2 - - uid: 10374 - components: - - type: Transform - pos: -49.5,32.5 - parent: 2 - - uid: 10375 - components: - - type: Transform - pos: -49.5,31.5 - parent: 2 - - uid: 10376 - components: - - type: Transform - pos: -49.5,30.5 - parent: 2 - - uid: 10377 - components: - - type: Transform - pos: -49.5,29.5 - parent: 2 - - uid: 10378 - components: - - type: Transform - pos: -49.5,28.5 - parent: 2 - - uid: 10379 - components: - - type: Transform - pos: -49.5,27.5 - parent: 2 - - uid: 10380 - components: - - type: Transform - pos: -49.5,23.5 - parent: 2 - - uid: 10381 - components: - - type: Transform - pos: -49.5,22.5 - parent: 2 - - uid: 10382 - components: - - type: Transform - pos: -49.5,21.5 - parent: 2 - - uid: 10383 - components: - - type: Transform - pos: -49.5,19.5 - parent: 2 - - uid: 10384 - components: - - type: Transform - pos: -49.5,18.5 - parent: 2 - - uid: 10385 - components: - - type: Transform - pos: -49.5,17.5 - parent: 2 - - uid: 10386 - components: - - type: Transform - pos: -48.5,17.5 - parent: 2 - - uid: 10387 - components: - - type: Transform - pos: -48.5,16.5 - parent: 2 - - uid: 10388 - components: - - type: Transform - pos: -48.5,15.5 - parent: 2 - - uid: 10389 - components: - - type: Transform - pos: -48.5,14.5 - parent: 2 - - uid: 10390 - components: - - type: Transform - pos: -48.5,13.5 - parent: 2 - - uid: 10391 - components: - - type: Transform - pos: -47.5,13.5 - parent: 2 - - uid: 10392 - components: - - type: Transform - pos: -43.5,12.5 - parent: 2 - - uid: 10393 - components: - - type: Transform - pos: -44.5,12.5 - parent: 2 - - uid: 10394 - components: - - type: Transform - pos: -45.5,12.5 - parent: 2 - - uid: 10395 - components: - - type: Transform - pos: -46.5,12.5 - parent: 2 - - uid: 10396 - components: - - type: Transform - pos: -47.5,12.5 - parent: 2 - - uid: 10397 - components: - - type: Transform - pos: -47.5,11.5 - parent: 2 - - uid: 10398 - components: - - type: Transform - pos: -47.5,10.5 - parent: 2 - - uid: 10399 - components: - - type: Transform - pos: -47.5,9.5 - parent: 2 - - uid: 10400 - components: - - type: Transform - pos: -48.5,9.5 - parent: 2 - - uid: 10401 - components: - - type: Transform - pos: -49.5,9.5 - parent: 2 - - uid: 10402 - components: - - type: Transform - pos: -49.5,8.5 - parent: 2 - - uid: 10403 - components: - - type: Transform - pos: -49.5,7.5 - parent: 2 - - uid: 10404 - components: - - type: Transform - pos: -49.5,5.5 - parent: 2 - - uid: 10405 - components: - - type: Transform - pos: -49.5,4.5 - parent: 2 - - uid: 10406 - components: - - type: Transform - pos: -49.5,3.5 - parent: 2 - - uid: 10407 - components: - - type: Transform - pos: -49.5,2.5 - parent: 2 - - uid: 10409 - components: - - type: Transform - pos: 0.5,-75.5 - parent: 2 - - uid: 10410 - components: - - type: Transform - pos: -1.5,-74.5 - parent: 2 - - uid: 10411 - components: - - type: Transform - pos: 0.5,-74.5 - parent: 2 - - uid: 10412 - components: - - type: Transform - pos: 0.5,-76.5 - parent: 2 - - uid: 10413 - components: - - type: Transform - pos: -0.5,-77.5 - parent: 2 - - uid: 10414 - components: - - type: Transform - pos: 49.5,-23.5 - parent: 2 - - uid: 10415 - components: - - type: Transform - pos: 49.5,-19.5 - parent: 2 - - uid: 10419 - components: - - type: Transform - pos: 49.5,-24.5 - parent: 2 - - uid: 10420 - components: - - type: Transform - pos: -42.5,-61.5 - parent: 2 - - uid: 10421 - components: - - type: Transform - pos: -43.5,-61.5 - parent: 2 - - uid: 10422 - components: - - type: Transform - pos: -44.5,-61.5 - parent: 2 - - uid: 10423 - components: - - type: Transform - pos: -45.5,-61.5 - parent: 2 - - uid: 10424 - components: - - type: Transform - pos: -46.5,-61.5 - parent: 2 - - uid: 10425 - components: - - type: Transform - pos: -47.5,-61.5 - parent: 2 - - uid: 10426 - components: - - type: Transform - pos: -48.5,-61.5 - parent: 2 - - uid: 10427 - components: - - type: Transform - pos: -49.5,-61.5 - parent: 2 - - uid: 10428 - components: - - type: Transform - pos: -50.5,-61.5 - parent: 2 - - uid: 10429 - components: - - type: Transform - pos: -51.5,-61.5 - parent: 2 - - uid: 10430 - components: - - type: Transform - pos: -52.5,-61.5 - parent: 2 - - uid: 10431 - components: - - type: Transform - pos: -53.5,-61.5 - parent: 2 - - uid: 10432 - components: - - type: Transform - pos: -54.5,-61.5 - parent: 2 - - uid: 10433 - components: - - type: Transform - pos: -55.5,-61.5 - parent: 2 - - uid: 10434 - components: - - type: Transform - pos: -56.5,-61.5 - parent: 2 - - uid: 10435 - components: - - type: Transform - pos: -53.5,-55.5 - parent: 2 - - uid: 10436 - components: - - type: Transform - pos: -53.5,-56.5 - parent: 2 - - uid: 10437 - components: - - type: Transform - pos: -53.5,-57.5 - parent: 2 - - uid: 10438 - components: - - type: Transform - pos: -53.5,-58.5 - parent: 2 - - uid: 10439 - components: - - type: Transform - pos: -53.5,-59.5 - parent: 2 - - uid: 10440 - components: - - type: Transform - pos: -53.5,-60.5 - parent: 2 - - uid: 10441 - components: - - type: Transform - pos: -49.5,-60.5 - parent: 2 - - uid: 10442 - components: - - type: Transform - pos: -49.5,-59.5 - parent: 2 - - uid: 10443 - components: - - type: Transform - pos: -49.5,-58.5 - parent: 2 - - uid: 10444 - components: - - type: Transform - pos: -49.5,-57.5 - parent: 2 - - uid: 10445 - components: - - type: Transform - pos: -49.5,-56.5 - parent: 2 - - uid: 10446 - components: - - type: Transform - pos: -49.5,-55.5 - parent: 2 - - uid: 10447 - components: - - type: Transform - pos: -45.5,-55.5 - parent: 2 - - uid: 10448 - components: - - type: Transform - pos: -45.5,-56.5 - parent: 2 - - uid: 10449 - components: - - type: Transform - pos: -45.5,-57.5 - parent: 2 - - uid: 10450 - components: - - type: Transform - pos: -45.5,-58.5 - parent: 2 - - uid: 10451 - components: - - type: Transform - pos: -45.5,-59.5 - parent: 2 - - uid: 10452 - components: - - type: Transform - pos: -45.5,-60.5 - parent: 2 - - uid: 10453 - components: - - type: Transform - pos: -45.5,-62.5 - parent: 2 - - uid: 10454 - components: - - type: Transform - pos: -45.5,-63.5 - parent: 2 - - uid: 10455 - components: - - type: Transform - pos: -45.5,-64.5 - parent: 2 - - uid: 10456 - components: - - type: Transform - pos: -45.5,-65.5 - parent: 2 - - uid: 10457 - components: - - type: Transform - pos: -45.5,-66.5 - parent: 2 - - uid: 10458 - components: - - type: Transform - pos: -45.5,-67.5 - parent: 2 - - uid: 10459 - components: - - type: Transform - pos: -49.5,-62.5 - parent: 2 - - uid: 10460 - components: - - type: Transform - pos: -49.5,-63.5 - parent: 2 - - uid: 10461 - components: - - type: Transform - pos: -49.5,-64.5 - parent: 2 - - uid: 10462 - components: - - type: Transform - pos: -49.5,-65.5 - parent: 2 - - uid: 10463 - components: - - type: Transform - pos: -49.5,-66.5 - parent: 2 - - uid: 10464 - components: - - type: Transform - pos: -49.5,-67.5 - parent: 2 - - uid: 10465 - components: - - type: Transform - pos: -53.5,-62.5 - parent: 2 - - uid: 10466 - components: - - type: Transform - pos: -53.5,-63.5 - parent: 2 - - uid: 10467 - components: - - type: Transform - pos: -53.5,-64.5 - parent: 2 - - uid: 10468 - components: - - type: Transform - pos: -53.5,-65.5 - parent: 2 - - uid: 10469 - components: - - type: Transform - pos: -53.5,-66.5 - parent: 2 - - uid: 10470 - components: - - type: Transform - pos: -53.5,-67.5 - parent: 2 - - uid: 10471 - components: - - type: Transform - pos: 49.5,-39.5 - parent: 2 - - uid: 10472 - components: - - type: Transform - pos: 49.5,-40.5 - parent: 2 - - uid: 10473 - components: - - type: Transform - pos: 49.5,-41.5 - parent: 2 - - uid: 10474 - components: - - type: Transform - pos: 49.5,-48.5 - parent: 2 - - uid: 10475 - components: - - type: Transform - pos: 49.5,-47.5 - parent: 2 - - uid: 10476 - components: - - type: Transform - pos: 49.5,-46.5 - parent: 2 - - uid: 10477 - components: - - type: Transform - pos: 49.5,-45.5 - parent: 2 - - uid: 10478 - components: - - type: Transform - pos: 49.5,-44.5 - parent: 2 - - uid: 10479 - components: - - type: Transform - pos: 49.5,-52.5 - parent: 2 - - uid: 10480 - components: - - type: Transform - pos: 49.5,-51.5 - parent: 2 - - uid: 10481 - components: - - type: Transform - pos: 49.5,-50.5 - parent: 2 - - uid: 10482 - components: - - type: Transform - pos: 49.5,-42.5 - parent: 2 - - uid: 10483 - components: - - type: Transform - pos: -0.5,-74.5 - parent: 2 - - uid: 10484 - components: - - type: Transform - pos: 0.5,-77.5 - parent: 2 - - uid: 10486 - components: - - type: Transform - pos: 23.5,6.5 - parent: 2 - - uid: 10487 - components: - - type: Transform - pos: 81.5,-69.5 - parent: 2 - - uid: 10488 - components: - - type: Transform - pos: 81.5,-70.5 - parent: 2 - - uid: 10489 - components: - - type: Transform - pos: 81.5,-71.5 - parent: 2 - - uid: 10490 - components: - - type: Transform - pos: 81.5,-72.5 - parent: 2 - - uid: 10491 - components: - - type: Transform - pos: 81.5,-73.5 - parent: 2 - - uid: 10492 - components: - - type: Transform - pos: 81.5,-74.5 - parent: 2 - - uid: 10493 - components: - - type: Transform - pos: 81.5,-75.5 - parent: 2 - - uid: 10494 - components: - - type: Transform - pos: 81.5,-76.5 - parent: 2 - - uid: 10495 - components: - - type: Transform - pos: 81.5,-77.5 - parent: 2 - - uid: 10496 - components: - - type: Transform - pos: 81.5,-78.5 - parent: 2 - - uid: 10497 - components: - - type: Transform - pos: 81.5,-79.5 - parent: 2 - - uid: 10498 - components: - - type: Transform - pos: 81.5,-80.5 - parent: 2 - - uid: 10499 - components: - - type: Transform - pos: 81.5,-81.5 - parent: 2 - - uid: 10500 - components: - - type: Transform - pos: 81.5,-82.5 - parent: 2 - - uid: 10501 - components: - - type: Transform - pos: 81.5,-83.5 - parent: 2 - - uid: 10502 - components: - - type: Transform - pos: 81.5,-84.5 - parent: 2 - - uid: 10503 - components: - - type: Transform - pos: 81.5,-85.5 - parent: 2 - - uid: 10504 - components: - - type: Transform - pos: 80.5,-82.5 - parent: 2 - - uid: 10505 - components: - - type: Transform - pos: 79.5,-82.5 - parent: 2 - - uid: 10506 - components: - - type: Transform - pos: 78.5,-82.5 - parent: 2 - - uid: 10507 - components: - - type: Transform - pos: 77.5,-82.5 - parent: 2 - - uid: 10508 - components: - - type: Transform - pos: 76.5,-82.5 - parent: 2 - - uid: 10509 - components: - - type: Transform - pos: 75.5,-82.5 - parent: 2 - - uid: 10510 - components: - - type: Transform - pos: 82.5,-82.5 - parent: 2 - - uid: 10511 - components: - - type: Transform - pos: 83.5,-82.5 - parent: 2 - - uid: 10512 - components: - - type: Transform - pos: 84.5,-82.5 - parent: 2 - - uid: 10513 - components: - - type: Transform - pos: 85.5,-82.5 - parent: 2 - - uid: 10514 - components: - - type: Transform - pos: 86.5,-82.5 - parent: 2 - - uid: 10515 - components: - - type: Transform - pos: 87.5,-82.5 - parent: 2 - - uid: 10516 - components: - - type: Transform - pos: 82.5,-78.5 - parent: 2 - - uid: 10517 - components: - - type: Transform - pos: 83.5,-78.5 - parent: 2 - - uid: 10518 - components: - - type: Transform - pos: 84.5,-78.5 - parent: 2 - - uid: 10519 - components: - - type: Transform - pos: 85.5,-78.5 - parent: 2 - - uid: 10520 - components: - - type: Transform - pos: 86.5,-78.5 - parent: 2 - - uid: 10521 - components: - - type: Transform - pos: 87.5,-78.5 - parent: 2 - - uid: 10522 - components: - - type: Transform - pos: 80.5,-78.5 - parent: 2 - - uid: 10523 - components: - - type: Transform - pos: 79.5,-78.5 - parent: 2 - - uid: 10524 - components: - - type: Transform - pos: 78.5,-78.5 - parent: 2 - - uid: 10525 - components: - - type: Transform - pos: 77.5,-78.5 - parent: 2 - - uid: 10526 - components: - - type: Transform - pos: 76.5,-78.5 - parent: 2 - - uid: 10527 - components: - - type: Transform - pos: 75.5,-78.5 - parent: 2 - - uid: 10528 - components: - - type: Transform - pos: 80.5,-74.5 - parent: 2 - - uid: 10529 - components: - - type: Transform - pos: 79.5,-74.5 - parent: 2 - - uid: 10530 - components: - - type: Transform - pos: 78.5,-74.5 - parent: 2 - - uid: 10531 - components: - - type: Transform - pos: 77.5,-74.5 - parent: 2 - - uid: 10532 - components: - - type: Transform - pos: 76.5,-74.5 - parent: 2 - - uid: 10533 - components: - - type: Transform - pos: 75.5,-74.5 - parent: 2 - - uid: 10534 - components: - - type: Transform - pos: 82.5,-74.5 - parent: 2 - - uid: 10535 - components: - - type: Transform - pos: 83.5,-74.5 - parent: 2 - - uid: 10536 - components: - - type: Transform - pos: 84.5,-74.5 - parent: 2 - - uid: 10537 - components: - - type: Transform - pos: 85.5,-74.5 - parent: 2 - - uid: 10538 - components: - - type: Transform - pos: 86.5,-74.5 - parent: 2 - - uid: 10539 - components: - - type: Transform - pos: 87.5,-74.5 - parent: 2 - - uid: 10587 - components: - - type: Transform - pos: -23.5,47.5 - parent: 2 - - uid: 10588 - components: - - type: Transform - pos: -23.5,48.5 - parent: 2 - - uid: 10589 - components: - - type: Transform - pos: -23.5,49.5 - parent: 2 - - uid: 10590 - components: - - type: Transform - pos: -23.5,50.5 - parent: 2 - - uid: 10591 - components: - - type: Transform - pos: -14.5,44.5 - parent: 2 - - uid: 10592 - components: - - type: Transform - pos: -13.5,44.5 - parent: 2 - - uid: 10593 - components: - - type: Transform - pos: -12.5,44.5 - parent: 2 - - uid: 10594 - components: - - type: Transform - pos: -11.5,44.5 - parent: 2 - - uid: 10595 - components: - - type: Transform - pos: -10.5,44.5 - parent: 2 - - uid: 10596 - components: - - type: Transform - pos: -9.5,44.5 - parent: 2 - - uid: 10597 - components: - - type: Transform - pos: -8.5,44.5 - parent: 2 - - uid: 10600 - components: - - type: Transform - pos: -23.5,44.5 - parent: 2 - - uid: 10601 - components: - - type: Transform - pos: -22.5,44.5 - parent: 2 - - uid: 10602 - components: - - type: Transform - pos: -21.5,44.5 - parent: 2 - - uid: 10603 - components: - - type: Transform - pos: -20.5,44.5 - parent: 2 - - uid: 10604 - components: - - type: Transform - pos: -19.5,44.5 - parent: 2 - - uid: 10605 - components: - - type: Transform - pos: -18.5,44.5 - parent: 2 - - uid: 10606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-36.5 - parent: 2 - - uid: 10608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-35.5 - parent: 2 - - uid: 10609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-34.5 - parent: 2 - - uid: 10611 - components: - - type: Transform - pos: -1.5,-77.5 - parent: 2 - - uid: 10612 - components: - - type: Transform - pos: -1.5,-76.5 - parent: 2 - - uid: 10613 - components: - - type: Transform - pos: -1.5,-75.5 - parent: 2 - - uid: 10616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,10.5 - parent: 2 - - uid: 10628 - components: - - type: Transform - pos: 26.5,6.5 - parent: 2 - - uid: 10629 - components: - - type: Transform - pos: 24.5,6.5 - parent: 2 - - uid: 10634 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 10635 - components: - - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 10636 - components: - - type: Transform - pos: 36.5,25.5 - parent: 2 - - uid: 10637 - components: - - type: Transform - pos: 34.5,25.5 - parent: 2 - - uid: 10638 - components: - - type: Transform - pos: 41.5,15.5 - parent: 2 - - uid: 10639 - components: - - type: Transform - pos: 29.5,25.5 - parent: 2 - - uid: 10640 - components: - - type: Transform - pos: 30.5,25.5 - parent: 2 - - uid: 10641 - components: - - type: Transform - pos: 42.5,15.5 - parent: 2 - - uid: 10642 - components: - - type: Transform - pos: 43.5,15.5 - parent: 2 - - uid: 10643 + rot: -1.5707963267948966 rad + pos: -67.5,168.5 + parent: 2 + - type: DeviceList + devices: + - 36414 + - 21005 + - 21004 + - 21003 + - 22405 + - 20997 + - 18682 + - 36408 + - 36409 + - 36410 + - 36411 + - uid: 12241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,175.5 + parent: 2 + - type: DeviceList + devices: + - 32656 + - 32657 + - 36415 + - 22405 + - 20997 + - uid: 13241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 15213 + - 26478 + - 5999 + - 29674 + - 27980 + - 26476 + - 29675 + - 26475 + - 19509 + - 19508 + - 19512 + - 28924 + - 28923 + - 19514 + - 19515 + - uid: 13378 + components: + - type: Transform + pos: 77.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 6721 + - 7042 + - 6715 + - 6722 + - 6723 + - 6724 + - 3896 + - 3894 + - 271 + - 36572 + - 4464 + - 4463 + - 4469 + - 4461 + - 4462 + - uid: 13428 + components: + - type: Transform + pos: -21.5,92.5 + parent: 2 + - type: DeviceList + devices: + - 16550 + - 16549 + - 16548 + - 33864 + - 33882 + - 36889 + - 3656 + - 3934 + - 4165 + - 1269 + - uid: 15539 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,50.5 + pos: -37.5,3.5 parent: 2 - - uid: 10644 + - type: DeviceList + devices: + - 2470 + - 11305 + - 5484 + - 860 + - 4648 + - 53 + - 863 + - 864 + - 866 + - 36151 + - 14818 + - 962 + - 961 + - 960 + - uid: 16900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-20.5 + pos: -77.5,47.5 parent: 2 - - uid: 10645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-21.5 - parent: 2 - - uid: 10646 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-22.5 - parent: 2 - - uid: 10647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-24.5 - parent: 2 - - uid: 10652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-23.5 - parent: 2 - - uid: 10654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-30.5 - parent: 2 - - uid: 10655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-32.5 - parent: 2 - - uid: 10656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-33.5 - parent: 2 - - uid: 10658 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-31.5 - parent: 2 - - uid: 10659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 - parent: 2 - - uid: 10660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,14.5 - parent: 2 - - uid: 10661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,14.5 - parent: 2 - - uid: 10662 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,14.5 - parent: 2 - - uid: 10663 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,14.5 - parent: 2 - - uid: 10664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,14.5 - parent: 2 - - uid: 10665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,14.5 - parent: 2 - - uid: 10666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,14.5 - parent: 2 - - uid: 10667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,14.5 - parent: 2 - - uid: 10668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,14.5 - parent: 2 - - uid: 10670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,14.5 - parent: 2 - - uid: 10671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,13.5 - parent: 2 - - uid: 10672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,12.5 - parent: 2 - - uid: 10673 - components: - - type: Transform - pos: 77.5,10.5 - parent: 2 - - uid: 10677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,11.5 - parent: 2 - - uid: 10679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,4.5 - parent: 2 - - uid: 10680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,5.5 - parent: 2 - - uid: 10681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,3.5 - parent: 2 - - uid: 10682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,2.5 - parent: 2 - - uid: 10683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,1.5 - parent: 2 - - uid: 10684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,0.5 - parent: 2 - - uid: 10685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-0.5 - parent: 2 - - uid: 10686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-1.5 - parent: 2 - - uid: 10687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-2.5 - parent: 2 - - uid: 10688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-3.5 - parent: 2 - - uid: 10689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-4.5 - parent: 2 - - uid: 10753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,12.5 - parent: 2 - - uid: 10805 - components: - - type: Transform - pos: -14.5,-80.5 - parent: 2 - - uid: 10827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,13.5 - parent: 2 - - uid: 10840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,7.5 - parent: 2 - - uid: 10845 + - type: DeviceList + devices: + - 18190 + - 33153 + - 33152 + - 29686 + - 29687 + - 29688 + - 29681 + - 29683 + - 29684 + - uid: 17781 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,39.5 + pos: -67.5,68.5 parent: 2 - - uid: 10888 - components: - - type: Transform - pos: 20.5,-54.5 - parent: 2 - - uid: 10893 + - type: DeviceList + devices: + - 25403 + - 4251 + - 16755 + - 4404 + - 4250 + - 19607 + - uid: 17960 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-9.5 + pos: -105.5,29.5 parent: 2 - - uid: 10894 + - type: DeviceList + devices: + - 29860 + - 19101 + - 23260 + - 15354 + - uid: 19130 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-13.5 + pos: -78.5,156.5 parent: 2 - - uid: 10967 - components: - - type: Transform - pos: 19.5,-54.5 - parent: 2 - - uid: 11220 - components: - - type: Transform - pos: -14.5,9.5 - parent: 2 - - uid: 11227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-11.5 - parent: 2 - - uid: 11241 - components: - - type: Transform - pos: -14.5,8.5 - parent: 2 - - uid: 11491 - components: - - type: Transform - pos: -31.5,-67.5 - parent: 2 - - uid: 11789 - components: - - type: Transform - pos: -52.5,-28.5 - parent: 2 - - uid: 12220 - components: - - type: Transform - pos: 11.5,-48.5 - parent: 2 - - uid: 12869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-16.5 - parent: 2 - - uid: 13517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-92.5 - parent: 2 - - uid: 13715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-92.5 - parent: 2 - - uid: 13983 + - type: DeviceList + devices: + - 32516 + - 36431 + - 21028 + - 7796 + - 22370 + - 7888 + - 14250 + - 15084 + - 1298 + - uid: 19131 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-65.5 + pos: -84.5,177.5 parent: 2 - - uid: 13986 + - type: DeviceList + devices: + - 32628 + - 32629 + - 18366 + - 21002 + - 21001 + - 21000 + - uid: 25813 components: - type: Transform - pos: 22.5,-53.5 + pos: -10.5,166.5 parent: 2 - - uid: 14040 + - type: DeviceList + devices: + - 23219 + - 17533 + - 36374 + - 25777 + - 39423 + - 39424 + - 36372 + - 4326 + - 18728 + - uid: 26418 components: - type: Transform - pos: 29.5,-46.5 + rot: 1.5707963267948966 rad + pos: -36.5,-4.5 parent: 2 - - uid: 14106 + - type: DeviceList + devices: + - 6400 + - 26492 + - 26494 + - 34801 + - 488 + - 36072 + - uid: 26485 components: - type: Transform - pos: 29.5,-69.5 + pos: 78.5,56.5 parent: 2 - - uid: 14125 + - type: DeviceList + devices: + - 36583 + - 4164 + - 6333 + - 4040 + - 5171 + - 4025 + - 4034 + - 20174 + - 20055 + - 20098 + - 20076 + - 20056 + - 4456 + - 4454 + - uid: 29484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,23.5 + parent: 2 + - uid: 34449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,178.5 + parent: 2 + - type: DeviceList + devices: + - 32070 + - 34329 + - 34334 + - uid: 35948 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-51.5 + pos: -1.5,66.5 parent: 2 - - uid: 14127 + - type: DeviceList + devices: + - 11048 + - 35995 + - 10950 + - 35987 + - 35972 + - 35990 + - 35989 + - 35991 + - 35998 + - 35985 + - 35949 + - 35976 + - 35986 + - 10108 + - 35994 + - 32435 + - 35944 + - 14851 + - 35945 + - 11753 + - 35935 + - 11605 + - 34142 + - 17498 + - 16679 + - 11608 + - 11706 + - 36185 + - 10860 + - uid: 36299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-52.5 + pos: -22.5,5.5 parent: 2 - - uid: 14150 - components: - - type: Transform - pos: 13.5,-48.5 - parent: 2 - - uid: 14387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-42.5 - parent: 2 - - uid: 14401 - components: - - type: Transform - pos: 12.5,-52.5 - parent: 2 - - uid: 14421 - components: - - type: Transform - pos: 12.5,-51.5 - parent: 2 - - uid: 14440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-42.5 - parent: 2 - - uid: 14720 - components: - - type: Transform - pos: 12.5,-50.5 - parent: 2 - - uid: 14754 - components: - - type: Transform - pos: 12.5,-46.5 - parent: 2 - - uid: 14855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-46.5 - parent: 2 - - uid: 14900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-57.5 - parent: 2 - - uid: 14973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-71.5 - parent: 2 - - uid: 14991 - components: - - type: Transform - pos: 12.5,-49.5 - parent: 2 - - uid: 14993 - components: - - type: Transform - pos: 12.5,-53.5 - parent: 2 - - uid: 15097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-59.5 - parent: 2 - - uid: 15302 - components: - - type: Transform - pos: 3.5,46.5 - parent: 2 - - uid: 15885 - components: - - type: Transform - pos: 21.5,32.5 - parent: 2 - - uid: 15886 - components: - - type: Transform - pos: 20.5,32.5 - parent: 2 - - uid: 15887 - components: - - type: Transform - pos: 22.5,32.5 - parent: 2 - - uid: 16868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-37.5 - parent: 2 - - uid: 16882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-32.5 - parent: 2 - - uid: 16889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-37.5 - parent: 2 - - uid: 17129 - components: - - type: Transform - pos: 11.5,-74.5 - parent: 2 - - uid: 17139 + - type: DeviceList + devices: + - 866 + - 36125 + - 3222 + - 1900 + - 1901 + - 1902 + - 1903 + - 1904 + - 1905 + - 1906 + - 1907 + - 1908 + - 36298 + - uid: 36303 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-45.5 + pos: -19.5,-6.5 parent: 2 - - uid: 17141 + - type: DeviceList + devices: + - 1606 + - 963 + - 1607 + - 1713 + - 1712 + - 1711 + - 1710 + - 1709 + - 1708 + - 1707 + - 1906 + - 1907 + - 1908 + - 959 + - 16470 + - 36300 + - uid: 36304 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-44.5 + pos: -13.5,-6.5 parent: 2 - - uid: 17149 + - type: DeviceList + devices: + - 1711 + - 1710 + - 1709 + - 1708 + - 1707 + - 1706 + - 1705 + - 1704 + - 1703 + - 1702 + - 1903 + - 1904 + - 1905 + - 36301 + - uid: 36305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 1706 + - 1705 + - 1704 + - 1703 + - 1702 + - 1900 + - 1901 + - 1902 + - 1717 + - 1715 + - 36302 + - uid: 36307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 36308 + - 1713 + - 1712 + - 36309 + - uid: 36310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 6399 + - 955 + - 956 + - 964 + - 1606 + - 963 + - 1607 + - uid: 36312 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-43.5 + pos: -26.5,-2.5 parent: 2 - - uid: 17150 + - type: DeviceList + devices: + - 36311 + - 36316 + - 958 + - 956 + - 955 + - 960 + - 961 + - 962 + - 959 + - uid: 36319 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 3117 + - 36317 + - 35606 + - uid: 36342 + components: + - type: Transform + pos: -14.5,198.5 + parent: 2 + - type: DeviceList + devices: + - 34384 + - 34391 + - 36337 + - 36341 + - 36340 + - 36333 + - uid: 36343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,196.5 + parent: 2 + - type: DeviceList + devices: + - 36338 + - 34380 + - 30979 + - 36332 + - 36331 + - 36340 + - 36341 + - uid: 36345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,191.5 + parent: 2 + - type: DeviceList + devices: + - 36336 + - 36332 + - 36331 + - 36334 + - uid: 36346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,187.5 + parent: 2 + - type: DeviceList + devices: + - 36335 + - 34341 + - 36327 + - 36328 + - 36329 + - 36333 + - uid: 36347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,193.5 + parent: 2 + - type: DeviceList + devices: + - 31800 + - 36327 + - 36328 + - 36329 + - 36330 + - 38478 + - uid: 36349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,199.5 + parent: 2 + - type: DeviceList + devices: + - 32186 + - 32187 + - 36322 + - 34427 + - uid: 36351 + components: + - type: Transform + pos: -14.5,208.5 + parent: 2 + - type: DeviceList + devices: + - 36350 + - 31427 + - 36339 + - 31367 + - 31381 + - uid: 36356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,202.5 + parent: 2 + - type: DeviceList + devices: + - 19132 + - 31718 + - 31707 + - 36355 + - uid: 36358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,183.5 + parent: 2 + - type: DeviceList + devices: + - 36357 + - 34401 + - 34413 + - uid: 36360 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-42.5 + pos: -5.5,176.5 parent: 2 - - uid: 17164 + - type: DeviceList + devices: + - 36359 + - 34324 + - 34317 + - uid: 36377 + components: + - type: Transform + pos: -0.5,168.5 + parent: 2 + - type: DeviceList + devices: + - 36373 + - 36400 + - 36395 + - 36370 + - 36372 + - 36401 + - uid: 36404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,189.5 + parent: 2 + - type: DeviceList + devices: + - 36402 + - 31777 + - 31770 + - 36403 + - uid: 36407 + components: + - type: Transform + pos: -61.5,154.5 + parent: 2 + - type: DeviceList + devices: + - 36405 + - 32500 + - 32501 + - 1295 + - 9455 + - 14245 + - uid: 36413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,160.5 + parent: 2 + - type: DeviceList + devices: + - 36406 + - 22036 + - 22037 + - 22038 + - 1295 + - 9455 + - 14245 + - 36412 + - 36408 + - 36409 + - 36410 + - 36411 + - 15084 + - 14250 + - 1298 + - 14168 + - uid: 36418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,179.5 + parent: 2 + - type: DeviceList + devices: + - 32615 + - 32614 + - 36416 + - 21018 + - 21017 + - uid: 36420 + components: + - type: Transform + pos: -91.5,171.5 + parent: 2 + - type: DeviceList + devices: + - 36417 + - 21017 + - 21018 + - 21011 + - 21010 + - 21009 + - 21020 + - 21021 + - 21022 + - 21024 + - 38392 + - uid: 36430 + components: + - type: Transform + pos: -84.5,166.5 + parent: 2 + - type: DeviceList + devices: + - 36427 + - 32566 + - 36429 + - 36428 + - 21022 + - 21021 + - uid: 36433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,157.5 + parent: 2 + - type: DeviceList + devices: + - 32583 + - 21028 + - 32584 + - 36432 + - 21029 + - uid: 36532 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-41.5 + pos: -87.5,44.5 parent: 2 - - uid: 17210 + - type: DeviceList + devices: + - 26477 + - 33149 + - 29688 + - 29687 + - 29686 + - 28097 + - 28099 + - 28100 + - 29681 + - 29683 + - 29684 + - 29675 + - 26475 + - 26474 + - 29679 + - 26473 + - 18086 + - uid: 36534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 31377 + - 6254 + - 19101 + - 23260 + - 27980 + - 29674 + - 5999 + - 31385 + - 31384 + - 36530 + - 36531 + - uid: 36539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -130.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 33231 + - 33234 + - 36544 + - uid: 36543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,49.5 + parent: 2 + - type: DeviceList + devices: + - 19243 + - 19516 + - 28924 + - 28923 + - 19011 + - 19008 + - uid: 36575 + components: + - type: Transform + pos: 85.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 36574 + - 6721 + - 6715 + - 5106 + - 5107 + - 5108 + - 5109 + - 3391 + - uid: 36578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,51.5 + parent: 2 + - type: DeviceList + devices: + - 36576 + - 36577 + - 5102 + - 5101 + - 5100 + - 5094 + - 5095 + - 5096 + - uid: 36584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,53.5 + parent: 2 + - type: DeviceList + devices: + - 20345 + - 20347 + - 20348 + - 20349 + - 30093 + - 20056 + - 20076 + - 20174 + - 20055 + - 20098 + - 36582 + - 4223 + - 4224 + - uid: 36592 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-5.5 + pos: 73.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 36591 + - 4458 + - 10998 + - 4812 + - 4811 + - 4807 + - 3576 + - uid: 36593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 36591 + - 4458 + - 10998 + - 4812 + - 4811 + - 4807 + - 3576 + - uid: 36595 + components: + - type: Transform + pos: 69.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 4458 + - 10998 + - 4812 + - 4811 + - 4807 + - 3576 + - 11991 + - 22402 + - 36588 + - 22372 + - 21437 + - 14494 + - 4801 + - uid: 36598 + components: + - type: Transform + pos: 60.5,63.5 + parent: 2 + - type: DeviceList + devices: + - 22488 + - 36597 + - 22474 + - uid: 36601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,63.5 + parent: 2 + - type: DeviceList + devices: + - 27371 + - 36600 + - 6873 + - 6874 + - 3348 + - 6877 + - 6824 + - uid: 36605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 36604 + - 23134 + - 23131 + - 5192 + - 6873 + - 6874 + - 3348 + - 19638 + - uid: 36864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,71.5 + parent: 2 + - type: DeviceList + devices: + - 21207 + - 11577 + - 11567 + - 11562 + - 4597 + - 1632 + - 1633 + - 5061 + - 8636 + - 4439 + - 11656 + - 11655 + - 11654 + - 11649 + - 11650 + - 11651 + - uid: 36867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,82.5 + parent: 2 + - type: DeviceList + devices: + - 36866 + - 34230 + - 34234 + - 9554 + - 17389 + - uid: 36873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,88.5 + parent: 2 + - type: DeviceList + devices: + - 36869 + - 33757 + - 36870 + - 10353 + - 10110 + - 10085 + - 11651 + - 11650 + - 11649 + - 11654 + - 11655 + - 11656 + - 36481 + - 36480 + - 36479 + - 16550 + - 16549 + - 16548 + - 36871 + - 36872 + - 16556 + - 16555 + - 16554 + - 36876 + - uid: 36883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,97.5 + parent: 2 + - type: DeviceList + devices: + - 36874 + - 36875 + - 36882 + - 17365 + - 36881 + - 36877 + - 36878 + - 36880 + - 36879 + - 36876 + - 11247 + - 10131 + - 22061 + - uid: 36886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,103.5 + parent: 2 + - type: DeviceList + devices: + - 18678 + - 36884 + - 18722 + - 36878 + - 36879 + - 36880 + - 36885 + - uid: 36888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,101.5 + parent: 2 + - type: DeviceList + devices: + - 36887 + - 13465 + - 13638 + - 36885 + - uid: 36897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,84.5 + parent: 2 + - type: DeviceList + devices: + - 36896 + - 33984 + - 33985 + - 33993 + - 33992 + - 10716 + - 10722 + - 10718 + - 10719 + - 10720 + - 14392 + - 34038 + - 34039 + - uid: 36900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,77.5 + parent: 2 + - type: DeviceList + devices: + - 36898 + - 13118 + - 13117 + - 13116 + - 36899 + - 4165 + - 3934 + - 3656 + - 10724 + - 10725 + - 10715 + - 10716 + - 27256 + - 26867 + - uid: 36908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,77.5 + parent: 2 + - type: DeviceList + devices: + - 10764 + - 11072 + - 36902 + - 36901 + - 10718 + - 10719 + - 10720 + - 10724 + - 10725 + - 10715 + - 17498 + - 16679 + - 11608 + - 11706 + - 10727 + - uid: 36909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,74.5 + parent: 2 + - type: DeviceList + devices: + - 36907 + - 34120 + - 34121 + - 11072 + - uid: 36910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,83.5 + parent: 2 + - type: DeviceList + devices: + - 10107 + - 17314 + - 36906 + - 36905 + - 34172 + - 34173 + - 10764 + - 2986 + - 10723 + - uid: 36913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,65.5 + parent: 2 + - type: DeviceList + devices: + - 36911 + - 35935 + - 11605 + - 34142 + - 10766 + - 10778 + - 36912 + - 12951 + - uid: 36918 + components: + - type: Transform + pos: -28.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 36914 + - 36912 + - 13116 + - 13117 + - 13118 + - 36916 + - 36915 + - 12941 + - 12939 + - 12942 + - 12943 + - 12944 + - 12945 + - 36917 + - uid: 36922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,61.5 + parent: 2 + - type: DeviceList + devices: + - 36920 + - 13120 + - 34080 + - 36919 + - 35702 + - 12945 + - 12944 + - 12943 + - 12942 + - 12939 + - 12941 + - 36921 + - uid: 36924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,87.5 + parent: 2 + - type: DeviceList + devices: + - 36923 + - 16558 + - 16557 + - 16560 + - 21078 + - 24210 + - 24211 + - 16556 + - 16555 + - 16554 + - 17535 + - 17536 + - 24213 + - 20231 + - uid: 36925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,110.5 + parent: 2 + - type: DeviceList + devices: + - 36926 + - 17419 + - 17417 + - 17535 + - 17536 + - uid: 36929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,93.5 + parent: 2 + - type: DeviceList + devices: + - 36927 + - 33727 + - 33725 + - 36928 + - 24213 + - uid: 36932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,79.5 + parent: 2 + - type: DeviceList + devices: + - 36930 + - 36931 + - 21078 + - 24210 + - 24211 + - 24212 + - uid: 36935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,65.5 + parent: 2 + - type: DeviceList + devices: + - 33557 + - 36944 + - 33546 + - 36943 + - 33526 + - 36936 + - 36934 + - 21077 + - uid: 36937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,64.5 + parent: 2 + - type: DeviceList + devices: + - 36933 + - 18957 + - 19717 + - 19718 + - 36934 + - 36936 + - uid: 36942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 36939 + - 36938 + - 19718 + - 19717 + - 18957 + - 19607 + - 14896 + - 20815 + - 16560 + - 16558 + - 16557 + - 36941 + - 36940 + - uid: 36947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,64.5 + parent: 2 + - uid: 36949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 17353 + - 36948 + - 33513 + - 36941 + - uid: 36952 + components: + - type: Transform + pos: -71.5,80.5 + parent: 2 + - type: DeviceList + devices: + - 36950 + - 33598 + - 33597 + - 36951 +- proto: AirAlarmElectronics + entities: + - uid: 29708 + components: + - type: Transform + pos: -111.49457,35.45368 + parent: 2 +- proto: AirCanister + entities: + - uid: 9054 + components: + - type: Transform + pos: -88.5,143.5 + parent: 2 + - uid: 11278 + components: + - type: Transform + pos: -132.5,45.5 + parent: 2 + - uid: 16499 + components: + - type: Transform + pos: -23.5,207.5 + parent: 2 + - uid: 16784 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 13386 + - uid: 31931 + components: + - type: Transform + pos: 85.5,17.5 + parent: 2 + - uid: 37695 + components: + - type: Transform + pos: -107.5,55.5 + parent: 2 + - uid: 37843 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 37842 +- proto: Airlock + entities: + - uid: 911 + components: + - type: Transform + pos: -20.5,64.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + pos: -62.5,102.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: 58.5,41.5 + parent: 2 + - uid: 7151 + components: + - type: Transform + pos: 60.5,38.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: -70.5,99.5 + parent: 2 + - uid: 10803 + components: + - type: Transform + pos: -61.5,106.5 + parent: 2 + - uid: 13946 + components: + - type: Transform + pos: -60.5,94.5 + parent: 2 + - uid: 17422 + components: + - type: Transform + pos: -71.5,111.5 parent: 2 - uid: 17424 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-44.5 + pos: -74.5,110.5 parent: 2 - - uid: 17425 + - uid: 18347 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-42.5 + pos: -19.5,171.5 parent: 2 - - uid: 17427 + - uid: 34451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-41.5 + pos: -21.5,171.5 parent: 2 - - uid: 17428 + - uid: 34637 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-43.5 + pos: -74.5,112.5 parent: 2 - - uid: 17430 + - uid: 34812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-44.5 + pos: -21.5,169.5 parent: 2 - - uid: 17577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-42.5 - parent: 2 - - uid: 18758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-42.5 - parent: 2 - - uid: 18783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-45.5 - parent: 2 - - uid: 18836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-47.5 - parent: 2 - - uid: 18896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-46.5 - parent: 2 - - uid: 18950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-71.5 - parent: 2 - - uid: 19049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-71.5 - parent: 2 - - uid: 19052 - components: - - type: Transform - pos: 19.5,-56.5 - parent: 2 - - uid: 19083 - components: - - type: Transform - pos: 19.5,-55.5 - parent: 2 - - uid: 19244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-44.5 - parent: 2 - - uid: 19245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-44.5 - parent: 2 - - uid: 19340 - components: - - type: Transform - pos: 89.5,-1.5 - parent: 2 - - uid: 19342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-71.5 - parent: 2 - - uid: 19388 - components: - - type: Transform - pos: 76.5,7.5 - parent: 2 - - uid: 19389 - components: - - type: Transform - pos: 73.5,7.5 - parent: 2 - - uid: 19390 - components: - - type: Transform - pos: 74.5,7.5 - parent: 2 - - uid: 19391 - components: - - type: Transform - pos: 75.5,7.5 - parent: 2 - - uid: 19409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-34.5 - parent: 2 - - uid: 19458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-34.5 - parent: 2 - - uid: 19459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-34.5 - parent: 2 - - uid: 19460 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-34.5 - parent: 2 - - uid: 19461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-34.5 - parent: 2 - - uid: 19478 - components: - - type: Transform - pos: 11.5,-73.5 - parent: 2 - - uid: 19705 - components: - - type: Transform - pos: -42.5,-13.5 - parent: 2 - - uid: 19711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-16.5 - parent: 2 - - uid: 19735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-34.5 - parent: 2 - - uid: 19766 - components: - - type: Transform - pos: 55.5,-20.5 - parent: 2 - - uid: 19773 - components: - - type: Transform - pos: -43.5,-13.5 - parent: 2 - - uid: 19808 - components: - - type: Transform - pos: -39.5,-13.5 - parent: 2 - - uid: 19927 - components: - - type: Transform - pos: 20.5,21.5 - parent: 2 - - uid: 20542 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-42.5 - parent: 2 - - uid: 20919 - components: - - type: Transform - pos: -27.5,-30.5 - parent: 2 - - uid: 21463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-12.5 - parent: 2 - - uid: 21536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,39.5 - parent: 2 - - uid: 21670 - components: - - type: Transform - pos: -15.5,-79.5 - parent: 2 - - uid: 21680 - components: - - type: Transform - pos: -15.5,-81.5 - parent: 2 - - uid: 21815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,9.5 - parent: 2 - - uid: 21845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,8.5 - parent: 2 - - uid: 21847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,8.5 - parent: 2 - - uid: 21885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,21.5 - parent: 2 - - uid: 21886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,21.5 - parent: 2 - - uid: 21948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-28.5 - parent: 2 - - uid: 22093 - components: - - type: Transform - pos: 27.5,-58.5 - parent: 2 - - uid: 22094 - components: - - type: Transform - pos: 27.5,-57.5 - parent: 2 - - uid: 22400 - components: - - type: Transform - pos: -57.5,-23.5 - parent: 2 - - uid: 22431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-57.5 - parent: 2 - - uid: 22464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-9.5 - parent: 2 - - uid: 22469 - components: - - type: Transform - pos: -31.5,-68.5 - parent: 2 - - uid: 22494 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-9.5 - parent: 2 - - uid: 23177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-64.5 - parent: 2 - - uid: 23200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-40.5 - parent: 2 - - uid: 23264 - components: - - type: Transform - pos: 27.5,-54.5 - parent: 2 - - uid: 23324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-6.5 - parent: 2 - - uid: 23429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-11.5 - parent: 2 - - uid: 23444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-8.5 - parent: 2 - - uid: 23461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-40.5 - parent: 2 - - uid: 23462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-40.5 - parent: 2 - - uid: 23463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-40.5 - parent: 2 - - uid: 23464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-1.5 - parent: 2 - - uid: 23529 - components: - - type: Transform - pos: -16.5,-80.5 - parent: 2 - - uid: 23530 - components: - - type: Transform - pos: -15.5,-80.5 - parent: 2 - - uid: 23585 - components: - - type: Transform - pos: -18.5,35.5 - parent: 2 - - uid: 23701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-11.5 - parent: 2 - - uid: 23702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-59.5 - parent: 2 - - uid: 23705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-59.5 - parent: 2 - - uid: 23710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-59.5 - parent: 2 - - uid: 23711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-59.5 - parent: 2 - - uid: 23712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-59.5 - parent: 2 - - uid: 23714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-59.5 - parent: 2 - - uid: 23715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-59.5 - parent: 2 - - uid: 23721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-59.5 - parent: 2 - - uid: 23752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-59.5 - parent: 2 - - uid: 23830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-10.5 - parent: 2 - - uid: 23893 - components: - - type: Transform - pos: -15.5,12.5 - parent: 2 - - uid: 23894 - components: - - type: Transform - pos: -14.5,12.5 - parent: 2 - - uid: 24150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-57.5 - parent: 2 - - uid: 24223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-63.5 - parent: 2 - - uid: 24276 - components: - - type: Transform - pos: -14.5,10.5 - parent: 2 - - uid: 24303 - components: - - type: Transform - pos: -17.5,35.5 - parent: 2 - - uid: 24357 - components: - - type: Transform - pos: -14.5,2.5 - parent: 2 - - uid: 24404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,26.5 - parent: 2 - - uid: 24457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-83.5 - parent: 2 - - uid: 24630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-84.5 - parent: 2 - - uid: 24655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-89.5 - parent: 2 - - uid: 24705 - components: - - type: Transform - pos: -6.5,-4.5 - parent: 2 - - uid: 24706 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 2 - - uid: 24870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-42.5 - parent: 2 - - uid: 25045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-91.5 - parent: 2 - - uid: 25081 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-54.5 - parent: 2 - - uid: 25093 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-55.5 - parent: 2 - - uid: 25357 - components: - - type: Transform - pos: -0.5,43.5 - parent: 2 - - uid: 25358 - components: - - type: Transform - pos: -1.5,43.5 - parent: 2 - - uid: 25359 - components: - - type: Transform - pos: -2.5,43.5 - parent: 2 - - uid: 25360 - components: - - type: Transform - pos: -0.5,46.5 - parent: 2 - - uid: 25361 - components: - - type: Transform - pos: -1.5,46.5 - parent: 2 - - uid: 25362 - components: - - type: Transform - pos: -2.5,46.5 - parent: 2 - - uid: 25860 - components: - - type: Transform - pos: -53.5,-28.5 - parent: 2 - - uid: 25865 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-17.5 - parent: 2 - - uid: 25867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-37.5 - parent: 2 - - uid: 25868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-37.5 - parent: 2 - - uid: 25869 - components: - - type: Transform - pos: -57.5,-24.5 - parent: 2 - - uid: 25885 - components: - - type: Transform - pos: 17.5,-84.5 - parent: 2 - - uid: 25900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-52.5 - parent: 2 - - uid: 25901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-53.5 - parent: 2 - - uid: 25931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,49.5 - parent: 2 - - uid: 25932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,49.5 - parent: 2 - - uid: 25933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,47.5 - parent: 2 - - uid: 26285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-71.5 - parent: 2 - - uid: 26286 - components: - - type: Transform - pos: 21.5,-53.5 - parent: 2 - - uid: 26508 - components: - - type: Transform - pos: 27.5,-56.5 - parent: 2 - - uid: 26585 - components: - - type: Transform - pos: 27.5,-55.5 - parent: 2 - - uid: 26586 - components: - - type: Transform - pos: 27.5,-53.5 - parent: 2 - - uid: 26588 - components: - - type: Transform - pos: 27.5,-52.5 - parent: 2 - - uid: 26590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-85.5 - parent: 2 - - uid: 26593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-44.5 - parent: 2 - - uid: 26617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-71.5 - parent: 2 - - uid: 26946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,5.5 - parent: 2 - - uid: 27695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-90.5 - parent: 2 - - uid: 27779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-82.5 - parent: 2 - - uid: 28027 - components: - - type: Transform - pos: 21.5,-87.5 - parent: 2 - - uid: 28062 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-82.5 - parent: 2 - - uid: 28069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,5.5 - parent: 2 - - uid: 28114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,4.5 - parent: 2 - - uid: 28116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 2 - - uid: 28161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 2 - - uid: 28334 - components: - - type: Transform - pos: 19.5,-90.5 - parent: 2 - - uid: 28363 - components: - - type: Transform - pos: 19.5,-84.5 - parent: 2 - - uid: 28391 - components: - - type: Transform - pos: 18.5,-84.5 - parent: 2 - - uid: 28728 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 2 - - uid: 28814 - components: - - type: Transform - pos: 14.5,-82.5 - parent: 2 - - uid: 28825 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 2 - - uid: 28853 - components: - - type: Transform - pos: 20.5,-92.5 - parent: 2 - - uid: 28919 - components: - - type: Transform - pos: 16.5,-82.5 - parent: 2 - - uid: 28937 - components: - - type: Transform - pos: 15.5,-82.5 - parent: 2 - - uid: 28939 - components: - - type: Transform - pos: 17.5,-82.5 - parent: 2 - - uid: 28944 - components: - - type: Transform - pos: 17.5,-92.5 - parent: 2 - - uid: 28958 - components: - - type: Transform - pos: 19.5,-92.5 - parent: 2 - - uid: 28959 - components: - - type: Transform - pos: 22.5,-92.5 - parent: 2 - - uid: 29000 - components: - - type: Transform - pos: 12.5,-69.5 - parent: 2 - - uid: 29009 - components: - - type: Transform - pos: 12.5,-70.5 - parent: 2 - - uid: 29013 - components: - - type: Transform - pos: 12.5,-72.5 - parent: 2 - - uid: 29014 - components: - - type: Transform - pos: 12.5,-73.5 - parent: 2 - - uid: 29024 - components: - - type: Transform - pos: 12.5,-74.5 - parent: 2 - - uid: 29042 - components: - - type: Transform - pos: 12.5,-75.5 - parent: 2 - - uid: 29043 - components: - - type: Transform - pos: 12.5,-76.5 - parent: 2 - - uid: 29051 - components: - - type: Transform - pos: 12.5,-77.5 - parent: 2 - - uid: 29052 - components: - - type: Transform - pos: 12.5,-78.5 - parent: 2 - - uid: 29053 - components: - - type: Transform - pos: 12.5,-79.5 - parent: 2 - - uid: 29068 - components: - - type: Transform - pos: 12.5,-80.5 - parent: 2 - - uid: 29069 - components: - - type: Transform - pos: 12.5,-81.5 - parent: 2 - - uid: 29121 - components: - - type: Transform - pos: 12.5,-71.5 - parent: 2 - - uid: 29135 - components: - - type: Transform - pos: 13.5,-70.5 - parent: 2 - - uid: 29180 - components: - - type: Transform - pos: 13.5,-71.5 - parent: 2 - - uid: 29188 - components: - - type: Transform - pos: 13.5,-69.5 - parent: 2 - - uid: 29189 - components: - - type: Transform - pos: 13.5,-73.5 - parent: 2 - - uid: 29190 - components: - - type: Transform - pos: 13.5,-72.5 - parent: 2 - - uid: 29193 - components: - - type: Transform - pos: 13.5,-74.5 - parent: 2 - - uid: 29194 - components: - - type: Transform - pos: 13.5,-75.5 - parent: 2 - - uid: 29209 - components: - - type: Transform - pos: 13.5,-76.5 - parent: 2 - - uid: 29210 - components: - - type: Transform - pos: 13.5,-77.5 - parent: 2 - - uid: 29211 - components: - - type: Transform - pos: 13.5,-78.5 - parent: 2 - - uid: 29219 - components: - - type: Transform - pos: 13.5,-79.5 - parent: 2 - - uid: 29222 - components: - - type: Transform - pos: 13.5,-80.5 - parent: 2 - - uid: 29227 - components: - - type: Transform - pos: 13.5,-81.5 - parent: 2 - - uid: 29372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,5.5 - parent: 2 - - uid: 29374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,5.5 - parent: 2 - - uid: 29512 - components: - - type: Transform - pos: 19.5,-82.5 - parent: 2 - - uid: 29513 - components: - - type: Transform - pos: 20.5,-82.5 - parent: 2 - - uid: 29514 - components: - - type: Transform - pos: 21.5,-82.5 - parent: 2 - - uid: 29521 - components: - - type: Transform - pos: 23.5,-82.5 - parent: 2 - - uid: 29523 - components: - - type: Transform - pos: 22.5,-82.5 - parent: 2 - - uid: 29524 - components: - - type: Transform - pos: 15.5,-92.5 - parent: 2 - - uid: 29525 - components: - - type: Transform - pos: 14.5,-92.5 - parent: 2 - - uid: 29526 - components: - - type: Transform - pos: 13.5,-92.5 - parent: 2 - - uid: 29527 - components: - - type: Transform - pos: 12.5,-92.5 - parent: 2 - - uid: 29530 - components: - - type: Transform - pos: 18.5,-92.5 - parent: 2 - - uid: 29531 - components: - - type: Transform - pos: 16.5,-92.5 - parent: 2 - - uid: 29532 - components: - - type: Transform - pos: 21.5,-92.5 - parent: 2 - - uid: 29533 - components: - - type: Transform - pos: 24.5,-82.5 - parent: 2 - - uid: 29535 - components: - - type: Transform - pos: 17.5,-90.5 - parent: 2 - - uid: 29537 - components: - - type: Transform - pos: 18.5,-90.5 - parent: 2 - - uid: 29549 - components: - - type: Transform - pos: 31.5,-71.5 - parent: 2 - - uid: 29550 - components: - - type: Transform - pos: 32.5,-71.5 - parent: 2 - - uid: 29875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-22.5 - parent: 2 - - uid: 29883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-37.5 - parent: 2 - - uid: 29884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-37.5 - parent: 2 - - uid: 29885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-36.5 - parent: 2 - - uid: 29886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-37.5 - parent: 2 - - uid: 29887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-38.5 - parent: 2 - - uid: 29888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-37.5 - parent: 2 - - uid: 29891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-40.5 - parent: 2 - - uid: 29892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-41.5 - parent: 2 - - uid: 29893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-40.5 - parent: 2 - - uid: 29894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-41.5 - parent: 2 - - uid: 29895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-42.5 - parent: 2 - - uid: 29896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-42.5 - parent: 2 - - uid: 29899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-41.5 - parent: 2 - - uid: 29900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-42.5 - parent: 2 - - uid: 29901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-43.5 - parent: 2 - - uid: 29902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-43.5 - parent: 2 - - uid: 29904 - components: - - type: Transform - pos: -47.5,-40.5 - parent: 2 - - uid: 29907 - components: - - type: Transform - pos: -47.5,-43.5 - parent: 2 - - uid: 29908 - components: - - type: Transform - pos: -48.5,-41.5 - parent: 2 - - uid: 29909 - components: - - type: Transform - pos: -48.5,-42.5 - parent: 2 - - uid: 30256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,7.5 - parent: 2 - - uid: 30257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,6.5 - parent: 2 - - uid: 30301 - components: - - type: Transform - pos: -4.5,43.5 - parent: 2 - - uid: 30329 - components: - - type: Transform - pos: -19.5,35.5 - parent: 2 - - uid: 31345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,28.5 - parent: 2 - - uid: 31426 - components: - - type: Transform - pos: 25.5,25.5 - parent: 2 - - uid: 31427 - components: - - type: Transform - pos: 26.5,25.5 - parent: 2 - - uid: 31703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-10.5 - parent: 2 - - uid: 31709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-17.5 - parent: 2 - - uid: 31711 - components: - - type: Transform - pos: -43.5,-12.5 - parent: 2 - - uid: 31712 - components: - - type: Transform - pos: -43.5,-10.5 - parent: 2 - - uid: 31717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-18.5 - parent: 2 - - uid: 31721 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-11.5 - parent: 2 - - uid: 31723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-13.5 - parent: 2 - - uid: 31869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,30.5 - parent: 2 - - uid: 31870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,29.5 - parent: 2 - - uid: 31871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,28.5 - parent: 2 - - uid: 31872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,27.5 - parent: 2 - - uid: 31986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,14.5 - parent: 2 - - uid: 32104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,13.5 - parent: 2 - - uid: 32105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,13.5 - parent: 2 - - uid: 32106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,13.5 - parent: 2 - - uid: 32107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,13.5 - parent: 2 -- proto: Cautery +- proto: AirlockArmoryGlassLocked entities: - - uid: 10690 + - uid: 4836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.359406,-77.655174 + pos: 71.5,56.5 parent: 2 -- proto: Chair +- proto: AirlockAssembly entities: - - uid: 149 + - uid: 16163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,8.5 + pos: -80.5,156.5 parent: 2 - - uid: 550 + - uid: 23624 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,2.5 + pos: 11.5,186.5 parent: 2 - - uid: 1303 + - uid: 27974 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,2.5 + pos: -126.5,92.5 parent: 2 - - uid: 3351 - components: - - type: Transform - pos: -8.5,6.5 - parent: 2 - - uid: 8183 - components: - - type: Transform - pos: -7.5,6.5 - parent: 2 - - uid: 8898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-30.5 - parent: 2 - - uid: 8997 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 712 components: - type: Transform rot: -1.5707963267948966 rad - pos: 74.5,-28.5 + pos: -104.5,29.5 parent: 2 - - uid: 10693 + - uid: 3028 components: - type: Transform - pos: 56.5,-62.5 + pos: -58.5,10.5 parent: 2 - - uid: 10694 - components: - - type: Transform - pos: 57.5,-62.5 - parent: 2 - - uid: 10695 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 2 - - uid: 10696 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - - uid: 10697 - components: - - type: Transform - pos: 61.5,-50.5 - parent: 2 - - uid: 10698 - components: - - type: Transform - pos: 62.5,-50.5 - parent: 2 - - uid: 10699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-36.5 - parent: 2 - - uid: 10700 + - uid: 8987 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-9.5 + pos: -103.5,29.5 parent: 2 - - uid: 10701 + - uid: 18184 + components: + - type: Transform + pos: -101.5,35.5 + parent: 2 + - uid: 18991 + components: + - type: Transform + pos: -101.5,36.5 + parent: 2 + - uid: 19248 + components: + - type: Transform + pos: 12.5,173.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 21026 + components: + - type: Transform + pos: -71.5,148.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 10959 + components: + - type: Transform + pos: -32.5,61.5 + parent: 2 +- proto: AirlockBrigGlassLocked + entities: + - uid: 626 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-73.5 + pos: 71.5,31.5 parent: 2 - - uid: 10703 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 8506: + - DoorStatus: DoorBolt + 8505: + - DoorStatus: DoorBolt + - uid: 1301 components: - type: Transform - pos: 9.5,21.5 + pos: 76.5,41.5 parent: 2 - - uid: 10704 + - uid: 1375 + components: + - type: Transform + pos: 75.5,41.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: 67.5,41.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,45.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + pos: 66.5,45.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: 67.5,45.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + pos: 75.5,45.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: 66.5,41.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + pos: 78.5,46.5 + parent: 2 +- proto: AirlockBrigLocked + entities: + - uid: 258 + components: + - type: Transform + pos: 34.5,63.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: 32.5,62.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: 64.5,46.5 + parent: 2 +- proto: AirlockCaptainGlassLocked + entities: + - uid: 1677 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 2 - - uid: 10705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-28.5 - parent: 2 - - uid: 10706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-29.5 - parent: 2 - - uid: 10709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 2 - - uid: 10710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-13.5 - parent: 2 - - uid: 10711 - components: - - type: Transform - pos: 3.5,-29.5 - parent: 2 - - uid: 10712 - components: - - type: Transform - pos: 4.5,-29.5 - parent: 2 - - uid: 10713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,11.5 - parent: 2 - - uid: 10718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 2 - - uid: 10719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 - parent: 2 - - uid: 10720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 2 - - uid: 10721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 2 - - uid: 10722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,40.5 - parent: 2 - - uid: 10724 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,0.5 - parent: 2 - - uid: 10735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 2 - - uid: 10737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,0.5 - parent: 2 - - uid: 10738 - components: - - type: Transform - pos: 8.5,28.5 - parent: 2 - - uid: 10739 - components: - - type: Transform - pos: 9.5,28.5 - parent: 2 - - uid: 10740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,39.5 - parent: 2 - - uid: 10741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,41.5 - parent: 2 - - uid: 10742 - components: - - type: Transform - pos: 8.5,21.5 - parent: 2 - - uid: 10743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,0.5 - parent: 2 - - uid: 10744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-1.5 - parent: 2 - - uid: 10745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-0.5 - parent: 2 - - uid: 10749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-13.5 - parent: 2 - - uid: 10750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,11.5 - parent: 2 - - uid: 10752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-6.5 - parent: 2 - - uid: 10754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-0.5 - parent: 2 - - uid: 10756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-13.5 - parent: 2 - - uid: 10758 - components: - - type: Transform - pos: 67.5,19.5 - parent: 2 - - uid: 10759 - components: - - type: Transform - pos: -57.5,17.5 - parent: 2 - - uid: 10760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,12.5 - parent: 2 - - uid: 10761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,11.5 - parent: 2 - - uid: 10762 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-15.5 - parent: 2 - - uid: 10763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-15.5 - parent: 2 - - uid: 10764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-15.5 - parent: 2 - - uid: 10765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,15.5 - parent: 2 - - uid: 10766 - components: - - type: Transform - pos: -54.5,17.5 - parent: 2 - - uid: 10771 - components: - - type: Transform - pos: -55.5,17.5 - parent: 2 - - uid: 10772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,13.5 - parent: 2 - - uid: 10773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,11.5 - parent: 2 - - uid: 10775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,11.5 - parent: 2 - - uid: 10776 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,4.5 + pos: -37.5,99.5 parent: 2 +- proto: AirlockCaptainLocked + entities: - uid: 10777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-27.5 + pos: -33.5,97.5 parent: 2 - - uid: 10778 +- proto: AirlockCargoGlassLocked + entities: + - uid: 924 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 1832 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,-28.5 + pos: -4.5,-0.5 parent: 2 - - uid: 10779 + - uid: 1833 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-28.5 + pos: -4.5,0.5 parent: 2 - - uid: 10780 + - uid: 37844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-26.5 - parent: 2 - - uid: 10781 + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 37842 +- proto: AirlockCargoLocked + entities: + - uid: 160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-25.5 + pos: -28.5,-2.5 parent: 2 - - uid: 10783 + - uid: 163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-22.5 + pos: -27.5,-2.5 parent: 2 - - uid: 10784 + - uid: 1834 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 12108 + components: + - type: Transform + pos: -54.5,65.5 + parent: 2 + - uid: 12131 + components: + - type: Transform + pos: -55.5,69.5 + parent: 2 + - uid: 12132 + components: + - type: Transform + pos: -55.5,62.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 10767 + components: + - type: Transform + pos: -23.5,189.5 + parent: 2 + - uid: 22404 + components: + - type: Transform + pos: -18.5,195.5 + parent: 2 +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 8483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,33.5 + parent: 2 + - uid: 18465 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-43.5 + pos: -128.5,90.5 parent: 2 - - uid: 10785 + - uid: 27136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-44.5 + pos: -115.5,52.5 parent: 2 - - uid: 10786 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 25197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-36.5 + pos: -121.5,56.5 parent: 2 - - uid: 10787 + - uid: 27135 components: - type: Transform - pos: 65.5,2.5 + pos: -119.5,53.5 parent: 2 - - uid: 10788 +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 22840 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-52.5 - parent: 2 - - uid: 10789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-54.5 - parent: 2 - - uid: 10790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-52.5 - parent: 2 - - uid: 10791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-52.5 - parent: 2 - - uid: 10793 - components: - - type: Transform - pos: 18.5,-30.5 - parent: 2 - - uid: 10794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-30.5 - parent: 2 - - uid: 10795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-30.5 - parent: 2 - - uid: 10796 - components: - - type: Transform - pos: 19.5,-30.5 - parent: 2 - - uid: 10797 - components: - - type: Transform - pos: 21.5,-30.5 - parent: 2 - - uid: 10798 - components: - - type: Transform - pos: 22.5,-30.5 - parent: 2 - - uid: 10799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 2 - - uid: 10800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,0.5 - parent: 2 - - uid: 10801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-6.5 - parent: 2 - - uid: 10802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 2 - - uid: 10807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,47.5 - parent: 2 - - uid: 10808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,47.5 - parent: 2 - - uid: 10809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,41.5 - parent: 2 - - uid: 10810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,41.5 - parent: 2 - - uid: 10812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-37.5 - parent: 2 - - uid: 10813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-37.5 - parent: 2 - - uid: 10814 - components: - - type: Transform - pos: 61.5,-39.5 - parent: 2 - - uid: 10815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 2 - - uid: 10816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 2 - - uid: 10822 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,8.5 - parent: 2 - - uid: 12973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,32.5 - parent: 2 - - uid: 13324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-29.5 - parent: 2 - - uid: 14082 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,8.5 - parent: 2 - - uid: 14286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,8.5 - parent: 2 - - uid: 15907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,8.5 - parent: 2 - - uid: 22557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,8.5 + pos: -13.5,205.5 parent: 2 - uid: 22841 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,31.5 + pos: -13.5,204.5 parent: 2 - - uid: 24403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,36.5 - parent: 2 - - uid: 25356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,37.5 - parent: 2 - - uid: 29415 - components: - - type: Transform - pos: 61.5,-16.5 - parent: 2 - - uid: 29416 - components: - - type: Transform - pos: 62.5,-16.5 - parent: 2 - - uid: 29417 - components: - - type: Transform - pos: 67.5,-16.5 - parent: 2 - - uid: 29418 - components: - - type: Transform - pos: 66.5,-16.5 - parent: 2 - - uid: 29522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-4.5 - parent: 2 - - uid: 29552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,0.5 - parent: 2 - - uid: 29553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-0.5 - parent: 2 - - uid: 29555 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,1.5 - parent: 2 - - uid: 29562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-2.5 - parent: 2 - - uid: 29570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-3.5 - parent: 2 - - uid: 29742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 2 - - uid: 30078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,35.5 - parent: 2 -- proto: ChairBarber - entities: - - uid: 6229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,14.5 - parent: 2 -- proto: ChairCarp - entities: - - uid: 23929 - components: - - type: Transform - pos: 15.5,43.5 - parent: 2 -- proto: ChairOfficeDark - entities: - - uid: 1371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,36.5 - parent: 2 - - uid: 3526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.497156,21.550995 - parent: 2 - - uid: 5420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.554253,-32.42765 - parent: 2 - - uid: 10130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.429692,15.533976 - parent: 2 - - uid: 10131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.476567,17.5496 - parent: 2 - - uid: 10192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,31.5 - parent: 2 - - uid: 10826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-50.5 - parent: 2 - - uid: 10828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.500064,-67.50128 - parent: 2 - - uid: 10829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.499214,41.49781 - parent: 2 - - uid: 10832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 2 - - uid: 10835 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.499213,41.49781 - parent: 2 - - uid: 10837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 2 - - uid: 10839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5108175,-16.416864 - parent: 2 - - uid: 10841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.541294,-8.494593 - parent: 2 - - uid: 10846 - components: - - type: Transform - pos: -0.5,30.5 - parent: 2 - - uid: 10852 - components: - - type: Transform - pos: 48.5,0.5 - parent: 2 - - uid: 10853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,1.5 - parent: 2 - - uid: 10854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,0.5 - parent: 2 - - uid: 10855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-0.5 - parent: 2 - - uid: 10856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-0.5 - parent: 2 - - uid: 10857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,0.5 - parent: 2 - - uid: 10858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,1.5 - parent: 2 - - uid: 10859 - components: - - type: Transform - pos: 56.5,2.5 - parent: 2 - - uid: 10860 - components: - - type: Transform - pos: 55.5,2.5 - parent: 2 - - uid: 10867 - components: - - type: Transform - pos: -58.5,3.5 - parent: 2 - - uid: 10872 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 2 - - uid: 10873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-58.5 - parent: 2 - - uid: 10874 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-57.5 - parent: 2 - - uid: 10875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-58.5 - parent: 2 - - uid: 10876 - components: - - type: Transform - pos: -32.5,-26.5 - parent: 2 - - uid: 10877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-56.5 - parent: 2 - - uid: 10878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-50.5 - parent: 2 - - uid: 10879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-63.5 - parent: 2 - - uid: 10883 - components: - - type: Transform - pos: 6.5,-43.5 - parent: 2 - - uid: 10884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-43.5 - parent: 2 - - uid: 10885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-31.5 - parent: 2 - - uid: 10886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-50.5 - parent: 2 - - uid: 10887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-52.5 - parent: 2 - - uid: 10892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-17.5 - parent: 2 - - uid: 10896 - components: - - type: Transform - pos: 60.48465,-6.478754 - parent: 2 - - uid: 11842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.479957,15.523607 - parent: 2 - - uid: 12325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,32.5 - parent: 2 - - uid: 17153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.51352,-40.384117 - parent: 2 - - uid: 17158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.529144,-40.368492 - parent: 2 - - uid: 19798 - components: - - type: Transform - pos: 6.4893837,-14.365727 - parent: 2 - - uid: 20162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.502255,-15.40419 - parent: 2 - - uid: 21031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.463491,-23.40751 - parent: 2 - - uid: 21669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5514975,-16.455845 - parent: 2 - - uid: 22025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.503862,22.54605 - parent: 2 - - uid: 22289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5422525,-14.40897 - parent: 2 - - uid: 22703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,37.5 - parent: 2 - - uid: 23553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.522071,-69.53603 - parent: 2 - - uid: 24050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.530167,41.48429 - parent: 2 - - uid: 26243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5595798,-15.5 - parent: 2 - - uid: 26318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.4872952,-15.5 - parent: 2 - - uid: 30333 - components: - - type: Transform - pos: 17.440556,37.462906 - parent: 2 - - uid: 30334 - components: - - type: Transform - pos: 13.534306,37.494156 - parent: 2 -- proto: ChairOfficeLight - entities: - - uid: 10898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-35.5 - parent: 2 - - uid: 10899 - components: - - type: Transform - pos: 39.5,-58.5 - parent: 2 - - uid: 10900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.518808,-20.455471 - parent: 2 - - uid: 10901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.502907,-18.384247 - parent: 2 - - uid: 10902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.497223,-17.401423 - parent: 2 - - uid: 10903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.537266,-17.292768 - parent: 2 - - uid: 10904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.37713,-10.192497 - parent: 2 - - uid: 10906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-49.5 - parent: 2 - - uid: 10907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-49.5 - parent: 2 - - uid: 10908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-50.5 - parent: 2 - - uid: 10909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-41.5 - parent: 2 - - uid: 10911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.448475,-17.410114 - parent: 2 - - uid: 10913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.565683,-20.471096 - parent: 2 - - uid: 10914 - components: - - type: Transform - pos: 35.5,-53.5 - parent: 2 - - uid: 10915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 2 - - uid: 10916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-19.5 - parent: 2 - - uid: 10917 - components: - - type: Transform - pos: 21.5,-22.5 - parent: 2 - - uid: 10918 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.22825,-23.83991 - parent: 2 - - uid: 10919 - components: - - type: Transform - pos: 21.5,-26.5 - parent: 2 - - uid: 10920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.48014,-17.454302 - parent: 2 - - uid: 10921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.550434,-23.44038 - parent: 2 -- proto: ChairPilotSeat - entities: - - uid: 30153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,41.5 - parent: 2 -- proto: ChairRitual - entities: - - uid: 13965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.80753,22.402487 - parent: 2 - - uid: 30825 - components: - - type: Transform - pos: 64.74503,27.152487 - parent: 2 - - uid: 30835 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.40128,22.089987 - parent: 2 - - uid: 30836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.74503,22.027487 - parent: 2 - - uid: 30837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.24503,22.433737 - parent: 2 - - uid: 30838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.43253,21.543112 - parent: 2 - - uid: 30839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.47941,21.824362 - parent: 2 - - uid: 30841 - components: - - type: Transform - pos: 65.43253,26.574362 - parent: 2 - - uid: 30842 - components: - - type: Transform - pos: 66.52628,27.339987 - parent: 2 - - uid: 30843 - components: - - type: Transform - pos: 66.66691,26.714987 - parent: 2 - - uid: 30844 - components: - - type: Transform - pos: 67.91691,26.855612 - parent: 2 - - uid: 30845 - components: - - type: Transform - pos: 68.97941,27.214987 - parent: 2 -- proto: ChairWood - entities: - - uid: 10922 - components: - - type: Transform - pos: 45.5,-71.5 - parent: 2 - - uid: 10923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-35.5 - parent: 2 - - uid: 10924 - components: - - type: Transform - pos: 42.5,-70.5 - parent: 2 - - uid: 10925 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.51129,-6.5767584 - parent: 2 - - uid: 10926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.495665,-7.3580084 - parent: 2 - - uid: 10927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,19.5 - parent: 2 - - uid: 10928 - components: - - type: Transform - pos: 44.5,-70.5 - parent: 2 - - uid: 10930 - components: - - type: Transform - pos: 41.5,-71.5 - parent: 2 - - uid: 10931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.52008,-9.352179 - parent: 2 - - uid: 10932 - components: - - type: Transform - pos: 42.5,-71.5 - parent: 2 - - uid: 10933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.51129,-7.3736334 - parent: 2 - - uid: 10934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-35.5 - parent: 2 - - uid: 10935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-34.5 - parent: 2 - - uid: 10936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-34.5 - parent: 2 - - uid: 10937 - components: - - type: Transform - pos: 44.5,-71.5 - parent: 2 - - uid: 10938 - components: - - type: Transform - pos: 41.5,-70.5 - parent: 2 - - uid: 10939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.464415,-6.5142584 - parent: 2 - - uid: 30492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.55242,25.60824 - parent: 2 - - uid: 30536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.55242,23.655115 - parent: 2 - - uid: 30539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.505547,27.60824 - parent: 2 - - uid: 30540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.568047,27.655115 - parent: 2 - - uid: 30542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.505547,27.57699 - parent: 2 -- proto: CheapLighter - entities: - - uid: 7566 - components: - - type: Transform - pos: 24.332054,19.608465 - parent: 2 - - uid: 10940 - components: - - type: Transform - pos: -61.04908,-2.3450234 - parent: 2 - - uid: 10941 - components: - - type: Transform - pos: 27.618107,-25.451437 - parent: 2 - - uid: 10942 - components: - - type: Transform - pos: 6.6430073,-55.03105 - parent: 2 -- proto: CheapRollerBed - entities: - - uid: 10943 - components: - - type: Transform - pos: 33.49623,-25.39352 - parent: 2 - - uid: 10944 - components: - - type: Transform - pos: 34.49623,-25.377895 - parent: 2 - - uid: 10945 - components: - - type: Transform - pos: 42.5,-32.5 - parent: 2 - - uid: 10946 - components: - - type: Transform - pos: 42.5,-33.5 - parent: 2 - - uid: 10947 - components: - - type: Transform - pos: 42.5,-34.5 - parent: 2 - - uid: 10948 - components: - - type: Transform - pos: 32.49623,-25.39352 - parent: 2 -- proto: ChemDispenser - entities: - - uid: 10950 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 2 - - uid: 10951 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 2 - - uid: 10952 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 2 - - uid: 27445 - components: - - type: Transform - pos: -15.5,33.5 - parent: 2 -- proto: ChemistryBottleOmnizine - entities: - - uid: 11143 - components: - - type: Transform - pos: 36.50073,-38.45636 - parent: 2 - - uid: 26876 - components: - - type: Transform - pos: 19.712257,-20.579367 - parent: 2 -- proto: ChemistryBottleRobustHarvest - entities: - - uid: 30951 - components: - - type: Transform - pos: -29.665651,-64.66139 - parent: 2 - - uid: 31107 - components: - - type: Transform - pos: -29.556276,-64.67702 - parent: 2 - - uid: 31110 - components: - - type: Transform - pos: -29.259401,-64.45827 - parent: 2 - - uid: 31114 - components: - - type: Transform - pos: -29.384401,-64.47389 - parent: 2 -- proto: ChemistryBottleUnstableMutagen - entities: - - uid: 20638 - components: - - type: Transform - pos: 43.099407,-10.371173 - parent: 2 - - uid: 30098 - components: - - type: Transform - pos: 43.286907,-10.136798 - parent: 2 - - uid: 30099 - components: - - type: Transform - pos: 43.740032,-10.511798 - parent: 2 - - uid: 30100 - components: - - type: Transform - pos: 43.186245,-10.238146 - parent: 2 - - uid: 30101 - components: - - type: Transform - pos: 43.092495,-10.285021 - parent: 2 - - uid: 30102 - components: - - type: Transform - pos: 43.82687,-10.363146 - parent: 2 -- proto: ChemistryHotplate - entities: - - uid: 3475 - components: - - type: Transform - pos: -13.5,29.5 - parent: 2 - - uid: 10953 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 2 -- proto: ChemMaster - entities: - - uid: 897 - components: - - type: Transform - pos: -15.5,32.5 - parent: 2 - - uid: 10954 - components: - - type: Transform - pos: 22.5,-20.5 - parent: 2 - - uid: 10955 - components: - - type: Transform - pos: 22.5,-16.5 - parent: 2 - - uid: 10956 - components: - - type: Transform - pos: 65.5,-74.5 - parent: 2 - - uid: 10957 - components: - - type: Transform - pos: 19.5,-18.5 - parent: 2 -- proto: ChessBoard - entities: - - uid: 10958 - components: - - type: Transform - pos: 11.505692,-17.41945 - parent: 2 - - uid: 10961 - components: - - type: Transform - pos: -14.520999,41.38247 - parent: 2 - - uid: 20181 - components: - - type: Transform - pos: 57.32272,20.77893 - parent: 2 -- proto: Cigar - entities: - - uid: 10962 - components: - - type: Transform - pos: -20.468914,-73.59466 - parent: 2 -- proto: CigarCase - entities: - - uid: 10963 - components: - - type: Transform - pos: 21.494093,-10.413399 - parent: 2 -- proto: CigarGold - entities: - - uid: 10965 - components: - - type: Transform - pos: 12.548907,-14.481515 - parent: 2 - - uid: 10966 - components: - - type: Transform - pos: 12.423907,-14.49714 - parent: 2 - - uid: 10969 - components: - - type: Transform - pos: 18.799414,-9.199457 - parent: 2 - - uid: 10970 - components: - - type: Transform - pos: 18.924414,-9.324457 - parent: 2 -- proto: CigarGoldCase - entities: - - uid: 17366 - components: - - type: Transform - pos: 85.50819,-4.4058647 - parent: 2 - - uid: 29333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.56061,-21.455587 - parent: 2 - - uid: 29812 - components: - - type: Transform - pos: -3.5076594,16.713146 - parent: 2 -- proto: CigarGoldSpent - entities: - - uid: 7781 - components: - - type: Transform - pos: 24.613304,18.62409 - parent: 2 - - uid: 29332 - components: - - type: Transform - pos: 8.607485,-21.861837 - parent: 2 - - uid: 30326 - components: - - type: Transform - pos: 14.777683,37.464516 - parent: 2 - - uid: 30762 - components: - - type: Transform - pos: 13.80829,36.586884 - parent: 2 - - uid: 30763 - components: - - type: Transform - pos: 13.71454,36.868134 - parent: 2 - - uid: 30772 - components: - - type: Transform - pos: 13.58954,36.50876 - parent: 2 -- proto: CigarSpent - entities: - - uid: 10975 - components: - - type: Transform - pos: 19.721289,-9.121332 - parent: 2 - - uid: 10976 - components: - - type: Transform - pos: -8.459225,-50.202682 - parent: 2 - - uid: 25351 - components: - - type: Transform - pos: 0.52955866,-15.200541 - parent: 2 -- proto: CigCartonBlue - entities: - - uid: 10977 - components: - - type: Transform - pos: 19.299414,-9.418207 - parent: 2 -- proto: CigPackBlack - entities: - - uid: 9738 - components: - - type: Transform - pos: 24.644554,19.62409 - parent: 2 - - uid: 21524 - components: - - type: Transform - pos: 14.762058,37.73014 - parent: 2 -- proto: CigPackGreen - entities: - - uid: 10978 - components: - - type: Transform - pos: 56.5,-62.5 - parent: 2 -- proto: CigPackRed - entities: - - uid: 10979 - components: - - type: Transform - pos: 27.336857,-25.420187 - parent: 2 - - uid: 10980 - components: - - type: Transform - pos: -60.502205,-2.3450234 - parent: 2 -- proto: CircuitImprinter - entities: - - uid: 21023 - components: - - type: Transform - pos: 71.5,-20.5 - parent: 2 -- proto: CleanerDispenser - entities: - - uid: 31719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-5.5 - parent: 2 -- proto: ClosetBombFilled - entities: - - uid: 10983 - components: - - type: Transform - pos: 9.5,35.5 - parent: 2 - - uid: 10984 - components: - - type: Transform - pos: 74.5,-54.5 - parent: 2 - - uid: 17773 - components: - - type: Transform - pos: 70.5,-44.5 - parent: 2 - - uid: 17792 - components: - - type: Transform - pos: 70.5,-43.5 - parent: 2 -- proto: ClosetChefFilled - entities: - - uid: 10985 - components: - - type: Transform - pos: 35.5,-1.5 - parent: 2 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 2154 - components: - - type: Transform - pos: 24.5,24.5 - parent: 2 - - uid: 2155 - components: - - type: Transform - pos: 29.5,28.5 - parent: 2 - - uid: 5581 - components: - - type: Transform - pos: 70.5,-62.5 - parent: 2 - - uid: 7541 - components: - - type: Transform - pos: 76.5,-24.5 - parent: 2 - - uid: 9406 - components: - - type: Transform - pos: 31.5,-55.5 - parent: 2 - - uid: 10986 - components: - - type: Transform - pos: -72.5,8.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10987 - components: - - type: Transform - pos: -80.5,10.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10988 - components: - - type: Transform - pos: -80.5,-5.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10989 - components: - - type: Transform - pos: -78.5,-15.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10990 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10991 - components: - - type: Transform - pos: -75.5,-3.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10992 - components: - - type: Transform - pos: -8.5,-9.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10994 - components: - - type: Transform - pos: 36.5,-48.5 - parent: 2 - - uid: 10995 - components: - - type: Transform - pos: -19.5,19.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10997 - components: - - type: Transform - pos: -16.5,24.5 - parent: 2 - - uid: 10998 - components: - - type: Transform - pos: -70.5,-16.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10999 - components: - - type: Transform - pos: -65.5,-7.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11000 - components: - - type: Transform - pos: -65.5,-11.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11001 - components: - - type: Transform - pos: -73.5,-16.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11002 - components: - - type: Transform - pos: -54.5,-13.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11003 - components: - - type: Transform - pos: -59.5,-20.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11005 - components: - - type: Transform - pos: -33.5,-47.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11006 - components: - - type: Transform - pos: -28.5,-43.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11007 - components: - - type: Transform - pos: -5.5,-53.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11008 - components: - - type: Transform - pos: 1.5,-57.5 - parent: 2 - - uid: 11009 - components: - - type: Transform - pos: 41.5,-51.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11010 - components: - - type: Transform - pos: 50.5,-31.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11011 - components: - - type: Transform - pos: 86.5,-31.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11012 - components: - - type: Transform - pos: 91.5,-23.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11013 - components: - - type: Transform - pos: 86.5,-51.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11014 - components: - - type: Transform - pos: 86.5,-59.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11015 - components: - - type: Transform - pos: 80.5,-61.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11018 - components: - - type: Transform - pos: 54.5,-51.5 - parent: 2 - - uid: 11019 - components: - - type: Transform - pos: 53.5,-51.5 - parent: 2 - - uid: 11020 - components: - - type: Transform - pos: -77.5,10.5 - parent: 2 - - uid: 11021 - components: - - type: Transform - pos: -77.5,-5.5 - parent: 2 - - uid: 11022 - components: - - type: Transform - pos: 46.5,16.5 - parent: 2 - - uid: 11024 - components: - - type: Transform - pos: 49.5,-64.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11026 - components: - - type: Transform - pos: 1.5,-55.5 - parent: 2 - - uid: 11027 - components: - - type: Transform - pos: -22.5,51.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11028 - components: - - type: Transform - pos: -41.5,-20.5 - parent: 2 - - uid: 11029 - components: - - type: Transform - pos: -40.5,-20.5 - parent: 2 - - uid: 11030 - components: - - type: Transform - pos: 40.5,22.5 - parent: 2 - - uid: 11031 - components: - - type: Transform - pos: 32.5,1.5 - parent: 2 - - uid: 11032 - components: - - type: Transform - pos: 46.5,11.5 - parent: 2 - - uid: 12472 - components: - - type: Transform - pos: 10.5,8.5 - parent: 2 - - uid: 19222 - components: - - type: Transform - pos: -33.5,11.5 - parent: 2 - - uid: 19397 - components: - - type: Transform - pos: 78.5,6.5 - parent: 2 - - uid: 22574 - components: - - type: Transform - pos: -23.5,-3.5 - parent: 2 - - uid: 29132 - components: - - type: Transform - pos: 3.5,1.5 - parent: 2 - - uid: 29425 - components: - - type: Transform - pos: 65.5,-21.5 - parent: 2 - - uid: 29787 - components: - - type: Transform - pos: -16.5,8.5 - parent: 2 - - uid: 29824 - components: - - type: Transform - pos: -48.5,-31.5 - parent: 2 - - uid: 31758 - components: - - type: Transform - pos: -47.5,-6.5 - parent: 2 - - uid: 31853 - components: - - type: Transform - pos: 36.5,-49.5 - parent: 2 -- proto: ClosetEmergencyN2FilledRandom - entities: - - uid: 5605 - components: - - type: Transform - pos: 78.5,-24.5 - parent: 2 - - uid: 11034 - components: - - type: Transform - pos: 46.5,15.5 - parent: 2 - - uid: 11035 - components: - - type: Transform - pos: -3.5,-57.5 - parent: 2 - - uid: 11037 - components: - - type: Transform - pos: 52.5,-51.5 - parent: 2 - - uid: 11038 - components: - - type: Transform - pos: -78.5,10.5 - parent: 2 - - uid: 11039 - components: - - type: Transform - pos: -78.5,-5.5 - parent: 2 - - uid: 11040 - components: - - type: Transform - pos: 45.5,11.5 - parent: 2 - - uid: 11041 - components: - - type: Transform - pos: 33.5,1.5 - parent: 2 - - uid: 11043 - components: - - type: Transform - pos: -16.5,6.5 - parent: 2 - - uid: 13617 - components: - - type: Transform - pos: 11.5,8.5 - parent: 2 - - uid: 19398 - components: - - type: Transform - pos: 78.5,8.5 - parent: 2 - - uid: 20352 - components: - - type: Transform - pos: -32.5,11.5 - parent: 2 - - uid: 20813 - components: - - type: Transform - pos: 26.5,24.5 - parent: 2 - - uid: 29427 - components: - - type: Transform - pos: 67.5,-21.5 - parent: 2 - - uid: 31340 - components: - - type: Transform - pos: 40.5,21.5 - parent: 2 - - uid: 31755 - components: - - type: Transform - pos: -47.5,-7.5 - parent: 2 -- proto: ClosetFireFilled - entities: - - uid: 3288 - components: - - type: Transform - pos: -31.5,11.5 - parent: 2 - - uid: 9408 - components: - - type: Transform - pos: 31.5,-54.5 - parent: 2 - - uid: 11044 - components: - - type: Transform - pos: -75.5,8.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11045 - components: - - type: Transform - pos: 7.5,-9.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11047 - components: - - type: Transform - pos: -72.5,-3.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11048 - components: - - type: Transform - pos: -3.5,-55.5 - parent: 2 - - uid: 11050 - components: - - type: Transform - pos: 50.5,-30.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11052 - components: - - type: Transform - pos: 86.5,-50.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11053 - components: - - type: Transform - pos: 86.5,-32.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11054 - components: - - type: Transform - pos: 7.5,-40.5 - parent: 2 - - uid: 11056 - components: - - type: Transform - pos: 80.5,-54.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11059 - components: - - type: Transform - pos: 1.5,-41.5 - parent: 2 - - uid: 15734 - components: - - type: Transform - pos: -47.5,-8.5 - parent: 2 - - uid: 19636 - components: - - type: Transform - pos: 65.5,-23.5 - parent: 2 - - uid: 23420 - components: - - type: Transform - pos: 71.5,-62.5 - parent: 2 - - uid: 24487 - components: - - type: Transform - pos: 25.5,24.5 - parent: 2 - - uid: 29423 - components: - - type: Transform - pos: 67.5,-23.5 - parent: 2 -- proto: ClosetJanitorFilled - entities: - - uid: 31687 - components: - - type: Transform - pos: -36.5,-6.5 - parent: 2 - - uid: 31689 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 2 -- proto: ClosetL3JanitorFilled - entities: - - uid: 6385 - components: - - type: Transform - pos: -36.5,-7.5 - parent: 2 -- proto: ClosetL3ScienceFilled - entities: - - uid: 11062 - components: - - type: Transform - pos: 72.5,-54.5 - parent: 2 - - uid: 11944 - components: - - type: Transform - pos: 75.5,-29.5 - parent: 2 -- proto: ClosetL3VirologyFilled - entities: - - uid: 11065 - components: - - type: Transform - pos: 34.5,-49.5 - parent: 2 - - uid: 11066 - components: - - type: Transform - pos: 34.5,-48.5 - parent: 2 - - uid: 11067 - components: - - type: Transform - pos: 40.5,-60.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11068 - components: - - type: Transform - pos: 41.5,-52.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11069 - components: - - type: Transform - pos: 41.5,-53.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 5604 - components: - - type: Transform - pos: 77.5,-24.5 - parent: 2 - - uid: 9398 - components: - - type: Transform - pos: 31.5,-53.5 - parent: 2 - - uid: 11070 - components: - - type: Transform - pos: 51.5,8.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 2.146141 - - 8.073578 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11071 - components: - - type: Transform - pos: 42.5,9.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11074 - components: - - type: Transform - pos: -48.5,2.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11075 - components: - - type: Transform - pos: -46.5,15.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11076 - components: - - type: Transform - pos: -56.5,-20.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11077 - components: - - type: Transform - pos: -43.5,-15.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11078 - components: - - type: Transform - pos: -36.5,-46.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11079 - components: - - type: Transform - pos: -32.5,-47.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11080 - components: - - type: Transform - pos: -18.5,-66.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11081 - components: - - type: Transform - pos: -29.5,-43.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11082 - components: - - type: Transform - pos: 55.5,-43.5 - parent: 2 - - uid: 11083 - components: - - type: Transform - pos: -3.5,-49.5 - parent: 2 - - uid: 11084 - components: - - type: Transform - pos: 41.5,-62.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11085 - components: - - type: Transform - pos: 32.5,-60.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11086 - components: - - type: Transform - pos: 82.5,-61.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11087 - components: - - type: Transform - pos: 84.5,-59.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11088 - components: - - type: Transform - pos: 68.5,-57.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11090 - components: - - type: Transform - pos: 15.5,-36.5 - parent: 2 - - uid: 11780 - components: - - type: Transform - pos: -47.5,-4.5 - parent: 2 - - uid: 19403 - components: - - type: Transform - pos: 76.5,3.5 - parent: 2 - - uid: 21616 - components: - - type: Transform - pos: -30.5,11.5 - parent: 2 - - uid: 21759 - components: - - type: Transform - pos: -24.5,9.5 - parent: 2 - - uid: 21979 - components: - - type: Transform - pos: 20.5,24.5 - parent: 2 - - uid: 22858 - components: - - type: Transform - pos: 23.5,-40.5 - parent: 2 - - uid: 29822 - components: - - type: Transform - pos: -49.5,-29.5 - parent: 2 - - uid: 31766 - components: - - type: Transform - pos: -47.5,-5.5 - parent: 2 -- proto: ClosetPatologoanatomFilled - entities: - - uid: 24953 - components: - - type: Transform - pos: 46.5,-24.5 - parent: 2 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 8692 - components: - - type: Transform - pos: 10.5,-91.5 - parent: 2 - - uid: 11091 - components: - - type: Transform - pos: 34.5,-46.5 - parent: 2 - - uid: 11092 - components: - - type: Transform - pos: 79.5,-54.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11095 - components: - - type: Transform - pos: -21.5,-49.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11097 - components: - - type: Transform - pos: 7.5,-72.5 - parent: 2 - - uid: 11098 - components: - - type: Transform - pos: 6.5,-72.5 - parent: 2 - - uid: 11099 - components: - - type: Transform - pos: 5.5,-72.5 - parent: 2 - - uid: 11100 - components: - - type: Transform - pos: 34.5,-45.5 - parent: 2 - - uid: 14335 - components: - - type: Transform - pos: 10.5,-90.5 - parent: 2 - - uid: 17707 - components: - - type: Transform - pos: 70.5,-47.5 - parent: 2 - - uid: 17745 - components: - - type: Transform - pos: 70.5,-46.5 - parent: 2 - - uid: 25120 - components: - - type: Transform - pos: -9.5,-76.5 - parent: 2 -- proto: ClosetSteelBase - entities: - - uid: 8398 - components: - - type: Transform - pos: 27.5,24.5 - parent: 2 - - uid: 11104 - components: - - type: Transform - pos: -52.5,3.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 2.146141 - - 8.073578 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11112 - components: - - type: Transform - pos: -20.5,-49.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11113 - components: - - type: Transform - pos: 88.5,-31.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetToolFilled - entities: - - uid: 11114 - components: - - type: Transform - pos: -67.5,18.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11116 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11117 - components: - - type: Transform - pos: -3.5,-41.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11118 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetWall - entities: - - uid: 23445 - components: - - type: Transform - pos: 76.5,-56.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14703 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11629 - - 11631 - - 11640 - - 11637 - - 11633 - - 11639 - - 11638 - - 11634 - - 11620 - - 11617 - - 11641 - - 11632 - - 11635 - - 11636 - - 11627 - - 11630 - - 11623 - - 11624 - - 11625 - - 11619 - - 11618 - - 11626 - - 11642 - - 11621 - - 11622 - - 11628 -- proto: ClothingBackpackDuffelCaptain - entities: - - uid: 11120 - components: - - type: Transform - pos: 11.55546,-27.188734 - parent: 2 -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 11121 - components: - - type: Transform - pos: 20.479462,-33.434387 - parent: 2 - - uid: 11122 - components: - - type: Transform - pos: 20.4915,-33.699135 - parent: 2 -- proto: ClothingBackpackDuffelSyndicate - entities: - - uid: 30846 - components: - - type: Transform - pos: -38.44586,-54.427544 - parent: 2 - - type: UseDelay - delays: - default: - endTime: 0 - startTime: 0 - length: 0.5 - quickInsert: - endTime: 0 - startTime: 0 - length: 0.5 - storage: - endTime: 0 - startTime: 0 - length: 0 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]90%[/color]. - priority: 0 - component: Armor - title: null - missingComponents: - - ClothingSpeedModifier -- proto: ClothingBackpackSatchelCaptain - entities: - - uid: 22834 - components: - - type: Transform - parent: 21940 - - type: Physics - canCollide: False -- proto: ClothingBeltMedicalFilled - entities: - - uid: 11124 - components: - - type: Transform - pos: 32.418835,-16.350964 - parent: 2 - - uid: 11125 - components: - - type: Transform - pos: 32.575085,-16.460339 - parent: 2 -- proto: ClothingBeltPlantFilled - entities: - - uid: 31078 - components: - - type: Transform - pos: -31.456066,-74.50975 - parent: 2 -- proto: ClothingBeltUtility - entities: - - uid: 11133 - components: - - type: Transform - pos: -34.5,-60.5 - parent: 2 - - uid: 11134 - components: - - type: Transform - pos: -18.5,-64.5 - parent: 2 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 14 - components: - - type: Transform - pos: 59.545135,-33.38405 - parent: 2 - - uid: 6789 - components: - - type: Transform - pos: 74.678925,-19.699236 - parent: 2 - - uid: 11141 - components: - - type: Transform - pos: 59.514236,-21.238972 - parent: 2 - - uid: 16758 - components: - - type: Transform - pos: 75.514915,-30.46709 - parent: 2 - - uid: 16759 - components: - - type: Transform - pos: 75.514915,-31.388966 - parent: 2 - - uid: 16760 - components: - - type: Transform - pos: 75.514915,-30.951466 - parent: 2 - - uid: 27043 - components: - - type: Transform - pos: -21.473618,1.553294 - parent: 2 -- proto: ClothingEyesBlindfold - entities: - - uid: 30173 - components: - - type: Transform - pos: 28.042704,34.76687 - parent: 2 - - uid: 30174 - components: - - type: Transform - pos: 29.573954,34.376244 - parent: 2 -- proto: ClothingEyesGlasses - entities: - - uid: 11144 - components: - - type: Transform - pos: 33.436237,-27.366598 - parent: 2 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 2330 - components: - - type: Transform - pos: 59.564823,-19.309088 - parent: 2 - - uid: 11149 - components: - - type: Transform - pos: -5.5,-39.5 - parent: 2 - - uid: 11174 - components: - - type: Transform - pos: 72.79556,-29.342335 - parent: 2 - - uid: 11176 - components: - - type: Transform - pos: 69.48306,-40.21254 - parent: 2 - - uid: 11221 - components: - - type: Transform - pos: 74.57681,-20.457779 - parent: 2 - - uid: 11232 - components: - - type: Transform - pos: 56.97748,-24.246588 - parent: 2 - - uid: 11280 - components: - - type: Transform - pos: 72.84218,-16.512213 - parent: 2 - - uid: 27065 - components: - - type: Transform - pos: 59.533573,-21.574713 - parent: 2 -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 22780 - components: - - type: Transform - parent: 21940 - - type: Physics - canCollide: False -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 23206 - components: - - type: Transform - parent: 22898 - - type: Physics - canCollide: False - - uid: 23625 - components: - - type: Transform - parent: 23597 - - type: Physics - canCollide: False - - uid: 29801 - components: - - type: Transform - pos: -6.5281334,16.063524 - parent: 2 -- proto: ClothingEyesGlassesWelding - entities: - - uid: 27136 - components: - - type: Transform - pos: 60.49614,-37.454224 - parent: 2 -- proto: ClothingEyesHudMedical - entities: - - uid: 7033 - components: - - type: Transform - pos: 35.534573,-40.55233 - parent: 2 - - uid: 11155 - components: - - type: Transform - pos: 32.450085,-18.288464 - parent: 2 - - uid: 11156 - components: - - type: Transform - pos: 32.606335,-18.475964 - parent: 2 -- proto: ClothingEyesNVDHandcrafted - entities: - - uid: 10553 - components: - - type: Transform - pos: 7.485292,-65.47697 - parent: 2 -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 11157 - components: - - type: Transform - pos: -57.5,16.5 - parent: 2 -- proto: ClothingHandsGlovesBoxingRed - entities: - - uid: 11160 - components: - - type: Transform - pos: -53.5,12.5 - parent: 2 -- proto: ClothingHandsGlovesColorBlack - entities: - - uid: 17122 - components: - - type: Transform - pos: -41.563946,-36.5 - parent: 2 - - uid: 17303 - components: - - type: Transform - pos: -41.605614,-36.5 - parent: 2 - - uid: 17304 - components: - - type: Transform - pos: -41.51302,-36.5 - parent: 2 - - uid: 18880 - components: - - type: Transform - pos: -41.475983,-36.5 - parent: 2 -- proto: ClothingHandsGlovesColorOrange - entities: - - uid: 11163 - components: - - type: Transform - pos: -17.662788,51.5307 - parent: 2 -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 1334 - components: - - type: MetaData - name: изaлиравонuи пирчятки - - type: Transform - pos: -42.484455,1.4750104 - parent: 2 - - uid: 11169 - components: - - type: Transform - pos: 46.5,13.5 - parent: 2 - - uid: 11171 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 2 - - uid: 11172 - components: - - type: Transform - pos: 47.523952,-66.32047 - parent: 2 -- proto: ClothingHandsGlovesCombat - entities: - - uid: 23518 - components: - - type: Transform - pos: 1.5489228,45.471283 - parent: 2 - - uid: 23519 - components: - - type: Transform - pos: 1.5020478,46.549408 - parent: 2 - - uid: 23563 - components: - - type: Transform - pos: 1.4864228,47.471283 - parent: 2 - - uid: 24292 - components: - - type: Transform - pos: 7.524452,-65.41837 - parent: 2 -- proto: ClothingHandsGlovesFingerless - entities: - - uid: 11177 - components: - - type: Transform - pos: 58.641335,-51.477516 - parent: 2 -- proto: ClothingHandsGlovesLatex - entities: - - uid: 11178 - components: - - type: Transform - pos: -20.97229,-9.394163 - parent: 2 - - uid: 11179 - components: - - type: Transform - pos: 65.479095,-75.77959 - parent: 2 - - uid: 22021 - components: - - type: Transform - pos: 18.563633,23.593307 - parent: 2 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 11181 - components: - - type: Transform - pos: 38.538353,-58.218132 - parent: 2 - - uid: 11182 - components: - - type: Transform - pos: 36.579914,-36.47853 - parent: 2 -- proto: ClothingHeadCaptainHat - entities: - - uid: 22065 - components: - - type: Transform - parent: 21940 - - type: Physics - canCollide: False -- proto: ClothingHeadHatAnimalHeadslime - entities: - - uid: 11185 - components: - - type: Transform - pos: 41.493343,-57.314545 - parent: 2 -- proto: ClothingHeadHatBeretHoS - entities: - - uid: 11189 - components: - - type: Transform - parent: 23597 - - type: Physics - canCollide: False -- proto: ClothingHeadHatBeretQM - entities: - - uid: 23185 - components: - - type: Transform - parent: 22898 - - type: Physics - canCollide: False -- proto: ClothingHeadHatBeretWarden - entities: - - uid: 11192 - components: - - type: Transform - pos: 3.2725,33.525177 - parent: 2 -- proto: ClothingHeadHatCardborg - entities: - - uid: 11195 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 2 -- proto: ClothingHeadHatCargosoft - entities: - - uid: 11196 - components: - - type: Transform - pos: -34.384808,-22.32279 - parent: 2 -- proto: ClothingHeadHatCasa - entities: - - uid: 10621 - components: - - type: Transform - pos: -54.728527,-7.0890064 - parent: 2 - - uid: 23268 - components: - - type: Transform - pos: -54.728527,-7.7556734 - parent: 2 - - uid: 31305 - components: - - type: Transform - pos: -54.756306,-8.269562 - parent: 2 - - uid: 31322 - components: - - type: Transform - pos: -54.367416,-7.450118 - parent: 2 -- proto: ClothingHeadHatCatEars - entities: - - uid: 22098 - components: - - type: Transform - pos: 6.4859548,1.4037223 - parent: 2 -- proto: ClothingHeadHatCatEarsValid - entities: - - uid: 26394 - components: - - type: Transform - pos: -0.42392585,-23.309486 - parent: 2 -- proto: ClothingHeadHatChef - entities: - - uid: 11197 - components: - - type: Transform - pos: 68.47937,-55.246544 - parent: 2 - - uid: 11198 - components: - - type: Transform - pos: 68.588745,-55.41842 - parent: 2 -- proto: ClothingHeadHatChickenhead - entities: - - uid: 11199 - components: - - type: Transform - pos: 58.5,19.5 - parent: 2 -- proto: ClothingHeadHatFlowerWreath - entities: - - uid: 11207 - components: - - type: Transform - pos: 11.85117,-27.623138 - parent: 2 - - uid: 19393 - components: - - type: Transform - pos: 67.51138,8.519504 - parent: 2 -- proto: ClothingHeadHatHoodCulthood - entities: - - uid: 30864 - components: - - type: Transform - pos: 70.317,26.606497 - parent: 2 - - uid: 30865 - components: - - type: Transform - pos: 70.22325,27.356497 - parent: 2 - - uid: 30866 - components: - - type: Transform - pos: 70.7545,27.387747 - parent: 2 - - uid: 30867 - components: - - type: Transform - pos: 70.692,26.840872 - parent: 2 - - uid: 30868 - components: - - type: Transform - pos: 70.45763,27.153372 - parent: 2 - - uid: 30869 - components: - - type: Transform - pos: 70.70763,27.653372 - parent: 2 -- proto: ClothingHeadHatOrangesoft - entities: - - uid: 11211 - components: - - type: Transform - pos: -17.569038,51.765076 - parent: 2 -- proto: ClothingHeadHatPirate - entities: - - uid: 11212 - components: - - type: Transform - pos: 57.890774,8.249944 - parent: 2 - - uid: 11213 - components: - - type: Transform - pos: 58.4689,8.515569 - parent: 2 - - uid: 11214 - components: - - type: Transform - pos: 58.25015,8.749944 - parent: 2 -- proto: ClothingHeadHatPumpkin - entities: - - uid: 11215 - components: - - type: Transform - pos: 42.526115,-2.6703405 - parent: 2 -- proto: ClothingHeadHatRichard - entities: - - uid: 20938 - components: - - type: Transform - pos: -28.565256,33.57617 - parent: 2 -- proto: ClothingHeadHatTophat - entities: - - uid: 11216 - components: - - type: Transform - pos: 24.365536,-2.4037786 - parent: 2 -- proto: ClothingHeadHatTrucker - entities: - - uid: 11217 - components: - - type: Transform - pos: 48.617844,1.5353565 - parent: 2 -- proto: ClothingHeadHatUshanka - entities: - - uid: 11218 - components: - - type: Transform - pos: 62.38717,18.759663 - parent: 2 - - uid: 11219 - components: - - type: Transform - pos: 62.527794,18.509663 - parent: 2 -- proto: ClothingHeadHatWelding - entities: - - uid: 27044 - components: - - type: Transform - pos: -21.473618,1.631419 - parent: 2 -- proto: ClothingHeadHatWeldingMaskFlame - entities: - - uid: 11222 - components: - - type: Transform - pos: -36.50452,-64.51913 - parent: 2 - - uid: 22278 - components: - - type: Transform - pos: 54.518936,-18.200283 - parent: 2 -- proto: ClothingHeadHatWeldingMaskFlameBlue - entities: - - uid: 22279 - components: - - type: Transform - pos: 54.78456,-18.512783 - parent: 2 -- proto: ClothingHeadHatWeldingMaskPainted - entities: - - uid: 11225 - components: - - type: Transform - pos: -56.61541,13.4948435 - parent: 2 - - uid: 16761 - components: - - type: Transform - pos: 54.28456,-18.512783 - parent: 2 -- proto: ClothingHeadHelmetERTJanitor - entities: - - uid: 31751 - components: - - type: Transform - pos: -38.5,-8.5 - parent: 2 -- proto: ClothingHeadHelmetEVA - entities: - - uid: 11228 - components: - - type: Transform - pos: 67.37002,-85.59384 - parent: 2 - - uid: 11229 - components: - - type: Transform - pos: -65.5,18.5 - parent: 2 -- proto: ClothingHeadHelmetPubg - entities: - - uid: 23453 - components: - - type: Transform - pos: 1.5167584,45.741714 - parent: 2 - - uid: 23516 - components: - - type: Transform - pos: 1.4855083,46.81984 - parent: 2 - - uid: 23517 - components: - - type: Transform - pos: 1.4855083,47.835464 - parent: 2 -- proto: ClothingHeadHelmetRiot - entities: - - uid: 24697 - components: - - type: Transform - pos: -2.674583,35.624794 - parent: 2 - - uid: 24698 - components: - - type: Transform - pos: -2.440208,35.82792 - parent: 2 - - uid: 24702 - components: - - type: Transform - pos: -2.221458,35.57792 - parent: 2 - - uid: 25368 - components: - - type: Transform - pos: -1.8358262,47.636414 - parent: 2 - - uid: 25369 - components: - - type: Transform - pos: -1.4608262,47.823914 - parent: 2 - - uid: 25370 - components: - - type: Transform - pos: -1.2577012,47.636414 - parent: 2 -- proto: ClothingMaskBandBlack - entities: - - uid: 23621 - components: - - type: Transform - parent: 23597 - - type: Physics - canCollide: False -- proto: ClothingMaskBandGrey - entities: - - uid: 24575 - components: - - type: MetaData - name: серебряная бандана - - type: Transform - pos: 1.7121983,-22.86196 - parent: 2 -- proto: ClothingMaskBlushingClown - entities: - - uid: 11263 - components: - - type: Transform - pos: 31.523987,21.564238 - parent: 2 -- proto: ClothingMaskBreath - entities: - - uid: 11234 - components: - - type: Transform - pos: 86.50333,-55.516068 - parent: 2 - - uid: 11235 - components: - - type: Transform - pos: -65.5,18.5 - parent: 2 - - uid: 11236 - components: - - type: Transform - pos: -52.5,-13.5 - parent: 2 - - uid: 11237 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 2 - - uid: 11238 - components: - - type: Transform - pos: 65.5,-52.5 - parent: 2 - - uid: 11239 - components: - - type: Transform - pos: 65.5,-52.5 - parent: 2 - - uid: 11240 - components: - - type: Transform - pos: 65.5,-52.5 - parent: 2 - - uid: 19202 - components: - - type: Transform - pos: -11.554457,37.551895 - parent: 2 - - uid: 30177 - components: - - type: Transform - pos: 19.890045,-34.571144 - parent: 2 - - uid: 30178 - components: - - type: Transform - pos: 20.390045,-34.321144 - parent: 2 - - uid: 30179 - components: - - type: Transform - pos: 20.358795,-34.571144 - parent: 2 - - uid: 30180 - components: - - type: Transform - pos: 28.83677,34.739067 - parent: 2 -- proto: ClothingMaskBreathMedical - entities: - - uid: 11245 - components: - - type: Transform - pos: 63.664223,12.6749115 - parent: 2 -- proto: ClothingMaskClown - entities: - - uid: 11246 - components: - - type: Transform - pos: 78.493546,-16.32064 - parent: 2 - - uid: 11247 - components: - - type: Transform - pos: 55.5,17.5 - parent: 2 -- proto: ClothingMaskGas - entities: - - uid: 11249 - components: - - type: Transform - pos: 36.538406,-46.513817 - parent: 2 - - uid: 11250 - components: - - type: Transform - pos: 31.49855,19.654055 - parent: 2 - - uid: 11251 - components: - - type: Transform - pos: 36.382156,-46.513817 - parent: 2 - - uid: 11252 - components: - - type: Transform - pos: 3.5386043,-57.543 - parent: 2 - - uid: 11253 - components: - - type: Transform - pos: 3.4292293,-55.371124 - parent: 2 - - uid: 11254 - components: - - type: Transform - pos: 3.4136043,-57.371124 - parent: 2 - - uid: 11255 - components: - - type: Transform - pos: 3.5542293,-55.4805 - parent: 2 - - uid: 23223 - components: - - type: Transform - parent: 22898 - - type: DiseaseImmuneClothing - isActive: True - - type: Physics - canCollide: False -- proto: ClothingMaskGasAtmos - entities: - - uid: 11257 - components: - - type: Transform - pos: 44.61569,-40.409645 - parent: 2 - - uid: 11258 - components: - - type: Transform - pos: -44.458595,14.399037 - parent: 2 - - uid: 24291 - components: - - type: Transform - pos: 7.524452,-65.3715 - parent: 2 - - uid: 29421 - components: - - type: Transform - pos: 84.34521,-48.37696 - parent: 2 -- proto: ClothingMaskGasCaptain - entities: - - uid: 22268 - components: - - type: Transform - parent: 21940 - - type: DiseaseImmuneClothing - isActive: True - - type: Physics - canCollide: False -- proto: ClothingMaskGasSwat - entities: - - uid: 23174 - components: - - type: Transform - pos: 1.4762787,47.654213 - parent: 2 - - uid: 23197 - components: - - type: Transform - pos: 1.4606537,46.654213 - parent: 2 - - uid: 23346 - components: - - type: Transform - pos: 1.4919037,45.701088 - parent: 2 -- proto: ClothingMaskJackal - entities: - - uid: 10101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.454247,-73.3839 - parent: 2 - - uid: 10996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.77832,-73.4302 - parent: 2 -- proto: ClothingMaskMime - entities: - - uid: 11262 - components: - - type: Transform - pos: 33.424698,15.322541 - parent: 2 -- proto: ClothingMaskMuzzle - entities: - - uid: 870 - components: - - type: Transform - pos: 6.3824825,-33.45793 - parent: 2 - - uid: 4274 - components: - - type: Transform - pos: -11.488647,37.583054 - parent: 2 - - uid: 6695 - components: - - type: Transform - pos: 6.6637325,-33.45793 - parent: 2 - - uid: 12146 - components: - - type: Transform - pos: 6.5231075,-33.286057 - parent: 2 - - uid: 30171 - components: - - type: Transform - pos: 28.777079,34.501244 - parent: 2 - - uid: 30172 - components: - - type: Transform - pos: 29.027079,34.626244 - parent: 2 -- proto: ClothingMaskSterile - entities: - - uid: 11264 - components: - - type: Transform - pos: 65.51579,-76.14651 - parent: 2 - - uid: 11266 - components: - - type: Transform - pos: 38.5,-58.5 - parent: 2 - - uid: 26247 - components: - - type: Transform - pos: 47.59933,-24.189337 - parent: 2 -- proto: ClothingNeckCloakCapFormal - entities: - - uid: 22066 - components: - - type: Transform - parent: 21940 - - type: Physics - canCollide: False -- proto: ClothingNeckCloakMiner - entities: - - uid: 31765 - components: - - type: Transform - pos: 46.5,-79.5 - parent: 2 -- proto: ClothingNeckCloakQm - entities: - - uid: 23226 - components: - - type: Transform - parent: 22898 - - type: Physics - canCollide: False -- proto: ClothingNeckCloakTrans - entities: - - uid: 23932 - components: - - type: Transform - pos: 5.1788826,9.594824 - parent: 2 -- proto: ClothingNeckGoldAutismPin - entities: - - uid: 24514 - components: - - type: Transform - pos: -2.5308573,-23.507792 - parent: 2 -- proto: ClothingNeckHeadphones - entities: - - uid: 18881 - components: - - type: Transform - pos: 12.443378,25.48122 - parent: 2 - - uid: 23729 - components: - - type: Transform - pos: 12.614675,25.578442 - parent: 2 - - uid: 29012 - components: - - type: Transform - pos: 12.526711,25.698812 - parent: 2 -- proto: ClothingNeckMantleRD - entities: - - uid: 9884 - components: - - type: Transform - pos: 59.526417,-35.47621 - parent: 2 -- proto: ClothingNeckScarfStripedBlue - entities: - - uid: 11270 - components: - - type: Transform - pos: 85.45761,-55.497726 - parent: 2 -- proto: ClothingNeckScarfStripedGreen - entities: - - uid: 11271 - components: - - type: Transform - pos: 39.53401,11.65906 - parent: 2 -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 11272 - components: - - type: Transform - pos: 4.459541,12.414446 - parent: 2 - - uid: 11273 - components: - - type: Transform - pos: -38.611267,-58.59867 - parent: 2 -- proto: ClothingNeckStethoscope - entities: - - uid: 11274 - components: - - type: Transform - pos: 63.304848,12.495255 - parent: 2 -- proto: ClothingNeckStoleChaplain - entities: - - uid: 11275 - components: - - type: Transform - pos: 67.49686,-2.3915076 - parent: 2 -- proto: ClothingNeckTieRed - entities: - - uid: 11276 - components: - - type: Transform - pos: 45.295048,-62.737274 - parent: 2 -- proto: ClothingOuterAerostaticBomberJacket - entities: - - uid: 30340 - components: - - type: Transform - pos: -28.525536,32.955917 - parent: 2 -- proto: ClothingOuterArmorBasicSlim - entities: - - uid: 30427 - components: - - type: Transform - pos: -38.471497,33.4944 - parent: 2 -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 23754 - components: - - type: Transform - pos: 1.531724,45.51941 - parent: 2 - - uid: 24675 - components: - - type: Transform - pos: -0.721458,35.51542 - parent: 2 - - uid: 24687 - components: - - type: Transform - pos: -0.549583,35.687294 - parent: 2 - - uid: 24696 - components: - - type: Transform - pos: -0.44020802,35.531044 - parent: 2 - - uid: 26140 - components: - - type: Transform - pos: 1.484849,46.64441 - parent: 2 - - uid: 26152 - components: - - type: Transform - pos: 1.562974,47.597534 - parent: 2 -- proto: ClothingOuterArmorReflective - entities: - - uid: 11293 - components: - - type: Transform - pos: -1.4729444,35.550316 - parent: 2 - - uid: 30303 - components: - - type: Transform - pos: -1.480144,35.434174 - parent: 2 -- proto: ClothingOuterArmorRiot - entities: - - uid: 24659 - components: - - type: Transform - pos: -2.596458,35.42167 - parent: 2 - - uid: 24664 - components: - - type: Transform - pos: -2.440208,35.593544 - parent: 2 - - uid: 24668 - components: - - type: Transform - pos: -2.315208,35.374794 - parent: 2 - - uid: 25365 - components: - - type: Transform - pos: -1.6795762,47.449417 - parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: Понижает вашу скорость на [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]60%[/color]. - - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]60%[/color]. - - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null - - uid: 25366 - components: - - type: Transform - pos: -1.4295762,47.621292 - parent: 2 - - uid: 25367 - components: - - type: Transform - pos: -1.3202012,47.433792 - parent: 2 -- proto: ClothingOuterCardborg - entities: - - uid: 11296 - components: - - type: Transform - pos: -32.5,-10.5 - parent: 2 -- proto: ClothingOuterCoatBomber - entities: - - uid: 11297 - components: - - type: Transform - pos: -46.493744,14.462048 - parent: 2 -- proto: ClothingOuterCoatCaptain - entities: - - uid: 22426 - components: - - type: Transform - parent: 21940 - - type: Physics - canCollide: False -- proto: ClothingOuterCoatDetectiveLoadout - entities: - - uid: 11298 - components: - - type: Transform - pos: 84.488655,-42.55825 - parent: 2 - - uid: 11299 - components: - - type: Transform - pos: 45.44214,-62.516068 - parent: 2 -- proto: ClothingOuterCoatHoSGreatcoat - entities: - - uid: 11300 - components: - - type: Transform - parent: 23597 - - type: Physics - canCollide: False -- proto: ClothingOuterCoatPirate - entities: - - uid: 11301 - components: - - type: Transform - pos: 57.9064,7.9061937 - parent: 2 - - uid: 11302 - components: - - type: Transform - pos: 58.514145,8.160378 - parent: 2 - - uid: 11303 - components: - - type: Transform - pos: 58.27977,8.379128 - parent: 2 -- proto: ClothingOuterHardsuitEVA - entities: - - uid: 11304 - components: - - type: Transform - pos: 67.4434,-86.0011 - parent: 2 - - uid: 11305 - components: - - type: Transform - pos: -65.5,18.5 - parent: 2 -- proto: ClothingOuterRobesCult - entities: - - uid: 2407 - components: - - type: Transform - pos: 70.349915,27.092943 - parent: 2 - - uid: 30853 - components: - - type: Transform - pos: 70.42804,27.639818 - parent: 2 - - uid: 30854 - components: - - type: Transform - pos: 70.662415,27.452318 - parent: 2 - - uid: 30855 - components: - - type: Transform - pos: 70.74054,27.764818 - parent: 2 - - uid: 30856 - components: - - type: Transform - pos: 70.506165,26.702318 - parent: 2 - - uid: 30857 - components: - - type: Transform - pos: 70.74054,26.967943 - parent: 2 -- proto: ClothingOuterStraightjacket - entities: - - uid: 20918 - components: - - type: Transform - pos: 6.4918575,-33.254807 - parent: 2 - - uid: 21363 - components: - - type: Transform - pos: 6.3981075,-33.42668 - parent: 2 - - uid: 23842 - components: - - type: Transform - pos: -11.523207,37.801895 - parent: 2 - - uid: 29147 - components: - - type: Transform - pos: 6.6324825,-33.379807 - parent: 2 -- proto: ClothingOuterSuitFire - entities: - - uid: 11311 - components: - - type: Transform - pos: 86.54827,-55.38765 - parent: 2 -- proto: ClothingOuterSuitMonkey - entities: - - uid: 11312 - components: - - type: Transform - pos: 58.5,19.5 - parent: 2 -- proto: ClothingOuterVestHazard - entities: - - uid: 11313 - components: - - type: Transform - pos: -5.4336033,-45.463356 - parent: 2 - - uid: 11314 - components: - - type: Transform - pos: 3.5698543,-57.402374 - parent: 2 - - uid: 11315 - components: - - type: Transform - pos: 3.6323543,-55.32425 - parent: 2 -- proto: ClothingOuterWinterChef - entities: - - uid: 11317 - components: - - type: Transform - pos: 35.499954,-0.4574709 - parent: 2 -- proto: ClothingOuterWinterHoSUnarmored - entities: - - uid: 25701 - components: - - type: Transform - pos: 17.538925,45.352814 - parent: 2 -- proto: ClothingOuterWinterPara - entities: - - uid: 11318 - components: - - type: Transform - pos: 22.537373,-27.38887 - parent: 2 -- proto: ClothingOuterWinterQM - entities: - - uid: 23189 - components: - - type: Transform - parent: 22898 - - type: Physics - canCollide: False -- proto: ClothingShoesBootsCombat - entities: - - uid: 11320 - components: - - type: Transform - pos: 68.49056,16.310373 - parent: 2 -- proto: ClothingShoesBootsJack - entities: - - uid: 11322 - components: - - type: Transform - pos: 88.4803,-26.689615 - parent: 2 - - uid: 11323 - components: - - type: Transform - pos: -53.5,3.5 - parent: 2 - - uid: 11324 - components: - - type: Transform - pos: 66.72507,-80.41411 - parent: 2 - - uid: 25435 - components: - - type: Transform - pos: -57.48093,5.624298 - parent: 2 -- proto: ClothingShoesBootsMag - entities: - - uid: 11327 - components: - - type: Transform - pos: 67.186554,-87.60253 - parent: 2 - - uid: 11328 - components: - - type: Transform - pos: -21.494629,8.533683 - parent: 2 - - uid: 11329 - components: - - type: Transform - pos: -21.432129,8.439933 - parent: 2 - - uid: 17397 - components: - - type: Transform - pos: 69.51017,-40.522835 - parent: 2 -- proto: ClothingShoesClownLarge - entities: - - uid: 11331 - components: - - type: Transform - pos: 29.568142,21.53653 - parent: 2 -- proto: ClothingShoesCult - entities: - - uid: 30858 - components: - - type: Transform - pos: 70.26217,22.602575 - parent: 2 - - uid: 30860 - components: - - type: Transform - pos: 70.66842,22.71195 - parent: 2 - - uid: 30862 - components: - - type: Transform - pos: 70.29342,21.9307 - parent: 2 - - uid: 30863 - components: - - type: Transform - pos: 70.684044,22.040075 - parent: 2 - - uid: 30870 - components: - - type: Transform - pos: 70.44282,21.494064 - parent: 2 - - uid: 30871 - components: - - type: Transform - pos: 70.59907,22.306564 - parent: 2 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 11332 - components: - - type: Transform - pos: 45.466923,-63.487274 - parent: 2 -- proto: ClothingShoesSlippers - entities: - - uid: 11333 - components: - - type: Transform - pos: 54.483116,-49.66147 - parent: 2 -- proto: ClothingUnderSocksCoder - entities: - - uid: 11337 - components: - - type: Transform - pos: -38.47627,-56.748375 - parent: 2 -- proto: ClothingUniformJumpsuitCapFormal - entities: - - uid: 22075 - components: - - type: Transform - parent: 21940 - - type: Physics - canCollide: False -- proto: ClothingUniformJumpsuitClown - entities: - - uid: 11338 - components: - - type: Transform - pos: 29.570204,21.8854 - parent: 2 -- proto: ClothingUniformJumpsuitEngineeringHazard - entities: - - uid: 11339 - components: - - type: Transform - pos: 3.5698543,-57.464874 - parent: 2 - - uid: 11340 - components: - - type: Transform - pos: 3.6011043,-55.402374 - parent: 2 -- proto: ClothingUniformJumpsuitHoS - entities: - - uid: 23606 - components: - - type: Transform - parent: 23597 - - type: DeviceNetwork - address: 1B23-9DAA - transmitFrequency: 1262 - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Physics - canCollide: False - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 23620 -- proto: ClothingUniformJumpsuitJester - entities: - - uid: 11341 - components: - - type: Transform - pos: 29.492079,22.88833 - parent: 2 -- proto: ClothingUniformJumpsuitQMFormal - entities: - - uid: 22904 - components: - - type: Transform - parent: 22898 - - type: Physics - canCollide: False -- proto: ClothingUniformJumpsuitReporter - entities: - - uid: 6391 - components: - - type: Transform - pos: 27.31728,21.475138 - parent: 2 - - uid: 6559 - components: - - type: Transform - pos: 27.457905,21.475138 - parent: 2 -- proto: ClusterBangFull - entities: - - uid: 11343 - components: - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11344 - components: - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Coal5 - entities: - - uid: 10567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.550713,-73.410805 - parent: 2 - - uid: 31319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.967377,-73.4571 - parent: 2 -- proto: Cobweb1 - entities: - - uid: 3471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-57.5 - parent: 2 - - uid: 5639 - components: - - type: Transform - pos: 79.5,-57.5 - parent: 2 - - uid: 11362 - components: - - type: Transform - pos: 32.5,-62.5 - parent: 2 - - uid: 11363 - components: - - type: Transform - pos: 15.5,-34.5 - parent: 2 - - uid: 11365 - components: - - type: Transform - pos: 51.5,-43.5 - parent: 2 - - uid: 11366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-70.5 - parent: 2 - - uid: 11367 - components: - - type: Transform - pos: 84.5,-35.5 - parent: 2 - - uid: 11368 - components: - - type: Transform - pos: 47.5,-62.5 - parent: 2 - - uid: 11370 - components: - - type: Transform - pos: 84.5,-55.5 - parent: 2 - - uid: 11371 - components: - - type: Transform - pos: 64.5,19.5 - parent: 2 - - uid: 11373 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 - - uid: 11374 - components: - - type: Transform - pos: 46.5,16.5 - parent: 2 - - uid: 17841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-58.5 - parent: 2 - - uid: 17847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-58.5 - parent: 2 - - uid: 18366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-57.5 - parent: 2 - - uid: 18780 - components: - - type: Transform - pos: 80.5,-56.5 - parent: 2 - - uid: 20233 - components: - - type: Transform - pos: 76.5,-57.5 - parent: 2 - - uid: 22496 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-40.5 - parent: 2 - - uid: 22497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-41.5 - parent: 2 - - uid: 22636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-38.5 - parent: 2 - - uid: 23266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-8.5 - parent: 2 - - uid: 30366 - components: - - type: Transform - pos: -37.5,46.5 - parent: 2 - - uid: 30722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,32.5 - parent: 2 - - uid: 30742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,33.5 - parent: 2 - - uid: 31623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-72.5 - parent: 2 - - uid: 31624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-71.5 - parent: 2 - - uid: 31636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-80.5 - parent: 2 - - uid: 31637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-79.5 - parent: 2 - - uid: 31638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-75.5 - parent: 2 - - uid: 31641 - components: - - type: Transform - pos: 63.5,-70.5 - parent: 2 - - uid: 31642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-70.5 - parent: 2 -- proto: Cobweb2 - entities: - - uid: 9409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-38.5 - parent: 2 - - uid: 10019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-39.5 - parent: 2 - - uid: 11375 - components: - - type: Transform - pos: 32.5,-38.5 - parent: 2 - - uid: 11376 - components: - - type: Transform - pos: 70.5,-55.5 - parent: 2 - - uid: 11378 - components: - - type: Transform - pos: 86.5,-34.5 - parent: 2 - - uid: 11379 - components: - - type: Transform - pos: 47.5,-70.5 - parent: 2 - - uid: 11380 - components: - - type: Transform - pos: 71.5,-59.5 - parent: 2 - - uid: 11381 - components: - - type: Transform - pos: 70.5,-55.5 - parent: 2 - - uid: 11382 - components: - - type: Transform - pos: 86.5,-40.5 - parent: 2 - - uid: 11383 - components: - - type: Transform - pos: 86.5,-21.5 - parent: 2 - - uid: 11384 - components: - - type: Transform - pos: 70.5,19.5 - parent: 2 - - uid: 11385 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 22501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-38.5 - parent: 2 - - uid: 30368 - components: - - type: Transform - pos: -34.5,46.5 - parent: 2 - - uid: 30744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,35.5 - parent: 2 - - uid: 30745 - components: - - type: Transform - pos: -35.5,35.5 - parent: 2 - - uid: 30746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,33.5 - parent: 2 - - uid: 30926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,23.5 - parent: 2 - - uid: 30927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,26.5 - parent: 2 - - uid: 30928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,26.5 - parent: 2 - - uid: 30929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,25.5 - parent: 2 - - uid: 30930 - components: - - type: Transform - pos: 59.5,22.5 - parent: 2 - - uid: 31625 - components: - - type: Transform - pos: 57.5,-70.5 - parent: 2 - - uid: 31626 - components: - - type: Transform - pos: 54.5,-73.5 - parent: 2 - - uid: 31627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-73.5 - parent: 2 - - uid: 31628 - components: - - type: Transform - pos: 50.5,-71.5 - parent: 2 - - uid: 31629 - components: - - type: Transform - pos: 61.5,-79.5 - parent: 2 - - uid: 31630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-78.5 - parent: 2 - - uid: 31631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-78.5 - parent: 2 - - uid: 31632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-79.5 - parent: 2 - - uid: 31635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-80.5 - parent: 2 - - uid: 31639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-73.5 - parent: 2 - - uid: 31640 - components: - - type: Transform - pos: 63.5,-68.5 - parent: 2 -- proto: CockroachTimedSpawner - entities: - - uid: 11386 - components: - - type: Transform - pos: 86.5,-34.5 - parent: 2 -- proto: CombatKnife - entities: - - uid: 6698 - components: - - type: Transform - pos: 10.434848,30.597757 - parent: 2 - - uid: 11167 - components: - - type: Transform - pos: 10.606723,30.597757 - parent: 2 - - uid: 30169 - components: - - type: Transform - pos: 28.355976,34.570107 - parent: 2 -- proto: ComfyBrownChair - entities: - - uid: 5261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-28.5 - parent: 2 - - uid: 5287 - components: - - type: Transform - pos: 81.5,-26.5 - parent: 2 - - uid: 5376 - components: - - type: Transform - pos: 80.5,-26.5 - parent: 2 - - uid: 5414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-27.5 - parent: 2 - - uid: 5702 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-29.5 - parent: 2 - - uid: 5843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-29.5 - parent: 2 - - uid: 11390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-10.5 - parent: 2 - - uid: 11396 - components: - - type: Transform - pos: 18.5,-8.5 - parent: 2 - - uid: 11397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-10.5 - parent: 2 - - uid: 11398 - components: - - type: Transform - pos: 19.5,-8.5 - parent: 2 - - uid: 17974 - components: - - type: Transform - pos: 15.5,37.5 - parent: 2 - - uid: 22686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-40.5 - parent: 2 - - uid: 22701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-40.5 - parent: 2 - - uid: 29836 - components: - - type: Transform - pos: -58.5,-28.5 - parent: 2 -- proto: ComfyChair - entities: - - uid: 226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,15.5 - parent: 2 - - uid: 589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,4.5 - parent: 2 - - uid: 1251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-16.5 - parent: 2 - - uid: 1254 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 2 - - uid: 9229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 2 - - uid: 9233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 2 - - uid: 11401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,15.5 - parent: 2 - - uid: 11402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-55.5 - parent: 2 - - uid: 11403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 2 - - uid: 11404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-11.5 - parent: 2 - - uid: 11405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 2 - - uid: 11408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-17.5 - parent: 2 - - uid: 11410 - components: - - type: Transform - pos: 69.5,-2.5 - parent: 2 - - uid: 11411 - components: - - type: Transform - pos: 69.5,-2.5 - parent: 2 - - uid: 11412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-12.5 - parent: 2 - - uid: 11414 - components: - - type: Transform - pos: 11.5,15.5 - parent: 2 - - uid: 11417 - components: - - type: Transform - pos: 11.5,36.5 - parent: 2 - - uid: 11419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,13.5 - parent: 2 - - uid: 11420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-10.5 - parent: 2 - - uid: 11421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-10.5 - parent: 2 - - uid: 11422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,14.5 - parent: 2 - - uid: 11423 - components: - - type: Transform - pos: -61.5,-0.5 - parent: 2 - - uid: 11424 - components: - - type: Transform - pos: -60.5,-0.5 - parent: 2 - - uid: 11426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-3.5 - parent: 2 - - uid: 11427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-1.5 - parent: 2 - - uid: 11428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-2.5 - parent: 2 - - uid: 11429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-17.5 - parent: 2 - - uid: 11430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-57.5 - parent: 2 - - uid: 11431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-36.5 - parent: 2 - - uid: 11432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-54.5 - parent: 2 - - uid: 11433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-57.5 - parent: 2 - - uid: 11434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-54.5 - parent: 2 - - uid: 11435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-55.5 - parent: 2 - - uid: 11436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-56.5 - parent: 2 - - uid: 11437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-34.5 - parent: 2 - - uid: 11438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,41.5 - parent: 2 - - uid: 11439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-56.5 - parent: 2 - - uid: 11440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,40.5 - parent: 2 - - uid: 11441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,40.5 - parent: 2 - - uid: 11442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,41.5 - parent: 2 - - uid: 11443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-21.5 - parent: 2 - - uid: 11447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-10.5 - parent: 2 - - uid: 11448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-10.5 - parent: 2 - - uid: 11449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-4.5 - parent: 2 - - uid: 13215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 2 - - uid: 13216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-17.5 - parent: 2 - - uid: 15891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,22.5 - parent: 2 - - uid: 20596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 2 - - uid: 24545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,18.5 - parent: 2 - - uid: 28796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,19.5 - parent: 2 - - uid: 29006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,19.5 - parent: 2 - - uid: 29758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-3.5 - parent: 2 - - uid: 31351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,18.5 - parent: 2 -- proto: CommandmentCircuitBoard - entities: - - uid: 20241 - components: - - type: Transform - parent: 19293 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CommsComputerCircuitboard - entities: - - uid: 11450 - components: - - type: Transform - pos: -13.487051,-36.526093 - parent: 2 -- proto: ComputeCargoSalaryConsole - entities: - - uid: 13807 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-16.5 - parent: 2 - - uid: 21060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 2 -- proto: ComputerAlert - entities: - - uid: 13508 - components: - - type: Transform - pos: 6.5,-65.5 - parent: 2 - - uid: 21818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-49.5 - parent: 2 -- proto: ComputerAnalysisConsole - entities: - - uid: 5247 - components: - - type: Transform - pos: 73.5,-39.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 9766: - - - ArtifactAnalyzerSender - - ArtifactAnalyzerReceiver - - uid: 12878 - components: - - type: Transform - pos: 71.5,-39.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12017: - - - ArtifactAnalyzerSender - - ArtifactAnalyzerReceiver -- proto: ComputerAtmosMonitoring - entities: - - uid: 17030 - components: - - type: Transform - pos: 4.5,-46.5 - parent: 2 -- proto: computerBodyScanner - entities: - - uid: 11457 - components: - - type: Transform - pos: 18.5,-32.5 - parent: 2 - - uid: 11458 - components: - - type: Transform - pos: 22.5,-32.5 - parent: 2 - - uid: 11459 - components: - - type: Transform - pos: 46.5,-22.5 - parent: 2 - - uid: 11460 - components: - - type: Transform - pos: -23.5,-9.5 - parent: 2 -- proto: ComputerBroken - entities: - - uid: 9739 - components: - - type: Transform - pos: 57.5,-77.5 - parent: 2 - - uid: 11461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,12.5 - parent: 2 - - uid: 11462 - components: - - type: Transform - pos: 67.5,-75.5 - parent: 2 - - uid: 20858 - components: - - type: Transform - pos: 59.5,-77.5 - parent: 2 -- proto: ComputerCallErtConsole - entities: - - uid: 21921 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 -- proto: ComputerCargoBounty - entities: - - uid: 11463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-23.5 - parent: 2 -- proto: ComputerCargoFinanceConsole - entities: - - uid: 20705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 2 -- proto: ComputerCargoOrders - entities: - - uid: 11465 - components: - - type: Transform - pos: -32.5,-24.5 - parent: 2 - - uid: 11879 - components: - - type: Transform - pos: -22.5,-22.5 - parent: 2 - - uid: 14748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-32.5 - parent: 2 - - uid: 18105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-24.5 - parent: 2 -- proto: ComputerCargoOrdersEngineering - entities: - - uid: 32079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-53.5 - parent: 2 -- proto: ComputerCargoOrdersMedical - entities: - - uid: 11653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-29.5 - parent: 2 -- proto: ComputerCargoOrdersScience - entities: - - uid: 32074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-23.5 - parent: 2 -- proto: ComputerCargoOrdersSecurity - entities: - - uid: 32077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,36.5 - parent: 2 -- proto: ComputerCargoOrdersService - entities: - - uid: 32076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 2 -- proto: ComputerComms - entities: - - uid: 11469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-16.5 - parent: 2 - - uid: 20711 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 2 -- proto: ComputerContrabandSale - entities: - - uid: 18937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,34.5 - parent: 2 -- proto: ComputerCrewMonitoring - entities: - - uid: 10747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,21.5 - parent: 2 - - uid: 11472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,30.5 - parent: 2 - - uid: 11474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-55.5 - parent: 2 - - uid: 11475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-21.5 - parent: 2 - - uid: 11476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-41.5 - parent: 2 - - uid: 20734 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 2 -- proto: ComputerCriminalRecords - entities: - - uid: 348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-31.5 - parent: 2 - - uid: 10632 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 2 - - uid: 11478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,43.5 - parent: 2 - - uid: 11479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-21.5 - parent: 2 - - uid: 11480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-16.5 - parent: 2 - - uid: 11481 - components: - - type: Transform - pos: -1.5,33.5 - parent: 2 - - uid: 11486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-13.5 - parent: 2 - - uid: 11487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-61.5 - parent: 2 - - uid: 14042 - components: - - type: Transform - pos: -59.5,5.5 - parent: 2 - - uid: 15889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 2 -- proto: ComputerFineRecords - entities: - - uid: 21507 - components: - - type: Transform - pos: -2.5,33.5 - parent: 2 -- proto: ComputerFrame - entities: - - uid: 20917 - components: - - type: Transform - pos: 58.5,-77.5 - parent: 2 -- proto: ComputerFundingAllocation - entities: - - uid: 32072 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 2 -- proto: ComputerId - entities: - - uid: 11489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-23.5 - parent: 2 - - uid: 11490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-17.5 - parent: 2 -- proto: ComputerMassMedia - entities: - - uid: 2170 - components: - - type: Transform - pos: 24.5,22.5 - parent: 2 - - uid: 10159 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 2 -- proto: ComputerMedicalRecords - entities: - - uid: 11493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-20.5 - parent: 2 - - uid: 11496 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-17.5 - parent: 2 - - uid: 11976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-43.5 - parent: 2 - - uid: 20733 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 2 -- proto: ComputerMedicalSaleConsole - entities: - - uid: 1396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-29.5 - parent: 2 -- proto: ComputerMiningSaleConsole - entities: - - uid: 11248 - components: - - type: Transform - pos: -27.5,-36.5 - parent: 2 -- proto: ComputerPalletConsole - entities: - - uid: 11541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-28.5 - parent: 2 -- proto: ComputerPowerMonitoring - entities: - - uid: 4374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-69.5 - parent: 2 - - uid: 6540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,27.5 - parent: 2 - - uid: 11500 - components: - - type: Transform - pos: 6.5,-51.5 - parent: 2 - - uid: 11501 - components: - - type: Transform - pos: 3.5,-40.5 - parent: 2 - - uid: 20713 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 2 - - uid: 23551 - components: - - type: Transform - pos: -0.5,-66.5 - parent: 2 -- proto: ComputerRadar - entities: - - uid: 11505 - components: - - type: Transform - pos: 4.5,-40.5 - parent: 2 - - uid: 11506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-38.5 - parent: 2 - - uid: 20719 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 2 - - uid: 29911 - components: - - type: Transform - pos: -47.5,-40.5 - parent: 2 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 1199 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 2 - - uid: 9001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-36.5 - parent: 2 - - uid: 11508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-21.5 - parent: 2 - - uid: 11509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-50.5 - parent: 2 - - uid: 11510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-31.5 - parent: 2 - - uid: 11512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-23.5 - parent: 2 -- proto: ComputerRoboticsControl - entities: - - uid: 9910 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 2 - - uid: 25727 - components: - - type: Transform - pos: 60.5,-31.5 - parent: 2 -- proto: ComputerSaleConsole - entities: - - uid: 246 - components: - - type: Transform - pos: -43.5,5.5 - parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 11516 - components: - - type: Transform - pos: -25.5,-36.5 - parent: 2 -- proto: ComputerScienceSaleConsole - entities: - - uid: 10714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-29.5 - parent: 2 -- proto: ComputerSecuritySaleConsole - entities: - - uid: 17961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,34.5 - parent: 2 -- proto: ComputerServiceSaleConsole - entities: - - uid: 11468 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 2 -- proto: ComputerShuttleSecurity - entities: - - uid: 30152 - components: - - type: Transform - pos: 28.5,42.5 - parent: 2 -- proto: ComputerSolarControl - entities: - - uid: 11520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,19.5 - parent: 2 - - uid: 11521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,22.5 - parent: 2 - - uid: 11522 - components: - - type: Transform - pos: -37.5,-60.5 - parent: 2 - - uid: 11523 - components: - - type: Transform - pos: -2.5,-66.5 - parent: 2 - - uid: 11524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-64.5 - parent: 2 - - uid: 13038 - components: - - type: Transform - pos: 5.5,-40.5 - parent: 2 - - uid: 20712 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 2 -- proto: ComputerStationRecords - entities: - - uid: 11526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-21.5 - parent: 2 - - uid: 11528 - components: - - type: Transform - pos: -12.5,-14.5 - parent: 2 - - uid: 20725 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 2 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 11530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-13.5 - parent: 2 - - uid: 11531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,43.5 - parent: 2 - - uid: 11533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-17.5 - parent: 2 - - uid: 11534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-23.5 - parent: 2 - - uid: 11536 - components: - - type: Transform - pos: -0.5,33.5 - parent: 2 - - uid: 11537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-31.5 - parent: 2 - - uid: 11758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,21.5 - parent: 2 - - uid: 21487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,22.5 - parent: 2 - - uid: 22147 - components: - - type: Transform - pos: -7.5,-7.5 - parent: 2 - - uid: 25434 - components: - - type: Transform - pos: -60.5,5.5 - parent: 2 - - uid: 27073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,30.5 - parent: 2 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 11539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-18.5 - parent: 2 -- proto: ComputerTelevision - entities: - - uid: 11540 - components: - - type: Transform - pos: 4.5,15.5 - parent: 2 - - uid: 15888 - components: - - type: Transform - pos: 14.5,23.5 - parent: 2 - - uid: 22085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,47.5 - parent: 2 -- proto: ComputeStationBankConsole - entities: - - uid: 20773 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 2 -- proto: ContainmentFieldGenerator - entities: - - uid: 11543 - components: - - type: Transform - pos: -4.5,-82.5 - parent: 2 - - uid: 11544 - components: - - type: Transform - pos: -4.5,-90.5 - parent: 2 - - uid: 11545 - components: - - type: Transform - pos: 3.5,-82.5 - parent: 2 - - uid: 11548 - components: - - type: Transform - pos: 3.5,-90.5 - parent: 2 - - uid: 23273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-71.5 - parent: 2 - - uid: 23294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-71.5 - parent: 2 -- proto: ContrabandPalletSell - entities: - - uid: 11488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,34.5 - parent: 2 -- proto: ConveyorBelt - entities: - - uid: 1947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-40.5 - parent: 2 - - uid: 3056 - components: - - type: Transform - pos: -37.5,-33.5 - parent: 2 - - uid: 3195 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-7.5 - parent: 2 - - uid: 3453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-7.5 - parent: 2 - - uid: 3529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-7.5 - parent: 2 - - uid: 3530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-7.5 - parent: 2 - - uid: 4373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-21.5 - parent: 2 - - uid: 5520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-40.5 - parent: 2 - - uid: 5558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-40.5 - parent: 2 - - uid: 5594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-40.5 - parent: 2 - - uid: 6555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-42.5 - parent: 2 - - uid: 7852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-7.5 - parent: 2 - - uid: 7853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-8.5 - parent: 2 - - uid: 7856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-9.5 - parent: 2 - - uid: 7860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-10.5 - parent: 2 - - uid: 10188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-33.5 - parent: 2 - - uid: 11016 - components: - - type: Transform - pos: -36.5,-39.5 - parent: 2 - - uid: 11023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-40.5 - parent: 2 - - uid: 11061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-40.5 - parent: 2 - - uid: 11164 - components: - - type: Transform - pos: -36.5,-40.5 - parent: 2 - - uid: 11165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-40.5 - parent: 2 - - uid: 11309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-40.5 - parent: 2 - - uid: 11656 - components: - - type: Transform - pos: -41.5,-11.5 - parent: 2 - - uid: 11663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-11.5 - parent: 2 - - uid: 11697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-42.5 - parent: 2 - - uid: 11977 - components: - - type: Transform - pos: -41.5,-42.5 - parent: 2 - - uid: 12440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-42.5 - parent: 2 - - uid: 16668 - components: - - type: Transform - pos: -37.5,-32.5 - parent: 2 - - uid: 16670 - components: - - type: Transform - pos: -37.5,-31.5 - parent: 2 - - uid: 19587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-32.5 - parent: 2 - - uid: 20043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-12.5 - parent: 2 - - uid: 20053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-21.5 - parent: 2 - - uid: 20136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-12.5 - parent: 2 - - uid: 20522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-31.5 - parent: 2 - - uid: 21619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-21.5 - parent: 2 - - uid: 22768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-7.5 - parent: 2 - - uid: 23540 - components: - - type: Transform - pos: -61.5,-19.5 - parent: 2 - - uid: 23634 - components: - - type: Transform - pos: -61.5,-20.5 - parent: 2 - - uid: 27551 - components: - - type: Transform - pos: -61.5,-16.5 - parent: 2 - - uid: 28184 - components: - - type: Transform - pos: -61.5,-15.5 - parent: 2 - - uid: 28185 - components: - - type: Transform - pos: -61.5,-17.5 - parent: 2 - - uid: 28186 - components: - - type: Transform - pos: -61.5,-18.5 - parent: 2 - - uid: 28197 - components: - - type: Transform - pos: -61.5,-21.5 - parent: 2 - - uid: 28734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 2 - - uid: 28735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-10.5 - parent: 2 - - uid: 31678 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-10.5 - parent: 2 - - uid: 31731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-10.5 - parent: 2 - - uid: 31884 - components: - - type: Transform - pos: -41.5,-41.5 - parent: 2 -- proto: ConveyorBeltAssembly - entities: - - uid: 885 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 889 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 890 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1084 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1121 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1176 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1177 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1178 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1335 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1345 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1397 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1567 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1568 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1577 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1578 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1587 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3747 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3748 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3749 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3757 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3758 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3759 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3760 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3761 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3762 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4253 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4301 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4303 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4317 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4323 - components: - - type: Transform - parent: 801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11570 - components: - - type: Transform - pos: 89.5,-23.5 - parent: 2 - - uid: 11573 - components: - - type: Transform - pos: 90.5,-25.5 - parent: 2 - - uid: 11574 - components: - - type: Transform - pos: 90.5,-30.5 - parent: 2 - - uid: 11575 - components: - - type: Transform - pos: 90.5,-29.5 - parent: 2 - - uid: 11576 - components: - - type: Transform - pos: 90.5,-28.5 - parent: 2 - - uid: 11577 - components: - - type: Transform - pos: 90.5,-27.5 - parent: 2 -- proto: CorporateCircuitBoard - entities: - - uid: 19579 - components: - - type: Transform - parent: 19293 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CounterWoodFrame - entities: - - uid: 24392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,40.5 - parent: 2 - - uid: 25015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,29.5 - parent: 2 - - uid: 30369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,41.5 - parent: 2 - - uid: 30399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,22.5 - parent: 2 - - uid: 30401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,24.5 - parent: 2 - - uid: 30402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,24.5 - parent: 2 - - uid: 30520 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,25.5 - parent: 2 - - uid: 30524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,26.5 - parent: 2 -- proto: CowToolboxFilled - entities: - - uid: 11578 - components: - - type: Transform - pos: -51.5,1.5 - parent: 2 -- proto: CrateArtifactContainer - entities: - - uid: 492 - components: - - type: Transform - pos: 79.5,-38.5 - parent: 2 - - uid: 5712 - components: - - type: Transform - pos: 77.5,-39.5 - parent: 2 - - uid: 5713 - components: - - type: Transform - pos: 79.5,-37.5 - parent: 2 -- proto: CrateCoffin - entities: - - uid: 11581 - components: - - type: Transform - pos: 63.5,-43.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11582 - components: - - type: Transform - pos: 72.5,4.5 - parent: 2 - - uid: 11583 - components: - - type: Transform - pos: 73.5,4.5 - parent: 2 - - uid: 11584 - components: - - type: Transform - pos: 73.5,5.5 - parent: 2 - - uid: 11585 - components: - - type: Transform - pos: 74.5,4.5 - parent: 2 - - uid: 11586 - components: - - type: Transform - pos: 74.5,5.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11587 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11588 - components: - - type: Transform - pos: 72.5,5.5 - parent: 2 -- proto: CrateCommandSecure - entities: - - uid: 24243 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 24244 - - 24245 - - 24266 - - 24298 - - 24313 - - 24314 - - 24316 - - 24324 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEmergencyRadiation - entities: - - uid: 11589 - components: - - type: Transform - pos: 0.5,-71.5 - parent: 2 -- proto: CrateEmptySpawner - entities: - - uid: 11590 - components: - - type: Transform - pos: 59.5,-43.5 - parent: 2 - - uid: 11591 - components: - - type: Transform - pos: 60.5,-43.5 - parent: 2 - - uid: 11592 - components: - - type: Transform - pos: 57.5,-43.5 - parent: 2 - - uid: 11593 - components: - - type: Transform - pos: 58.5,-43.5 - parent: 2 - - uid: 11594 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 2 - - uid: 11595 - components: - - type: Transform - pos: -31.5,-13.5 - parent: 2 - - uid: 11596 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 2 - - uid: 11597 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 2 -- proto: CrateEngineering - entities: - - uid: 801 - components: - - type: Transform - pos: -7.5,-72.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 885 - - 889 - - 890 - - 1084 - - 1121 - - 1176 - - 1177 - - 1178 - - 1335 - - 1345 - - 1397 - - 1567 - - 1568 - - 1577 - - 1578 - - 1587 - - 3747 - - 3748 - - 3749 - - 3757 - - 3758 - - 3759 - - 3760 - - 3761 - - 3762 - - 4253 - - 4301 - - 4303 - - 4317 - - 4323 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringAMEControl - entities: - - uid: 8699 - components: - - type: Transform - pos: -6.5,-61.5 - parent: 2 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 4363 - components: - - type: Transform - pos: -4.5,-61.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4372 - - 4371 - - 4364 - - 636 - - 683 - - 782 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringCableBulk - entities: - - uid: 11600 - components: - - type: Transform - pos: -44.5,10.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 11601 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 2 - - uid: 11602 - components: - - type: Transform - pos: 7.5,-59.5 - parent: 2 - - uid: 14433 - components: - - type: Transform - pos: -71.5,16.5 - parent: 2 - - uid: 24189 - components: - - type: Transform - pos: 9.5,-61.5 - parent: 2 - - uid: 30160 - components: - - type: Transform - pos: 22.5,40.5 - parent: 2 -- proto: CrateEngineeringShuttle - entities: - - uid: 14477 - components: - - type: Transform - pos: -71.5,15.5 - parent: 2 -- proto: CrateFilledSpawner - entities: - - uid: 11604 - components: - - type: Transform - pos: -32.5,-15.5 - parent: 2 - - uid: 11605 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 2 - - uid: 11606 - components: - - type: Transform - pos: -30.5,-16.5 - parent: 2 - - uid: 11607 - components: - - type: Transform - pos: -38.5,-24.5 - parent: 2 - - uid: 11608 - components: - - type: Transform - pos: -37.5,-24.5 - parent: 2 - - uid: 11609 - components: - - type: Transform - pos: -36.5,-24.5 - parent: 2 - - uid: 11610 - components: - - type: Transform - pos: -36.5,-22.5 - parent: 2 - - uid: 11611 - components: - - type: Transform - pos: -37.5,-22.5 - parent: 2 - - uid: 11612 - components: - - type: Transform - pos: -38.5,-22.5 - parent: 2 -- proto: CrateFreezer - entities: - - uid: 11613 - components: - - type: Transform - pos: 38.5,-2.5 - parent: 2 - - uid: 11614 - components: - - type: Transform - pos: 21.5,-36.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11615 - components: - - type: Transform - pos: 26.5,-36.5 - parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True -- proto: CrateGenericSteel - entities: - - uid: 11643 - components: - - type: Transform - pos: 60.5,-48.5 - parent: 2 - - uid: 11644 - components: - - type: Transform - pos: -51.5,-18.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 11645 - components: - - type: Transform - pos: -8.5,-43.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 11646 - components: - - type: Transform - pos: -32.5,-43.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 11647 - components: - - type: Transform - pos: -20.5,-58.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 11648 - components: - - type: Transform - pos: -10.5,-41.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 11649 - components: - - type: Transform - pos: -9.5,-41.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 11650 - components: - - type: Transform - pos: 90.5,-31.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 11651 - components: - - type: Transform - pos: 89.5,-31.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 12221 - components: - - type: Transform - pos: -61.5,-11.5 - parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True -- proto: CrateMaterialGlass - entities: - - uid: 17689 - components: - - type: Transform - pos: -72.5,14.5 - parent: 2 -- proto: CrateMaterialPlasteel - entities: - - uid: 1950 - components: - - type: Transform - pos: -70.5,15.5 - parent: 2 -- proto: CrateMaterialPlastic - entities: - - uid: 14081 - components: - - type: Transform - pos: -70.5,17.5 - parent: 2 -- proto: CrateMaterialSteel - entities: - - uid: 1949 - components: - - type: Transform - pos: -71.5,17.5 - parent: 2 -- proto: CrateMedicalScrubs - entities: - - uid: 11654 - components: - - type: Transform - pos: 24.5,-33.5 - parent: 2 - - uid: 11655 - components: - - type: Transform - pos: 33.5,-18.5 - parent: 2 - - uid: 32073 - components: - - type: Transform - pos: 46.5,-28.5 - parent: 2 -- proto: CrateMedicalSecure - entities: - - uid: 7844 - components: - - type: Transform - pos: 6.5,-36.5 - parent: 2 - - uid: 11657 - components: - - type: Transform - pos: 46.5,-26.5 - parent: 2 -- proto: CrateMedicalSurgery - entities: - - uid: 11658 - components: - - type: Transform - pos: 20.5,-36.5 - parent: 2 -- proto: CrateNPCHamlet - entities: - - uid: 21000 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 2 -- proto: CrateScienceBiosuit - entities: - - uid: 11660 - components: - - type: Transform - pos: 68.5,-53.5 - parent: 2 -- proto: CrateScienceSecure - entities: - - uid: 11661 - components: - - type: Transform - pos: 79.5,-49.5 - parent: 2 - - uid: 11662 - components: - - type: Transform - pos: 78.5,-49.5 - parent: 2 - - uid: 19293 - components: - - type: Transform - anchored: True - pos: -30.5,7.5 - parent: 2 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 20207 - - 20205 - - 20203 - - 20202 - - 20201 - - 19579 - - 19509 - - 19476 - - 20241 - - 20209 - - 20208 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Pullable - prevFixedRotation: True -- proto: CrateSecurityTrackingMindshieldImplants - entities: - - uid: 15485 - components: - - type: Transform - pos: -1.5,37.5 - parent: 2 -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 31750 - components: - - type: Transform - pos: -38.5,-8.5 - parent: 2 -- proto: CrateServiceReplacementLights - entities: - - uid: 11664 - components: - - type: Transform - pos: -28.5,-6.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage -- proto: CrateSurgery - entities: - - uid: 11665 - components: - - type: Transform - pos: 19.5,-36.5 - parent: 2 -- proto: CrateTrainingBombs - entities: - - uid: 23728 - components: - - type: Transform - pos: 12.5,28.5 - parent: 2 -- proto: CrateTrashCart - entities: - - uid: 3503 - components: - - type: Transform - pos: -36.5,-13.5 - parent: 2 - - uid: 11667 - components: - - type: Transform - pos: -27.5,-15.5 - parent: 2 - - uid: 11668 - components: - - type: Transform - pos: -27.5,-16.5 - parent: 2 - - uid: 11669 - components: - - type: Transform - pos: 35.5,2.5 - parent: 2 - - uid: 11670 - components: - - type: Transform - pos: 84.5,-28.5 - parent: 2 - - uid: 11671 - components: - - type: Transform - pos: -58.5,-20.5 - parent: 2 - - uid: 20910 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 2 - - uid: 31652 - components: - - type: Transform - pos: -38.5,-10.5 - parent: 2 -- proto: CrateTrashCartJani - entities: - - uid: 20874 - components: - - type: Transform - pos: -36.5,-10.5 - parent: 2 - - uid: 20876 - components: - - type: Transform - pos: -36.5,-11.5 - parent: 2 - - uid: 31727 - components: - - type: Transform - pos: -38.5,-4.5 - parent: 2 -- proto: CrateWeaponSecure - entities: - - uid: 11342 - components: - - type: MetaData - name: ящик "Улыбка Смотрителя" - - type: Transform - pos: 1.5,33.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11351 - - 11350 - - 11358 - - 11361 - - 11359 - - 11353 - - 11344 - - 11352 - - 11343 - - 11348 - - 11357 - - 11360 - - 11107 - - 11108 - - 11349 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateWoodenGrave - entities: - - uid: 18759 - components: - - type: Transform - pos: 74.5,11.5 - parent: 2 - - uid: 19384 - components: - - type: Transform - pos: 72.5,11.5 - parent: 2 - - uid: 19402 - components: - - type: Transform - pos: 68.5,11.5 - parent: 2 - - uid: 19404 - components: - - type: Transform - pos: 70.5,11.5 - parent: 2 -- proto: CrayonBox - entities: - - uid: 11674 - components: - - type: Transform - pos: -33.849354,-6.1396704 - parent: 2 - - uid: 11675 - components: - - type: Transform - pos: -33.849354,-6.5007815 - parent: 2 - - uid: 11676 - components: - - type: Transform - pos: 66.681946,1.4430275 - parent: 2 -- proto: Crematorium - entities: - - uid: 11677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-0.5 - parent: 2 -- proto: CrewMonitoringComputerCircuitboard - entities: - - uid: 11678 - components: - - type: Transform - pos: 68.482796,-75.44419 - parent: 2 -- proto: CrewMonitoringServer +- proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 11679 + - uid: 23299 components: - type: Transform - pos: 52.5,-29.5 + pos: -18.5,205.5 parent: 2 - - type: SingletonDeviceNetServer - active: False - available: False -- proto: Crowbar +- proto: AirlockCommandGlassLocked entities: - - uid: 3532 + - uid: 1219 components: - type: Transform - pos: -61.5,-10.5 + pos: -41.5,102.5 parent: 2 - - type: CollisionWake - enabled: False - - type: Conveyed - - uid: 7850 + - uid: 1636 components: - type: Transform - pos: -60.5,-7.5 + pos: -40.5,102.5 parent: 2 - - type: CollisionWake - enabled: False - - type: Conveyed - - uid: 11680 + - uid: 1637 components: - type: Transform - pos: -41.50533,1.5813448 + pos: -39.5,102.5 parent: 2 - uid: 11681 components: - type: Transform - pos: -37.449833,2.5174625 + pos: -40.5,93.5 parent: 2 - uid: 11682 components: - type: Transform - pos: -56.729946,3.644562 + pos: -40.5,96.5 parent: 2 - - uid: 11683 - components: - - type: Transform - pos: -24.345285,-43.747276 - parent: 2 - - uid: 11684 - components: - - type: Transform - pos: 65.5,-53.5 - parent: 2 - - uid: 11687 - components: - - type: Transform - pos: 12.069896,-14.395061 - parent: 2 - - uid: 11688 - components: - - type: Transform - pos: -2.4532552,-76.67424 - parent: 2 - - uid: 15731 - components: - - type: Transform - pos: -57.5,-7.5 - parent: 2 - - type: CollisionWake - enabled: False - - type: Conveyed - - uid: 15735 - components: - - type: Transform - pos: -61.620243,-11.296085 - parent: 2 - - uid: 15881 - components: - - type: Transform - pos: -61.41654,-11.555345 - parent: 2 - - uid: 15884 - components: - - type: Transform - pos: -61.481354,-11.397938 - parent: 2 - - uid: 17469 - components: - - type: Transform - pos: -59.5,-7.5 - parent: 2 - - type: CollisionWake - enabled: False - - type: Conveyed - - uid: 17688 - components: - - type: Transform - pos: -59.5459,-9.217558 - parent: 2 - - uid: 20127 - components: - - type: Transform - pos: -61.5,-7.5 - parent: 2 - - type: CollisionWake - enabled: False - - type: Conveyed - - uid: 22777 - components: - - type: Transform - pos: -61.5,-8.5 - parent: 2 - - type: CollisionWake - enabled: False - - type: Conveyed - - uid: 23327 - components: - - type: Transform - pos: -61.5,-9.5 - parent: 2 - - type: CollisionWake - enabled: False - - type: Conveyed - - uid: 31323 - components: - - type: Transform - pos: -58.5,-7.5 - parent: 2 - - type: CollisionWake - enabled: False - - type: Conveyed -- proto: CrowbarOrange - entities: - - uid: 17587 - components: - - type: Transform - pos: -59.510986,-9.384438 - parent: 2 - - uid: 22054 - components: - - type: Transform - pos: -59.3584,-9.483183 - parent: 2 -- proto: CrowbarRed - entities: - - uid: 11690 - components: - - type: Transform - pos: 22.39215,-26.988102 - parent: 2 -- proto: CrowbarYellow - entities: - - uid: 16438 - components: - - type: Transform - pos: -57.592773,-9.181193 - parent: 2 - - uid: 17659 - components: - - type: Transform - pos: -57.479736,-9.368813 - parent: 2 -- proto: CryogenicSleepUnit - entities: - - uid: 337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,13.5 - parent: 2 - - uid: 1035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 2 - - uid: 1786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,15.5 - parent: 2 - - uid: 11695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,43.5 - parent: 2 - - uid: 11696 - components: - - type: Transform - pos: 27.5,-27.5 - parent: 2 - - uid: 25067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 2 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 1037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,15.5 - parent: 2 - - uid: 1615 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 2 - - uid: 6703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,15.5 - parent: 2 - - uid: 9926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,13.5 - parent: 2 -- proto: CryoPod - entities: - - uid: 11699 - components: - - type: Transform - pos: 30.5,-32.5 - parent: 2 - - uid: 11700 - components: - - type: Transform - pos: 32.5,-32.5 - parent: 2 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 11701 - components: - - type: Transform - pos: 29.671877,-32.312553 - parent: 2 - - uid: 11702 - components: - - type: Transform - pos: 29.484377,-32.156303 - parent: 2 - - uid: 29852 - components: - - type: Transform - pos: 43.3789,-10.454958 - parent: 2 -- proto: CrystalSpawner - entities: - - uid: 27434 - components: - - type: Transform - pos: -48.5,-10.5 - parent: 2 -- proto: CultAltarSpawner - entities: - - uid: 9728 - components: - - type: Transform - pos: 62.5,24.5 - parent: 2 -- proto: CurtainsRed - entities: - - uid: 864 - components: - - type: Transform - pos: 56.5,-69.5 - parent: 2 - - uid: 872 - components: - - type: Transform - pos: 55.5,-69.5 - parent: 2 - - uid: 873 - components: - - type: Transform - pos: 61.5,-69.5 - parent: 2 - - uid: 874 - components: - - type: Transform - pos: 60.5,-69.5 - parent: 2 - - uid: 11704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,16.5 - parent: 2 - - uid: 11705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,17.5 - parent: 2 - - type: Door - secondsUntilStateChange: -150572.72 - state: Opening - - uid: 11706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,16.5 - parent: 2 - - type: Door - secondsUntilStateChange: -290211.9 - state: Opening - - uid: 11707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,16.5 - parent: 2 - - uid: 11708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,17.5 - parent: 2 - - type: Door - secondsUntilStateChange: -37063.703 - state: Opening - - uid: 11709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,17.5 - parent: 2 - - uid: 11710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,17.5 - parent: 2 -- proto: CurtainsRedOpen - entities: - - uid: 10559 - components: - - type: Transform - pos: 58.5,-69.5 - parent: 2 - - uid: 10560 - components: - - type: Transform - pos: 59.5,-69.5 - parent: 2 - - uid: 10561 - components: - - type: Transform - pos: 57.5,-69.5 - parent: 2 -- proto: d10Dice - entities: - - uid: 11711 - components: - - type: Transform - pos: 56.5,3.5000002 - parent: 2 - - uid: 11712 - components: - - type: Transform - pos: 55.5,0.5 - parent: 2 -- proto: d12Dice - entities: - - uid: 11713 - components: - - type: Transform - pos: 56.5,3.5000002 - parent: 2 - - uid: 11714 - components: - - type: Transform - pos: 55.5,0.5 - parent: 2 -- proto: d20Dice - entities: - - uid: 11716 - components: - - type: Transform - pos: 56.5,3.5000002 - parent: 2 - - uid: 11717 - components: - - type: Transform - pos: 55.5,0.5 - parent: 2 - - uid: 11718 - components: - - type: Transform - pos: 55.5,18.5 - parent: 2 -- proto: d4Dice - entities: - - uid: 11719 - components: - - type: Transform - pos: 56.5,3.5000002 - parent: 2 - - uid: 11720 - components: - - type: Transform - pos: 55.5,0.5 - parent: 2 - - uid: 11721 - components: - - type: Transform - pos: 57.5,20.5 - parent: 2 -- proto: d6Dice - entities: - - uid: 11722 - components: - - type: Transform - pos: 58.5,16.5 - parent: 2 - - uid: 11724 - components: - - type: Transform - pos: 56.5,3.5000002 - parent: 2 - - uid: 11725 - components: - - type: Transform - pos: 55.5,0.5 - parent: 2 - - uid: 11726 - components: - - type: Transform - pos: -14.755374,40.835594 - parent: 2 - - uid: 11727 - components: - - type: Transform - pos: -14.567874,40.56997 - parent: 2 - - uid: 11728 - components: - - type: Transform - pos: 56.501217,-34.290268 - parent: 2 - - uid: 19178 - components: - - type: Transform - pos: 58.82272,16.59143 - parent: 2 -- proto: d8Dice - entities: - - uid: 11729 - components: - - type: Transform - pos: 56.5,3.5000002 - parent: 2 - - uid: 11730 - components: - - type: Transform - pos: 55.5,0.5 - parent: 2 - - uid: 11731 - components: - - type: Transform - pos: 55.5,18.5 - parent: 2 -- proto: DefaultStationBeaconAME - entities: - - uid: 25636 - components: - - type: Transform - pos: -12.5,-66.5 - parent: 2 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 11733 - components: - - type: Transform - pos: 73.5,-52.5 - parent: 2 -- proto: DefaultStationBeaconArrivals - entities: - - uid: 11734 - components: - - type: Transform - pos: -64.5,2.5 - parent: 2 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 25670 - components: - - type: Transform - pos: 71.5,-41.5 - parent: 2 -- proto: DefaultStationBeaconBar - entities: - - uid: 11738 - components: - - type: Transform - pos: 23.5,-6.5 - parent: 2 -- proto: DefaultStationBeaconBlueShield - entities: - - uid: 11739 - components: - - type: Transform - pos: -22.5,-11.5 - parent: 2 -- proto: DefaultStationBeaconBotany - entities: - - uid: 11740 - components: - - type: Transform - pos: 46.5,-7.5 - parent: 2 -- proto: DefaultStationBeaconBridge - entities: - - uid: 11741 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 11742 - components: - - type: Transform - pos: -5.5,26.5 - parent: 2 -- proto: DefaultStationBeaconCaptainsQuarters - entities: - - uid: 11743 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 2 -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 11744 - components: - - type: Transform - pos: -38.5,-25.5 - parent: 2 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 11745 - components: - - type: Transform - pos: -26.5,-26.5 - parent: 2 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 15128 - components: - - type: Transform - pos: 8.5,-66.5 - parent: 2 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 11747 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 2 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 11748 - components: - - type: Transform - pos: 34.5,-40.5 - parent: 2 -- proto: DefaultStationBeaconCryonics - entities: - - uid: 11750 - components: - - type: Transform - pos: 31.5,-35.5 - parent: 2 -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 17542 - components: - - type: Transform - pos: 18.5,14.5 - parent: 2 -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 3350 - components: - - type: Transform - pos: 14.5,20.5 - parent: 2 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 11753 - components: - - type: Transform - pos: -58.5,-18.5 - parent: 2 -- proto: DefaultStationBeaconDorms - entities: - - uid: 11754 - components: - - type: Transform - pos: 9.5,9.5 - parent: 2 -- proto: DefaultStationBeaconEngineering - entities: - - uid: 11755 - components: - - type: Transform - pos: 4.5,-56.5 - parent: 2 -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 11757 - components: - - type: Transform - pos: -10.5,-25.5 - parent: 2 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 6697 - components: - - type: Transform - pos: -37.5,-7.5 - parent: 2 -- proto: DefaultStationBeaconKitchen - entities: - - uid: 11759 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 2 -- proto: DefaultStationBeaconMedbay - entities: - - uid: 11761 - components: - - type: Transform - pos: 26.5,-17.5 - parent: 2 -- proto: DefaultStationBeaconMorgue - entities: - - uid: 11762 - components: - - type: Transform - pos: 44.5,-18.5 - parent: 2 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 11763 - components: - - type: Transform - pos: -10.5,41.5 - parent: 2 -- proto: DefaultStationBeaconQMRoom - entities: - - uid: 11764 - components: - - type: Transform - pos: -32.5,-29.5 - parent: 2 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 13182 - components: - - type: Transform - pos: 60.5,-30.5 - parent: 2 -- proto: DefaultStationBeaconRND - entities: - - uid: 11766 - components: - - type: Transform - pos: 72.5,-20.5 - parent: 2 -- proto: DefaultStationBeaconSalvage - entities: - - uid: 11767 - components: - - type: Transform - pos: -26.5,-35.5 - parent: 2 -- proto: DefaultStationBeaconSecurityCheckpoint - entities: - - uid: 11768 - components: - - type: Transform - pos: -59.5,4.5 - parent: 2 - - uid: 11769 - components: - - type: Transform - pos: -20.5,-30.5 - parent: 2 -- proto: DefaultStationBeaconServerRoom - entities: - - uid: 11770 - components: - - type: Transform - pos: 53.5,-30.5 - parent: 2 -- proto: DefaultStationBeaconSingularity - entities: - - uid: 11771 - components: - - type: Transform - pos: -1.5,-73.5 - parent: 2 -- proto: DefaultStationBeaconSolars - entities: - - uid: 11772 - components: - - type: Transform - pos: 47.5,19.5 - parent: 2 - - uid: 11773 - components: - - type: Transform - pos: -37.5,-61.5 - parent: 2 - - uid: 11774 - components: - - type: Transform - pos: 81.5,-64.5 - parent: 2 - - uid: 11775 - components: - - type: Transform - pos: -49.5,22.5 - parent: 2 -- proto: DefaultStationBeaconTechVault - entities: - - uid: 11776 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 2 -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 25737 - components: - - type: Transform - pos: -12.5,-53.5 - parent: 2 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 25738 - components: - - type: Transform - pos: -44.5,3.5 - parent: 2 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 11781 - components: - - type: Transform - pos: 1.5,32.5 - parent: 2 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 11783 - components: - - type: Transform - pos: 29.5,-31.5 - parent: 2 - - uid: 11784 - components: - - type: Transform - pos: 27.5,-22.5 - parent: 2 - - uid: 11785 - components: - - type: Transform - pos: 32.5,-26.5 - parent: 2 - - uid: 11786 - components: - - type: Transform - pos: -42.5,6.5 - parent: 2 - - uid: 30005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,33.5 - parent: 2 - - uid: 30271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-17.5 - parent: 2 -- proto: DeployableBarrier - entities: - - uid: 2408 - components: - - type: Transform - pos: -2.5,37.5 - parent: 2 - - uid: 2597 - components: - - type: Transform - pos: -0.5,38.5 - parent: 2 - - uid: 2719 - components: - - type: Transform - pos: -2.5,38.5 - parent: 2 - - uid: 9264 - components: - - type: Transform - pos: -0.5,37.5 - parent: 2 - - uid: 24731 - components: - - type: Transform - pos: -2.5,45.5 - parent: 2 - - uid: 24735 - components: - - type: Transform - pos: -0.5,45.5 - parent: 2 -- proto: DeskBell - entities: - - uid: 11791 - components: - - type: Transform - pos: 30.464977,-5.5256424 - parent: 2 - - uid: 11792 - components: - - type: Transform - pos: 1.5,22.5 - parent: 2 - - type: Physics - canCollide: False - bodyType: Static - - uid: 23412 - components: - - type: Transform - pos: -23.475245,-23.372463 - parent: 2 -- proto: DiseaseDiagnoser - entities: - - uid: 11794 - components: - - type: Transform - pos: 41.5,-58.5 - parent: 2 -- proto: DisgustingSweptSoup - entities: - - uid: 20701 - components: - - type: Transform - pos: 38.448196,-70.3496 - parent: 2 -- proto: DisposalBend - entities: - - uid: 144 - components: - - type: Transform - pos: -36.5,-11.5 - parent: 2 - - uid: 6168 - components: - - type: Transform - pos: 20.5,13.5 - parent: 2 - - uid: 6172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,26.5 - parent: 2 - - uid: 6388 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-16.5 - parent: 2 - - uid: 7030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,12.5 - parent: 2 - - uid: 7602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,27.5 - parent: 2 - - uid: 9048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-17.5 - parent: 2 - - uid: 9214 - components: - - type: Transform - pos: -37.5,-12.5 - parent: 2 - - uid: 9376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-24.5 - parent: 2 - - uid: 9891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 2 - - uid: 10542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,17.5 - parent: 2 - - uid: 10751 - components: - - type: Transform - pos: 4.5,-55.5 - parent: 2 - - uid: 11294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-29.5 - parent: 2 - - uid: 11308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,31.5 - parent: 2 - - uid: 11364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,22.5 - parent: 2 - - uid: 11388 - components: - - type: Transform - pos: -13.5,27.5 - parent: 2 - - uid: 11492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-8.5 - parent: 2 - - uid: 11556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,2.5 - parent: 2 - - uid: 11557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,2.5 - parent: 2 - - uid: 11558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,0.5 - parent: 2 - - uid: 11797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,6.5 - parent: 2 - - uid: 11798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-35.5 - parent: 2 - - uid: 11801 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - - uid: 11802 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 2 - - uid: 11803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 2 - - uid: 11805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-13.5 - parent: 2 - - uid: 11807 - components: - - type: Transform - pos: -55.5,-13.5 - parent: 2 - - uid: 11808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-15.5 - parent: 2 - - uid: 11809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 2 - - uid: 11810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-8.5 - parent: 2 - - uid: 11811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,19.5 - parent: 2 - - uid: 11812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-25.5 - parent: 2 - - uid: 11813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 2 - - uid: 11817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,3.5 - parent: 2 - - uid: 11819 - components: - - type: Transform - pos: 46.5,3.5 - parent: 2 - - uid: 11820 - components: - - type: Transform - pos: -12.5,31.5 - parent: 2 - - uid: 11821 - components: - - type: Transform - pos: 30.5,6.5 - parent: 2 - - uid: 11822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,30.5 - parent: 2 - - uid: 11825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,24.5 - parent: 2 - - uid: 11827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,20.5 - parent: 2 - - uid: 11829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,32.5 - parent: 2 - - uid: 11830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,34.5 - parent: 2 - - uid: 11831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,34.5 - parent: 2 - - uid: 11832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,31.5 - parent: 2 - - uid: 11833 - components: - - type: Transform - pos: 6.5,31.5 - parent: 2 - - uid: 11834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,30.5 - parent: 2 - - uid: 11835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,26.5 - parent: 2 - - uid: 11838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,23.5 - parent: 2 - - uid: 11843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 2 - - uid: 11846 - components: - - type: Transform - pos: -16.5,19.5 - parent: 2 - - uid: 11847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-33.5 - parent: 2 - - uid: 11848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-30.5 - parent: 2 - - uid: 11849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-22.5 - parent: 2 - - uid: 11850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-22.5 - parent: 2 - - uid: 11851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-0.5 - parent: 2 - - uid: 11852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-2.5 - parent: 2 - - uid: 11853 - components: - - type: Transform - pos: 48.5,-0.5 - parent: 2 - - uid: 11854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,2.5 - parent: 2 - - uid: 11855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,2.5 - parent: 2 - - uid: 11856 - components: - - type: Transform - pos: 54.5,10.5 - parent: 2 - - uid: 11857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,10.5 - parent: 2 - - uid: 11858 - components: - - type: Transform - pos: 61.5,5.5 - parent: 2 - - uid: 11859 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,0.5 - parent: 2 - - uid: 11860 - components: - - type: Transform - pos: 66.5,0.5 - parent: 2 - - uid: 11861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-16.5 - parent: 2 - - uid: 11862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-32.5 - parent: 2 - - uid: 11863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,1.5 - parent: 2 - - uid: 11865 - components: - - type: Transform - pos: -50.5,-15.5 - parent: 2 - - uid: 11866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-18.5 - parent: 2 - - uid: 11867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-18.5 - parent: 2 - - uid: 11870 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 2 - - uid: 11871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-12.5 - parent: 2 - - uid: 11872 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 2 - - uid: 11873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 2 - - uid: 11874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-16.5 - parent: 2 - - uid: 11875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-15.5 - parent: 2 - - uid: 11876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-16.5 - parent: 2 - - uid: 11877 - components: - - type: Transform - pos: -39.5,-15.5 - parent: 2 - - uid: 11878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-27.5 - parent: 2 - - uid: 11880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-24.5 - parent: 2 - - uid: 11881 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-20.5 - parent: 2 - - uid: 11882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-52.5 - parent: 2 - - uid: 11883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-52.5 - parent: 2 - - uid: 11884 - components: - - type: Transform - pos: -44.5,-51.5 - parent: 2 - - uid: 11885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-51.5 - parent: 2 - - uid: 11886 - components: - - type: Transform - pos: -46.5,-50.5 - parent: 2 - - uid: 11887 - components: - - type: Transform - pos: -26.5,-30.5 - parent: 2 - - uid: 11888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-33.5 - parent: 2 - - uid: 11889 - components: - - type: Transform - pos: -17.5,-33.5 - parent: 2 - - uid: 11890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-47.5 - parent: 2 - - uid: 11891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-44.5 - parent: 2 - - uid: 11892 - components: - - type: Transform - pos: -10.5,-44.5 - parent: 2 - - uid: 11893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-59.5 - parent: 2 - - uid: 11895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-47.5 - parent: 2 - - uid: 11900 - components: - - type: Transform - pos: 8.5,-56.5 - parent: 2 - - uid: 11901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-67.5 - parent: 2 - - uid: 11902 - components: - - type: Transform - pos: 33.5,-32.5 - parent: 2 - - uid: 11903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-34.5 - parent: 2 - - uid: 11904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-34.5 - parent: 2 - - uid: 11905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-38.5 - parent: 2 - - uid: 11907 - components: - - type: Transform - pos: 32.5,-38.5 - parent: 2 - - uid: 11908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-57.5 - parent: 2 - - uid: 11909 - components: - - type: Transform - pos: 36.5,-57.5 - parent: 2 - - uid: 11910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-62.5 - parent: 2 - - uid: 11911 - components: - - type: Transform - pos: 40.5,-62.5 - parent: 2 - - uid: 11912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-65.5 - parent: 2 - - uid: 11913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-65.5 - parent: 2 - - uid: 11914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-62.5 - parent: 2 - - uid: 11915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-35.5 - parent: 2 - - uid: 11916 - components: - - type: Transform - pos: 43.5,-45.5 - parent: 2 - - uid: 11917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-45.5 - parent: 2 - - uid: 11918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-42.5 - parent: 2 - - uid: 11919 - components: - - type: Transform - pos: 40.5,-33.5 - parent: 2 - - uid: 11920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-33.5 - parent: 2 - - uid: 11921 - components: - - type: Transform - pos: 39.5,-32.5 - parent: 2 - - uid: 11922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-39.5 - parent: 2 - - uid: 11923 - components: - - type: Transform - pos: 40.5,-23.5 - parent: 2 - - uid: 11924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-60.5 - parent: 2 - - uid: 11926 - components: - - type: Transform - pos: 51.5,-40.5 - parent: 2 - - uid: 11927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-62.5 - parent: 2 - - uid: 11928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-61.5 - parent: 2 - - uid: 11929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-61.5 - parent: 2 - - uid: 11930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-56.5 - parent: 2 - - uid: 11931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-56.5 - parent: 2 - - uid: 11935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-40.5 - parent: 2 - - uid: 11936 - components: - - type: Transform - pos: 82.5,-40.5 - parent: 2 - - uid: 11937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-60.5 - parent: 2 - - uid: 11938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-21.5 - parent: 2 - - uid: 11939 - components: - - type: Transform - pos: 85.5,-21.5 - parent: 2 - - uid: 11940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-32.5 - parent: 2 - - uid: 11941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-32.5 - parent: 2 - - uid: 11942 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-33.5 - parent: 2 - - uid: 11946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-30.5 - parent: 2 - - uid: 11947 - components: - - type: Transform - pos: -7.5,-26.5 - parent: 2 - - uid: 11948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-17.5 - parent: 2 - - uid: 11949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-55.5 - parent: 2 - - uid: 11950 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-37.5 - parent: 2 - - uid: 11951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-37.5 - parent: 2 - - uid: 11953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-30.5 - parent: 2 - - uid: 11954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-17.5 - parent: 2 - - uid: 11955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-27.5 - parent: 2 - - uid: 11956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 2 - - uid: 11957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-24.5 - parent: 2 - - uid: 11958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 2 - - uid: 11959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,20.5 - parent: 2 - - uid: 11960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,20.5 - parent: 2 - - uid: 11961 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 2 - - uid: 11962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-8.5 - parent: 2 - - uid: 11963 - components: - - type: Transform - pos: 70.5,-13.5 - parent: 2 - - uid: 11964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-31.5 - parent: 2 - - uid: 11965 - components: - - type: Transform - pos: 14.5,40.5 - parent: 2 - - uid: 11966 - components: - - type: Transform - pos: 43.5,-27.5 - parent: 2 - - uid: 11967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-24.5 - parent: 2 - - uid: 11970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,24.5 - parent: 2 - - uid: 11990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-16.5 - parent: 2 - - uid: 12074 - components: - - type: Transform - pos: 23.5,32.5 - parent: 2 - - uid: 12300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,9.5 - parent: 2 - - uid: 12471 - components: - - type: Transform - pos: -22.5,-24.5 - parent: 2 - - uid: 13898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-59.5 - parent: 2 - - uid: 15728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,22.5 - parent: 2 - - uid: 16276 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-41.5 - parent: 2 - - uid: 16277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-45.5 - parent: 2 - - uid: 16278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-45.5 - parent: 2 - - uid: 20997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-26.5 - parent: 2 - - uid: 21092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-67.5 - parent: 2 - - uid: 21446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-26.5 - parent: 2 - - uid: 21769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-61.5 - parent: 2 - - uid: 26979 - components: - - type: Transform - pos: 62.5,-27.5 - parent: 2 - - uid: 27004 - components: - - type: Transform - pos: 58.5,-17.5 - parent: 2 - - uid: 27005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-27.5 - parent: 2 - - uid: 30194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,35.5 - parent: 2 - - uid: 30195 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,40.5 - parent: 2 -- proto: DisposalJunction - entities: - - uid: 7772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,14.5 - parent: 2 - - uid: 9209 - components: - - type: Transform - pos: 20.5,20.5 - parent: 2 - - uid: 10651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-56.5 - parent: 2 - - uid: 11471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-8.5 - parent: 2 - - uid: 11723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-17.5 - parent: 2 - - uid: 11751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 2 - - uid: 11826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 2 - - uid: 11968 - components: - - type: Transform - pos: 25.5,-35.5 - parent: 2 - - uid: 11969 - components: - - type: Transform - pos: 29.5,-21.5 - parent: 2 - - uid: 11972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-11.5 - parent: 2 - - uid: 11974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,3.5 - parent: 2 - - uid: 11975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-27.5 - parent: 2 - - uid: 11978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,30.5 - parent: 2 - - uid: 11980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,5.5 - parent: 2 - - uid: 11981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-12.5 - parent: 2 - - uid: 11984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-38.5 - parent: 2 - - uid: 11985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-62.5 - parent: 2 - - uid: 11986 - components: - - type: Transform - pos: 49.5,-49.5 - parent: 2 - - uid: 11987 - components: - - type: Transform - pos: 49.5,-42.5 - parent: 2 - - uid: 14034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-66.5 - parent: 2 - - uid: 24399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-1.5 - parent: 2 -- proto: DisposalJunctionFlipped - entities: - - uid: 5624 - components: - - type: Transform - pos: 66.5,-53.5 - parent: 2 - - uid: 11395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,23.5 - parent: 2 - - uid: 11551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,6.5 - parent: 2 - - uid: 11995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 2 - - uid: 11996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-8.5 - parent: 2 - - uid: 11997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,17.5 - parent: 2 - - uid: 11998 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,26.5 - parent: 2 - - uid: 11999 - components: - - type: Transform - pos: 29.5,-24.5 - parent: 2 - - uid: 12000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,32.5 - parent: 2 - - uid: 12001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,30.5 - parent: 2 - - uid: 12002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,28.5 - parent: 2 - - uid: 12003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,3.5 - parent: 2 - - uid: 12005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-19.5 - parent: 2 - - uid: 12006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-30.5 - parent: 2 - - uid: 12007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-20.5 - parent: 2 - - uid: 12008 - components: - - type: Transform - pos: -0.5,-56.5 - parent: 2 - - uid: 12009 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-39.5 - parent: 2 - - uid: 12010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 2 - - uid: 12011 - components: - - type: Transform - pos: 40.5,-35.5 - parent: 2 - - uid: 12012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-32.5 - parent: 2 - - uid: 12013 - components: - - type: Transform - pos: 49.5,-40.5 - parent: 2 - - uid: 12014 - components: - - type: Transform - pos: 65.5,-60.5 - parent: 2 - - uid: 12015 - components: - - type: Transform - pos: 25.5,-30.5 - parent: 2 - - uid: 23269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-1.5 - parent: 2 - - uid: 30197 - components: - - type: Transform - pos: 19.5,35.5 - parent: 2 -- proto: DisposalPipe - entities: - - uid: 132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-11.5 - parent: 2 - - uid: 143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-11.5 - parent: 2 - - uid: 264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,27.5 - parent: 2 - - uid: 422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-15.5 - parent: 2 - - uid: 1108 - components: - - type: Transform - pos: 2.5,6.5 - parent: 2 - - uid: 1791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,9.5 - parent: 2 - - uid: 1879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,25.5 - parent: 2 - - uid: 3192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,9.5 - parent: 2 - - uid: 3478 - components: - - type: Transform - pos: -37.5,-13.5 - parent: 2 - - uid: 3482 - components: - - type: Transform - pos: -36.5,-15.5 - parent: 2 - - uid: 3483 - components: - - type: Transform - pos: -36.5,-14.5 - parent: 2 - - uid: 3502 - components: - - type: Transform - pos: -36.5,-13.5 - parent: 2 - - uid: 3505 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 2 - - uid: 3506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 2 - - uid: 5625 - components: - - type: Transform - pos: 85.5,-23.5 - parent: 2 - - uid: 5951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,9.5 - parent: 2 - - uid: 5961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,9.5 - parent: 2 - - uid: 5971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 2 - - uid: 6167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,9.5 - parent: 2 - - uid: 6173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,27.5 - parent: 2 - - uid: 7603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,27.5 - parent: 2 - - uid: 7771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,15.5 - parent: 2 - - uid: 8432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,21.5 - parent: 2 - - uid: 8877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,35.5 - parent: 2 - - uid: 9033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-17.5 - parent: 2 - - uid: 9036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-17.5 - parent: 2 - - uid: 9044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-17.5 - parent: 2 - - uid: 9047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-17.5 - parent: 2 - - uid: 9054 - components: - - type: Transform - pos: 81.5,-36.5 - parent: 2 - - uid: 9213 - components: - - type: Transform - pos: -37.5,-15.5 - parent: 2 - - uid: 9867 - components: - - type: Transform - pos: 37.5,13.5 - parent: 2 - - uid: 9868 - components: - - type: Transform - pos: 37.5,17.5 - parent: 2 - - uid: 9869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,9.5 - parent: 2 - - uid: 9871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,10.5 - parent: 2 - - uid: 9872 - components: - - type: Transform - pos: 2.5,2.5 - parent: 2 - - uid: 9874 - components: - - type: Transform - pos: 37.5,18.5 - parent: 2 - - uid: 9878 - components: - - type: Transform - pos: 37.5,12.5 - parent: 2 - - uid: 9879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,9.5 - parent: 2 - - uid: 9880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-17.5 - parent: 2 - - uid: 9881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-17.5 - parent: 2 - - uid: 9882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-17.5 - parent: 2 - - uid: 9886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,9.5 - parent: 2 - - uid: 9889 - components: - - type: Transform - pos: 37.5,10.5 - parent: 2 - - uid: 9890 - components: - - type: Transform - pos: 37.5,11.5 - parent: 2 - - uid: 9927 - components: - - type: Transform - pos: 37.5,15.5 - parent: 2 - - uid: 9928 - components: - - type: Transform - pos: 37.5,14.5 - parent: 2 - - uid: 9929 - components: - - type: Transform - pos: 37.5,16.5 - parent: 2 - - uid: 9938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,11.5 - parent: 2 - - uid: 9939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,12.5 - parent: 2 - - uid: 10098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,25.5 - parent: 2 - - uid: 10649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-58.5 - parent: 2 - - uid: 10650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-57.5 - parent: 2 - - uid: 10653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-61.5 - parent: 2 - - uid: 10897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-55.5 - parent: 2 - - uid: 11148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-59.5 - parent: 2 - - uid: 11183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-1.5 - parent: 2 - - uid: 11413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 2 - - uid: 11470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 2 - - uid: 11552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,3.5 - parent: 2 - - uid: 11554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-13.5 - parent: 2 - - uid: 11555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,5.5 - parent: 2 - - uid: 11559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,4.5 - parent: 2 - - uid: 11560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,1.5 - parent: 2 - - uid: 11685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,27.5 - parent: 2 - - uid: 11715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 2 - - uid: 11799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,18.5 - parent: 2 - - uid: 11806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,19.5 - parent: 2 - - uid: 11815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,9.5 - parent: 2 - - uid: 11869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,26.5 - parent: 2 - - uid: 11971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,28.5 - parent: 2 - - uid: 12016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,6.5 - parent: 2 - - uid: 12018 - components: - - type: Transform - pos: -50.5,-3.5 - parent: 2 - - uid: 12019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-17.5 - parent: 2 - - uid: 12020 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-30.5 - parent: 2 - - uid: 12021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-30.5 - parent: 2 - - uid: 12026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-35.5 - parent: 2 - - uid: 12027 - components: - - type: Transform - pos: -0.5,-49.5 - parent: 2 - - uid: 12028 - components: - - type: Transform - pos: -36.5,-26.5 - parent: 2 - - uid: 12029 - components: - - type: Transform - pos: -36.5,-24.5 - parent: 2 - - uid: 12031 - components: - - type: Transform - pos: -0.5,-31.5 - parent: 2 - - uid: 12032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,6.5 - parent: 2 - - uid: 12033 - components: - - type: Transform - pos: 30.5,4.5 - parent: 2 - - uid: 12034 + - uid: 13611 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-3.5 - parent: 2 - - uid: 12035 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-39.5 - parent: 2 - - uid: 12036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-8.5 + pos: -43.5,99.5 parent: 2 - - uid: 12037 + - uid: 14908 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 2 - - uid: 12038 - components: - - type: Transform - pos: 14.5,33.5 - parent: 2 - - uid: 12039 - components: - - type: Transform - pos: 14.5,34.5 - parent: 2 - - uid: 12040 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-9.5 + pos: -47.5,102.5 parent: 2 - - uid: 12041 + - uid: 33808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-8.5 + rot: 1.5707963267948966 rad + pos: -34.5,104.5 parent: 2 - - uid: 12042 +- proto: AirlockCommandLocked + entities: + - uid: 7609 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-8.5 - parent: 2 - - uid: 12044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,1.5 + pos: -56.5,130.5 parent: 2 - - uid: 12045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,0.5 - parent: 2 - - uid: 12046 + - uid: 7611 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-30.5 + pos: -59.5,135.5 parent: 2 - - uid: 12048 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 2 - - uid: 12049 + - uid: 7612 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 2 - - uid: 12051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-10.5 + pos: -59.5,125.5 parent: 2 - - uid: 12052 + - uid: 7614 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-8.5 + pos: -62.5,127.5 parent: 2 - - uid: 12054 + - uid: 7615 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-8.5 - parent: 2 - - uid: 12055 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 2 - - uid: 12057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-13.5 + pos: -62.5,133.5 parent: 2 - - uid: 12058 + - uid: 7881 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-12.5 - parent: 2 - - uid: 12059 - components: - - type: Transform - pos: 29.5,-23.5 - parent: 2 - - uid: 12060 - components: - - type: Transform - pos: 29.5,-22.5 + pos: -59.5,149.5 parent: 2 - - uid: 12061 + - uid: 37708 components: - type: Transform - pos: 29.5,-20.5 + pos: -8.5,82.5 parent: 2 - - uid: 12062 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 2 - - uid: 12063 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-13.5 - parent: 2 - - uid: 12064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-13.5 - parent: 2 - - uid: 12065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-13.5 - parent: 2 - - uid: 12066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-13.5 - parent: 2 - - uid: 12067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-13.5 - parent: 2 - - uid: 12068 - components: - - type: Transform - pos: -55.5,-14.5 - parent: 2 - - uid: 12069 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-15.5 - parent: 2 - - uid: 12070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-15.5 - parent: 2 - - uid: 12071 +- proto: AirlockDetectiveGlassLocked + entities: + - uid: 1383 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-15.5 - parent: 2 - - uid: 12077 - components: - - type: Transform - pos: -50.5,-7.5 - parent: 2 - - uid: 12078 - components: - - type: Transform - pos: -50.5,-6.5 - parent: 2 - - uid: 12079 - components: - - type: Transform - pos: -50.5,-5.5 - parent: 2 - - uid: 12080 - components: - - type: Transform - pos: -50.5,-2.5 - parent: 2 - - uid: 12081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-1.5 - parent: 2 - - uid: 12082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-1.5 - parent: 2 - - uid: 12083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-1.5 - parent: 2 - - uid: 12084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-1.5 - parent: 2 - - uid: 12085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-1.5 - parent: 2 - - uid: 12086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-1.5 - parent: 2 - - uid: 12087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-1.5 - parent: 2 - - uid: 12088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-1.5 - parent: 2 - - uid: 12089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 2 - - uid: 12090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-1.5 - parent: 2 - - uid: 12091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-1.5 - parent: 2 - - uid: 12092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-1.5 - parent: 2 - - uid: 12093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 2 - - uid: 12094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 2 - - uid: 12095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 2 - - uid: 12096 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-1.5 + pos: -4.5,77.5 parent: 2 - - uid: 12097 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 4616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-1.5 + pos: -110.5,37.5 parent: 2 - - uid: 12098 + - uid: 27299 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,30.5 - parent: 2 - - uid: 12099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-1.5 - parent: 2 - - uid: 12100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-1.5 - parent: 2 - - uid: 12101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-1.5 - parent: 2 - - uid: 12102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-1.5 - parent: 2 - - uid: 12103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 2 - - uid: 12104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-1.5 - parent: 2 - - uid: 12105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 2 - - uid: 12106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 2 - - uid: 12107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 2 - - uid: 12108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 2 - - uid: 12109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 + pos: -127.5,52.5 parent: 2 - - uid: 12110 + - uid: 27755 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-1.5 + pos: -96.5,46.5 parent: 2 - - uid: 12111 + - uid: 27765 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 2 - - uid: 12112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-7.5 + pos: -96.5,47.5 parent: 2 - - uid: 12113 + - uid: 28234 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-5.5 + pos: -104.5,44.5 parent: 2 - - uid: 12114 + - uid: 28235 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-3.5 - parent: 2 - - uid: 12115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-8.5 - parent: 2 - - uid: 12116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 2 - - uid: 12117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-8.5 + pos: -103.5,44.5 parent: 2 - - uid: 12118 +- proto: AirlockEngineeringLocked + entities: + - uid: 208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-8.5 + pos: 72.5,21.5 parent: 2 - - uid: 12119 + - uid: 1505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-8.5 + pos: -62.5,-8.5 parent: 2 - - uid: 12120 + - uid: 3792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-8.5 + pos: -124.5,47.5 parent: 2 - - uid: 12121 + - uid: 4183 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-8.5 - parent: 2 - - uid: 12123 - components: - - type: Transform - pos: -7.5,-9.5 - parent: 2 - - uid: 12124 - components: - - type: Transform - pos: -7.5,-10.5 - parent: 2 - - uid: 12125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-14.5 - parent: 2 - - uid: 12126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-15.5 + pos: -84.5,74.5 parent: 2 - - uid: 12127 + - uid: 5607 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-16.5 + pos: 19.5,172.5 parent: 2 - uid: 12128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-17.5 - parent: 2 - - uid: 12129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-18.5 + pos: -46.5,69.5 parent: 2 - uid: 12130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-19.5 + pos: -83.5,78.5 parent: 2 - - uid: 12131 + - uid: 17311 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-20.5 + pos: 4.5,80.5 parent: 2 - - uid: 12132 + - uid: 17703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 + pos: 83.5,60.5 parent: 2 - - uid: 12133 + - uid: 23164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-21.5 + pos: -123.5,107.5 parent: 2 - - uid: 12134 + - uid: 25686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-14.5 + pos: -108.5,61.5 parent: 2 - - uid: 12135 + - uid: 25726 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-2.5 + pos: -121.5,104.5 parent: 2 - - uid: 12136 + - uid: 26445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-4.5 + pos: -109.5,61.5 parent: 2 - - uid: 12137 + - uid: 27793 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-6.5 + pos: -99.5,52.5 parent: 2 - - uid: 12138 + - uid: 28926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,17.5 + pos: -111.5,47.5 parent: 2 - - uid: 12139 + - uid: 28927 components: - type: Transform - pos: 20.5,7.5 + pos: -111.5,46.5 parent: 2 - - uid: 12140 + - uid: 30610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,6.5 + pos: -95.5,52.5 parent: 2 - - uid: 12141 + - uid: 34838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,6.5 + pos: 0.5,212.5 parent: 2 - - uid: 12143 + - uid: 35051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,22.5 + pos: -102.5,148.5 parent: 2 - - uid: 12144 +- proto: AirlockExternal + entities: + - uid: 385 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,20.5 + pos: 50.5,45.5 parent: 2 - - uid: 12145 + - type: DeviceLinkSource + linkedPorts: + 28344: + - DoorStatus: DoorBolt + - uid: 21041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,11.5 + pos: -82.5,95.5 parent: 2 - - uid: 12147 + - uid: 21262 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,12.5 + pos: -98.5,99.5 parent: 2 - - uid: 12148 + - uid: 28344 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,13.5 + pos: 53.5,45.5 parent: 2 - - uid: 12149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 2 - - uid: 12150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,15.5 - parent: 2 - - uid: 12151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,16.5 - parent: 2 - - uid: 12152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,17.5 - parent: 2 - - uid: 12153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,17.5 - parent: 2 - - uid: 12154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,17.5 - parent: 2 - - uid: 12155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,17.5 - parent: 2 - - uid: 12156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,17.5 - parent: 2 - - uid: 12157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,17.5 - parent: 2 - - uid: 12158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 2 - - uid: 12159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 2 - - uid: 12160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,17.5 - parent: 2 - - uid: 12161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 2 - - uid: 12162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,17.5 - parent: 2 - - uid: 12163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,17.5 - parent: 2 - - uid: 12164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,17.5 - parent: 2 - - uid: 12165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,17.5 - parent: 2 - - uid: 12166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,16.5 - parent: 2 - - uid: 12167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 2 - - uid: 12168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,6.5 - parent: 2 - - uid: 12171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,9.5 - parent: 2 - - uid: 12178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,6.5 - parent: 2 - - uid: 12179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,6.5 - parent: 2 - - uid: 12180 - components: - - type: Transform - pos: 20.5,8.5 - parent: 2 - - uid: 12182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,6.5 - parent: 2 - - uid: 12184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 2 - - uid: 12185 - components: - - type: Transform - pos: -12.5,30.5 - parent: 2 - - uid: 12188 - components: - - type: Transform - pos: -12.5,27.5 - parent: 2 - - uid: 12191 - components: - - type: Transform - pos: -12.5,28.5 - parent: 2 - - uid: 12192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 2 - - uid: 12193 - components: - - type: Transform - pos: -12.5,29.5 - parent: 2 - - uid: 12194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,2.5 - parent: 2 - - uid: 12196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 2 - - uid: 12197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 2 - - uid: 12198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 2 - - uid: 12202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,9.5 - parent: 2 - - uid: 12203 - components: - - type: Transform - pos: 30.5,5.5 - parent: 2 - - uid: 12207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,32.5 - parent: 2 - - uid: 12208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 2 - - uid: 12211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-30.5 - parent: 2 - - uid: 12212 - components: - - type: Transform - pos: -16.5,-19.5 - parent: 2 - - uid: 12213 - components: - - type: Transform - pos: -16.5,-20.5 - parent: 2 - - uid: 12217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,3.5 - parent: 2 - - uid: 12219 + - type: DeviceLinkSource + linkedPorts: + 385: + - DoorStatus: DoorBolt +- proto: AirlockExternalCargoLocked + entities: + - uid: 1091 components: - type: Transform pos: -26.5,-15.5 parent: 2 - - uid: 12223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,24.5 - parent: 2 - - uid: 12224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,20.5 - parent: 2 - - uid: 12225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,20.5 - parent: 2 - - uid: 12226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,20.5 - parent: 2 - - uid: 12231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,26.5 - parent: 2 - - uid: 12233 - components: - - type: Transform - pos: -26.5,-17.5 - parent: 2 - - uid: 12234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,35.5 - parent: 2 - - uid: 12235 - components: - - type: Transform - pos: 17.5,31.5 - parent: 2 - - uid: 12236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 2 - - uid: 12237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,21.5 - parent: 2 - - uid: 12240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,23.5 - parent: 2 - - uid: 12241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,30.5 - parent: 2 - - uid: 12242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,30.5 - parent: 2 - - uid: 12243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,30.5 - parent: 2 - - uid: 12244 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,30.5 - parent: 2 - - uid: 12245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 2 - - uid: 12246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,30.5 - parent: 2 - - uid: 12247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,30.5 - parent: 2 - - uid: 12248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,30.5 - parent: 2 - - uid: 12250 - components: - - type: Transform - pos: 18.5,33.5 - parent: 2 - - uid: 12251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,31.5 - parent: 2 - - uid: 12252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 2 - - uid: 12253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,27.5 - parent: 2 - - uid: 12254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,26.5 - parent: 2 - - uid: 12255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,26.5 - parent: 2 - - uid: 12256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,26.5 - parent: 2 - - uid: 12257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,26.5 - parent: 2 - - uid: 12258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,26.5 - parent: 2 - - uid: 12259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 2 - - uid: 12260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,26.5 - parent: 2 - - uid: 12261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,26.5 - parent: 2 - - uid: 12262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,26.5 - parent: 2 - - uid: 12263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,26.5 - parent: 2 - - uid: 12264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,26.5 - parent: 2 - - uid: 12265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,26.5 - parent: 2 - - uid: 12266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,26.5 - parent: 2 - - uid: 12267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,26.5 - parent: 2 - - uid: 12268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,26.5 - parent: 2 - - uid: 12269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,26.5 - parent: 2 - - uid: 12270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,26.5 - parent: 2 - - uid: 12271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,26.5 - parent: 2 - - uid: 12276 - components: - - type: Transform - pos: 14.5,32.5 - parent: 2 - - uid: 12277 - components: - - type: Transform - pos: 14.5,31.5 - parent: 2 - - uid: 12290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 2 - - uid: 12291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 2 - - uid: 12292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 2 - - uid: 12293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-1.5 - parent: 2 - - uid: 12294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 2 - - uid: 12295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 2 - - uid: 12296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 2 - - uid: 12297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-1.5 - parent: 2 - - uid: 12298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,8.5 - parent: 2 - - uid: 12299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-1.5 - parent: 2 - - uid: 12301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,7.5 - parent: 2 - - uid: 12302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 2 - - uid: 12303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,5.5 - parent: 2 - - uid: 12304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,4.5 - parent: 2 - - uid: 12305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 2 - - uid: 12306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 2 - - uid: 12307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 2 - - uid: 12308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,10.5 - parent: 2 - - uid: 12309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 2 - - uid: 12310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 2 - - uid: 12311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 2 - - uid: 12313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 2 - - uid: 12314 - components: - - type: Transform - pos: -16.5,18.5 - parent: 2 - - uid: 12315 - components: - - type: Transform - pos: -16.5,17.5 - parent: 2 - - uid: 12316 - components: - - type: Transform - pos: -16.5,16.5 - parent: 2 - - uid: 12317 - components: - - type: Transform - pos: -16.5,15.5 - parent: 2 - - uid: 12318 - components: - - type: Transform - pos: -16.5,14.5 - parent: 2 - - uid: 12319 - components: - - type: Transform - pos: -16.5,13.5 - parent: 2 - - uid: 12321 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-22.5 - parent: 2 - - uid: 12322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-30.5 - parent: 2 - - uid: 12323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-30.5 - parent: 2 - - uid: 12324 - components: - - type: Transform - pos: -36.5,-29.5 - parent: 2 - - uid: 12326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,3.5 - parent: 2 - - uid: 12327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,3.5 - parent: 2 - - uid: 12328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,3.5 - parent: 2 - - uid: 12329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,3.5 - parent: 2 - - uid: 12330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,3.5 - parent: 2 - - uid: 12331 - components: - - type: Transform - pos: 36.5,2.5 - parent: 2 - - uid: 12332 - components: - - type: Transform - pos: 36.5,1.5 - parent: 2 - - uid: 12333 - components: - - type: Transform - pos: 36.5,0.5 - parent: 2 - - uid: 12334 - components: - - type: Transform - pos: 36.5,-0.5 - parent: 2 - - uid: 12335 - components: - - type: Transform - pos: 36.5,-1.5 - parent: 2 - - uid: 12336 - components: - - type: Transform - pos: 36.5,-2.5 - parent: 2 - - uid: 12337 - components: - - type: Transform - pos: 36.5,-3.5 - parent: 2 - - uid: 12338 - components: - - type: Transform - pos: 36.5,-4.5 - parent: 2 - - uid: 12339 - components: - - type: Transform - pos: 36.5,-5.5 - parent: 2 - - uid: 12340 - components: - - type: Transform - pos: 36.5,-6.5 - parent: 2 - - uid: 12341 - components: - - type: Transform - pos: 36.5,-7.5 - parent: 2 - - uid: 12342 - components: - - type: Transform - pos: 36.5,-8.5 - parent: 2 - - uid: 12343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,3.5 - parent: 2 - - uid: 12344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,3.5 - parent: 2 - - uid: 12345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,3.5 - parent: 2 - - uid: 12346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,3.5 - parent: 2 - - uid: 12347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,3.5 - parent: 2 - - uid: 12348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,3.5 - parent: 2 - - uid: 12349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-0.5 - parent: 2 - - uid: 12350 - components: - - type: Transform - pos: 48.5,-1.5 - parent: 2 - - uid: 12351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,3.5 - parent: 2 - - uid: 12352 - components: - - type: Transform - pos: 45.5,4.5 - parent: 2 - - uid: 12353 - components: - - type: Transform - pos: 45.5,5.5 - parent: 2 - - uid: 12354 - components: - - type: Transform - pos: 45.5,6.5 - parent: 2 - - uid: 12355 - components: - - type: Transform - pos: 45.5,7.5 - parent: 2 - - uid: 12356 - components: - - type: Transform - pos: 45.5,8.5 - parent: 2 - - uid: 12357 - components: - - type: Transform - pos: 45.5,9.5 - parent: 2 - - uid: 12358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,10.5 - parent: 2 - - uid: 12359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,10.5 - parent: 2 - - uid: 12360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,10.5 - parent: 2 - - uid: 12361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,10.5 - parent: 2 - - uid: 12362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,10.5 - parent: 2 - - uid: 12363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,10.5 - parent: 2 - - uid: 12364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,10.5 - parent: 2 - - uid: 12365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,10.5 - parent: 2 - - uid: 12366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,9.5 - parent: 2 - - uid: 12367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,8.5 - parent: 2 - - uid: 12368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,7.5 - parent: 2 - - uid: 12369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,6.5 - parent: 2 - - uid: 12370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,4.5 - parent: 2 - - uid: 12371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,3.5 - parent: 2 - - uid: 12372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,2.5 - parent: 2 - - uid: 12373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,2.5 - parent: 2 - - uid: 12374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,2.5 - parent: 2 - - uid: 12375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,0.5 - parent: 2 - - uid: 12376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,0.5 - parent: 2 - - uid: 12377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,0.5 - parent: 2 - - uid: 12378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,0.5 - parent: 2 - - uid: 12379 - components: - - type: Transform - pos: 61.5,1.5 - parent: 2 - - uid: 12380 - components: - - type: Transform - pos: 61.5,2.5 - parent: 2 - - uid: 12381 - components: - - type: Transform - pos: 61.5,3.5 - parent: 2 - - uid: 12382 - components: - - type: Transform - pos: 61.5,4.5 - parent: 2 - - uid: 12383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,5.5 - parent: 2 - - uid: 12384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,5.5 - parent: 2 - - uid: 12385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,5.5 - parent: 2 - - uid: 12386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,5.5 - parent: 2 - - uid: 12387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,5.5 - parent: 2 - - uid: 12388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,5.5 - parent: 2 - - uid: 12389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-34.5 - parent: 2 - - uid: 12391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,0.5 - parent: 2 - - uid: 12392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-0.5 - parent: 2 - - uid: 12393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,0.5 - parent: 2 - - uid: 12394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-4.5 - parent: 2 - - uid: 12395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-3.5 - parent: 2 - - uid: 12396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-2.5 - parent: 2 - - uid: 12397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-0.5 - parent: 2 - - uid: 12398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-1.5 - parent: 2 - - uid: 12399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-1.5 - parent: 2 - - uid: 12401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,32.5 - parent: 2 - - uid: 12402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,32.5 - parent: 2 - - uid: 12404 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 2 - - uid: 12405 - components: - - type: Transform - pos: -50.5,-17.5 - parent: 2 - - uid: 12406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-18.5 - parent: 2 - - uid: 12407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-18.5 - parent: 2 - - uid: 12408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-18.5 - parent: 2 - - uid: 12409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-18.5 - parent: 2 - - uid: 12410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-18.5 - parent: 2 - - uid: 12411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-18.5 - parent: 2 - - uid: 12412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-18.5 - parent: 2 - - uid: 12413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-18.5 - parent: 2 - - uid: 12414 - components: - - type: Transform - pos: 36.5,-33.5 - parent: 2 - - uid: 12415 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-19.5 - parent: 2 - - uid: 12423 - components: - - type: Transform - pos: -50.5,-4.5 - parent: 2 - - uid: 12424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-16.5 - parent: 2 - - uid: 12425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-15.5 - parent: 2 - - uid: 12426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-16.5 - parent: 2 - - uid: 12429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-16.5 - parent: 2 - - uid: 12430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-15.5 - parent: 2 - - uid: 12431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-14.5 - parent: 2 - - uid: 12432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-13.5 - parent: 2 - - uid: 12433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-12.5 - parent: 2 - - uid: 12434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-11.5 - parent: 2 - - uid: 12435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-10.5 - parent: 2 - - uid: 12436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-9.5 - parent: 2 - - uid: 12437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 2 - - uid: 12438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-8.5 - parent: 2 - - uid: 12439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 2 - - uid: 12441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 2 - - uid: 12442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-8.5 - parent: 2 - - uid: 12443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 2 - - uid: 12444 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 2 - - uid: 12445 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 2 - - uid: 12446 - components: - - type: Transform - pos: -26.5,-11.5 - parent: 2 - - uid: 12447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 2 - - uid: 12448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-34.5 - parent: 2 - - uid: 12449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-33.5 - parent: 2 - - uid: 12451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-22.5 - parent: 2 - - uid: 12452 - components: - - type: Transform - pos: -36.5,-23.5 - parent: 2 - - uid: 12453 - components: - - type: Transform - pos: -36.5,-25.5 - parent: 2 - - uid: 12454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-59.5 - parent: 2 - - uid: 12455 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-67.5 - parent: 2 - - uid: 12456 - components: - - type: Transform - pos: -36.5,-27.5 - parent: 2 - - uid: 12457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-22.5 - parent: 2 - - uid: 12458 - components: - - type: Transform - pos: -36.5,-28.5 - parent: 2 - - uid: 12459 - components: - - type: Transform - pos: -0.5,-55.5 - parent: 2 - - uid: 12460 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-59.5 - parent: 2 - - uid: 12461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 2 - - uid: 12462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-20.5 - parent: 2 - - uid: 12463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-16.5 - parent: 2 - - uid: 12464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-14.5 - parent: 2 - - uid: 12465 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-13.5 - parent: 2 - - uid: 12466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-18.5 - parent: 2 - - uid: 12467 - components: - - type: Transform - pos: -32.5,-21.5 - parent: 2 - - uid: 12468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-20.5 - parent: 2 - - uid: 12469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-20.5 - parent: 2 - - uid: 12470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-20.5 - parent: 2 - - uid: 12473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-25.5 - parent: 2 - - uid: 12474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 2 - - uid: 12475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-24.5 - parent: 2 - - uid: 12476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-24.5 - parent: 2 - - uid: 12477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-23.5 - parent: 2 - - uid: 12478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-22.5 - parent: 2 - - uid: 12479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-21.5 - parent: 2 - - uid: 12480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,9.5 - parent: 2 - - uid: 12481 - components: - - type: Transform - pos: -37.5,-51.5 - parent: 2 - - uid: 12482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-52.5 - parent: 2 - - uid: 12483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-52.5 - parent: 2 - - uid: 12484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-50.5 - parent: 2 - - uid: 12485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-51.5 - parent: 2 - - uid: 12486 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-52.5 - parent: 2 - - uid: 12487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-52.5 - parent: 2 - - uid: 12488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-52.5 - parent: 2 - - uid: 12489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-52.5 - parent: 2 - - uid: 12490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-30.5 - parent: 2 - - uid: 12491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-44.5 - parent: 2 - - uid: 12492 - components: - - type: Transform - pos: -12.5,-45.5 - parent: 2 - - uid: 12493 - components: - - type: Transform - pos: -12.5,-46.5 - parent: 2 - - uid: 12494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-47.5 - parent: 2 - - uid: 12495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-47.5 - parent: 2 - - uid: 12496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-47.5 - parent: 2 - - uid: 12497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-47.5 - parent: 2 - - uid: 12498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-46.5 - parent: 2 - - uid: 12499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-45.5 - parent: 2 - - uid: 12500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-44.5 - parent: 2 - - uid: 12501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-43.5 - parent: 2 - - uid: 12502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-42.5 - parent: 2 - - uid: 12503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-41.5 - parent: 2 - - uid: 12504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-40.5 - parent: 2 - - uid: 12505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-39.5 - parent: 2 - - uid: 12506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-38.5 - parent: 2 - - uid: 12507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-37.5 - parent: 2 - - uid: 12508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-36.5 - parent: 2 - - uid: 12509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-35.5 - parent: 2 - - uid: 12510 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-34.5 - parent: 2 - - uid: 12511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 2 - - uid: 12512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 2 - - uid: 12513 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-33.5 - parent: 2 - - uid: 12514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-33.5 - parent: 2 - - uid: 12515 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-33.5 - parent: 2 - - uid: 12516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-33.5 - parent: 2 - - uid: 12517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-33.5 - parent: 2 - - uid: 12518 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 - parent: 2 - - uid: 12519 - components: - - type: Transform - pos: -26.5,-32.5 - parent: 2 - - uid: 12520 - components: - - type: Transform - pos: -26.5,-31.5 - parent: 2 - - uid: 12521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-30.5 - parent: 2 - - uid: 12522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 2 - - uid: 12523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 2 - - uid: 12524 - components: - - type: Transform - pos: -0.5,-58.5 - parent: 2 - - uid: 12525 - components: - - type: Transform - pos: -0.5,-57.5 - parent: 2 - - uid: 12526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-59.5 - parent: 2 - - uid: 12527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-59.5 - parent: 2 - - uid: 12530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-56.5 - parent: 2 - - uid: 12531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-56.5 - parent: 2 - - uid: 12532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-56.5 - parent: 2 - - uid: 12533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-59.5 - parent: 2 - - uid: 12534 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-59.5 - parent: 2 - - uid: 12535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-59.5 - parent: 2 - - uid: 12536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-59.5 - parent: 2 - - uid: 12537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-59.5 - parent: 2 - - uid: 12538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-59.5 - parent: 2 - - uid: 12539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-59.5 - parent: 2 - - uid: 12540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-59.5 - parent: 2 - - uid: 12541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-59.5 - parent: 2 - - uid: 12542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-59.5 - parent: 2 - - uid: 12546 - components: - - type: Transform - pos: -18.5,-58.5 - parent: 2 - - uid: 12547 - components: - - type: Transform - pos: -18.5,-57.5 - parent: 2 - - uid: 12548 - components: - - type: Transform - pos: -18.5,-56.5 - parent: 2 - - uid: 12549 - components: - - type: Transform - pos: -18.5,-55.5 - parent: 2 - - uid: 12550 - components: - - type: Transform - pos: -18.5,-54.5 - parent: 2 - - uid: 12551 - components: - - type: Transform - pos: -18.5,-53.5 - parent: 2 - - uid: 12552 - components: - - type: Transform - pos: -18.5,-52.5 - parent: 2 - - uid: 12553 - components: - - type: Transform - pos: -18.5,-51.5 - parent: 2 - - uid: 12554 - components: - - type: Transform - pos: -18.5,-50.5 - parent: 2 - - uid: 12555 - components: - - type: Transform - pos: -18.5,-49.5 - parent: 2 - - uid: 12556 - components: - - type: Transform - pos: -18.5,-48.5 - parent: 2 - - uid: 12557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-67.5 - parent: 2 - - uid: 12558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-67.5 - parent: 2 - - uid: 12560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-65.5 - parent: 2 - - uid: 12561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-64.5 - parent: 2 - - uid: 12562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-63.5 - parent: 2 - - uid: 12563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-62.5 - parent: 2 - - uid: 12565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-60.5 - parent: 2 - - uid: 12566 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-59.5 - parent: 2 - - uid: 12567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-58.5 - parent: 2 - - uid: 12568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-57.5 - parent: 2 - - uid: 12569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-56.5 - parent: 2 - - uid: 12570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-56.5 - parent: 2 - - uid: 12571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-56.5 - parent: 2 - - uid: 12579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-67.5 - parent: 2 - - uid: 12580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-67.5 - parent: 2 - - uid: 12581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-67.5 - parent: 2 - - uid: 12582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-32.5 - parent: 2 - - uid: 12583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-32.5 - parent: 2 - - uid: 12584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-9.5 - parent: 2 - - uid: 12585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,9.5 - parent: 2 - - uid: 12586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-16.5 - parent: 2 - - uid: 12587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-32.5 - parent: 2 - - uid: 12588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-24.5 - parent: 2 - - uid: 12589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-39.5 - parent: 2 - - uid: 12590 - components: - - type: Transform - pos: 35.5,-40.5 - parent: 2 - - uid: 12591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-23.5 - parent: 2 - - uid: 12592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-23.5 - parent: 2 - - uid: 12593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-26.5 - parent: 2 - - uid: 12594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-23.5 - parent: 2 - - uid: 12595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-32.5 - parent: 2 - - uid: 12596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-54.5 - parent: 2 - - uid: 12597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-53.5 - parent: 2 - - uid: 12598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-52.5 - parent: 2 - - uid: 12599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-51.5 - parent: 2 - - uid: 12600 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-50.5 - parent: 2 - - uid: 12601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-48.5 - parent: 2 - - uid: 12602 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-47.5 - parent: 2 - - uid: 12603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-46.5 - parent: 2 - - uid: 12604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-45.5 - parent: 2 - - uid: 12605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-44.5 - parent: 2 - - uid: 12606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-43.5 - parent: 2 - - uid: 12607 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-42.5 - parent: 2 - - uid: 12608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-41.5 - parent: 2 - - uid: 12609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-40.5 - parent: 2 - - uid: 12610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-39.5 - parent: 2 - - uid: 12611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-38.5 - parent: 2 - - uid: 12612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-38.5 - parent: 2 - - uid: 12613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-38.5 - parent: 2 - - uid: 12614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-38.5 - parent: 2 - - uid: 12615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-38.5 - parent: 2 - - uid: 12616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-38.5 - parent: 2 - - uid: 12617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-38.5 - parent: 2 - - uid: 12618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-38.5 - parent: 2 - - uid: 12619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-38.5 - parent: 2 - - uid: 12620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 2 - - uid: 12621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-38.5 - parent: 2 - - uid: 12622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-38.5 - parent: 2 - - uid: 12623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-38.5 - parent: 2 - - uid: 12624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-38.5 - parent: 2 - - uid: 12625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-38.5 - parent: 2 - - uid: 12626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-38.5 - parent: 2 - - uid: 12627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-38.5 - parent: 2 - - uid: 12628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-38.5 - parent: 2 - - uid: 12629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-38.5 - parent: 2 - - uid: 12630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-38.5 - parent: 2 - - uid: 12631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-38.5 - parent: 2 - - uid: 12632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-38.5 - parent: 2 - - uid: 12633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-38.5 - parent: 2 - - uid: 12634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-38.5 - parent: 2 - - uid: 12635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-38.5 - parent: 2 - - uid: 12636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-38.5 - parent: 2 - - uid: 12637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-38.5 - parent: 2 - - uid: 12638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-38.5 - parent: 2 - - uid: 12639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-38.5 - parent: 2 - - uid: 12640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-38.5 - parent: 2 - - uid: 12641 - components: - - type: Transform - pos: 32.5,-39.5 - parent: 2 - - uid: 12642 - components: - - type: Transform - pos: 32.5,-40.5 - parent: 2 - - uid: 12643 - components: - - type: Transform - pos: 32.5,-41.5 - parent: 2 - - uid: 12644 - components: - - type: Transform - pos: 32.5,-42.5 - parent: 2 - - uid: 12645 - components: - - type: Transform - pos: 32.5,-43.5 - parent: 2 - - uid: 12646 - components: - - type: Transform - pos: 32.5,-44.5 - parent: 2 - - uid: 12647 - components: - - type: Transform - pos: 32.5,-45.5 - parent: 2 - - uid: 12648 - components: - - type: Transform - pos: 32.5,-46.5 - parent: 2 - - uid: 12649 - components: - - type: Transform - pos: 32.5,-47.5 - parent: 2 - - uid: 12650 - components: - - type: Transform - pos: 32.5,-48.5 - parent: 2 - - uid: 12651 - components: - - type: Transform - pos: 32.5,-49.5 - parent: 2 - - uid: 12652 - components: - - type: Transform - pos: 32.5,-50.5 - parent: 2 - - uid: 12653 - components: - - type: Transform - pos: 32.5,-51.5 - parent: 2 - - uid: 12654 - components: - - type: Transform - pos: 32.5,-52.5 - parent: 2 - - uid: 12655 - components: - - type: Transform - pos: 32.5,-53.5 - parent: 2 - - uid: 12656 - components: - - type: Transform - pos: 32.5,-54.5 - parent: 2 - - uid: 12657 - components: - - type: Transform - pos: 32.5,-55.5 - parent: 2 - - uid: 12658 - components: - - type: Transform - pos: 32.5,-56.5 - parent: 2 - - uid: 12659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-57.5 - parent: 2 - - uid: 12660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-57.5 - parent: 2 - - uid: 12661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-57.5 - parent: 2 - - uid: 12662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-58.5 - parent: 2 - - uid: 12663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-59.5 - parent: 2 - - uid: 12664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-60.5 - parent: 2 - - uid: 12665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-61.5 - parent: 2 - - uid: 12666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-62.5 - parent: 2 - - uid: 12667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-62.5 - parent: 2 - - uid: 12668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-62.5 - parent: 2 - - uid: 12669 - components: - - type: Transform - pos: 40.5,-63.5 - parent: 2 - - uid: 12670 - components: - - type: Transform - pos: 40.5,-64.5 - parent: 2 - - uid: 12671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-65.5 - parent: 2 - - uid: 12672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-65.5 - parent: 2 - - uid: 12673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-65.5 - parent: 2 - - uid: 12674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-65.5 - parent: 2 - - uid: 12675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-65.5 - parent: 2 - - uid: 12676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-65.5 - parent: 2 - - uid: 12677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-64.5 - parent: 2 - - uid: 12678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-63.5 - parent: 2 - - uid: 12679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-62.5 - parent: 2 - - uid: 12680 - components: - - type: Transform - pos: 49.5,-61.5 - parent: 2 - - uid: 12681 - components: - - type: Transform - pos: 49.5,-60.5 - parent: 2 - - uid: 12682 - components: - - type: Transform - pos: 49.5,-59.5 - parent: 2 - - uid: 12683 - components: - - type: Transform - pos: 49.5,-58.5 - parent: 2 - - uid: 12684 - components: - - type: Transform - pos: 49.5,-57.5 - parent: 2 - - uid: 12685 - components: - - type: Transform - pos: 49.5,-56.5 - parent: 2 - - uid: 12686 - components: - - type: Transform - pos: 49.5,-55.5 - parent: 2 - - uid: 12687 - components: - - type: Transform - pos: 49.5,-54.5 - parent: 2 - - uid: 12688 - components: - - type: Transform - pos: 49.5,-53.5 - parent: 2 - - uid: 12689 - components: - - type: Transform - pos: 49.5,-52.5 - parent: 2 - - uid: 12690 - components: - - type: Transform - pos: 49.5,-51.5 - parent: 2 - - uid: 12691 - components: - - type: Transform - pos: 49.5,-50.5 - parent: 2 - - uid: 12692 - components: - - type: Transform - pos: 49.5,-38.5 - parent: 2 - - uid: 12693 - components: - - type: Transform - pos: 49.5,-39.5 - parent: 2 - - uid: 12694 - components: - - type: Transform - pos: 49.5,-41.5 - parent: 2 - - uid: 12695 - components: - - type: Transform - pos: 49.5,-45.5 - parent: 2 - - uid: 12696 - components: - - type: Transform - pos: 49.5,-44.5 - parent: 2 - - uid: 12697 - components: - - type: Transform - pos: 49.5,-43.5 - parent: 2 - - uid: 12698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-17.5 - parent: 2 - - uid: 12699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-18.5 - parent: 2 - - uid: 12700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-19.5 - parent: 2 - - uid: 12701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-20.5 - parent: 2 - - uid: 12702 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-21.5 - parent: 2 - - uid: 12703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-22.5 - parent: 2 - - uid: 12704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-23.5 - parent: 2 - - uid: 12705 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-24.5 - parent: 2 - - uid: 12706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-25.5 - parent: 2 - - uid: 12707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-25.5 - parent: 2 - - uid: 12708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 2 - - uid: 12709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 2 - - uid: 12710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 2 - - uid: 12711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-25.5 - parent: 2 - - uid: 12712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-25.5 - parent: 2 - - uid: 12713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-25.5 - parent: 2 - - uid: 12714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-26.5 - parent: 2 - - uid: 12715 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-27.5 - parent: 2 - - uid: 12716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-28.5 - parent: 2 - - uid: 12717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-29.5 - parent: 2 - - uid: 12718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-31.5 - parent: 2 - - uid: 12719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-32.5 - parent: 2 - - uid: 12720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-33.5 - parent: 2 - - uid: 12721 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-34.5 - parent: 2 - - uid: 12722 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-36.5 - parent: 2 - - uid: 12723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-37.5 - parent: 2 - - uid: 12724 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-32.5 - parent: 2 - - uid: 12725 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-33.5 - parent: 2 - - uid: 12726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-34.5 - parent: 2 - - uid: 12727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-35.5 - parent: 2 - - uid: 12728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-35.5 - parent: 2 - - uid: 12729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-35.5 - parent: 2 - - uid: 12730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-35.5 - parent: 2 - - uid: 12731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-35.5 - parent: 2 - - uid: 12732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-35.5 - parent: 2 - - uid: 12733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-32.5 - parent: 2 - - uid: 12734 - components: - - type: Transform - pos: 40.5,-34.5 - parent: 2 - - uid: 12735 - components: - - type: Transform - pos: 40.5,-36.5 - parent: 2 - - uid: 12736 - components: - - type: Transform - pos: 40.5,-37.5 - parent: 2 - - uid: 12737 - components: - - type: Transform - pos: 40.5,-38.5 - parent: 2 - - uid: 12738 - components: - - type: Transform - pos: 40.5,-40.5 - parent: 2 - - uid: 12739 - components: - - type: Transform - pos: 40.5,-41.5 - parent: 2 - - uid: 12740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-42.5 - parent: 2 - - uid: 12741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-42.5 - parent: 2 - - uid: 12742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-42.5 - parent: 2 - - uid: 12743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-42.5 - parent: 2 - - uid: 12744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-42.5 - parent: 2 - - uid: 12745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-42.5 - parent: 2 - - uid: 12746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-42.5 - parent: 2 - - uid: 12747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-42.5 - parent: 2 - - uid: 12748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-46.5 - parent: 2 - - uid: 12749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-45.5 - parent: 2 - - uid: 12750 - components: - - type: Transform - pos: 40.5,-46.5 - parent: 2 - - uid: 12751 - components: - - type: Transform - pos: 40.5,-47.5 - parent: 2 - - uid: 12752 - components: - - type: Transform - pos: 40.5,-48.5 - parent: 2 - - uid: 12753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-49.5 - parent: 2 - - uid: 12754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-49.5 - parent: 2 - - uid: 12755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-49.5 - parent: 2 - - uid: 12756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-49.5 - parent: 2 - - uid: 12757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-49.5 - parent: 2 - - uid: 12758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-49.5 - parent: 2 - - uid: 12759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-49.5 - parent: 2 - - uid: 12760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-49.5 - parent: 2 - - uid: 12761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-35.5 - parent: 2 - - uid: 12762 - components: - - type: Transform - pos: 35.5,-42.5 - parent: 2 - - uid: 12763 - components: - - type: Transform - pos: 35.5,-41.5 - parent: 2 - - uid: 12764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-39.5 - parent: 2 - - uid: 12765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-23.5 - parent: 2 - - uid: 12766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-39.5 - parent: 2 - - uid: 12767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-23.5 - parent: 2 - - uid: 12768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-59.5 - parent: 2 - - uid: 12769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-58.5 - parent: 2 - - uid: 12770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-57.5 - parent: 2 - - uid: 12771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-56.5 - parent: 2 - - uid: 12772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-55.5 - parent: 2 - - uid: 12773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-54.5 - parent: 2 - - uid: 12774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-53.5 - parent: 2 - - uid: 12775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-52.5 - parent: 2 - - uid: 12776 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-51.5 - parent: 2 - - uid: 12777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-50.5 - parent: 2 - - uid: 12781 - components: - - type: Transform - pos: 49.5,-27.5 - parent: 2 - - uid: 12782 - components: - - type: Transform - pos: 49.5,-48.5 - parent: 2 - - uid: 12783 - components: - - type: Transform - pos: 49.5,-47.5 - parent: 2 - - uid: 12784 - components: - - type: Transform - pos: 49.5,-46.5 - parent: 2 - - uid: 12785 - components: - - type: Transform - pos: 49.5,-37.5 - parent: 2 - - uid: 12786 - components: - - type: Transform - pos: 49.5,-36.5 - parent: 2 - - uid: 12787 - components: - - type: Transform - pos: 49.5,-35.5 - parent: 2 - - uid: 12788 - components: - - type: Transform - pos: 49.5,-34.5 - parent: 2 - - uid: 12789 - components: - - type: Transform - pos: 49.5,-33.5 - parent: 2 - - uid: 12790 - components: - - type: Transform - pos: 49.5,-32.5 - parent: 2 - - uid: 12791 - components: - - type: Transform - pos: 49.5,-31.5 - parent: 2 - - uid: 12792 - components: - - type: Transform - pos: 49.5,-30.5 - parent: 2 - - uid: 12793 - components: - - type: Transform - pos: 49.5,-29.5 - parent: 2 - - uid: 12794 - components: - - type: Transform - pos: 49.5,-28.5 - parent: 2 - - uid: 12795 - components: - - type: Transform - pos: 49.5,-26.5 - parent: 2 - - uid: 12796 - components: - - type: Transform - pos: 49.5,-25.5 - parent: 2 - - uid: 12797 - components: - - type: Transform - pos: 49.5,-24.5 - parent: 2 - - uid: 12798 - components: - - type: Transform - pos: 49.5,-23.5 - parent: 2 - - uid: 12799 - components: - - type: Transform - pos: 49.5,-22.5 - parent: 2 - - uid: 12800 - components: - - type: Transform - pos: 49.5,-21.5 - parent: 2 - - uid: 12801 - components: - - type: Transform - pos: 49.5,-20.5 - parent: 2 - - uid: 12802 - components: - - type: Transform - pos: 49.5,-19.5 - parent: 2 - - uid: 12803 - components: - - type: Transform - pos: 49.5,-18.5 - parent: 2 - - uid: 12806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-40.5 - parent: 2 - - uid: 12807 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-62.5 - parent: 2 - - uid: 12808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-61.5 - parent: 2 - - uid: 12809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-61.5 - parent: 2 - - uid: 12810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-61.5 - parent: 2 - - uid: 12811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-61.5 - parent: 2 - - uid: 12812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-61.5 - parent: 2 - - uid: 12813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-61.5 - parent: 2 - - uid: 12814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-61.5 - parent: 2 - - uid: 12815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-61.5 - parent: 2 - - uid: 12816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-61.5 - parent: 2 - - uid: 12817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-61.5 - parent: 2 - - uid: 12818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-61.5 - parent: 2 - - uid: 12819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-61.5 - parent: 2 - - uid: 12820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-61.5 - parent: 2 - - uid: 12821 - components: - - type: Transform - pos: 65.5,-59.5 - parent: 2 - - uid: 12822 - components: - - type: Transform - pos: 65.5,-58.5 - parent: 2 - - uid: 12823 - components: - - type: Transform - pos: 65.5,-57.5 - parent: 2 - - uid: 12824 - components: - - type: Transform - pos: 66.5,-55.5 - parent: 2 - - uid: 12825 - components: - - type: Transform - pos: 66.5,-54.5 - parent: 2 - - uid: 12826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-60.5 - parent: 2 - - uid: 12827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-60.5 - parent: 2 - - uid: 12828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-60.5 - parent: 2 - - uid: 12829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-60.5 - parent: 2 - - uid: 12830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-60.5 - parent: 2 - - uid: 12831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-60.5 - parent: 2 - - uid: 12832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-60.5 - parent: 2 - - uid: 12833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-60.5 - parent: 2 - - uid: 12834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-60.5 - parent: 2 - - uid: 12835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-60.5 - parent: 2 - - uid: 12836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-60.5 - parent: 2 - - uid: 12837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-60.5 - parent: 2 - - uid: 12838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-60.5 - parent: 2 - - uid: 12839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-60.5 - parent: 2 - - uid: 12840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-60.5 - parent: 2 - - uid: 12841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-60.5 - parent: 2 - - uid: 12842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-59.5 - parent: 2 - - uid: 12843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-58.5 - parent: 2 - - uid: 12844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-57.5 - parent: 2 - - uid: 12845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-56.5 - parent: 2 - - uid: 12846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-55.5 - parent: 2 - - uid: 12847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-54.5 - parent: 2 - - uid: 12848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-53.5 - parent: 2 - - uid: 12849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-52.5 - parent: 2 - - uid: 12850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-51.5 - parent: 2 - - uid: 12851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-50.5 - parent: 2 - - uid: 12852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-49.5 - parent: 2 - - uid: 12853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-48.5 - parent: 2 - - uid: 12854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-47.5 - parent: 2 - - uid: 12855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-46.5 - parent: 2 - - uid: 12856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-45.5 - parent: 2 - - uid: 12857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-44.5 - parent: 2 - - uid: 12858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-43.5 - parent: 2 - - uid: 12859 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-42.5 - parent: 2 - - uid: 12860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-41.5 - parent: 2 - - uid: 12861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-39.5 - parent: 2 - - uid: 12862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-38.5 - parent: 2 - - uid: 12863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-37.5 - parent: 2 - - uid: 12873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 2 - - uid: 12879 - components: - - type: Transform - pos: 81.5,-35.5 - parent: 2 - - uid: 12880 - components: - - type: Transform - pos: 81.5,-34.5 - parent: 2 - - uid: 12881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-33.5 - parent: 2 - - uid: 12882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-33.5 - parent: 2 - - uid: 12883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-31.5 - parent: 2 - - uid: 12884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-30.5 - parent: 2 - - uid: 12885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-29.5 - parent: 2 - - uid: 12886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-28.5 - parent: 2 - - uid: 12887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-27.5 - parent: 2 - - uid: 12888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-26.5 - parent: 2 - - uid: 12889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-25.5 - parent: 2 - - uid: 12890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-24.5 - parent: 2 - - uid: 12895 - components: - - type: Transform - pos: 85.5,-22.5 - parent: 2 - - uid: 12896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-20.5 - parent: 2 - - uid: 12897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-21.5 - parent: 2 - - uid: 12898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-21.5 - parent: 2 - - uid: 12899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-21.5 - parent: 2 - - uid: 12900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-21.5 - parent: 2 - - uid: 12901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-21.5 - parent: 2 - - uid: 12902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-21.5 - parent: 2 - - uid: 12903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-21.5 - parent: 2 - - uid: 12904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-21.5 - parent: 2 - - uid: 12905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-21.5 - parent: 2 - - uid: 12906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-21.5 - parent: 2 - - uid: 12907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-19.5 - parent: 2 - - uid: 12908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-18.5 - parent: 2 - - uid: 12909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-24.5 - parent: 2 - - uid: 12913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-23.5 - parent: 2 - - uid: 12920 - components: - - type: Transform - pos: -16.5,-21.5 - parent: 2 - - uid: 12921 - components: - - type: Transform - pos: -16.5,-22.5 - parent: 2 - - uid: 12922 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 2 - - uid: 12924 - components: - - type: Transform - pos: -16.5,-25.5 - parent: 2 - - uid: 12925 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 2 - - uid: 12926 - components: - - type: Transform - pos: -16.5,-27.5 - parent: 2 - - uid: 12927 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 2 - - uid: 12928 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 2 - - uid: 12929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 2 - - uid: 12930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-30.5 - parent: 2 - - uid: 12931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-30.5 - parent: 2 - - uid: 12932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-30.5 - parent: 2 - - uid: 12933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-30.5 - parent: 2 - - uid: 12934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-30.5 - parent: 2 - - uid: 12935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 2 - - uid: 12936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-14.5 - parent: 2 - - uid: 12937 - components: - - type: Transform - pos: -7.5,-28.5 - parent: 2 - - uid: 12938 - components: - - type: Transform - pos: -7.5,-27.5 - parent: 2 - - uid: 12939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 2 - - uid: 12940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-26.5 - parent: 2 - - uid: 12941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-30.5 - parent: 2 - - uid: 12942 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-30.5 - parent: 2 - - uid: 12943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-30.5 - parent: 2 - - uid: 12944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-30.5 - parent: 2 - - uid: 12945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-30.5 - parent: 2 - - uid: 12946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-40.5 - parent: 2 - - uid: 12947 - components: - - type: Transform - pos: -0.5,-32.5 - parent: 2 - - uid: 12948 - components: - - type: Transform - pos: -0.5,-33.5 - parent: 2 - - uid: 12949 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 2 - - uid: 12950 - components: - - type: Transform - pos: -0.5,-35.5 - parent: 2 - - uid: 12951 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 2 - - uid: 12952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-41.5 - parent: 2 - - uid: 12953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-42.5 - parent: 2 - - uid: 12954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-43.5 - parent: 2 - - uid: 12955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-44.5 - parent: 2 - - uid: 12956 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-45.5 - parent: 2 - - uid: 12957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-46.5 - parent: 2 - - uid: 12958 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-47.5 - parent: 2 - - uid: 12959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-48.5 - parent: 2 - - uid: 12960 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-49.5 - parent: 2 - - uid: 12961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-50.5 - parent: 2 - - uid: 12962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-51.5 - parent: 2 - - uid: 12963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-52.5 - parent: 2 - - uid: 12964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-53.5 - parent: 2 - - uid: 12965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-54.5 - parent: 2 - - uid: 12967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-39.5 - parent: 2 - - uid: 12968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-38.5 - parent: 2 - - uid: 12969 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-55.5 - parent: 2 - - uid: 12970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-55.5 - parent: 2 - - uid: 12971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-55.5 - parent: 2 - - uid: 12972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-55.5 - parent: 2 - - uid: 12976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 2 - - uid: 12977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-30.5 - parent: 2 - - uid: 12978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-30.5 - parent: 2 - - uid: 12979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-30.5 - parent: 2 - - uid: 12980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-30.5 - parent: 2 - - uid: 12981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-30.5 - parent: 2 - - uid: 12982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-30.5 - parent: 2 - - uid: 12983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-30.5 - parent: 2 - - uid: 12984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-30.5 - parent: 2 - - uid: 12985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-30.5 - parent: 2 - - uid: 12986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 2 - - uid: 12987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-30.5 - parent: 2 - - uid: 12988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-30.5 - parent: 2 - - uid: 12989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-30.5 - parent: 2 - - uid: 12990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 2 - - uid: 12991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-29.5 - parent: 2 - - uid: 12992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-28.5 - parent: 2 - - uid: 12993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-27.5 - parent: 2 - - uid: 12994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 2 - - uid: 12995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-27.5 - parent: 2 - - uid: 12996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-27.5 - parent: 2 - - uid: 12997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-27.5 - parent: 2 - - uid: 12998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-26.5 - parent: 2 - - uid: 12999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-25.5 - parent: 2 - - uid: 13000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 2 - - uid: 13001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 2 - - uid: 13002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 2 - - uid: 13003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-24.5 - parent: 2 - - uid: 13004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 2 - - uid: 13005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 2 - - uid: 13006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-18.5 - parent: 2 - - uid: 13007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-16.5 - parent: 2 - - uid: 13008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-15.5 - parent: 2 - - uid: 13009 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-14.5 - parent: 2 - - uid: 13010 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-13.5 - parent: 2 - - uid: 13011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-12.5 - parent: 2 - - uid: 13012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-11.5 - parent: 2 - - uid: 13013 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-10.5 - parent: 2 - - uid: 13014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-9.5 - parent: 2 - - uid: 13015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-8.5 - parent: 2 - - uid: 13016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-7.5 - parent: 2 - - uid: 13017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-6.5 - parent: 2 - - uid: 13018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-5.5 - parent: 2 - - uid: 13019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-4.5 - parent: 2 - - uid: 13020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 2 - - uid: 13021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 2 - - uid: 13022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 2 - - uid: 13023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 2 - - uid: 13024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 2 - - uid: 13025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 2 - - uid: 13026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 2 - - uid: 13027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 2 - - uid: 13028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 2 - - uid: 13029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 2 - - uid: 13030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 2 - - uid: 13031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 2 - - uid: 13033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 2 - - uid: 13034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-22.5 - parent: 2 - - uid: 13035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-20.5 - parent: 2 - - uid: 13036 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 - - uid: 13037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-25.5 - parent: 2 - - uid: 13042 - components: - - type: Transform - pos: -0.5,4.5 - parent: 2 - - uid: 13043 - components: - - type: Transform - pos: -0.5,5.5 - parent: 2 - - uid: 13044 - components: - - type: Transform - pos: -0.5,6.5 - parent: 2 - - uid: 13045 - components: - - type: Transform - pos: -0.5,7.5 - parent: 2 - - uid: 13046 - components: - - type: Transform - pos: -0.5,8.5 - parent: 2 - - uid: 13047 - components: - - type: Transform - pos: -0.5,9.5 - parent: 2 - - uid: 13048 - components: - - type: Transform - pos: -0.5,10.5 - parent: 2 - - uid: 13049 - components: - - type: Transform - pos: -0.5,11.5 - parent: 2 - - uid: 13050 - components: - - type: Transform - pos: -0.5,12.5 - parent: 2 - - uid: 13051 - components: - - type: Transform - pos: -0.5,13.5 - parent: 2 - - uid: 13052 - components: - - type: Transform - pos: -0.5,14.5 - parent: 2 - - uid: 13053 - components: - - type: Transform - pos: -0.5,15.5 - parent: 2 - - uid: 13054 - components: - - type: Transform - pos: -0.5,16.5 - parent: 2 - - uid: 13055 - components: - - type: Transform - pos: -0.5,17.5 - parent: 2 - - uid: 13056 - components: - - type: Transform - pos: -0.5,18.5 - parent: 2 - - uid: 13057 - components: - - type: Transform - pos: -0.5,19.5 - parent: 2 - - uid: 13058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,20.5 - parent: 2 - - uid: 13059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,20.5 - parent: 2 - - uid: 13060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,20.5 - parent: 2 - - uid: 13061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,20.5 - parent: 2 - - uid: 13062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,20.5 - parent: 2 - - uid: 13063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,21.5 - parent: 2 - - uid: 13064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,22.5 - parent: 2 - - uid: 13065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,23.5 - parent: 2 - - uid: 13066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,24.5 - parent: 2 - - uid: 13067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,25.5 - parent: 2 - - uid: 13068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,26.5 - parent: 2 - - uid: 13069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,27.5 - parent: 2 - - uid: 13070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-19.5 - parent: 2 - - uid: 13071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-23.5 - parent: 2 - - uid: 13072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 2 - - uid: 13073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 2 - - uid: 13074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 2 - - uid: 13075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 2 - - uid: 13076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 2 - - uid: 13077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 2 - - uid: 13078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 2 - - uid: 13079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,32.5 - parent: 2 - - uid: 13080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 2 - - uid: 13081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 2 - - uid: 13082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 2 - - uid: 13083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 2 - - uid: 13084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 2 - - uid: 13085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 2 - - uid: 13086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 2 - - uid: 13087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-4.5 - parent: 2 - - uid: 13088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-5.5 - parent: 2 - - uid: 13089 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-6.5 - parent: 2 - - uid: 13090 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-24.5 - parent: 2 - - uid: 13091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 2 - - uid: 13092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 2 - - uid: 13093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 2 - - uid: 13094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 2 - - uid: 13095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-8.5 - parent: 2 - - uid: 13096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 2 - - uid: 13098 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 2 - - uid: 13099 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 2 - - uid: 13100 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - uid: 13101 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 2 - - uid: 13102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-13.5 - parent: 2 - - uid: 13103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-13.5 - parent: 2 - - uid: 13104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-13.5 - parent: 2 - - uid: 13105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-13.5 - parent: 2 - - uid: 13106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-16.5 - parent: 2 - - uid: 13107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-7.5 - parent: 2 - - uid: 13108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-13.5 - parent: 2 - - uid: 13110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-13.5 - parent: 2 - - uid: 13111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-13.5 - parent: 2 - - uid: 13112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-13.5 - parent: 2 - - uid: 13113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-13.5 - parent: 2 - - uid: 13114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-13.5 - parent: 2 - - uid: 13115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-13.5 - parent: 2 - - uid: 13116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-13.5 - parent: 2 - - uid: 13117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-13.5 - parent: 2 - - uid: 13118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-13.5 - parent: 2 - - uid: 13119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-13.5 - parent: 2 - - uid: 13120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-13.5 - parent: 2 - - uid: 13121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-13.5 - parent: 2 - - uid: 13122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-13.5 - parent: 2 - - uid: 13123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-13.5 - parent: 2 - - uid: 13124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-13.5 - parent: 2 - - uid: 13125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-13.5 - parent: 2 - - uid: 13126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 2 - - uid: 13127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-13.5 - parent: 2 - - uid: 13128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-13.5 - parent: 2 - - uid: 13129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-13.5 - parent: 2 - - uid: 13130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-13.5 - parent: 2 - - uid: 13131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-13.5 - parent: 2 - - uid: 13132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-13.5 - parent: 2 - - uid: 13133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-13.5 - parent: 2 - - uid: 13134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-13.5 - parent: 2 - - uid: 13135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-13.5 - parent: 2 - - uid: 13136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-13.5 - parent: 2 - - uid: 13137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-13.5 - parent: 2 - - uid: 13138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-13.5 - parent: 2 - - uid: 13139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-13.5 - parent: 2 - - uid: 13140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-13.5 - parent: 2 - - uid: 13141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-13.5 - parent: 2 - - uid: 13142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-13.5 - parent: 2 - - uid: 13143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-13.5 - parent: 2 - - uid: 13144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-13.5 - parent: 2 - - uid: 13145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-13.5 - parent: 2 - - uid: 13146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-13.5 - parent: 2 - - uid: 13147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-13.5 - parent: 2 - - uid: 13148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-13.5 - parent: 2 - - uid: 13149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-13.5 - parent: 2 - - uid: 13150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-13.5 - parent: 2 - - uid: 13151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-13.5 - parent: 2 - - uid: 13152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-13.5 - parent: 2 - - uid: 13153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-13.5 - parent: 2 - - uid: 13154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-13.5 - parent: 2 - - uid: 13155 - components: - - type: Transform - pos: 70.5,-14.5 - parent: 2 - - uid: 13156 - components: - - type: Transform - pos: 70.5,-15.5 - parent: 2 - - uid: 13157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-13.5 - parent: 2 - - uid: 13158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-13.5 - parent: 2 - - uid: 13159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-13.5 - parent: 2 - - uid: 13160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-17.5 - parent: 2 - - uid: 13161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-21.5 - parent: 2 - - uid: 13162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-26.5 - parent: 2 - - uid: 13163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-15.5 - parent: 2 - - uid: 13164 - components: - - type: Transform - pos: -7.5,-29.5 - parent: 2 - - uid: 13165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 2 - - uid: 13167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 2 - - uid: 13168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-23.5 - parent: 2 - - uid: 13173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-31.5 - parent: 2 - - uid: 13174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 - parent: 2 - - uid: 13175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-31.5 - parent: 2 - - uid: 13176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-25.5 - parent: 2 - - uid: 13177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-23.5 - parent: 2 - - uid: 13179 - components: - - type: Transform - pos: 14.5,36.5 - parent: 2 - - uid: 13180 - components: - - type: Transform - pos: 14.5,37.5 - parent: 2 - - uid: 13181 - components: - - type: Transform - pos: 14.5,38.5 - parent: 2 - - uid: 13183 - components: - - type: Transform - pos: 14.5,39.5 - parent: 2 - - uid: 13184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,40.5 - parent: 2 - - uid: 13187 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-28.5 - parent: 2 - - uid: 13188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-27.5 - parent: 2 - - uid: 13189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-30.5 - parent: 2 - - uid: 13190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-70.5 - parent: 2 - - uid: 13191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-69.5 - parent: 2 - - uid: 13192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-68.5 - parent: 2 - - uid: 13193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-24.5 - parent: 2 - - uid: 13194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-24.5 - parent: 2 - - uid: 13335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,29.5 - parent: 2 - - uid: 14032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-38.5 - parent: 2 - - uid: 14033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-59.5 - parent: 2 - - uid: 14119 - components: - - type: Transform - pos: -0.5,3.5 - parent: 2 - - uid: 15877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,24.5 - parent: 2 - - uid: 16279 - components: - - type: Transform - pos: 66.5,-52.5 - parent: 2 - - uid: 16280 - components: - - type: Transform - pos: 66.5,-51.5 - parent: 2 - - uid: 16281 - components: - - type: Transform - pos: 66.5,-50.5 - parent: 2 - - uid: 16357 - components: - - type: Transform - pos: 66.5,-49.5 - parent: 2 - - uid: 16389 - components: - - type: Transform - pos: 66.5,-48.5 - parent: 2 - - uid: 16392 - components: - - type: Transform - pos: 66.5,-47.5 - parent: 2 - - uid: 16394 - components: - - type: Transform - pos: 66.5,-46.5 - parent: 2 - - uid: 16655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-56.5 - parent: 2 - - uid: 16744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-45.5 - parent: 2 - - uid: 16745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-45.5 - parent: 2 - - uid: 16746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-45.5 - parent: 2 - - uid: 16747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-45.5 - parent: 2 - - uid: 16748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-44.5 - parent: 2 - - uid: 16749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-43.5 - parent: 2 - - uid: 16750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-42.5 - parent: 2 - - uid: 16751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-41.5 - parent: 2 - - uid: 16752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-41.5 - parent: 2 - - uid: 16753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-41.5 - parent: 2 - - uid: 17021 - components: - - type: Transform - pos: -0.5,1.5 - parent: 2 - - uid: 17037 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 2 - - uid: 17120 - components: - - type: Transform - pos: -0.5,0.5 - parent: 2 - - uid: 17989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 2 - - uid: 17999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 2 - - uid: 18376 - components: - - type: Transform - pos: 24.5,-11.5 - parent: 2 - - uid: 18397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 2 - - uid: 19885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-2.5 - parent: 2 - - uid: 20951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-26.5 - parent: 2 - - uid: 20952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-26.5 - parent: 2 - - uid: 20953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-26.5 - parent: 2 - - uid: 20956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-26.5 - parent: 2 - - uid: 20996 - components: - - type: Transform - pos: -20.5,-25.5 - parent: 2 - - uid: 21130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-24.5 - parent: 2 - - uid: 21151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 2 - - uid: 21397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,26.5 - parent: 2 - - uid: 21445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 2 - - uid: 21636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-26.5 - parent: 2 - - uid: 21764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-56.5 - parent: 2 - - uid: 21765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-59.5 - parent: 2 - - uid: 21766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-60.5 - parent: 2 - - uid: 21767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-61.5 - parent: 2 - - uid: 21768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-61.5 - parent: 2 - - uid: 21775 - components: - - type: Transform - pos: 3.5,-55.5 - parent: 2 - - uid: 21817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 2 - - uid: 21887 - components: - - type: Transform - pos: -16.5,-18.5 - parent: 2 - - uid: 22516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-11.5 - parent: 2 - - uid: 24100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-59.5 - parent: 2 - - uid: 24489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 2 - - uid: 24950 - components: - - type: Transform - pos: -0.5,2.5 - parent: 2 - - uid: 26557 - components: - - type: Transform - pos: -37.5,-14.5 - parent: 2 - - uid: 26988 - components: - - type: Transform - pos: 62.5,-28.5 - parent: 2 - - uid: 26989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-27.5 - parent: 2 - - uid: 26991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-27.5 - parent: 2 - - uid: 26992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-27.5 - parent: 2 - - uid: 26993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-26.5 - parent: 2 - - uid: 26994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-25.5 - parent: 2 - - uid: 26995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-24.5 - parent: 2 - - uid: 26996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-23.5 - parent: 2 - - uid: 26998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-22.5 - parent: 2 - - uid: 27000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-21.5 - parent: 2 - - uid: 27001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-19.5 - parent: 2 - - uid: 27002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-18.5 - parent: 2 - - uid: 27003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-20.5 - parent: 2 - - uid: 30188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,35.5 - parent: 2 - - uid: 30189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,35.5 - parent: 2 - - uid: 30190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,36.5 - parent: 2 - - uid: 30191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,37.5 - parent: 2 - - uid: 30192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,38.5 - parent: 2 - - uid: 30193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,39.5 - parent: 2 - - uid: 30752 - components: - - type: Transform - pos: 19.5,36.5 - parent: 2 - - uid: 31865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 2 - - uid: 31866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 2 - - uid: 31867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,31.5 - parent: 2 - - uid: 31879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-3.5 - parent: 2 - - uid: 31880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-4.5 - parent: 2 - - uid: 31881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-5.5 - parent: 2 - - uid: 31882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-6.5 - parent: 2 - - uid: 31883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-7.5 - parent: 2 -- proto: DisposalRouter - entities: - - uid: 3929 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 2 - - uid: 13206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 2 - - type: DisposalRouter - tags: - - engineering - - uid: 13207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-13.5 - parent: 2 - - type: DisposalRouter - tags: - - science - - uid: 13208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-27.5 - parent: 2 - - type: DisposalRouter - tags: - - medical - - uid: 13210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 2 - - type: DisposalRouter - tags: - - security -- proto: DisposalRouterFlipped - entities: - - uid: 13211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-30.5 - parent: 2 - - type: DisposalRouter - tags: - - hop - - uid: 13212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-8.5 - parent: 2 - - type: DisposalRouter - tags: - - bridge -- proto: DisposalTrunk - entities: - - uid: 142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-11.5 - parent: 2 - - uid: 9870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,14.5 - parent: 2 - - uid: 9875 - components: - - type: Transform - pos: 37.5,19.5 - parent: 2 - - uid: 9883 - components: - - type: Transform - pos: 57.5,-16.5 - parent: 2 - - uid: 10648 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 2 - - uid: 11291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-29.5 - parent: 2 - - uid: 11553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,0.5 - parent: 2 - - uid: 13213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-36.5 - parent: 2 - - uid: 13217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 2 - - uid: 13218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-15.5 - parent: 2 - - uid: 13219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 2 - - uid: 13220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-21.5 - parent: 2 - - uid: 13221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,19.5 - parent: 2 - - uid: 13224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-30.5 - parent: 2 - - uid: 13225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,22.5 - parent: 2 - - uid: 13228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,30.5 - parent: 2 - - uid: 13230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-2.5 - parent: 2 - - uid: 13231 - components: - - type: Transform - pos: 58.5,3.5 - parent: 2 - - uid: 13232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,1.5 - parent: 2 - - uid: 13233 - components: - - type: Transform - pos: -53.5,1.5 - parent: 2 - - uid: 13234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-5.5 - parent: 2 - - uid: 13237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-8.5 - parent: 2 - - uid: 13238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-13.5 - parent: 2 - - uid: 13239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-31.5 - parent: 2 - - uid: 13240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-19.5 - parent: 2 - - uid: 13242 - components: - - type: Transform - pos: -37.5,-50.5 - parent: 2 - - uid: 13244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-45.5 - parent: 2 - - uid: 13247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-10.5 - parent: 2 - - uid: 13248 - components: - - type: Transform - pos: 41.5,-26.5 - parent: 2 - - uid: 13249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-43.5 - parent: 2 - - uid: 13250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-16.5 - parent: 2 - - uid: 13251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-21.5 - parent: 2 - - uid: 13252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 2 - - uid: 13253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-32.5 - parent: 2 - - uid: 13254 - components: - - type: Transform - pos: 47.5,-31.5 - parent: 2 - - uid: 13255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-47.5 - parent: 2 - - uid: 13256 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 2 - - uid: 13257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-60.5 - parent: 2 - - uid: 13258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-41.5 - parent: 2 - - uid: 13259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-53.5 - parent: 2 - - uid: 13261 - components: - - type: Transform - pos: 74.5,-17.5 - parent: 2 - - uid: 13262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-16.5 - parent: 2 - - uid: 13264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-26.5 - parent: 2 - - uid: 13266 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 2 - - uid: 13267 - components: - - type: Transform - pos: 5.5,28.5 - parent: 2 - - uid: 13270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,28.5 - parent: 2 - - uid: 13271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-31.5 - parent: 2 - - uid: 13272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,40.5 - parent: 2 - - uid: 13273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-29.5 - parent: 2 - - uid: 13274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-71.5 - parent: 2 - - uid: 13275 - components: - - type: Transform - pos: 32.5,-23.5 - parent: 2 - - uid: 14155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-27.5 - parent: 2 - - uid: 16275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-41.5 - parent: 2 - - uid: 17954 - components: - - type: Transform - pos: 19.5,37.5 - parent: 2 - - uid: 20054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-27.5 - parent: 2 - - uid: 20206 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 2 - - uid: 20470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,30.5 - parent: 2 - - uid: 21811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-61.5 - parent: 2 - - uid: 22450 - components: - - type: Transform - pos: -8.5,-7.5 - parent: 2 - - uid: 23478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 2 - - uid: 24350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-66.5 - parent: 2 - - uid: 30196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,40.5 - parent: 2 -- proto: DisposalUnit - entities: - - uid: 7760 - components: - - type: Transform - pos: 20.5,14.5 - parent: 2 - - uid: 9271 - components: - - type: Transform - pos: -38.5,-12.5 - parent: 2 - - uid: 9876 - components: - - type: Transform - pos: 37.5,19.5 - parent: 2 - - uid: 13277 - components: - - type: Transform - pos: 57.5,-16.5 - parent: 2 - - uid: 13278 - components: - - type: Transform - pos: -28.5,-19.5 - parent: 2 - - uid: 13279 - components: - - type: Transform - pos: 22.5,-36.5 - parent: 2 - - uid: 13280 - components: - - type: Transform - pos: -30.5,-31.5 - parent: 2 - - uid: 13282 - components: - - type: Transform - pos: 12.5,40.5 - parent: 2 - - uid: 13283 - components: - - type: Transform - pos: 28.5,-21.5 - parent: 2 - - uid: 13284 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 2 - - uid: 13285 - components: - - type: Transform - pos: -10.5,-21.5 - parent: 2 - - uid: 13287 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 2 - - uid: 13288 - components: - - type: Transform - pos: -49.5,-8.5 - parent: 2 - - uid: 13290 - components: - - type: Transform - pos: -18.5,22.5 - parent: 2 - - uid: 13291 - components: - - type: Transform - pos: 16.5,19.5 - parent: 2 - - uid: 13292 - components: - - type: Transform - pos: 4.5,30.5 - parent: 2 - - uid: 13296 - components: - - type: Transform - pos: 26.5,0.5 - parent: 2 - - uid: 13297 - components: - - type: Transform - pos: 49.5,-2.5 - parent: 2 - - uid: 13299 - components: - - type: Transform - pos: 58.5,3.5 - parent: 2 - - uid: 13300 - components: - - type: Transform - pos: -24.5,-13.5 - parent: 2 - - uid: 13301 - components: - - type: Transform - pos: -37.5,1.5 - parent: 2 - - uid: 13302 - components: - - type: Transform - pos: -53.5,-5.5 - parent: 2 - - uid: 13303 - components: - - type: Transform - pos: -53.5,1.5 - parent: 2 - - uid: 13306 - components: - - type: Transform - pos: 41.5,-26.5 - parent: 2 - - uid: 13308 - components: - - type: Transform - pos: -37.5,-50.5 - parent: 2 - - uid: 13309 - components: - - type: Transform - pos: -10.5,-45.5 - parent: 2 - - uid: 13310 - components: - - type: Transform - pos: 35.5,-43.5 - parent: 2 - - uid: 13311 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 2 - - uid: 13312 - components: - - type: Transform - pos: 36.5,-10.5 - parent: 2 - - uid: 13313 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 2 - - uid: 13314 - components: - - type: Transform - pos: 47.5,-31.5 - parent: 2 - - uid: 13315 - components: - - type: Transform - pos: 43.5,-47.5 - parent: 2 - - uid: 13316 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 2 - - uid: 13318 - components: - - type: Transform - pos: 28.5,-32.5 - parent: 2 - - uid: 13319 - components: - - type: Transform - pos: 41.5,-60.5 - parent: 2 - - uid: 13320 - components: - - type: Transform - pos: 51.5,-41.5 - parent: 2 - - uid: 13321 - components: - - type: Transform - pos: 74.5,-17.5 - parent: 2 - - uid: 13323 - components: - - type: Transform - pos: 67.5,-53.5 - parent: 2 - - uid: 13326 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 2 - - uid: 13327 - components: - - type: Transform - pos: 6.5,28.5 - parent: 2 - - uid: 13329 - components: - - type: Transform - pos: 42.5,-31.5 - parent: 2 - - uid: 13330 - components: - - type: Transform - pos: 43.5,-29.5 - parent: 2 - - uid: 13331 - components: - - type: Transform - pos: 32.5,-23.5 - parent: 2 - - uid: 13332 - components: - - type: Transform - pos: 27.5,-30.5 - parent: 2 - - uid: 13333 - components: - - type: Transform - pos: 1.5,-71.5 - parent: 2 - - uid: 13964 - components: - - type: Transform - pos: 19.5,37.5 - parent: 2 - - uid: 16274 - components: - - type: Transform - pos: 75.5,-41.5 - parent: 2 - - uid: 16435 - components: - - type: Transform - pos: -13.5,30.5 - parent: 2 - - uid: 18200 - components: - - type: Transform - pos: 63.5,-29.5 - parent: 2 - - uid: 22162 - components: - - type: Transform - pos: -8.5,-7.5 - parent: 2 - - uid: 24325 - components: - - type: Transform - pos: 9.5,-66.5 - parent: 2 - - uid: 30187 - components: - - type: Transform - pos: 24.5,40.5 - parent: 2 - - uid: 30814 - components: - - type: Transform - pos: -22.5,-27.5 - parent: 2 -- proto: DisposalYJunction - entities: - - uid: 13336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-1.5 - parent: 2 - - uid: 13337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-47.5 - parent: 2 - - uid: 13338 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 2 - - uid: 13339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-49.5 - parent: 2 - - uid: 31864 - components: - - type: Transform - pos: -30.5,-1.5 - parent: 2 -- proto: DogBed - entities: - - uid: 13178 - components: - - type: Transform - pos: 61.5,-35.5 - parent: 2 - - uid: 13340 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 2 - - uid: 13341 - components: - - type: Transform - pos: 18.5,40.5 - parent: 2 - - uid: 13342 - components: - - type: Transform - pos: 3.5,33.5 - parent: 2 - - uid: 13343 - components: - - type: Transform - pos: 9.5,-17.5 - parent: 2 - - uid: 13344 - components: - - type: MetaData - name: cat bed - - type: Transform - pos: 35.5,-38.5 - parent: 2 - - uid: 13345 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 2 - - uid: 23168 - components: - - type: Transform - pos: 62.5,-7.5 - parent: 2 -- proto: DonkpocketBoxSpawner - entities: - - uid: 13346 - components: - - type: Transform - pos: 60.5,-45.5 - parent: 2 - - uid: 13347 + - type: DeviceLinkSource + linkedPorts: + 1143: + - DoorStatus: DoorBolt + - uid: 1143 components: - type: Transform pos: -30.5,-15.5 parent: 2 -- proto: DoorElectronics + - type: DeviceLinkSource + linkedPorts: + 1091: + - DoorStatus: DoorBolt +- proto: AirlockExternalEngineeringLocked entities: - - uid: 13348 + - uid: 573 components: - type: Transform - pos: -22.349255,-5.634054 + pos: -109.5,148.5 parent: 2 -- proto: DoubleBed + - type: DeviceLinkSource + linkedPorts: + 17384: + - DoorStatus: DoorBolt + - uid: 1200 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1201: + - DoorStatus: DoorBolt + - uid: 1201 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1200: + - DoorStatus: DoorBolt + - uid: 1502 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1501: + - DoorStatus: DoorBolt + - uid: 1503 + components: + - type: Transform + pos: -68.5,-8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1176: + - DoorStatus: DoorBolt + - uid: 4288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,25.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 8506: + - DoorStatus: DoorBolt + 8505: + - DoorStatus: DoorBolt + - uid: 17384 + components: + - type: Transform + pos: -112.5,148.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 573: + - DoorStatus: DoorBolt + - uid: 34836 + components: + - type: Transform + pos: 0.5,220.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 34837: + - DoorStatus: DoorBolt + - uid: 34837 + components: + - type: Transform + pos: 0.5,217.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 34836: + - DoorStatus: DoorBolt + - uid: 35462 + components: + - type: Transform + pos: 70.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 35463: + - DoorStatus: DoorBolt + - uid: 35463 + components: + - type: Transform + pos: 70.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 35462: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlass entities: - - uid: 1083 + - uid: 114 components: - type: Transform - pos: -31.5,-24.5 + pos: -8.5,5.5 parent: 2 - - uid: 1085 + - uid: 967 components: - type: Transform - pos: 55.5,-49.5 + pos: -10.5,5.5 parent: 2 - - uid: 1086 + - uid: 1523 components: - type: Transform - pos: 26.5,-34.5 + rot: -1.5707963267948966 rad + pos: 112.5,44.5 parent: 2 - - uid: 1087 + - uid: 1566 components: - type: Transform - pos: 26.5,-35.5 + pos: -41.5,-0.5 parent: 2 - - uid: 1092 + - type: DeviceLinkSource + linkedPorts: + 3471: + - DoorStatus: DoorBolt + - uid: 1599 components: - type: Transform - pos: 6.5,12.5 + rot: -1.5707963267948966 rad + pos: 105.5,44.5 parent: 2 - - uid: 1093 + - uid: 3471 components: - type: Transform - pos: 6.5,15.5 + pos: -45.5,-0.5 parent: 2 - - uid: 1094 + - type: DeviceLinkSource + linkedPorts: + 1566: + - DoorStatus: DoorBolt + - uid: 4907 components: - type: Transform - pos: 13.5,14.5 + pos: 103.5,63.5 parent: 2 - - uid: 1096 + - uid: 4908 components: - type: Transform - pos: 37.5,-51.5 + pos: 105.5,63.5 parent: 2 - - uid: 1099 + - uid: 4909 components: - type: Transform - pos: 28.5,4.5 + pos: 111.5,63.5 parent: 2 - - uid: 1106 + - uid: 4910 components: - type: Transform - pos: -19.5,16.5 + pos: 113.5,63.5 parent: 2 - - uid: 1109 + - uid: 4911 components: - type: Transform - pos: 15.5,45.5 + pos: 117.5,58.5 parent: 2 - - uid: 1110 + - uid: 10776 components: - type: Transform - pos: 8.5,-24.5 + rot: 3.141592653589793 rad + pos: -18.5,163.5 parent: 2 - - uid: 1115 + - uid: 14706 components: - type: Transform - pos: 67.5,-3.5 + rot: 3.141592653589793 rad + pos: -20.5,163.5 parent: 2 - - uid: 1116 + - uid: 17984 components: - type: Transform - pos: 64.5,-4.5 + rot: 1.5707963267948966 rad + pos: -99.5,159.5 parent: 2 - - uid: 8506 + - uid: 18652 components: - type: Transform - pos: 5.5,1.5 + rot: 1.5707963267948966 rad + pos: -99.5,161.5 parent: 2 - - uid: 19969 + - uid: 20572 components: - type: Transform - pos: 59.5,-36.5 + pos: -51.5,152.5 parent: 2 - - uid: 23546 + - uid: 21015 components: - type: Transform - pos: 9.5,-70.5 + pos: -51.5,158.5 parent: 2 - - uid: 24391 + - uid: 25137 components: - type: Transform - pos: -27.5,30.5 + rot: -1.5707963267948966 rad + pos: -23.5,166.5 parent: 2 - - uid: 28788 + - uid: 28206 components: - type: Transform - pos: 6.5,9.5 + pos: -15.5,5.5 parent: 2 - - uid: 28906 + - uid: 37837 components: - type: Transform - pos: 4.5,5.5 + pos: -21.5,5.5 parent: 2 - - uid: 29830 - components: - - type: Transform - pos: -56.5,-27.5 - parent: 2 - - uid: 30337 - components: - - type: Transform - pos: -21.5,31.5 - parent: 2 -- proto: DoubleBedsheetBlack +- proto: AirlockExternalGlassAtmosphericsLocked entities: - - uid: 1120 + - uid: 487 components: - type: Transform - pos: 64.5,-4.5 + pos: -55.5,8.5 parent: 2 - - uid: 1123 + - type: DeviceLinkSource + linkedPorts: + 3027: + - DoorStatus: DoorBolt + - uid: 670 components: - type: Transform - pos: 67.5,-3.5 + rot: 1.5707963267948966 rad + pos: 88.5,21.5 parent: 2 - - uid: 30344 + - type: DeviceLinkSource + linkedPorts: + 31786: + - DoorStatus: DoorBolt + - uid: 3027 components: - type: Transform - pos: -21.5,31.5 + pos: -52.5,8.5 parent: 2 -- proto: DoubleBedsheetBlue + - type: DeviceLinkSource + linkedPorts: + 487: + - DoorStatus: DoorBolt + - uid: 3493 + components: + - type: Transform + pos: -114.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29832: + - DoorStatus: DoorBolt + - uid: 28757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,22.5 + parent: 2 + - uid: 28766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,24.5 + parent: 2 + - uid: 29832 + components: + - type: Transform + pos: -110.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3493: + - DoorStatus: DoorBolt + - uid: 31786 + components: + - type: Transform + pos: 88.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 670: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassCargoLocked entities: - - uid: 28896 + - uid: 27 components: - type: Transform - pos: -27.5,30.5 + rot: 3.141592653589793 rad + pos: -7.5,-6.5 parent: 2 -- proto: DoubleBedsheetCaptain - entities: - - uid: 1137 + - uid: 61 components: - type: Transform - pos: 8.5,-24.5 + rot: 3.141592653589793 rad + pos: -9.5,-6.5 parent: 2 -- proto: DoubleBedsheetCE - entities: - - uid: 1141 + - uid: 1127 components: - type: Transform - pos: 9.5,-70.5 + pos: -48.5,-15.5 parent: 2 -- proto: DoubleBedsheetGreen - entities: - - uid: 1143 + - type: DeviceLinkSource + linkedPorts: + 1130: + - DoorStatus: DoorBolt + - uid: 1128 components: - type: Transform - pos: 37.5,-51.5 + pos: -46.5,-15.5 parent: 2 -- proto: DoubleBedsheetGrey - entities: - - uid: 23780 + - type: DeviceLinkSource + linkedPorts: + 1129: + - DoorStatus: DoorBolt + - uid: 1129 components: - type: Transform - pos: 5.5,1.5 + pos: -46.5,-13.5 parent: 2 -- proto: DoubleBedsheetHOS - entities: - - uid: 1146 + - type: DeviceLinkSource + linkedPorts: + 1128: + - DoorStatus: DoorBolt + - uid: 1130 components: - type: Transform - pos: 15.5,45.5 + pos: -48.5,-13.5 parent: 2 -- proto: DoubleBedsheetNT - entities: - - uid: 31704 + - type: DeviceLinkSource + linkedPorts: + 1127: + - DoorStatus: DoorBolt + - uid: 1328 components: - type: Transform - pos: 28.5,4.5 + rot: 3.141592653589793 rad + pos: -47.5,-3.5 parent: 2 -- proto: DoubleBedsheetOrange + - type: DeviceLinkSource + linkedPorts: + 1327: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 29089 + - uid: 28512 components: - type: Transform - pos: 6.5,12.5 + pos: -116.5,36.5 parent: 2 -- proto: DoubleBedsheetPurple - entities: - - uid: 29833 + - type: DeviceLinkSource + linkedPorts: + 28747: + - DoorStatus: DoorBolt + - uid: 28747 components: - type: Transform - pos: 6.5,9.5 + pos: -116.5,39.5 parent: 2 -- proto: DoubleBedsheetQM + - type: DeviceLinkSource + linkedPorts: + 28512: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassLocked entities: - - uid: 1147 + - uid: 708 components: - type: Transform - pos: -31.5,-24.5 + pos: 58.5,29.5 parent: 2 -- proto: DoubleBedsheetRD - entities: - - uid: 5422 + - uid: 1670 components: - type: Transform - pos: 59.5,-36.5 + rot: 3.141592653589793 rad + pos: -77.5,34.5 parent: 2 -- proto: DoubleBedsheetRed - entities: - - uid: 12575 + - uid: 2540 components: - type: Transform - pos: 4.5,5.5 + rot: 3.141592653589793 rad + pos: -77.5,48.5 parent: 2 -- proto: DoubleBedsheetSyndie - entities: - - uid: 30754 + - uid: 4701 components: - type: Transform - pos: -56.5,-27.5 + pos: 5.5,88.5 parent: 2 -- proto: DoubleBedsheetWhite - entities: - uid: 8505 components: - type: Transform - pos: 13.5,14.5 + rot: 1.5707963267948966 rad + pos: 73.5,29.5 parent: 2 -- proto: DoubleBedsheetYellow - entities: - - uid: 15321 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 4288: + - DoorStatus: DoorBolt + 626: + - DoorStatus: DoorBolt + - uid: 8506 components: - type: Transform - pos: 6.5,15.5 + rot: 1.5707963267948966 rad + pos: 69.5,29.5 parent: 2 -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 18432 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 4288: + - DoorStatus: DoorBolt + 626: + - DoorStatus: DoorBolt + - uid: 11092 components: - type: Transform - pos: -42.37879,-36.5 + pos: -15.5,99.5 parent: 2 - - type: CMExplosionEffect - - uid: 18739 + - uid: 11248 components: - type: Transform - pos: -42.619534,-36.5 + pos: -15.5,97.5 parent: 2 - - type: CMExplosionEffect - - uid: 18755 + - uid: 11493 components: - type: Transform - pos: -42.476013,-36.5 + rot: 3.141592653589793 rad + pos: -77.5,40.5 parent: 2 - - type: CMExplosionEffect - - uid: 18774 + - uid: 12330 components: - type: Transform - pos: -42.249165,-36.5 + pos: 3.5,88.5 parent: 2 - - type: CMExplosionEffect -- proto: DoubleGlassAirlock - entities: - - uid: 1148 + - uid: 12990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,10.5 - parent: 2 - - uid: 13349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-8.5 + rot: 3.141592653589793 rad + pos: -77.5,42.5 parent: 2 - uid: 13350 components: - type: Transform rot: 3.141592653589793 rad - pos: 67.5,-11.5 + pos: -80.5,50.5 parent: 2 - - uid: 13351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,18.5 - parent: 2 - - uid: 13352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,2.5 - parent: 2 - - uid: 13353 - components: - - type: Transform - pos: 55.5,-1.5 - parent: 2 - - uid: 13354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-8.5 - parent: 2 - - uid: 13355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-8.5 - parent: 2 - - uid: 13358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-8.5 - parent: 2 - - uid: 13359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 2 -- proto: DresserCaptainFilled - entities: - - uid: 13361 - components: - - type: Transform - pos: 6.5,-24.5 - parent: 2 -- proto: DresserChiefEngineerFilled - entities: - - uid: 23550 - components: - - type: Transform - pos: 9.5,-69.5 - parent: 2 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 13363 - components: - - type: Transform - pos: 34.5,-38.5 - parent: 2 -- proto: DresserFilled - entities: - - uid: 3235 - components: - - type: Transform - pos: -28.5,30.5 - parent: 2 - - uid: 15320 - components: - - type: Transform - pos: -21.5,33.5 - parent: 2 - - uid: 29834 - components: - - type: Transform - pos: -56.5,-29.5 - parent: 2 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 13364 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 2 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 13365 - components: - - type: Transform - pos: 17.5,45.5 - parent: 2 -- proto: DresserQuarterMasterFilled - entities: - - uid: 13366 - components: - - type: Transform - pos: -30.5,-24.5 - parent: 2 -- proto: DresserResearchDirectorFilled - entities: - - uid: 9046 - components: - - type: Transform - pos: 61.5,-37.5 - parent: 2 -- proto: DrinkBeerCan - entities: - - uid: 30551 - components: - - type: Transform - pos: -35.464703,23.582857 - parent: 2 -- proto: DrinkCartonCream - entities: - - uid: 13368 - components: - - type: Transform - pos: 33.588158,-7.32909 - parent: 2 -- proto: DrinkDemonsBlood - entities: - - uid: 30840 - components: - - type: Transform - pos: 59.302383,24.530443 - parent: 2 - - uid: 30847 - components: - - type: Transform - pos: 59.69301,24.655443 - parent: 2 - - uid: 30848 - components: - - type: Transform - pos: 59.47426,24.389818 - parent: 2 -- proto: DrinkFlask - entities: - - uid: 13370 - components: - - type: Transform - pos: 8.622343,-22.415216 - parent: 2 -- proto: DrinkGlassWhite - entities: - - uid: 1097 - components: - - type: Transform - pos: 7.7419605,-15.254801 - parent: 2 - - uid: 26853 - components: - - type: Transform - pos: 5.665557,-9.332765 - parent: 2 - - uid: 27493 - components: - - type: Transform - pos: 5.353057,-9.41089 - parent: 2 -- proto: DrinkGoldenCup - entities: - - uid: 13371 - components: - - type: Transform - pos: 10.563472,-14.491048 - parent: 2 -- proto: DrinkHosFlask - entities: - - uid: 13373 - components: - - type: Transform - pos: 16.011826,42.646317 - parent: 2 -- proto: DrinkMilkCarton - entities: - - uid: 23810 - components: - - type: Transform - pos: 7.0857105,-15.364176 - parent: 2 - - uid: 27238 - components: - - type: Transform - pos: 5.4318113,-9.145265 - parent: 2 -- proto: DrinkMopwataBottleRandom - entities: - - uid: 13374 - components: - - type: Transform - pos: 36.54842,23.646767 - parent: 2 -- proto: DrinkMugBlack - entities: - - uid: 13375 - components: - - type: Transform - pos: 53.98643,-33.364586 - parent: 2 -- proto: DrinkMugBlue - entities: - - uid: 13376 - components: - - type: Transform - pos: 54.439556,-33.34896 - parent: 2 - - uid: 13377 - components: - - type: Transform - pos: 44.369675,-33.263916 - parent: 2 -- proto: DrinkMugDog - entities: - - uid: 13378 - components: - - type: Transform - pos: 44.5103,-33.46704 - parent: 2 -- proto: DrinkMugHeart - entities: - - uid: 13379 - components: - - type: Transform - pos: 44.6978,-33.27954 - parent: 2 -- proto: DrinkMugMoebius - entities: - - uid: 13380 - components: - - type: Transform - pos: 54.220806,-33.552086 - parent: 2 -- proto: DrinkSakeBottleFull - entities: - - uid: 31324 - components: - - type: Transform - pos: -54.190887,-7.8530684 - parent: 2 -- proto: DrinkShaker - entities: - - uid: 13381 - components: - - type: Transform - pos: 25.444578,4.520836 - parent: 2 -- proto: DrinkShakeWhite - entities: - - uid: 24612 - components: - - type: MetaData - name: серебряный коктель - - type: Transform - pos: 1.3052366,-23.118822 - parent: 2 -- proto: DrinkShotGlass - entities: - - uid: 13382 - components: - - type: Transform - pos: 16.718124,45.426414 - parent: 2 - - uid: 13383 - components: - - type: Transform - pos: 16.405151,45.500206 - parent: 2 - - uid: 13384 - components: - - type: Transform - pos: 16.69682,45.70854 - parent: 2 -- proto: DrinkTheMartinez - entities: - - uid: 13385 - components: - - type: Transform - pos: 24.833998,-2.4062781 - parent: 2 -- proto: DrinkVodkaBottleFull - entities: - - uid: 13386 - components: - - type: Transform - pos: 16.335709,46.041878 - parent: 2 - - uid: 28407 - components: - - type: Transform - pos: 5.2759967,5.760414 - parent: 2 -- proto: DrinkVodkaGlass - entities: - - uid: 28437 - components: - - type: Transform - pos: 5.551534,5.607643 - parent: 2 - - uid: 28610 - components: - - type: Transform - pos: 5.395284,5.357643 - parent: 2 -- proto: DrinkWaterBottleFull - entities: - - uid: 24776 - components: - - type: Transform - pos: -0.6375021,-18.318468 - parent: 2 - - uid: 24886 - components: - - type: Transform - pos: -0.26250207,-17.427843 - parent: 2 - - uid: 24892 - components: - - type: Transform - pos: -0.7625021,-15.990343 - parent: 2 - - uid: 24996 - components: - - type: Transform - pos: -1.7000021,-14.771593 - parent: 2 -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 21083 - components: - - type: Transform - parent: 20988 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkWhiskeySodaGlass - entities: - - uid: 21084 - components: - - type: Transform - parent: 20988 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21097 - components: - - type: Transform - parent: 20988 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkWineBottleFull - entities: - - uid: 11106 - components: - - type: Transform - pos: 4.348409,9.743798 - parent: 2 -- proto: DrinkWineGlass - entities: - - uid: 22771 - components: - - type: Transform - pos: 17.739222,-40.114044 - parent: 2 - - uid: 22776 - components: - - type: Transform - pos: 20.786097,-40.114044 - parent: 2 - - uid: 28646 - components: - - type: Transform - pos: 4.442159,9.400048 - parent: 2 - - uid: 28647 - components: - - type: Transform - pos: 4.629659,9.618798 - parent: 2 -- proto: Dropper - entities: - - uid: 13387 - components: - - type: Transform - pos: 74.3515,-18.443996 - parent: 2 - - uid: 24286 - components: - - type: Transform - pos: 42.40967,-10.23365 - parent: 2 - - uid: 24354 - components: - - type: Transform - pos: 42.97217,-10.624275 - parent: 2 -- proto: EmergencyLight - entities: - - uid: 11123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-2.5 - parent: 2 - - uid: 12056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 2 - - uid: 13388 + - uid: 13392 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-0.5 - parent: 2 - - uid: 13389 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 2 - - uid: 13390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-25.5 - parent: 2 - - uid: 13393 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13394 - components: - - type: Transform - pos: -7.5,21.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,32.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13396 - components: - - type: Transform - pos: 10.5,21.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-1.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13399 - components: - - type: Transform - pos: -42.5,5.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13401 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-18.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13404 - components: - - type: Transform - pos: 1.5,-55.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13405 - components: - - type: Transform - pos: -14.5,-68.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-16.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13407 - components: - - type: Transform - pos: 39.5,-55.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-22.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-44.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 22513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-30.5 - parent: 2 - - uid: 22602 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-20.5 - parent: 2 - - uid: 29338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 2 -- proto: EmergencyOxygenTank - entities: - - uid: 13412 - components: - - type: Transform - pos: -65.5,18.5 - parent: 2 - - type: CMExplosionEffect - - uid: 13413 - components: - - type: Transform - pos: -52.5,-13.5 - parent: 2 - - type: CMExplosionEffect - - uid: 29827 - components: - - type: Transform - pos: -48.497635,-30.360865 - parent: 2 - - type: CMExplosionEffect -- proto: EmergencyOxygenTankFilled - entities: - - uid: 13414 - components: - - type: Transform - pos: 36.444656,-46.40444 - parent: 2 - - type: CMExplosionEffect - - uid: 13415 - components: - - type: Transform - pos: 67.79197,-86.74873 - parent: 2 - - type: CMExplosionEffect - - uid: 13416 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 2 - - type: CMExplosionEffect - - uid: 13417 - components: - - type: Transform - pos: 36.632156,-46.40444 - parent: 2 - - type: CMExplosionEffect -- proto: EmergencyRollerBedSpawnFolded - entities: - - uid: 13418 - components: - - type: Transform - pos: 33.503124,-16.529133 - parent: 2 -- proto: Emitter - entities: - - uid: 9117 - components: - - type: Transform - pos: 15.5,-85.5 - parent: 2 - - uid: 9273 - components: - - type: Transform - pos: 14.5,-85.5 + pos: -129.5,92.5 parent: 2 - uid: 13419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-90.5 + pos: -18.5,104.5 parent: 2 - - uid: 13423 + - uid: 16347 + components: + - type: Transform + pos: -98.5,57.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28509: + - DoorStatus: DoorBolt + - uid: 23992 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-82.5 + pos: -29.5,210.5 parent: 2 - - uid: 13425 + - uid: 23993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,210.5 + parent: 2 + - uid: 26871 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-82.5 + pos: -129.5,102.5 parent: 2 - - uid: 13426 + - uid: 28205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-90.5 + pos: -86.5,31.5 parent: 2 - - uid: 20739 + - type: DeviceLinkSource + linkedPorts: + 28207: + - DoorStatus: DoorBolt + - uid: 28207 + components: + - type: Transform + pos: -86.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28205: + - DoorStatus: DoorBolt + - uid: 28509 + components: + - type: Transform + pos: -100.5,57.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16347: + - DoorStatus: DoorBolt + - uid: 37371 + components: + - type: Transform + pos: -21.5,101.5 + parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 4847 + components: + - type: Transform + pos: 112.5,40.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: 105.5,40.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 124 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-89.5 + pos: 111.5,66.5 parent: 2 - - uid: 21243 + - uid: 940 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-89.5 + pos: 105.5,66.5 parent: 2 - - uid: 22294 + - uid: 1074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-64.5 + rot: 3.141592653589793 rad + pos: 103.5,66.5 parent: 2 - - uid: 23296 + - uid: 7515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-64.5 + rot: 3.141592653589793 rad + pos: 113.5,66.5 parent: 2 - - uid: 23492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-64.5 - parent: 2 - - uid: 23536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-64.5 - parent: 2 - - uid: 23537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-64.5 - parent: 2 -- proto: EncryptionKeyCargo +- proto: AirlockExternalGlassShuttleEscape entities: - - uid: 13428 - components: - - type: Transform - parent: 13427 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand - entities: - - uid: 13430 - components: - - type: Transform - parent: 13429 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon - entities: - - uid: 13432 - components: - - type: Transform - parent: 13431 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering - entities: - - uid: 13434 - components: - - type: Transform - parent: 13433 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedical - entities: - - uid: 13436 - components: - - type: Transform - parent: 13435 - - type: Physics - canCollide: False -- proto: EncryptionKeyScience - entities: - - uid: 13438 - components: - - type: Transform - parent: 13437 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 13440 - components: - - type: Transform - parent: 13439 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 13442 - components: - - type: Transform - parent: 13441 - - type: Physics - canCollide: False -- proto: EnergyDomeDirectionalTurtle - entities: - - uid: 10819 - components: - - type: Transform - pos: -2.4802728,47.56888 - parent: 2 -- proto: EvidenceMarkerEight - entities: - - uid: 30873 - components: - - type: Transform - pos: 68.64775,27.094486 - parent: 2 -- proto: EvidenceMarkerFour - entities: - - uid: 30874 - components: - - type: Transform - pos: 69.89081,22.263279 - parent: 2 -- proto: EvidenceMarkerNine - entities: - - uid: 30861 - components: - - type: Transform - pos: 65.16739,21.449041 - parent: 2 -- proto: EvidenceMarkerOne - entities: - - uid: 30859 - components: - - type: Transform - pos: 61.70015,23.98104 - parent: 2 -- proto: ExGrenade - entities: - - uid: 21001 - components: - - type: MetaData - name: граната первой бриговской войны - - type: Transform - parent: 20988 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - type: CMExplosionEffect -- proto: ExosuitFabricator - entities: - - uid: 13444 - components: - - type: Transform - pos: 54.5,-24.5 - parent: 2 - - uid: 19874 - components: - - type: Transform - pos: 54.5,-20.5 - parent: 2 -- proto: ExtendedEmergencyOxygenTankFilled - entities: - - uid: 13446 - components: - - type: Transform - pos: 3.4136043,-57.3555 - parent: 2 - - type: CMExplosionEffect - - uid: 13447 - components: - - type: Transform - pos: 3.4136043,-57.3555 - parent: 2 - - type: CMExplosionEffect - - uid: 13448 - components: - - type: Transform - pos: 3.4292293,-55.293 - parent: 2 - - type: CMExplosionEffect - - uid: 13449 - components: - - type: Transform - pos: 3.4292293,-55.293 - parent: 2 - - type: CMExplosionEffect -- proto: ExtinguisherCabinetFilled - entities: - - uid: 6732 + - uid: 1701 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,7.5 + pos: 5.5,1.5 parent: 2 - - uid: 13452 + - uid: 2639 components: - type: Transform - pos: 10.5,-50.5 + rot: -1.5707963267948966 rad + pos: -31.5,209.5 parent: 2 - - uid: 13453 + - uid: 2649 components: - type: Transform - pos: 64.5,-21.5 + rot: 3.141592653589793 rad + pos: -53.5,161.5 parent: 2 - - uid: 13454 + - uid: 5120 components: - type: Transform - pos: 69.5,-47.5 + rot: 1.5707963267948966 rad + pos: -16.5,93.5 parent: 2 - - uid: 13456 + - uid: 25128 components: - type: Transform - pos: -6.5,-32.5 + rot: 1.5707963267948966 rad + pos: -73.5,48.5 parent: 2 - - uid: 13458 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 3 components: - type: Transform - pos: 13.5,-17.5 + pos: -7.5,-8.5 parent: 2 - - type: ContainerContainer - containers: - cabinetSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - ItemCabinet: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13459 + - uid: 109 components: - type: Transform - pos: 13.5,-28.5 + rot: 3.141592653589793 rad + pos: -21.5,7.5 parent: 2 - - uid: 13460 + - uid: 123 components: - type: Transform - pos: 28.5,-11.5 + rot: 3.141592653589793 rad + pos: -10.5,7.5 parent: 2 - - type: ContainerContainer - containers: - cabinetSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - ItemCabinet: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13461 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking457716 + dockedWith: 38066 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 2513 components: - type: Transform - pos: 17.5,29.5 + pos: -9.5,-8.5 parent: 2 - - uid: 13462 + - uid: 4981 components: - type: Transform - pos: 46.5,-1.5 + rot: 1.5707963267948966 rad + pos: 119.5,48.5 parent: 2 - - uid: 13463 + - uid: 6457 components: - type: Transform - pos: 10.5,-57.5 + rot: 1.5707963267948966 rad + pos: 119.5,58.5 parent: 2 - - uid: 13464 + - uid: 7831 components: - type: Transform - pos: -2.5,-46.5 + rot: 1.5707963267948966 rad + pos: -12.5,97.5 parent: 2 - - uid: 13465 + - uid: 10053 components: - type: Transform - pos: 4.5,18.5 + rot: -1.5707963267948966 rad + pos: -101.5,159.5 parent: 2 - - uid: 13466 + - uid: 10904 components: - type: Transform - pos: 38.5,-52.5 + rot: 1.5707963267948966 rad + pos: -12.5,99.5 parent: 2 - - uid: 13467 + - uid: 10918 components: - type: Transform - pos: 48.5,-56.5 + rot: 3.141592653589793 rad + pos: -18.5,106.5 parent: 2 - - uid: 13468 + - uid: 20749 components: - type: Transform - pos: -14.5,-28.5 + rot: -1.5707963267948966 rad + pos: -101.5,161.5 parent: 2 - - uid: 13470 + - uid: 36994 components: - type: Transform - pos: 10.5,0.5 + rot: 3.141592653589793 rad + pos: -15.5,7.5 parent: 2 - - uid: 13471 + - uid: 37079 components: - type: Transform - pos: 1.5,-28.5 + rot: 3.141592653589793 rad + pos: -8.5,7.5 parent: 2 - - uid: 13472 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking457717 + dockedWith: 38069 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True +- proto: AirlockExternalLocked + entities: + - uid: 879 components: - type: Transform - pos: -6.5,-23.5 + pos: -31.5,192.5 parent: 2 - - uid: 13473 + - uid: 1176 components: - type: Transform - pos: 4.5,-17.5 + pos: -72.5,-8.5 parent: 2 - - uid: 13474 + - type: DeviceLinkSource + linkedPorts: + 1503: + - DoorStatus: DoorBolt + - uid: 1501 components: - type: Transform - pos: -24.5,0.5 + pos: -66.5,-14.5 parent: 2 - - uid: 13475 + - type: DeviceLinkSource + linkedPorts: + 1502: + - DoorStatus: DoorBolt + - uid: 3035 components: - type: Transform - pos: -47.5,0.5 + pos: -77.5,140.5 parent: 2 - - uid: 13476 + - type: DeviceLinkSource + linkedPorts: + 18351: + - DoorStatus: DoorBolt + - uid: 3382 components: - type: Transform - pos: -47.5,4.5 + pos: -92.5,91.5 parent: 2 - - uid: 13477 + - type: DeviceLinkSource + linkedPorts: + 3647: + - DoorStatus: DoorBolt + - uid: 3647 components: - type: Transform - pos: -35.5,-7.5 + pos: -92.5,93.5 parent: 2 - - uid: 13478 + - type: DeviceLinkSource + linkedPorts: + 3382: + - DoorStatus: DoorBolt + - uid: 3742 components: - type: Transform - pos: -55.5,2.5 + pos: 117.5,48.5 parent: 2 - - uid: 13479 + - uid: 4278 components: - type: Transform - pos: -65.5,-12.5 + pos: -106.5,104.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4318: + - DoorStatus: DoorBolt + - uid: 4318 + components: + - type: Transform + pos: -106.5,101.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4278: + - DoorStatus: DoorBolt + - uid: 4740 + components: + - type: Transform + pos: 92.5,61.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4741: + - DoorStatus: DoorBolt + - uid: 4741 + components: + - type: Transform + pos: 88.5,61.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4740: + - DoorStatus: DoorBolt + - uid: 4871 + components: + - type: Transform + pos: 83.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5057: + - DoorStatus: DoorBolt + - uid: 5057 + components: + - type: Transform + pos: 83.5,33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4871: + - DoorStatus: DoorBolt + - uid: 5477 + components: + - type: Transform + pos: -53.5,169.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 37330: + - DoorStatus: DoorBolt + - uid: 15779 + components: + - type: Transform + pos: -50.5,57.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15780: + - DoorStatus: DoorBolt + - uid: 15780 + components: + - type: Transform + pos: -50.5,59.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15779: + - DoorStatus: DoorBolt + - uid: 17352 + components: + - type: Transform + pos: -66.5,179.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21023: + - DoorStatus: DoorBolt + - uid: 18351 + components: + - type: Transform + pos: -77.5,143.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3035: + - DoorStatus: DoorBolt + - uid: 21023 + components: + - type: Transform + pos: -66.5,175.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17352: + - DoorStatus: DoorBolt + - uid: 26192 + components: + - type: Transform + pos: -35.5,192.5 + parent: 2 + - uid: 26822 + components: + - type: Transform + pos: 16.5,206.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26823: + - DoorStatus: DoorBolt + - uid: 26823 + components: + - type: Transform + pos: 16.5,204.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26822: + - DoorStatus: DoorBolt + - uid: 36982 + components: + - type: Transform + pos: -124.5,67.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 37364: + - DoorStatus: DoorBolt + - uid: 37330 + components: + - type: Transform + pos: -49.5,169.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5477: + - DoorStatus: DoorBolt + - uid: 37364 + components: + - type: Transform + pos: -123.5,64.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 36982: + - DoorStatus: DoorBolt +- proto: AirlockFreezer + entities: + - uid: 10969 + components: + - type: Transform + pos: -12.5,63.5 + parent: 2 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 34625 + components: + - type: Transform + pos: -12.5,66.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,95.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,106.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - uid: 10070 + components: + - type: Transform + pos: -82.5,99.5 + parent: 2 + - uid: 10311 + components: + - type: Transform + pos: -63.5,108.5 + parent: 2 + - uid: 13937 + components: + - type: Transform + pos: -64.5,108.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,97.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,97.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,101.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,101.5 + parent: 2 + - uid: 14549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,82.5 + parent: 2 + - uid: 14561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,83.5 + parent: 2 + - uid: 14565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,81.5 + parent: 2 + - uid: 15211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,76.5 + parent: 2 + - uid: 27767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,44.5 + parent: 2 + - uid: 27768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,44.5 + parent: 2 + - uid: 29380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 2 + - uid: 33068 + components: + - type: Transform + pos: -60.5,72.5 + parent: 2 + - uid: 33069 + components: + - type: Transform + pos: -59.5,72.5 + parent: 2 + - uid: 33070 + components: + - type: Transform + pos: -58.5,72.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,166.5 + parent: 2 + - uid: 107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,158.5 + parent: 2 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,52.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: 1.5,161.5 + parent: 2 + - type: Door + secondsUntilStateChange: -12568.539 + changeAirtight: False + state: Opening + - type: Docking + dockJointId: docking51974 + dockedWith: 36495 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + DockStatus: True + - uid: 1145 + components: + - type: Transform + pos: -0.5,161.5 + parent: 2 + - type: Door + secondsUntilStateChange: -12566.505 + changeAirtight: False + state: Opening + - type: Docking + dockJointId: docking51973 + dockedWith: 36496 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + DockStatus: True + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,100.5 + parent: 2 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking168406 + dockedWith: 36727 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 2492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,67.5 + parent: 2 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking15994 + dockedWith: 13390 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 10772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,166.5 + parent: 2 + - uid: 11708 + components: + - type: Transform + pos: -19.5,59.5 + parent: 2 + - uid: 11709 + components: + - type: Transform + pos: -21.5,59.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 13386 + - uid: 13390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 13386 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking15994 + dockedWith: 2492 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True - uid: 13480 components: - type: Transform - pos: -65.5,7.5 + rot: 3.141592653589793 rad + pos: -27.5,212.5 parent: 2 - - uid: 13481 - components: - - type: Transform - pos: -52.5,-14.5 - parent: 2 - - uid: 13482 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 2 - - uid: 13483 - components: - - type: Transform - pos: -51.5,16.5 - parent: 2 - - uid: 13484 - components: - - type: Transform - pos: 1.5,9.5 - parent: 2 - - uid: 13486 - components: - - type: Transform - pos: 3.5,25.5 - parent: 2 - - uid: 13487 - components: - - type: Transform - pos: 5.5,33.5 - parent: 2 - - uid: 13490 - components: - - type: Transform - pos: 44.5,4.5 - parent: 2 - - uid: 13491 - components: - - type: Transform - pos: 59.5,14.5 - parent: 2 - - uid: 13492 - components: - - type: Transform - pos: 35.5,-3.5 - parent: 2 - - uid: 13493 - components: - - type: Transform - pos: 2.5,-46.5 - parent: 2 - - uid: 13494 - components: - - type: Transform - pos: 55.5,-25.5 - parent: 2 - - uid: 13497 - components: - - type: Transform - pos: 8.5,-33.5 - parent: 2 - - uid: 14934 - components: - - type: Transform - pos: 11.5,22.5 - parent: 2 - - uid: 19477 - components: - - type: Transform - pos: -16.5,0.5 - parent: 2 - - uid: 21482 + - uid: 17730 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-13.5 + pos: -73.5,34.5 parent: 2 - - uid: 29825 + - uid: 17999 components: - type: Transform - pos: -46.5,-29.5 + pos: -18.5,160.5 parent: 2 -- proto: FatExtractor - entities: - - uid: 27891 + - uid: 18258 components: - type: Transform - pos: 37.5,-2.5 + rot: 1.5707963267948966 rad + pos: -73.5,40.5 parent: 2 -- proto: FaxMachineBase - entities: - - uid: 10964 - components: - - type: Transform - pos: -24.5,-22.5 - parent: 2 - - type: FaxMachine - name: Снабжение - - uid: 13498 - components: - - type: Transform - pos: 37.5,-38.5 - parent: 2 - - type: FaxMachine - name: ГВ - - uid: 13499 - components: - - type: Transform - pos: 14.5,45.5 - parent: 2 - - type: FaxMachine - name: ГСБ - - uid: 13500 - components: - - type: Transform - pos: 3.5,28.5 - parent: 2 - - type: FaxMachine - name: Бриг - - uid: 13503 - components: - - type: Transform - pos: 5.5,-51.5 - parent: 2 - - type: FaxMachine - name: Engineering - - uid: 13504 - components: - - type: Transform - pos: -33.5,-26.5 - parent: 2 - - type: FaxMachine - name: КМ - - uid: 13505 - components: - - type: Transform - pos: 44.5,-24.5 - parent: 2 - - type: FaxMachine - name: Морг - - uid: 13506 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 2 - - type: FaxMachine - name: Медицинский - - uid: 13509 - components: - - type: Transform - pos: -10.5,-11.5 - parent: 2 - - type: FaxMachine - name: ОСЩ - - uid: 13513 - components: - - type: Transform - pos: 57.5,-6.5 - parent: 2 - - type: FaxMachine - name: Библиотека - - uid: 13572 - components: - - type: Transform - pos: 61.5,-31.5 - parent: 2 - - type: FaxMachine - name: НР - - uid: 21436 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 2 - - type: FaxMachine - name: Сервис - - uid: 22053 - components: - - type: Transform - pos: 14.5,19.5 - parent: 2 - - type: FaxMachine - name: Детектив - - uid: 23437 - components: - - type: Transform - pos: 7.5,-68.5 - parent: 2 - - type: FaxMachine - name: СИ - - uid: 24294 - components: - - type: Transform - pos: 69.5,-22.5 - parent: 2 - - type: FaxMachine - name: Научный - - uid: 24297 - components: - - type: Transform - pos: 64.5,1.5 - parent: 2 - - type: FaxMachine - name: Священик - - uid: 25746 - components: - - type: Transform - pos: 3.5,-14.5 - parent: 2 - - uid: 29745 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 2 - - type: FaxMachine - name: ГП - - uid: 29785 - components: - - type: Transform - pos: -10.5,17.5 - parent: 2 - - type: FaxMachine - name: Юридический - - uid: 31354 - components: - - type: Transform - pos: 25.5,21.5 - parent: 2 - - type: FaxMachine - name: Редакция -- proto: FaxMachineCaptain - entities: - - uid: 13514 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 2 - - type: FaxMachine - name: Капитан -- proto: FenceMetalBroken - entities: - - uid: 20873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,15.5 - parent: 2 -- proto: FenceMetalGate - entities: - - uid: 20182 + - uid: 18279 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,15.5 + pos: -29.5,212.5 parent: 2 -- proto: FenceMetalStraight - entities: - - uid: 11511 + - uid: 18281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,42.5 + parent: 2 + - uid: 21040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,152.5 + parent: 2 + - uid: 28760 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,15.5 + pos: -138.5,40.5 parent: 2 - - uid: 19354 + - uid: 29343 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,15.5 + pos: -138.5,48.5 parent: 2 -- proto: FigureSpawner + - uid: 29350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -138.5,50.5 + parent: 2 + - uid: 36495 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 30902 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking51974 + dockedWith: 1144 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 36496 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 30902 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking51973 + dockedWith: 1145 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 36727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 21114 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking168406 + dockedWith: 1323 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 36728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 21114 + - uid: 38066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 37842 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking457716 + dockedWith: 123 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 38067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 37842 + - uid: 38068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 37842 + - uid: 38069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 37842 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking457717 + dockedWith: 37079 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 39414 + components: + - type: Transform + pos: -20.5,160.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked entities: - - uid: 1752 + - uid: 10535 components: - type: Transform - pos: 80.5,-28.5 + pos: -16.5,85.5 parent: 2 - - uid: 5626 + - uid: 10536 components: - type: Transform - pos: 81.5,-28.5 + pos: -14.5,82.5 parent: 2 - - uid: 5630 + - uid: 10537 components: - type: Transform - pos: 80.5,-27.5 + pos: -21.5,82.5 parent: 2 - - uid: 5631 - components: - - type: Transform - pos: 81.5,-27.5 - parent: 2 - - uid: 13515 - components: - - type: Transform - pos: 56.5,0.5 - parent: 2 -- proto: filingCabinet +- proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 13519 + - uid: 1504 components: - type: Transform - pos: -14.5,-26.5 + rot: 1.5707963267948966 rad + pos: 78.5,66.5 parent: 2 - - uid: 13522 - components: - - type: Transform - pos: 57.5,3.5 - parent: 2 - - uid: 13524 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 2 - - uid: 24775 - components: - - type: Transform - pos: -4.5,-14.5 - parent: 2 - - uid: 29746 - components: - - type: Transform - pos: -8.5,-27.5 - parent: 2 - - uid: 29914 - components: - - type: Transform - pos: 8.5,-23.5 - parent: 2 -- proto: filingCabinetDrawer +- proto: AirlockHeadOfSecurityLocked entities: + - uid: 4688 + components: + - type: Transform + pos: 82.5,64.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + pos: 86.5,62.5 + parent: 2 +- proto: AirlockHydroGlassLocked + entities: + - uid: 11134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,70.5 + parent: 2 + - uid: 11230 + components: + - type: Transform + pos: -10.5,70.5 + parent: 2 +- proto: AirlockHydroponicsLocked + entities: + - uid: 13264 + components: + - type: Transform + pos: -1.5,65.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 5503 + components: + - type: Transform + pos: -4.5,81.5 + parent: 2 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 10769 + components: + - type: Transform + pos: -16.5,72.5 + parent: 2 + - uid: 10774 + components: + - type: Transform + pos: -15.5,72.5 + parent: 2 +- proto: AirlockLawyerLocked + entities: + - uid: 386 + components: + - type: Transform + pos: -71.5,74.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 26813 + components: + - type: Transform + pos: -34.5,62.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 1006 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 +- proto: AirlockMaintChapelLocked + entities: + - uid: 12192 + components: + - type: Transform + pos: -52.5,66.5 + parent: 2 +- proto: AirlockMaintCommonLocked + entities: + - uid: 17714 + components: + - type: Transform + pos: -106.5,97.5 + parent: 2 + - uid: 17861 + components: + - type: Transform + pos: -107.5,97.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 1477 + components: + - type: Transform + pos: -59.5,-0.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + pos: -128.5,104.5 + parent: 2 + - uid: 25335 + components: + - type: Transform + pos: -126.5,102.5 + parent: 2 + - uid: 25337 + components: + - type: Transform + pos: -122.5,101.5 + parent: 2 + - uid: 26498 + components: + - type: Transform + pos: -114.5,97.5 + parent: 2 + - uid: 26861 + components: + - type: Transform + pos: -117.5,103.5 + parent: 2 + - uid: 26865 + components: + - type: Transform + pos: -113.5,99.5 + parent: 2 +- proto: AirlockMaintHOPLocked + entities: + - uid: 15775 + components: + - type: Transform + pos: -14.5,86.5 + parent: 2 +- proto: AirlockMaintHydroLocked + entities: + - uid: 11677 + components: + - type: Transform + pos: 1.5,70.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 1013 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: -17.5,172.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: -107.5,65.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: -89.5,75.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: 84.5,41.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: -27.5,88.5 + parent: 2 + - uid: 4126 + components: + - type: Transform + pos: -26.5,77.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: -67.5,87.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: -55.5,75.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: -94.5,144.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + pos: -81.5,145.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + pos: -75.5,148.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: -116.5,65.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + pos: -2.5,210.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: 7.5,201.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: 20.5,200.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + pos: -27.5,205.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: 24.5,196.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: -81.5,83.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + pos: -16.5,89.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + pos: 19.5,176.5 + parent: 2 + - uid: 7142 + components: + - type: Transform + pos: 20.5,181.5 + parent: 2 + - uid: 7143 + components: + - type: Transform + pos: 6.5,178.5 + parent: 2 + - uid: 7287 + components: + - type: Transform + pos: 17.5,179.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: -81.5,88.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + pos: -87.5,144.5 + parent: 2 + - uid: 8684 + components: + - type: Transform + pos: -82.5,85.5 + parent: 2 + - uid: 9073 + components: + - type: Transform + pos: -28.5,78.5 + parent: 2 + - uid: 9074 + components: + - type: Transform + pos: -30.5,82.5 + parent: 2 + - uid: 9075 + components: + - type: Transform + pos: -52.5,78.5 + parent: 2 + - uid: 9077 + components: + - type: Transform + pos: -50.5,82.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + pos: -39.5,64.5 + parent: 2 + - uid: 9091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,173.5 + parent: 2 + - uid: 10554 + components: + - type: Transform + pos: -58.5,170.5 + parent: 2 + - uid: 10785 + components: + - type: Transform + pos: 4.5,71.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + pos: -4.5,71.5 + parent: 2 + - uid: 11266 + components: + - type: Transform + pos: -46.5,81.5 + parent: 2 + - uid: 11487 + components: + - type: Transform + pos: -20.5,209.5 + parent: 2 + - uid: 12492 + components: + - type: Transform + pos: -54.5,170.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + pos: 6.5,206.5 + parent: 2 + - uid: 14046 + components: + - type: Transform + pos: -25.5,76.5 + parent: 2 + - uid: 14144 + components: + - type: Transform + pos: 57.5,42.5 + parent: 2 + - uid: 14817 + components: + - type: Transform + pos: -0.5,174.5 + parent: 2 + - uid: 14878 + components: + - type: Transform + pos: -69.5,72.5 + parent: 2 + - uid: 15368 + components: + - type: Transform + pos: -73.5,69.5 + parent: 2 + - uid: 15613 + components: + - type: Transform + pos: 4.5,75.5 + parent: 2 + - uid: 16346 + components: + - type: Transform + pos: -106.5,63.5 + parent: 2 + - uid: 17664 + components: + - type: Transform + pos: -29.5,197.5 + parent: 2 + - uid: 17749 + components: + - type: Transform + pos: 86.5,51.5 + parent: 2 + - uid: 18070 + components: + - type: Transform + pos: -79.5,78.5 + parent: 2 + - uid: 20176 + components: + - type: Transform + pos: -34.5,81.5 + parent: 2 + - uid: 24278 + components: + - type: Transform + pos: -28.5,190.5 + parent: 2 + - uid: 24385 + components: + - type: Transform + pos: -50.5,72.5 + parent: 2 + - uid: 24797 + components: + - type: Transform + pos: -53.5,88.5 + parent: 2 + - uid: 24814 + components: + - type: Transform + pos: -82.5,77.5 + parent: 2 + - uid: 25442 + components: + - type: Transform + pos: -60.5,160.5 + parent: 2 + - uid: 26402 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - uid: 26413 + components: + - type: Transform + pos: -67.5,162.5 + parent: 2 + - uid: 26495 + components: + - type: Transform + pos: -111.5,65.5 + parent: 2 + - uid: 27102 + components: + - type: Transform + pos: -92.5,49.5 + parent: 2 + - uid: 28145 + components: + - type: Transform + pos: -72.5,150.5 + parent: 2 + - uid: 36760 + components: + - type: Transform + pos: -94.5,53.5 + parent: 2 + - uid: 36792 + components: + - type: Transform + pos: -79.5,88.5 + parent: 2 + - uid: 36852 + components: + - type: Transform + pos: -101.5,54.5 + parent: 2 + - uid: 37143 + components: + - type: Transform + pos: -47.5,175.5 + parent: 2 + - uid: 37217 + components: + - type: Transform + pos: -39.5,175.5 + parent: 2 + - uid: 37218 + components: + - type: Transform + pos: -32.5,180.5 + parent: 2 + - uid: 37347 + components: + - type: Transform + pos: -74.5,65.5 + parent: 2 + - uid: 39165 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 4835 + components: + - type: Transform + pos: -3.5,209.5 + parent: 2 - uid: 5421 components: - type: Transform - pos: 61.5,-32.5 + pos: 83.5,45.5 parent: 2 - - uid: 9216 + - uid: 11084 components: - type: Transform - pos: -6.5,34.5 + pos: 20.5,198.5 parent: 2 - - uid: 13525 + - uid: 17973 components: - type: Transform - pos: -9.5,-21.5 + pos: 2.5,168.5 parent: 2 - - uid: 13527 - components: - - type: Transform - pos: 59.5,-18.5 - parent: 2 - - uid: 13528 - components: - - type: Transform - pos: -24.5,-11.5 - parent: 2 - - uid: 13530 - components: - - type: Transform - pos: -6.5,-57.5 - parent: 2 - - uid: 20814 - components: - - type: Transform - pos: -6.5,29.5 - parent: 2 -- proto: filingCabinetDrawerRandom +- proto: AirlockMaintRnDLocked entities: - - uid: 6811 + - uid: 11205 components: - type: Transform - pos: 27.5,22.5 + pos: -67.5,172.5 parent: 2 - - uid: 13532 + - uid: 12936 components: - type: Transform - pos: 4.5,-51.5 + pos: -99.5,148.5 parent: 2 - - uid: 29778 - components: - - type: Transform - pos: -8.5,1.5 - parent: 2 - - uid: 29779 - components: - - type: Transform - pos: -7.5,7.5 - parent: 2 - - uid: 29786 - components: - - type: Transform - pos: -12.5,17.5 - parent: 2 - - uid: 29813 - components: - - type: Transform - pos: -8.5,17.5 - parent: 2 -- proto: filingCabinetRandom +- proto: AirlockMaintSecLocked entities: - - uid: 13534 + - uid: 38526 components: - type: Transform - pos: 9.5,-36.5 + pos: 56.5,51.5 parent: 2 - - uid: 13535 - components: - - type: Transform - pos: -32.5,-31.5 - parent: 2 -- proto: filingCabinetTallRandom +- proto: AirlockMaintTheatreLocked entities: - - uid: 29224 + - uid: 10793 components: - type: Transform - pos: 59.5,-80.5 + pos: -32.5,69.5 parent: 2 -- proto: FireAlarm + - uid: 17848 + components: + - type: Transform + pos: -33.5,68.5 + parent: 2 +- proto: AirlockMedicalGlass entities: - - uid: 13537 + - uid: 4001 components: - type: Transform - pos: 9.5,-50.5 + pos: -8.5,172.5 parent: 2 - - type: DeviceList - devices: - - 635 - - 13818 - - 13776 - - 13777 - - 13819 - - uid: 13538 + - uid: 22442 components: - type: Transform - pos: -28.5,-18.5 + pos: -11.5,185.5 parent: 2 - - type: DeviceList - devices: - - 13716 - - 13604 - - 13601 - - 13603 - - 13602 - - 648 - - uid: 13539 + - uid: 22443 components: - type: Transform - pos: 68.5,-49.5 + pos: -12.5,185.5 parent: 2 - - type: DeviceList - devices: - - 13665 - - 13666 - - 13667 - - 617 - - uid: 13541 + - uid: 22657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 + pos: -10.5,188.5 parent: 2 - - type: DeviceList - devices: - - 13649 - - 13651 - - 13757 - - 656 - - 13793 - - uid: 13542 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 4 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-32.5 + pos: -27.5,201.5 parent: 2 - - type: DeviceList - devices: - - 13688 - - 13689 - - 13686 - - 13701 - - 13707 - - 13708 - - 651 - - uid: 13543 + - uid: 3893 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-6.5 + pos: -10.5,192.5 parent: 2 - - type: DeviceList - devices: - - 700 - - 13851 - - 13850 - - 13759 - - 13763 - - 13650 - - 13762 - - 13800 - - 13801 - - uid: 13544 + - uid: 4120 components: - type: Transform - pos: -2.5,-50.5 + pos: -22.5,199.5 parent: 2 - - type: DeviceList - devices: - - 13616 - - 13608 - - 13606 - - 13609 - - 13619 - - 13605 - - 623 - - uid: 13545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-48.5 - parent: 2 - - type: DeviceList - devices: - - 13605 - - 13619 - - 13609 - - 13606 - - 13608 - - 13616 - - 13779 - - 633 - - uid: 13546 - components: - - type: Transform - pos: 2.5,-58.5 - parent: 2 - - type: DeviceList - devices: - - 13776 - - 13777 - - 13820 - - 627 - - uid: 13547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-24.5 - parent: 2 - - type: DeviceList - devices: - - 13688 - - 13689 - - 13686 - - 13701 - - 13707 - - 13708 - - 651 - - uid: 13548 - components: - - type: Transform - pos: 67.5,-1.5 - parent: 2 - - uid: 13549 + - uid: 22409 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-35.5 + pos: 0.5,201.5 parent: 2 - - type: DeviceList - devices: - - 13605 - - 13619 - - 13609 - - 13606 - - 13608 - - 13616 - - 13779 - - 633 - - uid: 13550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-55.5 - parent: 2 - - uid: 13552 - components: - - type: Transform - pos: -11.5,-28.5 - parent: 2 - - type: DeviceList - devices: - - 13692 - - 13720 - - 13719 - - 638 - - 13675 - - 13671 - - 13722 - - 13690 - - 13691 - - 13764 - - 13758 - - uid: 13553 + - uid: 22412 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-24.5 + pos: 1.5,201.5 parent: 2 - - type: DeviceList - devices: - - 639 - - 13672 - - uid: 13556 + - uid: 22619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-16.5 + pos: -6.5,170.5 parent: 2 - - type: DeviceList - devices: - - 13658 - - 13657 - - 13656 - - 13698 - - 13697 - - 13699 - - 646 - - 13753 - - 13754 - - 13755 - - 645 - - 13722 - - 13690 - - 13691 - - uid: 13559 + - uid: 22752 components: - type: Transform - pos: 13.5,0.5 + pos: -11.5,190.5 parent: 2 - - type: DeviceList - devices: - - 13615 - - 13614 - - 650 - - 13756 - - 13765 - - 13766 - - 13685 - - 13684 - - 13687 - - uid: 13560 + - uid: 23024 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-19.5 + pos: -10.5,197.5 parent: 2 - - type: DeviceList - devices: - - 652 - - 13688 - - 13689 - - 13686 - - 13685 - - 13684 - - 13687 - - 13744 - - 13745 - - 13746 - - uid: 13561 + - uid: 23025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,196.5 + parent: 2 + - uid: 23377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,204.5 + parent: 2 + - uid: 23378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,203.5 + parent: 2 + - uid: 23722 + components: + - type: Transform + pos: -3.5,168.5 + parent: 2 + - uid: 25098 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-11.5 + pos: -6.5,166.5 parent: 2 - - type: DeviceList - devices: - - 13815 - - 13816 - - 13648 - - 13652 - - 13655 - - 13653 - - 13654 - - 13732 - - 13743 - - 13795 - - 13794 - - 13730 - - uid: 13562 + - uid: 25099 components: - type: Transform - pos: 45.5,-1.5 + rot: 3.141592653589793 rad + pos: -0.5,164.5 parent: 2 - - type: DeviceList - devices: - - 13725 - - 13726 - - 654 - - uid: 13563 + - uid: 25100 components: - type: Transform - pos: 31.5,-11.5 + rot: 3.141592653589793 rad + pos: 1.5,164.5 parent: 2 - - type: DeviceList - devices: - - 13746 - - 13745 - - 13744 - - 13815 - - 13816 - - 13649 - - 13752 - - 13761 - - 13740 - - 655 - - 13749 - - 13748 - - 13747 - - uid: 13564 + - uid: 25101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,166.5 + parent: 2 + - uid: 30903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 30902 +- proto: AirlockMedicalLocked + entities: + - uid: 3951 + components: + - type: Transform + pos: 79.5,42.5 + parent: 2 + - uid: 7217 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-20.5 + pos: -30.5,205.5 parent: 2 - - type: DeviceList - devices: - - 13757 - - 13651 - - 13752 - - 13761 - - 657 - - 13740 - - uid: 13565 + - uid: 22858 components: - type: Transform - pos: 36.5,-21.5 + pos: -15.5,195.5 parent: 2 - - type: DeviceList - devices: - - 13796 - - 13797 - - 13670 - - 13717 - - 13780 - - 13781 - - 658 - - uid: 13566 + - uid: 22903 + components: + - type: Transform + pos: -8.5,195.5 + parent: 2 + - uid: 22904 + components: + - type: Transform + pos: -7.5,195.5 + parent: 2 + - uid: 22905 + components: + - type: Transform + pos: -12.5,198.5 + parent: 2 + - uid: 22906 + components: + - type: Transform + pos: -11.5,198.5 + parent: 2 + - uid: 36326 + components: + - type: Transform + pos: 2.5,187.5 + parent: 2 + - uid: 38247 + components: + - type: Transform + pos: -20.5,180.5 + parent: 2 +- proto: AirlockMedicalScienceGlassLocked + entities: + - uid: 2849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,13.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,15.5 + parent: 2 +- proto: AirlockMedicalScienceLocked + entities: + - uid: 2847 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2848: + - DoorStatus: DoorBolt + - uid: 2848 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2847: + - DoorStatus: DoorBolt +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 1718 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 1256 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 19767 + components: + - type: Transform + pos: -89.5,155.5 + parent: 2 + - uid: 19782 + components: + - type: Transform + pos: -91.5,161.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 4452 + components: + - type: Transform + pos: -82.5,159.5 + parent: 2 + - uid: 18357 + components: + - type: Transform + pos: -85.5,155.5 + parent: 2 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 2545 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 +- proto: AirlockSalvageLocked + entities: + - uid: 1018 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1328: + - DoorStatus: DoorBolt +- proto: AirlockScienceGlassLocked + entities: + - uid: 4975 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-30.5 + pos: -97.5,163.5 parent: 2 - - type: DeviceList - devices: - - 13706 - - 13669 - - 13674 - - 13673 - - 659 - - uid: 13567 + - uid: 4976 components: - type: Transform - pos: 38.5,-30.5 + rot: -1.5707963267948966 rad + pos: -97.5,157.5 parent: 2 - - type: DeviceList - devices: - - 13706 - - 13669 - - 13780 - - 13781 - - 661 - - 13704 - - 13668 - - 13705 - - uid: 13568 + - uid: 4977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,170.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,164.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,171.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,166.5 + parent: 2 + - uid: 4995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,166.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,166.5 + parent: 2 + - uid: 5010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,172.5 + parent: 2 + - uid: 5011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,176.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,176.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,176.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,170.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,171.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,172.5 + parent: 2 + - uid: 5524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,163.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,166.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,166.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,171.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,161.5 + parent: 2 + - uid: 7878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,161.5 + parent: 2 + - uid: 17596 + components: + - type: Transform + pos: -70.5,173.5 + parent: 2 + - uid: 17621 + components: + - type: Transform + pos: -71.5,173.5 + parent: 2 + - uid: 17941 + components: + - type: Transform + pos: -91.5,149.5 + parent: 2 + - uid: 18079 + components: + - type: Transform + pos: -85.5,149.5 + parent: 2 + - uid: 20058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,161.5 + parent: 2 + - uid: 20995 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-43.5 + pos: -77.5,163.5 parent: 2 - - type: DeviceList - devices: - - 13704 - - 13668 - - 13705 - - 664 - - uid: 13569 + - uid: 25095 components: - type: Transform - pos: 64.5,-11.5 + rot: 1.5707963267948966 rad + pos: -77.5,164.5 parent: 2 - - type: DeviceList - devices: - - 666 - - 13749 - - 13748 - - 13747 - - 13725 - - 13726 - - 667 - - 13855 - - 13856 - - 13857 - - 13710 - - 13712 - - 13711 - - 13620 - - 13621 - - uid: 13570 +- proto: AirlockScienceLocked + entities: + - uid: 7617 components: - type: Transform - pos: 50.5,-11.5 + pos: -97.5,154.5 + parent: 2 + - uid: 18144 + components: + - type: Transform + pos: -80.5,153.5 + parent: 2 + - uid: 20514 + components: + - type: Transform + pos: -88.5,176.5 + parent: 2 + - uid: 20515 + components: + - type: Transform + pos: -87.5,176.5 + parent: 2 + - uid: 20516 + components: + - type: Transform + pos: -97.5,166.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,180.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: -42.5,81.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: -38.5,81.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: 53.5,58.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + pos: 91.5,53.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: 97.5,50.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,63.5 + parent: 2 + - uid: 6208 + components: + - type: Transform + pos: 72.5,64.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + pos: 67.5,57.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + pos: 67.5,58.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + pos: 70.5,64.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + pos: 71.5,64.5 + parent: 2 + - uid: 6554 + components: + - type: Transform + pos: 75.5,57.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + pos: 97.5,56.5 + parent: 2 + - uid: 7059 + components: + - type: Transform + pos: 75.5,58.5 + parent: 2 + - uid: 8608 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 16076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 13386 + - uid: 16085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 13386 + - uid: 16164 + components: + - type: Transform + pos: 47.5,59.5 + parent: 2 + - uid: 18840 + components: + - type: Transform + pos: -103.5,101.5 + parent: 2 + - uid: 22133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,156.5 + parent: 2 + - uid: 25175 + components: + - type: Transform + pos: -96.5,35.5 + parent: 2 + - uid: 27506 + components: + - type: Transform + pos: -90.5,35.5 + parent: 2 + - uid: 31448 + components: + - type: Transform + pos: 80.5,37.5 + parent: 2 +- proto: AirlockSecurityLocked + entities: + - uid: 1245 + components: + - type: Transform + pos: 77.5,56.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + pos: 39.5,61.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: 76.5,56.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + pos: 64.5,66.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: 65.5,56.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + pos: 71.5,45.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + pos: 66.5,56.5 + parent: 2 + - uid: 8729 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 +- proto: AirlockServiceGlassLocked + entities: + - uid: 4413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,66.5 + parent: 2 + - uid: 10671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,83.5 + parent: 2 + - uid: 11082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,70.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 314 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + pos: -6.5,87.5 + parent: 2 + - uid: 14490 + components: + - type: Transform + pos: -67.5,82.5 + parent: 2 +- proto: AirlockShuttle + entities: + - uid: 37044 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 36996 +- proto: AirlockShuttleAssembly + entities: + - uid: 2089 + components: + - type: Transform + pos: -57.5,-17.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 1550 + components: + - type: Transform + pos: -70.5,89.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: -61.5,98.5 + parent: 2 + - uid: 5937 + components: + - type: Transform + pos: -68.5,91.5 + parent: 2 + - uid: 11002 + components: + - type: Transform + pos: -32.5,66.5 + parent: 2 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 3116 + components: + - type: Transform + pos: 3.5,191.5 + parent: 2 + - uid: 22589 + components: + - type: Transform + pos: 7.5,192.5 + parent: 2 + - uid: 22700 + components: + - type: Transform + pos: 7.5,191.5 + parent: 2 + - uid: 23238 + components: + - type: Transform + pos: 3.5,192.5 + parent: 2 + - uid: 23634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,192.5 + parent: 2 + - uid: 23635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,191.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 706 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: -18.5,98.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,44.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: 71.5,47.5 + parent: 2 + - uid: 5097 + components: + - type: Transform + pos: 98.5,53.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + pos: 108.5,58.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 2 + - uid: 12526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,168.5 + parent: 2 + - uid: 14392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,83.5 + parent: 2 + - uid: 14818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,3.5 + parent: 2 + - uid: 17934 + components: + - type: Transform + pos: -122.5,57.5 + parent: 2 + - uid: 18190 + components: + - type: Transform + pos: -79.5,41.5 + parent: 2 + - uid: 18366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,181.5 + parent: 2 + - uid: 19132 + components: + - type: Transform + pos: 1.5,203.5 + parent: 2 + - uid: 21207 + components: + - type: Transform + pos: -40.5,73.5 + parent: 2 + - uid: 21437 + components: + - type: Transform + pos: 73.5,62.5 + parent: 2 + - uid: 25403 + components: + - type: Transform + pos: -65.5,66.5 + parent: 2 + - uid: 26477 + components: + - type: Transform + pos: -89.5,41.5 + parent: 2 + - uid: 26478 + components: + - type: Transform + pos: -97.5,41.5 + parent: 2 + - uid: 26480 + components: + - type: Transform + pos: -101.5,48.5 + parent: 2 + - uid: 26482 + components: + - type: Transform + pos: -116.5,46.5 + parent: 2 + - uid: 27371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,66.5 + parent: 2 + - uid: 31305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,174.5 + parent: 2 + - uid: 31800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,193.5 + parent: 2 + - uid: 32070 + components: + - type: Transform + pos: -18.5,180.5 + parent: 2 + - uid: 36298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,3.5 + parent: 2 + - uid: 36300 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 36301 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 36302 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 36308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 2 + - uid: 36311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 2 + - uid: 36317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 2 + - uid: 36318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-10.5 + parent: 2 + - uid: 36322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,201.5 + parent: 2 + - uid: 36335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,188.5 + parent: 2 + - uid: 36336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,192.5 + parent: 2 + - uid: 36337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,196.5 + parent: 2 + - uid: 36338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,196.5 + parent: 2 + - uid: 36339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,204.5 + parent: 2 + - uid: 36350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,204.5 + parent: 2 + - uid: 36355 + components: + - type: Transform + pos: 0.5,197.5 + parent: 2 + - uid: 36357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,183.5 + parent: 2 + - uid: 36359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,179.5 + parent: 2 + - uid: 36373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,166.5 + parent: 2 + - uid: 36374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,168.5 + parent: 2 + - uid: 36375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,170.5 + parent: 2 + - uid: 36402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,191.5 + parent: 2 + - uid: 36403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,194.5 + parent: 2 + - uid: 36405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,152.5 + parent: 2 + - uid: 36406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,158.5 + parent: 2 + - uid: 36414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,170.5 + parent: 2 + - uid: 36415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,176.5 + parent: 2 + - uid: 36416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,178.5 + parent: 2 + - uid: 36417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,170.5 + parent: 2 + - uid: 36427 + components: + - type: Transform + pos: -87.5,164.5 + parent: 2 + - uid: 36431 + components: + - type: Transform + pos: -80.5,159.5 + parent: 2 + - uid: 36432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,157.5 + parent: 2 + - uid: 36530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,36.5 + parent: 2 + - uid: 36531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,32.5 + parent: 2 + - uid: 36536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,34.5 + parent: 2 + - uid: 36537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,31.5 + parent: 2 + - uid: 36544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,45.5 + parent: 2 + - uid: 36545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,53.5 + parent: 2 + - uid: 36568 + components: + - type: Transform + pos: 71.5,67.5 + parent: 2 + - uid: 36572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,39.5 + parent: 2 + - uid: 36574 + components: + - type: Transform + pos: 85.5,39.5 + parent: 2 + - uid: 36576 + components: + - type: Transform + pos: 89.5,48.5 + parent: 2 + - uid: 36577 + components: + - type: Transform + pos: 89.5,58.5 + parent: 2 + - uid: 36579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,47.5 + parent: 2 + - uid: 36580 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 36581 + components: + - type: Transform + pos: 57.5,41.5 + parent: 2 + - uid: 36582 + components: + - type: Transform + pos: 66.5,53.5 + parent: 2 + - uid: 36583 + components: + - type: Transform + pos: 76.5,53.5 + parent: 2 + - uid: 36588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,58.5 + parent: 2 + - uid: 36591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,60.5 + parent: 2 + - uid: 36594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,54.5 + parent: 2 + - uid: 36597 + components: + - type: Transform + pos: 61.5,59.5 + parent: 2 + - uid: 36599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,65.5 + parent: 2 + - uid: 36600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,61.5 + parent: 2 + - uid: 36604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,61.5 + parent: 2 + - uid: 36866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,79.5 + parent: 2 + - uid: 36868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,85.5 + parent: 2 + - uid: 36869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,89.5 + parent: 2 + - uid: 36870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,89.5 + parent: 2 + - uid: 36874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,95.5 + parent: 2 + - uid: 36875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,99.5 + parent: 2 + - uid: 36877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,100.5 + parent: 2 + - uid: 36881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,101.5 + parent: 2 + - uid: 36882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,98.5 + parent: 2 + - uid: 36884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,108.5 + parent: 2 + - uid: 36887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,103.5 + parent: 2 + - uid: 36889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,83.5 + parent: 2 + - uid: 36896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,82.5 + parent: 2 + - uid: 36898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,75.5 + parent: 2 + - uid: 36901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,74.5 + parent: 2 + - uid: 36902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,80.5 + parent: 2 + - uid: 36905 + components: + - type: Transform + pos: -4.5,85.5 + parent: 2 + - uid: 36906 + components: + - type: Transform + pos: -0.5,82.5 + parent: 2 + - uid: 36907 + components: + - type: Transform + pos: -3.5,76.5 + parent: 2 + - uid: 36911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,68.5 + parent: 2 + - uid: 36914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,68.5 + parent: 2 + - uid: 36919 + components: + - type: Transform + pos: -26.5,62.5 + parent: 2 + - uid: 36920 + components: + - type: Transform + pos: -32.5,58.5 + parent: 2 + - uid: 36923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,90.5 + parent: 2 + - uid: 36926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,110.5 + parent: 2 + - uid: 36927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,95.5 + parent: 2 + - uid: 36928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,99.5 + parent: 2 + - uid: 36930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,79.5 + parent: 2 + - uid: 36931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,84.5 + parent: 2 + - uid: 36933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,69.5 + parent: 2 + - uid: 36938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,75.5 + parent: 2 + - uid: 36939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,74.5 + parent: 2 + - uid: 36943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,67.5 + parent: 2 + - uid: 36944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,63.5 + parent: 2 + - uid: 36948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,74.5 + parent: 2 + - uid: 36950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,77.5 + parent: 2 + - uid: 36951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,85.5 + parent: 2 + - uid: 42968 + components: + - type: Transform + pos: 53.5,55.5 + parent: 2 +- proto: AltarBananium + entities: + - uid: 24243 + components: + - type: Transform + pos: 7.5,75.5 + parent: 2 +- proto: AltarSpawner + entities: + - uid: 7524 + components: + - type: Transform + pos: -59.5,63.5 + parent: 2 +- proto: AlwaysPoweredLightSodium + entities: + - uid: 7755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,129.5 + parent: 2 +- proto: AnomalyScanner + entities: + - uid: 20225 + components: + - type: Transform + pos: -75.37528,181.6992 + parent: 2 + - uid: 20229 + components: + - type: Transform + pos: -75.52151,181.63173 + parent: 2 +- proto: APCBasic + entities: + - uid: 304 + components: + - type: Transform + pos: -131.5,41.5 + parent: 2 + - uid: 576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,176.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: -123.5,101.5 + parent: 2 + - type: Battery + startingCharge: 0 + - uid: 1287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,52.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-11.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,69.5 + parent: 2 + - uid: 4373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,45.5 + parent: 2 + - uid: 4806 + components: + - type: Transform + pos: 70.5,56.5 + parent: 2 + - uid: 5332 + components: + - type: Transform + pos: 89.5,21.5 + parent: 2 + - uid: 5812 + components: + - type: Transform + pos: -83.5,85.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,64.5 + parent: 2 + - uid: 6057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,53.5 + parent: 2 + - uid: 6125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,64.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + pos: 63.5,63.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,62.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,62.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 + - uid: 6539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,183.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,37.5 + parent: 2 + - uid: 6653 + components: + - type: Transform + pos: 92.5,50.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + pos: 106.5,63.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 106.5,44.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,100.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,133.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,194.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,198.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -122.5,52.5 + parent: 2 + - uid: 8848 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 8861 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 8912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,97.5 + parent: 2 + - uid: 9088 + components: + - type: Transform + pos: -5.5,173.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,146.5 + parent: 2 + - uid: 11435 + components: + - type: Transform + pos: -16.5,166.5 + parent: 2 + - uid: 11592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,2.5 + parent: 2 + - uid: 11707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,73.5 + parent: 2 + - uid: 11826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,71.5 + parent: 2 + - uid: 12004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,64.5 + parent: 2 + - uid: 12543 + components: + - type: Transform + pos: -127.5,90.5 + parent: 2 + - type: Battery + startingCharge: 0 + - uid: 12988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,68.5 + parent: 2 + - uid: 12996 + components: + - type: Transform + pos: -26.5,72.5 + parent: 2 + - uid: 13102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,61.5 + parent: 2 + - uid: 13329 + components: + - type: Transform + pos: -52.5,74.5 parent: 2 - - type: DeviceList - devices: - - 666 - - 13749 - - 13748 - - 13747 - - 13725 - - 13726 - - 667 - uid: 13571 components: - type: Transform rot: -1.5707963267948966 rad - pos: 75.5,-20.5 + pos: -23.5,98.5 parent: 2 - - type: DeviceList - devices: - - 670 - - uid: 13573 + - uid: 13882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,87.5 + parent: 2 + - uid: 14140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,163.5 + parent: 2 + - uid: 14960 + components: + - type: Transform + pos: -79.5,101.5 + parent: 2 + - uid: 15011 + components: + - type: Transform + pos: -55.5,92.5 + parent: 2 + - uid: 15161 + components: + - type: Transform + pos: -70.5,76.5 + parent: 2 + - uid: 15428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,66.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,33.5 + parent: 2 + - uid: 15965 + components: + - type: Transform + pos: -28.5,74.5 + parent: 2 + - uid: 16029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,79.5 + parent: 2 + - uid: 16045 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-45.5 + pos: -14.5,87.5 parent: 2 - - type: DeviceList - devices: - - 13676 - - 13677 - - 13678 - - 675 - - 13665 - - 13666 - - 13667 - - uid: 13574 + - uid: 16130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,73.5 + parent: 2 + - uid: 16562 + components: + - type: Transform + pos: -45.5,102.5 + parent: 2 + - uid: 16563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,106.5 + parent: 2 + - uid: 16710 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 13386 + - uid: 16991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,86.5 + parent: 2 + - uid: 17040 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-38.5 + pos: -25.5,86.5 parent: 2 - - type: DeviceList - devices: - - 13676 - - 13677 - - 13678 - - 676 - - uid: 13575 + - uid: 17175 components: - type: Transform - pos: -23.5,-32.5 + pos: -84.5,78.5 parent: 2 - - type: DeviceList - devices: - - 680 - - 13716 - - 17744 - - 17541 - - uid: 13577 + - uid: 17774 components: - type: Transform - pos: -42.5,0.5 + pos: -126.5,110.5 parent: 2 - - type: DeviceList - devices: - - 13694 - - 13718 - - 13721 - - 684 - - 13696 - - 13700 - - 13695 - - uid: 13580 - components: - - type: Transform - pos: 0.5,22.5 - parent: 2 - - type: DeviceList - devices: - - 13731 - - 13736 - - 690 - - 691 - - uid: 13581 - components: - - type: Transform - pos: -2.5,34.5 - parent: 2 - - type: DeviceList - devices: - - 694 - - 13714 - - uid: 13582 - components: - - type: Transform - pos: -56.5,2.5 - parent: 2 - - type: DeviceList - devices: - - 13759 - - 13763 - - 13650 - - 13762 - - 13696 - - 13700 - - 13695 - - 699 - - 698 - - 13739 - - uid: 13583 - components: - - type: Transform - pos: -64.5,11.5 - parent: 2 - - type: DeviceList - devices: - - 701 - - 13801 - - 13800 - - uid: 13584 - components: - - type: Transform - pos: -67.5,-12.5 - parent: 2 - - type: DeviceList - devices: - - 702 - - 13799 - - 13798 - - uid: 13585 + - type: Battery + startingCharge: 0 + - uid: 17798 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-29.5 + pos: -74.5,174.5 + parent: 2 + - uid: 17855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,95.5 + parent: 2 + - uid: 19297 + components: + - type: Transform + pos: -117.5,67.5 + parent: 2 + - uid: 19464 + components: + - type: Transform + pos: -62.5,154.5 + parent: 2 + - uid: 20332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,80.5 + parent: 2 + - uid: 21192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 21114 + - uid: 21441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,162.5 + parent: 2 + - uid: 21545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,151.5 + parent: 2 + - uid: 21622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,156.5 + parent: 2 + - uid: 21654 + components: + - type: Transform + pos: -91.5,166.5 + parent: 2 + - uid: 21673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,172.5 + parent: 2 + - uid: 21715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,160.5 + parent: 2 + - uid: 21735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,176.5 + parent: 2 + - uid: 21750 + components: + - type: Transform + pos: -79.5,170.5 + parent: 2 + - uid: 21792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,176.5 + parent: 2 + - uid: 21863 + components: + - type: Transform + pos: -61.5,170.5 + parent: 2 + - uid: 22885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,80.5 + parent: 2 + - uid: 24406 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 24407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,190.5 + parent: 2 + - uid: 24430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,198.5 + parent: 2 + - uid: 24451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,193.5 + parent: 2 + - uid: 24502 + components: + - type: Transform + pos: 1.5,206.5 + parent: 2 + - uid: 24528 + components: + - type: Transform + pos: -10.5,211.5 + parent: 2 + - uid: 24541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,206.5 + parent: 2 + - uid: 24554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,185.5 + parent: 2 + - uid: 24568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,174.5 + parent: 2 + - uid: 24585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,200.5 + parent: 2 + - uid: 24597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,204.5 + parent: 2 + - uid: 24620 + components: + - type: Transform + pos: -25.5,210.5 + parent: 2 + - uid: 24661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,209.5 + parent: 2 + - uid: 24971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,192.5 + parent: 2 + - uid: 25048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,182.5 + parent: 2 + - uid: 25508 + components: + - type: Transform + pos: 15.5,178.5 + parent: 2 + - uid: 25556 + components: + - type: Transform + pos: 8.5,173.5 + parent: 2 + - uid: 25711 + components: + - type: Transform + pos: -122.5,109.5 + parent: 2 + - type: Battery + startingCharge: 0 + - uid: 26163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,32.5 + parent: 2 + - uid: 26565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -129.5,101.5 + parent: 2 + - uid: 28640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,45.5 + parent: 2 + - uid: 28970 + components: + - type: Transform + pos: -126.5,52.5 + parent: 2 + - uid: 29075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,57.5 + parent: 2 + - uid: 29547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,29.5 + parent: 2 + - uid: 29703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,99.5 + parent: 2 + - uid: 29934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,33.5 + parent: 2 + - uid: 30030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,45.5 + parent: 2 + - uid: 30056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,44.5 + parent: 2 + - uid: 30300 + components: + - type: Transform + pos: -19.5,180.5 + parent: 2 + - uid: 30347 + components: + - type: Transform + pos: -126.5,28.5 + parent: 2 + - uid: 30905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 30902 + - uid: 31260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,147.5 + parent: 2 + - uid: 32322 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 32708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-5.5 + parent: 2 + - uid: 34466 + components: + - type: Transform + pos: -114.5,104.5 + parent: 2 + - type: Battery + startingCharge: 0 + - uid: 34467 + components: + - type: Transform + pos: -115.5,96.5 + parent: 2 + - type: Battery + startingCharge: 0 + - uid: 34844 + components: + - type: Transform + pos: 1.5,217.5 + parent: 2 + - uid: 37733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,80.5 + parent: 2 + - uid: 37849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 37842 + - uid: 39258 + components: + - type: Transform + pos: -72.5,113.5 + parent: 2 + - uid: 40450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,56.5 + parent: 2 + - uid: 43351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -128.5,18.5 + parent: 2 +- proto: APCElectronics + entities: + - uid: 35792 + components: + - type: Transform + pos: -100.53125,103.60723 + parent: 2 +- proto: APCFrame + entities: + - uid: 39259 + components: + - type: Transform + pos: -102.5,104.5 + parent: 2 +- proto: APCHighCapacity + entities: + - uid: 16571 + components: + - type: Transform + pos: -35.5,102.5 + parent: 2 + - uid: 22891 + components: + - type: Transform + pos: -110.5,26.5 + parent: 2 + - uid: 23360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,98.5 + parent: 2 + - uid: 30190 + components: + - type: Transform + pos: -98.5,52.5 + parent: 2 + - uid: 37648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,62.5 + parent: 2 +- proto: AppleSeeds + entities: + - uid: 15611 + components: + - type: Transform + pos: -80.65188,141.51364 + parent: 2 +- proto: AppraisalTool + entities: + - uid: 1683 + components: + - type: Transform + pos: -27.228924,-5.825143 + parent: 2 +- proto: ArrowRegular + entities: + - uid: 4607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.4305077,62.312107 + parent: 2 + - uid: 5460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.655468,62.480774 + parent: 2 + - uid: 12747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5542374,62.72815 + parent: 2 +- proto: ArtifactFragment1 + entities: + - uid: 20483 + components: + - type: Transform + pos: -97.31306,169.99557 + parent: 2 +- proto: ArtistCircuitBoard + entities: + - uid: 2732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.614197,129.53622 + parent: 2 +- proto: Ash + entities: + - uid: 27510 + components: + - type: Transform + pos: -117.08677,97.579926 + parent: 2 + - uid: 27514 + components: + - type: Transform + pos: -116.74933,97.759834 + parent: 2 + - uid: 27544 + components: + - type: Transform + pos: -116.63685,97.6249 + parent: 2 + - uid: 27597 + components: + - type: Transform + pos: -119.532265,97.61274 + parent: 2 + - uid: 27843 + components: + - type: Transform + pos: -86.6036,140.40831 + parent: 2 + - uid: 27886 + components: + - type: Transform + pos: -86.23508,141.92976 + parent: 2 + - uid: 28098 + components: + - type: Transform + pos: -85.00351,141.409 + parent: 2 + - uid: 28181 + components: + - type: Transform + pos: -115.54088,102.528366 + parent: 2 + - uid: 28201 + components: + - type: Transform + pos: -115.31592,102.68579 + parent: 2 +- proto: AsimovCircuitBoard + entities: + - uid: 8361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.60099,131.74103 + parent: 2 +- proto: AsteroidRock + entities: + - uid: 9108 + components: + - type: Transform + pos: -65.5,107.5 + parent: 2 + - uid: 9109 + components: + - type: Transform + pos: -62.5,107.5 + parent: 2 + - uid: 9110 + components: + - type: Transform + pos: -63.5,92.5 + parent: 2 + - uid: 9111 + components: + - type: Transform + pos: -64.5,97.5 + parent: 2 + - uid: 9112 + components: + - type: Transform + pos: -66.5,103.5 + parent: 2 + - uid: 9113 + components: + - type: Transform + pos: -67.5,102.5 + parent: 2 + - uid: 9114 + components: + - type: Transform + pos: -68.5,102.5 + parent: 2 + - uid: 9115 + components: + - type: Transform + pos: -68.5,101.5 + parent: 2 + - uid: 9116 + components: + - type: Transform + pos: -69.5,101.5 + parent: 2 + - uid: 9117 + components: + - type: Transform + pos: -69.5,103.5 + parent: 2 + - uid: 9118 + components: + - type: Transform + pos: -68.5,103.5 + parent: 2 + - uid: 9119 + components: + - type: Transform + pos: -69.5,102.5 + parent: 2 + - uid: 9120 + components: + - type: Transform + pos: -67.5,103.5 + parent: 2 + - uid: 9121 + components: + - type: Transform + pos: -68.5,94.5 + parent: 2 + - uid: 9122 + components: + - type: Transform + pos: -69.5,98.5 + parent: 2 + - uid: 9123 + components: + - type: Transform + pos: -62.5,99.5 + parent: 2 + - uid: 9124 + components: + - type: Transform + pos: -67.5,89.5 + parent: 2 + - uid: 9125 + components: + - type: Transform + pos: -66.5,89.5 + parent: 2 + - uid: 9127 + components: + - type: Transform + pos: -67.5,90.5 + parent: 2 + - uid: 9128 + components: + - type: Transform + pos: -64.5,96.5 + parent: 2 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 1147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,191.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,180.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,199.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: -59.5,125.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,135.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,187.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,180.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: -12.5,185.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: -11.5,185.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + pos: -23.5,189.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,198.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,198.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,97.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,209.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,106.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,63.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,7.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 119.5,48.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,99.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + pos: -0.5,161.5 + parent: 2 + - uid: 3023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,204.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + pos: -21.5,59.5 + parent: 2 + - uid: 3064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,205.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,203.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,204.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,192.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,172.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,190.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: -3.5,209.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: -19.5,59.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,22.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-3.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,212.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 5896 + components: + - type: Transform + pos: 1.5,161.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,152.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,212.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,159.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 119.5,58.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + pos: 112.5,40.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + pos: 105.5,40.5 + parent: 2 + - uid: 8724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,158.5 + parent: 2 + - uid: 8746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,166.5 + parent: 2 + - uid: 8752 + components: + - type: Transform + pos: -18.5,160.5 + parent: 2 + - uid: 8754 + components: + - type: Transform + pos: -20.5,160.5 + parent: 2 + - uid: 8755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,166.5 + parent: 2 + - uid: 8780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,161.5 + parent: 2 + - uid: 8795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,67.5 + parent: 2 + - uid: 8839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,161.5 + parent: 2 + - uid: 8846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,100.5 + parent: 2 + - uid: 8860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,92.5 + parent: 2 + - uid: 8862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,102.5 + parent: 2 + - uid: 8872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,24.5 + parent: 2 + - uid: 8889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,93.5 + parent: 2 + - uid: 8924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,7.5 + parent: 2 + - uid: 8926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 113.5,66.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 111.5,66.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,66.5 + parent: 2 + - uid: 8929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,66.5 + parent: 2 + - uid: 8935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 13386 + - uid: 8936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 13386 + - uid: 8937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 21114 + - uid: 8938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 21114 + - uid: 8939 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 30902 + - uid: 8940 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 30902 + - uid: 8941 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 36996 + - uid: 8942 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 36996 + - uid: 8943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 37842 + - uid: 8945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 37842 + - uid: 8946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 37842 + - uid: 8947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 37842 +- proto: AtmosDeviceFanTiny + entities: + - uid: 4501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,42.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 112.5,44.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,44.5 + parent: 2 + - uid: 17662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,101.5 + parent: 2 + - uid: 18254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,40.5 + parent: 2 + - uid: 26499 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 30650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,48.5 + parent: 2 + - uid: 30679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,34.5 + parent: 2 + - uid: 30681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,52.5 + parent: 2 + - uid: 34448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,174.5 + parent: 2 + - uid: 34614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,101.5 + parent: 2 + - uid: 37564 + components: + - type: Transform + pos: -82.5,99.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 4184 + components: + - type: Transform + pos: -74.5,146.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: -73.5,146.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + pos: -73.5,144.5 + parent: 2 + - uid: 11938 + components: + - type: Transform + pos: -56.5,15.5 + parent: 2 + - uid: 12261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,16.5 + parent: 2 + - uid: 12264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,16.5 + parent: 2 + - uid: 12265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,16.5 + parent: 2 + - uid: 12269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,15.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,15.5 + parent: 2 + - uid: 12272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,15.5 + parent: 2 + - uid: 12273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,15.5 + parent: 2 + - uid: 12274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,16.5 + parent: 2 + - uid: 12427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,12.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,178.5 + parent: 2 + - uid: 13797 + components: + - type: Transform + pos: 11.5,178.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + pos: 86.5,15.5 + parent: 2 + - uid: 17895 + components: + - type: Transform + pos: 14.5,178.5 + parent: 2 + - uid: 17896 + components: + - type: Transform + pos: 10.5,178.5 + parent: 2 + - uid: 21016 + components: + - type: Transform + pos: 85.5,15.5 + parent: 2 + - uid: 21470 + components: + - type: Transform + pos: 86.5,14.5 + parent: 2 + - uid: 36035 + components: + - type: Transform + pos: -112.5,15.5 + parent: 2 + - uid: 36036 + components: + - type: Transform + pos: -112.5,16.5 + parent: 2 + - uid: 36037 + components: + - type: Transform + pos: -110.5,16.5 + parent: 2 + - uid: 36038 + components: + - type: Transform + pos: -110.5,15.5 + parent: 2 + - uid: 36042 + components: + - type: Transform + pos: -106.5,16.5 + parent: 2 + - uid: 36043 + components: + - type: Transform + pos: -106.5,15.5 + parent: 2 + - uid: 36045 + components: + - type: Transform + pos: -104.5,16.5 + parent: 2 + - uid: 36046 + components: + - type: Transform + pos: -104.5,15.5 + parent: 2 + - uid: 36047 + components: + - type: Transform + pos: -102.5,15.5 + parent: 2 + - uid: 36048 + components: + - type: Transform + pos: -102.5,16.5 + parent: 2 + - uid: 36049 + components: + - type: Transform + pos: -102.5,17.5 + parent: 2 + - uid: 36050 + components: + - type: Transform + pos: -102.5,18.5 + parent: 2 + - uid: 36051 + components: + - type: Transform + pos: -101.5,15.5 + parent: 2 + - uid: 36052 + components: + - type: Transform + pos: -101.5,16.5 + parent: 2 + - uid: 36053 + components: + - type: Transform + pos: -101.5,17.5 + parent: 2 + - uid: 36054 + components: + - type: Transform + pos: -101.5,18.5 + parent: 2 + - uid: 36055 + components: + - type: Transform + pos: -100.5,15.5 + parent: 2 + - uid: 36056 + components: + - type: Transform + pos: -100.5,16.5 + parent: 2 + - uid: 36057 + components: + - type: Transform + pos: -100.5,17.5 + parent: 2 + - uid: 36058 + components: + - type: Transform + pos: -100.5,18.5 + parent: 2 + - uid: 36059 + components: + - type: Transform + pos: -99.5,15.5 + parent: 2 + - uid: 36060 + components: + - type: Transform + pos: -99.5,16.5 + parent: 2 + - uid: 36061 + components: + - type: Transform + pos: -99.5,17.5 + parent: 2 + - uid: 36062 + components: + - type: Transform + pos: -99.5,18.5 + parent: 2 + - uid: 36123 + components: + - type: Transform + pos: -74.5,144.5 + parent: 2 + - uid: 36127 + components: + - type: Transform + pos: 13.5,178.5 + parent: 2 + - uid: 36133 + components: + - type: Transform + pos: -56.5,14.5 + parent: 2 + - uid: 36134 + components: + - type: Transform + pos: -57.5,15.5 + parent: 2 + - uid: 36135 + components: + - type: Transform + pos: -57.5,14.5 + parent: 2 + - uid: 36147 + components: + - type: Transform + pos: -54.5,15.5 + parent: 2 + - uid: 36148 + components: + - type: Transform + pos: -54.5,14.5 + parent: 2 + - uid: 36149 + components: + - type: Transform + pos: -53.5,15.5 + parent: 2 + - uid: 36150 + components: + - type: Transform + pos: -53.5,14.5 + parent: 2 + - uid: 36160 + components: + - type: Transform + pos: 90.5,14.5 + parent: 2 + - uid: 36161 + components: + - type: Transform + pos: 90.5,15.5 + parent: 2 + - uid: 36162 + components: + - type: Transform + pos: 91.5,15.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 33029 + components: + - type: Transform + pos: -10.5,62.5 + parent: 2 + - uid: 33046 + components: + - type: Transform + pos: -9.5,62.5 + parent: 2 + - uid: 33048 + components: + - type: Transform + pos: -9.5,63.5 + parent: 2 + - uid: 33049 + components: + - type: Transform + pos: -9.5,61.5 + parent: 2 + - uid: 33050 + components: + - type: Transform + pos: -8.5,62.5 + parent: 2 + - uid: 33051 + components: + - type: Transform + pos: -10.5,63.5 + parent: 2 + - uid: 33052 + components: + - type: Transform + pos: -11.5,62.5 + parent: 2 + - uid: 33053 + components: + - type: Transform + pos: -10.5,61.5 + parent: 2 + - uid: 33054 + components: + - type: Transform + pos: -8.5,61.5 + parent: 2 + - uid: 33055 + components: + - type: Transform + pos: -8.5,63.5 + parent: 2 + - uid: 33056 + components: + - type: Transform + pos: -11.5,63.5 + parent: 2 + - uid: 33057 + components: + - type: Transform + pos: -11.5,61.5 + parent: 2 + - uid: 37558 + components: + - type: Transform + pos: -85.5,99.5 + parent: 2 + - uid: 37559 + components: + - type: Transform + pos: -84.5,99.5 + parent: 2 + - uid: 37560 + components: + - type: Transform + pos: -84.5,100.5 + parent: 2 + - uid: 37561 + components: + - type: Transform + pos: -84.5,98.5 + parent: 2 + - uid: 37562 + components: + - type: Transform + pos: -83.5,99.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 8565 + components: + - type: Transform + pos: -120.5,42.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + pos: -127.5,97.5 + parent: 2 + - uid: 20977 + components: + - type: Transform + pos: -70.5,170.5 + parent: 2 +- proto: AutolatheMachineCircuitboard + entities: + - uid: 4779 + components: + - type: Transform + pos: -109.3481,35.692173 + parent: 2 +- proto: BackgammonBoard + entities: + - uid: 1685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.277527,4.5693884 + parent: 2 + - uid: 5004 + components: + - type: Transform + pos: 107.51384,53.42115 + parent: 2 +- proto: BalloonCorgi + entities: + - uid: 10468 + components: + - type: Transform + pos: -19.574574,87.34614 + parent: 2 +- proto: BananaPhoneInstrument + entities: + - uid: 24241 + components: + - type: Transform + pos: -69.592896,92.75132 + parent: 2 +- proto: BannerCargo + entities: + - uid: 1615 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 11445 + components: + - type: Transform + pos: -42.5,69.5 + parent: 2 + - uid: 11446 + components: + - type: Transform + pos: -38.5,69.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 12009 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 +- proto: BannerEngineering + entities: + - uid: 11447 + components: + - type: Transform + pos: -47.5,75.5 + parent: 2 + - uid: 11448 + components: + - type: Transform + pos: -47.5,79.5 + parent: 2 + - uid: 14108 + components: + - type: Transform + pos: -99.5,39.5 + parent: 2 + - uid: 17613 + components: + - type: Transform + pos: -99.5,43.5 + parent: 2 + - uid: 27741 + components: + - type: Transform + pos: -86.5,39.5 + parent: 2 + - uid: 27742 + components: + - type: Transform + pos: -86.5,43.5 + parent: 2 + - uid: 28771 + components: + - type: Transform + pos: -113.5,50.5 + parent: 2 + - uid: 28773 + components: + - type: Transform + pos: -119.5,50.5 + parent: 2 + - uid: 28774 + components: + - type: Transform + pos: -120.5,49.5 + parent: 2 + - uid: 28812 + components: + - type: Transform + pos: -112.5,49.5 + parent: 2 +- proto: BannerMedical + entities: + - uid: 11449 + components: + - type: Transform + pos: -33.5,83.5 + parent: 2 + - uid: 11450 + components: + - type: Transform + pos: -33.5,87.5 + parent: 2 + - uid: 15892 + components: + - type: Transform + pos: -11.5,171.5 + parent: 2 + - uid: 22996 + components: + - type: Transform + pos: -9.498609,184.50021 + parent: 2 + - uid: 22997 + components: + - type: Transform + pos: -14.5,184.5 + parent: 2 + - uid: 25094 + components: + - type: Transform + pos: -5.5,167.5 + parent: 2 + - uid: 25097 + components: + - type: Transform + pos: -5.5,165.5 + parent: 2 + - uid: 25801 + components: + - type: Transform + pos: -11.5,167.5 + parent: 2 +- proto: BannerScience + entities: + - uid: 11451 + components: + - type: Transform + pos: -47.5,83.5 + parent: 2 + - uid: 11452 + components: + - type: Transform + pos: -47.5,87.5 + parent: 2 + - uid: 20344 + components: + - type: Transform + pos: -66.5,159.5 + parent: 2 + - uid: 20948 + components: + - type: Transform + pos: -66.5,155.5 + parent: 2 +- proto: BannerSecurity + entities: + - uid: 3174 + components: + - type: Transform + pos: 68.5,36.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: 73.5,41.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: 69.5,41.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: 68.5,32.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: 75.5,55.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + pos: 77.5,68.5 + parent: 2 + - uid: 4647 + components: + - type: Transform + pos: 65.5,68.5 + parent: 2 + - uid: 11443 + components: + - type: Transform + pos: -33.5,79.5 + parent: 2 + - uid: 11444 + components: + - type: Transform + pos: -33.5,75.5 + parent: 2 +- proto: Barricade + entities: + - uid: 1178 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: -40.5,2.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: -39.5,3.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,98.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,100.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 5437 + components: + - type: Transform + pos: -79.5,143.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: 84.5,22.5 + parent: 2 + - uid: 11462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,211.5 + parent: 2 + - uid: 11491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,208.5 + parent: 2 + - uid: 13432 + components: + - type: Transform + pos: -20.5,95.5 + parent: 2 + - uid: 14115 + components: + - type: Transform + pos: 5.5,75.5 + parent: 2 + - uid: 16136 + components: + - type: Transform + pos: 80.5,24.5 + parent: 2 + - uid: 20390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,210.5 + parent: 2 + - uid: 22396 + components: + - type: Transform + pos: 77.5,46.5 + parent: 2 + - uid: 24255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,96.5 + parent: 2 + - uid: 36206 + components: + - type: Transform + pos: -57.5,176.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 2635 + components: + - type: Transform + pos: -128.5,90.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + pos: -113.5,99.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,45.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: 79.5,42.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: 78.5,46.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,156.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + pos: 4.5,71.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,153.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + pos: 4.5,75.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + pos: -81.5,88.5 + parent: 2 + - uid: 15351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,108.5 + parent: 2 + - uid: 15883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,83.5 + parent: 2 + - uid: 17702 + components: + - type: Transform + pos: -83.5,149.5 + parent: 2 + - uid: 20652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,104.5 + parent: 2 + - uid: 22737 + components: + - type: Transform + pos: -97.5,154.5 + parent: 2 + - uid: 22817 + components: + - type: Transform + pos: -79.5,149.5 + parent: 2 + - uid: 24215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -121.5,104.5 + parent: 2 + - uid: 26817 + components: + - type: Transform + pos: -97.5,157.5 + parent: 2 + - uid: 27682 + components: + - type: Transform + pos: -92.5,149.5 + parent: 2 + - uid: 39172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-4.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 3052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,99.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -136.5,107.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -136.5,108.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + pos: 79.5,43.5 + parent: 2 + - uid: 13429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,95.5 + parent: 2 + - uid: 15588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -136.5,106.5 + parent: 2 + - uid: 17692 + components: + - type: Transform + pos: -79.5,154.5 + parent: 2 + - uid: 22897 + components: + - type: Transform + pos: -80.5,154.5 + parent: 2 + - uid: 24163 + components: + - type: Transform + pos: -128.5,91.5 + parent: 2 +- proto: BarSign + entities: + - uid: 3340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,74.5 + parent: 2 + - uid: 5448 + components: + - type: Transform + pos: -86.5,92.5 + parent: 2 + - uid: 27896 + components: + - type: Transform + pos: -16.5,60.5 + parent: 2 +- proto: BasaltRandom + entities: + - uid: 3798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,34.5 + parent: 2 + - uid: 11073 + components: + - type: Transform + pos: -115.5,63.5 + parent: 2 + - uid: 21359 + components: + - type: Transform + pos: -132.5,57.5 + parent: 2 + - uid: 21360 + components: + - type: Transform + pos: -130.5,60.5 + parent: 2 + - uid: 27326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,31.5 + parent: 2 + - uid: 27327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,30.5 + parent: 2 + - uid: 28379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,55.5 + parent: 2 + - uid: 28484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,57.5 + parent: 2 + - uid: 28536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,40.5 + parent: 2 + - uid: 28539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,37.5 + parent: 2 + - uid: 28650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,56.5 + parent: 2 + - uid: 28651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,56.5 + parent: 2 + - uid: 28653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,56.5 + parent: 2 + - uid: 28654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,57.5 + parent: 2 + - uid: 28655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,58.5 + parent: 2 + - uid: 28658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,54.5 + parent: 2 + - uid: 28659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,54.5 + parent: 2 + - uid: 28664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,62.5 + parent: 2 + - uid: 28666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,50.5 + parent: 2 + - uid: 28667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,48.5 + parent: 2 + - uid: 28668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,46.5 + parent: 2 + - uid: 28669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,46.5 + parent: 2 + - uid: 28670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,45.5 + parent: 2 + - uid: 28671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,41.5 + parent: 2 + - uid: 28672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,38.5 + parent: 2 + - uid: 28673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,39.5 + parent: 2 + - uid: 28674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,38.5 + parent: 2 + - uid: 28928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,35.5 + parent: 2 + - uid: 29078 + components: + - type: Transform + pos: -122.5,44.5 + parent: 2 + - uid: 29079 + components: + - type: Transform + pos: -123.5,45.5 + parent: 2 + - uid: 29080 + components: + - type: Transform + pos: -123.5,51.5 + parent: 2 + - uid: 29084 + components: + - type: Transform + pos: -114.5,68.5 + parent: 2 + - uid: 29085 + components: + - type: Transform + pos: -116.5,69.5 + parent: 2 + - uid: 29087 + components: + - type: Transform + pos: -118.5,68.5 + parent: 2 + - uid: 29088 + components: + - type: Transform + pos: -119.5,68.5 + parent: 2 + - uid: 29302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,41.5 + parent: 2 + - uid: 29310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,35.5 + parent: 2 + - uid: 29311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,34.5 + parent: 2 + - uid: 29312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,30.5 + parent: 2 + - uid: 29313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,31.5 + parent: 2 + - uid: 29314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,26.5 + parent: 2 + - uid: 29315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,24.5 + parent: 2 + - uid: 29316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,22.5 + parent: 2 + - uid: 29317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,20.5 + parent: 2 + - uid: 29319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,26.5 + parent: 2 + - uid: 29322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,24.5 + parent: 2 + - uid: 29323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,22.5 + parent: 2 + - uid: 29324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,24.5 + parent: 2 + - uid: 30689 + components: + - type: Transform + pos: -128.5,16.5 + parent: 2 + - uid: 30690 + components: + - type: Transform + pos: -128.5,17.5 + parent: 2 + - uid: 30727 + components: + - type: Transform + pos: -130.5,13.5 + parent: 2 + - uid: 30728 + components: + - type: Transform + pos: -136.5,11.5 + parent: 2 + - uid: 30729 + components: + - type: Transform + pos: -135.5,12.5 + parent: 2 + - uid: 30730 + components: + - type: Transform + pos: -140.5,9.5 + parent: 2 + - uid: 30731 + components: + - type: Transform + pos: -144.5,14.5 + parent: 2 + - uid: 30732 + components: + - type: Transform + pos: -148.5,10.5 + parent: 2 + - uid: 30733 + components: + - type: Transform + pos: -150.5,7.5 + parent: 2 + - uid: 30734 + components: + - type: Transform + pos: -147.5,7.5 + parent: 2 + - uid: 30735 + components: + - type: Transform + pos: -145.5,8.5 + parent: 2 + - uid: 30736 + components: + - type: Transform + pos: -144.5,8.5 + parent: 2 + - uid: 30738 + components: + - type: Transform + pos: -121.5,14.5 + parent: 2 + - uid: 30739 + components: + - type: Transform + pos: -119.5,17.5 + parent: 2 + - uid: 30868 + components: + - type: Transform + pos: -93.5,30.5 + parent: 2 + - uid: 30871 + components: + - type: Transform + pos: -96.5,23.5 + parent: 2 + - uid: 30872 + components: + - type: Transform + pos: -96.5,20.5 + parent: 2 + - uid: 30876 + components: + - type: Transform + pos: -96.5,29.5 + parent: 2 + - uid: 30877 + components: + - type: Transform + pos: -85.5,29.5 + parent: 2 + - uid: 30878 + components: + - type: Transform + pos: -82.5,28.5 + parent: 2 + - uid: 30879 + components: + - type: Transform + pos: -80.5,31.5 + parent: 2 + - uid: 30880 + components: + - type: Transform + pos: -89.5,31.5 + parent: 2 + - uid: 30881 + components: + - type: Transform + pos: -90.5,21.5 + parent: 2 + - uid: 30882 + components: + - type: Transform + pos: -91.5,20.5 + parent: 2 + - uid: 43439 + components: + - type: Transform + pos: -128.5,15.5 + parent: 2 + - uid: 43441 + components: + - type: Transform + pos: -132.5,12.5 + parent: 2 + - uid: 43443 + components: + - type: Transform + pos: -124.5,11.5 + parent: 2 + - uid: 43445 + components: + - type: Transform + pos: -121.5,12.5 + parent: 2 +- proto: BaseGasCondenser + entities: + - uid: 12315 + components: + - type: Transform + anchored: False + pos: -113.5,24.5 + parent: 2 + - type: Physics + bodyType: Dynamic +- proto: Beaker + entities: + - uid: 2768 + components: + - type: Transform + pos: 26.425478,16.610603 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: 26.636415,16.680916 + parent: 2 + - uid: 24221 + components: + - type: Transform + pos: -9.300873,191.60722 + parent: 2 + - uid: 24222 + components: + - type: Transform + pos: -9.537081,191.70842 + parent: 2 +- proto: Bed + entities: + - uid: 218 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: 62.5,55.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: 62.5,52.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: 62.5,49.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + pos: 83.5,62.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + pos: 80.5,52.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + pos: 49.5,58.5 + parent: 2 + - uid: 5469 + components: + - type: Transform + pos: -121.5,52.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: 80.5,49.5 + parent: 2 + - uid: 6851 + components: + - type: Transform + pos: 80.5,55.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: -52.5,61.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + pos: -58.5,107.5 + parent: 2 + - uid: 8704 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 10930 + components: + - type: Transform + pos: -16.5,87.5 + parent: 2 + - uid: 11933 + components: + - type: Transform + pos: -31.5,60.5 + parent: 2 + - uid: 13347 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + pos: -58.5,99.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + pos: -69.5,90.5 + parent: 2 + - uid: 13974 + components: + - type: Transform + pos: -57.5,93.5 + parent: 2 + - uid: 13975 + components: + - type: Transform + pos: -60.5,101.5 + parent: 2 + - uid: 13978 + components: + - type: Transform + pos: -71.5,100.5 + parent: 2 + - uid: 14516 + components: + - type: Transform + pos: -68.5,81.5 + parent: 2 + - uid: 16664 + components: + - type: Transform + pos: -31.5,96.5 + parent: 2 + - uid: 19784 + components: + - type: Transform + pos: -83.5,154.5 + parent: 2 + - uid: 22702 + components: + - type: Transform + pos: 19.5,195.5 + parent: 2 + - uid: 22703 + components: + - type: Transform + pos: 19.5,193.5 + parent: 2 + - uid: 22704 + components: + - type: Transform + pos: 21.5,193.5 + parent: 2 + - uid: 22728 + components: + - type: Transform + pos: 4.5,182.5 + parent: 2 + - uid: 23240 + components: + - type: Transform + pos: 21.5,195.5 + parent: 2 + - uid: 23311 + components: + - type: Transform + pos: -19.5,204.5 + parent: 2 + - uid: 23479 + components: + - type: Transform + pos: -23.5,200.5 + parent: 2 +- proto: BedsheetBlack + entities: + - uid: 5243 + components: + - type: Transform + pos: -52.5,61.5 + parent: 2 +- proto: BedsheetBrigmedic + entities: + - uid: 37113 + components: + - type: Transform + pos: 82.5,44.5 + parent: 2 +- proto: BedsheetBrown + entities: + - uid: 10954 + components: + - type: Transform + pos: -31.5,60.5 + parent: 2 + - uid: 14520 + components: + - type: Transform + pos: -68.5,81.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 19486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,96.5 + parent: 2 +- proto: BedsheetCE + entities: + - uid: 5467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,52.5 + parent: 2 +- proto: BedsheetClown + entities: + - uid: 3920 + components: + - type: Transform + pos: 49.5,58.5 + parent: 2 + - uid: 13973 + components: + - type: Transform + pos: -69.5,90.5 + parent: 2 +- proto: BedsheetCMO + entities: + - uid: 23313 + components: + - type: Transform + pos: -19.5,204.5 + parent: 2 +- proto: BedsheetGreen + entities: + - uid: 23610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,195.5 + parent: 2 + - uid: 23611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,195.5 + parent: 2 + - uid: 23612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,193.5 + parent: 2 + - uid: 23613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,193.5 + parent: 2 +- proto: BedsheetHOP + entities: + - uid: 36964 + components: + - type: Transform + pos: -16.5,87.5 + parent: 2 +- proto: BedsheetHOS + entities: + - uid: 4696 + components: + - type: Transform + pos: 83.5,62.5 + parent: 2 + - uid: 23358 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 3790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,194.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,193.5 + parent: 2 + - uid: 7857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,194.5 + parent: 2 + - uid: 9086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,190.5 + parent: 2 + - uid: 23480 + components: + - type: Transform + pos: -23.5,200.5 + parent: 2 + - uid: 28082 + components: + - type: Transform + pos: -5.5,191.5 + parent: 2 + - uid: 28395 + components: + - type: Transform + pos: -5.5,193.5 + parent: 2 + - uid: 30908 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 30902 + - uid: 30909 + components: + - type: Transform + pos: -0.5,0.5 + parent: 30902 +- proto: BedsheetMime + entities: + - uid: 13970 + components: + - type: Transform + pos: -58.5,99.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 1734 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 +- proto: BedsheetRD + entities: + - uid: 11765 + components: + - type: Transform + pos: -83.5,154.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 4127 + components: + - type: Transform + pos: 80.5,55.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: 62.5,49.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: 62.5,52.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: 62.5,55.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: -58.5,107.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: 80.5,49.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + pos: 80.5,52.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - uid: 8710 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 13979 + components: + - type: Transform + pos: -71.5,100.5 + parent: 2 + - uid: 13982 + components: + - type: Transform + pos: -60.5,101.5 + parent: 2 + - uid: 13983 + components: + - type: Transform + pos: -57.5,93.5 + parent: 2 +- proto: Bible + entities: + - uid: 12187 + components: + - type: Transform + pos: -52.500626,62.46312 + parent: 2 +- proto: BlastDoor + entities: + - uid: 195 + components: + - type: Transform + pos: 31.5,60.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 31.5,61.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 31.5,59.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: -137.5,107.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: -137.5,106.5 + parent: 2 + - uid: 3916 + components: + - type: Transform + pos: 67.5,61.5 + parent: 2 + - uid: 4240 + components: + - type: Transform + pos: -121.5,47.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + pos: -98.5,176.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + pos: -98.5,175.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + pos: -98.5,174.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + pos: -137.5,108.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,176.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + pos: -12.5,76.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: -10.5,76.5 + parent: 2 + - uid: 10413 + components: + - type: Transform + pos: -11.5,76.5 + parent: 2 + - uid: 18028 + components: + - type: Transform + pos: -82.5,149.5 + parent: 2 + - uid: 18423 + components: + - type: Transform + pos: -81.5,149.5 + parent: 2 + - uid: 19393 + components: + - type: Transform + pos: -80.5,149.5 + parent: 2 +- proto: BlastDoorBridgeOpen + entities: + - uid: 4380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,110.5 + parent: 2 + - uid: 16052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,110.5 + parent: 2 + - uid: 18170 + components: + - type: Transform + pos: -34.5,108.5 + parent: 2 + - uid: 18300 + components: + - type: Transform + pos: -34.5,109.5 + parent: 2 + - uid: 18309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,111.5 + parent: 2 + - uid: 18310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,111.5 + parent: 2 + - uid: 18311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,110.5 + parent: 2 + - uid: 18320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,110.5 + parent: 2 + - uid: 18327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,110.5 + parent: 2 + - uid: 18330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,110.5 + parent: 2 + - uid: 18332 + components: + - type: Transform + pos: -46.5,109.5 + parent: 2 + - uid: 18335 + components: + - type: Transform + pos: -46.5,108.5 + parent: 2 + - uid: 18338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,110.5 + parent: 2 + - uid: 18342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,110.5 + parent: 2 + - uid: 18344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,111.5 + parent: 2 + - uid: 18346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,111.5 + parent: 2 + - uid: 18362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,109.5 + parent: 2 + - uid: 18364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,109.5 + parent: 2 +- proto: BlastDoorOpen + entities: + - uid: 1203 + components: + - type: Transform + pos: -94.5,175.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,80.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,80.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + pos: 92.5,49.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + pos: 92.5,48.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + pos: 92.5,47.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + pos: 98.5,49.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + pos: 98.5,48.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: 98.5,47.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: 98.5,57.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: 98.5,58.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + pos: 98.5,59.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: 92.5,57.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + pos: 92.5,58.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + pos: 92.5,59.5 + parent: 2 + - uid: 21273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,148.5 + parent: 2 + - uid: 26313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,57.5 + parent: 2 + - uid: 28827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,52.5 + parent: 2 + - uid: 28918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,52.5 + parent: 2 + - uid: 29455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,22.5 + parent: 2 + - uid: 32470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,147.5 + parent: 2 + - uid: 36845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,80.5 + parent: 2 + - uid: 38292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,161.5 + parent: 2 + - uid: 38293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,161.5 + parent: 2 + - uid: 38294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,161.5 + parent: 2 + - uid: 38295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,161.5 + parent: 2 + - uid: 38296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,161.5 + parent: 2 + - uid: 38297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,161.5 + parent: 2 + - uid: 38298 + components: + - type: Transform + pos: -92.5,160.5 + parent: 2 + - uid: 38299 + components: + - type: Transform + pos: -92.5,159.5 + parent: 2 + - uid: 38300 + components: + - type: Transform + pos: -92.5,158.5 + parent: 2 + - uid: 38302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,80.5 + parent: 2 + - uid: 38310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-8.5 + parent: 2 + - uid: 38311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-9.5 + parent: 2 + - uid: 38312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 2 + - uid: 38313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-11.5 + parent: 2 + - uid: 38314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-12.5 + parent: 2 + - uid: 38315 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 38316 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 38317 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 38318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 + parent: 2 + - uid: 38319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 2 + - uid: 38320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 2 + - uid: 38321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-14.5 + parent: 2 + - uid: 38322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 2 + - uid: 38325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-7.5 + parent: 2 + - uid: 38326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 2 + - uid: 38327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,69.5 + parent: 2 + - uid: 38328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,69.5 + parent: 2 + - uid: 38329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,70.5 + parent: 2 + - uid: 38330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,70.5 + parent: 2 + - uid: 38331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,70.5 + parent: 2 + - uid: 38332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,70.5 + parent: 2 + - uid: 38333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,70.5 + parent: 2 + - uid: 38334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,70.5 + parent: 2 + - uid: 38336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,70.5 + parent: 2 + - uid: 38337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,70.5 + parent: 2 + - uid: 38338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,70.5 + parent: 2 + - uid: 38339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,70.5 + parent: 2 + - uid: 38340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,70.5 + parent: 2 + - uid: 38341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,70.5 + parent: 2 + - uid: 38342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,69.5 + parent: 2 + - uid: 38343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,69.5 + parent: 2 + - uid: 38345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,68.5 + parent: 2 + - uid: 38347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,68.5 + parent: 2 + - uid: 38348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,68.5 + parent: 2 + - uid: 38349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,68.5 + parent: 2 + - uid: 38350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,68.5 + parent: 2 + - uid: 38351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,68.5 + parent: 2 + - uid: 38352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,67.5 + parent: 2 + - uid: 38353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,67.5 + parent: 2 + - uid: 38354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,66.5 + parent: 2 + - uid: 38355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,66.5 + parent: 2 + - uid: 38356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,65.5 + parent: 2 + - uid: 38357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,65.5 + parent: 2 + - uid: 38358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,57.5 + parent: 2 + - uid: 38360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -113.5,57.5 + parent: 2 + - uid: 38361 + components: + - type: Transform + pos: -113.5,56.5 + parent: 2 + - uid: 38362 + components: + - type: Transform + pos: -113.5,55.5 + parent: 2 + - uid: 38371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 2 + - uid: 38372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,202.5 + parent: 2 + - uid: 38373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,202.5 + parent: 2 + - uid: 38374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,202.5 + parent: 2 + - uid: 38375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,202.5 + parent: 2 +- proto: BlastDoorWindows + entities: + - uid: 26 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 64 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 68 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 920 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 +- proto: BlockGameArcadeComputerCircuitboard + entities: + - uid: 17155 + components: + - type: Transform + pos: -83.4139,75.74097 + parent: 2 +- proto: Bonfire + entities: + - uid: 13920 + components: + - type: Transform + pos: -65.5,100.5 + parent: 2 +- proto: BookAtmosAirAlarms + entities: + - uid: 29890 + components: + - type: Transform + pos: -97.7931,34.477806 + parent: 2 +- proto: BookAtmosDistro + entities: + - uid: 29891 + components: + - type: Transform + pos: -97.5431,34.75762 + parent: 2 +- proto: BookAtmosVentsMore + entities: + - uid: 29889 + components: + - type: Transform + pos: -97.9806,34.74343 + parent: 2 +- proto: BookAtmosWaste + entities: + - uid: 29892 + components: + - type: Transform + pos: -97.34898,34.49378 + parent: 2 +- proto: BookBartendersManual + entities: + - uid: 5324 + components: + - type: Transform + pos: -31.541836,59.604336 + parent: 2 +- proto: BookBase + entities: + - uid: 26605 + components: + - type: Transform + pos: -68.81447,83.5403 + parent: 2 +- proto: BookChemicalCompendium + entities: + - uid: 14252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.430767,191.42603 + parent: 2 + - uid: 22854 + components: + - type: Transform + pos: -70.58099,82.61638 + parent: 2 +- proto: BookEngineersHandbook + entities: + - uid: 14537 + components: + - type: Transform + pos: -70.352486,82.507904 + parent: 2 +- proto: BookMorgue + entities: + - uid: 1246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.454327,-3.3405151 + parent: 2 +- proto: BookRandom + entities: + - uid: 14489 + components: + - type: Transform + pos: -60.29707,79.550514 + parent: 2 + - uid: 14513 + components: + - type: Transform + pos: -66.25387,87.57807 + parent: 2 + - uid: 14544 + components: + - type: Transform + pos: -60.330814,77.4928 + parent: 2 + - uid: 14545 + components: + - type: Transform + pos: -61.099213,79.42159 + parent: 2 + - uid: 14546 + components: + - type: Transform + pos: -65.691475,83.20401 + parent: 2 + - uid: 14547 + components: + - type: Transform + pos: -65.364624,79.660774 + parent: 2 + - uid: 19631 + components: + - type: Transform + pos: -102.475845,86.501526 + parent: 2 + - uid: 28375 + components: + - type: Transform + pos: 100.46572,49.55293 + parent: 2 +- proto: BookRandomStory + entities: + - uid: 4970 + components: + - type: Transform + pos: -60.240967,78.918625 + parent: 2 + - uid: 8120 + components: + - type: Transform + pos: -124.451744,53.6946 + parent: 2 + - uid: 11749 + components: + - type: Transform + pos: -79.310356,151.33778 + parent: 2 + - uid: 14444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.556984,77.37814 + parent: 2 + - uid: 14539 + components: + - type: Transform + pos: -70.36373,82.069374 + parent: 2 + - uid: 14573 + components: + - type: Transform + pos: -61.908905,87.50834 + parent: 2 +- proto: BookSecurity + entities: + - uid: 35787 + components: + - type: Transform + pos: -102.41319,102.532074 + parent: 2 +- proto: Bookshelf + entities: + - uid: 14739 + components: + - type: Transform + pos: -78.5,73.5 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 1836 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + pos: -64.5,77.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + pos: -60.5,84.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + pos: -118.5,40.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + pos: -60.5,80.5 + parent: 2 + - uid: 8601 + components: + - type: Transform + pos: -29.5,96.5 + parent: 2 + - uid: 8923 + components: + - type: Transform + pos: -24.5,96.5 + parent: 2 + - uid: 9866 + components: + - type: Transform + pos: -61.5,84.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + pos: 0.5,86.5 + parent: 2 + - uid: 10676 + components: + - type: Transform + pos: -0.5,86.5 + parent: 2 + - uid: 12488 + components: + - type: Transform + pos: -62.5,77.5 + parent: 2 + - uid: 13910 + components: + - type: Transform + pos: -63.5,77.5 + parent: 2 + - uid: 13911 + components: + - type: Transform + pos: -61.5,80.5 + parent: 2 + - uid: 13913 + components: + - type: Transform + pos: -62.5,79.5 + parent: 2 + - uid: 13914 + components: + - type: Transform + pos: -62.5,78.5 + parent: 2 + - uid: 13999 + components: + - type: Transform + pos: -65.5,77.5 + parent: 2 + - uid: 14342 + components: + - type: Transform + pos: -78.5,96.5 + parent: 2 + - uid: 14440 + components: + - type: Transform + pos: -65.5,80.5 + parent: 2 + - uid: 14445 + components: + - type: Transform + pos: -66.5,77.5 + parent: 2 + - uid: 14491 + components: + - type: Transform + pos: -65.5,87.5 + parent: 2 + - uid: 14493 + components: + - type: Transform + pos: -65.5,85.5 + parent: 2 + - uid: 14497 + components: + - type: Transform + pos: -65.5,84.5 + parent: 2 + - uid: 14517 + components: + - type: Transform + pos: -66.5,84.5 + parent: 2 + - uid: 16586 + components: + - type: Transform + pos: -26.5,96.5 + parent: 2 + - uid: 20561 + components: + - type: Transform + pos: -90.5,179.5 + parent: 2 + - uid: 20562 + components: + - type: Transform + pos: -90.5,178.5 + parent: 2 + - uid: 20563 + components: + - type: Transform + pos: -90.5,177.5 + parent: 2 + - uid: 27304 + components: + - type: Transform + pos: -119.5,41.5 + parent: 2 + - uid: 27306 + components: + - type: Transform + pos: -115.5,40.5 + parent: 2 + - uid: 28389 + components: + - type: Transform + pos: -113.5,41.5 + parent: 2 + - uid: 29091 + components: + - type: Transform + pos: -117.5,40.5 + parent: 2 + - uid: 29183 + components: + - type: Transform + pos: -114.5,40.5 + parent: 2 + - uid: 32467 + components: + - type: Transform + pos: -27.5,96.5 + parent: 2 + - uid: 33714 + components: + - type: Transform + pos: -72.5,94.5 + parent: 2 + - uid: 33803 + components: + - type: Transform + pos: -28.5,96.5 + parent: 2 + - uid: 33809 + components: + - type: Transform + pos: -25.5,96.5 + parent: 2 + - uid: 37931 + components: + - type: Transform + pos: -73.5,91.5 + parent: 2 + - uid: 39178 + components: + - type: Transform + pos: -70.5,94.5 + parent: 2 + - uid: 39179 + components: + - type: Transform + pos: -71.5,94.5 + parent: 2 +- proto: BookSun + entities: + - uid: 19250 + components: + - type: Transform + pos: -79.58147,150.79973 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 8888 + components: + - type: Transform + pos: -84.5,81.5 + parent: 2 + - uid: 10995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,61.5 + parent: 2 +- proto: BoozeDispenserMachineCircuitboard + entities: + - uid: 1536 + components: + - type: Transform + pos: -59.396473,-11.486157 + parent: 2 +- proto: BorgCharger + entities: + - uid: 7798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,134.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,126.5 + parent: 2 + - uid: 17387 + components: + - type: Transform + pos: -80.5,41.5 + parent: 2 + - uid: 20902 + components: + - type: Transform + pos: -73.5,178.5 + parent: 2 + - uid: 28834 + components: + - type: Transform + pos: -105.5,48.5 + parent: 2 + - uid: 29101 + components: + - type: Transform + pos: 88.5,59.5 + parent: 2 +- proto: BorgModuleClowning + entities: + - uid: 11641 + components: + - type: Transform + rot: 6.283185307179586 rad + pos: -76.35535,167.38187 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 21218 + components: + - type: Transform + parent: 22881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22318 + components: + - type: Transform + parent: 23370 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22849 + components: + - type: Transform + pos: -24.345762,191.5903 + parent: 2 + - uid: 23642 + components: + - type: Transform + pos: -0.7508354,199.84177 + parent: 2 +- proto: BoxBeanbag + entities: + - uid: 15358 + components: + - type: Transform + pos: 57.402885,60.641674 + parent: 2 +- proto: BoxBodyBag + entities: + - uid: 11146 + components: + - type: Transform + pos: -3.4669113,73.563354 + parent: 2 + - uid: 23214 + components: + - type: Transform + pos: -26.617878,199.17981 + parent: 2 + - uid: 23412 + components: + - type: Transform + pos: -9.367075,210.53947 + parent: 2 +- proto: BoxCardboard + entities: + - uid: 5036 + components: + - type: Transform + pos: 99.59243,54.537125 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: 99.326805,54.724625 + parent: 2 +- proto: BoxDonkSoftBox + entities: + - uid: 2434 + components: + - type: Transform + pos: 6.552574,70.62181 + parent: 2 + - uid: 8344 + components: + - type: Transform + pos: 6.83445,70.68221 + parent: 2 + - uid: 8847 + components: + - type: Transform + pos: 6.8747215,70.62181 + parent: 2 + - uid: 8890 + components: + - type: Transform + pos: 6.5485077,70.68411 + parent: 2 +- proto: BoxFlashbang + entities: + - uid: 22355 + components: + - type: Transform + pos: 80.607414,60.629074 + parent: 2 +- proto: BoxFolderBlack + entities: + - uid: 4191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.688354,65.49275 + parent: 2 + - uid: 4615 + components: + - type: Transform + pos: 67.24002,67.66026 + parent: 2 + - uid: 10502 + components: + - type: Transform + pos: -17.306055,84.71016 + parent: 2 + - uid: 14665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.50675,85.526566 + parent: 2 + - uid: 14755 + components: + - type: Transform + pos: -74.53432,74.75082 + parent: 2 + - uid: 19677 + components: + - type: Transform + pos: -79.64161,151.62685 + parent: 2 + - uid: 20189 + components: + - type: Transform + pos: -81.13405,180.54584 + parent: 2 + - uid: 21410 + components: + - type: Transform + pos: -60.636093,156.50987 + parent: 2 + - uid: 24228 + components: + - type: Transform + pos: -42.731445,103.57777 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 979 + components: + - type: Transform + pos: -31.805882,-5.298889 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: 26.425478,20.524664 + parent: 2 + - uid: 4192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.45398,65.60213 + parent: 2 + - uid: 10500 + components: + - type: Transform + pos: -17.812214,84.71016 + parent: 2 + - uid: 14664 + components: + - type: Transform + pos: -74.06702,83.48009 + parent: 2 + - uid: 14753 + components: + - type: Transform + pos: -74.6468,75.02068 + parent: 2 + - uid: 17594 + components: + - type: Transform + pos: -1.5766506,76.468956 + parent: 2 + - uid: 23067 + components: + - type: Transform + pos: -19.525314,177.57477 + parent: 2 + - uid: 23081 + components: + - type: Transform + pos: -19.255362,177.7097 + parent: 2 + - uid: 24227 + components: + - type: Transform + pos: -43.170116,103.67897 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 2776 + components: + - type: Transform + pos: 26.706728,20.665289 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 975 + components: + - type: Transform + pos: -31.903364,-5.59124 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 62.473038,44.62198 + parent: 2 + - uid: 4440 + components: + - type: Transform + pos: 70.68317,43.51524 + parent: 2 + - uid: 4617 + components: + - type: Transform + pos: 68.46231,67.62535 + parent: 2 + - uid: 4932 + components: + - type: Transform + pos: 95.609985,53.669777 + parent: 2 + - uid: 14648 + components: + - type: Transform + pos: -77.00274,83.513824 + parent: 2 + - uid: 14756 + components: + - type: Transform + pos: -74.66929,74.52593 + parent: 2 + - uid: 18693 + components: + - type: Transform + pos: -1.2617064,76.468956 + parent: 2 + - uid: 28727 + components: + - type: Transform + pos: 70.3138,51.689976 + parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 10501 + components: + - type: Transform + pos: -17.576008,84.69892 + parent: 2 + - uid: 10690 + components: + - type: Transform + pos: -5.123244,86.64313 + parent: 2 + - uid: 20376 + components: + - type: Transform + pos: -83.844,165.52818 + parent: 2 + - uid: 23082 + components: + - type: Transform + pos: -18.670467,177.57477 + parent: 2 + - uid: 24229 + components: + - type: Transform + pos: -42.32652,103.6115 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 14754 + components: + - type: Transform + pos: -74.51182,75.279305 + parent: 2 + - uid: 28155 + components: + - type: Transform + pos: 70.39192,51.5181 + parent: 2 +- proto: BoxForensicPad + entities: + - uid: 11410 + components: + - type: Transform + pos: -39.308556,79.729256 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 12237 + components: + - type: Transform + pos: -39.25631,79.632744 + parent: 2 + - uid: 15366 + components: + - type: Transform + pos: 80.607414,60.3312 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: 96.67853,53.629684 + parent: 2 +- proto: BoxLatexGloves + entities: + - uid: 19138 + components: + - type: Transform + pos: 21.280502,189.63757 + parent: 2 +- proto: BoxLethalshot + entities: + - uid: 12807 + components: + - type: Transform + pos: 57.41851,60.141674 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: 57.434135,59.891674 + parent: 2 +- proto: BoxLightMixed + entities: + - uid: 18967 + components: + - type: Transform + pos: -99.47205,41.195827 + parent: 2 + - uid: 25425 + components: + - type: Transform + pos: -91.77394,48.41505 + parent: 2 + - uid: 29373 + components: + - type: Transform + pos: -107.46044,36.48916 + parent: 2 +- proto: BoxMagazinePistolSubMachineGunPractice + entities: + - uid: 40158 + components: + - type: Transform + pos: 51.87152,57.657894 + parent: 2 +- proto: BoxMagazineRiflePractice + entities: + - uid: 39924 + components: + - type: Transform + pos: 51.452972,57.648796 + parent: 2 +- proto: BoxMousetrap + entities: + - uid: 10681 + components: + - type: Transform + pos: -13.420446,71.08243 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 34454 + components: + - type: Transform + pos: 20.395084,188.5535 + parent: 2 +- proto: BoxMRE + entities: + - uid: 30910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.47930908,-1.4950333 + parent: 30902 +- proto: BoxPillCanister + entities: + - uid: 15788 + components: + - type: Transform + pos: -0.7508354,199.58334 + parent: 2 + - uid: 21180 + components: + - type: Transform + parent: 22881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21256 + components: + - type: Transform + parent: 23370 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23451 + components: + - type: Transform + pos: -13.6020355,194.5705 + parent: 2 +- proto: BoxShotgunFlare + entities: + - uid: 15053 + components: + - type: Transform + pos: -47.475525,98.407745 + parent: 2 +- proto: BoxShotgunPractice + entities: + - uid: 5198 + components: + - type: Transform + pos: 51.51615,57.097054 + parent: 2 + - uid: 5305 + components: + - type: Transform + pos: 51.537422,57.011948 + parent: 2 +- proto: BoxShotgunSlug + entities: + - uid: 672 + components: + - type: Transform + pos: 57.481346,59.406624 + parent: 2 +- proto: BoxSterileMask + entities: + - uid: 23411 + components: + - type: Transform + pos: -9.614531,210.67441 + parent: 2 + - uid: 23646 + components: + - type: Transform + pos: 21.65917,189.63034 + parent: 2 +- proto: BoxSurvivalSecurity + entities: + - uid: 13916 + components: + - type: Transform + parent: 1589 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxSyringe + entities: + - uid: 2813 + components: + - type: Transform + pos: 26.687153,14.836928 + parent: 2 + - uid: 21181 + components: + - type: Transform + parent: 22881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22317 + components: + - type: Transform + parent: 23370 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22874 + components: + - type: Transform + pos: -13.738506,194.59178 + parent: 2 + - uid: 22892 + components: + - type: Transform + pos: -0.7508354,199.39645 + parent: 2 + - uid: 23644 + components: + - type: Transform + pos: 20.939299,188.55087 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 5951 + components: + - type: Transform + pos: 80.16061,60.607796 + parent: 2 +- proto: BrbSign + entities: + - uid: 10443 + components: + - type: Transform + pos: -16.281975,80.476295 + parent: 2 + - uid: 22787 + components: + - type: Transform + pos: -15.348286,190.62274 + parent: 2 +- proto: BriefcaseBrown + entities: + - uid: 14536 + components: + - type: Transform + pos: -68.41783,83.57612 + parent: 2 +- proto: BriefcaseSyndie + entities: + - uid: 1791 + components: + - type: Transform + pos: -21.603554,-12.219504 + parent: 2 +- proto: BrigTimer + entities: + - uid: 3905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,52.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 41925: + - Start: Close + - Timer: AutoClose + - Timer: Open + 41915: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 3906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 41974: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 3907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,55.5 + parent: 2 + - uid: 4093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,55.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5160: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 5063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,52.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6744: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 6606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5153: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 34594 + components: + - type: Transform + pos: -15.5,85.5 + parent: 2 +- proto: BrokenBottle + entities: + - uid: 34611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.92957,88.11097 + parent: 2 +- proto: Brutepack + entities: + - uid: 13427 + components: + - type: Transform + pos: -0.5920167,200.32387 + parent: 2 + - uid: 25353 + components: + - type: Transform + parent: 25348 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Brutepack1 + entities: + - uid: 24237 + components: + - type: Transform + pos: -70.90021,92.537224 + parent: 2 + - uid: 24238 + components: + - type: Transform + pos: -70.90021,92.537224 + parent: 2 + - uid: 24239 + components: + - type: Transform + pos: -70.90021,92.537224 + parent: 2 + - uid: 24240 + components: + - type: Transform + pos: -70.91146,92.503494 + parent: 2 + - uid: 26379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.899906,188.3211 + parent: 2 + - uid: 26380 + components: + - type: Transform + pos: -39.014526,191.36833 + parent: 2 +- proto: Bucket + entities: + - uid: 2835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.709835,18.930252 + parent: 2 + - uid: 7200 + components: + - type: Transform + pos: -1.284872,80.65447 + parent: 2 + - uid: 14230 + components: + - type: Transform + pos: 0.7562828,65.55507 + parent: 2 + - uid: 14297 + components: + - type: Transform + pos: -73.20858,106.61154 + parent: 2 + - uid: 14323 + components: + - type: Transform + pos: -73.39605,106.81394 + parent: 2 + - uid: 19692 + components: + - type: Transform + pos: -68.56223,96.6696 + parent: 2 + - uid: 24037 + components: + - type: Transform + pos: -25.669641,206.7646 + parent: 2 + - uid: 30894 + components: + - type: Transform + pos: -114.77805,93.67533 + parent: 2 + - uid: 31574 + components: + - type: Transform + pos: 0.6312828,65.39882 + parent: 2 + - uid: 31576 + components: + - type: Transform + pos: 0.8656578,65.695694 + parent: 2 + - uid: 33430 + components: + - type: Transform + pos: -66.75926,68.866104 + parent: 2 + - uid: 38385 + components: + - type: Transform + parent: 38381 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ButchCleaver + entities: + - uid: 12993 + components: + - type: Transform + pos: -11.520315,62.39587 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 197 + components: + - type: Transform + pos: -36.5,72.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: -38.5,11.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: -17.5,64.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -33.5,81.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: 65.5,57.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: 65.5,58.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: 65.5,55.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: 65.5,56.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: -107.5,23.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 6.5,71.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: -92.5,94.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: -92.5,93.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: -50.5,9.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 57.5,54.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: 67.5,35.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: 68.5,35.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: 68.5,33.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: 69.5,35.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: -42.5,57.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: 70.5,35.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: 69.5,33.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: 70.5,33.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: 71.5,33.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: 64.5,33.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: 65.5,35.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: 65.5,33.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: 67.5,33.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 66.5,33.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: 72.5,33.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: 72.5,34.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: 56.5,52.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: 83.5,37.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: -60.5,99.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 56.5,54.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 70.5,21.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 70.5,22.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: -59.5,151.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: -40.5,73.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: -123.5,57.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: -122.5,57.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: -121.5,57.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: -120.5,57.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: -119.5,57.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: 74.5,20.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: -127.5,87.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: -115.5,20.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -18.5,103.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: -2.5,179.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: -65.5,-5.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: -60.5,-6.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + pos: -60.5,-5.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + pos: -63.5,-6.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: -64.5,-8.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + pos: -65.5,-8.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: -67.5,-8.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + pos: -68.5,-8.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: -69.5,-8.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: -70.5,-8.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: -71.5,-8.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + pos: -72.5,-8.5 + parent: 2 + - uid: 1953 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + pos: -66.5,-12.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: -66.5,-13.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: -59.5,-3.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: -57.5,-3.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: -60.5,-1.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + pos: -59.5,-0.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: -59.5,0.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: -123.5,95.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: -47.5,-10.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: -48.5,-13.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + pos: -48.5,-14.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: -45.5,-10.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: -30.5,3.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: -27.5,3.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 2160 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: -5.5,173.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: -40.5,76.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: -40.5,74.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: -40.5,75.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: -109.5,61.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: -31.5,205.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: -43.5,57.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: 27.5,18.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: -84.5,89.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + pos: -122.5,109.5 + parent: 2 + - uid: 3061 + components: + - type: Transform + pos: -122.5,105.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + pos: 72.5,35.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: 72.5,37.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: -18.5,94.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + pos: 105.5,45.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 116.5,48.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + pos: -87.5,87.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + pos: -80.5,92.5 + parent: 2 + - uid: 3385 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + pos: 66.5,60.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: 3.5,88.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: -101.5,26.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: -106.5,25.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + pos: -120.5,65.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: -92.5,92.5 + parent: 2 + - uid: 3781 + components: + - type: Transform + pos: -38.5,81.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + pos: -39.5,81.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + pos: 64.5,35.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + pos: 72.5,36.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: 70.5,37.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + pos: -41.5,81.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: -42.5,81.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + pos: 70.5,36.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + pos: -35.5,73.5 + parent: 2 + - uid: 3948 + components: + - type: Transform + pos: -122.5,106.5 + parent: 2 + - uid: 3966 + components: + - type: Transform + pos: -122.5,52.5 + parent: 2 + - uid: 4015 + components: + - type: Transform + pos: 80.5,39.5 + parent: 2 + - uid: 4018 + components: + - type: Transform + pos: -106.5,100.5 + parent: 2 + - uid: 4039 + components: + - type: Transform + pos: -103.5,26.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: 84.5,65.5 + parent: 2 + - uid: 4071 + components: + - type: Transform + pos: -126.5,52.5 + parent: 2 + - uid: 4072 + components: + - type: Transform + pos: -127.5,52.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + pos: -127.5,48.5 + parent: 2 + - uid: 4091 + components: + - type: Transform + pos: -127.5,49.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + pos: -127.5,50.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: -127.5,47.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: -127.5,46.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + pos: -127.5,45.5 + parent: 2 + - uid: 4187 + components: + - type: Transform + pos: -83.5,81.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: -134.5,49.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: -134.5,46.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: -133.5,41.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: -86.5,83.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: 71.5,28.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: -106.5,26.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: -87.5,83.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: -105.5,26.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: -85.5,83.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: -134.5,43.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: -134.5,45.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: 73.5,20.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + pos: -137.5,50.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 4367 + components: + - type: Transform + pos: -82.5,81.5 + parent: 2 + - uid: 4374 + components: + - type: Transform + pos: -83.5,82.5 + parent: 2 + - uid: 4381 + components: + - type: Transform + pos: -136.5,40.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: -29.5,206.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: -8.5,165.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: -133.5,49.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + pos: 65.5,69.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + pos: 66.5,69.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + pos: 84.5,42.5 + parent: 2 + - uid: 4546 + components: + - type: Transform + pos: 91.5,61.5 + parent: 2 + - uid: 4589 + components: + - type: Transform + pos: -134.5,47.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: -88.5,86.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: -87.5,89.5 + parent: 2 + - uid: 4713 + components: + - type: Transform + pos: -122.5,108.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: 0.5,174.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: -86.5,89.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: -85.5,89.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: -77.5,74.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: 4.5,71.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: -83.5,83.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: -82.5,83.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 4793 + components: + - type: Transform + pos: 7.5,65.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: -143.5,107.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: 89.5,52.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: -135.5,49.5 + parent: 2 + - uid: 4937 + components: + - type: Transform + pos: 72.5,20.5 + parent: 2 + - uid: 4996 + components: + - type: Transform + pos: -17.5,167.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + pos: -119.5,53.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + pos: -127.5,43.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: 6.5,80.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: 112.5,45.5 + parent: 2 + - uid: 5053 + components: + - type: Transform + pos: 111.5,62.5 + parent: 2 + - uid: 5113 + components: + - type: Transform + pos: 18.5,172.5 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: -60.5,103.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + pos: -58.5,92.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: -15.5,99.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + pos: 46.5,56.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + pos: -134.5,48.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + pos: -58.5,93.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + pos: -132.5,39.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + pos: -133.5,39.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + pos: -59.5,95.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: -134.5,41.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + pos: -59.5,96.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: -134.5,42.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + pos: -18.5,102.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: -63.5,63.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + pos: -134.5,39.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + pos: 5.5,173.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + pos: 5.5,172.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + pos: 113.5,60.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + pos: 112.5,61.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + pos: 112.5,47.5 + parent: 2 + - uid: 5441 + components: + - type: Transform + pos: 71.5,57.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + pos: 19.5,172.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + pos: -60.5,101.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + pos: -29.5,205.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + pos: -127.5,44.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + pos: -60.5,104.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: -94.5,53.5 + parent: 2 + - uid: 5772 + components: + - type: Transform + pos: 20.5,172.5 + parent: 2 + - uid: 5787 + components: + - type: Transform + pos: 8.5,70.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + pos: 7.5,71.5 + parent: 2 + - uid: 5831 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + pos: -118.5,65.5 + parent: 2 + - uid: 5852 + components: + - type: Transform + pos: 73.5,23.5 + parent: 2 + - uid: 5854 + components: + - type: Transform + pos: 72.5,23.5 + parent: 2 + - uid: 5856 + components: + - type: Transform + pos: 71.5,23.5 + parent: 2 + - uid: 5858 + components: + - type: Transform + pos: 71.5,24.5 + parent: 2 + - uid: 5861 + components: + - type: Transform + pos: 71.5,25.5 + parent: 2 + - uid: 5864 + components: + - type: Transform + pos: 70.5,23.5 + parent: 2 + - uid: 5865 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 5867 + components: + - type: Transform + pos: 68.5,23.5 + parent: 2 + - uid: 5868 + components: + - type: Transform + pos: 67.5,23.5 + parent: 2 + - uid: 5869 + components: + - type: Transform + pos: 67.5,22.5 + parent: 2 + - uid: 5870 + components: + - type: Transform + pos: 67.5,21.5 + parent: 2 + - uid: 5871 + components: + - type: Transform + pos: 67.5,20.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + pos: 71.5,26.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + pos: 71.5,27.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + pos: 25.5,198.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: -132.5,107.5 + parent: 2 + - uid: 5912 + components: + - type: Transform + pos: -130.5,107.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + pos: -92.5,53.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + pos: -131.5,107.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + pos: -128.5,98.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + pos: -133.5,107.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: 56.5,45.5 + parent: 2 + - uid: 6042 + components: + - type: Transform + pos: 71.5,65.5 + parent: 2 + - uid: 6043 + components: + - type: Transform + pos: 71.5,59.5 + parent: 2 + - uid: 6045 + components: + - type: Transform + pos: 84.5,53.5 + parent: 2 + - uid: 6046 + components: + - type: Transform + pos: 85.5,53.5 + parent: 2 + - uid: 6048 + components: + - type: Transform + pos: 84.5,64.5 + parent: 2 + - uid: 6060 + components: + - type: Transform + pos: 85.5,52.5 + parent: 2 + - uid: 6061 + components: + - type: Transform + pos: 85.5,51.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + pos: 84.5,51.5 + parent: 2 + - uid: 6063 + components: + - type: Transform + pos: 84.5,50.5 + parent: 2 + - uid: 6065 + components: + - type: Transform + pos: 84.5,48.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + pos: 84.5,47.5 + parent: 2 + - uid: 6067 + components: + - type: Transform + pos: 84.5,46.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + pos: 85.5,54.5 + parent: 2 + - uid: 6085 + components: + - type: Transform + pos: 85.5,55.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + pos: 85.5,56.5 + parent: 2 + - uid: 6087 + components: + - type: Transform + pos: 84.5,56.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: 84.5,57.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + pos: 84.5,58.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + pos: 84.5,59.5 + parent: 2 + - uid: 6096 + components: + - type: Transform + pos: 84.5,60.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + pos: 83.5,60.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + pos: 85.5,60.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + pos: 85.5,61.5 + parent: 2 + - uid: 6100 + components: + - type: Transform + pos: 86.5,61.5 + parent: 2 + - uid: 6101 + components: + - type: Transform + pos: 84.5,66.5 + parent: 2 + - uid: 6102 + components: + - type: Transform + pos: 83.5,66.5 + parent: 2 + - uid: 6103 + components: + - type: Transform + pos: 82.5,66.5 + parent: 2 + - uid: 6104 + components: + - type: Transform + pos: 81.5,66.5 + parent: 2 + - uid: 6105 + components: + - type: Transform + pos: 80.5,66.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: 79.5,66.5 + parent: 2 + - uid: 6107 + components: + - type: Transform + pos: 85.5,65.5 + parent: 2 + - uid: 6108 + components: + - type: Transform + pos: 86.5,65.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + pos: 86.5,64.5 + parent: 2 + - uid: 6112 + components: + - type: Transform + pos: 87.5,64.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + pos: 87.5,63.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + pos: 82.5,65.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + pos: 82.5,64.5 + parent: 2 + - uid: 6122 + components: + - type: Transform + pos: 82.5,63.5 + parent: 2 + - uid: 6123 + components: + - type: Transform + pos: 112.5,46.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + pos: 68.5,64.5 + parent: 2 + - uid: 6129 + components: + - type: Transform + pos: 68.5,65.5 + parent: 2 + - uid: 6130 + components: + - type: Transform + pos: 68.5,66.5 + parent: 2 + - uid: 6131 + components: + - type: Transform + pos: 67.5,66.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + pos: 66.5,66.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: 69.5,66.5 + parent: 2 + - uid: 6134 + components: + - type: Transform + pos: 70.5,66.5 + parent: 2 + - uid: 6135 + components: + - type: Transform + pos: 71.5,66.5 + parent: 2 + - uid: 6136 + components: + - type: Transform + pos: 72.5,66.5 + parent: 2 + - uid: 6137 + components: + - type: Transform + pos: 73.5,66.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + pos: 74.5,66.5 + parent: 2 + - uid: 6139 + components: + - type: Transform + pos: 75.5,66.5 + parent: 2 + - uid: 6140 + components: + - type: Transform + pos: 76.5,66.5 + parent: 2 + - uid: 6141 + components: + - type: Transform + pos: 76.5,67.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + pos: 76.5,68.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + pos: 75.5,68.5 + parent: 2 + - uid: 6144 + components: + - type: Transform + pos: 74.5,68.5 + parent: 2 + - uid: 6145 + components: + - type: Transform + pos: 73.5,68.5 + parent: 2 + - uid: 6146 + components: + - type: Transform + pos: 72.5,68.5 + parent: 2 + - uid: 6147 + components: + - type: Transform + pos: 71.5,68.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + pos: 70.5,68.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + pos: 69.5,68.5 + parent: 2 + - uid: 6152 + components: + - type: Transform + pos: 68.5,68.5 + parent: 2 + - uid: 6153 + components: + - type: Transform + pos: 67.5,68.5 + parent: 2 + - uid: 6154 + components: + - type: Transform + pos: 66.5,68.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + pos: 66.5,67.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: 71.5,64.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: 71.5,63.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + pos: 71.5,62.5 + parent: 2 + - uid: 6159 + components: + - type: Transform + pos: 71.5,61.5 + parent: 2 + - uid: 6160 + components: + - type: Transform + pos: 71.5,60.5 + parent: 2 + - uid: 6161 + components: + - type: Transform + pos: 70.5,60.5 + parent: 2 + - uid: 6162 + components: + - type: Transform + pos: 69.5,60.5 + parent: 2 + - uid: 6163 + components: + - type: Transform + pos: 71.5,58.5 + parent: 2 + - uid: 6164 + components: + - type: Transform + pos: 72.5,58.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + pos: 73.5,58.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + pos: 74.5,58.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + pos: 75.5,58.5 + parent: 2 + - uid: 6168 + components: + - type: Transform + pos: 76.5,58.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + pos: 77.5,58.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + pos: -88.5,150.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + pos: 77.5,59.5 + parent: 2 + - uid: 6174 + components: + - type: Transform + pos: 77.5,60.5 + parent: 2 + - uid: 6175 + components: + - type: Transform + pos: 77.5,61.5 + parent: 2 + - uid: 6176 + components: + - type: Transform + pos: 77.5,62.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + pos: 70.5,58.5 + parent: 2 + - uid: 6194 + components: + - type: Transform + pos: 69.5,58.5 + parent: 2 + - uid: 6196 + components: + - type: Transform + pos: 72.5,60.5 + parent: 2 + - uid: 6198 + components: + - type: Transform + pos: 73.5,60.5 + parent: 2 + - uid: 6200 + components: + - type: Transform + pos: 70.5,62.5 + parent: 2 + - uid: 6201 + components: + - type: Transform + pos: 69.5,62.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + pos: 72.5,62.5 + parent: 2 + - uid: 6203 + components: + - type: Transform + pos: 73.5,62.5 + parent: 2 + - uid: 6270 + components: + - type: Transform + pos: 63.5,63.5 + parent: 2 + - uid: 6271 + components: + - type: Transform + pos: 63.5,62.5 + parent: 2 + - uid: 6272 + components: + - type: Transform + pos: -127.5,51.5 + parent: 2 + - uid: 6273 + components: + - type: Transform + pos: 62.5,62.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + pos: 61.5,62.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + pos: 60.5,62.5 + parent: 2 + - uid: 6276 + components: + - type: Transform + pos: 59.5,62.5 + parent: 2 + - uid: 6277 + components: + - type: Transform + pos: 58.5,62.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + pos: 58.5,61.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + pos: 58.5,60.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + pos: 58.5,59.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: 59.5,59.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + pos: 60.5,59.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: 61.5,59.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: 62.5,59.5 + parent: 2 + - uid: 6297 + components: + - type: Transform + pos: 63.5,59.5 + parent: 2 + - uid: 6299 + components: + - type: Transform + pos: 63.5,60.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: 63.5,61.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + pos: 64.5,61.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: 65.5,61.5 + parent: 2 + - uid: 6308 + components: + - type: Transform + pos: 66.5,61.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + pos: 42.5,60.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + pos: 66.5,64.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + pos: 42.5,62.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + pos: 42.5,63.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + pos: 42.5,64.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: 42.5,65.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: 55.5,62.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + pos: 54.5,62.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: 54.5,63.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: 54.5,64.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: 54.5,65.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: 54.5,66.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: 55.5,66.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: 56.5,66.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 57.5,66.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 58.5,66.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + pos: 59.5,66.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + pos: 60.5,66.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: 61.5,66.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + pos: 62.5,66.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: 53.5,62.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: 82.5,63.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + pos: 53.5,61.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + pos: 52.5,61.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: 51.5,61.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + pos: 50.5,61.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: 49.5,61.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: 48.5,61.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + pos: 47.5,61.5 + parent: 2 + - uid: 6367 + components: + - type: Transform + pos: 46.5,61.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + pos: 45.5,61.5 + parent: 2 + - uid: 6369 + components: + - type: Transform + pos: 44.5,61.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + pos: 43.5,61.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + pos: 42.5,61.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + pos: 41.5,61.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + pos: 42.5,66.5 + parent: 2 + - uid: 6374 + components: + - type: Transform + pos: 45.5,56.5 + parent: 2 + - uid: 6375 + components: + - type: Transform + pos: 48.5,56.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + pos: 47.5,56.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + pos: 21.5,172.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + pos: 39.5,62.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + pos: 45.5,62.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + pos: 75.5,20.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + pos: 87.5,61.5 + parent: 2 + - uid: 6563 + components: + - type: Transform + pos: 79.5,33.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + pos: 79.5,34.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + pos: 80.5,34.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + pos: 80.5,35.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + pos: 79.5,36.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + pos: 78.5,36.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + pos: 77.5,36.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + pos: 76.5,36.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + pos: 75.5,36.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + pos: 75.5,35.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + pos: 75.5,34.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + pos: 76.5,34.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + pos: 77.5,34.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + pos: 73.5,44.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + pos: 69.5,43.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + pos: 69.5,44.5 + parent: 2 + - uid: 6580 + components: + - type: Transform + pos: 78.5,34.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + pos: 80.5,36.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + pos: 3.5,73.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: 3.5,71.5 + parent: 2 + - uid: 6626 + components: + - type: Transform + pos: -134.5,40.5 + parent: 2 + - uid: 6662 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + pos: 70.5,44.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + pos: 71.5,44.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + pos: 72.5,44.5 + parent: 2 + - uid: 6685 + components: + - type: Transform + pos: 71.5,43.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + pos: 73.5,43.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: 70.5,46.5 + parent: 2 + - uid: 6717 + components: + - type: Transform + pos: 118.5,48.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + pos: 70.5,47.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + pos: 69.5,47.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + pos: 68.5,47.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + pos: 67.5,47.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + pos: 117.5,48.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + pos: 71.5,47.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + pos: 72.5,47.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: 73.5,47.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + pos: 74.5,47.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + pos: 75.5,47.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: 75.5,46.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + pos: 75.5,45.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + pos: 75.5,44.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + pos: 75.5,43.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + pos: 75.5,42.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + pos: 67.5,46.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + pos: 67.5,45.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + pos: 67.5,44.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: 67.5,43.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + pos: 67.5,42.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + pos: 70.5,48.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + pos: 70.5,49.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + pos: 69.5,49.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + pos: 68.5,49.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + pos: 67.5,49.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + pos: 66.5,49.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + pos: 66.5,50.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + pos: 66.5,51.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + pos: 66.5,52.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + pos: 66.5,53.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + pos: 103.5,62.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + pos: 103.5,63.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + pos: 103.5,64.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + pos: 103.5,65.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + pos: 66.5,54.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + pos: 105.5,62.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + pos: 105.5,63.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + pos: 105.5,64.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + pos: 105.5,65.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + pos: 65.5,54.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + pos: 64.5,54.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + pos: 63.5,54.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + pos: 62.5,54.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + pos: 61.5,54.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + pos: 65.5,51.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + pos: 64.5,51.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + pos: 113.5,62.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: 111.5,64.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + pos: 111.5,65.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + pos: 111.5,63.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + pos: 113.5,63.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + pos: 113.5,64.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + pos: 113.5,65.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + pos: 63.5,51.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + pos: 62.5,51.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: 61.5,51.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + pos: 66.5,48.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + pos: 65.5,48.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + pos: 64.5,48.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + pos: 116.5,58.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + pos: 117.5,58.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + pos: 118.5,58.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + pos: 63.5,48.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + pos: 62.5,48.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: 61.5,48.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: 71.5,49.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: 72.5,49.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + pos: 73.5,49.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + pos: 74.5,49.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: 75.5,49.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: 76.5,49.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: 77.5,49.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + pos: 77.5,50.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + pos: 77.5,51.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + pos: 77.5,52.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: 77.5,53.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: 77.5,54.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + pos: 77.5,57.5 + parent: 2 + - uid: 6830 + components: + - type: Transform + pos: 109.5,59.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: 77.5,56.5 + parent: 2 + - uid: 6861 + components: + - type: Transform + pos: 70.5,56.5 + parent: 2 + - uid: 6862 + components: + - type: Transform + pos: 70.5,55.5 + parent: 2 + - uid: 6863 + components: + - type: Transform + pos: 70.5,54.5 + parent: 2 + - uid: 6864 + components: + - type: Transform + pos: 70.5,53.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + pos: 70.5,52.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: 71.5,52.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + pos: 72.5,52.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + pos: 72.5,53.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + pos: 72.5,54.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: 72.5,55.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + pos: 92.5,50.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + pos: 92.5,49.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + pos: 92.5,48.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + pos: 93.5,48.5 + parent: 2 + - uid: 6879 + components: + - type: Transform + pos: 94.5,48.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + pos: 95.5,48.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + pos: 96.5,48.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + pos: 97.5,48.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + pos: 97.5,55.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + pos: 97.5,54.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + pos: 99.5,53.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + pos: 101.5,48.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + pos: 102.5,48.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: 103.5,48.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + pos: 104.5,48.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + pos: 105.5,48.5 + parent: 2 + - uid: 6891 + components: + - type: Transform + pos: 106.5,48.5 + parent: 2 + - uid: 6892 + components: + - type: Transform + pos: 107.5,48.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + pos: 108.5,48.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + pos: 109.5,48.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + pos: 110.5,48.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + pos: 111.5,48.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + pos: 112.5,48.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + pos: 113.5,48.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: 114.5,48.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: 115.5,48.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: 105.5,47.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + pos: 105.5,46.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: 108.5,47.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + pos: 108.5,46.5 + parent: 2 + - uid: 6905 + components: + - type: Transform + pos: 108.5,45.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + pos: 108.5,44.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + pos: 109.5,44.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + pos: 97.5,49.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + pos: 97.5,50.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + pos: 97.5,51.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + pos: 97.5,52.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + pos: 97.5,53.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + pos: 96.5,53.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + pos: 95.5,53.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + pos: 94.5,53.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: 93.5,53.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: 92.5,53.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + pos: 98.5,53.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: 93.5,54.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + pos: 112.5,44.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + pos: 112.5,42.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + pos: 112.5,43.5 + parent: 2 + - uid: 6924 + components: + - type: Transform + pos: 112.5,41.5 + parent: 2 + - uid: 6925 + components: + - type: Transform + pos: 93.5,52.5 + parent: 2 + - uid: 6926 + components: + - type: Transform + pos: 96.5,51.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: 95.5,51.5 + parent: 2 + - uid: 6928 + components: + - type: Transform + pos: 105.5,44.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + pos: 105.5,43.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + pos: 105.5,42.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + pos: 105.5,41.5 + parent: 2 + - uid: 6932 + components: + - type: Transform + pos: 94.5,51.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + pos: 96.5,55.5 + parent: 2 + - uid: 6934 + components: + - type: Transform + pos: 91.5,53.5 + parent: 2 + - uid: 6935 + components: + - type: Transform + pos: 95.5,55.5 + parent: 2 + - uid: 6936 + components: + - type: Transform + pos: 90.5,53.5 + parent: 2 + - uid: 6937 + components: + - type: Transform + pos: 94.5,55.5 + parent: 2 + - uid: 6938 + components: + - type: Transform + pos: 89.5,53.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + pos: 89.5,54.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + pos: 89.5,55.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + pos: 89.5,56.5 + parent: 2 + - uid: 6942 + components: + - type: Transform + pos: 90.5,53.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: 89.5,51.5 + parent: 2 + - uid: 6944 + components: + - type: Transform + pos: 88.5,50.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: 89.5,50.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: 88.5,56.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + pos: 105.5,61.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + pos: 106.5,63.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: 106.5,61.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + pos: 107.5,61.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: 108.5,61.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + pos: 109.5,61.5 + parent: 2 + - uid: 6953 + components: + - type: Transform + pos: 110.5,61.5 + parent: 2 + - uid: 6954 + components: + - type: Transform + pos: 111.5,61.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: 113.5,59.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: 113.5,61.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: 104.5,61.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + pos: 103.5,61.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: 113.5,58.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: 114.5,58.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: 115.5,58.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: 112.5,58.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + pos: 111.5,58.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + pos: 110.5,58.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: 109.5,58.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: 108.5,58.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: 107.5,58.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: 106.5,58.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: 105.5,58.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + pos: 104.5,58.5 + parent: 2 + - uid: 6974 + components: + - type: Transform + pos: 103.5,58.5 + parent: 2 + - uid: 6975 + components: + - type: Transform + pos: 103.5,59.5 + parent: 2 + - uid: 6976 + components: + - type: Transform + pos: 103.5,60.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + pos: 103.5,61.5 + parent: 2 + - uid: 6978 + components: + - type: Transform + pos: 113.5,57.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + pos: 89.5,57.5 + parent: 2 + - uid: 6980 + components: + - type: Transform + pos: 89.5,58.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + pos: 109.5,57.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + pos: 90.5,58.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: 91.5,58.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + pos: 92.5,58.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + pos: 93.5,58.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: 94.5,58.5 + parent: 2 + - uid: 6988 + components: + - type: Transform + pos: 95.5,58.5 + parent: 2 + - uid: 6989 + components: + - type: Transform + pos: 96.5,58.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + pos: 103.5,57.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + pos: 102.5,58.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + pos: 101.5,58.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + pos: 100.5,58.5 + parent: 2 + - uid: 6996 + components: + - type: Transform + pos: 99.5,58.5 + parent: 2 + - uid: 6997 + components: + - type: Transform + pos: 98.5,58.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + pos: 69.5,37.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: 71.5,37.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: 72.5,38.5 + parent: 2 + - uid: 7005 + components: + - type: Transform + pos: 89.5,49.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + pos: 89.5,48.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + pos: 89.5,47.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + pos: 89.5,46.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: 89.5,45.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: 89.5,44.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: 89.5,43.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + pos: 89.5,42.5 + parent: 2 + - uid: 7013 + components: + - type: Transform + pos: 72.5,39.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + pos: 73.5,39.5 + parent: 2 + - uid: 7015 + components: + - type: Transform + pos: 74.5,39.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: 75.5,39.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + pos: 76.5,39.5 + parent: 2 + - uid: 7019 + components: + - type: Transform + pos: 77.5,39.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + pos: 78.5,39.5 + parent: 2 + - uid: 7021 + components: + - type: Transform + pos: 79.5,39.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + pos: 81.5,39.5 + parent: 2 + - uid: 7026 + components: + - type: Transform + pos: 82.5,39.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + pos: 83.5,39.5 + parent: 2 + - uid: 7029 + components: + - type: Transform + pos: 84.5,39.5 + parent: 2 + - uid: 7035 + components: + - type: Transform + pos: 85.5,39.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: 86.5,39.5 + parent: 2 + - uid: 7037 + components: + - type: Transform + pos: 87.5,39.5 + parent: 2 + - uid: 7038 + components: + - type: Transform + pos: 88.5,42.5 + parent: 2 + - uid: 7039 + components: + - type: Transform + pos: 88.5,45.5 + parent: 2 + - uid: 7057 + components: + - type: Transform + pos: 79.5,40.5 + parent: 2 + - uid: 7058 + components: + - type: Transform + pos: 79.5,41.5 + parent: 2 + - uid: 7060 + components: + - type: Transform + pos: 71.5,39.5 + parent: 2 + - uid: 7061 + components: + - type: Transform + pos: 70.5,39.5 + parent: 2 + - uid: 7062 + components: + - type: Transform + pos: 69.5,39.5 + parent: 2 + - uid: 7063 + components: + - type: Transform + pos: 68.5,39.5 + parent: 2 + - uid: 7064 + components: + - type: Transform + pos: 67.5,39.5 + parent: 2 + - uid: 7065 + components: + - type: Transform + pos: 66.5,39.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: 65.5,39.5 + parent: 2 + - uid: 7067 + components: + - type: Transform + pos: 64.5,39.5 + parent: 2 + - uid: 7068 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 + - uid: 7072 + components: + - type: Transform + pos: 63.5,40.5 + parent: 2 + - uid: 7075 + components: + - type: Transform + pos: 63.5,41.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + pos: 55.5,45.5 + parent: 2 + - uid: 7079 + components: + - type: Transform + pos: 63.5,38.5 + parent: 2 + - uid: 7080 + components: + - type: Transform + pos: 62.5,38.5 + parent: 2 + - uid: 7081 + components: + - type: Transform + pos: 61.5,38.5 + parent: 2 + - uid: 7082 + components: + - type: Transform + pos: 60.5,38.5 + parent: 2 + - uid: 7083 + components: + - type: Transform + pos: 59.5,38.5 + parent: 2 + - uid: 7084 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 + - uid: 7085 + components: + - type: Transform + pos: 57.5,38.5 + parent: 2 + - uid: 7086 + components: + - type: Transform + pos: 57.5,45.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + pos: 57.5,39.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + pos: 57.5,40.5 + parent: 2 + - uid: 7089 + components: + - type: Transform + pos: 57.5,41.5 + parent: 2 + - uid: 7090 + components: + - type: Transform + pos: 57.5,42.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + pos: 57.5,43.5 + parent: 2 + - uid: 7092 + components: + - type: Transform + pos: 53.5,39.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + pos: 58.5,43.5 + parent: 2 + - uid: 7094 + components: + - type: Transform + pos: 58.5,41.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + pos: 54.5,45.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + pos: 53.5,45.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + pos: 52.5,45.5 + parent: 2 + - uid: 7098 + components: + - type: Transform + pos: 51.5,45.5 + parent: 2 + - uid: 7099 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - uid: 7101 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 7115 + components: + - type: Transform + pos: 54.5,42.5 + parent: 2 + - uid: 7117 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: 54.5,40.5 + parent: 2 + - uid: 7121 + components: + - type: Transform + pos: 54.5,39.5 + parent: 2 + - uid: 7125 + components: + - type: Transform + pos: 52.5,39.5 + parent: 2 + - uid: 7126 + components: + - type: Transform + pos: 52.5,40.5 + parent: 2 + - uid: 7127 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 7128 + components: + - type: Transform + pos: 52.5,42.5 + parent: 2 + - uid: 7129 + components: + - type: Transform + pos: 58.5,45.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + pos: 58.5,46.5 + parent: 2 + - uid: 7136 + components: + - type: Transform + pos: 58.5,47.5 + parent: 2 + - uid: 7137 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + pos: 58.5,49.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + pos: 58.5,50.5 + parent: 2 + - uid: 7144 + components: + - type: Transform + pos: 58.5,51.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + pos: 75.5,19.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: 6.5,174.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: -76.5,157.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + pos: 76.5,20.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + pos: -76.5,155.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + pos: -76.5,156.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + pos: 77.5,20.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + pos: -76.5,154.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: -76.5,152.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + pos: -76.5,153.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + pos: 78.5,20.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + pos: -77.5,153.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: -124.5,57.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: -110.5,61.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: 78.5,21.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: 106.5,44.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + pos: -75.5,153.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: -76.5,151.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: -75.5,151.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: 88.5,61.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: -77.5,151.5 + parent: 2 + - uid: 7273 + components: + - type: Transform + pos: -109.5,61.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: -86.5,81.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + pos: 4.5,67.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + pos: -60.5,105.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: -17.5,62.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: -14.5,97.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: -13.5,99.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + pos: -85.5,81.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: 83.5,35.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: 83.5,36.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: 83.5,34.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: 83.5,33.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + pos: 83.5,32.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + pos: 83.5,31.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: 83.5,30.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: 84.5,29.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: 85.5,29.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 7464 + components: + - type: Transform + pos: 87.5,29.5 + parent: 2 + - uid: 7465 + components: + - type: Transform + pos: 88.5,29.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: 88.5,28.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + pos: 89.5,21.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + pos: 88.5,27.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + pos: 88.5,26.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + pos: 88.5,25.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + pos: 88.5,24.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + pos: 88.5,23.5 + parent: 2 + - uid: 7475 + components: + - type: Transform + pos: 88.5,22.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + pos: 88.5,21.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + pos: 82.5,29.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + pos: 81.5,29.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: 80.5,29.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + pos: 79.5,29.5 + parent: 2 + - uid: 7481 + components: + - type: Transform + pos: 78.5,29.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + pos: 77.5,29.5 + parent: 2 + - uid: 7483 + components: + - type: Transform + pos: 76.5,29.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + pos: 75.5,29.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + pos: 74.5,29.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + pos: 73.5,29.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 7488 + components: + - type: Transform + pos: 71.5,29.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + pos: 70.5,29.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + pos: 68.5,29.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + pos: 71.5,30.5 + parent: 2 + - uid: 7503 + components: + - type: Transform + pos: 6.5,68.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + pos: -70.5,102.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + pos: -60.5,100.5 + parent: 2 + - uid: 7582 + components: + - type: Transform + pos: 8.5,71.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + pos: -61.5,133.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: -61.5,132.5 + parent: 2 + - uid: 7657 + components: + - type: Transform + pos: -61.5,131.5 + parent: 2 + - uid: 7658 + components: + - type: Transform + pos: 89.5,61.5 + parent: 2 + - uid: 7659 + components: + - type: Transform + pos: -61.5,130.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + pos: -61.5,134.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + pos: -61.5,129.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + pos: -61.5,128.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + pos: -61.5,127.5 + parent: 2 + - uid: 7664 + components: + - type: Transform + pos: -61.5,126.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + pos: -60.5,126.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + pos: -59.5,126.5 + parent: 2 + - uid: 7667 + components: + - type: Transform + pos: -59.5,125.5 + parent: 2 + - uid: 7668 + components: + - type: Transform + pos: -60.5,134.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + pos: -59.5,134.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + pos: -59.5,135.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + pos: -60.5,130.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: -59.5,130.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: -58.5,130.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + pos: -57.5,130.5 + parent: 2 + - uid: 7675 + components: + - type: Transform + pos: -62.5,130.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + pos: -63.5,130.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + pos: -64.5,130.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + pos: -65.5,130.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + pos: -66.5,130.5 + parent: 2 + - uid: 7680 + components: + - type: Transform + pos: -67.5,128.5 + parent: 2 + - uid: 7681 + components: + - type: Transform + pos: -67.5,129.5 + parent: 2 + - uid: 7682 + components: + - type: Transform + pos: -67.5,130.5 + parent: 2 + - uid: 7683 + components: + - type: Transform + pos: -67.5,131.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + pos: -67.5,132.5 + parent: 2 + - uid: 7725 + components: + - type: Transform + pos: -68.5,129.5 + parent: 2 + - uid: 7726 + components: + - type: Transform + pos: -69.5,129.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + pos: -70.5,129.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + pos: -68.5,131.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + pos: -69.5,131.5 + parent: 2 + - uid: 7732 + components: + - type: Transform + pos: -70.5,131.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + pos: 8.5,69.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + pos: -62.5,126.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + pos: -63.5,126.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + pos: -64.5,126.5 + parent: 2 + - uid: 7784 + components: + - type: Transform + pos: -65.5,126.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + pos: -67.5,126.5 + parent: 2 + - uid: 7786 + components: + - type: Transform + pos: -66.5,126.5 + parent: 2 + - uid: 7787 + components: + - type: Transform + pos: -62.5,134.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + pos: -63.5,134.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + pos: -65.5,134.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: -66.5,134.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: -67.5,134.5 + parent: 2 + - uid: 7792 + components: + - type: Transform + pos: -64.5,134.5 + parent: 2 + - uid: 7793 + components: + - type: Transform + pos: -58.5,134.5 + parent: 2 + - uid: 7794 + components: + - type: Transform + pos: -57.5,134.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + pos: -58.5,126.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + pos: -57.5,126.5 + parent: 2 + - uid: 7803 + components: + - type: Transform + pos: -101.5,96.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + pos: -102.5,96.5 + parent: 2 + - uid: 7816 + components: + - type: Transform + pos: 6.5,194.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: -103.5,96.5 + parent: 2 + - uid: 7877 + components: + - type: Transform + pos: -107.5,66.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: -70.5,99.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + pos: -59.5,150.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: -59.5,149.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + pos: -102.5,146.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + pos: -122.5,107.5 + parent: 2 + - uid: 8044 + components: + - type: Transform + pos: -98.5,148.5 + parent: 2 + - uid: 8113 + components: + - type: Transform + pos: -92.5,155.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + pos: -93.5,155.5 + parent: 2 + - uid: 8132 + components: + - type: Transform + pos: -94.5,155.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + pos: -83.5,85.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + pos: 8.5,67.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + pos: 66.5,43.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: -84.5,87.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: 8.5,68.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + pos: 4.5,68.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + pos: 8.5,65.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + pos: 8.5,66.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: 4.5,65.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: -83.5,86.5 + parent: 2 + - uid: 8424 + components: + - type: Transform + pos: -86.5,87.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + pos: 6.5,65.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + pos: -83.5,84.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: -84.5,81.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + pos: -84.5,83.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + pos: 6.5,69.5 + parent: 2 + - uid: 8448 + components: + - type: Transform + pos: 5.5,68.5 + parent: 2 + - uid: 8449 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + pos: 5.5,65.5 + parent: 2 + - uid: 8473 + components: + - type: Transform + pos: 4.5,66.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: 5.5,71.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + pos: -85.5,87.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + pos: -82.5,87.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: -83.5,87.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + pos: 76.5,43.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + pos: 65.5,43.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + pos: 77.5,43.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + pos: 82.5,58.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: 81.5,58.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + pos: -87.5,81.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + pos: -83.5,89.5 + parent: 2 + - uid: 8607 + components: + - type: Transform + pos: -82.5,89.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: 79.5,58.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + pos: 80.5,58.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + pos: 78.5,58.5 + parent: 2 + - uid: 8646 + components: + - type: Transform + pos: -108.5,23.5 + parent: 2 + - uid: 8650 + components: + - type: Transform + pos: 75.5,41.5 + parent: 2 + - uid: 8730 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 8870 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 8871 + components: + - type: Transform + pos: -104.5,26.5 + parent: 2 + - uid: 8873 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 + - uid: 8876 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 8877 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 8878 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 8879 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - uid: 8880 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 8881 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 8892 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 8893 + components: + - type: Transform + pos: 53.5,26.5 + parent: 2 + - uid: 8894 + components: + - type: Transform + pos: 53.5,25.5 + parent: 2 + - uid: 8896 + components: + - type: Transform + pos: 52.5,25.5 + parent: 2 + - uid: 8897 + components: + - type: Transform + pos: 51.5,25.5 + parent: 2 + - uid: 8898 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 8899 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 8900 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 8901 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 8903 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 + - uid: 8905 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 8906 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 8907 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 8908 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 8909 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 8910 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - uid: 8913 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 + - uid: 8914 + components: + - type: Transform + pos: 56.5,25.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + pos: -104.5,97.5 + parent: 2 + - uid: 8944 + components: + - type: Transform + pos: -104.5,96.5 + parent: 2 + - uid: 8992 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 2 + - uid: 9011 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 2 + - uid: 9043 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - uid: 9055 + components: + - type: Transform + pos: -40.5,-21.5 + parent: 2 + - uid: 9056 + components: + - type: Transform + pos: -64.5,113.5 + parent: 2 + - uid: 9057 + components: + - type: Transform + pos: -40.5,-23.5 + parent: 2 + - uid: 9058 + components: + - type: Transform + pos: -41.5,-21.5 + parent: 2 + - uid: 9059 + components: + - type: Transform + pos: -43.5,-21.5 + parent: 2 + - uid: 9060 + components: + - type: Transform + pos: -42.5,-21.5 + parent: 2 + - uid: 9061 + components: + - type: Transform + pos: -44.5,-21.5 + parent: 2 + - uid: 9062 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 2 + - uid: 9063 + components: + - type: Transform + pos: -46.5,-21.5 + parent: 2 + - uid: 9064 + components: + - type: Transform + pos: -47.5,-21.5 + parent: 2 + - uid: 9065 + components: + - type: Transform + pos: -48.5,-21.5 + parent: 2 + - uid: 9066 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 2 + - uid: 9067 + components: + - type: Transform + pos: -48.5,-19.5 + parent: 2 + - uid: 9068 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 9069 + components: + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 9070 + components: + - type: Transform + pos: -48.5,-16.5 + parent: 2 + - uid: 9071 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - uid: 9104 + components: + - type: Transform + pos: 23.5,183.5 + parent: 2 + - uid: 9126 + components: + - type: Transform + pos: -63.5,113.5 + parent: 2 + - uid: 9132 + components: + - type: Transform + pos: -104.5,95.5 + parent: 2 + - uid: 9133 + components: + - type: Transform + pos: -110.5,23.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + pos: -61.5,113.5 + parent: 2 + - uid: 9218 + components: + - type: Transform + pos: -62.5,113.5 + parent: 2 + - uid: 9325 + components: + - type: Transform + pos: -62.5,109.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: -61.5,109.5 + parent: 2 + - uid: 9460 + components: + - type: Transform + pos: -128.5,96.5 + parent: 2 + - uid: 9615 + components: + - type: Transform + pos: -58.5,106.5 + parent: 2 + - uid: 9666 + components: + - type: Transform + pos: -59.5,106.5 + parent: 2 + - uid: 9855 + components: + - type: Transform + pos: -66.5,105.5 + parent: 2 + - uid: 9978 + components: + - type: Transform + pos: -128.5,95.5 + parent: 2 + - uid: 10058 + components: + - type: Transform + pos: -60.5,106.5 + parent: 2 + - uid: 10083 + components: + - type: Transform + pos: -66.5,110.5 + parent: 2 + - uid: 10091 + components: + - type: Transform + pos: -66.5,111.5 + parent: 2 + - uid: 10099 + components: + - type: Transform + pos: -66.5,112.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + pos: -64.5,109.5 + parent: 2 + - uid: 10569 + components: + - type: Transform + pos: 7.5,77.5 + parent: 2 + - uid: 10585 + components: + - type: Transform + pos: -69.5,106.5 + parent: 2 + - uid: 10586 + components: + - type: Transform + pos: -70.5,106.5 + parent: 2 + - uid: 10587 + components: + - type: Transform + pos: -70.5,105.5 + parent: 2 + - uid: 10597 + components: + - type: Transform + pos: -138.5,40.5 + parent: 2 + - uid: 10599 + components: + - type: Transform + pos: -137.5,38.5 + parent: 2 + - uid: 10604 + components: + - type: Transform + pos: -134.5,44.5 + parent: 2 + - uid: 10606 + components: + - type: Transform + pos: -14.5,99.5 + parent: 2 + - uid: 10607 + components: + - type: Transform + pos: -17.5,97.5 + parent: 2 + - uid: 10608 + components: + - type: Transform + pos: -13.5,97.5 + parent: 2 + - uid: 10609 + components: + - type: Transform + pos: -16.5,97.5 + parent: 2 + - uid: 10629 + components: + - type: Transform + pos: -119.5,63.5 + parent: 2 + - uid: 10630 + components: + - type: Transform + pos: -120.5,63.5 + parent: 2 + - uid: 10710 + components: + - type: Transform + pos: -17.5,170.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + pos: -35.5,98.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + pos: -70.5,104.5 + parent: 2 + - uid: 10804 + components: + - type: Transform + pos: -102.5,148.5 + parent: 2 + - uid: 10810 + components: + - type: Transform + pos: -120.5,105.5 + parent: 2 + - uid: 10811 + components: + - type: Transform + pos: -18.5,101.5 + parent: 2 + - uid: 10812 + components: + - type: Transform + pos: -15.5,97.5 + parent: 2 + - uid: 10822 + components: + - type: Transform + pos: -137.5,40.5 + parent: 2 + - uid: 10828 + components: + - type: Transform + pos: -18.5,97.5 + parent: 2 + - uid: 10831 + components: + - type: Transform + pos: -79.5,70.5 + parent: 2 + - uid: 10840 + components: + - type: Transform + pos: -18.5,99.5 + parent: 2 + - uid: 10843 + components: + - type: Transform + pos: -121.5,105.5 + parent: 2 + - uid: 10849 + components: + - type: Transform + pos: -138.5,107.5 + parent: 2 + - uid: 10855 + components: + - type: Transform + pos: -18.5,104.5 + parent: 2 + - uid: 10868 + components: + - type: Transform + pos: -137.5,39.5 + parent: 2 + - uid: 10870 + components: + - type: Transform + pos: -17.5,99.5 + parent: 2 + - uid: 10897 + components: + - type: Transform + pos: -18.5,98.5 + parent: 2 + - uid: 10898 + components: + - type: Transform + pos: -18.5,90.5 + parent: 2 + - uid: 10899 + components: + - type: Transform + pos: -18.5,91.5 + parent: 2 + - uid: 10900 + components: + - type: Transform + pos: -18.5,92.5 + parent: 2 + - uid: 10901 + components: + - type: Transform + pos: -18.5,95.5 + parent: 2 + - uid: 10908 + components: + - type: Transform + pos: -70.5,100.5 + parent: 2 + - uid: 10911 + components: + - type: Transform + pos: -18.5,93.5 + parent: 2 + - uid: 10913 + components: + - type: Transform + pos: -18.5,96.5 + parent: 2 + - uid: 10920 + components: + - type: Transform + pos: -70.5,103.5 + parent: 2 + - uid: 10921 + components: + - type: Transform + pos: -58.5,91.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + pos: 8.5,73.5 + parent: 2 + - uid: 11018 + components: + - type: Transform + pos: -12.5,65.5 + parent: 2 + - uid: 11032 + components: + - type: Transform + pos: -59.5,90.5 + parent: 2 + - uid: 11046 + components: + - type: Transform + pos: -103.5,17.5 + parent: 2 + - uid: 11052 + components: + - type: Transform + pos: -107.5,17.5 + parent: 2 + - uid: 11055 + components: + - type: Transform + pos: -26.5,64.5 + parent: 2 + - uid: 11075 + components: + - type: Transform + pos: -109.5,17.5 + parent: 2 + - uid: 11113 + components: + - type: Transform + pos: -70.5,98.5 + parent: 2 + - uid: 11117 + components: + - type: Transform + pos: -111.5,17.5 + parent: 2 + - uid: 11127 + components: + - type: Transform + pos: -110.5,26.5 + parent: 2 + - uid: 11136 + components: + - type: Transform + pos: -23.5,98.5 + parent: 2 + - uid: 11138 + components: + - type: Transform + pos: -114.5,26.5 + parent: 2 + - uid: 11149 + components: + - type: Transform + pos: -126.5,106.5 + parent: 2 + - uid: 11163 + components: + - type: Transform + pos: -71.5,98.5 + parent: 2 + - uid: 11164 + components: + - type: Transform + pos: -33.5,98.5 + parent: 2 + - uid: 11182 + components: + - type: Transform + pos: 6.5,73.5 + parent: 2 + - uid: 11183 + components: + - type: Transform + pos: 8.5,76.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + pos: -105.5,88.5 + parent: 2 + - uid: 11219 + components: + - type: Transform + pos: -105.5,89.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + pos: -126.5,107.5 + parent: 2 + - uid: 11252 + components: + - type: Transform + pos: 8.5,77.5 + parent: 2 + - uid: 11261 + components: + - type: Transform + pos: -47.5,81.5 + parent: 2 + - uid: 11272 + components: + - type: Transform + pos: -138.5,50.5 + parent: 2 + - uid: 11288 + components: + - type: Transform + pos: -114.5,25.5 + parent: 2 + - uid: 11427 + components: + - type: Transform + pos: -126.5,109.5 + parent: 2 + - uid: 11459 + components: + - type: Transform + pos: -124.5,65.5 + parent: 2 + - uid: 11463 + components: + - type: Transform + pos: 67.5,41.5 + parent: 2 + - uid: 11489 + components: + - type: Transform + pos: -122.5,64.5 + parent: 2 + - uid: 11498 + components: + - type: Transform + pos: -124.5,66.5 + parent: 2 + - uid: 11499 + components: + - type: Transform + pos: -124.5,64.5 + parent: 2 + - uid: 11500 + components: + - type: Transform + pos: -123.5,64.5 + parent: 2 + - uid: 11505 + components: + - type: Transform + pos: -122.5,65.5 + parent: 2 + - uid: 11508 + components: + - type: Transform + pos: -121.5,65.5 + parent: 2 + - uid: 11570 + components: + - type: Transform + pos: 66.5,35.5 + parent: 2 + - uid: 11614 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 11624 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 11657 + components: + - type: Transform + pos: -132.5,49.5 + parent: 2 + - uid: 11673 + components: + - type: Transform + pos: -114.5,24.5 + parent: 2 + - uid: 11674 + components: + - type: Transform + pos: -126.5,108.5 + parent: 2 + - uid: 11724 + components: + - type: Transform + pos: -69.5,98.5 + parent: 2 + - uid: 11728 + components: + - type: Transform + pos: -59.5,97.5 + parent: 2 + - uid: 11729 + components: + - type: Transform + pos: -4.5,181.5 + parent: 2 + - uid: 11730 + components: + - type: Transform + pos: -5.5,181.5 + parent: 2 + - uid: 11733 + components: + - type: Transform + pos: -5.5,182.5 + parent: 2 + - uid: 11743 + components: + - type: Transform + pos: -66.5,107.5 + parent: 2 + - uid: 11744 + components: + - type: Transform + pos: -66.5,108.5 + parent: 2 + - uid: 11772 + components: + - type: Transform + pos: -114.5,20.5 + parent: 2 + - uid: 11782 + components: + - type: Transform + pos: -46.5,73.5 + parent: 2 + - uid: 11783 + components: + - type: Transform + pos: -45.5,73.5 + parent: 2 + - uid: 11784 + components: + - type: Transform + pos: -44.5,73.5 + parent: 2 + - uid: 11787 + components: + - type: Transform + pos: -41.5,73.5 + parent: 2 + - uid: 11788 + components: + - type: Transform + pos: -41.5,72.5 + parent: 2 + - uid: 11789 + components: + - type: Transform + pos: -41.5,71.5 + parent: 2 + - uid: 11790 + components: + - type: Transform + pos: -41.5,70.5 + parent: 2 + - uid: 11791 + components: + - type: Transform + pos: -41.5,69.5 + parent: 2 + - uid: 11792 + components: + - type: Transform + pos: -41.5,68.5 + parent: 2 + - uid: 11793 + components: + - type: Transform + pos: -41.5,67.5 + parent: 2 + - uid: 11794 + components: + - type: Transform + pos: -41.5,66.5 + parent: 2 + - uid: 11795 + components: + - type: Transform + pos: -41.5,65.5 + parent: 2 + - uid: 11796 + components: + - type: Transform + pos: -40.5,65.5 + parent: 2 + - uid: 11797 + components: + - type: Transform + pos: -39.5,65.5 + parent: 2 + - uid: 11798 + components: + - type: Transform + pos: -39.5,66.5 + parent: 2 + - uid: 11799 + components: + - type: Transform + pos: -39.5,67.5 + parent: 2 + - uid: 11800 + components: + - type: Transform + pos: -39.5,68.5 + parent: 2 + - uid: 11801 + components: + - type: Transform + pos: -39.5,69.5 + parent: 2 + - uid: 11802 + components: + - type: Transform + pos: -39.5,70.5 + parent: 2 + - uid: 11803 + components: + - type: Transform + pos: -39.5,71.5 + parent: 2 + - uid: 11804 + components: + - type: Transform + pos: -39.5,72.5 + parent: 2 + - uid: 11805 + components: + - type: Transform + pos: -39.5,73.5 + parent: 2 + - uid: 11806 + components: + - type: Transform + pos: -44.5,74.5 + parent: 2 + - uid: 11807 + components: + - type: Transform + pos: -44.5,75.5 + parent: 2 + - uid: 11808 + components: + - type: Transform + pos: -44.5,76.5 + parent: 2 + - uid: 11809 + components: + - type: Transform + pos: -44.5,77.5 + parent: 2 + - uid: 11810 + components: + - type: Transform + pos: -44.5,78.5 + parent: 2 + - uid: 11811 + components: + - type: Transform + pos: -45.5,78.5 + parent: 2 + - uid: 11812 + components: + - type: Transform + pos: -46.5,78.5 + parent: 2 + - uid: 11813 + components: + - type: Transform + pos: -47.5,78.5 + parent: 2 + - uid: 11814 + components: + - type: Transform + pos: -48.5,78.5 + parent: 2 + - uid: 11815 + components: + - type: Transform + pos: -49.5,78.5 + parent: 2 + - uid: 11816 + components: + - type: Transform + pos: -50.5,78.5 + parent: 2 + - uid: 11817 + components: + - type: Transform + pos: -51.5,78.5 + parent: 2 + - uid: 11818 + components: + - type: Transform + pos: -51.5,77.5 + parent: 2 + - uid: 11819 + components: + - type: Transform + pos: -51.5,76.5 + parent: 2 + - uid: 11820 + components: + - type: Transform + pos: -50.5,76.5 + parent: 2 + - uid: 11821 + components: + - type: Transform + pos: -49.5,76.5 + parent: 2 + - uid: 11822 + components: + - type: Transform + pos: -48.5,76.5 + parent: 2 + - uid: 11823 + components: + - type: Transform + pos: -47.5,76.5 + parent: 2 + - uid: 11824 + components: + - type: Transform + pos: -46.5,76.5 + parent: 2 + - uid: 11825 + components: + - type: Transform + pos: -45.5,76.5 + parent: 2 + - uid: 11827 + components: + - type: Transform + pos: -44.5,79.5 + parent: 2 + - uid: 11828 + components: + - type: Transform + pos: -44.5,80.5 + parent: 2 + - uid: 11829 + components: + - type: Transform + pos: -44.5,81.5 + parent: 2 + - uid: 11830 + components: + - type: Transform + pos: -44.5,82.5 + parent: 2 + - uid: 11831 + components: + - type: Transform + pos: -44.5,83.5 + parent: 2 + - uid: 11832 + components: + - type: Transform + pos: -44.5,84.5 + parent: 2 + - uid: 11833 + components: + - type: Transform + pos: -45.5,84.5 + parent: 2 + - uid: 11834 + components: + - type: Transform + pos: -46.5,84.5 + parent: 2 + - uid: 11835 + components: + - type: Transform + pos: -47.5,84.5 + parent: 2 + - uid: 11836 + components: + - type: Transform + pos: -48.5,84.5 + parent: 2 + - uid: 11837 + components: + - type: Transform + pos: -49.5,84.5 + parent: 2 + - uid: 11838 + components: + - type: Transform + pos: -50.5,84.5 + parent: 2 + - uid: 11839 + components: + - type: Transform + pos: -51.5,84.5 + parent: 2 + - uid: 11840 + components: + - type: Transform + pos: -51.5,85.5 + parent: 2 + - uid: 11841 + components: + - type: Transform + pos: -51.5,86.5 + parent: 2 + - uid: 11842 + components: + - type: Transform + pos: -50.5,86.5 + parent: 2 + - uid: 11843 + components: + - type: Transform + pos: -49.5,86.5 + parent: 2 + - uid: 11844 + components: + - type: Transform + pos: -48.5,86.5 + parent: 2 + - uid: 11845 + components: + - type: Transform + pos: -47.5,86.5 + parent: 2 + - uid: 11846 + components: + - type: Transform + pos: -46.5,86.5 + parent: 2 + - uid: 11847 + components: + - type: Transform + pos: -45.5,86.5 + parent: 2 + - uid: 11848 + components: + - type: Transform + pos: -44.5,86.5 + parent: 2 + - uid: 11849 + components: + - type: Transform + pos: -44.5,85.5 + parent: 2 + - uid: 11850 + components: + - type: Transform + pos: -32.5,98.5 + parent: 2 + - uid: 11852 + components: + - type: Transform + pos: -36.5,73.5 + parent: 2 + - uid: 11853 + components: + - type: Transform + pos: -36.5,74.5 + parent: 2 + - uid: 11854 + components: + - type: Transform + pos: -36.5,75.5 + parent: 2 + - uid: 11855 + components: + - type: Transform + pos: -36.5,76.5 + parent: 2 + - uid: 11856 + components: + - type: Transform + pos: -36.5,77.5 + parent: 2 + - uid: 11857 + components: + - type: Transform + pos: -36.5,78.5 + parent: 2 + - uid: 11858 + components: + - type: Transform + pos: -36.5,79.5 + parent: 2 + - uid: 11859 + components: + - type: Transform + pos: -36.5,80.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + pos: -36.5,81.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + pos: -36.5,82.5 + parent: 2 + - uid: 11862 + components: + - type: Transform + pos: -36.5,83.5 + parent: 2 + - uid: 11863 + components: + - type: Transform + pos: -36.5,84.5 + parent: 2 + - uid: 11864 + components: + - type: Transform + pos: -36.5,85.5 + parent: 2 + - uid: 11865 + components: + - type: Transform + pos: -36.5,86.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + pos: -35.5,76.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + pos: -34.5,76.5 + parent: 2 + - uid: 11868 + components: + - type: Transform + pos: -33.5,76.5 + parent: 2 + - uid: 11869 + components: + - type: Transform + pos: -32.5,76.5 + parent: 2 + - uid: 11870 + components: + - type: Transform + pos: -31.5,76.5 + parent: 2 + - uid: 11871 + components: + - type: Transform + pos: -30.5,76.5 + parent: 2 + - uid: 11872 + components: + - type: Transform + pos: -29.5,76.5 + parent: 2 + - uid: 11873 + components: + - type: Transform + pos: -29.5,77.5 + parent: 2 + - uid: 11874 + components: + - type: Transform + pos: -29.5,78.5 + parent: 2 + - uid: 11875 + components: + - type: Transform + pos: -30.5,78.5 + parent: 2 + - uid: 11876 + components: + - type: Transform + pos: -31.5,78.5 + parent: 2 + - uid: 11877 + components: + - type: Transform + pos: -32.5,78.5 + parent: 2 + - uid: 11878 + components: + - type: Transform + pos: -33.5,78.5 + parent: 2 + - uid: 11879 + components: + - type: Transform + pos: -34.5,78.5 + parent: 2 + - uid: 11880 + components: + - type: Transform + pos: -35.5,78.5 + parent: 2 + - uid: 11881 + components: + - type: Transform + pos: -35.5,84.5 + parent: 2 + - uid: 11882 + components: + - type: Transform + pos: -34.5,84.5 + parent: 2 + - uid: 11883 + components: + - type: Transform + pos: -33.5,84.5 + parent: 2 + - uid: 11884 + components: + - type: Transform + pos: -32.5,84.5 + parent: 2 + - uid: 11885 + components: + - type: Transform + pos: -31.5,84.5 + parent: 2 + - uid: 11886 + components: + - type: Transform + pos: -30.5,84.5 + parent: 2 + - uid: 11887 + components: + - type: Transform + pos: -29.5,84.5 + parent: 2 + - uid: 11888 + components: + - type: Transform + pos: -29.5,85.5 + parent: 2 + - uid: 11889 + components: + - type: Transform + pos: -29.5,86.5 + parent: 2 + - uid: 11890 + components: + - type: Transform + pos: -30.5,86.5 + parent: 2 + - uid: 11891 + components: + - type: Transform + pos: -31.5,86.5 + parent: 2 + - uid: 11892 + components: + - type: Transform + pos: -32.5,86.5 + parent: 2 + - uid: 11893 + components: + - type: Transform + pos: -33.5,86.5 + parent: 2 + - uid: 11894 + components: + - type: Transform + pos: -34.5,86.5 + parent: 2 + - uid: 11895 + components: + - type: Transform + pos: -35.5,86.5 + parent: 2 + - uid: 11896 + components: + - type: Transform + pos: -36.5,87.5 + parent: 2 + - uid: 11897 + components: + - type: Transform + pos: -44.5,87.5 + parent: 2 + - uid: 11898 + components: + - type: Transform + pos: -40.5,77.5 + parent: 2 + - uid: 11899 + components: + - type: Transform + pos: -40.5,78.5 + parent: 2 + - uid: 11900 + components: + - type: Transform + pos: -40.5,79.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + pos: -40.5,80.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + pos: -40.5,81.5 + parent: 2 + - uid: 11903 + components: + - type: Transform + pos: -40.5,82.5 + parent: 2 + - uid: 11904 + components: + - type: Transform + pos: -40.5,83.5 + parent: 2 + - uid: 11905 + components: + - type: Transform + pos: -40.5,84.5 + parent: 2 + - uid: 11906 + components: + - type: Transform + pos: -40.5,85.5 + parent: 2 + - uid: 11946 + components: + - type: Transform + pos: -114.5,23.5 + parent: 2 + - uid: 11954 + components: + - type: Transform + pos: -1.5,68.5 + parent: 2 + - uid: 11971 + components: + - type: Transform + pos: 76.5,41.5 + parent: 2 + - uid: 11993 + components: + - type: Transform + pos: -16.5,99.5 + parent: 2 + - uid: 11994 + components: + - type: Transform + pos: -18.5,105.5 + parent: 2 + - uid: 11995 + components: + - type: Transform + pos: -18.5,100.5 + parent: 2 + - uid: 12003 + components: + - type: Transform + pos: -18.5,64.5 + parent: 2 + - uid: 12012 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 12013 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 + - uid: 12015 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 12016 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 12017 + components: + - type: Transform + pos: -33.5,8.5 + parent: 2 + - uid: 12018 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 12019 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 12020 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 12021 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 12022 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 12023 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 12024 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 + - uid: 12025 + components: + - type: Transform + pos: -35.5,6.5 + parent: 2 + - uid: 12027 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 + - uid: 12028 + components: + - type: Transform + pos: -35.5,3.5 + parent: 2 + - uid: 12046 + components: + - type: Transform + pos: -105.5,90.5 + parent: 2 + - uid: 12062 + components: + - type: Transform + pos: -47.5,102.5 + parent: 2 + - uid: 12082 + components: + - type: Transform + pos: -105.5,17.5 + parent: 2 + - uid: 12135 + components: + - type: Transform + pos: -26.5,65.5 + parent: 2 + - uid: 12179 + components: + - type: Transform + pos: -35.5,97.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + pos: -47.5,103.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + pos: 4.5,88.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + pos: 5.5,88.5 + parent: 2 + - uid: 12478 + components: + - type: Transform + pos: -19.5,191.5 + parent: 2 + - uid: 12486 + components: + - type: Transform + pos: -117.5,63.5 + parent: 2 + - uid: 12491 + components: + - type: Transform + pos: -118.5,64.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + pos: -114.5,22.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + pos: 6.5,77.5 + parent: 2 + - uid: 12603 + components: + - type: Transform + pos: 6.5,75.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + pos: -114.5,21.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + pos: -114.5,19.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + pos: -128.5,94.5 + parent: 2 + - uid: 12808 + components: + - type: Transform + pos: 80.5,21.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + pos: 79.5,21.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + pos: -112.5,23.5 + parent: 2 + - uid: 12850 + components: + - type: Transform + pos: -137.5,107.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + pos: -134.5,107.5 + parent: 2 + - uid: 12865 + components: + - type: Transform + pos: -139.5,107.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + pos: 84.5,43.5 + parent: 2 + - uid: 12872 + components: + - type: Transform + pos: 84.5,44.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + pos: -109.5,23.5 + parent: 2 + - uid: 12887 + components: + - type: Transform + pos: -106.5,23.5 + parent: 2 + - uid: 12889 + components: + - type: Transform + pos: -111.5,23.5 + parent: 2 + - uid: 12892 + components: + - type: Transform + pos: -113.5,23.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + pos: -136.5,107.5 + parent: 2 + - uid: 12908 + components: + - type: Transform + pos: 61.5,45.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + pos: 84.5,45.5 + parent: 2 + - uid: 12921 + components: + - type: Transform + pos: 63.5,45.5 + parent: 2 + - uid: 12923 + components: + - type: Transform + pos: 64.5,45.5 + parent: 2 + - uid: 12953 + components: + - type: Transform + pos: -113.5,19.5 + parent: 2 + - uid: 12954 + components: + - type: Transform + pos: -113.5,18.5 + parent: 2 + - uid: 12985 + components: + - type: Transform + pos: -103.5,18.5 + parent: 2 + - uid: 12997 + components: + - type: Transform + pos: -26.5,72.5 + parent: 2 + - uid: 12998 + components: + - type: Transform + pos: -26.5,71.5 + parent: 2 + - uid: 12999 + components: + - type: Transform + pos: -26.5,70.5 + parent: 2 + - uid: 13000 + components: + - type: Transform + pos: -26.5,69.5 + parent: 2 + - uid: 13001 + components: + - type: Transform + pos: -26.5,68.5 + parent: 2 + - uid: 13002 + components: + - type: Transform + pos: -27.5,70.5 + parent: 2 + - uid: 13003 + components: + - type: Transform + pos: -28.5,70.5 + parent: 2 + - uid: 13004 + components: + - type: Transform + pos: -29.5,70.5 + parent: 2 + - uid: 13005 + components: + - type: Transform + pos: -30.5,70.5 + parent: 2 + - uid: 13006 + components: + - type: Transform + pos: -30.5,69.5 + parent: 2 + - uid: 13007 + components: + - type: Transform + pos: -30.5,68.5 + parent: 2 + - uid: 13008 + components: + - type: Transform + pos: -30.5,67.5 + parent: 2 + - uid: 13009 + components: + - type: Transform + pos: -30.5,66.5 + parent: 2 + - uid: 13010 + components: + - type: Transform + pos: -26.5,67.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + pos: -26.5,66.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + pos: -23.5,62.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + pos: -28.5,69.5 + parent: 2 + - uid: 13017 + components: + - type: Transform + pos: -25.5,70.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + pos: -24.5,70.5 + parent: 2 + - uid: 13019 + components: + - type: Transform + pos: -23.5,70.5 + parent: 2 + - uid: 13020 + components: + - type: Transform + pos: -22.5,70.5 + parent: 2 + - uid: 13021 + components: + - type: Transform + pos: -21.5,70.5 + parent: 2 + - uid: 13022 + components: + - type: Transform + pos: -24.5,69.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + pos: -24.5,68.5 + parent: 2 + - uid: 13024 + components: + - type: Transform + pos: -24.5,67.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + pos: -24.5,66.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + pos: -22.5,69.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + pos: -22.5,68.5 + parent: 2 + - uid: 13028 + components: + - type: Transform + pos: -22.5,67.5 + parent: 2 + - uid: 13029 + components: + - type: Transform + pos: -22.5,66.5 + parent: 2 + - uid: 13030 + components: + - type: Transform + pos: -20.5,70.5 + parent: 2 + - uid: 13031 + components: + - type: Transform + pos: -20.5,69.5 + parent: 2 + - uid: 13032 + components: + - type: Transform + pos: -20.5,68.5 + parent: 2 + - uid: 13033 + components: + - type: Transform + pos: -20.5,67.5 + parent: 2 + - uid: 13034 + components: + - type: Transform + pos: -20.5,66.5 + parent: 2 + - uid: 13035 + components: + - type: Transform + pos: -26.5,63.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + pos: -26.5,62.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + pos: -24.5,62.5 + parent: 2 + - uid: 13039 + components: + - type: Transform + pos: -25.5,62.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + pos: -26.5,62.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + pos: -27.5,62.5 + parent: 2 + - uid: 13042 + components: + - type: Transform + pos: -28.5,62.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + pos: -29.5,62.5 + parent: 2 + - uid: 13044 + components: + - type: Transform + pos: -30.5,62.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + pos: -31.5,62.5 + parent: 2 + - uid: 13046 + components: + - type: Transform + pos: -32.5,62.5 + parent: 2 + - uid: 13047 + components: + - type: Transform + pos: -32.5,61.5 + parent: 2 + - uid: 13048 + components: + - type: Transform + pos: -32.5,60.5 + parent: 2 + - uid: 13049 + components: + - type: Transform + pos: -32.5,59.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + pos: -32.5,58.5 + parent: 2 + - uid: 13051 + components: + - type: Transform + pos: -32.5,57.5 + parent: 2 + - uid: 13056 + components: + - type: Transform + pos: -30.5,65.5 + parent: 2 + - uid: 13058 + components: + - type: Transform + pos: -28.5,65.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + pos: -24.5,65.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + pos: -22.5,65.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + pos: -20.5,65.5 + parent: 2 + - uid: 13062 + components: + - type: Transform + pos: -22.5,62.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + pos: -21.5,62.5 + parent: 2 + - uid: 13064 + components: + - type: Transform + pos: -20.5,62.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + pos: -20.5,61.5 + parent: 2 + - uid: 13068 + components: + - type: Transform + pos: -20.5,60.5 + parent: 2 + - uid: 13069 + components: + - type: Transform + pos: -2.5,68.5 + parent: 2 + - uid: 13070 + components: + - type: Transform + pos: -20.5,63.5 + parent: 2 + - uid: 13079 + components: + - type: Transform + pos: -15.5,65.5 + parent: 2 + - uid: 13080 + components: + - type: Transform + pos: -15.5,66.5 + parent: 2 + - uid: 13081 + components: + - type: Transform + pos: -15.5,67.5 + parent: 2 + - uid: 13082 + components: + - type: Transform + pos: -15.5,68.5 + parent: 2 + - uid: 13083 + components: + - type: Transform + pos: -15.5,69.5 + parent: 2 + - uid: 13084 + components: + - type: Transform + pos: -15.5,70.5 + parent: 2 + - uid: 13085 + components: + - type: Transform + pos: -14.5,70.5 + parent: 2 + - uid: 13086 + components: + - type: Transform + pos: -16.5,70.5 + parent: 2 + - uid: 13087 + components: + - type: Transform + pos: -17.5,70.5 + parent: 2 + - uid: 13088 + components: + - type: Transform + pos: -18.5,70.5 + parent: 2 + - uid: 13089 + components: + - type: Transform + pos: -15.5,64.5 + parent: 2 + - uid: 13090 + components: + - type: Transform + pos: -15.5,63.5 + parent: 2 + - uid: 13091 + components: + - type: Transform + pos: -14.5,63.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + pos: -13.5,63.5 + parent: 2 + - uid: 13093 + components: + - type: Transform + pos: -12.5,63.5 + parent: 2 + - uid: 13094 + components: + - type: Transform + pos: -11.5,63.5 + parent: 2 + - uid: 13095 + components: + - type: Transform + pos: -10.5,63.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + pos: -10.5,62.5 + parent: 2 + - uid: 13097 + components: + - type: Transform + pos: -9.5,62.5 + parent: 2 + - uid: 13098 + components: + - type: Transform + pos: -16.5,63.5 + parent: 2 + - uid: 13099 + components: + - type: Transform + pos: -17.5,63.5 + parent: 2 + - uid: 13100 + components: + - type: Transform + pos: -14.5,66.5 + parent: 2 + - uid: 13101 + components: + - type: Transform + pos: -13.5,66.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + pos: -102.5,22.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + pos: -103.5,19.5 + parent: 2 + - uid: 13105 + components: + - type: Transform + pos: -103.5,15.5 + parent: 2 + - uid: 13112 + components: + - type: Transform + pos: -13.5,70.5 + parent: 2 + - uid: 13128 + components: + - type: Transform + pos: -16.5,68.5 + parent: 2 + - uid: 13129 + components: + - type: Transform + pos: -17.5,68.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + pos: -18.5,68.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + pos: -18.5,66.5 + parent: 2 + - uid: 13133 + components: + - type: Transform + pos: -17.5,66.5 + parent: 2 + - uid: 13134 + components: + - type: Transform + pos: -16.5,66.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + pos: -14.5,68.5 + parent: 2 + - uid: 13136 + components: + - type: Transform + pos: -13.5,68.5 + parent: 2 + - uid: 13137 + components: + - type: Transform + pos: -17.5,61.5 + parent: 2 + - uid: 13140 + components: + - type: Transform + pos: -8.5,62.5 + parent: 2 + - uid: 13141 + components: + - type: Transform + pos: -103.5,16.5 + parent: 2 + - uid: 13151 + components: + - type: Transform + pos: -115.5,24.5 + parent: 2 + - uid: 13196 + components: + - type: Transform + pos: -34.5,71.5 + parent: 2 + - uid: 13217 + components: + - type: Transform + pos: -6.5,68.5 + parent: 2 + - uid: 13218 + components: + - type: Transform + pos: -7.5,68.5 + parent: 2 + - uid: 13219 + components: + - type: Transform + pos: -8.5,68.5 + parent: 2 + - uid: 13220 + components: + - type: Transform + pos: -9.5,68.5 + parent: 2 + - uid: 13221 + components: + - type: Transform + pos: -10.5,68.5 + parent: 2 + - uid: 13222 + components: + - type: Transform + pos: -9.5,69.5 + parent: 2 + - uid: 13223 + components: + - type: Transform + pos: -10.5,67.5 + parent: 2 + - uid: 13224 + components: + - type: Transform + pos: -10.5,66.5 + parent: 2 + - uid: 13226 + components: + - type: Transform + pos: -9.5,66.5 + parent: 2 + - uid: 13236 + components: + - type: Transform + pos: -2.5,66.5 + parent: 2 + - uid: 13237 + components: + - type: Transform + pos: -1.5,66.5 + parent: 2 + - uid: 13238 + components: + - type: Transform + pos: -0.5,66.5 + parent: 2 + - uid: 13239 + components: + - type: Transform + pos: 0.5,66.5 + parent: 2 + - uid: 13240 + components: + - type: Transform + pos: 0.5,67.5 + parent: 2 + - uid: 13242 + components: + - type: Transform + pos: 0.5,68.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 13251 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + pos: 40.5,61.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: 39.5,61.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + pos: 38.5,61.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + pos: 37.5,61.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + pos: 36.5,61.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + pos: 36.5,60.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + pos: 36.5,59.5 + parent: 2 + - uid: 13297 + components: + - type: Transform + pos: 36.5,62.5 + parent: 2 + - uid: 13298 + components: + - type: Transform + pos: 36.5,63.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + pos: 35.5,63.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + pos: 34.5,63.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + pos: 33.5,63.5 + parent: 2 + - uid: 13303 + components: + - type: Transform + pos: 32.5,63.5 + parent: 2 + - uid: 13304 + components: + - type: Transform + pos: 32.5,62.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + pos: 32.5,61.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + pos: 32.5,60.5 + parent: 2 + - uid: 13330 + components: + - type: Transform + pos: -52.5,74.5 + parent: 2 + - uid: 13351 + components: + - type: Transform + pos: 32.5,59.5 + parent: 2 + - uid: 13361 + components: + - type: Transform + pos: -116.5,24.5 + parent: 2 + - uid: 13384 + components: + - type: Transform + pos: -117.5,24.5 + parent: 2 + - uid: 13385 + components: + - type: Transform + pos: -119.5,24.5 + parent: 2 + - uid: 13446 + components: + - type: Transform + pos: -118.5,24.5 + parent: 2 + - uid: 13468 + components: + - type: Transform + pos: -31.5,97.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + pos: -47.5,100.5 + parent: 2 + - uid: 13547 + components: + - type: Transform + pos: -46.5,99.5 + parent: 2 + - uid: 13552 + components: + - type: Transform + pos: -47.5,101.5 + parent: 2 + - uid: 13553 + components: + - type: Transform + pos: -47.5,99.5 + parent: 2 + - uid: 13564 + components: + - type: Transform + pos: -47.5,98.5 + parent: 2 + - uid: 13569 + components: + - type: Transform + pos: -26.5,99.5 + parent: 2 + - uid: 13570 + components: + - type: Transform + pos: -25.5,99.5 parent: 2 - - type: DeviceList - devices: - - 13670 - - 13717 - - 13673 - - 13674 - uid: 13586 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-37.5 + pos: -27.5,99.5 parent: 2 - - type: DeviceList - devices: - - 704 - - uid: 13587 - components: - - type: Transform - pos: -6.5,53.5 - parent: 2 - - type: DeviceList - devices: - - 17734 - - 17532 - uid: 13589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-72.5 - parent: 2 - - type: DeviceList - devices: - - 708 - - 13859 - - 13860 - - 13861 - - uid: 13590 - components: - - type: Transform - pos: 1.5,-64.5 - parent: 2 - - type: DeviceList - devices: - - 13859 - - 13860 - - 13861 - - 13820 - - 711 - - uid: 13591 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 2 - - type: DeviceList - devices: - - 13648 - - 13652 - - 13655 - - 13653 - - 13654 -- proto: FireAxeCabinetFilled - entities: - - uid: 1664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-12.5 - parent: 2 - - uid: 14410 - components: - - type: Transform - pos: 7.5,-45.5 - parent: 2 -- proto: FireExtinguisher - entities: - - uid: 13594 - components: - - type: Transform - pos: 59.55134,-49.311836 - parent: 2 - - uid: 13596 - components: - - type: Transform - pos: 86.558365,-55.442688 - parent: 2 -- proto: FirelockEdge - entities: - - uid: 13599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - uid: 13600 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - uid: 13601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-20.5 - parent: 2 - - uid: 13602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-21.5 - parent: 2 - - uid: 13603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 2 - - uid: 13604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-21.5 + pos: -32.5,104.5 parent: 2 - uid: 13605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-51.5 + pos: -32.5,107.5 parent: 2 - - uid: 13606 + - uid: 13649 components: - type: Transform - pos: 0.5,-49.5 + pos: -29.5,101.5 parent: 2 - - uid: 13608 + - uid: 13650 components: - type: Transform - pos: -0.5,-49.5 + pos: -29.5,99.5 parent: 2 - - uid: 13609 + - uid: 13651 + components: + - type: Transform + pos: -29.5,104.5 + parent: 2 + - uid: 13654 + components: + - type: Transform + pos: -29.5,103.5 + parent: 2 + - uid: 13665 + components: + - type: Transform + pos: -22.5,99.5 + parent: 2 + - uid: 13677 + components: + - type: Transform + pos: -21.5,99.5 + parent: 2 + - uid: 13691 + components: + - type: Transform + pos: -48.5,107.5 + parent: 2 + - uid: 13714 + components: + - type: Transform + pos: -6.5,182.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: -47.5,97.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + pos: -29.5,100.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + pos: 8.5,74.5 + parent: 2 + - uid: 13785 + components: + - type: Transform + pos: -63.5,109.5 + parent: 2 + - uid: 13879 + components: + - type: Transform + pos: -79.5,87.5 + parent: 2 + - uid: 13944 + components: + - type: Transform + pos: -70.5,101.5 + parent: 2 + - uid: 14038 + components: + - type: Transform + pos: -66.5,109.5 + parent: 2 + - uid: 14072 + components: + - type: Transform + pos: -28.5,99.5 + parent: 2 + - uid: 14082 + components: + - type: Transform + pos: 8.5,75.5 + parent: 2 + - uid: 14148 + components: + - type: Transform + pos: -16.5,164.5 + parent: 2 + - uid: 14160 + components: + - type: Transform + pos: -127.5,53.5 + parent: 2 + - uid: 14165 + components: + - type: Transform + pos: -127.5,54.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + pos: 7.5,73.5 + parent: 2 + - uid: 14232 + components: + - type: Transform + pos: -71.5,164.5 + parent: 2 + - uid: 14246 + components: + - type: Transform + pos: -36.5,88.5 + parent: 2 + - uid: 14247 + components: + - type: Transform + pos: -44.5,88.5 + parent: 2 + - uid: 14251 + components: + - type: Transform + pos: -46.5,90.5 + parent: 2 + - uid: 14287 + components: + - type: Transform + pos: -75.5,105.5 + parent: 2 + - uid: 14294 + components: + - type: Transform + pos: -111.5,26.5 + parent: 2 + - uid: 14299 + components: + - type: Transform + pos: -112.5,26.5 + parent: 2 + - uid: 14302 + components: + - type: Transform + pos: -113.5,26.5 + parent: 2 + - uid: 14462 + components: + - type: Transform + pos: -62.5,110.5 + parent: 2 + - uid: 14584 + components: + - type: Transform + pos: -78.5,95.5 + parent: 2 + - uid: 14596 + components: + - type: Transform + pos: -62.5,63.5 + parent: 2 + - uid: 14707 + components: + - type: Transform + pos: -8.5,164.5 + parent: 2 + - uid: 14711 + components: + - type: Transform + pos: -13.5,170.5 + parent: 2 + - uid: 14759 + components: + - type: Transform + pos: -121.5,107.5 + parent: 2 + - uid: 14838 + components: + - type: Transform + pos: -35.5,90.5 + parent: 2 + - uid: 14961 + components: + - type: Transform + pos: -79.5,99.5 + parent: 2 + - uid: 14962 + components: + - type: Transform + pos: -80.5,99.5 + parent: 2 + - uid: 14963 + components: + - type: Transform + pos: -79.5,100.5 + parent: 2 + - uid: 14964 + components: + - type: Transform + pos: -79.5,101.5 + parent: 2 + - uid: 14965 + components: + - type: Transform + pos: -81.5,99.5 + parent: 2 + - uid: 14966 + components: + - type: Transform + pos: -82.5,99.5 + parent: 2 + - uid: 14967 + components: + - type: Transform + pos: -83.5,99.5 + parent: 2 + - uid: 14969 + components: + - type: Transform + pos: -78.5,99.5 + parent: 2 + - uid: 14970 + components: + - type: Transform + pos: -77.5,99.5 + parent: 2 + - uid: 14971 + components: + - type: Transform + pos: -76.5,99.5 + parent: 2 + - uid: 14972 + components: + - type: Transform + pos: -76.5,100.5 + parent: 2 + - uid: 14973 + components: + - type: Transform + pos: -76.5,101.5 + parent: 2 + - uid: 14974 + components: + - type: Transform + pos: -76.5,102.5 + parent: 2 + - uid: 14975 + components: + - type: Transform + pos: -76.5,103.5 + parent: 2 + - uid: 14976 + components: + - type: Transform + pos: -76.5,97.5 + parent: 2 + - uid: 14977 + components: + - type: Transform + pos: -76.5,105.5 + parent: 2 + - uid: 14978 + components: + - type: Transform + pos: -76.5,98.5 + parent: 2 + - uid: 14979 + components: + - type: Transform + pos: -74.5,105.5 + parent: 2 + - uid: 14980 + components: + - type: Transform + pos: -73.5,105.5 + parent: 2 + - uid: 14981 + components: + - type: Transform + pos: -72.5,105.5 + parent: 2 + - uid: 14982 + components: + - type: Transform + pos: -77.5,105.5 + parent: 2 + - uid: 14983 + components: + - type: Transform + pos: -78.5,105.5 + parent: 2 + - uid: 14984 + components: + - type: Transform + pos: -79.5,105.5 + parent: 2 + - uid: 14985 + components: + - type: Transform + pos: -80.5,105.5 + parent: 2 + - uid: 14986 + components: + - type: Transform + pos: -78.5,104.5 + parent: 2 + - uid: 14987 + components: + - type: Transform + pos: -80.5,104.5 + parent: 2 + - uid: 14988 + components: + - type: Transform + pos: -74.5,104.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + pos: -72.5,104.5 + parent: 2 + - uid: 14990 + components: + - type: Transform + pos: -74.5,106.5 + parent: 2 + - uid: 14991 + components: + - type: Transform + pos: -74.5,107.5 + parent: 2 + - uid: 14992 + components: + - type: Transform + pos: -78.5,106.5 + parent: 2 + - uid: 14993 + components: + - type: Transform + pos: -78.5,107.5 + parent: 2 + - uid: 14994 + components: + - type: Transform + pos: -76.5,96.5 + parent: 2 + - uid: 14995 + components: + - type: Transform + pos: -76.5,95.5 + parent: 2 + - uid: 14996 + components: + - type: Transform + pos: -77.5,95.5 + parent: 2 + - uid: 15002 + components: + - type: Transform + pos: -75.5,95.5 + parent: 2 + - uid: 15003 + components: + - type: Transform + pos: -74.5,95.5 + parent: 2 + - uid: 15004 + components: + - type: Transform + pos: -73.5,95.5 + parent: 2 + - uid: 15005 + components: + - type: Transform + pos: -72.5,95.5 + parent: 2 + - uid: 15006 + components: + - type: Transform + pos: -71.5,95.5 + parent: 2 + - uid: 15007 + components: + - type: Transform + pos: -70.5,95.5 + parent: 2 + - uid: 15010 + components: + - type: Transform + pos: -69.5,95.5 + parent: 2 + - uid: 15012 + components: + - type: Transform + pos: -55.5,92.5 + parent: 2 + - uid: 15014 + components: + - type: Transform + pos: -61.5,90.5 + parent: 2 + - uid: 15016 + components: + - type: Transform + pos: -57.5,94.5 + parent: 2 + - uid: 15017 + components: + - type: Transform + pos: -58.5,94.5 + parent: 2 + - uid: 15019 + components: + - type: Transform + pos: -55.5,91.5 + parent: 2 + - uid: 15021 + components: + - type: Transform + pos: -118.5,107.5 + parent: 2 + - uid: 15024 + components: + - type: Transform + pos: -58.5,98.5 + parent: 2 + - uid: 15025 + components: + - type: Transform + pos: -59.5,98.5 + parent: 2 + - uid: 15026 + components: + - type: Transform + pos: -60.5,98.5 + parent: 2 + - uid: 15033 + components: + - type: Transform + pos: -59.5,102.5 + parent: 2 + - uid: 15034 + components: + - type: Transform + pos: -60.5,102.5 + parent: 2 + - uid: 15035 + components: + - type: Transform + pos: -61.5,102.5 + parent: 2 + - uid: 15050 + components: + - type: Transform + pos: -65.5,109.5 + parent: 2 + - uid: 15066 + components: + - type: Transform + pos: -68.5,107.5 + parent: 2 + - uid: 15067 + components: + - type: Transform + pos: -68.5,106.5 + parent: 2 + - uid: 15068 + components: + - type: Transform + pos: -67.5,106.5 + parent: 2 + - uid: 15071 + components: + - type: Transform + pos: -60.5,94.5 + parent: 2 + - uid: 15072 + components: + - type: Transform + pos: -59.5,94.5 + parent: 2 + - uid: 15074 + components: + - type: Transform + pos: -65.5,108.5 + parent: 2 + - uid: 15075 + components: + - type: Transform + pos: -66.5,106.5 + parent: 2 + - uid: 15076 + components: + - type: Transform + pos: -68.5,105.5 + parent: 2 + - uid: 15085 + components: + - type: Transform + pos: -71.5,99.5 + parent: 2 + - uid: 15086 + components: + - type: Transform + pos: -72.5,99.5 + parent: 2 + - uid: 15087 + components: + - type: Transform + pos: -70.5,94.5 + parent: 2 + - uid: 15088 + components: + - type: Transform + pos: -70.5,93.5 + parent: 2 + - uid: 15089 + components: + - type: Transform + pos: -70.5,92.5 + parent: 2 + - uid: 15090 + components: + - type: Transform + pos: -70.5,91.5 + parent: 2 + - uid: 15091 + components: + - type: Transform + pos: -69.5,91.5 + parent: 2 + - uid: 15092 + components: + - type: Transform + pos: -70.5,90.5 + parent: 2 + - uid: 15093 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 15094 + components: + - type: Transform + pos: -67.5,81.5 + parent: 2 + - uid: 15095 + components: + - type: Transform + pos: -67.5,82.5 + parent: 2 + - uid: 15096 + components: + - type: Transform + pos: -68.5,82.5 + parent: 2 + - uid: 15097 + components: + - type: Transform + pos: -69.5,82.5 + parent: 2 + - uid: 15098 + components: + - type: Transform + pos: -66.5,81.5 + parent: 2 + - uid: 15099 + components: + - type: Transform + pos: -65.5,81.5 + parent: 2 + - uid: 15100 + components: + - type: Transform + pos: -64.5,81.5 + parent: 2 + - uid: 15101 + components: + - type: Transform + pos: -63.5,81.5 + parent: 2 + - uid: 15102 + components: + - type: Transform + pos: -62.5,81.5 + parent: 2 + - uid: 15103 + components: + - type: Transform + pos: -61.5,81.5 + parent: 2 + - uid: 15104 + components: + - type: Transform + pos: -60.5,81.5 + parent: 2 + - uid: 15105 + components: + - type: Transform + pos: -60.5,82.5 + parent: 2 + - uid: 15106 + components: + - type: Transform + pos: -60.5,83.5 + parent: 2 + - uid: 15107 + components: + - type: Transform + pos: -61.5,83.5 + parent: 2 + - uid: 15108 + components: + - type: Transform + pos: -62.5,83.5 + parent: 2 + - uid: 15109 + components: + - type: Transform + pos: -63.5,83.5 + parent: 2 + - uid: 15110 + components: + - type: Transform + pos: -64.5,83.5 + parent: 2 + - uid: 15111 + components: + - type: Transform + pos: -65.5,86.5 + parent: 2 + - uid: 15112 + components: + - type: Transform + pos: -65.5,85.5 + parent: 2 + - uid: 15113 + components: + - type: Transform + pos: -65.5,84.5 + parent: 2 + - uid: 15114 + components: + - type: Transform + pos: -65.5,83.5 + parent: 2 + - uid: 15115 + components: + - type: Transform + pos: -65.5,80.5 + parent: 2 + - uid: 15116 + components: + - type: Transform + pos: -65.5,79.5 + parent: 2 + - uid: 15117 + components: + - type: Transform + pos: -65.5,78.5 + parent: 2 + - uid: 15118 + components: + - type: Transform + pos: -64.5,78.5 + parent: 2 + - uid: 15119 + components: + - type: Transform + pos: -63.5,78.5 + parent: 2 + - uid: 15120 + components: + - type: Transform + pos: -62.5,78.5 + parent: 2 + - uid: 15121 + components: + - type: Transform + pos: -61.5,78.5 + parent: 2 + - uid: 15122 + components: + - type: Transform + pos: -64.5,86.5 + parent: 2 + - uid: 15123 + components: + - type: Transform + pos: -63.5,86.5 + parent: 2 + - uid: 15124 + components: + - type: Transform + pos: -62.5,86.5 + parent: 2 + - uid: 15125 + components: + - type: Transform + pos: -61.5,86.5 + parent: 2 + - uid: 15126 + components: + - type: Transform + pos: -59.5,81.5 + parent: 2 + - uid: 15127 + components: + - type: Transform + pos: -59.5,83.5 + parent: 2 + - uid: 15130 + components: + - type: Transform + pos: -78.5,88.5 + parent: 2 + - uid: 15131 + components: + - type: Transform + pos: -77.5,88.5 + parent: 2 + - uid: 15132 + components: + - type: Transform + pos: -76.5,88.5 + parent: 2 + - uid: 15133 + components: + - type: Transform + pos: -75.5,88.5 + parent: 2 + - uid: 15134 + components: + - type: Transform + pos: -74.5,88.5 + parent: 2 + - uid: 15135 + components: + - type: Transform + pos: -73.5,88.5 + parent: 2 + - uid: 15136 + components: + - type: Transform + pos: -72.5,88.5 + parent: 2 + - uid: 15137 + components: + - type: Transform + pos: -71.5,88.5 + parent: 2 + - uid: 15138 + components: + - type: Transform + pos: -70.5,88.5 + parent: 2 + - uid: 15139 + components: + - type: Transform + pos: -70.5,87.5 + parent: 2 + - uid: 15140 + components: + - type: Transform + pos: -69.5,87.5 + parent: 2 + - uid: 15141 + components: + - type: Transform + pos: -69.5,86.5 + parent: 2 + - uid: 15142 + components: + - type: Transform + pos: -68.5,87.5 + parent: 2 + - uid: 15143 + components: + - type: Transform + pos: -69.5,85.5 + parent: 2 + - uid: 15144 + components: + - type: Transform + pos: -74.5,89.5 + parent: 2 + - uid: 15145 + components: + - type: Transform + pos: -80.5,89.5 + parent: 2 + - uid: 15146 + components: + - type: Transform + pos: -80.5,90.5 + parent: 2 + - uid: 15147 + components: + - type: Transform + pos: -80.5,91.5 + parent: 2 + - uid: 15149 + components: + - type: Transform + pos: -80.5,93.5 + parent: 2 + - uid: 15150 + components: + - type: Transform + pos: -80.5,94.5 + parent: 2 + - uid: 15151 + components: + - type: Transform + pos: -80.5,95.5 + parent: 2 + - uid: 15152 + components: + - type: Transform + pos: -81.5,95.5 + parent: 2 + - uid: 15153 + components: + - type: Transform + pos: -82.5,95.5 + parent: 2 + - uid: 15154 + components: + - type: Transform + pos: -83.5,95.5 + parent: 2 + - uid: 15155 + components: + - type: Transform + pos: -80.5,88.5 + parent: 2 + - uid: 15156 + components: + - type: Transform + pos: -80.5,87.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + pos: -80.5,86.5 + parent: 2 + - uid: 15158 + components: + - type: Transform + pos: -80.5,85.5 + parent: 2 + - uid: 15159 + components: + - type: Transform + pos: -80.5,84.5 + parent: 2 + - uid: 15160 + components: + - type: Transform + pos: -80.5,83.5 + parent: 2 + - uid: 15162 + components: + - type: Transform + pos: -70.5,76.5 + parent: 2 + - uid: 15163 + components: + - type: Transform + pos: -70.5,75.5 + parent: 2 + - uid: 15164 + components: + - type: Transform + pos: -70.5,74.5 + parent: 2 + - uid: 15165 + components: + - type: Transform + pos: -71.5,74.5 + parent: 2 + - uid: 15166 + components: + - type: Transform + pos: -72.5,74.5 + parent: 2 + - uid: 15167 + components: + - type: Transform + pos: -73.5,74.5 + parent: 2 + - uid: 15168 + components: + - type: Transform + pos: -74.5,74.5 + parent: 2 + - uid: 15169 + components: + - type: Transform + pos: -75.5,74.5 + parent: 2 + - uid: 15170 + components: + - type: Transform + pos: -76.5,74.5 + parent: 2 + - uid: 15172 + components: + - type: Transform + pos: -69.5,76.5 + parent: 2 + - uid: 15173 + components: + - type: Transform + pos: -69.5,77.5 + parent: 2 + - uid: 15174 + components: + - type: Transform + pos: -69.5,78.5 + parent: 2 + - uid: 15175 + components: + - type: Transform + pos: -70.5,78.5 + parent: 2 + - uid: 15176 + components: + - type: Transform + pos: -71.5,78.5 + parent: 2 + - uid: 15177 + components: + - type: Transform + pos: -72.5,78.5 + parent: 2 + - uid: 15178 + components: + - type: Transform + pos: -73.5,78.5 + parent: 2 + - uid: 15179 + components: + - type: Transform + pos: -74.5,78.5 + parent: 2 + - uid: 15180 + components: + - type: Transform + pos: -75.5,78.5 + parent: 2 + - uid: 15181 + components: + - type: Transform + pos: -76.5,78.5 + parent: 2 + - uid: 15182 + components: + - type: Transform + pos: -77.5,78.5 + parent: 2 + - uid: 15183 + components: + - type: Transform + pos: -75.5,79.5 + parent: 2 + - uid: 15184 + components: + - type: Transform + pos: -75.5,80.5 + parent: 2 + - uid: 15185 + components: + - type: Transform + pos: -75.5,81.5 + parent: 2 + - uid: 15186 + components: + - type: Transform + pos: -75.5,82.5 + parent: 2 + - uid: 15187 + components: + - type: Transform + pos: -75.5,83.5 + parent: 2 + - uid: 15188 + components: + - type: Transform + pos: -75.5,84.5 + parent: 2 + - uid: 15189 + components: + - type: Transform + pos: -75.5,85.5 + parent: 2 + - uid: 15190 + components: + - type: Transform + pos: -75.5,86.5 + parent: 2 + - uid: 15191 + components: + - type: Transform + pos: -76.5,83.5 + parent: 2 + - uid: 15192 + components: + - type: Transform + pos: -77.5,83.5 + parent: 2 + - uid: 15193 + components: + - type: Transform + pos: -78.5,83.5 + parent: 2 + - uid: 15194 + components: + - type: Transform + pos: -74.5,83.5 + parent: 2 + - uid: 15195 + components: + - type: Transform + pos: -73.5,83.5 + parent: 2 + - uid: 15196 + components: + - type: Transform + pos: -72.5,83.5 + parent: 2 + - uid: 15197 + components: + - type: Transform + pos: -76.5,85.5 + parent: 2 + - uid: 15198 + components: + - type: Transform + pos: -77.5,85.5 + parent: 2 + - uid: 15199 + components: + - type: Transform + pos: -78.5,85.5 + parent: 2 + - uid: 15200 + components: + - type: Transform + pos: -74.5,85.5 + parent: 2 + - uid: 15201 + components: + - type: Transform + pos: -73.5,85.5 + parent: 2 + - uid: 15202 + components: + - type: Transform + pos: -72.5,85.5 + parent: 2 + - uid: 15203 + components: + - type: Transform + pos: -76.5,81.5 + parent: 2 + - uid: 15204 + components: + - type: Transform + pos: -77.5,81.5 + parent: 2 + - uid: 15205 + components: + - type: Transform + pos: -78.5,81.5 + parent: 2 + - uid: 15206 + components: + - type: Transform + pos: -74.5,81.5 + parent: 2 + - uid: 15207 + components: + - type: Transform + pos: -73.5,81.5 + parent: 2 + - uid: 15208 + components: + - type: Transform + pos: -72.5,81.5 + parent: 2 + - uid: 15335 + components: + - type: Transform + pos: -17.5,169.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + pos: -106.5,24.5 + parent: 2 + - uid: 15346 + components: + - type: Transform + pos: -106.5,102.5 + parent: 2 + - uid: 15383 + components: + - type: Transform + pos: -59.5,80.5 + parent: 2 + - uid: 15396 + components: + - type: Transform + pos: -9.5,168.5 + parent: 2 + - uid: 15405 + components: + - type: Transform + pos: -67.5,67.5 + parent: 2 + - uid: 15424 + components: + - type: Transform + pos: -106.5,101.5 + parent: 2 + - uid: 15429 + components: + - type: Transform + pos: -55.5,66.5 + parent: 2 + - uid: 15430 + components: + - type: Transform + pos: -54.5,66.5 + parent: 2 + - uid: 15431 + components: + - type: Transform + pos: -54.5,67.5 + parent: 2 + - uid: 15432 + components: + - type: Transform + pos: -54.5,68.5 + parent: 2 + - uid: 15433 + components: + - type: Transform + pos: -54.5,69.5 + parent: 2 + - uid: 15434 + components: + - type: Transform + pos: -54.5,70.5 + parent: 2 + - uid: 15435 + components: + - type: Transform + pos: -54.5,65.5 + parent: 2 + - uid: 15436 + components: + - type: Transform + pos: -54.5,64.5 + parent: 2 + - uid: 15437 + components: + - type: Transform + pos: -54.5,63.5 + parent: 2 + - uid: 15438 + components: + - type: Transform + pos: -53.5,63.5 + parent: 2 + - uid: 15439 + components: + - type: Transform + pos: -56.5,66.5 + parent: 2 + - uid: 15440 + components: + - type: Transform + pos: -57.5,66.5 + parent: 2 + - uid: 15441 + components: + - type: Transform + pos: -58.5,66.5 + parent: 2 + - uid: 15442 + components: + - type: Transform + pos: -59.5,66.5 + parent: 2 + - uid: 15443 + components: + - type: Transform + pos: -59.5,67.5 + parent: 2 + - uid: 15444 + components: + - type: Transform + pos: -59.5,68.5 + parent: 2 + - uid: 15445 + components: + - type: Transform + pos: -59.5,69.5 + parent: 2 + - uid: 15446 + components: + - type: Transform + pos: -59.5,70.5 + parent: 2 + - uid: 15447 + components: + - type: Transform + pos: -59.5,71.5 + parent: 2 + - uid: 15448 + components: + - type: Transform + pos: -59.5,72.5 + parent: 2 + - uid: 15449 + components: + - type: Transform + pos: -58.5,72.5 + parent: 2 + - uid: 15450 + components: + - type: Transform + pos: -57.5,72.5 + parent: 2 + - uid: 15451 + components: + - type: Transform + pos: -60.5,72.5 + parent: 2 + - uid: 15452 + components: + - type: Transform + pos: -61.5,72.5 + parent: 2 + - uid: 15453 + components: + - type: Transform + pos: -59.5,65.5 + parent: 2 + - uid: 15454 + components: + - type: Transform + pos: -59.5,64.5 + parent: 2 + - uid: 15455 + components: + - type: Transform + pos: -59.5,63.5 + parent: 2 + - uid: 15456 + components: + - type: Transform + pos: -58.5,63.5 + parent: 2 + - uid: 15457 + components: + - type: Transform + pos: -57.5,63.5 + parent: 2 + - uid: 15458 + components: + - type: Transform + pos: -60.5,63.5 + parent: 2 + - uid: 15459 + components: + - type: Transform + pos: -61.5,63.5 + parent: 2 + - uid: 15460 + components: + - type: Transform + pos: -59.5,62.5 + parent: 2 + - uid: 15461 + components: + - type: Transform + pos: -60.5,62.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + pos: -61.5,62.5 + parent: 2 + - uid: 15463 + components: + - type: Transform + pos: -62.5,62.5 + parent: 2 + - uid: 15470 + components: + - type: Transform + pos: -40.5,61.5 + parent: 2 + - uid: 15492 + components: + - type: Transform + pos: -31.5,66.5 + parent: 2 + - uid: 15493 + components: + - type: Transform + pos: -32.5,66.5 + parent: 2 + - uid: 15495 + components: + - type: Transform + pos: -33.5,66.5 + parent: 2 + - uid: 15513 + components: + - type: Transform + pos: -120.5,58.5 + parent: 2 + - uid: 15538 + components: + - type: Transform + pos: 2.5,174.5 + parent: 2 + - uid: 15543 + components: + - type: Transform + pos: 7.5,174.5 + parent: 2 + - uid: 15545 + components: + - type: Transform + pos: 3.5,174.5 + parent: 2 + - uid: 15546 + components: + - type: Transform + pos: 1.5,174.5 + parent: 2 + - uid: 15577 + components: + - type: Transform + pos: -128.5,47.5 + parent: 2 + - uid: 15601 + components: + - type: Transform + pos: -106.5,103.5 + parent: 2 + - uid: 15618 + components: + - type: Transform + pos: -79.5,143.5 + parent: 2 + - uid: 15625 + components: + - type: Transform + pos: -119.5,107.5 + parent: 2 + - uid: 15626 + components: + - type: Transform + pos: -120.5,107.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + pos: -118.5,105.5 + parent: 2 + - uid: 15634 + components: + - type: Transform + pos: -119.5,105.5 + parent: 2 + - uid: 15639 + components: + - type: Transform + pos: -129.5,101.5 + parent: 2 + - uid: 15885 + components: + - type: Transform + pos: -67.5,109.5 + parent: 2 + - uid: 15895 + components: + - type: Transform + pos: -53.5,74.5 + parent: 2 + - uid: 15896 + components: + - type: Transform + pos: -52.5,73.5 + parent: 2 + - uid: 15897 + components: + - type: Transform + pos: -51.5,73.5 + parent: 2 + - uid: 15898 + components: + - type: Transform + pos: -50.5,73.5 + parent: 2 + - uid: 15899 + components: + - type: Transform + pos: -49.5,73.5 + parent: 2 + - uid: 15900 + components: + - type: Transform + pos: -47.5,73.5 + parent: 2 + - uid: 15901 + components: + - type: Transform + pos: -47.5,71.5 + parent: 2 + - uid: 15902 + components: + - type: Transform + pos: -47.5,72.5 + parent: 2 + - uid: 15903 + components: + - type: Transform + pos: -46.5,71.5 + parent: 2 + - uid: 15904 + components: + - type: Transform + pos: -46.5,70.5 + parent: 2 + - uid: 15905 + components: + - type: Transform + pos: -46.5,69.5 + parent: 2 + - uid: 15906 + components: + - type: Transform + pos: -50.5,72.5 + parent: 2 + - uid: 15907 + components: + - type: Transform + pos: -50.5,71.5 + parent: 2 + - uid: 15908 + components: + - type: Transform + pos: -50.5,70.5 + parent: 2 + - uid: 15909 + components: + - type: Transform + pos: -51.5,70.5 + parent: 2 + - uid: 15910 + components: + - type: Transform + pos: -51.5,69.5 + parent: 2 + - uid: 15911 + components: + - type: Transform + pos: -51.5,68.5 + parent: 2 + - uid: 15912 + components: + - type: Transform + pos: -51.5,67.5 + parent: 2 + - uid: 15913 + components: + - type: Transform + pos: -51.5,66.5 + parent: 2 + - uid: 15914 + components: + - type: Transform + pos: -50.5,66.5 + parent: 2 + - uid: 15915 + components: + - type: Transform + pos: -50.5,65.5 + parent: 2 + - uid: 15916 + components: + - type: Transform + pos: -50.5,64.5 + parent: 2 + - uid: 15917 + components: + - type: Transform + pos: -50.5,63.5 + parent: 2 + - uid: 15918 + components: + - type: Transform + pos: -50.5,62.5 + parent: 2 + - uid: 15919 + components: + - type: Transform + pos: -50.5,61.5 + parent: 2 + - uid: 15920 + components: + - type: Transform + pos: -50.5,60.5 + parent: 2 + - uid: 15921 + components: + - type: Transform + pos: -50.5,59.5 + parent: 2 + - uid: 15922 + components: + - type: Transform + pos: -50.5,58.5 + parent: 2 + - uid: 15923 + components: + - type: Transform + pos: -50.5,57.5 + parent: 2 + - uid: 15924 + components: + - type: Transform + pos: -50.5,56.5 + parent: 2 + - uid: 15925 + components: + - type: Transform + pos: -49.5,61.5 + parent: 2 + - uid: 15926 + components: + - type: Transform + pos: -48.5,61.5 + parent: 2 + - uid: 15927 + components: + - type: Transform + pos: -47.5,61.5 + parent: 2 + - uid: 15928 + components: + - type: Transform + pos: -46.5,61.5 + parent: 2 + - uid: 15929 + components: + - type: Transform + pos: -45.5,61.5 + parent: 2 + - uid: 15930 + components: + - type: Transform + pos: -45.5,60.5 + parent: 2 + - uid: 15935 + components: + - type: Transform + pos: -44.5,61.5 + parent: 2 + - uid: 15936 + components: + - type: Transform + pos: -44.5,62.5 + parent: 2 + - uid: 15937 + components: + - type: Transform + pos: -43.5,62.5 + parent: 2 + - uid: 15938 + components: + - type: Transform + pos: -42.5,62.5 + parent: 2 + - uid: 15939 + components: + - type: Transform + pos: -41.5,62.5 + parent: 2 + - uid: 15940 + components: + - type: Transform + pos: -40.5,62.5 + parent: 2 + - uid: 15941 + components: + - type: Transform + pos: -39.5,62.5 + parent: 2 + - uid: 15942 + components: + - type: Transform + pos: -38.5,62.5 + parent: 2 + - uid: 15943 + components: + - type: Transform + pos: -37.5,62.5 + parent: 2 + - uid: 15944 + components: + - type: Transform + pos: -36.5,62.5 + parent: 2 + - uid: 15945 + components: + - type: Transform + pos: -35.5,62.5 + parent: 2 + - uid: 15946 + components: + - type: Transform + pos: -53.5,75.5 + parent: 2 + - uid: 15947 + components: + - type: Transform + pos: -54.5,75.5 + parent: 2 + - uid: 15948 + components: + - type: Transform + pos: -53.5,76.5 + parent: 2 + - uid: 15949 + components: + - type: Transform + pos: -53.5,77.5 + parent: 2 + - uid: 15950 + components: + - type: Transform + pos: -53.5,78.5 + parent: 2 + - uid: 15951 + components: + - type: Transform + pos: -53.5,79.5 + parent: 2 + - uid: 15952 + components: + - type: Transform + pos: -53.5,80.5 + parent: 2 + - uid: 15953 + components: + - type: Transform + pos: -53.5,81.5 + parent: 2 + - uid: 15954 + components: + - type: Transform + pos: -53.5,82.5 + parent: 2 + - uid: 15955 + components: + - type: Transform + pos: -53.5,83.5 + parent: 2 + - uid: 15956 + components: + - type: Transform + pos: -53.5,84.5 + parent: 2 + - uid: 15957 + components: + - type: Transform + pos: -53.5,85.5 + parent: 2 + - uid: 15958 + components: + - type: Transform + pos: -53.5,86.5 + parent: 2 + - uid: 15959 + components: + - type: Transform + pos: -53.5,87.5 + parent: 2 + - uid: 15960 + components: + - type: Transform + pos: -52.5,81.5 + parent: 2 + - uid: 15961 + components: + - type: Transform + pos: -51.5,81.5 + parent: 2 + - uid: 15962 + components: + - type: Transform + pos: -50.5,81.5 + parent: 2 + - uid: 15963 + components: + - type: Transform + pos: -49.5,81.5 + parent: 2 + - uid: 15964 + components: + - type: Transform + pos: -48.5,81.5 + parent: 2 + - uid: 15966 + components: + - type: Transform + pos: -28.5,74.5 + parent: 2 + - uid: 15967 + components: + - type: Transform + pos: -28.5,73.5 + parent: 2 + - uid: 15968 + components: + - type: Transform + pos: -29.5,73.5 + parent: 2 + - uid: 15969 + components: + - type: Transform + pos: -30.5,73.5 + parent: 2 + - uid: 15970 + components: + - type: Transform + pos: -31.5,73.5 + parent: 2 + - uid: 15971 + components: + - type: Transform + pos: -32.5,73.5 + parent: 2 + - uid: 15972 + components: + - type: Transform + pos: -33.5,73.5 + parent: 2 + - uid: 15973 + components: + - type: Transform + pos: -33.5,72.5 + parent: 2 + - uid: 15974 + components: + - type: Transform + pos: -33.5,71.5 + parent: 2 + - uid: 15975 + components: + - type: Transform + pos: -116.5,20.5 + parent: 2 + - uid: 15976 + components: + - type: Transform + pos: -33.5,69.5 + parent: 2 + - uid: 15977 + components: + - type: Transform + pos: -34.5,70.5 + parent: 2 + - uid: 15979 + components: + - type: Transform + pos: -35.5,69.5 + parent: 2 + - uid: 15980 + components: + - type: Transform + pos: -36.5,68.5 + parent: 2 + - uid: 15981 + components: + - type: Transform + pos: -36.5,69.5 + parent: 2 + - uid: 15982 + components: + - type: Transform + pos: -36.5,67.5 + parent: 2 + - uid: 15983 + components: + - type: Transform + pos: -27.5,74.5 + parent: 2 + - uid: 15984 + components: + - type: Transform + pos: -26.5,74.5 + parent: 2 + - uid: 15985 + components: + - type: Transform + pos: -26.5,75.5 + parent: 2 + - uid: 15986 + components: + - type: Transform + pos: -26.5,76.5 + parent: 2 + - uid: 15987 + components: + - type: Transform + pos: -26.5,77.5 + parent: 2 + - uid: 15988 + components: + - type: Transform + pos: -26.5,78.5 + parent: 2 + - uid: 15989 + components: + - type: Transform + pos: -26.5,79.5 + parent: 2 + - uid: 15990 + components: + - type: Transform + pos: -26.5,80.5 + parent: 2 + - uid: 15991 + components: + - type: Transform + pos: -27.5,80.5 + parent: 2 + - uid: 15992 + components: + - type: Transform + pos: -27.5,81.5 + parent: 2 + - uid: 15993 + components: + - type: Transform + pos: -28.5,81.5 + parent: 2 + - uid: 15994 + components: + - type: Transform + pos: -29.5,81.5 + parent: 2 + - uid: 15995 + components: + - type: Transform + pos: -30.5,81.5 + parent: 2 + - uid: 15996 + components: + - type: Transform + pos: -31.5,81.5 + parent: 2 + - uid: 15997 + components: + - type: Transform + pos: -32.5,81.5 + parent: 2 + - uid: 15998 + components: + - type: Transform + pos: -27.5,82.5 + parent: 2 + - uid: 15999 + components: + - type: Transform + pos: -27.5,83.5 + parent: 2 + - uid: 16000 + components: + - type: Transform + pos: -27.5,84.5 + parent: 2 + - uid: 16001 + components: + - type: Transform + pos: -27.5,85.5 + parent: 2 + - uid: 16002 + components: + - type: Transform + pos: -27.5,86.5 + parent: 2 + - uid: 16003 + components: + - type: Transform + pos: -27.5,87.5 + parent: 2 + - uid: 16004 + components: + - type: Transform + pos: -0.5,82.5 + parent: 2 + - uid: 16005 + components: + - type: Transform + pos: -0.5,81.5 + parent: 2 + - uid: 16006 + components: + - type: Transform + pos: -0.5,80.5 + parent: 2 + - uid: 16007 + components: + - type: Transform + pos: -0.5,79.5 + parent: 2 + - uid: 16008 + components: + - type: Transform + pos: -0.5,78.5 + parent: 2 + - uid: 16009 + components: + - type: Transform + pos: -0.5,77.5 + parent: 2 + - uid: 16010 + components: + - type: Transform + pos: -0.5,76.5 + parent: 2 + - uid: 16011 + components: + - type: Transform + pos: -0.5,75.5 + parent: 2 + - uid: 16012 + components: + - type: Transform + pos: -0.5,74.5 + parent: 2 + - uid: 16013 + components: + - type: Transform + pos: -1.5,74.5 + parent: 2 + - uid: 16014 + components: + - type: Transform + pos: -2.5,74.5 + parent: 2 + - uid: 16015 + components: + - type: Transform + pos: -2.5,75.5 + parent: 2 + - uid: 16016 + components: + - type: Transform + pos: -2.5,76.5 + parent: 2 + - uid: 16017 + components: + - type: Transform + pos: -2.5,77.5 + parent: 2 + - uid: 16018 + components: + - type: Transform + pos: -2.5,78.5 + parent: 2 + - uid: 16019 + components: + - type: Transform + pos: -2.5,79.5 + parent: 2 + - uid: 16020 + components: + - type: Transform + pos: -2.5,80.5 + parent: 2 + - uid: 16021 + components: + - type: Transform + pos: -2.5,81.5 + parent: 2 + - uid: 16022 + components: + - type: Transform + pos: -1.5,81.5 + parent: 2 + - uid: 16023 + components: + - type: Transform + pos: -3.5,81.5 + parent: 2 + - uid: 16024 + components: + - type: Transform + pos: -3.5,74.5 + parent: 2 + - uid: 16025 + components: + - type: Transform + pos: -4.5,74.5 + parent: 2 + - uid: 16026 + components: + - type: Transform + pos: -5.5,74.5 + parent: 2 + - uid: 16027 + components: + - type: Transform + pos: -4.5,81.5 + parent: 2 + - uid: 16028 + components: + - type: Transform + pos: -5.5,81.5 + parent: 2 + - uid: 16030 + components: + - type: Transform + pos: -0.5,83.5 + parent: 2 + - uid: 16031 + components: + - type: Transform + pos: -0.5,84.5 + parent: 2 + - uid: 16032 + components: + - type: Transform + pos: -0.5,85.5 + parent: 2 + - uid: 16033 + components: + - type: Transform + pos: -1.5,85.5 + parent: 2 + - uid: 16034 + components: + - type: Transform + pos: -2.5,85.5 + parent: 2 + - uid: 16035 + components: + - type: Transform + pos: -3.5,85.5 + parent: 2 + - uid: 16036 + components: + - type: Transform + pos: -4.5,85.5 + parent: 2 + - uid: 16037 + components: + - type: Transform + pos: -5.5,85.5 + parent: 2 + - uid: 16038 + components: + - type: Transform + pos: -6.5,85.5 + parent: 2 + - uid: 16039 + components: + - type: Transform + pos: -6.5,84.5 + parent: 2 + - uid: 16040 + components: + - type: Transform + pos: -6.5,83.5 + parent: 2 + - uid: 16041 + components: + - type: Transform + pos: -6.5,82.5 + parent: 2 + - uid: 16042 + components: + - type: Transform + pos: -5.5,80.5 + parent: 2 + - uid: 16043 + components: + - type: Transform + pos: -5.5,79.5 + parent: 2 + - uid: 16044 + components: + - type: Transform + pos: -4.5,79.5 + parent: 2 + - uid: 16046 + components: + - type: Transform + pos: -14.5,87.5 + parent: 2 + - uid: 16047 + components: + - type: Transform + pos: -13.5,87.5 + parent: 2 + - uid: 16048 + components: + - type: Transform + pos: -13.5,88.5 + parent: 2 + - uid: 16053 + components: + - type: Transform + pos: -12.5,88.5 + parent: 2 + - uid: 16054 + components: + - type: Transform + pos: -11.5,88.5 + parent: 2 + - uid: 16055 + components: + - type: Transform + pos: -10.5,88.5 + parent: 2 + - uid: 16056 + components: + - type: Transform + pos: -9.5,88.5 + parent: 2 + - uid: 16057 + components: + - type: Transform + pos: -8.5,88.5 + parent: 2 + - uid: 16058 + components: + - type: Transform + pos: -7.5,88.5 + parent: 2 + - uid: 16059 + components: + - type: Transform + pos: -6.5,88.5 + parent: 2 + - uid: 16060 + components: + - type: Transform + pos: -5.5,88.5 + parent: 2 + - uid: 16061 + components: + - type: Transform + pos: -4.5,88.5 + parent: 2 + - uid: 16062 + components: + - type: Transform + pos: -3.5,88.5 + parent: 2 + - uid: 16063 + components: + - type: Transform + pos: -2.5,88.5 + parent: 2 + - uid: 16065 + components: + - type: Transform + pos: -0.5,88.5 + parent: 2 + - uid: 16066 + components: + - type: Transform + pos: 0.5,88.5 + parent: 2 + - uid: 16067 + components: + - type: Transform + pos: 4.5,73.5 + parent: 2 + - uid: 16073 + components: + - type: Transform + pos: 3.5,72.5 + parent: 2 + - uid: 16074 + components: + - type: Transform + pos: 4.5,71.5 + parent: 2 + - uid: 16092 + components: + - type: Transform + pos: -15.5,87.5 + parent: 2 + - uid: 16093 + components: + - type: Transform + pos: -16.5,87.5 + parent: 2 + - uid: 16094 + components: + - type: Transform + pos: -16.5,86.5 + parent: 2 + - uid: 16095 + components: + - type: Transform + pos: -16.5,85.5 + parent: 2 + - uid: 16096 + components: + - type: Transform + pos: -16.5,84.5 + parent: 2 + - uid: 16097 + components: + - type: Transform + pos: -16.5,83.5 + parent: 2 + - uid: 16098 + components: + - type: Transform + pos: -16.5,82.5 + parent: 2 + - uid: 16099 + components: + - type: Transform + pos: -16.5,81.5 + parent: 2 + - uid: 16100 + components: + - type: Transform + pos: -16.5,80.5 + parent: 2 + - uid: 16101 + components: + - type: Transform + pos: -16.5,79.5 + parent: 2 + - uid: 16102 + components: + - type: Transform + pos: -16.5,78.5 + parent: 2 + - uid: 16103 + components: + - type: Transform + pos: -17.5,78.5 + parent: 2 + - uid: 16104 + components: + - type: Transform + pos: -18.5,78.5 + parent: 2 + - uid: 16105 + components: + - type: Transform + pos: -19.5,78.5 + parent: 2 + - uid: 16106 + components: + - type: Transform + pos: -17.5,83.5 + parent: 2 + - uid: 16107 + components: + - type: Transform + pos: -18.5,83.5 + parent: 2 + - uid: 16108 + components: + - type: Transform + pos: -19.5,83.5 + parent: 2 + - uid: 16109 + components: + - type: Transform + pos: -19.5,82.5 + parent: 2 + - uid: 16110 + components: + - type: Transform + pos: -20.5,82.5 + parent: 2 + - uid: 16111 + components: + - type: Transform + pos: -15.5,82.5 + parent: 2 + - uid: 16112 + components: + - type: Transform + pos: -14.5,82.5 + parent: 2 + - uid: 16113 + components: + - type: Transform + pos: -13.5,82.5 + parent: 2 + - uid: 16114 + components: + - type: Transform + pos: -12.5,82.5 + parent: 2 + - uid: 16115 + components: + - type: Transform + pos: -12.5,81.5 + parent: 2 + - uid: 16116 + components: + - type: Transform + pos: -12.5,80.5 + parent: 2 + - uid: 16117 + components: + - type: Transform + pos: -12.5,79.5 + parent: 2 + - uid: 16118 + components: + - type: Transform + pos: -12.5,78.5 + parent: 2 + - uid: 16119 + components: + - type: Transform + pos: -12.5,77.5 + parent: 2 + - uid: 16120 + components: + - type: Transform + pos: -11.5,77.5 + parent: 2 + - uid: 16121 + components: + - type: Transform + pos: -10.5,77.5 + parent: 2 + - uid: 16122 + components: + - type: Transform + pos: -10.5,78.5 + parent: 2 + - uid: 16123 + components: + - type: Transform + pos: -10.5,79.5 + parent: 2 + - uid: 16124 + components: + - type: Transform + pos: -10.5,80.5 + parent: 2 + - uid: 16125 + components: + - type: Transform + pos: -10.5,81.5 + parent: 2 + - uid: 16126 + components: + - type: Transform + pos: -10.5,82.5 + parent: 2 + - uid: 16127 + components: + - type: Transform + pos: -10.5,83.5 + parent: 2 + - uid: 16128 + components: + - type: Transform + pos: -11.5,83.5 + parent: 2 + - uid: 16129 + components: + - type: Transform + pos: -12.5,83.5 + parent: 2 + - uid: 16138 + components: + - type: Transform + pos: 2.5,71.5 + parent: 2 + - uid: 16139 + components: + - type: Transform + pos: 1.5,71.5 + parent: 2 + - uid: 16140 + components: + - type: Transform + pos: 0.5,71.5 + parent: 2 + - uid: 16141 + components: + - type: Transform + pos: -0.5,71.5 + parent: 2 + - uid: 16142 + components: + - type: Transform + pos: -1.5,71.5 + parent: 2 + - uid: 16143 + components: + - type: Transform + pos: -2.5,71.5 + parent: 2 + - uid: 16144 + components: + - type: Transform + pos: -3.5,71.5 + parent: 2 + - uid: 16145 + components: + - type: Transform + pos: -4.5,71.5 + parent: 2 + - uid: 16146 + components: + - type: Transform + pos: -5.5,71.5 + parent: 2 + - uid: 16147 + components: + - type: Transform + pos: 2.5,73.5 + parent: 2 + - uid: 16148 + components: + - type: Transform + pos: 2.5,74.5 + parent: 2 + - uid: 16149 + components: + - type: Transform + pos: 2.5,75.5 + parent: 2 + - uid: 16150 + components: + - type: Transform + pos: 2.5,76.5 + parent: 2 + - uid: 16151 + components: + - type: Transform + pos: 2.5,77.5 + parent: 2 + - uid: 16152 + components: + - type: Transform + pos: 2.5,78.5 + parent: 2 + - uid: 16153 + components: + - type: Transform + pos: 2.5,79.5 + parent: 2 + - uid: 16154 + components: + - type: Transform + pos: 2.5,80.5 + parent: 2 + - uid: 16155 + components: + - type: Transform + pos: 2.5,81.5 + parent: 2 + - uid: 16156 + components: + - type: Transform + pos: 2.5,82.5 + parent: 2 + - uid: 16157 + components: + - type: Transform + pos: 2.5,83.5 + parent: 2 + - uid: 16158 + components: + - type: Transform + pos: 2.5,84.5 + parent: 2 + - uid: 16159 + components: + - type: Transform + pos: 2.5,85.5 + parent: 2 + - uid: 16160 + components: + - type: Transform + pos: 2.5,86.5 + parent: 2 + - uid: 16161 + components: + - type: Transform + pos: 2.5,87.5 + parent: 2 + - uid: 16162 + components: + - type: Transform + pos: 2.5,88.5 + parent: 2 + - uid: 16442 + components: + - type: Transform + pos: -40.5,60.5 + parent: 2 + - uid: 16443 + components: + - type: Transform + pos: -41.5,59.5 + parent: 2 + - uid: 16444 + components: + - type: Transform + pos: -40.5,59.5 + parent: 2 + - uid: 16445 + components: + - type: Transform + pos: -39.5,59.5 + parent: 2 + - uid: 16446 + components: + - type: Transform + pos: -38.5,59.5 + parent: 2 + - uid: 16447 + components: + - type: Transform + pos: -37.5,59.5 + parent: 2 + - uid: 16448 + components: + - type: Transform + pos: -36.5,59.5 + parent: 2 + - uid: 16449 + components: + - type: Transform + pos: -36.5,58.5 + parent: 2 + - uid: 16450 + components: + - type: Transform + pos: -42.5,59.5 + parent: 2 + - uid: 16451 + components: + - type: Transform + pos: -42.5,58.5 + parent: 2 + - uid: 16452 + components: + - type: Transform + pos: -39.5,58.5 + parent: 2 + - uid: 16473 + components: + - type: Transform + pos: -43.5,108.5 + parent: 2 + - uid: 16566 + components: + - type: Transform + pos: -45.5,102.5 + parent: 2 + - uid: 16567 + components: + - type: Transform + pos: -45.5,101.5 + parent: 2 + - uid: 16568 + components: + - type: Transform + pos: -45.5,100.5 + parent: 2 + - uid: 16569 + components: + - type: Transform + pos: -45.5,99.5 + parent: 2 + - uid: 16573 + components: + - type: Transform + pos: -35.5,100.5 + parent: 2 + - uid: 16590 + components: + - type: Transform + pos: -35.5,99.5 + parent: 2 + - uid: 16591 + components: + - type: Transform + pos: -36.5,99.5 + parent: 2 + - uid: 16592 + components: + - type: Transform + pos: -37.5,99.5 + parent: 2 + - uid: 16594 + components: + - type: Transform + pos: -42.5,99.5 + parent: 2 + - uid: 16595 + components: + - type: Transform + pos: -43.5,99.5 + parent: 2 + - uid: 16596 + components: + - type: Transform + pos: -44.5,99.5 + parent: 2 + - uid: 16597 + components: + - type: Transform + pos: -35.5,106.5 + parent: 2 + - uid: 16598 + components: + - type: Transform + pos: -36.5,106.5 + parent: 2 + - uid: 16599 + components: + - type: Transform + pos: -37.5,106.5 + parent: 2 + - uid: 16600 + components: + - type: Transform + pos: -38.5,106.5 + parent: 2 + - uid: 16601 + components: + - type: Transform + pos: -39.5,106.5 + parent: 2 + - uid: 16602 + components: + - type: Transform + pos: -40.5,106.5 + parent: 2 + - uid: 16603 + components: + - type: Transform + pos: -41.5,106.5 + parent: 2 + - uid: 16604 + components: + - type: Transform + pos: -42.5,106.5 + parent: 2 + - uid: 16605 + components: + - type: Transform + pos: -43.5,106.5 + parent: 2 + - uid: 16606 + components: + - type: Transform + pos: -43.5,105.5 + parent: 2 + - uid: 16607 + components: + - type: Transform + pos: -43.5,104.5 + parent: 2 + - uid: 16608 + components: + - type: Transform + pos: -42.5,104.5 + parent: 2 + - uid: 16609 + components: + - type: Transform + pos: -41.5,104.5 + parent: 2 + - uid: 16610 + components: + - type: Transform + pos: -40.5,104.5 + parent: 2 + - uid: 16611 + components: + - type: Transform + pos: -39.5,104.5 + parent: 2 + - uid: 16612 + components: + - type: Transform + pos: -38.5,104.5 + parent: 2 + - uid: 16613 + components: + - type: Transform + pos: -37.5,104.5 + parent: 2 + - uid: 16614 + components: + - type: Transform + pos: -43.5,107.5 + parent: 2 + - uid: 16615 + components: + - type: Transform + pos: -42.5,108.5 + parent: 2 + - uid: 16616 + components: + - type: Transform + pos: -41.5,108.5 + parent: 2 + - uid: 16617 + components: + - type: Transform + pos: -40.5,108.5 + parent: 2 + - uid: 16618 + components: + - type: Transform + pos: -39.5,108.5 + parent: 2 + - uid: 16619 + components: + - type: Transform + pos: -38.5,108.5 + parent: 2 + - uid: 16620 + components: + - type: Transform + pos: -37.5,108.5 + parent: 2 + - uid: 16622 + components: + - type: Transform + pos: -44.5,105.5 + parent: 2 + - uid: 16623 + components: + - type: Transform + pos: -44.5,107.5 + parent: 2 + - uid: 16624 + components: + - type: Transform + pos: -36.5,104.5 + parent: 2 + - uid: 16625 + components: + - type: Transform + pos: -36.5,108.5 + parent: 2 + - uid: 16626 + components: + - type: Transform + pos: -40.5,103.5 + parent: 2 + - uid: 16627 + components: + - type: Transform + pos: -40.5,102.5 + parent: 2 + - uid: 16629 + components: + - type: Transform + pos: -41.5,99.5 + parent: 2 + - uid: 16630 + components: + - type: Transform + pos: -40.5,99.5 + parent: 2 + - uid: 16631 + components: + - type: Transform + pos: -40.5,98.5 + parent: 2 + - uid: 16632 + components: + - type: Transform + pos: -40.5,97.5 + parent: 2 + - uid: 16633 + components: + - type: Transform + pos: -40.5,96.5 + parent: 2 + - uid: 16634 + components: + - type: Transform + pos: -40.5,95.5 + parent: 2 + - uid: 16635 + components: + - type: Transform + pos: -40.5,94.5 + parent: 2 + - uid: 16636 + components: + - type: Transform + pos: -40.5,93.5 + parent: 2 + - uid: 16637 + components: + - type: Transform + pos: -40.5,92.5 + parent: 2 + - uid: 16663 + components: + - type: Transform + pos: -29.5,102.5 + parent: 2 + - uid: 16682 + components: + - type: Transform + pos: -45.5,107.5 + parent: 2 + - uid: 16683 + components: + - type: Transform + pos: -46.5,107.5 + parent: 2 + - uid: 16684 + components: + - type: Transform + pos: -47.5,107.5 + parent: 2 + - uid: 16687 + components: + - type: Transform + pos: -35.5,108.5 + parent: 2 + - uid: 16688 + components: + - type: Transform + pos: -34.5,108.5 + parent: 2 + - uid: 16689 + components: + - type: Transform + pos: -34.5,107.5 + parent: 2 + - uid: 16690 + components: + - type: Transform + pos: -33.5,107.5 + parent: 2 + - uid: 16877 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 13386 + - uid: 16878 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 13386 + - uid: 16879 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 13386 + - uid: 16881 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 13386 + - uid: 16882 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 13386 + - uid: 16883 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 13386 + - uid: 16885 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 13386 + - uid: 16886 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 13386 + - uid: 16887 + components: + - type: Transform + pos: -0.5,0.5 + parent: 13386 + - uid: 16888 + components: + - type: Transform + pos: -1.5,0.5 + parent: 13386 + - uid: 16889 + components: + - type: Transform + pos: -2.5,0.5 + parent: 13386 + - uid: 16890 + components: + - type: Transform + pos: -3.5,0.5 + parent: 13386 + - uid: 16894 + components: + - type: Transform + pos: 0.5,0.5 + parent: 13386 + - uid: 16896 + components: + - type: Transform + pos: 1.5,0.5 + parent: 13386 + - uid: 16897 + components: + - type: Transform + pos: 2.5,0.5 + parent: 13386 + - uid: 16898 + components: + - type: Transform + pos: 3.5,0.5 + parent: 13386 + - uid: 16899 + components: + - type: Transform + pos: -1.5,1.5 + parent: 13386 + - uid: 16901 + components: + - type: Transform + pos: -1.5,2.5 + parent: 13386 + - uid: 16902 + components: + - type: Transform + pos: -21.5,100.5 + parent: 2 + - uid: 16903 + components: + - type: Transform + pos: -1.5,3.5 + parent: 13386 + - uid: 16906 + components: + - type: Transform + pos: -1.5,4.5 + parent: 13386 + - uid: 16907 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 13386 + - uid: 16908 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 13386 + - uid: 16909 + components: + - type: Transform + pos: 1.5,1.5 + parent: 13386 + - uid: 16910 + components: + - type: Transform + pos: 1.5,2.5 + parent: 13386 + - uid: 16911 + components: + - type: Transform + pos: 1.5,3.5 + parent: 13386 + - uid: 16912 + components: + - type: Transform + pos: 2.5,3.5 + parent: 13386 + - uid: 16915 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 13386 + - uid: 16916 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 13386 + - uid: 16917 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 13386 + - uid: 16918 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 13386 + - uid: 16919 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 13386 + - uid: 16920 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 13386 + - uid: 16921 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 13386 + - uid: 16922 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 13386 + - uid: 16923 + components: + - type: Transform + pos: -38.5,92.5 + parent: 2 + - uid: 16924 + components: + - type: Transform + pos: -39.5,92.5 + parent: 2 + - uid: 16925 + components: + - type: Transform + pos: -42.5,92.5 + parent: 2 + - uid: 16926 + components: + - type: Transform + pos: -41.5,92.5 + parent: 2 + - uid: 16927 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 2 + - uid: 16928 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 13386 + - uid: 16929 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 13386 + - uid: 16930 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 13386 + - uid: 16932 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 13386 + - uid: 16933 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 13386 + - uid: 16934 + components: + - type: Transform + pos: 3.5,1.5 + parent: 13386 + - uid: 16935 + components: + - type: Transform + pos: 3.5,2.5 + parent: 13386 + - uid: 16936 + components: + - type: Transform + pos: 3.5,3.5 + parent: 13386 + - uid: 16937 + components: + - type: Transform + pos: -3.5,1.5 + parent: 13386 + - uid: 16938 + components: + - type: Transform + pos: -3.5,2.5 + parent: 13386 + - uid: 16939 + components: + - type: Transform + pos: -3.5,3.5 + parent: 13386 + - uid: 16963 + components: + - type: Transform + pos: -102.5,33.5 + parent: 2 + - uid: 16982 + components: + - type: Transform + pos: -101.5,33.5 + parent: 2 + - uid: 16992 + components: + - type: Transform + pos: -57.5,86.5 + parent: 2 + - uid: 16993 + components: + - type: Transform + pos: -55.5,86.5 + parent: 2 + - uid: 16994 + components: + - type: Transform + pos: -56.5,86.5 + parent: 2 + - uid: 16995 + components: + - type: Transform + pos: -57.5,85.5 + parent: 2 + - uid: 16996 + components: + - type: Transform + pos: -57.5,84.5 + parent: 2 + - uid: 16997 + components: + - type: Transform + pos: -57.5,83.5 + parent: 2 + - uid: 16998 + components: + - type: Transform + pos: -57.5,82.5 + parent: 2 + - uid: 16999 + components: + - type: Transform + pos: -57.5,81.5 + parent: 2 + - uid: 17000 + components: + - type: Transform + pos: -57.5,80.5 + parent: 2 + - uid: 17001 + components: + - type: Transform + pos: -57.5,79.5 + parent: 2 + - uid: 17002 + components: + - type: Transform + pos: -57.5,78.5 + parent: 2 + - uid: 17003 + components: + - type: Transform + pos: -57.5,77.5 + parent: 2 + - uid: 17004 + components: + - type: Transform + pos: -57.5,76.5 + parent: 2 + - uid: 17005 + components: + - type: Transform + pos: -57.5,75.5 + parent: 2 + - uid: 17006 + components: + - type: Transform + pos: -57.5,74.5 + parent: 2 + - uid: 17008 + components: + - type: Transform + pos: -58.5,74.5 + parent: 2 + - uid: 17009 + components: + - type: Transform + pos: -59.5,74.5 + parent: 2 + - uid: 17010 + components: + - type: Transform + pos: -60.5,74.5 + parent: 2 + - uid: 17011 + components: + - type: Transform + pos: -61.5,74.5 + parent: 2 + - uid: 17012 + components: + - type: Transform + pos: -62.5,74.5 + parent: 2 + - uid: 17013 + components: + - type: Transform + pos: -63.5,74.5 + parent: 2 + - uid: 17014 + components: + - type: Transform + pos: -64.5,74.5 + parent: 2 + - uid: 17015 + components: + - type: Transform + pos: -65.5,74.5 + parent: 2 + - uid: 17016 + components: + - type: Transform + pos: -66.5,74.5 + parent: 2 + - uid: 17017 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - uid: 17018 + components: + - type: Transform + pos: -68.5,74.5 + parent: 2 + - uid: 17020 + components: + - type: Transform + pos: -57.5,88.5 + parent: 2 + - uid: 17021 + components: + - type: Transform + pos: -57.5,89.5 + parent: 2 + - uid: 17022 + components: + - type: Transform + pos: -57.5,90.5 + parent: 2 + - uid: 17027 + components: + - type: Transform + pos: -56.5,90.5 + parent: 2 + - uid: 17028 + components: + - type: Transform + pos: -55.5,90.5 + parent: 2 + - uid: 17029 + components: + - type: Transform + pos: -54.5,90.5 + parent: 2 + - uid: 17030 + components: + - type: Transform + pos: -53.5,90.5 + parent: 2 + - uid: 17031 + components: + - type: Transform + pos: -52.5,90.5 + parent: 2 + - uid: 17032 + components: + - type: Transform + pos: -51.5,90.5 + parent: 2 + - uid: 17033 + components: + - type: Transform + pos: -50.5,90.5 + parent: 2 + - uid: 17034 + components: + - type: Transform + pos: -49.5,90.5 + parent: 2 + - uid: 17035 + components: + - type: Transform + pos: -48.5,90.5 + parent: 2 + - uid: 17036 + components: + - type: Transform + pos: -47.5,90.5 + parent: 2 + - uid: 17041 + components: + - type: Transform + pos: -25.5,86.5 + parent: 2 + - uid: 17042 + components: + - type: Transform + pos: -24.5,86.5 + parent: 2 + - uid: 17043 + components: + - type: Transform + pos: -23.5,86.5 + parent: 2 + - uid: 17044 + components: + - type: Transform + pos: -23.5,85.5 + parent: 2 + - uid: 17045 + components: + - type: Transform + pos: -23.5,84.5 + parent: 2 + - uid: 17046 + components: + - type: Transform + pos: -23.5,83.5 + parent: 2 + - uid: 17047 + components: + - type: Transform + pos: -23.5,82.5 + parent: 2 + - uid: 17048 + components: + - type: Transform + pos: -23.5,81.5 + parent: 2 + - uid: 17049 + components: + - type: Transform + pos: -23.5,80.5 + parent: 2 + - uid: 17050 + components: + - type: Transform + pos: -23.5,79.5 + parent: 2 + - uid: 17051 + components: + - type: Transform + pos: -23.5,78.5 + parent: 2 + - uid: 17052 + components: + - type: Transform + pos: -23.5,77.5 + parent: 2 + - uid: 17053 + components: + - type: Transform + pos: -23.5,87.5 + parent: 2 + - uid: 17054 + components: + - type: Transform + pos: -23.5,88.5 + parent: 2 + - uid: 17055 + components: + - type: Transform + pos: -23.5,89.5 + parent: 2 + - uid: 17056 + components: + - type: Transform + pos: -23.5,90.5 + parent: 2 + - uid: 17057 + components: + - type: Transform + pos: -24.5,90.5 + parent: 2 + - uid: 17058 + components: + - type: Transform + pos: -25.5,90.5 + parent: 2 + - uid: 17059 + components: + - type: Transform + pos: -26.5,90.5 + parent: 2 + - uid: 17060 + components: + - type: Transform + pos: -27.5,90.5 + parent: 2 + - uid: 17061 + components: + - type: Transform + pos: -28.5,90.5 + parent: 2 + - uid: 17062 + components: + - type: Transform + pos: -29.5,90.5 + parent: 2 + - uid: 17063 + components: + - type: Transform + pos: -30.5,90.5 + parent: 2 + - uid: 17064 + components: + - type: Transform + pos: -31.5,90.5 + parent: 2 + - uid: 17065 + components: + - type: Transform + pos: -32.5,90.5 + parent: 2 + - uid: 17066 + components: + - type: Transform + pos: -33.5,90.5 + parent: 2 + - uid: 17067 + components: + - type: Transform + pos: -34.5,90.5 + parent: 2 + - uid: 17068 + components: + - type: Transform + pos: -22.5,90.5 + parent: 2 + - uid: 17069 + components: + - type: Transform + pos: -21.5,90.5 + parent: 2 + - uid: 17070 + components: + - type: Transform + pos: -20.5,90.5 + parent: 2 + - uid: 17071 + components: + - type: Transform + pos: -19.5,90.5 + parent: 2 + - uid: 17121 + components: + - type: Transform + pos: -140.5,107.5 + parent: 2 + - uid: 17123 + components: + - type: Transform + pos: -65.5,72.5 + parent: 2 + - uid: 17128 + components: + - type: Transform + pos: -141.5,106.5 + parent: 2 + - uid: 17129 + components: + - type: Transform + pos: -141.5,107.5 + parent: 2 + - uid: 17130 + components: + - type: Transform + pos: -133.5,106.5 + parent: 2 + - uid: 17133 + components: + - type: Transform + pos: -133.5,108.5 + parent: 2 + - uid: 17134 + components: + - type: Transform + pos: -141.5,108.5 + parent: 2 + - uid: 17168 + components: + - type: Transform + pos: -11.5,170.5 + parent: 2 + - uid: 17169 + components: + - type: Transform + pos: -117.5,20.5 + parent: 2 + - uid: 17172 + components: + - type: Transform + pos: -65.5,73.5 + parent: 2 + - uid: 17177 + components: + - type: Transform + pos: -84.5,78.5 + parent: 2 + - uid: 17178 + components: + - type: Transform + pos: -84.5,77.5 + parent: 2 + - uid: 17179 + components: + - type: Transform + pos: -84.5,76.5 + parent: 2 + - uid: 17180 + components: + - type: Transform + pos: -83.5,76.5 + parent: 2 + - uid: 17181 + components: + - type: Transform + pos: -85.5,76.5 + parent: 2 + - uid: 17182 + components: + - type: Transform + pos: -86.5,76.5 + parent: 2 + - uid: 17183 + components: + - type: Transform + pos: -87.5,76.5 + parent: 2 + - uid: 17184 + components: + - type: Transform + pos: -88.5,76.5 + parent: 2 + - uid: 17185 + components: + - type: Transform + pos: -87.5,77.5 + parent: 2 + - uid: 17186 + components: + - type: Transform + pos: -87.5,78.5 + parent: 2 + - uid: 17187 + components: + - type: Transform + pos: -86.5,78.5 + parent: 2 + - uid: 17188 + components: + - type: Transform + pos: -88.5,75.5 + parent: 2 + - uid: 17189 + components: + - type: Transform + pos: -89.5,75.5 + parent: 2 + - uid: 17190 + components: + - type: Transform + pos: -90.5,75.5 + parent: 2 + - uid: 17192 + components: + - type: Transform + pos: -65.5,66.5 + parent: 2 + - uid: 17193 + components: + - type: Transform + pos: -65.5,67.5 + parent: 2 + - uid: 17203 + components: + - type: Transform + pos: -80.5,76.5 + parent: 2 + - uid: 17221 + components: + - type: Transform + pos: -67.5,69.5 + parent: 2 + - uid: 17226 + components: + - type: Transform + pos: -66.5,69.5 + parent: 2 + - uid: 17238 + components: + - type: Transform + pos: -81.5,76.5 + parent: 2 + - uid: 17240 + components: + - type: Transform + pos: -82.5,76.5 + parent: 2 + - uid: 17249 + components: + - type: Transform + pos: -80.5,75.5 + parent: 2 + - uid: 17250 + components: + - type: Transform + pos: -65.5,69.5 + parent: 2 + - uid: 17254 + components: + - type: Transform + pos: -80.5,74.5 + parent: 2 + - uid: 17255 + components: + - type: Transform + pos: -80.5,73.5 + parent: 2 + - uid: 17256 + components: + - type: Transform + pos: -80.5,72.5 + parent: 2 + - uid: 17257 + components: + - type: Transform + pos: -80.5,71.5 + parent: 2 + - uid: 17258 + components: + - type: Transform + pos: -80.5,70.5 + parent: 2 + - uid: 17260 + components: + - type: Transform + pos: -78.5,70.5 + parent: 2 + - uid: 17261 + components: + - type: Transform + pos: -77.5,70.5 + parent: 2 + - uid: 17262 + components: + - type: Transform + pos: -76.5,70.5 + parent: 2 + - uid: 17263 + components: + - type: Transform + pos: -75.5,70.5 + parent: 2 + - uid: 17264 + components: + - type: Transform + pos: -74.5,70.5 + parent: 2 + - uid: 17265 + components: + - type: Transform + pos: -73.5,70.5 + parent: 2 + - uid: 17266 + components: + - type: Transform + pos: -73.5,69.5 + parent: 2 + - uid: 17267 + components: + - type: Transform + pos: -73.5,68.5 + parent: 2 + - uid: 17268 + components: + - type: Transform + pos: -73.5,67.5 + parent: 2 + - uid: 17269 + components: + - type: Transform + pos: -73.5,66.5 + parent: 2 + - uid: 17270 + components: + - type: Transform + pos: -73.5,65.5 + parent: 2 + - uid: 17271 + components: + - type: Transform + pos: -74.5,65.5 + parent: 2 + - uid: 17272 + components: + - type: Transform + pos: -75.5,65.5 + parent: 2 + - uid: 17286 + components: + - type: Transform + pos: -124.5,59.5 + parent: 2 + - uid: 17293 + components: + - type: Transform + pos: -12.5,164.5 + parent: 2 + - uid: 17302 + components: + - type: Transform + pos: -142.5,107.5 + parent: 2 + - uid: 17303 + components: + - type: Transform + pos: -62.5,112.5 + parent: 2 + - uid: 17313 + components: + - type: Transform + pos: -62.5,111.5 + parent: 2 + - uid: 17317 + components: + - type: Transform + pos: -61.5,111.5 + parent: 2 + - uid: 17320 + components: + - type: Transform + pos: -91.5,155.5 + parent: 2 + - uid: 17321 + components: + - type: Transform + pos: -89.5,155.5 + parent: 2 + - uid: 17323 + components: + - type: Transform + pos: -90.5,155.5 + parent: 2 + - uid: 17325 + components: + - type: Transform + pos: -85.5,155.5 + parent: 2 + - uid: 17329 + components: + - type: Transform + pos: -91.5,158.5 + parent: 2 + - uid: 17331 + components: + - type: Transform + pos: -67.5,108.5 + parent: 2 + - uid: 17332 + components: + - type: Transform + pos: -78.5,168.5 + parent: 2 + - uid: 17334 + components: + - type: Transform + pos: -92.5,171.5 + parent: 2 + - uid: 17337 + components: + - type: Transform + pos: -81.5,168.5 + parent: 2 + - uid: 17340 + components: + - type: Transform + pos: -87.5,156.5 + parent: 2 + - uid: 17342 + components: + - type: Transform + pos: -67.5,107.5 + parent: 2 + - uid: 17343 + components: + - type: Transform + pos: -85.5,156.5 + parent: 2 + - uid: 17380 + components: + - type: Transform + pos: -65.5,68.5 + parent: 2 + - uid: 17383 + components: + - type: Transform + pos: -23.5,99.5 + parent: 2 + - uid: 17395 + components: + - type: Transform + pos: -79.5,170.5 + parent: 2 + - uid: 17423 + components: + - type: Transform + pos: -118.5,20.5 + parent: 2 + - uid: 17445 + components: + - type: Transform + pos: -119.5,20.5 + parent: 2 + - uid: 17470 + components: + - type: Transform + pos: -65.5,71.5 + parent: 2 + - uid: 17495 + components: + - type: Transform + pos: 61.5,44.5 + parent: 2 + - uid: 17524 + components: + - type: Transform + pos: -68.5,163.5 + parent: 2 + - uid: 17566 + components: + - type: Transform + pos: -67.5,163.5 + parent: 2 + - uid: 17616 + components: + - type: Transform + pos: -92.5,169.5 + parent: 2 + - uid: 17655 + components: + - type: Transform + pos: -127.5,90.5 + parent: 2 + - uid: 17673 + components: + - type: Transform + pos: -135.5,107.5 + parent: 2 + - uid: 17709 + components: + - type: Transform + pos: -128.5,97.5 + parent: 2 + - uid: 17710 + components: + - type: Transform + pos: -127.5,89.5 + parent: 2 + - uid: 17741 + components: + - type: Transform + pos: -124.5,108.5 + parent: 2 + - uid: 17865 + components: + - type: Transform + pos: -34.5,69.5 + parent: 2 + - uid: 17874 + components: + - type: Transform + pos: -58.5,152.5 + parent: 2 + - uid: 17894 + components: + - type: Transform + pos: -72.5,164.5 + parent: 2 + - uid: 17902 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 17907 + components: + - type: Transform + pos: -72.5,161.5 + parent: 2 + - uid: 17909 + components: + - type: Transform + pos: -123.5,96.5 + parent: 2 + - uid: 17963 + components: + - type: Transform + pos: -123.5,99.5 + parent: 2 + - uid: 17977 + components: + - type: Transform + pos: -123.5,100.5 + parent: 2 + - uid: 18001 + components: + - type: Transform + pos: -80.5,170.5 + parent: 2 + - uid: 18020 + components: + - type: Transform + pos: -129.5,107.5 + parent: 2 + - uid: 18084 + components: + - type: Transform + pos: -123.5,101.5 + parent: 2 + - uid: 18125 + components: + - type: Transform + pos: -128.5,93.5 + parent: 2 + - uid: 18126 + components: + - type: Transform + pos: -128.5,88.5 + parent: 2 + - uid: 18143 + components: + - type: Transform + pos: -128.5,107.5 + parent: 2 + - uid: 18166 + components: + - type: Transform + pos: -128.5,104.5 + parent: 2 + - uid: 18169 + components: + - type: Transform + pos: -128.5,100.5 + parent: 2 + - uid: 18176 + components: + - type: Transform + pos: -9.5,164.5 + parent: 2 + - uid: 18178 + components: + - type: Transform + pos: -126.5,88.5 + parent: 2 + - uid: 18187 + components: + - type: Transform + pos: -128.5,103.5 + parent: 2 + - uid: 18199 + components: + - type: Transform + pos: -16.5,165.5 + parent: 2 + - uid: 18220 + components: + - type: Transform + pos: -15.5,164.5 + parent: 2 + - uid: 18277 + components: + - type: Transform + pos: -69.5,179.5 + parent: 2 + - uid: 18302 + components: + - type: Transform + pos: -127.5,88.5 + parent: 2 + - uid: 18369 + components: + - type: Transform + pos: -126.5,110.5 + parent: 2 + - uid: 18371 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 18372 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 18402 + components: + - type: Transform + pos: -95.5,35.5 + parent: 2 + - uid: 18428 + components: + - type: Transform + pos: -128.5,101.5 + parent: 2 + - uid: 18495 + components: + - type: Transform + pos: -60.5,80.5 + parent: 2 + - uid: 18528 + components: + - type: Transform + pos: -49.5,95.5 + parent: 2 + - uid: 18554 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 + - uid: 18578 + components: + - type: Transform + pos: -72.5,163.5 + parent: 2 + - uid: 18630 + components: + - type: Transform + pos: -127.5,55.5 + parent: 2 + - uid: 18647 + components: + - type: Transform + pos: -67.5,-5.5 + parent: 2 + - uid: 18745 + components: + - type: Transform + pos: -70.5,179.5 + parent: 2 + - uid: 18755 + components: + - type: Transform + pos: -72.5,162.5 + parent: 2 + - uid: 18760 + components: + - type: Transform + pos: -61.5,152.5 + parent: 2 + - uid: 18785 + components: + - type: Transform + pos: -56.5,152.5 + parent: 2 + - uid: 18786 + components: + - type: Transform + pos: -60.5,152.5 + parent: 2 + - uid: 18795 + components: + - type: Transform + pos: -70.5,164.5 + parent: 2 + - uid: 18800 + components: + - type: Transform + pos: -69.5,164.5 + parent: 2 + - uid: 18801 + components: + - type: Transform + pos: -69.5,162.5 + parent: 2 + - uid: 18813 + components: + - type: Transform + pos: -50.5,152.5 + parent: 2 + - uid: 18818 + components: + - type: Transform + pos: -50.5,158.5 + parent: 2 + - uid: 18822 + components: + - type: Transform + pos: -51.5,158.5 + parent: 2 + - uid: 18823 + components: + - type: Transform + pos: -53.5,158.5 + parent: 2 + - uid: 18825 + components: + - type: Transform + pos: -53.5,157.5 + parent: 2 + - uid: 18828 + components: + - type: Transform + pos: -53.5,154.5 + parent: 2 + - uid: 18829 + components: + - type: Transform + pos: -53.5,153.5 + parent: 2 + - uid: 18831 + components: + - type: Transform + pos: -54.5,152.5 + parent: 2 + - uid: 18835 + components: + - type: Transform + pos: -55.5,152.5 + parent: 2 + - uid: 18853 + components: + - type: Transform + pos: -53.5,152.5 + parent: 2 + - uid: 18861 + components: + - type: Transform + pos: -53.5,156.5 + parent: 2 + - uid: 18865 + components: + - type: Transform + pos: -70.5,174.5 + parent: 2 + - uid: 18870 + components: + - type: Transform + pos: -52.5,158.5 + parent: 2 + - uid: 18880 + components: + - type: Transform + pos: -51.5,152.5 + parent: 2 + - uid: 18893 + components: + - type: Transform + pos: -52.5,152.5 + parent: 2 + - uid: 18896 + components: + - type: Transform + pos: -53.5,159.5 + parent: 2 + - uid: 18897 + components: + - type: Transform + pos: -53.5,155.5 + parent: 2 + - uid: 18908 + components: + - type: Transform + pos: -69.5,159.5 + parent: 2 + - uid: 18909 + components: + - type: Transform + pos: -69.5,161.5 + parent: 2 + - uid: 18918 + components: + - type: Transform + pos: -69.5,160.5 + parent: 2 + - uid: 18919 + components: + - type: Transform + pos: -69.5,158.5 + parent: 2 + - uid: 18921 + components: + - type: Transform + pos: -59.5,152.5 + parent: 2 + - uid: 18926 + components: + - type: Transform + pos: -57.5,152.5 + parent: 2 + - uid: 18927 + components: + - type: Transform + pos: -62.5,154.5 + parent: 2 + - uid: 18940 + components: + - type: Transform + pos: -62.5,153.5 + parent: 2 + - uid: 18966 + components: + - type: Transform + pos: -64.5,152.5 + parent: 2 + - uid: 18996 + components: + - type: Transform + pos: -65.5,152.5 + parent: 2 + - uid: 19032 + components: + - type: Transform + pos: -123.5,57.5 + parent: 2 + - uid: 19064 + components: + - type: Transform + pos: -84.5,95.5 + parent: 2 + - uid: 19096 + components: + - type: Transform + pos: -123.5,57.5 + parent: 2 + - uid: 19097 + components: + - type: Transform + pos: -126.5,92.5 + parent: 2 + - uid: 19106 + components: + - type: Transform + pos: -69.5,163.5 + parent: 2 + - uid: 19242 + components: + - type: Transform + pos: -119.5,65.5 + parent: 2 + - uid: 19254 + components: + - type: Transform + pos: -118.5,63.5 + parent: 2 + - uid: 19259 + components: + - type: Transform + pos: -11.5,164.5 + parent: 2 + - uid: 19262 + components: + - type: Transform + pos: -16.5,178.5 + parent: 2 + - uid: 19267 + components: + - type: Transform + pos: -17.5,178.5 + parent: 2 + - uid: 19270 + components: + - type: Transform + pos: -18.5,178.5 + parent: 2 + - uid: 19300 + components: + - type: Transform + pos: -62.5,152.5 + parent: 2 + - uid: 19310 + components: + - type: Transform + pos: -119.5,61.5 + parent: 2 + - uid: 19313 + components: + - type: Transform + pos: -107.5,64.5 + parent: 2 + - uid: 19314 + components: + - type: Transform + pos: -120.5,61.5 + parent: 2 + - uid: 19315 + components: + - type: Transform + pos: -121.5,61.5 + parent: 2 + - uid: 19317 + components: + - type: Transform + pos: -126.5,56.5 + parent: 2 + - uid: 19319 + components: + - type: Transform + pos: -126.5,57.5 + parent: 2 + - uid: 19320 + components: + - type: Transform + pos: -126.5,58.5 + parent: 2 + - uid: 19321 + components: + - type: Transform + pos: -126.5,59.5 + parent: 2 + - uid: 19324 + components: + - type: Transform + pos: -126.5,60.5 + parent: 2 + - uid: 19325 + components: + - type: Transform + pos: -126.5,61.5 + parent: 2 + - uid: 19326 + components: + - type: Transform + pos: -125.5,61.5 + parent: 2 + - uid: 19327 + components: + - type: Transform + pos: -124.5,61.5 + parent: 2 + - uid: 19328 + components: + - type: Transform + pos: -107.5,65.5 + parent: 2 + - uid: 19329 + components: + - type: Transform + pos: -123.5,61.5 + parent: 2 + - uid: 19404 + components: + - type: Transform + pos: -125.5,92.5 + parent: 2 + - uid: 19413 + components: + - type: Transform + pos: -67.5,152.5 + parent: 2 + - uid: 19433 + components: + - type: Transform + pos: -66.5,152.5 + parent: 2 + - uid: 19445 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 19457 + components: + - type: Transform + pos: -69.5,156.5 + parent: 2 + - uid: 19458 + components: + - type: Transform + pos: -69.5,155.5 + parent: 2 + - uid: 19461 + components: + - type: Transform + pos: -69.5,154.5 + parent: 2 + - uid: 19462 + components: + - type: Transform + pos: -63.5,152.5 + parent: 2 + - uid: 19463 + components: + - type: Transform + pos: -69.5,157.5 + parent: 2 + - uid: 19468 + components: + - type: Transform + pos: -108.5,48.5 + parent: 2 + - uid: 19482 + components: + - type: Transform + pos: -58.5,90.5 + parent: 2 + - uid: 19495 + components: + - type: Transform + pos: -41.5,97.5 + parent: 2 + - uid: 19497 + components: + - type: Transform + pos: -39.5,97.5 + parent: 2 + - uid: 19498 + components: + - type: Transform + pos: -41.5,101.5 + parent: 2 + - uid: 19499 + components: + - type: Transform + pos: -40.5,101.5 + parent: 2 + - uid: 19500 + components: + - type: Transform + pos: -39.5,101.5 + parent: 2 + - uid: 19510 + components: + - type: Transform + pos: -18.5,65.5 + parent: 2 + - uid: 19511 + components: + - type: Transform + pos: -12.5,66.5 + parent: 2 + - uid: 19519 + components: + - type: Transform + pos: -75.5,147.5 + parent: 2 + - uid: 19889 + components: + - type: Transform + pos: -14.5,164.5 + parent: 2 + - uid: 20007 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 20061 + components: + - type: Transform + pos: -71.5,99.5 + parent: 2 + - uid: 20331 + components: + - type: Transform + pos: -36.5,71.5 + parent: 2 + - uid: 20333 + components: + - type: Transform + pos: -42.5,80.5 + parent: 2 + - uid: 20419 + components: + - type: Transform + pos: -137.5,49.5 + parent: 2 + - uid: 20489 + components: + - type: Transform + pos: -137.5,51.5 + parent: 2 + - uid: 20649 + components: + - type: Transform + pos: -137.5,48.5 + parent: 2 + - uid: 20653 + components: + - type: Transform + pos: -138.5,48.5 + parent: 2 + - uid: 20654 + components: + - type: Transform + pos: -132.5,41.5 + parent: 2 + - uid: 20709 + components: + - type: Transform + pos: -81.5,47.5 + parent: 2 + - uid: 20770 + components: + - type: Transform + pos: -136.5,49.5 + parent: 2 + - uid: 20999 + components: + - type: Transform + pos: -64.5,63.5 + parent: 2 + - uid: 21197 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 21114 + - uid: 21198 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 21114 + - uid: 21199 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 21114 + - uid: 21204 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 21114 + - uid: 21205 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 21114 + - uid: 21217 + components: + - type: Transform + pos: 1.5,0.5 + parent: 21114 + - uid: 21226 + components: + - type: Transform + pos: 0.5,0.5 + parent: 21114 + - uid: 21244 + components: + - type: Transform + pos: 2.5,0.5 + parent: 21114 + - uid: 21247 + components: + - type: Transform + pos: 3.5,0.5 + parent: 21114 + - uid: 21328 + components: + - type: Transform + pos: 4.5,0.5 + parent: 21114 + - uid: 21344 + components: + - type: Transform + pos: 4.5,0.5 + parent: 21114 + - uid: 21356 + components: + - type: Transform + pos: 5.5,0.5 + parent: 21114 + - uid: 21438 + components: + - type: Transform + pos: -58.5,162.5 + parent: 2 + - uid: 21439 + components: + - type: Transform + pos: -59.5,164.5 + parent: 2 + - uid: 21440 + components: + - type: Transform + pos: -59.5,165.5 + parent: 2 + - uid: 21442 + components: + - type: Transform + pos: -59.5,162.5 + parent: 2 + - uid: 21443 + components: + - type: Transform + pos: -59.5,163.5 + parent: 2 + - uid: 21559 + components: + - type: Transform + pos: -99.5,151.5 + parent: 2 + - uid: 21563 + components: + - type: Transform + pos: -98.5,151.5 + parent: 2 + - uid: 21564 + components: + - type: Transform + pos: -97.5,151.5 + parent: 2 + - uid: 21565 + components: + - type: Transform + pos: -96.5,151.5 + parent: 2 + - uid: 21566 + components: + - type: Transform + pos: -95.5,151.5 + parent: 2 + - uid: 21567 + components: + - type: Transform + pos: -94.5,151.5 + parent: 2 + - uid: 21568 + components: + - type: Transform + pos: -93.5,151.5 + parent: 2 + - uid: 21569 + components: + - type: Transform + pos: -79.5,43.5 + parent: 2 + - uid: 21570 + components: + - type: Transform + pos: -91.5,151.5 + parent: 2 + - uid: 21571 + components: + - type: Transform + pos: -90.5,151.5 + parent: 2 + - uid: 21572 + components: + - type: Transform + pos: -89.5,151.5 + parent: 2 + - uid: 21573 + components: + - type: Transform + pos: -88.5,151.5 + parent: 2 + - uid: 21574 + components: + - type: Transform + pos: -87.5,151.5 + parent: 2 + - uid: 21575 + components: + - type: Transform + pos: -86.5,151.5 + parent: 2 + - uid: 21576 + components: + - type: Transform + pos: -85.5,151.5 + parent: 2 + - uid: 21577 + components: + - type: Transform + pos: -84.5,151.5 + parent: 2 + - uid: 21578 + components: + - type: Transform + pos: -83.5,151.5 + parent: 2 + - uid: 21580 + components: + - type: Transform + pos: -81.5,151.5 + parent: 2 + - uid: 21582 + components: + - type: Transform + pos: -80.5,152.5 + parent: 2 + - uid: 21583 + components: + - type: Transform + pos: -80.5,153.5 + parent: 2 + - uid: 21584 + components: + - type: Transform + pos: -81.5,150.5 + parent: 2 + - uid: 21585 + components: + - type: Transform + pos: -81.5,149.5 + parent: 2 + - uid: 21586 + components: + - type: Transform + pos: -81.5,148.5 + parent: 2 + - uid: 21587 + components: + - type: Transform + pos: -82.5,148.5 + parent: 2 + - uid: 21588 + components: + - type: Transform + pos: -80.5,148.5 + parent: 2 + - uid: 21589 + components: + - type: Transform + pos: -85.5,150.5 + parent: 2 + - uid: 21590 + components: + - type: Transform + pos: -85.5,149.5 + parent: 2 + - uid: 21591 + components: + - type: Transform + pos: -85.5,148.5 + parent: 2 + - uid: 21593 + components: + - type: Transform + pos: -88.5,149.5 + parent: 2 + - uid: 21594 + components: + - type: Transform + pos: -88.5,148.5 + parent: 2 + - uid: 21595 + components: + - type: Transform + pos: -91.5,150.5 + parent: 2 + - uid: 21596 + components: + - type: Transform + pos: -91.5,149.5 + parent: 2 + - uid: 21597 + components: + - type: Transform + pos: -91.5,148.5 + parent: 2 + - uid: 21599 + components: + - type: Transform + pos: -95.5,149.5 + parent: 2 + - uid: 21600 + components: + - type: Transform + pos: -95.5,148.5 + parent: 2 + - uid: 21607 + components: + - type: Transform + pos: -97.5,154.5 + parent: 2 + - uid: 21626 + components: + - type: Transform + pos: -87.5,157.5 + parent: 2 + - uid: 21627 + components: + - type: Transform + pos: -87.5,158.5 + parent: 2 + - uid: 21628 + components: + - type: Transform + pos: -91.5,160.5 + parent: 2 + - uid: 21629 + components: + - type: Transform + pos: -91.5,159.5 + parent: 2 + - uid: 21631 + components: + - type: Transform + pos: -86.5,156.5 + parent: 2 + - uid: 21636 + components: + - type: Transform + pos: -88.5,155.5 + parent: 2 + - uid: 21637 + components: + - type: Transform + pos: -87.5,155.5 + parent: 2 + - uid: 21645 + components: + - type: Transform + pos: -84.5,155.5 + parent: 2 + - uid: 21646 + components: + - type: Transform + pos: -87.5,159.5 + parent: 2 + - uid: 21647 + components: + - type: Transform + pos: -86.5,159.5 + parent: 2 + - uid: 21648 + components: + - type: Transform + pos: -85.5,159.5 + parent: 2 + - uid: 21649 + components: + - type: Transform + pos: -84.5,159.5 + parent: 2 + - uid: 21650 + components: + - type: Transform + pos: -83.5,159.5 + parent: 2 + - uid: 21651 + components: + - type: Transform + pos: -88.5,159.5 + parent: 2 + - uid: 21652 + components: + - type: Transform + pos: -89.5,159.5 + parent: 2 + - uid: 21653 + components: + - type: Transform + pos: -90.5,159.5 + parent: 2 + - uid: 21655 + components: + - type: Transform + pos: -91.5,166.5 + parent: 2 + - uid: 21656 + components: + - type: Transform + pos: -91.5,165.5 + parent: 2 + - uid: 21657 + components: + - type: Transform + pos: -91.5,164.5 + parent: 2 + - uid: 21658 + components: + - type: Transform + pos: -91.5,163.5 + parent: 2 + - uid: 21659 + components: + - type: Transform + pos: -90.5,163.5 + parent: 2 + - uid: 21660 + components: + - type: Transform + pos: -89.5,163.5 + parent: 2 + - uid: 21661 + components: + - type: Transform + pos: -88.5,163.5 + parent: 2 + - uid: 21662 + components: + - type: Transform + pos: -87.5,163.5 + parent: 2 + - uid: 21663 + components: + - type: Transform + pos: -86.5,163.5 + parent: 2 + - uid: 21664 + components: + - type: Transform + pos: -85.5,163.5 + parent: 2 + - uid: 21665 + components: + - type: Transform + pos: -84.5,163.5 + parent: 2 + - uid: 21666 + components: + - type: Transform + pos: -83.5,163.5 + parent: 2 + - uid: 21667 + components: + - type: Transform + pos: -82.5,163.5 + parent: 2 + - uid: 21668 + components: + - type: Transform + pos: -82.5,164.5 + parent: 2 + - uid: 21669 + components: + - type: Transform + pos: -85.5,164.5 + parent: 2 + - uid: 21670 + components: + - type: Transform + pos: -88.5,164.5 + parent: 2 + - uid: 21671 + components: + - type: Transform + pos: -88.5,165.5 + parent: 2 + - uid: 21672 + components: + - type: Transform + pos: -87.5,165.5 + parent: 2 + - uid: 21674 + components: + - type: Transform + pos: -91.5,172.5 + parent: 2 + - uid: 21675 + components: + - type: Transform + pos: -90.5,172.5 + parent: 2 + - uid: 21676 + components: + - type: Transform + pos: -89.5,172.5 + parent: 2 + - uid: 21677 + components: + - type: Transform + pos: -88.5,172.5 + parent: 2 + - uid: 21678 + components: + - type: Transform + pos: -87.5,172.5 + parent: 2 + - uid: 21679 + components: + - type: Transform + pos: -87.5,173.5 + parent: 2 + - uid: 21680 + components: + - type: Transform + pos: -87.5,174.5 + parent: 2 + - uid: 21681 + components: + - type: Transform + pos: -86.5,174.5 + parent: 2 + - uid: 21682 + components: + - type: Transform + pos: -88.5,174.5 + parent: 2 + - uid: 21683 + components: + - type: Transform + pos: -89.5,174.5 + parent: 2 + - uid: 21684 + components: + - type: Transform + pos: -86.5,172.5 + parent: 2 + - uid: 21685 + components: + - type: Transform + pos: -86.5,171.5 + parent: 2 + - uid: 21686 + components: + - type: Transform + pos: -86.5,170.5 + parent: 2 + - uid: 21687 + components: + - type: Transform + pos: -86.5,169.5 + parent: 2 + - uid: 21688 + components: + - type: Transform + pos: -86.5,168.5 + parent: 2 + - uid: 21689 + components: + - type: Transform + pos: -87.5,168.5 + parent: 2 + - uid: 21690 + components: + - type: Transform + pos: -88.5,168.5 + parent: 2 + - uid: 21691 + components: + - type: Transform + pos: -89.5,168.5 + parent: 2 + - uid: 21692 + components: + - type: Transform + pos: -90.5,168.5 + parent: 2 + - uid: 21693 + components: + - type: Transform + pos: -91.5,168.5 + parent: 2 + - uid: 21694 + components: + - type: Transform + pos: -92.5,168.5 + parent: 2 + - uid: 21695 + components: + - type: Transform + pos: -93.5,168.5 + parent: 2 + - uid: 21696 + components: + - type: Transform + pos: -94.5,168.5 + parent: 2 + - uid: 21697 + components: + - type: Transform + pos: -95.5,168.5 + parent: 2 + - uid: 21698 + components: + - type: Transform + pos: -96.5,168.5 + parent: 2 + - uid: 21699 + components: + - type: Transform + pos: -97.5,168.5 + parent: 2 + - uid: 21700 + components: + - type: Transform + pos: -92.5,172.5 + parent: 2 + - uid: 21701 + components: + - type: Transform + pos: -92.5,170.5 + parent: 2 + - uid: 21702 + components: + - type: Transform + pos: -92.5,173.5 + parent: 2 + - uid: 21703 + components: + - type: Transform + pos: -92.5,174.5 + parent: 2 + - uid: 21704 + components: + - type: Transform + pos: -92.5,175.5 + parent: 2 + - uid: 21705 + components: + - type: Transform + pos: -93.5,175.5 + parent: 2 + - uid: 21706 + components: + - type: Transform + pos: -94.5,175.5 + parent: 2 + - uid: 21707 + components: + - type: Transform + pos: -95.5,175.5 + parent: 2 + - uid: 21708 + components: + - type: Transform + pos: -96.5,175.5 + parent: 2 + - uid: 21709 + components: + - type: Transform + pos: -95.5,169.5 + parent: 2 + - uid: 21711 + components: + - type: Transform + pos: -95.5,170.5 + parent: 2 + - uid: 21712 + components: + - type: Transform + pos: -97.5,167.5 + parent: 2 + - uid: 21713 + components: + - type: Transform + pos: -97.5,166.5 + parent: 2 + - uid: 21714 + components: + - type: Transform + pos: 2.5,1.5 + parent: 21114 + - uid: 21716 + components: + - type: Transform + pos: -95.5,160.5 + parent: 2 + - uid: 21717 + components: + - type: Transform + pos: -96.5,160.5 + parent: 2 + - uid: 21718 + components: + - type: Transform + pos: -97.5,160.5 + parent: 2 + - uid: 21719 + components: + - type: Transform + pos: -97.5,161.5 + parent: 2 + - uid: 21720 + components: + - type: Transform + pos: -98.5,161.5 + parent: 2 + - uid: 21721 + components: + - type: Transform + pos: -99.5,161.5 + parent: 2 + - uid: 21722 + components: + - type: Transform + pos: -100.5,161.5 + parent: 2 + - uid: 21723 + components: + - type: Transform + pos: -97.5,159.5 + parent: 2 + - uid: 21724 + components: + - type: Transform + pos: -98.5,159.5 + parent: 2 + - uid: 21725 + components: + - type: Transform + pos: -99.5,159.5 + parent: 2 + - uid: 21726 + components: + - type: Transform + pos: -100.5,159.5 + parent: 2 + - uid: 21727 + components: + - type: Transform + pos: -97.5,158.5 + parent: 2 + - uid: 21728 + components: + - type: Transform + pos: -97.5,157.5 + parent: 2 + - uid: 21729 + components: + - type: Transform + pos: -97.5,156.5 + parent: 2 + - uid: 21730 + components: + - type: Transform + pos: -97.5,164.5 + parent: 2 + - uid: 21731 + components: + - type: Transform + pos: -97.5,163.5 + parent: 2 + - uid: 21732 + components: + - type: Transform + pos: -97.5,162.5 + parent: 2 + - uid: 21736 + components: + - type: Transform + pos: -89.5,176.5 + parent: 2 + - uid: 21737 + components: + - type: Transform + pos: -89.5,177.5 + parent: 2 + - uid: 21738 + components: + - type: Transform + pos: -89.5,178.5 + parent: 2 + - uid: 21739 + components: + - type: Transform + pos: -88.5,178.5 + parent: 2 + - uid: 21740 + components: + - type: Transform + pos: -87.5,178.5 + parent: 2 + - uid: 21741 + components: + - type: Transform + pos: -86.5,178.5 + parent: 2 + - uid: 21742 + components: + - type: Transform + pos: -86.5,177.5 + parent: 2 + - uid: 21743 + components: + - type: Transform + pos: -86.5,179.5 + parent: 2 + - uid: 21744 + components: + - type: Transform + pos: -86.5,180.5 + parent: 2 + - uid: 21745 + components: + - type: Transform + pos: -86.5,181.5 + parent: 2 + - uid: 21747 + components: + - type: Transform + pos: -89.5,179.5 + parent: 2 + - uid: 21748 + components: + - type: Transform + pos: -89.5,180.5 + parent: 2 + - uid: 21751 + components: + - type: Transform + pos: -79.5,169.5 + parent: 2 + - uid: 21752 + components: + - type: Transform + pos: -79.5,168.5 + parent: 2 + - uid: 21753 + components: + - type: Transform + pos: -80.5,171.5 + parent: 2 + - uid: 21754 + components: + - type: Transform + pos: -79.5,167.5 + parent: 2 + - uid: 21756 + components: + - type: Transform + pos: -79.5,166.5 + parent: 2 + - uid: 21757 + components: + - type: Transform + pos: -80.5,172.5 + parent: 2 + - uid: 21758 + components: + - type: Transform + pos: -79.5,172.5 + parent: 2 + - uid: 21759 + components: + - type: Transform + pos: -78.5,172.5 + parent: 2 + - uid: 21760 + components: + - type: Transform + pos: -78.5,171.5 + parent: 2 + - uid: 21761 + components: + - type: Transform + pos: -78.5,170.5 + parent: 2 + - uid: 21762 + components: + - type: Transform + pos: -81.5,171.5 + parent: 2 + - uid: 21763 + components: + - type: Transform + pos: -82.5,171.5 + parent: 2 + - uid: 21764 + components: + - type: Transform + pos: -83.5,171.5 + parent: 2 + - uid: 21765 + components: + - type: Transform + pos: -84.5,171.5 + parent: 2 + - uid: 21766 + components: + - type: Transform + pos: -79.5,173.5 + parent: 2 + - uid: 21767 + components: + - type: Transform + pos: -79.5,174.5 + parent: 2 + - uid: 21768 + components: + - type: Transform + pos: -79.5,175.5 + parent: 2 + - uid: 21769 + components: + - type: Transform + pos: -79.5,176.5 + parent: 2 + - uid: 21770 + components: + - type: Transform + pos: -77.5,171.5 + parent: 2 + - uid: 21771 + components: + - type: Transform + pos: -76.5,171.5 + parent: 2 + - uid: 21772 + components: + - type: Transform + pos: -75.5,171.5 + parent: 2 + - uid: 21773 + components: + - type: Transform + pos: -74.5,171.5 + parent: 2 + - uid: 21776 + components: + - type: Transform + pos: -76.5,172.5 + parent: 2 + - uid: 21777 + components: + - type: Transform + pos: -76.5,173.5 + parent: 2 + - uid: 21778 + components: + - type: Transform + pos: -80.5,168.5 + parent: 2 + - uid: 21779 + components: + - type: Transform + pos: -76.5,170.5 + parent: 2 + - uid: 21780 + components: + - type: Transform + pos: -76.5,169.5 + parent: 2 + - uid: 21782 + components: + - type: Transform + pos: -77.5,168.5 + parent: 2 + - uid: 21783 + components: + - type: Transform + pos: -82.5,170.5 + parent: 2 + - uid: 21784 + components: + - type: Transform + pos: -82.5,169.5 + parent: 2 + - uid: 21785 + components: + - type: Transform + pos: -82.5,172.5 + parent: 2 + - uid: 21786 + components: + - type: Transform + pos: -82.5,173.5 + parent: 2 + - uid: 21787 + components: + - type: Transform + pos: -81.5,174.5 + parent: 2 + - uid: 21788 + components: + - type: Transform + pos: -80.5,174.5 + parent: 2 + - uid: 21789 + components: + - type: Transform + pos: -78.5,174.5 + parent: 2 + - uid: 21790 + components: + - type: Transform + pos: -77.5,174.5 + parent: 2 + - uid: 21796 + components: + - type: Transform + pos: -82.5,176.5 + parent: 2 + - uid: 21797 + components: + - type: Transform + pos: -82.5,177.5 + parent: 2 + - uid: 21798 + components: + - type: Transform + pos: -82.5,178.5 + parent: 2 + - uid: 21799 + components: + - type: Transform + pos: -82.5,179.5 + parent: 2 + - uid: 21800 + components: + - type: Transform + pos: -81.5,178.5 + parent: 2 + - uid: 21801 + components: + - type: Transform + pos: -80.5,178.5 + parent: 2 + - uid: 21802 + components: + - type: Transform + pos: -79.5,178.5 + parent: 2 + - uid: 21803 + components: + - type: Transform + pos: -78.5,178.5 + parent: 2 + - uid: 21804 + components: + - type: Transform + pos: -77.5,178.5 + parent: 2 + - uid: 21805 + components: + - type: Transform + pos: -76.5,178.5 + parent: 2 + - uid: 21806 + components: + - type: Transform + pos: -82.5,180.5 + parent: 2 + - uid: 21807 + components: + - type: Transform + pos: -82.5,181.5 + parent: 2 + - uid: 21809 + components: + - type: Transform + pos: -81.5,181.5 + parent: 2 + - uid: 21810 + components: + - type: Transform + pos: -80.5,181.5 + parent: 2 + - uid: 21811 + components: + - type: Transform + pos: -79.5,181.5 + parent: 2 + - uid: 21812 + components: + - type: Transform + pos: -78.5,181.5 + parent: 2 + - uid: 21813 + components: + - type: Transform + pos: -77.5,181.5 + parent: 2 + - uid: 21814 + components: + - type: Transform + pos: -76.5,181.5 + parent: 2 + - uid: 21816 + components: + - type: Transform + pos: -82.5,182.5 + parent: 2 + - uid: 21817 + components: + - type: Transform + pos: -82.5,183.5 + parent: 2 + - uid: 21818 + components: + - type: Transform + pos: -82.5,184.5 + parent: 2 + - uid: 21820 + components: + - type: Transform + pos: -81.5,184.5 + parent: 2 + - uid: 21821 + components: + - type: Transform + pos: -80.5,184.5 + parent: 2 + - uid: 21822 + components: + - type: Transform + pos: -79.5,184.5 + parent: 2 + - uid: 21823 + components: + - type: Transform + pos: -78.5,184.5 + parent: 2 + - uid: 21824 + components: + - type: Transform + pos: -77.5,184.5 + parent: 2 + - uid: 21825 + components: + - type: Transform + pos: -76.5,184.5 + parent: 2 + - uid: 21826 + components: + - type: Transform + pos: 2.5,2.5 + parent: 21114 + - uid: 21828 + components: + - type: Transform + pos: -74.5,174.5 + parent: 2 + - uid: 21829 + components: + - type: Transform + pos: 2.5,3.5 + parent: 21114 + - uid: 21830 + components: + - type: Transform + pos: -73.5,174.5 + parent: 2 + - uid: 21831 + components: + - type: Transform + pos: -72.5,174.5 + parent: 2 + - uid: 21832 + components: + - type: Transform + pos: -71.5,174.5 + parent: 2 + - uid: 21835 + components: + - type: Transform + pos: -71.5,175.5 + parent: 2 + - uid: 21836 + components: + - type: Transform + pos: -71.5,176.5 + parent: 2 + - uid: 21837 + components: + - type: Transform + pos: -71.5,177.5 + parent: 2 + - uid: 21838 + components: + - type: Transform + pos: -71.5,178.5 + parent: 2 + - uid: 21839 + components: + - type: Transform + pos: -71.5,179.5 + parent: 2 + - uid: 21840 + components: + - type: Transform + pos: -71.5,180.5 + parent: 2 + - uid: 21841 + components: + - type: Transform + pos: -71.5,181.5 + parent: 2 + - uid: 21842 + components: + - type: Transform + pos: -72.5,179.5 + parent: 2 + - uid: 21843 + components: + - type: Transform + pos: -69.5,174.5 + parent: 2 + - uid: 21845 + components: + - type: Transform + pos: -71.5,173.5 + parent: 2 + - uid: 21846 + components: + - type: Transform + pos: -71.5,172.5 + parent: 2 + - uid: 21847 + components: + - type: Transform + pos: -71.5,171.5 + parent: 2 + - uid: 21848 + components: + - type: Transform + pos: -71.5,170.5 + parent: 2 + - uid: 21849 + components: + - type: Transform + pos: -71.5,169.5 + parent: 2 + - uid: 21850 + components: + - type: Transform + pos: -71.5,168.5 + parent: 2 + - uid: 21851 + components: + - type: Transform + pos: -71.5,167.5 + parent: 2 + - uid: 21852 + components: + - type: Transform + pos: -72.5,169.5 + parent: 2 + - uid: 21853 + components: + - type: Transform + pos: -70.5,169.5 + parent: 2 + - uid: 21855 + components: + - type: Transform + pos: -70.5,168.5 + parent: 2 + - uid: 21856 + components: + - type: Transform + pos: -69.5,168.5 + parent: 2 + - uid: 21865 + components: + - type: Transform + pos: -54.5,169.5 + parent: 2 + - uid: 21866 + components: + - type: Transform + pos: -55.5,169.5 + parent: 2 + - uid: 21867 + components: + - type: Transform + pos: -56.5,169.5 + parent: 2 + - uid: 21868 + components: + - type: Transform + pos: -57.5,169.5 + parent: 2 + - uid: 21869 + components: + - type: Transform + pos: -58.5,169.5 + parent: 2 + - uid: 21870 + components: + - type: Transform + pos: -59.5,169.5 + parent: 2 + - uid: 21871 + components: + - type: Transform + pos: -60.5,169.5 + parent: 2 + - uid: 21872 + components: + - type: Transform + pos: -61.5,169.5 + parent: 2 + - uid: 21873 + components: + - type: Transform + pos: -62.5,169.5 + parent: 2 + - uid: 21874 + components: + - type: Transform + pos: -63.5,169.5 + parent: 2 + - uid: 21875 + components: + - type: Transform + pos: -64.5,169.5 + parent: 2 + - uid: 21876 + components: + - type: Transform + pos: -65.5,169.5 + parent: 2 + - uid: 21877 + components: + - type: Transform + pos: -66.5,169.5 + parent: 2 + - uid: 21878 + components: + - type: Transform + pos: 2.5,4.5 + parent: 21114 + - uid: 21879 + components: + - type: Transform + pos: -61.5,170.5 + parent: 2 + - uid: 21880 + components: + - type: Transform + pos: -58.5,170.5 + parent: 2 + - uid: 21881 + components: + - type: Transform + pos: -58.5,171.5 + parent: 2 + - uid: 21882 + components: + - type: Transform + pos: -58.5,172.5 + parent: 2 + - uid: 21883 + components: + - type: Transform + pos: -59.5,172.5 + parent: 2 + - uid: 21884 + components: + - type: Transform + pos: -60.5,172.5 + parent: 2 + - uid: 21885 + components: + - type: Transform + pos: -61.5,172.5 + parent: 2 + - uid: 21886 + components: + - type: Transform + pos: -62.5,172.5 + parent: 2 + - uid: 21887 + components: + - type: Transform + pos: -63.5,172.5 + parent: 2 + - uid: 21889 + components: + - type: Transform + pos: -61.5,173.5 + parent: 2 + - uid: 21890 + components: + - type: Transform + pos: -66.5,170.5 + parent: 2 + - uid: 21891 + components: + - type: Transform + pos: -66.5,171.5 + parent: 2 + - uid: 21892 + components: + - type: Transform + pos: -66.5,172.5 + parent: 2 + - uid: 21893 + components: + - type: Transform + pos: -66.5,173.5 + parent: 2 + - uid: 21894 + components: + - type: Transform + pos: -66.5,174.5 + parent: 2 + - uid: 21895 + components: + - type: Transform + pos: -66.5,175.5 + parent: 2 + - uid: 21896 + components: + - type: Transform + pos: -66.5,176.5 + parent: 2 + - uid: 21897 + components: + - type: Transform + pos: -66.5,177.5 + parent: 2 + - uid: 21898 + components: + - type: Transform + pos: -66.5,178.5 + parent: 2 + - uid: 21899 + components: + - type: Transform + pos: -66.5,168.5 + parent: 2 + - uid: 21900 + components: + - type: Transform + pos: -66.5,167.5 + parent: 2 + - uid: 21901 + components: + - type: Transform + pos: -66.5,166.5 + parent: 2 + - uid: 21902 + components: + - type: Transform + pos: -66.5,165.5 + parent: 2 + - uid: 21903 + components: + - type: Transform + pos: -66.5,164.5 + parent: 2 + - uid: 21904 + components: + - type: Transform + pos: -66.5,163.5 + parent: 2 + - uid: 21905 + components: + - type: Transform + pos: -66.5,162.5 + parent: 2 + - uid: 21906 + components: + - type: Transform + pos: -59.5,166.5 + parent: 2 + - uid: 21907 + components: + - type: Transform + pos: -59.5,167.5 + parent: 2 + - uid: 21908 + components: + - type: Transform + pos: -60.5,162.5 + parent: 2 + - uid: 21909 + components: + - type: Transform + pos: -61.5,162.5 + parent: 2 + - uid: 21910 + components: + - type: Transform + pos: -62.5,162.5 + parent: 2 + - uid: 21911 + components: + - type: Transform + pos: -63.5,162.5 + parent: 2 + - uid: 21912 + components: + - type: Transform + pos: -64.5,162.5 + parent: 2 + - uid: 21913 + components: + - type: Transform + pos: -62.5,163.5 + parent: 2 + - uid: 21914 + components: + - type: Transform + pos: -62.5,164.5 + parent: 2 + - uid: 21915 + components: + - type: Transform + pos: -62.5,165.5 + parent: 2 + - uid: 21916 + components: + - type: Transform + pos: -63.5,165.5 + parent: 2 + - uid: 21917 + components: + - type: Transform + pos: -64.5,165.5 + parent: 2 + - uid: 21918 + components: + - type: Transform + pos: -64.5,166.5 + parent: 2 + - uid: 21919 + components: + - type: Transform + pos: -60.5,161.5 + parent: 2 + - uid: 21920 + components: + - type: Transform + pos: -60.5,160.5 + parent: 2 + - uid: 21921 + components: + - type: Transform + pos: -60.5,159.5 + parent: 2 + - uid: 21922 + components: + - type: Transform + pos: -60.5,158.5 + parent: 2 + - uid: 21923 + components: + - type: Transform + pos: -60.5,157.5 + parent: 2 + - uid: 21924 + components: + - type: Transform + pos: -60.5,156.5 + parent: 2 + - uid: 22030 + components: + - type: Transform + pos: 1.5,2.5 + parent: 21114 + - uid: 22044 + components: + - type: Transform + pos: 0.5,2.5 + parent: 21114 + - uid: 22045 + components: + - type: Transform + pos: 3.5,2.5 + parent: 21114 + - uid: 22046 + components: + - type: Transform + pos: 4.5,2.5 + parent: 21114 + - uid: 22047 + components: + - type: Transform + pos: 5.5,2.5 + parent: 21114 + - uid: 22048 + components: + - type: Transform + pos: 3.5,5.5 + parent: 21114 + - uid: 22049 + components: + - type: Transform + pos: 2.5,5.5 + parent: 21114 + - uid: 22135 + components: + - type: Transform + pos: -68.5,156.5 + parent: 2 + - uid: 22136 + components: + - type: Transform + pos: -69.5,152.5 + parent: 2 + - uid: 22137 + components: + - type: Transform + pos: -69.5,153.5 + parent: 2 + - uid: 22140 + components: + - type: Transform + pos: -67.5,156.5 + parent: 2 + - uid: 22141 + components: + - type: Transform + pos: -66.5,156.5 + parent: 2 + - uid: 22142 + components: + - type: Transform + pos: -65.5,156.5 + parent: 2 + - uid: 22143 + components: + - type: Transform + pos: -64.5,156.5 + parent: 2 + - uid: 22144 + components: + - type: Transform + pos: -63.5,156.5 + parent: 2 + - uid: 22145 + components: + - type: Transform + pos: -62.5,156.5 + parent: 2 + - uid: 22146 + components: + - type: Transform + pos: -62.5,157.5 + parent: 2 + - uid: 22147 + components: + - type: Transform + pos: -62.5,158.5 + parent: 2 + - uid: 22148 + components: + - type: Transform + pos: -63.5,158.5 + parent: 2 + - uid: 22149 + components: + - type: Transform + pos: -64.5,158.5 + parent: 2 + - uid: 22150 + components: + - type: Transform + pos: -65.5,158.5 + parent: 2 + - uid: 22151 + components: + - type: Transform + pos: -66.5,158.5 + parent: 2 + - uid: 22152 + components: + - type: Transform + pos: -67.5,158.5 + parent: 2 + - uid: 22153 + components: + - type: Transform + pos: -68.5,158.5 + parent: 2 + - uid: 22154 + components: + - type: Transform + pos: -72.5,160.5 + parent: 2 + - uid: 22155 + components: + - type: Transform + pos: -72.5,159.5 + parent: 2 + - uid: 22156 + components: + - type: Transform + pos: -72.5,158.5 + parent: 2 + - uid: 22157 + components: + - type: Transform + pos: -73.5,158.5 + parent: 2 + - uid: 22158 + components: + - type: Transform + pos: -74.5,158.5 + parent: 2 + - uid: 22159 + components: + - type: Transform + pos: -75.5,158.5 + parent: 2 + - uid: 22160 + components: + - type: Transform + pos: -76.5,158.5 + parent: 2 + - uid: 22161 + components: + - type: Transform + pos: -77.5,158.5 + parent: 2 + - uid: 22162 + components: + - type: Transform + pos: -78.5,158.5 + parent: 2 + - uid: 22163 + components: + - type: Transform + pos: -79.5,165.5 + parent: 2 + - uid: 22164 + components: + - type: Transform + pos: -79.5,164.5 + parent: 2 + - uid: 22165 + components: + - type: Transform + pos: -79.5,163.5 + parent: 2 + - uid: 22166 + components: + - type: Transform + pos: -79.5,162.5 + parent: 2 + - uid: 22167 + components: + - type: Transform + pos: -79.5,158.5 + parent: 2 + - uid: 22168 + components: + - type: Transform + pos: -79.5,159.5 + parent: 2 + - uid: 22169 + components: + - type: Transform + pos: -80.5,159.5 + parent: 2 + - uid: 22254 + components: + - type: Transform + pos: -120.5,59.5 + parent: 2 + - uid: 22299 + components: + - type: Transform + pos: -124.5,58.5 + parent: 2 + - uid: 22359 + components: + - type: Transform + pos: -108.5,64.5 + parent: 2 + - uid: 22473 + components: + - type: Transform + pos: -19.5,180.5 + parent: 2 + - uid: 22584 + components: + - type: Transform + pos: -116.5,99.5 + parent: 2 + - uid: 22586 + components: + - type: Transform + pos: -120.5,103.5 + parent: 2 + - uid: 22587 + components: + - type: Transform + pos: -125.5,103.5 + parent: 2 + - uid: 22588 + components: + - type: Transform + pos: -119.5,99.5 + parent: 2 + - uid: 22591 + components: + - type: Transform + pos: -135.5,40.5 + parent: 2 + - uid: 22630 + components: + - type: Transform + pos: -119.5,103.5 + parent: 2 + - uid: 22690 + components: + - type: Transform + pos: -121.5,103.5 + parent: 2 + - uid: 22751 + components: + - type: Transform + pos: -10.5,168.5 + parent: 2 + - uid: 22759 + components: + - type: Transform + pos: -14.5,170.5 + parent: 2 + - uid: 22760 + components: + - type: Transform + pos: -13.5,168.5 + parent: 2 + - uid: 22761 + components: + - type: Transform + pos: -12.5,168.5 + parent: 2 + - uid: 22847 + components: + - type: Transform + pos: -121.5,98.5 + parent: 2 + - uid: 22850 + components: + - type: Transform + pos: -124.5,103.5 + parent: 2 + - uid: 23034 + components: + - type: Transform + pos: -115.5,96.5 + parent: 2 + - uid: 23094 + components: + - type: Transform + pos: -117.5,94.5 + parent: 2 + - uid: 23095 + components: + - type: Transform + pos: -116.5,94.5 + parent: 2 + - uid: 23096 + components: + - type: Transform + pos: -123.5,103.5 + parent: 2 + - uid: 23097 + components: + - type: Transform + pos: -128.5,105.5 + parent: 2 + - uid: 23098 + components: + - type: Transform + pos: -128.5,106.5 + parent: 2 + - uid: 23099 + components: + - type: Transform + pos: -128.5,108.5 + parent: 2 + - uid: 23155 + components: + - type: Transform + pos: -115.5,95.5 + parent: 2 + - uid: 23156 + components: + - type: Transform + pos: -118.5,94.5 + parent: 2 + - uid: 23157 + components: + - type: Transform + pos: -115.5,94.5 + parent: 2 + - uid: 23158 + components: + - type: Transform + pos: -117.5,99.5 + parent: 2 + - uid: 23159 + components: + - type: Transform + pos: -122.5,103.5 + parent: 2 + - uid: 23160 + components: + - type: Transform + pos: -115.5,92.5 + parent: 2 + - uid: 23161 + components: + - type: Transform + pos: -125.5,98.5 + parent: 2 + - uid: 23162 + components: + - type: Transform + pos: -114.5,92.5 + parent: 2 + - uid: 23166 + components: + - type: Transform + pos: -125.5,95.5 + parent: 2 + - uid: 23167 + components: + - type: Transform + pos: -116.5,92.5 + parent: 2 + - uid: 23168 + components: + - type: Transform + pos: -114.5,94.5 + parent: 2 + - uid: 23169 + components: + - type: Transform + pos: -115.5,93.5 + parent: 2 + - uid: 23170 + components: + - type: Transform + pos: -117.5,92.5 + parent: 2 + - uid: 23171 + components: + - type: Transform + pos: -121.5,95.5 + parent: 2 + - uid: 23216 + components: + - type: Transform + pos: -131.5,41.5 + parent: 2 + - uid: 23231 + components: + - type: Transform + pos: 44.5,56.5 + parent: 2 + - uid: 23522 + components: + - type: Transform + pos: -131.5,39.5 + parent: 2 + - uid: 23717 + components: + - type: Transform + pos: 12.5,171.5 + parent: 2 + - uid: 23719 + components: + - type: Transform + pos: 11.5,171.5 + parent: 2 + - uid: 23762 + components: + - type: Transform + pos: 9.5,171.5 + parent: 2 + - uid: 23934 + components: + - type: Transform + pos: -30.5,205.5 + parent: 2 + - uid: 23936 + components: + - type: Transform + pos: -130.5,39.5 + parent: 2 + - uid: 24274 + components: + - type: Transform + pos: -122.5,95.5 + parent: 2 + - uid: 24379 + components: + - type: Transform + pos: 20.5,194.5 + parent: 2 + - uid: 24400 + components: + - type: Transform + pos: -123.5,92.5 + parent: 2 + - uid: 24410 + components: + - type: Transform + pos: -21.5,190.5 + parent: 2 + - uid: 24411 + components: + - type: Transform + pos: -21.5,191.5 + parent: 2 + - uid: 24412 + components: + - type: Transform + pos: -21.5,192.5 + parent: 2 + - uid: 24413 + components: + - type: Transform + pos: -22.5,192.5 + parent: 2 + - uid: 24414 + components: + - type: Transform + pos: -23.5,192.5 + parent: 2 + - uid: 24415 + components: + - type: Transform + pos: -23.5,191.5 + parent: 2 + - uid: 24416 + components: + - type: Transform + pos: -23.5,190.5 + parent: 2 + - uid: 24419 + components: + - type: Transform + pos: -21.5,189.5 + parent: 2 + - uid: 24420 + components: + - type: Transform + pos: -21.5,193.5 + parent: 2 + - uid: 24422 + components: + - type: Transform + pos: -20.5,193.5 + parent: 2 + - uid: 24423 + components: + - type: Transform + pos: -19.5,193.5 + parent: 2 + - uid: 24424 + components: + - type: Transform + pos: -19.5,192.5 + parent: 2 + - uid: 24425 + components: + - type: Transform + pos: -18.5,193.5 + parent: 2 + - uid: 24427 + components: + - type: Transform + pos: -18.5,194.5 + parent: 2 + - uid: 24431 + components: + - type: Transform + pos: -10.5,198.5 + parent: 2 + - uid: 24432 + components: + - type: Transform + pos: -9.5,198.5 + parent: 2 + - uid: 24433 + components: + - type: Transform + pos: -8.5,198.5 + parent: 2 + - uid: 24434 + components: + - type: Transform + pos: -7.5,198.5 + parent: 2 + - uid: 24435 + components: + - type: Transform + pos: -6.5,198.5 + parent: 2 + - uid: 24436 + components: + - type: Transform + pos: -6.5,197.5 + parent: 2 + - uid: 24437 + components: + - type: Transform + pos: -6.5,196.5 + parent: 2 + - uid: 24438 + components: + - type: Transform + pos: -9.5,197.5 + parent: 2 + - uid: 24439 + components: + - type: Transform + pos: -10.5,197.5 + parent: 2 + - uid: 24440 + components: + - type: Transform + pos: -11.5,197.5 + parent: 2 + - uid: 24441 + components: + - type: Transform + pos: -12.5,197.5 + parent: 2 + - uid: 24442 + components: + - type: Transform + pos: -13.5,197.5 + parent: 2 + - uid: 24443 + components: + - type: Transform + pos: -14.5,197.5 + parent: 2 + - uid: 24444 + components: + - type: Transform + pos: -15.5,197.5 + parent: 2 + - uid: 24445 + components: + - type: Transform + pos: -16.5,197.5 + parent: 2 + - uid: 24446 + components: + - type: Transform + pos: -17.5,197.5 + parent: 2 + - uid: 24447 + components: + - type: Transform + pos: -18.5,197.5 + parent: 2 + - uid: 24448 + components: + - type: Transform + pos: -95.5,55.5 + parent: 2 + - uid: 24452 + components: + - type: Transform + pos: -10.5,193.5 + parent: 2 + - uid: 24453 + components: + - type: Transform + pos: -11.5,193.5 + parent: 2 + - uid: 24454 + components: + - type: Transform + pos: -12.5,193.5 + parent: 2 + - uid: 24455 + components: + - type: Transform + pos: -13.5,193.5 + parent: 2 + - uid: 24456 + components: + - type: Transform + pos: -14.5,193.5 + parent: 2 + - uid: 24457 + components: + - type: Transform + pos: -15.5,193.5 + parent: 2 + - uid: 24458 + components: + - type: Transform + pos: -15.5,194.5 + parent: 2 + - uid: 24461 + components: + - type: Transform + pos: -11.5,192.5 + parent: 2 + - uid: 24462 + components: + - type: Transform + pos: -11.5,191.5 + parent: 2 + - uid: 24463 + components: + - type: Transform + pos: -11.5,190.5 + parent: 2 + - uid: 24464 + components: + - type: Transform + pos: -11.5,189.5 + parent: 2 + - uid: 24465 + components: + - type: Transform + pos: -11.5,188.5 + parent: 2 + - uid: 24466 + components: + - type: Transform + pos: -11.5,187.5 + parent: 2 + - uid: 24467 + components: + - type: Transform + pos: -11.5,186.5 + parent: 2 + - uid: 24468 + components: + - type: Transform + pos: -11.5,185.5 + parent: 2 + - uid: 24469 + components: + - type: Transform + pos: -12.5,185.5 + parent: 2 + - uid: 24471 + components: + - type: Transform + pos: -13.5,185.5 + parent: 2 + - uid: 24472 + components: + - type: Transform + pos: -10.5,185.5 + parent: 2 + - uid: 24474 + components: + - type: Transform + pos: -12.5,188.5 + parent: 2 + - uid: 24475 + components: + - type: Transform + pos: -13.5,188.5 + parent: 2 + - uid: 24476 + components: + - type: Transform + pos: -14.5,188.5 + parent: 2 + - uid: 24477 + components: + - type: Transform + pos: -15.5,188.5 + parent: 2 + - uid: 24479 + components: + - type: Transform + pos: -12.5,191.5 + parent: 2 + - uid: 24480 + components: + - type: Transform + pos: -13.5,191.5 + parent: 2 + - uid: 24481 + components: + - type: Transform + pos: -14.5,191.5 + parent: 2 + - uid: 24482 + components: + - type: Transform + pos: -15.5,191.5 + parent: 2 + - uid: 24483 + components: + - type: Transform + pos: -16.5,191.5 + parent: 2 + - uid: 24486 + components: + - type: Transform + pos: -9.5,193.5 + parent: 2 + - uid: 24487 + components: + - type: Transform + pos: -8.5,193.5 + parent: 2 + - uid: 24488 + components: + - type: Transform + pos: -7.5,193.5 + parent: 2 + - uid: 24489 + components: + - type: Transform + pos: -6.5,193.5 + parent: 2 + - uid: 24490 + components: + - type: Transform + pos: -6.5,192.5 + parent: 2 + - uid: 24491 + components: + - type: Transform + pos: -6.5,191.5 + parent: 2 + - uid: 24492 + components: + - type: Transform + pos: -6.5,190.5 + parent: 2 + - uid: 24493 + components: + - type: Transform + pos: -6.5,189.5 + parent: 2 + - uid: 24494 + components: + - type: Transform + pos: -6.5,188.5 + parent: 2 + - uid: 24495 + components: + - type: Transform + pos: -8.5,188.5 + parent: 2 + - uid: 24496 + components: + - type: Transform + pos: -8.5,189.5 + parent: 2 + - uid: 24497 + components: + - type: Transform + pos: -8.5,190.5 + parent: 2 + - uid: 24498 + components: + - type: Transform + pos: -8.5,191.5 + parent: 2 + - uid: 24499 + components: + - type: Transform + pos: -8.5,192.5 + parent: 2 + - uid: 24500 + components: + - type: Transform + pos: -7.5,194.5 + parent: 2 + - uid: 24503 + components: + - type: Transform + pos: 1.5,206.5 + parent: 2 + - uid: 24504 + components: + - type: Transform + pos: 1.5,205.5 + parent: 2 + - uid: 24505 + components: + - type: Transform + pos: 1.5,204.5 + parent: 2 + - uid: 24506 + components: + - type: Transform + pos: 1.5,203.5 + parent: 2 + - uid: 24507 + components: + - type: Transform + pos: 1.5,202.5 + parent: 2 + - uid: 24508 + components: + - type: Transform + pos: 1.5,201.5 + parent: 2 + - uid: 24509 + components: + - type: Transform + pos: 1.5,200.5 + parent: 2 + - uid: 24510 + components: + - type: Transform + pos: 1.5,199.5 + parent: 2 + - uid: 24511 + components: + - type: Transform + pos: 1.5,198.5 + parent: 2 + - uid: 24512 + components: + - type: Transform + pos: 1.5,197.5 + parent: 2 + - uid: 24513 + components: + - type: Transform + pos: 0.5,197.5 + parent: 2 + - uid: 24514 + components: + - type: Transform + pos: -0.5,197.5 + parent: 2 + - uid: 24515 + components: + - type: Transform + pos: 0.5,199.5 + parent: 2 + - uid: 24516 + components: + - type: Transform + pos: -0.5,199.5 + parent: 2 + - uid: 24517 + components: + - type: Transform + pos: 0.5,203.5 + parent: 2 + - uid: 24518 + components: + - type: Transform + pos: -0.5,203.5 + parent: 2 + - uid: 24519 + components: + - type: Transform + pos: -0.5,204.5 + parent: 2 + - uid: 24520 + components: + - type: Transform + pos: 1.5,196.5 + parent: 2 + - uid: 24521 + components: + - type: Transform + pos: -5.5,198.5 + parent: 2 + - uid: 24522 + components: + - type: Transform + pos: -5.5,199.5 + parent: 2 + - uid: 24523 + components: + - type: Transform + pos: -5.5,200.5 + parent: 2 + - uid: 24524 + components: + - type: Transform + pos: -10.5,199.5 + parent: 2 + - uid: 24525 + components: + - type: Transform + pos: -10.5,200.5 + parent: 2 + - uid: 24526 + components: + - type: Transform + pos: -13.5,199.5 + parent: 2 + - uid: 24527 + components: + - type: Transform + pos: -13.5,198.5 + parent: 2 + - uid: 24529 + components: + - type: Transform + pos: -10.5,211.5 + parent: 2 + - uid: 24530 + components: + - type: Transform + pos: -10.5,210.5 + parent: 2 + - uid: 24531 + components: + - type: Transform + pos: -10.5,209.5 + parent: 2 + - uid: 24532 + components: + - type: Transform + pos: -9.5,209.5 + parent: 2 + - uid: 24533 + components: + - type: Transform + pos: -8.5,209.5 + parent: 2 + - uid: 24534 + components: + - type: Transform + pos: -7.5,209.5 + parent: 2 + - uid: 24535 + components: + - type: Transform + pos: -6.5,209.5 + parent: 2 + - uid: 24536 + components: + - type: Transform + pos: -6.5,208.5 + parent: 2 + - uid: 24537 + components: + - type: Transform + pos: -6.5,207.5 + parent: 2 + - uid: 24538 + components: + - type: Transform + pos: -11.5,209.5 + parent: 2 + - uid: 24539 + components: + - type: Transform + pos: -11.5,208.5 + parent: 2 + - uid: 24540 + components: + - type: Transform + pos: -11.5,207.5 + parent: 2 + - uid: 24542 + components: + - type: Transform + pos: -18.5,206.5 + parent: 2 + - uid: 24543 + components: + - type: Transform + pos: -17.5,206.5 + parent: 2 + - uid: 24544 + components: + - type: Transform + pos: -16.5,206.5 + parent: 2 + - uid: 24545 + components: + - type: Transform + pos: -15.5,206.5 + parent: 2 + - uid: 24546 + components: + - type: Transform + pos: -14.5,206.5 + parent: 2 + - uid: 24547 + components: + - type: Transform + pos: -14.5,205.5 + parent: 2 + - uid: 24548 + components: + - type: Transform + pos: -14.5,204.5 + parent: 2 + - uid: 24549 + components: + - type: Transform + pos: -17.5,205.5 + parent: 2 + - uid: 24550 + components: + - type: Transform + pos: -17.5,204.5 + parent: 2 + - uid: 24551 + components: + - type: Transform + pos: -19.5,206.5 + parent: 2 + - uid: 24552 + components: + - type: Transform + pos: -20.5,206.5 + parent: 2 + - uid: 24553 + components: + - type: Transform + pos: -20.5,205.5 + parent: 2 + - uid: 24555 + components: + - type: Transform + pos: 6.5,185.5 + parent: 2 + - uid: 24556 + components: + - type: Transform + pos: 5.5,185.5 + parent: 2 + - uid: 24557 + components: + - type: Transform + pos: 4.5,185.5 + parent: 2 + - uid: 24558 + components: + - type: Transform + pos: 3.5,185.5 + parent: 2 + - uid: 24559 + components: + - type: Transform + pos: 2.5,185.5 + parent: 2 + - uid: 24560 + components: + - type: Transform + pos: 5.5,184.5 + parent: 2 + - uid: 24561 + components: + - type: Transform + pos: 5.5,183.5 + parent: 2 + - uid: 24562 + components: + - type: Transform + pos: 4.5,183.5 + parent: 2 + - uid: 24563 + components: + - type: Transform + pos: 3.5,183.5 + parent: 2 + - uid: 24564 + components: + - type: Transform + pos: 2.5,183.5 + parent: 2 + - uid: 24565 + components: + - type: Transform + pos: 1.5,185.5 + parent: 2 + - uid: 24566 + components: + - type: Transform + pos: 1.5,186.5 + parent: 2 + - uid: 24567 + components: + - type: Transform + pos: 1.5,183.5 + parent: 2 + - uid: 24570 + components: + - type: Transform + pos: -3.5,179.5 + parent: 2 + - uid: 24571 + components: + - type: Transform + pos: -3.5,180.5 + parent: 2 + - uid: 24572 + components: + - type: Transform + pos: -3.5,181.5 + parent: 2 + - uid: 24573 + components: + - type: Transform + pos: -3.5,178.5 + parent: 2 + - uid: 24574 + components: + - type: Transform + pos: -3.5,177.5 + parent: 2 + - uid: 24575 + components: + - type: Transform + pos: -4.5,177.5 + parent: 2 + - uid: 24576 + components: + - type: Transform + pos: -4.5,176.5 + parent: 2 + - uid: 24577 + components: + - type: Transform + pos: -4.5,175.5 + parent: 2 + - uid: 24580 + components: + - type: Transform + pos: -18.5,180.5 + parent: 2 + - uid: 24581 + components: + - type: Transform + pos: -18.5,179.5 + parent: 2 + - uid: 24582 + components: + - type: Transform + pos: -18.5,178.5 + parent: 2 + - uid: 24583 + components: + - type: Transform + pos: -19.5,178.5 + parent: 2 + - uid: 24584 + components: + - type: Transform + pos: -20.5,178.5 + parent: 2 + - uid: 24586 + components: + - type: Transform + pos: -27.5,200.5 + parent: 2 + - uid: 24587 + components: + - type: Transform + pos: -26.5,200.5 + parent: 2 + - uid: 24588 + components: + - type: Transform + pos: -25.5,200.5 + parent: 2 + - uid: 24589 + components: + - type: Transform + pos: -24.5,200.5 + parent: 2 + - uid: 24590 + components: + - type: Transform + pos: -23.5,200.5 + parent: 2 + - uid: 24591 + components: + - type: Transform + pos: -25.5,199.5 + parent: 2 + - uid: 24592 + components: + - type: Transform + pos: -23.5,199.5 + parent: 2 + - uid: 24593 + components: + - type: Transform + pos: -23.5,201.5 + parent: 2 + - uid: 24594 + components: + - type: Transform + pos: -25.5,201.5 + parent: 2 + - uid: 24595 + components: + - type: Transform + pos: -23.5,202.5 + parent: 2 + - uid: 24596 + components: + - type: Transform + pos: -22.5,202.5 + parent: 2 + - uid: 24598 + components: + - type: Transform + pos: -27.5,204.5 + parent: 2 + - uid: 24599 + components: + - type: Transform + pos: -28.5,204.5 + parent: 2 + - uid: 24601 + components: + - type: Transform + pos: -28.5,206.5 + parent: 2 + - uid: 24602 + components: + - type: Transform + pos: -29.5,204.5 + parent: 2 + - uid: 24603 + components: + - type: Transform + pos: -29.5,203.5 + parent: 2 + - uid: 24604 + components: + - type: Transform + pos: -29.5,202.5 + parent: 2 + - uid: 24605 + components: + - type: Transform + pos: -29.5,201.5 + parent: 2 + - uid: 24606 + components: + - type: Transform + pos: -29.5,200.5 + parent: 2 + - uid: 24607 + components: + - type: Transform + pos: -29.5,199.5 + parent: 2 + - uid: 24608 + components: + - type: Transform + pos: -30.5,199.5 + parent: 2 + - uid: 24609 + components: + - type: Transform + pos: -31.5,199.5 + parent: 2 + - uid: 24610 + components: + - type: Transform + pos: -32.5,199.5 + parent: 2 + - uid: 24611 + components: + - type: Transform + pos: -33.5,199.5 + parent: 2 + - uid: 24612 + components: + - type: Transform + pos: -30.5,201.5 + parent: 2 + - uid: 24613 + components: + - type: Transform + pos: -31.5,201.5 + parent: 2 + - uid: 24614 + components: + - type: Transform + pos: -32.5,201.5 + parent: 2 + - uid: 24615 + components: + - type: Transform + pos: -33.5,201.5 + parent: 2 + - uid: 24619 + components: + - type: Transform + pos: -32.5,205.5 + parent: 2 + - uid: 24621 + components: + - type: Transform + pos: -25.5,210.5 + parent: 2 + - uid: 24622 + components: + - type: Transform + pos: -25.5,209.5 + parent: 2 + - uid: 24623 + components: + - type: Transform + pos: -26.5,209.5 + parent: 2 + - uid: 24624 + components: + - type: Transform + pos: -27.5,209.5 + parent: 2 + - uid: 24625 + components: + - type: Transform + pos: -28.5,209.5 + parent: 2 + - uid: 24626 + components: + - type: Transform + pos: -29.5,209.5 + parent: 2 + - uid: 24627 + components: + - type: Transform + pos: -29.5,210.5 + parent: 2 + - uid: 24628 + components: + - type: Transform + pos: -29.5,211.5 + parent: 2 + - uid: 24629 + components: + - type: Transform + pos: -27.5,210.5 + parent: 2 + - uid: 24630 + components: + - type: Transform + pos: -27.5,211.5 + parent: 2 + - uid: 24631 + components: + - type: Transform + pos: -23.5,209.5 + parent: 2 + - uid: 24632 + components: + - type: Transform + pos: -22.5,209.5 + parent: 2 + - uid: 24633 + components: + - type: Transform + pos: -21.5,209.5 + parent: 2 + - uid: 24634 + components: + - type: Transform + pos: -20.5,209.5 + parent: 2 + - uid: 24635 + components: + - type: Transform + pos: -19.5,209.5 + parent: 2 + - uid: 24636 + components: + - type: Transform + pos: -19.5,210.5 + parent: 2 + - uid: 24637 + components: + - type: Transform + pos: -18.5,210.5 + parent: 2 + - uid: 24638 + components: + - type: Transform + pos: -17.5,210.5 + parent: 2 + - uid: 24639 + components: + - type: Transform + pos: -17.5,211.5 + parent: 2 + - uid: 24640 + components: + - type: Transform + pos: -16.5,211.5 + parent: 2 + - uid: 24641 + components: + - type: Transform + pos: -15.5,211.5 + parent: 2 + - uid: 24642 + components: + - type: Transform + pos: -15.5,212.5 + parent: 2 + - uid: 24643 + components: + - type: Transform + pos: -14.5,212.5 + parent: 2 + - uid: 24644 + components: + - type: Transform + pos: -13.5,212.5 + parent: 2 + - uid: 24645 + components: + - type: Transform + pos: -12.5,213.5 + parent: 2 + - uid: 24646 + components: + - type: Transform + pos: -11.5,213.5 + parent: 2 + - uid: 24647 + components: + - type: Transform + pos: -10.5,213.5 + parent: 2 + - uid: 24648 + components: + - type: Transform + pos: -9.5,213.5 + parent: 2 + - uid: 24649 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 24650 + components: + - type: Transform + pos: -24.5,208.5 + parent: 2 + - uid: 24651 + components: + - type: Transform + pos: -24.5,207.5 + parent: 2 + - uid: 24652 + components: + - type: Transform + pos: -24.5,206.5 + parent: 2 + - uid: 24653 + components: + - type: Transform + pos: -24.5,205.5 + parent: 2 + - uid: 24655 + components: + - type: Transform + pos: -25.5,205.5 + parent: 2 + - uid: 24658 + components: + - type: Transform + pos: -24.5,209.5 + parent: 2 + - uid: 24662 + components: + - type: Transform + pos: 1.5,209.5 + parent: 2 + - uid: 24663 + components: + - type: Transform + pos: 1.5,210.5 + parent: 2 + - uid: 24664 + components: + - type: Transform + pos: 0.5,210.5 + parent: 2 + - uid: 24665 + components: + - type: Transform + pos: -0.5,210.5 + parent: 2 + - uid: 24666 + components: + - type: Transform + pos: -1.5,210.5 + parent: 2 + - uid: 24667 + components: + - type: Transform + pos: -2.5,210.5 + parent: 2 + - uid: 24668 + components: + - type: Transform + pos: -3.5,210.5 + parent: 2 + - uid: 24669 + components: + - type: Transform + pos: -3.5,211.5 + parent: 2 + - uid: 24670 + components: + - type: Transform + pos: -3.5,212.5 + parent: 2 + - uid: 24671 + components: + - type: Transform + pos: -3.5,213.5 + parent: 2 + - uid: 24672 + components: + - type: Transform + pos: -4.5,213.5 + parent: 2 + - uid: 24673 + components: + - type: Transform + pos: -5.5,213.5 + parent: 2 + - uid: 24674 + components: + - type: Transform + pos: -6.5,213.5 + parent: 2 + - uid: 24675 + components: + - type: Transform + pos: -7.5,213.5 + parent: 2 + - uid: 24676 + components: + - type: Transform + pos: -3.5,209.5 + parent: 2 + - uid: 24677 + components: + - type: Transform + pos: 2.5,210.5 + parent: 2 + - uid: 24678 + components: + - type: Transform + pos: 3.5,210.5 + parent: 2 + - uid: 24679 + components: + - type: Transform + pos: 4.5,210.5 + parent: 2 + - uid: 24680 + components: + - type: Transform + pos: 5.5,210.5 + parent: 2 + - uid: 24681 + components: + - type: Transform + pos: 5.5,209.5 + parent: 2 + - uid: 24682 + components: + - type: Transform + pos: 6.5,209.5 + parent: 2 + - uid: 24683 + components: + - type: Transform + pos: 6.5,208.5 + parent: 2 + - uid: 24684 + components: + - type: Transform + pos: 6.5,207.5 + parent: 2 + - uid: 24685 + components: + - type: Transform + pos: 6.5,206.5 + parent: 2 + - uid: 24686 + components: + - type: Transform + pos: 6.5,205.5 + parent: 2 + - uid: 24687 + components: + - type: Transform + pos: 7.5,205.5 + parent: 2 + - uid: 24688 + components: + - type: Transform + pos: 7.5,204.5 + parent: 2 + - uid: 24689 + components: + - type: Transform + pos: 8.5,204.5 + parent: 2 + - uid: 24690 + components: + - type: Transform + pos: 8.5,203.5 + parent: 2 + - uid: 24691 + components: + - type: Transform + pos: 9.5,203.5 + parent: 2 + - uid: 24692 + components: + - type: Transform + pos: 10.5,203.5 + parent: 2 + - uid: 24693 + components: + - type: Transform + pos: 11.5,203.5 + parent: 2 + - uid: 24694 + components: + - type: Transform + pos: 12.5,203.5 + parent: 2 + - uid: 24695 + components: + - type: Transform + pos: 13.5,203.5 + parent: 2 + - uid: 24696 + components: + - type: Transform + pos: 14.5,203.5 + parent: 2 + - uid: 24697 + components: + - type: Transform + pos: 15.5,203.5 + parent: 2 + - uid: 24698 + components: + - type: Transform + pos: 16.5,203.5 + parent: 2 + - uid: 24699 + components: + - type: Transform + pos: 16.5,202.5 + parent: 2 + - uid: 24700 + components: + - type: Transform + pos: 17.5,202.5 + parent: 2 + - uid: 24701 + components: + - type: Transform + pos: 18.5,202.5 + parent: 2 + - uid: 24702 + components: + - type: Transform + pos: 19.5,202.5 + parent: 2 + - uid: 24703 + components: + - type: Transform + pos: 19.5,201.5 + parent: 2 + - uid: 24704 + components: + - type: Transform + pos: 9.5,202.5 + parent: 2 + - uid: 24705 + components: + - type: Transform + pos: 9.5,201.5 + parent: 2 + - uid: 24706 + components: + - type: Transform + pos: 8.5,201.5 + parent: 2 + - uid: 24707 + components: + - type: Transform + pos: 7.5,201.5 + parent: 2 + - uid: 24710 + components: + - type: Transform + pos: 21.5,198.5 + parent: 2 + - uid: 24711 + components: + - type: Transform + pos: 22.5,198.5 + parent: 2 + - uid: 24712 + components: + - type: Transform + pos: 22.5,199.5 + parent: 2 + - uid: 24713 + components: + - type: Transform + pos: 22.5,200.5 + parent: 2 + - uid: 24714 + components: + - type: Transform + pos: 22.5,201.5 + parent: 2 + - uid: 24715 + components: + - type: Transform + pos: 23.5,198.5 + parent: 2 + - uid: 24716 + components: + - type: Transform + pos: 24.5,198.5 + parent: 2 + - uid: 24717 + components: + - type: Transform + pos: 24.5,197.5 + parent: 2 + - uid: 24720 + components: + - type: Transform + pos: 22.5,183.5 + parent: 2 + - uid: 24721 + components: + - type: Transform + pos: 21.5,183.5 + parent: 2 + - uid: 24723 + components: + - type: Transform + pos: 22.5,184.5 + parent: 2 + - uid: 24724 + components: + - type: Transform + pos: 22.5,185.5 + parent: 2 + - uid: 24725 + components: + - type: Transform + pos: 23.5,185.5 + parent: 2 + - uid: 24726 + components: + - type: Transform + pos: 23.5,186.5 + parent: 2 + - uid: 24727 + components: + - type: Transform + pos: 19.5,182.5 + parent: 2 + - uid: 24728 + components: + - type: Transform + pos: 24.5,186.5 + parent: 2 + - uid: 24729 + components: + - type: Transform + pos: 24.5,187.5 + parent: 2 + - uid: 24730 + components: + - type: Transform + pos: 24.5,188.5 + parent: 2 + - uid: 24731 + components: + - type: Transform + pos: 24.5,189.5 + parent: 2 + - uid: 24732 + components: + - type: Transform + pos: 24.5,190.5 + parent: 2 + - uid: 24733 + components: + - type: Transform + pos: 24.5,191.5 + parent: 2 + - uid: 24734 + components: + - type: Transform + pos: 24.5,192.5 + parent: 2 + - uid: 24735 + components: + - type: Transform + pos: 24.5,193.5 + parent: 2 + - uid: 24736 + components: + - type: Transform + pos: 24.5,194.5 + parent: 2 + - uid: 24737 + components: + - type: Transform + pos: 20.5,183.5 + parent: 2 + - uid: 24738 + components: + - type: Transform + pos: 20.5,182.5 + parent: 2 + - uid: 24740 + components: + - type: Transform + pos: 20.5,181.5 + parent: 2 + - uid: 24741 + components: + - type: Transform + pos: 20.5,180.5 + parent: 2 + - uid: 24742 + components: + - type: Transform + pos: 21.5,180.5 + parent: 2 + - uid: 24743 + components: + - type: Transform + pos: 22.5,180.5 + parent: 2 + - uid: 24744 + components: + - type: Transform + pos: 22.5,179.5 + parent: 2 + - uid: 24745 + components: + - type: Transform + pos: 22.5,178.5 + parent: 2 + - uid: 24746 + components: + - type: Transform + pos: 22.5,177.5 + parent: 2 + - uid: 24747 + components: + - type: Transform + pos: 22.5,176.5 + parent: 2 + - uid: 24749 + components: + - type: Transform + pos: 20.5,179.5 + parent: 2 + - uid: 24750 + components: + - type: Transform + pos: 20.5,178.5 + parent: 2 + - uid: 24751 + components: + - type: Transform + pos: 20.5,177.5 + parent: 2 + - uid: 24752 + components: + - type: Transform + pos: 20.5,176.5 + parent: 2 + - uid: 24756 + components: + - type: Transform + pos: 18.5,182.5 + parent: 2 + - uid: 24757 + components: + - type: Transform + pos: 18.5,181.5 + parent: 2 + - uid: 24758 + components: + - type: Transform + pos: 17.5,181.5 + parent: 2 + - uid: 24759 + components: + - type: Transform + pos: -25.5,176.5 + parent: 2 + - uid: 24760 + components: + - type: Transform + pos: 17.5,180.5 + parent: 2 + - uid: 24761 + components: + - type: Transform + pos: 16.5,180.5 + parent: 2 + - uid: 24762 + components: + - type: Transform + pos: 15.5,180.5 + parent: 2 + - uid: 24763 + components: + - type: Transform + pos: 14.5,180.5 + parent: 2 + - uid: 24764 + components: + - type: Transform + pos: 13.5,180.5 + parent: 2 + - uid: 24765 + components: + - type: Transform + pos: 12.5,180.5 + parent: 2 + - uid: 24766 + components: + - type: Transform + pos: 11.5,180.5 + parent: 2 + - uid: 24767 + components: + - type: Transform + pos: 10.5,180.5 + parent: 2 + - uid: 24768 + components: + - type: Transform + pos: 9.5,180.5 + parent: 2 + - uid: 24789 + components: + - type: Transform + pos: -24.5,173.5 + parent: 2 + - uid: 24790 + components: + - type: Transform + pos: -24.5,174.5 + parent: 2 + - uid: 24791 + components: + - type: Transform + pos: -24.5,175.5 + parent: 2 + - uid: 24792 + components: + - type: Transform + pos: -24.5,176.5 + parent: 2 + - uid: 24803 + components: + - type: Transform + pos: -118.5,92.5 + parent: 2 + - uid: 24813 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 + - uid: 24973 + components: + - type: Transform + pos: 17.5,193.5 + parent: 2 + - uid: 24974 + components: + - type: Transform + pos: 17.5,192.5 + parent: 2 + - uid: 24975 + components: + - type: Transform + pos: 19.5,192.5 + parent: 2 + - uid: 24976 + components: + - type: Transform + pos: 18.5,192.5 + parent: 2 + - uid: 24977 + components: + - type: Transform + pos: 20.5,192.5 + parent: 2 + - uid: 24978 + components: + - type: Transform + pos: 17.5,194.5 + parent: 2 + - uid: 24979 + components: + - type: Transform + pos: 18.5,194.5 + parent: 2 + - uid: 24980 + components: + - type: Transform + pos: 19.5,194.5 + parent: 2 + - uid: 24981 + components: + - type: Transform + pos: 22.5,192.5 + parent: 2 + - uid: 24982 + components: + - type: Transform + pos: 21.5,192.5 + parent: 2 + - uid: 24983 + components: + - type: Transform + pos: 20.5,191.5 + parent: 2 + - uid: 24984 + components: + - type: Transform + pos: 20.5,190.5 + parent: 2 + - uid: 24985 + components: + - type: Transform + pos: 20.5,189.5 + parent: 2 + - uid: 24987 + components: + - type: Transform + pos: 9.5,184.5 + parent: 2 + - uid: 24988 + components: + - type: Transform + pos: 10.5,184.5 + parent: 2 + - uid: 24989 + components: + - type: Transform + pos: 11.5,184.5 + parent: 2 + - uid: 24991 + components: + - type: Transform + pos: 11.5,185.5 + parent: 2 + - uid: 25024 + components: + - type: Transform + pos: -4.5,174.5 + parent: 2 + - uid: 25050 + components: + - type: Transform + pos: -13.5,164.5 + parent: 2 + - uid: 25057 + components: + - type: Transform + pos: -128.5,102.5 + parent: 2 + - uid: 25060 + components: + - type: Transform + pos: -10.5,164.5 + parent: 2 + - uid: 25104 + components: + - type: Transform + pos: -93.5,53.5 + parent: 2 + - uid: 25191 + components: + - type: Transform + pos: -134.5,90.5 + parent: 2 + - uid: 25196 + components: + - type: Transform + pos: -135.5,90.5 + parent: 2 + - uid: 25199 + components: + - type: Transform + pos: -122.5,92.5 + parent: 2 + - uid: 25233 + components: + - type: Transform + pos: -123.5,97.5 + parent: 2 + - uid: 25241 + components: + - type: Transform + pos: -127.5,91.5 + parent: 2 + - uid: 25242 + components: + - type: Transform + pos: -123.5,94.5 + parent: 2 + - uid: 25245 + components: + - type: Transform + pos: -123.5,98.5 + parent: 2 + - uid: 25328 + components: + - type: Transform + pos: -124.5,107.5 + parent: 2 + - uid: 25463 + components: + - type: Transform + pos: 10.5,171.5 + parent: 2 + - uid: 25521 + components: + - type: Transform + pos: 15.5,171.5 + parent: 2 + - uid: 25522 + components: + - type: Transform + pos: 13.5,171.5 + parent: 2 + - uid: 25565 + components: + - type: Transform + pos: 8.5,173.5 + parent: 2 + - uid: 25566 + components: + - type: Transform + pos: 8.5,172.5 + parent: 2 + - uid: 25567 + components: + - type: Transform + pos: 8.5,171.5 + parent: 2 + - uid: 25571 + components: + - type: Transform + pos: 14.5,171.5 + parent: 2 + - uid: 25575 + components: + - type: Transform + pos: 16.5,171.5 + parent: 2 + - uid: 25576 + components: + - type: Transform + pos: 17.5,171.5 + parent: 2 + - uid: 25577 + components: + - type: Transform + pos: 17.5,172.5 + parent: 2 + - uid: 25578 + components: + - type: Transform + pos: 17.5,173.5 + parent: 2 + - uid: 25579 + components: + - type: Transform + pos: 17.5,174.5 + parent: 2 + - uid: 25580 + components: + - type: Transform + pos: 17.5,175.5 + parent: 2 + - uid: 25581 + components: + - type: Transform + pos: 17.5,176.5 + parent: 2 + - uid: 25582 + components: + - type: Transform + pos: 17.5,177.5 + parent: 2 + - uid: 25583 + components: + - type: Transform + pos: 17.5,178.5 + parent: 2 + - uid: 25584 + components: + - type: Transform + pos: 6.5,171.5 + parent: 2 + - uid: 25585 + components: + - type: Transform + pos: 5.5,171.5 + parent: 2 + - uid: 25586 + components: + - type: Transform + pos: 4.5,171.5 + parent: 2 + - uid: 25587 + components: + - type: Transform + pos: 7.5,171.5 + parent: 2 + - uid: 25592 + components: + - type: Transform + pos: 6.5,175.5 + parent: 2 + - uid: 25593 + components: + - type: Transform + pos: 6.5,176.5 + parent: 2 + - uid: 25594 + components: + - type: Transform + pos: 6.5,177.5 + parent: 2 + - uid: 25595 + components: + - type: Transform + pos: 4.5,174.5 + parent: 2 + - uid: 25596 + components: + - type: Transform + pos: 5.5,174.5 + parent: 2 + - uid: 25597 + components: + - type: Transform + pos: 5.5,176.5 + parent: 2 + - uid: 25618 + components: + - type: Transform + pos: 4.5,190.5 + parent: 2 + - uid: 25619 + components: + - type: Transform + pos: 4.5,191.5 + parent: 2 + - uid: 25620 + components: + - type: Transform + pos: 4.5,192.5 + parent: 2 + - uid: 25621 + components: + - type: Transform + pos: 4.5,193.5 + parent: 2 + - uid: 25622 + components: + - type: Transform + pos: 5.5,191.5 + parent: 2 + - uid: 25623 + components: + - type: Transform + pos: 6.5,191.5 + parent: 2 + - uid: 25624 + components: + - type: Transform + pos: 6.5,192.5 + parent: 2 + - uid: 25625 + components: + - type: Transform + pos: 6.5,193.5 + parent: 2 + - uid: 25690 + components: + - type: Transform + pos: -14.5,169.5 + parent: 2 + - uid: 25691 + components: + - type: Transform + pos: -14.5,168.5 + parent: 2 + - uid: 25775 + components: + - type: Transform + pos: -11.5,168.5 + parent: 2 + - uid: 25783 + components: + - type: Transform + pos: -17.5,166.5 + parent: 2 + - uid: 25784 + components: + - type: Transform + pos: -18.5,166.5 + parent: 2 + - uid: 25785 + components: + - type: Transform + pos: -19.5,166.5 + parent: 2 + - uid: 25786 + components: + - type: Transform + pos: -20.5,166.5 + parent: 2 + - uid: 25787 + components: + - type: Transform + pos: -21.5,166.5 + parent: 2 + - uid: 25788 + components: + - type: Transform + pos: -22.5,166.5 + parent: 2 + - uid: 25789 + components: + - type: Transform + pos: -23.5,166.5 + parent: 2 + - uid: 25790 + components: + - type: Transform + pos: -24.5,166.5 + parent: 2 + - uid: 25791 + components: + - type: Transform + pos: -25.5,166.5 + parent: 2 + - uid: 25792 + components: + - type: Transform + pos: -20.5,162.5 + parent: 2 + - uid: 25793 + components: + - type: Transform + pos: -20.5,163.5 + parent: 2 + - uid: 25794 + components: + - type: Transform + pos: -20.5,164.5 + parent: 2 + - uid: 25795 + components: + - type: Transform + pos: -20.5,165.5 + parent: 2 + - uid: 25796 + components: + - type: Transform + pos: -18.5,162.5 + parent: 2 + - uid: 25797 + components: + - type: Transform + pos: -18.5,163.5 + parent: 2 + - uid: 25798 + components: + - type: Transform + pos: -18.5,164.5 + parent: 2 + - uid: 25799 + components: + - type: Transform + pos: -18.5,165.5 + parent: 2 + - uid: 25802 + components: + - type: Transform + pos: -8.5,166.5 + parent: 2 + - uid: 25803 + components: + - type: Transform + pos: -8.5,167.5 + parent: 2 + - uid: 25804 + components: + - type: Transform + pos: -8.5,168.5 + parent: 2 + - uid: 25805 + components: + - type: Transform + pos: -8.5,169.5 + parent: 2 + - uid: 25806 + components: + - type: Transform + pos: -8.5,170.5 + parent: 2 + - uid: 25810 + components: + - type: Transform + pos: -10.5,170.5 + parent: 2 + - uid: 25811 + components: + - type: Transform + pos: -9.5,170.5 + parent: 2 + - uid: 25812 + components: + - type: Transform + pos: -12.5,170.5 + parent: 2 + - uid: 25824 + components: + - type: Transform + pos: -8.5,171.5 + parent: 2 + - uid: 25837 + components: + - type: Transform + pos: -5.5,172.5 + parent: 2 + - uid: 25838 + components: + - type: Transform + pos: -5.5,171.5 + parent: 2 + - uid: 25839 + components: + - type: Transform + pos: -5.5,170.5 + parent: 2 + - uid: 25840 + components: + - type: Transform + pos: -4.5,170.5 + parent: 2 + - uid: 25841 + components: + - type: Transform + pos: -3.5,170.5 + parent: 2 + - uid: 25842 + components: + - type: Transform + pos: -2.5,170.5 + parent: 2 + - uid: 25843 + components: + - type: Transform + pos: -3.5,169.5 + parent: 2 + - uid: 25844 + components: + - type: Transform + pos: -3.5,168.5 + parent: 2 + - uid: 25845 + components: + - type: Transform + pos: -3.5,167.5 + parent: 2 + - uid: 25846 + components: + - type: Transform + pos: -3.5,166.5 + parent: 2 + - uid: 25847 + components: + - type: Transform + pos: -2.5,166.5 + parent: 2 + - uid: 25848 + components: + - type: Transform + pos: -1.5,166.5 + parent: 2 + - uid: 25849 + components: + - type: Transform + pos: -0.5,166.5 + parent: 2 + - uid: 25850 + components: + - type: Transform + pos: 0.5,166.5 + parent: 2 + - uid: 25851 + components: + - type: Transform + pos: 1.5,166.5 + parent: 2 + - uid: 25852 + components: + - type: Transform + pos: 2.5,166.5 + parent: 2 + - uid: 25853 + components: + - type: Transform + pos: 3.5,166.5 + parent: 2 + - uid: 25854 + components: + - type: Transform + pos: 4.5,166.5 + parent: 2 + - uid: 25855 + components: + - type: Transform + pos: 5.5,166.5 + parent: 2 + - uid: 25856 + components: + - type: Transform + pos: 6.5,166.5 + parent: 2 + - uid: 25857 + components: + - type: Transform + pos: 1.5,165.5 + parent: 2 + - uid: 25858 + components: + - type: Transform + pos: 1.5,164.5 + parent: 2 + - uid: 25859 + components: + - type: Transform + pos: 1.5,163.5 + parent: 2 + - uid: 25860 + components: + - type: Transform + pos: 1.5,162.5 + parent: 2 + - uid: 25861 + components: + - type: Transform + pos: -0.5,165.5 + parent: 2 + - uid: 25862 + components: + - type: Transform + pos: -0.5,164.5 + parent: 2 + - uid: 25863 + components: + - type: Transform + pos: -0.5,163.5 + parent: 2 + - uid: 25864 + components: + - type: Transform + pos: -0.5,162.5 + parent: 2 + - uid: 25865 + components: + - type: Transform + pos: -4.5,166.5 + parent: 2 + - uid: 25866 + components: + - type: Transform + pos: -5.5,166.5 + parent: 2 + - uid: 26004 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 26008 + components: + - type: Transform + pos: -16.5,166.5 + parent: 2 + - uid: 26159 + components: + - type: Transform + pos: 79.5,32.5 + parent: 2 + - uid: 26329 + components: + - type: Transform + pos: -24.5,177.5 + parent: 2 + - uid: 26346 + components: + - type: Transform + pos: -29.5,189.5 + parent: 2 + - uid: 26347 + components: + - type: Transform + pos: -29.5,190.5 + parent: 2 + - uid: 26348 + components: + - type: Transform + pos: -29.5,191.5 + parent: 2 + - uid: 26349 + components: + - type: Transform + pos: -29.5,192.5 + parent: 2 + - uid: 26350 + components: + - type: Transform + pos: -30.5,192.5 + parent: 2 + - uid: 26351 + components: + - type: Transform + pos: -31.5,192.5 + parent: 2 + - uid: 26352 + components: + - type: Transform + pos: -32.5,192.5 + parent: 2 + - uid: 26353 + components: + - type: Transform + pos: -33.5,192.5 + parent: 2 + - uid: 26354 + components: + - type: Transform + pos: -34.5,192.5 + parent: 2 + - uid: 26355 + components: + - type: Transform + pos: -35.5,192.5 + parent: 2 + - uid: 26419 + components: + - type: Transform + pos: -33.5,104.5 + parent: 2 + - uid: 26431 + components: + - type: Transform + pos: -95.5,54.5 + parent: 2 + - uid: 26432 + components: + - type: Transform + pos: -94.5,55.5 + parent: 2 + - uid: 26433 + components: + - type: Transform + pos: -94.5,56.5 + parent: 2 + - uid: 26434 + components: + - type: Transform + pos: -93.5,56.5 + parent: 2 + - uid: 26435 + components: + - type: Transform + pos: -92.5,56.5 + parent: 2 + - uid: 26436 + components: + - type: Transform + pos: -92.5,57.5 + parent: 2 + - uid: 26438 + components: + - type: Transform + pos: -91.5,57.5 + parent: 2 + - uid: 26439 + components: + - type: Transform + pos: -92.5,57.5 + parent: 2 + - uid: 26440 + components: + - type: Transform + pos: -92.5,56.5 + parent: 2 + - uid: 26441 + components: + - type: Transform + pos: -90.5,57.5 + parent: 2 + - uid: 26442 + components: + - type: Transform + pos: -90.5,58.5 + parent: 2 + - uid: 26443 + components: + - type: Transform + pos: -89.5,58.5 + parent: 2 + - uid: 26449 + components: + - type: Transform + pos: -76.5,65.5 + parent: 2 + - uid: 26450 + components: + - type: Transform + pos: -76.5,64.5 + parent: 2 + - uid: 26451 + components: + - type: Transform + pos: -77.5,64.5 + parent: 2 + - uid: 26452 + components: + - type: Transform + pos: -78.5,64.5 + parent: 2 + - uid: 26453 + components: + - type: Transform + pos: -78.5,63.5 + parent: 2 + - uid: 26454 + components: + - type: Transform + pos: -79.5,63.5 + parent: 2 + - uid: 26455 + components: + - type: Transform + pos: -80.5,63.5 + parent: 2 + - uid: 26456 + components: + - type: Transform + pos: -80.5,62.5 + parent: 2 + - uid: 26457 + components: + - type: Transform + pos: -82.5,62.5 + parent: 2 + - uid: 26458 + components: + - type: Transform + pos: -81.5,62.5 + parent: 2 + - uid: 26460 + components: + - type: Transform + pos: -82.5,61.5 + parent: 2 + - uid: 26461 + components: + - type: Transform + pos: -83.5,61.5 + parent: 2 + - uid: 26506 + components: + - type: Transform + pos: -125.5,105.5 + parent: 2 + - uid: 26526 + components: + - type: Transform + pos: -125.5,106.5 + parent: 2 + - uid: 26539 + components: + - type: Transform + pos: -88.5,87.5 + parent: 2 + - uid: 26827 + components: + - type: Transform + pos: -124.5,106.5 + parent: 2 + - uid: 26832 + components: + - type: Transform + pos: 17.5,205.5 + parent: 2 + - uid: 26833 + components: + - type: Transform + pos: 16.5,205.5 + parent: 2 + - uid: 26834 + components: + - type: Transform + pos: 16.5,204.5 + parent: 2 + - uid: 26835 + components: + - type: Transform + pos: 16.5,206.5 + parent: 2 + - uid: 26997 + components: + - type: Transform + pos: -31.5,104.5 + parent: 2 + - uid: 26999 + components: + - type: Transform + pos: -30.5,104.5 + parent: 2 + - uid: 27131 + components: + - type: Transform + pos: -60.5,90.5 + parent: 2 + - uid: 27369 + components: + - type: Transform + pos: -48.5,95.5 + parent: 2 + - uid: 27389 + components: + - type: Transform + pos: -47.5,95.5 + parent: 2 + - uid: 27390 + components: + - type: Transform + pos: -47.5,94.5 + parent: 2 + - uid: 27391 + components: + - type: Transform + pos: -46.5,94.5 + parent: 2 + - uid: 27392 + components: + - type: Transform + pos: -46.5,93.5 + parent: 2 + - uid: 27410 + components: + - type: Transform + pos: -6.5,74.5 + parent: 2 + - uid: 27411 + components: + - type: Transform + pos: -7.5,74.5 + parent: 2 + - uid: 27412 + components: + - type: Transform + pos: -8.5,74.5 + parent: 2 + - uid: 27413 + components: + - type: Transform + pos: -9.5,74.5 + parent: 2 + - uid: 27414 + components: + - type: Transform + pos: -10.5,74.5 + parent: 2 + - uid: 27415 + components: + - type: Transform + pos: -11.5,74.5 + parent: 2 + - uid: 27416 + components: + - type: Transform + pos: -12.5,74.5 + parent: 2 + - uid: 27417 + components: + - type: Transform + pos: -13.5,74.5 + parent: 2 + - uid: 27418 + components: + - type: Transform + pos: -14.5,74.5 + parent: 2 + - uid: 27421 + components: + - type: Transform + pos: -6.5,206.5 + parent: 2 + - uid: 27432 + components: + - type: Transform + pos: -69.5,178.5 + parent: 2 + - uid: 27436 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 27438 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 27477 + components: + - type: Transform + pos: -115.5,53.5 + parent: 2 + - uid: 27512 + components: + - type: Transform + pos: -88.5,88.5 + parent: 2 + - uid: 27518 + components: + - type: Transform + pos: -88.5,89.5 + parent: 2 + - uid: 27542 + components: + - type: Transform + pos: -88.5,90.5 + parent: 2 + - uid: 27659 + components: + - type: Transform + pos: -35.5,101.5 + parent: 2 + - uid: 27694 + components: + - type: Transform + pos: -109.5,30.5 + parent: 2 + - uid: 27718 + components: + - type: Transform + pos: -88.5,91.5 + parent: 2 + - uid: 27720 + components: + - type: Transform + pos: -87.5,91.5 + parent: 2 + - uid: 27748 + components: + - type: Transform + pos: -86.5,91.5 + parent: 2 + - uid: 27762 + components: + - type: Transform + pos: -85.5,91.5 + parent: 2 + - uid: 27770 + components: + - type: Transform + pos: -84.5,91.5 + parent: 2 + - uid: 27771 + components: + - type: Transform + pos: -83.5,91.5 + parent: 2 + - uid: 27780 + components: + - type: Transform + pos: -82.5,91.5 + parent: 2 + - uid: 27842 + components: + - type: Transform + pos: -17.5,168.5 + parent: 2 + - uid: 27877 + components: + - type: Transform + pos: -98.5,149.5 + parent: 2 + - uid: 27933 + components: + - type: Transform + pos: -85.5,95.5 + parent: 2 + - uid: 27943 + components: + - type: Transform + pos: -101.5,148.5 + parent: 2 + - uid: 27971 + components: + - type: Transform + pos: -121.5,53.5 + parent: 2 + - uid: 27986 + components: + - type: Transform + pos: -101.5,145.5 + parent: 2 + - uid: 27990 + components: + - type: Transform + pos: -101.5,146.5 + parent: 2 + - uid: 27991 + components: + - type: Transform + pos: -101.5,147.5 + parent: 2 + - uid: 27992 + components: + - type: Transform + pos: -98.5,150.5 + parent: 2 + - uid: 27997 + components: + - type: Transform + pos: -99.5,148.5 + parent: 2 + - uid: 28013 + components: + - type: Transform + pos: -100.5,145.5 + parent: 2 + - uid: 28014 + components: + - type: Transform + pos: -100.5,144.5 + parent: 2 + - uid: 28015 + components: + - type: Transform + pos: -99.5,144.5 + parent: 2 + - uid: 28016 + components: + - type: Transform + pos: -98.5,144.5 + parent: 2 + - uid: 28017 + components: + - type: Transform + pos: -98.5,144.5 + parent: 2 + - uid: 28018 + components: + - type: Transform + pos: -88.5,147.5 + parent: 2 + - uid: 28019 + components: + - type: Transform + pos: -97.5,144.5 + parent: 2 + - uid: 28020 + components: + - type: Transform + pos: -96.5,144.5 + parent: 2 + - uid: 28023 + components: + - type: Transform + pos: -88.5,145.5 + parent: 2 + - uid: 28027 + components: + - type: Transform + pos: -95.5,144.5 + parent: 2 + - uid: 28028 + components: + - type: Transform + pos: -94.5,144.5 + parent: 2 + - uid: 28029 + components: + - type: Transform + pos: -92.5,144.5 + parent: 2 + - uid: 28030 + components: + - type: Transform + pos: -93.5,144.5 + parent: 2 + - uid: 28032 + components: + - type: Transform + pos: -90.5,144.5 + parent: 2 + - uid: 28033 + components: + - type: Transform + pos: -89.5,144.5 + parent: 2 + - uid: 28034 + components: + - type: Transform + pos: -88.5,144.5 + parent: 2 + - uid: 28035 + components: + - type: Transform + pos: -87.5,144.5 + parent: 2 + - uid: 28036 + components: + - type: Transform + pos: -86.5,144.5 + parent: 2 + - uid: 28037 + components: + - type: Transform + pos: -85.5,144.5 + parent: 2 + - uid: 28038 + components: + - type: Transform + pos: -84.5,144.5 + parent: 2 + - uid: 28039 + components: + - type: Transform + pos: -83.5,144.5 + parent: 2 + - uid: 28040 + components: + - type: Transform + pos: -83.5,145.5 + parent: 2 + - uid: 28041 + components: + - type: Transform + pos: -82.5,145.5 + parent: 2 + - uid: 28042 + components: + - type: Transform + pos: -82.5,145.5 + parent: 2 + - uid: 28043 + components: + - type: Transform + pos: -80.5,145.5 + parent: 2 + - uid: 28044 + components: + - type: Transform + pos: -81.5,145.5 + parent: 2 + - uid: 28045 + components: + - type: Transform + pos: -79.5,145.5 + parent: 2 + - uid: 28046 + components: + - type: Transform + pos: -78.5,145.5 + parent: 2 + - uid: 28047 + components: + - type: Transform + pos: -77.5,145.5 + parent: 2 + - uid: 28048 + components: + - type: Transform + pos: -77.5,146.5 + parent: 2 + - uid: 28049 + components: + - type: Transform + pos: -77.5,147.5 + parent: 2 + - uid: 28051 + components: + - type: Transform + pos: -77.5,146.5 + parent: 2 + - uid: 28052 + components: + - type: Transform + pos: -76.5,148.5 + parent: 2 + - uid: 28053 + components: + - type: Transform + pos: -75.5,148.5 + parent: 2 + - uid: 28054 + components: + - type: Transform + pos: -74.5,148.5 + parent: 2 + - uid: 28055 + components: + - type: Transform + pos: -73.5,148.5 + parent: 2 + - uid: 28056 + components: + - type: Transform + pos: -72.5,148.5 + parent: 2 + - uid: 28057 + components: + - type: Transform + pos: -72.5,149.5 + parent: 2 + - uid: 28058 + components: + - type: Transform + pos: -72.5,150.5 + parent: 2 + - uid: 28059 + components: + - type: Transform + pos: -84.5,143.5 + parent: 2 + - uid: 28060 + components: + - type: Transform + pos: -71.5,148.5 + parent: 2 + - uid: 28061 + components: + - type: Transform + pos: -70.5,148.5 + parent: 2 + - uid: 28062 + components: + - type: Transform + pos: -84.5,142.5 + parent: 2 + - uid: 28063 + components: + - type: Transform + pos: -84.5,141.5 + parent: 2 + - uid: 28064 + components: + - type: Transform + pos: -70.5,147.5 + parent: 2 + - uid: 28065 + components: + - type: Transform + pos: -70.5,146.5 + parent: 2 + - uid: 28066 + components: + - type: Transform + pos: -70.5,145.5 + parent: 2 + - uid: 28067 + components: + - type: Transform + pos: -70.5,144.5 + parent: 2 + - uid: 28068 + components: + - type: Transform + pos: -77.5,143.5 + parent: 2 + - uid: 28069 + components: + - type: Transform + pos: -77.5,142.5 + parent: 2 + - uid: 28072 + components: + - type: Transform + pos: -84.5,140.5 + parent: 2 + - uid: 28073 + components: + - type: Transform + pos: -83.5,142.5 + parent: 2 + - uid: 28074 + components: + - type: Transform + pos: -85.5,142.5 + parent: 2 + - uid: 28096 + components: + - type: Transform + pos: -118.5,53.5 + parent: 2 + - uid: 28310 + components: + - type: Transform + pos: -124.5,57.5 + parent: 2 + - uid: 28347 + components: + - type: Transform + pos: -92.5,52.5 + parent: 2 + - uid: 28444 + components: + - type: Transform + pos: -122.5,53.5 + parent: 2 + - uid: 28479 + components: + - type: Transform + pos: -96.5,53.5 + parent: 2 + - uid: 28592 + components: + - type: Transform + pos: -120.5,53.5 + parent: 2 + - uid: 28595 + components: + - type: Transform + pos: -117.5,53.5 + parent: 2 + - uid: 28639 + components: + - type: Transform + pos: -116.5,53.5 + parent: 2 + - uid: 28772 + components: + - type: Transform + pos: -113.5,17.5 + parent: 2 + - uid: 28922 + components: + - type: Transform + pos: -113.5,16.5 + parent: 2 + - uid: 28925 + components: + - type: Transform + pos: -113.5,15.5 + parent: 2 + - uid: 28932 + components: + - type: Transform + pos: -113.5,14.5 + parent: 2 + - uid: 28933 + components: + - type: Transform + pos: -112.5,14.5 + parent: 2 + - uid: 28935 + components: + - type: Transform + pos: -111.5,14.5 + parent: 2 + - uid: 28977 + components: + - type: Transform + pos: -79.5,142.5 + parent: 2 + - uid: 28994 + components: + - type: Transform + pos: -110.5,14.5 + parent: 2 + - uid: 29016 + components: + - type: Transform + pos: -109.5,14.5 + parent: 2 + - uid: 29018 + components: + - type: Transform + pos: -108.5,14.5 + parent: 2 + - uid: 29064 + components: + - type: Transform + pos: -107.5,14.5 + parent: 2 + - uid: 29076 + components: + - type: Transform + pos: -126.5,59.5 + parent: 2 + - uid: 29083 + components: + - type: Transform + pos: -106.5,14.5 + parent: 2 + - uid: 29099 + components: + - type: Transform + pos: -121.5,45.5 + parent: 2 + - uid: 29102 + components: + - type: Transform + pos: -105.5,14.5 + parent: 2 + - uid: 29113 + components: + - type: Transform + pos: -79.5,140.5 + parent: 2 + - uid: 29114 + components: + - type: Transform + pos: -79.5,144.5 + parent: 2 + - uid: 29132 + components: + - type: Transform + pos: -120.5,45.5 + parent: 2 + - uid: 29170 + components: + - type: Transform + pos: -119.5,45.5 + parent: 2 + - uid: 29186 + components: + - type: Transform + pos: -104.5,14.5 + parent: 2 + - uid: 29201 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 29318 + components: + - type: Transform + pos: -119.5,44.5 + parent: 2 + - uid: 29332 + components: + - type: Transform + pos: -119.5,43.5 + parent: 2 + - uid: 29342 + components: + - type: Transform + pos: -103.5,14.5 + parent: 2 + - uid: 29346 + components: + - type: Transform + pos: -119.5,43.5 + parent: 2 + - uid: 29369 + components: + - type: Transform + pos: -119.5,42.5 + parent: 2 + - uid: 29435 + components: + - type: Transform + pos: -102.5,14.5 + parent: 2 + - uid: 29517 + components: + - type: Transform + pos: -112.5,30.5 + parent: 2 + - uid: 29518 + components: + - type: Transform + pos: -111.5,30.5 + parent: 2 + - uid: 29519 + components: + - type: Transform + pos: -110.5,30.5 + parent: 2 + - uid: 29520 + components: + - type: Transform + pos: -108.5,30.5 + parent: 2 + - uid: 29521 + components: + - type: Transform + pos: -108.5,29.5 + parent: 2 + - uid: 29522 + components: + - type: Transform + pos: -110.5,31.5 + parent: 2 + - uid: 29523 + components: + - type: Transform + pos: -110.5,32.5 + parent: 2 + - uid: 29524 + components: + - type: Transform + pos: -111.5,32.5 + parent: 2 + - uid: 29525 + components: + - type: Transform + pos: -110.5,33.5 + parent: 2 + - uid: 29526 + components: + - type: Transform + pos: -109.5,32.5 + parent: 2 + - uid: 29528 + components: + - type: Transform + pos: -110.5,34.5 + parent: 2 + - uid: 29529 + components: + - type: Transform + pos: -110.5,35.5 + parent: 2 + - uid: 29530 + components: + - type: Transform + pos: -110.5,36.5 + parent: 2 + - uid: 29531 + components: + - type: Transform + pos: -110.5,37.5 + parent: 2 + - uid: 29532 + components: + - type: Transform + pos: -109.5,37.5 + parent: 2 + - uid: 29533 + components: + - type: Transform + pos: -111.5,37.5 + parent: 2 + - uid: 29535 + components: + - type: Transform + pos: -111.5,34.5 + parent: 2 + - uid: 29536 + components: + - type: Transform + pos: -112.5,34.5 + parent: 2 + - uid: 29537 + components: + - type: Transform + pos: -113.5,34.5 + parent: 2 + - uid: 29538 + components: + - type: Transform + pos: -114.5,34.5 + parent: 2 + - uid: 29539 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 29540 + components: + - type: Transform + pos: -114.5,33.5 + parent: 2 + - uid: 29541 + components: + - type: Transform + pos: -109.5,34.5 + parent: 2 + - uid: 29542 + components: + - type: Transform + pos: -108.5,34.5 + parent: 2 + - uid: 29543 + components: + - type: Transform + pos: -107.5,34.5 + parent: 2 + - uid: 29544 + components: + - type: Transform + pos: -106.5,34.5 + parent: 2 + - uid: 29545 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 29546 + components: + - type: Transform + pos: -106.5,33.5 + parent: 2 + - uid: 29600 + components: + - type: Transform + pos: -101.5,14.5 + parent: 2 + - uid: 29610 + components: + - type: Transform + pos: -100.5,14.5 + parent: 2 + - uid: 29612 + components: + - type: Transform + pos: -99.5,14.5 + parent: 2 + - uid: 29678 + components: + - type: Transform + pos: -98.5,14.5 + parent: 2 + - uid: 29690 + components: + - type: Transform + pos: -98.5,15.5 + parent: 2 + - uid: 29715 + components: + - type: Transform + pos: -98.5,16.5 + parent: 2 + - uid: 29740 + components: + - type: Transform + pos: -98.5,17.5 + parent: 2 + - uid: 29742 + components: + - type: Transform + pos: -98.5,18.5 + parent: 2 + - uid: 29743 + components: + - type: Transform + pos: -98.5,19.5 + parent: 2 + - uid: 29745 + components: + - type: Transform + pos: -99.5,19.5 + parent: 2 + - uid: 29747 + components: + - type: Transform + pos: -100.5,19.5 + parent: 2 + - uid: 29748 + components: + - type: Transform + pos: -101.5,19.5 + parent: 2 + - uid: 29776 + components: + - type: Transform + pos: -102.5,19.5 + parent: 2 + - uid: 29778 + components: + - type: Transform + pos: -102.5,20.5 + parent: 2 + - uid: 29779 + components: + - type: Transform + pos: -102.5,21.5 + parent: 2 + - uid: 29781 + components: + - type: Transform + pos: -102.5,23.5 + parent: 2 + - uid: 29782 + components: + - type: Transform + pos: -102.5,24.5 + parent: 2 + - uid: 29783 + components: + - type: Transform + pos: -102.5,25.5 + parent: 2 + - uid: 29784 + components: + - type: Transform + pos: -102.5,26.5 + parent: 2 + - uid: 29785 + components: + - type: Transform + pos: -102.5,27.5 + parent: 2 + - uid: 29812 + components: + - type: Transform + pos: -110.5,26.5 + parent: 2 + - uid: 29813 + components: + - type: Transform + pos: -110.5,27.5 + parent: 2 + - uid: 29884 + components: + - type: Transform + pos: -116.5,42.5 + parent: 2 + - uid: 29893 + components: + - type: Transform + pos: -116.5,36.5 + parent: 2 + - uid: 29894 + components: + - type: Transform + pos: -116.5,37.5 + parent: 2 + - uid: 29895 + components: + - type: Transform + pos: -116.5,38.5 + parent: 2 + - uid: 29896 + components: + - type: Transform + pos: -116.5,39.5 + parent: 2 + - uid: 29897 + components: + - type: Transform + pos: -116.5,40.5 + parent: 2 + - uid: 29899 + components: + - type: Transform + pos: -116.5,41.5 + parent: 2 + - uid: 29901 + components: + - type: Transform + pos: -117.5,42.5 + parent: 2 + - uid: 29902 + components: + - type: Transform + pos: -118.5,42.5 + parent: 2 + - uid: 29904 + components: + - type: Transform + pos: -118.5,45.5 + parent: 2 + - uid: 29905 + components: + - type: Transform + pos: -117.5,45.5 + parent: 2 + - uid: 29906 + components: + - type: Transform + pos: -116.5,45.5 + parent: 2 + - uid: 29907 + components: + - type: Transform + pos: -115.5,45.5 + parent: 2 + - uid: 29908 + components: + - type: Transform + pos: -114.5,45.5 + parent: 2 + - uid: 29909 + components: + - type: Transform + pos: -113.5,45.5 + parent: 2 + - uid: 29910 + components: + - type: Transform + pos: -112.5,45.5 + parent: 2 + - uid: 29911 + components: + - type: Transform + pos: -112.5,46.5 + parent: 2 + - uid: 29912 + components: + - type: Transform + pos: -111.5,46.5 + parent: 2 + - uid: 29913 + components: + - type: Transform + pos: -111.5,47.5 + parent: 2 + - uid: 30020 + components: + - type: Transform + pos: -74.5,48.5 + parent: 2 + - uid: 30026 + components: + - type: Transform + pos: -77.5,48.5 + parent: 2 + - uid: 30042 + components: + - type: Transform + pos: -92.5,33.5 + parent: 2 + - uid: 30043 + components: + - type: Transform + pos: -92.5,34.5 + parent: 2 + - uid: 30044 + components: + - type: Transform + pos: -92.5,35.5 + parent: 2 + - uid: 30045 + components: + - type: Transform + pos: -92.5,36.5 + parent: 2 + - uid: 30046 + components: + - type: Transform + pos: -92.5,37.5 + parent: 2 + - uid: 30048 + components: + - type: Transform + pos: -91.5,35.5 + parent: 2 + - uid: 30050 + components: + - type: Transform + pos: -90.5,35.5 + parent: 2 + - uid: 30052 + components: + - type: Transform + pos: -93.5,35.5 + parent: 2 + - uid: 30053 + components: + - type: Transform + pos: -94.5,35.5 + parent: 2 + - uid: 30060 + components: + - type: Transform + pos: -104.5,47.5 + parent: 2 + - uid: 30063 + components: + - type: Transform + pos: -104.5,44.5 + parent: 2 + - uid: 30065 + components: + - type: Transform + pos: -76.5,48.5 + parent: 2 + - uid: 30066 + components: + - type: Transform + pos: -94.5,44.5 + parent: 2 + - uid: 30067 + components: + - type: Transform + pos: -94.5,45.5 + parent: 2 + - uid: 30068 + components: + - type: Transform + pos: -94.5,46.5 + parent: 2 + - uid: 30069 + components: + - type: Transform + pos: -94.5,47.5 + parent: 2 + - uid: 30070 + components: + - type: Transform + pos: -93.5,45.5 + parent: 2 + - uid: 30071 + components: + - type: Transform + pos: -93.5,44.5 + parent: 2 + - uid: 30072 + components: + - type: Transform + pos: -92.5,44.5 + parent: 2 + - uid: 30073 + components: + - type: Transform + pos: -75.5,48.5 + parent: 2 + - uid: 30090 + components: + - type: Transform + pos: -91.5,44.5 + parent: 2 + - uid: 30094 + components: + - type: Transform + pos: -81.5,46.5 + parent: 2 + - uid: 30095 + components: + - type: Transform + pos: -90.5,45.5 + parent: 2 + - uid: 30096 + components: + - type: Transform + pos: -89.5,45.5 + parent: 2 + - uid: 30097 + components: + - type: Transform + pos: -88.5,45.5 + parent: 2 + - uid: 30098 + components: + - type: Transform + pos: -87.5,45.5 + parent: 2 + - uid: 30099 + components: + - type: Transform + pos: -86.5,45.5 + parent: 2 + - uid: 30100 + components: + - type: Transform + pos: -85.5,45.5 + parent: 2 + - uid: 30101 + components: + - type: Transform + pos: -84.5,45.5 + parent: 2 + - uid: 30102 + components: + - type: Transform + pos: -83.5,45.5 + parent: 2 + - uid: 30103 + components: + - type: Transform + pos: -82.5,45.5 + parent: 2 + - uid: 30104 + components: + - type: Transform + pos: -81.5,45.5 + parent: 2 + - uid: 30105 + components: + - type: Transform + pos: -81.5,48.5 + parent: 2 + - uid: 30108 + components: + - type: Transform + pos: -78.5,48.5 + parent: 2 + - uid: 30109 + components: + - type: Transform + pos: -78.5,47.5 + parent: 2 + - uid: 30110 + components: + - type: Transform + pos: -78.5,46.5 + parent: 2 + - uid: 30111 + components: + - type: Transform + pos: -78.5,45.5 + parent: 2 + - uid: 30112 + components: + - type: Transform + pos: -78.5,44.5 + parent: 2 + - uid: 30113 + components: + - type: Transform + pos: -78.5,43.5 + parent: 2 + - uid: 30114 + components: + - type: Transform + pos: -78.5,42.5 + parent: 2 + - uid: 30115 + components: + - type: Transform + pos: -78.5,41.5 + parent: 2 + - uid: 30116 + components: + - type: Transform + pos: -78.5,40.5 + parent: 2 + - uid: 30117 + components: + - type: Transform + pos: -78.5,39.5 + parent: 2 + - uid: 30118 + components: + - type: Transform + pos: -78.5,38.5 + parent: 2 + - uid: 30119 + components: + - type: Transform + pos: -78.5,37.5 + parent: 2 + - uid: 30120 + components: + - type: Transform + pos: -78.5,36.5 + parent: 2 + - uid: 30121 + components: + - type: Transform + pos: -78.5,35.5 + parent: 2 + - uid: 30122 + components: + - type: Transform + pos: -78.5,34.5 + parent: 2 + - uid: 30124 + components: + - type: Transform + pos: -80.5,45.5 + parent: 2 + - uid: 30125 + components: + - type: Transform + pos: -79.5,45.5 + parent: 2 + - uid: 30126 + components: + - type: Transform + pos: -73.5,48.5 + parent: 2 + - uid: 30130 + components: + - type: Transform + pos: -80.5,34.5 + parent: 2 + - uid: 30131 + components: + - type: Transform + pos: -79.5,37.5 + parent: 2 + - uid: 30132 + components: + - type: Transform + pos: -73.5,34.5 + parent: 2 + - uid: 30133 + components: + - type: Transform + pos: -74.5,34.5 + parent: 2 + - uid: 30134 + components: + - type: Transform + pos: -75.5,34.5 + parent: 2 + - uid: 30135 + components: + - type: Transform + pos: -76.5,34.5 + parent: 2 + - uid: 30136 + components: + - type: Transform + pos: -77.5,34.5 + parent: 2 + - uid: 30137 + components: + - type: Transform + pos: -85.5,36.5 + parent: 2 + - uid: 30138 + components: + - type: Transform + pos: -79.5,34.5 + parent: 2 + - uid: 30139 + components: + - type: Transform + pos: -81.5,34.5 + parent: 2 + - uid: 30140 + components: + - type: Transform + pos: -80.5,37.5 + parent: 2 + - uid: 30141 + components: + - type: Transform + pos: -81.5,37.5 + parent: 2 + - uid: 30142 + components: + - type: Transform + pos: -82.5,37.5 + parent: 2 + - uid: 30143 + components: + - type: Transform + pos: -83.5,37.5 + parent: 2 + - uid: 30144 + components: + - type: Transform + pos: -84.5,37.5 + parent: 2 + - uid: 30145 + components: + - type: Transform + pos: -85.5,37.5 + parent: 2 + - uid: 30148 + components: + - type: Transform + pos: -86.5,36.5 + parent: 2 + - uid: 30149 + components: + - type: Transform + pos: -87.5,36.5 + parent: 2 + - uid: 30150 + components: + - type: Transform + pos: -88.5,36.5 + parent: 2 + - uid: 30151 + components: + - type: Transform + pos: -89.5,36.5 + parent: 2 + - uid: 30154 + components: + - type: Transform + pos: -89.5,37.5 + parent: 2 + - uid: 30155 + components: + - type: Transform + pos: -89.5,38.5 + parent: 2 + - uid: 30156 + components: + - type: Transform + pos: -89.5,39.5 + parent: 2 + - uid: 30157 + components: + - type: Transform + pos: -89.5,40.5 + parent: 2 + - uid: 30158 + components: + - type: Transform + pos: -89.5,41.5 + parent: 2 + - uid: 30159 + components: + - type: Transform + pos: -89.5,42.5 + parent: 2 + - uid: 30160 + components: + - type: Transform + pos: -89.5,43.5 + parent: 2 + - uid: 30161 + components: + - type: Transform + pos: -89.5,44.5 + parent: 2 + - uid: 30162 + components: + - type: Transform + pos: -90.5,41.5 + parent: 2 + - uid: 30163 + components: + - type: Transform + pos: -91.5,41.5 + parent: 2 + - uid: 30164 + components: + - type: Transform + pos: -92.5,41.5 + parent: 2 + - uid: 30165 + components: + - type: Transform + pos: -93.5,41.5 + parent: 2 + - uid: 30166 + components: + - type: Transform + pos: -94.5,41.5 + parent: 2 + - uid: 30168 + components: + - type: Transform + pos: -94.5,42.5 + parent: 2 + - uid: 30170 + components: + - type: Transform + pos: -94.5,40.5 + parent: 2 + - uid: 30171 + components: + - type: Transform + pos: -94.5,39.5 + parent: 2 + - uid: 30176 + components: + - type: Transform + pos: -88.5,41.5 + parent: 2 + - uid: 30177 + components: + - type: Transform + pos: -87.5,41.5 + parent: 2 + - uid: 30178 + components: + - type: Transform + pos: -86.5,41.5 + parent: 2 + - uid: 30179 + components: + - type: Transform + pos: -85.5,41.5 + parent: 2 + - uid: 30180 + components: + - type: Transform + pos: -84.5,41.5 + parent: 2 + - uid: 30181 + components: + - type: Transform + pos: -83.5,41.5 + parent: 2 + - uid: 30182 + components: + - type: Transform + pos: -82.5,41.5 + parent: 2 + - uid: 30193 + components: + - type: Transform + pos: -98.5,52.5 + parent: 2 + - uid: 30194 + components: + - type: Transform + pos: -98.5,51.5 + parent: 2 + - uid: 30195 + components: + - type: Transform + pos: -98.5,50.5 + parent: 2 + - uid: 30196 + components: + - type: Transform + pos: -98.5,49.5 + parent: 2 + - uid: 30197 + components: + - type: Transform + pos: -98.5,48.5 + parent: 2 + - uid: 30198 + components: + - type: Transform + pos: -98.5,47.5 + parent: 2 + - uid: 30199 + components: + - type: Transform + pos: -98.5,46.5 + parent: 2 + - uid: 30200 + components: + - type: Transform + pos: -98.5,45.5 + parent: 2 + - uid: 30201 + components: + - type: Transform + pos: -98.5,44.5 + parent: 2 + - uid: 30202 + components: + - type: Transform + pos: -98.5,43.5 + parent: 2 + - uid: 30203 + components: + - type: Transform + pos: -98.5,42.5 + parent: 2 + - uid: 30204 + components: + - type: Transform + pos: -98.5,41.5 + parent: 2 + - uid: 30205 + components: + - type: Transform + pos: -98.5,40.5 + parent: 2 + - uid: 30206 + components: + - type: Transform + pos: -98.5,39.5 + parent: 2 + - uid: 30207 + components: + - type: Transform + pos: -98.5,38.5 + parent: 2 + - uid: 30208 + components: + - type: Transform + pos: -98.5,37.5 + parent: 2 + - uid: 30209 + components: + - type: Transform + pos: -98.5,36.5 + parent: 2 + - uid: 30210 + components: + - type: Transform + pos: -98.5,35.5 + parent: 2 + - uid: 30211 + components: + - type: Transform + pos: -97.5,37.5 + parent: 2 + - uid: 30212 + components: + - type: Transform + pos: -99.5,46.5 + parent: 2 + - uid: 30213 + components: + - type: Transform + pos: -100.5,46.5 + parent: 2 + - uid: 30214 + components: + - type: Transform + pos: -101.5,46.5 + parent: 2 + - uid: 30215 + components: + - type: Transform + pos: -102.5,46.5 + parent: 2 + - uid: 30216 + components: + - type: Transform + pos: -103.5,46.5 + parent: 2 + - uid: 30217 + components: + - type: Transform + pos: -104.5,46.5 + parent: 2 + - uid: 30218 + components: + - type: Transform + pos: -105.5,46.5 + parent: 2 + - uid: 30219 + components: + - type: Transform + pos: -104.5,48.5 + parent: 2 + - uid: 30220 + components: + - type: Transform + pos: -104.5,49.5 + parent: 2 + - uid: 30221 + components: + - type: Transform + pos: -104.5,50.5 + parent: 2 + - uid: 30225 + components: + - type: Transform + pos: -101.5,47.5 + parent: 2 + - uid: 30226 + components: + - type: Transform + pos: -101.5,48.5 + parent: 2 + - uid: 30227 + components: + - type: Transform + pos: -101.5,49.5 + parent: 2 + - uid: 30228 + components: + - type: Transform + pos: -101.5,50.5 + parent: 2 + - uid: 30230 + components: + - type: Transform + pos: -106.5,46.5 + parent: 2 + - uid: 30231 + components: + - type: Transform + pos: -106.5,47.5 + parent: 2 + - uid: 30232 + components: + - type: Transform + pos: -103.5,44.5 + parent: 2 + - uid: 30233 + components: + - type: Transform + pos: -103.5,45.5 + parent: 2 + - uid: 30240 + components: + - type: Transform + pos: -97.5,43.5 + parent: 2 + - uid: 30241 + components: + - type: Transform + pos: -96.5,43.5 + parent: 2 + - uid: 30338 + components: + - type: Transform + pos: -30.5,99.5 + parent: 2 + - uid: 30357 + components: + - type: Transform + pos: -133.5,19.5 + parent: 2 + - uid: 30358 + components: + - type: Transform + pos: -126.5,28.5 + parent: 2 + - uid: 30359 + components: + - type: Transform + pos: -127.5,28.5 + parent: 2 + - uid: 30360 + components: + - type: Transform + pos: -128.5,28.5 + parent: 2 + - uid: 30361 + components: + - type: Transform + pos: -129.5,28.5 + parent: 2 + - uid: 30362 + components: + - type: Transform + pos: -129.5,27.5 + parent: 2 + - uid: 30363 + components: + - type: Transform + pos: -129.5,26.5 + parent: 2 + - uid: 30364 + components: + - type: Transform + pos: -129.5,25.5 + parent: 2 + - uid: 30365 + components: + - type: Transform + pos: -129.5,24.5 + parent: 2 + - uid: 30366 + components: + - type: Transform + pos: -129.5,23.5 + parent: 2 + - uid: 30367 + components: + - type: Transform + pos: -128.5,23.5 + parent: 2 + - uid: 30368 + components: + - type: Transform + pos: -129.5,22.5 + parent: 2 + - uid: 30369 + components: + - type: Transform + pos: -129.5,21.5 + parent: 2 + - uid: 30370 + components: + - type: Transform + pos: -129.5,20.5 + parent: 2 + - uid: 30371 + components: + - type: Transform + pos: -130.5,20.5 + parent: 2 + - uid: 30372 + components: + - type: Transform + pos: -131.5,20.5 + parent: 2 + - uid: 30373 + components: + - type: Transform + pos: -132.5,20.5 + parent: 2 + - uid: 30374 + components: + - type: Transform + pos: -133.5,20.5 + parent: 2 + - uid: 30375 + components: + - type: Transform + pos: -134.5,19.5 + parent: 2 + - uid: 30377 + components: + - type: Transform + pos: -129.5,29.5 + parent: 2 + - uid: 30378 + components: + - type: Transform + pos: -129.5,30.5 + parent: 2 + - uid: 30379 + components: + - type: Transform + pos: -129.5,31.5 + parent: 2 + - uid: 30380 + components: + - type: Transform + pos: -129.5,32.5 + parent: 2 + - uid: 30381 + components: + - type: Transform + pos: -130.5,32.5 + parent: 2 + - uid: 30382 + components: + - type: Transform + pos: -131.5,32.5 + parent: 2 + - uid: 30383 + components: + - type: Transform + pos: -132.5,32.5 + parent: 2 + - uid: 30384 + components: + - type: Transform + pos: -132.5,33.5 + parent: 2 + - uid: 30385 + components: + - type: Transform + pos: -133.5,33.5 + parent: 2 + - uid: 30386 + components: + - type: Transform + pos: -134.5,33.5 + parent: 2 + - uid: 30395 + components: + - type: Transform + pos: -144.5,17.5 + parent: 2 + - uid: 30399 + components: + - type: Transform + pos: -125.5,13.5 + parent: 2 + - uid: 30407 + components: + - type: Transform + pos: -136.5,34.5 + parent: 2 + - uid: 30408 + components: + - type: Transform + pos: -136.5,35.5 + parent: 2 + - uid: 30425 + components: + - type: Transform + pos: -99.5,52.5 + parent: 2 + - uid: 30435 + components: + - type: Transform + pos: -126.5,44.5 + parent: 2 + - uid: 30436 + components: + - type: Transform + pos: -128.5,44.5 + parent: 2 + - uid: 30437 + components: + - type: Transform + pos: -128.5,50.5 + parent: 2 + - uid: 30438 + components: + - type: Transform + pos: -126.5,50.5 + parent: 2 + - uid: 30439 + components: + - type: Transform + pos: -126.5,47.5 + parent: 2 + - uid: 30440 + components: + - type: Transform + pos: -125.5,47.5 + parent: 2 + - uid: 30441 + components: + - type: Transform + pos: -124.5,47.5 + parent: 2 + - uid: 30442 + components: + - type: Transform + pos: -112.5,44.5 + parent: 2 + - uid: 30443 + components: + - type: Transform + pos: -112.5,43.5 + parent: 2 + - uid: 30444 + components: + - type: Transform + pos: -115.5,54.5 + parent: 2 + - uid: 30445 + components: + - type: Transform + pos: -115.5,55.5 + parent: 2 + - uid: 30446 + components: + - type: Transform + pos: -115.5,56.5 + parent: 2 + - uid: 30447 + components: + - type: Transform + pos: -118.5,54.5 + parent: 2 + - uid: 30448 + components: + - type: Transform + pos: -118.5,55.5 + parent: 2 + - uid: 30449 + components: + - type: Transform + pos: -118.5,56.5 + parent: 2 + - uid: 30450 + components: + - type: Transform + pos: -114.5,51.5 + parent: 2 + - uid: 30451 + components: + - type: Transform + pos: -114.5,50.5 + parent: 2 + - uid: 30452 + components: + - type: Transform + pos: -114.5,49.5 + parent: 2 + - uid: 30453 + components: + - type: Transform + pos: -114.5,48.5 + parent: 2 + - uid: 30454 + components: + - type: Transform + pos: -114.5,47.5 + parent: 2 + - uid: 30455 + components: + - type: Transform + pos: -114.5,46.5 + parent: 2 + - uid: 30457 + components: + - type: Transform + pos: -118.5,51.5 + parent: 2 + - uid: 30458 + components: + - type: Transform + pos: -118.5,50.5 + parent: 2 + - uid: 30459 + components: + - type: Transform + pos: -118.5,49.5 + parent: 2 + - uid: 30460 + components: + - type: Transform + pos: -118.5,48.5 + parent: 2 + - uid: 30461 + components: + - type: Transform + pos: -118.5,47.5 + parent: 2 + - uid: 30462 + components: + - type: Transform + pos: -118.5,46.5 + parent: 2 + - uid: 30464 + components: + - type: Transform + pos: -113.5,49.5 + parent: 2 + - uid: 30465 + components: + - type: Transform + pos: -112.5,49.5 + parent: 2 + - uid: 30466 + components: + - type: Transform + pos: -111.5,49.5 + parent: 2 + - uid: 30467 + components: + - type: Transform + pos: -144.5,18.5 + parent: 2 + - uid: 30468 + components: + - type: Transform + pos: -135.5,21.5 + parent: 2 + - uid: 30469 + components: + - type: Transform + pos: -135.5,22.5 + parent: 2 + - uid: 30470 + components: + - type: Transform + pos: -135.5,23.5 + parent: 2 + - uid: 30511 + components: + - type: Transform + pos: -107.5,47.5 + parent: 2 + - uid: 30512 + components: + - type: Transform + pos: -108.5,47.5 + parent: 2 + - uid: 30514 + components: + - type: Transform + pos: -108.5,49.5 + parent: 2 + - uid: 30515 + components: + - type: Transform + pos: -108.5,50.5 + parent: 2 + - uid: 30516 + components: + - type: Transform + pos: -108.5,51.5 + parent: 2 + - uid: 30517 + components: + - type: Transform + pos: -108.5,52.5 + parent: 2 + - uid: 30518 + components: + - type: Transform + pos: -108.5,53.5 + parent: 2 + - uid: 30519 + components: + - type: Transform + pos: -108.5,54.5 + parent: 2 + - uid: 30520 + components: + - type: Transform + pos: -108.5,55.5 + parent: 2 + - uid: 30521 + components: + - type: Transform + pos: -108.5,56.5 + parent: 2 + - uid: 30522 + components: + - type: Transform + pos: -108.5,57.5 + parent: 2 + - uid: 30523 + components: + - type: Transform + pos: -108.5,58.5 + parent: 2 + - uid: 30524 + components: + - type: Transform + pos: -108.5,59.5 + parent: 2 + - uid: 30525 + components: + - type: Transform + pos: -108.5,60.5 + parent: 2 + - uid: 30526 + components: + - type: Transform + pos: -108.5,61.5 + parent: 2 + - uid: 30527 + components: + - type: Transform + pos: -108.5,62.5 + parent: 2 + - uid: 30528 + components: + - type: Transform + pos: -108.5,63.5 + parent: 2 + - uid: 30552 + components: + - type: Transform + pos: -117.5,67.5 + parent: 2 + - uid: 30553 + components: + - type: Transform + pos: -117.5,66.5 + parent: 2 + - uid: 30554 + components: + - type: Transform + pos: -117.5,65.5 + parent: 2 + - uid: 30555 + components: + - type: Transform + pos: -116.5,65.5 + parent: 2 + - uid: 30556 + components: + - type: Transform + pos: -115.5,65.5 + parent: 2 + - uid: 30557 + components: + - type: Transform + pos: -114.5,65.5 + parent: 2 + - uid: 30558 + components: + - type: Transform + pos: -113.5,65.5 + parent: 2 + - uid: 30559 + components: + - type: Transform + pos: -112.5,65.5 + parent: 2 + - uid: 30560 + components: + - type: Transform + pos: -111.5,65.5 + parent: 2 + - uid: 30589 + components: + - type: Transform + pos: -104.5,17.5 + parent: 2 + - uid: 30590 + components: + - type: Transform + pos: -95.5,52.5 + parent: 2 + - uid: 30591 + components: + - type: Transform + pos: -95.5,53.5 + parent: 2 + - uid: 30595 + components: + - type: Transform + pos: -106.5,17.5 + parent: 2 + - uid: 30597 + components: + - type: Transform + pos: -80.5,48.5 + parent: 2 + - uid: 30598 + components: + - type: Transform + pos: -80.5,49.5 + parent: 2 + - uid: 30600 + components: + - type: Transform + pos: -79.5,141.5 + parent: 2 + - uid: 30601 + components: + - type: Transform + pos: -108.5,17.5 + parent: 2 + - uid: 30607 + components: + - type: Transform + pos: -110.5,17.5 + parent: 2 + - uid: 30611 + components: + - type: Transform + pos: -97.5,53.5 + parent: 2 + - uid: 30612 + components: + - type: Transform + pos: -103.5,30.5 + parent: 2 + - uid: 30613 + components: + - type: Transform + pos: -112.5,17.5 + parent: 2 + - uid: 30614 + components: + - type: Transform + pos: -103.5,29.5 + parent: 2 + - uid: 30615 + components: + - type: Transform + pos: -104.5,29.5 + parent: 2 + - uid: 30616 + components: + - type: Transform + pos: -103.5,29.5 + parent: 2 + - uid: 30617 + components: + - type: Transform + pos: -103.5,31.5 + parent: 2 + - uid: 30618 + components: + - type: Transform + pos: -103.5,32.5 + parent: 2 + - uid: 30619 + components: + - type: Transform + pos: -103.5,33.5 + parent: 2 + - uid: 30620 + components: + - type: Transform + pos: -103.5,34.5 + parent: 2 + - uid: 30621 + components: + - type: Transform + pos: -103.5,35.5 + parent: 2 + - uid: 30622 + components: + - type: Transform + pos: -103.5,36.5 + parent: 2 + - uid: 30623 + components: + - type: Transform + pos: -101.5,36.5 + parent: 2 + - uid: 30624 + components: + - type: Transform + pos: -102.5,36.5 + parent: 2 + - uid: 30625 + components: + - type: Transform + pos: -101.5,35.5 + parent: 2 + - uid: 30626 + components: + - type: Transform + pos: -104.5,32.5 + parent: 2 + - uid: 30627 + components: + - type: Transform + pos: -105.5,32.5 + parent: 2 + - uid: 30628 + components: + - type: Transform + pos: -105.5,36.5 + parent: 2 + - uid: 30629 + components: + - type: Transform + pos: -104.5,36.5 + parent: 2 + - uid: 30637 + components: + - type: Transform + pos: -98.5,53.5 + parent: 2 + - uid: 30651 + components: + - type: Transform + pos: -80.5,50.5 + parent: 2 + - uid: 30652 + components: + - type: Transform + pos: -80.5,51.5 + parent: 2 + - uid: 30653 + components: + - type: Transform + pos: -80.5,52.5 + parent: 2 + - uid: 30654 + components: + - type: Transform + pos: -86.5,34.5 + parent: 2 + - uid: 30655 + components: + - type: Transform + pos: -86.5,33.5 + parent: 2 + - uid: 30656 + components: + - type: Transform + pos: -86.5,32.5 + parent: 2 + - uid: 30657 + components: + - type: Transform + pos: -86.5,31.5 + parent: 2 + - uid: 30658 + components: + - type: Transform + pos: -86.5,35.5 + parent: 2 + - uid: 30670 + components: + - type: Transform + pos: -125.5,17.5 + parent: 2 + - uid: 30673 + components: + - type: Transform + pos: -125.5,18.5 + parent: 2 + - uid: 30692 + components: + - type: Transform + pos: -95.5,51.5 + parent: 2 + - uid: 30694 + components: + - type: Transform + pos: -125.5,16.5 + parent: 2 + - uid: 30701 + components: + - type: Transform + pos: -125.5,14.5 + parent: 2 + - uid: 30703 + components: + - type: Transform + pos: -125.5,15.5 + parent: 2 + - uid: 30712 + components: + - type: Transform + pos: -126.5,18.5 + parent: 2 + - uid: 30740 + components: + - type: Transform + pos: -106.5,67.5 + parent: 2 + - uid: 30741 + components: + - type: Transform + pos: -107.5,67.5 + parent: 2 + - uid: 30747 + components: + - type: Transform + pos: -105.5,67.5 + parent: 2 + - uid: 30748 + components: + - type: Transform + pos: -105.5,68.5 + parent: 2 + - uid: 30749 + components: + - type: Transform + pos: -103.5,68.5 + parent: 2 + - uid: 30750 + components: + - type: Transform + pos: -104.5,68.5 + parent: 2 + - uid: 30753 + components: + - type: Transform + pos: -68.5,144.5 + parent: 2 + - uid: 30754 + components: + - type: Transform + pos: -68.5,145.5 + parent: 2 + - uid: 30755 + components: + - type: Transform + pos: -67.5,145.5 + parent: 2 + - uid: 30756 + components: + - type: Transform + pos: -99.5,70.5 + parent: 2 + - uid: 30757 + components: + - type: Transform + pos: -99.5,71.5 + parent: 2 + - uid: 30758 + components: + - type: Transform + pos: -91.5,75.5 + parent: 2 + - uid: 30759 + components: + - type: Transform + pos: -91.5,74.5 + parent: 2 + - uid: 30760 + components: + - type: Transform + pos: -92.5,74.5 + parent: 2 + - uid: 30761 + components: + - type: Transform + pos: -93.5,74.5 + parent: 2 + - uid: 30762 + components: + - type: Transform + pos: -93.5,74.5 + parent: 2 + - uid: 30763 + components: + - type: Transform + pos: -93.5,73.5 + parent: 2 + - uid: 30764 + components: + - type: Transform + pos: -94.5,73.5 + parent: 2 + - uid: 30765 + components: + - type: Transform + pos: -95.5,73.5 + parent: 2 + - uid: 30766 + components: + - type: Transform + pos: -95.5,72.5 + parent: 2 + - uid: 30767 + components: + - type: Transform + pos: -96.5,72.5 + parent: 2 + - uid: 30768 + components: + - type: Transform + pos: -97.5,72.5 + parent: 2 + - uid: 30769 + components: + - type: Transform + pos: -97.5,71.5 + parent: 2 + - uid: 30770 + components: + - type: Transform + pos: -98.5,71.5 + parent: 2 + - uid: 30840 + components: + - type: Transform + pos: -77.5,140.5 + parent: 2 + - uid: 30841 + components: + - type: Transform + pos: -77.5,141.5 + parent: 2 + - uid: 30855 + components: + - type: Transform + pos: -77.5,144.5 + parent: 2 + - uid: 30911 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 30902 + - uid: 30912 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 30902 + - uid: 30913 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 30902 + - uid: 30914 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 30902 + - uid: 30915 + components: + - type: Transform + pos: 1.5,0.5 + parent: 30902 + - uid: 30916 + components: + - type: Transform + pos: 1.5,1.5 + parent: 30902 + - uid: 30917 + components: + - type: Transform + pos: 1.5,2.5 + parent: 30902 + - uid: 30918 + components: + - type: Transform + pos: 1.5,3.5 + parent: 30902 + - uid: 30919 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 30902 + - uid: 30920 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 30902 + - uid: 30921 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 30902 + - uid: 30922 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 30902 + - uid: 30923 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 30902 + - uid: 30924 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 30902 + - uid: 30925 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 30902 + - uid: 30926 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 30902 + - uid: 30927 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 30902 + - uid: 30928 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 30902 + - uid: 30929 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 30902 + - uid: 30987 + components: + - type: Transform + pos: -111.5,95.5 + parent: 2 + - uid: 30988 + components: + - type: Transform + pos: -111.5,96.5 + parent: 2 + - uid: 30989 + components: + - type: Transform + pos: -110.5,96.5 + parent: 2 + - uid: 30990 + components: + - type: Transform + pos: -109.5,96.5 + parent: 2 + - uid: 30991 + components: + - type: Transform + pos: -108.5,96.5 + parent: 2 + - uid: 30992 + components: + - type: Transform + pos: -107.5,96.5 + parent: 2 + - uid: 30993 + components: + - type: Transform + pos: -106.5,96.5 + parent: 2 + - uid: 30994 + components: + - type: Transform + pos: -105.5,96.5 + parent: 2 + - uid: 30995 + components: + - type: Transform + pos: -104.5,96.5 + parent: 2 + - uid: 31217 + components: + - type: Transform + pos: -90.5,43.5 + parent: 2 + - uid: 31223 + components: + - type: Transform + pos: 90.5,61.5 + parent: 2 + - uid: 31252 + components: + - type: Transform + pos: -67.5,146.5 + parent: 2 + - uid: 31254 + components: + - type: Transform + pos: -67.5,147.5 + parent: 2 + - uid: 31256 + components: + - type: Transform + pos: -67.5,148.5 + parent: 2 + - uid: 31259 + components: + - type: Transform + pos: -68.5,148.5 + parent: 2 + - uid: 31428 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 + - uid: 31516 + components: + - type: Transform + pos: -18.5,171.5 + parent: 2 + - uid: 31580 + components: + - type: Transform + pos: -79.5,39.5 + parent: 2 + - uid: 31801 + components: + - type: Transform + pos: -17.5,171.5 + parent: 2 + - uid: 31856 + components: + - type: Transform + pos: 23.5,177.5 + parent: 2 + - uid: 31857 + components: + - type: Transform + pos: 24.5,177.5 + parent: 2 + - uid: 31945 + components: + - type: Transform + pos: 88.5,20.5 + parent: 2 + - uid: 31946 + components: + - type: Transform + pos: 88.5,19.5 + parent: 2 + - uid: 31947 + components: + - type: Transform + pos: 88.5,18.5 + parent: 2 + - uid: 31948 + components: + - type: Transform + pos: 88.5,17.5 + parent: 2 + - uid: 31949 + components: + - type: Transform + pos: 88.5,16.5 + parent: 2 + - uid: 31950 + components: + - type: Transform + pos: 88.5,15.5 + parent: 2 + - uid: 31951 + components: + - type: Transform + pos: 88.5,14.5 + parent: 2 + - uid: 31952 + components: + - type: Transform + pos: 89.5,18.5 + parent: 2 + - uid: 31953 + components: + - type: Transform + pos: 90.5,18.5 + parent: 2 + - uid: 31954 + components: + - type: Transform + pos: 86.5,18.5 + parent: 2 + - uid: 31955 + components: + - type: Transform + pos: 87.5,18.5 + parent: 2 + - uid: 32291 + components: + - type: Transform + pos: -32.5,97.5 + parent: 2 + - uid: 32297 + components: + - type: Transform + pos: -71.5,145.5 + parent: 2 + - uid: 32298 + components: + - type: Transform + pos: -72.5,145.5 + parent: 2 + - uid: 32299 + components: + - type: Transform + pos: -73.5,145.5 + parent: 2 + - uid: 32300 + components: + - type: Transform + pos: -69.5,144.5 + parent: 2 + - uid: 32301 + components: + - type: Transform + pos: -69.5,148.5 + parent: 2 + - uid: 32304 + components: + - type: Transform + pos: 15.5,177.5 + parent: 2 + - uid: 32305 + components: + - type: Transform + pos: 15.5,176.5 + parent: 2 + - uid: 32306 + components: + - type: Transform + pos: 9.5,175.5 + parent: 2 + - uid: 32307 + components: + - type: Transform + pos: 10.5,175.5 + parent: 2 + - uid: 32308 + components: + - type: Transform + pos: 11.5,175.5 + parent: 2 + - uid: 32309 + components: + - type: Transform + pos: 12.5,175.5 + parent: 2 + - uid: 32310 + components: + - type: Transform + pos: 13.5,175.5 + parent: 2 + - uid: 32311 + components: + - type: Transform + pos: 14.5,175.5 + parent: 2 + - uid: 32312 + components: + - type: Transform + pos: 15.5,175.5 + parent: 2 + - uid: 32313 + components: + - type: Transform + pos: 12.5,174.5 + parent: 2 + - uid: 32328 + components: + - type: Transform + pos: -60.5,8.5 + parent: 2 + - uid: 32329 + components: + - type: Transform + pos: -59.5,8.5 + parent: 2 + - uid: 32330 + components: + - type: Transform + pos: -58.5,8.5 + parent: 2 + - uid: 32331 + components: + - type: Transform + pos: -57.5,8.5 + parent: 2 + - uid: 32332 + components: + - type: Transform + pos: -56.5,8.5 + parent: 2 + - uid: 32333 + components: + - type: Transform + pos: -55.5,8.5 + parent: 2 + - uid: 32334 + components: + - type: Transform + pos: -54.5,8.5 + parent: 2 + - uid: 32335 + components: + - type: Transform + pos: -53.5,8.5 + parent: 2 + - uid: 32336 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 32337 + components: + - type: Transform + pos: -57.5,10.5 + parent: 2 + - uid: 32338 + components: + - type: Transform + pos: -56.5,10.5 + parent: 2 + - uid: 32339 + components: + - type: Transform + pos: -56.5,11.5 + parent: 2 + - uid: 32340 + components: + - type: Transform + pos: -56.5,12.5 + parent: 2 + - uid: 32341 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 + - uid: 32342 + components: + - type: Transform + pos: -56.5,14.5 + parent: 2 + - uid: 32343 + components: + - type: Transform + pos: -56.5,15.5 + parent: 2 + - uid: 32344 + components: + - type: Transform + pos: -55.5,10.5 + parent: 2 + - uid: 32345 + components: + - type: Transform + pos: -54.5,10.5 + parent: 2 + - uid: 32346 + components: + - type: Transform + pos: -54.5,11.5 + parent: 2 + - uid: 32347 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 32348 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 32349 + components: + - type: Transform + pos: -54.5,14.5 + parent: 2 + - uid: 32350 + components: + - type: Transform + pos: -54.5,15.5 + parent: 2 + - uid: 32351 + components: + - type: Transform + pos: -59.5,7.5 + parent: 2 + - uid: 32352 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 32353 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - uid: 32354 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 32355 + components: + - type: Transform + pos: -59.5,3.5 + parent: 2 + - uid: 32371 + components: + - type: Transform + pos: -51.5,8.5 + parent: 2 + - uid: 32372 + components: + - type: Transform + pos: -52.5,8.5 + parent: 2 + - uid: 32373 + components: + - type: Transform + pos: 15.5,178.5 + parent: 2 + - uid: 32374 + components: + - type: Transform + pos: 12.5,173.5 + parent: 2 + - uid: 32426 + components: + - type: Transform + pos: -79.5,41.5 + parent: 2 + - uid: 32472 + components: + - type: Transform + pos: -60.5,79.5 + parent: 2 + - uid: 32880 + components: + - type: Transform + pos: -60.5,78.5 + parent: 2 + - uid: 32907 + components: + - type: Transform + pos: -76.5,147.5 + parent: 2 + - uid: 33067 + components: + - type: Transform + pos: -66.5,67.5 + parent: 2 + - uid: 33074 + components: + - type: Transform + pos: -127.5,56.5 + parent: 2 + - uid: 33417 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 + - uid: 33566 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 2 + - uid: 33570 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - uid: 33675 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 33804 + components: + - type: Transform + pos: -21.5,101.5 + parent: 2 + - uid: 34258 + components: + - type: Transform + pos: -64.5,61.5 + parent: 2 + - uid: 34281 + components: + - type: Transform + pos: -128.5,99.5 + parent: 2 + - uid: 34469 + components: + - type: Transform + pos: -115.5,99.5 + parent: 2 + - uid: 34470 + components: + - type: Transform + pos: -118.5,98.5 + parent: 2 + - uid: 34471 + components: + - type: Transform + pos: -116.5,103.5 + parent: 2 + - uid: 34472 + components: + - type: Transform + pos: -23.5,189.5 + parent: 2 + - uid: 34473 + components: + - type: Transform + pos: -124.5,98.5 + parent: 2 + - uid: 34474 + components: + - type: Transform + pos: -122.5,98.5 + parent: 2 + - uid: 34476 + components: + - type: Transform + pos: -21.5,181.5 + parent: 2 + - uid: 34477 + components: + - type: Transform + pos: -21.5,180.5 + parent: 2 + - uid: 34479 + components: + - type: Transform + pos: -118.5,101.5 + parent: 2 + - uid: 34489 + components: + - type: Transform + pos: -20.5,180.5 + parent: 2 + - uid: 34494 + components: + - type: Transform + pos: -124.5,92.5 + parent: 2 + - uid: 34495 + components: + - type: Transform + pos: -114.5,104.5 + parent: 2 + - uid: 34496 + components: + - type: Transform + pos: -114.5,103.5 + parent: 2 + - uid: 34497 + components: + - type: Transform + pos: -115.5,103.5 + parent: 2 + - uid: 34499 + components: + - type: Transform + pos: -118.5,103.5 + parent: 2 + - uid: 34500 + components: + - type: Transform + pos: -118.5,102.5 + parent: 2 + - uid: 34501 + components: + - type: Transform + pos: -118.5,100.5 + parent: 2 + - uid: 34502 + components: + - type: Transform + pos: -118.5,99.5 + parent: 2 + - uid: 34503 + components: + - type: Transform + pos: -127.5,92.5 + parent: 2 + - uid: 34504 + components: + - type: Transform + pos: -114.5,99.5 + parent: 2 + - uid: 34509 + components: + - type: Transform + pos: -124.5,95.5 + parent: 2 + - uid: 34536 + components: + - type: Transform + pos: -129.5,47.5 + parent: 2 + - uid: 34573 + components: + - type: Transform + pos: -133.5,90.5 + parent: 2 + - uid: 34574 + components: + - type: Transform + pos: -132.5,90.5 + parent: 2 + - uid: 34575 + components: + - type: Transform + pos: -131.5,90.5 + parent: 2 + - uid: 34576 + components: + - type: Transform + pos: -130.5,90.5 + parent: 2 + - uid: 34577 + components: + - type: Transform + pos: -129.5,90.5 + parent: 2 + - uid: 34578 + components: + - type: Transform + pos: -128.5,90.5 + parent: 2 + - uid: 34768 + components: + - type: Transform + pos: -4.5,68.5 + parent: 2 + - uid: 34769 + components: + - type: Transform + pos: -5.5,68.5 + parent: 2 + - uid: 34770 + components: + - type: Transform + pos: -8.5,66.5 + parent: 2 + - uid: 34771 + components: + - type: Transform + pos: -7.5,66.5 + parent: 2 + - uid: 34772 + components: + - type: Transform + pos: -6.5,66.5 + parent: 2 + - uid: 34773 + components: + - type: Transform + pos: -5.5,66.5 + parent: 2 + - uid: 34774 + components: + - type: Transform + pos: -4.5,66.5 + parent: 2 + - uid: 34775 + components: + - type: Transform + pos: -3.5,66.5 + parent: 2 + - uid: 34776 + components: + - type: Transform + pos: -2.5,65.5 + parent: 2 + - uid: 34778 + components: + - type: Transform + pos: -2.5,64.5 + parent: 2 + - uid: 34779 + components: + - type: Transform + pos: -2.5,63.5 + parent: 2 + - uid: 34780 + components: + - type: Transform + pos: -2.5,62.5 + parent: 2 + - uid: 34781 + components: + - type: Transform + pos: -2.5,61.5 + parent: 2 + - uid: 34782 + components: + - type: Transform + pos: -2.5,60.5 + parent: 2 + - uid: 34783 + components: + - type: Transform + pos: -6.5,65.5 + parent: 2 + - uid: 34784 + components: + - type: Transform + pos: -6.5,64.5 + parent: 2 + - uid: 34785 + components: + - type: Transform + pos: -6.5,63.5 + parent: 2 + - uid: 34786 + components: + - type: Transform + pos: -6.5,62.5 + parent: 2 + - uid: 34787 + components: + - type: Transform + pos: -6.5,61.5 + parent: 2 + - uid: 34788 + components: + - type: Transform + pos: -6.5,60.5 + parent: 2 + - uid: 34789 + components: + - type: Transform + pos: 1.5,66.5 + parent: 2 + - uid: 34790 + components: + - type: Transform + pos: 1.5,65.5 + parent: 2 + - uid: 34791 + components: + - type: Transform + pos: 1.5,64.5 + parent: 2 + - uid: 34821 + components: + - type: Transform + pos: -35.5,102.5 + parent: 2 + - uid: 34850 + components: + - type: Transform + pos: 1.5,217.5 + parent: 2 + - uid: 34851 + components: + - type: Transform + pos: 0.5,217.5 + parent: 2 + - uid: 34852 + components: + - type: Transform + pos: 0.5,218.5 + parent: 2 + - uid: 34853 + components: + - type: Transform + pos: 0.5,219.5 + parent: 2 + - uid: 34854 + components: + - type: Transform + pos: 0.5,220.5 + parent: 2 + - uid: 34855 + components: + - type: Transform + pos: 1.5,216.5 + parent: 2 + - uid: 34856 + components: + - type: Transform + pos: 1.5,215.5 + parent: 2 + - uid: 34857 + components: + - type: Transform + pos: 1.5,214.5 + parent: 2 + - uid: 34858 + components: + - type: Transform + pos: 0.5,214.5 + parent: 2 + - uid: 34859 + components: + - type: Transform + pos: -0.5,214.5 + parent: 2 + - uid: 35429 + components: + - type: Transform + pos: -103.5,148.5 + parent: 2 + - uid: 35430 + components: + - type: Transform + pos: -104.5,148.5 + parent: 2 + - uid: 35431 + components: + - type: Transform + pos: -105.5,148.5 + parent: 2 + - uid: 35432 + components: + - type: Transform + pos: -106.5,148.5 + parent: 2 + - uid: 35433 + components: + - type: Transform + pos: -107.5,148.5 + parent: 2 + - uid: 35434 + components: + - type: Transform + pos: -108.5,148.5 + parent: 2 + - uid: 35435 + components: + - type: Transform + pos: -109.5,148.5 + parent: 2 + - uid: 35436 + components: + - type: Transform + pos: -110.5,148.5 + parent: 2 + - uid: 35437 + components: + - type: Transform + pos: -111.5,148.5 + parent: 2 + - uid: 35438 + components: + - type: Transform + pos: -112.5,148.5 + parent: 2 + - uid: 35460 + components: + - type: Transform + pos: -30.5,195.5 + parent: 2 + - uid: 35481 + components: + - type: Transform + pos: 71.5,20.5 + parent: 2 + - uid: 35482 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 35483 + components: + - type: Transform + pos: 70.5,19.5 + parent: 2 + - uid: 35484 + components: + - type: Transform + pos: 70.5,18.5 + parent: 2 + - uid: 35485 + components: + - type: Transform + pos: 70.5,17.5 + parent: 2 + - uid: 35486 + components: + - type: Transform + pos: 70.5,16.5 + parent: 2 + - uid: 35603 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 35694 + components: + - type: Transform + pos: -104.5,97.5 + parent: 2 + - uid: 35697 + components: + - type: Transform + pos: -104.5,98.5 + parent: 2 + - uid: 35707 + components: + - type: Transform + pos: -99.5,99.5 + parent: 2 + - uid: 35708 + components: + - type: Transform + pos: -98.5,99.5 + parent: 2 + - uid: 35709 + components: + - type: Transform + pos: -97.5,99.5 + parent: 2 + - uid: 35710 + components: + - type: Transform + pos: -96.5,99.5 + parent: 2 + - uid: 35712 + components: + - type: Transform + pos: -106.5,99.5 + parent: 2 + - uid: 35713 + components: + - type: Transform + pos: -107.5,99.5 + parent: 2 + - uid: 35714 + components: + - type: Transform + pos: -108.5,99.5 + parent: 2 + - uid: 35715 + components: + - type: Transform + pos: -109.5,99.5 + parent: 2 + - uid: 35716 + components: + - type: Transform + pos: -110.5,99.5 + parent: 2 + - uid: 35717 + components: + - type: Transform + pos: -111.5,99.5 + parent: 2 + - uid: 35719 + components: + - type: Transform + pos: -112.5,99.5 + parent: 2 + - uid: 35752 + components: + - type: Transform + pos: -104.5,94.5 + parent: 2 + - uid: 35753 + components: + - type: Transform + pos: -104.5,93.5 + parent: 2 + - uid: 35754 + components: + - type: Transform + pos: -104.5,92.5 + parent: 2 + - uid: 35755 + components: + - type: Transform + pos: -111.5,94.5 + parent: 2 + - uid: 35756 + components: + - type: Transform + pos: -111.5,93.5 + parent: 2 + - uid: 35757 + components: + - type: Transform + pos: -111.5,92.5 + parent: 2 + - uid: 35758 + components: + - type: Transform + pos: -108.5,95.5 + parent: 2 + - uid: 35759 + components: + - type: Transform + pos: -108.5,94.5 + parent: 2 + - uid: 35760 + components: + - type: Transform + pos: -108.5,93.5 + parent: 2 + - uid: 35761 + components: + - type: Transform + pos: -108.5,92.5 + parent: 2 + - uid: 35762 + components: + - type: Transform + pos: -102.5,95.5 + parent: 2 + - uid: 35763 + components: + - type: Transform + pos: -102.5,94.5 + parent: 2 + - uid: 35764 + components: + - type: Transform + pos: -102.5,93.5 + parent: 2 + - uid: 35765 + components: + - type: Transform + pos: -102.5,92.5 + parent: 2 + - uid: 35766 + components: + - type: Transform + pos: -106.5,95.5 + parent: 2 + - uid: 35767 + components: + - type: Transform + pos: -106.5,94.5 + parent: 2 + - uid: 35768 + components: + - type: Transform + pos: -106.5,93.5 + parent: 2 + - uid: 35769 + components: + - type: Transform + pos: -106.5,92.5 + parent: 2 + - uid: 35782 + components: + - type: Transform + pos: -103.5,102.5 + parent: 2 + - uid: 35783 + components: + - type: Transform + pos: -103.5,103.5 + parent: 2 + - uid: 35784 + components: + - type: Transform + pos: -102.5,103.5 + parent: 2 + - uid: 35785 + components: + - type: Transform + pos: -101.5,103.5 + parent: 2 + - uid: 35786 + components: + - type: Transform + pos: -102.5,104.5 + parent: 2 + - uid: 35796 + components: + - type: Transform + pos: -74.5,94.5 + parent: 2 + - uid: 35842 + components: + - type: Transform + pos: -25.5,177.5 + parent: 2 + - uid: 35843 + components: + - type: Transform + pos: -26.5,177.5 + parent: 2 + - uid: 35844 + components: + - type: Transform + pos: -27.5,177.5 + parent: 2 + - uid: 35845 + components: + - type: Transform + pos: -28.5,177.5 + parent: 2 + - uid: 35846 + components: + - type: Transform + pos: -29.5,177.5 + parent: 2 + - uid: 35847 + components: + - type: Transform + pos: -30.5,177.5 + parent: 2 + - uid: 35848 + components: + - type: Transform + pos: -30.5,178.5 + parent: 2 + - uid: 35849 + components: + - type: Transform + pos: -30.5,179.5 + parent: 2 + - uid: 35850 + components: + - type: Transform + pos: -30.5,180.5 + parent: 2 + - uid: 35851 + components: + - type: Transform + pos: -30.5,181.5 + parent: 2 + - uid: 35852 + components: + - type: Transform + pos: -30.5,182.5 + parent: 2 + - uid: 35853 + components: + - type: Transform + pos: -30.5,183.5 + parent: 2 + - uid: 35854 + components: + - type: Transform + pos: -30.5,184.5 + parent: 2 + - uid: 35855 + components: + - type: Transform + pos: -30.5,185.5 + parent: 2 + - uid: 35856 + components: + - type: Transform + pos: -30.5,186.5 + parent: 2 + - uid: 35857 + components: + - type: Transform + pos: -30.5,187.5 + parent: 2 + - uid: 35858 + components: + - type: Transform + pos: -30.5,188.5 + parent: 2 + - uid: 35875 + components: + - type: Transform + pos: -30.5,189.5 + parent: 2 + - uid: 35896 + components: + - type: Transform + pos: -94.5,95.5 + parent: 2 + - uid: 35897 + components: + - type: Transform + pos: -93.5,95.5 + parent: 2 + - uid: 35905 + components: + - type: Transform + pos: -91.5,98.5 + parent: 2 + - uid: 35911 + components: + - type: Transform + pos: -94.5,99.5 + parent: 2 + - uid: 35912 + components: + - type: Transform + pos: -100.5,99.5 + parent: 2 + - uid: 35913 + components: + - type: Transform + pos: -101.5,99.5 + parent: 2 + - uid: 35914 + components: + - type: Transform + pos: -95.5,99.5 + parent: 2 + - uid: 35915 + components: + - type: Transform + pos: -93.5,99.5 + parent: 2 + - uid: 35916 + components: + - type: Transform + pos: -92.5,99.5 + parent: 2 + - uid: 35917 + components: + - type: Transform + pos: -92.5,99.5 + parent: 2 + - uid: 35918 + components: + - type: Transform + pos: -92.5,98.5 + parent: 2 + - uid: 35919 + components: + - type: Transform + pos: -92.5,97.5 + parent: 2 + - uid: 35920 + components: + - type: Transform + pos: -92.5,96.5 + parent: 2 + - uid: 35921 + components: + - type: Transform + pos: -92.5,95.5 + parent: 2 + - uid: 35922 + components: + - type: Transform + pos: -91.5,95.5 + parent: 2 + - uid: 35923 + components: + - type: Transform + pos: -90.5,95.5 + parent: 2 + - uid: 35924 + components: + - type: Transform + pos: -89.5,95.5 + parent: 2 + - uid: 35925 + components: + - type: Transform + pos: -88.5,95.5 + parent: 2 + - uid: 35928 + components: + - type: Transform + pos: -117.5,103.5 + parent: 2 + - uid: 36001 + components: + - type: Transform + pos: -1.5,88.5 + parent: 2 + - uid: 36169 + components: + - type: Transform + pos: -104.5,91.5 + parent: 2 + - uid: 36170 + components: + - type: Transform + pos: -104.5,90.5 + parent: 2 + - uid: 36171 + components: + - type: Transform + pos: -102.5,91.5 + parent: 2 + - uid: 36172 + components: + - type: Transform + pos: -102.5,90.5 + parent: 2 + - uid: 36173 + components: + - type: Transform + pos: -102.5,89.5 + parent: 2 + - uid: 36174 + components: + - type: Transform + pos: -108.5,91.5 + parent: 2 + - uid: 36175 + components: + - type: Transform + pos: -108.5,90.5 + parent: 2 + - uid: 36176 + components: + - type: Transform + pos: -108.5,89.5 + parent: 2 + - uid: 36177 + components: + - type: Transform + pos: -108.5,88.5 + parent: 2 + - uid: 36178 + components: + - type: Transform + pos: -111.5,91.5 + parent: 2 + - uid: 36179 + components: + - type: Transform + pos: -111.5,90.5 + parent: 2 + - uid: 36180 + components: + - type: Transform + pos: -111.5,89.5 + parent: 2 + - uid: 36181 + components: + - type: Transform + pos: -111.5,88.5 + parent: 2 + - uid: 36306 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - uid: 36509 + components: + - type: Transform + pos: -103.5,98.5 + parent: 2 + - uid: 36510 + components: + - type: Transform + pos: -105.5,98.5 + parent: 2 + - uid: 36511 + components: + - type: Transform + pos: -106.5,98.5 + parent: 2 + - uid: 36512 + components: + - type: Transform + pos: -102.5,98.5 + parent: 2 + - uid: 36542 + components: + - type: Transform + pos: -101.5,98.5 + parent: 2 + - uid: 36596 + components: + - type: Transform + pos: -31.5,195.5 + parent: 2 + - uid: 36689 + components: + - type: Transform + pos: -29.5,195.5 + parent: 2 + - uid: 36788 + components: + - type: Transform + pos: 5.5,75.5 + parent: 2 + - uid: 36793 + components: + - type: Transform + pos: 4.5,75.5 + parent: 2 + - uid: 36839 + components: + - type: Transform + pos: 7.5,75.5 + parent: 2 + - uid: 36854 + components: + - type: Transform + pos: 80.5,43.5 + parent: 2 + - uid: 36865 + components: + - type: Transform + pos: -43.5,-10.5 + parent: 2 + - uid: 36946 + components: + - type: Transform + pos: 82.5,43.5 + parent: 2 + - uid: 36957 + components: + - type: Transform + pos: -54.5,62.5 + parent: 2 + - uid: 36958 + components: + - type: Transform + pos: -54.5,61.5 + parent: 2 + - uid: 36959 + components: + - type: Transform + pos: -54.5,60.5 + parent: 2 + - uid: 37066 + components: + - type: Transform + pos: -29.5,193.5 + parent: 2 + - uid: 37067 + components: + - type: Transform + pos: -29.5,194.5 + parent: 2 + - uid: 37238 + components: + - type: Transform + pos: -126.5,14.5 + parent: 2 + - uid: 37256 + components: + - type: Transform + pos: -31.5,180.5 + parent: 2 + - uid: 37257 + components: + - type: Transform + pos: -32.5,180.5 + parent: 2 + - uid: 37258 + components: + - type: Transform + pos: -33.5,180.5 + parent: 2 + - uid: 37259 + components: + - type: Transform + pos: -34.5,180.5 + parent: 2 + - uid: 37260 + components: + - type: Transform + pos: -35.5,180.5 + parent: 2 + - uid: 37261 + components: + - type: Transform + pos: -36.5,180.5 + parent: 2 + - uid: 37262 + components: + - type: Transform + pos: -36.5,179.5 + parent: 2 + - uid: 37263 + components: + - type: Transform + pos: -36.5,178.5 + parent: 2 + - uid: 37264 + components: + - type: Transform + pos: -36.5,177.5 + parent: 2 + - uid: 37265 + components: + - type: Transform + pos: -37.5,177.5 + parent: 2 + - uid: 37266 + components: + - type: Transform + pos: -38.5,177.5 + parent: 2 + - uid: 37267 + components: + - type: Transform + pos: -39.5,177.5 + parent: 2 + - uid: 37268 + components: + - type: Transform + pos: -40.5,177.5 + parent: 2 + - uid: 37269 + components: + - type: Transform + pos: -41.5,177.5 + parent: 2 + - uid: 37270 + components: + - type: Transform + pos: -39.5,176.5 + parent: 2 + - uid: 37271 + components: + - type: Transform + pos: -39.5,175.5 + parent: 2 + - uid: 37272 + components: + - type: Transform + pos: -39.5,174.5 + parent: 2 + - uid: 37273 + components: + - type: Transform + pos: -54.5,170.5 + parent: 2 + - uid: 37274 + components: + - type: Transform + pos: -54.5,171.5 + parent: 2 + - uid: 37275 + components: + - type: Transform + pos: -54.5,172.5 + parent: 2 + - uid: 37276 + components: + - type: Transform + pos: -53.5,172.5 + parent: 2 + - uid: 37277 + components: + - type: Transform + pos: -52.5,172.5 + parent: 2 + - uid: 37278 + components: + - type: Transform + pos: -51.5,172.5 + parent: 2 + - uid: 37279 + components: + - type: Transform + pos: -50.5,172.5 + parent: 2 + - uid: 37280 + components: + - type: Transform + pos: -49.5,172.5 + parent: 2 + - uid: 37281 + components: + - type: Transform + pos: -48.5,172.5 + parent: 2 + - uid: 37282 + components: + - type: Transform + pos: -47.5,172.5 + parent: 2 + - uid: 37283 + components: + - type: Transform + pos: -47.5,173.5 + parent: 2 + - uid: 37284 + components: + - type: Transform + pos: -47.5,174.5 + parent: 2 + - uid: 37285 + components: + - type: Transform + pos: -47.5,175.5 + parent: 2 + - uid: 37286 + components: + - type: Transform + pos: -47.5,176.5 + parent: 2 + - uid: 37287 + components: + - type: Transform + pos: -46.5,176.5 + parent: 2 + - uid: 37288 + components: + - type: Transform + pos: -45.5,176.5 + parent: 2 + - uid: 37289 + components: + - type: Transform + pos: -44.5,176.5 + parent: 2 + - uid: 37336 + components: + - type: Transform + pos: -53.5,169.5 + parent: 2 + - uid: 37337 + components: + - type: Transform + pos: -52.5,169.5 + parent: 2 + - uid: 37338 + components: + - type: Transform + pos: -51.5,169.5 + parent: 2 + - uid: 37339 + components: + - type: Transform + pos: -50.5,169.5 + parent: 2 + - uid: 37513 + components: + - type: Transform + pos: -63.5,61.5 + parent: 2 + - uid: 37553 + components: + - type: Transform + pos: -19.5,190.5 + parent: 2 + - uid: 37579 + components: + - type: Transform + pos: 2.5,182.5 + parent: 2 + - uid: 37580 + components: + - type: Transform + pos: 1.5,187.5 + parent: 2 + - uid: 37581 + components: + - type: Transform + pos: 2.5,187.5 + parent: 2 + - uid: 37587 + components: + - type: Transform + pos: -62.5,61.5 + parent: 2 + - uid: 37662 + components: + - type: Transform + pos: -101.5,54.5 + parent: 2 + - uid: 37663 + components: + - type: Transform + pos: -101.5,55.5 + parent: 2 + - uid: 37664 + components: + - type: Transform + pos: -101.5,56.5 + parent: 2 + - uid: 37665 + components: + - type: Transform + pos: -101.5,57.5 + parent: 2 + - uid: 37666 + components: + - type: Transform + pos: -101.5,58.5 + parent: 2 + - uid: 37667 + components: + - type: Transform + pos: -101.5,59.5 + parent: 2 + - uid: 37668 + components: + - type: Transform + pos: -101.5,60.5 + parent: 2 + - uid: 37669 + components: + - type: Transform + pos: -101.5,61.5 + parent: 2 + - uid: 37670 + components: + - type: Transform + pos: -102.5,61.5 + parent: 2 + - uid: 37671 + components: + - type: Transform + pos: -102.5,62.5 + parent: 2 + - uid: 37672 + components: + - type: Transform + pos: -103.5,62.5 + parent: 2 + - uid: 37673 + components: + - type: Transform + pos: -103.5,63.5 + parent: 2 + - uid: 37674 + components: + - type: Transform + pos: -104.5,63.5 + parent: 2 + - uid: 37675 + components: + - type: Transform + pos: -105.5,63.5 + parent: 2 + - uid: 37687 + components: + - type: Transform + pos: -100.5,57.5 + parent: 2 + - uid: 37688 + components: + - type: Transform + pos: -99.5,57.5 + parent: 2 + - uid: 37689 + components: + - type: Transform + pos: -98.5,57.5 + parent: 2 + - uid: 37705 + components: + - type: Transform + pos: -92.5,51.5 + parent: 2 + - uid: 37706 + components: + - type: Transform + pos: -92.5,50.5 + parent: 2 + - uid: 37739 + components: + - type: Transform + pos: 5.5,80.5 + parent: 2 + - uid: 37740 + components: + - type: Transform + pos: 7.5,80.5 + parent: 2 + - uid: 37743 + components: + - type: Transform + pos: 4.5,80.5 + parent: 2 + - uid: 37854 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 37842 + - uid: 37855 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 37842 + - uid: 37856 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 37842 + - uid: 37857 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 37842 + - uid: 37858 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 37842 + - uid: 37859 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 37842 + - uid: 37860 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 37842 + - uid: 37861 + components: + - type: Transform + pos: -1.5,0.5 + parent: 37842 + - uid: 37862 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 37842 + - uid: 37863 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 37842 + - uid: 37864 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 37842 + - uid: 37865 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 37842 + - uid: 37866 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 37842 + - uid: 37867 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 37842 + - uid: 37868 + components: + - type: Transform + pos: 2.5,0.5 + parent: 37842 + - uid: 37871 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 37842 + - uid: 37872 + components: + - type: Transform + pos: 0.5,1.5 + parent: 37842 + - uid: 37873 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 37842 + - uid: 37874 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 37842 + - uid: 37875 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 37842 + - uid: 37876 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 37842 + - uid: 37877 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 37842 + - uid: 37878 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 37842 + - uid: 37879 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 37842 + - uid: 37880 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 37842 + - uid: 37881 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 37842 + - uid: 37882 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 37842 + - uid: 37883 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 37842 + - uid: 37884 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 37842 + - uid: 37885 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 37842 + - uid: 37886 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 37842 + - uid: 37887 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 37842 + - uid: 37888 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 37842 + - uid: 37889 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 37842 + - uid: 37890 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 37842 + - uid: 37891 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 37842 + - uid: 37892 + components: + - type: Transform + pos: 2.5,1.5 + parent: 37842 + - uid: 37893 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 37842 + - uid: 37894 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 37842 + - uid: 37895 + components: + - type: Transform + pos: -1.5,0.5 + parent: 37842 + - uid: 37896 + components: + - type: Transform + pos: -1.5,1.5 + parent: 37842 + - uid: 37897 + components: + - type: Transform + pos: -0.5,1.5 + parent: 37842 + - uid: 37898 + components: + - type: Transform + pos: 0.5,0.5 + parent: 37842 + - uid: 37899 + components: + - type: Transform + pos: 1.5,1.5 + parent: 37842 + - uid: 37900 + components: + - type: Transform + pos: 2.5,1.5 + parent: 37842 + - uid: 37902 + components: + - type: Transform + pos: -94.5,94.5 + parent: 2 + - uid: 38451 + components: + - type: Transform + pos: -77.5,42.5 + parent: 2 + - uid: 38455 + components: + - type: Transform + pos: -76.5,42.5 + parent: 2 + - uid: 38456 + components: + - type: Transform + pos: -75.5,42.5 + parent: 2 + - uid: 38457 + components: + - type: Transform + pos: -74.5,42.5 + parent: 2 + - uid: 38458 + components: + - type: Transform + pos: -77.5,40.5 + parent: 2 + - uid: 38459 + components: + - type: Transform + pos: -76.5,40.5 + parent: 2 + - uid: 38460 + components: + - type: Transform + pos: -75.5,40.5 + parent: 2 + - uid: 38461 + components: + - type: Transform + pos: -74.5,40.5 + parent: 2 + - uid: 39183 + components: + - type: Transform + pos: -76.5,104.5 + parent: 2 + - uid: 39191 + components: + - type: Transform + pos: -74.5,93.5 + parent: 2 + - uid: 39192 + components: + - type: Transform + pos: -74.5,92.5 + parent: 2 + - uid: 39193 + components: + - type: Transform + pos: -75.5,92.5 + parent: 2 + - uid: 39194 + components: + - type: Transform + pos: -76.5,92.5 + parent: 2 + - uid: 39195 + components: + - type: Transform + pos: -77.5,92.5 + parent: 2 + - uid: 39254 + components: + - type: Transform + pos: -72.5,113.5 + parent: 2 + - uid: 39255 + components: + - type: Transform + pos: -72.5,112.5 + parent: 2 + - uid: 39256 + components: + - type: Transform + pos: -72.5,111.5 + parent: 2 + - uid: 39257 + components: + - type: Transform + pos: -73.5,111.5 + parent: 2 + - uid: 39300 + components: + - type: Transform + pos: 78.5,51.5 + parent: 2 + - uid: 39302 + components: + - type: Transform + pos: 79.5,51.5 + parent: 2 + - uid: 39303 + components: + - type: Transform + pos: 80.5,51.5 + parent: 2 + - uid: 39304 + components: + - type: Transform + pos: 81.5,51.5 + parent: 2 + - uid: 39305 + components: + - type: Transform + pos: 82.5,51.5 + parent: 2 + - uid: 39306 + components: + - type: Transform + pos: 77.5,48.5 + parent: 2 + - uid: 39307 + components: + - type: Transform + pos: 78.5,48.5 + parent: 2 + - uid: 39308 + components: + - type: Transform + pos: 79.5,48.5 + parent: 2 + - uid: 39309 + components: + - type: Transform + pos: 80.5,48.5 + parent: 2 + - uid: 39310 + components: + - type: Transform + pos: 81.5,48.5 + parent: 2 + - uid: 39311 + components: + - type: Transform + pos: 82.5,48.5 + parent: 2 + - uid: 39313 + components: + - type: Transform + pos: 78.5,54.5 + parent: 2 + - uid: 39315 + components: + - type: Transform + pos: 79.5,54.5 + parent: 2 + - uid: 39316 + components: + - type: Transform + pos: 80.5,54.5 + parent: 2 + - uid: 39317 + components: + - type: Transform + pos: 81.5,54.5 + parent: 2 + - uid: 39320 + components: + - type: Transform + pos: 82.5,54.5 + parent: 2 + - uid: 39321 + components: + - type: Transform + pos: 77.5,55.5 + parent: 2 + - uid: 39416 + components: + - type: Transform + pos: -19.5,171.5 + parent: 2 + - uid: 39417 + components: + - type: Transform + pos: -20.5,171.5 + parent: 2 + - uid: 39418 + components: + - type: Transform + pos: -21.5,171.5 + parent: 2 + - uid: 39419 + components: + - type: Transform + pos: -20.5,170.5 + parent: 2 + - uid: 39420 + components: + - type: Transform + pos: -20.5,169.5 + parent: 2 + - uid: 39421 + components: + - type: Transform + pos: -21.5,169.5 + parent: 2 + - uid: 39475 + components: + - type: Transform + pos: -111.5,61.5 + parent: 2 + - uid: 39476 + components: + - type: Transform + pos: -111.5,62.5 + parent: 2 + - uid: 39477 + components: + - type: Transform + pos: -111.5,63.5 + parent: 2 + - uid: 39478 + components: + - type: Transform + pos: -111.5,64.5 + parent: 2 + - uid: 39479 + components: + - type: Transform + pos: -112.5,64.5 + parent: 2 + - uid: 39480 + components: + - type: Transform + pos: -113.5,64.5 + parent: 2 + - uid: 39481 + components: + - type: Transform + pos: -114.5,64.5 + parent: 2 + - uid: 39482 + components: + - type: Transform + pos: -115.5,64.5 + parent: 2 + - uid: 39483 + components: + - type: Transform + pos: -116.5,64.5 + parent: 2 + - uid: 39484 + components: + - type: Transform + pos: -116.5,63.5 + parent: 2 + - uid: 39485 + components: + - type: Transform + pos: -116.5,62.5 + parent: 2 + - uid: 39486 + components: + - type: Transform + pos: -117.5,62.5 + parent: 2 + - uid: 39487 + components: + - type: Transform + pos: -118.5,62.5 + parent: 2 + - uid: 39488 + components: + - type: Transform + pos: -119.5,62.5 + parent: 2 + - uid: 42217 + components: + - type: Transform + pos: 49.5,56.5 + parent: 2 + - uid: 42218 + components: + - type: Transform + pos: 46.5,57.5 + parent: 2 + - uid: 42219 + components: + - type: Transform + pos: 48.5,57.5 + parent: 2 + - uid: 42220 + components: + - type: Transform + pos: 46.5,55.5 + parent: 2 + - uid: 42221 + components: + - type: Transform + pos: 48.5,55.5 + parent: 2 + - uid: 43197 + components: + - type: Transform + pos: 55.5,54.5 + parent: 2 + - uid: 43198 + components: + - type: Transform + pos: 55.5,53.5 + parent: 2 + - uid: 43199 + components: + - type: Transform + pos: 55.5,52.5 + parent: 2 + - uid: 43200 + components: + - type: Transform + pos: 55.5,51.5 + parent: 2 + - uid: 43201 + components: + - type: Transform + pos: 55.5,50.5 + parent: 2 + - uid: 43202 + components: + - type: Transform + pos: 55.5,49.5 + parent: 2 + - uid: 43203 + components: + - type: Transform + pos: 55.5,48.5 + parent: 2 + - uid: 43204 + components: + - type: Transform + pos: 55.5,55.5 + parent: 2 + - uid: 43205 + components: + - type: Transform + pos: 55.5,56.5 + parent: 2 + - uid: 43206 + components: + - type: Transform + pos: 54.5,56.5 + parent: 2 + - uid: 43207 + components: + - type: Transform + pos: 53.5,56.5 + parent: 2 + - uid: 43208 + components: + - type: Transform + pos: 52.5,56.5 + parent: 2 + - uid: 43209 + components: + - type: Transform + pos: 50.5,48.5 + parent: 2 + - uid: 43210 + components: + - type: Transform + pos: 50.5,49.5 + parent: 2 + - uid: 43211 + components: + - type: Transform + pos: 50.5,50.5 + parent: 2 + - uid: 43212 + components: + - type: Transform + pos: 50.5,51.5 + parent: 2 + - uid: 43213 + components: + - type: Transform + pos: 50.5,52.5 + parent: 2 + - uid: 43214 + components: + - type: Transform + pos: 49.5,50.5 + parent: 2 + - uid: 43215 + components: + - type: Transform + pos: 48.5,50.5 + parent: 2 + - uid: 43216 + components: + - type: Transform + pos: 47.5,50.5 + parent: 2 + - uid: 43217 + components: + - type: Transform + pos: 46.5,50.5 + parent: 2 + - uid: 43218 + components: + - type: Transform + pos: 45.5,50.5 + parent: 2 + - uid: 43219 + components: + - type: Transform + pos: 51.5,50.5 + parent: 2 + - uid: 43220 + components: + - type: Transform + pos: 52.5,50.5 + parent: 2 + - uid: 43221 + components: + - type: Transform + pos: 53.5,50.5 + parent: 2 + - uid: 43222 + components: + - type: Transform + pos: 54.5,50.5 + parent: 2 + - uid: 43223 + components: + - type: Transform + pos: 51.5,56.5 + parent: 2 + - uid: 43224 + components: + - type: Transform + pos: 51.5,55.5 + parent: 2 + - uid: 43225 + components: + - type: Transform + pos: 51.5,54.5 + parent: 2 + - uid: 43270 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 43275 + components: + - type: Transform + pos: -21.5,102.5 + parent: 2 + - uid: 43349 + components: + - type: Transform + pos: -127.5,18.5 + parent: 2 + - uid: 43361 + components: + - type: Transform + pos: -128.5,18.5 + parent: 2 + - uid: 43382 + components: + - type: Transform + pos: -127.5,14.5 + parent: 2 + - uid: 43383 + components: + - type: Transform + pos: -124.5,14.5 + parent: 2 + - uid: 43384 + components: + - type: Transform + pos: -123.5,14.5 + parent: 2 + - uid: 43385 + components: + - type: Transform + pos: -123.5,15.5 + parent: 2 + - uid: 43386 + components: + - type: Transform + pos: -127.5,15.5 + parent: 2 + - uid: 43387 + components: + - type: Transform + pos: -125.5,12.5 + parent: 2 + - uid: 43388 + components: + - type: Transform + pos: -125.5,11.5 + parent: 2 + - uid: 43389 + components: + - type: Transform + pos: -125.5,10.5 + parent: 2 + - uid: 43390 + components: + - type: Transform + pos: -125.5,9.5 + parent: 2 + - uid: 43391 + components: + - type: Transform + pos: -125.5,8.5 + parent: 2 + - uid: 43393 + components: + - type: Transform + pos: -126.5,8.5 + parent: 2 + - uid: 43394 + components: + - type: Transform + pos: -127.5,8.5 + parent: 2 + - uid: 43395 + components: + - type: Transform + pos: -128.5,8.5 + parent: 2 + - uid: 43396 + components: + - type: Transform + pos: -129.5,8.5 + parent: 2 + - uid: 43397 + components: + - type: Transform + pos: -130.5,8.5 + parent: 2 + - uid: 43398 + components: + - type: Transform + pos: -131.5,8.5 + parent: 2 + - uid: 43399 + components: + - type: Transform + pos: -131.5,9.5 + parent: 2 + - uid: 43400 + components: + - type: Transform + pos: -128.5,9.5 + parent: 2 + - uid: 43401 + components: + - type: Transform + pos: -124.5,8.5 + parent: 2 + - uid: 43402 + components: + - type: Transform + pos: -123.5,8.5 + parent: 2 + - uid: 43403 + components: + - type: Transform + pos: -122.5,8.5 + parent: 2 + - uid: 43404 + components: + - type: Transform + pos: -121.5,8.5 + parent: 2 + - uid: 43405 + components: + - type: Transform + pos: -120.5,8.5 + parent: 2 + - uid: 43406 + components: + - type: Transform + pos: -119.5,8.5 + parent: 2 + - uid: 43407 + components: + - type: Transform + pos: -122.5,9.5 + parent: 2 + - uid: 43408 + components: + - type: Transform + pos: -119.5,9.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 7529 + components: + - type: Transform + pos: -107.260605,91.55407 + parent: 2 + - uid: 13406 + components: + - type: Transform + pos: -27.472187,75.52056 + parent: 2 + - uid: 20992 + components: + - type: Transform + pos: -73.572014,168.5335 + parent: 2 +- proto: CableApcStack1 + entities: + - uid: 19108 + components: + - type: Transform + pos: -139.8233,17.413181 + parent: 2 + - uid: 19294 + components: + - type: Transform + pos: -139.1983,18.006931 + parent: 2 + - uid: 30390 + components: + - type: Transform + pos: -141.30115,32.65558 + parent: 2 +- proto: CableApcStack10 + entities: + - uid: 15835 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-51.5 + pos: -49.47325,70.704216 parent: 2 - - uid: 13610 + - uid: 17975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-60.5 + rot: 3.141592653589793 rad + pos: -60.63565,164.63829 parent: 2 - - uid: 13611 + - uid: 18167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.42194,164.46962 + parent: 2 +- proto: CableApcStackLingering10 + entities: + - uid: 20889 + components: + - type: Transform + pos: -72.927055,180.1337 + parent: 2 +- proto: CableHV + entities: + - uid: 577 + components: + - type: Transform + pos: -65.5,-4.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: -65.5,-8.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: -65.5,-7.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: -125.5,59.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: -125.5,58.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: -125.5,60.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: -77.5,-11.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: -80.5,-9.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: -84.5,-8.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: -83.5,-8.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: -82.5,-8.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: -81.5,-8.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: -80.5,-8.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: -81.5,-12.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: -81.5,-6.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: -81.5,-5.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: -79.5,-6.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: -81.5,-4.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: -79.5,-8.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: -78.5,-8.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: -77.5,-8.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: -77.5,-6.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: -129.5,148.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: -76.5,-6.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: -74.5,-8.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: -73.5,-8.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: -79.5,-5.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: -80.5,-6.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: -80.5,-7.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -77.5,-12.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -75.5,-11.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -75.5,-10.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -76.5,-7.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -80.5,-10.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -77.5,-5.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: -79.5,-10.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: -131.5,148.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: -79.5,-11.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: -130.5,148.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: -79.5,-12.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: -81.5,-11.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: -81.5,-10.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: -77.5,-4.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: -76.5,-9.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: -76.5,-10.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: -67.5,-7.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: -127.5,149.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: -123.5,148.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: -67.5,-8.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: -67.5,-5.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: -127.5,150.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: -75.5,-5.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: -128.5,153.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: -75.5,-4.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: -72.5,-8.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: -71.5,-8.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: -70.5,-8.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: -69.5,-8.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: -68.5,-8.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: -66.5,-12.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: -66.5,-13.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: -66.5,-15.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: -128.5,150.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: -65.5,-9.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: -64.5,-9.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: -77.5,-10.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: -128.5,151.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: 2.5,235.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: -4.5,237.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: 0.5,236.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: 1.5,236.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: 0.5,237.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + pos: 0.5,239.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: 4.5,233.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: 5.5,233.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: 0.5,238.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: -102.5,25.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: 0.5,240.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: -67.5,-4.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: -1.5,237.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: -5.5,235.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: -3.5,235.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: -4.5,235.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 1.5,228.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 3.5,231.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: 2.5,231.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 5.5,231.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: 4.5,231.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 4.5,229.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 6.5,231.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: 70.5,7.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + pos: 75.5,7.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: 76.5,7.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: 68.5,9.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: 2.5,229.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 3.5,229.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + pos: 2.5,228.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + pos: 1.5,224.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: -1.5,229.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + pos: -4.5,227.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + pos: -126.5,57.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + pos: 73.5,9.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: -46.5,67.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + pos: -57.5,75.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: -102.5,26.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + pos: -127.5,46.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + pos: -127.5,48.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + pos: -46.5,69.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + pos: -46.5,68.5 + parent: 2 + - uid: 4129 + components: + - type: Transform + pos: -56.5,75.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: -127.5,45.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: -110.5,36.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + pos: -102.5,29.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + pos: -102.5,27.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: -109.5,29.5 + parent: 2 + - uid: 4349 + components: + - type: Transform + pos: -109.5,30.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: 88.5,40.5 + parent: 2 + - uid: 4447 + components: + - type: Transform + pos: 88.5,41.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: 85.5,39.5 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: 84.5,39.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + pos: 88.5,39.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: -109.5,37.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + pos: -106.5,34.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: 3.5,80.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: 88.5,42.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + pos: -128.5,152.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + pos: -111.5,32.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + pos: 88.5,43.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + pos: 88.5,45.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: 88.5,46.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + pos: -44.5,67.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: -44.5,68.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: -128.5,57.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: 88.5,47.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + pos: -127.5,52.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: 70.5,26.5 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 + - uid: 5248 + components: + - type: Transform + pos: -55.5,75.5 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: 70.5,24.5 + parent: 2 + - uid: 5330 + components: + - type: Transform + pos: 70.5,25.5 + parent: 2 + - uid: 5342 + components: + - type: Transform + pos: 66.5,9.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + pos: 72.5,9.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + pos: 67.5,9.5 + parent: 2 + - uid: 5354 + components: + - type: Transform + pos: 70.5,18.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + pos: -5.5,229.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + pos: -5.5,227.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + pos: 72.5,7.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + pos: 73.5,7.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + pos: 70.5,6.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: 65.5,7.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + pos: 74.5,9.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: 74.5,7.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + pos: 64.5,7.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + pos: 75.5,9.5 + parent: 2 + - uid: 5411 + components: + - type: Transform + pos: 76.5,11.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + pos: -127.5,57.5 + parent: 2 + - uid: 5461 + components: + - type: Transform + pos: -4.5,231.5 + parent: 2 + - uid: 5554 + components: + - type: Transform + pos: 70.5,5.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + pos: 76.5,9.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + pos: 75.5,11.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 + - uid: 5575 + components: + - type: Transform + pos: 68.5,7.5 + parent: 2 + - uid: 5576 + components: + - type: Transform + pos: 67.5,7.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + pos: -127.5,54.5 + parent: 2 + - uid: 5616 + components: + - type: Transform + pos: 74.5,11.5 + parent: 2 + - uid: 5625 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 5694 + components: + - type: Transform + pos: 70.5,19.5 + parent: 2 + - uid: 5696 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 5697 + components: + - type: Transform + pos: 72.5,11.5 + parent: 2 + - uid: 5698 + components: + - type: Transform + pos: 75.5,13.5 + parent: 2 + - uid: 5715 + components: + - type: Transform + pos: 69.5,8.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + pos: 71.5,8.5 + parent: 2 + - uid: 5726 + components: + - type: Transform + pos: 69.5,12.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + pos: 70.5,16.5 + parent: 2 + - uid: 5766 + components: + - type: Transform + pos: 70.5,17.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + pos: 71.5,12.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + pos: 72.5,12.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + pos: -70.5,70.5 + parent: 2 + - uid: 5778 + components: + - type: Transform + pos: -127.5,55.5 + parent: 2 + - uid: 5781 + components: + - type: Transform + pos: 72.5,8.5 + parent: 2 + - uid: 5806 + components: + - type: Transform + pos: 70.5,23.5 + parent: 2 + - uid: 5835 + components: + - type: Transform + pos: 68.5,8.5 + parent: 2 + - uid: 5873 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: 70.5,8.5 + parent: 2 + - uid: 5880 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + pos: 71.5,20.5 + parent: 2 + - uid: 5902 + components: + - type: Transform + pos: 70.5,28.5 + parent: 2 + - uid: 5903 + components: + - type: Transform + pos: 70.5,29.5 + parent: 2 + - uid: 5904 + components: + - type: Transform + pos: 71.5,29.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + pos: 73.5,29.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: 74.5,29.5 + parent: 2 + - uid: 5909 + components: + - type: Transform + pos: 75.5,29.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + pos: 76.5,29.5 + parent: 2 + - uid: 5915 + components: + - type: Transform + pos: 77.5,29.5 + parent: 2 + - uid: 5917 + components: + - type: Transform + pos: 78.5,29.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + pos: 79.5,29.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + pos: 80.5,29.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + pos: 81.5,29.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + pos: 82.5,29.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + pos: 83.5,30.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + pos: 83.5,31.5 + parent: 2 + - uid: 5925 + components: + - type: Transform + pos: 83.5,32.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: 83.5,33.5 + parent: 2 + - uid: 5928 + components: + - type: Transform + pos: 83.5,34.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + pos: 83.5,35.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + pos: 83.5,36.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + pos: 83.5,37.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + pos: 83.5,38.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: 83.5,39.5 + parent: 2 + - uid: 5936 + components: + - type: Transform + pos: -76.5,70.5 + parent: 2 + - uid: 5956 + components: + - type: Transform + pos: 85.5,51.5 + parent: 2 + - uid: 5960 + components: + - type: Transform + pos: 85.5,52.5 + parent: 2 + - uid: 5961 + components: + - type: Transform + pos: 85.5,53.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + pos: 85.5,54.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + pos: 85.5,55.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + pos: 85.5,56.5 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: 84.5,56.5 + parent: 2 + - uid: 5966 + components: + - type: Transform + pos: 84.5,57.5 + parent: 2 + - uid: 5968 + components: + - type: Transform + pos: 84.5,58.5 + parent: 2 + - uid: 5969 + components: + - type: Transform + pos: 84.5,59.5 + parent: 2 + - uid: 5970 + components: + - type: Transform + pos: 84.5,60.5 + parent: 2 + - uid: 5971 + components: + - type: Transform + pos: 83.5,60.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + pos: 82.5,60.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: -69.5,70.5 + parent: 2 + - uid: 6302 + components: + - type: Transform + pos: 72.5,13.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + pos: 73.5,11.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: 87.5,39.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: 68.5,12.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + pos: 66.5,11.5 + parent: 2 + - uid: 6494 + components: + - type: Transform + pos: 68.5,13.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + pos: 76.5,13.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + pos: 70.5,13.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + pos: 67.5,13.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 6501 + components: + - type: Transform + pos: 66.5,13.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + pos: 73.5,13.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + pos: 74.5,13.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + pos: 70.5,14.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: -54.5,75.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + pos: -127.5,49.5 + parent: 2 + - uid: 7697 + components: + - type: Transform + pos: -55.5,132.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + pos: -54.5,132.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + pos: -54.5,131.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + pos: -54.5,130.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + pos: -54.5,129.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: -54.5,128.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + pos: -55.5,128.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + pos: -128.5,54.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + pos: -128.5,56.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: -80.5,75.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + pos: -128.5,53.5 + parent: 2 + - uid: 8758 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 8759 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 + - uid: 8760 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 8761 + components: + - type: Transform + pos: 66.5,29.5 + parent: 2 + - uid: 8762 + components: + - type: Transform + pos: 65.5,29.5 + parent: 2 + - uid: 8763 + components: + - type: Transform + pos: 64.5,29.5 + parent: 2 + - uid: 8764 + components: + - type: Transform + pos: 63.5,29.5 + parent: 2 + - uid: 8765 + components: + - type: Transform + pos: 62.5,29.5 + parent: 2 + - uid: 8766 + components: + - type: Transform + pos: 68.5,29.5 + parent: 2 + - uid: 8767 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 8768 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 8769 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 8770 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - uid: 8771 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 8772 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 + - uid: 8773 + components: + - type: Transform + pos: 61.5,29.5 + parent: 2 + - uid: 8774 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 8775 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 8776 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 8777 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 + - uid: 8778 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 8779 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 8787 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - uid: 8788 + components: + - type: Transform + pos: 52.5,25.5 + parent: 2 + - uid: 8789 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - uid: 8790 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 8791 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 8792 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 8793 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 8794 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 8797 + components: + - type: Transform + pos: 53.5,25.5 + parent: 2 + - uid: 8798 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - uid: 8799 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 + - uid: 8800 + components: + - type: Transform + pos: 56.5,25.5 + parent: 2 + - uid: 8801 + components: + - type: Transform + pos: 57.5,25.5 + parent: 2 + - uid: 8802 + components: + - type: Transform + pos: 58.5,25.5 + parent: 2 + - uid: 8803 + components: + - type: Transform + pos: 51.5,25.5 + parent: 2 + - uid: 8804 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 8805 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 8806 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 8807 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 8808 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 8809 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 + - uid: 8810 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 8811 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 8815 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 8816 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 8817 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 8819 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 8824 + components: + - type: Transform + pos: 54.5,21.5 + parent: 2 + - uid: 8825 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 9012 + components: + - type: Transform + pos: -128.5,55.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: -127.5,47.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + pos: -127.5,53.5 + parent: 2 + - uid: 9773 + components: + - type: Transform + pos: -80.5,74.5 + parent: 2 + - uid: 11145 + components: + - type: Transform + pos: 70.5,15.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + pos: -115.5,61.5 + parent: 2 + - uid: 11244 + components: + - type: Transform + pos: -83.5,78.5 + parent: 2 + - uid: 11246 + components: + - type: Transform + pos: -75.5,70.5 + parent: 2 + - uid: 11254 + components: + - type: Transform + pos: -73.5,70.5 + parent: 2 + - uid: 11457 + components: + - type: Transform + pos: -72.5,70.5 + parent: 2 + - uid: 12441 + components: + - type: Transform + pos: -126.5,56.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + pos: -101.5,30.5 + parent: 2 + - uid: 12898 + components: + - type: Transform + pos: -101.5,31.5 + parent: 2 + - uid: 13414 + components: + - type: Transform + pos: -118.5,106.5 + parent: 2 + - uid: 13415 + components: + - type: Transform + pos: -118.5,108.5 + parent: 2 + - uid: 13558 + components: + - type: Transform + pos: -101.5,32.5 + parent: 2 + - uid: 13737 + components: + - type: Transform + pos: 87.5,51.5 + parent: 2 + - uid: 14205 + components: + - type: Transform + pos: 68.5,21.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: 3.5,233.5 + parent: 2 + - uid: 14249 + components: + - type: Transform + pos: -118.5,105.5 + parent: 2 + - uid: 14613 + components: + - type: Transform + pos: -69.5,71.5 + parent: 2 + - uid: 14815 + components: + - type: Transform + pos: -69.5,74.5 + parent: 2 + - uid: 14928 + components: + - type: Transform + pos: -44.5,66.5 + parent: 2 + - uid: 14929 + components: + - type: Transform + pos: -44.5,66.5 + parent: 2 + - uid: 15061 + components: + - type: Transform + pos: -48.5,104.5 + parent: 2 + - uid: 15077 + components: + - type: Transform + pos: -48.5,103.5 + parent: 2 + - uid: 15078 + components: + - type: Transform + pos: -47.5,103.5 + parent: 2 + - uid: 15079 + components: + - type: Transform + pos: -48.5,105.5 + parent: 2 + - uid: 15080 + components: + - type: Transform + pos: -47.5,102.5 + parent: 2 + - uid: 15081 + components: + - type: Transform + pos: -47.5,101.5 + parent: 2 + - uid: 15082 + components: + - type: Transform + pos: -47.5,100.5 + parent: 2 + - uid: 15083 + components: + - type: Transform + pos: -47.5,105.5 + parent: 2 + - uid: 15271 + components: + - type: Transform + pos: -128.5,148.5 + parent: 2 + - uid: 15334 + components: + - type: Transform + pos: -128.5,154.5 + parent: 2 + - uid: 15359 + components: + - type: Transform + pos: 88.5,51.5 + parent: 2 + - uid: 15360 + components: + - type: Transform + pos: 86.5,39.5 + parent: 2 + - uid: 15361 + components: + - type: Transform + pos: -68.5,74.5 + parent: 2 + - uid: 15364 + components: + - type: Transform + pos: -71.5,70.5 + parent: 2 + - uid: 15395 + components: + - type: Transform + pos: -45.5,66.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + pos: -69.5,72.5 + parent: 2 + - uid: 15499 + components: + - type: Transform + pos: -47.5,67.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + pos: -119.5,108.5 + parent: 2 + - uid: 16436 + components: + - type: Transform + pos: 4.5,80.5 + parent: 2 + - uid: 16640 + components: + - type: Transform + pos: -126.5,153.5 + parent: 2 + - uid: 16641 + components: + - type: Transform + pos: -126.5,150.5 + parent: 2 + - uid: 16760 + components: + - type: Transform + pos: 86.5,51.5 + parent: 2 + - uid: 16791 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 13386 + - uid: 16805 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 13386 + - uid: 16806 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 13386 + - uid: 16807 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 13386 + - uid: 16808 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 13386 + - uid: 16809 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 13386 + - uid: 16810 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 13386 + - uid: 16811 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 13386 + - uid: 16812 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 13386 + - uid: 16813 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 13386 + - uid: 17074 + components: + - type: Transform + pos: -101.5,29.5 + parent: 2 + - uid: 17106 + components: + - type: Transform + pos: -102.5,28.5 + parent: 2 + - uid: 17119 + components: + - type: Transform + pos: -109.5,31.5 + parent: 2 + - uid: 17259 + components: + - type: Transform + pos: -47.5,66.5 + parent: 2 + - uid: 17307 + components: + - type: Transform + pos: 6.5,80.5 + parent: 2 + - uid: 17309 + components: + - type: Transform + pos: 5.5,80.5 + parent: 2 + - uid: 17377 + components: + - type: Transform + pos: -121.5,61.5 + parent: 2 + - uid: 17386 + components: + - type: Transform + pos: -126.5,152.5 + parent: 2 + - uid: 17391 + components: + - type: Transform + pos: -126.5,151.5 + parent: 2 + - uid: 17432 + components: + - type: Transform + pos: -126.5,154.5 + parent: 2 + - uid: 17434 + components: + - type: Transform + pos: -111.5,60.5 + parent: 2 + - uid: 17437 + components: + - type: Transform + pos: -121.5,148.5 + parent: 2 + - uid: 17443 + components: + - type: Transform + pos: -119.5,148.5 + parent: 2 + - uid: 17453 + components: + - type: Transform + pos: -112.5,60.5 + parent: 2 + - uid: 17491 + components: + - type: Transform + pos: -118.5,148.5 + parent: 2 + - uid: 17529 + components: + - type: Transform + pos: 6.5,235.5 + parent: 2 + - uid: 17580 + components: + - type: Transform + pos: -120.5,148.5 + parent: 2 + - uid: 17862 + components: + - type: Transform + pos: -83.5,95.5 + parent: 2 + - uid: 17864 + components: + - type: Transform + pos: -104.5,68.5 + parent: 2 + - uid: 17879 + components: + - type: Transform + pos: -105.5,67.5 + parent: 2 + - uid: 17888 + components: + - type: Transform + pos: -80.5,76.5 + parent: 2 + - uid: 17889 + components: + - type: Transform + pos: -83.5,79.5 + parent: 2 + - uid: 17906 + components: + - type: Transform + pos: -80.5,79.5 + parent: 2 + - uid: 17911 + components: + - type: Transform + pos: -81.5,77.5 + parent: 2 + - uid: 17912 + components: + - type: Transform + pos: -97.5,72.5 + parent: 2 + - uid: 17918 + components: + - type: Transform + pos: -97.5,71.5 + parent: 2 + - uid: 17920 + components: + - type: Transform + pos: -96.5,72.5 + parent: 2 + - uid: 17940 + components: + - type: Transform + pos: -107.5,67.5 + parent: 2 + - uid: 17945 + components: + - type: Transform + pos: -87.5,75.5 + parent: 2 + - uid: 17946 + components: + - type: Transform + pos: -93.5,74.5 + parent: 2 + - uid: 17987 + components: + - type: Transform + pos: -101.5,148.5 + parent: 2 + - uid: 17997 + components: + - type: Transform + pos: 0.5,216.5 + parent: 2 + - uid: 18022 + components: + - type: Transform + pos: -85.5,76.5 + parent: 2 + - uid: 18023 + components: + - type: Transform + pos: -83.5,76.5 + parent: 2 + - uid: 18036 + components: + - type: Transform + pos: -107.5,64.5 + parent: 2 + - uid: 18052 + components: + - type: Transform + pos: -110.5,60.5 + parent: 2 + - uid: 18056 + components: + - type: Transform + pos: -102.5,148.5 + parent: 2 + - uid: 18075 + components: + - type: Transform + pos: -80.5,77.5 + parent: 2 + - uid: 18076 + components: + - type: Transform + pos: -100.5,70.5 + parent: 2 + - uid: 18082 + components: + - type: Transform + pos: -82.5,77.5 + parent: 2 + - uid: 18089 + components: + - type: Transform + pos: -126.5,61.5 + parent: 2 + - uid: 18106 + components: + - type: Transform + pos: -80.5,78.5 + parent: 2 + - uid: 18132 + components: + - type: Transform + pos: -87.5,76.5 + parent: 2 + - uid: 18222 + components: + - type: Transform + pos: -124.5,153.5 + parent: 2 + - uid: 18223 + components: + - type: Transform + pos: -109.5,60.5 + parent: 2 + - uid: 18225 + components: + - type: Transform + pos: -124.5,151.5 + parent: 2 + - uid: 18229 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 18246 + components: + - type: Transform + pos: -124.5,150.5 + parent: 2 + - uid: 18317 + components: + - type: Transform + pos: -108.5,64.5 + parent: 2 + - uid: 18331 + components: + - type: Transform + pos: -108.5,61.5 + parent: 2 + - uid: 18356 + components: + - type: Transform + pos: -84.5,76.5 + parent: 2 + - uid: 18359 + components: + - type: Transform + pos: -83.5,77.5 + parent: 2 + - uid: 18363 + components: + - type: Transform + pos: -86.5,76.5 + parent: 2 + - uid: 18367 + components: + - type: Transform + pos: -99.5,70.5 + parent: 2 + - uid: 18376 + components: + - type: Transform + pos: -91.5,74.5 + parent: 2 + - uid: 18388 + components: + - type: Transform + pos: -94.5,73.5 + parent: 2 + - uid: 18390 + components: + - type: Transform + pos: -90.5,75.5 + parent: 2 + - uid: 18404 + components: + - type: Transform + pos: -99.5,71.5 + parent: 2 + - uid: 18407 + components: + - type: Transform + pos: -103.5,69.5 + parent: 2 + - uid: 18408 + components: + - type: Transform + pos: -108.5,60.5 + parent: 2 + - uid: 18410 + components: + - type: Transform + pos: -103.5,68.5 + parent: 2 + - uid: 18411 + components: + - type: Transform + pos: -98.5,71.5 + parent: 2 + - uid: 18413 + components: + - type: Transform + pos: -106.5,67.5 + parent: 2 + - uid: 18415 + components: + - type: Transform + pos: -91.5,75.5 + parent: 2 + - uid: 18418 + components: + - type: Transform + pos: -93.5,73.5 + parent: 2 + - uid: 18427 + components: + - type: Transform + pos: -108.5,62.5 + parent: 2 + - uid: 18457 + components: + - type: Transform + pos: -80.5,84.5 + parent: 2 + - uid: 18463 + components: + - type: Transform + pos: -80.5,88.5 + parent: 2 + - uid: 18479 + components: + - type: Transform + pos: -88.5,75.5 + parent: 2 + - uid: 18482 + components: + - type: Transform + pos: -92.5,74.5 + parent: 2 + - uid: 18486 + components: + - type: Transform + pos: -101.5,69.5 + parent: 2 + - uid: 18499 + components: + - type: Transform + pos: -102.5,69.5 + parent: 2 + - uid: 18500 + components: + - type: Transform + pos: -101.5,70.5 + parent: 2 + - uid: 18518 + components: + - type: Transform + pos: 88.5,44.5 + parent: 2 + - uid: 18525 + components: + - type: Transform + pos: -82.5,95.5 + parent: 2 + - uid: 18618 + components: + - type: Transform + pos: -113.5,61.5 + parent: 2 + - uid: 18620 + components: + - type: Transform + pos: -108.5,63.5 + parent: 2 + - uid: 18660 + components: + - type: Transform + pos: -107.5,66.5 + parent: 2 + - uid: 18713 + components: + - type: Transform + pos: -67.5,-6.5 + parent: 2 + - uid: 18725 + components: + - type: Transform + pos: -112.5,61.5 + parent: 2 + - uid: 18730 + components: + - type: Transform + pos: -39.5,90.5 + parent: 2 + - uid: 18747 + components: + - type: Transform + pos: -38.5,90.5 + parent: 2 + - uid: 18752 + components: + - type: Transform + pos: -124.5,152.5 + parent: 2 + - uid: 18753 + components: + - type: Transform + pos: -107.5,65.5 + parent: 2 + - uid: 18761 + components: + - type: Transform + pos: -125.5,61.5 + parent: 2 + - uid: 18784 + components: + - type: Transform + pos: -37.5,90.5 + parent: 2 + - uid: 18790 + components: + - type: Transform + pos: -36.5,90.5 + parent: 2 + - uid: 18807 + components: + - type: Transform + pos: -35.5,90.5 + parent: 2 + - uid: 18812 + components: + - type: Transform + pos: -97.5,144.5 + parent: 2 + - uid: 18888 + components: + - type: Transform + pos: -96.5,144.5 + parent: 2 + - uid: 18912 + components: + - type: Transform + pos: -34.5,90.5 + parent: 2 + - uid: 18929 + components: + - type: Transform + pos: -33.5,90.5 + parent: 2 + - uid: 18930 + components: + - type: Transform + pos: -32.5,90.5 + parent: 2 + - uid: 18948 + components: + - type: Transform + pos: -31.5,90.5 + parent: 2 + - uid: 18951 + components: + - type: Transform + pos: -30.5,90.5 + parent: 2 + - uid: 18959 + components: + - type: Transform + pos: -29.5,90.5 + parent: 2 + - uid: 18960 + components: + - type: Transform + pos: -28.5,90.5 + parent: 2 + - uid: 18977 + components: + - type: Transform + pos: -27.5,90.5 + parent: 2 + - uid: 18979 + components: + - type: Transform + pos: -26.5,90.5 + parent: 2 + - uid: 18993 + components: + - type: Transform + pos: -25.5,90.5 + parent: 2 + - uid: 19006 + components: + - type: Transform + pos: -124.5,61.5 + parent: 2 + - uid: 19009 + components: + - type: Transform + pos: -123.5,61.5 + parent: 2 + - uid: 19010 + components: + - type: Transform + pos: -122.5,61.5 + parent: 2 + - uid: 19013 + components: + - type: Transform + pos: -118.5,61.5 + parent: 2 + - uid: 19016 + components: + - type: Transform + pos: -119.5,61.5 + parent: 2 + - uid: 19021 + components: + - type: Transform + pos: -116.5,61.5 + parent: 2 + - uid: 19023 + components: + - type: Transform + pos: -114.5,61.5 + parent: 2 + - uid: 19025 + components: + - type: Transform + pos: -117.5,61.5 + parent: 2 + - uid: 19026 + components: + - type: Transform + pos: -120.5,61.5 + parent: 2 + - uid: 19027 + components: + - type: Transform + pos: -24.5,90.5 + parent: 2 + - uid: 19035 + components: + - type: Transform + pos: -23.5,90.5 + parent: 2 + - uid: 19039 + components: + - type: Transform + pos: -22.5,90.5 + parent: 2 + - uid: 19049 + components: + - type: Transform + pos: -21.5,90.5 + parent: 2 + - uid: 19050 + components: + - type: Transform + pos: -20.5,90.5 + parent: 2 + - uid: 19079 + components: + - type: Transform + pos: -19.5,90.5 + parent: 2 + - uid: 19081 + components: + - type: Transform + pos: -18.5,90.5 + parent: 2 + - uid: 19089 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - uid: 19103 + components: + - type: Transform + pos: -18.5,89.5 + parent: 2 + - uid: 19115 + components: + - type: Transform + pos: -17.5,89.5 + parent: 2 + - uid: 19133 + components: + - type: Transform + pos: -80.5,81.5 + parent: 2 + - uid: 19139 + components: + - type: Transform + pos: -16.5,89.5 + parent: 2 + - uid: 19143 + components: + - type: Transform + pos: -80.5,89.5 + parent: 2 + - uid: 19152 + components: + - type: Transform + pos: -80.5,80.5 + parent: 2 + - uid: 19155 + components: + - type: Transform + pos: -80.5,87.5 + parent: 2 + - uid: 19160 + components: + - type: Transform + pos: -80.5,85.5 + parent: 2 + - uid: 19166 + components: + - type: Transform + pos: -15.5,89.5 + parent: 2 + - uid: 19167 + components: + - type: Transform + pos: -127.5,61.5 + parent: 2 + - uid: 19169 + components: + - type: Transform + pos: -14.5,89.5 + parent: 2 + - uid: 19171 + components: + - type: Transform + pos: -13.5,89.5 + parent: 2 + - uid: 19173 + components: + - type: Transform + pos: -13.5,88.5 + parent: 2 + - uid: 19174 + components: + - type: Transform + pos: -12.5,88.5 + parent: 2 + - uid: 19175 + components: + - type: Transform + pos: -11.5,88.5 + parent: 2 + - uid: 19176 + components: + - type: Transform + pos: -10.5,88.5 + parent: 2 + - uid: 19177 + components: + - type: Transform + pos: -9.5,88.5 + parent: 2 + - uid: 19178 + components: + - type: Transform + pos: -80.5,83.5 + parent: 2 + - uid: 19181 + components: + - type: Transform + pos: -8.5,88.5 + parent: 2 + - uid: 19182 + components: + - type: Transform + pos: -7.5,88.5 + parent: 2 + - uid: 19183 + components: + - type: Transform + pos: -95.5,73.5 + parent: 2 + - uid: 19188 + components: + - type: Transform + pos: -6.5,88.5 + parent: 2 + - uid: 19189 + components: + - type: Transform + pos: -5.5,88.5 + parent: 2 + - uid: 19190 + components: + - type: Transform + pos: -4.5,88.5 + parent: 2 + - uid: 19191 + components: + - type: Transform + pos: -3.5,88.5 + parent: 2 + - uid: 19197 + components: + - type: Transform + pos: -80.5,86.5 + parent: 2 + - uid: 19198 + components: + - type: Transform + pos: -80.5,82.5 + parent: 2 + - uid: 19199 + components: + - type: Transform + pos: -2.5,88.5 + parent: 2 + - uid: 19200 + components: + - type: Transform + pos: -1.5,88.5 + parent: 2 + - uid: 19201 + components: + - type: Transform + pos: -0.5,88.5 + parent: 2 + - uid: 19214 + components: + - type: Transform + pos: 0.5,88.5 + parent: 2 + - uid: 19216 + components: + - type: Transform + pos: 1.5,88.5 + parent: 2 + - uid: 19218 + components: + - type: Transform + pos: 2.5,88.5 + parent: 2 + - uid: 19223 + components: + - type: Transform + pos: -66.5,74.5 + parent: 2 + - uid: 19224 + components: + - type: Transform + pos: -65.5,74.5 + parent: 2 + - uid: 19227 + components: + - type: Transform + pos: 2.5,87.5 + parent: 2 + - uid: 19228 + components: + - type: Transform + pos: 2.5,86.5 + parent: 2 + - uid: 19231 + components: + - type: Transform + pos: 2.5,85.5 + parent: 2 + - uid: 19232 + components: + - type: Transform + pos: -64.5,74.5 + parent: 2 + - uid: 19235 + components: + - type: Transform + pos: -63.5,74.5 + parent: 2 + - uid: 19252 + components: + - type: Transform + pos: 2.5,84.5 + parent: 2 + - uid: 19261 + components: + - type: Transform + pos: 2.5,83.5 + parent: 2 + - uid: 19265 + components: + - type: Transform + pos: 2.5,82.5 + parent: 2 + - uid: 19266 + components: + - type: Transform + pos: 2.5,81.5 + parent: 2 + - uid: 19269 + components: + - type: Transform + pos: 2.5,80.5 + parent: 2 + - uid: 19274 + components: + - type: Transform + pos: 2.5,79.5 + parent: 2 + - uid: 19285 + components: + - type: Transform + pos: 2.5,78.5 + parent: 2 + - uid: 19289 + components: + - type: Transform + pos: -95.5,72.5 + parent: 2 + - uid: 19339 + components: + - type: Transform + pos: -62.5,74.5 + parent: 2 + - uid: 19340 + components: + - type: Transform + pos: -47.5,99.5 + parent: 2 + - uid: 19342 + components: + - type: Transform + pos: -46.5,99.5 + parent: 2 + - uid: 19343 + components: + - type: Transform + pos: -45.5,99.5 + parent: 2 + - uid: 19346 + components: + - type: Transform + pos: -44.5,99.5 + parent: 2 + - uid: 19347 + components: + - type: Transform + pos: -43.5,99.5 + parent: 2 + - uid: 19348 + components: + - type: Transform + pos: -42.5,99.5 + parent: 2 + - uid: 19351 + components: + - type: Transform + pos: -41.5,99.5 + parent: 2 + - uid: 19352 + components: + - type: Transform + pos: -40.5,99.5 + parent: 2 + - uid: 19353 + components: + - type: Transform + pos: -40.5,98.5 + parent: 2 + - uid: 19355 + components: + - type: Transform + pos: -40.5,97.5 + parent: 2 + - uid: 19356 + components: + - type: Transform + pos: -40.5,96.5 + parent: 2 + - uid: 19357 + components: + - type: Transform + pos: -40.5,95.5 + parent: 2 + - uid: 19358 + components: + - type: Transform + pos: -89.5,75.5 + parent: 2 + - uid: 19359 + components: + - type: Transform + pos: -40.5,94.5 + parent: 2 + - uid: 19360 + components: + - type: Transform + pos: -105.5,68.5 + parent: 2 + - uid: 19361 + components: + - type: Transform + pos: -40.5,93.5 + parent: 2 + - uid: 19363 + components: + - type: Transform + pos: -40.5,92.5 + parent: 2 + - uid: 19365 + components: + - type: Transform + pos: -40.5,91.5 + parent: 2 + - uid: 19366 + components: + - type: Transform + pos: -40.5,90.5 + parent: 2 + - uid: 19367 + components: + - type: Transform + pos: -41.5,90.5 + parent: 2 + - uid: 19369 + components: + - type: Transform + pos: -42.5,90.5 + parent: 2 + - uid: 19371 + components: + - type: Transform + pos: -43.5,90.5 + parent: 2 + - uid: 19372 + components: + - type: Transform + pos: -44.5,90.5 + parent: 2 + - uid: 19377 + components: + - type: Transform + pos: -45.5,90.5 + parent: 2 + - uid: 19378 + components: + - type: Transform + pos: -46.5,90.5 + parent: 2 + - uid: 19379 + components: + - type: Transform + pos: -47.5,90.5 + parent: 2 + - uid: 19380 + components: + - type: Transform + pos: -48.5,90.5 + parent: 2 + - uid: 19382 + components: + - type: Transform + pos: -49.5,90.5 + parent: 2 + - uid: 19383 + components: + - type: Transform + pos: -50.5,90.5 + parent: 2 + - uid: 19384 + components: + - type: Transform + pos: -51.5,90.5 + parent: 2 + - uid: 19385 + components: + - type: Transform + pos: -52.5,90.5 + parent: 2 + - uid: 19386 + components: + - type: Transform + pos: -53.5,90.5 + parent: 2 + - uid: 19387 + components: + - type: Transform + pos: -53.5,89.5 + parent: 2 + - uid: 19388 + components: + - type: Transform + pos: -53.5,88.5 + parent: 2 + - uid: 19389 + components: + - type: Transform + pos: -53.5,87.5 + parent: 2 + - uid: 19390 + components: + - type: Transform + pos: -53.5,86.5 + parent: 2 + - uid: 19394 + components: + - type: Transform + pos: -53.5,85.5 + parent: 2 + - uid: 19398 + components: + - type: Transform + pos: -53.5,84.5 + parent: 2 + - uid: 19406 + components: + - type: Transform + pos: -53.5,83.5 + parent: 2 + - uid: 19410 + components: + - type: Transform + pos: -53.5,82.5 + parent: 2 + - uid: 19411 + components: + - type: Transform + pos: -53.5,81.5 + parent: 2 + - uid: 19415 + components: + - type: Transform + pos: -53.5,80.5 + parent: 2 + - uid: 19416 + components: + - type: Transform + pos: -53.5,79.5 + parent: 2 + - uid: 19417 + components: + - type: Transform + pos: -53.5,78.5 + parent: 2 + - uid: 19418 + components: + - type: Transform + pos: -53.5,77.5 + parent: 2 + - uid: 19419 + components: + - type: Transform + pos: -53.5,76.5 + parent: 2 + - uid: 19420 + components: + - type: Transform + pos: -53.5,75.5 + parent: 2 + - uid: 19421 + components: + - type: Transform + pos: -53.5,74.5 + parent: 2 + - uid: 19422 + components: + - type: Transform + pos: -53.5,73.5 + parent: 2 + - uid: 19423 + components: + - type: Transform + pos: -52.5,73.5 + parent: 2 + - uid: 19424 + components: + - type: Transform + pos: -51.5,73.5 + parent: 2 + - uid: 19425 + components: + - type: Transform + pos: -50.5,73.5 + parent: 2 + - uid: 19426 + components: + - type: Transform + pos: -49.5,73.5 + parent: 2 + - uid: 19427 + components: + - type: Transform + pos: -48.5,73.5 + parent: 2 + - uid: 19428 + components: + - type: Transform + pos: -47.5,73.5 + parent: 2 + - uid: 19429 + components: + - type: Transform + pos: -47.5,72.5 + parent: 2 + - uid: 19430 + components: + - type: Transform + pos: -47.5,71.5 + parent: 2 + - uid: 19431 + components: + - type: Transform + pos: -46.5,71.5 + parent: 2 + - uid: 19432 + components: + - type: Transform + pos: -46.5,70.5 + parent: 2 + - uid: 19435 + components: + - type: Transform + pos: -61.5,74.5 + parent: 2 + - uid: 19436 + components: + - type: Transform + pos: -60.5,74.5 + parent: 2 + - uid: 19437 + components: + - type: Transform + pos: -59.5,74.5 + parent: 2 + - uid: 19441 + components: + - type: Transform + pos: -58.5,74.5 + parent: 2 + - uid: 19442 + components: + - type: Transform + pos: -57.5,74.5 + parent: 2 + - uid: 19446 + components: + - type: Transform + pos: -41.5,104.5 + parent: 2 + - uid: 19447 + components: + - type: Transform + pos: -40.5,100.5 + parent: 2 + - uid: 19451 + components: + - type: Transform + pos: -40.5,101.5 + parent: 2 + - uid: 19454 + components: + - type: Transform + pos: -40.5,102.5 + parent: 2 + - uid: 19455 + components: + - type: Transform + pos: -40.5,103.5 + parent: 2 + - uid: 19456 + components: + - type: Transform + pos: -40.5,104.5 + parent: 2 + - uid: 19460 + components: + - type: Transform + pos: -42.5,104.5 + parent: 2 + - uid: 19470 + components: + - type: Transform + pos: -43.5,104.5 + parent: 2 + - uid: 19471 + components: + - type: Transform + pos: -44.5,104.5 + parent: 2 + - uid: 19472 + components: + - type: Transform + pos: -45.5,104.5 + parent: 2 + - uid: 19501 + components: + - type: Transform + pos: -80.5,90.5 + parent: 2 + - uid: 19502 + components: + - type: Transform + pos: -80.5,91.5 + parent: 2 + - uid: 19503 + components: + - type: Transform + pos: -81.5,95.5 + parent: 2 + - uid: 19504 + components: + - type: Transform + pos: -80.5,92.5 + parent: 2 + - uid: 19505 + components: + - type: Transform + pos: -80.5,93.5 + parent: 2 + - uid: 19506 + components: + - type: Transform + pos: -80.5,94.5 + parent: 2 + - uid: 19507 + components: + - type: Transform + pos: -80.5,95.5 + parent: 2 + - uid: 19599 + components: + - type: Transform + pos: -127.5,51.5 + parent: 2 + - uid: 20513 + components: + - type: Transform + pos: -129.5,39.5 + parent: 2 + - uid: 20962 + components: + - type: Transform + pos: -121.5,33.5 + parent: 2 + - uid: 20963 + components: + - type: Transform + pos: -121.5,34.5 + parent: 2 + - uid: 20964 + components: + - type: Transform + pos: -121.5,35.5 + parent: 2 + - uid: 20970 + components: + - type: Transform + pos: -121.5,36.5 + parent: 2 + - uid: 20973 + components: + - type: Transform + pos: -121.5,37.5 + parent: 2 + - uid: 20978 + components: + - type: Transform + pos: -121.5,38.5 + parent: 2 + - uid: 20980 + components: + - type: Transform + pos: -121.5,39.5 + parent: 2 + - uid: 20981 + components: + - type: Transform + pos: -122.5,39.5 + parent: 2 + - uid: 20982 + components: + - type: Transform + pos: -123.5,39.5 + parent: 2 + - uid: 20983 + components: + - type: Transform + pos: -124.5,39.5 + parent: 2 + - uid: 20984 + components: + - type: Transform + pos: -125.5,39.5 + parent: 2 + - uid: 21006 + components: + - type: Transform + pos: -126.5,39.5 + parent: 2 + - uid: 21007 + components: + - type: Transform + pos: -127.5,39.5 + parent: 2 + - uid: 21008 + components: + - type: Transform + pos: -128.5,39.5 + parent: 2 + - uid: 21457 + components: + - type: Transform + pos: -101.5,146.5 + parent: 2 + - uid: 21460 + components: + - type: Transform + pos: -101.5,147.5 + parent: 2 + - uid: 21461 + components: + - type: Transform + pos: -98.5,144.5 + parent: 2 + - uid: 21462 + components: + - type: Transform + pos: -99.5,144.5 + parent: 2 + - uid: 21463 + components: + - type: Transform + pos: -100.5,144.5 + parent: 2 + - uid: 22031 + components: + - type: Transform + pos: -122.5,47.5 + parent: 2 + - uid: 22032 + components: + - type: Transform + pos: -126.5,50.5 + parent: 2 + - uid: 22050 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 21114 + - uid: 22051 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 21114 + - uid: 22052 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 21114 + - uid: 22053 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 21114 + - uid: 22054 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 21114 + - uid: 22378 + components: + - type: Transform + pos: 88.5,50.5 + parent: 2 + - uid: 22379 + components: + - type: Transform + pos: -80.5,71.5 + parent: 2 + - uid: 22381 + components: + - type: Transform + pos: -69.5,73.5 + parent: 2 + - uid: 22695 + components: + - type: Transform + pos: -127.5,58.5 + parent: 2 + - uid: 23038 + components: + - type: Transform + pos: -113.5,34.5 + parent: 2 + - uid: 23041 + components: + - type: Transform + pos: -114.5,33.5 + parent: 2 + - uid: 23848 + components: + - type: Transform + pos: -2.5,237.5 + parent: 2 + - uid: 23849 + components: + - type: Transform + pos: -3.5,237.5 + parent: 2 + - uid: 23866 + components: + - type: Transform + pos: -2.5,229.5 + parent: 2 + - uid: 23867 + components: + - type: Transform + pos: -2.5,233.5 + parent: 2 + - uid: 23868 + components: + - type: Transform + pos: 2.5,233.5 + parent: 2 + - uid: 23869 + components: + - type: Transform + pos: -0.5,224.5 + parent: 2 + - uid: 23870 + components: + - type: Transform + pos: -3.5,227.5 + parent: 2 + - uid: 23871 + components: + - type: Transform + pos: -3.5,229.5 + parent: 2 + - uid: 23872 + components: + - type: Transform + pos: -4.5,229.5 + parent: 2 + - uid: 23874 + components: + - type: Transform + pos: 6.5,229.5 + parent: 2 + - uid: 23875 + components: + - type: Transform + pos: 5.5,229.5 + parent: 2 + - uid: 23876 + components: + - type: Transform + pos: -2.5,227.5 + parent: 2 + - uid: 23877 + components: + - type: Transform + pos: -1.5,231.5 + parent: 2 + - uid: 23878 + components: + - type: Transform + pos: -4.5,233.5 + parent: 2 + - uid: 23879 + components: + - type: Transform + pos: -1.5,233.5 + parent: 2 + - uid: 23880 + components: + - type: Transform + pos: -5.5,231.5 + parent: 2 + - uid: 23881 + components: + - type: Transform + pos: -3.5,231.5 + parent: 2 + - uid: 23882 + components: + - type: Transform + pos: 2.5,232.5 + parent: 2 + - uid: 23883 + components: + - type: Transform + pos: 5.5,227.5 + parent: 2 + - uid: 23884 + components: + - type: Transform + pos: -2.5,231.5 + parent: 2 + - uid: 23885 + components: + - type: Transform + pos: 0.5,228.5 + parent: 2 + - uid: 23886 + components: + - type: Transform + pos: -1.5,227.5 + parent: 2 + - uid: 24128 + components: + - type: Transform + pos: -1.5,228.5 + parent: 2 + - uid: 24129 + components: + - type: Transform + pos: 0.5,232.5 + parent: 2 + - uid: 24130 + components: + - type: Transform + pos: -0.5,232.5 + parent: 2 + - uid: 24164 + components: + - type: Transform + pos: -46.5,66.5 + parent: 2 + - uid: 24287 + components: + - type: Transform + pos: 3.5,227.5 + parent: 2 + - uid: 24291 + components: + - type: Transform + pos: 2.5,227.5 + parent: 2 + - uid: 24299 + components: + - type: Transform + pos: 4.5,227.5 + parent: 2 + - uid: 24302 + components: + - type: Transform + pos: 0.5,224.5 + parent: 2 + - uid: 24360 + components: + - type: Transform + pos: -1.5,232.5 + parent: 2 + - uid: 24376 + components: + - type: Transform + pos: -5.5,233.5 + parent: 2 + - uid: 24378 + components: + - type: Transform + pos: -3.5,233.5 + parent: 2 + - uid: 24381 + components: + - type: Transform + pos: -0.5,228.5 + parent: 2 + - uid: 24383 + components: + - type: Transform + pos: -5.5,237.5 + parent: 2 + - uid: 24386 + components: + - type: Transform + pos: 2.5,237.5 + parent: 2 + - uid: 24387 + components: + - type: Transform + pos: 4.5,237.5 + parent: 2 + - uid: 24388 + components: + - type: Transform + pos: 4.5,235.5 + parent: 2 + - uid: 24389 + components: + - type: Transform + pos: 5.5,235.5 + parent: 2 + - uid: 24390 + components: + - type: Transform + pos: 6.5,237.5 + parent: 2 + - uid: 24392 + components: + - type: Transform + pos: -2.5,235.5 + parent: 2 + - uid: 24460 + components: + - type: Transform + pos: -1.5,236.5 + parent: 2 + - uid: 24470 + components: + - type: Transform + pos: 2.5,236.5 + parent: 2 + - uid: 24473 + components: + - type: Transform + pos: -0.5,236.5 + parent: 2 + - uid: 24484 + components: + - type: Transform + pos: -65.5,-6.5 + parent: 2 + - uid: 24654 + components: + - type: Transform + pos: -1.5,235.5 + parent: 2 + - uid: 24656 + components: + - type: Transform + pos: 3.5,237.5 + parent: 2 + - uid: 24657 + components: + - type: Transform + pos: 5.5,237.5 + parent: 2 + - uid: 24659 + components: + - type: Transform + pos: 3.5,235.5 + parent: 2 + - uid: 24769 + components: + - type: Transform + pos: 0.5,219.5 + parent: 2 + - uid: 24770 + components: + - type: Transform + pos: 0.5,220.5 + parent: 2 + - uid: 24771 + components: + - type: Transform + pos: 0.5,218.5 + parent: 2 + - uid: 24772 + components: + - type: Transform + pos: 0.5,217.5 + parent: 2 + - uid: 24773 + components: + - type: Transform + pos: -0.5,216.5 + parent: 2 + - uid: 25194 + components: + - type: Transform + pos: -127.5,59.5 + parent: 2 + - uid: 25362 + components: + - type: Transform + pos: -143.5,18.5 + parent: 2 + - uid: 26496 + components: + - type: Transform + pos: -45.5,66.5 + parent: 2 + - uid: 27701 + components: + - type: Transform + pos: -111.5,37.5 + parent: 2 + - uid: 27702 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 27725 + components: + - type: Transform + pos: -100.5,145.5 + parent: 2 + - uid: 27760 + components: + - type: Transform + pos: -101.5,145.5 + parent: 2 + - uid: 27935 + components: + - type: Transform + pos: -136.5,32.5 + parent: 2 + - uid: 27938 + components: + - type: Transform + pos: -136.5,33.5 + parent: 2 + - uid: 28188 + components: + - type: Transform + pos: -144.5,18.5 + parent: 2 + - uid: 28305 + components: + - type: Transform + pos: -125.5,50.5 + parent: 2 + - uid: 28307 + components: + - type: Transform + pos: -125.5,49.5 + parent: 2 + - uid: 28318 + components: + - type: Transform + pos: -125.5,48.5 + parent: 2 + - uid: 28323 + components: + - type: Transform + pos: -125.5,47.5 + parent: 2 + - uid: 28325 + components: + - type: Transform + pos: -124.5,47.5 + parent: 2 + - uid: 28328 + components: + - type: Transform + pos: -123.5,47.5 + parent: 2 + - uid: 28430 + components: + - type: Transform + pos: -129.5,32.5 + parent: 2 + - uid: 28431 + components: + - type: Transform + pos: -125.5,59.5 + parent: 2 + - uid: 28432 + components: + - type: Transform + pos: -127.5,60.5 + parent: 2 + - uid: 28919 + components: + - type: Transform + pos: -127.5,50.5 + parent: 2 + - uid: 29330 + components: + - type: Transform + pos: -109.5,32.5 + parent: 2 + - uid: 29331 + components: + - type: Transform + pos: -109.5,34.5 + parent: 2 + - uid: 29349 + components: + - type: Transform + pos: -108.5,34.5 + parent: 2 + - uid: 29413 + components: + - type: Transform + pos: 6.5,233.5 + parent: 2 + - uid: 29420 + components: + - type: Transform + pos: 6.5,227.5 + parent: 2 + - uid: 29421 + components: + - type: Transform + pos: 6.5,225.5 + parent: 2 + - uid: 29422 + components: + - type: Transform + pos: 5.5,225.5 + parent: 2 + - uid: 29425 + components: + - type: Transform + pos: 4.5,225.5 + parent: 2 + - uid: 29426 + components: + - type: Transform + pos: 3.5,225.5 + parent: 2 + - uid: 29447 + components: + - type: Transform + pos: 2.5,225.5 + parent: 2 + - uid: 29449 + components: + - type: Transform + pos: 1.5,232.5 + parent: 2 + - uid: 29461 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 29470 + components: + - type: Transform + pos: -114.5,34.5 + parent: 2 + - uid: 29473 + components: + - type: Transform + pos: -110.5,37.5 + parent: 2 + - uid: 29475 + components: + - type: Transform + pos: -106.5,33.5 + parent: 2 + - uid: 29477 + components: + - type: Transform + pos: -110.5,35.5 + parent: 2 + - uid: 29478 + components: + - type: Transform + pos: -110.5,34.5 + parent: 2 + - uid: 29479 + components: + - type: Transform + pos: -110.5,33.5 + parent: 2 + - uid: 29480 + components: + - type: Transform + pos: -112.5,34.5 + parent: 2 + - uid: 29481 + components: + - type: Transform + pos: -111.5,34.5 + parent: 2 + - uid: 29483 + components: + - type: Transform + pos: -107.5,34.5 + parent: 2 + - uid: 29485 + components: + - type: Transform + pos: -110.5,32.5 + parent: 2 + - uid: 29628 + components: + - type: Transform + pos: -1.5,224.5 + parent: 2 + - uid: 29634 + components: + - type: Transform + pos: -1.5,225.5 + parent: 2 + - uid: 29682 + components: + - type: Transform + pos: -2.5,225.5 + parent: 2 + - uid: 29769 + components: + - type: Transform + pos: -129.5,26.5 + parent: 2 + - uid: 29928 + components: + - type: Transform + pos: -3.5,225.5 + parent: 2 + - uid: 29937 + components: + - type: Transform + pos: -95.5,51.5 + parent: 2 + - uid: 29939 + components: + - type: Transform + pos: -95.5,50.5 + parent: 2 + - uid: 29940 + components: + - type: Transform + pos: -95.5,52.5 + parent: 2 + - uid: 29941 + components: + - type: Transform + pos: -95.5,53.5 + parent: 2 + - uid: 29942 + components: + - type: Transform + pos: -95.5,54.5 + parent: 2 + - uid: 29944 + components: + - type: Transform + pos: -96.5,54.5 + parent: 2 + - uid: 29945 + components: + - type: Transform + pos: -97.5,54.5 + parent: 2 + - uid: 29946 + components: + - type: Transform + pos: -98.5,54.5 + parent: 2 + - uid: 29947 + components: + - type: Transform + pos: -98.5,53.5 + parent: 2 + - uid: 29949 + components: + - type: Transform + pos: -99.5,53.5 + parent: 2 + - uid: 29950 + components: + - type: Transform + pos: -99.5,52.5 + parent: 2 + - uid: 29951 + components: + - type: Transform + pos: -99.5,51.5 + parent: 2 + - uid: 29952 + components: + - type: Transform + pos: -99.5,50.5 + parent: 2 + - uid: 29953 + components: + - type: Transform + pos: -100.5,50.5 + parent: 2 + - uid: 29954 + components: + - type: Transform + pos: -101.5,50.5 + parent: 2 + - uid: 29955 + components: + - type: Transform + pos: -102.5,50.5 + parent: 2 + - uid: 29956 + components: + - type: Transform + pos: -103.5,50.5 + parent: 2 + - uid: 29957 + components: + - type: Transform + pos: -104.5,50.5 + parent: 2 + - uid: 29958 + components: + - type: Transform + pos: -104.5,49.5 + parent: 2 + - uid: 29959 + components: + - type: Transform + pos: -104.5,48.5 + parent: 2 + - uid: 29960 + components: + - type: Transform + pos: -104.5,47.5 + parent: 2 + - uid: 29961 + components: + - type: Transform + pos: -105.5,47.5 + parent: 2 + - uid: 29962 + components: + - type: Transform + pos: -106.5,47.5 + parent: 2 + - uid: 29963 + components: + - type: Transform + pos: -107.5,47.5 + parent: 2 + - uid: 29964 + components: + - type: Transform + pos: -108.5,47.5 + parent: 2 + - uid: 29965 + components: + - type: Transform + pos: -108.5,48.5 + parent: 2 + - uid: 29966 + components: + - type: Transform + pos: -108.5,49.5 + parent: 2 + - uid: 29967 + components: + - type: Transform + pos: -108.5,50.5 + parent: 2 + - uid: 29968 + components: + - type: Transform + pos: -108.5,51.5 + parent: 2 + - uid: 29969 + components: + - type: Transform + pos: -108.5,52.5 + parent: 2 + - uid: 29970 + components: + - type: Transform + pos: -108.5,53.5 + parent: 2 + - uid: 29971 + components: + - type: Transform + pos: -108.5,54.5 + parent: 2 + - uid: 29972 + components: + - type: Transform + pos: -108.5,55.5 + parent: 2 + - uid: 29973 + components: + - type: Transform + pos: -108.5,56.5 + parent: 2 + - uid: 29974 + components: + - type: Transform + pos: -108.5,57.5 + parent: 2 + - uid: 29975 + components: + - type: Transform + pos: -108.5,58.5 + parent: 2 + - uid: 29976 + components: + - type: Transform + pos: -108.5,59.5 + parent: 2 + - uid: 30010 + components: + - type: Transform + pos: -120.5,32.5 + parent: 2 + - uid: 30028 + components: + - type: Transform + pos: -4.5,225.5 + parent: 2 + - uid: 30248 + components: + - type: Transform + pos: -96.5,43.5 + parent: 2 + - uid: 30249 + components: + - type: Transform + pos: -97.5,43.5 + parent: 2 + - uid: 30250 + components: + - type: Transform + pos: -98.5,43.5 + parent: 2 + - uid: 30251 + components: + - type: Transform + pos: -98.5,44.5 + parent: 2 + - uid: 30252 + components: + - type: Transform + pos: -98.5,45.5 + parent: 2 + - uid: 30253 + components: + - type: Transform + pos: -98.5,46.5 + parent: 2 + - uid: 30254 + components: + - type: Transform + pos: -98.5,47.5 + parent: 2 + - uid: 30255 + components: + - type: Transform + pos: -98.5,48.5 + parent: 2 + - uid: 30256 + components: + - type: Transform + pos: -98.5,49.5 + parent: 2 + - uid: 30257 + components: + - type: Transform + pos: -98.5,50.5 + parent: 2 + - uid: 30271 + components: + - type: Transform + pos: -114.5,34.5 + parent: 2 + - uid: 30272 + components: + - type: Transform + pos: -115.5,34.5 + parent: 2 + - uid: 30273 + components: + - type: Transform + pos: -116.5,34.5 + parent: 2 + - uid: 30275 + components: + - type: Transform + pos: -116.5,35.5 + parent: 2 + - uid: 30276 + components: + - type: Transform + pos: -116.5,36.5 + parent: 2 + - uid: 30277 + components: + - type: Transform + pos: -116.5,37.5 + parent: 2 + - uid: 30278 + components: + - type: Transform + pos: -116.5,38.5 + parent: 2 + - uid: 30279 + components: + - type: Transform + pos: -116.5,39.5 + parent: 2 + - uid: 30280 + components: + - type: Transform + pos: -116.5,40.5 + parent: 2 + - uid: 30281 + components: + - type: Transform + pos: -116.5,41.5 + parent: 2 + - uid: 30282 + components: + - type: Transform + pos: -116.5,42.5 + parent: 2 + - uid: 30283 + components: + - type: Transform + pos: -116.5,43.5 + parent: 2 + - uid: 30284 + components: + - type: Transform + pos: -116.5,44.5 + parent: 2 + - uid: 30285 + components: + - type: Transform + pos: -116.5,45.5 + parent: 2 + - uid: 30286 + components: + - type: Transform + pos: -116.5,46.5 + parent: 2 + - uid: 30287 + components: + - type: Transform + pos: -116.5,47.5 + parent: 2 + - uid: 30288 + components: + - type: Transform + pos: -118.5,47.5 + parent: 2 + - uid: 30289 + components: + - type: Transform + pos: -119.5,47.5 + parent: 2 + - uid: 30290 + components: + - type: Transform + pos: -120.5,47.5 + parent: 2 + - uid: 30291 + components: + - type: Transform + pos: -117.5,47.5 + parent: 2 + - uid: 30293 + components: + - type: Transform + pos: -121.5,47.5 + parent: 2 + - uid: 30307 + components: + - type: Transform + pos: -129.5,33.5 + parent: 2 + - uid: 30308 + components: + - type: Transform + pos: -130.5,33.5 + parent: 2 + - uid: 30309 + components: + - type: Transform + pos: -131.5,33.5 + parent: 2 + - uid: 30310 + components: + - type: Transform + pos: -132.5,33.5 + parent: 2 + - uid: 30311 + components: + - type: Transform + pos: -133.5,33.5 + parent: 2 + - uid: 30312 + components: + - type: Transform + pos: -134.5,33.5 + parent: 2 + - uid: 30313 + components: + - type: Transform + pos: -135.5,33.5 + parent: 2 + - uid: 30314 + components: + - type: Transform + pos: -129.5,31.5 + parent: 2 + - uid: 30315 + components: + - type: Transform + pos: -129.5,30.5 + parent: 2 + - uid: 30316 + components: + - type: Transform + pos: -129.5,29.5 + parent: 2 + - uid: 30317 + components: + - type: Transform + pos: -129.5,28.5 + parent: 2 + - uid: 30318 + components: + - type: Transform + pos: -129.5,27.5 + parent: 2 + - uid: 30319 + components: + - type: Transform + pos: -130.5,26.5 + parent: 2 + - uid: 30321 + components: + - type: Transform + pos: -128.5,26.5 + parent: 2 + - uid: 30322 + components: + - type: Transform + pos: -127.5,26.5 + parent: 2 + - uid: 30323 + components: + - type: Transform + pos: -126.5,26.5 + parent: 2 + - uid: 30324 + components: + - type: Transform + pos: -125.5,26.5 + parent: 2 + - uid: 30325 + components: + - type: Transform + pos: -124.5,26.5 + parent: 2 + - uid: 30326 + components: + - type: Transform + pos: -123.5,26.5 + parent: 2 + - uid: 30327 + components: + - type: Transform + pos: -122.5,26.5 + parent: 2 + - uid: 30328 + components: + - type: Transform + pos: -121.5,26.5 + parent: 2 + - uid: 30330 + components: + - type: Transform + pos: -121.5,27.5 + parent: 2 + - uid: 30331 + components: + - type: Transform + pos: -121.5,28.5 + parent: 2 + - uid: 30332 + components: + - type: Transform + pos: -121.5,29.5 + parent: 2 + - uid: 30333 + components: + - type: Transform + pos: -121.5,30.5 + parent: 2 + - uid: 30334 + components: + - type: Transform + pos: -121.5,31.5 + parent: 2 + - uid: 30335 + components: + - type: Transform + pos: -121.5,32.5 + parent: 2 + - uid: 30336 + components: + - type: Transform + pos: -119.5,32.5 + parent: 2 + - uid: 30337 + components: + - type: Transform + pos: -118.5,32.5 + parent: 2 + - uid: 30339 + components: + - type: Transform + pos: -118.5,33.5 + parent: 2 + - uid: 30340 + components: + - type: Transform + pos: -118.5,34.5 + parent: 2 + - uid: 30341 + components: + - type: Transform + pos: -117.5,34.5 + parent: 2 + - uid: 30530 + components: + - type: Transform + pos: -5.5,225.5 + parent: 2 + - uid: 30531 + components: + - type: Transform + pos: -5.5,223.5 + parent: 2 + - uid: 30532 + components: + - type: Transform + pos: -4.5,223.5 + parent: 2 + - uid: 30533 + components: + - type: Transform + pos: -3.5,223.5 + parent: 2 + - uid: 30534 + components: + - type: Transform + pos: -2.5,223.5 + parent: 2 + - uid: 30535 + components: + - type: Transform + pos: -1.5,223.5 + parent: 2 + - uid: 30561 + components: + - type: Transform + pos: -118.5,29.5 + parent: 2 + - uid: 30577 + components: + - type: Transform + pos: -111.5,26.5 + parent: 2 + - uid: 30578 + components: + - type: Transform + pos: -111.5,27.5 + parent: 2 + - uid: 30579 + components: + - type: Transform + pos: -111.5,28.5 + parent: 2 + - uid: 30580 + components: + - type: Transform + pos: -112.5,28.5 + parent: 2 + - uid: 30581 + components: + - type: Transform + pos: -113.5,28.5 + parent: 2 + - uid: 30582 + components: + - type: Transform + pos: -114.5,28.5 + parent: 2 + - uid: 30583 + components: + - type: Transform + pos: -115.5,28.5 + parent: 2 + - uid: 30584 + components: + - type: Transform + pos: -116.5,28.5 + parent: 2 + - uid: 30585 + components: + - type: Transform + pos: -117.5,28.5 + parent: 2 + - uid: 30586 + components: + - type: Transform + pos: -118.5,28.5 + parent: 2 + - uid: 30587 + components: + - type: Transform + pos: -118.5,30.5 + parent: 2 + - uid: 30588 + components: + - type: Transform + pos: -118.5,31.5 + parent: 2 + - uid: 30638 + components: + - type: Transform + pos: 2.5,224.5 + parent: 2 + - uid: 30648 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 30668 + components: + - type: Transform + pos: 0.5,235.5 + parent: 2 + - uid: 30671 + components: + - type: Transform + pos: 2.5,223.5 + parent: 2 + - uid: 30672 + components: + - type: Transform + pos: 3.5,223.5 + parent: 2 + - uid: 30688 + components: + - type: Transform + pos: 4.5,223.5 + parent: 2 + - uid: 30691 + components: + - type: Transform + pos: 5.5,223.5 + parent: 2 + - uid: 30751 + components: + - type: Transform + pos: -127.5,44.5 + parent: 2 + - uid: 30873 + components: + - type: Transform + pos: 6.5,223.5 + parent: 2 + - uid: 30930 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 30902 + - uid: 30931 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 30902 + - uid: 30932 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 30902 + - uid: 30933 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 30902 + - uid: 30934 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 30902 + - uid: 30935 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 30902 + - uid: 30936 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 30902 + - uid: 30937 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 30902 + - uid: 30938 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 30902 + - uid: 30939 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 30902 + - uid: 30940 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 30902 + - uid: 31095 + components: + - type: Transform + pos: 0.5,227.5 + parent: 2 + - uid: 33072 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 33313 + components: + - type: Transform + pos: -1.5,216.5 + parent: 2 + - uid: 33331 + components: + - type: Transform + pos: -0.5,215.5 + parent: 2 + - uid: 33486 + components: + - type: Transform + pos: -80.5,70.5 + parent: 2 + - uid: 34127 + components: + - type: Transform + pos: -1.5,215.5 + parent: 2 + - uid: 34137 + components: + - type: Transform + pos: -1.5,214.5 + parent: 2 + - uid: 34269 + components: + - type: Transform + pos: -1.5,213.5 + parent: 2 + - uid: 34424 + components: + - type: Transform + pos: -67.5,-3.5 + parent: 2 + - uid: 34425 + components: + - type: Transform + pos: -66.5,-3.5 + parent: 2 + - uid: 34520 + components: + - type: Transform + pos: -118.5,107.5 + parent: 2 + - uid: 34627 + components: + - type: Transform + pos: 1.5,216.5 + parent: 2 + - uid: 34629 + components: + - type: Transform + pos: 2.5,216.5 + parent: 2 + - uid: 34635 + components: + - type: Transform + pos: 2.5,215.5 + parent: 2 + - uid: 34636 + components: + - type: Transform + pos: 2.5,214.5 + parent: 2 + - uid: 34691 + components: + - type: Transform + pos: 2.5,213.5 + parent: 2 + - uid: 34804 + components: + - type: Transform + pos: -46.5,65.5 + parent: 2 + - uid: 34806 + components: + - type: Transform + pos: -47.5,65.5 + parent: 2 + - uid: 35128 + components: + - type: Transform + pos: -124.5,154.5 + parent: 2 + - uid: 35129 + components: + - type: Transform + pos: -122.5,154.5 + parent: 2 + - uid: 35130 + components: + - type: Transform + pos: -122.5,153.5 + parent: 2 + - uid: 35131 + components: + - type: Transform + pos: -122.5,152.5 + parent: 2 + - uid: 35132 + components: + - type: Transform + pos: -122.5,151.5 + parent: 2 + - uid: 35133 + components: + - type: Transform + pos: -122.5,150.5 + parent: 2 + - uid: 35134 + components: + - type: Transform + pos: -120.5,154.5 + parent: 2 + - uid: 35135 + components: + - type: Transform + pos: -120.5,153.5 + parent: 2 + - uid: 35136 + components: + - type: Transform + pos: -120.5,152.5 + parent: 2 + - uid: 35137 + components: + - type: Transform + pos: -120.5,151.5 + parent: 2 + - uid: 35138 + components: + - type: Transform + pos: -120.5,150.5 + parent: 2 + - uid: 35139 + components: + - type: Transform + pos: -118.5,154.5 + parent: 2 + - uid: 35140 + components: + - type: Transform + pos: -118.5,153.5 + parent: 2 + - uid: 35141 + components: + - type: Transform + pos: -118.5,152.5 + parent: 2 + - uid: 35142 + components: + - type: Transform + pos: -118.5,151.5 + parent: 2 + - uid: 35143 + components: + - type: Transform + pos: -118.5,150.5 + parent: 2 + - uid: 35144 + components: + - type: Transform + pos: -116.5,154.5 + parent: 2 + - uid: 35145 + components: + - type: Transform + pos: -116.5,153.5 + parent: 2 + - uid: 35146 + components: + - type: Transform + pos: -116.5,152.5 + parent: 2 + - uid: 35147 + components: + - type: Transform + pos: -116.5,151.5 + parent: 2 + - uid: 35148 + components: + - type: Transform + pos: -116.5,150.5 + parent: 2 + - uid: 35149 + components: + - type: Transform + pos: -114.5,154.5 + parent: 2 + - uid: 35150 + components: + - type: Transform + pos: -114.5,153.5 + parent: 2 + - uid: 35151 + components: + - type: Transform + pos: -114.5,152.5 + parent: 2 + - uid: 35152 + components: + - type: Transform + pos: -114.5,151.5 + parent: 2 + - uid: 35153 + components: + - type: Transform + pos: -114.5,150.5 + parent: 2 + - uid: 35154 + components: + - type: Transform + pos: -115.5,150.5 + parent: 2 + - uid: 35155 + components: + - type: Transform + pos: -119.5,150.5 + parent: 2 + - uid: 35156 + components: + - type: Transform + pos: -123.5,150.5 + parent: 2 + - uid: 35157 + components: + - type: Transform + pos: -123.5,149.5 + parent: 2 + - uid: 35158 + components: + - type: Transform + pos: -119.5,149.5 + parent: 2 + - uid: 35159 + components: + - type: Transform + pos: -115.5,149.5 + parent: 2 + - uid: 35160 + components: + - type: Transform + pos: -116.5,146.5 + parent: 2 + - uid: 35161 + components: + - type: Transform + pos: -116.5,145.5 + parent: 2 + - uid: 35162 + components: + - type: Transform + pos: -116.5,144.5 + parent: 2 + - uid: 35163 + components: + - type: Transform + pos: -116.5,143.5 + parent: 2 + - uid: 35164 + components: + - type: Transform + pos: -116.5,142.5 + parent: 2 + - uid: 35165 + components: + - type: Transform + pos: -114.5,142.5 + parent: 2 + - uid: 35166 + components: + - type: Transform + pos: -114.5,143.5 + parent: 2 + - uid: 35167 + components: + - type: Transform + pos: -114.5,144.5 + parent: 2 + - uid: 35168 + components: + - type: Transform + pos: -114.5,145.5 + parent: 2 + - uid: 35169 + components: + - type: Transform + pos: -114.5,146.5 + parent: 2 + - uid: 35170 + components: + - type: Transform + pos: -118.5,142.5 + parent: 2 + - uid: 35171 + components: + - type: Transform + pos: -118.5,143.5 + parent: 2 + - uid: 35172 + components: + - type: Transform + pos: -118.5,144.5 + parent: 2 + - uid: 35173 + components: + - type: Transform + pos: -118.5,145.5 + parent: 2 + - uid: 35174 + components: + - type: Transform + pos: -118.5,146.5 + parent: 2 + - uid: 35175 + components: + - type: Transform + pos: -120.5,142.5 + parent: 2 + - uid: 35176 + components: + - type: Transform + pos: -120.5,143.5 + parent: 2 + - uid: 35177 + components: + - type: Transform + pos: -120.5,144.5 + parent: 2 + - uid: 35178 + components: + - type: Transform + pos: -120.5,145.5 + parent: 2 + - uid: 35179 + components: + - type: Transform + pos: -120.5,146.5 + parent: 2 + - uid: 35180 + components: + - type: Transform + pos: -122.5,142.5 + parent: 2 + - uid: 35181 + components: + - type: Transform + pos: -122.5,143.5 + parent: 2 + - uid: 35182 + components: + - type: Transform + pos: -122.5,144.5 + parent: 2 + - uid: 35183 + components: + - type: Transform + pos: -122.5,145.5 + parent: 2 + - uid: 35184 + components: + - type: Transform + pos: -122.5,146.5 + parent: 2 + - uid: 35185 + components: + - type: Transform + pos: -124.5,142.5 + parent: 2 + - uid: 35186 + components: + - type: Transform + pos: -124.5,143.5 + parent: 2 + - uid: 35187 + components: + - type: Transform + pos: -124.5,144.5 + parent: 2 + - uid: 35188 + components: + - type: Transform + pos: -124.5,145.5 + parent: 2 + - uid: 35189 + components: + - type: Transform + pos: -124.5,146.5 + parent: 2 + - uid: 35190 + components: + - type: Transform + pos: -126.5,142.5 + parent: 2 + - uid: 35191 + components: + - type: Transform + pos: -126.5,143.5 + parent: 2 + - uid: 35192 + components: + - type: Transform + pos: -126.5,144.5 + parent: 2 + - uid: 35193 + components: + - type: Transform + pos: -126.5,145.5 + parent: 2 + - uid: 35194 + components: + - type: Transform + pos: -126.5,146.5 + parent: 2 + - uid: 35195 + components: + - type: Transform + pos: -128.5,142.5 + parent: 2 + - uid: 35196 + components: + - type: Transform + pos: -128.5,143.5 + parent: 2 + - uid: 35197 + components: + - type: Transform + pos: -128.5,144.5 + parent: 2 + - uid: 35198 + components: + - type: Transform + pos: -128.5,145.5 + parent: 2 + - uid: 35199 + components: + - type: Transform + pos: -128.5,146.5 + parent: 2 + - uid: 35200 + components: + - type: Transform + pos: -127.5,146.5 + parent: 2 + - uid: 35201 + components: + - type: Transform + pos: -123.5,146.5 + parent: 2 + - uid: 35202 + components: + - type: Transform + pos: -119.5,146.5 + parent: 2 + - uid: 35203 + components: + - type: Transform + pos: -115.5,146.5 + parent: 2 + - uid: 35204 + components: + - type: Transform + pos: -115.5,147.5 + parent: 2 + - uid: 35205 + components: + - type: Transform + pos: -119.5,147.5 + parent: 2 + - uid: 35206 + components: + - type: Transform + pos: -123.5,147.5 + parent: 2 + - uid: 35207 + components: + - type: Transform + pos: -127.5,147.5 + parent: 2 + - uid: 35377 + components: + - type: Transform + pos: -112.5,148.5 + parent: 2 + - uid: 35378 + components: + - type: Transform + pos: -111.5,148.5 + parent: 2 + - uid: 35379 + components: + - type: Transform + pos: -110.5,148.5 + parent: 2 + - uid: 35380 + components: + - type: Transform + pos: -109.5,148.5 + parent: 2 + - uid: 35381 + components: + - type: Transform + pos: -108.5,148.5 + parent: 2 + - uid: 35382 + components: + - type: Transform + pos: -108.5,149.5 + parent: 2 + - uid: 35383 + components: + - type: Transform + pos: -108.5,147.5 + parent: 2 + - uid: 35384 + components: + - type: Transform + pos: -107.5,147.5 + parent: 2 + - uid: 35385 + components: + - type: Transform + pos: -106.5,147.5 + parent: 2 + - uid: 35386 + components: + - type: Transform + pos: -107.5,149.5 + parent: 2 + - uid: 35387 + components: + - type: Transform + pos: -106.5,149.5 + parent: 2 + - uid: 35393 + components: + - type: Transform + pos: -105.5,149.5 + parent: 2 + - uid: 35394 + components: + - type: Transform + pos: -105.5,148.5 + parent: 2 + - uid: 35395 + components: + - type: Transform + pos: -105.5,147.5 + parent: 2 + - uid: 35396 + components: + - type: Transform + pos: -104.5,147.5 + parent: 2 + - uid: 35397 + components: + - type: Transform + pos: -103.5,147.5 + parent: 2 + - uid: 35443 + components: + - type: Transform + pos: 69.5,20.5 + parent: 2 + - uid: 35444 + components: + - type: Transform + pos: 68.5,20.5 + parent: 2 + - uid: 35445 + components: + - type: Transform + pos: 67.5,20.5 + parent: 2 + - uid: 35448 + components: + - type: Transform + pos: 67.5,21.5 + parent: 2 + - uid: 35452 + components: + - type: Transform + pos: 66.5,20.5 + parent: 2 + - uid: 35453 + components: + - type: Transform + pos: 66.5,21.5 + parent: 2 + - uid: 35454 + components: + - type: Transform + pos: 66.5,22.5 + parent: 2 + - uid: 35455 + components: + - type: Transform + pos: 66.5,23.5 + parent: 2 + - uid: 35456 + components: + - type: Transform + pos: 67.5,23.5 + parent: 2 + - uid: 35476 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 35477 + components: + - type: Transform + pos: 68.5,23.5 + parent: 2 + - uid: 35519 + components: + - type: Transform + pos: -111.5,24.5 + parent: 2 + - uid: 35520 + components: + - type: Transform + pos: -111.5,25.5 + parent: 2 + - uid: 35521 + components: + - type: Transform + pos: -110.5,24.5 + parent: 2 + - uid: 35522 + components: + - type: Transform + pos: -109.5,24.5 + parent: 2 + - uid: 35523 + components: + - type: Transform + pos: -108.5,24.5 + parent: 2 + - uid: 35524 + components: + - type: Transform + pos: -107.5,24.5 + parent: 2 + - uid: 35525 + components: + - type: Transform + pos: -106.5,24.5 + parent: 2 + - uid: 35526 + components: + - type: Transform + pos: -105.5,24.5 + parent: 2 + - uid: 35527 + components: + - type: Transform + pos: -104.5,24.5 + parent: 2 + - uid: 35528 + components: + - type: Transform + pos: -103.5,24.5 + parent: 2 + - uid: 35529 + components: + - type: Transform + pos: -102.5,24.5 + parent: 2 + - uid: 35530 + components: + - type: Transform + pos: -101.5,24.5 + parent: 2 + - uid: 36323 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 36324 + components: + - type: Transform + pos: 65.5,21.5 + parent: 2 + - uid: 36344 + components: + - type: Transform + pos: -0.5,214.5 + parent: 2 + - uid: 37503 + components: + - type: Transform + pos: -78.5,70.5 + parent: 2 + - uid: 37573 + components: + - type: Transform + pos: -126.5,53.5 + parent: 2 + - uid: 37574 + components: + - type: Transform + pos: -126.5,54.5 + parent: 2 + - uid: 37575 + components: + - type: Transform + pos: -126.5,55.5 + parent: 2 + - uid: 37713 + components: + - type: Transform + pos: -80.5,72.5 + parent: 2 + - uid: 37721 + components: + - type: Transform + pos: 6.5,81.5 + parent: 2 + - uid: 37774 + components: + - type: Transform + pos: -79.5,70.5 + parent: 2 + - uid: 37906 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 37842 + - uid: 37907 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 37842 + - uid: 37908 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 37842 + - uid: 37909 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 37842 + - uid: 37910 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 37842 + - uid: 37911 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 37842 + - uid: 37912 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 37842 + - uid: 37913 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 37842 + - uid: 37914 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 37842 + - uid: 37920 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 37842 + - uid: 37921 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 37842 + - uid: 38070 + components: + - type: Transform + pos: -77.5,70.5 + parent: 2 + - uid: 38071 + components: + - type: Transform + pos: -80.5,73.5 + parent: 2 + - uid: 39262 + components: + - type: Transform + pos: 88.5,48.5 + parent: 2 + - uid: 39263 + components: + - type: Transform + pos: 88.5,49.5 + parent: 2 + - uid: 39269 + components: + - type: Transform + pos: -74.5,70.5 + parent: 2 + - uid: 43337 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 37842 + - uid: 43339 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 37842 +- proto: CableHVStack + entities: + - uid: 43364 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 43365 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableHVStack1 + entities: + - uid: 30500 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-60.5 + pos: -139.95871,32.83578 parent: 2 - - uid: 13612 + - uid: 30501 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-9.5 + pos: -137.21326,29.227009 + parent: 2 +- proto: CableHVStack10 + entities: + - uid: 4872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.4480362,216.52219 + parent: 2 +- proto: CableMV + entities: + - uid: 115 + components: + - type: Transform + pos: 69.5,46.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: -30.5,188.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: -30.5,188.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: -23.5,176.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: -30.5,187.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: -30.5,187.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: 71.5,61.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 71.5,60.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: 71.5,59.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: 70.5,58.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: 69.5,58.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: 56.5,52.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: -128.5,39.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 55.5,52.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: 55.5,53.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -124.5,57.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: -125.5,58.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: -9.5,165.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: 86.5,64.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: -128.5,90.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: 79.5,32.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: -43.5,80.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: -63.5,-6.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: -60.5,-6.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: -60.5,-5.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: -59.5,-3.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + pos: -57.5,-3.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: -52.5,-1.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: -34.5,107.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 2899 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: -33.5,104.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + pos: 74.5,70.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: 83.5,45.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: 46.5,56.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: -86.5,151.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + pos: -92.5,151.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + pos: 66.5,61.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: 66.5,59.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: 66.5,60.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + pos: 71.5,70.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: 58.5,43.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + pos: 58.5,42.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: 71.5,58.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + pos: 58.5,41.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + pos: -69.5,71.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: 61.5,39.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: -122.5,52.5 + parent: 2 + - uid: 4023 + components: + - type: Transform + pos: 47.5,58.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + pos: -42.5,80.5 + parent: 2 + - uid: 4058 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + pos: -127.5,55.5 + parent: 2 + - uid: 4070 + components: + - type: Transform + pos: -24.5,99.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: -126.5,28.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + pos: -117.5,50.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + pos: -24.5,98.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: 88.5,51.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: -23.5,98.5 + parent: 2 + - uid: 4188 + components: + - type: Transform + pos: -83.5,84.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: -65.5,73.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: -65.5,72.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + pos: 62.5,39.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: 58.5,40.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + pos: 59.5,39.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + pos: -101.5,28.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: -65.5,71.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: 66.5,62.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + pos: -65.5,70.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + pos: 84.5,51.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: 65.5,62.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + pos: -109.5,29.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: -46.5,68.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + pos: -123.5,57.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + pos: 84.5,45.5 + parent: 2 + - uid: 4620 + components: + - type: Transform + pos: -98.5,148.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: 70.5,24.5 + parent: 2 + - uid: 4794 + components: + - type: Transform + pos: 82.5,45.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: 68.5,58.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: 106.5,47.5 + parent: 2 + - uid: 5074 + components: + - type: Transform + pos: -44.5,68.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: -67.5,69.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + pos: -66.5,69.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: -65.5,69.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + pos: 45.5,56.5 + parent: 2 + - uid: 5327 + components: + - type: Transform + pos: 47.5,60.5 + parent: 2 + - uid: 5385 + components: + - type: Transform + pos: 47.5,57.5 + parent: 2 + - uid: 5431 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: 12.5,172.5 + parent: 2 + - uid: 5570 + components: + - type: Transform + pos: 68.5,23.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: 85.5,29.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + pos: -82.5,83.5 + parent: 2 + - uid: 5786 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 5788 + components: + - type: Transform + pos: 73.5,29.5 + parent: 2 + - uid: 5789 + components: + - type: Transform + pos: 70.5,25.5 + parent: 2 + - uid: 5790 + components: + - type: Transform + pos: 70.5,26.5 + parent: 2 + - uid: 5791 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 + - uid: 5792 + components: + - type: Transform + pos: 70.5,28.5 + parent: 2 + - uid: 5793 + components: + - type: Transform + pos: 70.5,29.5 + parent: 2 + - uid: 5794 + components: + - type: Transform + pos: 71.5,29.5 + parent: 2 + - uid: 5795 + components: + - type: Transform + pos: 74.5,29.5 + parent: 2 + - uid: 5796 + components: + - type: Transform + pos: 75.5,29.5 + parent: 2 + - uid: 5797 + components: + - type: Transform + pos: 76.5,29.5 + parent: 2 + - uid: 5798 + components: + - type: Transform + pos: 77.5,29.5 + parent: 2 + - uid: 5799 + components: + - type: Transform + pos: 78.5,29.5 + parent: 2 + - uid: 5800 + components: + - type: Transform + pos: 79.5,29.5 + parent: 2 + - uid: 5801 + components: + - type: Transform + pos: 80.5,29.5 + parent: 2 + - uid: 5802 + components: + - type: Transform + pos: 81.5,29.5 + parent: 2 + - uid: 5803 + components: + - type: Transform + pos: 82.5,29.5 + parent: 2 + - uid: 5804 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 5805 + components: + - type: Transform + pos: 84.5,29.5 + parent: 2 + - uid: 5807 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + pos: 87.5,29.5 + parent: 2 + - uid: 5809 + components: + - type: Transform + pos: 88.5,29.5 + parent: 2 + - uid: 5810 + components: + - type: Transform + pos: 88.5,28.5 + parent: 2 + - uid: 5811 + components: + - type: Transform + pos: 88.5,27.5 + parent: 2 + - uid: 5814 + components: + - type: Transform + pos: 88.5,26.5 + parent: 2 + - uid: 5815 + components: + - type: Transform + pos: 88.5,25.5 + parent: 2 + - uid: 5816 + components: + - type: Transform + pos: 88.5,23.5 + parent: 2 + - uid: 5818 + components: + - type: Transform + pos: 88.5,24.5 + parent: 2 + - uid: 5819 + components: + - type: Transform + pos: 88.5,22.5 + parent: 2 + - uid: 5820 + components: + - type: Transform + pos: 88.5,21.5 + parent: 2 + - uid: 5821 + components: + - type: Transform + pos: 89.5,21.5 + parent: 2 + - uid: 5842 + components: + - type: Transform + pos: 80.5,45.5 + parent: 2 + - uid: 5866 + components: + - type: Transform + pos: 82.5,60.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + pos: 83.5,60.5 + parent: 2 + - uid: 5954 + components: + - type: Transform + pos: 58.5,44.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + pos: 84.5,60.5 + parent: 2 + - uid: 5974 + components: + - type: Transform + pos: 84.5,59.5 + parent: 2 + - uid: 5978 + components: + - type: Transform + pos: 84.5,58.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + pos: 84.5,57.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + pos: 84.5,56.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + pos: 85.5,56.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + pos: 85.5,55.5 + parent: 2 + - uid: 5997 + components: + - type: Transform + pos: 84.5,53.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: 85.5,53.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: -44.5,83.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: 85.5,54.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: 85.5,60.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + pos: 86.5,61.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + pos: 84.5,64.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: 85.5,64.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + pos: 86.5,63.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + pos: 86.5,62.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + pos: -67.5,163.5 + parent: 2 + - uid: 6039 + components: + - type: Transform + pos: 85.5,61.5 + parent: 2 + - uid: 6049 + components: + - type: Transform + pos: 72.5,54.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + pos: 82.5,63.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: -101.5,29.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + pos: 85.5,52.5 + parent: 2 + - uid: 6126 + components: + - type: Transform + pos: 85.5,51.5 + parent: 2 + - uid: 6177 + components: + - type: Transform + pos: 74.5,48.5 + parent: 2 + - uid: 6179 + components: + - type: Transform + pos: 84.5,50.5 + parent: 2 + - uid: 6180 + components: + - type: Transform + pos: 84.5,49.5 + parent: 2 + - uid: 6181 + components: + - type: Transform + pos: 84.5,48.5 + parent: 2 + - uid: 6182 + components: + - type: Transform + pos: 84.5,47.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + pos: 84.5,46.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + pos: 79.5,45.5 + parent: 2 + - uid: 6204 + components: + - type: Transform + pos: 79.5,44.5 + parent: 2 + - uid: 6210 + components: + - type: Transform + pos: 79.5,39.5 + parent: 2 + - uid: 6211 + components: + - type: Transform + pos: 78.5,39.5 + parent: 2 + - uid: 6213 + components: + - type: Transform + pos: 77.5,39.5 + parent: 2 + - uid: 6214 + components: + - type: Transform + pos: 76.5,39.5 + parent: 2 + - uid: 6217 + components: + - type: Transform + pos: 84.5,65.5 + parent: 2 + - uid: 6218 + components: + - type: Transform + pos: 83.5,65.5 + parent: 2 + - uid: 6219 + components: + - type: Transform + pos: 82.5,65.5 + parent: 2 + - uid: 6220 + components: + - type: Transform + pos: 81.5,65.5 + parent: 2 + - uid: 6221 + components: + - type: Transform + pos: 80.5,65.5 + parent: 2 + - uid: 6225 + components: + - type: Transform + pos: 80.5,66.5 + parent: 2 + - uid: 6226 + components: + - type: Transform + pos: 79.5,66.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + pos: 78.5,66.5 + parent: 2 + - uid: 6228 + components: + - type: Transform + pos: 77.5,66.5 + parent: 2 + - uid: 6229 + components: + - type: Transform + pos: 76.5,66.5 + parent: 2 + - uid: 6230 + components: + - type: Transform + pos: 75.5,66.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + pos: 74.5,66.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + pos: 73.5,66.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: 72.5,66.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + pos: 71.5,66.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: 70.5,66.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + pos: 69.5,66.5 + parent: 2 + - uid: 6237 + components: + - type: Transform + pos: 68.5,66.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + pos: 68.5,65.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + pos: 76.5,40.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + pos: 76.5,41.5 + parent: 2 + - uid: 6241 + components: + - type: Transform + pos: 76.5,42.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: 76.5,43.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: 76.5,44.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + pos: 76.5,45.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + pos: 76.5,46.5 + parent: 2 + - uid: 6249 + components: + - type: Transform + pos: 76.5,47.5 + parent: 2 + - uid: 6250 + components: + - type: Transform + pos: 76.5,48.5 + parent: 2 + - uid: 6251 + components: + - type: Transform + pos: 68.5,64.5 + parent: 2 + - uid: 6252 + components: + - type: Transform + pos: 63.5,63.5 + parent: 2 + - uid: 6255 + components: + - type: Transform + pos: 66.5,58.5 + parent: 2 + - uid: 6256 + components: + - type: Transform + pos: 75.5,48.5 + parent: 2 + - uid: 6257 + components: + - type: Transform + pos: 73.5,48.5 + parent: 2 + - uid: 6258 + components: + - type: Transform + pos: 71.5,49.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + pos: 72.5,48.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + pos: 71.5,48.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: 71.5,50.5 + parent: 2 + - uid: 6265 + components: + - type: Transform + pos: 71.5,51.5 + parent: 2 + - uid: 6267 + components: + - type: Transform + pos: 71.5,52.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + pos: 72.5,52.5 + parent: 2 + - uid: 6269 + components: + - type: Transform + pos: 72.5,53.5 + parent: 2 + - uid: 6278 + components: + - type: Transform + pos: 71.5,54.5 + parent: 2 + - uid: 6279 + components: + - type: Transform + pos: 70.5,54.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + pos: 70.5,55.5 + parent: 2 + - uid: 6298 + components: + - type: Transform + pos: 70.5,56.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + pos: 71.5,65.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + pos: 71.5,64.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + pos: 71.5,63.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + pos: 71.5,62.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + pos: 76.5,49.5 + parent: 2 + - uid: 6316 + components: + - type: Transform + pos: 76.5,50.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + pos: 76.5,51.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + pos: 64.5,62.5 + parent: 2 + - uid: 6325 + components: + - type: Transform + pos: 63.5,62.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + pos: 77.5,51.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + pos: -101.5,31.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + pos: 55.5,62.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + pos: 67.5,66.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + pos: 54.5,62.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + pos: 54.5,63.5 + parent: 2 + - uid: 6382 + components: + - type: Transform + pos: 54.5,64.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + pos: 54.5,65.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + pos: 54.5,66.5 + parent: 2 + - uid: 6385 + components: + - type: Transform + pos: 55.5,66.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + pos: 56.5,66.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + pos: 57.5,66.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + pos: 58.5,66.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + pos: 59.5,66.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + pos: 60.5,66.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + pos: 61.5,66.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + pos: 62.5,66.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + pos: 63.5,66.5 + parent: 2 + - uid: 6394 + components: + - type: Transform + pos: 64.5,66.5 + parent: 2 + - uid: 6395 + components: + - type: Transform + pos: 65.5,66.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: 66.5,66.5 + parent: 2 + - uid: 6414 + components: + - type: Transform + pos: -101.5,27.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + pos: 75.5,39.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + pos: 74.5,39.5 + parent: 2 + - uid: 6427 + components: + - type: Transform + pos: 73.5,39.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + pos: 72.5,39.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + pos: 71.5,39.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: 70.5,39.5 + parent: 2 + - uid: 6431 + components: + - type: Transform + pos: 69.5,39.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + pos: 68.5,39.5 + parent: 2 + - uid: 6433 + components: + - type: Transform + pos: 67.5,39.5 + parent: 2 + - uid: 6434 + components: + - type: Transform + pos: 66.5,39.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + pos: 65.5,39.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + pos: 64.5,39.5 + parent: 2 + - uid: 6437 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: 58.5,45.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + pos: 8.5,172.5 + parent: 2 + - uid: 6511 + components: + - type: Transform + pos: 39.5,62.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + pos: 40.5,62.5 + parent: 2 + - uid: 6513 + components: + - type: Transform + pos: 57.5,45.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: 40.5,61.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + pos: 41.5,61.5 + parent: 2 + - uid: 6516 + components: + - type: Transform + pos: 42.5,61.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + pos: 43.5,61.5 + parent: 2 + - uid: 6518 + components: + - type: Transform + pos: 44.5,61.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + pos: 45.5,61.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + pos: 46.5,61.5 + parent: 2 + - uid: 6521 + components: + - type: Transform + pos: 47.5,61.5 + parent: 2 + - uid: 6522 + components: + - type: Transform + pos: 48.5,61.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + pos: 49.5,61.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: 50.5,61.5 + parent: 2 + - uid: 6525 + components: + - type: Transform + pos: 51.5,61.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + pos: 52.5,61.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + pos: 53.5,61.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + pos: 56.5,45.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: 53.5,62.5 + parent: 2 + - uid: 6530 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + pos: 44.5,56.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: 12.5,173.5 + parent: 2 + - uid: 6540 + components: + - type: Transform + pos: 58.5,46.5 + parent: 2 + - uid: 6541 + components: + - type: Transform + pos: 58.5,47.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + pos: 58.5,49.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: 58.5,50.5 + parent: 2 + - uid: 6545 + components: + - type: Transform + pos: 58.5,51.5 + parent: 2 + - uid: 6557 + components: + - type: Transform + pos: 71.5,38.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + pos: 71.5,37.5 + parent: 2 + - uid: 6582 + components: + - type: Transform + pos: 80.5,38.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + pos: 81.5,39.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + pos: 82.5,39.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + pos: 83.5,39.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + pos: 84.5,39.5 + parent: 2 + - uid: 6587 + components: + - type: Transform + pos: 85.5,39.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + pos: 86.5,39.5 + parent: 2 + - uid: 6595 + components: + - type: Transform + pos: 87.5,39.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + pos: 80.5,39.5 + parent: 2 + - uid: 6603 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: 87.5,40.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + pos: 87.5,41.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + pos: -44.5,82.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + pos: 87.5,42.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + pos: 87.5,43.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: 87.5,44.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: 87.5,45.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: 87.5,46.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: 87.5,47.5 + parent: 2 + - uid: 6647 + components: + - type: Transform + pos: 80.5,37.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + pos: 80.5,36.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + pos: 80.5,35.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + pos: 80.5,34.5 + parent: 2 + - uid: 6651 + components: + - type: Transform + pos: 79.5,34.5 + parent: 2 + - uid: 6652 + components: + - type: Transform + pos: 79.5,33.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + pos: 87.5,48.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: 88.5,48.5 + parent: 2 + - uid: 6656 + components: + - type: Transform + pos: 89.5,48.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + pos: 90.5,48.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + pos: 91.5,48.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + pos: 92.5,48.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + pos: 92.5,49.5 + parent: 2 + - uid: 6661 + components: + - type: Transform + pos: 92.5,50.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + pos: 93.5,48.5 + parent: 2 + - uid: 6669 + components: + - type: Transform + pos: 94.5,48.5 + parent: 2 + - uid: 6670 + components: + - type: Transform + pos: 95.5,48.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + pos: 96.5,48.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + pos: 97.5,48.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + pos: 98.5,48.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + pos: 99.5,48.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + pos: 100.5,48.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + pos: 101.5,48.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + pos: 102.5,48.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + pos: 103.5,48.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + pos: 104.5,48.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: 105.5,48.5 + parent: 2 + - uid: 6681 + components: + - type: Transform + pos: 106.5,48.5 + parent: 2 + - uid: 6682 + components: + - type: Transform + pos: 106.5,46.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + pos: 106.5,45.5 + parent: 2 + - uid: 6684 + components: + - type: Transform + pos: 106.5,44.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + pos: 89.5,49.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + pos: 89.5,50.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + pos: 89.5,51.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + pos: 89.5,52.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + pos: 89.5,53.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + pos: 89.5,54.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: 89.5,55.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + pos: 89.5,56.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + pos: 89.5,57.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: 89.5,58.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + pos: 90.5,58.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: 91.5,58.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: 92.5,58.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: 93.5,58.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: 94.5,58.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + pos: 95.5,58.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + pos: 96.5,58.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + pos: 97.5,58.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + pos: 98.5,58.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + pos: 99.5,58.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + pos: 100.5,58.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + pos: 101.5,58.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: 102.5,58.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: 103.5,58.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + pos: 104.5,58.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: 105.5,58.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + pos: 106.5,58.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: 106.5,59.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + pos: 106.5,60.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + pos: 106.5,61.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + pos: 106.5,62.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + pos: 106.5,63.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: 47.5,59.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: 47.5,56.5 + parent: 2 + - uid: 6843 + components: + - type: Transform + pos: 49.5,62.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + pos: 75.5,46.5 + parent: 2 + - uid: 6855 + components: + - type: Transform + pos: 74.5,46.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + pos: 73.5,46.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + pos: 72.5,46.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + pos: 71.5,46.5 + parent: 2 + - uid: 6859 + components: + - type: Transform + pos: 70.5,46.5 + parent: 2 + - uid: 6860 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - uid: 7000 + components: + - type: Transform + pos: 70.5,37.5 + parent: 2 + - uid: 7001 + components: + - type: Transform + pos: 69.5,37.5 + parent: 2 + - uid: 7043 + components: + - type: Transform + pos: -44.5,81.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + pos: 67.5,58.5 + parent: 2 + - uid: 7134 + components: + - type: Transform + pos: -44.5,80.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: -125.5,57.5 + parent: 2 + - uid: 7306 + components: + - type: Transform + pos: -44.5,79.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + pos: -45.5,68.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + pos: -72.5,95.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: -72.5,96.5 + parent: 2 + - uid: 7510 + components: + - type: Transform + pos: -73.5,95.5 + parent: 2 + - uid: 7511 + components: + - type: Transform + pos: -19.5,180.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: -74.5,95.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + pos: -69.5,72.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: -44.5,76.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: -83.5,85.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + pos: -75.5,95.5 + parent: 2 + - uid: 7621 + components: + - type: Transform + pos: 68.5,70.5 + parent: 2 + - uid: 7622 + components: + - type: Transform + pos: 65.5,69.5 + parent: 2 + - uid: 7685 + components: + - type: Transform + pos: -61.5,133.5 + parent: 2 + - uid: 7686 + components: + - type: Transform + pos: -61.5,132.5 + parent: 2 + - uid: 7687 + components: + - type: Transform + pos: -61.5,131.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + pos: -61.5,130.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + pos: -60.5,130.5 + parent: 2 + - uid: 7690 + components: + - type: Transform + pos: -59.5,130.5 + parent: 2 + - uid: 7691 + components: + - type: Transform + pos: -58.5,130.5 + parent: 2 + - uid: 7692 + components: + - type: Transform + pos: -57.5,130.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + pos: -56.5,130.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + pos: -55.5,130.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + pos: -55.5,131.5 + parent: 2 + - uid: 7696 + components: + - type: Transform + pos: -55.5,132.5 + parent: 2 + - uid: 7801 + components: + - type: Transform + pos: -104.5,97.5 + parent: 2 + - uid: 7864 + components: + - type: Transform + pos: 25.5,198.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + pos: 20.5,200.5 + parent: 2 + - uid: 7868 + components: + - type: Transform + pos: 6.5,194.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + pos: 76.5,70.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + pos: -102.5,146.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: -44.5,78.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 8844 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 8845 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 8851 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 + - uid: 8852 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 8853 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 8854 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 8855 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 8856 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 8867 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 8962 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 2 + - uid: 9089 + components: + - type: Transform + pos: 23.5,183.5 + parent: 2 + - uid: 9090 + components: + - type: Transform + pos: -5.5,173.5 + parent: 2 + - uid: 9479 + components: + - type: Transform + pos: -126.5,110.5 + parent: 2 + - uid: 9868 + components: + - type: Transform + pos: -92.5,33.5 + parent: 2 + - uid: 10088 + components: + - type: Transform + pos: 77.5,69.5 + parent: 2 + - uid: 10089 + components: + - type: Transform + pos: 78.5,69.5 + parent: 2 + - uid: 10329 + components: + - type: Transform + pos: -127.5,54.5 + parent: 2 + - uid: 10529 + components: + - type: Transform + pos: -130.5,39.5 + parent: 2 + - uid: 10584 + components: + - type: Transform + pos: -76.5,95.5 + parent: 2 + - uid: 10602 + components: + - type: Transform + pos: -131.5,40.5 + parent: 2 + - uid: 10603 + components: + - type: Transform + pos: -131.5,41.5 + parent: 2 + - uid: 10847 + components: + - type: Transform + pos: -127.5,58.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + pos: -126.5,109.5 + parent: 2 + - uid: 10932 + components: + - type: Transform + pos: -121.5,103.5 + parent: 2 + - uid: 10939 + components: + - type: Transform + pos: -122.5,107.5 + parent: 2 + - uid: 10940 + components: + - type: Transform + pos: -126.5,108.5 + parent: 2 + - uid: 10941 + components: + - type: Transform + pos: -121.5,104.5 + parent: 2 + - uid: 11037 + components: + - type: Transform + pos: -126.5,107.5 + parent: 2 + - uid: 11045 + components: + - type: Transform + pos: -127.5,89.5 + parent: 2 + - uid: 11077 + components: + - type: Transform + pos: -124.5,26.5 + parent: 2 + - uid: 11087 + components: + - type: Transform + pos: -8.5,165.5 + parent: 2 + - uid: 11090 + components: + - type: Transform + pos: -26.5,99.5 + parent: 2 + - uid: 11091 + components: + - type: Transform + pos: -27.5,99.5 + parent: 2 + - uid: 11094 + components: + - type: Transform + pos: -25.5,99.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: -28.5,99.5 + parent: 2 + - uid: 11268 + components: + - type: Transform + pos: -127.5,39.5 + parent: 2 + - uid: 11321 + components: + - type: Transform + pos: -34.5,86.5 + parent: 2 + - uid: 11322 + components: + - type: Transform + pos: -34.5,84.5 + parent: 2 + - uid: 11323 + components: + - type: Transform + pos: -34.5,87.5 + parent: 2 + - uid: 11325 + components: + - type: Transform + pos: -34.5,85.5 + parent: 2 + - uid: 11326 + components: + - type: Transform + pos: -36.5,83.5 + parent: 2 + - uid: 11329 + components: + - type: Transform + pos: -35.5,85.5 + parent: 2 + - uid: 11338 + components: + - type: Transform + pos: -36.5,84.5 + parent: 2 + - uid: 11347 + components: + - type: Transform + pos: -36.5,77.5 + parent: 2 + - uid: 11348 + components: + - type: Transform + pos: -36.5,76.5 + parent: 2 + - uid: 11349 + components: + - type: Transform + pos: -36.5,75.5 + parent: 2 + - uid: 11352 + components: + - type: Transform + pos: -36.5,82.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + pos: -36.5,81.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + pos: -36.5,80.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + pos: -36.5,79.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + pos: -36.5,78.5 + parent: 2 + - uid: 11374 + components: + - type: Transform + pos: -44.5,75.5 + parent: 2 + - uid: 11375 + components: + - type: Transform + pos: -44.5,77.5 + parent: 2 + - uid: 11376 + components: + - type: Transform + pos: -44.5,74.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + pos: -45.5,77.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + pos: -46.5,87.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + pos: -36.5,87.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + pos: -46.5,77.5 + parent: 2 + - uid: 11473 + components: + - type: Transform + pos: -36.5,85.5 + parent: 2 + - uid: 11474 + components: + - type: Transform + pos: -36.5,86.5 + parent: 2 + - uid: 11543 + components: + - type: Transform + pos: -128.5,89.5 + parent: 2 + - uid: 11669 + components: + - type: Transform + pos: -114.5,104.5 + parent: 2 + - uid: 11734 + components: + - type: Transform + pos: -70.5,100.5 + parent: 2 + - uid: 11735 + components: + - type: Transform + pos: -72.5,97.5 + parent: 2 + - uid: 11737 + components: + - type: Transform + pos: -72.5,98.5 + parent: 2 + - uid: 11738 + components: + - type: Transform + pos: -72.5,100.5 + parent: 2 + - uid: 11740 + components: + - type: Transform + pos: -71.5,100.5 + parent: 2 + - uid: 11741 + components: + - type: Transform + pos: -72.5,99.5 + parent: 2 + - uid: 11775 + components: + - type: Transform + pos: -44.5,69.5 + parent: 2 + - uid: 11776 + components: + - type: Transform + pos: -44.5,70.5 + parent: 2 + - uid: 11777 + components: + - type: Transform + pos: -44.5,71.5 + parent: 2 + - uid: 11778 + components: + - type: Transform + pos: -44.5,72.5 + parent: 2 + - uid: 11779 + components: + - type: Transform + pos: -44.5,73.5 + parent: 2 + - uid: 11780 + components: + - type: Transform + pos: -45.5,73.5 + parent: 2 + - uid: 11781 + components: + - type: Transform + pos: -46.5,73.5 + parent: 2 + - uid: 11951 + components: + - type: Transform + pos: -124.5,107.5 + parent: 2 + - uid: 12051 + components: + - type: Transform + pos: 86.5,51.5 + parent: 2 + - uid: 12479 + components: + - type: Transform + pos: -127.5,90.5 + parent: 2 + - uid: 12480 + components: + - type: Transform + pos: -118.5,102.5 + parent: 2 + - uid: 12481 + components: + - type: Transform + pos: -120.5,102.5 + parent: 2 + - uid: 12534 + components: + - type: Transform + pos: -125.5,102.5 + parent: 2 + - uid: 12535 + components: + - type: Transform + pos: -127.5,102.5 + parent: 2 + - uid: 12536 + components: + - type: Transform + pos: -118.5,103.5 + parent: 2 + - uid: 12537 + components: + - type: Transform + pos: -119.5,102.5 + parent: 2 + - uid: 12538 + components: + - type: Transform + pos: -124.5,102.5 + parent: 2 + - uid: 12539 + components: + - type: Transform + pos: -126.5,102.5 + parent: 2 + - uid: 12540 + components: + - type: Transform + pos: -122.5,102.5 + parent: 2 + - uid: 12541 + components: + - type: Transform + pos: -123.5,102.5 + parent: 2 + - uid: 12542 + components: + - type: Transform + pos: -128.5,103.5 + parent: 2 + - uid: 12544 + components: + - type: Transform + pos: -121.5,102.5 + parent: 2 + - uid: 12545 + components: + - type: Transform + pos: -123.5,101.5 + parent: 2 + - uid: 12546 + components: + - type: Transform + pos: -128.5,102.5 + parent: 2 + - uid: 12551 + components: + - type: Transform + pos: -121.5,105.5 + parent: 2 + - uid: 12655 + components: + - type: Transform + pos: -4.5,4.5 + parent: 13386 + - uid: 12661 + components: + - type: Transform + pos: -4.5,3.5 + parent: 13386 + - uid: 12794 + components: + - type: Transform + pos: -60.5,169.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: -101.5,32.5 + parent: 2 + - uid: 12845 + components: + - type: Transform + pos: 65.5,46.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + pos: 67.5,46.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + pos: 64.5,46.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: -89.5,95.5 + parent: 2 + - uid: 12967 + components: + - type: Transform + pos: -88.5,95.5 + parent: 2 + - uid: 12971 + components: + - type: Transform + pos: -87.5,95.5 + parent: 2 + - uid: 12983 + components: + - type: Transform + pos: 66.5,46.5 + parent: 2 + - uid: 13106 + components: + - type: Transform + pos: -86.5,95.5 + parent: 2 + - uid: 13107 + components: + - type: Transform + pos: -90.5,95.5 + parent: 2 + - uid: 13109 + components: + - type: Transform + pos: -91.5,95.5 + parent: 2 + - uid: 13122 + components: + - type: Transform + pos: -92.5,95.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + pos: -92.5,96.5 + parent: 2 + - uid: 13131 + components: + - type: Transform + pos: -92.5,97.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + pos: -92.5,98.5 + parent: 2 + - uid: 13139 + components: + - type: Transform + pos: -92.5,99.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + pos: -101.5,33.5 + parent: 2 + - uid: 13408 + components: + - type: Transform + pos: -119.5,108.5 + parent: 2 + - uid: 13410 + components: + - type: Transform + pos: -120.5,108.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + pos: -39.5,104.5 + parent: 2 + - uid: 13574 + components: + - type: Transform + pos: -37.5,104.5 + parent: 2 + - uid: 13579 + components: + - type: Transform + pos: -35.5,104.5 + parent: 2 + - uid: 13580 + components: + - type: Transform + pos: -31.5,104.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - uid: 13613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-8.5 + pos: -130.5,40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - - uid: 13614 + - uid: 13639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,1.5 + pos: -38.5,104.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - uid: 13615 + - uid: 13641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,1.5 + pos: -34.5,104.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - uid: 13616 + - uid: 13645 components: - type: Transform - pos: -1.5,-49.5 + pos: -34.5,98.5 parent: 2 - - uid: 13619 + - uid: 13647 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-51.5 + pos: -35.5,98.5 parent: 2 - - uid: 13620 + - uid: 13648 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-12.5 + pos: -36.5,104.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13569 - - 18 - - uid: 13621 + - uid: 13700 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-12.5 + pos: -29.5,103.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13569 - - 18 - - uid: 13622 + - uid: 13701 components: - type: Transform - pos: 66.5,-10.5 + pos: -4.5,68.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - uid: 13623 + - uid: 13702 components: - type: Transform - pos: 67.5,-10.5 + pos: -29.5,102.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - uid: 13624 + - uid: 13945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-9.5 + pos: 60.5,39.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - uid: 13625 + - uid: 14161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-8.5 + pos: -127.5,53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - uid: 13626 + - uid: 14199 + components: + - type: Transform + pos: -7.5,166.5 + parent: 2 + - uid: 14216 + components: + - type: Transform + pos: -6.5,166.5 + parent: 2 + - uid: 15055 + components: + - type: Transform + pos: -47.5,103.5 + parent: 2 + - uid: 15057 + components: + - type: Transform + pos: -47.5,102.5 + parent: 2 + - uid: 15058 + components: + - type: Transform + pos: -47.5,104.5 + parent: 2 + - uid: 15060 + components: + - type: Transform + pos: -47.5,105.5 + parent: 2 + - uid: 15148 + components: + - type: Transform + pos: -93.5,99.5 + parent: 2 + - uid: 15377 + components: + - type: Transform + pos: -94.5,99.5 + parent: 2 + - uid: 15465 + components: + - type: Transform + pos: -110.5,26.5 + parent: 2 + - uid: 15647 + components: + - type: Transform + pos: -114.5,103.5 + parent: 2 + - uid: 15648 + components: + - type: Transform + pos: -115.5,103.5 + parent: 2 + - uid: 15649 + components: + - type: Transform + pos: -116.5,103.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + pos: -117.5,103.5 + parent: 2 + - uid: 16165 + components: + - type: Transform + pos: 2.5,78.5 + parent: 2 + - uid: 16166 + components: + - type: Transform + pos: 2.5,77.5 + parent: 2 + - uid: 16167 + components: + - type: Transform + pos: 2.5,76.5 + parent: 2 + - uid: 16168 + components: + - type: Transform + pos: 2.5,75.5 + parent: 2 + - uid: 16169 + components: + - type: Transform + pos: 2.5,74.5 + parent: 2 + - uid: 16170 + components: + - type: Transform + pos: 2.5,73.5 + parent: 2 + - uid: 16171 + components: + - type: Transform + pos: 3.5,73.5 + parent: 2 + - uid: 16172 + components: + - type: Transform + pos: 4.5,73.5 + parent: 2 + - uid: 16173 + components: + - type: Transform + pos: 2.5,79.5 + parent: 2 + - uid: 16174 + components: + - type: Transform + pos: 2.5,80.5 + parent: 2 + - uid: 16175 + components: + - type: Transform + pos: 2.5,81.5 + parent: 2 + - uid: 16176 + components: + - type: Transform + pos: 2.5,82.5 + parent: 2 + - uid: 16177 + components: + - type: Transform + pos: 2.5,83.5 + parent: 2 + - uid: 16178 + components: + - type: Transform + pos: 2.5,84.5 + parent: 2 + - uid: 16179 + components: + - type: Transform + pos: 2.5,85.5 + parent: 2 + - uid: 16180 + components: + - type: Transform + pos: 2.5,86.5 + parent: 2 + - uid: 16181 + components: + - type: Transform + pos: 2.5,87.5 + parent: 2 + - uid: 16182 + components: + - type: Transform + pos: 2.5,88.5 + parent: 2 + - uid: 16183 + components: + - type: Transform + pos: 1.5,88.5 + parent: 2 + - uid: 16184 + components: + - type: Transform + pos: 0.5,88.5 + parent: 2 + - uid: 16185 + components: + - type: Transform + pos: -0.5,88.5 + parent: 2 + - uid: 16186 + components: + - type: Transform + pos: -1.5,88.5 + parent: 2 + - uid: 16187 + components: + - type: Transform + pos: -2.5,88.5 + parent: 2 + - uid: 16188 + components: + - type: Transform + pos: -3.5,88.5 + parent: 2 + - uid: 16189 + components: + - type: Transform + pos: -4.5,88.5 + parent: 2 + - uid: 16190 + components: + - type: Transform + pos: -5.5,88.5 + parent: 2 + - uid: 16191 + components: + - type: Transform + pos: -6.5,88.5 + parent: 2 + - uid: 16192 + components: + - type: Transform + pos: -7.5,88.5 + parent: 2 + - uid: 16193 + components: + - type: Transform + pos: -8.5,88.5 + parent: 2 + - uid: 16194 + components: + - type: Transform + pos: -9.5,88.5 + parent: 2 + - uid: 16195 + components: + - type: Transform + pos: -10.5,88.5 + parent: 2 + - uid: 16196 + components: + - type: Transform + pos: -11.5,88.5 + parent: 2 + - uid: 16197 + components: + - type: Transform + pos: -12.5,88.5 + parent: 2 + - uid: 16198 + components: + - type: Transform + pos: -13.5,88.5 + parent: 2 + - uid: 16199 + components: + - type: Transform + pos: -13.5,87.5 + parent: 2 + - uid: 16200 + components: + - type: Transform + pos: -14.5,87.5 + parent: 2 + - uid: 16201 + components: + - type: Transform + pos: -6.5,87.5 + parent: 2 + - uid: 16202 + components: + - type: Transform + pos: -6.5,86.5 + parent: 2 + - uid: 16203 + components: + - type: Transform + pos: -6.5,85.5 + parent: 2 + - uid: 16204 + components: + - type: Transform + pos: -6.5,84.5 + parent: 2 + - uid: 16205 + components: + - type: Transform + pos: -6.5,83.5 + parent: 2 + - uid: 16206 + components: + - type: Transform + pos: -6.5,82.5 + parent: 2 + - uid: 16207 + components: + - type: Transform + pos: -6.5,81.5 + parent: 2 + - uid: 16208 + components: + - type: Transform + pos: -6.5,80.5 + parent: 2 + - uid: 16209 + components: + - type: Transform + pos: -6.5,79.5 + parent: 2 + - uid: 16210 + components: + - type: Transform + pos: -5.5,79.5 + parent: 2 + - uid: 16211 + components: + - type: Transform + pos: -4.5,79.5 + parent: 2 + - uid: 16212 + components: + - type: Transform + pos: -6.5,74.5 + parent: 2 + - uid: 16213 + components: + - type: Transform + pos: -6.5,75.5 + parent: 2 + - uid: 16214 + components: + - type: Transform + pos: -6.5,76.5 + parent: 2 + - uid: 16215 + components: + - type: Transform + pos: -6.5,77.5 + parent: 2 + - uid: 16216 + components: + - type: Transform + pos: -6.5,78.5 + parent: 2 + - uid: 16217 + components: + - type: Transform + pos: -7.5,74.5 + parent: 2 + - uid: 16218 + components: + - type: Transform + pos: -8.5,74.5 + parent: 2 + - uid: 16219 + components: + - type: Transform + pos: -9.5,74.5 + parent: 2 + - uid: 16220 + components: + - type: Transform + pos: -10.5,74.5 + parent: 2 + - uid: 16221 + components: + - type: Transform + pos: -11.5,74.5 + parent: 2 + - uid: 16222 + components: + - type: Transform + pos: -12.5,74.5 + parent: 2 + - uid: 16223 + components: + - type: Transform + pos: -13.5,74.5 + parent: 2 + - uid: 16224 + components: + - type: Transform + pos: -14.5,74.5 + parent: 2 + - uid: 16225 + components: + - type: Transform + pos: -15.5,74.5 + parent: 2 + - uid: 16226 + components: + - type: Transform + pos: -16.5,74.5 + parent: 2 + - uid: 16227 + components: + - type: Transform + pos: -17.5,64.5 + parent: 2 + - uid: 16228 + components: + - type: Transform + pos: -16.5,64.5 + parent: 2 + - uid: 16229 + components: + - type: Transform + pos: -16.5,65.5 + parent: 2 + - uid: 16230 + components: + - type: Transform + pos: -16.5,66.5 + parent: 2 + - uid: 16231 + components: + - type: Transform + pos: -16.5,67.5 + parent: 2 + - uid: 16232 + components: + - type: Transform + pos: -16.5,68.5 + parent: 2 + - uid: 16233 + components: + - type: Transform + pos: -16.5,69.5 + parent: 2 + - uid: 16234 + components: + - type: Transform + pos: -16.5,70.5 + parent: 2 + - uid: 16235 + components: + - type: Transform + pos: -16.5,71.5 + parent: 2 + - uid: 16236 + components: + - type: Transform + pos: -16.5,72.5 + parent: 2 + - uid: 16237 + components: + - type: Transform + pos: -16.5,73.5 + parent: 2 + - uid: 16238 + components: + - type: Transform + pos: -18.5,64.5 + parent: 2 + - uid: 16239 + components: + - type: Transform + pos: -17.5,74.5 + parent: 2 + - uid: 16240 + components: + - type: Transform + pos: -18.5,74.5 + parent: 2 + - uid: 16241 + components: + - type: Transform + pos: -19.5,74.5 + parent: 2 + - uid: 16242 + components: + - type: Transform + pos: -20.5,74.5 + parent: 2 + - uid: 16243 + components: + - type: Transform + pos: -21.5,74.5 + parent: 2 + - uid: 16244 + components: + - type: Transform + pos: -22.5,74.5 + parent: 2 + - uid: 16245 + components: + - type: Transform + pos: -22.5,73.5 + parent: 2 + - uid: 16246 + components: + - type: Transform + pos: -22.5,72.5 + parent: 2 + - uid: 16247 + components: + - type: Transform + pos: -22.5,71.5 + parent: 2 + - uid: 16248 + components: + - type: Transform + pos: -23.5,71.5 + parent: 2 + - uid: 16249 + components: + - type: Transform + pos: -24.5,71.5 + parent: 2 + - uid: 16250 + components: + - type: Transform + pos: -25.5,71.5 + parent: 2 + - uid: 16251 + components: + - type: Transform + pos: -26.5,71.5 + parent: 2 + - uid: 16252 + components: + - type: Transform + pos: -26.5,72.5 + parent: 2 + - uid: 16440 + components: + - type: Transform + pos: -78.5,95.5 + parent: 2 + - uid: 16453 + components: + - type: Transform + pos: -10.5,73.5 + parent: 2 + - uid: 16454 + components: + - type: Transform + pos: -10.5,72.5 + parent: 2 + - uid: 16455 + components: + - type: Transform + pos: -10.5,71.5 + parent: 2 + - uid: 16456 + components: + - type: Transform + pos: -10.5,70.5 + parent: 2 + - uid: 16457 + components: + - type: Transform + pos: -10.5,69.5 + parent: 2 + - uid: 16458 + components: + - type: Transform + pos: -10.5,68.5 + parent: 2 + - uid: 16459 + components: + - type: Transform + pos: -9.5,68.5 + parent: 2 + - uid: 16460 + components: + - type: Transform + pos: -8.5,68.5 + parent: 2 + - uid: 16461 + components: + - type: Transform + pos: -7.5,68.5 + parent: 2 + - uid: 16462 + components: + - type: Transform + pos: -6.5,68.5 + parent: 2 + - uid: 16466 + components: + - type: Transform + pos: -2.5,68.5 + parent: 2 + - uid: 16467 + components: + - type: Transform + pos: -1.5,68.5 + parent: 2 + - uid: 16551 + components: + - type: Transform + pos: 87.5,51.5 + parent: 2 + - uid: 16575 + components: + - type: Transform + pos: -32.5,104.5 + parent: 2 + - uid: 16584 + components: + - type: Transform + pos: -39.5,99.5 + parent: 2 + - uid: 16642 + components: + - type: Transform + pos: -34.5,76.5 + parent: 2 + - uid: 16643 + components: + - type: Transform + pos: -47.5,101.5 + parent: 2 + - uid: 16644 + components: + - type: Transform + pos: -46.5,101.5 + parent: 2 + - uid: 16645 + components: + - type: Transform + pos: -45.5,101.5 + parent: 2 + - uid: 16646 + components: + - type: Transform + pos: -45.5,102.5 + parent: 2 + - uid: 16647 + components: + - type: Transform + pos: -47.5,100.5 + parent: 2 + - uid: 16648 + components: + - type: Transform + pos: -47.5,99.5 + parent: 2 + - uid: 16649 + components: + - type: Transform + pos: -46.5,99.5 + parent: 2 + - uid: 16650 + components: + - type: Transform + pos: -45.5,99.5 + parent: 2 + - uid: 16651 + components: + - type: Transform + pos: -44.5,99.5 + parent: 2 + - uid: 16652 + components: + - type: Transform + pos: -43.5,99.5 + parent: 2 + - uid: 16653 + components: + - type: Transform + pos: -42.5,99.5 + parent: 2 + - uid: 16654 + components: + - type: Transform + pos: -41.5,99.5 + parent: 2 + - uid: 16655 + components: + - type: Transform + pos: -40.5,99.5 + parent: 2 + - uid: 16656 + components: + - type: Transform + pos: -34.5,106.5 + parent: 2 + - uid: 16657 + components: + - type: Transform + pos: -38.5,99.5 + parent: 2 + - uid: 16658 + components: + - type: Transform + pos: -37.5,99.5 + parent: 2 + - uid: 16659 + components: + - type: Transform + pos: -36.5,99.5 + parent: 2 + - uid: 16666 + components: + - type: Transform + pos: -40.5,100.5 + parent: 2 + - uid: 16667 + components: + - type: Transform + pos: -40.5,101.5 + parent: 2 + - uid: 16668 + components: + - type: Transform + pos: -40.5,102.5 + parent: 2 + - uid: 16669 + components: + - type: Transform + pos: -40.5,103.5 + parent: 2 + - uid: 16670 + components: + - type: Transform + pos: -40.5,104.5 + parent: 2 + - uid: 16671 + components: + - type: Transform + pos: -40.5,105.5 + parent: 2 + - uid: 16673 + components: + - type: Transform + pos: -40.5,106.5 + parent: 2 + - uid: 16674 + components: + - type: Transform + pos: -39.5,106.5 + parent: 2 + - uid: 16675 + components: + - type: Transform + pos: -38.5,106.5 + parent: 2 + - uid: 16676 + components: + - type: Transform + pos: -37.5,106.5 + parent: 2 + - uid: 16677 + components: + - type: Transform + pos: -36.5,106.5 + parent: 2 + - uid: 16678 + components: + - type: Transform + pos: -35.5,106.5 + parent: 2 + - uid: 16714 + components: + - type: Transform + pos: -22.5,75.5 + parent: 2 + - uid: 16715 + components: + - type: Transform + pos: -22.5,76.5 + parent: 2 + - uid: 16716 + components: + - type: Transform + pos: -23.5,76.5 + parent: 2 + - uid: 16717 + components: + - type: Transform + pos: -24.5,76.5 + parent: 2 + - uid: 16718 + components: + - type: Transform + pos: -25.5,76.5 + parent: 2 + - uid: 16719 + components: + - type: Transform + pos: -26.5,76.5 + parent: 2 + - uid: 16720 + components: + - type: Transform + pos: -26.5,74.5 + parent: 2 + - uid: 16721 + components: + - type: Transform + pos: -26.5,75.5 + parent: 2 + - uid: 16722 + components: + - type: Transform + pos: -27.5,74.5 + parent: 2 + - uid: 16723 + components: + - type: Transform + pos: -28.5,74.5 + parent: 2 + - uid: 16730 + components: + - type: Transform + pos: -83.5,79.5 + parent: 2 + - uid: 16731 + components: + - type: Transform + pos: -83.5,78.5 + parent: 2 + - uid: 16732 + components: + - type: Transform + pos: -83.5,77.5 + parent: 2 + - uid: 16733 + components: + - type: Transform + pos: -82.5,77.5 + parent: 2 + - uid: 16734 + components: + - type: Transform + pos: -81.5,77.5 + parent: 2 + - uid: 16735 + components: + - type: Transform + pos: -80.5,77.5 + parent: 2 + - uid: 16736 + components: + - type: Transform + pos: -80.5,76.5 + parent: 2 + - uid: 16737 + components: + - type: Transform + pos: -80.5,75.5 + parent: 2 + - uid: 16738 + components: + - type: Transform + pos: -80.5,74.5 + parent: 2 + - uid: 16739 + components: + - type: Transform + pos: -80.5,73.5 + parent: 2 + - uid: 16740 + components: + - type: Transform + pos: -80.5,72.5 + parent: 2 + - uid: 16741 + components: + - type: Transform + pos: -80.5,71.5 + parent: 2 + - uid: 16742 + components: + - type: Transform + pos: -80.5,70.5 + parent: 2 + - uid: 16743 + components: + - type: Transform + pos: -79.5,70.5 + parent: 2 + - uid: 16744 + components: + - type: Transform + pos: -78.5,70.5 + parent: 2 + - uid: 16745 + components: + - type: Transform + pos: -77.5,70.5 + parent: 2 + - uid: 16746 + components: + - type: Transform + pos: -76.5,70.5 + parent: 2 + - uid: 16747 + components: + - type: Transform + pos: -75.5,70.5 + parent: 2 + - uid: 16748 + components: + - type: Transform + pos: -74.5,70.5 + parent: 2 + - uid: 16750 + components: + - type: Transform + pos: -72.5,70.5 + parent: 2 + - uid: 16751 + components: + - type: Transform + pos: -71.5,70.5 + parent: 2 + - uid: 16752 + components: + - type: Transform + pos: -70.5,70.5 + parent: 2 + - uid: 16753 + components: + - type: Transform + pos: -69.5,70.5 + parent: 2 + - uid: 16762 + components: + - type: Transform + pos: -70.5,74.5 + parent: 2 + - uid: 16766 + components: + - type: Transform + pos: -68.5,74.5 + parent: 2 + - uid: 16767 + components: + - type: Transform + pos: -69.5,74.5 + parent: 2 + - uid: 16768 + components: + - type: Transform + pos: -70.5,75.5 + parent: 2 + - uid: 16769 + components: + - type: Transform + pos: -70.5,76.5 + parent: 2 + - uid: 16771 + components: + - type: Transform + pos: -80.5,78.5 + parent: 2 + - uid: 16772 + components: + - type: Transform + pos: -80.5,79.5 + parent: 2 + - uid: 16773 + components: + - type: Transform + pos: -80.5,80.5 + parent: 2 + - uid: 16774 + components: + - type: Transform + pos: -80.5,81.5 + parent: 2 + - uid: 16775 + components: + - type: Transform + pos: -80.5,82.5 + parent: 2 + - uid: 16776 + components: + - type: Transform + pos: -80.5,83.5 + parent: 2 + - uid: 16777 + components: + - type: Transform + pos: -80.5,84.5 + parent: 2 + - uid: 16778 + components: + - type: Transform + pos: -80.5,85.5 + parent: 2 + - uid: 16779 + components: + - type: Transform + pos: -80.5,86.5 + parent: 2 + - uid: 16780 + components: + - type: Transform + pos: -80.5,87.5 + parent: 2 + - uid: 16781 + components: + - type: Transform + pos: -80.5,88.5 + parent: 2 + - uid: 16783 + components: + - type: Transform + pos: -79.5,95.5 + parent: 2 + - uid: 16788 + components: + - type: Transform + pos: -80.5,89.5 + parent: 2 + - uid: 16789 + components: + - type: Transform + pos: -80.5,90.5 + parent: 2 + - uid: 16790 + components: + - type: Transform + pos: -80.5,91.5 + parent: 2 + - uid: 16792 + components: + - type: Transform + pos: -80.5,92.5 + parent: 2 + - uid: 16793 + components: + - type: Transform + pos: -80.5,93.5 + parent: 2 + - uid: 16794 + components: + - type: Transform + pos: -80.5,94.5 + parent: 2 + - uid: 16795 + components: + - type: Transform + pos: -80.5,95.5 + parent: 2 + - uid: 16796 + components: + - type: Transform + pos: -77.5,95.5 + parent: 2 + - uid: 16797 + components: + - type: Transform + pos: -77.5,96.5 + parent: 2 + - uid: 16798 + components: + - type: Transform + pos: -77.5,97.5 + parent: 2 + - uid: 16799 + components: + - type: Transform + pos: -77.5,98.5 + parent: 2 + - uid: 16800 + components: + - type: Transform + pos: -77.5,99.5 + parent: 2 + - uid: 16801 + components: + - type: Transform + pos: -77.5,100.5 + parent: 2 + - uid: 16802 + components: + - type: Transform + pos: -78.5,100.5 + parent: 2 + - uid: 16803 + components: + - type: Transform + pos: -79.5,100.5 + parent: 2 + - uid: 16804 + components: + - type: Transform + pos: -79.5,101.5 + parent: 2 + - uid: 16814 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 13386 + - uid: 16815 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - uid: 16816 + components: + - type: Transform + pos: -66.5,74.5 + parent: 2 + - uid: 16817 + components: + - type: Transform + pos: -65.5,74.5 + parent: 2 + - uid: 16818 + components: + - type: Transform + pos: -64.5,74.5 + parent: 2 + - uid: 16819 + components: + - type: Transform + pos: -63.5,74.5 + parent: 2 + - uid: 16820 + components: + - type: Transform + pos: -62.5,74.5 + parent: 2 + - uid: 16821 + components: + - type: Transform + pos: -61.5,74.5 + parent: 2 + - uid: 16822 + components: + - type: Transform + pos: -60.5,74.5 + parent: 2 + - uid: 16823 + components: + - type: Transform + pos: -59.5,74.5 + parent: 2 + - uid: 16824 + components: + - type: Transform + pos: -58.5,74.5 + parent: 2 + - uid: 16825 + components: + - type: Transform + pos: -57.5,74.5 + parent: 2 + - uid: 16826 + components: + - type: Transform + pos: -57.5,75.5 + parent: 2 + - uid: 16827 + components: + - type: Transform + pos: -56.5,75.5 + parent: 2 + - uid: 16828 + components: + - type: Transform + pos: -55.5,75.5 + parent: 2 + - uid: 16829 + components: + - type: Transform + pos: -54.5,75.5 + parent: 2 + - uid: 16830 + components: + - type: Transform + pos: -53.5,75.5 + parent: 2 + - uid: 16831 + components: + - type: Transform + pos: -53.5,74.5 + parent: 2 + - uid: 16832 + components: + - type: Transform + pos: -52.5,74.5 + parent: 2 + - uid: 16833 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 13386 + - uid: 16834 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 13386 + - uid: 16835 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 13386 + - uid: 16836 + components: + - type: Transform + pos: -57.5,76.5 + parent: 2 + - uid: 16837 + components: + - type: Transform + pos: -57.5,77.5 + parent: 2 + - uid: 16838 + components: + - type: Transform + pos: -57.5,78.5 + parent: 2 + - uid: 16839 + components: + - type: Transform + pos: -57.5,79.5 + parent: 2 + - uid: 16840 + components: + - type: Transform + pos: -57.5,80.5 + parent: 2 + - uid: 16841 + components: + - type: Transform + pos: -57.5,81.5 + parent: 2 + - uid: 16842 + components: + - type: Transform + pos: -57.5,82.5 + parent: 2 + - uid: 16843 + components: + - type: Transform + pos: -57.5,83.5 + parent: 2 + - uid: 16844 + components: + - type: Transform + pos: -57.5,84.5 + parent: 2 + - uid: 16845 + components: + - type: Transform + pos: -57.5,85.5 + parent: 2 + - uid: 16846 + components: + - type: Transform + pos: -57.5,86.5 + parent: 2 + - uid: 16847 + components: + - type: Transform + pos: -57.5,87.5 + parent: 2 + - uid: 16848 + components: + - type: Transform + pos: -57.5,88.5 + parent: 2 + - uid: 16849 + components: + - type: Transform + pos: -57.5,89.5 + parent: 2 + - uid: 16850 + components: + - type: Transform + pos: -57.5,90.5 + parent: 2 + - uid: 16851 + components: + - type: Transform + pos: -56.5,90.5 + parent: 2 + - uid: 16852 + components: + - type: Transform + pos: -55.5,90.5 + parent: 2 + - uid: 16853 + components: + - type: Transform + pos: -55.5,91.5 + parent: 2 + - uid: 16854 + components: + - type: Transform + pos: -55.5,92.5 + parent: 2 + - uid: 16855 + components: + - type: Transform + pos: -58.5,81.5 + parent: 2 + - uid: 16856 + components: + - type: Transform + pos: -59.5,81.5 + parent: 2 + - uid: 16865 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 13386 + - uid: 16866 + components: + - type: Transform + pos: -58.5,73.5 + parent: 2 + - uid: 16867 + components: + - type: Transform + pos: -58.5,72.5 + parent: 2 + - uid: 16868 + components: + - type: Transform + pos: -58.5,71.5 + parent: 2 + - uid: 16869 + components: + - type: Transform + pos: -58.5,70.5 + parent: 2 + - uid: 16870 + components: + - type: Transform + pos: -58.5,69.5 + parent: 2 + - uid: 16871 + components: + - type: Transform + pos: -58.5,68.5 + parent: 2 + - uid: 16872 + components: + - type: Transform + pos: -58.5,67.5 + parent: 2 + - uid: 16873 + components: + - type: Transform + pos: -58.5,66.5 + parent: 2 + - uid: 16874 + components: + - type: Transform + pos: -57.5,66.5 + parent: 2 + - uid: 16875 + components: + - type: Transform + pos: -56.5,66.5 + parent: 2 + - uid: 16876 + components: + - type: Transform + pos: -55.5,66.5 + parent: 2 + - uid: 16954 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 13386 + - uid: 16955 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 13386 + - uid: 16956 + components: + - type: Transform + pos: -0.5,0.5 + parent: 13386 + - uid: 16957 + components: + - type: Transform + pos: -1.5,0.5 + parent: 13386 + - uid: 16958 + components: + - type: Transform + pos: -2.5,0.5 + parent: 13386 + - uid: 16959 + components: + - type: Transform + pos: -3.5,0.5 + parent: 13386 + - uid: 16960 + components: + - type: Transform + pos: -4.5,0.5 + parent: 13386 + - uid: 16961 + components: + - type: Transform + pos: -4.5,1.5 + parent: 13386 + - uid: 16962 + components: + - type: Transform + pos: -4.5,2.5 + parent: 13386 + - uid: 16965 + components: + - type: Transform + pos: -4.5,5.5 + parent: 13386 + - uid: 17038 + components: + - type: Transform + pos: -56.5,86.5 + parent: 2 + - uid: 17039 + components: + - type: Transform + pos: -55.5,86.5 + parent: 2 + - uid: 17083 + components: + - type: Transform + pos: -23.5,77.5 + parent: 2 + - uid: 17084 + components: + - type: Transform + pos: -23.5,78.5 + parent: 2 + - uid: 17085 + components: + - type: Transform + pos: -23.5,79.5 + parent: 2 + - uid: 17086 + components: + - type: Transform + pos: -23.5,80.5 + parent: 2 + - uid: 17087 + components: + - type: Transform + pos: -23.5,81.5 + parent: 2 + - uid: 17088 + components: + - type: Transform + pos: -23.5,82.5 + parent: 2 + - uid: 17089 + components: + - type: Transform + pos: -23.5,83.5 + parent: 2 + - uid: 17090 + components: + - type: Transform + pos: -23.5,84.5 + parent: 2 + - uid: 17091 + components: + - type: Transform + pos: -23.5,85.5 + parent: 2 + - uid: 17092 + components: + - type: Transform + pos: -23.5,86.5 + parent: 2 + - uid: 17093 + components: + - type: Transform + pos: -24.5,86.5 + parent: 2 + - uid: 17094 + components: + - type: Transform + pos: -25.5,86.5 + parent: 2 + - uid: 17095 + components: + - type: Transform + pos: -13.5,89.5 + parent: 2 + - uid: 17096 + components: + - type: Transform + pos: -14.5,89.5 + parent: 2 + - uid: 17174 + components: + - type: Transform + pos: -84.5,77.5 + parent: 2 + - uid: 17176 + components: + - type: Transform + pos: -84.5,78.5 + parent: 2 + - uid: 17199 + components: + - type: Transform + pos: -34.5,79.5 + parent: 2 + - uid: 17239 + components: + - type: Transform + pos: -73.5,70.5 + parent: 2 + - uid: 17278 + components: + - type: Transform + pos: -44.5,86.5 + parent: 2 + - uid: 17282 + components: + - type: Transform + pos: -69.5,73.5 + parent: 2 + - uid: 17299 + components: + - type: Transform + pos: -44.5,87.5 + parent: 2 + - uid: 17300 + components: + - type: Transform + pos: -121.5,106.5 + parent: 2 + - uid: 17318 + components: + - type: Transform + pos: -45.5,85.5 + parent: 2 + - uid: 17322 + components: + - type: Transform + pos: -34.5,75.5 + parent: 2 + - uid: 17341 + components: + - type: Transform + pos: -87.5,156.5 + parent: 2 + - uid: 17355 + components: + - type: Transform + pos: -46.5,84.5 + parent: 2 + - uid: 17366 + components: + - type: Transform + pos: -46.5,86.5 + parent: 2 + - uid: 17374 + components: + - type: Transform + pos: -101.5,30.5 + parent: 2 + - uid: 17381 + components: + - type: Transform + pos: -46.5,85.5 + parent: 2 + - uid: 17408 + components: + - type: Transform + pos: 64.5,45.5 + parent: 2 + - uid: 17418 + components: + - type: Transform + pos: -15.5,165.5 + parent: 2 + - uid: 17462 + components: + - type: Transform + pos: -23.5,177.5 + parent: 2 + - uid: 17484 + components: + - type: Transform + pos: 68.5,46.5 + parent: 2 + - uid: 17532 + components: + - type: Transform + pos: -118.5,100.5 + parent: 2 + - uid: 17666 + components: + - type: Transform + pos: -46.5,76.5 + parent: 2 + - uid: 17667 + components: + - type: Transform + pos: -118.5,99.5 + parent: 2 + - uid: 17791 + components: + - type: Transform + pos: -46.5,75.5 + parent: 2 + - uid: 17794 + components: + - type: Transform + pos: -12.5,165.5 + parent: 2 + - uid: 17815 + components: + - type: Transform + pos: -40.5,72.5 + parent: 2 + - uid: 17817 + components: + - type: Transform + pos: -46.5,78.5 + parent: 2 + - uid: 17926 + components: + - type: Transform + pos: -10.5,165.5 + parent: 2 + - uid: 18012 + components: + - type: Transform + pos: -128.5,92.5 + parent: 2 + - uid: 18015 + components: + - type: Transform + pos: -128.5,91.5 + parent: 2 + - uid: 18175 + components: + - type: Transform + pos: -16.5,166.5 + parent: 2 + - uid: 18195 + components: + - type: Transform + pos: -125.5,107.5 + parent: 2 + - uid: 18241 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 18737 + components: + - type: Transform + pos: -127.5,57.5 + parent: 2 + - uid: 18998 + components: + - type: Transform + pos: -124.5,19.5 + parent: 2 + - uid: 19020 + components: + - type: Transform + pos: -128.5,17.5 + parent: 2 + - uid: 19024 + components: + - type: Transform + pos: -124.5,22.5 + parent: 2 + - uid: 19031 + components: + - type: Transform + pos: -85.5,95.5 + parent: 2 + - uid: 19041 + components: + - type: Transform + pos: -121.5,30.5 + parent: 2 + - uid: 19113 + components: + - type: Transform + pos: -121.5,45.5 + parent: 2 + - uid: 19488 + components: + - type: Transform + pos: -35.5,99.5 + parent: 2 + - uid: 20030 + components: + - type: Transform + pos: 69.5,70.5 + parent: 2 + - uid: 20049 + components: + - type: Transform + pos: -35.5,77.5 + parent: 2 + - uid: 20050 + components: + - type: Transform + pos: -34.5,77.5 + parent: 2 + - uid: 20051 + components: + - type: Transform + pos: -34.5,78.5 + parent: 2 + - uid: 20057 + components: + - type: Transform + pos: 77.5,70.5 + parent: 2 + - uid: 20062 + components: + - type: Transform + pos: 67.5,70.5 + parent: 2 + - uid: 20063 + components: + - type: Transform + pos: 66.5,70.5 + parent: 2 + - uid: 20064 + components: + - type: Transform + pos: 64.5,69.5 + parent: 2 + - uid: 20065 + components: + - type: Transform + pos: 65.5,70.5 + parent: 2 + - uid: 20067 + components: + - type: Transform + pos: 75.5,70.5 + parent: 2 + - uid: 20327 + components: + - type: Transform + pos: -95.5,99.5 + parent: 2 + - uid: 20328 + components: + - type: Transform + pos: -96.5,99.5 + parent: 2 + - uid: 20334 + components: + - type: Transform + pos: -43.5,73.5 + parent: 2 + - uid: 20335 + components: + - type: Transform + pos: -42.5,73.5 + parent: 2 + - uid: 20336 + components: + - type: Transform + pos: -41.5,73.5 + parent: 2 + - uid: 20337 + components: + - type: Transform + pos: -40.5,73.5 + parent: 2 + - uid: 20338 + components: + - type: Transform + pos: -39.5,73.5 + parent: 2 + - uid: 20339 + components: + - type: Transform + pos: -38.5,73.5 + parent: 2 + - uid: 20340 + components: + - type: Transform + pos: -37.5,73.5 + parent: 2 + - uid: 20341 + components: + - type: Transform + pos: -36.5,73.5 + parent: 2 + - uid: 20342 + components: + - type: Transform + pos: -36.5,72.5 + parent: 2 + - uid: 20343 + components: + - type: Transform + pos: -36.5,71.5 + parent: 2 + - uid: 20351 + components: + - type: Transform + pos: -42.5,80.5 + parent: 2 + - uid: 20391 + components: + - type: Transform + pos: 72.5,70.5 + parent: 2 + - uid: 20392 + components: + - type: Transform + pos: 73.5,70.5 + parent: 2 + - uid: 20420 + components: + - type: Transform + pos: -33.5,98.5 + parent: 2 + - uid: 20455 + components: + - type: Transform + pos: 70.5,70.5 + parent: 2 + - uid: 20574 + components: + - type: Transform + pos: -44.5,85.5 + parent: 2 + - uid: 20576 + components: + - type: Transform + pos: -44.5,84.5 + parent: 2 + - uid: 20886 + components: + - type: Transform + pos: -46.5,79.5 + parent: 2 + - uid: 20887 + components: + - type: Transform + pos: -46.5,83.5 + parent: 2 + - uid: 20891 + components: + - type: Transform + pos: -34.5,83.5 + parent: 2 + - uid: 20923 + components: + - type: Transform + pos: -125.5,39.5 + parent: 2 + - uid: 20926 + components: + - type: Transform + pos: -124.5,39.5 + parent: 2 + - uid: 20950 + components: + - type: Transform + pos: -36.5,74.5 + parent: 2 + - uid: 21450 + components: + - type: Transform + pos: -124.5,18.5 + parent: 2 + - uid: 21451 + components: + - type: Transform + pos: -124.5,20.5 + parent: 2 + - uid: 21453 + components: + - type: Transform + pos: -124.5,25.5 + parent: 2 + - uid: 21455 + components: + - type: Transform + pos: -124.5,21.5 + parent: 2 + - uid: 21546 + components: + - type: Transform + pos: -99.5,151.5 + parent: 2 + - uid: 21547 + components: + - type: Transform + pos: -98.5,151.5 + parent: 2 + - uid: 21548 + components: + - type: Transform + pos: -97.5,151.5 + parent: 2 + - uid: 21549 + components: + - type: Transform + pos: -96.5,151.5 + parent: 2 + - uid: 21550 + components: + - type: Transform + pos: -95.5,151.5 + parent: 2 + - uid: 21551 + components: + - type: Transform + pos: -94.5,151.5 + parent: 2 + - uid: 21552 + components: + - type: Transform + pos: -93.5,151.5 + parent: 2 + - uid: 21554 + components: + - type: Transform + pos: -91.5,151.5 + parent: 2 + - uid: 21555 + components: + - type: Transform + pos: -90.5,151.5 + parent: 2 + - uid: 21556 + components: + - type: Transform + pos: -89.5,151.5 + parent: 2 + - uid: 21557 + components: + - type: Transform + pos: -88.5,151.5 + parent: 2 + - uid: 21558 + components: + - type: Transform + pos: -87.5,151.5 + parent: 2 + - uid: 21560 + components: + - type: Transform + pos: -85.5,151.5 + parent: 2 + - uid: 21561 + components: + - type: Transform + pos: -84.5,151.5 + parent: 2 + - uid: 21562 + components: + - type: Transform + pos: -83.5,151.5 + parent: 2 + - uid: 21598 + components: + - type: Transform + pos: -82.5,151.5 + parent: 2 + - uid: 21602 + components: + - type: Transform + pos: -121.5,31.5 + parent: 2 + - uid: 21609 + components: + - type: Transform + pos: -98.5,150.5 + parent: 2 + - uid: 21611 + components: + - type: Transform + pos: -81.5,151.5 + parent: 2 + - uid: 21612 + components: + - type: Transform + pos: -80.5,151.5 + parent: 2 + - uid: 21613 + components: + - type: Transform + pos: -98.5,149.5 + parent: 2 + - uid: 21615 + components: + - type: Transform + pos: -99.5,148.5 + parent: 2 + - uid: 21616 + components: + - type: Transform + pos: -100.5,148.5 + parent: 2 + - uid: 21617 + components: + - type: Transform + pos: -101.5,148.5 + parent: 2 + - uid: 21618 + components: + - type: Transform + pos: -101.5,147.5 + parent: 2 + - uid: 21619 + components: + - type: Transform + pos: -101.5,146.5 + parent: 2 + - uid: 21623 + components: + - type: Transform + pos: -85.5,156.5 + parent: 2 + - uid: 21624 + components: + - type: Transform + pos: -85.5,155.5 + parent: 2 + - uid: 21625 + components: + - type: Transform + pos: -84.5,155.5 + parent: 2 + - uid: 21635 + components: + - type: Transform + pos: -86.5,156.5 + parent: 2 + - uid: 21925 + components: + - type: Transform + pos: -80.5,152.5 + parent: 2 + - uid: 21926 + components: + - type: Transform + pos: -80.5,153.5 + parent: 2 + - uid: 21927 + components: + - type: Transform + pos: -80.5,154.5 + parent: 2 + - uid: 21928 + components: + - type: Transform + pos: -80.5,155.5 + parent: 2 + - uid: 21929 + components: + - type: Transform + pos: -80.5,156.5 + parent: 2 + - uid: 21930 + components: + - type: Transform + pos: -80.5,157.5 + parent: 2 + - uid: 21931 + components: + - type: Transform + pos: -80.5,158.5 + parent: 2 + - uid: 21932 + components: + - type: Transform + pos: -80.5,159.5 + parent: 2 + - uid: 21933 + components: + - type: Transform + pos: -81.5,159.5 + parent: 2 + - uid: 21934 + components: + - type: Transform + pos: -82.5,159.5 + parent: 2 + - uid: 21935 + components: + - type: Transform + pos: -83.5,159.5 + parent: 2 + - uid: 21936 + components: + - type: Transform + pos: -84.5,159.5 + parent: 2 + - uid: 21937 + components: + - type: Transform + pos: -85.5,159.5 + parent: 2 + - uid: 21938 + components: + - type: Transform + pos: -86.5,159.5 + parent: 2 + - uid: 21939 + components: + - type: Transform + pos: -87.5,159.5 + parent: 2 + - uid: 21940 + components: + - type: Transform + pos: -87.5,158.5 + parent: 2 + - uid: 21941 + components: + - type: Transform + pos: -87.5,157.5 + parent: 2 + - uid: 21944 + components: + - type: Transform + pos: -88.5,159.5 + parent: 2 + - uid: 21945 + components: + - type: Transform + pos: -89.5,159.5 + parent: 2 + - uid: 21946 + components: + - type: Transform + pos: -90.5,159.5 + parent: 2 + - uid: 21947 + components: + - type: Transform + pos: -91.5,159.5 + parent: 2 + - uid: 21948 + components: + - type: Transform + pos: -91.5,160.5 + parent: 2 + - uid: 21949 + components: + - type: Transform + pos: -91.5,161.5 + parent: 2 + - uid: 21950 + components: + - type: Transform + pos: -91.5,162.5 + parent: 2 + - uid: 21951 + components: + - type: Transform + pos: -91.5,163.5 + parent: 2 + - uid: 21952 + components: + - type: Transform + pos: -91.5,164.5 + parent: 2 + - uid: 21953 + components: + - type: Transform + pos: -91.5,165.5 + parent: 2 + - uid: 21954 + components: + - type: Transform + pos: -91.5,166.5 + parent: 2 + - uid: 21955 + components: + - type: Transform + pos: -97.5,152.5 + parent: 2 + - uid: 21957 + components: + - type: Transform + pos: -97.5,154.5 + parent: 2 + - uid: 21958 + components: + - type: Transform + pos: -97.5,155.5 + parent: 2 + - uid: 21959 + components: + - type: Transform + pos: -97.5,156.5 + parent: 2 + - uid: 21960 + components: + - type: Transform + pos: -97.5,157.5 + parent: 2 + - uid: 21961 + components: + - type: Transform + pos: -97.5,158.5 + parent: 2 + - uid: 21962 + components: + - type: Transform + pos: -97.5,159.5 + parent: 2 + - uid: 21963 + components: + - type: Transform + pos: -97.5,160.5 + parent: 2 + - uid: 21964 + components: + - type: Transform + pos: -96.5,160.5 + parent: 2 + - uid: 21965 + components: + - type: Transform + pos: -95.5,160.5 + parent: 2 + - uid: 21966 + components: + - type: Transform + pos: -97.5,161.5 + parent: 2 + - uid: 21967 + components: + - type: Transform + pos: -97.5,162.5 + parent: 2 + - uid: 21968 + components: + - type: Transform + pos: -97.5,163.5 + parent: 2 + - uid: 21969 + components: + - type: Transform + pos: -97.5,164.5 + parent: 2 + - uid: 21970 + components: + - type: Transform + pos: -97.5,165.5 + parent: 2 + - uid: 21971 + components: + - type: Transform + pos: -97.5,166.5 + parent: 2 + - uid: 21972 + components: + - type: Transform + pos: -97.5,167.5 + parent: 2 + - uid: 21973 + components: + - type: Transform + pos: -97.5,168.5 + parent: 2 + - uid: 21974 + components: + - type: Transform + pos: -89.5,173.5 + parent: 2 + - uid: 21975 + components: + - type: Transform + pos: -96.5,168.5 + parent: 2 + - uid: 21976 + components: + - type: Transform + pos: -95.5,168.5 + parent: 2 + - uid: 21977 + components: + - type: Transform + pos: -94.5,168.5 + parent: 2 + - uid: 21978 + components: + - type: Transform + pos: -93.5,168.5 + parent: 2 + - uid: 21979 + components: + - type: Transform + pos: -92.5,168.5 + parent: 2 + - uid: 21980 + components: + - type: Transform + pos: -91.5,168.5 + parent: 2 + - uid: 21981 + components: + - type: Transform + pos: -90.5,168.5 + parent: 2 + - uid: 21982 + components: + - type: Transform + pos: -89.5,168.5 + parent: 2 + - uid: 21983 + components: + - type: Transform + pos: -88.5,168.5 + parent: 2 + - uid: 21984 + components: + - type: Transform + pos: -87.5,168.5 + parent: 2 + - uid: 21985 + components: + - type: Transform + pos: -86.5,168.5 + parent: 2 + - uid: 21986 + components: + - type: Transform + pos: -86.5,169.5 + parent: 2 + - uid: 21987 + components: + - type: Transform + pos: -86.5,170.5 + parent: 2 + - uid: 21988 + components: + - type: Transform + pos: -86.5,171.5 + parent: 2 + - uid: 21989 + components: + - type: Transform + pos: -86.5,172.5 + parent: 2 + - uid: 21990 + components: + - type: Transform + pos: -87.5,172.5 + parent: 2 + - uid: 21991 + components: + - type: Transform + pos: -88.5,172.5 + parent: 2 + - uid: 21992 + components: + - type: Transform + pos: -89.5,172.5 + parent: 2 + - uid: 21993 + components: + - type: Transform + pos: -90.5,172.5 + parent: 2 + - uid: 21994 + components: + - type: Transform + pos: -91.5,172.5 + parent: 2 + - uid: 21995 + components: + - type: Transform + pos: -89.5,174.5 + parent: 2 + - uid: 21996 + components: + - type: Transform + pos: -89.5,175.5 + parent: 2 + - uid: 21997 + components: + - type: Transform + pos: -89.5,176.5 + parent: 2 + - uid: 21998 + components: + - type: Transform + pos: -85.5,171.5 + parent: 2 + - uid: 21999 + components: + - type: Transform + pos: -84.5,171.5 + parent: 2 + - uid: 22000 + components: + - type: Transform + pos: -83.5,171.5 + parent: 2 + - uid: 22001 + components: + - type: Transform + pos: -82.5,171.5 + parent: 2 + - uid: 22002 + components: + - type: Transform + pos: -81.5,171.5 + parent: 2 + - uid: 22003 + components: + - type: Transform + pos: -80.5,171.5 + parent: 2 + - uid: 22004 + components: + - type: Transform + pos: -79.5,171.5 + parent: 2 + - uid: 22005 + components: + - type: Transform + pos: -79.5,170.5 + parent: 2 + - uid: 22006 + components: + - type: Transform + pos: -79.5,173.5 + parent: 2 + - uid: 22007 + components: + - type: Transform + pos: -79.5,172.5 + parent: 2 + - uid: 22008 + components: + - type: Transform + pos: -77.5,171.5 + parent: 2 + - uid: 22009 + components: + - type: Transform + pos: -78.5,171.5 + parent: 2 + - uid: 22010 + components: + - type: Transform + pos: -79.5,174.5 + parent: 2 + - uid: 22011 + components: + - type: Transform + pos: -79.5,175.5 + parent: 2 + - uid: 22012 + components: + - type: Transform + pos: -79.5,176.5 + parent: 2 + - uid: 22013 + components: + - type: Transform + pos: -79.5,177.5 + parent: 2 + - uid: 22014 + components: + - type: Transform + pos: -80.5,177.5 + parent: 2 + - uid: 22015 + components: + - type: Transform + pos: -81.5,177.5 + parent: 2 + - uid: 22016 + components: + - type: Transform + pos: -82.5,177.5 + parent: 2 + - uid: 22017 + components: + - type: Transform + pos: -82.5,176.5 + parent: 2 + - uid: 22019 + components: + - type: Transform + pos: -76.5,171.5 + parent: 2 + - uid: 22020 + components: + - type: Transform + pos: -75.5,171.5 + parent: 2 + - uid: 22021 + components: + - type: Transform + pos: -74.5,171.5 + parent: 2 + - uid: 22022 + components: + - type: Transform + pos: -73.5,171.5 + parent: 2 + - uid: 22023 + components: + - type: Transform + pos: -72.5,171.5 + parent: 2 + - uid: 22024 + components: + - type: Transform + pos: -72.5,172.5 + parent: 2 + - uid: 22025 + components: + - type: Transform + pos: -72.5,173.5 + parent: 2 + - uid: 22026 + components: + - type: Transform + pos: -72.5,174.5 + parent: 2 + - uid: 22027 + components: + - type: Transform + pos: -73.5,174.5 + parent: 2 + - uid: 22028 + components: + - type: Transform + pos: -74.5,174.5 + parent: 2 + - uid: 22055 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 21114 + - uid: 22056 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 21114 + - uid: 22057 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 21114 + - uid: 22058 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 21114 + - uid: 22170 + components: + - type: Transform + pos: -79.5,158.5 + parent: 2 + - uid: 22171 + components: + - type: Transform + pos: -78.5,158.5 + parent: 2 + - uid: 22172 + components: + - type: Transform + pos: -77.5,158.5 + parent: 2 + - uid: 22173 + components: + - type: Transform + pos: -76.5,158.5 + parent: 2 + - uid: 22174 + components: + - type: Transform + pos: -75.5,158.5 + parent: 2 + - uid: 22175 + components: + - type: Transform + pos: -74.5,158.5 + parent: 2 + - uid: 22176 + components: + - type: Transform + pos: -73.5,158.5 + parent: 2 + - uid: 22181 + components: + - type: Transform + pos: -73.5,157.5 + parent: 2 + - uid: 22182 + components: + - type: Transform + pos: -73.5,156.5 + parent: 2 + - uid: 22183 + components: + - type: Transform + pos: -73.5,155.5 + parent: 2 + - uid: 22184 + components: + - type: Transform + pos: -73.5,154.5 + parent: 2 + - uid: 22185 + components: + - type: Transform + pos: -73.5,153.5 + parent: 2 + - uid: 22186 + components: + - type: Transform + pos: -73.5,152.5 + parent: 2 + - uid: 22187 + components: + - type: Transform + pos: -72.5,152.5 + parent: 2 + - uid: 22188 + components: + - type: Transform + pos: -71.5,152.5 + parent: 2 + - uid: 22189 + components: + - type: Transform + pos: -70.5,152.5 + parent: 2 + - uid: 22190 + components: + - type: Transform + pos: -69.5,152.5 + parent: 2 + - uid: 22191 + components: + - type: Transform + pos: -68.5,152.5 + parent: 2 + - uid: 22192 + components: + - type: Transform + pos: -67.5,152.5 + parent: 2 + - uid: 22193 + components: + - type: Transform + pos: -66.5,152.5 + parent: 2 + - uid: 22194 + components: + - type: Transform + pos: -65.5,152.5 + parent: 2 + - uid: 22195 + components: + - type: Transform + pos: -64.5,152.5 + parent: 2 + - uid: 22196 + components: + - type: Transform + pos: -63.5,152.5 + parent: 2 + - uid: 22197 + components: + - type: Transform + pos: -62.5,152.5 + parent: 2 + - uid: 22198 + components: + - type: Transform + pos: -62.5,153.5 + parent: 2 + - uid: 22199 + components: + - type: Transform + pos: -62.5,154.5 + parent: 2 + - uid: 22223 + components: + - type: Transform + pos: -121.5,57.5 + parent: 2 + - uid: 22230 + components: + - type: Transform + pos: -120.5,57.5 + parent: 2 + - uid: 22265 + components: + - type: Transform + pos: -92.5,34.5 + parent: 2 + - uid: 22384 + components: + - type: Transform + pos: -125.5,18.5 + parent: 2 + - uid: 22389 + components: + - type: Transform + pos: -128.5,18.5 + parent: 2 + - uid: 22692 + components: + - type: Transform + pos: -127.5,61.5 + parent: 2 + - uid: 22896 + components: + - type: Transform + pos: -4.5,166.5 + parent: 2 + - uid: 22911 + components: + - type: Transform + pos: -5.5,68.5 + parent: 2 + - uid: 23040 + components: + - type: Transform + pos: -110.5,32.5 + parent: 2 + - uid: 23135 + components: + - type: Transform + pos: 78.5,44.5 + parent: 2 + - uid: 23163 + components: + - type: Transform + pos: -123.5,107.5 + parent: 2 + - uid: 23174 + components: + - type: Transform + pos: -117.5,98.5 + parent: 2 + - uid: 23184 + components: + - type: Transform + pos: -118.5,98.5 + parent: 2 + - uid: 23185 + components: + - type: Transform + pos: -116.5,98.5 + parent: 2 + - uid: 23267 + components: + - type: Transform + pos: -59.5,80.5 + parent: 2 + - uid: 23354 + components: + - type: Transform + pos: -128.5,16.5 + parent: 2 + - uid: 23527 + components: + - type: Transform + pos: -8.5,166.5 + parent: 2 + - uid: 23787 + components: + - type: Transform + pos: -35.5,102.5 + parent: 2 + - uid: 24116 + components: + - type: Transform + pos: -130.5,38.5 + parent: 2 + - uid: 24216 + components: + - type: Transform + pos: -35.5,101.5 + parent: 2 + - uid: 24225 + components: + - type: Transform + pos: -35.5,100.5 + parent: 2 + - uid: 24268 + components: + - type: Transform + pos: -115.5,96.5 + parent: 2 + - uid: 24269 + components: + - type: Transform + pos: -114.5,97.5 + parent: 2 + - uid: 24270 + components: + - type: Transform + pos: -114.5,96.5 + parent: 2 + - uid: 24271 + components: + - type: Transform + pos: -114.5,98.5 + parent: 2 + - uid: 24272 + components: + - type: Transform + pos: -115.5,98.5 + parent: 2 + - uid: 24459 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 24755 + components: + - type: Transform + pos: -25.5,176.5 + parent: 2 + - uid: 24805 + components: + - type: Transform + pos: -24.5,176.5 + parent: 2 + - uid: 24815 + components: + - type: Transform + pos: -29.5,190.5 + parent: 2 + - uid: 24816 + components: + - type: Transform + pos: -29.5,189.5 + parent: 2 + - uid: 24818 + components: + - type: Transform + pos: -28.5,190.5 + parent: 2 + - uid: 24819 + components: + - type: Transform + pos: -27.5,190.5 + parent: 2 + - uid: 24820 + components: + - type: Transform + pos: -26.5,190.5 + parent: 2 + - uid: 24821 + components: + - type: Transform + pos: -25.5,190.5 + parent: 2 + - uid: 24822 + components: + - type: Transform + pos: -24.5,190.5 + parent: 2 + - uid: 24823 + components: + - type: Transform + pos: -23.5,190.5 + parent: 2 + - uid: 24824 + components: + - type: Transform + pos: -22.5,190.5 + parent: 2 + - uid: 24825 + components: + - type: Transform + pos: -21.5,190.5 + parent: 2 + - uid: 24826 + components: + - type: Transform + pos: -21.5,191.5 + parent: 2 + - uid: 24827 + components: + - type: Transform + pos: -21.5,192.5 + parent: 2 + - uid: 24828 + components: + - type: Transform + pos: -20.5,192.5 + parent: 2 + - uid: 24829 + components: + - type: Transform + pos: -19.5,192.5 + parent: 2 + - uid: 24830 + components: + - type: Transform + pos: -18.5,192.5 + parent: 2 + - uid: 24831 + components: + - type: Transform + pos: -17.5,192.5 + parent: 2 + - uid: 24832 + components: + - type: Transform + pos: -16.5,192.5 + parent: 2 + - uid: 24833 + components: + - type: Transform + pos: -15.5,192.5 + parent: 2 + - uid: 24834 + components: + - type: Transform + pos: -13.5,192.5 + parent: 2 + - uid: 24835 + components: + - type: Transform + pos: -14.5,192.5 + parent: 2 + - uid: 24836 + components: + - type: Transform + pos: -12.5,192.5 + parent: 2 + - uid: 24837 + components: + - type: Transform + pos: -11.5,192.5 + parent: 2 + - uid: 24838 + components: + - type: Transform + pos: -11.5,193.5 + parent: 2 + - uid: 24839 + components: + - type: Transform + pos: -10.5,193.5 + parent: 2 + - uid: 24840 + components: + - type: Transform + pos: -9.5,193.5 + parent: 2 + - uid: 24841 + components: + - type: Transform + pos: -8.5,193.5 + parent: 2 + - uid: 24842 + components: + - type: Transform + pos: -8.5,194.5 + parent: 2 + - uid: 24843 + components: + - type: Transform + pos: -8.5,195.5 + parent: 2 + - uid: 24844 + components: + - type: Transform + pos: -8.5,196.5 + parent: 2 + - uid: 24845 + components: + - type: Transform + pos: -9.5,196.5 + parent: 2 + - uid: 24846 + components: + - type: Transform + pos: -10.5,196.5 + parent: 2 + - uid: 24847 + components: + - type: Transform + pos: -10.5,197.5 + parent: 2 + - uid: 24848 + components: + - type: Transform + pos: -10.5,198.5 + parent: 2 + - uid: 24850 + components: + - type: Transform + pos: -29.5,191.5 + parent: 2 + - uid: 24851 + components: + - type: Transform + pos: -29.5,192.5 + parent: 2 + - uid: 24852 + components: + - type: Transform + pos: -29.5,193.5 + parent: 2 + - uid: 24853 + components: + - type: Transform + pos: -29.5,194.5 + parent: 2 + - uid: 24854 + components: + - type: Transform + pos: -29.5,195.5 + parent: 2 + - uid: 24855 + components: + - type: Transform + pos: -29.5,196.5 + parent: 2 + - uid: 24856 + components: + - type: Transform + pos: -29.5,197.5 + parent: 2 + - uid: 24857 + components: + - type: Transform + pos: -29.5,198.5 + parent: 2 + - uid: 24858 + components: + - type: Transform + pos: -29.5,199.5 + parent: 2 + - uid: 24859 + components: + - type: Transform + pos: -29.5,200.5 + parent: 2 + - uid: 24860 + components: + - type: Transform + pos: -28.5,200.5 + parent: 2 + - uid: 24861 + components: + - type: Transform + pos: -27.5,200.5 + parent: 2 + - uid: 24862 + components: + - type: Transform + pos: -29.5,201.5 + parent: 2 + - uid: 24863 + components: + - type: Transform + pos: -29.5,202.5 + parent: 2 + - uid: 24864 + components: + - type: Transform + pos: -29.5,203.5 + parent: 2 + - uid: 24865 + components: + - type: Transform + pos: -29.5,204.5 + parent: 2 + - uid: 24866 + components: + - type: Transform + pos: -28.5,204.5 + parent: 2 + - uid: 24867 + components: + - type: Transform + pos: -27.5,204.5 + parent: 2 + - uid: 24868 + components: + - type: Transform + pos: -27.5,205.5 + parent: 2 + - uid: 24869 + components: + - type: Transform + pos: -26.5,205.5 + parent: 2 + - uid: 24870 + components: + - type: Transform + pos: -25.5,205.5 + parent: 2 + - uid: 24871 + components: + - type: Transform + pos: -24.5,205.5 + parent: 2 + - uid: 24872 + components: + - type: Transform + pos: -24.5,206.5 + parent: 2 + - uid: 24873 + components: + - type: Transform + pos: -24.5,207.5 + parent: 2 + - uid: 24874 + components: + - type: Transform + pos: -24.5,208.5 + parent: 2 + - uid: 24875 + components: + - type: Transform + pos: -24.5,209.5 + parent: 2 + - uid: 24876 + components: + - type: Transform + pos: -25.5,209.5 + parent: 2 + - uid: 24877 + components: + - type: Transform + pos: -25.5,210.5 + parent: 2 + - uid: 24878 + components: + - type: Transform + pos: -23.5,209.5 + parent: 2 + - uid: 24879 + components: + - type: Transform + pos: -22.5,209.5 + parent: 2 + - uid: 24880 + components: + - type: Transform + pos: -21.5,209.5 + parent: 2 + - uid: 24881 + components: + - type: Transform + pos: -20.5,209.5 + parent: 2 + - uid: 24882 + components: + - type: Transform + pos: -19.5,209.5 + parent: 2 + - uid: 24883 + components: + - type: Transform + pos: -18.5,209.5 + parent: 2 + - uid: 24884 + components: + - type: Transform + pos: -17.5,209.5 + parent: 2 + - uid: 24885 + components: + - type: Transform + pos: -17.5,208.5 + parent: 2 + - uid: 24886 + components: + - type: Transform + pos: -17.5,207.5 + parent: 2 + - uid: 24887 + components: + - type: Transform + pos: -17.5,206.5 + parent: 2 + - uid: 24888 + components: + - type: Transform + pos: -18.5,206.5 + parent: 2 + - uid: 24889 + components: + - type: Transform + pos: -18.5,210.5 + parent: 2 + - uid: 24890 + components: + - type: Transform + pos: -17.5,210.5 + parent: 2 + - uid: 24891 + components: + - type: Transform + pos: -17.5,211.5 + parent: 2 + - uid: 24892 + components: + - type: Transform + pos: -16.5,211.5 + parent: 2 + - uid: 24893 + components: + - type: Transform + pos: -15.5,211.5 + parent: 2 + - uid: 24894 + components: + - type: Transform + pos: -15.5,212.5 + parent: 2 + - uid: 24895 + components: + - type: Transform + pos: -14.5,212.5 + parent: 2 + - uid: 24896 + components: + - type: Transform + pos: -13.5,212.5 + parent: 2 + - uid: 24897 + components: + - type: Transform + pos: -12.5,212.5 + parent: 2 + - uid: 24898 + components: + - type: Transform + pos: -12.5,213.5 + parent: 2 + - uid: 24899 + components: + - type: Transform + pos: -11.5,213.5 + parent: 2 + - uid: 24900 + components: + - type: Transform + pos: -10.5,213.5 + parent: 2 + - uid: 24901 + components: + - type: Transform + pos: -10.5,212.5 + parent: 2 + - uid: 24902 + components: + - type: Transform + pos: -10.5,211.5 + parent: 2 + - uid: 24903 + components: + - type: Transform + pos: -9.5,213.5 + parent: 2 + - uid: 24904 + components: + - type: Transform + pos: -8.5,213.5 + parent: 2 + - uid: 24905 + components: + - type: Transform + pos: -7.5,213.5 + parent: 2 + - uid: 24906 + components: + - type: Transform + pos: -6.5,213.5 + parent: 2 + - uid: 24907 + components: + - type: Transform + pos: -5.5,213.5 + parent: 2 + - uid: 24908 + components: + - type: Transform + pos: -4.5,213.5 + parent: 2 + - uid: 24909 + components: + - type: Transform + pos: -3.5,213.5 + parent: 2 + - uid: 24910 + components: + - type: Transform + pos: -3.5,212.5 + parent: 2 + - uid: 24911 + components: + - type: Transform + pos: -3.5,211.5 + parent: 2 + - uid: 24912 + components: + - type: Transform + pos: -3.5,210.5 + parent: 2 + - uid: 24913 + components: + - type: Transform + pos: -2.5,210.5 + parent: 2 + - uid: 24914 + components: + - type: Transform + pos: -1.5,210.5 + parent: 2 + - uid: 24915 + components: + - type: Transform + pos: -0.5,210.5 + parent: 2 + - uid: 24916 + components: + - type: Transform + pos: 0.5,210.5 + parent: 2 + - uid: 24917 + components: + - type: Transform + pos: 1.5,210.5 + parent: 2 + - uid: 24918 + components: + - type: Transform + pos: 2.5,210.5 + parent: 2 + - uid: 24919 + components: + - type: Transform + pos: 3.5,210.5 + parent: 2 + - uid: 24920 + components: + - type: Transform + pos: 4.5,210.5 + parent: 2 + - uid: 24921 + components: + - type: Transform + pos: 5.5,210.5 + parent: 2 + - uid: 24922 + components: + - type: Transform + pos: 5.5,209.5 + parent: 2 + - uid: 24923 + components: + - type: Transform + pos: 6.5,209.5 + parent: 2 + - uid: 24924 + components: + - type: Transform + pos: 6.5,208.5 + parent: 2 + - uid: 24925 + components: + - type: Transform + pos: 6.5,207.5 + parent: 2 + - uid: 24926 + components: + - type: Transform + pos: 6.5,206.5 + parent: 2 + - uid: 24927 + components: + - type: Transform + pos: 1.5,209.5 + parent: 2 + - uid: 24928 + components: + - type: Transform + pos: 6.5,205.5 + parent: 2 + - uid: 24929 + components: + - type: Transform + pos: 7.5,205.5 + parent: 2 + - uid: 24930 + components: + - type: Transform + pos: 7.5,204.5 + parent: 2 + - uid: 24931 + components: + - type: Transform + pos: 8.5,204.5 + parent: 2 + - uid: 24932 + components: + - type: Transform + pos: 8.5,203.5 + parent: 2 + - uid: 24933 + components: + - type: Transform + pos: 9.5,203.5 + parent: 2 + - uid: 24934 + components: + - type: Transform + pos: 10.5,203.5 + parent: 2 + - uid: 24935 + components: + - type: Transform + pos: 11.5,203.5 + parent: 2 + - uid: 24936 + components: + - type: Transform + pos: 12.5,203.5 + parent: 2 + - uid: 24937 + components: + - type: Transform + pos: 13.5,203.5 + parent: 2 + - uid: 24938 + components: + - type: Transform + pos: 14.5,203.5 + parent: 2 + - uid: 24939 + components: + - type: Transform + pos: 15.5,203.5 + parent: 2 + - uid: 24940 + components: + - type: Transform + pos: 16.5,203.5 + parent: 2 + - uid: 24941 + components: + - type: Transform + pos: 1.5,208.5 + parent: 2 + - uid: 24942 + components: + - type: Transform + pos: 1.5,207.5 + parent: 2 + - uid: 24943 + components: + - type: Transform + pos: 1.5,206.5 + parent: 2 + - uid: 24944 + components: + - type: Transform + pos: 16.5,202.5 + parent: 2 + - uid: 24945 + components: + - type: Transform + pos: 17.5,202.5 + parent: 2 + - uid: 24946 + components: + - type: Transform + pos: 18.5,202.5 + parent: 2 + - uid: 24947 + components: + - type: Transform + pos: 19.5,202.5 + parent: 2 + - uid: 24948 + components: + - type: Transform + pos: 19.5,201.5 + parent: 2 + - uid: 24949 + components: + - type: Transform + pos: 19.5,200.5 + parent: 2 + - uid: 24951 + components: + - type: Transform + pos: 21.5,200.5 + parent: 2 + - uid: 24952 + components: + - type: Transform + pos: 22.5,200.5 + parent: 2 + - uid: 24953 + components: + - type: Transform + pos: 22.5,199.5 + parent: 2 + - uid: 24954 + components: + - type: Transform + pos: 22.5,198.5 + parent: 2 + - uid: 24955 + components: + - type: Transform + pos: 21.5,198.5 + parent: 2 + - uid: 24957 + components: + - type: Transform + pos: 23.5,198.5 + parent: 2 + - uid: 24958 + components: + - type: Transform + pos: 24.5,198.5 + parent: 2 + - uid: 24959 + components: + - type: Transform + pos: 24.5,197.5 + parent: 2 + - uid: 24960 + components: + - type: Transform + pos: 24.5,196.5 + parent: 2 + - uid: 24961 + components: + - type: Transform + pos: 24.5,195.5 + parent: 2 + - uid: 24962 + components: + - type: Transform + pos: 24.5,194.5 + parent: 2 + - uid: 24963 + components: + - type: Transform + pos: 24.5,193.5 + parent: 2 + - uid: 24964 + components: + - type: Transform + pos: 24.5,192.5 + parent: 2 + - uid: 24965 + components: + - type: Transform + pos: 24.5,191.5 + parent: 2 + - uid: 24966 + components: + - type: Transform + pos: 24.5,190.5 + parent: 2 + - uid: 24967 + components: + - type: Transform + pos: 24.5,189.5 + parent: 2 + - uid: 24968 + components: + - type: Transform + pos: 24.5,188.5 + parent: 2 + - uid: 24969 + components: + - type: Transform + pos: 24.5,187.5 + parent: 2 + - uid: 24970 + components: + - type: Transform + pos: 24.5,186.5 + parent: 2 + - uid: 24972 + components: + - type: Transform + pos: 22.5,192.5 + parent: 2 + - uid: 24986 + components: + - type: Transform + pos: 23.5,192.5 + parent: 2 + - uid: 24990 + components: + - type: Transform + pos: 11.5,181.5 + parent: 2 + - uid: 24992 + components: + - type: Transform + pos: 23.5,186.5 + parent: 2 + - uid: 24993 + components: + - type: Transform + pos: 23.5,185.5 + parent: 2 + - uid: 24994 + components: + - type: Transform + pos: 22.5,185.5 + parent: 2 + - uid: 24995 + components: + - type: Transform + pos: 22.5,184.5 + parent: 2 + - uid: 24996 + components: + - type: Transform + pos: 22.5,183.5 + parent: 2 + - uid: 24997 + components: + - type: Transform + pos: 21.5,183.5 + parent: 2 + - uid: 24998 + components: + - type: Transform + pos: 20.5,183.5 + parent: 2 + - uid: 24999 + components: + - type: Transform + pos: 20.5,182.5 + parent: 2 + - uid: 25000 + components: + - type: Transform + pos: 19.5,182.5 + parent: 2 + - uid: 25001 + components: + - type: Transform + pos: 18.5,182.5 + parent: 2 + - uid: 25002 + components: + - type: Transform + pos: 18.5,181.5 + parent: 2 + - uid: 25003 + components: + - type: Transform + pos: 17.5,181.5 + parent: 2 + - uid: 25004 + components: + - type: Transform + pos: 17.5,180.5 + parent: 2 + - uid: 25005 + components: + - type: Transform + pos: 16.5,180.5 + parent: 2 + - uid: 25006 + components: + - type: Transform + pos: 15.5,180.5 + parent: 2 + - uid: 25007 + components: + - type: Transform + pos: 14.5,180.5 + parent: 2 + - uid: 25008 + components: + - type: Transform + pos: 13.5,180.5 + parent: 2 + - uid: 25009 + components: + - type: Transform + pos: 12.5,180.5 + parent: 2 + - uid: 25010 + components: + - type: Transform + pos: 11.5,180.5 + parent: 2 + - uid: 25011 + components: + - type: Transform + pos: 10.5,180.5 + parent: 2 + - uid: 25012 + components: + - type: Transform + pos: 9.5,180.5 + parent: 2 + - uid: 25013 + components: + - type: Transform + pos: 8.5,180.5 + parent: 2 + - uid: 25014 + components: + - type: Transform + pos: 11.5,182.5 + parent: 2 + - uid: 25015 + components: + - type: Transform + pos: 8.5,179.5 + parent: 2 + - uid: 25016 + components: + - type: Transform + pos: -23.5,178.5 + parent: 2 + - uid: 25017 + components: + - type: Transform + pos: -22.5,178.5 + parent: 2 + - uid: 25018 + components: + - type: Transform + pos: -21.5,178.5 + parent: 2 + - uid: 25019 + components: + - type: Transform + pos: -20.5,178.5 + parent: 2 + - uid: 25020 + components: + - type: Transform + pos: -19.5,178.5 + parent: 2 + - uid: 25021 + components: + - type: Transform + pos: -18.5,178.5 + parent: 2 + - uid: 25022 + components: + - type: Transform + pos: -18.5,179.5 + parent: 2 + - uid: 25023 + components: + - type: Transform + pos: -18.5,180.5 + parent: 2 + - uid: 25025 + components: + - type: Transform + pos: -4.5,172.5 + parent: 2 + - uid: 25026 + components: + - type: Transform + pos: -4.5,173.5 + parent: 2 + - uid: 25027 + components: + - type: Transform + pos: -4.5,174.5 + parent: 2 + - uid: 25188 + components: + - type: Transform + pos: -127.5,60.5 + parent: 2 + - uid: 25190 + components: + - type: Transform + pos: -122.5,57.5 + parent: 2 + - uid: 25235 + components: + - type: Transform + pos: -118.5,101.5 + parent: 2 + - uid: 25367 + components: + - type: Transform + pos: -92.5,35.5 + parent: 2 + - uid: 25395 + components: + - type: Transform + pos: -4.5,171.5 + parent: 2 + - uid: 25397 + components: + - type: Transform + pos: -5.5,172.5 + parent: 2 + - uid: 25483 + components: + - type: Transform + pos: 9.5,171.5 + parent: 2 + - uid: 25484 + components: + - type: Transform + pos: 12.5,171.5 + parent: 2 + - uid: 25488 + components: + - type: Transform + pos: 14.5,171.5 + parent: 2 + - uid: 25489 + components: + - type: Transform + pos: 15.5,171.5 + parent: 2 + - uid: 25509 + components: + - type: Transform + pos: 17.5,179.5 + parent: 2 + - uid: 25510 + components: + - type: Transform + pos: 17.5,178.5 + parent: 2 + - uid: 25511 + components: + - type: Transform + pos: 17.5,177.5 + parent: 2 + - uid: 25512 + components: + - type: Transform + pos: 17.5,176.5 + parent: 2 + - uid: 25513 + components: + - type: Transform + pos: 17.5,175.5 + parent: 2 + - uid: 25514 + components: + - type: Transform + pos: 17.5,174.5 + parent: 2 + - uid: 25515 + components: + - type: Transform + pos: 17.5,173.5 + parent: 2 + - uid: 25516 + components: + - type: Transform + pos: 17.5,172.5 + parent: 2 + - uid: 25517 + components: + - type: Transform + pos: 17.5,171.5 + parent: 2 + - uid: 25518 + components: + - type: Transform + pos: 16.5,171.5 + parent: 2 + - uid: 25523 + components: + - type: Transform + pos: 10.5,171.5 + parent: 2 + - uid: 25524 + components: + - type: Transform + pos: 13.5,171.5 + parent: 2 + - uid: 25525 + components: + - type: Transform + pos: 12.5,174.5 + parent: 2 + - uid: 25526 + components: + - type: Transform + pos: 13.5,174.5 + parent: 2 + - uid: 25527 + components: + - type: Transform + pos: 14.5,174.5 + parent: 2 + - uid: 25528 + components: + - type: Transform + pos: 15.5,174.5 + parent: 2 + - uid: 25529 + components: + - type: Transform + pos: 15.5,175.5 + parent: 2 + - uid: 25530 + components: + - type: Transform + pos: 15.5,176.5 + parent: 2 + - uid: 25531 + components: + - type: Transform + pos: 15.5,177.5 + parent: 2 + - uid: 25532 + components: + - type: Transform + pos: 15.5,178.5 + parent: 2 + - uid: 25559 + components: + - type: Transform + pos: 11.5,171.5 + parent: 2 + - uid: 25560 + components: + - type: Transform + pos: 8.5,171.5 + parent: 2 + - uid: 25564 + components: + - type: Transform + pos: 8.5,173.5 + parent: 2 + - uid: 25607 + components: + - type: Transform + pos: 7.5,179.5 + parent: 2 + - uid: 25608 + components: + - type: Transform + pos: 6.5,179.5 + parent: 2 + - uid: 25609 + components: + - type: Transform + pos: 11.5,183.5 + parent: 2 + - uid: 25610 + components: + - type: Transform + pos: 11.5,184.5 + parent: 2 + - uid: 25611 + components: + - type: Transform + pos: 11.5,185.5 + parent: 2 + - uid: 25612 + components: + - type: Transform + pos: 10.5,185.5 + parent: 2 + - uid: 25613 + components: + - type: Transform + pos: 9.5,185.5 + parent: 2 + - uid: 25614 + components: + - type: Transform + pos: 8.5,185.5 + parent: 2 + - uid: 25615 + components: + - type: Transform + pos: 7.5,185.5 + parent: 2 + - uid: 25616 + components: + - type: Transform + pos: 6.5,185.5 + parent: 2 + - uid: 25626 + components: + - type: Transform + pos: 5.5,185.5 + parent: 2 + - uid: 25627 + components: + - type: Transform + pos: 5.5,186.5 + parent: 2 + - uid: 25628 + components: + - type: Transform + pos: 5.5,187.5 + parent: 2 + - uid: 25629 + components: + - type: Transform + pos: 5.5,188.5 + parent: 2 + - uid: 25630 + components: + - type: Transform + pos: 5.5,189.5 + parent: 2 + - uid: 25631 + components: + - type: Transform + pos: 5.5,190.5 + parent: 2 + - uid: 25632 + components: + - type: Transform + pos: 5.5,191.5 + parent: 2 + - uid: 25633 + components: + - type: Transform + pos: 5.5,192.5 + parent: 2 + - uid: 25634 + components: + - type: Transform + pos: 5.5,193.5 + parent: 2 + - uid: 25635 + components: + - type: Transform + pos: 6.5,193.5 + parent: 2 + - uid: 25644 + components: + - type: Transform + pos: 6.5,178.5 + parent: 2 + - uid: 25645 + components: + - type: Transform + pos: 6.5,177.5 + parent: 2 + - uid: 25646 + components: + - type: Transform + pos: 6.5,176.5 + parent: 2 + - uid: 25647 + components: + - type: Transform + pos: 6.5,175.5 + parent: 2 + - uid: 25648 + components: + - type: Transform + pos: 6.5,174.5 + parent: 2 + - uid: 25649 + components: + - type: Transform + pos: 5.5,174.5 + parent: 2 + - uid: 25650 + components: + - type: Transform + pos: 4.5,174.5 + parent: 2 + - uid: 25651 + components: + - type: Transform + pos: 3.5,174.5 + parent: 2 + - uid: 25652 + components: + - type: Transform + pos: 2.5,174.5 + parent: 2 + - uid: 25653 + components: + - type: Transform + pos: 1.5,174.5 + parent: 2 + - uid: 25654 + components: + - type: Transform + pos: 1.5,173.5 + parent: 2 + - uid: 25655 + components: + - type: Transform + pos: 1.5,172.5 + parent: 2 + - uid: 25656 + components: + - type: Transform + pos: 1.5,171.5 + parent: 2 + - uid: 25657 + components: + - type: Transform + pos: 1.5,170.5 + parent: 2 + - uid: 25658 + components: + - type: Transform + pos: 1.5,169.5 + parent: 2 + - uid: 25659 + components: + - type: Transform + pos: 2.5,169.5 + parent: 2 + - uid: 25660 + components: + - type: Transform + pos: 2.5,168.5 + parent: 2 + - uid: 25661 + components: + - type: Transform + pos: 2.5,167.5 + parent: 2 + - uid: 25662 + components: + - type: Transform + pos: 2.5,166.5 + parent: 2 + - uid: 25663 + components: + - type: Transform + pos: 1.5,166.5 + parent: 2 + - uid: 25664 + components: + - type: Transform + pos: 0.5,166.5 + parent: 2 + - uid: 25665 + components: + - type: Transform + pos: -0.5,166.5 + parent: 2 + - uid: 25666 + components: + - type: Transform + pos: -1.5,166.5 + parent: 2 + - uid: 25667 + components: + - type: Transform + pos: -2.5,166.5 + parent: 2 + - uid: 25668 + components: + - type: Transform + pos: -3.5,166.5 + parent: 2 + - uid: 25669 + components: + - type: Transform + pos: -3.5,167.5 + parent: 2 + - uid: 25670 + components: + - type: Transform + pos: -3.5,168.5 + parent: 2 + - uid: 25671 + components: + - type: Transform + pos: -3.5,169.5 + parent: 2 + - uid: 25672 + components: + - type: Transform + pos: -3.5,170.5 + parent: 2 + - uid: 25673 + components: + - type: Transform + pos: -3.5,171.5 + parent: 2 + - uid: 25719 + components: + - type: Transform + pos: -121.5,108.5 + parent: 2 + - uid: 25720 + components: + - type: Transform + pos: -122.5,108.5 + parent: 2 + - uid: 25725 + components: + - type: Transform + pos: -122.5,109.5 + parent: 2 + - uid: 25758 + components: + - type: Transform + pos: -24.5,175.5 + parent: 2 + - uid: 25759 + components: + - type: Transform + pos: -24.5,174.5 + parent: 2 + - uid: 25760 + components: + - type: Transform + pos: -24.5,173.5 + parent: 2 + - uid: 25761 + components: + - type: Transform + pos: -23.5,173.5 + parent: 2 + - uid: 25762 + components: + - type: Transform + pos: -22.5,173.5 + parent: 2 + - uid: 25763 + components: + - type: Transform + pos: -21.5,173.5 + parent: 2 + - uid: 25764 + components: + - type: Transform + pos: -20.5,173.5 + parent: 2 + - uid: 25765 + components: + - type: Transform + pos: -19.5,173.5 + parent: 2 + - uid: 25766 + components: + - type: Transform + pos: -18.5,173.5 + parent: 2 + - uid: 25767 + components: + - type: Transform + pos: -17.5,173.5 + parent: 2 + - uid: 25768 + components: + - type: Transform + pos: -16.5,173.5 + parent: 2 + - uid: 25770 + components: + - type: Transform + pos: -16.5,172.5 + parent: 2 + - uid: 25771 + components: + - type: Transform + pos: -16.5,171.5 + parent: 2 + - uid: 26420 + components: + - type: Transform + pos: -29.5,99.5 + parent: 2 + - uid: 26427 + components: + - type: Transform + pos: -127.5,56.5 + parent: 2 + - uid: 26428 + components: + - type: Transform + pos: -128.5,56.5 + parent: 2 + - uid: 26486 + components: + - type: Transform + pos: -83.5,83.5 + parent: 2 + - uid: 26563 + components: + - type: Transform + pos: -130.5,90.5 + parent: 2 + - uid: 26564 + components: + - type: Transform + pos: -135.5,90.5 + parent: 2 + - uid: 26792 + components: + - type: Transform + pos: -129.5,101.5 + parent: 2 + - uid: 26793 + components: + - type: Transform + pos: -134.5,90.5 + parent: 2 + - uid: 26801 + components: + - type: Transform + pos: -129.5,90.5 + parent: 2 + - uid: 26802 + components: + - type: Transform + pos: -133.5,90.5 + parent: 2 + - uid: 26803 + components: + - type: Transform + pos: -131.5,90.5 + parent: 2 + - uid: 26804 + components: + - type: Transform + pos: -132.5,90.5 + parent: 2 + - uid: 26995 + components: + - type: Transform + pos: -33.5,106.5 + parent: 2 + - uid: 27182 + components: + - type: Transform + pos: -127.5,59.5 + parent: 2 + - uid: 27393 + components: + - type: Transform + pos: -47.5,98.5 + parent: 2 + - uid: 27394 + components: + - type: Transform + pos: -47.5,97.5 + parent: 2 + - uid: 27395 + components: + - type: Transform + pos: -47.5,96.5 + parent: 2 + - uid: 27396 + components: + - type: Transform + pos: -47.5,95.5 + parent: 2 + - uid: 27397 + components: + - type: Transform + pos: -48.5,95.5 + parent: 2 + - uid: 27398 + components: + - type: Transform + pos: -49.5,95.5 + parent: 2 + - uid: 27621 + components: + - type: Transform + pos: -5.5,166.5 + parent: 2 + - uid: 27761 + components: + - type: Transform + pos: -100.5,145.5 + parent: 2 + - uid: 27778 + components: + - type: Transform + pos: -101.5,145.5 + parent: 2 + - uid: 27791 + components: + - type: Transform + pos: -100.5,144.5 + parent: 2 + - uid: 27796 + components: + - type: Transform + pos: -84.5,95.5 + parent: 2 + - uid: 27955 + components: + - type: Transform + pos: -114.5,31.5 + parent: 2 + - uid: 28314 + components: + - type: Transform + pos: -119.5,57.5 + parent: 2 + - uid: 28427 + components: + - type: Transform + pos: -128.5,28.5 + parent: 2 + - uid: 28511 + components: + - type: Transform + pos: -122.5,53.5 + parent: 2 + - uid: 28707 + components: + - type: Transform + pos: -121.5,53.5 + parent: 2 + - uid: 28708 + components: + - type: Transform + pos: -120.5,53.5 + parent: 2 + - uid: 28709 + components: + - type: Transform + pos: -119.5,53.5 + parent: 2 + - uid: 28710 + components: + - type: Transform + pos: -118.5,53.5 + parent: 2 + - uid: 28711 + components: + - type: Transform + pos: -117.5,53.5 + parent: 2 + - uid: 28712 + components: + - type: Transform + pos: -116.5,53.5 + parent: 2 + - uid: 28713 + components: + - type: Transform + pos: -115.5,53.5 + parent: 2 + - uid: 28714 + components: + - type: Transform + pos: -115.5,52.5 + parent: 2 + - uid: 28715 + components: + - type: Transform + pos: -115.5,51.5 + parent: 2 + - uid: 28716 + components: + - type: Transform + pos: -115.5,50.5 + parent: 2 + - uid: 28817 + components: + - type: Transform + pos: -120.5,46.5 + parent: 2 + - uid: 28833 + components: + - type: Transform + pos: -120.5,45.5 + parent: 2 + - uid: 28920 + components: + - type: Transform + pos: -106.5,31.5 + parent: 2 + - uid: 28980 + components: + - type: Transform + pos: -127.5,52.5 + parent: 2 + - uid: 28981 + components: + - type: Transform + pos: -127.5,51.5 + parent: 2 + - uid: 28986 + components: + - type: Transform + pos: -126.5,52.5 + parent: 2 + - uid: 28990 + components: + - type: Transform + pos: -127.5,50.5 + parent: 2 + - uid: 28991 + components: + - type: Transform + pos: -126.5,50.5 + parent: 2 + - uid: 28992 + components: + - type: Transform + pos: -125.5,50.5 + parent: 2 + - uid: 28995 + components: + - type: Transform + pos: -125.5,49.5 + parent: 2 + - uid: 28996 + components: + - type: Transform + pos: -125.5,48.5 + parent: 2 + - uid: 28997 + components: + - type: Transform + pos: -125.5,47.5 + parent: 2 + - uid: 28998 + components: + - type: Transform + pos: -124.5,47.5 + parent: 2 + - uid: 28999 + components: + - type: Transform + pos: -123.5,47.5 + parent: 2 + - uid: 29000 + components: + - type: Transform + pos: -122.5,47.5 + parent: 2 + - uid: 29001 + components: + - type: Transform + pos: -121.5,47.5 + parent: 2 + - uid: 29002 + components: + - type: Transform + pos: -120.5,47.5 + parent: 2 + - uid: 29003 + components: + - type: Transform + pos: -119.5,47.5 + parent: 2 + - uid: 29004 + components: + - type: Transform + pos: -119.5,48.5 + parent: 2 + - uid: 29005 + components: + - type: Transform + pos: -119.5,49.5 + parent: 2 + - uid: 29006 + components: + - type: Transform + pos: -118.5,49.5 + parent: 2 + - uid: 29007 + components: + - type: Transform + pos: -118.5,50.5 + parent: 2 + - uid: 29009 + components: + - type: Transform + pos: -116.5,50.5 + parent: 2 + - uid: 29189 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 29197 + components: + - type: Transform + pos: -127.5,18.5 + parent: 2 + - uid: 29199 + components: + - type: Transform + pos: -126.5,18.5 + parent: 2 + - uid: 29482 + components: + - type: Transform + pos: -111.5,32.5 + parent: 2 + - uid: 29486 + components: + - type: Transform + pos: -109.5,32.5 + parent: 2 + - uid: 29487 + components: + - type: Transform + pos: -110.5,33.5 + parent: 2 + - uid: 29488 + components: + - type: Transform + pos: -110.5,34.5 + parent: 2 + - uid: 29489 + components: + - type: Transform + pos: -110.5,35.5 + parent: 2 + - uid: 29490 + components: + - type: Transform + pos: -110.5,36.5 + parent: 2 + - uid: 29491 + components: + - type: Transform + pos: -110.5,37.5 + parent: 2 + - uid: 29492 + components: + - type: Transform + pos: -111.5,37.5 + parent: 2 + - uid: 29493 + components: + - type: Transform + pos: -109.5,37.5 + parent: 2 + - uid: 29494 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 29495 + components: + - type: Transform + pos: -106.5,34.5 + parent: 2 + - uid: 29496 + components: + - type: Transform + pos: -106.5,33.5 + parent: 2 + - uid: 29497 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 29498 + components: + - type: Transform + pos: -114.5,34.5 + parent: 2 + - uid: 29499 + components: + - type: Transform + pos: -114.5,33.5 + parent: 2 + - uid: 29500 + components: + - type: Transform + pos: -113.5,34.5 + parent: 2 + - uid: 29501 + components: + - type: Transform + pos: -112.5,34.5 + parent: 2 + - uid: 29502 + components: + - type: Transform + pos: -111.5,34.5 + parent: 2 + - uid: 29504 + components: + - type: Transform + pos: -109.5,34.5 + parent: 2 + - uid: 29505 + components: + - type: Transform + pos: -108.5,34.5 + parent: 2 + - uid: 29506 + components: + - type: Transform + pos: -107.5,34.5 + parent: 2 + - uid: 29507 + components: + - type: Transform + pos: -110.5,31.5 + parent: 2 + - uid: 29508 + components: + - type: Transform + pos: -110.5,30.5 + parent: 2 + - uid: 29512 + components: + - type: Transform + pos: -109.5,30.5 + parent: 2 + - uid: 29514 + components: + - type: Transform + pos: -108.5,29.5 + parent: 2 + - uid: 29872 + components: + - type: Transform + pos: -90.5,35.5 + parent: 2 + - uid: 29900 + components: + - type: Transform + pos: -93.5,49.5 + parent: 2 + - uid: 29943 + components: + - type: Transform + pos: -91.5,35.5 + parent: 2 + - uid: 29978 + components: + - type: Transform + pos: -95.5,50.5 + parent: 2 + - uid: 29979 + components: + - type: Transform + pos: -95.5,51.5 + parent: 2 + - uid: 29980 + components: + - type: Transform + pos: -95.5,52.5 + parent: 2 + - uid: 29981 + components: + - type: Transform + pos: -95.5,53.5 + parent: 2 + - uid: 29982 + components: + - type: Transform + pos: -95.5,54.5 + parent: 2 + - uid: 29983 + components: + - type: Transform + pos: -96.5,54.5 + parent: 2 + - uid: 29984 + components: + - type: Transform + pos: -97.5,54.5 + parent: 2 + - uid: 29985 + components: + - type: Transform + pos: -98.5,54.5 + parent: 2 + - uid: 29986 + components: + - type: Transform + pos: -98.5,53.5 + parent: 2 + - uid: 29987 + components: + - type: Transform + pos: -99.5,53.5 + parent: 2 + - uid: 29988 + components: + - type: Transform + pos: -99.5,52.5 + parent: 2 + - uid: 29989 + components: + - type: Transform + pos: -99.5,51.5 + parent: 2 + - uid: 29990 + components: + - type: Transform + pos: -99.5,50.5 + parent: 2 + - uid: 29991 + components: + - type: Transform + pos: -98.5,52.5 + parent: 2 + - uid: 29993 + components: + - type: Transform + pos: -93.5,47.5 + parent: 2 + - uid: 29994 + components: + - type: Transform + pos: -94.5,47.5 + parent: 2 + - uid: 29995 + components: + - type: Transform + pos: -95.5,47.5 + parent: 2 + - uid: 29996 + components: + - type: Transform + pos: -96.5,47.5 + parent: 2 + - uid: 29997 + components: + - type: Transform + pos: -97.5,47.5 + parent: 2 + - uid: 29998 + components: + - type: Transform + pos: -98.5,47.5 + parent: 2 + - uid: 29999 + components: + - type: Transform + pos: -99.5,47.5 + parent: 2 + - uid: 30000 + components: + - type: Transform + pos: -99.5,49.5 + parent: 2 + - uid: 30001 + components: + - type: Transform + pos: -99.5,48.5 + parent: 2 + - uid: 30002 + components: + - type: Transform + pos: -93.5,45.5 + parent: 2 + - uid: 30003 + components: + - type: Transform + pos: -92.5,45.5 + parent: 2 + - uid: 30004 + components: + - type: Transform + pos: -91.5,45.5 + parent: 2 + - uid: 30005 + components: + - type: Transform + pos: -90.5,45.5 + parent: 2 + - uid: 30006 + components: + - type: Transform + pos: -93.5,46.5 + parent: 2 + - uid: 30009 + components: + - type: Transform + pos: -89.5,35.5 + parent: 2 + - uid: 30011 + components: + - type: Transform + pos: -89.5,36.5 + parent: 2 + - uid: 30012 + components: + - type: Transform + pos: -89.5,37.5 + parent: 2 + - uid: 30013 + components: + - type: Transform + pos: -89.5,38.5 + parent: 2 + - uid: 30014 + components: + - type: Transform + pos: -89.5,39.5 + parent: 2 + - uid: 30015 + components: + - type: Transform + pos: -89.5,40.5 + parent: 2 + - uid: 30016 + components: + - type: Transform + pos: -89.5,41.5 + parent: 2 + - uid: 30017 + components: + - type: Transform + pos: -89.5,42.5 + parent: 2 + - uid: 30018 + components: + - type: Transform + pos: -89.5,43.5 + parent: 2 + - uid: 30021 + components: + - type: Transform + pos: -90.5,43.5 + parent: 2 + - uid: 30022 + components: + - type: Transform + pos: -91.5,43.5 + parent: 2 + - uid: 30023 + components: + - type: Transform + pos: -92.5,43.5 + parent: 2 + - uid: 30024 + components: + - type: Transform + pos: -92.5,44.5 + parent: 2 + - uid: 30057 + components: + - type: Transform + pos: -94.5,45.5 + parent: 2 + - uid: 30059 + components: + - type: Transform + pos: -94.5,44.5 + parent: 2 + - uid: 30344 + components: + - type: Transform + pos: -130.5,26.5 + parent: 2 + - uid: 30346 + components: + - type: Transform + pos: -129.5,26.5 + parent: 2 + - uid: 30348 + components: + - type: Transform + pos: -129.5,27.5 + parent: 2 + - uid: 30349 + components: + - type: Transform + pos: -129.5,28.5 + parent: 2 + - uid: 30350 + components: + - type: Transform + pos: -129.5,29.5 + parent: 2 + - uid: 30351 + components: + - type: Transform + pos: -129.5,30.5 + parent: 2 + - uid: 30352 + components: + - type: Transform + pos: -129.5,31.5 + parent: 2 + - uid: 30353 + components: + - type: Transform + pos: -129.5,32.5 + parent: 2 + - uid: 30354 + components: + - type: Transform + pos: -129.5,33.5 + parent: 2 + - uid: 30355 + components: + - type: Transform + pos: -127.5,28.5 + parent: 2 + - uid: 30400 + components: + - type: Transform + pos: -124.5,24.5 + parent: 2 + - uid: 30401 + components: + - type: Transform + pos: -123.5,26.5 + parent: 2 + - uid: 30426 + components: + - type: Transform + pos: -124.5,23.5 + parent: 2 + - uid: 30471 + components: + - type: Transform + pos: -135.5,20.5 + parent: 2 + - uid: 30472 + components: + - type: Transform + pos: -135.5,21.5 + parent: 2 + - uid: 30473 + components: + - type: Transform + pos: -135.5,22.5 + parent: 2 + - uid: 30474 + components: + - type: Transform + pos: -135.5,25.5 + parent: 2 + - uid: 30475 + components: + - type: Transform + pos: -135.5,26.5 + parent: 2 + - uid: 30476 + components: + - type: Transform + pos: -135.5,27.5 + parent: 2 + - uid: 30477 + components: + - type: Transform + pos: -135.5,29.5 + parent: 2 + - uid: 30478 + components: + - type: Transform + pos: -135.5,28.5 + parent: 2 + - uid: 30479 + components: + - type: Transform + pos: -137.5,35.5 + parent: 2 + - uid: 30488 + components: + - type: Transform + pos: -145.5,17.5 + parent: 2 + - uid: 30489 + components: + - type: Transform + pos: -146.5,17.5 + parent: 2 + - uid: 30536 + components: + - type: Transform + pos: -126.5,61.5 + parent: 2 + - uid: 30537 + components: + - type: Transform + pos: -125.5,61.5 + parent: 2 + - uid: 30538 + components: + - type: Transform + pos: -124.5,61.5 + parent: 2 + - uid: 30539 + components: + - type: Transform + pos: -123.5,61.5 + parent: 2 + - uid: 30540 + components: + - type: Transform + pos: -122.5,61.5 + parent: 2 + - uid: 30541 + components: + - type: Transform + pos: -121.5,61.5 + parent: 2 + - uid: 30542 + components: + - type: Transform + pos: -120.5,61.5 + parent: 2 + - uid: 30543 + components: + - type: Transform + pos: -119.5,61.5 + parent: 2 + - uid: 30546 + components: + - type: Transform + pos: -117.5,62.5 + parent: 2 + - uid: 30547 + components: + - type: Transform + pos: -117.5,63.5 + parent: 2 + - uid: 30548 + components: + - type: Transform + pos: -117.5,64.5 + parent: 2 + - uid: 30549 + components: + - type: Transform + pos: -117.5,65.5 + parent: 2 + - uid: 30550 + components: + - type: Transform + pos: -117.5,66.5 + parent: 2 + - uid: 30551 + components: + - type: Transform + pos: -117.5,67.5 + parent: 2 + - uid: 30563 + components: + - type: Transform + pos: -111.5,26.5 + parent: 2 + - uid: 30713 + components: + - type: Transform + pos: -123.5,16.5 + parent: 2 + - uid: 30941 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 30902 + - uid: 30942 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 30902 + - uid: 30943 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 30902 + - uid: 30944 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 30902 + - uid: 30945 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 30902 + - uid: 30946 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 30902 + - uid: 30947 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 30902 + - uid: 31018 + components: + - type: Transform + pos: -81.5,95.5 + parent: 2 + - uid: 31019 + components: + - type: Transform + pos: -82.5,95.5 + parent: 2 + - uid: 31020 + components: + - type: Transform + pos: -83.5,95.5 + parent: 2 + - uid: 31282 + components: + - type: Transform + pos: -99.5,144.5 + parent: 2 + - uid: 31283 + components: + - type: Transform + pos: -98.5,144.5 + parent: 2 + - uid: 31284 + components: + - type: Transform + pos: -97.5,144.5 + parent: 2 + - uid: 31430 + components: + - type: Transform + pos: -29.5,104.5 + parent: 2 + - uid: 31431 + components: + - type: Transform + pos: -29.5,100.5 + parent: 2 + - uid: 31432 + components: + - type: Transform + pos: -30.5,99.5 + parent: 2 + - uid: 31434 + components: + - type: Transform + pos: -29.5,101.5 + parent: 2 + - uid: 31435 + components: + - type: Transform + pos: -30.5,104.5 + parent: 2 + - uid: 31552 + components: + - type: Transform + pos: -97.5,153.5 + parent: 2 + - uid: 31563 + components: + - type: Transform + pos: -47.5,73.5 + parent: 2 + - uid: 31564 + components: + - type: Transform + pos: -47.5,72.5 + parent: 2 + - uid: 31565 + components: + - type: Transform + pos: -47.5,71.5 + parent: 2 + - uid: 31566 + components: + - type: Transform + pos: -46.5,71.5 + parent: 2 + - uid: 31567 + components: + - type: Transform + pos: -46.5,70.5 + parent: 2 + - uid: 31568 + components: + - type: Transform + pos: -46.5,69.5 + parent: 2 + - uid: 31569 + components: + - type: Transform + pos: -46.5,68.5 + parent: 2 + - uid: 32356 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 + - uid: 32357 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 2 + - uid: 32358 + components: + - type: Transform + pos: -59.5,-0.5 + parent: 2 + - uid: 32359 + components: + - type: Transform + pos: -59.5,0.5 + parent: 2 + - uid: 32360 + components: + - type: Transform + pos: -59.5,1.5 + parent: 2 + - uid: 32361 + components: + - type: Transform + pos: -59.5,2.5 + parent: 2 + - uid: 32362 + components: + - type: Transform + pos: -59.5,3.5 + parent: 2 + - uid: 32363 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 32364 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - uid: 32365 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 32366 + components: + - type: Transform + pos: -59.5,7.5 + parent: 2 + - uid: 32367 + components: + - type: Transform + pos: -59.5,8.5 + parent: 2 + - uid: 32368 + components: + - type: Transform + pos: -58.5,8.5 + parent: 2 + - uid: 32369 + components: + - type: Transform + pos: -57.5,8.5 + parent: 2 + - uid: 32370 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 32882 + components: + - type: Transform + pos: -96.5,144.5 + parent: 2 + - uid: 32883 + components: + - type: Transform + pos: -95.5,144.5 + parent: 2 + - uid: 32884 + components: + - type: Transform + pos: -94.5,144.5 + parent: 2 + - uid: 32885 + components: + - type: Transform + pos: -93.5,144.5 + parent: 2 + - uid: 32886 + components: + - type: Transform + pos: -92.5,144.5 + parent: 2 + - uid: 32887 + components: + - type: Transform + pos: -91.5,144.5 + parent: 2 + - uid: 32888 + components: + - type: Transform + pos: -90.5,144.5 + parent: 2 + - uid: 32889 + components: + - type: Transform + pos: -89.5,144.5 + parent: 2 + - uid: 32890 + components: + - type: Transform + pos: -88.5,144.5 + parent: 2 + - uid: 32891 + components: + - type: Transform + pos: -87.5,144.5 + parent: 2 + - uid: 32892 + components: + - type: Transform + pos: -86.5,144.5 + parent: 2 + - uid: 32893 + components: + - type: Transform + pos: -85.5,144.5 + parent: 2 + - uid: 32894 + components: + - type: Transform + pos: -84.5,144.5 + parent: 2 + - uid: 32895 + components: + - type: Transform + pos: -83.5,144.5 + parent: 2 + - uid: 32896 + components: + - type: Transform + pos: -83.5,145.5 + parent: 2 + - uid: 32897 + components: + - type: Transform + pos: -82.5,145.5 + parent: 2 + - uid: 32898 + components: + - type: Transform + pos: -81.5,145.5 + parent: 2 + - uid: 32899 + components: + - type: Transform + pos: -80.5,145.5 + parent: 2 + - uid: 32900 + components: + - type: Transform + pos: -79.5,145.5 + parent: 2 + - uid: 32901 + components: + - type: Transform + pos: -78.5,145.5 + parent: 2 + - uid: 32902 + components: + - type: Transform + pos: -77.5,145.5 + parent: 2 + - uid: 32903 + components: + - type: Transform + pos: -76.5,145.5 + parent: 2 + - uid: 32904 + components: + - type: Transform + pos: -76.5,146.5 + parent: 2 + - uid: 32905 + components: + - type: Transform + pos: -76.5,147.5 + parent: 2 + - uid: 32906 + components: + - type: Transform + pos: -75.5,147.5 + parent: 2 + - uid: 32910 + components: + - type: Transform + pos: -68.5,153.5 + parent: 2 + - uid: 32911 + components: + - type: Transform + pos: -68.5,154.5 + parent: 2 + - uid: 32912 + components: + - type: Transform + pos: -68.5,155.5 + parent: 2 + - uid: 32913 + components: + - type: Transform + pos: -68.5,156.5 + parent: 2 + - uid: 32914 + components: + - type: Transform + pos: -68.5,157.5 + parent: 2 + - uid: 32915 + components: + - type: Transform + pos: -68.5,158.5 + parent: 2 + - uid: 32916 + components: + - type: Transform + pos: -68.5,159.5 + parent: 2 + - uid: 32917 + components: + - type: Transform + pos: -68.5,160.5 + parent: 2 + - uid: 32918 + components: + - type: Transform + pos: -68.5,161.5 + parent: 2 + - uid: 32919 + components: + - type: Transform + pos: -68.5,162.5 + parent: 2 + - uid: 32920 + components: + - type: Transform + pos: -67.5,162.5 + parent: 2 + - uid: 32921 + components: + - type: Transform + pos: -66.5,162.5 + parent: 2 + - uid: 32922 + components: + - type: Transform + pos: -65.5,162.5 + parent: 2 + - uid: 32923 + components: + - type: Transform + pos: -64.5,162.5 + parent: 2 + - uid: 32924 + components: + - type: Transform + pos: -63.5,162.5 + parent: 2 + - uid: 32925 + components: + - type: Transform + pos: -62.5,162.5 + parent: 2 + - uid: 32926 + components: + - type: Transform + pos: -61.5,162.5 + parent: 2 + - uid: 32927 + components: + - type: Transform + pos: -60.5,162.5 + parent: 2 + - uid: 32928 + components: + - type: Transform + pos: -59.5,162.5 + parent: 2 + - uid: 32929 + components: + - type: Transform + pos: -58.5,162.5 + parent: 2 + - uid: 32930 + components: + - type: Transform + pos: -59.5,163.5 + parent: 2 + - uid: 32931 + components: + - type: Transform + pos: -59.5,164.5 + parent: 2 + - uid: 32932 + components: + - type: Transform + pos: -59.5,165.5 + parent: 2 + - uid: 32933 + components: + - type: Transform + pos: -59.5,166.5 + parent: 2 + - uid: 32934 + components: + - type: Transform + pos: -59.5,167.5 + parent: 2 + - uid: 32935 + components: + - type: Transform + pos: -59.5,168.5 + parent: 2 + - uid: 32936 + components: + - type: Transform + pos: -59.5,169.5 + parent: 2 + - uid: 32937 + components: + - type: Transform + pos: -61.5,169.5 + parent: 2 + - uid: 32938 + components: + - type: Transform + pos: -61.5,170.5 + parent: 2 + - uid: 33427 + components: + - type: Transform + pos: -81.5,83.5 + parent: 2 + - uid: 33435 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 33453 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - uid: 33565 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 33999 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - uid: 34579 + components: + - type: Transform + pos: -128.5,93.5 + parent: 2 + - uid: 34649 + components: + - type: Transform + pos: -128.5,94.5 + parent: 2 + - uid: 34661 + components: + - type: Transform + pos: -119.5,45.5 + parent: 2 + - uid: 34662 + components: + - type: Transform + pos: -119.5,44.5 + parent: 2 + - uid: 34663 + components: + - type: Transform + pos: -119.5,43.5 + parent: 2 + - uid: 34664 + components: + - type: Transform + pos: -119.5,42.5 + parent: 2 + - uid: 34665 + components: + - type: Transform + pos: -118.5,42.5 + parent: 2 + - uid: 34666 + components: + - type: Transform + pos: -117.5,42.5 + parent: 2 + - uid: 34667 + components: + - type: Transform + pos: -116.5,42.5 + parent: 2 + - uid: 34668 + components: + - type: Transform + pos: -116.5,41.5 + parent: 2 + - uid: 34669 + components: + - type: Transform + pos: -116.5,40.5 + parent: 2 + - uid: 34670 + components: + - type: Transform + pos: -116.5,39.5 + parent: 2 + - uid: 34671 + components: + - type: Transform + pos: -116.5,38.5 + parent: 2 + - uid: 34672 + components: + - type: Transform + pos: -116.5,37.5 + parent: 2 + - uid: 34673 + components: + - type: Transform + pos: -116.5,36.5 + parent: 2 + - uid: 34674 + components: + - type: Transform + pos: -116.5,35.5 + parent: 2 + - uid: 34675 + components: + - type: Transform + pos: -116.5,34.5 + parent: 2 + - uid: 34676 + components: + - type: Transform + pos: -117.5,34.5 + parent: 2 + - uid: 34677 + components: + - type: Transform + pos: -118.5,34.5 + parent: 2 + - uid: 34678 + components: + - type: Transform + pos: -118.5,33.5 + parent: 2 + - uid: 34679 + components: + - type: Transform + pos: -118.5,32.5 + parent: 2 + - uid: 34680 + components: + - type: Transform + pos: -119.5,32.5 + parent: 2 + - uid: 34681 + components: + - type: Transform + pos: -120.5,32.5 + parent: 2 + - uid: 34682 + components: + - type: Transform + pos: -121.5,32.5 + parent: 2 + - uid: 34683 + components: + - type: Transform + pos: -121.5,33.5 + parent: 2 + - uid: 34684 + components: + - type: Transform + pos: -121.5,34.5 + parent: 2 + - uid: 34685 + components: + - type: Transform + pos: -121.5,35.5 + parent: 2 + - uid: 34686 + components: + - type: Transform + pos: -121.5,36.5 + parent: 2 + - uid: 34687 + components: + - type: Transform + pos: -121.5,37.5 + parent: 2 + - uid: 34688 + components: + - type: Transform + pos: -121.5,38.5 + parent: 2 + - uid: 34689 + components: + - type: Transform + pos: -121.5,39.5 + parent: 2 + - uid: 34690 + components: + - type: Transform + pos: -122.5,39.5 + parent: 2 + - uid: 34695 + components: + - type: Transform + pos: -127.5,39.5 + parent: 2 + - uid: 34798 + components: + - type: Transform + pos: -6.5,68.5 + parent: 2 + - uid: 34799 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 34839 + components: + - type: Transform + pos: 0.5,211.5 + parent: 2 + - uid: 34840 + components: + - type: Transform + pos: 0.5,212.5 + parent: 2 + - uid: 34841 + components: + - type: Transform + pos: 0.5,213.5 + parent: 2 + - uid: 34842 + components: + - type: Transform + pos: -0.5,213.5 + parent: 2 + - uid: 34843 + components: + - type: Transform + pos: -1.5,213.5 + parent: 2 + - uid: 34845 + components: + - type: Transform + pos: 1.5,213.5 + parent: 2 + - uid: 34846 + components: + - type: Transform + pos: 1.5,214.5 + parent: 2 + - uid: 34847 + components: + - type: Transform + pos: 1.5,215.5 + parent: 2 + - uid: 34848 + components: + - type: Transform + pos: 1.5,216.5 + parent: 2 + - uid: 34849 + components: + - type: Transform + pos: 1.5,217.5 + parent: 2 + - uid: 35054 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 35439 + components: + - type: Transform + pos: -102.5,148.5 + parent: 2 + - uid: 35440 + components: + - type: Transform + pos: -103.5,148.5 + parent: 2 + - uid: 35441 + components: + - type: Transform + pos: -103.5,147.5 + parent: 2 + - uid: 35475 + components: + - type: Transform + pos: 67.5,23.5 + parent: 2 + - uid: 35664 + components: + - type: Transform + pos: -97.5,99.5 + parent: 2 + - uid: 35665 + components: + - type: Transform + pos: -98.5,99.5 + parent: 2 + - uid: 35666 + components: + - type: Transform + pos: -99.5,99.5 + parent: 2 + - uid: 35667 + components: + - type: Transform + pos: -100.5,99.5 + parent: 2 + - uid: 35668 + components: + - type: Transform + pos: -101.5,99.5 + parent: 2 + - uid: 35669 + components: + - type: Transform + pos: -102.5,99.5 + parent: 2 + - uid: 35670 + components: + - type: Transform + pos: -103.5,99.5 + parent: 2 + - uid: 35671 + components: + - type: Transform + pos: -104.5,99.5 + parent: 2 + - uid: 35672 + components: + - type: Transform + pos: -104.5,98.5 + parent: 2 + - uid: 35777 + components: + - type: Transform + pos: -103.5,102.5 + parent: 2 + - uid: 35778 + components: + - type: Transform + pos: -103.5,103.5 + parent: 2 + - uid: 35779 + components: + - type: Transform + pos: -102.5,103.5 + parent: 2 + - uid: 35780 + components: + - type: Transform + pos: -102.5,104.5 + parent: 2 + - uid: 35781 + components: + - type: Transform + pos: -103.5,101.5 + parent: 2 + - uid: 35859 + components: + - type: Transform + pos: -30.5,186.5 + parent: 2 + - uid: 35860 + components: + - type: Transform + pos: -30.5,185.5 + parent: 2 + - uid: 35861 + components: + - type: Transform + pos: -30.5,184.5 + parent: 2 + - uid: 35862 + components: + - type: Transform + pos: -30.5,183.5 + parent: 2 + - uid: 35863 + components: + - type: Transform + pos: -30.5,182.5 + parent: 2 + - uid: 35864 + components: + - type: Transform + pos: -30.5,181.5 + parent: 2 + - uid: 35865 + components: + - type: Transform + pos: -30.5,180.5 + parent: 2 + - uid: 35866 + components: + - type: Transform + pos: -30.5,179.5 + parent: 2 + - uid: 35867 + components: + - type: Transform + pos: -30.5,178.5 + parent: 2 + - uid: 35868 + components: + - type: Transform + pos: -30.5,177.5 + parent: 2 + - uid: 35869 + components: + - type: Transform + pos: -29.5,177.5 + parent: 2 + - uid: 35870 + components: + - type: Transform + pos: -28.5,177.5 + parent: 2 + - uid: 35871 + components: + - type: Transform + pos: -27.5,177.5 + parent: 2 + - uid: 35872 + components: + - type: Transform + pos: -26.5,177.5 + parent: 2 + - uid: 35873 + components: + - type: Transform + pos: -25.5,177.5 + parent: 2 + - uid: 35874 + components: + - type: Transform + pos: -30.5,189.5 + parent: 2 + - uid: 35906 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 36104 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 36111 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - uid: 36112 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 36114 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 36115 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 36116 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 36155 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 + - uid: 36497 + components: + - type: Transform + pos: -128.5,95.5 + parent: 2 + - uid: 36498 + components: + - type: Transform + pos: -128.5,96.5 + parent: 2 + - uid: 36499 + components: + - type: Transform + pos: -128.5,97.5 + parent: 2 + - uid: 36500 + components: + - type: Transform + pos: -128.5,98.5 + parent: 2 + - uid: 36501 + components: + - type: Transform + pos: -128.5,99.5 + parent: 2 + - uid: 36502 + components: + - type: Transform + pos: -128.5,100.5 + parent: 2 + - uid: 36503 + components: + - type: Transform + pos: -128.5,101.5 + parent: 2 + - uid: 36506 + components: + - type: Transform + pos: -124.5,16.5 + parent: 2 + - uid: 36618 + components: + - type: Transform + pos: -32.5,106.5 + parent: 2 + - uid: 36619 + components: + - type: Transform + pos: -31.5,106.5 + parent: 2 + - uid: 36620 + components: + - type: Transform + pos: -30.5,106.5 + parent: 2 + - uid: 36621 + components: + - type: Transform + pos: -29.5,106.5 + parent: 2 + - uid: 36622 + components: + - type: Transform + pos: -28.5,106.5 + parent: 2 + - uid: 36623 + components: + - type: Transform + pos: -27.5,106.5 + parent: 2 + - uid: 36624 + components: + - type: Transform + pos: -27.5,105.5 + parent: 2 + - uid: 36625 + components: + - type: Transform + pos: -26.5,105.5 + parent: 2 + - uid: 36626 + components: + - type: Transform + pos: -26.5,104.5 + parent: 2 + - uid: 36627 + components: + - type: Transform + pos: -25.5,104.5 + parent: 2 + - uid: 36628 + components: + - type: Transform + pos: -25.5,103.5 + parent: 2 + - uid: 36629 + components: + - type: Transform + pos: -24.5,103.5 + parent: 2 + - uid: 36630 + components: + - type: Transform + pos: -24.5,102.5 + parent: 2 + - uid: 36632 + components: + - type: Transform + pos: -34.5,108.5 + parent: 2 + - uid: 36633 + components: + - type: Transform + pos: -34.5,109.5 + parent: 2 + - uid: 36634 + components: + - type: Transform + pos: -35.5,109.5 + parent: 2 + - uid: 36635 + components: + - type: Transform + pos: -35.5,110.5 + parent: 2 + - uid: 36636 + components: + - type: Transform + pos: -36.5,110.5 + parent: 2 + - uid: 36637 + components: + - type: Transform + pos: -37.5,110.5 + parent: 2 + - uid: 36638 + components: + - type: Transform + pos: -38.5,110.5 + parent: 2 + - uid: 36639 + components: + - type: Transform + pos: -38.5,111.5 + parent: 2 + - uid: 36640 + components: + - type: Transform + pos: -39.5,111.5 + parent: 2 + - uid: 36641 + components: + - type: Transform + pos: -40.5,111.5 + parent: 2 + - uid: 36642 + components: + - type: Transform + pos: -41.5,111.5 + parent: 2 + - uid: 36643 + components: + - type: Transform + pos: -42.5,111.5 + parent: 2 + - uid: 36644 + components: + - type: Transform + pos: -42.5,110.5 + parent: 2 + - uid: 36645 + components: + - type: Transform + pos: -43.5,110.5 + parent: 2 + - uid: 36646 + components: + - type: Transform + pos: -44.5,110.5 + parent: 2 + - uid: 36647 + components: + - type: Transform + pos: -45.5,110.5 + parent: 2 + - uid: 36648 + components: + - type: Transform + pos: -45.5,109.5 + parent: 2 + - uid: 36649 + components: + - type: Transform + pos: -46.5,109.5 + parent: 2 + - uid: 36650 + components: + - type: Transform + pos: -46.5,108.5 + parent: 2 + - uid: 37324 + components: + - type: Transform + pos: -123.5,39.5 + parent: 2 + - uid: 37639 + components: + - type: Transform + pos: -101.5,56.5 + parent: 2 + - uid: 37642 + components: + - type: Transform + pos: -100.5,53.5 + parent: 2 + - uid: 37650 + components: + - type: Transform + pos: -101.5,53.5 + parent: 2 + - uid: 37651 + components: + - type: Transform + pos: -101.5,54.5 + parent: 2 + - uid: 37652 + components: + - type: Transform + pos: -101.5,55.5 + parent: 2 + - uid: 37654 + components: + - type: Transform + pos: -101.5,57.5 + parent: 2 + - uid: 37655 + components: + - type: Transform + pos: -101.5,58.5 + parent: 2 + - uid: 37656 + components: + - type: Transform + pos: -101.5,59.5 + parent: 2 + - uid: 37657 + components: + - type: Transform + pos: -101.5,60.5 + parent: 2 + - uid: 37658 + components: + - type: Transform + pos: -101.5,61.5 + parent: 2 + - uid: 37659 + components: + - type: Transform + pos: -102.5,61.5 + parent: 2 + - uid: 37660 + components: + - type: Transform + pos: -102.5,62.5 + parent: 2 + - uid: 37661 + components: + - type: Transform + pos: -103.5,62.5 + parent: 2 + - uid: 37720 + components: + - type: Transform + pos: 4.5,80.5 + parent: 2 + - uid: 37722 + components: + - type: Transform + pos: 3.5,80.5 + parent: 2 + - uid: 37723 + components: + - type: Transform + pos: 5.5,80.5 + parent: 2 + - uid: 37724 + components: + - type: Transform + pos: 6.5,80.5 + parent: 2 + - uid: 37725 + components: + - type: Transform + pos: 6.5,81.5 + parent: 2 + - uid: 37726 + components: + - type: Transform + pos: 7.5,80.5 + parent: 2 + - uid: 37922 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 37842 + - uid: 37923 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 37842 + - uid: 37924 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 37842 + - uid: 37925 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 37842 + - uid: 37926 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 37842 + - uid: 38042 + components: + - type: Transform + pos: -79.5,87.5 + parent: 2 + - uid: 38249 + components: + - type: Transform + pos: -129.5,39.5 + parent: 2 + - uid: 38250 + components: + - type: Transform + pos: -126.5,39.5 + parent: 2 + - uid: 38254 + components: + - type: Transform + pos: -40.5,70.5 + parent: 2 + - uid: 38255 + components: + - type: Transform + pos: -40.5,71.5 + parent: 2 + - uid: 38256 + components: + - type: Transform + pos: -41.5,70.5 + parent: 2 + - uid: 38257 + components: + - type: Transform + pos: -42.5,70.5 + parent: 2 + - uid: 38258 + components: + - type: Transform + pos: -39.5,70.5 + parent: 2 + - uid: 38259 + components: + - type: Transform + pos: -38.5,70.5 + parent: 2 + - uid: 39239 + components: + - type: Transform + pos: -70.5,101.5 + parent: 2 + - uid: 39240 + components: + - type: Transform + pos: -70.5,102.5 + parent: 2 + - uid: 39241 + components: + - type: Transform + pos: -70.5,103.5 + parent: 2 + - uid: 39242 + components: + - type: Transform + pos: -70.5,104.5 + parent: 2 + - uid: 39243 + components: + - type: Transform + pos: -70.5,105.5 + parent: 2 + - uid: 39244 + components: + - type: Transform + pos: -70.5,106.5 + parent: 2 + - uid: 39245 + components: + - type: Transform + pos: -70.5,107.5 + parent: 2 + - uid: 39246 + components: + - type: Transform + pos: -70.5,108.5 + parent: 2 + - uid: 39247 + components: + - type: Transform + pos: -70.5,109.5 + parent: 2 + - uid: 39248 + components: + - type: Transform + pos: -70.5,110.5 + parent: 2 + - uid: 39249 + components: + - type: Transform + pos: -70.5,111.5 + parent: 2 + - uid: 39250 + components: + - type: Transform + pos: -71.5,111.5 + parent: 2 + - uid: 39251 + components: + - type: Transform + pos: -72.5,111.5 + parent: 2 + - uid: 39252 + components: + - type: Transform + pos: -72.5,112.5 + parent: 2 + - uid: 39253 + components: + - type: Transform + pos: -72.5,113.5 + parent: 2 + - uid: 39408 + components: + - type: Transform + pos: -16.5,165.5 + parent: 2 + - uid: 39409 + components: + - type: Transform + pos: -14.5,165.5 + parent: 2 + - uid: 39410 + components: + - type: Transform + pos: -13.5,165.5 + parent: 2 + - uid: 39411 + components: + - type: Transform + pos: -11.5,165.5 + parent: 2 + - uid: 39473 + components: + - type: Transform + pos: -119.5,62.5 + parent: 2 + - uid: 39474 + components: + - type: Transform + pos: -118.5,62.5 + parent: 2 + - uid: 43186 + components: + - type: Transform + pos: 53.5,60.5 + parent: 2 + - uid: 43187 + components: + - type: Transform + pos: 53.5,59.5 + parent: 2 + - uid: 43188 + components: + - type: Transform + pos: 53.5,58.5 + parent: 2 + - uid: 43189 + components: + - type: Transform + pos: 53.5,57.5 + parent: 2 + - uid: 43190 + components: + - type: Transform + pos: 53.5,56.5 + parent: 2 + - uid: 43191 + components: + - type: Transform + pos: 53.5,55.5 + parent: 2 + - uid: 43192 + components: + - type: Transform + pos: 53.5,54.5 + parent: 2 + - uid: 43193 + components: + - type: Transform + pos: 54.5,54.5 + parent: 2 + - uid: 43194 + components: + - type: Transform + pos: 55.5,54.5 + parent: 2 + - uid: 43248 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 43347 + components: + - type: Transform + pos: -125.5,16.5 + parent: 2 + - uid: 43348 + components: + - type: Transform + pos: -121.5,28.5 + parent: 2 + - uid: 43352 + components: + - type: Transform + pos: -127.5,16.5 + parent: 2 + - uid: 43355 + components: + - type: Transform + pos: -122.5,16.5 + parent: 2 + - uid: 43356 + components: + - type: Transform + pos: -126.5,16.5 + parent: 2 + - uid: 43360 + components: + - type: Transform + pos: -121.5,27.5 + parent: 2 + - uid: 43376 + components: + - type: Transform + pos: -121.5,29.5 + parent: 2 + - uid: 43380 + components: + - type: Transform + pos: -121.5,26.5 + parent: 2 + - uid: 43381 + components: + - type: Transform + pos: -122.5,26.5 + parent: 2 +- proto: CableMVStack1 + entities: + - uid: 13849 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,-9.5 + pos: 81.43013,45.281586 parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - - uid: 13627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - - uid: 13628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - uid: 13629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - uid: 13630 + - uid: 35799 components: - type: Transform rot: -1.5707963267948966 rad - pos: 70.5,-9.5 + pos: -101.90899,102.56256 parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - uid: 13631 + - uid: 35800 components: - type: Transform rot: -1.5707963267948966 rad - pos: 70.5,-8.5 + pos: -101.73878,102.37107 parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - uid: 13632 + - uid: 35801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.99409,102.37107 + parent: 2 +- proto: CableTerminal + entities: + - uid: 4186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,54.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,53.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,55.5 + parent: 2 + - uid: 15065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,104.5 + parent: 2 + - uid: 17697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-5.5 + parent: 2 + - uid: 17795 + components: + - type: Transform + pos: -47.5,67.5 + parent: 2 + - uid: 23744 + components: + - type: Transform + pos: -125.5,60.5 + parent: 2 + - uid: 26501 + components: + - type: Transform + pos: -46.5,67.5 + parent: 2 + - uid: 29418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-5.5 + parent: 2 + - uid: 33328 + components: + - type: Transform + pos: -1.5,216.5 + parent: 2 + - uid: 33329 + components: + - type: Transform + pos: -0.5,216.5 + parent: 2 + - uid: 34534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,107.5 + parent: 2 + - uid: 35390 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,-9.5 + pos: -106.5,149.5 + parent: 2 + - uid: 35391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,147.5 + parent: 2 + - uid: 35449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,20.5 + parent: 2 + - uid: 35450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,21.5 + parent: 2 + - uid: 37570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,53.5 + parent: 2 + - uid: 37571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,54.5 + parent: 2 + - uid: 37572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,55.5 + parent: 2 + - uid: 37927 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 37842 +- proto: CandleRedInfinite + entities: + - uid: 8830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.58414,89.51887 + parent: 2 + - uid: 8831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.41246,89.38684 + parent: 2 + - uid: 8832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.3675,90.54865 + parent: 2 +- proto: CannabisSeeds + entities: + - uid: 7397 + components: + - type: Transform + parent: 7394 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7398 + components: + - type: Transform + parent: 7394 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CapacitorStockPart + entities: + - uid: 4227 + components: + - type: Transform + pos: -113.61157,34.633347 + parent: 2 + - uid: 5026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.729836,56.75826 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: -113.64282,34.61772 + parent: 2 + - uid: 12291 + components: + - type: Transform + parent: 12288 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CaptainIDCard + entities: + - uid: 13652 + components: + - type: Transform + pos: -34.526817,98.49411 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 2613 + components: + - type: Transform + pos: 37.5,59.5 + parent: 2 +- proto: Carpet + entities: + - uid: 1858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,66.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,66.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,66.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,67.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,67.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,67.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,67.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,66.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,67.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,66.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,67.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,63.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,62.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,62.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,63.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,63.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,62.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 8702 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 8705 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 8713 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 8714 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 8716 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 + - uid: 8717 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 11022 + components: + - type: Transform + pos: 0.5,74.5 + parent: 2 + - uid: 13905 + components: + - type: Transform + pos: -76.5,93.5 + parent: 2 + - uid: 13906 + components: + - type: Transform + pos: -75.5,95.5 + parent: 2 + - uid: 13907 + components: + - type: Transform + pos: -75.5,93.5 + parent: 2 + - uid: 14086 + components: + - type: Transform + pos: -76.5,83.5 + parent: 2 + - uid: 14111 + components: + - type: Transform + pos: -74.5,93.5 + parent: 2 + - uid: 14113 + components: + - type: Transform + pos: -75.5,94.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + pos: -77.5,95.5 + parent: 2 + - uid: 14638 + components: + - type: Transform + pos: -78.5,82.5 + parent: 2 + - uid: 14640 + components: + - type: Transform + pos: -77.5,83.5 + parent: 2 + - uid: 14647 + components: + - type: Transform + pos: -77.5,82.5 + parent: 2 + - uid: 14649 + components: + - type: Transform + pos: -78.5,83.5 + parent: 2 + - uid: 14651 + components: + - type: Transform + pos: -76.5,82.5 + parent: 2 + - uid: 14763 + components: + - type: Transform + pos: 0.5,73.5 + parent: 2 + - uid: 14883 + components: + - type: Transform + pos: -78.5,95.5 + parent: 2 + - uid: 14904 + components: + - type: Transform + pos: -78.5,93.5 + parent: 2 + - uid: 14999 + components: + - type: Transform + pos: -74.5,94.5 + parent: 2 + - uid: 15000 + components: + - type: Transform + pos: -74.5,95.5 + parent: 2 + - uid: 15009 + components: + - type: Transform + pos: -77.5,93.5 + parent: 2 + - uid: 15635 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 + - uid: 18219 + components: + - type: Transform + pos: 1.5,74.5 + parent: 2 + - uid: 22623 + components: + - type: Transform + pos: -5.5,178.5 + parent: 2 + - uid: 22625 + components: + - type: Transform + pos: -4.5,178.5 + parent: 2 + - uid: 22627 + components: + - type: Transform + pos: -3.5,178.5 + parent: 2 + - uid: 22636 + components: + - type: Transform + pos: -3.5,179.5 + parent: 2 + - uid: 22637 + components: + - type: Transform + pos: -3.5,180.5 + parent: 2 + - uid: 22638 + components: + - type: Transform + pos: -4.5,179.5 + parent: 2 + - uid: 22639 + components: + - type: Transform + pos: -4.5,180.5 + parent: 2 + - uid: 22640 + components: + - type: Transform + pos: -5.5,179.5 + parent: 2 + - uid: 22641 + components: + - type: Transform + pos: -5.5,180.5 + parent: 2 + - uid: 24244 + components: + - type: Transform + pos: -77.5,94.5 + parent: 2 + - uid: 26401 + components: + - type: Transform + pos: -76.5,94.5 + parent: 2 + - uid: 28790 + components: + - type: Transform + pos: -118.5,54.5 + parent: 2 + - uid: 28791 + components: + - type: Transform + pos: -118.5,55.5 + parent: 2 + - uid: 28792 + components: + - type: Transform + pos: -117.5,54.5 + parent: 2 + - uid: 28793 + components: + - type: Transform + pos: -117.5,55.5 + parent: 2 + - uid: 28794 + components: + - type: Transform + pos: -116.5,54.5 + parent: 2 + - uid: 28795 + components: + - type: Transform + pos: -116.5,55.5 + parent: 2 + - uid: 28796 + components: + - type: Transform + pos: -115.5,54.5 + parent: 2 + - uid: 28797 + components: + - type: Transform + pos: -115.5,55.5 + parent: 2 + - uid: 28798 + components: + - type: Transform + pos: -114.5,54.5 + parent: 2 + - uid: 28799 + components: + - type: Transform + pos: -114.5,55.5 + parent: 2 + - uid: 28800 + components: + - type: Transform + pos: -118.5,56.5 + parent: 2 + - uid: 28801 + components: + - type: Transform + pos: -117.5,56.5 + parent: 2 + - uid: 28802 + components: + - type: Transform + pos: -116.5,56.5 + parent: 2 + - uid: 28803 + components: + - type: Transform + pos: -115.5,56.5 + parent: 2 + - uid: 28804 + components: + - type: Transform + pos: -114.5,56.5 + parent: 2 + - uid: 36550 + components: + - type: Transform + pos: -78.5,94.5 + parent: 2 + - uid: 38043 + components: + - type: Transform + pos: -76.5,95.5 + parent: 2 + - uid: 39146 + components: + - type: Transform + pos: 83.5,66.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 1724 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-10.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 2 + - uid: 4074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,44.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,48.5 + parent: 2 + - uid: 4076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,47.5 + parent: 2 + - uid: 4077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,46.5 + parent: 2 + - uid: 4078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,45.5 + parent: 2 + - uid: 4079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,44.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,49.5 + parent: 2 + - uid: 4087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,43.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,48.5 + parent: 2 + - uid: 4108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,43.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,45.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,42.5 + parent: 2 + - uid: 4704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 2 + - uid: 4917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,41.5 + parent: 2 + - uid: 4918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,42.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-10.5 + parent: 2 + - uid: 4966 + components: + - type: Transform + pos: -53.5,61.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,48.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,46.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-11.5 + parent: 2 + - uid: 5091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,44.5 + parent: 2 + - uid: 5251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,41.5 + parent: 2 + - uid: 5442 + components: + - type: Transform + pos: -113.5,46.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,61.5 + parent: 2 + - uid: 5942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,60.5 + parent: 2 + - uid: 5946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,60.5 + parent: 2 + - uid: 5948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,60.5 + parent: 2 + - uid: 5952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,61.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 2 + - uid: 7523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,62.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,63.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 2 + - uid: 9009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 + - uid: 9010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 2 + - uid: 9022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-10.5 + parent: 2 + - uid: 9023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 2 + - uid: 10958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,63.5 + parent: 2 + - uid: 10960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,63.5 + parent: 2 + - uid: 10961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,61.5 + parent: 2 + - uid: 10962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,63.5 + parent: 2 + - uid: 10972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,62.5 + parent: 2 + - uid: 10996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,62.5 + parent: 2 + - uid: 11003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,63.5 + parent: 2 + - uid: 11020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,66.5 + parent: 2 + - uid: 11030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,67.5 + parent: 2 + - uid: 11060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,63.5 + parent: 2 + - uid: 11063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,63.5 + parent: 2 + - uid: 11143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,62.5 + parent: 2 + - uid: 11156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,62.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,62.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,62.5 + parent: 2 + - uid: 11185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,61.5 + parent: 2 + - uid: 11190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,61.5 + parent: 2 + - uid: 12035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,70.5 + parent: 2 + - uid: 12036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,69.5 + parent: 2 + - uid: 12049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,69.5 + parent: 2 + - uid: 12050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,69.5 + parent: 2 + - uid: 12088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,67.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,68.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,63.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,62.5 + parent: 2 + - uid: 12145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,62.5 + parent: 2 + - uid: 12146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,63.5 + parent: 2 + - uid: 12206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,65.5 + parent: 2 + - uid: 12207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,66.5 + parent: 2 + - uid: 12208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,67.5 + parent: 2 + - uid: 12209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,68.5 + parent: 2 + - uid: 12210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,69.5 + parent: 2 + - uid: 12211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,70.5 + parent: 2 + - uid: 12212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,71.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,71.5 + parent: 2 + - uid: 12219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,70.5 + parent: 2 + - uid: 12220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,69.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,68.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,67.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,66.5 + parent: 2 + - uid: 12224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,65.5 + parent: 2 + - uid: 12958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,66.5 + parent: 2 + - uid: 12963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,69.5 + parent: 2 + - uid: 12975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,67.5 + parent: 2 + - uid: 12976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,66.5 + parent: 2 + - uid: 13147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,69.5 + parent: 2 + - uid: 13148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,67.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,70.5 + parent: 2 + - uid: 13171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,70.5 + parent: 2 + - uid: 13173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,69.5 + parent: 2 + - uid: 13185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,70.5 + parent: 2 + - uid: 15466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,61.5 + parent: 2 + - uid: 17245 + components: + - type: Transform + pos: -52.5,61.5 + parent: 2 + - uid: 22490 + components: + - type: Transform + pos: -19.5,179.5 + parent: 2 + - uid: 22729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,61.5 + parent: 2 + - uid: 23062 + components: + - type: Transform + pos: -18.5,178.5 + parent: 2 + - uid: 23068 + components: + - type: Transform + pos: -19.5,178.5 + parent: 2 + - uid: 23070 + components: + - type: Transform + pos: -20.5,178.5 + parent: 2 + - uid: 23078 + components: + - type: Transform + pos: -18.5,179.5 + parent: 2 + - uid: 23079 + components: + - type: Transform + pos: -20.5,179.5 + parent: 2 + - uid: 23087 + components: + - type: Transform + pos: -20.5,177.5 + parent: 2 + - uid: 23088 + components: + - type: Transform + pos: -19.5,177.5 + parent: 2 + - uid: 23089 + components: + - type: Transform + pos: -18.5,177.5 + parent: 2 + - uid: 24202 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 24203 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 24204 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 24205 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 24206 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 24207 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 28112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,43.5 + parent: 2 + - uid: 28115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,47.5 + parent: 2 + - uid: 28117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,41.5 + parent: 2 + - uid: 28122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,49.5 + parent: 2 + - uid: 28135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,42.5 + parent: 2 + - uid: 28150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,49.5 + parent: 2 + - uid: 29008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,47.5 + parent: 2 + - uid: 29023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,48.5 + parent: 2 + - uid: 29095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,45.5 + parent: 2 + - uid: 29096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,46.5 + parent: 2 + - uid: 29097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,47.5 + parent: 2 + - uid: 29098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,48.5 + parent: 2 + - uid: 29100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,47.5 + parent: 2 + - uid: 29104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,46.5 + parent: 2 + - uid: 34592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,88.5 + parent: 2 + - uid: 34593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,89.5 + parent: 2 + - uid: 34595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,89.5 + parent: 2 + - uid: 34596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,89.5 + parent: 2 + - uid: 34597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,88.5 + parent: 2 + - uid: 34598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,87.5 + parent: 2 + - uid: 34599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,87.5 + parent: 2 + - uid: 34600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,87.5 + parent: 2 + - uid: 34601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,87.5 + parent: 2 + - uid: 34603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,88.5 + parent: 2 + - uid: 34604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,89.5 + parent: 2 + - uid: 37590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,89.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 14454 + components: + - type: Transform + pos: -62.5,87.5 + parent: 2 + - uid: 14456 + components: + - type: Transform + pos: -63.5,87.5 + parent: 2 + - uid: 14550 + components: + - type: Transform + pos: -63.5,85.5 + parent: 2 + - uid: 14553 + components: + - type: Transform + pos: -61.5,85.5 + parent: 2 + - uid: 14554 + components: + - type: Transform + pos: -62.5,85.5 + parent: 2 + - uid: 14555 + components: + - type: Transform + pos: -60.5,85.5 + parent: 2 + - uid: 14556 + components: + - type: Transform + pos: -60.5,86.5 + parent: 2 + - uid: 14557 + components: + - type: Transform + pos: -60.5,87.5 + parent: 2 + - uid: 14558 + components: + - type: Transform + pos: -61.5,87.5 + parent: 2 + - uid: 14559 + components: + - type: Transform + pos: -61.5,86.5 + parent: 2 + - uid: 14560 + components: + - type: Transform + pos: -62.5,86.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + pos: -63.5,86.5 + parent: 2 + - uid: 14567 + components: + - type: Transform + pos: -64.5,85.5 + parent: 2 + - uid: 14568 + components: + - type: Transform + pos: -64.5,86.5 + parent: 2 + - uid: 14569 + components: + - type: Transform + pos: -64.5,87.5 + parent: 2 + - uid: 14690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,80.5 + parent: 2 + - uid: 14691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,79.5 + parent: 2 + - uid: 14692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,78.5 + parent: 2 + - uid: 14693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,78.5 + parent: 2 + - uid: 14694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,78.5 + parent: 2 + - uid: 14695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,78.5 + parent: 2 + - uid: 14696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,78.5 + parent: 2 + - uid: 14697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,78.5 + parent: 2 + - uid: 14698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,78.5 + parent: 2 + - uid: 14699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,78.5 + parent: 2 + - uid: 14700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,78.5 + parent: 2 + - uid: 14701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,77.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 12199 + components: + - type: Transform + pos: -60.5,68.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,70.5 + parent: 2 + - uid: 12201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,70.5 + parent: 2 + - uid: 12202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,68.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 3069 + components: + - type: Transform + pos: -59.5,106.5 + parent: 2 + - uid: 3771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,106.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: -58.5,107.5 + parent: 2 + - uid: 4343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,106.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,106.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: -59.5,107.5 + parent: 2 + - uid: 7739 + components: + - type: Transform + pos: -60.5,106.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + pos: -60.5,107.5 + parent: 2 + - uid: 8297 + components: + - type: Transform + pos: -59.5,93.5 + parent: 2 + - uid: 9534 + components: + - type: Transform + pos: -58.5,106.5 + parent: 2 + - uid: 10119 + components: + - type: Transform + pos: -68.5,110.5 + parent: 2 + - uid: 10132 + components: + - type: Transform + pos: -69.5,110.5 + parent: 2 + - uid: 13799 + components: + - type: Transform + pos: -68.5,111.5 + parent: 2 + - uid: 13801 + components: + - type: Transform + pos: -67.5,111.5 + parent: 2 + - uid: 13802 + components: + - type: Transform + pos: -66.5,111.5 + parent: 2 + - uid: 13804 + components: + - type: Transform + pos: -66.5,110.5 + parent: 2 + - uid: 13890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,99.5 + parent: 2 + - uid: 13936 + components: + - type: Transform + pos: -65.5,111.5 + parent: 2 + - uid: 13940 + components: + - type: Transform + pos: -69.5,111.5 + parent: 2 + - uid: 13943 + components: + - type: Transform + pos: -63.5,110.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + pos: -67.5,110.5 + parent: 2 + - uid: 13986 + components: + - type: Transform + pos: -60.5,113.5 + parent: 2 + - uid: 14012 + components: + - type: Transform + pos: -59.5,94.5 + parent: 2 + - uid: 14013 + components: + - type: Transform + pos: -58.5,93.5 + parent: 2 + - uid: 14014 + components: + - type: Transform + pos: -58.5,94.5 + parent: 2 + - uid: 14015 + components: + - type: Transform + pos: -57.5,93.5 + parent: 2 + - uid: 14016 + components: + - type: Transform + pos: -57.5,94.5 + parent: 2 + - uid: 14035 + components: + - type: Transform + pos: -64.5,111.5 + parent: 2 + - uid: 14039 + components: + - type: Transform + pos: -60.5,111.5 + parent: 2 + - uid: 14064 + components: + - type: Transform + pos: -63.5,111.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: -74.5,82.5 + parent: 2 + - uid: 14375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,99.5 + parent: 2 + - uid: 14376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,99.5 + parent: 2 + - uid: 14377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,99.5 + parent: 2 + - uid: 14378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,99.5 + parent: 2 + - uid: 14502 + components: + - type: Transform + pos: -65.5,110.5 + parent: 2 + - uid: 14524 + components: + - type: Transform + pos: -70.5,82.5 + parent: 2 + - uid: 14525 + components: + - type: Transform + pos: -70.5,81.5 + parent: 2 + - uid: 14526 + components: + - type: Transform + pos: -69.5,82.5 + parent: 2 + - uid: 14527 + components: + - type: Transform + pos: -69.5,81.5 + parent: 2 + - uid: 14528 + components: + - type: Transform + pos: -68.5,82.5 + parent: 2 + - uid: 14529 + components: + - type: Transform + pos: -68.5,81.5 + parent: 2 + - uid: 14530 + components: + - type: Transform + pos: -66.5,81.5 + parent: 2 + - uid: 14531 + components: + - type: Transform + pos: -66.5,82.5 + parent: 2 + - uid: 14532 + components: + - type: Transform + pos: -66.5,83.5 + parent: 2 + - uid: 14533 + components: + - type: Transform + pos: -65.5,81.5 + parent: 2 + - uid: 14534 + components: + - type: Transform + pos: -65.5,82.5 + parent: 2 + - uid: 14535 + components: + - type: Transform + pos: -65.5,83.5 + parent: 2 + - uid: 14633 + components: + - type: Transform + pos: -72.5,83.5 + parent: 2 + - uid: 14635 + components: + - type: Transform + pos: -72.5,82.5 + parent: 2 + - uid: 14637 + components: + - type: Transform + pos: -73.5,83.5 + parent: 2 + - uid: 14639 + components: + - type: Transform + pos: -73.5,82.5 + parent: 2 + - uid: 14652 + components: + - type: Transform + pos: -74.5,83.5 + parent: 2 + - uid: 14727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,73.5 + parent: 2 + - uid: 14728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,74.5 + parent: 2 + - uid: 14729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,75.5 + parent: 2 + - uid: 14730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,73.5 + parent: 2 + - uid: 14731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,74.5 + parent: 2 + - uid: 14732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,75.5 + parent: 2 + - uid: 14733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,73.5 + parent: 2 + - uid: 14734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,74.5 + parent: 2 + - uid: 14735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,75.5 + parent: 2 + - uid: 15069 + components: + - type: Transform + pos: -64.5,110.5 + parent: 2 + - uid: 15212 + components: + - type: Transform + pos: -60.5,109.5 + parent: 2 +- proto: CarpetPink + entities: + - uid: 14029 + components: + - type: Transform + pos: -60.5,101.5 + parent: 2 + - uid: 14030 + components: + - type: Transform + pos: -60.5,102.5 + parent: 2 + - uid: 14032 + components: + - type: Transform + pos: -59.5,101.5 + parent: 2 + - uid: 14033 + components: + - type: Transform + pos: -59.5,102.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 14641 + components: + - type: Transform + pos: -76.5,85.5 + parent: 2 + - uid: 14642 + components: + - type: Transform + pos: -76.5,86.5 + parent: 2 + - uid: 14643 + components: + - type: Transform + pos: -75.5,85.5 + parent: 2 + - uid: 14644 + components: + - type: Transform + pos: -75.5,86.5 + parent: 2 + - uid: 14645 + components: + - type: Transform + pos: -74.5,85.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + pos: -74.5,86.5 + parent: 2 + - uid: 17319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,158.5 + parent: 2 + - uid: 19786 + components: + - type: Transform + pos: -84.5,154.5 + parent: 2 + - uid: 19787 + components: + - type: Transform + pos: -84.5,155.5 + parent: 2 + - uid: 19788 + components: + - type: Transform + pos: -83.5,154.5 + parent: 2 + - uid: 19789 + components: + - type: Transform + pos: -83.5,155.5 + parent: 2 + - uid: 19796 + components: + - type: Transform + pos: -89.5,160.5 + parent: 2 + - uid: 19797 + components: + - type: Transform + pos: -88.5,160.5 + parent: 2 + - uid: 19798 + components: + - type: Transform + pos: -87.5,160.5 + parent: 2 + - uid: 19799 + components: + - type: Transform + pos: -86.5,160.5 + parent: 2 + - uid: 19800 + components: + - type: Transform + pos: -85.5,160.5 + parent: 2 + - uid: 19809 + components: + - type: Transform + pos: -88.5,158.5 + parent: 2 + - uid: 19810 + components: + - type: Transform + pos: -89.5,158.5 + parent: 2 + - uid: 20540 + components: + - type: Transform + pos: -87.5,179.5 + parent: 2 + - uid: 20541 + components: + - type: Transform + pos: -87.5,180.5 + parent: 2 + - uid: 20543 + components: + - type: Transform + pos: -86.5,179.5 + parent: 2 + - uid: 20544 + components: + - type: Transform + pos: -86.5,180.5 + parent: 2 + - uid: 20545 + components: + - type: Transform + pos: -87.5,181.5 + parent: 2 + - uid: 20546 + components: + - type: Transform + pos: -86.5,181.5 + parent: 2 + - uid: 20547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,181.5 + parent: 2 + - uid: 20548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,182.5 + parent: 2 + - uid: 20549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,182.5 + parent: 2 + - uid: 20550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,182.5 + parent: 2 + - uid: 20557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,180.5 + parent: 2 + - uid: 20558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,179.5 + parent: 2 + - uid: 20618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,182.5 + parent: 2 + - uid: 20619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,181.5 + parent: 2 + - uid: 20620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,180.5 + parent: 2 + - uid: 20621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,179.5 + parent: 2 + - uid: 21633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,159.5 + parent: 2 + - uid: 21634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,158.5 + parent: 2 + - uid: 21638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,159.5 + parent: 2 + - uid: 21639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,159.5 + parent: 2 + - uid: 21640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,158.5 + parent: 2 + - uid: 21641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,159.5 + parent: 2 + - uid: 21642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,159.5 + parent: 2 + - uid: 21644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,158.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 1320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,101.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,100.5 + parent: 2 + - uid: 10486 + components: + - type: Transform + pos: -15.5,86.5 + parent: 2 + - uid: 10487 + components: + - type: Transform + pos: -15.5,87.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + pos: -16.5,86.5 + parent: 2 + - uid: 10489 + components: + - type: Transform + pos: -16.5,87.5 + parent: 2 + - uid: 10490 + components: + - type: Transform + pos: -17.5,86.5 + parent: 2 + - uid: 10491 + components: + - type: Transform + pos: -17.5,87.5 + parent: 2 + - uid: 10492 + components: + - type: Transform + pos: -19.5,83.5 + parent: 2 + - uid: 10493 + components: + - type: Transform + pos: -19.5,82.5 + parent: 2 + - uid: 10494 + components: + - type: Transform + pos: -18.5,83.5 + parent: 2 + - uid: 10495 + components: + - type: Transform + pos: -18.5,82.5 + parent: 2 + - uid: 10496 + components: + - type: Transform + pos: -17.5,83.5 + parent: 2 + - uid: 10497 + components: + - type: Transform + pos: -17.5,82.5 + parent: 2 + - uid: 10498 + components: + - type: Transform + pos: -16.5,83.5 + parent: 2 + - uid: 10499 + components: + - type: Transform + pos: -16.5,82.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - uid: 13633 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,-8.5 + pos: -25.5,97.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - uid: 13634 + - uid: 13659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,100.5 + parent: 2 + - uid: 13667 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.5,-9.5 + pos: -36.5,99.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 95 - - uid: 13635 + - uid: 13670 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.5,-8.5 + pos: -35.5,99.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 95 - - uid: 13636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - uid: 13637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - uid: 13638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - uid: 13639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - uid: 13640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - uid: 13641 - components: - - type: Transform - pos: 60.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - - 92 - - uid: 13642 + - uid: 13672 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,-5.5 + pos: -35.5,98.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - - 92 - - uid: 20389 + - uid: 13684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,102.5 + parent: 2 + - uid: 13690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,98.5 + parent: 2 + - uid: 14017 + components: + - type: Transform + pos: -72.5,98.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + pos: -72.5,99.5 + parent: 2 + - uid: 14019 + components: + - type: Transform + pos: -72.5,100.5 + parent: 2 + - uid: 14020 + components: + - type: Transform + pos: -71.5,98.5 + parent: 2 + - uid: 14021 + components: + - type: Transform + pos: -71.5,99.5 + parent: 2 + - uid: 14022 + components: + - type: Transform + pos: -71.5,100.5 + parent: 2 + - uid: 14143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,97.5 + parent: 2 + - uid: 15029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,102.5 + parent: 2 + - uid: 16498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,97.5 + parent: 2 + - uid: 16572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,96.5 + parent: 2 + - uid: 16587 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,12.5 + pos: -39.5,99.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 20388 - - 20365 - - uid: 20491 + - uid: 16978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,101.5 + parent: 2 + - uid: 17023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,98.5 + parent: 2 + - uid: 17237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,102.5 + parent: 2 + - uid: 17290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,101.5 + parent: 2 + - uid: 17291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,99.5 + parent: 2 + - uid: 17763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,97.5 + parent: 2 + - uid: 17877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,100.5 + parent: 2 + - uid: 18592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,98.5 + parent: 2 + - uid: 19478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,98.5 + parent: 2 + - uid: 19493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,96.5 + parent: 2 + - uid: 22780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,191.5 + parent: 2 + - uid: 22781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,192.5 + parent: 2 + - uid: 22782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,191.5 + parent: 2 + - uid: 22783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,192.5 + parent: 2 + - uid: 22784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,191.5 + parent: 2 + - uid: 22785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,192.5 + parent: 2 + - uid: 23012 + components: + - type: Transform + pos: -8.5,197.5 + parent: 2 + - uid: 23013 + components: + - type: Transform + pos: -8.5,198.5 + parent: 2 + - uid: 23014 + components: + - type: Transform + pos: -7.5,197.5 + parent: 2 + - uid: 23015 + components: + - type: Transform + pos: -7.5,198.5 + parent: 2 + - uid: 23016 + components: + - type: Transform + pos: -6.5,197.5 + parent: 2 + - uid: 23017 + components: + - type: Transform + pos: -6.5,198.5 + parent: 2 + - uid: 23305 + components: + - type: Transform + pos: -20.5,204.5 + parent: 2 + - uid: 23306 + components: + - type: Transform + pos: -20.5,205.5 + parent: 2 + - uid: 23307 + components: + - type: Transform + pos: -20.5,206.5 + parent: 2 + - uid: 23308 + components: + - type: Transform + pos: -19.5,204.5 + parent: 2 + - uid: 23309 + components: + - type: Transform + pos: -19.5,205.5 + parent: 2 + - uid: 23310 + components: + - type: Transform + pos: -19.5,206.5 + parent: 2 + - uid: 23334 + components: + - type: Transform + pos: -16.5,206.5 + parent: 2 + - uid: 23335 + components: + - type: Transform + pos: -16.5,205.5 + parent: 2 + - uid: 23336 + components: + - type: Transform + pos: -16.5,204.5 + parent: 2 + - uid: 23337 + components: + - type: Transform + pos: -15.5,206.5 + parent: 2 + - uid: 23338 + components: + - type: Transform + pos: -15.5,205.5 + parent: 2 + - uid: 23339 + components: + - type: Transform + pos: -15.5,204.5 + parent: 2 + - uid: 25166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,97.5 + parent: 2 + - uid: 26416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,102.5 + parent: 2 + - uid: 26417 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,12.5 + pos: -40.5,99.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 20388 - - 20365 - - uid: 20492 + - uid: 26998 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,12.5 + pos: -39.5,100.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 20388 - - 20365 - - uid: 20493 + - uid: 27000 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,12.5 + pos: -39.5,98.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 20388 - - 20365 - - uid: 20494 + - uid: 27001 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,12.5 + pos: -40.5,100.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 20388 - - 20365 - - uid: 20510 + - uid: 27003 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,12.5 + pos: -40.5,98.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 20388 - - 20365 - - uid: 20511 + - uid: 27004 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,12.5 + pos: -41.5,100.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 20388 - - 20365 - - uid: 20512 + - uid: 27005 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,12.5 + pos: -41.5,99.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 20388 - - 20365 - - uid: 20513 + - uid: 27006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,98.5 + parent: 2 + - uid: 30342 + components: + - type: Transform + pos: -36.5,100.5 + parent: 2 + - uid: 31436 + components: + - type: Transform + pos: -35.5,100.5 + parent: 2 + - uid: 32278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,99.5 + parent: 2 + - uid: 34816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,97.5 + parent: 2 + - uid: 34817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,99.5 + parent: 2 + - uid: 34818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,98.5 + parent: 2 + - uid: 35831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,98.5 + parent: 2 + - uid: 35937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,101.5 + parent: 2 + - uid: 36196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,100.5 + parent: 2 + - uid: 36197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,99.5 + parent: 2 +- proto: CartridgePistol + entities: + - uid: 695 + components: + - type: Transform + pos: -25.222254,-20.423723 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: -25.386316,-20.54091 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: -25.386316,-20.329973 + parent: 2 +- proto: Catwalk + entities: + - uid: 268 + components: + - type: Transform + pos: -133.5,41.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -140.5,22.5 + parent: 2 + - uid: 311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -148.5,23.5 + parent: 2 + - uid: 318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-2.5 + parent: 2 + - uid: 602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-6.5 + parent: 2 + - uid: 603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-7.5 + parent: 2 + - uid: 604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-6.5 + parent: 2 + - uid: 605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-7.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 1.5,171.5 + parent: 2 + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,98.5 + parent: 2 + - uid: 674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -140.5,30.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -140.5,29.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 68.5,29.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: 61.5,29.5 + parent: 2 + - uid: 984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-9.5 + parent: 2 + - uid: 985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 2 + - uid: 986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-9.5 + parent: 2 + - uid: 987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 2 + - uid: 989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - uid: 991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 2 + - uid: 992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-7.5 + parent: 2 + - uid: 993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 2 + - uid: 994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 2 + - uid: 995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 2 + - uid: 996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-15.5 + parent: 2 + - uid: 997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-15.5 + parent: 2 + - uid: 998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-15.5 + parent: 2 + - uid: 999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: -74.5,-8.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: -76.5,-8.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -141.5,22.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -142.5,27.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -142.5,28.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -147.5,30.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,10.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: -48.5,-14.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,9.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -140.5,23.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,17.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,229.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -147.5,22.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,169.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,228.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,222.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,225.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -75.5,-8.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,11.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,230.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,231.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,8.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,223.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: -81.5,-11.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: -81.5,-12.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-10.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-8.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-8.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: -123.5,31.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-8.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-8.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-7.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-8.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-9.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-8.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-8.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-10.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-8.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-6.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: -65.5,-4.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -123.5,61.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -148.5,30.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: -69.5,-8.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: -70.5,-8.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: -71.5,-8.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: -66.5,-12.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: -66.5,-13.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: -127.5,57.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,223.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -148.5,22.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,3.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: -59.5,0.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: -59.5,2.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -148.5,29.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -141.5,30.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: -67.5,-8.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + pos: -59.5,1.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,98.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,59.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -145.5,28.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,100.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,100.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: 24.5,188.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,100.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,141.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,20.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + pos: -122.5,148.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: -123.5,148.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 + - uid: 3019 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 20388 - - 20365 - - uid: 31467 + - uid: 3022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,10.5 + parent: 2 + - uid: 3051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,142.5 + parent: 2 + - uid: 3053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,70.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: -126.5,56.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + pos: -119.5,148.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -146.5,28.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,94.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + pos: -13.5,87.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -146.5,25.5 + parent: 2 + - uid: 4067 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,10.5 + pos: -116.5,38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - 3504 - - uid: 31468 + - uid: 4100 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,9.5 + pos: -116.5,36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - 3504 -- proto: FirelockGlass - entities: - - uid: 112 + - uid: 4114 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,17.5 + pos: -146.5,24.5 parent: 2 - - uid: 1948 + - uid: 4132 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,29.5 + pos: -145.5,24.5 parent: 2 - - uid: 3054 + - uid: 4133 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,29.5 + pos: -142.5,25.5 parent: 2 - - uid: 7767 + - uid: 4134 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-1.5 + pos: -142.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - 39 - - uid: 7769 + - uid: 4172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,70.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: 118.5,58.5 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: -133.5,42.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: -133.5,45.5 + parent: 2 + - uid: 4199 + components: + - type: Transform + pos: -133.5,46.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -130.5,39.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,41.5 + parent: 2 + - uid: 4219 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-2.5 + pos: -143.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - 39 - - uid: 13241 + - uid: 4269 components: - type: Transform - pos: 0.5,-33.5 + rot: 3.141592653589793 rad + pos: 75.5,17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 27 - - 31 - - uid: 13298 + - uid: 4282 + components: + - type: Transform + pos: -117.5,148.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,19.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,17.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: -111.5,38.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + pos: 84.5,56.5 + parent: 2 + - uid: 4536 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-0.5 + pos: 58.5,47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - 39 - - uid: 13307 - components: - - type: Transform - pos: -1.5,-33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 27 - - 31 - - uid: 13597 - components: - - type: Transform - pos: -0.5,-33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 27 - - 31 - - uid: 13646 + - uid: 4537 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,-26.5 + pos: 55.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - 54 - - uid: 13647 + - uid: 4538 components: - type: Transform - pos: 20.5,-23.5 + rot: -1.5707963267948966 rad + pos: 55.5,45.5 parent: 2 - - uid: 13648 + - uid: 4539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-9.5 + rot: -1.5707963267948966 rad + pos: 54.5,45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - 99 - - 13561 - - 13591 - - uid: 13649 + - uid: 4540 components: - type: Transform - pos: 20.5,-15.5 + rot: -1.5707963267948966 rad + pos: 58.5,50.5 parent: 2 - - uid: 13650 + - uid: 4541 components: - type: Transform - pos: -62.5,0.5 + rot: -1.5707963267948966 rad + pos: 58.5,51.5 parent: 2 - - uid: 13651 + - uid: 4542 components: - type: Transform - pos: 23.5,-17.5 + rot: -1.5707963267948966 rad + pos: 57.5,51.5 parent: 2 - - uid: 13652 + - uid: 4543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-8.5 + rot: -1.5707963267948966 rad + pos: 58.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - 99 - - 13561 - - 13591 - - uid: 13653 + - uid: 4545 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-6.5 + pos: 85.5,53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - 99 - - 13561 - - 13591 - - uid: 13654 + - uid: 4583 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-5.5 + pos: -59.5,162.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - 99 - - 13561 - - 13591 - - uid: 13655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - 99 - - 13561 - - 13591 - - uid: 13656 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 2 - - uid: 13657 - components: - - type: Transform - pos: -19.5,-1.5 - parent: 2 - - uid: 13658 - components: - - type: Transform - pos: -19.5,-2.5 - parent: 2 - - uid: 13659 - components: - - type: Transform - pos: 52.5,-26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - uid: 13660 - components: - - type: Transform - pos: 52.5,-27.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - uid: 13661 - components: - - type: Transform - pos: -8.5,-70.5 - parent: 2 - - uid: 13663 - components: - - type: Transform - pos: -8.5,-68.5 - parent: 2 - - uid: 13664 - components: - - type: Transform - pos: -8.5,-69.5 - parent: 2 - - uid: 13665 - components: - - type: Transform - pos: 65.5,-48.5 - parent: 2 - - uid: 13666 - components: - - type: Transform - pos: 66.5,-48.5 - parent: 2 - - uid: 13667 - components: - - type: Transform - pos: 67.5,-48.5 - parent: 2 - - uid: 13668 - components: - - type: Transform - pos: 40.5,-37.5 - parent: 2 - - uid: 13669 - components: - - type: Transform - pos: 34.5,-28.5 - parent: 2 - - uid: 13670 - components: - - type: Transform - pos: 25.5,-26.5 - parent: 2 - - uid: 13671 - components: - - type: Transform - pos: -14.5,-22.5 - parent: 2 - - uid: 13672 - components: - - type: Transform - pos: -12.5,-22.5 - parent: 2 - - uid: 13673 - components: - - type: Transform - pos: 28.5,-28.5 - parent: 2 - - uid: 13674 - components: - - type: Transform - pos: 28.5,-29.5 - parent: 2 - - uid: 13675 - components: - - type: Transform - pos: -14.5,-27.5 - parent: 2 - - uid: 13676 - components: - - type: Transform - pos: 65.5,-42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - uid: 13677 - components: - - type: Transform - pos: 66.5,-42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - uid: 13678 - components: - - type: Transform - pos: 67.5,-42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - uid: 13684 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 2 - - uid: 13685 - components: - - type: Transform - pos: 14.5,-10.5 - parent: 2 - - uid: 13686 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 2 - - uid: 13687 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 2 - - uid: 13688 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 2 - - uid: 13689 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 2 - - uid: 13690 - components: - - type: Transform - pos: -16.5,-20.5 - parent: 2 - - uid: 13691 - components: - - type: Transform - pos: -17.5,-20.5 - parent: 2 - - uid: 13692 - components: - - type: Transform - pos: -9.5,-31.5 - parent: 2 - - uid: 13693 - components: - - type: Transform - pos: 46.5,8.5 - parent: 2 - - uid: 13694 - components: - - type: Transform - pos: -35.5,-2.5 - parent: 2 - - uid: 13695 - components: - - type: Transform - pos: -52.5,-0.5 - parent: 2 - - uid: 13696 - components: - - type: Transform - pos: -52.5,-2.5 - parent: 2 - - uid: 13697 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - uid: 13698 - components: - - type: Transform - pos: -6.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - uid: 13699 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - uid: 13700 - components: - - type: Transform - pos: -52.5,-1.5 - parent: 2 - - uid: 13701 - components: - - type: Transform - pos: 9.5,-31.5 - parent: 2 - - uid: 13704 - components: - - type: Transform - pos: 39.5,-37.5 - parent: 2 - - uid: 13705 - components: - - type: Transform - pos: 41.5,-37.5 - parent: 2 - - uid: 13706 - components: - - type: Transform - pos: 34.5,-29.5 - parent: 2 - - uid: 13707 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 2 - - uid: 13708 - components: - - type: Transform - pos: 9.5,-29.5 - parent: 2 - - uid: 13709 - components: - - type: Transform - pos: -15.5,19.5 - parent: 2 - - uid: 13710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 95 - - 13569 - - 18 - - uid: 13711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 95 - - 13569 - - 18 - - uid: 13712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 95 - - 13569 - - 18 - - uid: 13713 - components: - - type: Transform - pos: -44.5,20.5 - parent: 2 - - uid: 13714 - components: - - type: Transform - pos: -0.5,29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25632 - - uid: 13716 + - uid: 4599 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-28.5 + pos: 84.5,48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 20 - - 13538 - - 64 - - 13575 - - uid: 13717 + - uid: 4711 components: - type: Transform - pos: 26.5,-26.5 + rot: 3.141592653589793 rad + pos: 73.5,18.5 parent: 2 - - uid: 13718 - components: - - type: Transform - pos: -35.5,-1.5 - parent: 2 - - uid: 13719 - components: - - type: Transform - pos: -9.5,-29.5 - parent: 2 - - uid: 13720 - components: - - type: Transform - pos: -9.5,-30.5 - parent: 2 - - uid: 13721 - components: - - type: Transform - pos: -35.5,-0.5 - parent: 2 - - uid: 13722 - components: - - type: Transform - pos: -15.5,-20.5 - parent: 2 - - uid: 13724 - components: - - type: Transform - pos: 60.5,-17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29429 - - uid: 13725 - components: - - type: Transform - pos: 47.5,-10.5 - parent: 2 - - uid: 13726 - components: - - type: Transform - pos: 48.5,-10.5 - parent: 2 - - uid: 13727 - components: - - type: Transform - pos: 8.5,-38.5 - parent: 2 - - uid: 13728 + - uid: 4722 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-17.5 + pos: 84.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 29429 - - 29441 - - uid: 13729 + - uid: 4723 components: - type: Transform - pos: -17.5,-43.5 + rot: 1.5707963267948966 rad + pos: 84.5,50.5 parent: 2 - - uid: 13730 + - uid: 4742 + components: + - type: Transform + pos: 85.5,56.5 + parent: 2 + - uid: 4743 + components: + - type: Transform + pos: 85.5,55.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: 84.5,60.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: 84.5,59.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: 84.5,58.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: 85.5,60.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: 85.5,61.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: 86.5,61.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + pos: 85.5,54.5 + parent: 2 + - uid: 4798 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-2.5 + pos: 73.5,17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - 13561 - - 97 - - uid: 13731 - components: - - type: Transform - pos: 1.5,22.5 - parent: 2 - - uid: 13732 + - uid: 4799 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-2.5 + pos: 74.5,21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - 13561 - - 97 - - uid: 13734 - components: - - type: Transform - pos: 3.5,24.5 - parent: 2 - - uid: 13736 - components: - - type: Transform - pos: 2.5,22.5 - parent: 2 - - uid: 13737 - components: - - type: Transform - pos: 3.5,23.5 - parent: 2 - - uid: 13739 - components: - - type: Transform - pos: -58.5,2.5 - parent: 2 - - uid: 13740 - components: - - type: Transform - pos: 34.5,-15.5 - parent: 2 - - uid: 13741 - components: - - type: Transform - pos: 65.5,-58.5 - parent: 2 - - uid: 13742 - components: - - type: Transform - pos: 32.5,-56.5 - parent: 2 - - uid: 13743 + - uid: 4804 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-2.5 + pos: 73.5,21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - 13561 - - 97 - - uid: 13744 + - uid: 4933 components: - type: Transform - pos: 18.5,-12.5 + rot: -1.5707963267948966 rad + pos: -125.5,50.5 parent: 2 - - uid: 13745 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 2 - - uid: 13746 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 2 - - uid: 13747 - components: - - type: Transform - pos: 41.5,-12.5 - parent: 2 - - uid: 13748 - components: - - type: Transform - pos: 41.5,-13.5 - parent: 2 - - uid: 13749 - components: - - type: Transform - pos: 41.5,-14.5 - parent: 2 - - uid: 13750 - components: - - type: Transform - pos: 17.5,17.5 - parent: 2 - - uid: 13752 - components: - - type: Transform - pos: 25.5,-15.5 - parent: 2 - - uid: 13753 - components: - - type: Transform - pos: -12.5,-9.5 - parent: 2 - - uid: 13754 - components: - - type: Transform - pos: -12.5,-8.5 - parent: 2 - - uid: 13755 - components: - - type: Transform - pos: -12.5,-7.5 - parent: 2 - - uid: 13756 - components: - - type: Transform - pos: 11.5,-9.5 - parent: 2 - - uid: 13757 - components: - - type: Transform - pos: 23.5,-19.5 - parent: 2 - - uid: 13758 - components: - - type: Transform - pos: -18.5,-24.5 - parent: 2 - - uid: 13759 - components: - - type: Transform - pos: -62.5,-5.5 - parent: 2 - - uid: 13761 - components: - - type: Transform - pos: 26.5,-15.5 - parent: 2 - - uid: 13762 - components: - - type: Transform - pos: -62.5,1.5 - parent: 2 - - uid: 13763 - components: - - type: Transform - pos: -62.5,-4.5 - parent: 2 - - uid: 13764 - components: - - type: Transform - pos: -18.5,-23.5 - parent: 2 - - uid: 13765 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 2 - - uid: 13766 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 2 - - uid: 13768 - components: - - type: Transform - pos: -34.5,-14.5 - parent: 2 - - uid: 13769 - components: - - type: Transform - pos: -49.5,-18.5 - parent: 2 - - uid: 13770 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - - uid: 13771 - components: - - type: Transform - pos: 50.5,10.5 - parent: 2 - - uid: 13772 - components: - - type: Transform - pos: 56.5,10.5 - parent: 2 - - uid: 13773 - components: - - type: Transform - pos: -61.5,11.5 - parent: 2 - - uid: 13774 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 2 - - uid: 13775 - components: - - type: Transform - pos: 34.5,3.5 - parent: 2 - - uid: 13776 - components: - - type: Transform - pos: 4.5,-58.5 - parent: 2 - - uid: 13777 - components: - - type: Transform - pos: 8.5,-58.5 - parent: 2 - - uid: 13779 - components: - - type: Transform - pos: 2.5,-43.5 - parent: 2 - - uid: 13780 - components: - - type: Transform - pos: 35.5,-26.5 - parent: 2 - - uid: 13781 - components: - - type: Transform - pos: 36.5,-26.5 - parent: 2 - - uid: 13788 - components: - - type: Transform - pos: 3.5,-45.5 - parent: 2 - - uid: 13789 - components: - - type: Transform - pos: 49.5,-61.5 - parent: 2 - - uid: 13791 - components: - - type: Transform - pos: -66.5,11.5 - parent: 2 - - uid: 13793 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 2 - - uid: 13794 + - uid: 4960 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-2.5 + pos: -13.5,88.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - 13561 - - 97 - - uid: 13795 + - uid: 4983 + components: + - type: Transform + pos: 85.5,52.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + pos: 85.5,51.5 + parent: 2 + - uid: 5001 + components: + - type: Transform + pos: 3.5,80.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + pos: -109.5,59.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + pos: -115.5,35.5 + parent: 2 + - uid: 5244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,83.5 + parent: 2 + - uid: 5283 + components: + - type: Transform + pos: -59.5,163.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: -109.5,57.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + pos: 70.5,13.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + pos: 70.5,14.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + pos: 70.5,15.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + pos: 67.5,7.5 + parent: 2 + - uid: 5356 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 + - uid: 5357 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + pos: 64.5,7.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: 68.5,9.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + pos: 67.5,9.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + pos: 66.5,9.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + pos: -109.5,58.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: 73.5,7.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + pos: 65.5,7.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,42.5 + parent: 2 + - uid: 5445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,45.5 + parent: 2 + - uid: 5454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,46.5 + parent: 2 + - uid: 5485 + components: + - type: Transform + pos: -109.5,56.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + pos: 88.5,26.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: 76.5,9.5 + parent: 2 + - uid: 5693 + components: + - type: Transform + pos: 66.5,13.5 + parent: 2 + - uid: 5695 + components: + - type: Transform + pos: 74.5,11.5 + parent: 2 + - uid: 5720 + components: + - type: Transform + pos: 73.5,13.5 + parent: 2 + - uid: 5722 + components: + - type: Transform + pos: 72.5,13.5 + parent: 2 + - uid: 5727 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 5729 + components: + - type: Transform + pos: 66.5,11.5 + parent: 2 + - uid: 5730 + components: + - type: Transform + pos: 70.5,5.5 + parent: 2 + - uid: 5731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,56.5 + parent: 2 + - uid: 5737 + components: + - type: Transform + pos: 88.5,27.5 + parent: 2 + - uid: 5739 + components: + - type: Transform + pos: 87.5,29.5 + parent: 2 + - uid: 5742 + components: + - type: Transform + pos: 84.5,29.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: 82.5,29.5 + parent: 2 + - uid: 5746 + components: + - type: Transform + pos: 79.5,29.5 + parent: 2 + - uid: 5747 + components: + - type: Transform + pos: 78.5,29.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + pos: -109.5,55.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + pos: 68.5,7.5 + parent: 2 + - uid: 5767 + components: + - type: Transform + pos: 70.5,8.5 + parent: 2 + - uid: 5768 + components: + - type: Transform + pos: 70.5,7.5 + parent: 2 + - uid: 5770 + components: + - type: Transform + pos: 76.5,13.5 + parent: 2 + - uid: 5780 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 5840 + components: + - type: Transform + pos: 73.5,11.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + pos: 70.5,6.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 74.5,13.5 + parent: 2 + - uid: 5884 + components: + - type: Transform + pos: 72.5,11.5 + parent: 2 + - uid: 5885 + components: + - type: Transform + pos: 68.5,13.5 + parent: 2 + - uid: 5886 + components: + - type: Transform + pos: 67.5,13.5 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: 75.5,13.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - uid: 5889 + components: + - type: Transform + pos: 76.5,11.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + pos: 75.5,11.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + pos: 76.5,7.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: 72.5,7.5 + parent: 2 + - uid: 6073 + components: + - type: Transform + pos: 73.5,9.5 + parent: 2 + - uid: 6245 + components: + - type: Transform + pos: 74.5,7.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + pos: 74.5,9.5 + parent: 2 + - uid: 6284 + components: + - type: Transform + pos: 75.5,7.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: 72.5,9.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: 75.5,9.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + pos: -64.5,162.5 + parent: 2 + - uid: 6407 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-2.5 + pos: 74.5,17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - 13561 - - 97 - - uid: 13796 + - uid: 6408 components: - type: Transform - pos: 23.5,-25.5 + rot: 3.141592653589793 rad + pos: 77.5,18.5 parent: 2 - - uid: 13797 + - uid: 6416 components: - type: Transform - pos: 23.5,-24.5 + pos: -54.5,-4.5 parent: 2 - - uid: 13798 + - uid: 6419 components: - type: Transform - pos: -63.5,-12.5 + rot: 3.141592653589793 rad + pos: 33.5,60.5 parent: 2 - - uid: 13799 + - uid: 6420 components: - type: Transform - pos: -64.5,-12.5 + rot: 3.141592653589793 rad + pos: 77.5,19.5 parent: 2 - - uid: 13800 + - uid: 6438 components: - type: Transform - pos: -63.5,7.5 + rot: 3.141592653589793 rad + pos: 37.5,59.5 parent: 2 - - uid: 13801 + - uid: 6594 components: - type: Transform - pos: -64.5,7.5 + pos: 105.5,41.5 parent: 2 - - uid: 13802 + - uid: 6596 components: - type: Transform - pos: -51.5,17.5 + rot: -1.5707963267948966 rad + pos: -108.5,53.5 parent: 2 - - uid: 13803 + - uid: 7238 components: - type: Transform - pos: -51.5,18.5 + rot: 1.5707963267948966 rad + pos: -76.5,-9.5 parent: 2 - - uid: 13804 + - uid: 7342 components: - type: Transform - pos: -51.5,9.5 + rot: 1.5707963267948966 rad + pos: -77.5,42.5 parent: 2 - - uid: 13805 + - uid: 7350 components: - type: Transform - pos: -51.5,10.5 + pos: 54.5,43.5 parent: 2 - - uid: 13806 + - uid: 7351 components: - type: Transform - pos: -51.5,11.5 + pos: 54.5,42.5 parent: 2 - - uid: 13808 + - uid: 7352 components: - type: Transform - pos: 59.5,11.5 + pos: 54.5,41.5 parent: 2 - - uid: 13809 + - uid: 7438 components: - type: Transform - pos: 64.5,14.5 + pos: -66.5,172.5 parent: 2 - - uid: 13810 + - uid: 7439 components: - type: Transform - pos: 75.5,-64.5 + pos: -58.5,171.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,40.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,40.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,86.5 + parent: 2 + - uid: 7706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,132.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,131.5 + parent: 2 + - uid: 7708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,130.5 + parent: 2 + - uid: 7709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,129.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,128.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,128.5 + parent: 2 + - uid: 7712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,132.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,46.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,56.5 + parent: 2 + - uid: 8111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,155.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,155.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,155.5 + parent: 2 + - uid: 8188 + components: + - type: Transform + pos: -91.5,155.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + pos: -90.5,155.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,22.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,24.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 8529 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 8530 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 + - uid: 8546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,203.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,203.5 + parent: 2 + - uid: 8552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,203.5 + parent: 2 + - uid: 8564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,203.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -146.5,27.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -143.5,28.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,31.5 + parent: 2 + - uid: 8695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,23.5 + parent: 2 + - uid: 8827 + components: + - type: Transform + pos: 52.5,25.5 + parent: 2 + - uid: 8869 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 8980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,41.5 + parent: 2 + - uid: 8994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,41.5 + parent: 2 + - uid: 9001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,41.5 + parent: 2 + - uid: 9015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,40.5 + parent: 2 + - uid: 9018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,47.5 + parent: 2 + - uid: 9046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,39.5 + parent: 2 + - uid: 9047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,40.5 + parent: 2 + - uid: 9048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,41.5 + parent: 2 + - uid: 10077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,95.5 + parent: 2 + - uid: 10827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,50.5 + parent: 2 + - uid: 10876 + components: + - type: Transform + pos: -9.5,88.5 + parent: 2 + - uid: 10877 + components: + - type: Transform + pos: -8.5,88.5 + parent: 2 + - uid: 10878 + components: + - type: Transform + pos: -4.5,88.5 + parent: 2 + - uid: 10879 + components: + - type: Transform + pos: -3.5,88.5 + parent: 2 + - uid: 10880 + components: + - type: Transform + pos: -2.5,88.5 + parent: 2 + - uid: 10881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,88.5 + parent: 2 + - uid: 10882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,88.5 + parent: 2 + - uid: 10929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,89.5 + parent: 2 + - uid: 11033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,71.5 + parent: 2 + - uid: 11078 + components: + - type: Transform + pos: -124.5,18.5 + parent: 2 + - uid: 11229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,87.5 + parent: 2 + - uid: 11279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,47.5 + parent: 2 + - uid: 11482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,171.5 + parent: 2 + - uid: 11916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,74.5 + parent: 2 + - uid: 11917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,75.5 + parent: 2 + - uid: 11918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,76.5 + parent: 2 + - uid: 11919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,77.5 + parent: 2 + - uid: 11920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,81.5 + parent: 2 + - uid: 11921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,81.5 + parent: 2 + - uid: 11922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,82.5 + parent: 2 + - uid: 11923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,83.5 + parent: 2 + - uid: 11924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,84.5 + parent: 2 + - uid: 11925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,85.5 + parent: 2 + - uid: 11926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,80.5 + parent: 2 + - uid: 11927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,81.5 + parent: 2 + - uid: 11928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,81.5 + parent: 2 + - uid: 11929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,73.5 + parent: 2 + - uid: 11930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,73.5 + parent: 2 + - uid: 11931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,73.5 + parent: 2 + - uid: 11932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,72.5 + parent: 2 + - uid: 12032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,89.5 + parent: 2 + - uid: 12594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,40.5 + parent: 2 + - uid: 12751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,22.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,23.5 + parent: 2 + - uid: 12765 + components: + - type: Transform + pos: -133.5,48.5 + parent: 2 + - uid: 12816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,45.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,44.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,42.5 + parent: 2 + - uid: 12909 + components: + - type: Transform + pos: -133.5,49.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,43.5 + parent: 2 + - uid: 13154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,69.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + pos: -133.5,50.5 + parent: 2 + - uid: 13324 + components: + - type: Transform + pos: 3.5,71.5 + parent: 2 + - uid: 13331 + components: + - type: Transform + pos: 2.5,78.5 + parent: 2 + - uid: 13332 + components: + - type: Transform + pos: 2.5,77.5 + parent: 2 + - uid: 13333 + components: + - type: Transform + pos: 2.5,76.5 + parent: 2 + - uid: 13334 + components: + - type: Transform + pos: 2.5,73.5 + parent: 2 + - uid: 13335 + components: + - type: Transform + pos: 2.5,72.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + pos: 2.5,71.5 + parent: 2 + - uid: 13337 + components: + - type: Transform + pos: 1.5,71.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: -0.5,71.5 + parent: 2 + - uid: 13339 + components: + - type: Transform + pos: 0.5,71.5 + parent: 2 + - uid: 13362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,44.5 parent: 2 - uid: 13811 components: - type: Transform - pos: 75.5,-60.5 + rot: -1.5707963267948966 rad + pos: -94.5,98.5 parent: 2 - uid: 13812 - components: - - type: Transform - pos: 65.5,-63.5 - parent: 2 - - uid: 13813 - components: - - type: Transform - pos: -16.5,-47.5 - parent: 2 - - uid: 13814 - components: - - type: Transform - pos: 54.5,13.5 - parent: 2 - - uid: 13815 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - uid: 13816 - components: - - type: Transform - pos: 24.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - uid: 13818 - components: - - type: Transform - pos: 2.5,-56.5 - parent: 2 - - uid: 13819 - components: - - type: Transform - pos: 3.5,-50.5 - parent: 2 - - uid: 13820 - components: - - type: Transform - pos: 3.5,-64.5 - parent: 2 - - uid: 13821 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,-27.5 + pos: -84.5,94.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - 54 - - uid: 13822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - 29440 - - uid: 13823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-27.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - 29440 - - uid: 13824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 90 - - uid: 13825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 90 - - uid: 13826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 90 - - uid: 13827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 90 - - uid: 13829 - components: - - type: Transform - pos: 82.5,-43.5 - parent: 2 - - uid: 13830 - components: - - type: Transform - pos: 68.5,-63.5 - parent: 2 - - uid: 13831 - components: - - type: Transform - pos: -33.5,-55.5 - parent: 2 - - uid: 13832 - components: - - type: Transform - pos: 45.5,8.5 - parent: 2 - - uid: 13835 - components: - - type: Transform - pos: 82.5,-54.5 - parent: 2 - - uid: 13836 - components: - - type: Transform - pos: -23.5,-47.5 - parent: 2 - - uid: 13837 - components: - - type: Transform - pos: 56.5,5.5 - parent: 2 - - uid: 13839 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 2 - - uid: 13840 - components: - - type: Transform - pos: -18.5,-34.5 - parent: 2 - - uid: 13841 - components: - - type: Transform - pos: 7.5,29.5 - parent: 2 - - uid: 13842 - components: - - type: Transform - pos: 7.5,21.5 - parent: 2 - - uid: 13843 - components: - - type: Transform - pos: 7.5,20.5 - parent: 2 - - uid: 13844 - components: - - type: Transform - pos: 7.5,19.5 - parent: 2 - - uid: 13845 - components: - - type: Transform - pos: -15.5,20.5 - parent: 2 - - uid: 13846 - components: - - type: Transform - pos: -38.5,9.5 - parent: 2 - - uid: 13848 - components: - - type: Transform - pos: -48.5,6.5 - parent: 2 - - uid: 13849 - components: - - type: Transform - pos: -49.5,6.5 - parent: 2 - - uid: 13850 - components: - - type: Transform - pos: -63.5,-6.5 - parent: 2 - - uid: 13851 - components: - - type: Transform - pos: -64.5,-6.5 - parent: 2 - - uid: 13852 - components: - - type: Transform - pos: -42.5,12.5 - parent: 2 - - uid: 13853 - components: - - type: Transform - pos: -60.5,14.5 - parent: 2 - - uid: 13854 - components: - - type: Transform - pos: -55.5,-14.5 - parent: 2 - - uid: 13855 - components: - - type: Transform - pos: 55.5,-14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13569 - - 18 - - uid: 13856 - components: - - type: Transform - pos: 55.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13569 - - 18 - - uid: 13857 - components: - - type: Transform - pos: 55.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13569 - - 18 - - uid: 13859 - components: - - type: Transform - pos: -6.5,-71.5 - parent: 2 - - uid: 13860 - components: - - type: Transform - pos: -5.5,-71.5 - parent: 2 - - uid: 13861 - components: - - type: Transform - pos: -4.5,-71.5 - parent: 2 - - uid: 13862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 90 - - uid: 13863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 90 - - 53 - - uid: 13864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - uid: 13865 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 96 - - 95 - - uid: 13866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 95 - - uid: 16535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-52.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22 - - uid: 17491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,17.5 - parent: 2 - - uid: 21618 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20 - - uid: 21849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22027 - - uid: 21864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22027 - - uid: 21865 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22027 - - uid: 21866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22027 - - uid: 21867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22027 - - uid: 25323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,17.5 - parent: 2 - - uid: 29432 - components: - - type: Transform - pos: 63.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18 - - 29429 - - uid: 29433 - components: - - type: Transform - pos: 65.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18 - - 29429 - - uid: 29434 - components: - - type: Transform - pos: 64.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18 - - 29429 - - uid: 29436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - uid: 29437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - uid: 29438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 -- proto: Fireplace - entities: - - uid: 13867 - components: - - type: Transform - pos: 13.5,-34.5 - parent: 2 - - uid: 13868 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 2 - - uid: 29831 - components: - - type: Transform - pos: -58.5,-27.5 - parent: 2 -- proto: Flash - entities: - - uid: 11532 - components: - - type: Transform - pos: -5.7304726,-7.086277 - parent: 2 - - uid: 13871 - components: - - type: Transform - rot: 0.00028195229242555797 rad - pos: -56.26376,3.5820982 - parent: 2 - - uid: 13872 - components: - - type: Transform - pos: -10.669638,-34.384842 - parent: 2 - - uid: 13873 - components: - - type: Transform - pos: -13.480176,-16.37038 - parent: 2 -- proto: FlashlightLantern - entities: - - uid: 13874 - components: - - type: Transform - pos: 53.45759,-48.32746 - parent: 2 - - uid: 13876 - components: - - type: Transform - pos: 48.529552,11.266704 - parent: 2 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13877 - components: - - type: Transform - pos: 48.47014,7.514141 - parent: 2 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13879 - components: - - type: Transform - pos: 67.42922,18.532057 - parent: 2 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13880 - components: - - type: Transform - pos: 55.583378,18.000807 - parent: 2 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13882 - components: - - type: Transform - pos: -45.601074,22.357426 - parent: 2 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13884 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 2 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13885 - components: - - type: Transform - pos: 67.29663,-86.84046 - parent: 2 - - uid: 13886 - components: - - type: Transform - pos: -10.388388,-34.587967 - parent: 2 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13887 - components: - - type: Transform - pos: -4.4961033,-45.400856 - parent: 2 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13888 - components: - - type: Transform - pos: 6.4398823,-54.452927 - parent: 2 - - uid: 13889 - components: - - type: Transform - pos: 6.5805073,-54.6248 - parent: 2 - - uid: 13890 - components: - - type: Transform - pos: 69.42417,-53.31951 - parent: 2 - - uid: 13891 - components: - - type: Transform - pos: 69.5648,-53.522636 - parent: 2 - - uid: 13892 - components: - - type: Transform - pos: -28.559113,-32.33705 - parent: 2 - - uid: 13893 - components: - - type: Transform - pos: -28.371613,-32.602676 - parent: 2 - - uid: 13894 - components: - - type: Transform - pos: -19.543085,-5.225024 - parent: 2 - - uid: 17700 - components: - - type: Transform - pos: 72.48777,-46.988365 - parent: 2 - - uid: 29238 - components: - - type: Transform - pos: -39.921204,5.822184 - parent: 2 - - uid: 32146 - components: - - type: Transform - pos: -39.93683,5.665934 - parent: 2 -- proto: FloorDrain - entities: - - uid: 13903 - components: - - type: Transform - pos: 24.5,-32.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 13904 - components: - - type: Transform - pos: 20.5,-18.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 13905 - components: - - type: Transform - pos: 10.5,-22.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 13906 - components: - - type: Transform - pos: -50.5,-6.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 13907 - components: - - type: Transform - pos: 15.5,5.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 13908 - components: - - type: Transform - pos: 38.5,-1.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 24097 - components: - - type: Transform - pos: 43.5,-9.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 30582 - components: - - type: Transform - pos: -31.5,43.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 31684 - components: - - type: Transform - pos: -37.5,-5.5 - parent: 2 - - type: Fixtures - fixtures: {} -- proto: FloorTileItemEighties - entities: - - uid: 13910 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13911 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13912 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13913 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13914 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13915 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13916 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13917 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13918 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13919 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13920 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13921 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13922 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13923 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13924 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13925 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13926 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13927 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13928 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13929 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13930 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13931 - components: - - type: Transform - pos: 60.499405,18.470098 - parent: 2 - - uid: 13932 - components: - - type: Transform - pos: 60.499405,18.485723 - parent: 2 - - uid: 13933 - components: - - type: Transform - pos: 60.499405,18.485723 - parent: 2 - - uid: 13934 - components: - - type: Transform - pos: 60.499405,18.485723 - parent: 2 - - uid: 13935 - components: - - type: Transform - pos: 60.499405,18.485723 - parent: 2 - - uid: 13936 - components: - - type: Transform - pos: 60.499405,18.485723 - parent: 2 - - uid: 13937 - components: - - type: Transform - pos: 60.499405,18.485723 - parent: 2 - - uid: 13938 - components: - - type: Transform - pos: 60.499405,18.485723 - parent: 2 - - uid: 13939 - components: - - type: Transform - pos: 60.499405,18.485723 - parent: 2 -- proto: FolderSpawner - entities: - - uid: 10678 - components: - - type: Transform - pos: 25.359879,22.427805 - parent: 2 -- proto: FoodBowlBigTrash - entities: - - uid: 1044 - components: - - type: Transform - pos: -37.188065,29.591509 - parent: 2 -- proto: FoodBoxDonkpocket - entities: - - uid: 13940 - components: - - type: Transform - pos: 33.463158,-8.68618 - parent: 2 - - uid: 13941 - components: - - type: Transform - pos: 33.635033,-9.014305 - parent: 2 - - uid: 13942 - components: - - type: Transform - pos: -38.562927,-46.360855 - parent: 2 - - uid: 13943 - components: - - type: Transform - pos: 34.5,-53.5 - parent: 2 -- proto: FoodBoxDonkpocketPizza - entities: - - uid: 13944 - components: - - type: Transform - pos: 51.57733,-33.333336 - parent: 2 -- proto: FoodBoxDonkpocketTeriyaki - entities: - - uid: 13946 - components: - - type: Transform - parent: 20988 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodBoxDonut - entities: - - uid: 13949 - components: - - type: Transform - pos: 11.561949,-11.476662 - parent: 2 - - uid: 13950 - components: - - type: Transform - pos: 30.511852,-6.3850174 - parent: 2 - - uid: 20822 - components: - - type: Transform - pos: -4.523074,-9.471693 - parent: 2 - - uid: 29401 - components: - - type: Transform - pos: 59.56216,-7.3258986 - parent: 2 - - uid: 29811 - components: - - type: Transform - pos: -3.4764094,17.541271 - parent: 2 -- proto: FoodBreadBaguette - entities: - - uid: 13952 - components: - - type: Transform - pos: 36.032795,23.568642 - parent: 2 -- proto: FoodBreadPlain - entities: - - uid: 13953 - components: - - type: Transform - pos: 72.4948,-10.353836 - parent: 2 -- proto: FoodBurgerBig - entities: - - uid: 13954 - components: - - type: Transform - pos: 25.740248,-2.4375281 - parent: 2 -- proto: FoodCakeOrange - entities: - - uid: 29198 - components: - - type: MetaData - desc: Торт со сметановой начинкой! - name: торт из нон_стоп_сметаны - - type: Transform - pos: 71.3616,12.454024 - parent: 2 -- proto: FoodCartCold - entities: - - uid: 13955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,0.5 - parent: 2 -- proto: FoodCartHot - entities: - - uid: 13956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 2 -- proto: FoodCocoaBeans - entities: - - uid: 30721 - components: - - type: MetaData - name: говно медведя - - type: Transform - rot: 3.141592653589793 rad - pos: -30.785038,44.198708 - parent: 2 -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 8025 - components: - - type: Transform - pos: -12.475979,47.65245 - parent: 2 - - uid: 13957 - components: - - type: Transform - pos: -37.375427,-46.31398 - parent: 2 - - type: Tag - tags: [] -- proto: FoodCondimentPacketBbq - entities: - - uid: 13959 - components: - - type: Transform - pos: 35.36672,-5.0872984 - parent: 2 -- proto: FoodCondimentPacketHotsauce - entities: - - uid: 13960 - components: - - type: Transform - pos: 35.68917,-5.1027346 - parent: 2 -- proto: FoodCondimentPacketPepper - entities: - - uid: 13961 - components: - - type: Transform - pos: -35.798805,-43.6252 - parent: 2 - - type: Tag - tags: [] - - type: RefillableSolution - solution: food -- proto: FoodCondimentPacketSalt - entities: - - uid: 13962 - components: - - type: Transform - pos: -35.53318,-43.578323 - parent: 2 - - type: Tag - tags: [] - - type: RefillableSolution - solution: food -- proto: FoodCondimentPacketSoy - entities: - - uid: 13963 - components: - - type: Transform - pos: 35.52297,-4.9224586 - parent: 2 -- proto: FoodGoldenApple - entities: - - uid: 10240 - components: - - type: Transform - pos: -2.2808573,-22.195292 - parent: 2 -- proto: FoodKebabSkewer - entities: - - uid: 13967 - components: - - type: Transform - pos: 69.38562,-55.371544 - parent: 2 -- proto: FoodMealBearsteak - entities: - - uid: 2545 - components: - - type: MetaData - desc: Кто это блять поджёг? (Odleer) - name: дерьмо - - type: Transform - pos: -24.27563,31.819345 - parent: 2 -- proto: FoodMealMint - entities: - - uid: 13968 - components: - - type: Transform - pos: -35.361305,-43.28145 - parent: 2 -- proto: FoodMeatClown - entities: - - uid: 30819 - components: - - type: Transform - pos: 62.49209,26.467007 - parent: 2 -- proto: FoodMeatHuman - entities: - - uid: 30820 - components: - - type: Transform - pos: 62.333466,25.967007 - parent: 2 -- proto: FoodMeatRat - entities: - - uid: 30822 - components: - - type: Transform - pos: 61.71084,22.576382 - parent: 2 -- proto: FoodMeatRotten - entities: - - uid: 25355 - components: - - type: Transform - pos: 61.66159,26.607632 - parent: 2 - - uid: 30444 - components: - - type: Transform - pos: -31.41211,43.964714 - parent: 2 - - uid: 30445 - components: - - type: Transform - pos: -31.021484,44.683464 - parent: 2 - - uid: 30832 - components: - - type: Transform - pos: 62.364716,22.467007 - parent: 2 - - uid: 30834 - components: - - type: Transform - pos: 62.677216,23.045132 - parent: 2 -- proto: FoodMeatXeno - entities: - - uid: 30828 - components: - - type: Transform - pos: 62.570213,23.529507 - parent: 2 -- proto: FoodNoodles - entities: - - uid: 22702 - components: - - type: Transform - pos: 17.426722,-40.332794 - parent: 2 - - uid: 22760 - components: - - type: Transform - pos: 20.629847,-40.332794 - parent: 2 -- proto: FoodPieBananaCream - entities: - - uid: 13969 - components: - - type: Transform - pos: 55.5,17.5 - parent: 2 - - uid: 26620 - components: - - type: Transform - pos: 29.251835,23.528988 - parent: 2 - - uid: 26621 - components: - - type: Transform - pos: 29.408085,23.450863 - parent: 2 - - uid: 26638 - components: - - type: Transform - pos: 29.626835,23.513363 - parent: 2 - - uid: 27890 - components: - - type: Transform - pos: 0.53281784,-6.3525267 - parent: 2 - - uid: 29358 - components: - - type: Transform - pos: 31.177343,21.780838 - parent: 2 - - uid: 29359 - components: - - type: Transform - pos: 31.19124,21.766949 - parent: 2 - - uid: 29360 - components: - - type: Transform - pos: 31.19124,21.766949 - parent: 2 - - uid: 29364 - components: - - type: Transform - pos: 31.19124,21.766949 - parent: 2 - - uid: 29365 - components: - - type: Transform - pos: 31.19124,21.766949 - parent: 2 -- proto: FoodPlateSmall - entities: - - uid: 13970 - components: - - type: Transform - pos: 33.52693,-9.5239935 - parent: 2 - - uid: 13971 - components: - - type: Transform - pos: 35.454796,-5.2746096 - parent: 2 - - uid: 13972 - components: - - type: Transform - pos: 33.488422,-0.44428837 - parent: 2 - - uid: 13973 - components: - - type: Transform - pos: 33.485786,-0.57050383 - parent: 2 - - uid: 13974 - components: - - type: Transform - pos: 33.488422,-0.3177259 - parent: 2 -- proto: FoodPlateTrash - entities: - - uid: 14955 - components: - - type: Transform - pos: -36.542233,38.68306 - parent: 2 -- proto: FoodPoppy - entities: - - uid: 18201 - components: - - type: Transform - pos: 24.81014,13.5 - parent: 2 - - uid: 31316 - components: - - type: Transform - pos: 24.740696,13.5 - parent: 2 - - uid: 31317 - components: - - type: Transform - pos: 24.786993,13.5 - parent: 2 -- proto: FoodRiceBoiled - entities: - - uid: 10905 - components: - - type: Transform - pos: -54.550262,-7.2436934 - parent: 2 - - uid: 12216 - components: - - type: Transform - pos: -54.487762,-8.446818 - parent: 2 - - uid: 17786 - components: - - type: Transform - pos: -54.315887,-7.6030684 - parent: 2 - - uid: 23428 - components: - - type: Transform - pos: -54.675262,-7.9624434 - parent: 2 -- proto: FoodSnackPopcorn - entities: - - uid: 13976 - components: - - type: Transform - pos: 53.448444,-33.429512 - parent: 2 -- proto: FoodSnackSyndi - entities: - - uid: 31486 - components: - - type: Transform - pos: 59.094833,-77.15722 - parent: 2 - - uid: 31499 - components: - - type: Transform - pos: 57.5,-68.5 - parent: 2 -- proto: FoodSoupTomatoBlood - entities: - - uid: 13978 - components: - - type: Transform - pos: -54.5,3.5 - parent: 2 -- proto: FoodTartGapple - entities: - - uid: 24509 - components: - - type: Transform - pos: -2.3572462,-23.105015 - parent: 2 -- proto: FoodTinMRE - entities: - - uid: 13979 - components: - - type: Transform - pos: 80.451996,-57.478004 - parent: 2 -- proto: FoodTinPeachesMaint - entities: - - uid: 13980 - components: - - type: Transform - pos: -46.54512,13.835054 - parent: 2 - - uid: 13982 - components: - - type: Transform - pos: -37.41171,-48.284546 - parent: 2 -- proto: Fork - entities: - - uid: 22784 - components: - - type: Transform - pos: 17.520472,-40.332794 - parent: 2 - - uid: 22792 - components: - - type: Transform - pos: 20.536097,-40.34842 - parent: 2 -- proto: FuelDispenser - entities: - - uid: 29788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,4.5 - parent: 2 -- proto: GameMasterCircuitBoard - entities: - - uid: 20203 - components: - - type: Transform - parent: 19293 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: GasAnalyzer - entities: - - uid: 13985 - components: - - type: Transform - pos: -46.50418,1.7327793 - parent: 2 -- proto: GasFilter - entities: - - uid: 13785 - components: - - type: Transform - pos: 25.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13991 - components: - - type: Transform - pos: 29.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14854 - components: - - type: Transform - pos: 25.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 25037 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-83.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' -- proto: GasFilterFlipped - entities: - - uid: 918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-85.5 - parent: 2 - - uid: 11816 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-87.5 - parent: 2 - - uid: 13996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-89.5 - parent: 2 - - uid: 19338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasMinerNitrogenStationLarge - entities: - - uid: 14147 - components: - - type: Transform - pos: 26.5,-46.5 - parent: 2 -- proto: GasMinerOxygenStationLarge - entities: - - uid: 7549 - components: - - type: Transform - pos: 26.5,-44.5 - parent: 2 -- proto: GasMinerPlasma - entities: - - uid: 14946 - components: - - type: Transform - pos: 26.5,-66.5 - parent: 2 -- proto: GasMinerWaterVapor - entities: - - uid: 5754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-64.5 - parent: 2 -- proto: GasMixerFlipped - entities: - - uid: 14430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 21485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-66.5 - parent: 2 -- proto: GasOutletInjector - entities: - - uid: 950 - components: - - type: Transform - pos: 27.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10625 - components: - - type: Transform - pos: 27.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11777 - components: - - type: Transform - pos: 27.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-70.5 - parent: 2 - - uid: 26506 - components: - - type: Transform - pos: 27.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26647 - components: - - type: Transform - pos: 27.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPassiveGate - entities: - - uid: 14892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-48.5 - parent: 2 - - uid: 21172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-91.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 25042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPassiveVent - entities: - - uid: 949 - components: - - type: Transform - pos: 27.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5248 - components: - - type: Transform - pos: 71.5,-36.5 - parent: 2 - - uid: 5249 - components: - - type: Transform - pos: 69.5,-36.5 - parent: 2 - - uid: 5250 - components: - - type: Transform - pos: 73.5,-36.5 - parent: 2 - - uid: 9458 - components: - - type: Transform - pos: 75.5,-36.5 - parent: 2 - - uid: 10243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,35.5 - parent: 2 - - uid: 11153 - components: - - type: Transform - pos: 19.5,-88.5 - parent: 2 - - uid: 11168 - components: - - type: Transform - pos: 18.5,-88.5 - parent: 2 - - uid: 11180 - components: - - type: Transform - pos: 17.5,-88.5 - parent: 2 - - uid: 11288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-86.5 - parent: 2 - - uid: 11289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-86.5 - parent: 2 - - uid: 11518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-86.5 - parent: 2 - - uid: 14024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-0.5 - parent: 2 - - uid: 14263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 16710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-70.5 - parent: 2 - - uid: 18529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 18910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 18941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' -- proto: GasPipeBend - entities: - - uid: 866 - components: - - type: Transform - pos: -4.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1218 - components: - - type: Transform - pos: 24.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4264 - components: - - type: Transform - pos: -8.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4397 - components: - - type: Transform - pos: 13.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5664 - components: - - type: Transform - pos: 71.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-89.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 7523 - components: - - type: Transform - pos: 11.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8127 - components: - - type: Transform - pos: -10.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9225 - components: - - type: Transform - pos: -6.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 10866 - components: - - type: Transform - pos: 57.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,31.5 - parent: 2 - - uid: 11391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-76.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 12272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14051 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-33.5 - parent: 2 - - uid: 14052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-39.5 - parent: 2 - - uid: 14056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14057 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14058 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14062 - components: - - type: Transform - pos: 46.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14065 - components: - - type: Transform - pos: 62.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14085 - components: - - type: Transform - pos: 85.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14087 - components: - - type: Transform - pos: 79.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14093 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14094 - components: - - type: Transform - pos: 82.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14096 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-48.5 - parent: 2 - - uid: 14098 - components: - - type: Transform - pos: 40.5,8.5 - parent: 2 - - uid: 14099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14101 - components: - - type: Transform - pos: -7.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14104 - components: - - type: Transform - pos: 58.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14105 - components: - - type: Transform - pos: -8.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14109 - components: - - type: Transform - pos: 1.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14132 - components: - - type: Transform - pos: 1.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14134 - components: - - type: Transform - pos: -40.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14136 - components: - - type: Transform - pos: -38.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14143 - components: - - type: Transform - pos: -44.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,15.5 - parent: 2 - - uid: 14153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-35.5 - parent: 2 - - uid: 14157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14159 - components: - - type: Transform - pos: 16.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14161 - components: - - type: Transform - pos: 48.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14163 - components: - - type: Transform - pos: 67.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14165 - components: - - type: Transform - pos: 1.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-35.5 - parent: 2 - - uid: 14167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-33.5 - parent: 2 - - uid: 14174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14175 - components: - - type: Transform - pos: 8.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14177 - components: - - type: Transform - pos: 8.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14179 - components: - - type: Transform - pos: 9.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14185 - components: - - type: Transform - pos: -54.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14188 - components: - - type: Transform - pos: -64.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14189 - components: - - type: Transform - pos: 14.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14192 - components: - - type: Transform - pos: -53.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14193 - components: - - type: Transform - pos: -63.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14195 - components: - - type: Transform - pos: 16.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14199 - components: - - type: Transform - pos: -28.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14200 - components: - - type: Transform - pos: -27.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 14203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14206 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14207 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-6.5 + pos: -76.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14211 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14212 - components: - - type: Transform - pos: 8.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14213 - components: - - type: Transform - pos: 9.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-89.5 - parent: 2 - - uid: 14216 - components: - - type: Transform - pos: 23.5,-83.5 - parent: 2 - - uid: 14217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 14227 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-22.5 + pos: -76.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14230 - components: - - type: Transform - pos: 41.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14231 - components: - - type: Transform - pos: 39.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14232 - components: - - type: Transform - pos: 46.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14235 - components: - - type: Transform - pos: 37.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 14236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14237 - components: - - type: Transform - pos: 47.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14238 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-2.5 + pos: -76.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 14239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-3.5 + pos: -81.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-34.5 - parent: 2 - - uid: 14262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-83.5 - parent: 2 - - uid: 14266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14268 - components: - - type: Transform - pos: 72.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14269 - components: - - type: Transform - pos: 74.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14280 - components: - - type: Transform - pos: 67.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 14388 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-31.5 + pos: -83.5,99.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14405 + - uid: 14389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-49.5 + pos: -82.5,99.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14449 + - uid: 14708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-73.5 + pos: 86.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14851 + - uid: 14816 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-44.5 + pos: -69.5,87.5 parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14982 - components: - - type: Transform - pos: 11.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15150 + - uid: 14819 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-66.5 + pos: -69.5,88.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15494 - components: - - type: Transform - pos: 2.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16640 - components: - - type: Transform - pos: -4.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-92.5 - parent: 2 - - uid: 17029 + - uid: 14821 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-85.5 + pos: -71.5,88.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 17045 + - uid: 14822 components: - type: Transform - pos: -6.5,37.5 + rot: 1.5707963267948966 rad + pos: -73.5,88.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17119 + - uid: 14823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,88.5 + parent: 2 + - uid: 14824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,88.5 + parent: 2 + - uid: 14825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,88.5 + parent: 2 + - uid: 14826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,88.5 + parent: 2 + - uid: 14827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,88.5 + parent: 2 + - uid: 14828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,89.5 + parent: 2 + - uid: 14857 + components: + - type: Transform + pos: -80.5,95.5 + parent: 2 + - uid: 14858 + components: + - type: Transform + pos: -81.5,95.5 + parent: 2 + - uid: 14859 + components: + - type: Transform + pos: -80.5,94.5 + parent: 2 + - uid: 14860 + components: + - type: Transform + pos: -80.5,93.5 + parent: 2 + - uid: 14862 + components: + - type: Transform + pos: -82.5,95.5 + parent: 2 + - uid: 14870 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-51.5 + pos: -80.5,91.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17519 + - uid: 14871 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-69.5 + pos: -80.5,90.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17568 + - uid: 14872 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-68.5 + pos: -80.5,89.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18286 + - uid: 14873 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-44.5 + pos: -80.5,88.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18435 + - uid: 14874 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-58.5 + pos: -80.5,87.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18470 + - uid: 14875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,85.5 + parent: 2 + - uid: 14876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,84.5 + parent: 2 + - uid: 14890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,42.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + pos: -36.5,65.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + pos: -36.5,64.5 + parent: 2 + - uid: 15504 + components: + - type: Transform + pos: -36.5,63.5 + parent: 2 + - uid: 15505 + components: + - type: Transform + pos: -36.5,62.5 + parent: 2 + - uid: 15506 + components: + - type: Transform + pos: -35.5,62.5 + parent: 2 + - uid: 15507 + components: + - type: Transform + pos: -37.5,62.5 + parent: 2 + - uid: 15508 + components: + - type: Transform + pos: -38.5,62.5 + parent: 2 + - uid: 15579 + components: + - type: Transform + pos: -45.5,61.5 + parent: 2 + - uid: 15580 + components: + - type: Transform + pos: -46.5,61.5 + parent: 2 + - uid: 15581 + components: + - type: Transform + pos: -47.5,61.5 + parent: 2 + - uid: 15582 + components: + - type: Transform + pos: -48.5,61.5 + parent: 2 + - uid: 15583 + components: + - type: Transform + pos: -49.5,61.5 + parent: 2 + - uid: 15591 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 15789 + components: + - type: Transform + pos: -51.5,66.5 + parent: 2 + - uid: 15790 + components: + - type: Transform + pos: -51.5,67.5 + parent: 2 + - uid: 15791 + components: + - type: Transform + pos: -51.5,68.5 + parent: 2 + - uid: 15792 + components: + - type: Transform + pos: -51.5,70.5 + parent: 2 + - uid: 15793 + components: + - type: Transform + pos: -50.5,70.5 + parent: 2 + - uid: 15794 + components: + - type: Transform + pos: -50.5,71.5 + parent: 2 + - uid: 15795 + components: + - type: Transform + pos: -50.5,62.5 + parent: 2 + - uid: 15796 + components: + - type: Transform + pos: -50.5,61.5 + parent: 2 + - uid: 15797 + components: + - type: Transform + pos: -50.5,60.5 + parent: 2 + - uid: 15799 + components: + - type: Transform + pos: -50.5,56.5 + parent: 2 + - uid: 15800 + components: + - type: Transform + pos: -49.5,56.5 + parent: 2 + - uid: 15801 + components: + - type: Transform + pos: -50.5,57.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + pos: -50.5,58.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + pos: -49.5,73.5 + parent: 2 + - uid: 15854 + components: + - type: Transform + pos: -50.5,73.5 + parent: 2 + - uid: 15855 + components: + - type: Transform + pos: -51.5,73.5 + parent: 2 + - uid: 15856 + components: + - type: Transform + pos: -54.5,75.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + pos: -53.5,75.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + pos: -53.5,76.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + pos: -53.5,74.5 + parent: 2 + - uid: 15860 + components: + - type: Transform + pos: -53.5,81.5 + parent: 2 + - uid: 15861 + components: + - type: Transform + pos: -53.5,80.5 + parent: 2 + - uid: 15862 + components: + - type: Transform + pos: -52.5,81.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + pos: -51.5,81.5 + parent: 2 + - uid: 15864 + components: + - type: Transform + pos: -53.5,82.5 + parent: 2 + - uid: 15865 + components: + - type: Transform + pos: -53.5,86.5 + parent: 2 + - uid: 15866 + components: + - type: Transform + pos: -53.5,87.5 + parent: 2 + - uid: 16068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,87.5 + parent: 2 + - uid: 16069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,85.5 + parent: 2 + - uid: 16070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,84.5 + parent: 2 + - uid: 16071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,82.5 + parent: 2 + - uid: 16343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,57.5 + parent: 2 + - uid: 16416 + components: + - type: Transform + pos: -95.5,53.5 + parent: 2 + - uid: 16749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,68.5 + parent: 2 + - uid: 16913 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 13386 + - uid: 16940 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 13386 + - uid: 16941 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 13386 + - uid: 16942 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 13386 + - uid: 16972 + components: + - type: Transform + pos: -4.5,2.5 + parent: 13386 + - uid: 16973 + components: + - type: Transform + pos: -4.5,5.5 + parent: 13386 + - uid: 17080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,51.5 + parent: 2 + - uid: 17108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,53.5 + parent: 2 + - uid: 17191 + components: + - type: Transform + pos: -83.5,77.5 + parent: 2 + - uid: 17204 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-58.5 + pos: -80.5,83.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18528 + - uid: 17205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,82.5 + parent: 2 + - uid: 17206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,81.5 + parent: 2 + - uid: 17207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,78.5 + parent: 2 + - uid: 17208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,77.5 + parent: 2 + - uid: 17209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,77.5 + parent: 2 + - uid: 17210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,76.5 + parent: 2 + - uid: 17211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,77.5 + parent: 2 + - uid: 17212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,73.5 + parent: 2 + - uid: 17213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,72.5 + parent: 2 + - uid: 17214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,71.5 + parent: 2 + - uid: 17215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,70.5 + parent: 2 + - uid: 17216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,70.5 + parent: 2 + - uid: 17232 + components: + - type: Transform + pos: -78.5,70.5 + parent: 2 + - uid: 17233 + components: + - type: Transform + pos: -79.5,70.5 + parent: 2 + - uid: 17234 + components: + - type: Transform + pos: -74.5,70.5 + parent: 2 + - uid: 17235 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-58.5 + pos: -73.5,69.5 + parent: 2 + - uid: 17252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,70.5 + parent: 2 + - uid: 17253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,70.5 + parent: 2 + - uid: 17454 + components: + - type: Transform + pos: -45.5,68.5 + parent: 2 + - uid: 17466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,96.5 + parent: 2 + - uid: 17467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,95.5 + parent: 2 + - uid: 17499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,43.5 + parent: 2 + - uid: 17574 + components: + - type: Transform + pos: -47.5,71.5 + parent: 2 + - uid: 17581 + components: + - type: Transform + pos: -46.5,71.5 + parent: 2 + - uid: 17590 + components: + - type: Transform + pos: -46.5,70.5 + parent: 2 + - uid: 17685 + components: + - type: Transform + pos: -68.5,-8.5 + parent: 2 + - uid: 17773 + components: + - type: Transform + pos: -67.5,-9.5 + parent: 2 + - uid: 17793 + components: + - type: Transform + pos: -136.5,23.5 + parent: 2 + - uid: 17882 + components: + - type: Transform + pos: -122.5,60.5 + parent: 2 + - uid: 17929 + components: + - type: Transform + pos: -123.5,60.5 + parent: 2 + - uid: 17994 + components: + - type: Transform + pos: -124.5,38.5 + parent: 2 + - uid: 18037 + components: + - type: Transform + pos: 112.5,41.5 + parent: 2 + - uid: 18043 + components: + - type: Transform + pos: 112.5,43.5 + parent: 2 + - uid: 18048 + components: + - type: Transform + pos: 105.5,42.5 + parent: 2 + - uid: 18053 + components: + - type: Transform + pos: 105.5,65.5 + parent: 2 + - uid: 18054 + components: + - type: Transform + pos: 113.5,64.5 + parent: 2 + - uid: 18055 + components: + - type: Transform + pos: 105.5,64.5 + parent: 2 + - uid: 18057 + components: + - type: Transform + pos: 113.5,65.5 + parent: 2 + - uid: 18059 + components: + - type: Transform + pos: 111.5,64.5 + parent: 2 + - uid: 18146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,61.5 + parent: 2 + - uid: 18147 + components: + - type: Transform + pos: -121.5,60.5 + parent: 2 + - uid: 18152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,61.5 + parent: 2 + - uid: 18153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -122.5,61.5 + parent: 2 + - uid: 18156 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 18164 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 18172 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 18173 + components: + - type: Transform + pos: -67.5,-5.5 + parent: 2 + - uid: 18174 + components: + - type: Transform + pos: -67.5,-6.5 + parent: 2 + - uid: 18210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,60.5 + parent: 2 + - uid: 18215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,59.5 + parent: 2 + - uid: 18221 + components: + - type: Transform + pos: -74.5,48.5 + parent: 2 + - uid: 18231 + components: + - type: Transform + pos: 111.5,65.5 + parent: 2 + - uid: 18250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,42.5 + parent: 2 + - uid: 18256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,61.5 + parent: 2 + - uid: 18305 + components: + - type: Transform + pos: -27.5,211.5 + parent: 2 + - uid: 18429 + components: + - type: Transform + pos: -75.5,48.5 + parent: 2 + - uid: 18536 + components: + - type: Transform + pos: -86.5,32.5 + parent: 2 + - uid: 18561 + components: + - type: Transform + pos: -29.5,212.5 + parent: 2 + - uid: 18563 + components: + - type: Transform + pos: 118.5,48.5 + parent: 2 + - uid: 18610 + components: + - type: Transform + pos: 112.5,42.5 + parent: 2 + - uid: 18616 + components: + - type: Transform + pos: -80.5,51.5 + parent: 2 + - uid: 18627 + components: + - type: Transform + pos: -65.5,-5.5 + parent: 2 + - uid: 18633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,61.5 + parent: 2 + - uid: 18638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -121.5,61.5 + parent: 2 + - uid: 18646 + components: + - type: Transform + pos: -67.5,-7.5 + parent: 2 + - uid: 18648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,61.5 + parent: 2 + - uid: 18716 + components: + - type: Transform + pos: 105.5,43.5 + parent: 2 + - uid: 18734 + components: + - type: Transform + pos: -107.5,40.5 + parent: 2 + - uid: 18765 + components: + - type: Transform + pos: -76.5,34.5 + parent: 2 + - uid: 18773 + components: + - type: Transform + pos: -86.5,33.5 + parent: 2 + - uid: 18777 + components: + - type: Transform + pos: -75.5,34.5 + parent: 2 + - uid: 18779 + components: + - type: Transform + pos: -74.5,34.5 + parent: 2 + - uid: 18808 + components: + - type: Transform + pos: 103.5,65.5 + parent: 2 + - uid: 18844 + components: + - type: Transform + pos: 103.5,64.5 + parent: 2 + - uid: 18848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,139.5 + parent: 2 + - uid: 18864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,160.5 + parent: 2 + - uid: 18885 + components: + - type: Transform + pos: -76.5,48.5 + parent: 2 + - uid: 18980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,157.5 + parent: 2 + - uid: 19059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,161.5 + parent: 2 + - uid: 19060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,159.5 + parent: 2 + - uid: 19061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,163.5 + parent: 2 + - uid: 19062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,156.5 + parent: 2 + - uid: 19071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,158.5 + parent: 2 + - uid: 19073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,159.5 + parent: 2 + - uid: 19074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,162.5 + parent: 2 + - uid: 19077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,161.5 + parent: 2 + - uid: 19078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,159.5 + parent: 2 + - uid: 19082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,159.5 + parent: 2 + - uid: 19083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,161.5 + parent: 2 + - uid: 19084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,161.5 + parent: 2 + - uid: 19123 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 19124 + components: + - type: Transform + pos: -67.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 19466 components: - type: Transform - pos: 17.5,-67.5 + rot: 1.5707963267948966 rad + pos: -97.5,164.5 parent: 2 - - uid: 19603 + - uid: 19524 + components: + - type: Transform + pos: -122.5,38.5 + parent: 2 + - uid: 19525 + components: + - type: Transform + pos: -124.5,39.5 + parent: 2 + - uid: 19695 + components: + - type: Transform + pos: -121.5,33.5 + parent: 2 + - uid: 19708 + components: + - type: Transform + pos: -121.5,34.5 + parent: 2 + - uid: 19732 + components: + - type: Transform + pos: -45.5,66.5 + parent: 2 + - uid: 19793 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,18.5 + pos: -135.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19604 + - uid: 19794 components: - type: Transform rot: 3.141592653589793 rad + pos: -135.5,48.5 + parent: 2 + - uid: 20039 + components: + - type: Transform + pos: -46.5,66.5 + parent: 2 + - uid: 20040 + components: + - type: Transform + pos: -46.5,67.5 + parent: 2 + - uid: 20448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,16.5 + parent: 2 + - uid: 20487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,49.5 + parent: 2 + - uid: 20777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,48.5 + parent: 2 + - uid: 20798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,139.5 + parent: 2 + - uid: 20821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,139.5 + parent: 2 + - uid: 20830 + components: + - type: Transform + pos: -46.5,68.5 + parent: 2 + - uid: 20921 + components: + - type: Transform + pos: -27.5,212.5 + parent: 2 + - uid: 20930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,50.5 + parent: 2 + - uid: 20932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,49.5 + parent: 2 + - uid: 21195 + components: + - type: Transform + pos: -123.5,39.5 + parent: 2 + - uid: 21272 + components: + - type: Transform + pos: -66.5,169.5 + parent: 2 + - uid: 21274 + components: + - type: Transform + pos: -66.5,171.5 + parent: 2 + - uid: 21275 + components: + - type: Transform + pos: -66.5,173.5 + parent: 2 + - uid: 21276 + components: + - type: Transform + pos: -66.5,174.5 + parent: 2 + - uid: 21277 + components: + - type: Transform + pos: -57.5,169.5 + parent: 2 + - uid: 21278 + components: + - type: Transform + pos: -58.5,169.5 + parent: 2 + - uid: 21279 + components: + - type: Transform + pos: -60.5,169.5 + parent: 2 + - uid: 21280 + components: + - type: Transform + pos: -59.5,169.5 + parent: 2 + - uid: 21281 + components: + - type: Transform + pos: -61.5,169.5 + parent: 2 + - uid: 21282 + components: + - type: Transform + pos: -59.5,168.5 + parent: 2 + - uid: 21283 + components: + - type: Transform + pos: -59.5,167.5 + parent: 2 + - uid: 21284 + components: + - type: Transform + pos: -66.5,162.5 + parent: 2 + - uid: 21285 + components: + - type: Transform + pos: -65.5,162.5 + parent: 2 + - uid: 21286 + components: + - type: Transform + pos: -66.5,163.5 + parent: 2 + - uid: 21287 + components: + - type: Transform + pos: -66.5,164.5 + parent: 2 + - uid: 21288 + components: + - type: Transform + pos: -63.5,162.5 + parent: 2 + - uid: 21289 + components: + - type: Transform + pos: -61.5,162.5 + parent: 2 + - uid: 21290 + components: + - type: Transform + pos: -62.5,162.5 + parent: 2 + - uid: 21291 + components: + - type: Transform + pos: -60.5,162.5 + parent: 2 + - uid: 21292 + components: + - type: Transform + pos: -60.5,161.5 + parent: 2 + - uid: 21323 + components: + - type: Transform + pos: -122.5,39.5 + parent: 2 + - uid: 21435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,39.5 + parent: 2 + - uid: 21447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,53.5 + parent: 2 + - uid: 21459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,15.5 + parent: 2 + - uid: 22108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,44.5 + parent: 2 + - uid: 22468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,169.5 + parent: 2 + - uid: 22672 + components: + - type: Transform + pos: -136.5,24.5 + parent: 2 + - uid: 22716 + components: + - type: Transform + pos: -47.5,67.5 + parent: 2 + - uid: 22875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,38.5 + parent: 2 + - uid: 22876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,38.5 + parent: 2 + - uid: 22954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,40.5 + parent: 2 + - uid: 23051 + components: + - type: Transform + pos: -133.5,43.5 + parent: 2 + - uid: 23112 + components: + - type: Transform + pos: -45.5,67.5 + parent: 2 + - uid: 23113 + components: + - type: Transform + pos: -44.5,66.5 + parent: 2 + - uid: 23199 + components: + - type: Transform + pos: -128.5,57.5 + parent: 2 + - uid: 23208 + components: + - type: Transform + pos: -44.5,67.5 + parent: 2 + - uid: 23209 + components: + - type: Transform + pos: -133.5,47.5 + parent: 2 + - uid: 23210 + components: + - type: Transform + pos: -133.5,44.5 + parent: 2 + - uid: 23211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,50.5 + parent: 2 + - uid: 23213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,43.5 + parent: 2 + - uid: 23366 + components: + - type: Transform + pos: -136.5,25.5 + parent: 2 + - uid: 23526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,161.5 + parent: 2 + - uid: 23573 + components: + - type: Transform + pos: -136.5,26.5 + parent: 2 + - uid: 23691 + components: + - type: Transform + pos: -136.5,27.5 + parent: 2 + - uid: 23692 + components: + - type: Transform + pos: -136.5,28.5 + parent: 2 + - uid: 23693 + components: + - type: Transform + pos: -136.5,29.5 + parent: 2 + - uid: 23695 + components: + - type: Transform + pos: -136.5,32.5 + parent: 2 + - uid: 23696 + components: + - type: Transform + pos: -136.5,33.5 + parent: 2 + - uid: 23697 + components: + - type: Transform + pos: -137.5,34.5 + parent: 2 + - uid: 23721 + components: + - type: Transform + pos: 11.5,171.5 + parent: 2 + - uid: 23776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,29.5 + parent: 2 + - uid: 23822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,29.5 + parent: 2 + - uid: 23846 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - uid: 23847 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 23938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,38.5 + parent: 2 + - uid: 23960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,29.5 + parent: 2 + - uid: 23964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,29.5 + parent: 2 + - uid: 23972 + components: + - type: Transform + pos: -16.5,173.5 + parent: 2 + - uid: 23973 + components: + - type: Transform + pos: -29.5,209.5 + parent: 2 + - uid: 23974 + components: + - type: Transform + pos: -28.5,209.5 + parent: 2 + - uid: 23975 + components: + - type: Transform + pos: -27.5,209.5 + parent: 2 + - uid: 23976 + components: + - type: Transform + pos: -25.5,209.5 + parent: 2 + - uid: 23977 + components: + - type: Transform + pos: -24.5,209.5 + parent: 2 + - uid: 23978 + components: + - type: Transform + pos: -23.5,209.5 + parent: 2 + - uid: 23979 + components: + - type: Transform + pos: -24.5,208.5 + parent: 2 + - uid: 23980 + components: + - type: Transform + pos: -25.5,205.5 + parent: 2 + - uid: 23981 + components: + - type: Transform + pos: -24.5,207.5 + parent: 2 + - uid: 23982 + components: + - type: Transform + pos: -24.5,205.5 + parent: 2 + - uid: 23983 + components: + - type: Transform + pos: -24.5,206.5 + parent: 2 + - uid: 23991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -130.5,38.5 + parent: 2 + - uid: 24009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,212.5 + parent: 2 + - uid: 24010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,212.5 + parent: 2 + - uid: 24011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,213.5 + parent: 2 + - uid: 24012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,213.5 + parent: 2 + - uid: 24013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,213.5 + parent: 2 + - uid: 24014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,213.5 + parent: 2 + - uid: 24015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,213.5 + parent: 2 + - uid: 24016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,213.5 + parent: 2 + - uid: 24017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,213.5 + parent: 2 + - uid: 24018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,213.5 + parent: 2 + - uid: 24019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,212.5 + parent: 2 + - uid: 24024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,43.5 + parent: 2 + - uid: 24034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,29.5 + parent: 2 + - uid: 24035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,29.5 + parent: 2 + - uid: 24039 + components: + - type: Transform + pos: 0.5,210.5 + parent: 2 + - uid: 24040 + components: + - type: Transform + pos: -0.5,210.5 + parent: 2 + - uid: 24041 + components: + - type: Transform + pos: -1.5,210.5 + parent: 2 + - uid: 24042 + components: + - type: Transform + pos: -2.5,210.5 + parent: 2 + - uid: 24043 + components: + - type: Transform + pos: -3.5,210.5 + parent: 2 + - uid: 24044 + components: + - type: Transform + pos: -3.5,209.5 + parent: 2 + - uid: 24045 + components: + - type: Transform + pos: -3.5,208.5 + parent: 2 + - uid: 24046 + components: + - type: Transform + pos: -18.5,209.5 + parent: 2 + - uid: 24047 + components: + - type: Transform + pos: -19.5,209.5 + parent: 2 + - uid: 24059 + components: + - type: Transform + pos: -81.5,145.5 + parent: 2 + - uid: 24060 + components: + - type: Transform + pos: 2.5,208.5 + parent: 2 + - uid: 24061 + components: + - type: Transform + pos: 2.5,209.5 + parent: 2 + - uid: 24062 + components: + - type: Transform + pos: 3.5,208.5 + parent: 2 + - uid: 24063 + components: + - type: Transform + pos: 3.5,209.5 + parent: 2 + - uid: 24064 + components: + - type: Transform + pos: 4.5,208.5 + parent: 2 + - uid: 24065 + components: + - type: Transform + pos: 4.5,209.5 + parent: 2 + - uid: 24072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,208.5 + parent: 2 + - uid: 24073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,207.5 + parent: 2 + - uid: 24074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,206.5 + parent: 2 + - uid: 24076 + components: + - type: Transform + pos: 9.5,203.5 + parent: 2 + - uid: 24081 + components: + - type: Transform + pos: 10.5,203.5 + parent: 2 + - uid: 24082 + components: + - type: Transform + pos: 11.5,203.5 + parent: 2 + - uid: 24083 + components: + - type: Transform + pos: 12.5,203.5 + parent: 2 + - uid: 24084 + components: + - type: Transform + pos: 13.5,203.5 + parent: 2 + - uid: 24085 + components: + - type: Transform + pos: 14.5,203.5 + parent: 2 + - uid: 24086 + components: + - type: Transform + pos: 15.5,203.5 + parent: 2 + - uid: 24087 + components: + - type: Transform + pos: 16.5,203.5 + parent: 2 + - uid: 24088 + components: + - type: Transform + pos: 16.5,202.5 + parent: 2 + - uid: 24089 + components: + - type: Transform + pos: 17.5,202.5 + parent: 2 + - uid: 24090 + components: + - type: Transform + pos: 18.5,202.5 + parent: 2 + - uid: 24091 + components: + - type: Transform + pos: 9.5,202.5 + parent: 2 + - uid: 24092 + components: + - type: Transform + pos: 9.5,201.5 + parent: 2 + - uid: 24093 + components: + - type: Transform + pos: 8.5,201.5 + parent: 2 + - uid: 24094 + components: + - type: Transform + pos: 8.5,203.5 + parent: 2 + - uid: 24150 + components: + - type: Transform + pos: 21.5,200.5 + parent: 2 + - uid: 24155 + components: + - type: Transform + pos: 22.5,200.5 + parent: 2 + - uid: 24156 + components: + - type: Transform + pos: 22.5,199.5 + parent: 2 + - uid: 24157 + components: + - type: Transform + pos: 22.5,198.5 + parent: 2 + - uid: 24158 + components: + - type: Transform + pos: 21.5,198.5 + parent: 2 + - uid: 24159 + components: + - type: Transform + pos: 23.5,198.5 + parent: 2 + - uid: 24160 + components: + - type: Transform + pos: 24.5,197.5 + parent: 2 + - uid: 24161 + components: + - type: Transform + pos: 24.5,198.5 + parent: 2 + - uid: 24165 + components: + - type: Transform + pos: 24.5,195.5 + parent: 2 + - uid: 24166 + components: + - type: Transform + pos: 24.5,194.5 + parent: 2 + - uid: 24167 + components: + - type: Transform + pos: 24.5,193.5 + parent: 2 + - uid: 24168 + components: + - type: Transform + pos: 24.5,192.5 + parent: 2 + - uid: 24169 + components: + - type: Transform + pos: 24.5,191.5 + parent: 2 + - uid: 24171 + components: + - type: Transform + pos: 24.5,189.5 + parent: 2 + - uid: 24172 + components: + - type: Transform + pos: 24.5,187.5 + parent: 2 + - uid: 24173 + components: + - type: Transform + pos: 24.5,186.5 + parent: 2 + - uid: 24174 + components: + - type: Transform + pos: 23.5,186.5 + parent: 2 + - uid: 24175 + components: + - type: Transform + pos: 21.5,183.5 + parent: 2 + - uid: 24176 + components: + - type: Transform + pos: 20.5,183.5 + parent: 2 + - uid: 24177 + components: + - type: Transform + pos: 20.5,182.5 + parent: 2 + - uid: 24178 + components: + - type: Transform + pos: 19.5,182.5 + parent: 2 + - uid: 24179 + components: + - type: Transform + pos: 20.5,181.5 + parent: 2 + - uid: 24194 + components: + - type: Transform + pos: -129.5,39.5 + parent: 2 + - uid: 24195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,42.5 + parent: 2 + - uid: 24208 + components: + - type: Transform + pos: -129.5,38.5 + parent: 2 + - uid: 24209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,38.5 + parent: 2 + - uid: 24256 + components: + - type: Transform + pos: -26.5,190.5 + parent: 2 + - uid: 24257 + components: + - type: Transform + pos: -27.5,190.5 + parent: 2 + - uid: 24350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,47.5 + parent: 2 + - uid: 24363 + components: + - type: Transform + pos: 14.5,180.5 + parent: 2 + - uid: 24364 + components: + - type: Transform + pos: 13.5,180.5 + parent: 2 + - uid: 24365 + components: + - type: Transform + pos: 12.5,180.5 + parent: 2 + - uid: 24366 + components: + - type: Transform + pos: 11.5,180.5 + parent: 2 + - uid: 24368 + components: + - type: Transform + pos: 8.5,180.5 + parent: 2 + - uid: 24369 + components: + - type: Transform + pos: 8.5,179.5 + parent: 2 + - uid: 24370 + components: + - type: Transform + pos: 9.5,180.5 + parent: 2 + - uid: 24382 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 24393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.5,39.5 + parent: 2 + - uid: 24394 + components: + - type: Transform + pos: -29.5,196.5 + parent: 2 + - uid: 24395 + components: + - type: Transform + pos: -29.5,195.5 + parent: 2 + - uid: 24396 + components: + - type: Transform + pos: -29.5,194.5 + parent: 2 + - uid: 24397 + components: + - type: Transform + pos: -29.5,192.5 + parent: 2 + - uid: 24398 + components: + - type: Transform + pos: -29.5,191.5 + parent: 2 + - uid: 24401 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 24404 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 24428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -131.5,39.5 + parent: 2 + - uid: 24579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,39.5 + parent: 2 + - uid: 24776 + components: + - type: Transform + pos: -25.5,177.5 + parent: 2 + - uid: 24810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,190.5 + parent: 2 + - uid: 24849 + components: + - type: Transform + pos: -130.5,102.5 + parent: 2 + - uid: 25028 + components: + - type: Transform + pos: -130.5,92.5 + parent: 2 + - uid: 25032 + components: + - type: Transform + pos: -130.5,103.5 + parent: 2 + - uid: 25033 + components: + - type: Transform + pos: -131.5,102.5 + parent: 2 + - uid: 25035 + components: + - type: Transform + pos: -131.5,103.5 + parent: 2 + - uid: 25084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,38.5 + parent: 2 + - uid: 25164 + components: + - type: Transform + pos: -132.5,103.5 + parent: 2 + - uid: 25169 + components: + - type: Transform + pos: -130.5,91.5 + parent: 2 + - uid: 25172 + components: + - type: Transform + pos: -131.5,92.5 + parent: 2 + - uid: 25186 + components: + - type: Transform + pos: -131.5,91.5 + parent: 2 + - uid: 25198 + components: + - type: Transform + pos: -132.5,91.5 + parent: 2 + - uid: 25289 + components: + - type: Transform + pos: -30.5,181.5 + parent: 2 + - uid: 25292 + components: + - type: Transform + pos: -30.5,182.5 + parent: 2 + - uid: 25330 + components: + - type: Transform + pos: -30.5,180.5 + parent: 2 + - uid: 25345 + components: + - type: Transform + pos: -126.5,57.5 + parent: 2 + - uid: 25358 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 36996 + - uid: 25371 + components: + - type: Transform + pos: -144.5,18.5 + parent: 2 + - uid: 25372 + components: + - type: Transform + pos: -143.5,18.5 + parent: 2 + - uid: 25373 + components: + - type: Transform + pos: -142.5,18.5 + parent: 2 + - uid: 25374 + components: + - type: Transform + pos: -141.5,18.5 + parent: 2 + - uid: 25375 + components: + - type: Transform + pos: -138.5,18.5 + parent: 2 + - uid: 25459 + components: + - type: Transform + pos: 10.5,171.5 + parent: 2 + - uid: 25460 + components: + - type: Transform + pos: 12.5,171.5 + parent: 2 + - uid: 25462 + components: + - type: Transform + pos: 14.5,171.5 + parent: 2 + - uid: 25467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,171.5 + parent: 2 + - uid: 25468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,171.5 + parent: 2 + - uid: 25469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,172.5 + parent: 2 + - uid: 25470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,173.5 + parent: 2 + - uid: 25471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,174.5 + parent: 2 + - uid: 25472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,175.5 + parent: 2 + - uid: 25473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,176.5 + parent: 2 + - uid: 25474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,176.5 + parent: 2 + - uid: 25475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,177.5 + parent: 2 + - uid: 25476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,178.5 + parent: 2 + - uid: 25477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,171.5 + parent: 2 + - uid: 25478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,171.5 + parent: 2 + - uid: 25479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,172.5 + parent: 2 + - uid: 25480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,171.5 + parent: 2 + - uid: 25547 + components: + - type: Transform + pos: 6.5,174.5 + parent: 2 + - uid: 25548 + components: + - type: Transform + pos: 7.5,174.5 + parent: 2 + - uid: 25549 + components: + - type: Transform + pos: 6.5,175.5 + parent: 2 + - uid: 25550 + components: + - type: Transform + pos: 6.5,176.5 + parent: 2 + - uid: 25551 + components: + - type: Transform + pos: 6.5,177.5 + parent: 2 + - uid: 25552 + components: + - type: Transform + pos: 4.5,174.5 + parent: 2 + - uid: 25553 + components: + - type: Transform + pos: 5.5,174.5 + parent: 2 + - uid: 25637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,169.5 + parent: 2 + - uid: 25638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,170.5 + parent: 2 + - uid: 25641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,173.5 + parent: 2 + - uid: 25642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,174.5 + parent: 2 + - uid: 25643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,174.5 + parent: 2 + - uid: 25700 + components: + - type: Transform + pos: -17.5,173.5 + parent: 2 + - uid: 25701 + components: + - type: Transform + pos: -18.5,173.5 + parent: 2 + - uid: 25702 + components: + - type: Transform + pos: -19.5,173.5 + parent: 2 + - uid: 25703 + components: + - type: Transform + pos: -20.5,173.5 + parent: 2 + - uid: 25704 + components: + - type: Transform + pos: -21.5,173.5 + parent: 2 + - uid: 25705 + components: + - type: Transform + pos: -22.5,173.5 + parent: 2 + - uid: 25706 + components: + - type: Transform + pos: -23.5,173.5 + parent: 2 + - uid: 25707 + components: + - type: Transform + pos: -24.5,173.5 + parent: 2 + - uid: 25708 + components: + - type: Transform + pos: -24.5,174.5 + parent: 2 + - uid: 25709 + components: + - type: Transform + pos: -24.5,175.5 + parent: 2 + - uid: 25710 + components: + - type: Transform + pos: -24.5,176.5 + parent: 2 + - uid: 25712 + components: + - type: Transform + pos: -30.5,184.5 + parent: 2 + - uid: 25713 + components: + - type: Transform + pos: -30.5,185.5 + parent: 2 + - uid: 25714 + components: + - type: Transform + pos: -30.5,179.5 + parent: 2 + - uid: 25721 + components: + - type: Transform + pos: -30.5,178.5 + parent: 2 + - uid: 25723 + components: + - type: Transform + pos: -30.5,186.5 + parent: 2 + - uid: 25728 + components: + - type: Transform + pos: -26.5,177.5 + parent: 2 + - uid: 25730 + components: + - type: Transform + pos: -27.5,177.5 + parent: 2 + - uid: 25731 + components: + - type: Transform + pos: -28.5,177.5 + parent: 2 + - uid: 25732 + components: + - type: Transform + pos: -29.5,177.5 + parent: 2 + - uid: 25755 + components: + - type: Transform + pos: -82.5,145.5 + parent: 2 + - uid: 25757 + components: + - type: Transform + pos: -83.5,145.5 + parent: 2 + - uid: 26007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,172.5 + parent: 2 + - uid: 26193 + components: + - type: Transform + pos: -30.5,192.5 + parent: 2 + - uid: 26194 + components: + - type: Transform + pos: -31.5,192.5 + parent: 2 + - uid: 26195 + components: + - type: Transform + pos: -32.5,192.5 + parent: 2 + - uid: 26196 + components: + - type: Transform + pos: -33.5,192.5 + parent: 2 + - uid: 26197 + components: + - type: Transform + pos: -34.5,192.5 + parent: 2 + - uid: 26198 + components: + - type: Transform + pos: -35.5,192.5 + parent: 2 + - uid: 26199 + components: + - type: Transform + pos: -36.5,192.5 + parent: 2 + - uid: 26200 + components: + - type: Transform + pos: -36.5,193.5 + parent: 2 + - uid: 26201 + components: + - type: Transform + pos: -36.5,191.5 + parent: 2 + - uid: 26522 + components: + - type: Transform + pos: -47.5,66.5 + parent: 2 + - uid: 26797 + components: + - type: Transform + pos: -137.5,18.5 + parent: 2 + - uid: 26837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,207.5 + parent: 2 + - uid: 26838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,207.5 + parent: 2 + - uid: 26839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,207.5 + parent: 2 + - uid: 26840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,207.5 + parent: 2 + - uid: 26907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,88.5 + parent: 2 + - uid: 27101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,52.5 + parent: 2 + - uid: 27134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,49.5 + parent: 2 + - uid: 27146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,48.5 + parent: 2 + - uid: 27147 + components: + - type: Transform + pos: -136.5,19.5 + parent: 2 + - uid: 27183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.5,38.5 + parent: 2 + - uid: 27184 + components: + - type: Transform + pos: -136.5,20.5 + parent: 2 + - uid: 27191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,38.5 + parent: 2 + - uid: 27195 + components: + - type: Transform + pos: -128.5,39.5 + parent: 2 + - uid: 27341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -131.5,38.5 + parent: 2 + - uid: 27727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,48.5 + parent: 2 + - uid: 27757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,47.5 + parent: 2 + - uid: 27788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,46.5 + parent: 2 + - uid: 27892 + components: + - type: Transform + pos: -51.5,7.5 + parent: 2 + - uid: 27944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,47.5 + parent: 2 + - uid: 27945 + components: + - type: Transform + pos: -92.5,144.5 + parent: 2 + - uid: 27946 + components: + - type: Transform + pos: -88.5,144.5 + parent: 2 + - uid: 27948 + components: + - type: Transform + pos: -93.5,144.5 + parent: 2 + - uid: 27949 + components: + - type: Transform + pos: -90.5,144.5 + parent: 2 + - uid: 27956 + components: + - type: Transform + pos: -96.5,144.5 + parent: 2 + - uid: 27957 + components: + - type: Transform + pos: -98.5,144.5 + parent: 2 + - uid: 27958 + components: + - type: Transform + pos: -95.5,144.5 + parent: 2 + - uid: 27959 + components: + - type: Transform + pos: -97.5,144.5 + parent: 2 + - uid: 27960 + components: + - type: Transform + pos: -99.5,144.5 + parent: 2 + - uid: 27962 + components: + - type: Transform + pos: -100.5,144.5 + parent: 2 + - uid: 27963 + components: + - type: Transform + pos: -100.5,145.5 + parent: 2 + - uid: 27964 + components: + - type: Transform + pos: -101.5,145.5 + parent: 2 + - uid: 27966 + components: + - type: Transform + pos: -101.5,147.5 + parent: 2 + - uid: 27967 + components: + - type: Transform + pos: -101.5,146.5 + parent: 2 + - uid: 27968 + components: + - type: Transform + pos: -101.5,148.5 + parent: 2 + - uid: 27981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,38.5 + parent: 2 + - uid: 28126 + components: + - type: Transform + pos: -109.5,52.5 + parent: 2 + - uid: 28128 + components: + - type: Transform + pos: -109.5,54.5 + parent: 2 + - uid: 28129 + components: + - type: Transform + pos: -109.5,53.5 + parent: 2 + - uid: 28202 + components: + - type: Transform + pos: -109.5,38.5 + parent: 2 + - uid: 28257 + components: + - type: Transform + pos: -109.5,51.5 + parent: 2 + - uid: 28258 + components: + - type: Transform + pos: -109.5,50.5 + parent: 2 + - uid: 28259 + components: + - type: Transform + pos: -109.5,49.5 + parent: 2 + - uid: 28260 + components: + - type: Transform + pos: -109.5,48.5 + parent: 2 + - uid: 28261 + components: + - type: Transform + pos: -108.5,60.5 + parent: 2 + - uid: 28262 + components: + - type: Transform + pos: -108.5,59.5 + parent: 2 + - uid: 28263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,58.5 + parent: 2 + - uid: 28264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,57.5 + parent: 2 + - uid: 28265 + components: + - type: Transform + pos: -108.5,56.5 + parent: 2 + - uid: 28266 + components: + - type: Transform + pos: -108.5,55.5 + parent: 2 + - uid: 28267 + components: + - type: Transform + pos: -108.5,54.5 + parent: 2 + - uid: 28269 + components: + - type: Transform + pos: -108.5,52.5 + parent: 2 + - uid: 28270 + components: + - type: Transform + pos: -108.5,51.5 + parent: 2 + - uid: 28271 + components: + - type: Transform + pos: -108.5,50.5 + parent: 2 + - uid: 28272 + components: + - type: Transform + pos: -108.5,49.5 + parent: 2 + - uid: 28273 + components: + - type: Transform + pos: -108.5,48.5 + parent: 2 + - uid: 28274 + components: + - type: Transform + pos: -110.5,46.5 + parent: 2 + - uid: 28275 + components: + - type: Transform + pos: -110.5,47.5 + parent: 2 + - uid: 28276 + components: + - type: Transform + pos: -109.5,46.5 + parent: 2 + - uid: 28280 + components: + - type: Transform + pos: -107.5,46.5 + parent: 2 + - uid: 28281 + components: + - type: Transform + pos: -107.5,47.5 + parent: 2 + - uid: 28291 + components: + - type: Transform + pos: -105.5,47.5 + parent: 2 + - uid: 28292 + components: + - type: Transform + pos: -105.5,46.5 + parent: 2 + - uid: 28293 + components: + - type: Transform + pos: -106.5,47.5 + parent: 2 + - uid: 28294 + components: + - type: Transform + pos: -106.5,46.5 + parent: 2 + - uid: 28297 + components: + - type: Transform + pos: -112.5,46.5 + parent: 2 + - uid: 28298 + components: + - type: Transform + pos: -112.5,47.5 + parent: 2 + - uid: 28299 + components: + - type: Transform + pos: -111.5,46.5 + parent: 2 + - uid: 28300 + components: + - type: Transform + pos: -111.5,47.5 + parent: 2 + - uid: 28312 + components: + - type: Transform + pos: -106.5,40.5 + parent: 2 + - uid: 28357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,57.5 + parent: 2 + - uid: 28412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,50.5 + parent: 2 + - uid: 28434 + components: + - type: Transform + pos: -121.5,58.5 + parent: 2 + - uid: 28440 + components: + - type: Transform + pos: -122.5,58.5 + parent: 2 + - uid: 28474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,43.5 + parent: 2 + - uid: 28475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,44.5 + parent: 2 + - uid: 28476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,49.5 + parent: 2 + - uid: 28478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,43.5 + parent: 2 + - uid: 28498 + components: + - type: Transform + pos: -108.5,61.5 + parent: 2 + - uid: 28499 + components: + - type: Transform + pos: -108.5,62.5 + parent: 2 + - uid: 28500 + components: + - type: Transform + pos: -109.5,61.5 + parent: 2 + - uid: 28501 + components: + - type: Transform + pos: -109.5,62.5 + parent: 2 + - uid: 28519 + components: + - type: Transform + pos: -126.5,39.5 + parent: 2 + - uid: 28521 + components: + - type: Transform + pos: -125.5,39.5 + parent: 2 + - uid: 28523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,40.5 + parent: 2 + - uid: 28524 + components: + - type: Transform + pos: -127.5,39.5 + parent: 2 + - uid: 28528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,50.5 + parent: 2 + - uid: 28531 + components: + - type: Transform + pos: -104.5,45.5 + parent: 2 + - uid: 28532 + components: + - type: Transform + pos: -103.5,45.5 + parent: 2 + - uid: 28538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,41.5 + parent: 2 + - uid: 28540 + components: + - type: Transform + pos: -104.5,40.5 + parent: 2 + - uid: 28541 + components: + - type: Transform + pos: -104.5,41.5 + parent: 2 + - uid: 28542 + components: + - type: Transform + pos: -104.5,42.5 + parent: 2 + - uid: 28543 + components: + - type: Transform + pos: -104.5,43.5 + parent: 2 + - uid: 28544 + components: + - type: Transform + pos: -104.5,44.5 + parent: 2 + - uid: 28545 + components: + - type: Transform + pos: -103.5,40.5 + parent: 2 + - uid: 28546 + components: + - type: Transform + pos: -103.5,41.5 + parent: 2 + - uid: 28547 + components: + - type: Transform + pos: -103.5,42.5 + parent: 2 + - uid: 28548 + components: + - type: Transform + pos: -103.5,43.5 + parent: 2 + - uid: 28549 + components: + - type: Transform + pos: -103.5,44.5 + parent: 2 + - uid: 28550 + components: + - type: Transform + pos: -105.5,40.5 + parent: 2 + - uid: 28551 + components: + - type: Transform + pos: -105.5,41.5 + parent: 2 + - uid: 28552 + components: + - type: Transform + pos: -106.5,41.5 + parent: 2 + - uid: 28553 + components: + - type: Transform + pos: -108.5,40.5 + parent: 2 + - uid: 28614 + components: + - type: Transform + pos: -121.5,59.5 + parent: 2 + - uid: 28632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,45.5 + parent: 2 + - uid: 28735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -122.5,33.5 + parent: 2 + - uid: 28743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,37.5 + parent: 2 + - uid: 28777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,40.5 + parent: 2 + - uid: 28778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,48.5 + parent: 2 + - uid: 28811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,43.5 + parent: 2 + - uid: 28816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,45.5 + parent: 2 + - uid: 28820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,43.5 + parent: 2 + - uid: 28821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,46.5 + parent: 2 + - uid: 28822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,47.5 + parent: 2 + - uid: 28823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,48.5 + parent: 2 + - uid: 28824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,49.5 + parent: 2 + - uid: 28825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,44.5 + parent: 2 + - uid: 28835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,43.5 + parent: 2 + - uid: 28840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,50.5 + parent: 2 + - uid: 28841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,50.5 + parent: 2 + - uid: 28842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,50.5 + parent: 2 + - uid: 28862 + components: + - type: Transform + pos: -122.5,59.5 + parent: 2 + - uid: 28929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,47.5 + parent: 2 + - uid: 28930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -122.5,47.5 + parent: 2 + - uid: 28934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,42.5 + parent: 2 + - uid: 28968 + components: + - type: Transform + pos: -116.5,65.5 + parent: 2 + - uid: 28982 + components: + - type: Transform + pos: -112.5,65.5 + parent: 2 + - uid: 28983 + components: + - type: Transform + pos: -113.5,65.5 + parent: 2 + - uid: 28984 + components: + - type: Transform + pos: -114.5,65.5 + parent: 2 + - uid: 28985 + components: + - type: Transform + pos: -115.5,65.5 + parent: 2 + - uid: 28987 + components: + - type: Transform + pos: -111.5,65.5 + parent: 2 + - uid: 28988 + components: + - type: Transform + pos: -110.5,65.5 + parent: 2 + - uid: 28989 + components: + - type: Transform + pos: -117.5,65.5 + parent: 2 + - uid: 29077 + components: + - type: Transform + pos: -123.5,59.5 + parent: 2 + - uid: 29093 + components: + - type: Transform + pos: -110.5,38.5 + parent: 2 + - uid: 29105 + components: + - type: Transform + pos: -110.5,39.5 + parent: 2 + - uid: 29136 + components: + - type: Transform + pos: -115.5,28.5 + parent: 2 + - uid: 29137 + components: + - type: Transform + pos: -116.5,28.5 + parent: 2 + - uid: 29141 + components: + - type: Transform + pos: -117.5,28.5 + parent: 2 + - uid: 29142 + components: + - type: Transform + pos: -118.5,28.5 + parent: 2 + - uid: 29143 + components: + - type: Transform + pos: -119.5,28.5 + parent: 2 + - uid: 29144 + components: + - type: Transform + pos: -115.5,33.5 + parent: 2 + - uid: 29145 + components: + - type: Transform + pos: -115.5,34.5 + parent: 2 + - uid: 29146 + components: + - type: Transform + pos: -116.5,35.5 + parent: 2 + - uid: 29147 + components: + - type: Transform + pos: -116.5,34.5 + parent: 2 + - uid: 29149 + components: + - type: Transform + pos: -117.5,34.5 + parent: 2 + - uid: 29150 + components: + - type: Transform + pos: -116.5,33.5 + parent: 2 + - uid: 29151 + components: + - type: Transform + pos: -117.5,33.5 + parent: 2 + - uid: 29152 + components: + - type: Transform + pos: -118.5,34.5 + parent: 2 + - uid: 29153 + components: + - type: Transform + pos: -118.5,33.5 + parent: 2 + - uid: 29154 + components: + - type: Transform + pos: -119.5,34.5 + parent: 2 + - uid: 29155 + components: + - type: Transform + pos: -119.5,33.5 + parent: 2 + - uid: 29156 + components: + - type: Transform + pos: -119.5,32.5 + parent: 2 + - uid: 29157 + components: + - type: Transform + pos: -119.5,31.5 + parent: 2 + - uid: 29158 + components: + - type: Transform + pos: -119.5,30.5 + parent: 2 + - uid: 29159 + components: + - type: Transform + pos: -119.5,29.5 + parent: 2 + - uid: 29160 + components: + - type: Transform + pos: -118.5,32.5 + parent: 2 + - uid: 29161 + components: + - type: Transform + pos: -118.5,31.5 + parent: 2 + - uid: 29162 + components: + - type: Transform + pos: -118.5,30.5 + parent: 2 + - uid: 29163 + components: + - type: Transform + pos: -118.5,29.5 + parent: 2 + - uid: 29164 + components: + - type: Transform + pos: -120.5,32.5 + parent: 2 + - uid: 29165 + components: + - type: Transform + pos: -120.5,31.5 + parent: 2 + - uid: 29166 + components: + - type: Transform + pos: -121.5,32.5 + parent: 2 + - uid: 29167 + components: + - type: Transform + pos: -121.5,31.5 + parent: 2 + - uid: 29168 + components: + - type: Transform + pos: -122.5,32.5 + parent: 2 + - uid: 29169 + components: + - type: Transform + pos: -122.5,31.5 + parent: 2 + - uid: 29171 + components: + - type: Transform + pos: -122.5,30.5 + parent: 2 + - uid: 29172 + components: + - type: Transform + pos: -122.5,29.5 + parent: 2 + - uid: 29173 + components: + - type: Transform + pos: -122.5,28.5 + parent: 2 + - uid: 29174 + components: + - type: Transform + pos: -122.5,27.5 + parent: 2 + - uid: 29175 + components: + - type: Transform + pos: -122.5,26.5 + parent: 2 + - uid: 29177 + components: + - type: Transform + pos: -121.5,30.5 + parent: 2 + - uid: 29178 + components: + - type: Transform + pos: -121.5,29.5 + parent: 2 + - uid: 29179 + components: + - type: Transform + pos: -121.5,28.5 + parent: 2 + - uid: 29180 + components: + - type: Transform + pos: -121.5,27.5 + parent: 2 + - uid: 29181 + components: + - type: Transform + pos: -121.5,26.5 + parent: 2 + - uid: 29184 + components: + - type: Transform + pos: -123.5,26.5 + parent: 2 + - uid: 29185 + components: + - type: Transform + pos: -123.5,27.5 + parent: 2 + - uid: 29187 + components: + - type: Transform + pos: -124.5,26.5 + parent: 2 + - uid: 29188 + components: + - type: Transform + pos: -124.5,27.5 + parent: 2 + - uid: 29190 + components: + - type: Transform + pos: -125.5,26.5 + parent: 2 + - uid: 29191 + components: + - type: Transform + pos: -125.5,27.5 + parent: 2 + - uid: 29335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,50.5 + parent: 2 + - uid: 29341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,41.5 + parent: 2 + - uid: 29366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,46.5 + parent: 2 + - uid: 29367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,45.5 + parent: 2 + - uid: 29368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,39.5 + parent: 2 + - uid: 29415 + components: + - type: Transform + pos: -123.5,58.5 + parent: 2 + - uid: 29429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,17.5 + parent: 2 + - uid: 29430 + components: + - type: Transform + pos: -126.5,17.5 + parent: 2 + - uid: 29460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,46.5 + parent: 2 + - uid: 29590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,16.5 + parent: 2 + - uid: 29591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,18.5 + parent: 2 + - uid: 29601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,44.5 + parent: 2 + - uid: 29613 + components: + - type: Transform + pos: -122.5,35.5 + parent: 2 + - uid: 29614 + components: + - type: Transform + pos: -122.5,34.5 + parent: 2 + - uid: 29615 + components: + - type: Transform + pos: -121.5,38.5 + parent: 2 + - uid: 29616 + components: + - type: Transform + pos: -121.5,37.5 + parent: 2 + - uid: 29625 + components: + - type: Transform + pos: -121.5,35.5 + parent: 2 + - uid: 29626 + components: + - type: Transform + pos: -122.5,37.5 + parent: 2 + - uid: 29637 + components: + - type: Transform + pos: -122.5,36.5 + parent: 2 + - uid: 29638 + components: + - type: Transform + pos: -121.5,39.5 + parent: 2 + - uid: 29639 + components: + - type: Transform + pos: -121.5,36.5 + parent: 2 + - uid: 29697 + components: + - type: Transform + pos: -123.5,38.5 + parent: 2 + - uid: 30079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,39.5 + parent: 2 + - uid: 30080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,39.5 + parent: 2 + - uid: 30082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,40.5 + parent: 2 + - uid: 30084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,41.5 + parent: 2 + - uid: 30091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,40.5 + parent: 2 + - uid: 30106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,49.5 + parent: 2 + - uid: 30387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,19.5 + parent: 2 + - uid: 30666 + components: + - type: Transform + pos: -125.5,19.5 + parent: 2 + - uid: 30725 + components: + - type: Transform + pos: -125.5,25.5 + parent: 2 + - uid: 30726 + components: + - type: Transform + pos: -125.5,24.5 + parent: 2 + - uid: 30842 + components: + - type: Transform + pos: -66.5,170.5 + parent: 2 + - uid: 31585 + components: + - type: Transform + pos: -80.5,145.5 + parent: 2 + - uid: 31586 + components: + - type: Transform + pos: -79.5,145.5 + parent: 2 + - uid: 31587 + components: + - type: Transform + pos: -77.5,145.5 + parent: 2 + - uid: 31588 + components: + - type: Transform + pos: -77.5,146.5 + parent: 2 + - uid: 31589 + components: + - type: Transform + pos: -77.5,148.5 + parent: 2 + - uid: 31590 + components: + - type: Transform + pos: -76.5,148.5 + parent: 2 + - uid: 31733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,200.5 + parent: 2 + - uid: 31734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,200.5 + parent: 2 + - uid: 32064 + components: + - type: Transform + pos: -123.5,33.5 + parent: 2 + - uid: 32133 + components: + - type: Transform + pos: -123.5,32.5 + parent: 2 + - uid: 32503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,235.5 + parent: 2 + - uid: 32529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,235.5 + parent: 2 + - uid: 32678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 2 + - uid: 32694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,235.5 + parent: 2 + - uid: 32695 + components: + - type: Transform + pos: -1.5,236.5 + parent: 2 + - uid: 32696 + components: + - type: Transform + pos: -0.5,236.5 + parent: 2 + - uid: 32697 + components: + - type: Transform + pos: 0.5,236.5 + parent: 2 + - uid: 32698 + components: + - type: Transform + pos: 1.5,236.5 + parent: 2 + - uid: 32699 + components: + - type: Transform + pos: 2.5,236.5 + parent: 2 + - uid: 32700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,231.5 + parent: 2 + - uid: 32735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,231.5 + parent: 2 + - uid: 32736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,231.5 + parent: 2 + - uid: 32737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,233.5 + parent: 2 + - uid: 32738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,233.5 + parent: 2 + - uid: 32942 + components: + - type: Transform + pos: 2.5,232.5 + parent: 2 + - uid: 32945 + components: + - type: Transform + pos: 1.5,232.5 + parent: 2 + - uid: 32946 + components: + - type: Transform + pos: 0.5,232.5 + parent: 2 + - uid: 32948 + components: + - type: Transform + pos: -0.5,232.5 + parent: 2 + - uid: 32956 + components: + - type: Transform + pos: -1.5,232.5 + parent: 2 + - uid: 32960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,235.5 + parent: 2 + - uid: 32972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,235.5 + parent: 2 + - uid: 32973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,237.5 + parent: 2 + - uid: 32974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,237.5 + parent: 2 + - uid: 32975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,237.5 + parent: 2 + - uid: 32976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,237.5 + parent: 2 + - uid: 32977 + components: + - type: Transform + pos: -1.5,228.5 + parent: 2 + - uid: 32978 + components: + - type: Transform + pos: -0.5,228.5 + parent: 2 + - uid: 32993 + components: + - type: Transform + pos: 1.5,228.5 + parent: 2 + - uid: 32994 + components: + - type: Transform + pos: 2.5,228.5 + parent: 2 + - uid: 32995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,233.5 + parent: 2 + - uid: 32996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,233.5 + parent: 2 + - uid: 32997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,237.5 + parent: 2 + - uid: 32998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,225.5 + parent: 2 + - uid: 32999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,225.5 + parent: 2 + - uid: 33000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,225.5 + parent: 2 + - uid: 33001 + components: + - type: Transform + pos: 2.5,224.5 + parent: 2 + - uid: 33002 + components: + - type: Transform + pos: 1.5,224.5 + parent: 2 + - uid: 33003 + components: + - type: Transform + pos: 0.5,224.5 + parent: 2 + - uid: 33004 + components: + - type: Transform + pos: -0.5,224.5 + parent: 2 + - uid: 33005 + components: + - type: Transform + pos: -1.5,224.5 + parent: 2 + - uid: 33006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,233.5 + parent: 2 + - uid: 33007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,225.5 + parent: 2 + - uid: 33008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,225.5 + parent: 2 + - uid: 33009 + components: + - type: Transform + pos: 0.5,237.5 + parent: 2 + - uid: 33010 + components: + - type: Transform + pos: 0.5,238.5 + parent: 2 + - uid: 33011 + components: + - type: Transform + pos: 0.5,239.5 + parent: 2 + - uid: 33012 + components: + - type: Transform + pos: 0.5,240.5 + parent: 2 + - uid: 33013 + components: + - type: Transform + pos: 0.5,235.5 + parent: 2 + - uid: 33014 + components: + - type: Transform + pos: 0.5,234.5 + parent: 2 + - uid: 33015 + components: + - type: Transform + pos: 0.5,233.5 + parent: 2 + - uid: 33019 + components: + - type: Transform + pos: 0.5,227.5 + parent: 2 + - uid: 33020 + components: + - type: Transform + pos: 0.5,226.5 + parent: 2 + - uid: 33024 + components: + - type: Transform + pos: 0.5,221.5 + parent: 2 + - uid: 34458 + components: + - type: Transform + pos: -28.5,190.5 + parent: 2 + - uid: 34698 + components: + - type: Transform + pos: 0.5,220.5 + parent: 2 + - uid: 34699 + components: + - type: Transform + pos: 0.5,219.5 + parent: 2 + - uid: 34700 + components: + - type: Transform + pos: 0.5,218.5 + parent: 2 + - uid: 34701 + components: + - type: Transform + pos: 0.5,217.5 + parent: 2 + - uid: 34702 + components: + - type: Transform + pos: 0.5,216.5 + parent: 2 + - uid: 34740 + components: + - type: Transform + pos: 1.5,216.5 + parent: 2 + - uid: 34745 + components: + - type: Transform + pos: -0.5,216.5 + parent: 2 + - uid: 34759 + components: + - type: Transform + pos: -1.5,216.5 + parent: 2 + - uid: 34830 + components: + - type: Transform + pos: -0.5,215.5 + parent: 2 + - uid: 34831 + components: + - type: Transform + pos: -0.5,214.5 + parent: 2 + - uid: 34832 + components: + - type: Transform + pos: -0.5,213.5 + parent: 2 + - uid: 34833 + components: + - type: Transform + pos: -1.5,215.5 + parent: 2 + - uid: 34834 + components: + - type: Transform + pos: -1.5,214.5 + parent: 2 + - uid: 34835 + components: + - type: Transform + pos: -1.5,213.5 + parent: 2 + - uid: 34865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,223.5 + parent: 2 + - uid: 34866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,223.5 + parent: 2 + - uid: 34867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,223.5 + parent: 2 + - uid: 34868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,223.5 + parent: 2 + - uid: 34869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,227.5 + parent: 2 + - uid: 34870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,227.5 + parent: 2 + - uid: 34871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,227.5 + parent: 2 + - uid: 34872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,227.5 + parent: 2 + - uid: 34873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,227.5 + parent: 2 + - uid: 34874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,229.5 + parent: 2 + - uid: 34875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,229.5 + parent: 2 + - uid: 34876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,229.5 + parent: 2 + - uid: 34877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,229.5 + parent: 2 + - uid: 34878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,229.5 + parent: 2 + - uid: 34879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,231.5 + parent: 2 + - uid: 34880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,231.5 + parent: 2 + - uid: 34881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,231.5 + parent: 2 + - uid: 34882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,231.5 + parent: 2 + - uid: 34883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,231.5 + parent: 2 + - uid: 34884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,233.5 + parent: 2 + - uid: 34885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,233.5 + parent: 2 + - uid: 34886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,233.5 + parent: 2 + - uid: 34887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,233.5 + parent: 2 + - uid: 34888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,233.5 + parent: 2 + - uid: 34889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,235.5 + parent: 2 + - uid: 34890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,235.5 + parent: 2 + - uid: 34891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,235.5 + parent: 2 + - uid: 34892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,235.5 + parent: 2 + - uid: 34893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,235.5 + parent: 2 + - uid: 34894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,237.5 + parent: 2 + - uid: 34895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,237.5 + parent: 2 + - uid: 34896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,237.5 + parent: 2 + - uid: 34897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,237.5 + parent: 2 + - uid: 34898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,237.5 + parent: 2 + - uid: 34899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,231.5 + parent: 2 + - uid: 34900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,231.5 + parent: 2 + - uid: 34901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,229.5 + parent: 2 + - uid: 34902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,229.5 + parent: 2 + - uid: 34903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,229.5 + parent: 2 + - uid: 34904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,229.5 + parent: 2 + - uid: 34905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,229.5 + parent: 2 + - uid: 34906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,227.5 + parent: 2 + - uid: 34907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,227.5 + parent: 2 + - uid: 34908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,227.5 + parent: 2 + - uid: 34909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,227.5 + parent: 2 + - uid: 34910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,227.5 + parent: 2 + - uid: 34911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,225.5 + parent: 2 + - uid: 34912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,225.5 + parent: 2 + - uid: 34913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,225.5 + parent: 2 + - uid: 34914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,225.5 + parent: 2 + - uid: 34915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,225.5 + parent: 2 + - uid: 34916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,223.5 + parent: 2 + - uid: 34917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,223.5 + parent: 2 + - uid: 34918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,223.5 + parent: 2 + - uid: 34919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,223.5 + parent: 2 + - uid: 34920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,223.5 + parent: 2 + - uid: 34921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,240.5 + parent: 2 + - uid: 34922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,241.5 + parent: 2 + - uid: 34923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,240.5 + parent: 2 + - uid: 34958 + components: + - type: Transform + pos: -79.5,-12.5 + parent: 2 + - uid: 35027 + components: + - type: Transform + pos: -79.5,-11.5 + parent: 2 + - uid: 35028 + components: + - type: Transform + pos: -79.5,-10.5 + parent: 2 + - uid: 35029 + components: + - type: Transform + pos: -77.5,-12.5 + parent: 2 + - uid: 35030 + components: + - type: Transform + pos: -77.5,-11.5 + parent: 2 + - uid: 35031 + components: + - type: Transform + pos: -77.5,-10.5 + parent: 2 + - uid: 35032 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 35033 + components: + - type: Transform + pos: -75.5,-11.5 + parent: 2 + - uid: 35034 + components: + - type: Transform + pos: -75.5,-10.5 + parent: 2 + - uid: 35035 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 35036 + components: + - type: Transform + pos: -75.5,-5.5 + parent: 2 + - uid: 35037 + components: + - type: Transform + pos: -75.5,-4.5 + parent: 2 + - uid: 35038 + components: + - type: Transform + pos: -77.5,-6.5 + parent: 2 + - uid: 35039 + components: + - type: Transform + pos: -77.5,-5.5 + parent: 2 + - uid: 35040 + components: + - type: Transform + pos: -77.5,-4.5 + parent: 2 + - uid: 35041 + components: + - type: Transform + pos: -79.5,-6.5 + parent: 2 + - uid: 35042 + components: + - type: Transform + pos: -79.5,-5.5 + parent: 2 + - uid: 35043 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 + - uid: 35044 + components: + - type: Transform + pos: -81.5,-6.5 + parent: 2 + - uid: 35045 + components: + - type: Transform + pos: -81.5,-5.5 + parent: 2 + - uid: 35046 + components: + - type: Transform + pos: -81.5,-4.5 + parent: 2 + - uid: 35047 + components: + - type: Transform + pos: -84.5,-9.5 + parent: 2 + - uid: 35048 + components: + - type: Transform + pos: -84.5,-8.5 + parent: 2 + - uid: 35049 + components: + - type: Transform + pos: -84.5,-7.5 + parent: 2 + - uid: 35050 + components: + - type: Transform + pos: -85.5,-8.5 + parent: 2 + - uid: 35126 + components: + - type: Transform + pos: -118.5,150.5 + parent: 2 + - uid: 35208 + components: + - type: Transform + pos: -113.5,148.5 + parent: 2 + - uid: 35209 + components: + - type: Transform + pos: -114.5,148.5 + parent: 2 + - uid: 35210 + components: + - type: Transform + pos: -115.5,148.5 + parent: 2 + - uid: 35211 + components: + - type: Transform + pos: -116.5,148.5 + parent: 2 + - uid: 35213 + components: + - type: Transform + pos: -118.5,148.5 + parent: 2 + - uid: 35215 + components: + - type: Transform + pos: -120.5,148.5 + parent: 2 + - uid: 35216 + components: + - type: Transform + pos: -121.5,148.5 + parent: 2 + - uid: 35219 + components: + - type: Transform + pos: -124.5,148.5 + parent: 2 + - uid: 35220 + components: + - type: Transform + pos: -125.5,148.5 + parent: 2 + - uid: 35221 + components: + - type: Transform + pos: -126.5,148.5 + parent: 2 + - uid: 35222 + components: + - type: Transform + pos: -127.5,148.5 + parent: 2 + - uid: 35223 + components: + - type: Transform + pos: -128.5,148.5 + parent: 2 + - uid: 35224 + components: + - type: Transform + pos: -129.5,148.5 + parent: 2 + - uid: 35225 + components: + - type: Transform + pos: -130.5,148.5 + parent: 2 + - uid: 35226 + components: + - type: Transform + pos: -131.5,147.5 + parent: 2 + - uid: 35227 + components: + - type: Transform + pos: -132.5,148.5 + parent: 2 + - uid: 35228 + components: + - type: Transform + pos: -131.5,148.5 + parent: 2 + - uid: 35229 + components: + - type: Transform + pos: -131.5,149.5 + parent: 2 + - uid: 35230 + components: + - type: Transform + pos: -127.5,146.5 + parent: 2 + - uid: 35231 + components: + - type: Transform + pos: -127.5,147.5 + parent: 2 + - uid: 35232 + components: + - type: Transform + pos: -128.5,143.5 + parent: 2 + - uid: 35233 + components: + - type: Transform + pos: -127.5,149.5 + parent: 2 + - uid: 35234 + components: + - type: Transform + pos: -127.5,150.5 + parent: 2 + - uid: 35235 + components: + - type: Transform + pos: -123.5,146.5 + parent: 2 + - uid: 35236 + components: + - type: Transform + pos: -123.5,147.5 + parent: 2 + - uid: 35237 + components: + - type: Transform + pos: -128.5,144.5 + parent: 2 + - uid: 35238 + components: + - type: Transform + pos: -123.5,149.5 + parent: 2 + - uid: 35239 + components: + - type: Transform + pos: -123.5,150.5 + parent: 2 + - uid: 35240 + components: + - type: Transform + pos: -119.5,146.5 + parent: 2 + - uid: 35241 + components: + - type: Transform + pos: -119.5,147.5 + parent: 2 + - uid: 35242 + components: + - type: Transform + pos: -128.5,145.5 + parent: 2 + - uid: 35243 + components: + - type: Transform + pos: -119.5,149.5 + parent: 2 + - uid: 35244 + components: + - type: Transform + pos: -119.5,150.5 + parent: 2 + - uid: 35245 + components: + - type: Transform + pos: -115.5,146.5 + parent: 2 + - uid: 35246 + components: + - type: Transform + pos: -115.5,147.5 + parent: 2 + - uid: 35247 + components: + - type: Transform + pos: -128.5,146.5 + parent: 2 + - uid: 35248 + components: + - type: Transform + pos: -115.5,149.5 + parent: 2 + - uid: 35249 + components: + - type: Transform + pos: -115.5,150.5 + parent: 2 + - uid: 35250 + components: + - type: Transform + pos: -128.5,142.5 + parent: 2 + - uid: 35251 + components: + - type: Transform + pos: -126.5,146.5 + parent: 2 + - uid: 35252 + components: + - type: Transform + pos: -126.5,145.5 + parent: 2 + - uid: 35253 + components: + - type: Transform + pos: -126.5,144.5 + parent: 2 + - uid: 35254 + components: + - type: Transform + pos: -126.5,143.5 + parent: 2 + - uid: 35255 + components: + - type: Transform + pos: -126.5,142.5 + parent: 2 + - uid: 35256 + components: + - type: Transform + pos: -124.5,142.5 + parent: 2 + - uid: 35257 + components: + - type: Transform + pos: -124.5,143.5 + parent: 2 + - uid: 35258 + components: + - type: Transform + pos: -124.5,144.5 + parent: 2 + - uid: 35259 + components: + - type: Transform + pos: -124.5,145.5 + parent: 2 + - uid: 35260 + components: + - type: Transform + pos: -124.5,146.5 + parent: 2 + - uid: 35261 + components: + - type: Transform + pos: -122.5,142.5 + parent: 2 + - uid: 35262 + components: + - type: Transform + pos: -122.5,143.5 + parent: 2 + - uid: 35263 + components: + - type: Transform + pos: -122.5,144.5 + parent: 2 + - uid: 35264 + components: + - type: Transform + pos: -122.5,145.5 + parent: 2 + - uid: 35265 + components: + - type: Transform + pos: -122.5,146.5 + parent: 2 + - uid: 35266 + components: + - type: Transform + pos: -120.5,142.5 + parent: 2 + - uid: 35267 + components: + - type: Transform + pos: -120.5,143.5 + parent: 2 + - uid: 35268 + components: + - type: Transform + pos: -120.5,144.5 + parent: 2 + - uid: 35269 + components: + - type: Transform + pos: -120.5,145.5 + parent: 2 + - uid: 35270 + components: + - type: Transform + pos: -120.5,146.5 + parent: 2 + - uid: 35271 + components: + - type: Transform + pos: -118.5,142.5 + parent: 2 + - uid: 35272 + components: + - type: Transform + pos: -118.5,143.5 + parent: 2 + - uid: 35273 + components: + - type: Transform + pos: -118.5,144.5 + parent: 2 + - uid: 35274 + components: + - type: Transform + pos: -118.5,145.5 + parent: 2 + - uid: 35275 + components: + - type: Transform + pos: -118.5,146.5 + parent: 2 + - uid: 35276 + components: + - type: Transform + pos: -116.5,142.5 + parent: 2 + - uid: 35277 + components: + - type: Transform + pos: -116.5,143.5 + parent: 2 + - uid: 35278 + components: + - type: Transform + pos: -116.5,144.5 + parent: 2 + - uid: 35279 + components: + - type: Transform + pos: -116.5,145.5 + parent: 2 + - uid: 35280 + components: + - type: Transform + pos: -116.5,146.5 + parent: 2 + - uid: 35281 + components: + - type: Transform + pos: -114.5,142.5 + parent: 2 + - uid: 35282 + components: + - type: Transform + pos: -114.5,143.5 + parent: 2 + - uid: 35283 + components: + - type: Transform + pos: -114.5,144.5 + parent: 2 + - uid: 35284 + components: + - type: Transform + pos: -114.5,145.5 + parent: 2 + - uid: 35285 + components: + - type: Transform + pos: -114.5,146.5 + parent: 2 + - uid: 35286 + components: + - type: Transform + pos: -114.5,150.5 + parent: 2 + - uid: 35287 + components: + - type: Transform + pos: -114.5,151.5 + parent: 2 + - uid: 35288 + components: + - type: Transform + pos: -114.5,152.5 + parent: 2 + - uid: 35289 + components: + - type: Transform + pos: -114.5,153.5 + parent: 2 + - uid: 35290 + components: + - type: Transform + pos: -114.5,154.5 + parent: 2 + - uid: 35291 + components: + - type: Transform + pos: -116.5,154.5 + parent: 2 + - uid: 35292 + components: + - type: Transform + pos: -116.5,153.5 + parent: 2 + - uid: 35293 + components: + - type: Transform + pos: -116.5,152.5 + parent: 2 + - uid: 35294 + components: + - type: Transform + pos: -116.5,151.5 + parent: 2 + - uid: 35295 + components: + - type: Transform + pos: -116.5,150.5 + parent: 2 + - uid: 35296 + components: + - type: Transform + pos: -118.5,151.5 + parent: 2 + - uid: 35297 + components: + - type: Transform + pos: -118.5,152.5 + parent: 2 + - uid: 35298 + components: + - type: Transform + pos: -118.5,153.5 + parent: 2 + - uid: 35299 + components: + - type: Transform + pos: -118.5,154.5 + parent: 2 + - uid: 35300 + components: + - type: Transform + pos: -120.5,150.5 + parent: 2 + - uid: 35301 + components: + - type: Transform + pos: -120.5,151.5 + parent: 2 + - uid: 35302 + components: + - type: Transform + pos: -120.5,152.5 + parent: 2 + - uid: 35303 + components: + - type: Transform + pos: -120.5,153.5 + parent: 2 + - uid: 35304 + components: + - type: Transform + pos: -120.5,154.5 + parent: 2 + - uid: 35305 + components: + - type: Transform + pos: -126.5,150.5 + parent: 2 + - uid: 35306 + components: + - type: Transform + pos: -122.5,150.5 + parent: 2 + - uid: 35307 + components: + - type: Transform + pos: -122.5,151.5 + parent: 2 + - uid: 35308 + components: + - type: Transform + pos: -122.5,152.5 + parent: 2 + - uid: 35309 + components: + - type: Transform + pos: -122.5,153.5 + parent: 2 + - uid: 35310 + components: + - type: Transform + pos: -122.5,154.5 + parent: 2 + - uid: 35311 + components: + - type: Transform + pos: -124.5,150.5 + parent: 2 + - uid: 35312 + components: + - type: Transform + pos: -124.5,151.5 + parent: 2 + - uid: 35313 + components: + - type: Transform + pos: -124.5,152.5 + parent: 2 + - uid: 35314 + components: + - type: Transform + pos: -124.5,153.5 + parent: 2 + - uid: 35315 + components: + - type: Transform + pos: -124.5,154.5 + parent: 2 + - uid: 35316 + components: + - type: Transform + pos: -126.5,151.5 + parent: 2 + - uid: 35317 + components: + - type: Transform + pos: -126.5,152.5 + parent: 2 + - uid: 35318 + components: + - type: Transform + pos: -126.5,153.5 + parent: 2 + - uid: 35319 + components: + - type: Transform + pos: -126.5,154.5 + parent: 2 + - uid: 35320 + components: + - type: Transform + pos: -128.5,150.5 + parent: 2 + - uid: 35321 + components: + - type: Transform + pos: -128.5,151.5 + parent: 2 + - uid: 35322 + components: + - type: Transform + pos: -128.5,152.5 + parent: 2 + - uid: 35323 + components: + - type: Transform + pos: -128.5,153.5 + parent: 2 + - uid: 35324 + components: + - type: Transform + pos: -128.5,154.5 + parent: 2 + - uid: 35402 + components: + - type: Transform + pos: -106.5,147.5 + parent: 2 + - uid: 35403 + components: + - type: Transform + pos: -105.5,147.5 + parent: 2 + - uid: 35404 + components: + - type: Transform + pos: -104.5,147.5 + parent: 2 + - uid: 35405 + components: + - type: Transform + pos: -103.5,147.5 + parent: 2 + - uid: 35406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,149.5 + parent: 2 + - uid: 35407 + components: + - type: Transform + pos: -108.5,148.5 + parent: 2 + - uid: 35408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,147.5 + parent: 2 + - uid: 35409 + components: + - type: Transform + pos: -107.5,148.5 + parent: 2 + - uid: 35410 + components: + - type: Transform + pos: -106.5,149.5 + parent: 2 + - uid: 35411 + components: + - type: Transform + pos: -106.5,148.5 + parent: 2 + - uid: 35412 + components: + - type: Transform + pos: -105.5,149.5 + parent: 2 + - uid: 35413 + components: + - type: Transform + pos: -105.5,148.5 + parent: 2 + - uid: 35423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,148.5 + parent: 2 + - uid: 35424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,148.5 + parent: 2 + - uid: 35425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,148.5 + parent: 2 + - uid: 35426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,148.5 + parent: 2 + - uid: 35466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,23.5 + parent: 2 + - uid: 35467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,22.5 + parent: 2 + - uid: 35468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,21.5 + parent: 2 + - uid: 35469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,20.5 + parent: 2 + - uid: 35470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,21.5 + parent: 2 + - uid: 35471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,20.5 + parent: 2 + - uid: 35472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,18.5 + parent: 2 + - uid: 35473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,17.5 + parent: 2 + - uid: 35474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,16.5 + parent: 2 + - uid: 35808 + components: + - type: Transform + pos: -95.5,99.5 + parent: 2 + - uid: 35809 + components: + - type: Transform + pos: -96.5,99.5 + parent: 2 + - uid: 35812 + components: + - type: Transform + pos: -97.5,99.5 + parent: 2 + - uid: 36571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,100.5 + parent: 2 + - uid: 36653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,99.5 + parent: 2 + - uid: 36654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,99.5 + parent: 2 + - uid: 36655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,101.5 + parent: 2 + - uid: 36656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,102.5 + parent: 2 + - uid: 36657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,103.5 + parent: 2 + - uid: 36658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,104.5 + parent: 2 + - uid: 36956 + components: + - type: Transform + pos: 24.5,190.5 + parent: 2 + - uid: 36963 + components: + - type: Transform + pos: -13.5,86.5 + parent: 2 + - uid: 37086 + components: + - type: Transform + pos: -47.5,62.5 + parent: 2 + - uid: 37214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,169.5 + parent: 2 + - uid: 37290 + components: + - type: Transform + pos: -47.5,177.5 + parent: 2 + - uid: 37296 + components: + - type: Transform + pos: -36.5,177.5 + parent: 2 + - uid: 37297 + components: + - type: Transform + pos: -36.5,178.5 + parent: 2 + - uid: 37298 + components: + - type: Transform + pos: -36.5,179.5 + parent: 2 + - uid: 37299 + components: + - type: Transform + pos: -35.5,180.5 + parent: 2 + - uid: 37300 + components: + - type: Transform + pos: -36.5,180.5 + parent: 2 + - uid: 37301 + components: + - type: Transform + pos: -38.5,177.5 + parent: 2 + - uid: 37302 + components: + - type: Transform + pos: -39.5,177.5 + parent: 2 + - uid: 37303 + components: + - type: Transform + pos: -40.5,177.5 + parent: 2 + - uid: 37304 + components: + - type: Transform + pos: -41.5,177.5 + parent: 2 + - uid: 37305 + components: + - type: Transform + pos: -42.5,177.5 + parent: 2 + - uid: 37306 + components: + - type: Transform + pos: -39.5,176.5 + parent: 2 + - uid: 37307 + components: + - type: Transform + pos: -44.5,177.5 + parent: 2 + - uid: 37308 + components: + - type: Transform + pos: -45.5,177.5 + parent: 2 + - uid: 37309 + components: + - type: Transform + pos: -46.5,177.5 + parent: 2 + - uid: 37310 + components: + - type: Transform + pos: -47.5,176.5 + parent: 2 + - uid: 37311 + components: + - type: Transform + pos: -52.5,172.5 + parent: 2 + - uid: 37312 + components: + - type: Transform + pos: -47.5,175.5 + parent: 2 + - uid: 37313 + components: + - type: Transform + pos: -47.5,174.5 + parent: 2 + - uid: 37314 + components: + - type: Transform + pos: -47.5,173.5 + parent: 2 + - uid: 37315 + components: + - type: Transform + pos: -47.5,172.5 + parent: 2 + - uid: 37316 + components: + - type: Transform + pos: -48.5,172.5 + parent: 2 + - uid: 37317 + components: + - type: Transform + pos: -49.5,172.5 + parent: 2 + - uid: 37318 + components: + - type: Transform + pos: -50.5,172.5 + parent: 2 + - uid: 37319 + components: + - type: Transform + pos: -53.5,172.5 + parent: 2 + - uid: 37320 + components: + - type: Transform + pos: -54.5,172.5 + parent: 2 + - uid: 37321 + components: + - type: Transform + pos: -54.5,171.5 + parent: 2 + - uid: 37331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,169.5 + parent: 2 + - uid: 37577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,189.5 + parent: 2 + - uid: 37578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,188.5 + parent: 2 + - uid: 37628 + components: + - type: Transform + pos: -101.5,53.5 + parent: 2 + - uid: 37629 + components: + - type: Transform + pos: -100.5,53.5 + parent: 2 + - uid: 37630 + components: + - type: Transform + pos: -101.5,54.5 + parent: 2 + - uid: 37632 + components: + - type: Transform + pos: -101.5,55.5 + parent: 2 + - uid: 37633 + components: + - type: Transform + pos: -101.5,56.5 + parent: 2 + - uid: 37634 + components: + - type: Transform + pos: -101.5,57.5 + parent: 2 + - uid: 37635 + components: + - type: Transform + pos: -101.5,58.5 + parent: 2 + - uid: 37636 + components: + - type: Transform + pos: -101.5,60.5 + parent: 2 + - uid: 37637 + components: + - type: Transform + pos: -101.5,61.5 + parent: 2 + - uid: 37638 + components: + - type: Transform + pos: -102.5,61.5 + parent: 2 + - uid: 37640 + components: + - type: Transform + pos: -102.5,62.5 + parent: 2 + - uid: 37641 + components: + - type: Transform + pos: -102.5,63.5 + parent: 2 + - uid: 37643 + components: + - type: Transform + pos: -103.5,63.5 + parent: 2 + - uid: 37644 + components: + - type: Transform + pos: -105.5,63.5 + parent: 2 + - uid: 37645 + components: + - type: Transform + pos: -106.5,63.5 + parent: 2 + - uid: 37646 + components: + - type: Transform + pos: -107.5,63.5 + parent: 2 + - uid: 37647 + components: + - type: Transform + pos: -104.5,63.5 + parent: 2 + - uid: 37677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,57.5 + parent: 2 + - uid: 37679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,57.5 + parent: 2 + - uid: 37680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,57.5 + parent: 2 + - uid: 37717 + components: + - type: Transform + pos: 2.5,80.5 + parent: 2 + - uid: 37727 + components: + - type: Transform + pos: -105.5,67.5 + parent: 2 + - uid: 37728 + components: + - type: Transform + pos: -104.5,67.5 + parent: 2 + - uid: 37729 + components: + - type: Transform + pos: -103.5,69.5 + parent: 2 + - uid: 37730 + components: + - type: Transform + pos: -101.5,69.5 + parent: 2 + - uid: 37731 + components: + - type: Transform + pos: -100.5,69.5 + parent: 2 + - uid: 37732 + components: + - type: Transform + pos: -97.5,71.5 + parent: 2 + - uid: 37734 + components: + - type: Transform + pos: -95.5,73.5 + parent: 2 + - uid: 37735 + components: + - type: Transform + pos: -94.5,73.5 + parent: 2 + - uid: 37736 + components: + - type: Transform + pos: -92.5,73.5 + parent: 2 + - uid: 37737 + components: + - type: Transform + pos: -92.5,74.5 + parent: 2 + - uid: 37738 + components: + - type: Transform + pos: -90.5,75.5 + parent: 2 + - uid: 37741 + components: + - type: Transform + pos: -99.5,71.5 + parent: 2 + - uid: 37744 + components: + - type: Transform + pos: -99.5,70.5 + parent: 2 + - uid: 37745 + components: + - type: Transform + pos: -107.5,66.5 + parent: 2 + - uid: 37752 + components: + - type: Transform + pos: -95.5,51.5 + parent: 2 + - uid: 37754 + components: + - type: Transform + pos: -97.5,54.5 + parent: 2 + - uid: 37755 + components: + - type: Transform + pos: -96.5,55.5 + parent: 2 + - uid: 37756 + components: + - type: Transform + pos: -95.5,55.5 + parent: 2 + - uid: 37757 + components: + - type: Transform + pos: -93.5,56.5 + parent: 2 + - uid: 37758 + components: + - type: Transform + pos: -91.5,56.5 + parent: 2 + - uid: 37759 + components: + - type: Transform + pos: -89.5,57.5 + parent: 2 + - uid: 37760 + components: + - type: Transform + pos: -89.5,58.5 + parent: 2 + - uid: 37761 + components: + - type: Transform + pos: -90.5,58.5 + parent: 2 + - uid: 37762 + components: + - type: Transform + pos: -86.5,59.5 + parent: 2 + - uid: 37763 + components: + - type: Transform + pos: -86.5,60.5 + parent: 2 + - uid: 37764 + components: + - type: Transform + pos: -83.5,60.5 + parent: 2 + - uid: 37766 + components: + - type: Transform + pos: -80.5,62.5 + parent: 2 + - uid: 37767 + components: + - type: Transform + pos: -79.5,62.5 + parent: 2 + - uid: 37768 + components: + - type: Transform + pos: -79.5,63.5 + parent: 2 + - uid: 37769 + components: + - type: Transform + pos: -77.5,64.5 + parent: 2 + - uid: 37770 + components: + - type: Transform + pos: -75.5,65.5 + parent: 2 + - uid: 38286 + components: + - type: Transform + pos: -0.5,161.5 + parent: 2 + - uid: 38287 + components: + - type: Transform + pos: 1.5,161.5 + parent: 2 + - uid: 38445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,34.5 + parent: 2 + - uid: 38450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,48.5 + parent: 2 + - uid: 38452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,50.5 + parent: 2 + - uid: 39175 + components: + - type: Transform + pos: -54.5,8.5 + parent: 2 + - uid: 39176 + components: + - type: Transform + pos: -53.5,8.5 + parent: 2 + - uid: 39177 + components: + - type: Transform + pos: -52.5,8.5 + parent: 2 + - uid: 39197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,98.5 + parent: 2 + - uid: 39198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,99.5 + parent: 2 + - uid: 39199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,100.5 + parent: 2 + - uid: 39200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,94.5 + parent: 2 + - uid: 39201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,95.5 + parent: 2 + - uid: 39202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,96.5 + parent: 2 + - uid: 39203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,94.5 + parent: 2 + - uid: 39204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,95.5 + parent: 2 + - uid: 39205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,96.5 + parent: 2 + - uid: 39206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,94.5 + parent: 2 + - uid: 39207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,95.5 + parent: 2 + - uid: 39208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,96.5 + parent: 2 + - uid: 39210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,95.5 + parent: 2 + - uid: 39211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,96.5 + parent: 2 + - uid: 39212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,94.5 + parent: 2 + - uid: 39213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,95.5 + parent: 2 + - uid: 39214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,96.5 + parent: 2 + - uid: 39215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,94.5 + parent: 2 + - uid: 39216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,95.5 + parent: 2 + - uid: 39217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,96.5 + parent: 2 + - uid: 39218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,94.5 + parent: 2 + - uid: 39219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,95.5 + parent: 2 + - uid: 39220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,96.5 + parent: 2 + - uid: 39221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,94.5 + parent: 2 + - uid: 39222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,95.5 + parent: 2 + - uid: 39223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,96.5 + parent: 2 + - uid: 39224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,97.5 + parent: 2 + - uid: 39225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,98.5 + parent: 2 + - uid: 39226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,99.5 + parent: 2 + - uid: 39227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,97.5 + parent: 2 + - uid: 39228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,98.5 + parent: 2 + - uid: 39229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,99.5 + parent: 2 + - uid: 39231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,95.5 + parent: 2 + - uid: 39232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,96.5 + parent: 2 + - uid: 39233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,97.5 + parent: 2 + - uid: 39324 + components: + - type: Transform + pos: -125.5,23.5 + parent: 2 + - uid: 39325 + components: + - type: Transform + pos: -124.5,24.5 + parent: 2 + - uid: 39326 + components: + - type: Transform + pos: -124.5,23.5 + parent: 2 + - uid: 39429 + components: + - type: Transform + pos: -26.5,166.5 + parent: 2 + - uid: 39431 + components: + - type: Transform + pos: -20.5,160.5 + parent: 2 + - uid: 39432 + components: + - type: Transform + pos: -20.5,163.5 + parent: 2 + - uid: 39433 + components: + - type: Transform + pos: -23.5,166.5 + parent: 2 + - uid: 39434 + components: + - type: Transform + pos: -18.5,163.5 + parent: 2 + - uid: 39435 + components: + - type: Transform + pos: -18.5,160.5 + parent: 2 + - uid: 39436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,161.5 + parent: 2 + - uid: 39437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,164.5 + parent: 2 + - uid: 39438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,164.5 + parent: 2 + - uid: 39439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,166.5 + parent: 2 + - uid: 39440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,166.5 + parent: 2 + - uid: 39441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 + - uid: 43239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-2.5 + parent: 2 + - uid: 43240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 2 + - uid: 43241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-2.5 + parent: 2 + - uid: 43242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-2.5 + parent: 2 + - uid: 43243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-2.5 + parent: 2 + - uid: 43244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-2.5 + parent: 2 + - uid: 43245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-4.5 + parent: 2 + - uid: 43246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-3.5 + parent: 2 + - uid: 43247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-3.5 + parent: 2 + - uid: 43249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-3.5 + parent: 2 + - uid: 43250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-3.5 + parent: 2 + - uid: 43251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-4.5 + parent: 2 + - uid: 43252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 2 + - uid: 43253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,0.5 + parent: 2 + - uid: 43254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,0.5 + parent: 2 + - uid: 43255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-2.5 + parent: 2 + - uid: 43257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,7.5 + parent: 2 + - uid: 43258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,8.5 + parent: 2 + - uid: 43259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,9.5 + parent: 2 + - uid: 43260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,7.5 + parent: 2 + - uid: 43261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,8.5 + parent: 2 + - uid: 43262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,9.5 + parent: 2 + - uid: 43345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,17.5 + parent: 2 + - uid: 43350 + components: + - type: Transform + pos: -124.5,25.5 + parent: 2 + - uid: 43353 + components: + - type: Transform + pos: -124.5,22.5 + parent: 2 + - uid: 43357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,20.5 + parent: 2 + - uid: 43373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,15.5 + parent: 2 + - uid: 43375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,15.5 + parent: 2 + - uid: 43378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,16.5 + parent: 2 + - uid: 43392 + components: + - type: Transform + pos: -123.5,15.5 + parent: 2 + - uid: 43409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,14.5 + parent: 2 + - uid: 43410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,13.5 + parent: 2 + - uid: 43411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,12.5 + parent: 2 + - uid: 43412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,11.5 + parent: 2 + - uid: 43426 + components: + - type: Transform + pos: -125.5,10.5 + parent: 2 + - uid: 43427 + components: + - type: Transform + pos: -125.5,9.5 + parent: 2 + - uid: 43428 + components: + - type: Transform + pos: -125.5,8.5 + parent: 2 + - uid: 43429 + components: + - type: Transform + pos: -125.5,7.5 + parent: 2 + - uid: 43430 + components: + - type: Transform + pos: -126.5,7.5 + parent: 2 + - uid: 43431 + components: + - type: Transform + pos: -127.5,7.5 + parent: 2 + - uid: 43433 + components: + - type: Transform + pos: -129.5,7.5 + parent: 2 + - uid: 43434 + components: + - type: Transform + pos: -130.5,7.5 + parent: 2 + - uid: 43436 + components: + - type: Transform + pos: -132.5,7.5 + parent: 2 + - uid: 43437 + components: + - type: Transform + pos: -133.5,7.5 + parent: 2 + - uid: 43438 + components: + - type: Transform + pos: -124.5,7.5 + parent: 2 + - uid: 43442 + components: + - type: Transform + pos: -122.5,7.5 + parent: 2 + - uid: 43444 + components: + - type: Transform + pos: -121.5,7.5 + parent: 2 + - uid: 43449 + components: + - type: Transform + pos: -118.5,7.5 + parent: 2 + - uid: 43451 + components: + - type: Transform + pos: -117.5,7.5 + parent: 2 + - uid: 43453 + components: + - type: Transform + pos: -127.5,15.5 + parent: 2 +- proto: CelloInstrument + entities: + - uid: 19921 + components: + - type: Transform + pos: -86.47973,154.59857 + parent: 2 +- proto: Chair + entities: + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,60.5 + parent: 2 + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,4.5 + parent: 2 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,33.5 + parent: 2 + - uid: 927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 + - uid: 948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,4.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,151.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: -70.5,-12.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,4.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,31.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: -123.5,33.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 72.5,35.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: -61.5,-4.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-6.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + pos: -64.5,68.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,89.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,86.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,47.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,43.5 + parent: 2 + - uid: 4997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 109.5,49.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,26.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 111.5,49.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,65.5 + parent: 2 + - uid: 5277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,65.5 + parent: 2 + - uid: 5278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,67.5 + parent: 2 + - uid: 5279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,67.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,25.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,88.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,44.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 110.5,44.5 + parent: 2 + - uid: 7765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,26.5 + parent: 2 + - uid: 8747 + components: + - type: Transform + pos: -88.5,90.5 + parent: 2 + - uid: 8748 + components: + - type: Transform + pos: -85.5,91.5 + parent: 2 + - uid: 8749 + components: + - type: Transform + pos: -84.5,91.5 + parent: 2 + - uid: 8750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,88.5 + parent: 2 + - uid: 8751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,88.5 + parent: 2 + - uid: 8753 + components: + - type: Transform + pos: -88.5,87.5 + parent: 2 + - uid: 9818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,78.5 + parent: 2 + - uid: 10611 + components: + - type: Transform + pos: -17.5,103.5 + parent: 2 + - uid: 10997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,94.5 + parent: 2 + - uid: 11155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,94.5 + parent: 2 + - uid: 11346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,147.5 + parent: 2 + - uid: 13473 + components: + - type: Transform + pos: -125.5,106.5 + parent: 2 + - uid: 13617 + components: + - type: Transform + pos: -65.5,101.5 + parent: 2 + - uid: 13921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,100.5 + parent: 2 + - uid: 13925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,100.5 + parent: 2 + - uid: 13949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,105.5 + parent: 2 + - uid: 14670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,85.5 + parent: 2 + - uid: 14678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,80.5 + parent: 2 + - uid: 14679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,80.5 + parent: 2 + - uid: 14680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,80.5 + parent: 2 + - uid: 14681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,80.5 + parent: 2 + - uid: 14682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,79.5 + parent: 2 + - uid: 14683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,79.5 + parent: 2 + - uid: 14684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,79.5 + parent: 2 + - uid: 14685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,79.5 + parent: 2 + - uid: 14686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,80.5 + parent: 2 + - uid: 14687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,79.5 + parent: 2 + - uid: 14688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,79.5 + parent: 2 + - uid: 14689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,80.5 + parent: 2 + - uid: 15882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,73.5 + parent: 2 + - uid: 16487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,91.5 + parent: 2 + - uid: 16488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,91.5 + parent: 2 + - uid: 16509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,85.5 + parent: 2 + - uid: 16510 + components: + - type: Transform + pos: -24.5,87.5 + parent: 2 + - uid: 17526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,37.5 + parent: 2 + - uid: 18639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,151.5 + parent: 2 + - uid: 24022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,212.5 + parent: 2 + - uid: 24023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,212.5 + parent: 2 + - uid: 25426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,167.5 + parent: 2 + - uid: 27599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 111.5,59.5 + parent: 2 + - uid: 27772 + components: + - type: Transform + pos: -76.5,46.5 + parent: 2 + - uid: 27782 + components: + - type: Transform + pos: -76.5,37.5 + parent: 2 + - uid: 27993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,45.5 + parent: 2 + - uid: 28153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,47.5 + parent: 2 + - uid: 28644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 110.5,43.5 + parent: 2 + - uid: 28645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 107.5,44.5 + parent: 2 + - uid: 28646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 107.5,43.5 + parent: 2 + - uid: 28730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,49.5 + parent: 2 + - uid: 28776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,59.5 + parent: 2 + - uid: 28788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,49.5 + parent: 2 + - uid: 28858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,94.5 + parent: 2 + - uid: 28870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,49.5 + parent: 2 + - uid: 28885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,48.5 + parent: 2 + - uid: 28889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,47.5 + parent: 2 + - uid: 28890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,48.5 + parent: 2 + - uid: 28973 + components: + - type: Transform + pos: 105.5,57.5 + parent: 2 + - uid: 33102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,63.5 + parent: 2 + - uid: 36515 + components: + - type: Transform + pos: -126.5,106.5 + parent: 2 + - uid: 37391 + components: + - type: Transform + pos: -65.5,68.5 + parent: 2 + - uid: 37742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,79.5 + parent: 2 +- proto: ChairBrass + entities: + - uid: 27317 + components: + - type: Transform + pos: -116.5,49.5 + parent: 2 +- proto: ChairFolding + entities: + - uid: 676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.44626,61.734432 + parent: 2 + - uid: 677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.75876,61.078182 + parent: 2 + - uid: 678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.75876,61.078182 + parent: 2 + - uid: 713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.336884,60.296932 + parent: 2 + - uid: 764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.836884,59.671932 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: 81.44106,19.528938 + parent: 2 + - uid: 8331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.388954,25.199993 + parent: 2 + - uid: 9667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,68.5 + parent: 2 + - uid: 11424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.275146,160.60641 + parent: 2 + - uid: 11453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.525146,160.51266 + parent: 2 + - uid: 12641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,187.5 + parent: 2 + - uid: 13209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,70.5 + parent: 2 + - uid: 13211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,69.5 + parent: 2 + - uid: 16438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 115.5,47.5 + parent: 2 + - uid: 18278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.6565475,214.07523 + parent: 2 + - uid: 25213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -132.461,103.62415 + parent: 2 + - uid: 25699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,187.5 + parent: 2 + - uid: 25717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,187.5 + parent: 2 + - uid: 28665 + components: + - type: Transform + pos: 70.5,55.5 + parent: 2 + - uid: 36167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,73.5 + parent: 2 + - uid: 37751 + components: + - type: Transform + pos: -85.5,59.5 + parent: 2 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 9092 + components: + - type: Transform + pos: -43.485947,63.73232 + parent: 2 + - uid: 11320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.43665,147.61624 + parent: 2 + - uid: 13149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.564682,71.48474 + parent: 2 + - uid: 14842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.429707,71.653404 + parent: 2 + - uid: 14907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.328474,71.82207 + parent: 2 + - uid: 24235 + components: + - type: Transform + pos: -59.48407,97.63663 + parent: 2 + - uid: 36611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.495947,174.55276 + parent: 2 + - uid: 36612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.558447,174.92776 + parent: 2 +- proto: ChairGreyscale + entities: + - uid: 4845 + components: + - type: Transform + pos: 86.5,20.5 + parent: 2 + - uid: 14655 + components: + - type: Transform + pos: -75.5,86.5 + parent: 2 + - uid: 17905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,160.5 + parent: 2 + - uid: 18349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,160.5 + parent: 2 + - uid: 19922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,159.5 + parent: 2 + - uid: 19925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,159.5 + parent: 2 + - uid: 21420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,156.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-3.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: 55.023567,29.4832 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,62.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,19.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,55.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,58.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + pos: 61.5,45.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,68.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,68.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: 71.5,51.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.444283,22.611832 + parent: 2 + - uid: 6818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,42.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,41.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.552475,129.78467 + parent: 2 + - uid: 9167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.398766,108.55922 + parent: 2 + - uid: 9168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.465187,107.693405 + parent: 2 + - uid: 9169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.49625,108.570465 + parent: 2 + - uid: 9170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.518745,105.50075 + parent: 2 + - uid: 9171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.46691,106.572464 + parent: 2 + - uid: 10641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,170.5 + parent: 2 + - uid: 10678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,85.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,85.5 + parent: 2 + - uid: 10936 + components: + - type: Transform + pos: -0.5,77.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + pos: -39.5,78.5 + parent: 2 + - uid: 12234 + components: + - type: Transform + pos: -41.5,78.5 + parent: 2 + - uid: 13682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,104.5 + parent: 2 + - uid: 14721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,74.5 + parent: 2 + - uid: 14772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,66.5 + parent: 2 + - uid: 17546 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 20378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,164.5 + parent: 2 + - uid: 22131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,153.5 + parent: 2 + - uid: 22132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,154.5 + parent: 2 + - uid: 22624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,179.5 + parent: 2 + - uid: 23258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,103.5 + parent: 2 + - uid: 27838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,34.5 + parent: 2 + - uid: 27883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,37.5 + parent: 2 + - uid: 28254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,142.5 + parent: 2 + - uid: 28255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,143.5 + parent: 2 + - uid: 34605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,88.5 + parent: 2 + - uid: 41897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,56.5 + parent: 2 + - uid: 43165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 37842 +- proto: ChairOfficeLight + entities: + - uid: 906 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,0.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,193.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: 71.5,43.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,66.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,66.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,67.5 + parent: 2 + - uid: 10444 + components: + - type: Transform + pos: -16.5,81.5 + parent: 2 + - uid: 14488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,82.5 + parent: 2 + - uid: 14725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,75.5 + parent: 2 + - uid: 14726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,74.5 + parent: 2 + - uid: 16966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,105.5 + parent: 2 + - uid: 17104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -132.5,105.5 + parent: 2 + - uid: 20179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,182.5 + parent: 2 + - uid: 20180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,182.5 + parent: 2 + - uid: 20181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,179.5 + parent: 2 + - uid: 20479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,168.5 + parent: 2 + - uid: 20480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,169.5 + parent: 2 + - uid: 20986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,167.5 + parent: 2 + - uid: 21056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,176.5 + parent: 2 + - uid: 22765 + components: + - type: Transform + pos: -13.5,191.5 + parent: 2 + - uid: 22766 + components: + - type: Transform + pos: -15.5,191.5 + parent: 2 + - uid: 23269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,191.5 + parent: 2 + - uid: 23478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,199.5 + parent: 2 + - uid: 23632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,189.5 + parent: 2 + - uid: 25383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,170.5 + parent: 2 + - uid: 25384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,171.5 + parent: 2 + - uid: 28077 + components: + - type: Transform + pos: -115.5,103.5 + parent: 2 + - uid: 28750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,97.5 + parent: 2 + - uid: 28909 + components: + - type: Transform + pos: 95.5,51.5 + parent: 2 + - uid: 36603 + components: + - type: Transform + pos: 48.5,56.5 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 1571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-16.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,66.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,66.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + pos: 115.5,59.5 + parent: 2 + - uid: 13199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,91.5 + parent: 2 + - uid: 13200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,91.5 + parent: 2 + - uid: 13201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -121.5,91.5 + parent: 2 + - uid: 13202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,91.5 + parent: 2 + - uid: 13203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,91.5 + parent: 2 + - uid: 13204 + components: + - type: Transform + pos: -121.5,92.5 + parent: 2 + - uid: 13208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -123.5,92.5 + parent: 2 + - uid: 15932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 13386 + - uid: 15933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 13386 + - uid: 15934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 13386 + - uid: 16049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 13386 + - uid: 16050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 13386 + - uid: 16075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 13386 + - uid: 22059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 21114 + - uid: 22060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 21114 + - uid: 30948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 30902 + - uid: 34760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 21114 + - uid: 34763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 21114 + - uid: 36730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 21114 + - uid: 36731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 21114 + - uid: 36737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 37842 + - uid: 36815 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 37842 + - uid: 37048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 36996 + - uid: 37049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 36996 + - uid: 43164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 37842 + - uid: 43167 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 37842 + - uid: 43171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 37842 + - uid: 43172 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 37842 +- proto: ChairRitual + entities: + - uid: 13015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,69.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 761 + components: + - type: Transform + pos: -60.5,66.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: -62.5,66.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: -57.5,66.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: -58.5,66.5 + parent: 2 + - uid: 4064 + components: + - type: Transform + pos: -56.5,66.5 + parent: 2 + - uid: 9719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,70.5 + parent: 2 + - uid: 10071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,69.5 + parent: 2 + - uid: 10113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,71.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: -61.5,66.5 + parent: 2 + - uid: 11725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,68.5 + parent: 2 + - uid: 12047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,62.5 + parent: 2 + - uid: 12073 + components: + - type: Transform + pos: -60.5,67.5 + parent: 2 + - uid: 12074 + components: + - type: Transform + pos: -61.5,67.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + pos: -62.5,67.5 + parent: 2 + - uid: 12084 + components: + - type: Transform + pos: -58.5,67.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: -57.5,67.5 + parent: 2 + - uid: 12086 + components: + - type: Transform + pos: -56.5,67.5 + parent: 2 + - uid: 12175 + components: + - type: Transform + pos: -64.5,63.5 + parent: 2 + - uid: 13144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,67.5 + parent: 2 + - uid: 13145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,67.5 + parent: 2 + - uid: 13175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,69.5 + parent: 2 + - uid: 13178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,66.5 + parent: 2 + - uid: 13179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,66.5 + parent: 2 + - uid: 13182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,70.5 + parent: 2 + - uid: 13186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,70.5 + parent: 2 + - uid: 13187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,69.5 + parent: 2 + - uid: 14290 + components: + - type: Transform + pos: -74.5,106.5 + parent: 2 + - uid: 14479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,87.5 + parent: 2 + - uid: 14480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,86.5 + parent: 2 + - uid: 14481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,85.5 + parent: 2 + - uid: 14551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,85.5 + parent: 2 + - uid: 14632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,82.5 + parent: 2 + - uid: 14650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,82.5 + parent: 2 + - uid: 14653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,82.5 + parent: 2 + - uid: 14654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,82.5 + parent: 2 + - uid: 19536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,61.5 + parent: 2 + - uid: 20518 + components: + - type: Transform + pos: -85.5,181.5 + parent: 2 + - uid: 20553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,179.5 + parent: 2 + - uid: 20555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,182.5 + parent: 2 + - uid: 20556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,182.5 + parent: 2 + - uid: 20650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,179.5 + parent: 2 + - uid: 20656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,180.5 + parent: 2 +- proto: CheapLighter + entities: + - uid: 635 + components: + - type: Transform + pos: 33.646408,59.47974 + parent: 2 +- proto: CheckerBoard + entities: + - uid: 4929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 110.51263,49.598267 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 1694 + components: + - type: Transform + pos: -20.5,191.5 + parent: 2 + - uid: 22829 + components: + - type: Transform + pos: -21.5,194.5 + parent: 2 +- proto: ChemDispenserMachineCircuitboard + entities: + - uid: 8129 + components: + - type: Transform + pos: -107.620186,34.290276 + parent: 2 +- proto: ChemicalMedipen + entities: + - uid: 26158 + components: + - type: Transform + pos: 19.386444,169.56036 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 22855 + components: + - type: Transform + pos: -22.5,194.5 + parent: 2 +- proto: ChemMaster + entities: + - uid: 4220 + components: + - type: Transform + pos: -18.5,191.5 + parent: 2 + - uid: 22837 + components: + - type: Transform + pos: -20.5,194.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 8727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.553993,22.539948 + parent: 2 + - uid: 28649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.95118,43.557114 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 12170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,71.5 + parent: 2 +- proto: Cigar + entities: + - uid: 13582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.521475,101.44646 + parent: 2 + - uid: 16661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.415092,101.34007 + parent: 2 + - uid: 27426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.521475,101.46773 + parent: 2 +- proto: Cigarette + entities: + - uid: 1689 + components: + - type: Transform + pos: -18.718971,4.7717876 + parent: 2 +- proto: CigaretteOmnizine + entities: + - uid: 25286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -133.55688,87.876366 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 9647 + components: + - type: Transform + pos: -35.025066,69.47347 + parent: 2 + - uid: 13166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.941734,69.5568 + parent: 2 + - uid: 13176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.181316,69.07764 + parent: 2 +- proto: CigaretteSyndicate + entities: + - uid: 1548 + components: + - type: Transform + pos: -69.94901,-12.719323 + parent: 2 +- proto: CigarGold + entities: + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5293283,-0.30361938 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: -22.379665,-11.005112 + parent: 2 + - uid: 2997 + components: + - type: Transform + pos: -0.8239808,76.74419 + parent: 2 + - uid: 11150 + components: + - type: Transform + pos: -0.71150064,76.62425 + parent: 2 + - uid: 23647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.1929603,0.3373103 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 5335 + components: + - type: Transform + pos: -48.672024,94.53236 + parent: 2 +- proto: CigCartonGreen + entities: + - uid: 22110 + components: + - type: Transform + pos: -46.628765,64.53927 + parent: 2 +- proto: CigPackBlack + entities: + - uid: 2096 + components: + - type: Transform + pos: 33.896408,59.66724 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: 33.896408,59.66724 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 20979 + components: + - type: Transform + pos: -70.5,171.5 + parent: 2 +- proto: ClosetBombFilled + entities: + - uid: 32226 + components: + - type: Transform + pos: -90.5,167.5 + parent: 2 + - uid: 38730 + components: + - type: Transform + pos: 57.5,55.5 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 13072 + components: + - type: Transform + pos: -15.5,62.5 + parent: 2 +- proto: ClosetEmergency + entities: + - uid: 16477 + components: + - type: Transform + pos: -67.5,75.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 895 + components: + - type: Transform + pos: -55.5,171.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: -35.5,-17.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: -46.5,-4.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: -52.5,156.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: -69.5,-7.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: -67.5,-13.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: 4.5,87.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: 83.5,40.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: -64.5,133.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + pos: -81.5,93.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + pos: -66.5,127.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + pos: 84.5,55.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + pos: -22.5,209.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: 71.5,18.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + pos: -86.5,37.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + pos: 72.5,26.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + pos: -28.5,91.5 + parent: 2 + - uid: 11153 + components: + - type: Transform + pos: -41.5,95.5 + parent: 2 + - uid: 11942 + components: + - type: Transform + pos: -27.5,78.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12326 + components: + - type: Transform + pos: -60.5,1.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + pos: -23.5,176.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14852 + components: + - type: Transform + pos: -65.5,89.5 + parent: 2 + - uid: 15694 + components: + - type: Transform + pos: -39.5,55.5 + parent: 2 + - uid: 15781 + components: + - type: Transform + pos: -49.5,62.5 + parent: 2 + - uid: 18273 + components: + - type: Transform + pos: -111.5,149.5 + parent: 2 + - uid: 20508 + components: + - type: Transform + pos: -94.5,167.5 + parent: 2 + - uid: 20829 + components: + - type: Transform + pos: -76.5,142.5 + parent: 2 + - uid: 20899 + components: + - type: Transform + pos: -68.5,179.5 + parent: 2 + - uid: 21325 + components: + - type: Transform + pos: -60.5,167.5 + parent: 2 + - uid: 21606 + components: + - type: Transform + pos: 85.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 22382 + components: + - type: Transform + pos: -15.5,185.5 + parent: 2 + - uid: 25436 + components: + - type: Transform + pos: -22.5,167.5 + parent: 2 + - uid: 26202 + components: + - type: Transform + pos: -34.5,191.5 + parent: 2 + - uid: 26830 + components: + - type: Transform + pos: 17.5,205.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 27500 + components: + - type: Transform + pos: -79.5,49.5 + parent: 2 + - uid: 28138 + components: + - type: Transform + pos: 90.5,44.5 + parent: 2 + - uid: 28482 + components: + - type: Transform + pos: 116.5,47.5 + parent: 2 + - uid: 29116 + components: + - type: Transform + pos: -117.5,38.5 + parent: 2 + - uid: 32290 + components: + - type: Transform + pos: -22.5,100.5 + parent: 2 + - uid: 34924 + components: + - type: Transform + anchored: True + pos: -0.5,219.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 35984 + components: + - type: Transform + pos: -36.5,72.5 + parent: 2 + - uid: 36738 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 36806 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 36808 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 36962 + components: + - type: Transform + pos: -9.5,87.5 + parent: 2 + - uid: 37323 + components: + - type: Transform + pos: -45.5,176.5 + parent: 2 + - uid: 37334 + components: + - type: Transform + pos: -51.5,170.5 + parent: 2 + - uid: 37373 + components: + - type: Transform + pos: -38.5,92.5 + parent: 2 + - uid: 37524 + components: + - type: Transform + pos: 3.5,165.5 + parent: 2 + - uid: 37684 + components: + - type: Transform + pos: -100.5,60.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 4111 + components: + - type: Transform + pos: -66.5,133.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: -64.5,127.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 966 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: -52.5,155.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: -12.5,86.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + anchored: True + pos: -0.5,218.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 4235 + components: + - type: Transform + pos: -20.5,167.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 85.5,40.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: 90.5,45.5 + parent: 2 + - uid: 5981 + components: + - type: Transform + pos: 71.5,17.5 + parent: 2 + - uid: 6119 + components: + - type: Transform + pos: -100.5,59.5 + parent: 2 + - uid: 11769 + components: + - type: Transform + pos: -39.5,95.5 + parent: 2 + - uid: 11943 + components: + - type: Transform + pos: -26.5,85.5 + parent: 2 + - uid: 14848 + components: + - type: Transform + pos: -68.5,85.5 + parent: 2 + - uid: 14853 + components: + - type: Transform + pos: -44.5,72.5 + parent: 2 + - uid: 16077 + components: + - type: Transform + pos: -66.5,75.5 + parent: 2 + - uid: 18062 + components: + - type: Transform + pos: -80.5,40.5 + parent: 2 + - uid: 18379 + components: + - type: Transform + pos: 0.5,171.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 32103 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19047 + components: + - type: Transform + pos: -98.5,160.5 + parent: 2 + - uid: 20208 + components: + - type: Transform + pos: -83.5,180.5 + parent: 2 + - uid: 20501 + components: + - type: Transform + pos: -85.34114,169.5444 + parent: 2 + - uid: 20898 + components: + - type: Transform + pos: -68.5,180.5 + parent: 2 + - uid: 21339 + components: + - type: Transform + pos: -65.5,161.5 + parent: 2 + - uid: 22762 + components: + - type: Transform + pos: -46.5,174.5 + parent: 2 + - uid: 22832 + components: + - type: Transform + pos: -23.5,177.5 + parent: 2 + - uid: 22961 + components: + - type: Transform + pos: -30.5,91.5 + parent: 2 + - uid: 23195 + components: + - type: Transform + pos: -16.5,185.5 + parent: 2 + - uid: 23962 + components: + - type: Transform + pos: -28.5,199.5 + parent: 2 + - uid: 23988 + components: + - type: Transform + pos: -30.5,208.5 + parent: 2 + - uid: 27840 + components: + - type: Transform + pos: 108.5,49.5 + parent: 2 + - uid: 27845 + components: + - type: Transform + pos: -75.5,165.5 + parent: 2 + - uid: 28148 + components: + - type: Transform + pos: -77.5,149.5 + parent: 2 + - uid: 31921 + components: + - type: Transform + pos: 85.5,19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 35988 + components: + - type: Transform + pos: -66.5,90.5 + parent: 2 + - uid: 36810 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 36811 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 36812 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 37372 + components: + - type: Transform + pos: -42.5,92.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 4248 + components: + - type: Transform + pos: -2.5,82.5 + parent: 2 +- proto: ClosetL3Filled + entities: + - uid: 23218 + components: + - type: Transform + pos: -75.5,161.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 18313 + components: + - type: Transform + pos: 0.5,82.5 + parent: 2 + - uid: 19733 + components: + - type: Transform + pos: -79.5,155.5 + parent: 2 +- proto: ClosetL3SecurityFilled + entities: + - uid: 17711 + components: + - type: Transform + pos: -111.5,96.5 + parent: 2 + - uid: 17726 + components: + - type: Transform + pos: -112.5,96.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 23246 + components: + - type: Transform + pos: 5.5,190.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 23250 + components: + - type: Transform + pos: 4.5,190.5 + parent: 2 + - uid: 23618 + components: + - type: Transform + pos: 17.5,195.5 + parent: 2 + - uid: 23619 + components: + - type: Transform + pos: 16.5,195.5 + parent: 2 +- proto: ClosetLegal + entities: + - uid: 14718 + components: + - type: Transform + pos: -72.5,85.5 + parent: 2 +- proto: ClosetLegalFilled + entities: + - uid: 26536 + components: + - type: Transform + pos: -72.5,75.5 + parent: 2 +- proto: ClosetMaintenance + entities: + - uid: 37358 + components: + - type: Transform + pos: -110.5,62.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1063 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: -27.5,79.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: -57.5,0.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: -19.5,174.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 2220 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: -68.5,71.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + pos: 85.5,50.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + pos: 3.5,78.5 + parent: 2 + - uid: 6111 + components: + - type: Transform + pos: -82.5,140.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6617 + components: + - type: Transform + pos: -49.5,63.5 + parent: 2 + - uid: 7424 + components: + - type: Transform + pos: 52.5,43.5 + parent: 2 + - uid: 11258 + components: + - type: Transform + pos: -44.5,64.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11952 + components: + - type: Transform + pos: -26.5,86.5 + parent: 2 + - uid: 12912 + components: + - type: Transform + pos: 85.5,42.5 + parent: 2 + - uid: 13162 + components: + - type: Transform + pos: -35.5,63.5 + parent: 2 + - uid: 14360 + components: + - type: Transform + pos: -78.5,89.5 + parent: 2 + - uid: 15689 + components: + - type: Transform + pos: -38.5,55.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 15845 + components: + - type: Transform + pos: -47.5,70.5 + parent: 2 + - uid: 17218 + components: + - type: Transform + pos: -72.5,71.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 17707 + components: + - type: Transform + pos: -103.5,96.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 17708 + components: + - type: Transform + pos: -104.5,96.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 17856 + components: + - type: Transform + pos: -101.5,96.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 23237 + components: + - type: Transform + pos: -2.5,195.5 + parent: 2 + - uid: 23261 + components: + - type: Transform + pos: -3.5,195.5 + parent: 2 + - uid: 23930 + components: + - type: Transform + pos: -31.5,185.5 + parent: 2 + - uid: 24033 + components: + - type: Transform + pos: -23.5,205.5 + parent: 2 + - uid: 24127 + components: + - type: Transform + pos: 0.5,209.5 + parent: 2 + - uid: 24153 + components: + - type: Transform + pos: -31.5,184.5 + parent: 2 + - uid: 24248 + components: + - type: Transform + pos: 3.5,81.5 + parent: 2 + - uid: 24251 + components: + - type: Transform + pos: -35.5,70.5 + parent: 2 + - uid: 24253 + components: + - type: Transform + pos: -81.5,72.5 + parent: 2 + - uid: 25533 + components: + - type: Transform + pos: 7.5,176.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 25536 + components: + - type: Transform + pos: 13.5,181.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 27305 + components: + - type: Transform + pos: -112.5,62.5 + parent: 2 + - uid: 27538 + components: + - type: Transform + pos: -90.5,145.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 37230 + components: + - type: Transform + pos: -35.5,178.5 + parent: 2 + - uid: 37352 + components: + - type: Transform + pos: -55.5,172.5 + parent: 2 + - uid: 37507 + components: + - type: Transform + pos: 85.5,48.5 + parent: 2 + - uid: 37551 + components: + - type: Transform + pos: -100.5,55.5 + parent: 2 + - uid: 37631 + components: + - type: Transform + pos: -102.5,60.5 + parent: 2 + - uid: 37649 + components: + - type: Transform + pos: -105.5,64.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 20366 + components: + - type: Transform + pos: -82.5,165.5 + parent: 2 +- proto: ClosetToolFilled + entities: + - uid: 11269 + components: + - type: Transform + pos: -110.5,147.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3930 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 17166 + components: + - type: Transform + pos: -86.5,75.5 + parent: 2 + - uid: 24097 + components: + - type: Transform + pos: 13.5,202.5 + parent: 2 +- proto: ClosetWall + entities: + - uid: 1589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8978151 + - 7.1394 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13916 + - 1590 + - 1591 + - 1592 + - uid: 26502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,92.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 33140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,95.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17609 + - uid: 34638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,95.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17640 +- proto: ClosetWallAtmospherics + entities: + - uid: 11989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,143.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12300 + - 12323 + - uid: 12288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12293 + - 12292 + - 12291 + - 12290 + - 12289 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 4216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,54.5 + parent: 2 + - uid: 16974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 13386 + - uid: 18280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,177.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 21295 + components: + - type: Transform + pos: 4.5,173.5 + parent: 2 + - uid: 23271 + components: + - type: Transform + pos: -18.5,198.5 + parent: 2 + - uid: 28637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 115.5,56.5 + parent: 2 + - uid: 30092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,26.5 + parent: 2 + - uid: 30949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 30902 + - uid: 32276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,143.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 37870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 37842 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 1019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-19.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 4651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,52.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,173.5 + parent: 2 + - uid: 19042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,177.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 22880 + components: + - type: Transform + pos: -17.5,198.5 + parent: 2 + - uid: 25750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,143.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 28931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 113.5,56.5 + parent: 2 + - uid: 30085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,27.5 + parent: 2 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 1010 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 37252 + components: + - type: Transform + pos: -51.5,173.5 + parent: 2 +- proto: ClosetWallYellow + entities: + - uid: 37932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 37842 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 37957 + - 38029 + - 38031 + - 38030 + - 38039 + - 38032 + - 38038 + - 38035 + - 38036 + - 37989 + - 38567 + - 37944 + - 38037 + - 38034 + - 38028 + - 38033 + - 38040 + - 37937 + - 39970 + - 37933 + - 38026 + - 38027 +- proto: ClothingBackpackDuffelCargo + entities: + - uid: 1699 + components: + - type: Transform + pos: -27.38283,-6.237975 + parent: 2 +- proto: ClothingBackpackDuffelGenetics + entities: + - uid: 23687 + components: + - type: Transform + pos: 11.526649,183.4251 + parent: 2 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 3944 + components: + - type: Transform + pos: 80.684105,46.424698 + parent: 2 +- proto: ClothingBeltMedicalFilled + entities: + - uid: 19655 + components: + - type: Transform + pos: -0.49716187,197.42072 + parent: 2 +- proto: ClothingBeltMercWebbing + entities: + - uid: 36747 + components: + - type: Transform + parent: 25348 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltPlantFilled + entities: + - uid: 13349 + components: + - type: Transform + pos: -9.637129,65.51059 + parent: 2 +- proto: ClothingBeltUtility + entities: + - uid: 15843 + components: + - type: Transform + pos: -45.335175,70.54042 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 1081 + components: + - type: Transform + pos: -38.40183,-15.353652 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: -37.388275,-15.38651 + parent: 2 + - uid: 3298 + components: + - type: Transform + pos: -5.46987,-2.433957 + parent: 2 + - uid: 10578 + components: + - type: Transform + pos: -10.331087,84.5635 + parent: 2 + - uid: 11773 + components: + - type: Transform + pos: -45.426987,101.651794 + parent: 2 + - uid: 28005 + components: + - type: Transform + pos: -94.55092,48.61208 + parent: 2 +- proto: ClothingEyesBlindfold + entities: + - uid: 643 + components: + - type: Transform + pos: 38.436615,63.507355 + parent: 2 + - uid: 6838 + components: + - type: Transform + parent: 17390 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15557 + components: + - type: Transform + pos: -39.496777,57.66884 + parent: 2 +- proto: ClothingEyesGlasses + entities: + - uid: 20152 + components: + - type: Transform + pos: -75.69309,183.34036 + parent: 2 + - uid: 20360 + components: + - type: Transform + pos: -90.57496,165.68503 + parent: 2 + - uid: 20361 + components: + - type: Transform + pos: -90.428734,165.58383 + parent: 2 + - uid: 20362 + components: + - type: Transform + pos: -90.541214,165.43765 + parent: 2 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 23043 + components: + - type: Transform + pos: -22.954693,194.63948 + parent: 2 + - uid: 37367 + components: + - type: Transform + pos: -22.629581,194.71255 + parent: 2 +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 4644 + components: + - type: Transform + pos: 69.57355,69.491875 + parent: 2 + - uid: 4961 + components: + - type: Transform + pos: 96.11738,53.525078 + parent: 2 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 37360 + components: + - type: Transform + pos: -100.59469,103.051216 + parent: 2 +- proto: ClothingEyesHudMedical + entities: + - uid: 17138 + components: + - type: Transform + pos: 0.8419876,196.54977 + parent: 2 + - uid: 22871 + components: + - type: Transform + pos: 0.50597,196.70602 + parent: 2 + - uid: 23000 + components: + - type: Transform + pos: -12.779064,194.55563 + parent: 2 + - uid: 23002 + components: + - type: Transform + pos: -12.824059,194.7018 + parent: 2 + - uid: 23003 + components: + - type: Transform + pos: -12.36289,194.55563 + parent: 2 + - uid: 23004 + components: + - type: Transform + pos: -12.3853855,194.74678 + parent: 2 + - uid: 30950 + components: + - type: Transform + pos: 2.5602746,4.5236516 + parent: 30902 +- proto: ClothingEyesHudSecurity + entities: + - uid: 4642 + components: + - type: Transform + pos: 74.691376,67.63655 + parent: 2 + - uid: 4643 + components: + - type: Transform + pos: 74.993935,67.81376 + parent: 2 + - uid: 15576 + components: + - type: Transform + pos: -114.76186,102.47664 + parent: 2 +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 38039 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorBrown + entities: + - uid: 1696 + components: + - type: Transform + pos: -27.458036,-6.773464 + parent: 2 +- proto: ClothingHandsGlovesColorGray + entities: + - uid: 20496 + components: + - type: Transform + pos: -93.333176,167.59885 + parent: 2 +- proto: ClothingHandsGlovesColorWhite + entities: + - uid: 10744 + components: + - type: Transform + pos: -0.5387826,84.783424 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 491 + components: + - type: Transform + parent: 1815 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 7347 + components: + - type: Transform + pos: 53.693108,43.40381 + parent: 2 +- proto: ClothingHandsGlovesFingerlessInsulated + entities: + - uid: 4950 + components: + - type: Transform + pos: -95.522675,45.64894 + parent: 2 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 15519 + components: + - type: Transform + pos: -35.509842,59.550842 + parent: 2 + - uid: 22579 + components: + - type: Transform + pos: -1.4929008,73.63781 + parent: 2 +- proto: ClothingHandsGlovesLeather + entities: + - uid: 13348 + components: + - type: Transform + pos: -11.429226,65.53675 + parent: 2 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 1721 + components: + - type: Transform + pos: 21.447254,188.58113 + parent: 2 + - uid: 23401 + components: + - type: Transform + pos: -8.714691,210.472 + parent: 2 + - uid: 37497 + components: + - type: Transform + pos: 80.34368,46.70129 + parent: 2 +- proto: ClothingHandsGlovesPowerglove + entities: + - uid: 13314 + components: + - type: Transform + pos: -109.55782,91.69752 + parent: 2 +- proto: ClothingHeadBandGreen + entities: + - uid: 8920 + components: + - type: Transform + pos: 8.347542,70.81061 + parent: 2 + - uid: 8921 + components: + - type: Transform + pos: 8.528751,70.81061 + parent: 2 +- proto: ClothingHeadBandMerc + entities: + - uid: 36750 + components: + - type: Transform + pos: -42.52899,63.64292 + parent: 2 +- proto: ClothingHeadBandRed + entities: + - uid: 2537 + components: + - type: Transform + pos: -34.626602,-10.299561 + parent: 2 + - uid: 5612 + components: + - type: Transform + pos: -34.660343,-10.704361 + parent: 2 + - uid: 5832 + components: + - type: Transform + pos: -34.322906,-10.591919 + parent: 2 + - uid: 8882 + components: + - type: Transform + pos: 7.7013435,70.856094 + parent: 2 + - uid: 8916 + components: + - type: Transform + pos: 7.822151,70.856094 + parent: 2 +- proto: ClothingHeadHatAnimalCat + entities: + - uid: 1457 + components: + - type: Transform + pos: -66.49243,63.509323 + parent: 2 +- proto: ClothingHeadHatAnimalCatBlack + entities: + - uid: 1453 + components: + - type: Transform + pos: -66.683655,63.475586 + parent: 2 +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 10144 + components: + - type: Transform + pos: -68.37829,115.53777 + parent: 2 +- proto: ClothingHeadHatAnimalMonkey + entities: + - uid: 5926 + components: + - type: Transform + pos: -68.50235,70.41943 + parent: 2 +- proto: ClothingHeadHatBeretBrigmedic + entities: + - uid: 30952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5285034,-1.6590958 + parent: 30902 +- proto: ClothingHeadHatBeretEngineering + entities: + - uid: 27857 + components: + - type: Transform + pos: -76.39377,36.253162 + parent: 2 +- proto: ClothingHeadHatBeretMerc + entities: + - uid: 14101 + components: + - type: Transform + pos: -58.589527,97.81676 + parent: 2 + - uid: 36751 + components: + - type: Transform + pos: -49.31833,67.52768 + parent: 2 +- proto: ClothingHeadHatBeretRND + entities: + - uid: 21221 + components: + - type: Transform + pos: -61.31926,176.77676 + parent: 2 +- proto: ClothingHeadHatCargosoft + entities: + - uid: 1684 + components: + - type: Transform + pos: -27.768826,-6.40985 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: -17.677168,-5.264927 + parent: 2 +- proto: ClothingHeadHatChef + entities: + - uid: 34805 + components: + - type: Transform + pos: -16.360462,62.644505 + parent: 2 +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 4196 + components: + - type: Transform + pos: -131.29858,57.280945 + parent: 2 +- proto: ClothingHeadHatHardhatYellowDark + entities: + - uid: 37944 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHoodMoth + entities: + - uid: 17247 + components: + - type: Transform + pos: -72.31612,67.691864 + parent: 2 +- proto: ClothingHeadHatHoodNunHood + entities: + - uid: 22715 + components: + - type: Transform + pos: -62.650223,70.57431 + parent: 2 +- proto: ClothingHeadHatHopcap + entities: + - uid: 34928 + components: + - type: Transform + pos: -29.817215,174.76308 + parent: 2 +- proto: ClothingHeadHatMimesoftFlipped + entities: + - uid: 17964 + components: + - type: Transform + pos: 80.47281,18.740738 + parent: 2 +- proto: ClothingHeadHatPirate + entities: + - uid: 17609 + components: + - type: Transform + parent: 33140 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatRedsoftFlipped + entities: + - uid: 12859 + components: + - type: Transform + pos: 46.865837,64.55452 + parent: 2 +- proto: ClothingHeadHatRichard + entities: + - uid: 20907 + components: + - type: Transform + pos: -23.521778,66.55489 + parent: 2 +- proto: ClothingHeadHatSecsoft + entities: + - uid: 4733 + components: + - type: Transform + pos: 85.58471,58.504395 + parent: 2 + - uid: 22465 + components: + - type: Transform + pos: -5.495203,180.11717 + parent: 2 +- proto: ClothingHeadHatShrineMaidenWig + entities: + - uid: 2053 + components: + - type: Transform + pos: -62.641167,69.69359 + parent: 2 +- proto: ClothingHeadHatSombrero + entities: + - uid: 12797 + components: + - type: Transform + pos: -42.264904,-5.813843 + parent: 2 +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 35581 + components: + - type: Transform + pos: -96.591385,63.472298 + parent: 2 +- proto: ClothingHeadHatUshanka + entities: + - uid: 3005 + components: + - type: Transform + pos: -4.3947268,186.4848 + parent: 2 + - uid: 3024 + components: + - type: Transform + pos: -4.6603518,186.51605 + parent: 2 + - uid: 23150 + components: + - type: Transform + pos: -0.0017938614,178.39265 + parent: 2 + - uid: 25329 + components: + - type: Transform + pos: -4.7072268,186.6723 + parent: 2 + - uid: 26311 + components: + - type: Transform + pos: -4.3947268,186.6723 + parent: 2 +- proto: ClothingHeadHatVioletwizard + entities: + - uid: 17599 + components: + - type: Transform + pos: -59.421307,155.53162 + parent: 2 + - uid: 17620 + components: + - type: Transform + pos: -59.578777,155.63281 + parent: 2 +- proto: ClothingHeadHatWatermelon + entities: + - uid: 13674 + components: + - type: Transform + pos: -4.466236,69.58449 + parent: 2 + - uid: 25284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -132.66327,87.36573 + parent: 2 +- proto: ClothingHeadHatWelding + entities: + - uid: 19661 + components: + - type: Transform + pos: -104.426384,91.6339 + parent: 2 + - uid: 37753 + components: + - type: Transform + pos: -90.18796,74.30776 + parent: 2 + - uid: 38283 + components: + - type: Transform + pos: -69.67262,181.8251 + parent: 2 +- proto: ClothingHeadHatWeldingMaskFlameBlue + entities: + - uid: 3703 + components: + - type: Transform + pos: -136.48978,37.679768 + parent: 2 +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 18574 + components: + - type: Transform + pos: -80.37125,42.5207 + parent: 2 + - uid: 25293 + components: + - type: Transform + parent: 25246 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatWitch1 + entities: + - uid: 26046 + components: + - type: Transform + pos: -82.69702,174.67587 + parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 27340 + components: + - type: Transform + pos: -119.136116,97.57423 + parent: 2 +- proto: ClothingHeadHelmetCosmonaut + entities: + - uid: 19000 + components: + - type: Transform + pos: -74.509026,46.549538 + parent: 2 +- proto: ClothingHeadHelmetEVALarge + entities: + - uid: 18295 + components: + - type: Transform + pos: -39.950825,54.399143 + parent: 2 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 12833 + components: + - type: Transform + pos: 62.283806,60.704174 + parent: 2 + - uid: 12870 + components: + - type: Transform + pos: 62.658806,60.704174 + parent: 2 + - uid: 17935 + components: + - type: Transform + pos: 62.637833,61.684746 + parent: 2 + - uid: 18021 + components: + - type: Transform + pos: 62.278458,61.66912 + parent: 2 +- proto: ClothingHeadHelmetTemplar + entities: + - uid: 15852 + components: + - type: Transform + pos: -54.48825,74.409775 + parent: 2 +- proto: ClothingHeadPyjamaSyndicateRed + entities: + - uid: 1546 + components: + - type: Transform + pos: -70.47767,-12.606879 + parent: 2 +- proto: ClothingHeadsetCargo + entities: + - uid: 1114 + components: + - type: Transform + pos: -39.67285,-12.367102 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: -27.67175,-7.448127 + parent: 2 +- proto: ClothingHeadsetSecurity + entities: + - uid: 4645 + components: + - type: Transform + pos: 73.74655,69.52561 + parent: 2 +- proto: ClothingHeadsetService + entities: + - uid: 10708 + components: + - type: Transform + pos: -7.3500295,84.623085 + parent: 2 +- proto: ClothingMaskBandGreen + entities: + - uid: 8915 + components: + - type: Transform + pos: 8.528751,70.569 + parent: 2 + - uid: 8922 + components: + - type: Transform + pos: 8.307274,70.569 + parent: 2 +- proto: ClothingMaskBandRed + entities: + - uid: 8445 + components: + - type: Transform + pos: 7.822151,70.57421 + parent: 2 + - uid: 8917 + components: + - type: Transform + pos: 7.6208076,70.57421 + parent: 2 +- proto: ClothingMaskBear + entities: + - uid: 4360 + components: + - type: Transform + pos: -53.913757,71.58979 + parent: 2 + - uid: 23107 + components: + - type: Transform + pos: -68.231705,70.68634 + parent: 2 +- proto: ClothingMaskBee + entities: + - uid: 9330 + components: + - type: Transform + pos: -53.643806,71.55605 + parent: 2 +- proto: ClothingMaskBreath + entities: + - uid: 938 + components: + - type: Transform + pos: -37.356796,-6.5319214 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: -37.57051,-6.3182755 + parent: 2 + - uid: 10637 + components: + - type: Transform + pos: -11.528082,82.494606 + parent: 2 + - uid: 10638 + components: + - type: Transform + pos: -11.359362,82.33719 + parent: 2 + - uid: 10639 + components: + - type: Transform + pos: -11.528082,82.25848 + parent: 2 + - uid: 10640 + components: + - type: Transform + pos: -11.415602,82.16852 + parent: 2 + - uid: 15690 + components: + - type: Transform + pos: -38.67627,52.51537 + parent: 2 + - uid: 16253 + components: + - type: Transform + pos: -38.38102,52.38837 + parent: 2 + - uid: 19036 + components: + - type: Transform + pos: -96.357414,158.49881 + parent: 2 + - uid: 19037 + components: + - type: Transform + pos: -96.717354,158.63374 + parent: 2 + - uid: 19048 + components: + - type: Transform + pos: -96.52614,158.58876 + parent: 2 + - uid: 22730 + components: + - type: Transform + pos: 5.4193954,182.54726 + parent: 2 + - uid: 37682 + components: + - type: Transform + pos: -104.366295,64.45973 + parent: 2 +- proto: ClothingMaskBreathMedical + entities: + - uid: 9106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.619545,193.59912 + parent: 2 + - uid: 23645 + components: + - type: Transform + pos: 21.422962,188.97816 + parent: 2 +- proto: ClothingMaskFox + entities: + - uid: 4359 + components: + - type: Transform + pos: -54.206207,71.52461 + parent: 2 +- proto: ClothingMaskGas + entities: + - uid: 1032 + components: + - type: Transform + pos: -48.329212,-5.3925 + parent: 2 +- proto: ClothingMaskGasAtmos + entities: + - uid: 4759 + components: + - type: Transform + pos: 91.52599,17.562973 + parent: 2 + - uid: 23928 + components: + - type: Transform + pos: -105.31975,35.14098 + parent: 2 +- proto: ClothingMaskGasMerc + entities: + - uid: 31595 + components: + - type: Transform + pos: -118.511086,69.477264 + parent: 2 +- proto: ClothingMaskGasSecurity + entities: + - uid: 37105 + components: + - type: Transform + pos: 79.35882,34.528732 + parent: 2 + - uid: 37106 + components: + - type: Transform + pos: 79.482544,34.461266 + parent: 2 + - uid: 37108 + components: + - type: Transform + pos: 79.707504,34.56246 + parent: 2 +- proto: ClothingMaskJoy + entities: + - uid: 17248 + components: + - type: Transform + pos: -72.61981,67.59066 + parent: 2 +- proto: ClothingMaskMuzzle + entities: + - uid: 641 + components: + - type: Transform + pos: 38.436615,63.476105 + parent: 2 + - uid: 15560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.446392,58.343014 + parent: 2 + - uid: 16348 + components: + - type: Transform + parent: 17390 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskPlague + entities: + - uid: 11059 + components: + - type: Transform + pos: -53.394886,71.709755 + parent: 2 +- proto: ClothingMaskRat + entities: + - uid: 7156 + components: + - type: Transform + pos: -68.666626,70.62637 + parent: 2 + - uid: 11201 + components: + - type: Transform + parent: 11200 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskRaven + entities: + - uid: 12162 + components: + - type: Transform + pos: -54.5514,71.48694 + parent: 2 +- proto: ClothingMaskSexyMime + entities: + - uid: 27989 + components: + - type: Transform + pos: -102.543594,145.62488 + parent: 2 +- proto: ClothingMaskSterile + entities: + - uid: 2452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.4620705,190.77304 + parent: 2 + - uid: 5363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.58955,190.54065 + parent: 2 +- proto: ClothingNeckCloakMiner + entities: + - uid: 24025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.50105,56.493835 + parent: 2 +- proto: ClothingNeckCloakVoid + entities: + - uid: 26584 + components: + - type: Transform + pos: -102.65741,145.34604 + parent: 2 +- proto: ClothingNeckScarfStripedBlue + entities: + - uid: 10824 + components: + - type: Transform + pos: -11.653515,80.19965 + parent: 2 + - uid: 14368 + components: + - type: Transform + pos: -81.49177,104.590454 + parent: 2 + - uid: 23477 + components: + - type: Transform + pos: -26.51263,198.7868 + parent: 2 +- proto: ClothingNeckScarfStripedGreen + entities: + - uid: 14371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.96097,103.64592 + parent: 2 +- proto: ClothingNeckScarfStripedLightBlue + entities: + - uid: 10823 + components: + - type: Transform + pos: -11.419474,80.135826 + parent: 2 +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 14372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.19932,106.546974 + parent: 2 + - uid: 28608 + components: + - type: Transform + pos: 86.51566,66.49655 + parent: 2 +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 17400 + components: + - type: Transform + pos: -58.678364,97.45132 + parent: 2 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 4745 + components: + - type: Transform + pos: 60.359505,58.525593 + parent: 2 + - uid: 5740 + components: + - type: Transform + pos: 61.609505,58.494343 + parent: 2 + - uid: 8352 + components: + - type: Transform + pos: 60.734505,58.525593 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: 61.25013,58.494343 + parent: 2 +- proto: ClothingOuterArmorRiot + entities: + - uid: 2781 + components: + - type: Transform + pos: 62.29232,60.24839 + parent: 2 + - uid: 7643 + components: + - type: Transform + pos: 62.69725,60.23715 + parent: 2 + - uid: 18024 + components: + - type: Transform + pos: 62.294083,61.278496 + parent: 2 + - uid: 18032 + components: + - type: Transform + pos: 62.715958,61.278496 + parent: 2 +- proto: ClothingOuterCoatBomber + entities: + - uid: 10555 + components: + - type: Transform + pos: -7.284813,168.6897 + parent: 2 +- proto: ClothingOuterCoatLab + entities: + - uid: 14336 + components: + - type: Transform + pos: -80.84898,100.64307 + parent: 2 + - uid: 14357 + components: + - type: Transform + pos: -81.517555,100.68482 + parent: 2 + - uid: 20190 + components: + - type: Transform + pos: -75.59489,183.5905 + parent: 2 + - uid: 20191 + components: + - type: Transform + pos: -75.45991,183.47806 + parent: 2 +- proto: ClothingOuterCoatLabGene + entities: + - uid: 23689 + components: + - type: Transform + pos: 8.770891,185.11176 + parent: 2 +- proto: ClothingOuterHardsuitAtmos + entities: + - uid: 12300 + components: + - type: Transform + parent: 11989 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEVAPrisoner + entities: + - uid: 15693 + components: + - type: Transform + pos: -40.47595,54.471893 + parent: 2 +- proto: ClothingOuterHardsuitSalvage + entities: + - uid: 19069 + components: + - type: Transform + parent: 1720 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterNunRobe + entities: + - uid: 37589 + components: + - type: Transform + pos: -62.72896,70.74297 + parent: 2 +- proto: ClothingOuterStraightjacket + entities: + - uid: 8722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.09339,204.98021 + parent: 2 +- proto: ClothingOuterSuitEmergency + entities: + - uid: 4341 + components: + - type: Transform + pos: -60.62609,5.590172 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: -96.549034,53.516735 + parent: 2 + - uid: 35700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.50196,93.83043 + parent: 2 + - uid: 35701 + components: + - type: Transform + pos: -107.4669,92.82841 + parent: 2 +- proto: ClothingOuterSuitFire + entities: + - uid: 4060 + components: + - type: Transform + pos: -118.554695,60.495346 + parent: 2 +- proto: ClothingOuterSuitShrineMaiden + entities: + - uid: 16757 + components: + - type: Transform + pos: -62.3471,69.99235 + parent: 2 +- proto: ClothingOuterWinterClown + entities: + - uid: 23529 + components: + - type: Transform + pos: -7.4332447,169.59348 + parent: 2 +- proto: ClothingOuterWinterMime + entities: + - uid: 14209 + components: + - type: Transform + pos: -7.3961315,168.23471 + parent: 2 + - uid: 24230 + components: + - type: Transform + pos: -58.33706,97.504105 + parent: 2 +- proto: ClothingOuterWinterMiner + entities: + - uid: 23528 + components: + - type: Transform + pos: -7.677332,168.6395 + parent: 2 +- proto: ClothingOuterWinterMusician + entities: + - uid: 14076 + components: + - type: Transform + pos: -7.609844,167.8299 + parent: 2 +- proto: ClothingOuterWinterPara + entities: + - uid: 25376 + components: + - type: Transform + pos: -3.5630221,172.72112 + parent: 2 + - uid: 25377 + components: + - type: Transform + pos: -3.2368298,172.5412 + parent: 2 +- proto: ClothingOuterWinterSyndie + entities: + - uid: 23530 + components: + - type: Transform + pos: -7.5007343,169.10997 + parent: 2 +- proto: ClothingOuterWinterWeb + entities: + - uid: 4197 + components: + - type: Transform + pos: -7.3061485,167.58252 + parent: 2 +- proto: ClothingOuterWizardViolet + entities: + - uid: 18446 + components: + - type: Transform + pos: -60.489864,155.71152 + parent: 2 + - uid: 21404 + components: + - type: Transform + pos: -60.57985,155.88019 + parent: 2 +- proto: ClothingShoesBootsMag + entities: + - uid: 939 + components: + - type: Transform + pos: -37.536766,-2.2703018 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: -37.39054,-2.472702 + parent: 2 + - uid: 10563 + components: + - type: Transform + pos: -11.635853,84.754654 + parent: 2 + - uid: 10572 + components: + - type: Transform + pos: -11.275815,84.70188 + parent: 2 + - uid: 12290 + components: + - type: Transform + parent: 12288 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12323 + components: + - type: Transform + parent: 11989 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27969 + components: + - type: Transform + pos: 77.435814,35.54653 + parent: 2 + - uid: 37102 + components: + - type: Transform + pos: 77.4689,34.576645 + parent: 2 +- proto: ClothingShoesBootsWinter + entities: + - uid: 12792 + components: + - type: Transform + pos: -5.4580345,186.67316 + parent: 2 + - uid: 12795 + components: + - type: Transform + pos: -5.356804,186.5045 + parent: 2 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 14384 + components: + - type: Transform + pos: -85.61351,98.31984 + parent: 2 +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 410 + components: + - type: Transform + parent: 22647 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 35579 + components: + - type: Transform + pos: -90.526924,66.48068 + parent: 2 +- proto: ClothingUniformJumpsuitHawaiBlack + entities: + - uid: 38032 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicateBlack + entities: + - uid: 4952 + components: + - type: Transform + pos: 87.57816,65.49655 + parent: 2 +- proto: ClothingUniformJumpsuitPyjamaSyndicatePink + entities: + - uid: 3908 + components: + - type: Transform + pos: -68.63519,107.5304 + parent: 2 +- proto: ClothingUniformJumpsuitPyjamaSyndicateRed + entities: + - uid: 4762 + components: + - type: Transform + pos: -68.32025,107.642845 + parent: 2 +- proto: ClothingUniformJumpsuitSecGrey + entities: + - uid: 35791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.984695,102.54332 + parent: 2 +- proto: CluwneHorn + entities: + - uid: 2739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.515213,-5.386215 + parent: 2 +- proto: Cobweb1 + entities: + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-5.5 + parent: 2 + - uid: 932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,58.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: -27.5,76.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 6195 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 + - uid: 12087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,88.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,85.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,70.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,43.5 + parent: 2 + - uid: 18514 + components: + - type: Transform + pos: 79.5,46.5 + parent: 2 + - uid: 22768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,169.5 + parent: 2 + - uid: 27537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,64.5 + parent: 2 + - uid: 37233 + components: + - type: Transform + pos: -82.5,62.5 + parent: 2 + - uid: 38469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,71.5 + parent: 2 + - uid: 38472 + components: + - type: Transform + pos: -97.5,72.5 + parent: 2 + - uid: 38487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,61.5 + parent: 2 + - uid: 38488 + components: + - type: Transform + pos: -105.5,64.5 + parent: 2 + - uid: 38490 + components: + - type: Transform + pos: -107.5,67.5 + parent: 2 + - uid: 38494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,72.5 + parent: 2 + - uid: 38496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,69.5 + parent: 2 + - uid: 38497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,60.5 + parent: 2 + - uid: 38502 + components: + - type: Transform + pos: -36.5,69.5 + parent: 2 + - uid: 38503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,73.5 + parent: 2 + - uid: 38504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,83.5 + parent: 2 + - uid: 38509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,73.5 + parent: 2 + - uid: 38510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,82.5 + parent: 2 + - uid: 38517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,86.5 + parent: 2 + - uid: 38519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-16.5 + parent: 2 + - uid: 38520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 2 + - uid: 38521 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 + - uid: 38527 + components: + - type: Transform + pos: 51.5,43.5 + parent: 2 + - uid: 38528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,38.5 + parent: 2 + - uid: 38535 + components: + - type: Transform + pos: 22.5,181.5 + parent: 2 + - uid: 38536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,181.5 + parent: 2 + - uid: 38537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,175.5 + parent: 2 + - uid: 38538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,171.5 + parent: 2 + - uid: 38539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,177.5 + parent: 2 + - uid: 38540 + components: + - type: Transform + pos: 0.5,172.5 + parent: 2 + - uid: 38543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,173.5 + parent: 2 + - uid: 38544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,178.5 + parent: 2 + - uid: 38545 + components: + - type: Transform + pos: -31.5,185.5 + parent: 2 + - uid: 38546 + components: + - type: Transform + pos: -30.5,196.5 + parent: 2 + - uid: 38556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,204.5 + parent: 2 + - uid: 38557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,201.5 + parent: 2 + - uid: 38558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,202.5 + parent: 2 + - uid: 39189 + components: + - type: Transform + pos: -80.5,107.5 + parent: 2 + - uid: 39190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,103.5 + parent: 2 +- proto: Cobweb2 + entities: + - uid: 4658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,63.5 + parent: 2 + - uid: 5299 + components: + - type: Transform + pos: 55.5,57.5 + parent: 2 + - uid: 8933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,205.5 + parent: 2 + - uid: 12586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,93.5 + parent: 2 + - uid: 14208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,65.5 + parent: 2 + - uid: 16706 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 17747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-5.5 + parent: 2 + - uid: 23222 + components: + - type: Transform + pos: -83.5,33.5 + parent: 2 + - uid: 26010 + components: + - type: Transform + pos: -16.5,173.5 + parent: 2 + - uid: 29596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,61.5 + parent: 2 + - uid: 31944 + components: + - type: Transform + pos: -117.5,66.5 + parent: 2 + - uid: 38491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,62.5 + parent: 2 + - uid: 38492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -122.5,63.5 + parent: 2 + - uid: 38493 + components: + - type: Transform + pos: -94.5,51.5 + parent: 2 + - uid: 38498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,64.5 + parent: 2 + - uid: 38499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,61.5 + parent: 2 + - uid: 38500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,57.5 + parent: 2 + - uid: 38501 + components: + - type: Transform + pos: -35.5,63.5 + parent: 2 + - uid: 38507 + components: + - type: Transform + pos: 8.5,77.5 + parent: 2 + - uid: 38508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,77.5 + parent: 2 + - uid: 38522 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 38523 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 38524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 2 + - uid: 38525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + - uid: 38532 + components: + - type: Transform + pos: 85.5,48.5 + parent: 2 + - uid: 38533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,54.5 + parent: 2 + - uid: 38534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,61.5 + parent: 2 + - uid: 38547 + components: + - type: Transform + pos: -28.5,206.5 + parent: 2 + - uid: 38548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,208.5 + parent: 2 + - uid: 38549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,209.5 + parent: 2 + - uid: 38550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,212.5 + parent: 2 + - uid: 38551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,213.5 + parent: 2 + - uid: 38552 + components: + - type: Transform + pos: -3.5,213.5 + parent: 2 + - uid: 38553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,209.5 + parent: 2 + - uid: 38554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,216.5 + parent: 2 + - uid: 38555 + components: + - type: Transform + pos: 6.5,209.5 + parent: 2 + - uid: 39428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,171.5 + parent: 2 +- proto: CombatKnife + entities: + - uid: 17392 + components: + - type: Transform + parent: 17390 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 1784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-10.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 9041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,100.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,59.5 + parent: 2 + - uid: 10482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,84.5 + parent: 2 + - uid: 12166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,62.5 + parent: 2 + - uid: 13562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,98.5 + parent: 2 + - uid: 13661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,98.5 + parent: 2 + - uid: 13664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,100.5 + parent: 2 + - uid: 13669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,101.5 + parent: 2 + - uid: 13671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,99.5 + parent: 2 + - uid: 13877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,93.5 + parent: 2 + - uid: 14120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,93.5 + parent: 2 + - uid: 14123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,93.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + pos: -76.5,95.5 + parent: 2 + - uid: 14339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,94.5 + parent: 2 + - uid: 16503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,178.5 + parent: 2 + - uid: 16582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,99.5 + parent: 2 + - uid: 16583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,100.5 + parent: 2 + - uid: 16585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,101.5 + parent: 2 + - uid: 18453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,161.5 + parent: 2 + - uid: 23011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,199.5 + parent: 2 + - uid: 23019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,196.5 + parent: 2 + - uid: 23020 + components: + - type: Transform + pos: -5.5,198.5 + parent: 2 + - uid: 23325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,207.5 + parent: 2 + - uid: 23326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,206.5 + parent: 2 + - uid: 23327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,207.5 + parent: 2 + - uid: 23328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,206.5 + parent: 2 + - uid: 27286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,48.5 + parent: 2 + - uid: 27287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,47.5 + parent: 2 + - uid: 27288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,46.5 + parent: 2 + - uid: 27289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,45.5 + parent: 2 + - uid: 27292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,45.5 + parent: 2 + - uid: 27293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,46.5 + parent: 2 + - uid: 27294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,47.5 + parent: 2 + - uid: 27295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,48.5 + parent: 2 + - uid: 27658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,56.5 + parent: 2 + - uid: 28306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,53.5 + parent: 2 + - uid: 28506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,55.5 + parent: 2 + - uid: 28738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,56.5 + parent: 2 + - uid: 28751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,55.5 + parent: 2 + - uid: 34583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,88.5 + parent: 2 + - uid: 36789 + components: + - type: Transform + pos: -77.5,95.5 + parent: 2 + - uid: 36804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,94.5 + parent: 2 + - uid: 36805 + components: + - type: Transform + pos: -75.5,95.5 + parent: 2 + - uid: 37237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,172.5 + parent: 2 + - uid: 37249 + components: + - type: Transform + pos: -38.5,174.5 + parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 27186 + components: + - type: Transform + pos: -107.524055,32.69689 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 1389 + components: + - type: Transform + pos: 68.5,69.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 20399 + components: + - type: Transform + pos: -96.5,170.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17347: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: computerBodyScanner + entities: + - uid: 22723 + components: + - type: Transform + pos: 4.5,186.5 + parent: 2 + - uid: 23406 + components: + - type: Transform + pos: -11.5,210.5 + parent: 2 + - uid: 23669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,183.5 + parent: 2 +- proto: ComputerBroken + entities: + - uid: 1574 + components: + - type: Transform + pos: -57.5,-15.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: -58.5,131.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,150.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + pos: -39.5,60.5 + parent: 2 + - uid: 17578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,102.5 + parent: 2 + - uid: 23668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,183.5 + parent: 2 + - uid: 24138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,200.5 + parent: 2 + - uid: 28394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,102.5 + parent: 2 + - uid: 37050 + components: + - type: Transform + pos: 0.5,1.5 + parent: 36996 +- proto: ComputerCargoBounty + entities: + - uid: 28179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 + - uid: 13576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,108.5 + parent: 2 + - uid: 19705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,39.5 + parent: 2 +- proto: ComputerCloningConsole + entities: + - uid: 23445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,198.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 13603 + components: + - type: Transform + pos: -40.5,107.5 + parent: 2 + - uid: 16570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,99.5 + parent: 2 + - uid: 19407 + components: + - type: Transform + pos: 66.5,69.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 293 + components: + - type: Transform + pos: -1.5,172.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,178.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,53.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,51.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,55.5 + parent: 2 + - uid: 5168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,77.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,129.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,44.5 + parent: 2 + - uid: 22124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,153.5 + parent: 2 + - uid: 23329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,203.5 + parent: 2 + - uid: 27889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,34.5 + parent: 2 + - uid: 29107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,106.5 + parent: 2 + - uid: 30953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 30902 + - uid: 32100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,191.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 4913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,51.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,55.5 + parent: 2 + - uid: 10577 + components: + - type: Transform + pos: 76.5,69.5 + parent: 2 + - uid: 11036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,107.5 + parent: 2 +- proto: ComputerFrame + entities: + - uid: 15830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,69.5 + parent: 2 + - uid: 16969 + components: + - type: Transform + pos: -1.5,5.5 + parent: 13386 + - type: Physics + canCollide: False +- proto: ComputerId + entities: + - uid: 10447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,81.5 + parent: 2 + - uid: 22393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,103.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 10683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,84.5 + parent: 2 + - uid: 13546 + components: + - type: Transform + pos: -36.5,109.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 9101 + components: + - type: Transform + pos: -5.5,172.5 + parent: 2 + - uid: 14317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,106.5 + parent: 2 + - uid: 34556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 30902 +- proto: ComputerPowerMonitoring + entities: + - uid: 7045 + components: + - type: Transform + pos: 68.5,23.5 + parent: 2 + - uid: 11035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,104.5 + parent: 2 + - uid: 16785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 13386 + - uid: 24802 + components: + - type: Transform + pos: -127.5,57.5 + parent: 2 + - uid: 28102 + components: + - type: Transform + pos: -96.5,43.5 + parent: 2 + - uid: 34692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,214.5 + parent: 2 + - uid: 35053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-6.5 + parent: 2 + - uid: 35398 + components: + - type: Transform + pos: -107.5,149.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 3377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,55.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: 74.5,69.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-12.5 + parent: 2 + - uid: 16709 + components: + - type: Transform + pos: 1.5,3.5 + parent: 13386 + - uid: 18343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,97.5 + parent: 2 + - uid: 20911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,107.5 + parent: 2 + - uid: 22063 + components: + - type: Transform + pos: 3.5,4.5 + parent: 21114 + - uid: 36809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 37842 + - uid: 37051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 36996 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 8119 + components: + - type: Transform + pos: -84.5,160.5 + parent: 2 + - uid: 13577 + components: + - type: Transform + pos: -44.5,109.5 + parent: 2 + - uid: 20170 + components: + - type: Transform + pos: -79.5,180.5 + parent: 2 + - uid: 20475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,168.5 + parent: 2 + - uid: 20985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,167.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 1076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-12.5 + parent: 2 +- proto: ComputerShuttle + entities: + - uid: 16708 + components: + - type: Transform + pos: 0.5,3.5 + parent: 13386 + - uid: 22064 + components: + - type: Transform + pos: 2.5,4.5 + parent: 21114 + - uid: 30954 + components: + - type: Transform + pos: 1.5,4.5 + parent: 30902 + - uid: 37936 + components: + - type: Transform + pos: 0.5,1.5 + parent: 37842 +- proto: ComputerShuttleCargo + entities: + - uid: 5774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 4270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,20.5 + parent: 2 + - uid: 13055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,105.5 + parent: 2 + - uid: 17831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-7.5 + parent: 2 + - uid: 34693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,213.5 + parent: 2 + - uid: 35399 + components: + - type: Transform + pos: -106.5,149.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-3.5 + parent: 2 + - uid: 4598 + components: + - type: Transform + pos: 67.5,69.5 + parent: 2 + - uid: 10472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,81.5 + parent: 2 + - uid: 13563 + components: + - type: Transform + pos: -37.5,109.5 + parent: 2 + - uid: 16770 + components: + - type: Transform + pos: -0.5,78.5 + parent: 2 + - uid: 28172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,53.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,103.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,177.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + pos: 75.5,69.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,43.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,52.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,77.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + pos: -61.5,131.5 + parent: 2 + - uid: 11097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,108.5 + parent: 2 + - uid: 11211 + components: + - type: Transform + pos: 0.5,78.5 + parent: 2 + - uid: 22125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,154.5 + parent: 2 + - uid: 27836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,37.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 1138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,75.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 10675 + components: + - type: Transform + pos: 0.5,85.5 + parent: 2 + - uid: 11204 + components: + - type: Transform + pos: -24.5,64.5 + parent: 2 + - uid: 20560 + components: + - type: Transform + pos: -90.5,180.5 + parent: 2 + - uid: 23987 + components: + - type: Transform + pos: -125.5,109.5 + parent: 2 + - uid: 39181 + components: + - type: Transform + pos: -72.5,96.5 + parent: 2 +- proto: ContainmentFieldGenerator + entities: + - uid: 1067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -148.5,30.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -140.5,22.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -148.5,22.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -140.5,30.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 2 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 2 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 2 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,7.5 + parent: 2 + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,8.5 + parent: 2 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,9.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,6.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-20.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,40.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,51.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,49.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,50.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + pos: 46.5,52.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: 46.5,51.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,40.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,47.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,52.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,48.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,34.5 + parent: 2 + - uid: 7049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,34.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,42.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,42.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,42.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,42.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,42.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,41.5 + parent: 2 + - uid: 7223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,39.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,39.5 + parent: 2 + - uid: 7229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,39.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + pos: 46.5,50.5 + parent: 2 + - uid: 7450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,39.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,34.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,34.5 + parent: 2 + - uid: 11231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,77.5 + parent: 2 + - uid: 11232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,77.5 + parent: 2 + - uid: 11233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,77.5 + parent: 2 + - uid: 11234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,77.5 + parent: 2 + - uid: 11296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,85.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,85.5 + parent: 2 + - uid: 11298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,85.5 + parent: 2 + - uid: 11299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,85.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,85.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 11302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,85.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 11303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,85.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 11304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,85.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 11306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,77.5 + parent: 2 + - uid: 11307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,77.5 + parent: 2 + - uid: 11308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,77.5 + parent: 2 + - uid: 11309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,77.5 + parent: 2 + - uid: 11311 + components: + - type: Transform + pos: -40.5,69.5 + parent: 2 + - uid: 11312 + components: + - type: Transform + pos: -40.5,68.5 + parent: 2 + - uid: 11313 + components: + - type: Transform + pos: -40.5,67.5 + parent: 2 + - uid: 11314 + components: + - type: Transform + pos: -40.5,66.5 + parent: 2 + - uid: 12948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,93.5 + parent: 2 + - uid: 15210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,169.5 + parent: 2 + - uid: 15331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,64.5 + parent: 2 + - uid: 15397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,169.5 + parent: 2 + - uid: 15893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,169.5 + parent: 2 + - uid: 16638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,169.5 + parent: 2 + - uid: 17145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,47.5 + parent: 2 + - uid: 17393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,64.5 + parent: 2 + - uid: 17396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,65.5 + parent: 2 + - uid: 17412 + components: + - type: Transform + pos: -111.5,90.5 + parent: 2 + - uid: 17426 + components: + - type: Transform + pos: -108.5,91.5 + parent: 2 + - uid: 17427 + components: + - type: Transform + pos: -108.5,90.5 + parent: 2 + - uid: 17561 + components: + - type: Transform + pos: -111.5,91.5 + parent: 2 + - uid: 17570 + components: + - type: Transform + pos: -105.5,91.5 + parent: 2 + - uid: 17576 + components: + - type: Transform + pos: -105.5,90.5 + parent: 2 + - uid: 17582 + components: + - type: Transform + pos: -102.5,90.5 + parent: 2 + - uid: 17721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,64.5 + parent: 2 + - uid: 17745 + components: + - type: Transform + pos: -118.5,65.5 + parent: 2 + - uid: 17772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,66.5 + parent: 2 + - uid: 17820 + components: + - type: Transform + pos: -102.5,91.5 + parent: 2 + - uid: 17834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,64.5 + parent: 2 + - uid: 18042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,74.5 + parent: 2 + - uid: 18186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,69.5 + parent: 2 + - uid: 18200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,68.5 + parent: 2 + - uid: 18297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,70.5 + parent: 2 + - uid: 18304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,67.5 + parent: 2 + - uid: 18565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,71.5 + parent: 2 + - uid: 18621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -117.5,72.5 + parent: 2 + - uid: 18626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,69.5 + parent: 2 + - uid: 18685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,72.5 + parent: 2 + - uid: 18793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,72.5 + parent: 2 + - uid: 18990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,73.5 + parent: 2 + - uid: 18994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,70.5 + parent: 2 + - uid: 20881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,157.5 + parent: 2 + - uid: 20882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,157.5 + parent: 2 + - uid: 20883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,157.5 + parent: 2 + - uid: 20885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,157.5 + parent: 2 + - uid: 21208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,174.5 + parent: 2 + - uid: 21209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,175.5 + parent: 2 + - uid: 21210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,176.5 + parent: 2 + - uid: 21211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,173.5 + parent: 2 + - uid: 21212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,173.5 + parent: 2 + - uid: 21213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,173.5 + parent: 2 + - uid: 21215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,172.5 + parent: 2 + - uid: 23291 + components: + - type: Transform + pos: 46.5,49.5 + parent: 2 + - uid: 23384 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 + - uid: 24196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,176.5 + parent: 2 + - uid: 24197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,176.5 + parent: 2 + - uid: 24198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,176.5 + parent: 2 + - uid: 24199 + components: + - type: Transform + pos: 21.5,177.5 + parent: 2 + - uid: 24200 + components: + - type: Transform + pos: 21.5,178.5 + parent: 2 + - uid: 24201 + components: + - type: Transform + pos: 21.5,179.5 + parent: 2 + - uid: 24304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,176.5 + parent: 2 + - uid: 27737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,41.5 + parent: 2 + - uid: 27738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,41.5 + parent: 2 + - uid: 27739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,41.5 + parent: 2 + - uid: 27740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,41.5 + parent: 2 + - uid: 35729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,93.5 + parent: 2 + - uid: 35730 + components: + - type: Transform + pos: -102.5,93.5 + parent: 2 + - uid: 35731 + components: + - type: Transform + pos: -102.5,92.5 + parent: 2 + - uid: 35732 + components: + - type: Transform + pos: -105.5,92.5 + parent: 2 + - uid: 35733 + components: + - type: Transform + pos: -105.5,93.5 + parent: 2 + - uid: 35734 + components: + - type: Transform + pos: -108.5,92.5 + parent: 2 + - uid: 35735 + components: + - type: Transform + pos: -108.5,93.5 + parent: 2 + - uid: 35736 + components: + - type: Transform + pos: -111.5,92.5 + parent: 2 + - uid: 35737 + components: + - type: Transform + pos: -111.5,93.5 + parent: 2 + - uid: 35738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,93.5 + parent: 2 + - uid: 35739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,93.5 + parent: 2 + - uid: 35740 + components: + - type: Transform + pos: -108.5,90.5 + parent: 2 + - uid: 35741 + components: + - type: Transform + pos: -108.5,89.5 + parent: 2 + - uid: 35742 + components: + - type: Transform + pos: -111.5,89.5 + parent: 2 + - uid: 35743 + components: + - type: Transform + pos: -105.5,89.5 + parent: 2 + - uid: 35744 + components: + - type: Transform + pos: -102.5,89.5 + parent: 2 + - uid: 35745 + components: + - type: Transform + pos: -102.5,90.5 + parent: 2 + - uid: 35746 + components: + - type: Transform + pos: -105.5,90.5 + parent: 2 + - uid: 35747 + components: + - type: Transform + pos: -111.5,90.5 + parent: 2 + - uid: 35748 + components: + - type: Transform + pos: -111.5,88.5 + parent: 2 + - uid: 35749 + components: + - type: Transform + pos: -108.5,88.5 + parent: 2 + - uid: 35750 + components: + - type: Transform + pos: -105.5,88.5 + parent: 2 + - uid: 35751 + components: + - type: Transform + pos: -102.5,88.5 + parent: 2 +- proto: CorporateCircuitBoard + entities: + - uid: 8362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.11605,131.50339 + parent: 2 +- proto: CowToolboxFilled + entities: + - uid: 37685 + components: + - type: Transform + pos: -100.42063,61.35997 + parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 20495 + components: + - type: Transform + pos: -85.45471,168.33792 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 20500 + components: + - type: Transform + pos: -85.52452,167.45154 + parent: 2 +- proto: CrateEngineeringAMEControl + entities: + - uid: 4118 + components: + - type: Transform + pos: -127.5,43.5 + parent: 2 +- proto: CrateEngineeringAMEJar + entities: + - uid: 28903 + components: + - type: Transform + pos: -125.5,51.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 2526 + components: + - type: Transform + pos: -126.5,43.5 + parent: 2 + - uid: 28939 + components: + - type: Transform + pos: -128.5,43.5 + parent: 2 +- proto: CrateEngineeringCableBulk + entities: + - uid: 6561 + components: + - type: Transform + pos: -116.5,58.5 + parent: 2 +- proto: CrateFilledSpawner + entities: + - uid: 18027 + components: + - type: Transform + pos: -77.5,147.5 + parent: 2 + - uid: 28000 + components: + - type: Transform + pos: -96.5,145.5 + parent: 2 + - uid: 28906 + components: + - type: Transform + pos: -102.5,64.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 2625 + components: + - type: Transform pos: 29.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19607 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2996 + - 2995 + - 2994 + - 2993 + - 2992 + - 2991 + - 2855 + - 2650 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6450 + components: + - type: Transform + pos: 56.5,24.5 + parent: 2 + - uid: 26659 + components: + - type: Transform + pos: 3.5,186.5 + parent: 2 + - uid: 38429 + components: + - type: Transform + pos: -22.5,180.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 38437 + - 38438 + - 38430 + - 38432 + - 38434 + - 38435 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFunBoardGames + entities: + - uid: 1166 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 14523 + components: + - type: Transform + pos: -70.5,83.5 + parent: 2 +- proto: CrateGenericSteel + entities: + - uid: 1065 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1073 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1135 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1815 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 491 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1816 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 518 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4407 + components: + - type: Transform + pos: -65.5,65.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5290 + - 14196 + - 14548 + - 14562 + - 15615 + - 18061 + - 18653 + - 21391 + - 23375 + - 26500 + - 27202 + - 27307 + - 27695 + - 28226 + - 28428 + - 28580 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 17390 + components: + - type: Transform + pos: 60.5,46.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6838 + - 16348 + - 17392 + - 17394 + - 17398 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25348 + components: + - type: Transform + anchored: True + pos: 13.5,174.5 + parent: 2 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25353 + - 36747 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 34626 + components: + - type: Transform + pos: -117.5,95.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6822 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 43362 + components: + - type: Transform + pos: -129.22409,17.695015 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 43363 + - 43364 + - 43365 + - 43366 + - 43367 + - 43368 + - 43369 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMedicalSurgery + entities: + - uid: 22734 + components: + - type: Transform + pos: 2.5,182.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 13581 + components: + - type: Transform + pos: -40.5,110.5 + parent: 2 +- proto: CratePlastic + entities: + - uid: 38381 + components: + - type: Transform + pos: 59.5,39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 38382 + - 38383 + - 38384 + - 38385 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 10753 + components: + - type: Transform + pos: -3.5,80.5 + parent: 2 +- proto: CrateServicePersonnel + entities: + - uid: 9173 + components: + - type: Transform + pos: -15.5,84.5 + parent: 2 +- proto: CrateStoneGrave + entities: + - uid: 1306 + components: + - type: Transform + pos: 3.5,180.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12167 + components: + - type: MetaData + desc: This is where Naru resting. + - type: Transform + pos: 2.5,179.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 22647 + components: + - type: MetaData + desc: This is where konstantin_9000 resting. + - type: Transform + pos: -1.5,178.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 410 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 37586 + components: + - type: Transform + pos: 1.5,179.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateTrashCart + entities: + - uid: 1014 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: 51.5,39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7398 + - 7397 + - 7396 + - 7395 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19491 + components: + - type: Transform + pos: -108.5,86.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 21305 + components: + - type: Transform + pos: -64.5,173.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateTrashCartFilled + entities: + - uid: 7392 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19028 + components: + - type: Transform + pos: -122.5,66.5 + parent: 2 + - uid: 19045 + components: + - type: Transform + pos: -122.5,63.5 + parent: 2 + - uid: 19054 + components: + - type: Transform + pos: -122.5,65.5 + parent: 2 + - uid: 21301 + components: + - type: Transform + pos: -57.5,174.5 + parent: 2 + - uid: 21302 + components: + - type: Transform + pos: -57.5,173.5 + parent: 2 + - uid: 21303 + components: + - type: Transform + pos: -64.5,174.5 + parent: 2 + - uid: 21304 + components: + - type: Transform + pos: -63.5,174.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 24316 + components: + - type: Transform + pos: 23.5,181.5 + parent: 2 + - uid: 24356 + components: + - type: Transform + pos: 23.5,175.5 + parent: 2 + - uid: 24357 + components: + - type: Transform + pos: 21.5,175.5 + parent: 2 + - uid: 25031 + components: + - type: Transform + pos: -81.5,78.5 + parent: 2 + - uid: 25040 + components: + - type: Transform + pos: -54.5,86.5 + parent: 2 + - uid: 25174 + components: + - type: Transform + pos: -100.5,149.5 + parent: 2 + - uid: 26459 + components: + - type: Transform + pos: -49.5,60.5 + parent: 2 +- proto: CrateTrashCartJani + entities: + - uid: 26818 + components: + - type: Transform + pos: -5.5,79.5 + parent: 2 +- proto: CrateVendingMachineRestockDonutFilled + entities: + - uid: 34535 + components: + - type: Transform + pos: -120.5,108.5 + parent: 2 +- proto: CrateWoodenGrave + entities: + - uid: 12072 + components: + - type: Transform + pos: 1.5,178.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 37834 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 22062 + components: + - type: Transform + pos: 4.5,197.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 36687 + components: + - type: MetaData + desc: This is where Srochnik resting. + - type: Transform + pos: 0.5,180.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: PlaceableSurface + isPlaceable: True + - uid: 37588 + components: + - type: Transform + pos: 2.5,180.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrayonBox + entities: + - uid: 24236 + components: + - type: Transform + pos: -70.71423,92.553734 + parent: 2 +- proto: CrayonMime + entities: + - uid: 14098 + components: + - type: Transform + pos: -58.56703,97.54689 + parent: 2 + - uid: 17752 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,18.5 + pos: 80.28531,18.443863 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19892 - components: - - type: Transform - pos: 19.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21171 - components: - - type: Transform - pos: 19.5,-85.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 22184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23322 +- proto: Crematorium + entities: + - uid: 11200 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,20.5 + pos: -53.5,70.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25082 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11201 +- proto: CrewMonitoringServer + entities: + - uid: 8187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-54.5 + pos: -91.5,156.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25487 +- proto: Crowbar + entities: + - uid: 952 + components: + - type: Transform + pos: -29.53816,-6.133132 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: 65.41322,47.83204 + parent: 2 + - uid: 25317 + components: + - type: Transform + pos: -127.53416,99.78782 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 1115 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-68.5 + pos: -98.51801,55.580048 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25605 + - uid: 4554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,37.5 + pos: 57.597862,48.48802 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25607 + - uid: 7071 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,35.5 + pos: -107.56191,45.408775 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 26221 + - uid: 17246 + components: + - type: Transform + pos: -72.54345,68.727585 + parent: 2 + - uid: 19739 + components: + - type: Transform + pos: -81.458725,154.64363 + parent: 2 + - uid: 20159 + components: + - type: Transform + pos: -83.51623,178.6955 + parent: 2 + - uid: 20172 + components: + - type: Transform + pos: -83.50498,179.67375 + parent: 2 + - uid: 20368 + components: + - type: Transform + pos: -83.53646,162.60999 + parent: 2 + - uid: 20389 + components: + - type: Transform + pos: -133.54417,52.7284 + parent: 2 + - uid: 20481 + components: + - type: Transform + pos: -98.40295,169.68074 + parent: 2 + - uid: 20490 + components: + - type: Transform + pos: -133.44293,52.582226 + parent: 2 + - uid: 21354 + components: + - type: Transform + pos: -91.47646,51.570663 + parent: 2 + - uid: 24187 + components: + - type: Transform + pos: 23.465427,191.7291 + parent: 2 + - uid: 25216 + components: + - type: Transform + pos: -132.32037,91.36171 + parent: 2 + - uid: 27301 + components: + - type: Transform + pos: -117.966324,97.57423 + parent: 2 + - uid: 28854 + components: + - type: Transform + pos: -102.64098,48.54029 + parent: 2 + - uid: 29727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.58734,62.55042 + parent: 2 + - uid: 35811 + components: + - type: Transform + pos: -102.58292,98.73981 + parent: 2 + - uid: 35814 + components: + - type: Transform + pos: -102.515434,98.514915 + parent: 2 + - uid: 37349 + components: + - type: Transform + pos: -38.65432,179.69974 + parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 1402 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-63.5 + pos: -67.5,105.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26644 + - uid: 4552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,105.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: -67.5,107.5 + parent: 2 + - uid: 12327 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-83.5 + pos: -69.5,107.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 27150 +- proto: CryoPod + entities: + - uid: 23452 components: - type: Transform + pos: -24.5,202.5 + parent: 2 + - uid: 34426 + components: + - type: Transform + pos: -25.5,202.5 + parent: 2 + - type: ItemToggle + activated: True +- proto: CryoxadoneBeakerSmall + entities: + - uid: 8388 + components: + - type: Transform + pos: -32.728416,202.51538 + parent: 2 + - uid: 23483 + components: + - type: Transform + pos: -26.471416,199.78198 + parent: 2 +- proto: CrystalBlue + entities: + - uid: 22438 + components: + - type: Transform + pos: 1.5,194.5 + parent: 2 + - uid: 23432 + components: + - type: Transform + pos: -15.5,201.5 + parent: 2 + - uid: 24077 + components: + - type: Transform + pos: 12.5,197.5 + parent: 2 + - uid: 24080 + components: + - type: Transform + pos: 18.5,186.5 + parent: 2 + - uid: 24135 + components: + - type: Transform + pos: 24.5,200.5 + parent: 2 + - uid: 24136 + components: + - type: Transform + pos: 22.5,202.5 + parent: 2 + - uid: 25226 + components: + - type: Transform + pos: -27.5,182.5 + parent: 2 + - uid: 26326 + components: + - type: Transform + pos: -38.5,187.5 + parent: 2 + - uid: 26808 + components: + - type: Transform + pos: 28.5,179.5 + parent: 2 + - uid: 26809 + components: + - type: Transform + pos: 31.5,189.5 + parent: 2 + - uid: 26810 + components: + - type: Transform + pos: 9.5,211.5 + parent: 2 + - uid: 31847 + components: + - type: Transform + pos: 8.5,197.5 + parent: 2 +- proto: CrystalCyan + entities: + - uid: 669 + components: + - type: Transform + pos: -90.5,93.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 6621 + components: + - type: Transform + pos: -33.5,51.5 + parent: 2 + - uid: 9765 + components: + - type: Transform + pos: -68.5,117.5 + parent: 2 + - uid: 9878 + components: + - type: Transform + pos: -56.5,59.5 + parent: 2 + - uid: 12174 + components: + - type: Transform + pos: 1.5,180.5 + parent: 2 + - uid: 14909 + components: + - type: Transform + pos: -31.5,101.5 + parent: 2 + - uid: 14922 + components: + - type: Transform + pos: -34.5,53.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + pos: -37.5,47.5 + parent: 2 + - uid: 15753 + components: + - type: Transform + pos: -30.5,40.5 + parent: 2 + - uid: 16559 + components: + - type: Transform + pos: -36.5,95.5 + parent: 2 + - uid: 17748 + components: + - type: Transform + pos: -4.5,217.5 + parent: 2 + - uid: 22397 + components: + - type: Transform + pos: -14.5,185.5 + parent: 2 + - uid: 23431 + components: + - type: Transform + pos: -6.5,204.5 + parent: 2 + - uid: 23469 + components: + - type: Transform + pos: -21.5,196.5 + parent: 2 + - uid: 24075 + components: + - type: Transform + pos: 10.5,198.5 + parent: 2 + - uid: 24079 + components: + - type: Transform + pos: 15.5,186.5 + parent: 2 + - uid: 24131 + components: + - type: Transform + pos: 23.5,202.5 + parent: 2 + - uid: 24132 + components: + - type: Transform + pos: 24.5,201.5 + parent: 2 + - uid: 25225 + components: + - type: Transform + pos: -23.5,180.5 + parent: 2 + - uid: 26312 + components: + - type: Transform + pos: -36.5,189.5 + parent: 2 + - uid: 26798 + components: + - type: Transform + pos: 20.5,208.5 + parent: 2 + - uid: 26800 + components: + - type: Transform + pos: 33.5,192.5 + parent: 2 + - uid: 26850 + components: + - type: Transform + pos: 28.5,201.5 + parent: 2 + - uid: 34478 + components: + - type: Transform + pos: -22.5,186.5 + parent: 2 + - uid: 36663 + components: + - type: Transform + pos: -22.5,94.5 + parent: 2 + - uid: 37351 + components: + - type: Transform + pos: -28.5,173.5 + parent: 2 +- proto: CrystalGreen + entities: + - uid: 9689 + components: + - type: Transform + pos: -67.5,114.5 + parent: 2 + - uid: 9920 + components: + - type: Transform + pos: -61.5,117.5 + parent: 2 + - uid: 10944 + components: + - type: Transform + pos: -8.5,73.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + pos: 10.5,80.5 + parent: 2 + - uid: 15748 + components: + - type: Transform + pos: -41.5,50.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + pos: -34.5,45.5 + parent: 2 + - uid: 15751 + components: + - type: Transform + pos: -31.5,45.5 + parent: 2 + - uid: 17585 + components: + - type: Transform + pos: -77.5,113.5 + parent: 2 + - uid: 18009 + components: + - type: Transform + pos: -27.5,94.5 + parent: 2 + - uid: 19448 + components: + - type: Transform + pos: -88.5,98.5 + parent: 2 + - uid: 26788 + components: + - type: Transform + pos: -119.5,88.5 + parent: 2 + - uid: 34616 + components: + - type: Transform + pos: -55.5,94.5 + parent: 2 +- proto: CrystalGrey + entities: + - uid: 13587 + components: + - type: Transform + pos: -145.5,106.5 + parent: 2 + - uid: 15667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -146.5,105.5 + parent: 2 + - uid: 16987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -138.5,109.5 + parent: 2 + - uid: 16988 + components: + - type: Transform + pos: -143.5,105.5 + parent: 2 + - uid: 16990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -144.5,105.5 + parent: 2 + - uid: 17641 + components: + - type: Transform + pos: -111.5,135.5 + parent: 2 + - uid: 17670 + components: + - type: Transform + pos: -51.5,93.5 + parent: 2 + - uid: 20611 + components: + - type: Transform + pos: -94.5,158.5 + parent: 2 + - uid: 20613 + components: + - type: Transform + pos: -92.5,178.5 + parent: 2 + - uid: 20862 + components: + - type: Transform + pos: -94.5,165.5 + parent: 2 + - uid: 21201 + components: + - type: Transform + pos: -54.5,177.5 + parent: 2 + - uid: 21202 + components: + - type: Transform + pos: -61.5,184.5 + parent: 2 + - uid: 21250 + components: + - type: Transform + pos: -57.5,158.5 + parent: 2 + - uid: 21251 + components: + - type: Transform + pos: -57.5,155.5 + parent: 2 + - uid: 21540 + components: + - type: Transform + pos: -90.5,140.5 + parent: 2 + - uid: 32254 + components: + - type: Transform + pos: -79.5,136.5 + parent: 2 + - uid: 34514 + components: + - type: Transform + pos: -134.5,88.5 + parent: 2 +- proto: CrystalOrange + entities: + - uid: 209 + components: + - type: Transform + pos: -41.5,9.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: -101.5,41.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + pos: -110.5,50.5 + parent: 2 + - uid: 13713 + components: + - type: Transform + pos: -129.5,36.5 + parent: 2 + - uid: 13997 + components: + - type: Transform + pos: -65.5,95.5 + parent: 2 + - type: PointLight + radius: 6 + - uid: 15704 + components: + - type: Transform + pos: -39.5,53.5 + parent: 2 + - uid: 15706 + components: + - type: Transform + pos: -36.5,54.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + pos: -40.5,55.5 + parent: 2 + - uid: 18606 + components: + - type: Transform + pos: -109.5,42.5 + parent: 2 + - uid: 18941 + components: + - type: Transform + pos: -115.5,62.5 + parent: 2 + - uid: 20143 + components: + - type: Transform + pos: -138.5,20.5 + parent: 2 + - uid: 20757 + components: + - type: Transform + pos: -138.5,31.5 + parent: 2 + - uid: 20764 + components: + - type: Transform + pos: -133.5,56.5 + parent: 2 + - uid: 21257 + components: + - type: Transform + pos: -130.5,59.5 + parent: 2 + - uid: 23357 + components: + - type: Transform + pos: -114.5,63.5 + parent: 2 + - uid: 24133 + components: + - type: Transform + pos: 24.5,202.5 + parent: 2 + - uid: 24134 + components: + - type: Transform + pos: 24.5,199.5 + parent: 2 + - uid: 25283 + components: + - type: Transform + pos: -132.5,88.5 + parent: 2 + - uid: 25747 + components: + - type: Transform + pos: -135.5,87.5 + parent: 2 + - uid: 26331 + components: + - type: Transform + pos: -133.5,84.5 + parent: 2 + - uid: 27331 + components: + - type: Transform + pos: -117.5,68.5 + parent: 2 + - uid: 27543 + components: + - type: Transform + pos: -52.5,2.5 + parent: 2 + - uid: 28353 + components: + - type: Transform + pos: -103.5,56.5 + parent: 2 + - uid: 28367 + components: + - type: Transform + pos: -105.5,54.5 + parent: 2 + - uid: 28483 + components: + - type: Transform + pos: -112.5,54.5 + parent: 2 + - uid: 28487 + components: + - type: Transform + pos: -105.5,55.5 + parent: 2 + - uid: 28488 + components: + - type: Transform + pos: -106.5,53.5 + parent: 2 + - uid: 28490 + components: + - type: Transform + pos: -107.5,51.5 + parent: 2 + - uid: 28587 + components: + - type: Transform + pos: -110.5,44.5 + parent: 2 + - uid: 28589 + components: + - type: Transform + pos: -107.5,38.5 + parent: 2 + - uid: 28591 + components: + - type: Transform + pos: -112.5,39.5 + parent: 2 + - uid: 28652 + components: + - type: Transform + pos: -107.5,59.5 + parent: 2 + - uid: 29017 + components: + - type: Transform + pos: -113.5,67.5 + parent: 2 + - uid: 29353 + components: + - type: Transform + pos: -128.5,40.5 + parent: 2 + - uid: 29443 + components: + - type: Transform + pos: -122.5,42.5 + parent: 2 + - uid: 29444 + components: + - type: Transform + pos: -123.5,45.5 + parent: 2 + - uid: 29445 + components: + - type: Transform + pos: -123.5,49.5 + parent: 2 + - uid: 29448 + components: + - type: Transform + pos: -120.5,38.5 + parent: 2 + - uid: 29450 + components: + - type: Transform + pos: -120.5,33.5 + parent: 2 + - uid: 29451 + components: + - type: Transform + pos: -117.5,29.5 + parent: 2 + - uid: 29452 + components: + - type: Transform + pos: -120.5,27.5 + parent: 2 + - uid: 29453 + components: + - type: Transform + pos: -123.5,29.5 + parent: 2 + - uid: 29456 + components: + - type: Transform + pos: -115.5,32.5 + parent: 2 + - uid: 29704 + components: + - type: Transform + pos: -124.5,34.5 + parent: 2 + - uid: 30695 + components: + - type: Transform + pos: -126.5,22.5 + parent: 2 + - uid: 30696 + components: + - type: Transform + pos: -133.5,14.5 + parent: 2 + - uid: 30697 + components: + - type: Transform + pos: -149.5,9.5 + parent: 2 + - uid: 30698 + components: + - type: Transform + pos: -138.5,10.5 + parent: 2 + - uid: 30699 + components: + - type: Transform + pos: -146.5,12.5 + parent: 2 + - uid: 30700 + components: + - type: Transform + pos: -143.5,15.5 + parent: 2 + - uid: 34758 + components: + - type: Transform + pos: -127.5,36.5 + parent: 2 + - uid: 43425 + components: + - type: Transform + pos: -120.5,15.5 + parent: 2 +- proto: CrystalPink + entities: + - uid: 735 + components: + - type: Transform + pos: 6.5,85.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: 67.5,27.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + pos: 77.5,26.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: -56.5,165.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + pos: 83.5,23.5 + parent: 2 + - uid: 5763 + components: + - type: Transform + pos: 88.5,34.5 + parent: 2 + - uid: 8697 + components: + - type: Transform + pos: 75.5,31.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + pos: 4.5,84.5 + parent: 2 + - uid: 20647 + components: + - type: Transform + pos: -100.5,138.5 + parent: 2 + - uid: 20850 + components: + - type: Transform + pos: -92.5,180.5 + parent: 2 + - uid: 20851 + components: + - type: Transform + pos: -93.5,177.5 + parent: 2 + - uid: 20852 + components: + - type: Transform + pos: -95.5,178.5 + parent: 2 + - uid: 20853 + components: + - type: Transform + pos: -95.5,164.5 + parent: 2 + - uid: 20854 + components: + - type: Transform + pos: -93.5,160.5 + parent: 2 + - uid: 20940 + components: + - type: Transform + pos: -64.5,182.5 + parent: 2 + - uid: 21200 + components: + - type: Transform + pos: -59.5,177.5 + parent: 2 + - uid: 21248 + components: + - type: Transform + pos: -56.5,156.5 + parent: 2 + - uid: 21249 + components: + - type: Transform + pos: -57.5,160.5 + parent: 2 + - uid: 21381 + components: + - type: Transform + pos: -60.5,157.5 + parent: 2 + - uid: 21534 + components: + - type: Transform + pos: -108.5,140.5 + parent: 2 + - uid: 21539 + components: + - type: Transform + pos: -92.5,141.5 + parent: 2 + - uid: 25745 + components: + - type: Transform + pos: -134.5,85.5 + parent: 2 + - uid: 26044 + components: + - type: Transform + pos: -133.5,89.5 + parent: 2 + - uid: 26338 + components: + - type: Transform + pos: -131.5,85.5 + parent: 2 + - uid: 27864 + components: + - type: Transform + pos: -62.5,164.5 + parent: 2 + - uid: 27866 + components: + - type: Transform + pos: -64.5,166.5 + parent: 2 + - uid: 32249 + components: + - type: Transform + pos: -73.5,137.5 + parent: 2 + - uid: 32250 + components: + - type: Transform + pos: -81.5,138.5 + parent: 2 + - uid: 35427 + components: + - type: Transform + pos: -103.5,151.5 + parent: 2 +- proto: CrystalSpawner + entities: + - uid: 5092 + components: + - type: Transform + pos: -120.5,19.5 + parent: 2 +- proto: CurtainsOrange + entities: + - uid: 4057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,52.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,52.5 + parent: 2 +- proto: CyborgEndoskeleton + entities: + - uid: 28381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.496056,39.93314 + parent: 2 +- proto: d4Dice + entities: + - uid: 14485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.590393,87.23364 + parent: 2 +- proto: d6Dice + entities: + - uid: 14459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.83535,87.443535 + parent: 2 +- proto: DebugAPC + entities: + - uid: 2887 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 7271 + components: + - type: Transform + pos: -62.5,130.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 8056 + components: + - type: Transform + pos: -127.5,46.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 8057 + components: + - type: Transform + pos: -79.5,181.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 8058 + components: + - type: Transform + pos: 60.5,59.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 8059 + components: + - type: Transform + pos: 109.5,45.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 8060 + components: + - type: Transform + pos: -94.5,170.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 8061 + components: + - type: Transform + pos: -108.5,19.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 8062 + components: + - type: Transform + pos: -28.5,68.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 8063 + components: + - type: Transform + pos: -4.5,64.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 8064 + components: + - type: Transform + pos: -40.5,107.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 8067 + components: + - type: Transform + pos: -32.5,97.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 8068 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 8069 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 8065 + components: + - type: Transform + pos: -118.5,54.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 8070 + components: + - type: Transform + pos: -59.5,65.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 8071 + components: + - type: Transform + pos: -22.5,191.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 8066 + components: + - type: Transform + pos: -19.5,205.5 + parent: 2 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 8074 + components: + - type: Transform + pos: -75.5,83.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 8072 + components: + - type: Transform + pos: -26.5,201.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 8073 + components: + - type: Transform + pos: -68.5,106.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 8075 + components: + - type: Transform + pos: -1.5,77.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 8076 + components: + - type: Transform + pos: -107.5,93.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 8077 + components: + - type: Transform + pos: -64.5,95.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 8080 + components: + - type: Transform + pos: 108.5,61.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 8079 + components: + - type: Transform + pos: -11.5,80.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 8081 + components: + - type: Transform + pos: -122.5,58.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 8082 + components: + - type: Transform + pos: -17.5,82.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 8083 + components: + - type: Transform + pos: 83.5,63.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 8084 + components: + - type: Transform + pos: -1.5,81.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 8085 + components: + - type: Transform + pos: -15.5,66.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 8087 + components: + - type: Transform + pos: -76.5,74.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 8086 + components: + - type: Transform + pos: -63.5,80.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 8088 + components: + - type: Transform + pos: -7.5,191.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 8089 + components: + - type: Transform + pos: -9.5,208.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 8090 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 8091 + components: + - type: Transform + pos: -85.5,159.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 8093 + components: + - type: Transform + pos: -70.5,175.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 8094 + components: + - type: Transform + pos: -46.5,-10.5 + parent: 2 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 8095 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + pos: -94.5,35.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + pos: -76.5,152.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + pos: -4.5,178.5 + parent: 2 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 8092 + components: + - type: Transform + pos: -91.5,155.5 + parent: 2 +- proto: DefaultStationBeaconSingularity + entities: + - uid: 8103 + components: + - type: Transform + pos: -131.5,26.5 + parent: 2 +- proto: DefaultStationBeaconSolars + entities: + - uid: 2110 + components: + - type: Transform + pos: -77.5,-8.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + pos: -122.5,148.5 + parent: 2 + - uid: 8100 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + pos: 0.5,224.5 + parent: 2 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 8102 + components: + - type: Transform + pos: 4.5,184.5 + parent: 2 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 8104 + components: + - type: Transform + pos: -110.5,34.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 8105 + components: + - type: Transform + pos: -34.5,66.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 8106 + components: + - type: Transform + pos: -93.5,46.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 8107 + components: + - type: Transform + pos: -46.5,94.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 8108 + components: + - type: Transform + pos: 71.5,54.5 + parent: 2 +- proto: Defibrillator + entities: + - uid: 22536 + components: + - type: Transform + pos: -0.52841187,198.47873 + parent: 2 + - uid: 23417 + components: + - type: Transform + pos: -0.2686348,196.61227 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 18978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,184.5 + parent: 2 + - uid: 22995 + components: + - type: Transform + pos: -6.5,195.5 + parent: 2 + - uid: 26410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,171.5 + parent: 2 + - uid: 30956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 30902 +- proto: DeployableBarrier + entities: + - uid: 915 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: -5.5,175.5 + parent: 2 + - uid: 5901 + components: + - type: Transform + pos: 65.5,43.5 + parent: 2 + - uid: 5910 + components: + - type: Transform + pos: 77.5,43.5 + parent: 2 + - uid: 11619 + components: + - type: Transform + pos: -41.5,85.5 + parent: 2 + - uid: 11620 + components: + - type: Transform + pos: -40.5,85.5 + parent: 2 + - uid: 11621 + components: + - type: Transform + pos: -39.5,85.5 + parent: 2 + - type: Physics + canCollide: True + - type: Fixtures + fixtures: + base: + shape: !type:PhysShapeCircle + radius: 0.45 + position: 0,0 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: [] + density: 75 + hard: True + restitution: 0 + friction: 0.4 + barrier: + shape: !type:PhysShapeCircle + radius: 0.45 + position: 0,0 + mask: [] + layer: + - Impassable + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - uid: 12805 + components: + - type: Transform + pos: 66.5,62.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + pos: 65.5,62.5 + parent: 2 + - uid: 15887 + components: + - type: Transform + pos: 77.5,42.5 + parent: 2 + - uid: 17957 + components: + - type: Transform + pos: 77.5,44.5 + parent: 2 + - uid: 22114 + components: + - type: Transform + pos: -76.5,151.5 + parent: 2 + - uid: 22119 + components: + - type: Transform + pos: -77.5,151.5 + parent: 2 + - uid: 22120 + components: + - type: Transform + pos: -77.5,152.5 + parent: 2 + - uid: 23706 + components: + - type: Transform + pos: -4.5,175.5 + parent: 2 + - uid: 23707 + components: + - type: Transform + pos: -3.5,175.5 + parent: 2 + - uid: 24223 + components: + - type: Transform + pos: 65.5,42.5 + parent: 2 + - uid: 25165 + components: + - type: Transform + pos: -95.5,33.5 + parent: 2 + - uid: 25170 + components: + - type: Transform + pos: -94.5,33.5 + parent: 2 + - uid: 25173 + components: + - type: Transform + pos: -93.5,33.5 + parent: 2 + - uid: 26521 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - uid: 39261 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 919 + components: + - type: Transform + pos: -28.035082,1.7505848 + parent: 2 + - uid: 10441 + components: + - type: Transform + pos: -16.731895,80.678696 + parent: 2 + - uid: 20975 + components: + - type: Transform + pos: -70.27643,166.59094 + parent: 2 + - uid: 22748 + components: + - type: Transform + pos: -13.639587,190.50038 + parent: 2 + - uid: 22756 + components: + - type: Transform + pos: -15.606497,190.54282 + parent: 2 + - uid: 28088 + components: + - type: Transform + pos: -95.363365,41.78331 + parent: 2 + - uid: 37627 + components: + - type: Transform + pos: 71.44004,42.559193 + parent: 2 + - uid: 39469 + components: + - type: Transform + pos: -20.515633,61.692142 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 23639 + components: + - type: Transform + pos: 21.5,191.5 + parent: 2 +- proto: DiseaseSwab + entities: + - uid: 9105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5520554,193.66658 + parent: 2 +- proto: DisposalBend + entities: + - uid: 614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,34.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: 76.5,51.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,58.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,14.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,33.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + pos: -88.5,41.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,205.5 + parent: 2 + - uid: 5323 + components: + - type: Transform + pos: -17.5,173.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,61.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 102.5,62.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + pos: 114.5,62.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,58.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + pos: 114.5,46.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 106.5,47.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,46.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,47.5 + parent: 2 + - uid: 7278 + components: + - type: Transform + pos: 96.5,49.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,49.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,48.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,39.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: 62.5,40.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,39.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + pos: 79.5,66.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + pos: 57.5,45.5 + parent: 2 + - uid: 7425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,45.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,41.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-14.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,3.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 9870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,193.5 + parent: 2 + - uid: 12962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,74.5 + parent: 2 + - uid: 13422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,89.5 + parent: 2 + - uid: 13444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,104.5 + parent: 2 + - uid: 13712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,69.5 + parent: 2 + - uid: 14079 + components: + - type: Transform + pos: -69.5,88.5 + parent: 2 + - uid: 14183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,35.5 + parent: 2 + - uid: 15327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -98.5,35.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,164.5 + parent: 2 + - uid: 18123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,166.5 + parent: 2 + - uid: 19540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,95.5 + parent: 2 + - uid: 19546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,95.5 + parent: 2 + - uid: 21793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,179.5 + parent: 2 + - uid: 24306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,185.5 + parent: 2 + - uid: 24308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,186.5 + parent: 2 + - uid: 24321 + components: + - type: Transform + pos: 24.5,198.5 + parent: 2 + - uid: 24326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,198.5 + parent: 2 + - uid: 24340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,186.5 + parent: 2 + - uid: 24343 + components: + - type: Transform + pos: 7.5,205.5 + parent: 2 + - uid: 24345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,178.5 + parent: 2 + - uid: 24346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,183.5 + parent: 2 + - uid: 24348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,183.5 + parent: 2 + - uid: 24352 + components: + - type: Transform + pos: 21.5,188.5 + parent: 2 + - uid: 25294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,164.5 + parent: 2 + - uid: 25836 + components: + - type: Transform + pos: 22.5,200.5 + parent: 2 + - uid: 25869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,200.5 + parent: 2 + - uid: 25871 + components: + - type: Transform + pos: 19.5,202.5 + parent: 2 + - uid: 25874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,202.5 + parent: 2 + - uid: 25875 + components: + - type: Transform + pos: 16.5,203.5 + parent: 2 + - uid: 25883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,203.5 + parent: 2 + - uid: 25884 + components: + - type: Transform + pos: 8.5,204.5 + parent: 2 + - uid: 25885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,204.5 + parent: 2 + - uid: 25886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,205.5 + parent: 2 + - uid: 25890 + components: + - type: Transform + pos: 6.5,209.5 + parent: 2 + - uid: 25891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,209.5 + parent: 2 + - uid: 25892 + components: + - type: Transform + pos: 5.5,210.5 + parent: 2 + - uid: 25901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,210.5 + parent: 2 + - uid: 25904 + components: + - type: Transform + pos: -3.5,213.5 + parent: 2 + - uid: 25913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,213.5 + parent: 2 + - uid: 25914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,212.5 + parent: 2 + - uid: 25917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,212.5 + parent: 2 + - uid: 25918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,211.5 + parent: 2 + - uid: 25919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,211.5 + parent: 2 + - uid: 25920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,210.5 + parent: 2 + - uid: 25923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,210.5 + parent: 2 + - uid: 25934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,209.5 + parent: 2 + - uid: 25939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,209.5 + parent: 2 + - uid: 25943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,205.5 + parent: 2 + - uid: 25959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,182.5 + parent: 2 + - uid: 25960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,181.5 + parent: 2 + - uid: 25961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,181.5 + parent: 2 + - uid: 25962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,180.5 + parent: 2 + - uid: 25971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,180.5 + parent: 2 + - uid: 25972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,179.5 + parent: 2 + - uid: 25973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,179.5 + parent: 2 + - uid: 25979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,174.5 + parent: 2 + - uid: 25984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,174.5 + parent: 2 + - uid: 25992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,166.5 + parent: 2 + - uid: 26020 + components: + - type: Transform + pos: -16.5,173.5 + parent: 2 + - uid: 26028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,173.5 + parent: 2 + - uid: 26034 + components: + - type: Transform + pos: -24.5,179.5 + parent: 2 + - uid: 26050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,190.5 + parent: 2 + - uid: 26056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,190.5 + parent: 2 + - uid: 26059 + components: + - type: Transform + pos: -23.5,193.5 + parent: 2 + - uid: 26070 + components: + - type: Transform + pos: -12.5,192.5 + parent: 2 + - uid: 26076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,189.5 + parent: 2 + - uid: 26107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,172.5 + parent: 2 + - uid: 26119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,168.5 + parent: 2 + - uid: 26121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,168.5 + parent: 2 + - uid: 26131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,159.5 + parent: 2 + - uid: 26135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,159.5 + parent: 2 + - uid: 26143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,152.5 + parent: 2 + - uid: 26154 + components: + - type: Transform + pos: -72.5,158.5 + parent: 2 + - uid: 26507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + - uid: 26880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,95.5 + parent: 2 + - uid: 26896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,89.5 + parent: 2 + - uid: 26898 + components: + - type: Transform + pos: -78.5,89.5 + parent: 2 + - uid: 26899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,88.5 + parent: 2 + - uid: 26914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,82.5 + parent: 2 + - uid: 26929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,82.5 + parent: 2 + - uid: 26936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,89.5 + parent: 2 + - uid: 26958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,80.5 + parent: 2 + - uid: 26961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,80.5 + parent: 2 + - uid: 26984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,74.5 + parent: 2 + - uid: 27034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,74.5 + parent: 2 + - uid: 27044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,65.5 + parent: 2 + - uid: 27053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,65.5 + parent: 2 + - uid: 27055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,63.5 + parent: 2 + - uid: 27086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,81.5 + parent: 2 + - uid: 27090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,84.5 + parent: 2 + - uid: 27124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,74.5 + parent: 2 + - uid: 27128 + components: + - type: Transform + pos: -69.5,77.5 + parent: 2 + - uid: 28025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + - uid: 28026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 + - uid: 28075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + - uid: 28090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 2 + - uid: 28093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 2 + - uid: 28336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 + - uid: 28339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,9.5 + parent: 2 + - uid: 28341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - uid: 28342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - uid: 28350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - uid: 28351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 2 + - uid: 28354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 2 + - uid: 28358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - uid: 28361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + - uid: 28368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + - uid: 28369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,11.5 + parent: 2 + - uid: 28374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 + - uid: 28376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 2 + - uid: 28380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,12.5 + parent: 2 + - uid: 28420 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 27559 + - uid: 28422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 + - uid: 28439 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-89.5 + pos: 21.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 27761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-92.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28248 + - uid: 28442 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,9.5 + pos: 21.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28878 + - uid: 28752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-91.5 + rot: 1.5707963267948966 rad + pos: 39.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 29554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29584 - components: - - type: Transform - pos: -4.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,35.5 - parent: 2 - - uid: 30130 + - uid: 28754 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,34.5 + pos: 39.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31385 - components: - - type: Transform - pos: 27.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31393 + - uid: 28763 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,19.5 + pos: 40.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 32047 + - uid: 28764 components: - type: Transform rot: 1.5707963267948966 rad + pos: 41.5,23.5 + parent: 2 + - uid: 28765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,24.5 + parent: 2 + - uid: 28807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,22.5 + parent: 2 + - uid: 28819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,25.5 + parent: 2 + - uid: 28837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,21.5 + parent: 2 + - uid: 28844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,23.5 + parent: 2 + - uid: 28865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,24.5 + parent: 2 + - uid: 28867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,25.5 + parent: 2 + - uid: 28869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,26.5 + parent: 2 + - uid: 28904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,27.5 + parent: 2 + - uid: 28974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,28.5 + parent: 2 + - uid: 28978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,26.5 + parent: 2 + - uid: 28979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,27.5 + parent: 2 + - uid: 29019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,28.5 + parent: 2 + - uid: 29070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,30.5 + parent: 2 + - uid: 29072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,30.5 + parent: 2 + - uid: 29109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,31.5 + parent: 2 + - uid: 29115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - uid: 29135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,33.5 + parent: 2 + - uid: 29345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,34.5 + parent: 2 + - uid: 29755 + components: + - type: Transform + pos: -109.5,65.5 + parent: 2 + - uid: 29768 + components: + - type: Transform + pos: -108.5,64.5 + parent: 2 + - uid: 29770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,64.5 + parent: 2 + - uid: 29786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,46.5 + parent: 2 + - uid: 29805 + components: + - type: Transform + pos: -98.5,47.5 + parent: 2 + - uid: 29830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,37.5 + parent: 2 + - uid: 29837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,46.5 + parent: 2 + - uid: 35684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,95.5 + parent: 2 + - uid: 35685 + components: + - type: Transform + pos: -92.5,99.5 + parent: 2 + - uid: 35698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,99.5 + parent: 2 + - uid: 42946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,66.5 + parent: 2 + - uid: 42948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,57.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 2104 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: -29.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32048 + - uid: 2105 components: - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,39.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,39.5 + parent: 2 + - uid: 7299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,39.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,39.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: 71.5,65.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - uid: 12624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,104.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,41.5 + parent: 2 + - uid: 13711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,72.5 + parent: 2 + - uid: 17025 + components: + - type: Transform + pos: 71.5,57.5 + parent: 2 + - uid: 24314 + components: + - type: Transform + pos: 20.5,182.5 + parent: 2 + - uid: 25907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,213.5 + parent: 2 + - uid: 26067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,192.5 + parent: 2 + - uid: 26095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,172.5 + parent: 2 + - uid: 26132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,159.5 + parent: 2 + - uid: 26137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,158.5 + parent: 2 + - uid: 26925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,82.5 + parent: 2 + - uid: 26973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,89.5 + parent: 2 + - uid: 27064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,74.5 + parent: 2 + - uid: 29777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,47.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 5246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,166.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,60.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: 87.5,48.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,47.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 9817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,167.5 + parent: 2 + - uid: 9869 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 12959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,74.5 + parent: 2 + - uid: 13676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,74.5 + parent: 2 + - uid: 16084 + components: + - type: Transform + pos: 21.5,185.5 + parent: 2 + - uid: 17554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,165.5 + parent: 2 + - uid: 26060 + components: + - type: Transform + pos: -23.5,192.5 + parent: 2 + - uid: 26099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,172.5 + parent: 2 + - uid: 26886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,95.5 + parent: 2 + - uid: 26926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,82.5 + parent: 2 + - uid: 26948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,89.5 + parent: 2 + - uid: 26949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,89.5 + parent: 2 + - uid: 26986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,74.5 + parent: 2 + - uid: 27019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,89.5 + parent: 2 + - uid: 27035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,74.5 + parent: 2 + - uid: 27083 + components: + - type: Transform + pos: -6.5,81.5 + parent: 2 + - uid: 28282 + components: + - type: Transform + pos: 87.5,55.5 + parent: 2 + - uid: 29806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,47.5 + parent: 2 + - uid: 42949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,61.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 283 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 76.5,49.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: -98.5,40.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: 76.5,50.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: 76.5,48.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: -98.5,37.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-15.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,39.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: -98.5,39.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,18.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,18.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,18.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,18.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,18.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: -88.5,39.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,58.5 + parent: 2 + - uid: 4449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,39.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,58.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,55.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,58.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 110.5,62.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 97.5,58.5 + parent: 2 + - uid: 5068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,58.5 + parent: 2 + - uid: 5072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 113.5,62.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: -17.5,169.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + pos: -17.5,172.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,166.5 + parent: 2 + - uid: 5270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 112.5,62.5 + parent: 2 + - uid: 5285 + components: + - type: Transform + pos: -17.5,171.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + pos: -17.5,168.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + pos: -17.5,167.5 + parent: 2 + - uid: 5436 + components: + - type: Transform + pos: -17.5,170.5 + parent: 2 + - uid: 5505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,166.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + pos: -40.5,101.5 + parent: 2 + - uid: 6183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 111.5,62.5 + parent: 2 + - uid: 6222 + components: + - type: Transform + pos: 45.5,57.5 + parent: 2 + - uid: 6286 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,58.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-16.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,58.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + pos: 45.5,58.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: 45.5,59.5 + parent: 2 + - uid: 6845 + components: + - type: Transform + pos: 82.5,40.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,41.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,58.5 + parent: 2 + - uid: 7103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 109.5,62.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,62.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 106.5,62.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,62.5 + parent: 2 + - uid: 7107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 104.5,62.5 + parent: 2 + - uid: 7108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,62.5 + parent: 2 + - uid: 7110 + components: + - type: Transform + pos: 102.5,61.5 + parent: 2 + - uid: 7112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,62.5 + parent: 2 + - uid: 7113 + components: + - type: Transform + pos: 102.5,60.5 + parent: 2 + - uid: 7114 + components: + - type: Transform + pos: 102.5,59.5 + parent: 2 + - uid: 7118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,58.5 + parent: 2 + - uid: 7120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,58.5 + parent: 2 + - uid: 7122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,58.5 + parent: 2 + - uid: 7123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,58.5 + parent: 2 + - uid: 7124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,43.5 + parent: 2 + - uid: 7138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,58.5 + parent: 2 + - uid: 7139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,58.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,58.5 + parent: 2 + - uid: 7154 + components: + - type: Transform + pos: 96.5,48.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + pos: 87.5,57.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + pos: 87.5,56.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + pos: 87.5,54.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: 87.5,53.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: 87.5,52.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: 87.5,51.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + pos: 87.5,50.5 + parent: 2 + - uid: 7183 + components: + - type: Transform + pos: 87.5,49.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 113.5,46.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 112.5,46.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,46.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 111.5,46.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 110.5,46.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 109.5,46.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,46.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,46.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,46.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 106.5,46.5 + parent: 2 + - uid: 7221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 106.5,48.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 104.5,47.5 + parent: 2 + - uid: 7252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 103.5,47.5 + parent: 2 + - uid: 7253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 102.5,47.5 + parent: 2 + - uid: 7254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 101.5,47.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,47.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 99.5,47.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 98.5,47.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 97.5,47.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,49.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,49.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,49.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,49.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,49.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,49.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,49.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,47.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,46.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,45.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,44.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,43.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,42.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,40.5 + parent: 2 + - uid: 7300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,39.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,39.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,39.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,39.5 + parent: 2 + - uid: 7307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,39.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,39.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,39.5 + parent: 2 + - uid: 7311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,39.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,39.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,39.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,39.5 + parent: 2 + - uid: 7323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,39.5 + parent: 2 + - uid: 7324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,39.5 + parent: 2 + - uid: 7325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,39.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,39.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,39.5 + parent: 2 + - uid: 7328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,39.5 + parent: 2 + - uid: 7329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,39.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,39.5 + parent: 2 + - uid: 7335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,39.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,39.5 + parent: 2 + - uid: 7339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,39.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,39.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,40.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,41.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,42.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,43.5 + parent: 2 + - uid: 7354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,65.5 + parent: 2 + - uid: 7355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,66.5 + parent: 2 + - uid: 7356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,66.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,66.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,66.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,66.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,66.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,66.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: 71.5,64.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + pos: 71.5,63.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: 71.5,62.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: 71.5,61.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: 71.5,60.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: 71.5,59.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + pos: 71.5,58.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + pos: 71.5,56.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: 71.5,55.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: 71.5,54.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: 71.5,53.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + pos: 71.5,52.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + pos: 71.5,51.5 + parent: 2 + - uid: 7378 + components: + - type: Transform + pos: 71.5,50.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + pos: 71.5,49.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: 71.5,48.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: 71.5,47.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + pos: 71.5,46.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: 71.5,45.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: 71.5,44.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: 71.5,43.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + pos: 71.5,42.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + pos: 71.5,41.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + pos: 71.5,40.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + pos: 71.5,40.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,44.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,44.5 + parent: 2 + - uid: 7415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,45.5 + parent: 2 + - uid: 7416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,46.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,47.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,44.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,43.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,42.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,41.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,40.5 + parent: 2 + - uid: 7426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,45.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,45.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + pos: 54.5,42.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + pos: 55.5,40.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-17.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-14.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-14.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-13.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-13.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-12.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-11.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: -31.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 32049 + - uid: 7577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,3.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,3.5 + parent: 2 + - uid: 7587 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 32051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 32062 + - uid: 7588 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,5.5 + pos: -26.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 32066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32067 - components: - - type: Transform - pos: -27.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPipeFourway - entities: - - uid: 4180 - components: - - type: Transform - pos: 12.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7758 - components: - - type: Transform - pos: -9.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9268 - components: - - type: Transform - pos: -10.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9478 - components: - - type: Transform - pos: 72.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9562 - components: - - type: Transform - pos: 70.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12892 - components: - - type: Transform - pos: -8.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14289 - components: - - type: Transform - pos: 2.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14291 - components: - - type: Transform - pos: 65.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14292 - components: - - type: Transform - pos: 65.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14293 - components: - - type: Transform - pos: -27.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14294 - components: - - type: Transform - pos: -26.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14295 - components: - - type: Transform - pos: 30.5,-33.5 - parent: 2 - - uid: 14296 - components: - - type: Transform - pos: 0.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14297 - components: - - type: Transform - pos: -1.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14298 - components: - - type: Transform - pos: 8.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14300 - components: - - type: Transform - pos: -64.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14303 - components: - - type: Transform - pos: -63.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14306 - components: - - type: Transform - pos: 26.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14307 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14308 - components: - - type: Transform - pos: 35.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14309 - components: - - type: Transform - pos: 39.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14310 - components: - - type: Transform - pos: 26.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14311 - components: - - type: Transform - pos: 32.5,-33.5 - parent: 2 - - uid: 14312 - components: - - type: Transform - pos: 41.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14313 - components: - - type: Transform - pos: 39.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14314 - components: - - type: Transform - pos: 39.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14315 - components: - - type: Transform - pos: 41.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14316 - components: - - type: Transform - pos: 43.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14317 - components: - - type: Transform - pos: 44.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14318 - components: - - type: Transform - pos: 61.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14319 - components: - - type: Transform - pos: 62.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14322 - components: - - type: Transform - pos: 66.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14323 - components: - - type: Transform - pos: 8.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14325 - components: - - type: Transform - pos: 1.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14326 - components: - - type: Transform - pos: -10.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14328 - components: - - type: Transform - pos: -22.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14889 - components: - - type: Transform - pos: -38.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18339 - components: - - type: Transform - pos: 18.5,-85.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 18429 - components: - - type: Transform - pos: 18.5,-89.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 29574 - components: - - type: Transform - pos: -5.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeStraight - entities: - - uid: 25 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 75 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 256 - components: - - type: Transform - pos: 4.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-92.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 533 - components: - - type: Transform - pos: 61.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 576 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 634 - components: - - type: Transform - pos: 20.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 952 - components: - - type: Transform - pos: 20.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 957 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 986 - components: - - type: Transform - pos: 26.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1220 - components: - - type: Transform - pos: 19.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1221 - components: - - type: Transform - pos: 19.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1235 - components: - - type: Transform - pos: 20.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1237 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1529 - components: - - type: Transform - pos: 20.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1550 - components: - - type: Transform - pos: 20.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1602 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1618 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1661 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1757 - components: - - type: Transform - pos: 12.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3245 - components: - - type: Transform - pos: 19.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 3918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4101 - components: - - type: Transform - pos: 22.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 4132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4137 - components: - - type: Transform - pos: 12.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4165 - components: - - type: Transform - pos: 20.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4166 - components: - - type: Transform - pos: 20.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 4172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4178 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4179 - components: - - type: Transform - pos: 3.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4185 - components: - - type: Transform - pos: 19.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 4187 - components: - - type: Transform - pos: 19.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 4190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 4224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4229 - components: - - type: Transform - pos: -8.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4899 - components: - - type: Transform - pos: -1.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5087 - components: - - type: Transform - pos: -1.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-90.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 5293 - components: - - type: Transform - pos: 62.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5403 - components: - - type: Transform - pos: 61.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5404 - components: - - type: Transform - pos: 62.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5410 - components: - - type: Transform - pos: 61.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5411 - components: - - type: Transform - pos: 61.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5489 - components: - - type: Transform - pos: -14.5,-77.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5497 - components: - - type: Transform - pos: -14.5,-78.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5500 - components: - - type: Transform - pos: -14.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5555 - components: - - type: Transform - pos: -14.5,-71.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5572 - components: - - type: Transform - pos: -14.5,-72.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5573 - components: - - type: Transform - pos: -14.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5580 - components: - - type: Transform - pos: -14.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5588 - components: - - type: Transform - pos: -14.5,-70.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5590 - components: - - type: Transform - pos: -14.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5659 - components: - - type: Transform - pos: 70.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5679 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5937 - components: - - type: Transform - pos: 12.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7143 - components: - - type: Transform - pos: -16.5,-70.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7145 - components: - - type: Transform - pos: -16.5,-77.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7198 - components: - - type: Transform - pos: -16.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7209 - components: - - type: Transform - pos: -16.5,-76.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7213 - components: - - type: Transform - pos: -16.5,-78.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7214 - components: - - type: Transform - pos: -16.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7478 - components: - - type: Transform - pos: 12.5,-72.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 7480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7516 - components: - - type: Transform - pos: 12.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 7522 - components: - - type: Transform - pos: 12.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 7589 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-76.5 + pos: -25.5,3.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,3.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,3.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,3.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 7595 components: - type: Transform - pos: -12.5,25.5 + rot: -1.5707963267948966 rad + pos: -19.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7897 - components: - - type: Transform - pos: 24.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7957 - components: - - type: Transform - pos: 13.5,-71.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 8134 + - uid: 7596 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,19.5 + pos: -18.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8139 + - uid: 7597 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,19.5 + pos: -17.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8140 + - uid: 7598 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,20.5 + pos: -16.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8143 + - uid: 7599 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,10.5 + pos: -15.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8677 + - uid: 7600 components: - type: Transform - pos: 13.5,-70.5 + rot: -1.5707963267948966 rad + pos: -14.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 8899 + - uid: 7601 components: - type: Transform - pos: 13.5,-79.5 + rot: -1.5707963267948966 rad + pos: -13.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 8900 + - uid: 7879 components: - type: Transform - pos: 13.5,-72.5 + rot: -1.5707963267948966 rad + pos: -30.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 9052 + - uid: 7882 components: - type: Transform - pos: 13.5,-77.5 + rot: -1.5707963267948966 rad + pos: -31.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 9116 + - uid: 9777 components: - type: Transform - pos: 13.5,-68.5 + pos: -86.5,169.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 9228 + - uid: 10552 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-14.5 + pos: -101.5,97.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9262 - components: - - type: Transform - pos: -4.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9337 - components: - - type: Transform - pos: 13.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 9338 - components: - - type: Transform - pos: 13.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 9343 + - uid: 10895 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,40.5 + pos: -17.5,99.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9401 + - uid: 10917 components: - type: Transform - pos: 13.5,-73.5 + rot: 3.141592653589793 rad + pos: -17.5,91.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 9404 + - uid: 10946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,104.5 + parent: 2 + - uid: 11056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,104.5 + parent: 2 + - uid: 11698 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-67.5 + pos: -21.5,164.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9405 + - uid: 12125 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-51.5 + pos: -19.5,89.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9429 + - uid: 12890 components: - type: Transform - pos: 13.5,-78.5 + pos: -98.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 9475 + - uid: 13262 + components: + - type: Transform + pos: -40.5,103.5 + parent: 2 + - uid: 13425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,89.5 + parent: 2 + - uid: 13442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,94.5 + parent: 2 + - uid: 13443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,97.5 + parent: 2 + - uid: 13451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,90.5 + parent: 2 + - uid: 13452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,92.5 + parent: 2 + - uid: 13453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,93.5 + parent: 2 + - uid: 13454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,96.5 + parent: 2 + - uid: 13455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,95.5 + parent: 2 + - uid: 13459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,98.5 + parent: 2 + - uid: 13467 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-46.5 + pos: -32.5,104.5 + parent: 2 + - uid: 13489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,104.5 + parent: 2 + - uid: 13490 + components: + - type: Transform + pos: -40.5,100.5 + parent: 2 + - uid: 13494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,104.5 + parent: 2 + - uid: 13496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,104.5 + parent: 2 + - uid: 13666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,71.5 + parent: 2 + - uid: 13668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,99.5 + parent: 2 + - uid: 13709 + components: + - type: Transform + pos: -7.5,70.5 + parent: 2 + - uid: 14843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,164.5 + parent: 2 + - uid: 14888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,35.5 + parent: 2 + - uid: 14959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,35.5 + parent: 2 + - uid: 15023 + components: + - type: Transform + pos: -40.5,98.5 + parent: 2 + - uid: 15326 + components: + - type: Transform + pos: -98.5,36.5 + parent: 2 + - uid: 15373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,35.5 + parent: 2 + - uid: 16564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,69.5 + parent: 2 + - uid: 16577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,104.5 + parent: 2 + - uid: 16579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,73.5 + parent: 2 + - uid: 17538 + components: + - type: Transform + pos: -88.5,38.5 + parent: 2 + - uid: 17778 + components: + - type: Transform + pos: -88.5,40.5 + parent: 2 + - uid: 17995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,46.5 + parent: 2 + - uid: 18051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,166.5 + parent: 2 + - uid: 18066 + components: + - type: Transform + pos: -17.5,166.5 + parent: 2 + - uid: 18080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,165.5 + parent: 2 + - uid: 18081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,165.5 + parent: 2 + - uid: 18085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,165.5 + parent: 2 + - uid: 18088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,165.5 + parent: 2 + - uid: 18108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,165.5 + parent: 2 + - uid: 18113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,165.5 + parent: 2 + - uid: 18115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,165.5 + parent: 2 + - uid: 18119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,165.5 + parent: 2 + - uid: 18131 + components: + - type: Transform + pos: -3.5,180.5 + parent: 2 + - uid: 18136 + components: + - type: Transform + pos: -3.5,179.5 + parent: 2 + - uid: 18148 + components: + - type: Transform + pos: -3.5,178.5 + parent: 2 + - uid: 18154 + components: + - type: Transform + pos: -3.5,177.5 + parent: 2 + - uid: 18196 + components: + - type: Transform + pos: -3.5,176.5 + parent: 2 + - uid: 18207 + components: + - type: Transform + pos: -3.5,175.5 + parent: 2 + - uid: 18247 + components: + - type: Transform + pos: -3.5,174.5 + parent: 2 + - uid: 18248 + components: + - type: Transform + pos: -3.5,173.5 + parent: 2 + - uid: 18267 + components: + - type: Transform + pos: -3.5,172.5 + parent: 2 + - uid: 18270 + components: + - type: Transform + pos: -3.5,171.5 + parent: 2 + - uid: 18275 + components: + - type: Transform + pos: -3.5,170.5 + parent: 2 + - uid: 18276 + components: + - type: Transform + pos: -3.5,169.5 + parent: 2 + - uid: 18289 + components: + - type: Transform + pos: -3.5,168.5 + parent: 2 + - uid: 18301 + components: + - type: Transform + pos: -3.5,167.5 + parent: 2 + - uid: 18373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,184.5 + parent: 2 + - uid: 18382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,186.5 + parent: 2 + - uid: 18906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,164.5 + parent: 2 + - uid: 19299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,167.5 + parent: 2 + - uid: 19304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,167.5 + parent: 2 + - uid: 19305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,167.5 + parent: 2 + - uid: 19311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,167.5 + parent: 2 + - uid: 19312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,167.5 + parent: 2 + - uid: 19345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,167.5 + parent: 2 + - uid: 19350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,167.5 + parent: 2 + - uid: 19362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,167.5 + parent: 2 + - uid: 19545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,96.5 + parent: 2 + - uid: 19547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,95.5 + parent: 2 + - uid: 19548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,95.5 + parent: 2 + - uid: 19549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,95.5 + parent: 2 + - uid: 19550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,95.5 + parent: 2 + - uid: 19551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,95.5 + parent: 2 + - uid: 19552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,95.5 + parent: 2 + - uid: 19553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,95.5 + parent: 2 + - uid: 19716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,179.5 + parent: 2 + - uid: 20408 + components: + - type: Transform + pos: -43.5,58.5 + parent: 2 + - uid: 20655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,72.5 + parent: 2 + - uid: 21734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,179.5 + parent: 2 + - uid: 21746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,179.5 + parent: 2 + - uid: 21774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,185.5 + parent: 2 + - uid: 21775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,187.5 + parent: 2 + - uid: 21791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,179.5 + parent: 2 + - uid: 21833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,180.5 + parent: 2 + - uid: 22111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,181.5 + parent: 2 + - uid: 22180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,182.5 + parent: 2 + - uid: 22329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,74.5 + parent: 2 + - uid: 22383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,183.5 + parent: 2 + - uid: 22617 + components: + - type: Transform + pos: -43.5,57.5 + parent: 2 + - uid: 23125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,90.5 + parent: 2 + - uid: 23971 + components: + - type: Transform + pos: -43.5,56.5 + parent: 2 + - uid: 24298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,197.5 + parent: 2 + - uid: 24305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,188.5 + parent: 2 + - uid: 24309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,179.5 + parent: 2 + - uid: 24310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,180.5 + parent: 2 + - uid: 24311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,181.5 + parent: 2 + - uid: 24312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,188.5 + parent: 2 + - uid: 24313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,191.5 + parent: 2 + - uid: 24315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,189.5 + parent: 2 + - uid: 24317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,190.5 + parent: 2 + - uid: 24319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,194.5 + parent: 2 + - uid: 24320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,196.5 + parent: 2 + - uid: 24324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,195.5 + parent: 2 + - uid: 24325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,198.5 + parent: 2 + - uid: 24327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,199.5 + parent: 2 + - uid: 24330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,187.5 + parent: 2 + - uid: 24338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,186.5 + parent: 2 + - uid: 24349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,184.5 + parent: 2 + - uid: 24353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,187.5 + parent: 2 + - uid: 24354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,186.5 + parent: 2 + - uid: 24355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,192.5 + parent: 2 + - uid: 24358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,193.5 + parent: 2 + - uid: 25168 + components: + - type: Transform + pos: -43.5,55.5 + parent: 2 + - uid: 25305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,164.5 + parent: 2 + - uid: 25867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,200.5 + parent: 2 + - uid: 25868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,200.5 + parent: 2 + - uid: 25870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,201.5 + parent: 2 + - uid: 25872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,202.5 + parent: 2 + - uid: 25873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,202.5 + parent: 2 + - uid: 25876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,203.5 + parent: 2 + - uid: 25877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,203.5 + parent: 2 + - uid: 25878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,203.5 + parent: 2 + - uid: 25879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,203.5 + parent: 2 + - uid: 25880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,203.5 + parent: 2 + - uid: 25881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,203.5 + parent: 2 + - uid: 25882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,203.5 + parent: 2 + - uid: 25887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,206.5 + parent: 2 + - uid: 25888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,207.5 + parent: 2 + - uid: 25889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,208.5 + parent: 2 + - uid: 25893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,210.5 + parent: 2 + - uid: 25894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,210.5 + parent: 2 + - uid: 25895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,210.5 + parent: 2 + - uid: 25896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,210.5 + parent: 2 + - uid: 25897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,210.5 + parent: 2 + - uid: 25898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,210.5 + parent: 2 + - uid: 25899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,210.5 + parent: 2 + - uid: 25900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,210.5 + parent: 2 + - uid: 25902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,211.5 + parent: 2 + - uid: 25903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,212.5 + parent: 2 + - uid: 25905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,213.5 + parent: 2 + - uid: 25906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,213.5 + parent: 2 + - uid: 25908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,213.5 + parent: 2 + - uid: 25909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,213.5 + parent: 2 + - uid: 25910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,213.5 + parent: 2 + - uid: 25911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,213.5 + parent: 2 + - uid: 25912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,213.5 + parent: 2 + - uid: 25915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,212.5 + parent: 2 + - uid: 25916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,212.5 + parent: 2 + - uid: 25921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,211.5 + parent: 2 + - uid: 25922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,210.5 + parent: 2 + - uid: 25925 + components: + - type: Transform + pos: -6.5,212.5 + parent: 2 + - uid: 25926 + components: + - type: Transform + pos: -6.5,211.5 + parent: 2 + - uid: 25927 + components: + - type: Transform + pos: -6.5,210.5 + parent: 2 + - uid: 25928 + components: + - type: Transform + pos: -6.5,209.5 + parent: 2 + - uid: 25929 + components: + - type: Transform + pos: -6.5,208.5 + parent: 2 + - uid: 25930 + components: + - type: Transform + pos: -6.5,207.5 + parent: 2 + - uid: 25931 + components: + - type: Transform + pos: -6.5,206.5 + parent: 2 + - uid: 25935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,209.5 + parent: 2 + - uid: 25936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,209.5 + parent: 2 + - uid: 25937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,209.5 + parent: 2 + - uid: 25938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,209.5 + parent: 2 + - uid: 25940 + components: + - type: Transform + pos: -24.5,208.5 + parent: 2 + - uid: 25941 + components: + - type: Transform + pos: -24.5,207.5 + parent: 2 + - uid: 25942 + components: + - type: Transform + pos: -24.5,206.5 + parent: 2 + - uid: 25944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,205.5 + parent: 2 + - uid: 25945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,205.5 + parent: 2 + - uid: 25946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,205.5 + parent: 2 + - uid: 25958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,182.5 + parent: 2 + - uid: 25963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,180.5 + parent: 2 + - uid: 25964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,180.5 + parent: 2 + - uid: 25965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,180.5 + parent: 2 + - uid: 25966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,180.5 + parent: 2 + - uid: 25967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,180.5 + parent: 2 + - uid: 25968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,180.5 + parent: 2 + - uid: 25969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,180.5 + parent: 2 + - uid: 25970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,180.5 + parent: 2 + - uid: 25974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,179.5 + parent: 2 + - uid: 25975 + components: + - type: Transform + pos: 6.5,178.5 + parent: 2 + - uid: 25976 + components: + - type: Transform + pos: 6.5,177.5 + parent: 2 + - uid: 25977 + components: + - type: Transform + pos: 6.5,176.5 + parent: 2 + - uid: 25978 + components: + - type: Transform + pos: 6.5,175.5 + parent: 2 + - uid: 25980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,174.5 + parent: 2 + - uid: 25981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,174.5 + parent: 2 + - uid: 25982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,174.5 + parent: 2 + - uid: 25983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,174.5 + parent: 2 + - uid: 25985 + components: + - type: Transform + pos: 1.5,173.5 + parent: 2 + - uid: 25986 + components: + - type: Transform + pos: 1.5,172.5 + parent: 2 + - uid: 25987 + components: + - type: Transform + pos: 1.5,171.5 + parent: 2 + - uid: 25988 + components: + - type: Transform + pos: 1.5,170.5 + parent: 2 + - uid: 25989 + components: + - type: Transform + pos: 1.5,169.5 + parent: 2 + - uid: 25990 + components: + - type: Transform + pos: 1.5,168.5 + parent: 2 + - uid: 25991 + components: + - type: Transform + pos: 1.5,167.5 + parent: 2 + - uid: 25993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,166.5 + parent: 2 + - uid: 25994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,166.5 + parent: 2 + - uid: 25995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,166.5 + parent: 2 + - uid: 26000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,166.5 + parent: 2 + - uid: 26001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,166.5 + parent: 2 + - uid: 26022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,173.5 + parent: 2 + - uid: 26023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,173.5 + parent: 2 + - uid: 26024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,173.5 + parent: 2 + - uid: 26025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,173.5 + parent: 2 + - uid: 26026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,173.5 + parent: 2 + - uid: 26027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,173.5 + parent: 2 + - uid: 26029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,174.5 + parent: 2 + - uid: 26030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,175.5 + parent: 2 + - uid: 26031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,176.5 + parent: 2 + - uid: 26032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,177.5 + parent: 2 + - uid: 26033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,178.5 + parent: 2 + - uid: 26048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,188.5 + parent: 2 + - uid: 26049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,189.5 + parent: 2 + - uid: 26051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,190.5 + parent: 2 + - uid: 26052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,190.5 + parent: 2 + - uid: 26053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,190.5 + parent: 2 + - uid: 26054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,190.5 + parent: 2 + - uid: 26055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,190.5 + parent: 2 + - uid: 26057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,191.5 + parent: 2 + - uid: 26061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,192.5 + parent: 2 + - uid: 26062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,192.5 + parent: 2 + - uid: 26063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,192.5 + parent: 2 + - uid: 26064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,192.5 + parent: 2 + - uid: 26065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,192.5 + parent: 2 + - uid: 26066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,192.5 + parent: 2 + - uid: 26069 + components: + - type: Transform + pos: -16.5,193.5 + parent: 2 + - uid: 26071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,192.5 + parent: 2 + - uid: 26072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,192.5 + parent: 2 + - uid: 26073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,192.5 + parent: 2 + - uid: 26074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,191.5 + parent: 2 + - uid: 26075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,190.5 + parent: 2 + - uid: 26077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,189.5 + parent: 2 + - uid: 26078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,189.5 + parent: 2 + - uid: 26079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,189.5 + parent: 2 + - uid: 26082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,172.5 + parent: 2 + - uid: 26083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,172.5 + parent: 2 + - uid: 26084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,172.5 + parent: 2 + - uid: 26085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,172.5 + parent: 2 + - uid: 26086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,172.5 + parent: 2 + - uid: 26087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,172.5 + parent: 2 + - uid: 26088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,172.5 + parent: 2 + - uid: 26089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,172.5 + parent: 2 + - uid: 26090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,172.5 + parent: 2 + - uid: 26091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,172.5 + parent: 2 + - uid: 26092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,172.5 + parent: 2 + - uid: 26093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,172.5 + parent: 2 + - uid: 26094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,172.5 + parent: 2 + - uid: 26096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,172.5 + parent: 2 + - uid: 26097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,172.5 + parent: 2 + - uid: 26098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,172.5 + parent: 2 + - uid: 26100 + components: + - type: Transform + pos: -81.5,173.5 + parent: 2 + - uid: 26101 + components: + - type: Transform + pos: -81.5,174.5 + parent: 2 + - uid: 26103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,172.5 + parent: 2 + - uid: 26104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,172.5 + parent: 2 + - uid: 26105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,172.5 + parent: 2 + - uid: 26106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,172.5 + parent: 2 + - uid: 26108 + components: + - type: Transform + pos: -86.5,171.5 + parent: 2 + - uid: 26109 + components: + - type: Transform + pos: -86.5,170.5 + parent: 2 + - uid: 26110 + components: + - type: Transform + pos: -86.5,168.5 + parent: 2 + - uid: 26112 + components: + - type: Transform + pos: -86.5,166.5 + parent: 2 + - uid: 26116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,171.5 + parent: 2 + - uid: 26117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,170.5 + parent: 2 + - uid: 26118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,169.5 + parent: 2 + - uid: 26120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,168.5 + parent: 2 + - uid: 26122 + components: + - type: Transform + pos: -79.5,167.5 + parent: 2 + - uid: 26123 + components: + - type: Transform + pos: -79.5,166.5 + parent: 2 + - uid: 26124 + components: + - type: Transform + pos: -79.5,165.5 + parent: 2 + - uid: 26125 + components: + - type: Transform + pos: -79.5,164.5 + parent: 2 + - uid: 26126 + components: + - type: Transform + pos: -79.5,163.5 + parent: 2 + - uid: 26127 + components: + - type: Transform + pos: -79.5,162.5 + parent: 2 + - uid: 26128 + components: + - type: Transform + pos: -79.5,161.5 + parent: 2 + - uid: 26129 + components: + - type: Transform + pos: -79.5,160.5 + parent: 2 + - uid: 26133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,159.5 + parent: 2 + - uid: 26134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,159.5 + parent: 2 + - uid: 26138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,157.5 + parent: 2 + - uid: 26139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,156.5 + parent: 2 + - uid: 26140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,155.5 + parent: 2 + - uid: 26141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,154.5 + parent: 2 + - uid: 26142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,153.5 + parent: 2 + - uid: 26144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,152.5 + parent: 2 + - uid: 26145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,152.5 + parent: 2 + - uid: 26147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,158.5 + parent: 2 + - uid: 26148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,158.5 + parent: 2 + - uid: 26149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,158.5 + parent: 2 + - uid: 26150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,158.5 + parent: 2 + - uid: 26151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,158.5 + parent: 2 + - uid: 26152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,158.5 + parent: 2 + - uid: 26153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,158.5 + parent: 2 + - uid: 26155 + components: + - type: Transform + pos: -72.5,157.5 + parent: 2 + - uid: 26876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,95.5 + parent: 2 + - uid: 26877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,95.5 + parent: 2 + - uid: 26878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,95.5 + parent: 2 + - uid: 26881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,95.5 + parent: 2 + - uid: 26882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,95.5 + parent: 2 + - uid: 26883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,95.5 + parent: 2 + - uid: 26884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,95.5 + parent: 2 + - uid: 26885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,95.5 + parent: 2 + - uid: 26887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,95.5 + parent: 2 + - uid: 26888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,95.5 + parent: 2 + - uid: 26889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,95.5 + parent: 2 + - uid: 26890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,95.5 + parent: 2 + - uid: 26891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,94.5 + parent: 2 + - uid: 26892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,93.5 + parent: 2 + - uid: 26893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,92.5 + parent: 2 + - uid: 26894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,91.5 + parent: 2 + - uid: 26895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,90.5 + parent: 2 + - uid: 26897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,89.5 + parent: 2 + - uid: 26900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,88.5 + parent: 2 + - uid: 26901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,88.5 + parent: 2 + - uid: 26902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,88.5 + parent: 2 + - uid: 26903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,88.5 + parent: 2 + - uid: 26904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,88.5 + parent: 2 + - uid: 26905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,88.5 + parent: 2 + - uid: 26906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,88.5 + parent: 2 + - uid: 26908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,88.5 + parent: 2 + - uid: 26909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,87.5 + parent: 2 + - uid: 26910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,86.5 + parent: 2 + - uid: 26911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,85.5 + parent: 2 + - uid: 26912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,84.5 + parent: 2 + - uid: 26913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,83.5 + parent: 2 + - uid: 26915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,82.5 + parent: 2 + - uid: 26916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,82.5 + parent: 2 + - uid: 26917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,82.5 + parent: 2 + - uid: 26918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,82.5 + parent: 2 + - uid: 26919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,82.5 + parent: 2 + - uid: 26920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,82.5 + parent: 2 + - uid: 26921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,82.5 + parent: 2 + - uid: 26922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,82.5 + parent: 2 + - uid: 26923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,82.5 + parent: 2 + - uid: 26924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,82.5 + parent: 2 + - uid: 26928 + components: + - type: Transform + pos: -58.5,83.5 + parent: 2 + - uid: 26930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,83.5 + parent: 2 + - uid: 26931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,84.5 + parent: 2 + - uid: 26932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,85.5 + parent: 2 + - uid: 26933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,86.5 + parent: 2 + - uid: 26934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,87.5 + parent: 2 + - uid: 26935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,88.5 + parent: 2 + - uid: 26937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,89.5 + parent: 2 + - uid: 26939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,89.5 + parent: 2 + - uid: 26940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,89.5 + parent: 2 + - uid: 26941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,89.5 + parent: 2 + - uid: 26942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,89.5 + parent: 2 + - uid: 26943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,89.5 + parent: 2 + - uid: 26944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,89.5 + parent: 2 + - uid: 26945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,89.5 + parent: 2 + - uid: 26946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,89.5 + parent: 2 + - uid: 26947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,89.5 + parent: 2 + - uid: 26950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,88.5 + parent: 2 + - uid: 26951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,87.5 + parent: 2 + - uid: 26952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,86.5 + parent: 2 + - uid: 26953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,85.5 + parent: 2 + - uid: 26954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,84.5 + parent: 2 + - uid: 26955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,83.5 + parent: 2 + - uid: 26956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,82.5 + parent: 2 + - uid: 26957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,81.5 + parent: 2 + - uid: 26962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,81.5 + parent: 2 + - uid: 26963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,82.5 + parent: 2 + - uid: 26964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,83.5 + parent: 2 + - uid: 26965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,84.5 + parent: 2 + - uid: 26966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,85.5 + parent: 2 + - uid: 26967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,86.5 + parent: 2 + - uid: 26968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,87.5 + parent: 2 + - uid: 26969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,88.5 + parent: 2 + - uid: 26970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,89.5 + parent: 2 + - uid: 26971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,89.5 + parent: 2 + - uid: 26972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,89.5 + parent: 2 + - uid: 26974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,89.5 + parent: 2 + - uid: 26975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,89.5 + parent: 2 + - uid: 26976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,89.5 + parent: 2 + - uid: 26977 + components: + - type: Transform + pos: -57.5,81.5 + parent: 2 + - uid: 26978 + components: + - type: Transform + pos: -57.5,80.5 + parent: 2 + - uid: 26979 + components: + - type: Transform + pos: -57.5,79.5 + parent: 2 + - uid: 26980 + components: + - type: Transform + pos: -57.5,78.5 + parent: 2 + - uid: 26981 + components: + - type: Transform + pos: -57.5,77.5 + parent: 2 + - uid: 26982 + components: + - type: Transform + pos: -57.5,76.5 + parent: 2 + - uid: 26983 + components: + - type: Transform + pos: -57.5,75.5 + parent: 2 + - uid: 26985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,74.5 + parent: 2 + - uid: 26988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,91.5 + parent: 2 + - uid: 26989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,92.5 + parent: 2 + - uid: 26990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,93.5 + parent: 2 + - uid: 26991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,94.5 + parent: 2 + - uid: 26992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,95.5 + parent: 2 + - uid: 26993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,96.5 + parent: 2 + - uid: 26994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,97.5 + parent: 2 + - uid: 27007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,89.5 + parent: 2 + - uid: 27008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,89.5 + parent: 2 + - uid: 27009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,89.5 + parent: 2 + - uid: 27010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,89.5 + parent: 2 + - uid: 27011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,89.5 + parent: 2 + - uid: 27012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,89.5 + parent: 2 + - uid: 27013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,89.5 + parent: 2 + - uid: 27014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,89.5 + parent: 2 + - uid: 27015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,89.5 + parent: 2 + - uid: 27016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,89.5 + parent: 2 + - uid: 27017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,89.5 + parent: 2 + - uid: 27018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,89.5 + parent: 2 + - uid: 27020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,88.5 + parent: 2 + - uid: 27021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,87.5 + parent: 2 + - uid: 27022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,86.5 + parent: 2 + - uid: 27023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,85.5 + parent: 2 + - uid: 27024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,84.5 + parent: 2 + - uid: 27025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,83.5 + parent: 2 + - uid: 27026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,82.5 + parent: 2 + - uid: 27027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,81.5 + parent: 2 + - uid: 27028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,80.5 + parent: 2 + - uid: 27029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,79.5 + parent: 2 + - uid: 27030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,78.5 + parent: 2 + - uid: 27031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,77.5 + parent: 2 + - uid: 27032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,76.5 + parent: 2 + - uid: 27033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,75.5 + parent: 2 + - uid: 27036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,73.5 + parent: 2 + - uid: 27037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,72.5 + parent: 2 + - uid: 27038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,71.5 + parent: 2 + - uid: 27039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,70.5 + parent: 2 + - uid: 27040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,69.5 + parent: 2 + - uid: 27041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,68.5 + parent: 2 + - uid: 27042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,67.5 + parent: 2 + - uid: 27043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,66.5 + parent: 2 + - uid: 27045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,65.5 + parent: 2 + - uid: 27046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,65.5 + parent: 2 + - uid: 27047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,65.5 + parent: 2 + - uid: 27048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,65.5 + parent: 2 + - uid: 27049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,65.5 + parent: 2 + - uid: 27050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,65.5 + parent: 2 + - uid: 27051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,65.5 + parent: 2 + - uid: 27052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,65.5 + parent: 2 + - uid: 27054 + components: + - type: Transform + pos: -31.5,64.5 + parent: 2 + - uid: 27056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,63.5 + parent: 2 + - uid: 27058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,74.5 + parent: 2 + - uid: 27059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,74.5 + parent: 2 + - uid: 27060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,74.5 + parent: 2 + - uid: 27062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,74.5 + parent: 2 + - uid: 27063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,74.5 + parent: 2 + - uid: 27065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,75.5 + parent: 2 + - uid: 27066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,76.5 + parent: 2 + - uid: 27068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,74.5 + parent: 2 + - uid: 27069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,74.5 + parent: 2 + - uid: 27070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,74.5 + parent: 2 + - uid: 27071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,74.5 + parent: 2 + - uid: 27072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,74.5 + parent: 2 + - uid: 27073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,74.5 + parent: 2 + - uid: 27074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,74.5 + parent: 2 + - uid: 27077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,75.5 + parent: 2 + - uid: 27078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,76.5 + parent: 2 + - uid: 27079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,77.5 + parent: 2 + - uid: 27080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,78.5 + parent: 2 + - uid: 27081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,79.5 + parent: 2 + - uid: 27082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,80.5 + parent: 2 + - uid: 27084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,81.5 + parent: 2 + - uid: 27085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,81.5 + parent: 2 + - uid: 27088 + components: + - type: Transform + pos: -6.5,82.5 + parent: 2 + - uid: 27089 + components: + - type: Transform + pos: -6.5,83.5 + parent: 2 + - uid: 27091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,84.5 + parent: 2 + - uid: 27093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,89.5 + parent: 2 + - uid: 27094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,89.5 + parent: 2 + - uid: 27095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,89.5 + parent: 2 + - uid: 27116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,74.5 + parent: 2 + - uid: 27117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,74.5 + parent: 2 + - uid: 27118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,74.5 + parent: 2 + - uid: 27119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,74.5 + parent: 2 + - uid: 27120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,74.5 + parent: 2 + - uid: 27121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,74.5 + parent: 2 + - uid: 27122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,74.5 + parent: 2 + - uid: 27123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,74.5 + parent: 2 + - uid: 27125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,75.5 + parent: 2 + - uid: 27126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,76.5 + parent: 2 + - uid: 27127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,77.5 + parent: 2 + - uid: 27196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,95.5 + parent: 2 + - uid: 27779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,95.5 + parent: 2 + - uid: 28004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - uid: 28012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - uid: 28022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + - uid: 28024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - uid: 28087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 2 + - uid: 28107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 2 + - uid: 28288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + - uid: 28295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,55.5 + parent: 2 + - uid: 28296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,55.5 + parent: 2 + - uid: 28301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,55.5 + parent: 2 + - uid: 28302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,55.5 + parent: 2 + - uid: 28331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 2 + - uid: 28333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - uid: 28334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + - uid: 28335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 2 + - uid: 28433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - uid: 28436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - uid: 28438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 + - uid: 28448 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 28456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 + - uid: 28491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,15.5 + parent: 2 + - uid: 28513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 + - uid: 28522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,15.5 + parent: 2 + - uid: 28529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - uid: 28579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + - uid: 28584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2 + - uid: 28588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,15.5 + parent: 2 + - uid: 28601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,15.5 + parent: 2 + - uid: 28615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,15.5 + parent: 2 + - uid: 28628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,15.5 + parent: 2 + - uid: 28643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - uid: 28660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,15.5 + parent: 2 + - uid: 28661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,15.5 + parent: 2 + - uid: 28681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,15.5 + parent: 2 + - uid: 28694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,15.5 + parent: 2 + - uid: 28695 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 28732 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 28733 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 28740 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 29133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,29.5 + parent: 2 + - uid: 29182 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 29204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,34.5 + parent: 2 + - uid: 29268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,34.5 + parent: 2 + - uid: 29278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,34.5 + parent: 2 + - uid: 29326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,34.5 + parent: 2 + - uid: 29327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,34.5 + parent: 2 + - uid: 29328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,34.5 + parent: 2 + - uid: 29329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,34.5 + parent: 2 + - uid: 29337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,35.5 + parent: 2 + - uid: 29744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,65.5 + parent: 2 + - uid: 29746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,65.5 + parent: 2 + - uid: 29749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,65.5 + parent: 2 + - uid: 29750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,65.5 + parent: 2 + - uid: 29751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,65.5 + parent: 2 + - uid: 29752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,65.5 + parent: 2 + - uid: 29753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,65.5 + parent: 2 + - uid: 29754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,65.5 + parent: 2 + - uid: 29757 + components: + - type: Transform + pos: -108.5,63.5 + parent: 2 + - uid: 29758 + components: + - type: Transform + pos: -108.5,62.5 + parent: 2 + - uid: 29759 + components: + - type: Transform + pos: -108.5,61.5 + parent: 2 + - uid: 29760 + components: + - type: Transform + pos: -108.5,60.5 + parent: 2 + - uid: 29761 + components: + - type: Transform + pos: -108.5,59.5 + parent: 2 + - uid: 29762 + components: + - type: Transform + pos: -108.5,58.5 + parent: 2 + - uid: 29763 + components: + - type: Transform + pos: -108.5,57.5 + parent: 2 + - uid: 29764 + components: + - type: Transform + pos: -108.5,56.5 + parent: 2 + - uid: 29765 + components: + - type: Transform + pos: -108.5,55.5 + parent: 2 + - uid: 29766 + components: + - type: Transform + pos: -108.5,54.5 + parent: 2 + - uid: 29767 + components: + - type: Transform + pos: -108.5,53.5 + parent: 2 + - uid: 29771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,52.5 + parent: 2 + - uid: 29772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,51.5 + parent: 2 + - uid: 29773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,50.5 + parent: 2 + - uid: 29774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,49.5 + parent: 2 + - uid: 29775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,48.5 + parent: 2 + - uid: 29795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,47.5 + parent: 2 + - uid: 29797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,47.5 + parent: 2 + - uid: 29798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,47.5 + parent: 2 + - uid: 29799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,47.5 + parent: 2 + - uid: 29800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,47.5 + parent: 2 + - uid: 29801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,47.5 + parent: 2 + - uid: 29802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,47.5 + parent: 2 + - uid: 29803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,47.5 + parent: 2 + - uid: 29809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,46.5 + parent: 2 + - uid: 29815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,46.5 + parent: 2 + - uid: 29816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,45.5 + parent: 2 + - uid: 29817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,44.5 + parent: 2 + - uid: 29818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,43.5 + parent: 2 + - uid: 29819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,42.5 + parent: 2 + - uid: 29821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,41.5 + parent: 2 + - uid: 29822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,41.5 + parent: 2 + - uid: 29823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,41.5 + parent: 2 + - uid: 29824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,41.5 + parent: 2 + - uid: 29825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,41.5 + parent: 2 + - uid: 29826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,41.5 + parent: 2 + - uid: 29827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,41.5 + parent: 2 + - uid: 29828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,41.5 + parent: 2 + - uid: 29829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,41.5 + parent: 2 + - uid: 29835 + components: + - type: Transform + pos: -120.5,45.5 + parent: 2 + - uid: 29838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,46.5 + parent: 2 + - uid: 29839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,46.5 + parent: 2 + - uid: 29840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,46.5 + parent: 2 + - uid: 29841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,46.5 + parent: 2 + - uid: 29842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,46.5 + parent: 2 + - uid: 29843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,46.5 + parent: 2 + - uid: 29844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,46.5 + parent: 2 + - uid: 29845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,46.5 + parent: 2 + - uid: 29846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,46.5 + parent: 2 + - uid: 29847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,46.5 + parent: 2 + - uid: 32287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,104.5 + parent: 2 + - uid: 34136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,73.5 + parent: 2 + - uid: 35673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,95.5 + parent: 2 + - uid: 35674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,95.5 + parent: 2 + - uid: 35675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,95.5 + parent: 2 + - uid: 35676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,95.5 + parent: 2 + - uid: 35677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,95.5 + parent: 2 + - uid: 35678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,95.5 + parent: 2 + - uid: 35680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,98.5 + parent: 2 + - uid: 35681 + components: + - type: Transform + pos: -92.5,96.5 + parent: 2 + - uid: 35682 + components: + - type: Transform + pos: -92.5,97.5 + parent: 2 + - uid: 35683 + components: + - type: Transform + pos: -92.5,98.5 + parent: 2 + - uid: 35686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,99.5 + parent: 2 + - uid: 35687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,99.5 + parent: 2 + - uid: 35688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,99.5 + parent: 2 + - uid: 35689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,99.5 + parent: 2 + - uid: 35690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,99.5 + parent: 2 + - uid: 35691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -98.5,99.5 + parent: 2 + - uid: 35692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,99.5 + parent: 2 + - uid: 35693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,99.5 + parent: 2 + - uid: 35725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,94.5 + parent: 2 + - uid: 35726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,94.5 + parent: 2 + - uid: 35727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,94.5 + parent: 2 + - uid: 35728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,94.5 + parent: 2 + - uid: 36152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,89.5 + parent: 2 + - uid: 36607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,104.5 + parent: 2 + - uid: 36610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,104.5 + parent: 2 + - uid: 36617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,104.5 + parent: 2 + - uid: 36659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,72.5 + parent: 2 + - uid: 42889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,65.5 + parent: 2 + - uid: 42896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,66.5 + parent: 2 + - uid: 42897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,66.5 + parent: 2 + - uid: 42898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,66.5 + parent: 2 + - uid: 42899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,66.5 + parent: 2 + - uid: 42900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,66.5 + parent: 2 + - uid: 42901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,66.5 + parent: 2 + - uid: 42902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,66.5 + parent: 2 + - uid: 42903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,66.5 + parent: 2 + - uid: 42904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,66.5 + parent: 2 + - uid: 42905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,66.5 + parent: 2 + - uid: 42906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,66.5 + parent: 2 + - uid: 42907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,66.5 + parent: 2 + - uid: 42908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,66.5 + parent: 2 + - uid: 42909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,66.5 + parent: 2 + - uid: 42910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,66.5 + parent: 2 + - uid: 42911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,66.5 + parent: 2 + - uid: 42912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,64.5 + parent: 2 + - uid: 42913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,63.5 + parent: 2 + - uid: 42914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,62.5 + parent: 2 + - uid: 42915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,60.5 + parent: 2 + - uid: 42921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,61.5 + parent: 2 + - uid: 42922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,61.5 + parent: 2 + - uid: 42923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,61.5 + parent: 2 + - uid: 42924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,61.5 + parent: 2 + - uid: 42925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,61.5 + parent: 2 + - uid: 42926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,61.5 + parent: 2 + - uid: 42927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,61.5 + parent: 2 + - uid: 42928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,61.5 + parent: 2 + - uid: 42939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,56.5 + parent: 2 + - uid: 42941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,59.5 + parent: 2 + - uid: 42947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,58.5 + parent: 2 +- proto: DisposalPipeBroken + entities: + - uid: 2618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,16.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 19711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,54.5 + parent: 2 +- proto: DisposalRouterFlipped + entities: + - uid: 19554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,95.5 + parent: 2 + - uid: 19555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,95.5 + parent: 2 + - uid: 19556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,95.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 822 + components: + - type: Transform + pos: -29.5,5.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-18.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,51.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,18.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + pos: -28.5,206.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 114.5,45.5 + parent: 2 + - uid: 7034 + components: + - type: Transform + pos: 82.5,41.5 + parent: 2 + - uid: 7070 + components: + - type: Transform + pos: 106.5,49.5 + parent: 2 + - uid: 7074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,40.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,65.5 + parent: 2 + - uid: 7102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,65.5 + parent: 2 + - uid: 7111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 114.5,61.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,39.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-12.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 2 + - uid: 7603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-1.5 + parent: 2 + - uid: 9872 + components: + - type: Transform + pos: -24.5,194.5 + parent: 2 + - uid: 10829 + components: + - type: Transform + pos: -17.5,100.5 + parent: 2 + - uid: 13683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,71.5 + parent: 2 + - uid: 14958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,34.5 + parent: 2 + - uid: 17110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,164.5 + parent: 2 + - uid: 17279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,69.5 + parent: 2 + - uid: 18129 + components: + - type: Transform + pos: -3.5,181.5 + parent: 2 + - uid: 19364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,167.5 + parent: 2 + - uid: 19606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,60.5 + parent: 2 + - uid: 19653 + components: + - type: Transform + pos: -43.5,59.5 + parent: 2 + - uid: 19755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,55.5 + parent: 2 + - uid: 20959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,72.5 + parent: 2 + - uid: 24307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,188.5 + parent: 2 + - uid: 24344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,178.5 + parent: 2 + - uid: 25307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,164.5 + parent: 2 + - uid: 25932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,205.5 + parent: 2 + - uid: 26068 + components: + - type: Transform + pos: -16.5,194.5 + parent: 2 + - uid: 26080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,189.5 + parent: 2 + - uid: 26081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,172.5 + parent: 2 + - uid: 26102 + components: + - type: Transform + pos: -81.5,175.5 + parent: 2 + - uid: 26113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,165.5 + parent: 2 + - uid: 26136 + components: + - type: Transform + pos: -83.5,160.5 + parent: 2 + - uid: 26146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,152.5 + parent: 2 + - uid: 26156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,156.5 + parent: 2 + - uid: 26157 + components: + - type: Transform + pos: -60.5,75.5 + parent: 2 + - uid: 26879 + components: + - type: Transform + pos: -70.5,96.5 + parent: 2 + - uid: 26927 + components: + - type: Transform + pos: -58.5,84.5 + parent: 2 + - uid: 26959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,80.5 + parent: 2 + - uid: 26960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,80.5 + parent: 2 + - uid: 27057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,63.5 + parent: 2 + - uid: 27067 + components: + - type: Transform + pos: -15.5,77.5 + parent: 2 + - uid: 27087 + components: + - type: Transform + pos: -3.5,82.5 + parent: 2 + - uid: 27092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,84.5 + parent: 2 + - uid: 27129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,77.5 + parent: 2 + - uid: 29372 + components: + - type: Transform + pos: 58.5,36.5 + parent: 2 + - uid: 29374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 2 + - uid: 29527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,57.5 + parent: 2 + - uid: 29716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,65.5 + parent: 2 + - uid: 29811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,45.5 + parent: 2 + - uid: 29831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,37.5 + parent: 2 + - uid: 29848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,44.5 + parent: 2 + - uid: 35828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,104.5 + parent: 2 + - uid: 37603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,93.5 + parent: 2 + - uid: 37604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,93.5 + parent: 2 + - uid: 37605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,93.5 + parent: 2 + - uid: 37606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,93.5 + parent: 2 + - uid: 38404 + components: + - type: Transform + pos: -35.5,105.5 + parent: 2 + - uid: 42944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,57.5 + parent: 2 + - uid: 42950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,55.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 282 + components: + - type: Transform + pos: -29.5,5.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 58.5,36.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: -72.5,156.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: 45.5,55.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + pos: 82.5,41.5 + parent: 2 + - uid: 4856 + components: + - type: Transform + pos: 114.5,45.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: -99.5,45.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + pos: -28.5,206.5 + parent: 2 + - uid: 6963 + components: + - type: Transform + pos: 44.5,60.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + pos: 69.5,65.5 + parent: 2 + - type: DisposalUnit + nextFlush: 0 + engaged: True + - type: ContainerContainer + containers: + disposals: !type:Container + showEnts: False + occludes: True + ents: + - 6994 + - uid: 7024 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - uid: 7048 + components: + - type: Transform + pos: 106.5,49.5 + parent: 2 + - uid: 7069 + components: + - type: Transform + pos: 114.5,61.5 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: 79.5,65.5 + parent: 2 + - uid: 9910 + components: + - type: Transform + pos: -24.5,194.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + pos: -4.5,84.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + pos: -45.5,80.5 + parent: 2 + - uid: 12938 + components: + - type: Transform + pos: -33.5,63.5 + parent: 2 + - type: ActiveUserInterface + - uid: 13418 + components: + - type: Transform + pos: -17.5,100.5 + parent: 2 + - uid: 13631 + components: + - type: Transform + pos: -27.5,104.5 + parent: 2 + - uid: 14130 + components: + - type: Transform + pos: -70.5,96.5 + parent: 2 + - uid: 14182 + components: + - type: Transform + pos: -102.5,34.5 + parent: 2 + - uid: 14447 + components: + - type: Transform + pos: -58.5,84.5 + parent: 2 + - uid: 14715 + components: + - type: Transform + pos: -71.5,77.5 + parent: 2 + - uid: 15302 + components: + - type: Transform + pos: -5.5,69.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + pos: -7.5,164.5 + parent: 2 + - uid: 17336 + components: + - type: Transform + pos: -16.5,194.5 + parent: 2 + - uid: 17922 + components: + - type: Transform + pos: -83.5,160.5 + parent: 2 + - uid: 19141 + components: + - type: Transform + pos: -120.5,44.5 + parent: 2 + - uid: 19253 + components: + - type: Transform + pos: -43.5,59.5 + parent: 2 + - uid: 19296 + components: + - type: Transform + pos: -95.5,167.5 + parent: 2 + - uid: 20031 + components: + - type: Transform + pos: -81.5,175.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + pos: -86.5,165.5 + parent: 2 + - uid: 20773 + components: + - type: Transform + pos: -5.5,72.5 + parent: 2 + - uid: 22360 + components: + - type: Transform + pos: -3.5,82.5 + parent: 2 + - uid: 22572 + components: + - type: Transform + pos: -3.5,181.5 + parent: 2 + - uid: 22764 + components: + - type: Transform + pos: -16.5,189.5 + parent: 2 + - uid: 22879 + components: + - type: Transform + pos: -35.5,80.5 + parent: 2 + - uid: 23578 + components: + - type: Transform + pos: 75.5,51.5 + parent: 2 + - uid: 23636 + components: + - type: Transform + pos: 19.5,188.5 + parent: 2 + - uid: 25319 + components: + - type: Transform + pos: -22.5,164.5 + parent: 2 + - uid: 25924 + components: + - type: Transform + pos: -6.5,205.5 + parent: 2 + - uid: 26130 + components: + - type: Transform + pos: -83.5,152.5 + parent: 2 + - uid: 26987 + components: + - type: Transform + pos: -60.5,75.5 + parent: 2 + - uid: 27947 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 28313 + components: + - type: Transform + pos: 93.5,55.5 + parent: 2 + - uid: 29503 + components: + - type: Transform + pos: 70.5,57.5 + parent: 2 + - uid: 29804 + components: + - type: Transform + pos: -87.5,37.5 + parent: 2 + - uid: 36660 + components: + - type: Transform + pos: -18.5,71.5 + parent: 2 + - uid: 36661 + components: + - type: Transform + pos: -15.5,77.5 + parent: 2 + - uid: 38405 + components: + - type: Transform + pos: -35.5,105.5 + parent: 2 + - uid: 42940 + components: + - type: Transform + pos: 55.5,57.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 5122 + components: + - type: Transform + pos: 71.5,66.5 + parent: 2 + - uid: 11396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,165.5 + parent: 2 +- proto: DogBed + entities: + - uid: 3359 + components: + - type: Transform + pos: -66.5,65.5 + parent: 2 + - uid: 7414 + components: + - type: Transform + pos: -34.5,98.5 + parent: 2 + - uid: 10532 + components: + - type: Transform + pos: -17.5,87.5 + parent: 2 + - type: HealOnBuckleHealing + - uid: 20059 + components: + - type: Transform + pos: -21.5,191.5 + parent: 2 + - uid: 23315 + components: + - type: Transform + pos: -20.5,204.5 + parent: 2 + - uid: 29701 + components: + - type: Transform + pos: 69.5,54.5 + parent: 2 + - type: HealOnBuckleHealing +- proto: DonkpocketBoxSpawner + entities: + - uid: 4396 + components: + - type: Transform + pos: 74.5,62.5 + parent: 2 + - uid: 17976 + components: + - type: Transform + pos: -80.5,33.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 17792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.984184,93.71168 + parent: 2 + - uid: 27319 + components: + - type: Transform + pos: -107.742645,35.77787 + parent: 2 + - uid: 28108 + components: + - type: Transform + pos: -107.273895,35.46537 + parent: 2 + - uid: 34630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.96856,93.82105 + parent: 2 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 8721 + components: + - type: Transform + pos: 70.50744,28.58213 + parent: 2 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 4189 + components: + - type: Transform + pos: -105.52287,35.562855 + parent: 2 + - uid: 12322 + components: + - type: Transform + pos: -57.470543,11.874039 + parent: 2 + - uid: 37109 + components: + - type: Transform + pos: 79.32805,34.535007 + parent: 2 + - uid: 37110 + components: + - type: Transform + pos: 79.4843,34.50374 + parent: 2 + - uid: 37111 + components: + - type: Transform + pos: 79.59367,34.425556 + parent: 2 + - uid: 37691 + components: + - type: Transform + pos: -104.678795,64.70973 + parent: 2 +- proto: Dresser + entities: + - uid: 8395 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - uid: 8708 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 18000 + components: + - type: Transform + pos: 0.5,73.5 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 4761 + components: + - type: Transform + pos: -32.5,96.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 8623 + components: + - type: Transform + pos: -122.5,55.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 4784 + components: + - type: Transform + pos: -21.5,205.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 3922 + components: + - type: Transform + pos: 48.5,58.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: -60.5,107.5 + parent: 2 + - uid: 13984 + components: + - type: Transform + pos: -73.5,100.5 + parent: 2 + - uid: 13985 + components: + - type: Transform + pos: -59.5,101.5 + parent: 2 + - uid: 13987 + components: + - type: Transform + pos: -57.5,95.5 + parent: 2 + - uid: 14081 + components: + - type: Transform + pos: -69.5,92.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 4772 + components: + - type: Transform + pos: -17.5,86.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 4561 + components: + - type: Transform + pos: 81.5,63.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 12307 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 12314 + components: + - type: Transform + pos: -84.5,154.5 + parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 4778 + components: + - type: Transform + pos: 72.5,51.5 + parent: 2 +- proto: DrinkAleBottleFull + entities: + - uid: 5306 + components: + - type: Transform + pos: -117.4251,47.764515 + parent: 2 + - uid: 8850 + components: + - type: Transform + pos: -86.47107,86.04662 + parent: 2 + - uid: 11953 + components: + - type: Transform + pos: -117.61632,47.550873 + parent: 2 + - uid: 27300 + components: + - type: Transform + pos: -116.93084,56.36492 + parent: 2 + - uid: 27970 + components: + - type: Transform + pos: -106.29154,59.676247 + parent: 2 + - uid: 28143 + components: + - type: Transform + pos: -115.53544,46.44892 + parent: 2 + - uid: 28515 + components: + - type: Transform + pos: -115.7379,46.71879 + parent: 2 + - uid: 28516 + components: + - type: Transform + pos: -116.18032,48.583874 + parent: 2 + - uid: 28517 + components: + - type: Transform + pos: -116.079094,48.39272 + parent: 2 + - uid: 28518 + components: + - type: Transform + pos: -117.57133,47.888203 + parent: 2 + - uid: 28786 + components: + - type: Transform + pos: -117.122055,56.499855 + parent: 2 + - uid: 28787 + components: + - type: Transform + pos: -117.189545,56.15128 + parent: 2 + - uid: 43363 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 43367 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 43368 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkAntifreeze + entities: + - uid: 17826 + components: + - type: Transform + rot: -31.415926535897945 rad + pos: -24.854618,184.42842 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 1119 + components: + - type: Transform + pos: -46.055157,-7.2816696 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: -45.53195,-7.4222946 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: -49.563564,-11.935511 + parent: 2 + - uid: 3297 + components: + - type: Transform + pos: -5.256243,-3.3245165 + parent: 2 + - uid: 3299 + components: + - type: Transform + pos: -5.5140557,-3.4651415 + parent: 2 + - uid: 3817 + components: + - type: Transform + pos: -85.414536,90.60146 + parent: 2 + - uid: 5003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.17494,55.568237 + parent: 2 + - uid: 5089 + components: + - type: Transform + pos: -49.747948,-12.160354 + parent: 2 + - uid: 8857 + components: + - type: Transform + pos: -85.24285,90.42983 + parent: 2 + - uid: 8858 + components: + - type: Transform + pos: -84.965515,90.62787 + parent: 2 + - uid: 8859 + components: + - type: Transform + pos: -83.39391,89.835724 + parent: 2 + - uid: 36706 + components: + - type: Transform + pos: -112.72828,100.5 + parent: 2 + - uid: 39327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.793434,53.733505 + parent: 2 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 14093 + components: + - type: Transform + pos: -58.308327,98.77253 + parent: 2 +- proto: DrinkBottlePoisonWine + entities: + - uid: 12906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.70291,105.45798 + parent: 2 +- proto: DrinkBottleVodka + entities: + - uid: 22558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.47151,64.47049 + parent: 2 + - uid: 22560 + components: + - type: Transform + pos: -121.34386,66.189606 + parent: 2 + - uid: 22564 + components: + - type: Transform + pos: -121.72684,66.019394 + parent: 2 + - uid: 22568 + components: + - type: Transform + pos: -121.70556,75.49365 + parent: 2 + - uid: 22570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -121.365135,65.381096 + parent: 2 + - uid: 24276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -121.365135,71.855354 + parent: 2 + - uid: 34487 + components: + - type: Transform + pos: -121.407684,75.55748 + parent: 2 + - uid: 37749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.6337433,79.657486 + parent: 2 +- proto: DrinkCanPack + entities: + - uid: 26669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.573349,190.46613 + parent: 2 +- proto: DrinkCarrotJuice + entities: + - uid: 28080 + components: + - type: Transform + pos: -88.28508,38.808193 + parent: 2 +- proto: DrinkChangelingStingCan + entities: + - uid: 31824 + components: + - type: Transform + pos: -124.39389,111.44553 + parent: 2 +- proto: DrinkCognacBottleFull + entities: + - uid: 1898 + components: + - type: Transform + pos: -3.3750377,-2.7402442 + parent: 2 + - uid: 11118 + components: + - type: Transform + pos: -26.41352,61.847504 + parent: 2 + - uid: 35967 + components: + - type: Transform + pos: -2.3189583,86.26212 + parent: 2 +- proto: DrinkColaCan + entities: + - uid: 3016 + components: + - type: Transform + pos: 26.344643,15.328911 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: 116.30695,59.63473 + parent: 2 +- proto: DrinkCreamCarton + entities: + - uid: 7428 + components: + - type: Transform + pos: 53.41304,39.55263 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: 54.222897,39.428944 + parent: 2 +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 7525 + components: + - type: Transform + pos: -21.285141,204.59332 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 1768 + components: + - type: Transform + pos: -22.622606,-10.627377 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: -21.272848,-10.245069 + parent: 2 + - uid: 1786 + components: + - type: Transform + pos: -21.419073,-9.784049 + parent: 2 + - uid: 10942 + components: + - type: Transform + pos: -2.7154617,85.7465 + parent: 2 + - uid: 10945 + components: + - type: Transform + pos: -2.3873367,85.559 + parent: 2 + - uid: 11110 + components: + - type: Transform + pos: -28.073994,61.72482 + parent: 2 + - uid: 11159 + components: + - type: Transform + pos: -28.699112,61.760025 + parent: 2 + - uid: 12114 + components: + - type: Transform + pos: -28.523022,61.443165 + parent: 2 + - uid: 12115 + components: + - type: Transform + pos: -28.30291,61.566387 + parent: 2 + - uid: 12116 + components: + - type: Transform + pos: -28.892807,61.636803 + parent: 2 + - uid: 13604 + components: + - type: Transform + pos: -26.738153,98.81787 + parent: 2 + - uid: 13653 + components: + - type: Transform + pos: -26.525387,98.81787 + parent: 2 + - uid: 17951 + components: + - type: Transform + pos: -86.74141,159.96306 + parent: 2 + - uid: 18008 + components: + - type: Transform + pos: -86.90497,159.83942 + parent: 2 + - uid: 18392 + components: + - type: Transform + pos: -86.90497,160.13176 + parent: 2 + - uid: 18460 + components: + - type: Transform + pos: -87.141174,159.95186 + parent: 2 + - uid: 23348 + components: + - type: Transform + pos: -15.727104,207.45116 + parent: 2 + - uid: 23349 + components: + - type: Transform + pos: -15.513393,207.2375 + parent: 2 + - uid: 23350 + components: + - type: Transform + pos: -15.760849,207.21503 + parent: 2 + - uid: 23351 + components: + - type: Transform + pos: -15.535889,206.84396 + parent: 2 + - uid: 26996 + components: + - type: Transform + pos: -26.674324,98.62638 + parent: 2 + - uid: 27145 + components: + - type: Transform + pos: -116.3138,55.696175 + parent: 2 + - uid: 28717 + components: + - type: Transform + pos: -116.24041,55.384293 + parent: 2 + - uid: 28718 + components: + - type: Transform + pos: -116.58898,55.457676 + parent: 2 +- proto: DrinkGoldenCup + entities: + - uid: 12929 + components: + - type: Transform + pos: -45.483524,94.7499 + parent: 2 +- proto: DrinkGrapeCan + entities: + - uid: 20845 + components: + - type: Transform + pos: -87.64979,182.70209 + parent: 2 +- proto: DrinkHosFlask + entities: + - uid: 30744 + components: + - type: Transform + pos: 70.33956,3.4948273 + parent: 2 +- proto: DrinkHotCoco + entities: + - uid: 38245 + components: + - type: Transform + pos: -123.635925,32.77484 + parent: 2 +- proto: DrinkHotCoffee + entities: + - uid: 1688 + components: + - type: Transform + pos: -12.31633,4.490678 + parent: 2 +- proto: DrinkIceCreamGlass + entities: + - uid: 16704 + components: + - type: Transform + pos: -17.353579,182.94295 + parent: 2 + - uid: 22882 + components: + - type: Transform + pos: -17.488556,182.74054 + parent: 2 + - uid: 24030 + components: + - type: Transform + pos: -8.472454,212.75784 + parent: 2 + - uid: 35495 + components: + - type: Transform + pos: -19.503384,197.82095 + parent: 2 + - uid: 35496 + components: + - type: Transform + pos: -19.660856,197.67477 + parent: 2 + - uid: 35497 + components: + - type: Transform + pos: -19.379656,197.65228 + parent: 2 +- proto: DrinkIcedTeaCan + entities: + - uid: 14385 + components: + - type: Transform + pos: -83.25795,100.66798 + parent: 2 + - uid: 14386 + components: + - type: Transform + pos: -83.48291,100.78042 + parent: 2 + - uid: 14387 + components: + - type: Transform + pos: -83.49041,100.60801 + parent: 2 +- proto: DrinkManlyDorfGlass + entities: + - uid: 1136 + components: + - type: Transform + pos: -49.338604,-11.530714 + parent: 2 +- proto: DrinkMREFlask + entities: + - uid: 4700 + components: + - type: Transform + pos: 83.931656,67.559265 + parent: 2 +- proto: DrinkMug + entities: + - uid: 1872 + components: + - type: Transform + pos: 2.4001656,-2.172993 + parent: 2 + - uid: 15888 + components: + - type: Transform + pos: -63.7017,73.65787 + parent: 2 +- proto: DrinkMugBlack + entities: + - uid: 28156 + components: + - type: Transform + pos: -120.32498,43.736835 + parent: 2 +- proto: DrinkMugBlue + entities: + - uid: 5427 + components: + - type: Transform + pos: -106.726,59.433407 + parent: 2 + - uid: 27312 + components: + - type: Transform + pos: -120.65118,43.54568 + parent: 2 +- proto: DrinkMugDog + entities: + - uid: 4895 + components: + - type: Transform + pos: -58.693054,105.83433 + parent: 2 + - uid: 14361 + components: + - type: Transform + pos: -77.20442,91.62838 + parent: 2 +- proto: DrinkMugGreen + entities: + - uid: 1871 + components: + - type: Transform + pos: 2.6476212,-2.465347 + parent: 2 + - uid: 14757 + components: + - type: Transform + pos: -75.782845,75.774055 + parent: 2 + - uid: 15001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.34178,91.6976 + parent: 2 + - uid: 23028 + components: + - type: Transform + pos: -8.69701,199.56702 + parent: 2 + - uid: 23086 + components: + - type: Transform + pos: -17.916851,177.57477 + parent: 2 +- proto: DrinkMugHeart + entities: + - uid: 14112 + components: + - type: Transform + pos: -77.65123,91.521996 + parent: 2 +- proto: DrinkMugMoebius + entities: + - uid: 15008 + components: + - type: Transform + pos: -76.949104,91.45817 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 1873 + components: + - type: Transform + pos: 4.3235717,-0.31767046 + parent: 2 + - uid: 11253 + components: + - type: Transform + pos: -76.68221,91.74015 + parent: 2 +- proto: DrinkMugRed + entities: + - uid: 229 + components: + - type: Transform + pos: 74.460724,62.959003 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: -76.38434,91.37845 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: -16.25992,-5.19746 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: 74.64069,62.801582 + parent: 2 + - uid: 16686 + components: + - type: Transform + pos: 2.3553925,1.4943619 + parent: 13386 + - uid: 23029 + components: + - type: Transform + pos: -8.398832,199.66798 + parent: 2 + - uid: 23085 + components: + - type: Transform + pos: -17.489428,177.54103 + parent: 2 +- proto: DrinkNukieCan + entities: + - uid: 31989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.39619,110.46375 + parent: 2 +- proto: DrinkPatronBottleFull + entities: + - uid: 4763 + components: + - type: Transform + pos: 86.47911,20.516098 + parent: 2 +- proto: DrinkPoisonWinebottleFull + entities: + - uid: 1897 + components: + - type: Transform + pos: -3.7237253,-2.402913 + parent: 2 + - uid: 11115 + components: + - type: Transform + pos: -26.804104,61.90405 + parent: 2 +- proto: DrinkPoisonWineGlass + entities: + - uid: 15777 + components: + - type: Transform + pos: -132.46767,105.68787 + parent: 2 +- proto: DrinkRootBeerFloatGlass + entities: + - uid: 24028 + components: + - type: Transform + pos: -9.559141,212.75784 + parent: 2 +- proto: DrinkRumBottleFull + entities: + - uid: 888 + components: + - type: Transform + pos: -25.544092,94.38626 + parent: 2 + - uid: 8706 + components: + - type: Transform + pos: -25.266752,94.57109 + parent: 2 +- proto: DrinkScrewdriverCocktailGlass + entities: + - uid: 38284 + components: + - type: Transform + pos: -69.25075,181.48135 + parent: 2 +- proto: DrinkShaker + entities: + - uid: 11014 + components: + - type: Transform + pos: -31.553307,58.607063 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 14116 + components: + - type: Transform + pos: -81.35597,98.65979 + parent: 2 + - uid: 14117 + components: + - type: Transform + pos: -81.4198,98.42575 + parent: 2 + - uid: 14118 + components: + - type: Transform + pos: -81.63257,98.42575 + parent: 2 + - uid: 38036 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38037 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkSilencerGlass + entities: + - uid: 17700 + components: + - type: Transform + pos: 80.8896,18.646988 + parent: 2 +- proto: DrinkSpaceMountainWindCan + entities: + - uid: 15515 + components: + - type: Transform + pos: 96.15272,53.815407 + parent: 2 +- proto: DrinkTequilaBottleFull + entities: + - uid: 23345 + components: + - type: Transform + pos: -16.469471,207.1363 + parent: 2 +- proto: DrinkVermouthBottleFull + entities: + - uid: 1771 + components: + - type: Transform + pos: -22.37515,-9.952714 + parent: 2 +- proto: DrinkVodkaBottleFull + entities: + - uid: 5317 + components: + - type: Transform + pos: 59.344734,65.95568 + parent: 2 + - uid: 14341 + components: + - type: Transform + pos: -81.667076,99.0245 + parent: 2 + - uid: 36113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.66792,141.77411 + parent: 2 + - uid: 37747 + components: + - type: Transform + pos: 5.2720413,79.61494 + parent: 2 + - uid: 37989 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkVodkaGlass + entities: + - uid: 5318 + components: + - type: Transform + pos: 59.61036,65.54943 + parent: 2 + - uid: 37750 + components: + - type: Transform + pos: 5.655018,79.466 + parent: 2 +- proto: DrinkWaterBottleFull + entities: + - uid: 1592 + components: + - type: Transform + parent: 1589 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4692 + components: + - type: Transform + pos: 82.09543,67.644745 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: 82.079124,67.6937 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: 81.99759,67.644745 + parent: 2 + - uid: 10634 + components: + - type: Transform + pos: -11.325617,81.67377 + parent: 2 + - uid: 10635 + components: + - type: Transform + pos: -11.505587,81.527596 + parent: 2 + - uid: 10636 + components: + - type: Transform + pos: -11.449347,81.797455 + parent: 2 + - uid: 14674 + components: + - type: Transform + pos: -78.28501,86.76345 + parent: 2 + - uid: 14675 + components: + - type: Transform + pos: -76.6428,83.918625 + parent: 2 + - uid: 14676 + components: + - type: Transform + pos: -74.48319,83.62627 + parent: 2 + - uid: 14677 + components: + - type: Transform + pos: -75.20306,85.706474 + parent: 2 + - uid: 14704 + components: + - type: Transform + pos: -78.50661,77.73618 + parent: 2 + - uid: 14705 + components: + - type: Transform + pos: -78.324524,77.88572 + parent: 2 + - uid: 15296 + components: + - type: Transform + pos: -124.364685,108.51288 + parent: 2 + - uid: 23924 + components: + - type: Transform + pos: -124.556175,108.555435 + parent: 2 + - uid: 25162 + components: + - type: Transform + pos: -124.72639,108.555435 + parent: 2 +- proto: DrinkWaterCup + entities: + - uid: 25365 + components: + - type: Transform + pos: -80.6248,33.509686 + parent: 2 + - uid: 27257 + components: + - type: Transform + pos: -80.3748,33.36906 + parent: 2 + - uid: 27303 + components: + - type: Transform + pos: -80.46855,33.634686 + parent: 2 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 13572 + components: + - type: Transform + pos: -26.82326,99.25411 + parent: 2 + - uid: 22408 + components: + - type: Transform + pos: -0.2390852,77.10401 + parent: 2 +- proto: DrinkWhiskeyGlass + entities: + - uid: 11101 + components: + - type: Transform + pos: -0.10410905,76.60176 + parent: 2 +- proto: DrinkWineBottleFull + entities: + - uid: 17950 + components: + - type: Transform + pos: -87.703575,160.37914 + parent: 2 + - uid: 18398 + components: + - type: Transform + pos: -88.00727,160.28918 + parent: 2 +- proto: Dropper + entities: + - uid: 2784 + components: + - type: Transform + pos: 26.612978,14.501228 + parent: 2 + - uid: 22852 + components: + - type: Transform + pos: -24.649458,191.96136 + parent: 2 + - uid: 22853 + components: + - type: Transform + pos: -24.536978,192.08505 + parent: 2 + - uid: 22953 + components: + - type: Transform + pos: -11.626921,65.75831 + parent: 2 +- proto: EggplantSeeds + entities: + - uid: 14090 + components: + - type: Transform + pos: -10.293836,65.56047 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 969 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-1.5 + parent: 2 + - uid: 971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,2.5 + parent: 2 + - uid: 972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 2 + - uid: 980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,51.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-4.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,57.5 + parent: 2 + - uid: 4728 + components: + - type: Transform + pos: -20.5,167.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: 107.5,48.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + pos: 47.5,62.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: 60.5,62.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + pos: 76.5,63.5 + parent: 2 + - uid: 5223 + components: + - type: Transform + pos: 80.5,67.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,53.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: 95.5,59.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,47.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 108.5,63.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + pos: -119.5,50.5 + parent: 2 + - uid: 7467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,41.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,48.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,51.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,54.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,46.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,46.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + pos: 70.5,44.5 + parent: 2 + - uid: 9160 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 2 + - uid: 10094 + components: + - type: Transform + pos: -32.5,98.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + pos: -21.5,77.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + pos: -14.5,75.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + pos: -8.5,75.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,80.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,54.5 + parent: 2 + - uid: 11104 + components: + - type: Transform + pos: -34.5,101.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,165.5 + parent: 2 + - uid: 11496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,167.5 + parent: 2 + - uid: 11497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,182.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,99.5 + parent: 2 + - uid: 13948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-7.5 + parent: 2 + - uid: 15070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,182.5 + parent: 2 + - uid: 15073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,80.5 + parent: 2 + - uid: 17024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,103.5 + parent: 2 + - uid: 17076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,101.5 + parent: 2 + - uid: 17818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,60.5 + parent: 2 + - uid: 18961 + components: + - type: Transform + pos: -89.5,165.5 + parent: 2 + - uid: 19080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,162.5 + parent: 2 + - uid: 19783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,182.5 + parent: 2 + - uid: 19808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,157.5 + parent: 2 + - uid: 19815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,73.5 + parent: 2 + - uid: 20046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,179.5 + parent: 2 + - uid: 20052 + components: + - type: Transform + pos: -44.5,91.5 + parent: 2 + - uid: 20053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,73.5 + parent: 2 + - uid: 20888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,168.5 + parent: 2 + - uid: 27343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,187.5 + parent: 2 + - uid: 27344 + components: + - type: Transform + pos: -12.5,194.5 + parent: 2 + - uid: 27345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,198.5 + parent: 2 + - uid: 27346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,198.5 + parent: 2 + - uid: 27347 + components: + - type: Transform + pos: 0.5,205.5 + parent: 2 + - uid: 27348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,206.5 + parent: 2 + - uid: 27349 + components: + - type: Transform + pos: -66.5,153.5 + parent: 2 + - uid: 27350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,200.5 + parent: 2 + - uid: 27351 + components: + - type: Transform + pos: -30.5,202.5 + parent: 2 + - uid: 27352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,212.5 + parent: 2 + - uid: 27353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,201.5 + parent: 2 + - uid: 27354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,192.5 + parent: 2 + - uid: 27355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,190.5 + parent: 2 + - uid: 27356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,193.5 + parent: 2 + - uid: 27357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,192.5 + parent: 2 + - uid: 27358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,179.5 + parent: 2 + - uid: 27359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,156.5 + parent: 2 + - uid: 27360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,182.5 + parent: 2 + - uid: 27362 + components: + - type: Transform + pos: -5.5,171.5 + parent: 2 + - uid: 27363 + components: + - type: Transform + pos: -14.5,171.5 + parent: 2 + - uid: 27364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,167.5 + parent: 2 + - uid: 27365 + components: + - type: Transform + pos: -0.5,167.5 + parent: 2 + - uid: 27367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,168.5 + parent: 2 + - uid: 27368 + components: + - type: Transform + pos: 78.5,40.5 + parent: 2 + - uid: 27370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,32.5 + parent: 2 + - uid: 27372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,43.5 + parent: 2 + - uid: 27373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,85.5 + parent: 2 + - uid: 27374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 102.5,57.5 + parent: 2 + - uid: 27377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,52.5 + parent: 2 + - uid: 27380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-5.5 + parent: 2 + - uid: 27381 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - uid: 27382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,65.5 + parent: 2 + - uid: 27383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,65.5 + parent: 2 + - uid: 27384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,65.5 + parent: 2 + - uid: 27385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,173.5 + parent: 2 + - uid: 27399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,95.5 + parent: 2 + - uid: 27400 + components: + - type: Transform + pos: -57.5,91.5 + parent: 2 + - uid: 27401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,74.5 + parent: 2 + - uid: 27402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,81.5 + parent: 2 + - uid: 27403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,64.5 + parent: 2 + - uid: 27404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,64.5 + parent: 2 + - uid: 27405 + components: + - type: Transform + pos: -23.5,91.5 + parent: 2 + - uid: 27407 + components: + - type: Transform + pos: -20.5,79.5 + parent: 2 + - uid: 27408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,61.5 + parent: 2 + - uid: 27409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,65.5 + parent: 2 + - uid: 28594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,51.5 + parent: 2 + - uid: 28719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,48.5 + parent: 2 + - uid: 28721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,54.5 + parent: 2 + - uid: 28724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,43.5 + parent: 2 + - uid: 28748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 102.5,61.5 + parent: 2 + - uid: 28749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 112.5,57.5 + parent: 2 + - uid: 29556 + components: + - type: Transform + pos: -112.5,36.5 + parent: 2 + - uid: 29557 + components: + - type: Transform + pos: -108.5,36.5 + parent: 2 + - uid: 29558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,30.5 + parent: 2 + - uid: 31557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,21.5 + parent: 2 + - uid: 31573 + components: + - type: Transform + pos: -113.5,50.5 + parent: 2 + - uid: 32425 + components: + - type: Transform + pos: -91.5,43.5 + parent: 2 + - uid: 32427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,44.5 + parent: 2 + - uid: 32428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,45.5 + parent: 2 + - uid: 32429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,48.5 + parent: 2 + - uid: 33047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,48.5 + parent: 2 + - uid: 35880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,52.5 + parent: 2 + - uid: 36631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,103.5 + parent: 2 + - uid: 36664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,81.5 + parent: 2 + - uid: 36665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,67.5 + parent: 2 + - uid: 36666 + components: + - type: Transform + pos: -41.5,60.5 + parent: 2 + - uid: 36667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,65.5 + parent: 2 + - uid: 36668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,62.5 + parent: 2 + - uid: 36669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,63.5 + parent: 2 +- proto: EmergencyMedipen + entities: + - uid: 26844 + components: + - type: Transform + pos: 30.641424,190.37975 + parent: 2 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 18931 + components: + - type: Transform + pos: -96.15495,162.55803 + parent: 2 + - uid: 18932 + components: + - type: Transform + pos: -96.41366,162.58052 + parent: 2 + - uid: 18933 + components: + - type: Transform + pos: -96.627365,162.71545 + parent: 2 + - uid: 20507 + components: + - type: Transform + pos: -85.59206,174.62697 + parent: 2 +- proto: EmergencyRollerBed + entities: + - uid: 15209 + components: + - type: Transform + pos: -12.670204,167.66791 + parent: 2 + - uid: 22827 + components: + - type: Transform + pos: -16.58038,197.69203 + parent: 2 + - uid: 23248 + components: + - type: Transform + pos: -15.56806,197.69203 + parent: 2 + - uid: 23367 + components: + - type: Transform + pos: -14.536156,197.67957 + parent: 2 + - uid: 23368 + components: + - type: Transform + pos: -13.5125885,197.70206 + parent: 2 +- proto: Emitter + entities: + - uid: 9161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -140.5,20.5 + parent: 2 + - uid: 9162 + components: + - type: Transform + pos: -140.5,32.5 + parent: 2 + - uid: 9163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -138.5,30.5 + parent: 2 + - uid: 9166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -138.5,22.5 + parent: 2 + - uid: 19241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,148.5 + parent: 2 + - uid: 27339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -140.5,18.5 + parent: 2 +- proto: EmptyFlashlightLantern + entities: + - uid: 22034 + components: + - type: Transform + pos: -132.41412,91.54821 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 20904 + components: + - type: Transform + pos: -70.5,177.5 + parent: 2 +- proto: ExplosivesSignMed + entities: + - uid: 31453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,29.5 + parent: 2 +- proto: ExtinguisherCabinet + entities: + - uid: 17736 + components: + - type: Transform + pos: -127.5,104.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 2523 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,78.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: -23.5,100.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,85.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,189.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: -33.5,106.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: -79.5,92.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 73.5,45.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: 40.5,63.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: 62.5,63.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + pos: 84.5,63.5 + parent: 2 + - uid: 10301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,162.5 + parent: 2 + - uid: 10947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,73.5 + parent: 2 + - uid: 13417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,37.5 + parent: 2 + - uid: 13479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,97.5 + parent: 2 + - uid: 17167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,171.5 + parent: 2 + - uid: 18031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,201.5 + parent: 2 + - uid: 18262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,198.5 + parent: 2 + - uid: 24417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,45.5 + parent: 2 + - uid: 24485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,21.5 + parent: 2 + - uid: 25112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,60.5 + parent: 2 + - uid: 25113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,48.5 + parent: 2 + - uid: 25440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,80.5 + parent: 2 + - uid: 25444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,64.5 + parent: 2 + - uid: 25445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,71.5 + parent: 2 + - uid: 25447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,81.5 + parent: 2 + - uid: 25449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,88.5 + parent: 2 + - uid: 25450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,85.5 + parent: 2 + - uid: 25451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,88.5 + parent: 2 + - uid: 25490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,82.5 + parent: 2 + - uid: 25506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,67.5 + parent: 2 + - uid: 25535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,65.5 + parent: 2 + - uid: 25541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,72.5 + parent: 2 + - uid: 25557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,100.5 + parent: 2 + - uid: 25600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,92.5 + parent: 2 + - uid: 25636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,64.5 + parent: 2 + - uid: 25679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,76.5 + parent: 2 + - uid: 25680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,67.5 + parent: 2 + - uid: 25681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,80.5 + parent: 2 + - uid: 25682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,68.5 + parent: 2 + - uid: 26114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,68.5 + parent: 2 + - uid: 26115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,101.5 + parent: 2 + - uid: 26388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,41.5 + parent: 2 + - uid: 26390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 107.5,49.5 + parent: 2 + - uid: 26391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,56.5 + parent: 2 + - uid: 26392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 110.5,63.5 + parent: 2 + - uid: 26393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,181.5 + parent: 2 + - uid: 26394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,59.5 + parent: 2 + - uid: 26404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,182.5 + parent: 2 + - uid: 26405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,205.5 + parent: 2 + - uid: 26409 + components: + - type: Transform + pos: -6.5,168.5 + parent: 2 + - uid: 26412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,39.5 + parent: 2 + - uid: 26415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,154.5 + parent: 2 + - uid: 26421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,154.5 + parent: 2 + - uid: 26422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,171.5 + parent: 2 + - uid: 26423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,176.5 + parent: 2 + - uid: 26424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,178.5 + parent: 2 + - uid: 26429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,171.5 + parent: 2 + - uid: 26464 + components: + - type: Transform + pos: -82.5,48.5 + parent: 2 + - uid: 26465 + components: + - type: Transform + pos: -82.5,34.5 + parent: 2 + - uid: 26490 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - uid: 27100 + components: + - type: Transform + pos: -37.5,101.5 + parent: 2 + - uid: 37514 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 2 + - uid: 37537 + components: + - type: Transform + pos: -12.5,206.5 + parent: 2 + - uid: 37538 + components: + - type: Transform + pos: 15.5,193.5 + parent: 2 + - uid: 37539 + components: + - type: Transform + pos: -83.5,157.5 + parent: 2 + - uid: 37540 + components: + - type: Transform + pos: -93.5,149.5 + parent: 2 + - uid: 37543 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 37544 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 37546 + components: + - type: Transform + pos: 66.5,64.5 + parent: 2 + - uid: 37547 + components: + - type: Transform + pos: 55.5,60.5 + parent: 2 + - uid: 37549 + components: + - type: Transform + pos: 99.5,46.5 + parent: 2 + - uid: 37918 + components: + - type: Transform + pos: -72.5,92.5 + parent: 2 + - uid: 39234 + components: + - type: Transform + pos: -65.5,108.5 + parent: 2 + - uid: 43166 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 37842 +- proto: ExtinguisherCabinetOpen + entities: + - uid: 26425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,153.5 + parent: 2 +- proto: EZNutrientChemistryBottle + entities: + - uid: 8429 + components: + - type: Transform + pos: 49.638954,26.522976 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 10481 + components: + - type: Transform + pos: -18.5,84.5 + parent: 2 + - type: FaxMachine + name: HoP Fax + - uid: 14107 + components: + - type: Transform + pos: -76.5,75.5 + parent: 2 + - type: FaxMachine + name: Lawyer + - uid: 18002 + components: + - type: Transform + pos: 84.5,67.5 + parent: 2 + - type: FaxMachine + name: HoS Fax + - uid: 18607 + components: + - type: Transform + pos: -17.5,203.5 + parent: 2 + - type: FaxMachine + name: CMO Fax + - uid: 18641 + components: + - type: Transform + pos: -41.5,107.5 + parent: 2 + - type: FaxMachine + name: Bridge + - uid: 18644 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - type: FaxMachine + name: QM Fax + - uid: 19952 + components: + - type: Transform + pos: -88.5,160.5 + parent: 2 + - type: FaxMachine + name: RD Fax + - uid: 27626 + components: + - type: Transform + pos: -115.5,56.5 + parent: 2 + - type: FaxMachine + name: CE Fax +- proto: FaxMachineCaptain + entities: + - uid: 4580 + components: + - type: Transform + pos: -34.5,101.5 + parent: 2 + - type: FaxMachine + name: Captain Fax +- proto: FenceMetalBroken + entities: + - uid: 26037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,82.5 + parent: 2 +- proto: FenceMetalCorner + entities: + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,1.5 + parent: 2 + - uid: 4547 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - uid: 11275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -138.5,46.5 + parent: 2 + - uid: 20177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -138.5,53.5 + parent: 2 + - uid: 21436 + components: + - type: Transform + pos: -136.5,42.5 + parent: 2 + - uid: 21781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -138.5,42.5 + parent: 2 + - uid: 22477 + components: + - type: Transform + pos: -123.5,81.5 + parent: 2 + - uid: 22955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,46.5 + parent: 2 + - uid: 30153 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 + - uid: 30510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,1.5 + parent: 2 + - uid: 32877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,6.5 + parent: 2 + - uid: 33193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,10.5 + parent: 2 +- proto: FenceMetalGate + entities: + - uid: 1288 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 5711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -130.5,39.5 + parent: 2 + - uid: 19943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,10.5 + parent: 2 + - uid: 21449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,16.5 + parent: 2 +- proto: FenceMetalStraight + entities: + - uid: 446 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -133.5,53.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,53.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: -46.5,5.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -137.5,46.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -137.5,42.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,45.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 + - uid: 9084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,188.5 + parent: 2 + - uid: 11276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -137.5,53.5 + parent: 2 + - uid: 11277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,43.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + pos: -130.5,40.5 + parent: 2 + - uid: 17132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,19.5 + parent: 2 + - uid: 17542 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 18907 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 19277 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - uid: 19336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,16.5 + parent: 2 + - uid: 19337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,16.5 + parent: 2 + - uid: 19569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,10.5 + parent: 2 + - uid: 19640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,10.5 + parent: 2 + - uid: 19658 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 19659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,10.5 + parent: 2 + - uid: 20350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -138.5,52.5 + parent: 2 + - uid: 21448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -122.5,16.5 + parent: 2 + - uid: 21604 + components: + - type: Transform + pos: -130.5,38.5 + parent: 2 + - uid: 22296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,1.5 + parent: 2 + - uid: 22922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,196.5 + parent: 2 + - uid: 22923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,196.5 + parent: 2 + - uid: 22963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,191.5 + parent: 2 + - uid: 23212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -132.5,53.5 + parent: 2 + - uid: 23215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -138.5,37.5 + parent: 2 + - uid: 23422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,200.5 + parent: 2 + - uid: 23424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,200.5 + parent: 2 + - uid: 23454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,2.5 + parent: 2 + - uid: 23468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,197.5 + parent: 2 + - uid: 23940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -138.5,38.5 + parent: 2 + - uid: 23989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,44.5 + parent: 2 + - uid: 25047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,3.5 + parent: 2 + - uid: 25231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,191.5 + parent: 2 + - uid: 25257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,4.5 + parent: 2 + - uid: 26040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,81.5 + parent: 2 + - uid: 26597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,5.5 + parent: 2 + - uid: 29340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -135.5,53.5 + parent: 2 + - uid: 29738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,19.5 + parent: 2 + - uid: 29739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,19.5 + parent: 2 + - uid: 30081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -134.5,53.5 + parent: 2 + - uid: 32270 + components: + - type: Transform + pos: -82.5,138.5 + parent: 2 + - uid: 32272 + components: + - type: Transform + pos: -82.5,137.5 + parent: 2 + - uid: 32878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,10.5 + parent: 2 + - uid: 33192 + components: + - type: Transform + pos: -46.5,2.5 + parent: 2 + - uid: 43346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,16.5 + parent: 2 + - uid: 43358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,16.5 + parent: 2 + - uid: 43374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -123.5,16.5 + parent: 2 +- proto: filingCabinetDrawer + entities: + - uid: 4936 + components: + - type: Transform + pos: 97.5,53.5 + parent: 2 +- proto: filingCabinetDrawerRandom + entities: + - uid: 10697 + components: + - type: Transform + pos: -3.5,86.5 + parent: 2 + - uid: 14738 + components: + - type: Transform + pos: -78.5,74.5 + parent: 2 + - uid: 20377 + components: + - type: Transform + pos: -85.5,165.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 34590 + components: + - type: Transform + pos: -128.5,87.5 + parent: 2 +- proto: filingCabinetTallRandom + entities: + - uid: 34589 + components: + - type: Transform + pos: -127.5,87.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 8595 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 11049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,92.5 + parent: 2 + - type: DeviceList + devices: + - 16548 + - 16549 + - 16550 + - 3656 + - 3934 + - 4165 + - 10722 + - uid: 11550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,92.5 + parent: 2 + - type: DeviceList + devices: + - 16554 + - 16555 + - 16556 + - 36876 + - 10353 + - 10110 + - 10085 + - 11651 + - 11650 + - 11649 + - 11654 + - 11655 + - 11656 + - 36479 + - 36480 + - 36481 + - 36871 + - 16548 + - 16549 + - 16550 + - uid: 11639 + components: + - type: Transform + pos: -5.5,168.5 + parent: 2 + - type: DeviceList + devices: + - 4326 + - 36372 + - 36370 + - 36401 + - uid: 15815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,174.5 + parent: 2 + - type: DeviceList + devices: + - 21018 + - 21017 + - 21011 + - 21010 + - 21009 + - 21020 + - 21024 + - 21021 + - 21022 + - uid: 17164 + components: + - type: Transform + pos: -68.5,76.5 + parent: 2 + - type: DeviceList + devices: + - 20815 + - 36941 + - 16560 + - 16558 + - 16557 + - 36940 + - 19718 + - 19717 + - 18957 + - uid: 17460 + components: + - type: Transform + pos: -113.5,51.5 + parent: 2 + - type: DeviceList + devices: + - 19243 + - 19516 + - uid: 17597 + components: + - type: Transform + pos: -106.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 19101 + - 23260 + - 27980 + - 29674 + - uid: 17600 + components: + - type: Transform + pos: -100.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 19515 + - 19514 + - 28923 + - 28924 + - 19512 + - 19508 + - 19509 + - 26475 + - 29675 + - 5999 + - 29674 + - 27980 + - 26476 + - uid: 17602 + components: + - type: Transform + pos: -71.5,68.5 + parent: 2 + - uid: 17604 + components: + - type: Transform + pos: -94.5,49.5 + parent: 2 + - type: DeviceList + devices: + - 19508 + - 19509 + - 26474 + - 29679 + - uid: 17734 + components: + - type: Transform + pos: -87.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 26473 + - 26476 + - 29675 + - 26475 + - 26474 + - 29679 + - 28097 + - 28099 + - 28100 + - 29688 + - 29687 + - 29686 + - 29681 + - 29683 + - 29684 + - uid: 17739 + components: + - type: Transform + pos: -81.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 29681 + - 29683 + - 29684 + - 29686 + - 29687 + - 29688 + - uid: 17870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,92.5 + parent: 2 + - type: DeviceList + devices: + - 20231 + - 24213 + - 17535 + - 17536 + - 16556 + - 16555 + - 16554 + - 16557 + - 16558 + - 16560 + - 21078 + - 24210 + - 24211 + - uid: 17921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,81.5 + parent: 2 + - type: DeviceList + devices: + - 24212 + - 24211 + - 24210 + - 21078 + - uid: 18095 + components: + - type: Transform + pos: 68.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 6722 + - 6723 + - 6724 + - 3896 + - 3894 + - 271 + - 6721 + - 6715 + - 4469 + - 4463 + - 4464 + - 4461 + - 4462 + - 7042 + - uid: 18116 + components: + - type: Transform + pos: 60.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 6722 + - 6723 + - 6724 + - uid: 18433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 5061 + - 8636 + - 4439 + - 11656 + - 11655 + - 11654 + - 11649 + - 11650 + - 11651 + - 11577 + - 11567 + - 11562 + - 4597 + - 1632 + - 1633 + - uid: 18444 + components: + - type: Transform + pos: 85.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 6715 + - 7042 + - 6721 + - 5106 + - 5107 + - 5108 + - 5109 + - uid: 18448 + components: + - type: Transform + pos: 91.5,54.5 + parent: 2 + - type: DeviceList + devices: + - 5094 + - 5095 + - 5096 + - 5100 + - 5101 + - 5102 + - 6850 + - 5106 + - 5107 + - 5108 + - 5109 + - uid: 18458 + components: + - type: Transform + pos: 103.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 6841 + - 6840 + - 6839 + - 6842 + - 5102 + - 5101 + - 5100 + - uid: 18475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,105.5 + parent: 2 + - type: DeviceList + devices: + - 36885 + - 36880 + - 36879 + - 36878 + - uid: 18566 + components: + - type: Transform + pos: 101.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 5094 + - 5095 + - 5096 + - 6846 + - 6847 + - 6848 + - 6849 + - uid: 18593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,105.5 + parent: 2 + - type: DeviceList + devices: + - 36885 + - uid: 19523 + components: + - type: Transform + pos: 69.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 20345 + - 20347 + - 20348 + - 20349 + - 30093 + - 20056 + - 20076 + - 20174 + - 20055 + - 20098 + - 4225 + - 11991 + - 6749 + - uid: 21193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,101.5 + parent: 2 + - type: DeviceList + devices: + - 22061 + - 36880 + - 36879 + - 36878 + - 36876 + - uid: 22726 + components: + - type: Transform + pos: 67.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 20345 + - 20347 + - 20348 + - 20349 + - 30093 + - 20056 + - 20076 + - 20174 + - 20055 + - 20098 + - 4223 + - 4224 + - uid: 23152 + components: + - type: Transform + pos: 72.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 4458 + - 10998 + - 4812 + - 4811 + - 4807 + - 3576 + - 11991 + - uid: 23153 + components: + - type: Transform + pos: 61.5,63.5 + parent: 2 + - uid: 25318 + components: + - type: Transform + pos: 74.5,64.5 + parent: 2 + - type: DeviceList + devices: + - 4812 + - 4811 + - 4807 + - 6827 + - 6824 + - uid: 26540 + components: + - type: Transform + pos: 83.5,64.5 + parent: 2 + - type: DeviceList + devices: + - 6827 + - 4815 + - 4817 + - uid: 26547 + components: + - type: Transform + pos: 51.5,63.5 + parent: 2 + - type: DeviceList + devices: + - 6873 + - 6874 + - 3348 + - 6877 + - 6824 + - uid: 26553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,76.5 + parent: 2 + - type: DeviceList + devices: + - 10722 + - 3656 + - 3934 + - 4165 + - 13118 + - 13117 + - 13116 + - 10715 + - 10725 + - 10724 + - 27256 + - 26867 + - 10766 + - 10778 + - 36899 + - uid: 26855 + components: + - type: Transform + pos: 45.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 6873 + - 6874 + - 3348 + - 5192 + - uid: 27313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 13118 + - 13117 + - 13116 + - 36915 + - 36916 + - 12941 + - 12942 + - 12943 + - 12944 + - 12945 + - 12939 + - 36917 + - 36912 + - uid: 27498 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 864 + - 863 + - 53 + - 4648 + - 860 + - 2470 + - 11305 + - 5484 + - 962 + - 961 + - 960 + - 866 + - uid: 27522 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 860 + - 4648 + - 53 + - 863 + - 864 + - 26492 + - 26494 + - 34801 + - 958 + - uid: 27525 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 960 + - 961 + - 962 + - 958 + - 955 + - 956 + - 959 + - 1607 + - 963 + - 1606 + - 1713 + - 1712 + - 1711 + - 1710 + - 1709 + - 1708 + - 1707 + - 1906 + - 1907 + - 1908 + - uid: 28320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,69.5 + parent: 2 + - type: DeviceList + devices: + - 35949 + - 32435 + - uid: 28322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,78.5 + parent: 2 + - type: DeviceList + devices: + - 11072 + - 10727 + - 10715 + - 10725 + - 10724 + - 10718 + - 10719 + - 10720 + - 10764 + - 2986 + - uid: 28324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,69.5 + parent: 2 + - type: DeviceList + devices: + - 11605 + - 34142 + - 35935 + - 17498 + - 16679 + - 11608 + - 11706 + - 32435 + - 35944 + - 14851 + - 35945 + - 11753 + - uid: 28332 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 36309 + - 1713 + - 1712 + - uid: 28377 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 1606 + - 963 + - 1607 + - 956 + - 955 + - 34801 + - 964 + - uid: 28378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,69.5 + parent: 2 + - type: DeviceList + devices: + - 34142 + - 11605 + - 35935 + - 10766 + - 12951 + - 36912 + - uid: 28447 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 1707 + - 1708 + - 1709 + - 1710 + - 1711 + - 1706 + - 1705 + - 1704 + - 1703 + - 1702 + - 1903 + - 1904 + - 1905 + - 1900 + - 1901 + - 1902 + - 1715 + - 1717 + - uid: 28450 + components: + - type: Transform + pos: -2.5,83.5 + parent: 2 + - type: DeviceList + devices: + - 2986 + - 10723 + - uid: 28520 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 1715 + - 1717 + - uid: 29325 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 1902 + - 1901 + - 1900 + - 1903 + - 1904 + - 1905 + - 1906 + - 1907 + - 1908 + - 866 + - uid: 29710 + components: + - type: Transform + pos: -18.5,204.5 + parent: 2 + - type: DeviceList + devices: + - 34428 + - 34429 + - uid: 30888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,167.5 + parent: 2 + - type: DeviceList + devices: + - 36408 + - 36409 + - 36410 + - 36411 + - 18682 + - 20997 + - 22405 + - 21003 + - 21004 + - 21005 + - uid: 30898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,161.5 + parent: 2 + - type: DeviceList + devices: + - 22036 + - 22037 + - 22038 + - 1295 + - 14245 + - 14168 + - 19475 + - 1298 + - 14250 + - 15084 + - 36411 + - 36410 + - 36409 + - 36408 + - 36412 + - uid: 31106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,179.5 + parent: 2 + - type: DeviceList + devices: + - 20997 + - 22405 + - uid: 32952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,174.5 + parent: 2 + - type: DeviceList + devices: + - 21009 + - 21010 + - 21011 + - 18917 + - 18947 + - 17800 + - 21005 + - 21004 + - 21003 + - 21000 + - 21001 + - 21002 + - uid: 33091 + components: + - type: Transform + pos: -83.5,176.5 + parent: 2 + - type: DeviceList + devices: + - 21000 + - 21001 + - 21002 + - uid: 33095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,180.5 + parent: 2 + - type: DeviceList + devices: + - 21018 + - 21017 + - uid: 33097 + components: + - type: Transform + pos: -84.5,157.5 + parent: 2 + - type: DeviceList + devices: + - 21028 + - 21029 + - uid: 33103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,165.5 + parent: 2 + - type: DeviceList + devices: + - 36429 + - 36428 + - 21022 + - 21021 + - 21029 + - uid: 33104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,154.5 + parent: 2 + - type: DeviceList + devices: + - 1295 + - 14245 + - uid: 37359 + components: + - type: Transform + pos: -108.5,65.5 + parent: 2 + - type: DeviceList + devices: + - 19011 + - 19008 + - 20771 + - 20960 +- proto: FireAxeCabinetFilled + entities: + - uid: 12440 + components: + - type: Transform + pos: -107.5,29.5 + parent: 2 + - uid: 37773 + components: + - type: Transform + pos: -38.5,102.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 37545 + components: + - type: Transform + pos: -103.68455,40.698982 + parent: 2 +- proto: Firelock + entities: + - uid: 53 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,33.5 + parent: 2 + - uid: 638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,95.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,99.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: -67.5,153.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: -77.5,157.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-3.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,5.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: -6.5,83.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + pos: 51.5,60.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + pos: 79.5,42.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: 71.5,56.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + pos: -22.5,78.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,34.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,35.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + pos: -23.5,78.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,54.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: -24.5,78.5 + parent: 2 + - uid: 4223 + components: + - type: Transform + pos: 63.5,51.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + pos: 63.5,54.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + pos: 63.5,48.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,170.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: 76.5,56.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + pos: 77.5,56.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + pos: 75.5,57.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: 75.5,41.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: 76.5,41.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: 66.5,41.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + pos: 67.5,41.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: 71.5,45.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: 71.5,42.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,1.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + pos: 67.5,58.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: 70.5,64.5 + parent: 2 + - uid: 4811 + components: + - type: Transform + pos: 71.5,64.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: 72.5,64.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + pos: 82.5,64.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: 86.5,62.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,48.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,61.5 + parent: 2 + - uid: 5484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,5.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,38.5 + parent: 2 + - uid: 6333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,51.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + pos: 78.5,38.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + pos: 78.5,40.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + pos: 64.5,38.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + pos: 64.5,39.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + pos: 64.5,40.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + pos: 64.5,66.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: 78.5,66.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + pos: 94.5,56.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + pos: 95.5,56.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + pos: 96.5,56.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: 97.5,56.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + pos: 94.5,50.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + pos: 95.5,50.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: 96.5,50.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: 97.5,50.5 + parent: 2 + - uid: 6850 + components: + - type: Transform + pos: 91.5,53.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + pos: 51.5,62.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + pos: 51.5,61.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + pos: 53.5,58.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + pos: 78.5,39.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,161.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,161.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,31.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,27.5 + parent: 2 + - uid: 9455 + components: + - type: Transform + pos: -67.5,152.5 + parent: 2 + - uid: 9877 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + pos: -13.5,73.5 + parent: 2 + - uid: 10716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,80.5 + parent: 2 + - uid: 10718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,76.5 + parent: 2 + - uid: 10719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,76.5 + parent: 2 + - uid: 10720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,76.5 + parent: 2 + - uid: 10722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,82.5 + parent: 2 + - uid: 10723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,87.5 + parent: 2 + - uid: 10724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,75.5 + parent: 2 + - uid: 10725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,74.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,71.5 + parent: 2 + - uid: 10764 + components: + - type: Transform + pos: -4.5,81.5 + parent: 2 + - uid: 10766 + components: + - type: Transform + pos: -15.5,72.5 + parent: 2 + - uid: 10778 + components: + - type: Transform + pos: -16.5,72.5 + parent: 2 + - uid: 10998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,58.5 + parent: 2 + - uid: 11072 + components: + - type: Transform + pos: -4.5,77.5 + parent: 2 + - uid: 11305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,5.5 + parent: 2 + - uid: 11649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,81.5 + parent: 2 + - uid: 11650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,81.5 + parent: 2 + - uid: 11651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,81.5 + parent: 2 + - uid: 11654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,81.5 + parent: 2 + - uid: 11655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,81.5 + parent: 2 + - uid: 11656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,81.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,42.5 + parent: 2 + - uid: 13116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,72.5 + parent: 2 + - uid: 13117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,72.5 + parent: 2 + - uid: 13118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,72.5 + parent: 2 + - uid: 14168 + components: + - type: Transform + pos: -72.5,150.5 + parent: 2 + - uid: 14245 + components: + - type: Transform + pos: -67.5,151.5 + parent: 2 + - uid: 14250 + components: + - type: Transform + pos: -77.5,158.5 + parent: 2 + - uid: 14494 + components: + - type: Transform + pos: 67.5,57.5 + parent: 2 + - uid: 14896 + components: + - type: Transform + pos: -69.5,72.5 + parent: 2 + - uid: 15084 + components: + - type: Transform + pos: -77.5,159.5 + parent: 2 + - uid: 16548 + components: + - type: Transform + pos: -25.5,89.5 + parent: 2 + - uid: 16549 + components: + - type: Transform + pos: -25.5,90.5 + parent: 2 + - uid: 16550 + components: + - type: Transform + pos: -25.5,91.5 + parent: 2 + - uid: 16554 + components: + - type: Transform + pos: -55.5,91.5 + parent: 2 + - uid: 16555 + components: + - type: Transform + pos: -55.5,90.5 + parent: 2 + - uid: 16556 + components: + - type: Transform + pos: -55.5,89.5 + parent: 2 + - uid: 16557 + components: + - type: Transform + pos: -56.5,77.5 + parent: 2 + - uid: 16558 + components: + - type: Transform + pos: -57.5,77.5 + parent: 2 + - uid: 16560 + components: + - type: Transform + pos: -58.5,77.5 + parent: 2 + - uid: 17535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,108.5 + parent: 2 + - uid: 17536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,108.5 + parent: 2 + - uid: 17800 + components: + - type: Transform + pos: -80.5,166.5 + parent: 2 + - uid: 18086 + components: + - type: Transform + pos: -90.5,35.5 + parent: 2 + - uid: 18682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,172.5 + parent: 2 + - uid: 18728 + components: + - type: Transform + pos: -8.5,172.5 + parent: 2 + - uid: 18917 + components: + - type: Transform + pos: -79.5,166.5 + parent: 2 + - uid: 18947 + components: + - type: Transform + pos: -78.5,166.5 + parent: 2 + - uid: 18957 + components: + - type: Transform + pos: -60.5,72.5 + parent: 2 + - uid: 19008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,61.5 + parent: 2 + - uid: 19011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,61.5 + parent: 2 + - uid: 19243 + components: + - type: Transform + pos: -111.5,47.5 + parent: 2 + - uid: 19475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,156.5 + parent: 2 + - uid: 19508 + components: + - type: Transform + pos: -96.5,47.5 + parent: 2 + - uid: 19509 + components: + - type: Transform + pos: -96.5,46.5 + parent: 2 + - uid: 19512 + components: + - type: Transform + pos: -99.5,52.5 + parent: 2 + - uid: 19513 + components: + - type: Transform + pos: -110.5,37.5 + parent: 2 + - uid: 19514 + components: + - type: Transform + pos: -104.5,44.5 + parent: 2 + - uid: 19515 + components: + - type: Transform + pos: -103.5,44.5 + parent: 2 + - uid: 19516 + components: + - type: Transform + pos: -111.5,46.5 + parent: 2 + - uid: 19607 + components: + - type: Transform + pos: -65.5,70.5 + parent: 2 + - uid: 19638 + components: + - type: Transform + pos: 47.5,59.5 + parent: 2 + - uid: 19717 + components: + - type: Transform + pos: -59.5,72.5 + parent: 2 + - uid: 19718 + components: + - type: Transform + pos: -58.5,72.5 + parent: 2 + - uid: 20231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,89.5 + parent: 2 + - uid: 20771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,65.5 + parent: 2 + - uid: 20815 + components: + - type: Transform + pos: -69.5,76.5 + parent: 2 + - uid: 20960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,65.5 + parent: 2 + - uid: 20997 + components: + - type: Transform + pos: -70.5,173.5 + parent: 2 + - uid: 21000 + components: + - type: Transform + pos: -78.5,176.5 + parent: 2 + - uid: 21001 + components: + - type: Transform + pos: -79.5,176.5 + parent: 2 + - uid: 21002 + components: + - type: Transform + pos: -80.5,176.5 + parent: 2 + - uid: 21003 + components: + - type: Transform + pos: -74.5,172.5 + parent: 2 + - uid: 21004 + components: + - type: Transform + pos: -74.5,171.5 + parent: 2 + - uid: 21005 + components: + - type: Transform + pos: -74.5,170.5 + parent: 2 + - uid: 21009 + components: + - type: Transform + pos: -84.5,170.5 + parent: 2 + - uid: 21010 + components: + - type: Transform + pos: -84.5,171.5 + parent: 2 + - uid: 21011 + components: + - type: Transform + pos: -84.5,172.5 + parent: 2 + - uid: 21017 + components: + - type: Transform + pos: -87.5,176.5 + parent: 2 + - uid: 21018 + components: + - type: Transform + pos: -88.5,176.5 + parent: 2 + - uid: 21020 + components: + - type: Transform + pos: -92.5,171.5 + parent: 2 + - uid: 21021 + components: + - type: Transform + pos: -88.5,166.5 + parent: 2 + - uid: 21022 + components: + - type: Transform + pos: -87.5,166.5 + parent: 2 + - uid: 21024 + components: + - type: Transform + pos: -97.5,166.5 + parent: 2 + - uid: 21028 + components: + - type: Transform + pos: -82.5,159.5 + parent: 2 + - uid: 21029 + components: + - type: Transform + pos: -91.5,161.5 + parent: 2 + - uid: 21030 + components: + - type: Transform + pos: -80.5,156.5 + parent: 2 + - uid: 21031 + components: + - type: Transform + pos: -80.5,153.5 + parent: 2 + - uid: 21032 + components: + - type: Transform + pos: -97.5,154.5 + parent: 2 + - uid: 21077 + components: + - type: Transform + pos: -52.5,66.5 + parent: 2 + - uid: 21078 + components: + - type: Transform + pos: -59.5,81.5 + parent: 2 + - uid: 22036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,158.5 + parent: 2 + - uid: 22037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,157.5 + parent: 2 + - uid: 22038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,156.5 + parent: 2 + - uid: 22061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,99.5 + parent: 2 + - uid: 22370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,161.5 + parent: 2 + - uid: 22405 + components: + - type: Transform + pos: -71.5,173.5 + parent: 2 + - uid: 22556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,187.5 + parent: 2 + - uid: 24210 + components: + - type: Transform + pos: -59.5,82.5 + parent: 2 + - uid: 24211 + components: + - type: Transform + pos: -59.5,83.5 + parent: 2 + - uid: 24212 + components: + - type: Transform + pos: -67.5,87.5 + parent: 2 + - uid: 24213 + components: + - type: Transform + pos: -69.5,95.5 + parent: 2 + - uid: 25297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,174.5 + parent: 2 + - uid: 26473 + components: + - type: Transform + pos: -94.5,38.5 + parent: 2 + - uid: 26474 + components: + - type: Transform + pos: -93.5,44.5 + parent: 2 + - uid: 26475 + components: + - type: Transform + pos: -95.5,42.5 + parent: 2 + - uid: 26476 + components: + - type: Transform + pos: -95.5,40.5 + parent: 2 + - uid: 26492 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 26494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 2 + - uid: 27980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,38.5 + parent: 2 + - uid: 28097 + components: + - type: Transform + pos: -87.5,42.5 + parent: 2 + - uid: 28099 + components: + - type: Transform + pos: -87.5,41.5 + parent: 2 + - uid: 28100 + components: + - type: Transform + pos: -87.5,40.5 + parent: 2 + - uid: 28923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,46.5 + parent: 2 + - uid: 28924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,47.5 + parent: 2 + - uid: 29674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,38.5 + parent: 2 + - uid: 29675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,41.5 + parent: 2 + - uid: 29679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,44.5 + parent: 2 + - uid: 29681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,37.5 + parent: 2 + - uid: 29683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,36.5 + parent: 2 + - uid: 29684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,35.5 + parent: 2 + - uid: 29686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,45.5 + parent: 2 + - uid: 29687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,46.5 + parent: 2 + - uid: 29688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,47.5 + parent: 2 + - uid: 34417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,185.5 + parent: 2 + - uid: 34418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,185.5 + parent: 2 + - uid: 34419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,180.5 + parent: 2 + - uid: 34422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,198.5 + parent: 2 + - uid: 34423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,198.5 + parent: 2 + - uid: 34427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,201.5 + parent: 2 + - uid: 34428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,204.5 + parent: 2 + - uid: 34429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,205.5 + parent: 2 + - uid: 34430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,203.5 + parent: 2 + - uid: 34431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,204.5 + parent: 2 + - uid: 34444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,192.5 + parent: 2 + - uid: 34445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,191.5 + parent: 2 + - uid: 34446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,192.5 + parent: 2 + - uid: 34447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,191.5 + parent: 2 + - uid: 34455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,209.5 + parent: 2 + - uid: 34801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-4.5 + parent: 2 + - uid: 36309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 2 + - uid: 36327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,192.5 + parent: 2 + - uid: 36328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,193.5 + parent: 2 + - uid: 36329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,194.5 + parent: 2 + - uid: 36330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,195.5 + parent: 2 + - uid: 36331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,195.5 + parent: 2 + - uid: 36332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,195.5 + parent: 2 + - uid: 36333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,195.5 + parent: 2 + - uid: 36334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,188.5 + parent: 2 + - uid: 36340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,196.5 + parent: 2 + - uid: 36341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,197.5 + parent: 2 + - uid: 36370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,168.5 + parent: 2 + - uid: 36372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,166.5 + parent: 2 + - uid: 36401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,168.5 + parent: 2 + - uid: 36408 + components: + - type: Transform + pos: -69.5,166.5 + parent: 2 + - uid: 36409 + components: + - type: Transform + pos: -70.5,166.5 + parent: 2 + - uid: 36410 + components: + - type: Transform + pos: -71.5,166.5 + parent: 2 + - uid: 36411 + components: + - type: Transform + pos: -72.5,166.5 + parent: 2 + - uid: 36412 + components: + - type: Transform + pos: -67.5,162.5 + parent: 2 + - uid: 36428 + components: + - type: Transform + pos: -81.5,163.5 + parent: 2 + - uid: 36429 + components: + - type: Transform + pos: -81.5,164.5 + parent: 2 + - uid: 36871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,88.5 + parent: 2 + - uid: 36872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,88.5 + parent: 2 + - uid: 36876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,93.5 + parent: 2 + - uid: 36878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,102.5 + parent: 2 + - uid: 36879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,102.5 + parent: 2 + - uid: 36880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,102.5 + parent: 2 + - uid: 36885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,104.5 + parent: 2 + - uid: 36899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,76.5 + parent: 2 + - uid: 36912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,66.5 + parent: 2 + - uid: 36915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,69.5 + parent: 2 + - uid: 36916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,66.5 + parent: 2 + - uid: 36917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,64.5 + parent: 2 + - uid: 36921 + components: + - type: Transform + pos: -34.5,62.5 + parent: 2 + - uid: 36934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,62.5 + parent: 2 + - uid: 36936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,69.5 + parent: 2 + - uid: 36940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,75.5 + parent: 2 + - uid: 36941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,74.5 + parent: 2 + - uid: 38478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,189.5 + parent: 2 + - uid: 42971 + components: + - type: Transform + pos: 56.5,51.5 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 1632 + components: + - type: Transform + pos: -40.5,71.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: -39.5,71.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,78.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + pos: -41.5,71.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,76.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,49.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,48.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,47.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,59.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,58.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,57.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,77.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,84.5 + parent: 2 + - uid: 10110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,85.5 + parent: 2 + - uid: 10353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,86.5 + parent: 2 + - uid: 11562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,76.5 + parent: 2 + - uid: 11567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,77.5 + parent: 2 + - uid: 11577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,78.5 + parent: 2 + - uid: 11753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,63.5 + parent: 2 + - uid: 12939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,64.5 + parent: 2 + - uid: 12941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,64.5 + parent: 2 + - uid: 12942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,64.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,64.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,64.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,64.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,63.5 + parent: 2 + - uid: 14851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,61.5 + parent: 2 + - uid: 26867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,78.5 + parent: 2 + - uid: 27256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,78.5 + parent: 2 + - uid: 35702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,63.5 + parent: 2 + - uid: 35944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,60.5 + parent: 2 + - uid: 35945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,62.5 + parent: 2 + - uid: 36479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,84.5 + parent: 2 + - uid: 36480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,85.5 + parent: 2 + - uid: 36481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,86.5 + parent: 2 +- proto: FirelockElectronics + entities: + - uid: 28001 + components: + - type: Transform + pos: -95.33828,48.634567 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 5106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,41.5 + parent: 2 + - uid: 5107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,41.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,41.5 + parent: 2 + - uid: 5109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,41.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,46.5 + parent: 2 + - uid: 11605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,67.5 + parent: 2 + - uid: 11608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,70.5 + parent: 2 + - uid: 11706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,70.5 + parent: 2 + - uid: 11991 + components: + - type: Transform + pos: 71.5,50.5 + parent: 2 + - uid: 16679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,70.5 + parent: 2 + - uid: 17498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,70.5 + parent: 2 + - uid: 17533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,164.5 + parent: 2 + - uid: 19101 + components: + - type: Transform + pos: -104.5,29.5 + parent: 2 + - uid: 20055 + components: + - type: Transform + pos: 77.5,50.5 + parent: 2 + - uid: 20056 + components: + - type: Transform + pos: 74.5,50.5 + parent: 2 + - uid: 20076 + components: + - type: Transform + pos: 75.5,50.5 + parent: 2 + - uid: 20098 + components: + - type: Transform + pos: 76.5,50.5 + parent: 2 + - uid: 20174 + components: + - type: Transform + pos: 78.5,50.5 + parent: 2 + - uid: 20345 + components: + - type: Transform + pos: 68.5,50.5 + parent: 2 + - uid: 20346 + components: + - type: Transform + pos: 68.5,50.5 + parent: 2 + - uid: 20347 + components: + - type: Transform + pos: 67.5,50.5 + parent: 2 + - uid: 20348 + components: + - type: Transform + pos: 66.5,50.5 + parent: 2 + - uid: 20349 + components: + - type: Transform + pos: 65.5,50.5 + parent: 2 + - uid: 23219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,165.5 + parent: 2 + - uid: 23260 + components: + - type: Transform + pos: -103.5,29.5 + parent: 2 + - uid: 25777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,170.5 + parent: 2 + - uid: 30093 + components: + - type: Transform + pos: 64.5,50.5 + parent: 2 + - uid: 32435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,65.5 + parent: 2 + - uid: 34142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,68.5 + parent: 2 + - uid: 35935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,66.5 + parent: 2 + - uid: 35949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,70.5 + parent: 2 + - uid: 39423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,169.5 + parent: 2 + - uid: 39424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,168.5 + parent: 2 +- proto: Fireplace + entities: + - uid: 7286 + components: + - type: Transform + pos: -36.5,101.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: -33.5,60.5 + parent: 2 + - uid: 11074 + components: + - type: Transform + pos: -1.5,78.5 + parent: 2 + - uid: 14316 + components: + - type: Transform + pos: -72.5,106.5 + parent: 2 + - uid: 15614 + components: + - type: Transform + pos: -73.5,96.5 + parent: 2 + - uid: 22608 + components: + - type: Transform + pos: -5.5,181.5 + parent: 2 + - uid: 23061 + components: + - type: Transform + pos: -17.5,180.5 + parent: 2 + - uid: 23301 + components: + - type: Transform + pos: -21.5,206.5 + parent: 2 + - uid: 36569 + components: + - type: Transform + pos: -24.5,101.5 + parent: 2 +- proto: Flare + entities: + - uid: 28703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.7247,48.684387 + parent: 2 + - uid: 28704 + components: + - type: Transform + pos: -120.17733,68.41948 + parent: 2 + - uid: 29722 + components: + - type: Transform + pos: -111.27843,54.41765 + parent: 2 +- proto: Flash + entities: + - uid: 12236 + components: + - type: Transform + pos: -39.678185,79.58587 + parent: 2 + - uid: 13585 + components: + - type: Transform + pos: -43.23664,109.5852 + parent: 2 + - uid: 22130 + components: + - type: Transform + pos: -75.31403,153.65799 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 720 + components: + - type: Transform + pos: -50.62579,4.651352 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: -29.706877,-5.368514 + parent: 2 + - uid: 13657 + components: + - type: Transform + pos: -132.44693,46.649757 + parent: 2 + - uid: 17160 + components: + - type: Transform + pos: -88.62172,79.75521 + parent: 2 + - uid: 24103 + components: + - type: Transform + pos: 5.370529,205.52606 + parent: 2 + - uid: 24104 + components: + - type: Transform + pos: 5.6067367,205.62726 + parent: 2 + - uid: 24190 + components: + - type: Transform + pos: 23.567406,185.46478 + parent: 2 + - uid: 28011 + components: + - type: Transform + pos: -94.449684,48.57584 + parent: 2 + - uid: 34518 + components: + - type: Transform + pos: -31.63147,182.77422 + parent: 2 +- proto: FlashlightSeclite + entities: + - uid: 4739 + components: + - type: Transform + pos: 85.53219,58.708096 + parent: 2 +- proto: Floodlight + entities: + - uid: 24806 + components: + - type: Transform + pos: -101.45498,20.518616 + parent: 2 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 24807 +- proto: FloodlightBroken + entities: + - uid: 1097 + components: + - type: Transform + pos: -34.621662,-22.596233 + parent: 2 + - uid: 15778 + components: + - type: Transform + pos: -42.98078,53.197773 + parent: 2 +- proto: FloorDrain + entities: + - uid: 13180 + components: + - type: Transform + pos: -9.5,62.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 15510 + components: + - type: Transform + pos: -2.5,73.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 16861 + components: + - type: Transform + pos: -1.5,81.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 22813 + components: + - type: Transform + pos: -22.5,192.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 36488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,208.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 36489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,208.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 38416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,39.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorLavaEntity + entities: + - uid: 4163 + components: + - type: Transform + pos: -113.5,65.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: -117.5,61.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + pos: -106.5,41.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: -112.5,52.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: -107.5,50.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + pos: -111.5,53.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: -112.5,53.5 + parent: 2 + - uid: 5340 + components: + - type: Transform + pos: -110.5,52.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + pos: -116.5,61.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + pos: -105.5,40.5 + parent: 2 + - uid: 11195 + components: + - type: Transform + pos: -109.5,60.5 + parent: 2 + - uid: 11196 + components: + - type: Transform + pos: -114.5,62.5 + parent: 2 + - uid: 11197 + components: + - type: Transform + pos: -113.5,62.5 + parent: 2 + - uid: 11207 + components: + - type: Transform + pos: -110.5,60.5 + parent: 2 + - uid: 13400 + components: + - type: Transform + pos: -112.5,60.5 + parent: 2 + - uid: 13401 + components: + - type: Transform + pos: -113.5,61.5 + parent: 2 + - uid: 13402 + components: + - type: Transform + pos: -115.5,61.5 + parent: 2 + - uid: 13407 + components: + - type: Transform + pos: -112.5,61.5 + parent: 2 + - uid: 13612 + components: + - type: Transform + pos: -114.5,61.5 + parent: 2 + - uid: 13732 + components: + - type: Transform + pos: -111.5,60.5 + parent: 2 + - uid: 13918 + components: + - type: Transform + pos: -104.5,39.5 + parent: 2 + - uid: 14237 + components: + - type: Transform + pos: -115.5,59.5 + parent: 2 + - uid: 17344 + components: + - type: Transform + pos: -117.5,59.5 + parent: 2 + - uid: 18138 + components: + - type: Transform + pos: -118.5,61.5 + parent: 2 + - uid: 19034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -123.5,42.5 + parent: 2 + - uid: 19044 + components: + - type: Transform + pos: -117.5,60.5 + parent: 2 + - uid: 21243 + components: + - type: Transform + pos: -116.5,59.5 + parent: 2 + - uid: 21361 + components: + - type: Transform + pos: -133.5,55.5 + parent: 2 + - uid: 21362 + components: + - type: Transform + pos: -133.5,56.5 + parent: 2 + - uid: 21363 + components: + - type: Transform + pos: -132.5,55.5 + parent: 2 + - uid: 21364 + components: + - type: Transform + pos: -132.5,56.5 + parent: 2 + - uid: 21365 + components: + - type: Transform + pos: -133.5,57.5 + parent: 2 + - uid: 21366 + components: + - type: Transform + pos: -134.5,56.5 + parent: 2 + - uid: 21367 + components: + - type: Transform + pos: -134.5,57.5 + parent: 2 + - uid: 21368 + components: + - type: Transform + pos: -131.5,59.5 + parent: 2 + - uid: 21465 + components: + - type: Transform + pos: -121.5,15.5 + parent: 2 + - uid: 21815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -129.5,36.5 + parent: 2 + - uid: 22238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.5,22.5 + parent: 2 + - uid: 22567 + components: + - type: Transform + pos: -130.5,15.5 + parent: 2 + - uid: 25193 + components: + - type: Transform + pos: -116.5,60.5 + parent: 2 + - uid: 27283 + components: + - type: Transform + pos: -113.5,60.5 + parent: 2 + - uid: 27285 + components: + - type: Transform + pos: -115.5,58.5 + parent: 2 + - uid: 27323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,37.5 + parent: 2 + - uid: 27324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,36.5 + parent: 2 + - uid: 27700 + components: + - type: Transform + pos: -115.5,68.5 + parent: 2 + - uid: 28290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,33.5 + parent: 2 + - uid: 28338 + components: + - type: Transform + pos: -112.5,63.5 + parent: 2 + - uid: 28382 + components: + - type: Transform + pos: -108.5,56.5 + parent: 2 + - uid: 28383 + components: + - type: Transform + pos: -109.5,58.5 + parent: 2 + - uid: 28384 + components: + - type: Transform + pos: -109.5,57.5 + parent: 2 + - uid: 28385 + components: + - type: Transform + pos: -109.5,56.5 + parent: 2 + - uid: 28386 + components: + - type: Transform + pos: -110.5,58.5 + parent: 2 + - uid: 28387 + components: + - type: Transform + pos: -110.5,57.5 + parent: 2 + - uid: 28388 + components: + - type: Transform + pos: -110.5,56.5 + parent: 2 + - uid: 28390 + components: + - type: Transform + pos: -108.5,55.5 + parent: 2 + - uid: 28391 + components: + - type: Transform + pos: -109.5,55.5 + parent: 2 + - uid: 28392 + components: + - type: Transform + pos: -110.5,55.5 + parent: 2 + - uid: 28393 + components: + - type: Transform + pos: -111.5,55.5 + parent: 2 + - uid: 28396 + components: + - type: Transform + pos: -111.5,56.5 + parent: 2 + - uid: 28397 + components: + - type: Transform + pos: -111.5,57.5 + parent: 2 + - uid: 28398 + components: + - type: Transform + pos: -111.5,58.5 + parent: 2 + - uid: 28399 + components: + - type: Transform + pos: -112.5,56.5 + parent: 2 + - uid: 28400 + components: + - type: Transform + pos: -112.5,57.5 + parent: 2 + - uid: 28401 + components: + - type: Transform + pos: -112.5,58.5 + parent: 2 + - uid: 28405 + components: + - type: Transform + pos: -113.5,58.5 + parent: 2 + - uid: 28406 + components: + - type: Transform + pos: -113.5,59.5 + parent: 2 + - uid: 28407 + components: + - type: Transform + pos: -114.5,58.5 + parent: 2 + - uid: 28408 + components: + - type: Transform + pos: -114.5,59.5 + parent: 2 + - uid: 28411 + components: + - type: Transform + pos: -115.5,60.5 + parent: 2 + - uid: 28413 + components: + - type: Transform + pos: -114.5,60.5 + parent: 2 + - uid: 28416 + components: + - type: Transform + pos: -112.5,59.5 + parent: 2 + - uid: 28417 + components: + - type: Transform + pos: -111.5,59.5 + parent: 2 + - uid: 28419 + components: + - type: Transform + pos: -110.5,59.5 + parent: 2 + - uid: 28435 + components: + - type: Transform + pos: -118.5,58.5 + parent: 2 + - uid: 28437 + components: + - type: Transform + pos: -117.5,58.5 + parent: 2 + - uid: 28451 + components: + - type: Transform + pos: -111.5,52.5 + parent: 2 + - uid: 28453 + components: + - type: Transform + pos: -111.5,51.5 + parent: 2 + - uid: 28454 + components: + - type: Transform + pos: -107.5,51.5 + parent: 2 + - uid: 28455 + components: + - type: Transform + pos: -107.5,52.5 + parent: 2 + - uid: 28457 + components: + - type: Transform + pos: -108.5,51.5 + parent: 2 + - uid: 28458 + components: + - type: Transform + pos: -108.5,52.5 + parent: 2 + - uid: 28460 + components: + - type: Transform + pos: -107.5,53.5 + parent: 2 + - uid: 28461 + components: + - type: Transform + pos: -106.5,53.5 + parent: 2 + - uid: 28462 + components: + - type: Transform + pos: -105.5,53.5 + parent: 2 + - uid: 28463 + components: + - type: Transform + pos: -105.5,54.5 + parent: 2 + - uid: 28464 + components: + - type: Transform + pos: -106.5,54.5 + parent: 2 + - uid: 28465 + components: + - type: Transform + pos: -104.5,53.5 + parent: 2 + - uid: 28466 + components: + - type: Transform + pos: -103.5,54.5 + parent: 2 + - uid: 28467 + components: + - type: Transform + pos: -104.5,54.5 + parent: 2 + - uid: 28468 + components: + - type: Transform + pos: -104.5,55.5 + parent: 2 + - uid: 28469 + components: + - type: Transform + pos: -105.5,55.5 + parent: 2 + - uid: 28470 + components: + - type: Transform + pos: -107.5,54.5 + parent: 2 + - uid: 28471 + components: + - type: Transform + pos: -106.5,55.5 + parent: 2 + - uid: 28530 + components: + - type: Transform + pos: -107.5,38.5 + parent: 2 + - uid: 28533 + components: + - type: Transform + pos: -108.5,38.5 + parent: 2 + - uid: 28537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,40.5 + parent: 2 + - uid: 28554 + components: + - type: Transform + pos: -107.5,39.5 + parent: 2 + - uid: 28555 + components: + - type: Transform + pos: -107.5,40.5 + parent: 2 + - uid: 28556 + components: + - type: Transform + pos: -106.5,39.5 + parent: 2 + - uid: 28557 + components: + - type: Transform + pos: -106.5,40.5 + parent: 2 + - uid: 28558 + components: + - type: Transform + pos: -107.5,41.5 + parent: 2 + - uid: 28559 + components: + - type: Transform + pos: -108.5,41.5 + parent: 2 + - uid: 28560 + components: + - type: Transform + pos: -108.5,40.5 + parent: 2 + - uid: 28561 + components: + - type: Transform + pos: -109.5,41.5 + parent: 2 + - uid: 28562 + components: + - type: Transform + pos: -109.5,40.5 + parent: 2 + - uid: 28563 + components: + - type: Transform + pos: -109.5,39.5 + parent: 2 + - uid: 28564 + components: + - type: Transform + pos: -109.5,38.5 + parent: 2 + - uid: 28565 + components: + - type: Transform + pos: -110.5,39.5 + parent: 2 + - uid: 28566 + components: + - type: Transform + pos: -110.5,40.5 + parent: 2 + - uid: 28567 + components: + - type: Transform + pos: -109.5,42.5 + parent: 2 + - uid: 28568 + components: + - type: Transform + pos: -109.5,43.5 + parent: 2 + - uid: 28569 + components: + - type: Transform + pos: -109.5,44.5 + parent: 2 + - uid: 28570 + components: + - type: Transform + pos: -108.5,42.5 + parent: 2 + - uid: 28571 + components: + - type: Transform + pos: -108.5,43.5 + parent: 2 + - uid: 28572 + components: + - type: Transform + pos: -108.5,44.5 + parent: 2 + - uid: 28573 + components: + - type: Transform + pos: -107.5,42.5 + parent: 2 + - uid: 28574 + components: + - type: Transform + pos: -110.5,43.5 + parent: 2 + - uid: 28575 + components: + - type: Transform + pos: -110.5,44.5 + parent: 2 + - uid: 28576 + components: + - type: Transform + pos: -110.5,45.5 + parent: 2 + - uid: 28577 + components: + - type: Transform + pos: -109.5,45.5 + parent: 2 + - uid: 28578 + components: + - type: Transform + pos: -108.5,45.5 + parent: 2 + - uid: 28581 + components: + - type: Transform + pos: -104.5,40.5 + parent: 2 + - uid: 28582 + components: + - type: Transform + pos: -105.5,39.5 + parent: 2 + - uid: 28583 + components: + - type: Transform + pos: -103.5,40.5 + parent: 2 + - uid: 28590 + components: + - type: Transform + pos: -104.5,42.5 + parent: 2 + - uid: 28734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,36.5 + parent: 2 + - uid: 28913 + components: + - type: Transform + pos: -115.5,67.5 + parent: 2 + - uid: 28915 + components: + - type: Transform + pos: -113.5,64.5 + parent: 2 + - uid: 28921 + components: + - type: Transform + pos: -112.5,67.5 + parent: 2 + - uid: 28936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,35.5 + parent: 2 + - uid: 28957 + components: + - type: Transform + pos: -113.5,63.5 + parent: 2 + - uid: 28958 + components: + - type: Transform + pos: -114.5,64.5 + parent: 2 + - uid: 28959 + components: + - type: Transform + pos: -114.5,65.5 + parent: 2 + - uid: 28960 + components: + - type: Transform + pos: -114.5,66.5 + parent: 2 + - uid: 28961 + components: + - type: Transform + pos: -113.5,66.5 + parent: 2 + - uid: 28962 + components: + - type: Transform + pos: -114.5,67.5 + parent: 2 + - uid: 28963 + components: + - type: Transform + pos: -115.5,66.5 + parent: 2 + - uid: 28964 + components: + - type: Transform + pos: -116.5,68.5 + parent: 2 + - uid: 28965 + components: + - type: Transform + pos: -117.5,68.5 + parent: 2 + - uid: 28969 + components: + - type: Transform + pos: -117.5,69.5 + parent: 2 + - uid: 28971 + components: + - type: Transform + pos: -118.5,69.5 + parent: 2 + - uid: 28972 + components: + - type: Transform + pos: -113.5,67.5 + parent: 2 + - uid: 28975 + components: + - type: Transform + pos: -112.5,66.5 + parent: 2 + - uid: 29052 + components: + - type: Transform + pos: -122.5,45.5 + parent: 2 + - uid: 29053 + components: + - type: Transform + pos: -122.5,46.5 + parent: 2 + - uid: 29054 + components: + - type: Transform + pos: -123.5,46.5 + parent: 2 + - uid: 29055 + components: + - type: Transform + pos: -123.5,47.5 + parent: 2 + - uid: 29056 + components: + - type: Transform + pos: -122.5,47.5 + parent: 2 + - uid: 29057 + components: + - type: Transform + pos: -123.5,48.5 + parent: 2 + - uid: 29058 + components: + - type: Transform + pos: -123.5,49.5 + parent: 2 + - uid: 29060 + components: + - type: Transform + pos: -122.5,49.5 + parent: 2 + - uid: 29061 + components: + - type: Transform + pos: -122.5,48.5 + parent: 2 + - uid: 29062 + components: + - type: Transform + pos: -123.5,50.5 + parent: 2 + - uid: 29063 + components: + - type: Transform + pos: -123.5,43.5 + parent: 2 + - uid: 29065 + components: + - type: Transform + pos: -122.5,42.5 + parent: 2 + - uid: 29066 + components: + - type: Transform + pos: -122.5,43.5 + parent: 2 + - uid: 29068 + components: + - type: Transform + pos: -122.5,41.5 + parent: 2 + - uid: 29089 + components: + - type: Transform + pos: -118.5,59.5 + parent: 2 + - uid: 29208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,29.5 + parent: 2 + - uid: 29212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,27.5 + parent: 2 + - uid: 29213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,28.5 + parent: 2 + - uid: 29214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,29.5 + parent: 2 + - uid: 29215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,30.5 + parent: 2 + - uid: 29216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,31.5 + parent: 2 + - uid: 29217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,32.5 + parent: 2 + - uid: 29218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,27.5 + parent: 2 + - uid: 29219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,28.5 + parent: 2 + - uid: 29220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,29.5 + parent: 2 + - uid: 29221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,30.5 + parent: 2 + - uid: 29222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,31.5 + parent: 2 + - uid: 29223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,32.5 + parent: 2 + - uid: 29224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,27.5 + parent: 2 + - uid: 29225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,28.5 + parent: 2 + - uid: 29226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,29.5 + parent: 2 + - uid: 29227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,30.5 + parent: 2 + - uid: 29228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,31.5 + parent: 2 + - uid: 29229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,32.5 + parent: 2 + - uid: 29230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,27.5 + parent: 2 + - uid: 29231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,28.5 + parent: 2 + - uid: 29232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,29.5 + parent: 2 + - uid: 29233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,30.5 + parent: 2 + - uid: 29234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,31.5 + parent: 2 + - uid: 29235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,32.5 + parent: 2 + - uid: 29236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,27.5 + parent: 2 + - uid: 29237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,28.5 + parent: 2 + - uid: 29238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,29.5 + parent: 2 + - uid: 29239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,30.5 + parent: 2 + - uid: 29240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,31.5 + parent: 2 + - uid: 29241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,32.5 + parent: 2 + - uid: 29242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,30.5 + parent: 2 + - uid: 29243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,31.5 + parent: 2 + - uid: 29244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,32.5 + parent: 2 + - uid: 29245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,29.5 + parent: 2 + - uid: 29246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,30.5 + parent: 2 + - uid: 29247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,31.5 + parent: 2 + - uid: 29248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,32.5 + parent: 2 + - uid: 29249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,33.5 + parent: 2 + - uid: 29250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,33.5 + parent: 2 + - uid: 29251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,33.5 + parent: 2 + - uid: 29252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,33.5 + parent: 2 + - uid: 29253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,33.5 + parent: 2 + - uid: 29254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,34.5 + parent: 2 + - uid: 29255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,34.5 + parent: 2 + - uid: 29256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,34.5 + parent: 2 + - uid: 29257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,34.5 + parent: 2 + - uid: 29258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,33.5 + parent: 2 + - uid: 29259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,33.5 + parent: 2 + - uid: 29260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,32.5 + parent: 2 + - uid: 29261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,31.5 + parent: 2 + - uid: 29262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,29.5 + parent: 2 + - uid: 29263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,28.5 + parent: 2 + - uid: 29264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,27.5 + parent: 2 + - uid: 29265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,26.5 + parent: 2 + - uid: 29266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,26.5 + parent: 2 + - uid: 29267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,26.5 + parent: 2 + - uid: 29269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,25.5 + parent: 2 + - uid: 29270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,25.5 + parent: 2 + - uid: 29271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,26.5 + parent: 2 + - uid: 29272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,24.5 + parent: 2 + - uid: 29273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,23.5 + parent: 2 + - uid: 29274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,24.5 + parent: 2 + - uid: 29275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,22.5 + parent: 2 + - uid: 29276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,26.5 + parent: 2 + - uid: 29277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,26.5 + parent: 2 + - uid: 29279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,31.5 + parent: 2 + - uid: 29280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,32.5 + parent: 2 + - uid: 29281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,33.5 + parent: 2 + - uid: 29282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,34.5 + parent: 2 + - uid: 29283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,34.5 + parent: 2 + - uid: 29284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,35.5 + parent: 2 + - uid: 29285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,35.5 + parent: 2 + - uid: 29286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,33.5 + parent: 2 + - uid: 29287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,36.5 + parent: 2 + - uid: 29288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,37.5 + parent: 2 + - uid: 29289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,36.5 + parent: 2 + - uid: 29290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,37.5 + parent: 2 + - uid: 29291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,36.5 + parent: 2 + - uid: 29292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,37.5 + parent: 2 + - uid: 29293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,36.5 + parent: 2 + - uid: 29294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,37.5 + parent: 2 + - uid: 29295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,38.5 + parent: 2 + - uid: 29296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,38.5 + parent: 2 + - uid: 29297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,38.5 + parent: 2 + - uid: 29298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,37.5 + parent: 2 + - uid: 29299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,38.5 + parent: 2 + - uid: 29300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,39.5 + parent: 2 + - uid: 29301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,39.5 + parent: 2 + - uid: 29303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,40.5 + parent: 2 + - uid: 29304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,39.5 + parent: 2 + - uid: 29305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,35.5 + parent: 2 + - uid: 29306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,35.5 + parent: 2 + - uid: 29307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,36.5 + parent: 2 + - uid: 29308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,34.5 + parent: 2 + - uid: 29867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,25.5 + parent: 2 + - uid: 29868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -131.5,30.5 + parent: 2 + - uid: 29869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,23.5 + parent: 2 + - uid: 29870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,27.5 + parent: 2 + - uid: 29871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,28.5 + parent: 2 + - uid: 29873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,26.5 + parent: 2 + - uid: 29874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,22.5 + parent: 2 + - uid: 29875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.5,30.5 + parent: 2 + - uid: 29920 + components: + - type: Transform + pos: -110.5,41.5 + parent: 2 + - uid: 29921 + components: + - type: Transform + pos: -106.5,43.5 + parent: 2 + - uid: 29923 + components: + - type: Transform + pos: -106.5,42.5 + parent: 2 + - uid: 29924 + components: + - type: Transform + pos: -107.5,44.5 + parent: 2 + - uid: 29925 + components: + - type: Transform + pos: -107.5,43.5 + parent: 2 + - uid: 30592 + components: + - type: Transform + pos: -137.5,32.5 + parent: 2 + - uid: 30594 + components: + - type: Transform + pos: -138.5,31.5 + parent: 2 + - uid: 30603 + components: + - type: Transform + pos: -139.5,32.5 + parent: 2 + - uid: 30604 + components: + - type: Transform + pos: -139.5,31.5 + parent: 2 + - uid: 30644 + components: + - type: Transform + pos: -138.5,32.5 + parent: 2 + - uid: 30659 + components: + - type: Transform + pos: -124.5,19.5 + parent: 2 + - uid: 30661 + components: + - type: Transform + pos: -125.5,19.5 + parent: 2 + - uid: 30662 + components: + - type: Transform + pos: -125.5,20.5 + parent: 2 + - uid: 30663 + components: + - type: Transform + pos: -124.5,20.5 + parent: 2 + - uid: 30664 + components: + - type: Transform + pos: -126.5,19.5 + parent: 2 + - uid: 30669 + components: + - type: Transform + pos: -127.5,19.5 + parent: 2 + - uid: 30676 + components: + - type: Transform + pos: -126.5,21.5 + parent: 2 + - uid: 30677 + components: + - type: Transform + pos: -127.5,22.5 + parent: 2 + - uid: 30678 + components: + - type: Transform + pos: -127.5,21.5 + parent: 2 + - uid: 30687 + components: + - type: Transform + pos: -139.5,9.5 + parent: 2 + - uid: 30702 + components: + - type: Transform + pos: -138.5,9.5 + parent: 2 + - uid: 30704 + components: + - type: Transform + pos: -132.5,14.5 + parent: 2 + - uid: 30705 + components: + - type: Transform + pos: -132.5,15.5 + parent: 2 + - uid: 30706 + components: + - type: Transform + pos: -133.5,13.5 + parent: 2 + - uid: 30707 + components: + - type: Transform + pos: -133.5,14.5 + parent: 2 + - uid: 30708 + components: + - type: Transform + pos: -133.5,15.5 + parent: 2 + - uid: 30709 + components: + - type: Transform + pos: -134.5,13.5 + parent: 2 + - uid: 30710 + components: + - type: Transform + pos: -134.5,14.5 + parent: 2 + - uid: 30711 + components: + - type: Transform + pos: -134.5,15.5 + parent: 2 + - uid: 30714 + components: + - type: Transform + pos: -137.5,11.5 + parent: 2 + - uid: 30715 + components: + - type: Transform + pos: -138.5,11.5 + parent: 2 + - uid: 30716 + components: + - type: Transform + pos: -138.5,10.5 + parent: 2 + - uid: 30717 + components: + - type: Transform + pos: -137.5,10.5 + parent: 2 + - uid: 30718 + components: + - type: Transform + pos: -139.5,10.5 + parent: 2 + - uid: 30719 + components: + - type: Transform + pos: -139.5,9.5 + parent: 2 + - uid: 30721 + components: + - type: Transform + pos: -142.5,9.5 + parent: 2 + - uid: 30722 + components: + - type: Transform + pos: -147.5,10.5 + parent: 2 + - uid: 30723 + components: + - type: Transform + pos: -149.5,7.5 + parent: 2 + - uid: 33292 + components: + - type: Transform + pos: -108.5,39.5 + parent: 2 + - uid: 34741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,38.5 + parent: 2 + - uid: 34742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,39.5 + parent: 2 + - uid: 34743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,39.5 + parent: 2 + - uid: 34744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,40.5 + parent: 2 + - uid: 34746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,37.5 + parent: 2 + - uid: 34747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,38.5 + parent: 2 + - uid: 34748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,40.5 + parent: 2 + - uid: 34749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,40.5 + parent: 2 + - uid: 34750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,39.5 + parent: 2 + - uid: 34751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -129.5,35.5 + parent: 2 + - uid: 34752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -130.5,35.5 + parent: 2 + - uid: 34753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -130.5,36.5 + parent: 2 + - uid: 34754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,35.5 + parent: 2 + - uid: 34755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,41.5 + parent: 2 + - uid: 34756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,41.5 + parent: 2 + - uid: 34757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,41.5 + parent: 2 + - uid: 36507 + components: + - type: Transform + pos: -126.5,20.5 + parent: 2 + - uid: 36508 + components: + - type: Transform + pos: -125.5,21.5 + parent: 2 + - uid: 43414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,13.5 + parent: 2 + - uid: 43415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,13.5 + parent: 2 + - uid: 43416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,14.5 + parent: 2 + - uid: 43417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,14.5 + parent: 2 + - uid: 43418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,15.5 + parent: 2 + - uid: 43419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,15.5 + parent: 2 + - uid: 43420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,14.5 + parent: 2 + - uid: 43421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,15.5 + parent: 2 + - uid: 43422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,16.5 + parent: 2 + - uid: 43423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,16.5 + parent: 2 + - uid: 43424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,16.5 + parent: 2 +- proto: FloorTileItemDark + entities: + - uid: 28366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.321945,146.45213 + parent: 2 +- proto: FloorTileItemSteel + entities: + - uid: 28008 + components: + - type: Transform + rot: 3.163928615223404 rad + pos: -82.45375,144.44534 + parent: 2 +- proto: FloorTileItemWhite + entities: + - uid: 23653 + components: + - type: Transform + pos: 10.480358,184.52945 + parent: 2 + - uid: 23654 + components: + - type: Transform + pos: 12.516246,184.25958 + parent: 2 + - uid: 23655 + components: + - type: Transform + pos: 11.920101,184.59691 + parent: 2 + - uid: 23656 + components: + - type: Transform + pos: 11.785126,185.72134 + parent: 2 + - uid: 23657 + components: + - type: Transform + pos: 8.264504,183.11266 + parent: 2 +- proto: FloorWaterEntity + entities: + - uid: 14296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,106.5 + parent: 2 + - uid: 14300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,106.5 + parent: 2 + - uid: 14303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,106.5 + parent: 2 + - uid: 14305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,107.5 + parent: 2 + - uid: 14306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,107.5 + parent: 2 + - uid: 14325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,107.5 + parent: 2 + - uid: 14326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,106.5 + parent: 2 + - uid: 14334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,107.5 + parent: 2 + - uid: 14390 + components: + - type: Transform + pos: -84.5,99.5 + parent: 2 + - uid: 35838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,68.5 + parent: 2 +- proto: FloraRockSolid + entities: + - uid: 880 + components: + - type: Transform + pos: 62.42534,20.753548 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: 41.347694,18.443283 + parent: 2 + - uid: 4710 + components: + - type: Transform + pos: -3.8643913,219.4986 + parent: 2 + - uid: 5882 + components: + - type: Transform + pos: 5.1426125,216.73248 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: 9.40974,213.58945 + parent: 2 + - uid: 11267 + components: + - type: Transform + pos: -80.36032,46.760155 + parent: 2 + - uid: 11271 + components: + - type: Transform + pos: -81.36003,29.945816 + parent: 2 + - uid: 12006 + components: + - type: Transform + pos: -132.0299,58.225758 + parent: 2 + - uid: 12010 + components: + - type: Transform + pos: -122.38654,15.097786 + parent: 2 + - uid: 14149 + components: + - type: Transform + pos: -96.5112,92.46866 + parent: 2 + - uid: 14881 + components: + - type: Transform + pos: -76.10167,114.738846 + parent: 2 + - uid: 18272 + components: + - type: Transform + pos: 29.159416,176.0938 + parent: 2 + - uid: 20931 + components: + - type: Transform + pos: -80.17963,36.17558 + parent: 2 + - uid: 22842 + components: + - type: Transform + pos: 34.51841,7.917267 + parent: 2 + - uid: 23806 + components: + - type: Transform + pos: -90.20589,99.00934 + parent: 2 + - uid: 26191 + components: + - type: Transform + pos: -59.108765,58.061966 + parent: 2 + - uid: 43447 + components: + - type: Transform + pos: -128.36145,12.053505 + parent: 2 +- proto: FloraTree + entities: + - uid: 4973 + components: + - type: Transform + pos: -96.588066,149.62936 + parent: 2 + - uid: 6853 + components: + - type: Transform + pos: -69.04449,67.460915 + parent: 2 + - uid: 7860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.29085,75.604614 + parent: 2 + - uid: 11224 + components: + - type: Transform + pos: -18.302986,76.423996 + parent: 2 + - uid: 13629 + components: + - type: Transform + pos: -30.556133,102.17079 + parent: 2 + - uid: 17289 + components: + - type: Transform + pos: -70.78352,153.77 + parent: 2 + - uid: 17401 + components: + - type: Transform + pos: 10.165936,197.45468 + parent: 2 + - uid: 19566 + components: + - type: Transform + pos: -84.49581,150.5657 + parent: 2 + - uid: 23680 + components: + - type: Transform + pos: 17.391369,185.53941 + parent: 2 + - uid: 23681 + components: + - type: Transform + pos: 14.15213,187.9999 + parent: 2 + - uid: 23682 + components: + - type: Transform + pos: 16.356737,187.62883 + parent: 2 + - uid: 23684 + components: + - type: Transform + pos: 16.92492,197.97273 + parent: 2 + - uid: 23685 + components: + - type: Transform + pos: 18.184696,197.4105 + parent: 2 + - uid: 23686 + components: + - type: Transform + pos: 13.748766,194.95978 + parent: 2 + - uid: 23921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.30851,87.37485 + parent: 2 +- proto: FloraTreeChristmas02 + entities: + - uid: 34814 + components: + - type: Transform + pos: -13.516092,179.39502 + parent: 2 +- proto: FloraTreeConifer + entities: + - uid: 19210 + components: + - type: Transform + pos: -14.629169,176.01395 + parent: 2 + - uid: 22743 + components: + - type: Transform + pos: -0.07076168,186.7724 + parent: 2 + - uid: 22974 + components: + - type: Transform + pos: -2.688633,199.35008 + parent: 2 + - uid: 36678 + components: + - type: Transform + pos: -9.46891,202.46387 + parent: 2 +- proto: FloraTreeLarge + entities: + - uid: 23678 + components: + - type: Transform + pos: 9.395896,194.12773 + parent: 2 + - uid: 23679 + components: + - type: Transform + pos: 15.621353,183.80779 + parent: 2 + - uid: 23683 + components: + - type: Transform + pos: 14.394122,197.48923 + parent: 2 + - uid: 36476 + components: + - type: Transform + pos: -70.99036,160.58142 + parent: 2 +- proto: FloraTreeSnow + entities: + - uid: 14353 + components: + - type: Transform + pos: -85.37901,98.40219 + parent: 2 + - uid: 18182 + components: + - type: Transform + pos: -2.8286896,189.72049 + parent: 2 + - uid: 18771 + components: + - type: Transform + pos: -17.746033,184.87071 + parent: 2 + - uid: 18775 + components: + - type: Transform + pos: -14.700613,182.2656 + parent: 2 + - uid: 18796 + components: + - type: Transform + pos: -2.898879,183.18465 + parent: 2 + - uid: 19065 + components: + - type: Transform + pos: -0.6724396,191.37674 + parent: 2 + - uid: 22742 + components: + - type: Transform + pos: -1.6083536,181.74948 + parent: 2 + - uid: 23148 + components: + - type: Transform + pos: -3.506566,186.5033 + parent: 2 + - uid: 23149 + components: + - type: Transform + pos: -7.8782434,180.7243 + parent: 2 + - uid: 23429 + components: + - type: Transform + pos: -3.3635125,198.84409 + parent: 2 + - uid: 23470 + components: + - type: Transform + pos: -2.6548405,197.0312 + parent: 2 + - uid: 23520 + components: + - type: Transform + pos: -4.5919485,204.44345 + parent: 2 + - uid: 32655 + components: + - type: Transform + pos: -8.938912,185.38167 + parent: 2 +- proto: FloraTreeStump + entities: + - uid: 38273 + components: + - type: Transform + pos: -7.4058228,186.13428 + parent: 2 +- proto: FloraTreeStumpConifer + entities: + - uid: 11260 + components: + - type: Transform + pos: -0.5507698,177.48273 + parent: 2 + - uid: 38277 + components: + - type: Transform + pos: 1.5388489,188.73734 + parent: 2 + - uid: 38279 + components: + - type: Transform + pos: -3.5789871,193.57433 + parent: 2 +- proto: FluteInstrument + entities: + - uid: 24234 + components: + - type: Transform + pos: -58.64047,99.41324 + parent: 2 +- proto: FoamCutlass + entities: + - uid: 15851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.48825,73.79133 + parent: 2 +- proto: FoodApple + entities: + - uid: 4874 + components: + - type: Transform + pos: -17.540092,87.051865 + parent: 2 + - uid: 6994 + components: + - type: Transform + parent: 6993 + - type: Physics + canCollide: False + - uid: 14196 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14562 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15894 + components: + - type: Transform + pos: -50.456272,91.68295 + parent: 2 + - uid: 18061 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18653 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25261 + components: + - type: Transform + pos: -127.61079,81.6956 + parent: 2 +- proto: FoodBakedNugget + entities: + - uid: 13113 + components: + - type: Transform + pos: -17.310732,62.66258 + parent: 2 +- proto: FoodBowlBig + entities: + - uid: 36203 + components: + - type: Transform + pos: -13.426207,71.72066 + parent: 2 +- proto: FoodBoxDonkpocketHonk + entities: + - uid: 22877 + components: + - type: Transform + pos: -6.2677155,199.74678 + parent: 2 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 4852 + components: + - type: Transform + pos: 83.41955,67.60611 + parent: 2 + - uid: 8597 + components: + - type: Transform + pos: -105.39787,34.375355 + parent: 2 + - uid: 27598 + components: + - type: Transform + pos: -112.60913,42.632843 + parent: 2 + - uid: 28900 + components: + - type: Transform + pos: -112.372925,42.80151 + parent: 2 +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 20464 + components: + - type: Transform + pos: -79.57025,47.287148 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 624 + components: + - type: Transform + pos: 55.529373,28.630276 + parent: 2 + - uid: 4217 + components: + - type: Transform + pos: 70.24775,43.437252 + parent: 2 + - uid: 16862 + components: + - type: Transform + pos: -37.46739,103.690216 + parent: 2 + - uid: 17280 + components: + - type: Transform + pos: -65.234795,-4.4059243 + parent: 2 + - uid: 37295 + components: + - type: Transform + pos: -38.398914,172.9383 + parent: 2 +- proto: FoodBreadBananaSlice + entities: + - uid: 37929 + components: + - type: Transform + pos: 5.3561745,73.278786 + parent: 2 +- proto: FoodBreadMimanaSlice + entities: + - uid: 17757 + components: + - type: Transform + pos: 81.488434,18.662613 + parent: 2 + - uid: 18019 + components: + - type: Transform + pos: 81.451675,18.521988 + parent: 2 +- proto: FoodBreadMoldySlice + entities: + - uid: 4013 + components: + - type: Transform + pos: -138.82214,105.76689 + parent: 2 + - uid: 30890 + components: + - type: Transform + pos: -124.57735,109.6447 + parent: 2 + - uid: 30891 + components: + - type: Transform + pos: -124.52796,109.42595 + parent: 2 + - uid: 34282 + components: + - type: Transform + pos: -124.87171,109.55095 + parent: 2 +- proto: FoodBurgerBacon + entities: + - uid: 1422 + components: + - type: Transform + parent: 1404 + - type: Physics + canCollide: False +- proto: FoodBurgerCarp + entities: + - uid: 1679 + components: + - type: Transform + pos: -18.358147,4.741184 + parent: 2 +- proto: FoodBurgerCheese + entities: + - uid: 2216 + components: + - type: Transform + pos: -112.45533,38.52319 + parent: 2 + - uid: 20520 + components: + - type: Transform + pos: -16.855373,62.858147 + parent: 2 +- proto: FoodBurgerChicken + entities: + - uid: 1443 + components: + - type: Transform + parent: 1404 + - type: Physics + canCollide: False +- proto: FoodBurgerCrab + entities: + - uid: 4716 + components: + - type: Transform + pos: -91.71118,36.42624 + parent: 2 +- proto: FoodBurgerEmpowered + entities: + - uid: 1440 + components: + - type: Transform + parent: 1404 + - type: Physics + canCollide: False +- proto: FoodBurgerFive + entities: + - uid: 4702 + components: + - type: Transform + pos: 82.901535,67.559265 + parent: 2 +- proto: FoodBurgerPlain + entities: + - uid: 1406 + components: + - type: Transform + parent: 1404 + - type: Physics + canCollide: False + - uid: 1412 + components: + - type: Transform + parent: 1404 + - type: Physics + canCollide: False + - uid: 1423 + components: + - type: Transform + parent: 1404 + - type: Physics + canCollide: False +- proto: FoodBurgerSuper + entities: + - uid: 29067 + components: + - type: Transform + pos: -116.54802,48.627228 + parent: 2 +- proto: FoodCakeVanilla + entities: + - uid: 1451 + components: + - type: Transform + pos: 0.47511292,241.60672 + parent: 2 +- proto: FoodCartCold + entities: + - uid: 25201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,180.5 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 38431 + - 38439 + - 38433 + - 38441 + - 38436 + - 38440 +- proto: FoodCartHot + entities: + - uid: 1404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,38.5 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1406 + - 1412 + - 1422 + - 1423 + - 1440 + - 1443 + coldsauce_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + hotsauce_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + bbqsauce_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ketchup_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: FoodCondimentBottleColdsauce + entities: + - uid: 36688 + components: + - type: Transform + pos: -24.035315,196.5299 + parent: 2 +- proto: FoodDonkpocketHonk + entities: + - uid: 16411 + components: + - type: Transform + pos: 108.50112,59.55349 + parent: 2 +- proto: FoodDonutApple + entities: + - uid: 15404 + components: + - type: Transform + pos: -55.506176,80.59798 + parent: 2 +- proto: FoodDonutCaramel + entities: + - uid: 13403 + components: + - type: Transform + pos: 2.503067,1.7662067 + parent: 13386 +- proto: FoodDonutChocolate + entities: + - uid: 3017 + components: + - type: Transform + pos: 26.715828,15.261444 + parent: 2 +- proto: FoodDonutJelly + entities: + - uid: 16593 + components: + - type: Transform + pos: 2.8200302,1.5681696 + parent: 13386 +- proto: FoodDonutJellyHomer + entities: + - uid: 35417 + components: + - type: Transform + pos: -103.56487,149.63913 + parent: 2 +- proto: FoodDonutJellySlugcat + entities: + - uid: 5471 + components: + - type: Transform + pos: -85.724236,141.53001 + parent: 2 +- proto: FoodDonutSpaceman + entities: + - uid: 4119 + components: + - type: Transform + pos: 116.63508,59.525356 + parent: 2 +- proto: FoodDough + entities: + - uid: 12931 + components: + - type: Transform + pos: -13.303408,69.58895 + parent: 2 + - uid: 12932 + components: + - type: Transform + pos: -13.460878,69.85882 + parent: 2 + - uid: 12933 + components: + - type: Transform + pos: -13.652094,69.64517 + parent: 2 +- proto: FoodEggChickenFertilized + entities: + - uid: 1433 + components: + - type: Transform + pos: 0.29852295,60.523396 + parent: 2 + - uid: 36482 + components: + - type: Transform + pos: 0.8496742,60.725792 + parent: 2 + - uid: 36483 + components: + - type: Transform + pos: 1.0183945,60.45593 + parent: 2 +- proto: FoodFrozenFreezy + entities: + - uid: 17678 + components: + - type: Transform + pos: -26.286858,180.50296 + parent: 2 +- proto: FoodFrozenPopsicleBerry + entities: + - uid: 34808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.713514,182.67308 + parent: 2 + - uid: 38431 + components: + - type: Transform + parent: 25201 + - type: Physics + canCollide: False + - uid: 38439 + components: + - type: Transform + parent: 25201 + - type: Physics + canCollide: False +- proto: FoodFrozenPopsicleJumbo + entities: + - uid: 38433 + components: + - type: Transform + parent: 25201 + - type: Physics + canCollide: False + - uid: 38441 + components: + - type: Transform + parent: 25201 + - type: Physics + canCollide: False +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 35961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.35691,21.316574 + parent: 2 + - uid: 38436 + components: + - type: Transform + parent: 25201 + - type: Physics + canCollide: False + - uid: 38440 + components: + - type: Transform + parent: 25201 + - type: Physics + canCollide: False +- proto: FoodFrozenPopsicleTrash + entities: + - uid: 34809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.642565,182.4048 + parent: 2 +- proto: FoodFrozenSandwich + entities: + - uid: 16857 + components: + - type: Transform + pos: -18.095947,182.5494 + parent: 2 + - uid: 38437 + components: + - type: Transform + parent: 38429 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38438 + components: + - type: Transform + parent: 38429 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 38430 + components: + - type: Transform + parent: 38429 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38434 + components: + - type: Transform + parent: 38429 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSundae + entities: + - uid: 22869 + components: + - type: Transform + pos: -18.602106,182.71805 + parent: 2 + - uid: 38432 + components: + - type: Transform + parent: 38429 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38435 + components: + - type: Transform + parent: 38429 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodGarlic + entities: + - uid: 10937 + components: + - type: Transform + pos: -59.498627,63.707077 + parent: 2 + - type: PointLight + energy: 2 + color: '#B0E0E6FF' + radius: 2 +- proto: FoodGrape + entities: + - uid: 20843 + components: + - type: Transform + pos: -85.60305,180.73322 + parent: 2 + - uid: 20844 + components: + - type: Transform + pos: -85.366844,180.8569 + parent: 2 +- proto: FoodKebabSkewer + entities: + - uid: 16474 + components: + - type: Transform + pos: -65.41039,100.57889 + parent: 2 +- proto: FoodMealEggplantParm + entities: + - uid: 33946 + components: + - type: Transform + pos: -132.47379,148.5214 + parent: 2 +- proto: FoodMealFriesCarrot + entities: + - uid: 25823 + components: + - type: Transform + pos: -88.50383,38.63632 + parent: 2 +- proto: FoodMealFriesCheesy + entities: + - uid: 13174 + components: + - type: Transform + pos: -16.803732,62.467667 + parent: 2 +- proto: FoodMeatChicken + entities: + - uid: 11122 + components: + - type: Transform + parent: 12935 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11128 + components: + - type: Transform + parent: 12935 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11157 + components: + - type: Transform + parent: 12935 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12992 + components: + - type: Transform + pos: -11.43141,61.676132 + parent: 2 +- proto: FoodMeatChickenFried + entities: + - uid: 5044 + components: + - type: Transform + pos: -104.54538,59.427353 + parent: 2 + - uid: 13124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.723671,62.446823 + parent: 2 + - uid: 16727 + components: + - type: Transform + pos: -103.56974,57.988075 + parent: 2 + - uid: 17146 + components: + - type: Transform + pos: -103.59224,57.51581 + parent: 2 + - uid: 28682 + components: + - type: Transform + pos: -103.34478,57.380875 + parent: 2 + - uid: 28683 + components: + - type: Transform + pos: -103.32229,57.83065 + parent: 2 +- proto: FoodMeatClown + entities: + - uid: 6822 + components: + - type: Transform + parent: 34626 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38091 + components: + - type: Transform + pos: -71.61896,90.59876 + parent: 2 +- proto: FoodMeatCrabCooked + entities: + - uid: 12308 + components: + - type: Transform + pos: -91.72681,36.67624 + parent: 2 +- proto: FoodMeatPlant + entities: + - uid: 11085 + components: + - type: Transform + pos: -97.31689,147.61728 + parent: 2 +- proto: FoodMeatSlime + entities: + - uid: 6616 + components: + - type: Transform + pos: -60.571465,105.56446 + parent: 2 +- proto: FoodMeatSpiderLeg + entities: + - uid: 35978 + components: + - type: Transform + pos: -43.544807,54.211823 + parent: 2 +- proto: FoodMeatTomato + entities: + - uid: 30599 + components: + - type: Transform + pos: -91.490524,147.76665 + parent: 2 +- proto: FoodPieAppleSlice + entities: + - uid: 35804 + components: + - type: Transform + pos: -18.254236,62.5604 + parent: 2 +- proto: FoodPieBaklava + entities: + - uid: 7233 + components: + - type: Transform + pos: 57.62426,25.173435 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 5615 + components: + - type: Transform + pos: 57.47148,24.853992 + parent: 2 + - uid: 14089 + components: + - type: Transform + pos: -69.78697,90.39919 + parent: 2 + - uid: 15128 + components: + - type: Transform + pos: 7.5016747,74.55523 + parent: 2 + - uid: 15129 + components: + - type: Transform + pos: 7.4791794,76.53424 + parent: 2 +- proto: FoodPineapple + entities: + - uid: 18094 + components: + - type: MetaData + name: multidimensional pineapple + - type: Transform + pos: -88.941025,148.14993 + parent: 2 + - type: SolutionContainerManager + solutions: + food: + temperature: 293.15 + canReact: True + maxVol: 45 + name: null + reagents: + - data: null + ReagentId: MuteToxin + Quantity: 15 + - data: null + ReagentId: MindbreakerToxin + Quantity: 15 + - data: null + ReagentId: Pax + Quantity: 15 + - type: SingularityDistortion + falloffPower: 1.4142137 + intensity: 31.249992 +- proto: FoodPizzaMushroom + entities: + - uid: 1870 + components: + - type: Transform + pos: 1.7477825,-2.262948 + parent: 2 +- proto: FoodPlate + entities: + - uid: 22307 + components: + - type: Transform + pos: -76.496,36.76551 + parent: 2 + - uid: 36794 + components: + - type: Transform + pos: -75.64279,94.79567 + parent: 2 + - uid: 36801 + components: + - type: Transform + pos: -76.4639,94.784424 + parent: 2 +- proto: FoodPlateTrash + entities: + - uid: 34612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.39832,89.407845 + parent: 2 + - uid: 36803 + components: + - type: Transform + pos: -77.374985,94.73945 + parent: 2 +- proto: FoodSnackCheesie + entities: + - uid: 23523 + components: + - type: Transform + pos: 108.31362,59.670677 + parent: 2 +- proto: FoodSnackChocolate + entities: + - uid: 20054 + components: + - type: Transform + pos: -54.412315,155.60696 + parent: 2 +- proto: FoodSnackCookieFortune + entities: + - uid: 1572 + components: + - type: Transform + pos: -54.34664,5.5771103 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: -54.605347,5.644577 + parent: 2 +- proto: FoodSnackEnergy + entities: + - uid: 15827 + components: + - type: Transform + pos: -127.5256,48.520927 + parent: 2 + - uid: 38031 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSnackNutribrick + entities: + - uid: 23375 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28428 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28580 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSnackSyndi + entities: + - uid: 20590 + components: + - type: Transform + pos: -150.53448,105.59184 + parent: 2 +- proto: FoodTartGapple + entities: + - uid: 11745 + components: + - type: Transform + pos: -46.484566,96.610054 + parent: 2 + - uid: 25546 + components: + - type: Transform + pos: 5.4806013,177.65605 + parent: 2 +- proto: FoodTinBeans + entities: + - uid: 1590 + components: + - type: Transform + parent: 1589 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTinMRE + entities: + - uid: 4776 + components: + - type: Transform + pos: -57.533043,12.764664 + parent: 2 +- proto: FoodTinPeaches + entities: + - uid: 4529 + components: + - type: Transform + pos: -70.749084,149.68036 + parent: 2 +- proto: FoodWatermelonSlice + entities: + - uid: 15472 + components: + - type: Transform + pos: -3.716236,69.83449 + parent: 2 + - uid: 36204 + components: + - type: Transform + pos: -3.513111,69.67824 + parent: 2 +- proto: Fork + entities: + - uid: 616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.51474,63.726105 + parent: 2 + - uid: 6411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.51474,63.726105 + parent: 2 +- proto: ForkPlastic + entities: + - uid: 1680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.51562,4.415097 + parent: 2 + - uid: 8701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.387856,26.058018 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 1072 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: -71.5,-9.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 20013 + components: + - type: Transform + pos: -79.5,148.5 + parent: 2 + - uid: 37045 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 36996 +- proto: GasFilter + entities: + - uid: 32174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,200.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9476 + - uid: 32176 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-46.5 + pos: -24.5,200.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9477 +- proto: GasMinerNitrogen + entities: + - uid: 8299 + components: + - type: Transform + pos: 90.5,14.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + pos: -57.5,15.5 + parent: 2 + - uid: 8709 + components: + - type: Transform + pos: -74.5,146.5 + parent: 2 + - uid: 8952 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,-46.5 + pos: 10.5,178.5 + parent: 2 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 4789 + components: + - type: Transform + pos: -110.5,15.5 + parent: 2 +- proto: GasMinerOxygen + entities: + - uid: 8300 + components: + - type: Transform + pos: -53.5,15.5 + parent: 2 + - uid: 8301 + components: + - type: Transform + pos: -74.5,144.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: 86.5,14.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,178.5 + parent: 2 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 27865 + components: + - type: Transform + pos: -106.5,15.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 1642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,60.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,19.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + targetPressure: 300 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,10.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + targetPressure: 300 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,22.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + targetPressure: 4500 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,173.5 + parent: 2 + - uid: 25497 + components: + - type: Transform + pos: 14.5,175.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + targetPressure: 102 + - type: AtmosPipeColor + color: '#9999FFFF' +- proto: GasMixerFlipped + entities: + - uid: 25500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,175.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + targetPressure: 300 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32248 + components: + - type: Transform + pos: -69.5,146.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + targetPressure: 300 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasOutletInjector + entities: + - uid: 12281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,15.5 + parent: 2 + - uid: 12298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,15.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,60.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 8250 + components: + - type: Transform + pos: -2.5,207.5 + parent: 2 + - uid: 9459 + components: + - type: Transform + pos: -56.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 10370 + components: + - type: Transform + pos: -54.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,16.5 + parent: 2 + - uid: 12312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,16.5 + parent: 2 + - uid: 12977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,148.5 + parent: 2 + - uid: 13544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,174.5 + parent: 2 + - uid: 16947 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 13386 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16948 + components: + - type: Transform + pos: -1.5,0.5 + parent: 13386 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 18034 + components: + - type: Transform + pos: 2.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 18077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 18101 + components: + - type: Transform + pos: -2.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 18109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 18121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 19003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9479 + - uid: 23718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-46.5 + pos: 12.5,178.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9480 + - uid: 25464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-46.5 + pos: 13.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25465 + components: + - type: Transform + pos: 11.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 27891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31792 + components: + - type: Transform + pos: -55.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9481 + - uid: 31907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-46.5 + rot: 3.141592653589793 rad + pos: 91.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9482 + - uid: 31910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-46.5 + rot: 3.141592653589793 rad + pos: 86.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,147.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9483 + - uid: 32243 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,-46.5 + pos: -73.5,146.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 37903 + components: + - type: Transform + pos: -95.5,176.5 + parent: 2 + - uid: 37938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 37842 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 37842 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeBend + entities: + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,61.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: 38.5,60.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 37.5,61.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3098 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3123 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3152 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3266 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3767 + components: + - type: Transform + pos: -64.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,93.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9484 + - uid: 5146 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-46.5 + pos: 9.5,201.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9486 + - uid: 5677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-46.5 + rot: 3.141592653589793 rad + pos: 88.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 5976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9487 + - uid: 6292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9488 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9492 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9494 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9502 - components: - - type: Transform - pos: 13.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 9503 - components: - - type: Transform - pos: 13.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 9563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-46.5 + rot: -1.5707963267948966 rad + pos: -98.5,36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9568 + - uid: 6452 + components: + - type: Transform + pos: -57.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7413 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,-44.5 + pos: -106.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9569 + color: '#17E8E2FF' + - uid: 7647 components: - type: Transform - pos: 72.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9570 - components: - - type: Transform - pos: 72.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9571 - components: - - type: Transform - pos: 70.5,-45.5 + rot: -1.5707963267948966 rad + pos: 12.5,171.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9572 - components: - - type: Transform - pos: 70.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9573 - components: - - type: Transform - pos: 70.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9574 - components: - - type: Transform - pos: 70.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9576 - components: - - type: Transform - pos: 72.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9577 - components: - - type: Transform - pos: 72.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9603 - components: - - type: Transform - pos: 13.5,-80.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 9607 + - uid: 8371 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-47.5 + pos: 53.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9710 + - uid: 8434 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9899 - components: - - type: Transform - pos: 12.5,-53.5 + pos: 52.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9920 + - uid: 8442 components: - type: Transform - pos: 13.5,-76.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 9991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-68.5 + pos: 55.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9993 + - uid: 9553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10093 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-56.5 + pos: -65.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,98.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 10127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-56.5 + pos: -41.5,84.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10206 + color: '#0000FFFF' + - uid: 10346 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10581 - components: - - type: Transform - pos: -16.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10582 - components: - - type: Transform - pos: -16.5,-71.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10618 - components: - - type: Transform - pos: 13.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10623 - components: - - type: Transform - pos: 13.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10708 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10871 - components: - - type: Transform - pos: 4.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10895 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10960 - components: - - type: Transform - pos: 13.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 10982 - components: - - type: Transform - pos: 65.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11063 - components: - - type: Transform - pos: 66.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11089 - components: - - type: Transform - pos: 70.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-84.5 - parent: 2 - - uid: 11210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11515 - components: - - type: Transform - pos: 62.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11782 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11993 - components: - - type: Transform - pos: 10.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12043 - components: - - type: Transform - pos: 12.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 12050 - components: - - type: Transform - pos: 12.5,-80.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12053 - components: - - type: Transform - pos: 11.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13109 - components: - - type: Transform - pos: 12.5,-71.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 13195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13369 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-88.5 - parent: 2 - - uid: 13703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13723 - components: - - type: Transform - pos: -25.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-86.5 - parent: 2 - - uid: 13751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13878 - components: - - type: Transform - pos: 12.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-48.5 + pos: -54.5,10.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 14005 + - uid: 11250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-46.5 + pos: -2.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,20.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 14006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14007 + - uid: 12259 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-44.5 + pos: -110.5,20.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 14017 - components: - - type: Transform - pos: 11.5,-77.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14019 + - uid: 12598 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-78.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-67.5 + pos: -79.5,151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14027 - components: - - type: Transform - pos: 12.5,-79.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14028 + color: '#0000FFFF' + - uid: 12606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-78.5 + rot: 3.141592653589793 rad + pos: -95.5,175.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 14044 + - uid: 13397 components: - type: Transform - pos: 11.5,-76.5 + rot: 3.141592653589793 rad + pos: -119.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14059 + color: '#0000FFFF' + - uid: 13445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-35.5 + rot: 1.5707963267948966 rad + pos: -34.5,105.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14066 + color: '#0000FFFF' + - uid: 13679 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-35.5 + pos: 1.5,66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14110 + - uid: 14164 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,9.5 + pos: -104.5,27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14111 + - uid: 14197 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-67.5 + pos: 82.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14117 + - uid: 17379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + rot: 3.141592653589793 rad + pos: -46.5,98.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14121 - components: - - type: Transform - pos: 4.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14128 + - uid: 17459 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,6.5 + pos: -77.5,111.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14261 + - uid: 17463 components: - type: Transform - pos: 16.5,-48.5 + rot: 1.5707963267948966 rad + pos: -76.5,110.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-78.5 - parent: 2 - - uid: 14305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-76.5 - parent: 2 - - uid: 14332 + color: '#FF0000FF' + - uid: 18715 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,43.5 + pos: -107.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14333 + - uid: 19409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,43.5 + pos: 87.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-76.5 - parent: 2 - - uid: 14336 + - uid: 19412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,38.5 + pos: 89.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14337 + - uid: 19665 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,45.5 + pos: 87.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14338 + - uid: 19666 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,45.5 + pos: 88.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-78.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14340 + - uid: 19668 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-10.5 + pos: 89.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14343 + - uid: 19669 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-14.5 + pos: 87.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14344 + - uid: 19670 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-22.5 + pos: 88.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14346 + - uid: 19678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-2.5 + rot: -1.5707963267948966 rad + pos: 87.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14347 + - uid: 19679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,0.5 + rot: 1.5707963267948966 rad + pos: 87.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14348 + - uid: 19689 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,1.5 + rot: -1.5707963267948966 rad + pos: 88.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14349 + - uid: 19840 components: - type: Transform - pos: 57.5,-21.5 + rot: 1.5707963267948966 rad + pos: 88.5,58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14351 + - uid: 19939 components: - type: Transform - pos: 23.5,1.5 + pos: 115.5,48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14352 + - uid: 20199 components: - type: Transform - pos: 23.5,2.5 + rot: -1.5707963267948966 rad + pos: 115.5,58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14355 - components: - - type: Transform - pos: 25.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14356 + - uid: 20200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-22.5 + rot: -1.5707963267948966 rad + pos: 101.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14357 + - uid: 20623 components: - type: Transform - pos: 71.5,-25.5 + rot: -1.5707963267948966 rad + pos: -69.5,158.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14360 + - uid: 20626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 + rot: 1.5707963267948966 rad + pos: -69.5,161.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14361 + - uid: 20958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-4.5 + pos: -72.5,154.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14362 + - uid: 21386 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14363 - components: - - type: Transform - pos: 58.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-25.5 + pos: 66.5,47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14366 + - uid: 21387 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,32.5 + pos: 76.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14367 + - uid: 21398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,0.5 + rot: 1.5707963267948966 rad + pos: 69.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14368 + color: '#FF0000FF' + - uid: 21399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,32.5 + pos: 73.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14369 + - uid: 21412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-3.5 + pos: -118.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14370 + - uid: 21819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,1.5 + pos: -88.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14371 + - uid: 22435 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14372 - components: - - type: Transform - pos: -12.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-17.5 + pos: 72.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14390 + - uid: 22472 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,37.5 + pos: 58.5,62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14393 + - uid: 22479 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-57.5 + pos: 70.5,58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14394 + - uid: 22516 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-48.5 + pos: 70.5,66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14395 + - uid: 22529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-48.5 + pos: 72.5,67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14396 + color: '#0000FFFF' + - uid: 22972 components: - type: Transform - pos: 7.5,36.5 + pos: 83.5,65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14397 + color: '#0000FFFF' + - uid: 23054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-31.5 + pos: 82.5,66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14402 + - uid: 23093 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-74.5 + pos: 55.5,65.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14417 + - uid: 23100 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14420 - components: - - type: Transform - pos: 3.5,-64.5 + pos: 54.5,64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14443 - components: - - type: Transform - pos: 17.5,-69.5 - parent: 2 - - uid: 14445 - components: - - type: Transform - pos: 19.5,-69.5 - parent: 2 - - uid: 14447 - components: - - type: Transform - pos: 12.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 14451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14452 + - uid: 23101 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-8.5 + pos: 55.5,64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-34.5 - parent: 2 - - uid: 14455 + - uid: 23177 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-11.5 + pos: -28.5,178.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14460 + - uid: 23181 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-6.5 + pos: -29.5,179.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14461 + color: '#FF0000FF' + - uid: 23182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-0.5 + pos: -24.5,179.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14462 + color: '#FF0000FF' + - uid: 23257 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,-9.5 + pos: 53.5,65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14463 + - uid: 23276 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,-8.5 + pos: 54.5,66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14464 + color: '#0000FFFF' + - uid: 23277 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,-9.5 + pos: 55.5,67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14465 + - uid: 23278 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-24.5 + rot: -1.5707963267948966 rad + pos: 54.5,65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14467 + - uid: 23279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-22.5 + rot: -1.5707963267948966 rad + pos: 55.5,66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14470 + - uid: 23391 components: - type: Transform - pos: 46.5,2.5 + pos: 63.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14471 + color: '#FF0000FF' + - uid: 23558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,3.5 + pos: 62.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14472 + - uid: 26228 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14473 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14478 - components: - - type: Transform - pos: 0.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14479 - components: - - type: Transform - pos: 8.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14480 - components: - - type: Transform - pos: -27.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14486 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14490 - components: - - type: Transform - pos: -27.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14491 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14493 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14496 - components: - - type: Transform - pos: 71.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14497 - components: - - type: Transform - pos: 25.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14504 - components: - - type: Transform - pos: 18.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14505 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14511 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14514 - components: - - type: Transform - pos: -8.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14515 - components: - - type: Transform - pos: -8.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14516 - components: - - type: Transform - pos: -8.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14536 - components: - - type: Transform - pos: 71.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14539 - components: - - type: Transform - pos: 63.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14540 - components: - - type: Transform - pos: 63.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14541 - components: - - type: Transform - pos: 25.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14543 - components: - - type: Transform - pos: 63.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14544 - components: - - type: Transform - pos: 46.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14546 - components: - - type: Transform - pos: 12.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 14547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14550 - components: - - type: Transform - pos: -10.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14551 - components: - - type: Transform - pos: -12.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14552 - components: - - type: Transform - pos: -13.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14553 - components: - - type: Transform - pos: 63.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14554 - components: - - type: Transform - pos: -13.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14555 - components: - - type: Transform - pos: -12.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14559 - components: - - type: Transform - pos: -22.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14560 - components: - - type: Transform - pos: 63.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-76.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 14562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14569 - components: - - type: Transform - pos: -6.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14571 - components: - - type: Transform - pos: -1.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14573 - components: - - type: Transform - pos: -6.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14574 - components: - - type: Transform - pos: -6.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14575 - components: - - type: Transform - pos: -6.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14576 - components: - - type: Transform - pos: -6.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14577 - components: - - type: Transform - pos: -6.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14584 - components: - - type: Transform - pos: 36.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14595 - components: - - type: Transform - pos: 58.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14600 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14606 - components: - - type: Transform - pos: 16.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14608 - components: - - type: Transform - pos: 58.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14613 - components: - - type: Transform - pos: 76.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14614 - components: - - type: Transform - pos: 76.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14615 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14619 - components: - - type: Transform - pos: 79.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14625 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14626 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14629 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14630 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14647 - components: - - type: Transform - pos: 35.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14648 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14662 - components: - - type: Transform - pos: 82.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14663 - components: - - type: Transform - pos: 82.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14664 - components: - - type: Transform - pos: 82.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14665 - components: - - type: Transform - pos: 82.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14666 - components: - - type: Transform - pos: 82.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14667 - components: - - type: Transform - pos: 82.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14674 - components: - - type: Transform - pos: 40.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14675 - components: - - type: Transform - pos: 40.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14679 - components: - - type: Transform - pos: 48.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14680 - components: - - type: Transform - pos: -12.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14686 - components: - - type: Transform - pos: -14.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14692 - components: - - type: Transform - pos: 35.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14700 - components: - - type: Transform - pos: -27.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14702 - components: - - type: Transform - pos: -27.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14704 - components: - - type: Transform - pos: -27.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14706 - components: - - type: Transform - pos: 35.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14766 - components: - - type: Transform - pos: 3.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14778 - components: - - type: Transform - pos: -38.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14779 - components: - - type: Transform - pos: -38.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14781 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14784 - components: - - type: Transform - pos: -43.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14803 - components: - - type: Transform - pos: 26.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14840 - components: - - type: Transform - pos: 22.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14849 - components: - - type: Transform - pos: 22.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14861 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14865 - components: - - type: Transform - pos: -0.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14866 - components: - - type: Transform - pos: -0.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14867 - components: - - type: Transform - pos: 36.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14868 - components: - - type: Transform - pos: -0.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14869 - components: - - type: Transform - pos: -0.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14870 - components: - - type: Transform - pos: -0.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14873 - components: - - type: Transform - pos: -0.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14874 - components: - - type: Transform - pos: -0.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-33.5 - parent: 2 - - uid: 14876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14877 - components: - - type: Transform - pos: -2.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14878 - components: - - type: Transform - pos: -2.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14879 - components: - - type: Transform - pos: -2.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14880 - components: - - type: Transform - pos: -2.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14881 - components: - - type: Transform - pos: -2.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14882 - components: - - type: Transform - pos: -2.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14884 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14895 - components: - - type: Transform - pos: 67.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14901 - components: - - type: Transform - pos: 8.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14902 - components: - - type: Transform - pos: 65.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14903 - components: - - type: Transform - pos: 67.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14907 - components: - - type: Transform - pos: 67.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14914 - components: - - type: Transform - pos: 67.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14917 - components: - - type: Transform - pos: 57.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14918 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14925 - components: - - type: Transform - pos: 35.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14926 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14928 - components: - - type: Transform - pos: 23.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14929 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14930 - components: - - type: Transform - pos: 70.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14935 - components: - - type: Transform - pos: -14.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14938 - components: - - type: Transform - pos: 23.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14941 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14942 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14943 - components: - - type: Transform - pos: -14.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14969 - components: - - type: Transform - pos: 20.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-66.5 - parent: 2 - - uid: 14972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-62.5 - parent: 2 - - uid: 14997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15015 - components: - - type: Transform - pos: 4.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15016 - components: - - type: Transform - pos: 5.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15017 - components: - - type: Transform - pos: 5.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15018 - components: - - type: Transform - pos: 5.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15028 - components: - - type: Transform - pos: -1.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15029 - components: - - type: Transform - pos: -1.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15030 - components: - - type: Transform - pos: -1.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15031 - components: - - type: Transform - pos: -1.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15032 - components: - - type: Transform - pos: 0.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15033 - components: - - type: Transform - pos: 0.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15034 - components: - - type: Transform - pos: 0.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15035 - components: - - type: Transform - pos: 0.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15036 - components: - - type: Transform - pos: -1.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15037 - components: - - type: Transform - pos: 0.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15038 - components: - - type: Transform - pos: 0.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15039 - components: - - type: Transform - pos: 0.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15040 - components: - - type: Transform - pos: -1.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15041 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15042 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15043 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15044 - components: - - type: Transform - pos: 0.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15049 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15056 - components: - - type: Transform - pos: -5.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15057 - components: - - type: Transform - pos: -7.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15058 - components: - - type: Transform - pos: -7.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15059 - components: - - type: Transform - pos: -7.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15060 - components: - - type: Transform - pos: -5.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15061 - components: - - type: Transform - pos: -5.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15062 - components: - - type: Transform - pos: -5.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15068 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15070 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15072 - components: - - type: Transform - pos: 8.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15073 - components: - - type: Transform - pos: 8.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15074 - components: - - type: Transform - pos: 8.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15075 - components: - - type: Transform - pos: 8.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15076 - components: - - type: Transform - pos: 8.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15081 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15086 - components: - - type: Transform - pos: 7.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15087 - components: - - type: Transform - pos: 7.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15088 - components: - - type: Transform - pos: 8.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15089 - components: - - type: Transform - pos: 8.5,-70.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15090 - components: - - type: Transform - pos: 9.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15091 - components: - - type: Transform - pos: 9.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15092 - components: - - type: Transform - pos: 9.5,-70.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15096 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-71.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-71.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-72.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-72.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15163 - components: - - type: Transform - pos: -1.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15164 - components: - - type: Transform - pos: -1.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15165 - components: - - type: Transform - pos: -1.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15166 - components: - - type: Transform - pos: -1.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15167 - components: - - type: Transform - pos: -1.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15168 - components: - - type: Transform - pos: 0.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15169 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15170 - components: - - type: Transform - pos: 0.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15171 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15172 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15244 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15251 - components: - - type: Transform - pos: -54.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15252 - components: - - type: Transform - pos: -54.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15253 - components: - - type: Transform - pos: -54.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15254 - components: - - type: Transform - pos: -54.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15255 - components: - - type: Transform - pos: -54.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15264 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15275 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15312 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15319 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15331 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15332 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15333 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15334 - components: - - type: Transform - pos: 14.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15335 - components: - - type: Transform - pos: 14.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15336 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15337 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15338 - components: - - type: Transform - pos: 14.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15339 - components: - - type: Transform - pos: 14.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15340 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15341 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15342 - components: - - type: Transform - pos: 14.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15343 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15344 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15345 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15346 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15347 - components: - - type: Transform - pos: 14.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15348 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15349 - components: - - type: Transform - pos: 14.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15350 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15351 - components: - - type: Transform - pos: 14.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15352 - components: - - type: Transform - pos: 14.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15353 - components: - - type: Transform - pos: 14.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15354 - components: - - type: Transform - pos: 14.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15365 - components: - - type: Transform - pos: -63.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15384 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15386 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15388 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15400 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15431 - components: - - type: Transform - pos: -53.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15432 - components: - - type: Transform - pos: -53.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15438 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15454 - components: - - type: Transform - rot: 3.141592653589793 rad pos: -63.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15455 + - uid: 26309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 27825 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-9.5 + pos: -103.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,206.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15456 + - uid: 31221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31550 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-11.5 + pos: -20.5,204.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15457 + - uid: 31562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31637 + components: + - type: Transform + pos: -4.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31638 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-12.5 + pos: -4.5,211.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15458 + - uid: 31643 + components: + - type: Transform + pos: -0.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31644 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-13.5 + pos: -0.5,210.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15459 + - uid: 31649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-4.5 + pos: 4.5,210.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15460 + - uid: 31650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-4.5 + pos: 5.5,209.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15461 + - uid: 31651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-4.5 + pos: 6.5,208.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15462 + - uid: 31652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-4.5 + rot: 3.141592653589793 rad + pos: 4.5,209.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15463 + - uid: 31653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-4.5 + rot: 3.141592653589793 rad + pos: 5.5,208.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15464 + - uid: 31659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-4.5 + rot: 3.141592653589793 rad + pos: 7.5,203.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15465 + - uid: 31660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-4.5 + rot: 3.141592653589793 rad + pos: 8.5,202.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15466 + - uid: 31661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-4.5 + pos: 7.5,204.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15467 + - uid: 31662 components: - type: Transform - pos: -53.5,-3.5 + pos: 8.5,203.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15468 + - uid: 31671 + components: + - type: Transform + pos: 17.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31740 + components: + - type: Transform + pos: 17.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31757 + components: + - type: Transform + pos: 22.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31762 + components: + - type: Transform + pos: 24.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31782 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,9.5 + pos: 24.5,186.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15469 + color: '#FF0000FF' + - uid: 31812 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,-14.5 + pos: 22.5,176.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15470 + color: '#FF0000FF' + - uid: 31830 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-2.5 + pos: 21.5,180.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15471 + - uid: 31895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31896 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-2.5 + pos: 92.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15472 + color: '#FF0000FF' + - uid: 31901 + components: + - type: Transform + pos: 92.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31915 + components: + - type: Transform + pos: 90.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31977 + components: + - type: Transform + pos: 14.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31985 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-2.5 + pos: 10.5,172.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15473 + - uid: 31986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 31995 + components: + - type: Transform + pos: -23.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32019 + components: + - type: Transform + pos: -12.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32086 + components: + - type: Transform + pos: -16.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32127 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-2.5 + pos: 18.5,172.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15474 + color: '#9999FFFF' + - uid: 32167 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-2.5 + pos: -23.5,190.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15475 + - uid: 32183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 32219 + components: + - type: Transform + pos: -93.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 32227 + components: + - type: Transform + pos: 18.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32258 + components: + - type: Transform + pos: -69.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32261 + components: + - type: Transform + pos: -70.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33272 + components: + - type: Transform + pos: -116.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33284 + components: + - type: Transform + pos: -115.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -98.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33436 + components: + - type: Transform + pos: -73.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33449 + components: + - type: Transform + pos: -81.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33576 + components: + - type: Transform + pos: -50.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33599 + components: + - type: Transform + pos: -69.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33630 + components: + - type: Transform + pos: -63.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33685 + components: + - type: Transform + pos: -70.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33692 + components: + - type: Transform + pos: -68.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33717 + components: + - type: Transform + pos: -76.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33718 + components: + - type: Transform + pos: -74.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34257 + components: + - type: Transform + pos: 7.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34279 + components: + - type: Transform + pos: -1.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34379 + components: + - type: Transform + pos: -8.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35619 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36096 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15478 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15482 + color: '#FF0000FF' + - uid: 36100 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15486 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15487 - components: - - type: Transform - pos: 0.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15488 - components: - - type: Transform - pos: 0.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15489 - components: - - type: Transform - pos: 0.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15490 - components: - - type: Transform - pos: 0.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15491 - components: - - type: Transform - pos: 0.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15492 - components: - - type: Transform - pos: 0.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15493 - components: - - type: Transform - pos: 0.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15495 - components: - - type: Transform - pos: 0.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15496 - components: - - type: Transform - pos: 0.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15497 - components: - - type: Transform - pos: 0.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15498 - components: - - type: Transform - pos: 0.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15499 - components: - - type: Transform - pos: 0.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15500 - components: - - type: Transform - pos: 0.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15501 - components: - - type: Transform - pos: 0.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15505 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15512 - components: - - type: Transform - pos: 16.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15513 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15514 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15515 - components: - - type: Transform - pos: 16.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15516 - components: - - type: Transform - pos: 16.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15517 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15518 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15519 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15520 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15521 - components: - - type: Transform - pos: 16.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-12.5 + pos: -7.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15523 + - uid: 36132 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36313 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38394 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-12.5 + pos: -86.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeFourway + entities: + - uid: 7530 + components: + - type: Transform + pos: -107.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8160 + components: + - type: Transform + pos: -67.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8161 + components: + - type: Transform + pos: -54.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8234 + components: + - type: Transform + pos: 77.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8235 + components: + - type: Transform + pos: 72.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8236 + components: + - type: Transform + pos: 82.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8238 + components: + - type: Transform + pos: 76.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8246 + components: + - type: Transform + pos: 65.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8988 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8989 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13313 + components: + - type: Transform + pos: -2.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16552 + components: + - type: Transform + pos: -68.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19583 + components: + - type: Transform + pos: 82.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19596 + components: + - type: Transform + pos: 70.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22562 + components: + - type: Transform + pos: -18.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31343 + components: + - type: Transform + pos: -98.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31390 + components: + - type: Transform + pos: -97.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32528 + components: + - type: Transform + pos: -78.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32670 + components: + - type: Transform + pos: -63.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33158 + components: + - type: Transform + pos: -104.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeHalf + entities: + - uid: 4080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 5070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 12249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 28966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' +- proto: GasPipeStraight + entities: + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,102.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 981 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,61.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,61.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,61.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3050 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 3063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3099 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3134 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3142 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3143 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3145 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3146 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3148 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3155 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3230 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3231 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3232 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3233 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3234 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3235 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3236 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3242 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3262 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4244 + components: + - type: Transform + pos: -68.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 4316 + components: + - type: Transform + pos: -103.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 4323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 4535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 4725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 5032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 5075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 5093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 5422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 5725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5785 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5822 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6092 + components: + - type: Transform + pos: -97.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 6852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 7131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7637 + components: + - type: Transform + pos: -59.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8358 + components: + - type: Transform + pos: 52.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8418 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8419 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8441 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 8731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10372 + components: + - type: Transform + pos: -65.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12064 + components: + - type: Transform + pos: -80.5,150.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12262 + components: + - type: Transform + pos: -110.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,16.5 + parent: 2 + - uid: 12287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12294 + components: + - type: Transform + pos: -103.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,17.5 + parent: 2 + - uid: 12302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,17.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,17.5 + parent: 2 + - uid: 12306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,17.5 + parent: 2 + - uid: 12311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,16.5 + parent: 2 + - uid: 12515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,175.5 + parent: 2 + - uid: 12588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,175.5 + parent: 2 + - uid: 12589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,175.5 + parent: 2 + - uid: 12590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,175.5 + parent: 2 + - uid: 12601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12815 + components: + - type: Transform + pos: -103.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 13170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13232 + components: + - type: Transform + pos: -4.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,146.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 13470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14004 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 14157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 14418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14615 + components: + - type: Transform + pos: -67.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,102.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,110.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14877 + components: + - type: Transform + pos: -67.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 15379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 15524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15528 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15538 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-14.5 + pos: -79.5,153.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 15559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-12.5 + rot: 3.141592653589793 rad + pos: -65.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 15592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-12.5 + rot: 3.141592653589793 rad + pos: -59.5,96.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 15594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-12.5 + rot: 3.141592653589793 rad + pos: -59.5,100.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -113906,13003 +105855,94 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-12.5 + pos: -70.5,105.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 15640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15660 - components: - - type: Transform - pos: -21.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15661 - components: - - type: Transform - pos: -21.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15662 - components: - - type: Transform - pos: -21.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15663 - components: - - type: Transform - pos: -22.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15664 - components: - - type: Transform - pos: -22.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15665 - components: - - type: Transform - pos: -22.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15666 - components: - - type: Transform - pos: -22.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15667 - components: - - type: Transform - pos: -21.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15668 - components: - - type: Transform - pos: -22.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15676 - components: - - type: Transform - pos: -28.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15677 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15690 - components: - - type: Transform - pos: -39.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15691 - components: - - type: Transform - pos: -39.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15692 - components: - - type: Transform - pos: -39.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15696 - components: - - type: Transform - pos: 70.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15715 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15725 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15786 - components: - - type: Transform - pos: 12.5,-70.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 15787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15792 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15793 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15794 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15796 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15797 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15798 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15799 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15800 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15801 - components: - - type: Transform - pos: 7.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15802 - components: - - type: Transform - pos: 7.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15803 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15804 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15805 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15806 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15807 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15808 - components: - - type: Transform - pos: 7.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15809 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15810 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15811 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15812 - components: - - type: Transform - pos: 7.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15813 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15814 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15815 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15816 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15817 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15824 - components: - - type: Transform - pos: -8.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15825 - components: - - type: Transform - pos: -8.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15826 - components: - - type: Transform - pos: -8.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15827 - components: - - type: Transform - pos: -8.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15828 - components: - - type: Transform - pos: -7.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15829 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15830 - components: - - type: Transform - pos: -8.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15831 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15832 - components: - - type: Transform - pos: -7.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15833 - components: - - type: Transform - pos: -7.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15834 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15835 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15836 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15837 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15838 - components: - - type: Transform - pos: 9.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15839 - components: - - type: Transform - pos: 8.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15840 - components: - - type: Transform - pos: 8.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15841 - components: - - type: Transform - pos: 9.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15842 - components: - - type: Transform - pos: 9.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15843 - components: - - type: Transform - pos: 9.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15844 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15845 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15846 - components: - - type: Transform - pos: 9.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15847 - components: - - type: Transform - pos: 8.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15848 - components: - - type: Transform - pos: 8.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15849 - components: - - type: Transform - pos: 8.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15854 - components: - - type: Transform - pos: 8.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15855 - components: - - type: Transform - pos: 9.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15856 - components: - - type: Transform - pos: 8.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15859 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15861 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15865 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15879 - components: - - type: Transform - pos: 10.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15911 - components: - - type: Transform - pos: 12.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15913 - components: - - type: Transform - pos: 13.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15914 - components: - - type: Transform - pos: 13.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15915 - components: - - type: Transform - pos: 13.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15925 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15931 - components: - - type: Transform - pos: 10.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15951 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15954 - components: - - type: Transform - pos: 25.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15955 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15956 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15957 - components: - - type: Transform - pos: 20.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15967 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15968 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15969 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15970 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15983 - components: - - type: Transform - pos: 58.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15984 - components: - - type: Transform - pos: 36.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15985 - components: - - type: Transform - pos: 36.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15986 - components: - - type: Transform - pos: 36.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15987 - components: - - type: Transform - pos: 36.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15988 - components: - - type: Transform - pos: 36.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15989 - components: - - type: Transform - pos: 36.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15990 - components: - - type: Transform - pos: 25.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15991 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15992 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15993 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15994 - components: - - type: Transform - pos: 25.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15995 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15996 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15997 - components: - - type: Transform - pos: 25.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15998 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15999 - components: - - type: Transform - pos: 34.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16000 - components: - - type: Transform - pos: 34.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16001 - components: - - type: Transform - pos: 34.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16002 - components: - - type: Transform - pos: 34.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16003 - components: - - type: Transform - pos: 34.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16004 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16005 - components: - - type: Transform - pos: 34.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16006 - components: - - type: Transform - pos: 34.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16007 - components: - - type: Transform - pos: 34.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16015 - components: - - type: Transform - pos: 35.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16016 - components: - - type: Transform - pos: 35.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16017 - components: - - type: Transform - pos: 35.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16018 - components: - - type: Transform - pos: 35.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16019 - components: - - type: Transform - pos: 35.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16020 - components: - - type: Transform - pos: 35.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16021 - components: - - type: Transform - pos: 35.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16022 - components: - - type: Transform - pos: 35.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16023 - components: - - type: Transform - pos: 35.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16024 - components: - - type: Transform - pos: 26.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16025 - components: - - type: Transform - pos: 26.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16026 - components: - - type: Transform - pos: 26.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16027 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16028 - components: - - type: Transform - pos: 26.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16029 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16030 - components: - - type: Transform - pos: 26.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16031 - components: - - type: Transform - pos: 26.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16032 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16034 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16035 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16037 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16039 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16053 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16054 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16055 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16069 - components: - - type: Transform - pos: 39.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16070 - components: - - type: Transform - pos: 39.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16071 - components: - - type: Transform - pos: 39.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16072 - components: - - type: Transform - pos: 39.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16073 - components: - - type: Transform - pos: 39.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16075 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16078 - components: - - type: Transform - pos: 26.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16079 - components: - - type: Transform - pos: 26.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16080 - components: - - type: Transform - pos: 26.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16081 - components: - - type: Transform - pos: 26.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16082 - components: - - type: Transform - pos: 25.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16083 - components: - - type: Transform - pos: 25.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16096 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16097 - components: - - type: Transform - pos: 25.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16098 - components: - - type: Transform - pos: 25.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16099 - components: - - type: Transform - pos: 25.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16100 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16101 - components: - - type: Transform - pos: 26.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16102 - components: - - type: Transform - pos: 26.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16103 - components: - - type: Transform - pos: 26.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16104 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16130 - components: - - type: Transform - pos: 35.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16131 - components: - - type: Transform - pos: 35.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16132 - components: - - type: Transform - pos: 35.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16133 - components: - - type: Transform - pos: 35.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16134 - components: - - type: Transform - pos: 35.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16138 - components: - - type: Transform - pos: 39.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16147 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16165 - components: - - type: Transform - pos: 8.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16197 - components: - - type: Transform - pos: 39.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16198 - components: - - type: Transform - pos: 41.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16199 - components: - - type: Transform - pos: 41.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16200 - components: - - type: Transform - pos: 41.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16201 - components: - - type: Transform - pos: 39.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16202 - components: - - type: Transform - pos: 41.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16203 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16207 - components: - - type: Transform - pos: 43.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16208 - components: - - type: Transform - pos: 43.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16209 - components: - - type: Transform - pos: 43.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16210 - components: - - type: Transform - pos: 46.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16211 - components: - - type: Transform - pos: 46.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16212 - components: - - type: Transform - pos: 46.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16221 - components: - - type: Transform - pos: 44.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16222 - components: - - type: Transform - pos: 44.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16231 - components: - - type: Transform - pos: 44.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16232 - components: - - type: Transform - pos: 43.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16271 - components: - - type: Transform - pos: 65.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16289 - components: - - type: Transform - pos: 66.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16290 - components: - - type: Transform - pos: 65.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16291 - components: - - type: Transform - pos: 66.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16292 - components: - - type: Transform - pos: 65.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16293 - components: - - type: Transform - pos: 66.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16294 - components: - - type: Transform - pos: 65.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16295 - components: - - type: Transform - pos: 66.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16296 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16298 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16301 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-28.5 - parent: 2 - - uid: 16305 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16306 - components: - - type: Transform - pos: 61.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16307 - components: - - type: Transform - pos: 61.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16308 - components: - - type: Transform - pos: 62.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16309 - components: - - type: Transform - pos: 55.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16310 - components: - - type: Transform - pos: 55.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16311 - components: - - type: Transform - pos: 56.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16312 - components: - - type: Transform - pos: 56.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16313 - components: - - type: Transform - pos: 56.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16316 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16318 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16319 - components: - - type: Transform - pos: 61.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16320 - components: - - type: Transform - pos: 61.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16321 - components: - - type: Transform - pos: 62.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16322 - components: - - type: Transform - pos: 62.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16323 - components: - - type: Transform - pos: 62.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16337 - components: - - type: Transform - pos: 66.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16338 - components: - - type: Transform - pos: 65.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16339 - components: - - type: Transform - pos: 66.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16350 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16367 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16384 - components: - - type: Transform - pos: 58.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16395 - components: - - type: Transform - pos: 62.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16397 - components: - - type: Transform - pos: 61.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 16400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16409 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16415 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16444 - components: - - type: Transform - pos: -50.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16445 - components: - - type: Transform - pos: -50.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16446 - components: - - type: Transform - pos: -51.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16447 - components: - - type: Transform - pos: -50.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16448 - components: - - type: Transform - pos: -51.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16449 - components: - - type: Transform - pos: -50.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16450 - components: - - type: Transform - pos: -51.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16451 - components: - - type: Transform - pos: -50.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16452 - components: - - type: Transform - pos: -51.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16453 - components: - - type: Transform - pos: -50.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16481 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16482 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16483 - components: - - type: Transform - pos: -32.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16484 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16485 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16486 - components: - - type: Transform - pos: -32.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16487 - components: - - type: Transform - pos: -27.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16488 - components: - - type: Transform - pos: -27.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16489 - components: - - type: Transform - pos: -27.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16490 - components: - - type: Transform - pos: -26.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16491 - components: - - type: Transform - pos: -26.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16492 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16493 - components: - - type: Transform - pos: -26.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16494 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16503 - components: - - type: Transform - pos: -22.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16504 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16505 - components: - - type: Transform - pos: -22.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16506 - components: - - type: Transform - pos: -22.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16507 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16508 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16509 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16510 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16520 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16555 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16584 - components: - - type: Transform - pos: 4.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16585 - components: - - type: Transform - pos: 6.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16586 - components: - - type: Transform - pos: 4.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16587 - components: - - type: Transform - pos: 4.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16600 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16602 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16610 - components: - - type: Transform - pos: -8.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16614 - components: - - type: Transform - pos: -8.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16620 - components: - - type: Transform - pos: -0.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16622 - components: - - type: Transform - pos: -6.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16625 - components: - - type: Transform - pos: -4.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16629 - components: - - type: Transform - pos: -4.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16633 - components: - - type: Transform - pos: -2.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16637 - components: - - type: Transform - pos: -14.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16638 - components: - - type: Transform - pos: -14.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16642 - components: - - type: Transform - pos: -0.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16643 - components: - - type: Transform - pos: 1.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16644 - components: - - type: Transform - pos: 2.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16645 - components: - - type: Transform - pos: 2.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16646 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16672 - components: - - type: Transform - pos: 7.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16673 - components: - - type: Transform - pos: 7.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16674 - components: - - type: Transform - pos: 7.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16676 - components: - - type: Transform - pos: 8.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16677 - components: - - type: Transform - pos: 8.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16678 - components: - - type: Transform - pos: 8.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16698 - components: - - type: Transform - pos: 57.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16700 - components: - - type: Transform - pos: 23.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16701 - components: - - type: Transform - pos: 23.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16702 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16703 - components: - - type: Transform - pos: 23.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16721 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16722 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16724 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16725 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16727 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-72.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-71.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-70.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-72.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-71.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-70.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16735 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-73.5 + pos: -59.5,94.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16741 + - uid: 16463 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-74.5 + pos: -3.5,67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16762 + - uid: 16465 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-84.5 - parent: 2 - - uid: 16763 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-91.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 16775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,36.5 + pos: -34.5,104.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 16782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16783 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 16786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,37.5 + pos: -76.5,93.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16816 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16822 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16843 - components: - - type: Transform - pos: -26.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16844 - components: - - type: Transform - pos: -26.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16845 - components: - - type: Transform - pos: -26.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16846 - components: - - type: Transform - pos: -26.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16847 - components: - - type: Transform - pos: -26.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16848 - components: - - type: Transform - pos: -27.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16849 - components: - - type: Transform - pos: -27.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16850 - components: - - type: Transform - pos: -27.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16859 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-90.5 - parent: 2 - - uid: 16863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-86.5 - parent: 2 - - uid: 16866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-88.5 - parent: 2 - - uid: 16873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16874 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-91.5 - parent: 2 - - uid: 16887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16894 - components: - - type: Transform - pos: -41.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16895 - components: - - type: Transform - pos: -41.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16896 - components: - - type: Transform - pos: -41.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16897 - components: - - type: Transform - pos: -41.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16898 - components: - - type: Transform - pos: -41.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16899 - components: - - type: Transform - pos: -41.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16916 - components: - - type: Transform - pos: 81.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16917 - components: - - type: Transform - pos: 81.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16918 - components: - - type: Transform - pos: 81.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16919 - components: - - type: Transform - pos: 81.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16920 - components: - - type: Transform - pos: 81.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16921 - components: - - type: Transform - pos: 81.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16922 - components: - - type: Transform - pos: 81.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16923 - components: - - type: Transform - pos: 81.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16924 - components: - - type: Transform - pos: 81.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16925 - components: - - type: Transform - pos: 81.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16926 - components: - - type: Transform - pos: 81.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16927 - components: - - type: Transform - pos: 81.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16928 - components: - - type: Transform - pos: 81.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16929 - components: - - type: Transform - pos: 81.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16930 - components: - - type: Transform - pos: 79.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16931 - components: - - type: Transform - pos: 79.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16932 - components: - - type: Transform - pos: 79.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16933 - components: - - type: Transform - pos: 79.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16934 - components: - - type: Transform - pos: 79.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16935 - components: - - type: Transform - pos: 79.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16936 - components: - - type: Transform - pos: 79.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16937 - components: - - type: Transform - pos: 79.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16938 - components: - - type: Transform - pos: 79.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16939 - components: - - type: Transform - pos: 79.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16940 - components: - - type: Transform - pos: 79.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16941 - components: - - type: Transform - pos: 79.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16942 - components: - - type: Transform - pos: 79.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 16943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-7.5 - parent: 2 + anchored: False + pos: -1.5,-3.5 + parent: 13386 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 16944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-7.5 - parent: 2 + pos: -1.5,-2.5 + parent: 13386 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 16945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-7.5 - parent: 2 + pos: -1.5,-1.5 + parent: 13386 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 16946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16947 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16948 - components: - - type: Transform - pos: 83.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16949 - components: - - type: Transform - pos: 83.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16950 - components: - - type: Transform - pos: 83.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16951 - components: - - type: Transform - pos: 83.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16952 - components: - - type: Transform - pos: 85.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16953 - components: - - type: Transform - pos: 85.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16954 - components: - - type: Transform - pos: 85.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16955 - components: - - type: Transform - pos: 85.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16956 - components: - - type: Transform - pos: 85.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16957 - components: - - type: Transform - pos: 67.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16958 - components: - - type: Transform - pos: 67.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16959 - components: - - type: Transform - pos: 67.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16960 - components: - - type: Transform - pos: 67.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16961 - components: - - type: Transform - pos: 67.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16962 - components: - - type: Transform - pos: 67.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16963 - components: - - type: Transform - pos: 67.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16964 - components: - - type: Transform - pos: 66.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16965 - components: - - type: Transform - pos: 66.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16966 - components: - - type: Transform - pos: 66.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16967 - components: - - type: Transform - pos: 66.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16968 - components: - - type: Transform - pos: 66.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16976 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-7.5 - parent: 2 + pos: -1.5,-0.5 + parent: 13386 - type: AtmosPipeColor color: '#0000FFFF' - uid: 16985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-7.5 + rot: -1.5707963267948966 rad + pos: -103.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16988 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' + color: '#17E8E2FF' - uid: 16989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17009 - components: - - type: Transform - pos: -22.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17010 - components: - - type: Transform - pos: -22.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17013 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17018 - components: - - type: Transform - pos: -22.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17019 - components: - - type: Transform - pos: -22.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17035 - components: - - type: Transform - pos: 4.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17113 - components: - - type: Transform - pos: 4.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17116 - components: - - type: Transform - pos: 12.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17298 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-91.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 17312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17453 - components: - - type: Transform - pos: 61.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17560 - components: - - type: Transform - pos: 20.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17802 - components: - - type: Transform - pos: -1.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17804 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17930 - components: - - type: Transform - pos: 20.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17986 - components: - - type: Transform - pos: 0.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18341 - components: - - type: Transform - pos: 24.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18419 - components: - - type: Transform - pos: 24.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-83.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 18427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-83.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 18433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-67.5 - parent: 2 - - uid: 18436 - components: - - type: Transform - pos: 18.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 18437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-64.5 - parent: 2 - - uid: 18810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18816 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18878 - components: - - type: Transform - pos: 34.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 19047 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 19156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 19229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-92.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-92.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-92.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 19256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19344 - components: - - type: Transform - pos: -64.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19651 - components: - - type: Transform - pos: 37.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19669 - components: - - type: Transform - pos: 37.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19688 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19691 - components: - - type: Transform - pos: 35.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19732 - components: - - type: Transform - pos: 20.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19759 - components: - - type: Transform - pos: 35.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19944 - components: - - type: Transform - pos: 31.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19960 - components: - - type: Transform - pos: 31.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19976 - components: - - type: Transform - pos: 29.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20020 - components: - - type: Transform - pos: 29.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20188 - components: - - type: Transform - pos: 20.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20575 - components: - - type: Transform - pos: 22.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20617 - components: - - type: Transform - pos: 24.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20687 - components: - - type: Transform - pos: 22.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20702 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21013 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21179 - components: - - type: Transform - pos: -23.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21249 - components: - - type: Transform - pos: 13.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21465 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21544 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21908 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21910 - components: - - type: Transform - pos: 0.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21912 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21913 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21914 - components: - - type: Transform - pos: -1.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21916 - components: - - type: Transform - pos: -1.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21917 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-91.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21952 - components: - - type: Transform - pos: -1.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22045 - components: - - type: Transform - pos: 13.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22087 - components: - - type: Transform - pos: 13.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22089 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22092 - components: - - type: Transform - pos: 13.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22104 - components: - - type: Transform - pos: 13.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22165 - components: - - type: Transform - pos: -70.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-85.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-87.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-89.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22916 - components: - - type: Transform - pos: -25.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23566 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-88.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24084 - components: - - type: Transform - pos: -25.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24086 - components: - - type: Transform - pos: -23.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-84.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 24455 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-83.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 24469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24835 - components: - - type: Transform - pos: 19.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25038 - components: - - type: Transform - pos: 18.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-91.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 25071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-91.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 25073 - components: - - type: Transform - pos: 13.5,-90.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 25074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-91.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 25077 - components: - - type: Transform - pos: 18.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 25241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-92.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25501 - components: - - type: Transform - pos: 1.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25502 - components: - - type: Transform - pos: 1.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25503 - components: - - type: Transform - pos: 0.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25512 - components: - - type: Transform - pos: 0.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25791 - components: - - type: Transform - pos: 4.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 26592 - components: - - type: Transform - pos: 20.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-91.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 26648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 27006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 27104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 27105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 27106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 27109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 27110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 27111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 27112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 27447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 27546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-90.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 27649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-92.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 27760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-82.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 28221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28249 - components: - - type: Transform - pos: -5.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28386 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-82.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28394 - components: - - type: Transform - pos: 13.5,-89.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 28401 - components: - - type: Transform - pos: -5.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-91.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 28564 - components: - - type: Transform - pos: -5.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-92.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28817 - components: - - type: Transform - pos: 13.5,-87.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 28818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-92.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28824 - components: - - type: Transform - pos: -5.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28836 - components: - - type: Transform - pos: -5.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28880 - components: - - type: Transform - pos: 13.5,-84.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 28881 - components: - - type: Transform - pos: 13.5,-85.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 28882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-84.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-86.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-92.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-92.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28904 - components: - - type: Transform - pos: -3.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 28910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-91.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 28920 - components: - - type: Transform - pos: -3.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 28940 - components: - - type: Transform - pos: 13.5,-88.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 28941 - components: - - type: Transform - pos: 13.5,-86.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 28988 - components: - - type: Transform - pos: -3.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29087 - components: - - type: Transform - pos: -3.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29090 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29572 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29585 - components: - - type: Transform - pos: -3.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29586 - components: - - type: Transform - pos: -3.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29587 - components: - - type: Transform - pos: -3.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29588 - components: - - type: Transform - pos: -5.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29589 - components: - - type: Transform - pos: -5.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29590 - components: - - type: Transform - pos: -5.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29607 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29615 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29617 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30014 - components: - - type: Transform - pos: 22.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30020 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30104 - components: - - type: Transform - pos: 29.5,36.5 - parent: 2 - - uid: 30105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,35.5 - parent: 2 - - uid: 30106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,35.5 - parent: 2 - - uid: 30121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30123 - components: - - type: Transform - pos: 27.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30126 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30393 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31377 - components: - - type: Transform - pos: 26.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31378 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31384 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31392 - components: - - type: Transform - pos: 25.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31690 - components: - - type: Transform - pos: -36.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31691 - components: - - type: Transform - pos: -36.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31692 - components: - - type: Transform - pos: -36.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31693 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31695 - components: - - type: Transform - pos: -38.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31696 - components: - - type: Transform - pos: -38.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31698 - components: - - type: Transform - pos: -41.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31699 - components: - - type: Transform - pos: -41.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31700 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31701 - components: - - type: Transform - pos: -41.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31702 - components: - - type: Transform - pos: -41.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31713 - components: - - type: Transform - pos: -43.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31714 - components: - - type: Transform - pos: -43.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31715 - components: - - type: Transform - pos: -43.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 32038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32040 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 32052 - components: - - type: Transform - pos: -27.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32053 - components: - - type: Transform - pos: -33.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 32054 - components: - - type: Transform - pos: -27.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32055 - components: - - type: Transform - pos: -27.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32056 - components: - - type: Transform - pos: -27.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 32061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 32063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeTJunction - entities: - - uid: 255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2618 - components: - - type: Transform - pos: 0.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3922 - components: - - type: Transform - pos: 25.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4164 - components: - - type: Transform - pos: 19.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 4174 - components: - - type: Transform - pos: 16.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5258 - components: - - type: Transform - pos: -1.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5488 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-72.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-76.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7238 - components: - - type: Transform - pos: 8.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8131 - components: - - type: Transform - pos: -9.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8137 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8138 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8144 - components: - - type: Transform - pos: -3.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8184 - components: - - type: Transform - pos: 10.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8186 - components: - - type: Transform - pos: 10.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8745 - components: - - type: Transform - pos: -5.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11042 - components: - - type: Transform - pos: 26.5,32.5 - parent: 2 - - uid: 11140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-85.5 - parent: 2 - - uid: 11166 - components: - - type: Transform - pos: 4.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11425 - components: - - type: Transform - pos: -5.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11698 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12142 - components: - - type: Transform - pos: 18.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12199 - components: - - type: Transform - pos: 16.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12214 - components: - - type: Transform - pos: 5.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12427 - components: - - type: Transform - pos: -8.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12572 - components: - - type: Transform - pos: -11.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13169 - components: - - type: Transform - pos: 23.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13702 - components: - - type: Transform - pos: 12.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14022 - components: - - type: Transform - pos: 12.5,-78.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14029 - components: - - type: Transform - pos: 10.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14046 - components: - - type: Transform - pos: 18.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 14130 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-87.5 - parent: 2 - - uid: 14241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14438 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14558 - components: - - type: Transform - pos: -9.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14586 - components: - - type: Transform - pos: -6.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14723 - components: - - type: Transform - pos: 13.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14738 - components: - - type: Transform - pos: 20.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14960 - components: - - type: Transform - pos: 23.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15479 - components: - - type: Transform - pos: -3.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15733 - components: - - type: Transform - pos: -4.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-91.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 16869 - components: - - type: Transform - pos: -31.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17022 - components: - - type: Transform - pos: -10.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17024 - components: - - type: Transform - pos: -2.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-6.5 + pos: -57.5,92.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 17026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17028 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-39.5 - parent: 2 - - uid: 17039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17040 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17049 - components: - - type: Transform - pos: -11.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17051 - components: - - type: Transform - pos: 12.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17056 - components: - - type: Transform - pos: 22.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17058 - components: - - type: Transform - pos: -0.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17061 - components: - - type: Transform - pos: -2.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17063 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-8.5 + pos: -59.5,101.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -126910,2078 +105950,119 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,36.5 + pos: -59.5,97.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 17075 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,5.5 + pos: -103.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17082 - components: - - type: Transform - pos: 40.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17084 - components: - - type: Transform - pos: 38.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17087 - components: - - type: Transform - pos: 85.5,-47.5 - parent: 2 - - uid: 17088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,7.5 - parent: 2 - - uid: 17089 - components: - - type: Transform - pos: 17.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17093 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17097 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17099 - components: - - type: Transform - pos: -31.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#17E8E2FF' - uid: 17100 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-22.5 + pos: -71.5,105.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17107 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 17109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17110 components: - type: Transform rot: 3.141592653589793 rad - pos: 67.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-78.5 + pos: -59.5,95.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17112 + - uid: 17111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-47.5 + rot: 3.141592653589793 rad + pos: -59.5,104.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,102.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 17117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17126 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17130 - components: - - type: Transform - pos: 4.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,15.5 - parent: 2 - - uid: 17135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17138 - components: - - type: Transform - pos: 3.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17143 - components: - - type: Transform - pos: -0.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17145 - components: - - type: Transform - pos: 7.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17151 - components: - - type: Transform - pos: 76.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17159 - components: - - type: Transform - pos: 65.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17174 - components: - - type: Transform - pos: -7.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17176 - components: - - type: Transform - pos: 0.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17177 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17179 - components: - - type: Transform - pos: -13.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17194 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17195 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17197 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17199 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17201 - components: - - type: Transform - pos: -43.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17203 - components: - - type: Transform - pos: -51.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17207 - components: - - type: Transform - pos: -59.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17214 - components: - - type: Transform - pos: -1.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17223 - components: - - type: Transform - pos: -2.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17227 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17235 - components: - - type: Transform - pos: -15.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17236 - components: - - type: Transform - pos: -23.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17237 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17239 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17243 - components: - - type: Transform - pos: -50.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17245 - components: - - type: Transform - pos: -58.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17256 - components: - - type: Transform - pos: 0.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17258 - components: - - type: Transform - pos: 10.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17265 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17267 - components: - - type: Transform - pos: 35.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17268 - components: - - type: Transform - pos: 31.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17269 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17273 - components: - - type: Transform - pos: 46.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17274 - components: - - type: Transform - pos: 25.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17275 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17276 - components: - - type: Transform - pos: 34.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17281 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17285 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17286 - components: - - type: Transform - pos: -26.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17287 - components: - - type: Transform - pos: -34.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17289 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17290 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17291 - components: - - type: Transform - pos: -7.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17292 - components: - - type: Transform - pos: -8.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17293 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17294 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17295 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17297 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17301 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17309 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17315 - components: - - type: Transform - pos: 11.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17324 - components: - - type: Transform - pos: 24.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17328 - components: - - type: Transform - pos: 31.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17329 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17337 - components: - - type: Transform - pos: 41.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17348 - components: - - type: Transform - pos: 40.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17349 - components: - - type: Transform - pos: 40.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17353 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17356 - components: - - type: Transform - pos: 56.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17357 - components: - - type: Transform - pos: 55.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-32.5 + pos: -59.5,99.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 17370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17373 - components: - - type: Transform - pos: -7.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17376 - components: - - type: Transform - pos: 8.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17378 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,23.5 + pos: -1.5,80.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17379 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17380 - components: - - type: Transform - pos: 4.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17381 - components: - - type: Transform - pos: 6.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17382 + - uid: 17402 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,28.5 + pos: -76.5,103.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17383 - components: - - type: Transform - pos: 9.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17395 - components: - - type: Transform - pos: -6.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17403 - components: - - type: Transform - pos: 63.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 17407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-7.5 + rot: 3.141592653589793 rad + pos: -76.5,104.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17408 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 17409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-1.5 + rot: 3.141592653589793 rad + pos: -76.5,106.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 17410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-7.5 + rot: 3.141592653589793 rad + pos: -76.5,107.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17412 + - uid: 17411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-6.5 + rot: 3.141592653589793 rad + pos: -76.5,108.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 17413 components: - type: Transform rot: 3.141592653589793 rad - pos: 80.5,-7.5 + pos: -76.5,109.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 17414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-7.5 + rot: 3.141592653589793 rad + pos: -77.5,100.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -128989,7 +106070,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-7.5 + pos: -77.5,99.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -128997,146 +106078,775 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,2.5 + pos: -77.5,98.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17727 + - uid: 17428 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,40.5 + pos: -71.5,110.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17873 + - uid: 17430 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,9.5 + pos: -74.5,110.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17988 + - uid: 17438 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-2.5 + pos: -77.5,101.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18387 + - uid: 17439 components: - type: Transform - pos: -7.5,-69.5 + rot: 3.141592653589793 rad + pos: -77.5,102.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18826 + - uid: 17440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,104.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,106.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,107.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,108.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,109.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,110.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17471 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18862 - components: - - type: Transform - pos: -14.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18876 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18877 - components: - - type: Transform - pos: 34.5,19.5 + pos: -71.5,111.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19044 - components: - - type: Transform - pos: -16.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19084 + - uid: 17488 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-51.5 + pos: -71.5,70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19145 + - uid: 17500 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-68.5 + rot: -1.5707963267948966 rad + pos: -72.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 17657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17901 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 18060 + components: + - type: Transform + pos: -106.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 18185 + components: + - type: Transform + pos: -104.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 18670 + components: + - type: Transform + pos: -42.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18674 + components: + - type: Transform + pos: -38.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19405 + components: + - type: Transform + pos: 87.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19408 + components: + - type: Transform + pos: 89.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19452 + components: + - type: Transform + pos: 89.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19476 + components: + - type: Transform + pos: 89.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19582 + components: + - type: Transform + pos: 82.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 19605 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,18.5 + rot: 1.5707963267948966 rad + pos: 81.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19606 + - uid: 19608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19629 + components: + - type: Transform + pos: 82.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19630 + components: + - type: Transform + pos: 82.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19635 + components: + - type: Transform + pos: 82.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19637 + components: + - type: Transform + pos: 82.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19645 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,19.5 + pos: 84.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19672 + components: + - type: Transform + pos: 89.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19673 + components: + - type: Transform + pos: 89.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -129144,14 +106854,135 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-68.5 + pos: 84.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19708 + - uid: 19675 components: - type: Transform - pos: 7.5,-34.5 + rot: 1.5707963267948966 rad + pos: 85.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -129159,14750 +106990,32931 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-35.5 + pos: 88.5,43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21467 + - uid: 19822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19842 + components: + - type: Transform + pos: 88.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19887 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-16.5 + pos: 90.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21468 + - uid: 19890 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21477 - components: - - type: Transform - pos: -28.5,8.5 + pos: 91.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22166 + - uid: 19891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,13.5 + rot: 1.5707963267948966 rad + pos: 92.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23222 + - uid: 19892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-65.5 + rot: 1.5707963267948966 rad + pos: 93.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23270 + - uid: 19894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-63.5 + rot: 1.5707963267948966 rad + pos: 94.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 96.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 97.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 98.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 99.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24239 + - uid: 19908 components: - type: Transform - pos: -12.5,17.5 + rot: 1.5707963267948966 rad + pos: 90.5,48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24454 + - uid: 19909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 96.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 97.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 98.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 99.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 101.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 102.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 103.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 104.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 105.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 106.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 107.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 108.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 109.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 110.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 111.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 112.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 113.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 114.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19940 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-51.5 + pos: 101.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 97.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 104.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 106.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 109.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 110.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 111.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 112.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 113.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 114.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 101.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20625 + components: + - type: Transform + pos: -69.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20643 + components: + - type: Transform + pos: -69.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20646 + components: + - type: Transform + pos: -68.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20791 + components: + - type: Transform + pos: -72.5,153.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21190 + components: + - type: Transform + pos: 70.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21191 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21271 + components: + - type: Transform + pos: 70.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21370 + components: + - type: Transform + pos: 70.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21371 + components: + - type: Transform + pos: 70.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21372 + components: + - type: Transform + pos: 70.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21373 + components: + - type: Transform + pos: 70.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21374 + components: + - type: Transform + pos: 72.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21400 + components: + - type: Transform + pos: 73.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21417 + components: + - type: Transform + pos: 65.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21418 + components: + - type: Transform + pos: 65.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22444 + components: + - type: Transform + pos: 72.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22528 + components: + - type: Transform + pos: 72.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22789 + components: + - type: Transform + pos: -18.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22790 + components: + - type: Transform + pos: -18.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22970 + components: + - type: Transform + pos: 83.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22971 + components: + - type: Transform + pos: 83.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23176 + components: + - type: Transform + pos: -28.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23186 + components: + - type: Transform + pos: -28.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23187 + components: + - type: Transform + pos: -28.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23192 + components: + - type: Transform + pos: -28.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23193 + components: + - type: Transform + pos: -28.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23547 + components: + - type: Transform + pos: 54.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23548 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23549 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23570 + components: + - type: Transform + pos: 55.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23571 + components: + - type: Transform + pos: 55.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23601 + components: + - type: Transform + pos: 71.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23602 + components: + - type: Transform + pos: 71.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23603 + components: + - type: Transform + pos: 71.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23604 + components: + - type: Transform + pos: 71.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23732 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23738 + components: + - type: Transform + pos: 69.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23740 + components: + - type: Transform + pos: 69.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23741 + components: + - type: Transform + pos: 69.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23742 + components: + - type: Transform + pos: 69.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23743 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24078 + components: + - type: Transform + pos: -29.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24111 + components: + - type: Transform + pos: -29.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24113 + components: + - type: Transform + pos: -29.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,110.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,12.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 25296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25498 - components: - - type: Transform - pos: 20.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25539 + - uid: 25306 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,36.5 + pos: 91.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 25809 - components: - - type: Transform - pos: 4.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25886 - components: - - type: Transform - pos: 7.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 26582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 27074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 27137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 27140 - components: - - type: Transform - pos: -5.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 27571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 28438 + - uid: 25333 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-91.5 + pos: 13.5,177.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 29575 + color: '#17E8E2FF' + - uid: 25779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,5.5 + rot: 1.5707963267948966 rad + pos: -58.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29576 + color: '#FF0000FF' + - uid: 25781 + components: + - type: Transform + pos: -65.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25997 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,5.5 + pos: -40.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26018 + components: + - type: Transform + pos: -48.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29593 + - uid: 26021 + components: + - type: Transform + pos: -48.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26041 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26111 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26301 + components: + - type: Transform + pos: -13.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 26307 + components: + - type: Transform + pos: -13.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 26308 + components: + - type: Transform + pos: -13.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 26593 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,15.5 + pos: -86.5,149.5 + parent: 2 + - uid: 26595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,152.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 26847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 27931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 28086 + components: + - type: Transform + pos: -88.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 28414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 28423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 28728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 28729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 29020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 29371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' - uid: 29599 components: - type: Transform - pos: -8.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29602 - components: - - type: Transform - pos: -10.5,15.5 + rot: -1.5707963267948966 rad + pos: -130.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29605 + - uid: 29711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 29856 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,15.5 + pos: -104.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29606 + - uid: 29857 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,17.5 + pos: -105.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29865 + components: + - type: Transform + pos: -104.5,30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29972 + - uid: 29866 + components: + - type: Transform + pos: -103.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30858 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-8.5 + pos: -56.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31382 + color: '#17E8E2FF' + - uid: 30897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30984 + components: + - type: Transform + pos: -29.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30999 + components: + - type: Transform + pos: -29.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31000 + components: + - type: Transform + pos: -29.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31056 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,17.5 + pos: -28.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,198.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 31086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31341 + components: + - type: Transform + pos: -20.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31350 + components: + - type: Transform + pos: -97.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31351 + components: + - type: Transform + pos: -97.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31352 + components: + - type: Transform + pos: -97.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31353 + components: + - type: Transform + pos: -97.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31354 + components: + - type: Transform + pos: -97.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31355 + components: + - type: Transform + pos: -97.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31356 + components: + - type: Transform + pos: -97.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31357 + components: + - type: Transform + pos: -97.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31358 + components: + - type: Transform + pos: -97.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31359 + components: + - type: Transform + pos: -98.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31360 + components: + - type: Transform + pos: -98.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31361 + components: + - type: Transform + pos: -98.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31362 + components: + - type: Transform + pos: -98.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31363 + components: + - type: Transform + pos: -20.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31365 + components: + - type: Transform + pos: -20.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31366 + components: + - type: Transform + pos: -20.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31373 + components: + - type: Transform + pos: -88.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 31386 + components: + - type: Transform + pos: -98.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31387 + components: + - type: Transform + pos: -98.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31388 + components: + - type: Transform + pos: -98.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31389 + components: + - type: Transform + pos: -98.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31391 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,19.5 + pos: -99.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -98.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31654 + components: + - type: Transform + pos: 6.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31655 + components: + - type: Transform + pos: 6.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31656 + components: + - type: Transform + pos: 6.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,209.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 31685 components: - type: Transform - pos: -41.5,-0.5 + rot: 1.5707963267948966 rad + pos: -8.5,209.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 31686 components: - type: Transform - pos: -43.5,-2.5 + rot: 1.5707963267948966 rad + pos: -7.5,209.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' + - uid: 31687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 31688 components: - type: Transform - pos: -36.5,-0.5 + rot: 1.5707963267948966 rad + pos: -5.5,209.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 32045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 32065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPort - entities: - - uid: 9073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-38.5 - parent: 2 - - uid: 9746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-38.5 - parent: 2 - - uid: 9747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-38.5 - parent: 2 - - uid: 12870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-38.5 - parent: 2 - - uid: 14971 + - uid: 31689 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-50.5 + pos: -4.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31702 + components: + - type: Transform + pos: 1.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31703 + components: + - type: Transform + pos: 1.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31704 + components: + - type: Transform + pos: 1.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31705 + components: + - type: Transform + pos: 1.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31706 + components: + - type: Transform + pos: 1.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31714 + components: + - type: Transform + pos: 0.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,176.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 14999 - components: - - type: Transform - pos: 22.5,-89.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 17420 - components: - - type: Transform - pos: -44.5,16.5 - parent: 2 - - uid: 17421 - components: - - type: Transform - pos: -43.5,16.5 - parent: 2 - - uid: 17422 + - uid: 31726 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,8.5 - parent: 2 - - uid: 17426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-47.5 - parent: 2 - - uid: 17431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,7.5 - parent: 2 - - uid: 17433 - components: - - type: Transform - pos: -20.5,-38.5 - parent: 2 - - uid: 17434 - components: - - type: Transform - pos: -21.5,-38.5 - parent: 2 - - uid: 17435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-49.5 + pos: 6.5,200.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-51.5 - parent: 2 - - uid: 17438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-51.5 - parent: 2 - - uid: 17440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-19.5 - parent: 2 - - uid: 17444 - components: - - type: Transform - pos: 43.5,-38.5 - parent: 2 - - uid: 17445 - components: - - type: Transform - pos: 44.5,-38.5 - parent: 2 - - uid: 17447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-47.5 - parent: 2 - - uid: 17448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-48.5 - parent: 2 - - uid: 18424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-85.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 18500 + - uid: 31727 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-51.5 + pos: 7.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31747 + components: + - type: Transform + pos: 21.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31748 + components: + - type: Transform + pos: 21.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31749 + components: + - type: Transform + pos: 21.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31750 + components: + - type: Transform + pos: 21.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31751 + components: + - type: Transform + pos: 21.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31753 + components: + - type: Transform + pos: 21.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31754 + components: + - type: Transform + pos: 21.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31758 + components: + - type: Transform + pos: 22.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31763 + components: + - type: Transform + pos: 24.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31764 + components: + - type: Transform + pos: 24.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31771 + components: + - type: Transform + pos: 24.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31772 + components: + - type: Transform + pos: 24.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31778 + components: + - type: Transform + pos: 24.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31779 + components: + - type: Transform + pos: 24.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31780 + components: + - type: Transform + pos: 24.5,188.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31781 + components: + - type: Transform + pos: 24.5,187.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31809 + components: + - type: Transform + pos: 22.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31810 + components: + - type: Transform + pos: 22.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31811 + components: + - type: Transform + pos: 22.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31817 + components: + - type: Transform + pos: 21.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31818 + components: + - type: Transform + pos: 21.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31819 + components: + - type: Transform + pos: 21.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31820 + components: + - type: Transform + pos: 21.5,188.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31821 + components: + - type: Transform + pos: 21.5,187.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31822 + components: + - type: Transform + pos: 21.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31844 + components: + - type: Transform + pos: 10.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31845 + components: + - type: Transform + pos: 10.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31859 + components: + - type: Transform + pos: 87.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31860 + components: + - type: Transform + pos: 89.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31861 + components: + - type: Transform + pos: 87.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31862 + components: + - type: Transform + pos: 89.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31864 + components: + - type: Transform + pos: 89.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31866 + components: + - type: Transform + pos: 87.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31894 + components: + - type: Transform + pos: 86.5,18.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 25075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,32.5 - parent: 2 - - uid: 29560 + - uid: 31897 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-46.5 - parent: 2 - - uid: 30103 - components: - - type: Transform - pos: 29.5,38.5 - parent: 2 -- proto: GasPressurePump - entities: - - uid: 887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-62.5 + pos: 92.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 925 + color: '#FF0000FF' + - uid: 31898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-64.5 + rot: 3.141592653589793 rad + pos: 92.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 4296 + color: '#FF0000FF' + - uid: 31899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31902 + components: + - type: Transform + pos: 87.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31903 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-50.5 + pos: 90.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,16.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 6722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9461 - components: - - type: Transform - pos: 69.5,-37.5 - parent: 2 - - uid: 9466 - components: - - type: Transform - pos: 73.5,-37.5 - parent: 2 - - uid: 9469 + - uid: 31912 components: - type: Transform rot: 3.141592653589793 rad - pos: 71.5,-37.5 - parent: 2 - - uid: 9470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-37.5 - parent: 2 - - uid: 11292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-68.5 - parent: 2 - - uid: 11295 - components: - - type: Transform - pos: 19.5,-68.5 - parent: 2 - - uid: 12249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-51.5 + pos: 86.5,16.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 12923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13209 + - uid: 31913 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14287 - components: - - type: Transform - pos: 18.5,-52.5 + pos: 89.5,17.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 14805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-83.5 - parent: 2 - - uid: 14819 + - uid: 31919 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-44.5 + pos: 87.5,19.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 14952 + - uid: 31920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31957 + components: + - type: Transform + pos: 89.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31962 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-65.5 + pos: 9.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,175.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14967 + - uid: 31972 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-91.5 - parent: 2 - - uid: 17467 - components: - - type: Transform - pos: 1.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17468 - components: - - type: Transform - pos: 43.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17473 - components: - - type: Transform - pos: 40.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17481 - components: - - type: Transform - pos: -43.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-46.5 + pos: 12.5,175.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 18426 + - uid: 31973 components: - type: Transform - pos: 22.5,-84.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 18527 - components: - - type: Transform - pos: 19.5,-52.5 + rot: 3.141592653589793 rad + pos: 13.5,176.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 19048 + - uid: 31975 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-67.5 + pos: 13.5,176.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21169 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-83.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25040 - components: - - type: Transform - pos: 22.5,-90.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 26583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 28374 - components: - - type: Transform - pos: 13.5,-83.5 - parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' -- proto: GasRecycler - entities: - - uid: 14818 - components: - - type: Transform - pos: 25.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasThermoMachineFreezer - entities: - - uid: 14947 - components: - - type: Transform - pos: 14.5,-55.5 - parent: 2 - - uid: 16756 - components: - - type: Transform - pos: 80.5,-46.5 - parent: 2 - - uid: 16757 - components: - - type: Transform - pos: 80.5,-47.5 - parent: 2 - - uid: 17496 - components: - - type: Transform - pos: 33.5,-32.5 - parent: 2 - - uid: 19236 - components: - - type: Transform - pos: 10.5,-86.5 - parent: 2 - - uid: 20516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-80.5 - parent: 2 - - uid: 26261 - components: - - type: Transform - pos: 14.5,-54.5 - parent: 2 -- proto: GasThermoMachineFreezerEnabled - entities: - - uid: 14828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16765 - components: - - type: Transform - pos: 38.5,0.5 - parent: 2 - - type: GasThermoMachine - targetTemperature: 255.15 -- proto: GasThermoMachineHeater - entities: - - uid: 16754 - components: - - type: Transform - pos: 80.5,-44.5 - parent: 2 - - uid: 16755 - components: - - type: Transform - pos: 80.5,-43.5 - parent: 2 - - uid: 20620 - components: - - type: Transform - pos: 11.5,-54.5 - parent: 2 - - uid: 20621 - components: - - type: Transform - pos: 11.5,-55.5 - parent: 2 - - uid: 20628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-79.5 - parent: 2 - - uid: 25068 - components: - - type: Transform - pos: 10.5,-88.5 - parent: 2 - - uid: 27040 - components: - - type: Transform - pos: 26.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasThermoMachineHeaterEnabled - entities: - - uid: 14825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasValve - entities: - - uid: 1204 + color: '#17E8E2FF' + - uid: 31978 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-52.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1205 - components: - - type: Transform - pos: 20.5,-53.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-43.5 + pos: 11.5,175.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18760 - components: - - type: Transform - pos: 20.5,-44.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30082 + color: '#17E8E2FF' + - uid: 31980 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,37.5 + pos: 10.5,174.5 parent: 2 - - type: GasValve - open: False -- proto: GasVentPump + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31981 + components: + - type: Transform + pos: 10.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31982 + components: + - type: Transform + pos: 14.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 31984 + components: + - type: Transform + pos: 12.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32018 + components: + - type: Transform + pos: -11.5,173.5 + parent: 2 + - uid: 32020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32031 + components: + - type: Transform + pos: -23.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32032 + components: + - type: Transform + pos: -23.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32033 + components: + - type: Transform + pos: -23.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,187.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32040 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -29.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32048 + components: + - type: Transform + pos: -23.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32049 + components: + - type: Transform + pos: -23.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32050 + components: + - type: Transform + pos: -23.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32051 + components: + - type: Transform + pos: -23.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32052 + components: + - type: Transform + pos: -23.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32053 + components: + - type: Transform + pos: -23.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32054 + components: + - type: Transform + pos: -23.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32087 + components: + - type: Transform + pos: -16.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,188.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,187.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,188.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32189 + components: + - type: Transform + pos: -55.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32201 + components: + - type: Transform + pos: -60.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 32223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 32239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,146.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32251 + components: + - type: Transform + pos: -69.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,146.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,150.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,150.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32477 + components: + - type: Transform + pos: -79.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,153.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,155.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,156.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,153.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,155.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,156.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32544 + components: + - type: Transform + pos: -80.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32546 + components: + - type: Transform + pos: -80.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32549 + components: + - type: Transform + pos: -78.5,165.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32550 + components: + - type: Transform + pos: -78.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,165.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32587 + components: + - type: Transform + pos: -90.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32588 + components: + - type: Transform + pos: -90.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32589 + components: + - type: Transform + pos: -90.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32590 + components: + - type: Transform + pos: -84.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32591 + components: + - type: Transform + pos: -84.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32592 + components: + - type: Transform + pos: -84.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32593 + components: + - type: Transform + pos: -84.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32596 + components: + - type: Transform + pos: -78.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32597 + components: + - type: Transform + pos: -78.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32669 + components: + - type: Transform + pos: -63.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32676 + components: + - type: Transform + pos: -68.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32677 + components: + - type: Transform + pos: -68.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32686 + components: + - type: Transform + pos: -60.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32687 + components: + - type: Transform + pos: -60.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32688 + components: + - type: Transform + pos: -60.5,165.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32689 + components: + - type: Transform + pos: -60.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32690 + components: + - type: Transform + pos: -60.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32691 + components: + - type: Transform + pos: -60.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32692 + components: + - type: Transform + pos: -60.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32693 + components: + - type: Transform + pos: -60.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32710 + components: + - type: Transform + pos: -62.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32711 + components: + - type: Transform + pos: -62.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32715 + components: + - type: Transform + pos: -59.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32716 + components: + - type: Transform + pos: -59.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32717 + components: + - type: Transform + pos: -59.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,165.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32747 + components: + - type: Transform + pos: -80.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32748 + components: + - type: Transform + pos: -80.5,156.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32749 + components: + - type: Transform + pos: -80.5,155.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32750 + components: + - type: Transform + pos: -80.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32751 + components: + - type: Transform + pos: -80.5,153.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32752 + components: + - type: Transform + anchored: False + pos: -80.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32753 + components: + - type: Transform + pos: -79.5,156.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32754 + components: + - type: Transform + pos: -79.5,155.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32774 + components: + - type: Transform + pos: -82.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32775 + components: + - type: Transform + pos: -82.5,150.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32776 + components: + - type: Transform + pos: -82.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32780 + components: + - type: Transform + pos: -89.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32781 + components: + - type: Transform + pos: -89.5,150.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32782 + components: + - type: Transform + pos: -89.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32783 + components: + - type: Transform + pos: -92.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32784 + components: + - type: Transform + pos: -92.5,150.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32785 + components: + - type: Transform + pos: -92.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,153.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,155.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,156.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32799 + components: + - type: Transform + pos: -88.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32810 + components: + - type: Transform + pos: -97.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32811 + components: + - type: Transform + pos: -97.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32812 + components: + - type: Transform + pos: -97.5,165.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32813 + components: + - type: Transform + pos: -97.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32814 + components: + - type: Transform + pos: -97.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32815 + components: + - type: Transform + pos: -97.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32824 + components: + - type: Transform + pos: -76.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32825 + components: + - type: Transform + pos: -76.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32826 + components: + - type: Transform + pos: -76.5,146.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32827 + components: + - type: Transform + pos: -76.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32828 + components: + - type: Transform + pos: -77.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32829 + components: + - type: Transform + pos: -77.5,146.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33169 + components: + - type: Transform + pos: -88.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33194 + components: + - type: Transform + pos: -98.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33195 + components: + - type: Transform + pos: -98.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33196 + components: + - type: Transform + pos: -98.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33197 + components: + - type: Transform + pos: -98.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33198 + components: + - type: Transform + pos: -98.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33199 + components: + - type: Transform + pos: -98.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33200 + components: + - type: Transform + anchored: False + pos: -97.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33201 + components: + - type: Transform + anchored: False + pos: -97.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33202 + components: + - type: Transform + anchored: False + pos: -97.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33203 + components: + - type: Transform + anchored: False + pos: -97.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33204 + components: + - type: Transform + anchored: False + pos: -97.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33209 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -115.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -113.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33222 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -116.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -113.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33283 + components: + - type: Transform + pos: -115.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33301 + components: + - type: Transform + pos: -92.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33302 + components: + - type: Transform + pos: -92.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33303 + components: + - type: Transform + pos: -92.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33304 + components: + - type: Transform + pos: -92.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33335 + components: + - type: Transform + pos: -97.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -113.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33461 + components: + - type: Transform + pos: -80.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33462 + components: + - type: Transform + pos: -80.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33463 + components: + - type: Transform + pos: -80.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33464 + components: + - type: Transform + pos: -80.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33465 + components: + - type: Transform + pos: -80.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33466 + components: + - type: Transform + pos: -80.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33467 + components: + - type: Transform + pos: -80.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33494 + components: + - type: Transform + pos: -60.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33508 + components: + - type: Transform + pos: -58.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33509 + components: + - type: Transform + pos: -58.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33521 + components: + - type: Transform + pos: -58.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33537 + components: + - type: Transform + pos: -60.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33538 + components: + - type: Transform + pos: -60.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33539 + components: + - type: Transform + pos: -60.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33547 + components: + - type: Transform + pos: -58.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33548 + components: + - type: Transform + pos: -58.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33549 + components: + - type: Transform + pos: -58.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33550 + components: + - type: Transform + pos: -58.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33551 + components: + - type: Transform + pos: -58.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33552 + components: + - type: Transform + pos: -58.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33567 + components: + - type: Transform + pos: -51.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33568 + components: + - type: Transform + pos: -51.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33569 + components: + - type: Transform + pos: -51.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33577 + components: + - type: Transform + pos: -50.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33639 + components: + - type: Transform + pos: -63.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33640 + components: + - type: Transform + pos: -63.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33664 + components: + - type: Transform + pos: -57.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33665 + components: + - type: Transform + pos: -57.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33676 + components: + - type: Transform + pos: -70.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33677 + components: + - type: Transform + pos: -70.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33678 + components: + - type: Transform + pos: -70.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33679 + components: + - type: Transform + pos: -70.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33680 + components: + - type: Transform + pos: -70.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33681 + components: + - type: Transform + pos: -70.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33701 + components: + - type: Transform + pos: -76.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,96.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,96.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,187.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,188.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33768 + components: + - type: Transform + pos: -39.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33769 + components: + - type: Transform + pos: -39.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,96.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33775 + components: + - type: Transform + pos: -41.5,96.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33778 + components: + - type: Transform + pos: -41.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33779 + components: + - type: Transform + pos: -41.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33780 + components: + - type: Transform + pos: -41.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33798 + components: + - type: Transform + pos: 8.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,102.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33820 + components: + - type: Transform + pos: 7.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,102.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,102.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33829 + components: + - type: Transform + pos: 7.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33947 + components: + - type: Transform + pos: -24.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33948 + components: + - type: Transform + pos: -24.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33949 + components: + - type: Transform + pos: -24.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33951 + components: + - type: Transform + pos: -24.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33952 + components: + - type: Transform + pos: -24.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33953 + components: + - type: Transform + pos: -24.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33954 + components: + - type: Transform + pos: -24.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33957 + components: + - type: Transform + pos: -24.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33958 + components: + - type: Transform + pos: -24.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33959 + components: + - type: Transform + pos: -24.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33960 + components: + - type: Transform + pos: -24.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33961 + components: + - type: Transform + pos: -22.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33962 + components: + - type: Transform + pos: -22.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33964 + components: + - type: Transform + pos: -22.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33966 + components: + - type: Transform + pos: -22.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33967 + components: + - type: Transform + pos: -22.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33968 + components: + - type: Transform + pos: -22.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33969 + components: + - type: Transform + pos: -22.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33971 + components: + - type: Transform + pos: -22.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33972 + components: + - type: Transform + pos: -22.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33973 + components: + - type: Transform + pos: -22.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34022 + components: + - type: Transform + pos: -23.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34023 + components: + - type: Transform + pos: -21.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34024 + components: + - type: Transform + pos: -21.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34029 + components: + - type: Transform + pos: -14.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34030 + components: + - type: Transform + pos: -14.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34031 + components: + - type: Transform + pos: -17.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34040 + components: + - type: Transform + pos: -10.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34042 + components: + - type: Transform + pos: -10.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34050 + components: + - type: Transform + pos: -23.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34051 + components: + - type: Transform + pos: -23.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34052 + components: + - type: Transform + pos: -23.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34053 + components: + - type: Transform + pos: -23.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34054 + components: + - type: Transform + pos: -23.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34055 + components: + - type: Transform + pos: -23.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34056 + components: + - type: Transform + pos: -23.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34058 + components: + - type: Transform + pos: -21.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34059 + components: + - type: Transform + pos: -21.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34060 + components: + - type: Transform + pos: -21.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34061 + components: + - type: Transform + pos: -21.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34062 + components: + - type: Transform + pos: -21.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34063 + components: + - type: Transform + pos: -21.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34064 + components: + - type: Transform + pos: -21.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34065 + components: + - type: Transform + pos: -21.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34066 + components: + - type: Transform + pos: -21.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34095 + components: + - type: Transform + pos: -11.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34096 + components: + - type: Transform + pos: -11.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34097 + components: + - type: Transform + pos: -11.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34105 + components: + - type: Transform + pos: -6.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34106 + components: + - type: Transform + pos: -6.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34107 + components: + - type: Transform + pos: -6.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34108 + components: + - type: Transform + pos: -6.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34130 + components: + - type: Transform + pos: -11.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34132 + components: + - type: Transform + pos: -11.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34174 + components: + - type: Transform + pos: -14.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34176 + components: + - type: Transform + pos: -14.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34177 + components: + - type: Transform + pos: -14.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34178 + components: + - type: Transform + pos: -14.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34179 + components: + - type: Transform + pos: -14.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34180 + components: + - type: Transform + pos: -14.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34181 + components: + - type: Transform + pos: -14.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34205 + components: + - type: Transform + pos: -43.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34206 + components: + - type: Transform + pos: -43.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34207 + components: + - type: Transform + pos: -43.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34208 + components: + - type: Transform + pos: -43.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34209 + components: + - type: Transform + pos: -43.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34211 + components: + - type: Transform + pos: -43.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34212 + components: + - type: Transform + pos: -43.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34213 + components: + - type: Transform + pos: -43.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34214 + components: + - type: Transform + pos: -43.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34215 + components: + - type: Transform + pos: -37.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34216 + components: + - type: Transform + pos: -37.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34217 + components: + - type: Transform + pos: -37.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34218 + components: + - type: Transform + pos: -37.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34219 + components: + - type: Transform + pos: -37.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34220 + components: + - type: Transform + pos: -37.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34222 + components: + - type: Transform + pos: -37.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34223 + components: + - type: Transform + pos: -37.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34224 + components: + - type: Transform + pos: -37.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34225 + components: + - type: Transform + pos: -37.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,187.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,188.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34394 + components: + - type: Transform + pos: 5.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34395 + components: + - type: Transform + pos: 5.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34396 + components: + - type: Transform + pos: 5.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34397 + components: + - type: Transform + pos: 5.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34398 + components: + - type: Transform + pos: 5.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34399 + components: + - type: Transform + pos: 5.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34400 + components: + - type: Transform + pos: 5.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34402 + components: + - type: Transform + pos: 4.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34403 + components: + - type: Transform + pos: 4.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34404 + components: + - type: Transform + pos: 4.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34405 + components: + - type: Transform + pos: 4.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34406 + components: + - type: Transform + pos: 4.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34408 + components: + - type: Transform + pos: 4.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34409 + components: + - type: Transform + pos: 4.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34410 + components: + - type: Transform + pos: 4.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34411 + components: + - type: Transform + pos: 4.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34412 + components: + - type: Transform + pos: 4.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -130.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35583 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -58.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 35586 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -55.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 35595 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35613 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35614 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35615 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35626 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35627 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35628 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35629 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35630 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35931 + components: + - type: Transform + anchored: False + pos: -65.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 35952 + components: + - type: Transform + pos: -4.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35953 + components: + - type: Transform + pos: -4.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35954 + components: + - type: Transform + pos: -4.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35955 + components: + - type: Transform + pos: -4.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35956 + components: + - type: Transform + pos: -6.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35957 + components: + - type: Transform + pos: -6.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35959 + components: + - type: Transform + pos: -6.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35960 + components: + - type: Transform + pos: -6.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35962 + components: + - type: Transform + pos: -2.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35963 + components: + - type: Transform + pos: -2.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35964 + components: + - type: Transform + pos: -2.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36031 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36032 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36033 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36153 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36154 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36390 + components: + - type: Transform + pos: -3.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36392 + components: + - type: Transform + pos: -3.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36393 + components: + - type: Transform + pos: -3.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36394 + components: + - type: Transform + pos: -3.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36396 + components: + - type: Transform + pos: -1.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36397 + components: + - type: Transform + pos: -1.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36398 + components: + - type: Transform + pos: -1.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36399 + components: + - type: Transform + pos: -1.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37500 + components: + - type: Transform + pos: -67.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37789 + components: + - type: Transform + pos: 66.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37940 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 37842 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37941 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 37842 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 39415 + components: + - type: Transform + pos: -18.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39502 + components: + - type: Transform + pos: -80.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeTJunction entities: - - uid: 277 + - uid: 1626 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-38.5 + pos: -33.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17417 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 606 - components: - - type: Transform - pos: -37.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29991 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3052 + - uid: 1995 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25482 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4122 - components: - - type: Transform - pos: 11.5,-72.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14987 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17459 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6384 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,24.5 + pos: -92.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-79.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-72.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7570 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10164 - components: - - type: Transform - pos: -33.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10564 - components: - - type: Transform - pos: 9.5,-33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31896 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31896 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-70.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11129 + color: '#FF0000FF' + - uid: 3103 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,39.5 + pos: -66.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 25482 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11130 + - uid: 3105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,39.5 + rot: 1.5707963267948966 rad + pos: -60.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11151 + - uid: 3153 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 3163 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-47.5 + pos: -39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-0.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3229 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4471 + components: + - type: Transform + pos: -80.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5172 + components: + - type: Transform + pos: 46.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7638 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,110.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8138 + components: + - type: Transform + pos: -79.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8141 + components: + - type: Transform + pos: 89.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8153 + components: + - type: Transform + pos: -90.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8192 + components: + - type: Transform + pos: -75.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8203 + components: + - type: Transform + pos: 73.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8206 + components: + - type: Transform + pos: 60.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8209 + components: + - type: Transform + pos: 60.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8213 + components: + - type: Transform + pos: -4.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8214 + components: + - type: Transform + pos: -7.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8218 + components: + - type: Transform + pos: -72.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8219 + components: + - type: Transform + pos: -72.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,206.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8229 + components: + - type: Transform + pos: -21.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8278 + components: + - type: Transform + pos: -72.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8306 + components: + - type: Transform + pos: 71.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8307 + components: + - type: Transform + pos: 69.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8960 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 8964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-4.5 + parent: 2 + - uid: 8965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 2 + - uid: 8966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 2 + - uid: 8967 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 8968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-1.5 + parent: 2 + - uid: 8969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,29.5 + parent: 2 + - uid: 8970 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8971 + components: + - type: Transform + pos: -102.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,47.5 + parent: 2 + - uid: 8973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,174.5 + parent: 2 + - uid: 8977 + components: + - type: Transform + pos: 6.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8978 + components: + - type: Transform + pos: -113.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8979 + components: + - type: Transform + pos: -16.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8983 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8985 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9002 + components: + - type: Transform + pos: -109.5,65.5 + parent: 2 + - uid: 9008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 2 + - uid: 9025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,3.5 + parent: 2 + - uid: 9197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10063 + components: + - type: Transform + pos: -36.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10317 + components: + - type: Transform + pos: -1.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,170.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 1324 - type: AtmosPipeColor color: '#0000FFFF' - uid: 11223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-44.5 + rot: 1.5707963267948966 rad + pos: 4.5,179.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 1107 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11226 + color: '#FF0000FF' + - uid: 11439 components: - type: Transform - pos: 79.5,-40.5 + rot: 1.5707963267948966 rad + pos: 87.5,18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 1107 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11269 + color: '#FF0000FF' + - uid: 11637 components: - type: Transform - pos: 73.5,-40.5 + rot: 1.5707963267948966 rad + pos: 87.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11937 + components: + - type: Transform + pos: -4.5,67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 1324 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11519 + - uid: 12244 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-13.5 + pos: -103.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - type: DeviceNetwork - deviceLists: - - 22509 - - uid: 13896 + color: '#17E8E2FF' + - uid: 12246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12285 + components: + - type: Transform + pos: -105.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12584 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,26.5 + pos: 77.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13897 + color: '#FF0000FF' + - uid: 12619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12621 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,27.5 + pos: 12.5,174.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14788 + color: '#FF0000FF' + - uid: 12625 components: - type: Transform - pos: -25.5,-65.5 + pos: -86.5,173.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15115 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17459 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17202 + color: '#FF0000FF' + - uid: 12630 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,30.5 + pos: -87.5,76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17252 + color: '#FF0000FF' + - uid: 12810 components: - type: Transform - pos: -4.5,-62.5 + pos: -1.5,176.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 19153 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17310 + color: '#9999FFFF' + - uid: 12913 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-65.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19153 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,5.5 + pos: 87.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17518 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25632 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17522 - components: - - type: Transform - pos: -15.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25483 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17526 + color: '#FF0000FF' + - uid: 13225 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,45.5 + pos: -65.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13248 + components: + - type: Transform + pos: -0.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13250 + components: + - type: Transform + pos: -6.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 25483 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17527 + - uid: 13289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16490 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,31.5 + pos: 89.5,22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 100 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 97 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17529 - components: - - type: Transform - pos: 25.5,3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 97 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,50.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25483 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17533 + - uid: 16589 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25483 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17535 - components: - - type: Transform - pos: 13.5,20.5 + pos: -34.5,101.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 99 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17539 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17540 - components: - - type: Transform - pos: -12.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29968 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17541 + - uid: 17082 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-33.5 + pos: 66.5,48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 64 - - 13575 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17543 + color: '#FF0000FF' + - uid: 17375 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-61.5 + pos: -76.5,105.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17544 - components: - - type: Transform - pos: -1.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17548 + color: '#FF0000FF' + - uid: 17607 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-35.5 + pos: 4.5,171.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-63.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17551 - components: - - type: Transform - pos: 35.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 102 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17552 - components: - - type: Transform - pos: 63.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29429 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17555 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 98 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29968 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 26 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17561 - components: - - type: Transform - pos: 9.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17564 - components: - - type: Transform - pos: -7.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17565 - components: - - type: Transform - pos: -6.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-66.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17575 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17576 - components: - - type: Transform - pos: -20.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17590 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21141 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17591 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21141 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17603 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17608 - components: - - type: Transform - pos: 11.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17609 - components: - - type: Transform - pos: 12.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17615 - components: - - type: Transform - pos: 29.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17616 - components: - - type: Transform - pos: 29.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17617 - components: - - type: Transform - pos: 19.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17618 - components: - - type: Transform - pos: 42.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17619 - components: - - type: Transform - pos: 39.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17620 - components: - - type: Transform - pos: 40.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17633 - components: - - type: Transform - pos: 44.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17634 - components: - - type: Transform - pos: 35.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17639 - components: - - type: Transform - pos: 47.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17640 - components: - - type: Transform - pos: 67.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17641 - components: - - type: Transform - pos: 70.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29441 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-40.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17653 - components: - - type: Transform - pos: 56.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17657 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17660 - components: - - type: Transform - pos: -59.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17661 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17662 - components: - - type: Transform - pos: -60.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17666 - components: - - type: Transform - pos: -38.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17669 - components: - - type: Transform - pos: -40.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17671 - components: - - type: Transform - pos: -25.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17675 - components: - - type: Transform - pos: -16.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15732 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17679 - components: - - type: Transform - pos: -6.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17680 - components: - - type: Transform - pos: 9.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17685 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17686 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17687 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17690 - components: - - type: Transform - pos: -10.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17692 - components: - - type: Transform - pos: 8.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 41 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 35 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17704 - components: - - type: Transform - pos: 16.5,44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 101 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17710 - components: - - type: Transform - pos: 68.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 92 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 92 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17714 - components: - - type: Transform - pos: 67.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 90 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 95 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 96 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17722 - components: - - type: Transform - pos: 83.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17723 - components: - - type: Transform - pos: 81.5,3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 96 - - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 17724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17725 - components: - - type: Transform - pos: -20.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20130 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20388 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20365 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20307 - components: - - type: Transform - pos: 29.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20365 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20309 - components: - - type: Transform - pos: 35.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20365 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20365 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21472 - components: - - type: Transform - pos: -21.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14983 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21473 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14983 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22192 - components: - - type: Transform - pos: -67.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22027 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22027 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10831 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 + pos: -4.5,172.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - type: DeviceNetwork - deviceLists: - - 21141 - - uid: 22698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31896 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25608 - components: - - type: Transform - pos: 4.5,39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25633 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25622 - components: - - type: Transform - pos: 0.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25633 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25883 - components: - - type: Transform - pos: 14.5,-47.5 - parent: 2 - - type: DeviceNetwork - configurators: - - 11535 - deviceLists: - - 15115 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 26799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 27155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 27550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 27405 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-27.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29440 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29618 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29741 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29619 - components: - - type: Transform - pos: -6.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29741 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29741 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29741 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29630 - components: - - type: Transform - pos: -4.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29740 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29740 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 29632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29740 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30001 - components: - - type: Transform - pos: 16.5,-49.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,43.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 30133 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30022 - components: - - type: Transform - pos: 24.5,48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 30133 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 30133 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31362 - components: - - type: Transform - pos: 24.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31424 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31387 - components: - - type: Transform - pos: 26.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31425 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31425 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 31694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 27405 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 32068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - type: DeviceNetwork - deviceLists: - - 32132 - - uid: 32069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - type: DeviceNetwork - deviceLists: - - 32132 -- proto: GasVentScrubber - entities: - - uid: 607 - components: - - type: Transform - pos: -35.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29991 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 27405 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-40.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 1324 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15115 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-76.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-79.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-70.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11093 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-47.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 1324 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 1107 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11096 - components: - - type: Transform - pos: 77.5,-40.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 1107 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11416 - components: - - type: Transform - pos: -24.5,30.5 - parent: 2 - - uid: 12864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17459 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13767 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-79.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14987 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14146 - components: - - type: Transform - pos: 6.5,-47.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15115 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14382 - components: - - type: Transform - pos: 59.5,-30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17459 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14458 - components: - - type: Transform - pos: -23.5,-65.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-63.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19153 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15869 - components: - - type: Transform - pos: -17.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15732 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15115 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17034 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-51.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17047 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25482 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29740 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17729 - components: - - type: Transform - pos: -14.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29968 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17731 - components: - - type: Transform - pos: -7.5,44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25483 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17732 - components: - - type: Transform - pos: -13.5,47.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25483 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17733 - components: - - type: Transform - pos: -18.5,44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25483 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,50.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25483 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17735 - components: - - type: Transform - pos: -13.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29968 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 100 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 97 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17738 - components: - - type: Transform - pos: 29.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 98 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17740 - components: - - type: Transform - pos: 36.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 102 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17743 - components: - - type: Transform - pos: 61.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 64 - - 13575 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17746 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17749 - components: - - type: Transform - pos: 5.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 99 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17752 - components: - - type: Transform - pos: 28.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-63.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29441 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 26 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17766 - components: - - type: Transform - pos: -5.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-65.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 89 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 17768 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-74.5 + pos: -23.5,191.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17774 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17775 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21141 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21141 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17806 - components: - - type: Transform - pos: 13.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 4495 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17816 - components: - - type: Transform - pos: 20.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17817 - components: - - type: Transform - pos: 41.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17818 - components: - - type: Transform - pos: 38.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17835 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17836 - components: - - type: Transform - pos: 43.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17837 - components: - - type: Transform - pos: 47.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17851 - components: - - type: Transform - pos: 58.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17857 - components: - - type: Transform - pos: -58.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17859 - components: - - type: Transform - pos: -57.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17863 - components: - - type: Transform - pos: -45.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17865 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17452 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17874 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25482 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25632 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17892 - components: - - type: Transform - pos: 7.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17893 - components: - - type: Transform - pos: 23.5,3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 97 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17895 - components: - - type: Transform - pos: 15.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17897 - components: - - type: Transform - pos: -6.5,-72.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17899 - components: - - type: Transform - pos: 14.5,44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 101 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 41 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17906 - components: - - type: Transform - pos: 65.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17907 - components: - - type: Transform - pos: 66.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 92 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17910 - components: - - type: Transform - pos: 67.5,3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 90 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 96 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17914 - components: - - type: Transform - pos: 80.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 95 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17916 - components: - - type: Transform - pos: 79.5,3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 96 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 92 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17920 - components: - - type: Transform - pos: -22.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17417 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18478 - components: - - type: Transform - pos: -6.5,-62.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19153 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31425 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20388 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20365 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20024 - components: - - type: Transform - pos: 31.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20365 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: DeviceNetwork - deviceLists: - - 22509 - - uid: 20119 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20365 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20311 - components: - - type: Transform - pos: 30.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20365 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14983 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21475 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14983 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: DeviceNetwork - deviceLists: - - 42 - - uid: 21954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: DeviceNetwork - deviceLists: - - 42 - - uid: 22194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22027 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22195 - components: - - type: Transform - pos: -66.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22027 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: DeviceNetwork - deviceLists: - - 21141 - - uid: 22429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10831 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22879 - components: - - type: Transform - pos: 9.5,-34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31896 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22881 - components: - - type: Transform - pos: 6.5,-34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31896 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23554 - components: - - type: Transform - pos: 85.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25633 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25626 - components: - - type: Transform - pos: 2.5,39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25633 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 27388 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29429 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29439 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29440 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29622 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29741 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29741 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29624 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29741 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29741 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29740 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29740 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 29996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-55.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,40.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 30133 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 30133 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30026 - components: - - type: Transform - pos: 22.5,48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 30133 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30128 - components: - - type: Transform - pos: 27.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31896 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31363 - components: - - type: Transform - pos: 22.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31424 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31394 + - uid: 17804 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,17.5 + pos: 5.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19581 + components: + - type: Transform + pos: 83.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20648 + components: + - type: Transform + pos: -73.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24112 + components: + - type: Transform + pos: -29.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27455 + components: + - type: Transform + pos: 77.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31192 + components: + - type: Transform + pos: -28.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31226 + components: + - type: Transform + pos: -20.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31383 + components: + - type: Transform + pos: -99.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31664 + components: + - type: Transform + pos: 10.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31676 + components: + - type: Transform + pos: 21.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31784 + components: + - type: Transform + pos: 22.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31834 + components: + - type: Transform + pos: 17.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31991 + components: + - type: Transform + pos: -7.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32008 + components: + - type: Transform + pos: -3.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32459 + components: + - type: Transform + pos: 8.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32572 + components: + - type: Transform + pos: -84.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32763 + components: + - type: Transform + pos: -86.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32764 + components: + - type: Transform + pos: -89.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32765 + components: + - type: Transform + pos: -92.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32766 + components: + - type: Transform + pos: -82.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33157 + components: + - type: Transform + pos: -103.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33166 + components: + - type: Transform + pos: -92.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33170 + components: + - type: Transform + pos: -94.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33493 + components: + - type: Transform + pos: -60.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33497 + components: + - type: Transform + pos: -68.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33507 + components: + - type: Transform + pos: -58.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33762 + components: + - type: Transform + pos: -37.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33763 + components: + - type: Transform + pos: -36.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33782 + components: + - type: Transform + pos: -43.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33793 + components: + - type: Transform + pos: -41.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33863 + components: + - type: Transform + pos: -22.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33876 + components: + - type: Transform + pos: -24.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34007 + components: + - type: Transform + pos: -23.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34015 + components: + - type: Transform + pos: -21.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34027 + components: + - type: Transform + pos: -14.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34028 + components: + - type: Transform + pos: -17.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34044 + components: + - type: Transform + pos: -11.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34104 + components: + - type: Transform + pos: -6.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34298 + components: + - type: Transform + pos: -11.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36146 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37498 + components: + - type: Transform + pos: -69.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 38377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 39495 + components: + - type: Transform + pos: -88.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPort + entities: + - uid: 1608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,59.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,59.5 + parent: 2 + - uid: 12599 + components: + - type: Transform + anchored: False + pos: -29.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 12622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,173.5 + parent: 2 + - uid: 12632 + components: + - type: Transform + pos: -90.5,174.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + pos: -86.5,151.5 + parent: 2 + - uid: 13471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,175.5 + parent: 2 + - uid: 16949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 13386 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 37842 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 38402 + components: + - type: Transform + pos: -68.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38407 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -26.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 38409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38411 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -85.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 38414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPressurePump + entities: + - uid: 4050 + components: + - type: Transform + pos: -104.5,28.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,28.5 + parent: 2 + - type: GasPressurePump + targetPressure: 300 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,21.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,22.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,176.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12303 + components: + - type: Transform + pos: -105.5,18.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - uid: 12305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,18.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12310 + components: + - type: Transform + pos: -111.5,18.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - uid: 12313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,18.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,18.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,175.5 + parent: 2 + - uid: 12623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,173.5 + parent: 2 + - uid: 18658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,26.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,27.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23421 + components: + - type: Transform + pos: -86.5,150.5 + parent: 2 + - uid: 32175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,199.5 + parent: 2 + - type: GasPressurePump + targetPressure: 105 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,11.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,147.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasRecyclerMachineCircuitboard + entities: + - uid: 12293 + components: + - type: Transform + parent: 12288 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GasThermoMachineFreezer + entities: + - uid: 768 + components: + - type: Transform + anchored: False + pos: -102.5,30.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 9040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,174.5 + parent: 2 + - uid: 11480 + components: + - type: Transform + pos: 90.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12844 + components: + - type: Transform + anchored: False + pos: -106.5,28.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 23008 + components: + - type: Transform + pos: -23.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 30859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,12.5 + parent: 2 + - uid: 32277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,145.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 7897 + components: + - type: Transform + anchored: False + pos: -102.5,31.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 12144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15328 + components: + - type: Transform + anchored: False + pos: -105.5,28.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 30860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,11.5 + parent: 2 + - uid: 32279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,146.5 + parent: 2 +- proto: GasValve + entities: + - uid: 18010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasVentPump + entities: + - uid: 488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3165 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3946 + components: + - type: Transform + pos: -73.5,112.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-13.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + pos: -58.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-13.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6082 + components: + - type: Transform + pos: -44.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8175 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8241 + components: + - type: Transform + pos: 85.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8248 + components: + - type: Transform + pos: 76.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8252 + components: + - type: Transform + pos: -24.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8270 + components: + - type: Transform + pos: 72.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8271 + components: + - type: Transform + pos: 69.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8282 + components: + - type: Transform + pos: -60.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8287 + components: + - type: Transform + pos: -19.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,64.5 + parent: 2 + - uid: 8990 + components: + - type: Transform + pos: -27.5,4.5 + parent: 2 + - uid: 8991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 2 + - uid: 8995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8996 + components: + - type: Transform + pos: 1.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9005 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 9007 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 9014 + components: + - type: Transform + pos: -109.5,48.5 + parent: 2 + - uid: 9026 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 9027 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 9044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9053 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 9554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11247 + components: + - type: Transform + pos: -46.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15213 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -97.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 15343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17314 + components: + - type: Transform + pos: -0.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18722 + components: + - type: Transform + pos: -42.5,104.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20204 + components: + - type: Transform + pos: 101.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20206 + components: + - type: Transform + pos: 93.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21177 + components: + - type: Transform + anchored: False + pos: 72.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 22373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22504 + components: + - type: Transform + anchored: False + pos: 72.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 22515 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: 80.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 23134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23574 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: 55.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 23581 + components: + - type: Transform + pos: 79.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25782 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29855 + components: + - type: Transform + pos: -108.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31367 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -20.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 31377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31385 + components: + - type: Transform + pos: -98.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31427 + components: + - type: Transform + pos: -14.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31829 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: 21.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 31843 + components: + - type: Transform + pos: 11.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32106 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: 0.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32186 + components: + - type: Transform + anchored: False + pos: -23.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32614 + components: + - type: Transform + pos: -88.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32629 + components: + - type: Transform + pos: -78.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32657 + components: + - type: Transform + pos: -71.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32685 + components: + - type: Transform + pos: -60.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33149 + components: + - type: Transform + pos: -90.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33233 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -120.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33234 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -125.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33271 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -117.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33325 + components: + - type: Transform + anchored: False + pos: -118.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33526 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -54.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33598 + components: + - type: Transform + pos: -70.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33725 + components: + - type: Transform + anchored: False + pos: -77.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33844 + components: + - type: Transform + pos: -47.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34038 + components: + - type: Transform + pos: -12.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34173 + components: + - type: Transform + pos: -5.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34293 + components: + - type: Transform + pos: -6.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34317 + components: + - type: Transform + pos: -4.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34341 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -16.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 34380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34391 + components: + - type: Transform + pos: -18.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34401 + components: + - type: Transform + pos: 5.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35994 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -6.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 35995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37810 + components: + - type: Transform + pos: 65.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7646 + components: + - type: Transform + pos: 3.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8147 + components: + - type: Transform + pos: -36.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8174 + components: + - type: Transform + pos: -72.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8176 + components: + - type: Transform + pos: -39.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8245 + components: + - type: Transform + pos: 70.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8247 + components: + - type: Transform + pos: 62.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8261 + components: + - type: Transform + pos: -68.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8268 + components: + - type: Transform + pos: 97.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8275 + components: + - type: Transform + pos: -58.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9024 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9045 + components: + - type: Transform + pos: -108.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9175 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12148 + components: + - type: Transform + anchored: False + pos: 54.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 12984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13465 + components: + - type: Transform + pos: -33.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15354 + components: + - type: Transform + pos: -107.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16470 + components: + - type: Transform + anchored: False + pos: -23.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 16680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,110.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18678 + components: + - type: Transform + pos: -38.5,104.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19801 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -120.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 19945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 115.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20203 + components: + - type: Transform + pos: 115.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21086 + components: + - type: Transform + anchored: False + pos: 70.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 21236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22503 + components: + - type: Transform + anchored: False + pos: 70.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 22527 + components: + - type: Transform + pos: 79.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23359 + components: + - type: Transform + pos: -59.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23550 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: 54.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 23748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30979 + components: + - type: Transform + pos: -7.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31629 + components: + - type: Transform + pos: 0.5,177.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 31425 - type: AtmosPipeColor color: '#FF0000FF' - uid: 31718 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 27405 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 32070 - components: - - type: Transform - pos: -32.5,6.5 + pos: 0.5,199.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - type: DeviceNetwork - deviceLists: - - 32132 - - uid: 32071 - components: - - type: Transform - pos: -28.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: DeviceNetwork - deviceLists: - - 32132 -- proto: GasVolumePump - entities: - - uid: 990 + - uid: 31732 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-55.5 + pos: 9.5,198.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 31770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32103 + components: + - type: Transform + anchored: False + parent: 18379 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + bodyType: Dynamic + - type: InsideEntityStorage + - uid: 32187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32500 + components: + - type: Transform + pos: -59.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32548 + components: + - type: Transform + pos: -79.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32615 + components: + - type: Transform + pos: -87.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32628 + components: + - type: Transform + pos: -80.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32656 + components: + - type: Transform + pos: -70.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32729 + components: + - type: Transform + pos: -59.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32730 + components: + - type: Transform + anchored: False + pos: -59.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32745 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -80.5,155.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32757 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -81.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32797 + components: + - type: Transform + pos: -97.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32872 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -77.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33231 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -125.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33270 + components: + - type: Transform + anchored: False + pos: -115.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33334 + components: + - type: Transform + anchored: False + pos: -120.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33416 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -110.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33575 + components: + - type: Transform + pos: -54.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33727 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -76.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33843 + components: + - type: Transform + pos: -46.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34039 + components: + - type: Transform + pos: -10.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34172 + components: + - type: Transform + pos: -6.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34324 + components: + - type: Transform + pos: -5.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34334 + components: + - type: Transform + pos: -20.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34384 + components: + - type: Transform + pos: -15.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35602 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 35606 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35607 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35663 + components: + - type: Transform + anchored: False + pos: -49.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 35985 + components: + - type: Transform + pos: -7.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35986 + components: + - type: Transform + pos: 1.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35991 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -2.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 36072 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36125 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36185 + components: + - type: Transform + pos: -2.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36198 + components: + - type: Transform + anchored: False + pos: 22.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 36316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37804 + components: + - type: Transform + pos: 66.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37943 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 37842 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: Gateway + entities: + - uid: 4215 + components: + - type: Transform + pos: -31.5,85.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + pos: -84.5,41.5 + parent: 2 + - uid: 12044 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 + - uid: 12138 + components: + - type: Transform + pos: 66.5,34.5 + parent: 2 + - uid: 12150 + components: + - type: Transform + pos: -13.5,169.5 + parent: 2 + - uid: 12195 + components: + - type: Transform + pos: -64.5,157.5 + parent: 2 + - uid: 12521 + components: + - type: Transform + pos: -31.5,77.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + pos: -49.5,85.5 + parent: 2 + - uid: 21541 + components: + - type: Transform + pos: -40.5,67.5 + parent: 2 + - uid: 21542 + components: + - type: Transform + pos: -49.5,77.5 + parent: 2 +- proto: Gauze1 + entities: + - uid: 22414 + components: + - type: Transform + pos: -9.638313,189.48204 + parent: 2 + - uid: 24219 + components: + - type: Transform + pos: -9.390856,189.71817 + parent: 2 - proto: GeigerCounter entities: - - uid: 17924 + - uid: 20367 components: - type: Transform - pos: 5.6050067,-74.47972 + pos: -82.51291,162.51562 parent: 2 - - uid: 17925 + - uid: 28010 components: - type: Transform - pos: -16.256233,4.1085873 + pos: -91.27718,48.618988 parent: 2 -- proto: GenericTank +- proto: GeneratorBasic entities: - - uid: 7967 + - uid: 7704 components: - type: Transform - pos: 31.5,-45.5 + pos: -55.5,128.5 parent: 2 -- proto: Girder + - uid: 7705 + components: + - type: Transform + pos: -54.5,128.5 + parent: 2 + - uid: 34522 + components: + - type: Transform + pos: -118.5,105.5 + parent: 2 +- proto: GeneratorRTG entities: - - uid: 602 + - uid: 1290 components: - type: Transform - pos: -49.5,-13.5 + pos: -65.5,-7.5 parent: 2 - - uid: 4106 + - uid: 17660 components: - type: Transform - pos: -29.5,11.5 + pos: 68.5,21.5 parent: 2 - - uid: 9377 + - uid: 17833 components: - type: Transform - pos: 4.5,2.5 - parent: 2 - - uid: 12286 - components: - - type: Transform - pos: 19.5,19.5 - parent: 2 - - uid: 16666 - components: - - type: Transform - pos: 53.5,-77.5 - parent: 2 - - uid: 17928 - components: - - type: Transform - pos: 59.5,6.5 - parent: 2 - - uid: 17929 - components: - - type: Transform - pos: 51.5,-50.5 - parent: 2 - - uid: 17931 - components: - - type: Transform - pos: 48.5,-63.5 - parent: 2 - - uid: 17932 - components: - - type: Transform - pos: 31.5,2.5 - parent: 2 - - uid: 17933 - components: - - type: Transform - pos: -18.5,-42.5 - parent: 2 - - uid: 17934 - components: - - type: Transform - pos: 55.5,-53.5 - parent: 2 - - uid: 17935 - components: - - type: Transform - pos: 31.5,5.5 - parent: 2 - - uid: 17936 - components: - - type: Transform - pos: 66.5,-69.5 - parent: 2 - - uid: 17937 - components: - - type: Transform - pos: 40.5,16.5 - parent: 2 - - uid: 17938 - components: - - type: Transform - pos: 38.5,2.5 - parent: 2 - - uid: 21110 - components: - - type: Transform - pos: -33.5,32.5 - parent: 2 - - uid: 21613 - components: - - type: Transform - pos: -36.5,11.5 - parent: 2 - - uid: 22637 - components: - - type: Transform - pos: 15.5,-39.5 - parent: 2 - - uid: 22812 - components: - - type: Transform - pos: 24.5,-39.5 - parent: 2 - - uid: 22815 - components: - - type: Transform - pos: 26.5,-39.5 - parent: 2 - - uid: 22831 - components: - - type: Transform - pos: 29.5,-39.5 - parent: 2 - - uid: 25819 - components: - - type: Transform - pos: -39.5,11.5 - parent: 2 - - uid: 27408 - components: - - type: Transform - pos: -49.5,-16.5 - parent: 2 - - uid: 27446 - components: - - type: Transform - pos: -47.5,-17.5 - parent: 2 - - uid: 29796 - components: - - type: Transform - pos: -48.5,-19.5 - parent: 2 - - uid: 30218 - components: - - type: Transform - pos: 53.5,-53.5 - parent: 2 - - uid: 30223 - components: - - type: Transform - pos: 36.5,-65.5 - parent: 2 - - uid: 30229 - components: - - type: Transform - pos: -24.5,-46.5 - parent: 2 - - uid: 30584 - components: - - type: Transform - pos: -30.5,40.5 - parent: 2 - - uid: 31326 - components: - - type: Transform - pos: -38.5,-18.5 - parent: 2 - - uid: 31745 - components: - - type: Transform - pos: -47.5,-12.5 - parent: 2 -- proto: GlassBoxLaserFilled - entities: - - uid: 17939 - components: - - type: Transform - pos: 7.5,-17.5 - parent: 2 -- proto: Gohei - entities: - - uid: 21326 - components: - - type: MetaData - desc: Продвинутое оборудование NanoTrasen. Которым можно наказать плохого сотрудника - name: плеть - - type: Transform - parent: 20988 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26601 - components: - - type: MetaData - desc: Продвинутое оборудование NanoTrasen. Которым можно наказать плохого сотрудника - name: плеть - - type: Transform - pos: -0.48094165,-6.379586 - parent: 2 -- proto: GoldenPlunger - entities: - - uid: 24326 - components: - - type: Transform - pos: -2.7183573,-22.000849 - parent: 2 -- proto: GoldRing - entities: - - uid: 22589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.17041,1.4977794 - parent: 2 - - uid: 24767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.20166,1.4196544 - parent: 2 -- proto: GoldRingDiamond - entities: - - uid: 24527 - components: - - type: Transform - pos: -2.711413,-23.02168 - parent: 2 -- proto: GravityGenerator - entities: - - uid: 6379 - components: - - type: Transform - pos: -15.5,-74.5 - parent: 2 -- proto: GrenadeDummy - entities: - - uid: 11107 - components: - - type: MetaData - name: граната - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: GrenadeFoamDart - entities: - - uid: 11348 - components: - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: GrenadeStinger - entities: - - uid: 11349 - components: - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11350 - components: - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11351 - components: - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11352 - components: - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11353 - components: - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Grille - entities: - - uid: 234 - components: - - type: Transform - pos: 5.5,-69.5 - parent: 2 - - uid: 249 - components: - - type: Transform - pos: 21.5,-55.5 - parent: 2 - - uid: 275 - components: - - type: Transform - pos: 24.5,-48.5 - parent: 2 - - uid: 305 - components: - - type: Transform - pos: -34.5,-66.5 - parent: 2 - - uid: 313 - components: - - type: Transform - pos: 89.5,-0.5 - parent: 2 - - uid: 363 - components: - - type: Transform - pos: 22.5,-44.5 - parent: 2 - - uid: 630 - components: - - type: Transform - pos: 22.5,-48.5 - parent: 2 - - uid: 706 - components: - - type: Transform - pos: 24.5,-46.5 - parent: 2 - - uid: 779 - components: - - type: Transform - pos: 24.5,-66.5 - parent: 2 - - uid: 934 - components: - - type: Transform - pos: 22.5,-50.5 - parent: 2 - - uid: 935 - components: - - type: Transform - pos: 22.5,-68.5 - parent: 2 - - uid: 995 - components: - - type: Transform - pos: 22.5,-67.5 - parent: 2 - - uid: 997 - components: - - type: Transform - pos: 15.5,-45.5 - parent: 2 - - uid: 1004 - components: - - type: Transform - pos: 15.5,-43.5 - parent: 2 - - uid: 1306 - components: - - type: Transform - pos: -29.5,28.5 - parent: 2 - - uid: 1407 - components: - - type: Transform - pos: 9.5,43.5 - parent: 2 - - uid: 1424 - components: - - type: Transform - pos: 8.5,43.5 - parent: 2 - - uid: 1564 - components: - - type: Transform - pos: 22.5,-45.5 - parent: 2 - - uid: 2016 - components: - - type: Transform - pos: 10.5,43.5 - parent: 2 - - uid: 2168 - components: - - type: Transform - pos: 39.5,19.5 - parent: 2 - - uid: 2652 - components: - - type: Transform - pos: -5.5,0.5 - parent: 2 - - uid: 3184 - components: - - type: Transform - pos: -39.5,42.5 - parent: 2 - - uid: 3185 - components: - - type: Transform - pos: -29.5,27.5 - parent: 2 - - uid: 3217 - components: - - type: Transform - pos: -29.5,24.5 - parent: 2 - - uid: 3218 - components: - - type: Transform - pos: -29.5,23.5 - parent: 2 - - uid: 3223 - components: - - type: Transform - pos: -29.5,19.5 - parent: 2 - - uid: 3224 - components: - - type: Transform - pos: -29.5,20.5 - parent: 2 - - uid: 3225 - components: - - type: Transform - pos: -39.5,32.5 - parent: 2 - - uid: 3226 - components: - - type: Transform - pos: -39.5,31.5 - parent: 2 - - uid: 3232 - components: - - type: Transform - pos: -35.5,47.5 - parent: 2 - - uid: 3233 - components: - - type: Transform - pos: -34.5,47.5 - parent: 2 - - uid: 3237 - components: - - type: Transform - pos: -39.5,30.5 - parent: 2 - - uid: 3238 - components: - - type: Transform - pos: -26.5,37.5 - parent: 2 - - uid: 3239 - components: - - type: Transform - pos: -20.5,31.5 - parent: 2 - - uid: 3244 - components: - - type: Transform - pos: -16.5,31.5 - parent: 2 - - uid: 3246 - components: - - type: Transform - pos: -36.5,47.5 - parent: 2 - - uid: 3756 - components: - - type: Transform - pos: 22.5,-49.5 - parent: 2 - - uid: 4125 - components: - - type: Transform - pos: 15.5,-49.5 - parent: 2 - - uid: 4150 - components: - - type: Transform - pos: 15.5,-47.5 - parent: 2 - - uid: 4153 - components: - - type: Transform - pos: 19.5,-73.5 - parent: 2 - - uid: 4159 - components: - - type: Transform - pos: 22.5,-60.5 - parent: 2 - - uid: 4222 - components: - - type: Transform - pos: 23.5,-76.5 - parent: 2 - - uid: 4223 - components: - - type: Transform - pos: 23.5,-78.5 - parent: 2 - - uid: 4228 - components: - - type: Transform - pos: 23.5,-77.5 - parent: 2 - - uid: 4234 - components: - - type: Transform - pos: 1.5,53.5 - parent: 2 - - uid: 4238 - components: - - type: Transform - pos: 0.5,49.5 - parent: 2 - - uid: 4287 - components: - - type: Transform - pos: 16.5,-55.5 - parent: 2 - - uid: 4409 - components: - - type: Transform - pos: -15.5,-67.5 - parent: 2 - - uid: 4410 - components: - - type: Transform - pos: -13.5,-67.5 - parent: 2 - - uid: 4457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,8.5 - parent: 2 - - uid: 4465 - components: - - type: Transform - pos: -50.5,-26.5 - parent: 2 - - uid: 5049 - components: - - type: Transform - pos: 64.5,-64.5 - parent: 2 - - uid: 5089 - components: - - type: Transform - pos: -2.5,1.5 - parent: 2 - - uid: 5090 - components: - - type: Transform - pos: -2.5,2.5 - parent: 2 - - uid: 5389 - components: - - type: Transform - pos: 74.5,-32.5 - parent: 2 - - uid: 5472 - components: - - type: Transform - pos: 5.5,-68.5 - parent: 2 - - uid: 5478 - components: - - type: Transform - pos: 17.5,-69.5 - parent: 2 - - uid: 5602 - components: - - type: Transform - pos: -12.5,22.5 - parent: 2 - - uid: 5615 - components: - - type: Transform - pos: 28.5,8.5 - parent: 2 - - uid: 5764 - components: - - type: Transform - pos: 68.5,-31.5 - parent: 2 - - uid: 5909 - components: - - type: Transform - pos: -11.5,-67.5 - parent: 2 - - uid: 5912 - components: - - type: Transform - pos: -9.5,-67.5 - parent: 2 - - uid: 6119 - components: - - type: Transform - pos: -8.5,-65.5 - parent: 2 - - uid: 6121 - components: - - type: Transform - pos: -8.5,-63.5 - parent: 2 - - uid: 6720 - components: - - type: Transform - pos: 14.5,11.5 - parent: 2 - - uid: 7604 - components: - - type: Transform - pos: -12.5,25.5 - parent: 2 - - uid: 7744 - components: - - type: Transform - pos: 3.5,47.5 - parent: 2 - - uid: 8268 - components: - - type: Transform - pos: -37.5,47.5 - parent: 2 - - uid: 8269 - components: - - type: Transform - pos: -39.5,34.5 - parent: 2 - - uid: 8285 - components: - - type: Transform - pos: 23.5,-79.5 - parent: 2 - - uid: 8860 - components: - - type: Transform - pos: 42.5,-45.5 - parent: 2 - - uid: 8959 - components: - - type: Transform - pos: -39.5,43.5 - parent: 2 - - uid: 9339 - components: - - type: Transform - pos: 18.5,-69.5 - parent: 2 - - uid: 9340 - components: - - type: Transform - pos: 17.5,-73.5 - parent: 2 - - uid: 9382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,5.5 - parent: 2 - - uid: 9722 - components: - - type: Transform - pos: -29.5,22.5 - parent: 2 - - uid: 9723 - components: - - type: Transform - pos: -39.5,33.5 - parent: 2 - - uid: 9727 - components: - - type: Transform - pos: -24.5,29.5 - parent: 2 - - uid: 9820 - components: - - type: Transform - pos: -49.5,-32.5 - parent: 2 - - uid: 9824 - components: - - type: Transform - pos: -28.5,29.5 - parent: 2 - - uid: 9826 - components: - - type: Transform - pos: -29.5,26.5 - parent: 2 - - uid: 9903 - components: - - type: Transform - pos: 22.5,-46.5 - parent: 2 - - uid: 9987 - components: - - type: Transform - pos: 18.5,-55.5 - parent: 2 - - uid: 9990 - components: - - type: Transform - pos: 22.5,-66.5 - parent: 2 - - uid: 10232 - components: - - type: Transform - pos: -22.5,29.5 - parent: 2 - - uid: 10669 - components: - - type: Transform - pos: -39.5,-38.5 - parent: 2 - - uid: 11057 - components: - - type: Transform - pos: 24.5,-64.5 - parent: 2 - - uid: 11072 - components: - - type: Transform - pos: -40.5,-39.5 - parent: 2 - - uid: 11102 - components: - - type: Transform - pos: -41.5,-39.5 - parent: 2 - - uid: 11187 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 2 - - uid: 11224 - components: - - type: Transform - pos: 70.5,-42.5 - parent: 2 - - uid: 11377 - components: - - type: Transform - pos: -13.5,22.5 - parent: 2 - - uid: 11466 - components: - - type: Transform - pos: 2.5,53.5 - parent: 2 - - uid: 11498 - components: - - type: Transform - pos: 3.5,-12.5 - parent: 2 - - uid: 11513 - components: - - type: Transform - pos: 72.5,-42.5 - parent: 2 - - uid: 11517 - components: - - type: Transform - pos: 79.5,6.5 - parent: 2 - - uid: 11765 - components: - - type: Transform - pos: 70.5,-32.5 - parent: 2 - - uid: 11787 - components: - - type: Transform - pos: 18.5,-73.5 - parent: 2 - - uid: 11837 - components: - - type: Transform - pos: -14.5,22.5 - parent: 2 - - uid: 11906 - components: - - type: Transform - pos: -14.5,25.5 - parent: 2 - - uid: 11991 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 2 - - uid: 12577 - components: - - type: Transform - pos: 5.5,-66.5 - parent: 2 - - uid: 12872 - components: - - type: Transform - pos: 75.5,-32.5 - parent: 2 - - uid: 12875 - components: - - type: Transform - pos: 69.5,-44.5 - parent: 2 - - uid: 12877 - components: - - type: Transform - pos: 69.5,-32.5 - parent: 2 - - uid: 12910 - components: - - type: Transform - pos: 61.5,-28.5 - parent: 2 - - uid: 13226 - components: - - type: Transform - pos: 6.5,43.5 - parent: 2 - - uid: 13236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-82.5 - parent: 2 - - uid: 13322 - components: - - type: Transform - pos: 71.5,-32.5 - parent: 2 - - uid: 13489 - components: - - type: Transform - pos: 73.5,-32.5 - parent: 2 - - uid: 13558 - components: - - type: Transform - pos: 7.5,43.5 - parent: 2 - - uid: 14116 - components: - - type: Transform - pos: 4.5,53.5 - parent: 2 - - uid: 14149 - components: - - type: Transform - pos: 15.5,-51.5 - parent: 2 - - uid: 14442 - components: - - type: Transform - pos: -25.5,0.5 - parent: 2 - - uid: 14448 - components: - - type: Transform - pos: 25.5,-83.5 - parent: 2 - - uid: 14454 - components: - - type: Transform - pos: -58.5,-12.5 - parent: 2 - - uid: 14518 - components: - - type: Transform - pos: 3.5,53.5 - parent: 2 - - uid: 14753 - components: - - type: Transform - pos: -20.5,27.5 - parent: 2 - - uid: 14798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,46.5 - parent: 2 - - uid: 14804 - components: - - type: Transform - pos: 22.5,-47.5 - parent: 2 - - uid: 14890 - components: - - type: Transform - pos: -59.5,-12.5 - parent: 2 - - uid: 14948 - components: - - type: Transform - pos: 22.5,-65.5 - parent: 2 - - uid: 14963 - components: - - type: Transform - pos: 24.5,-62.5 - parent: 2 - - uid: 14976 - components: - - type: Transform - pos: -26.5,0.5 - parent: 2 - - uid: 14981 - components: - - type: Transform - pos: 19.5,-69.5 - parent: 2 - - uid: 15924 - components: - - type: Transform - pos: 61.5,-15.5 - parent: 2 - - uid: 16455 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-78.5 - parent: 2 - - uid: 16461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-82.5 - parent: 2 - - uid: 16502 - components: - - type: Transform - pos: -32.5,0.5 - parent: 2 - - uid: 16661 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 2 - - uid: 16662 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 2 - - uid: 16772 - components: - - type: Transform - pos: 14.5,-50.5 - parent: 2 - - uid: 16774 - components: - - type: Transform - pos: 11.5,-50.5 - parent: 2 - - uid: 16795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-39.5 - parent: 2 - - uid: 16796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-39.5 - parent: 2 - - uid: 17001 - components: - - type: Transform - pos: -4.5,45.5 - parent: 2 - - uid: 17004 - components: - - type: Transform - pos: -4.5,49.5 - parent: 2 - - uid: 17005 - components: - - type: Transform - pos: 3.5,45.5 - parent: 2 - - uid: 17006 - components: - - type: Transform - pos: -0.5,49.5 - parent: 2 - - uid: 17007 - components: - - type: Transform - pos: 3.5,49.5 - parent: 2 - - uid: 17059 - components: - - type: Transform - pos: 1.5,-53.5 - parent: 2 - - uid: 17524 - components: - - type: Transform - pos: -1.5,49.5 - parent: 2 - - uid: 17536 - components: - - type: Transform - pos: 18.5,12.5 - parent: 2 - - uid: 17882 - components: - - type: Transform - pos: -43.5,-39.5 - parent: 2 - - uid: 17952 - components: - - type: Transform - pos: -34.5,0.5 - parent: 2 - - uid: 17955 - components: - - type: Transform - pos: -28.5,0.5 - parent: 2 - - uid: 17956 - components: - - type: Transform - pos: -27.5,0.5 - parent: 2 - - uid: 17957 - components: - - type: Transform - pos: -37.5,17.5 - parent: 2 - - uid: 17958 - components: - - type: Transform - pos: -38.5,17.5 - parent: 2 - - uid: 17963 - components: - - type: Transform - pos: -35.5,0.5 - parent: 2 - - uid: 17964 - components: - - type: Transform - pos: -33.5,0.5 - parent: 2 - - uid: 17968 - components: - - type: Transform - pos: 69.5,-15.5 - parent: 2 - - uid: 17971 - components: - - type: Transform - pos: -36.5,17.5 - parent: 2 - - uid: 17979 - components: - - type: Transform - pos: -30.5,15.5 - parent: 2 - - uid: 17980 - components: - - type: Transform - pos: -30.5,14.5 - parent: 2 - - uid: 17981 - components: - - type: Transform - pos: -30.5,16.5 - parent: 2 - - uid: 17982 - components: - - type: Transform - pos: -32.5,16.5 - parent: 2 - - uid: 17983 - components: - - type: Transform - pos: -32.5,15.5 - parent: 2 - - uid: 17984 - components: - - type: Transform - pos: -32.5,14.5 - parent: 2 - - uid: 17990 - components: - - type: Transform - pos: -42.5,19.5 - parent: 2 - - uid: 17991 - components: - - type: Transform - pos: -43.5,19.5 - parent: 2 - - uid: 17992 - components: - - type: Transform - pos: -48.5,26.5 - parent: 2 - - uid: 17993 - components: - - type: Transform - pos: -50.5,26.5 - parent: 2 - - uid: 17994 - components: - - type: Transform - pos: -50.5,25.5 - parent: 2 - - uid: 17995 - components: - - type: Transform - pos: -50.5,24.5 - parent: 2 - - uid: 17996 - components: - - type: Transform - pos: -51.5,24.5 - parent: 2 - - uid: 17997 - components: - - type: Transform - pos: -51.5,13.5 - parent: 2 - - uid: 17998 - components: - - type: Transform - pos: -51.5,15.5 - parent: 2 - - uid: 18000 - components: - - type: Transform - pos: -38.5,13.5 - parent: 2 - - uid: 18002 - components: - - type: Transform - pos: -35.5,13.5 - parent: 2 - - uid: 18003 - components: - - type: Transform - pos: -37.5,13.5 - parent: 2 - - uid: 18004 - components: - - type: Transform - pos: -36.5,13.5 - parent: 2 - - uid: 18015 - components: - - type: Transform - pos: -67.5,11.5 - parent: 2 - - uid: 18016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-2.5 - parent: 2 - - uid: 18017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,7.5 - parent: 2 - - uid: 18018 - components: - - type: Transform - pos: -65.5,4.5 - parent: 2 - - uid: 18019 - components: - - type: Transform - pos: -65.5,3.5 - parent: 2 - - uid: 18020 - components: - - type: Transform - pos: -65.5,2.5 - parent: 2 - - uid: 18021 - components: - - type: Transform - pos: -65.5,1.5 - parent: 2 - - uid: 18022 - components: - - type: Transform - pos: -65.5,0.5 - parent: 2 - - uid: 18023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,7.5 - parent: 2 - - uid: 18024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-2.5 - parent: 2 - - uid: 18025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-2.5 - parent: 2 - - uid: 18026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-2.5 - parent: 2 - - uid: 18027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,7.5 - parent: 2 - - uid: 18028 - components: - - type: Transform - pos: -62.5,-0.5 - parent: 2 - - uid: 18029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,7.5 - parent: 2 - - uid: 18030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-2.5 - parent: 2 - - uid: 18031 - components: - - type: Transform - pos: -62.5,-3.5 - parent: 2 - - uid: 18032 - components: - - type: Transform - pos: -62.5,-2.5 - parent: 2 - - uid: 18033 - components: - - type: Transform - pos: -62.5,-1.5 - parent: 2 - - uid: 18034 - components: - - type: Transform - pos: 74.5,-11.5 - parent: 2 - - uid: 18035 - components: - - type: Transform - pos: 69.5,-3.5 - parent: 2 - - uid: 18036 - components: - - type: Transform - pos: -46.5,0.5 - parent: 2 - - uid: 18037 - components: - - type: Transform - pos: -44.5,0.5 - parent: 2 - - uid: 18038 - components: - - type: Transform - pos: -37.5,0.5 - parent: 2 - - uid: 18039 - components: - - type: Transform - pos: -39.5,0.5 - parent: 2 - - uid: 18041 - components: - - type: Transform - pos: 66.5,-89.5 - parent: 2 - - uid: 18043 - components: - - type: Transform - pos: 47.5,3.5 - parent: 2 - - uid: 18044 - components: - - type: Transform - pos: 47.5,4.5 - parent: 2 - - uid: 18045 - components: - - type: Transform - pos: 79.5,-16.5 - parent: 2 - - uid: 18046 - components: - - type: Transform - pos: 49.5,3.5 - parent: 2 - - uid: 18047 - components: - - type: Transform - pos: 49.5,4.5 - parent: 2 - - uid: 18048 - components: - - type: Transform - pos: 46.5,21.5 - parent: 2 - - uid: 18049 - components: - - type: Transform - pos: 45.5,21.5 - parent: 2 - - uid: 18050 - components: - - type: Transform - pos: 46.5,22.5 - parent: 2 - - uid: 18051 - components: - - type: Transform - pos: 46.5,23.5 - parent: 2 - - uid: 18052 - components: - - type: Transform - pos: 48.5,23.5 - parent: 2 - - uid: 18053 - components: - - type: Transform - pos: 57.5,21.5 - parent: 2 - - uid: 18054 - components: - - type: Transform - pos: 56.5,21.5 - parent: 2 - - uid: 18055 - components: - - type: Transform - pos: 55.5,21.5 - parent: 2 - - uid: 18056 - components: - - type: Transform - pos: -4.5,44.5 - parent: 2 - - uid: 18058 - components: - - type: Transform - pos: -11.5,28.5 - parent: 2 - - uid: 18061 - components: - - type: Transform - pos: -68.5,-6.5 - parent: 2 - - uid: 18062 - components: - - type: Transform - pos: -69.5,-6.5 - parent: 2 - - uid: 18063 - components: - - type: Transform - pos: -70.5,-6.5 - parent: 2 - - uid: 18064 - components: - - type: Transform - pos: -71.5,-6.5 - parent: 2 - - uid: 18065 - components: - - type: Transform - pos: -72.5,-6.5 - parent: 2 - - uid: 18066 - components: - - type: Transform - pos: -73.5,-6.5 - parent: 2 - - uid: 18067 - components: - - type: Transform - pos: -74.5,-6.5 - parent: 2 - - uid: 18068 - components: - - type: Transform - pos: -75.5,-6.5 - parent: 2 - - uid: 18069 - components: - - type: Transform - pos: -65.5,-10.5 - parent: 2 - - uid: 18070 - components: - - type: Transform - pos: -66.5,-10.5 - parent: 2 - - uid: 18071 - components: - - type: Transform - pos: -66.5,-11.5 - parent: 2 - - uid: 18072 - components: - - type: Transform - pos: -67.5,-10.5 - parent: 2 - - uid: 18073 - components: - - type: Transform - pos: -68.5,-12.5 - parent: 2 - - uid: 18074 - components: - - type: Transform - pos: -69.5,-12.5 - parent: 2 - - uid: 18075 - components: - - type: Transform - pos: -70.5,-12.5 - parent: 2 - - uid: 18076 - components: - - type: Transform - pos: -71.5,-12.5 - parent: 2 - - uid: 18077 - components: - - type: Transform - pos: -72.5,-12.5 - parent: 2 - - uid: 18078 - components: - - type: Transform - pos: -73.5,-12.5 - parent: 2 - - uid: 18079 - components: - - type: Transform - pos: -74.5,-12.5 - parent: 2 - - uid: 18080 - components: - - type: Transform - pos: -75.5,-12.5 - parent: 2 - - uid: 18081 - components: - - type: Transform - pos: -2.5,3.5 - parent: 2 - - uid: 18082 - components: - - type: Transform - pos: -73.5,-17.5 - parent: 2 - - uid: 18083 - components: - - type: Transform - pos: -72.5,-17.5 - parent: 2 - - uid: 18084 - components: - - type: Transform - pos: -71.5,-17.5 - parent: 2 - - uid: 18085 - components: - - type: Transform - pos: -70.5,-17.5 - parent: 2 - - uid: 18086 - components: - - type: Transform - pos: -67.5,-17.5 - parent: 2 - - uid: 18087 - components: - - type: Transform - pos: -67.5,-16.5 - parent: 2 - - uid: 18088 - components: - - type: Transform - pos: -67.5,-15.5 - parent: 2 - - uid: 18089 - components: - - type: Transform - pos: -66.5,-16.5 - parent: 2 - - uid: 18090 - components: - - type: Transform - pos: -60.5,-20.5 - parent: 2 - - uid: 18092 - components: - - type: Transform - pos: -59.5,-21.5 - parent: 2 - - uid: 18094 - components: - - type: Transform - pos: -60.5,-18.5 - parent: 2 - - uid: 18095 - components: - - type: Transform - pos: -18.5,-44.5 - parent: 2 - - uid: 18096 - components: - - type: Transform - pos: -53.5,-19.5 - parent: 2 - - uid: 18097 - components: - - type: Transform - pos: -54.5,-19.5 - parent: 2 - - uid: 18098 - components: - - type: Transform - pos: -42.5,-23.5 - parent: 2 - - uid: 18100 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 2 - - uid: 18101 - components: - - type: Transform - pos: -34.5,-3.5 - parent: 2 - - uid: 18102 - components: - - type: Transform - pos: -20.5,-28.5 - parent: 2 - - uid: 18104 - components: - - type: Transform - pos: -22.5,-28.5 - parent: 2 - - uid: 18107 - components: - - type: Transform - pos: -34.5,-29.5 - parent: 2 - - uid: 18110 - components: - - type: Transform - pos: -29.5,-22.5 - parent: 2 - - uid: 18111 - components: - - type: Transform - pos: -29.5,-19.5 - parent: 2 - - uid: 18112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,7.5 - parent: 2 - - uid: 18113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-2.5 - parent: 2 - - uid: 18114 - components: - - type: Transform - pos: -30.5,-38.5 - parent: 2 - - uid: 18115 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 18116 - components: - - type: Transform - pos: -29.5,-29.5 - parent: 2 - - uid: 18117 - components: - - type: Transform - pos: -31.5,-32.5 - parent: 2 - - uid: 18118 - components: - - type: Transform - pos: -32.5,-32.5 - parent: 2 - - uid: 18119 - components: - - type: Transform - pos: -33.5,-32.5 - parent: 2 - - uid: 18120 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 2 - - uid: 18123 - components: - - type: Transform - pos: -27.5,-39.5 - parent: 2 - - uid: 18124 - components: - - type: Transform - pos: -26.5,-39.5 - parent: 2 - - uid: 18125 - components: - - type: Transform - pos: -16.5,-44.5 - parent: 2 - - uid: 18126 - components: - - type: Transform - pos: -16.5,-43.5 - parent: 2 - - uid: 18127 - components: - - type: Transform - pos: -16.5,-42.5 - parent: 2 - - uid: 18128 - components: - - type: Transform - pos: -16.5,-41.5 - parent: 2 - - uid: 18129 - components: - - type: Transform - pos: -16.5,-39.5 - parent: 2 - - uid: 18130 - components: - - type: Transform - pos: -18.5,-45.5 - parent: 2 - - uid: 18134 - components: - - type: Transform - pos: 70.5,-15.5 - parent: 2 - - uid: 18135 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 2 - - uid: 18136 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 2 - - uid: 18137 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 2 - - uid: 18143 - components: - - type: Transform - pos: 2.5,-55.5 - parent: 2 - - uid: 18144 - components: - - type: Transform - pos: 2.5,-57.5 - parent: 2 - - uid: 18145 - components: - - type: Transform - pos: 91.5,-30.5 - parent: 2 - - uid: 18146 - components: - - type: Transform - pos: 93.5,-30.5 - parent: 2 - - uid: 18147 - components: - - type: Transform - pos: 91.5,-28.5 - parent: 2 - - uid: 18148 - components: - - type: Transform - pos: 92.5,-28.5 - parent: 2 - - uid: 18149 - components: - - type: Transform - pos: 93.5,-28.5 - parent: 2 - - uid: 18150 - components: - - type: Transform - pos: 91.5,-27.5 - parent: 2 - - uid: 18151 - components: - - type: Transform - pos: 93.5,-27.5 - parent: 2 - - uid: 18152 - components: - - type: Transform - pos: 87.5,-34.5 - parent: 2 - - uid: 18153 - components: - - type: Transform - pos: 87.5,-35.5 - parent: 2 - - uid: 18154 - components: - - type: Transform - pos: 87.5,-36.5 - parent: 2 - - uid: 18155 - components: - - type: Transform - pos: 86.5,-37.5 - parent: 2 - - uid: 18156 - components: - - type: Transform - pos: 85.5,-37.5 - parent: 2 - - uid: 18157 - components: - - type: Transform - pos: 43.5,-33.5 - parent: 2 - - uid: 18158 - components: - - type: Transform - pos: 38.5,-48.5 - parent: 2 - - uid: 18159 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 2 - - uid: 18160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-15.5 - parent: 2 - - uid: 18161 - components: - - type: Transform - pos: 38.5,-40.5 - parent: 2 - - uid: 18162 - components: - - type: Transform - pos: 43.5,-22.5 - parent: 2 - - uid: 18164 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 2 - - uid: 18165 - components: - - type: Transform - pos: 38.5,-38.5 - parent: 2 - - uid: 18166 - components: - - type: Transform - pos: 43.5,-54.5 - parent: 2 - - uid: 18167 - components: - - type: Transform - pos: 44.5,-54.5 - parent: 2 - - uid: 18168 - components: - - type: Transform - pos: 46.5,-54.5 - parent: 2 - - uid: 18169 - components: - - type: Transform - pos: 47.5,-54.5 - parent: 2 - - uid: 18170 - components: - - type: Transform - pos: 46.5,-57.5 - parent: 2 - - uid: 18171 - components: - - type: Transform - pos: 45.5,-57.5 - parent: 2 - - uid: 18172 - components: - - type: Transform - pos: 44.5,-57.5 - parent: 2 - - uid: 18173 - components: - - type: Transform - pos: 45.5,-58.5 - parent: 2 - - uid: 18174 - components: - - type: Transform - pos: 45.5,-59.5 - parent: 2 - - uid: 18175 - components: - - type: Transform - pos: 45.5,-60.5 - parent: 2 - - uid: 18176 - components: - - type: Transform - pos: 42.5,-57.5 - parent: 2 - - uid: 18177 - components: - - type: Transform - pos: 42.5,-58.5 - parent: 2 - - uid: 18178 - components: - - type: Transform - pos: 42.5,-59.5 - parent: 2 - - uid: 18179 - components: - - type: Transform - pos: 42.5,-60.5 - parent: 2 - - uid: 18180 - components: - - type: Transform - pos: 64.5,-41.5 - parent: 2 - - uid: 18181 - components: - - type: Transform - pos: 65.5,-49.5 - parent: 2 - - uid: 18182 - components: - - type: Transform - pos: 67.5,-49.5 - parent: 2 - - uid: 18183 - components: - - type: Transform - pos: 72.5,-48.5 - parent: 2 - - uid: 18184 - components: - - type: Transform - pos: 70.5,-48.5 - parent: 2 - - uid: 18186 - components: - - type: Transform - pos: 69.5,-46.5 - parent: 2 - - uid: 18194 - components: - - type: Transform - pos: 59.5,-28.5 - parent: 2 - - uid: 18195 - components: - - type: Transform - pos: 68.5,-30.5 - parent: 2 - - uid: 18196 - components: - - type: Transform - pos: 68.5,-29.5 - parent: 2 - - uid: 18202 - components: - - type: Transform - pos: 64.5,-39.5 - parent: 2 - - uid: 18203 - components: - - type: Transform - pos: 64.5,-31.5 - parent: 2 - - uid: 18204 - components: - - type: Transform - pos: 64.5,-30.5 - parent: 2 - - uid: 18205 - components: - - type: Transform - pos: 64.5,-29.5 - parent: 2 - - uid: 18206 - components: - - type: Transform - pos: 63.5,-28.5 - parent: 2 - - uid: 18208 - components: - - type: Transform - pos: 92.5,-23.5 - parent: 2 - - uid: 18209 - components: - - type: Transform - pos: 92.5,-22.5 - parent: 2 - - uid: 18210 - components: - - type: Transform - pos: 91.5,-22.5 - parent: 2 - - uid: 18211 - components: - - type: Transform - pos: 90.5,-22.5 - parent: 2 - - uid: 18212 - components: - - type: Transform - pos: 89.5,-22.5 - parent: 2 - - uid: 18213 - components: - - type: Transform - pos: 88.5,-22.5 - parent: 2 - - uid: 18214 - components: - - type: Transform - pos: 63.5,-25.5 - parent: 2 - - uid: 18215 - components: - - type: Transform - pos: 61.5,-25.5 - parent: 2 - - uid: 18216 - components: - - type: Transform - pos: 54.5,-29.5 - parent: 2 - - uid: 18217 - components: - - type: Transform - pos: 54.5,-31.5 - parent: 2 - - uid: 18218 - components: - - type: Transform - pos: 3.5,48.5 - parent: 2 - - uid: 18219 - components: - - type: Transform - pos: 75.5,-48.5 - parent: 2 - - uid: 18220 - components: - - type: Transform - pos: 52.5,-38.5 - parent: 2 - - uid: 18221 - components: - - type: Transform - pos: -46.5,-21.5 - parent: 2 - - uid: 18223 - components: - - type: Transform - pos: 64.5,-10.5 - parent: 2 - - uid: 18224 - components: - - type: Transform - pos: 19.5,43.5 - parent: 2 - - uid: 18225 - components: - - type: Transform - pos: 83.5,2.5 - parent: 2 - - uid: 18226 - components: - - type: Transform - pos: 84.5,2.5 - parent: 2 - - uid: 18227 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 2 - - uid: 18228 - components: - - type: Transform - pos: -14.5,-4.5 - parent: 2 - - uid: 18229 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 2 - - uid: 18230 - components: - - type: Transform - pos: 13.5,-4.5 - parent: 2 - - uid: 18232 - components: - - type: Transform - pos: 57.5,-11.5 - parent: 2 - - uid: 18233 - components: - - type: Transform - pos: 59.5,-11.5 - parent: 2 - - uid: 18234 - components: - - type: Transform - pos: 85.5,2.5 - parent: 2 - - uid: 18235 - components: - - type: Transform - pos: -42.5,-25.5 - parent: 2 - - uid: 18237 - components: - - type: Transform - pos: 49.5,-10.5 - parent: 2 - - uid: 18238 - components: - - type: Transform - pos: 46.5,-10.5 - parent: 2 - - uid: 18239 - components: - - type: Transform - pos: 42.5,-11.5 - parent: 2 - - uid: 18240 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 2 - - uid: 18241 - components: - - type: Transform - pos: 47.5,-1.5 - parent: 2 - - uid: 18242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-24.5 - parent: 2 - - uid: 18243 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 2 - - uid: 18245 - components: - - type: Transform - pos: 87.5,-51.5 - parent: 2 - - uid: 18246 - components: - - type: Transform - pos: 87.5,-52.5 - parent: 2 - - uid: 18247 - components: - - type: Transform - pos: 87.5,-53.5 - parent: 2 - - uid: 18248 - components: - - type: Transform - pos: 87.5,-40.5 - parent: 2 - - uid: 18249 - components: - - type: Transform - pos: 87.5,-41.5 - parent: 2 - - uid: 18250 - components: - - type: Transform - pos: 87.5,-42.5 - parent: 2 - - uid: 18252 - components: - - type: Transform - pos: 82.5,-66.5 + pos: -108.5,147.5 parent: 2 - uid: 18253 components: - type: Transform - pos: -28.5,-39.5 + pos: -108.5,149.5 parent: 2 - - uid: 18265 + - uid: 34299 components: - type: Transform - pos: 22.5,-52.5 + pos: 2.5,215.5 parent: 2 - - uid: 18266 + - uid: 34370 components: - type: Transform - pos: 42.5,-74.5 + pos: 2.5,216.5 parent: 2 - - uid: 18267 + - uid: 35461 components: - type: Transform - pos: 43.5,-74.5 + pos: 68.5,20.5 parent: 2 - - uid: 18268 +- proto: GeneratorRTGDamaged + entities: + - uid: 34530 components: - type: Transform - pos: 44.5,-74.5 + pos: -118.5,106.5 parent: 2 - - uid: 18270 +- proto: GeneratorWallmountAPU + entities: + - uid: 15224 components: - type: Transform - pos: 50.5,-65.5 - parent: 2 - - uid: 18271 - components: - - type: Transform - pos: 50.5,-64.5 - parent: 2 - - uid: 18273 - components: - - type: Transform - pos: 51.5,-63.5 - parent: 2 - - uid: 18274 - components: - - type: Transform - pos: 52.5,-63.5 - parent: 2 - - uid: 18275 - components: - - type: Transform - pos: 53.5,-63.5 - parent: 2 - - uid: 18276 - components: - - type: Transform - pos: 57.5,-63.5 - parent: 2 - - uid: 18277 - components: - - type: Transform - pos: 56.5,-63.5 - parent: 2 - - uid: 18278 - components: - - type: Transform - pos: 58.5,-63.5 - parent: 2 - - uid: 18279 - components: - - type: Transform - pos: 61.5,-63.5 - parent: 2 - - uid: 18280 - components: - - type: Transform - pos: 62.5,-63.5 - parent: 2 - - uid: 18281 - components: - - type: Transform - pos: 63.5,-63.5 - parent: 2 - - uid: 18289 - components: - - type: Transform - pos: 76.5,-65.5 - parent: 2 - - uid: 18290 - components: - - type: Transform - pos: 77.5,-65.5 - parent: 2 - - uid: 18291 - components: - - type: Transform - pos: 78.5,-61.5 - parent: 2 - - uid: 18292 - components: - - type: Transform - pos: 74.5,-61.5 - parent: 2 - - uid: 18293 - components: - - type: Transform - pos: 73.5,-61.5 - parent: 2 - - uid: 18294 - components: - - type: Transform - pos: 73.5,-63.5 - parent: 2 - - uid: 18295 - components: - - type: Transform - pos: 74.5,-63.5 - parent: 2 - - uid: 18296 - components: - - type: Transform - pos: 34.5,-61.5 - parent: 2 - - uid: 18297 - components: - - type: Transform - pos: 35.5,-61.5 - parent: 2 - - uid: 18298 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 2 - - uid: 18299 - components: - - type: Transform - pos: -12.5,-43.5 - parent: 2 - - uid: 18300 - components: - - type: Transform - pos: -13.5,-43.5 - parent: 2 - - uid: 18301 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 2 - - uid: 18302 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 2 - - uid: 18303 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 2 - - uid: 18304 - components: - - type: Transform - pos: -13.5,-38.5 - parent: 2 - - uid: 18305 - components: - - type: Transform - pos: -14.5,-38.5 - parent: 2 - - uid: 18306 - components: - - type: Transform - pos: -14.5,-37.5 - parent: 2 - - uid: 18307 - components: - - type: Transform - pos: -14.5,-36.5 - parent: 2 - - uid: 18308 - components: - - type: Transform - pos: -14.5,-35.5 - parent: 2 - - uid: 18309 - components: - - type: Transform - pos: -14.5,-34.5 - parent: 2 - - uid: 18310 - components: - - type: Transform - pos: -13.5,-34.5 - parent: 2 - - uid: 18311 - components: - - type: Transform - pos: -12.5,-34.5 - parent: 2 - - uid: 18312 - components: - - type: Transform - pos: -11.5,-34.5 - parent: 2 - - uid: 18313 - components: - - type: Transform - pos: -5.5,-52.5 - parent: 2 - - uid: 18314 - components: - - type: Transform - pos: -7.5,-52.5 - parent: 2 - - uid: 18315 - components: - - type: Transform - pos: -9.5,-52.5 - parent: 2 - - uid: 18316 - components: - - type: Transform - pos: -9.5,-51.5 - parent: 2 - - uid: 18317 - components: - - type: Transform - pos: -9.5,-50.5 - parent: 2 - - uid: 18318 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 2 - - uid: 18319 - components: - - type: Transform - pos: -10.5,-52.5 - parent: 2 - - uid: 18320 - components: - - type: Transform - pos: -10.5,-54.5 - parent: 2 - - uid: 18321 - components: - - type: Transform - pos: -9.5,-54.5 - parent: 2 - - uid: 18322 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 2 - - uid: 18323 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 2 - - uid: 18324 - components: - - type: Transform - pos: -9.5,-57.5 - parent: 2 - - uid: 18325 - components: - - type: Transform - pos: -21.5,-61.5 - parent: 2 - - uid: 18326 - components: - - type: Transform - pos: -22.5,-61.5 - parent: 2 - - uid: 18327 - components: - - type: Transform - pos: -23.5,-61.5 - parent: 2 - - uid: 18328 - components: - - type: Transform - pos: -24.5,-61.5 - parent: 2 - - uid: 18329 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 2 - - uid: 18330 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 2 - - uid: 18331 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 2 - - uid: 18332 - components: - - type: Transform - pos: -28.5,-61.5 - parent: 2 - - uid: 18333 - components: - - type: Transform - pos: -29.5,-61.5 - parent: 2 - - uid: 18334 - components: - - type: Transform - pos: -32.5,-59.5 - parent: 2 - - uid: 18335 - components: - - type: Transform - pos: -37.5,-51.5 - parent: 2 - - uid: 18336 - components: - - type: Transform - pos: -36.5,-51.5 - parent: 2 - - uid: 18342 - components: - - type: Transform - pos: -28.5,-63.5 - parent: 2 - - uid: 18344 - components: - - type: Transform - pos: -30.5,-67.5 - parent: 2 - - uid: 18345 - components: - - type: Transform - pos: -30.5,-68.5 - parent: 2 - - uid: 18346 - components: - - type: Transform - pos: -30.5,-70.5 - parent: 2 - - uid: 18347 - components: - - type: Transform - pos: -30.5,-69.5 - parent: 2 - - uid: 18348 - components: - - type: Transform - pos: -32.5,-67.5 - parent: 2 - - uid: 18349 - components: - - type: Transform - pos: -32.5,-68.5 - parent: 2 - - uid: 18350 - components: - - type: Transform - pos: -32.5,-70.5 - parent: 2 - - uid: 18351 - components: - - type: Transform - pos: -32.5,-69.5 - parent: 2 - - uid: 18352 - components: - - type: Transform - pos: -33.5,-73.5 - parent: 2 - - uid: 18353 - components: - - type: Transform - pos: -33.5,-74.5 - parent: 2 - - uid: 18354 - components: - - type: Transform - pos: -33.5,-75.5 - parent: 2 - - uid: 18355 - components: - - type: Transform - pos: -32.5,-75.5 - parent: 2 - - uid: 18356 - components: - - type: Transform - pos: -31.5,-75.5 - parent: 2 - - uid: 18357 - components: - - type: Transform - pos: -30.5,-75.5 - parent: 2 - - uid: 18358 - components: - - type: Transform - pos: -27.5,-74.5 - parent: 2 - - uid: 18359 - components: - - type: Transform - pos: -26.5,-74.5 - parent: 2 - - uid: 18360 - components: - - type: Transform - pos: -25.5,-74.5 - parent: 2 - - uid: 18361 - components: - - type: Transform - pos: -24.5,-74.5 - parent: 2 - - uid: 18362 - components: - - type: Transform - pos: -23.5,-74.5 - parent: 2 - - uid: 18363 - components: - - type: Transform - pos: -22.5,-74.5 - parent: 2 - - uid: 18368 - components: - - type: Transform - pos: -0.5,-65.5 - parent: 2 - - uid: 18370 - components: - - type: Transform - pos: -1.5,-72.5 - parent: 2 - - uid: 18379 - components: - - type: Transform - pos: 0.5,-102.5 - parent: 2 - - uid: 18385 - components: - - type: Transform - pos: -0.5,-102.5 - parent: 2 - - uid: 18388 - components: - - type: Transform - pos: -5.5,-78.5 - parent: 2 - - uid: 18389 - components: - - type: Transform - pos: -8.5,-100.5 - parent: 2 - - uid: 18390 - components: - - type: Transform - pos: -8.5,-101.5 - parent: 2 - - uid: 18391 - components: - - type: Transform - pos: -4.5,-78.5 - parent: 2 - - uid: 18392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-60.5 - parent: 2 - - uid: 18393 - components: - - type: Transform - pos: 0.5,-100.5 - parent: 2 - - uid: 18395 - components: - - type: Transform - pos: -21.5,-44.5 - parent: 2 - - uid: 18399 - components: - - type: Transform - pos: -22.5,-40.5 - parent: 2 - - uid: 18400 - components: - - type: Transform - pos: -26.5,-42.5 - parent: 2 - - uid: 18401 - components: - - type: Transform - pos: -27.5,-42.5 - parent: 2 - - uid: 18402 - components: - - type: Transform - pos: -28.5,-42.5 - parent: 2 - - uid: 18404 - components: - - type: Transform - pos: -36.5,-42.5 - parent: 2 - - uid: 18405 - components: - - type: Transform - pos: -39.5,-45.5 - parent: 2 - - uid: 18406 - components: - - type: Transform - pos: -35.5,-42.5 - parent: 2 - - uid: 18407 - components: - - type: Transform - pos: -37.5,-42.5 - parent: 2 - - uid: 18408 - components: - - type: Transform - pos: 7.5,-50.5 - parent: 2 - - uid: 18431 - components: - - type: Transform - pos: -4.5,48.5 - parent: 2 - - uid: 18434 - components: - - type: Transform - pos: -3.5,49.5 - parent: 2 - - uid: 18472 - components: - - type: Transform - pos: 1.5,-102.5 - parent: 2 - - uid: 18473 - components: - - type: Transform - pos: -8.5,-102.5 - parent: 2 - - uid: 18474 - components: - - type: Transform - pos: -0.5,-100.5 - parent: 2 - - uid: 18475 - components: - - type: Transform - pos: -1.5,-100.5 - parent: 2 - - uid: 18476 - components: - - type: Transform - pos: -7.5,-102.5 - parent: 2 - - uid: 18477 - components: - - type: Transform - pos: 2.5,-102.5 - parent: 2 - - uid: 18479 - components: - - type: Transform - pos: 4.5,-102.5 - parent: 2 - - uid: 18480 - components: - - type: Transform - pos: -5.5,-102.5 - parent: 2 - - uid: 18481 - components: - - type: Transform - pos: -3.5,-100.5 - parent: 2 - - uid: 18482 - components: - - type: Transform - pos: -2.5,-100.5 - parent: 2 - - uid: 18483 - components: - - type: Transform - pos: -6.5,-102.5 - parent: 2 - - uid: 18484 - components: - - type: Transform - pos: 3.5,-102.5 - parent: 2 - - uid: 18485 - components: - - type: Transform - pos: -11.5,-86.5 - parent: 2 - - uid: 18486 - components: - - type: Transform - pos: -12.5,-86.5 - parent: 2 - - uid: 18487 - components: - - type: Transform - pos: -13.5,-86.5 - parent: 2 - - uid: 18488 - components: - - type: Transform - pos: -14.5,-86.5 - parent: 2 - - uid: 18489 - components: - - type: Transform - pos: -15.5,-86.5 - parent: 2 - - uid: 18490 - components: - - type: Transform - pos: -16.5,-86.5 - parent: 2 - - uid: 18491 - components: - - type: Transform - pos: -17.5,-86.5 - parent: 2 - - uid: 18492 - components: - - type: Transform - pos: -17.5,-87.5 - parent: 2 - - uid: 18493 - components: - - type: Transform - pos: -17.5,-88.5 - parent: 2 - - uid: 18494 - components: - - type: Transform - pos: -16.5,-88.5 - parent: 2 - - uid: 18495 - components: - - type: Transform - pos: -15.5,-88.5 - parent: 2 - - uid: 18496 - components: - - type: Transform - pos: -14.5,-88.5 - parent: 2 - - uid: 18497 - components: - - type: Transform - pos: -13.5,-88.5 - parent: 2 - - uid: 18498 - components: - - type: Transform - pos: -12.5,-88.5 - parent: 2 - - uid: 18499 - components: - - type: Transform - pos: -11.5,-88.5 - parent: 2 - - uid: 18502 - components: - - type: Transform - pos: -20.5,-89.5 - parent: 2 - - uid: 18503 - components: - - type: Transform - pos: -21.5,-89.5 - parent: 2 - - uid: 18504 - components: - - type: Transform - pos: -21.5,-88.5 - parent: 2 - - uid: 18505 - components: - - type: Transform - pos: -22.5,-88.5 - parent: 2 - - uid: 18506 - components: - - type: Transform - pos: -22.5,-87.5 - parent: 2 - - uid: 18507 - components: - - type: Transform - pos: -19.5,-76.5 - parent: 2 - - uid: 18508 - components: - - type: Transform - pos: -19.5,-77.5 - parent: 2 - - uid: 18509 - components: - - type: Transform - pos: -19.5,-78.5 - parent: 2 - - uid: 18510 - components: - - type: Transform - pos: -19.5,-79.5 - parent: 2 - - uid: 18511 - components: - - type: Transform - pos: -19.5,-80.5 - parent: 2 - - uid: 18512 - components: - - type: Transform - pos: -19.5,-81.5 - parent: 2 - - uid: 18513 - components: - - type: Transform - pos: -19.5,-82.5 - parent: 2 - - uid: 18514 - components: - - type: Transform - pos: -19.5,-83.5 - parent: 2 - - uid: 18515 - components: - - type: Transform - pos: -19.5,-84.5 - parent: 2 - - uid: 18516 - components: - - type: Transform - pos: -20.5,-84.5 - parent: 2 - - uid: 18517 - components: - - type: Transform - pos: -21.5,-84.5 - parent: 2 - - uid: 18518 - components: - - type: Transform - pos: -21.5,-83.5 - parent: 2 - - uid: 18519 - components: - - type: Transform - pos: -21.5,-82.5 - parent: 2 - - uid: 18520 - components: - - type: Transform - pos: -21.5,-81.5 - parent: 2 - - uid: 18521 - components: - - type: Transform - pos: -21.5,-80.5 - parent: 2 - - uid: 18522 - components: - - type: Transform - pos: -21.5,-79.5 - parent: 2 - - uid: 18523 - components: - - type: Transform - pos: -21.5,-78.5 - parent: 2 - - uid: 18524 - components: - - type: Transform - pos: -21.5,-77.5 - parent: 2 - - uid: 18525 - components: - - type: Transform - pos: -21.5,-76.5 - parent: 2 - - uid: 18526 - components: - - type: Transform - pos: -20.5,-76.5 - parent: 2 - - uid: 18530 - components: - - type: Transform - pos: 7.5,-102.5 - parent: 2 - - uid: 18531 - components: - - type: Transform - pos: 1.5,-72.5 - parent: 2 - - uid: 18533 - components: - - type: Transform - pos: -3.5,-102.5 - parent: 2 - - uid: 18534 - components: - - type: Transform - pos: -2.5,-72.5 - parent: 2 - - uid: 18535 - components: - - type: Transform - pos: -5.5,-100.5 - parent: 2 - - uid: 18536 - components: - - type: Transform - pos: -50.5,-69.5 - parent: 2 - - uid: 18537 - components: - - type: Transform - pos: -49.5,-69.5 - parent: 2 - - uid: 18538 - components: - - type: Transform - pos: -42.5,-53.5 - parent: 2 - - uid: 18539 - components: - - type: Transform - pos: -43.5,-53.5 - parent: 2 - - uid: 18540 - components: - - type: Transform - pos: -44.5,-53.5 - parent: 2 - - uid: 18541 - components: - - type: Transform - pos: -45.5,-53.5 - parent: 2 - - uid: 18542 - components: - - type: Transform - pos: -46.5,-53.5 - parent: 2 - - uid: 18543 - components: - - type: Transform - pos: -48.5,-53.5 - parent: 2 - - uid: 18544 - components: - - type: Transform - pos: -49.5,-53.5 - parent: 2 - - uid: 18545 - components: - - type: Transform - pos: -50.5,-53.5 - parent: 2 - - uid: 18546 - components: - - type: Transform - pos: -51.5,-53.5 - parent: 2 - - uid: 18547 - components: - - type: Transform - pos: -52.5,-53.5 - parent: 2 - - uid: 18548 - components: - - type: Transform - pos: -53.5,-53.5 - parent: 2 - - uid: 18549 - components: - - type: Transform - pos: -54.5,-53.5 - parent: 2 - - uid: 18550 - components: - - type: Transform - pos: -55.5,-53.5 - parent: 2 - - uid: 18551 - components: - - type: Transform - pos: -56.5,-53.5 - parent: 2 - - uid: 18552 - components: - - type: Transform - pos: -56.5,-54.5 - parent: 2 - - uid: 18553 - components: - - type: Transform - pos: -56.5,-55.5 - parent: 2 - - uid: 18554 - components: - - type: Transform - pos: -56.5,-56.5 - parent: 2 - - uid: 18555 - components: - - type: Transform - pos: -56.5,-57.5 - parent: 2 - - uid: 18556 - components: - - type: Transform - pos: -57.5,-59.5 - parent: 2 - - uid: 18557 - components: - - type: Transform - pos: -58.5,-59.5 - parent: 2 - - uid: 18558 - components: - - type: Transform - pos: -59.5,-59.5 - parent: 2 - - uid: 18559 - components: - - type: Transform - pos: -59.5,-63.5 - parent: 2 - - uid: 18560 - components: - - type: Transform - pos: -59.5,-62.5 - parent: 2 - - uid: 18561 - components: - - type: Transform - pos: -59.5,-61.5 - parent: 2 - - uid: 18562 - components: - - type: Transform - pos: -59.5,-60.5 - parent: 2 - - uid: 18563 - components: - - type: Transform - pos: -58.5,-63.5 - parent: 2 - - uid: 18564 - components: - - type: Transform - pos: -57.5,-63.5 - parent: 2 - - uid: 18565 - components: - - type: Transform - pos: -56.5,-65.5 - parent: 2 - - uid: 18566 - components: - - type: Transform - pos: -56.5,-66.5 - parent: 2 - - uid: 18567 - components: - - type: Transform - pos: -56.5,-68.5 - parent: 2 - - uid: 18568 - components: - - type: Transform - pos: -56.5,-69.5 - parent: 2 - - uid: 18569 - components: - - type: Transform - pos: -55.5,-69.5 - parent: 2 - - uid: 18570 - components: - - type: Transform - pos: -54.5,-69.5 - parent: 2 - - uid: 18571 - components: - - type: Transform - pos: -53.5,-69.5 - parent: 2 - - uid: 18572 - components: - - type: Transform - pos: -52.5,-69.5 - parent: 2 - - uid: 18573 - components: - - type: Transform - pos: -48.5,-69.5 - parent: 2 - - uid: 18574 - components: - - type: Transform - pos: -47.5,-69.5 - parent: 2 - - uid: 18575 - components: - - type: Transform - pos: -46.5,-69.5 - parent: 2 - - uid: 18576 - components: - - type: Transform - pos: -45.5,-69.5 - parent: 2 - - uid: 18577 - components: - - type: Transform - pos: -44.5,-69.5 - parent: 2 - - uid: 18578 - components: - - type: Transform - pos: -43.5,-69.5 - parent: 2 - - uid: 18579 - components: - - type: Transform - pos: -42.5,-69.5 - parent: 2 - - uid: 18580 - components: - - type: Transform - pos: -42.5,-68.5 - parent: 2 - - uid: 18581 - components: - - type: Transform - pos: -42.5,-67.5 - parent: 2 - - uid: 18582 - components: - - type: Transform - pos: -42.5,-55.5 - parent: 2 - - uid: 18583 - components: - - type: Transform - pos: -42.5,-54.5 - parent: 2 - - uid: 18585 - components: - - type: Transform - pos: 0.5,-79.5 - parent: 2 - - uid: 18587 - components: - - type: Transform - pos: -47.5,43.5 - parent: 2 - - uid: 18588 - components: - - type: Transform - pos: -48.5,43.5 - parent: 2 - - uid: 18589 - components: - - type: Transform - pos: -49.5,43.5 - parent: 2 - - uid: 18590 - components: - - type: Transform - pos: -50.5,43.5 - parent: 2 - - uid: 18591 - components: - - type: Transform - pos: -51.5,43.5 - parent: 2 - - uid: 18592 - components: - - type: Transform - pos: -51.5,42.5 - parent: 2 - - uid: 18593 - components: - - type: Transform - pos: -51.5,41.5 - parent: 2 - - uid: 18594 - components: - - type: Transform - pos: -47.5,41.5 - parent: 2 - - uid: 18595 - components: - - type: Transform - pos: -45.5,40.5 - parent: 2 - - uid: 18596 - components: - - type: Transform - pos: -44.5,40.5 - parent: 2 - - uid: 18597 - components: - - type: Transform - pos: -43.5,40.5 - parent: 2 - - uid: 18598 - components: - - type: Transform - pos: -42.5,40.5 - parent: 2 - - uid: 18599 - components: - - type: Transform - pos: -41.5,40.5 - parent: 2 - - uid: 18600 - components: - - type: Transform - pos: -41.5,39.5 - parent: 2 - - uid: 18601 - components: - - type: Transform - pos: -41.5,38.5 - parent: 2 - - uid: 18602 - components: - - type: Transform - pos: -41.5,37.5 - parent: 2 - - uid: 18603 - components: - - type: Transform - pos: -41.5,36.5 - parent: 2 - - uid: 18604 - components: - - type: Transform - pos: -41.5,34.5 - parent: 2 - - uid: 18605 - components: - - type: Transform - pos: -41.5,33.5 - parent: 2 - - uid: 18606 - components: - - type: Transform - pos: -41.5,32.5 - parent: 2 - - uid: 18607 - components: - - type: Transform - pos: -41.5,31.5 - parent: 2 - - uid: 18608 - components: - - type: Transform - pos: -41.5,30.5 - parent: 2 - - uid: 18609 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 18610 - components: - - type: Transform - pos: -41.5,28.5 - parent: 2 - - uid: 18611 - components: - - type: Transform - pos: -41.5,27.5 - parent: 2 - - uid: 18612 - components: - - type: Transform - pos: -41.5,26.5 - parent: 2 - - uid: 18613 - components: - - type: Transform - pos: -42.5,26.5 - parent: 2 - - uid: 18614 - components: - - type: Transform - pos: -43.5,26.5 - parent: 2 - - uid: 18615 - components: - - type: Transform - pos: -55.5,26.5 - parent: 2 - - uid: 18616 - components: - - type: Transform - pos: -56.5,26.5 - parent: 2 - - uid: 18617 - components: - - type: Transform - pos: -57.5,26.5 - parent: 2 - - uid: 18618 - components: - - type: Transform - pos: -57.5,27.5 - parent: 2 - - uid: 18619 - components: - - type: Transform - pos: -57.5,29.5 - parent: 2 - - uid: 18620 - components: - - type: Transform - pos: -57.5,30.5 - parent: 2 - - uid: 18621 - components: - - type: Transform - pos: -57.5,31.5 - parent: 2 - - uid: 18622 - components: - - type: Transform - pos: -57.5,32.5 - parent: 2 - - uid: 18623 - components: - - type: Transform - pos: -57.5,33.5 - parent: 2 - - uid: 18624 - components: - - type: Transform - pos: -57.5,34.5 - parent: 2 - - uid: 18625 - components: - - type: Transform - pos: -57.5,35.5 - parent: 2 - - uid: 18626 - components: - - type: Transform - pos: -57.5,36.5 - parent: 2 - - uid: 18627 - components: - - type: Transform - pos: -57.5,37.5 - parent: 2 - - uid: 18628 - components: - - type: Transform - pos: -57.5,38.5 - parent: 2 - - uid: 18629 - components: - - type: Transform - pos: -57.5,39.5 - parent: 2 - - uid: 18630 - components: - - type: Transform - pos: -57.5,40.5 - parent: 2 - - uid: 18631 - components: - - type: Transform - pos: -56.5,40.5 - parent: 2 - - uid: 18632 - components: - - type: Transform - pos: -55.5,40.5 - parent: 2 - - uid: 18633 - components: - - type: Transform - pos: -54.5,40.5 - parent: 2 - - uid: 18634 - components: - - type: Transform - pos: -53.5,40.5 - parent: 2 - - uid: 18635 - components: - - type: Transform - pos: 1.5,-79.5 - parent: 2 - - uid: 18637 - components: - - type: Transform - pos: 67.5,-65.5 - parent: 2 - - uid: 18638 - components: - - type: Transform - pos: 55.5,27.5 - parent: 2 - - uid: 18639 - components: - - type: Transform - pos: 55.5,26.5 - parent: 2 - - uid: 18640 - components: - - type: Transform - pos: 54.5,26.5 - parent: 2 - - uid: 18641 - components: - - type: Transform - pos: 53.5,26.5 - parent: 2 - - uid: 18642 - components: - - type: Transform - pos: 55.5,29.5 - parent: 2 - - uid: 18643 - components: - - type: Transform - pos: 55.5,30.5 - parent: 2 - - uid: 18644 - components: - - type: Transform - pos: 55.5,31.5 - parent: 2 - - uid: 18645 - components: - - type: Transform - pos: 55.5,32.5 - parent: 2 - - uid: 18646 - components: - - type: Transform - pos: 55.5,33.5 - parent: 2 - - uid: 18647 - components: - - type: Transform - pos: 55.5,34.5 - parent: 2 - - uid: 18648 - components: - - type: Transform - pos: 55.5,35.5 - parent: 2 - - uid: 18649 - components: - - type: Transform - pos: 55.5,36.5 - parent: 2 - - uid: 18650 - components: - - type: Transform - pos: 55.5,37.5 - parent: 2 - - uid: 18651 - components: - - type: Transform - pos: 55.5,38.5 - parent: 2 - - uid: 18652 - components: - - type: Transform - pos: 55.5,39.5 - parent: 2 - - uid: 18653 - components: - - type: Transform - pos: 55.5,40.5 - parent: 2 - - uid: 18654 - components: - - type: Transform - pos: 54.5,40.5 - parent: 2 - - uid: 18655 - components: - - type: Transform - pos: 53.5,40.5 - parent: 2 - - uid: 18656 - components: - - type: Transform - pos: 52.5,40.5 - parent: 2 - - uid: 18657 - components: - - type: Transform - pos: 51.5,40.5 - parent: 2 - - uid: 18658 - components: - - type: Transform - pos: 49.5,41.5 - parent: 2 - - uid: 18659 - components: - - type: Transform - pos: 49.5,43.5 - parent: 2 - - uid: 18660 - components: - - type: Transform - pos: 48.5,43.5 - parent: 2 - - uid: 18661 - components: - - type: Transform - pos: 47.5,43.5 - parent: 2 - - uid: 18662 - components: - - type: Transform - pos: 46.5,43.5 - parent: 2 - - uid: 18663 - components: - - type: Transform - pos: 45.5,43.5 - parent: 2 - - uid: 18664 - components: - - type: Transform - pos: 45.5,42.5 - parent: 2 - - uid: 18665 - components: - - type: Transform - pos: 45.5,41.5 - parent: 2 - - uid: 18666 - components: - - type: Transform - pos: 43.5,40.5 - parent: 2 - - uid: 18667 - components: - - type: Transform - pos: 42.5,40.5 - parent: 2 - - uid: 18668 - components: - - type: Transform - pos: 41.5,40.5 - parent: 2 - - uid: 18669 - components: - - type: Transform - pos: 40.5,40.5 - parent: 2 - - uid: 18670 - components: - - type: Transform - pos: 39.5,40.5 - parent: 2 - - uid: 18671 - components: - - type: Transform - pos: 39.5,38.5 - parent: 2 - - uid: 18672 - components: - - type: Transform - pos: 39.5,37.5 - parent: 2 - - uid: 18673 - components: - - type: Transform - pos: 39.5,36.5 - parent: 2 - - uid: 18674 - components: - - type: Transform - pos: 39.5,35.5 - parent: 2 - - uid: 18675 - components: - - type: Transform - pos: 39.5,34.5 - parent: 2 - - uid: 18676 - components: - - type: Transform - pos: 39.5,33.5 - parent: 2 - - uid: 18677 - components: - - type: Transform - pos: 39.5,32.5 - parent: 2 - - uid: 18678 - components: - - type: Transform - pos: 39.5,31.5 - parent: 2 - - uid: 18679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 2 - - uid: 18680 - components: - - type: Transform - pos: 39.5,28.5 - parent: 2 - - uid: 18682 - components: - - type: Transform - pos: 68.5,0.5 - parent: 2 - - uid: 18683 - components: - - type: Transform - pos: 82.5,-67.5 - parent: 2 - - uid: 18684 - components: - - type: Transform - pos: 82.5,-68.5 - parent: 2 - - uid: 18685 - components: - - type: Transform - pos: 89.5,-85.5 - parent: 2 - - uid: 18686 - components: - - type: Transform - pos: 89.5,-84.5 - parent: 2 - - uid: 18687 - components: - - type: Transform - pos: 89.5,-83.5 - parent: 2 - - uid: 18688 - components: - - type: Transform - pos: 89.5,-82.5 - parent: 2 - - uid: 18689 - components: - - type: Transform - pos: 89.5,-81.5 - parent: 2 - - uid: 18690 - components: - - type: Transform - pos: 89.5,-80.5 - parent: 2 - - uid: 18691 - components: - - type: Transform - pos: 89.5,-79.5 - parent: 2 - - uid: 18692 - components: - - type: Transform - pos: 89.5,-78.5 - parent: 2 - - uid: 18693 - components: - - type: Transform - pos: 89.5,-77.5 - parent: 2 - - uid: 18694 - components: - - type: Transform - pos: 89.5,-76.5 - parent: 2 - - uid: 18695 - components: - - type: Transform - pos: 89.5,-75.5 - parent: 2 - - uid: 18696 - components: - - type: Transform - pos: 89.5,-74.5 - parent: 2 - - uid: 18697 + pos: 2.5,-3.5 + parent: 13386 + - uid: 15225 components: - type: Transform - pos: 89.5,-73.5 - parent: 2 - - uid: 18698 - components: - - type: Transform - pos: 89.5,-72.5 - parent: 2 - - uid: 18699 - components: - - type: Transform - pos: 89.5,-71.5 - parent: 2 - - uid: 18700 - components: - - type: Transform - pos: 88.5,-71.5 - parent: 2 - - uid: 18701 - components: - - type: Transform - pos: 75.5,-71.5 - parent: 2 - - uid: 18702 - components: - - type: Transform - pos: 74.5,-71.5 - parent: 2 - - uid: 18703 - components: - - type: Transform - pos: 73.5,-71.5 - parent: 2 - - uid: 18704 - components: - - type: Transform - pos: 73.5,-72.5 - parent: 2 - - uid: 18705 - components: - - type: Transform - pos: 73.5,-73.5 - parent: 2 - - uid: 18706 - components: - - type: Transform - pos: 73.5,-74.5 - parent: 2 - - uid: 18707 - components: - - type: Transform - pos: 73.5,-75.5 - parent: 2 - - uid: 18708 - components: - - type: Transform - pos: 73.5,-76.5 - parent: 2 - - uid: 18709 - components: - - type: Transform - pos: 73.5,-77.5 - parent: 2 - - uid: 18710 - components: - - type: Transform - pos: 73.5,-78.5 - parent: 2 - - uid: 18711 - components: - - type: Transform - pos: 73.5,-79.5 - parent: 2 - - uid: 18712 - components: - - type: Transform - pos: 73.5,-81.5 - parent: 2 - - uid: 18713 - components: - - type: Transform - pos: 73.5,-82.5 - parent: 2 - - uid: 18714 - components: - - type: Transform - pos: 73.5,-83.5 - parent: 2 - - uid: 18715 - components: - - type: Transform - pos: 73.5,-84.5 - parent: 2 - - uid: 18716 - components: - - type: Transform - pos: 73.5,-85.5 - parent: 2 - - uid: 18717 - components: - - type: Transform - pos: 74.5,-85.5 - parent: 2 - - uid: 18718 - components: - - type: Transform - pos: 75.5,-85.5 - parent: 2 - - uid: 18719 + pos: -2.5,-3.5 + parent: 13386 + - uid: 16786 components: - type: Transform - pos: 76.5,-85.5 - parent: 2 - - uid: 18720 - components: - - type: Transform - pos: 77.5,-85.5 - parent: 2 - - uid: 18721 - components: - - type: Transform - pos: 79.5,-86.5 - parent: 2 - - uid: 18722 - components: - - type: Transform - pos: 79.5,-87.5 - parent: 2 - - uid: 18723 - components: - - type: Transform - pos: 79.5,-88.5 - parent: 2 - - uid: 18724 - components: - - type: Transform - pos: 80.5,-88.5 - parent: 2 - - uid: 18725 - components: - - type: Transform - pos: 81.5,-88.5 - parent: 2 - - uid: 18726 - components: - - type: Transform - pos: 82.5,-88.5 - parent: 2 - - uid: 18727 - components: - - type: Transform - pos: 83.5,-88.5 - parent: 2 - - uid: 18728 - components: - - type: Transform - pos: 83.5,-87.5 - parent: 2 - - uid: 18729 - components: - - type: Transform - pos: 83.5,-86.5 - parent: 2 - - uid: 18730 - components: - - type: Transform - pos: 87.5,-85.5 - parent: 2 - - uid: 18731 - components: - - type: Transform - pos: 86.5,-85.5 - parent: 2 - - uid: 18732 - components: - - type: Transform - pos: 85.5,-85.5 - parent: 2 - - uid: 18734 - components: - - type: Transform - pos: -14.5,-14.5 - parent: 2 - - uid: 18735 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 2 - - uid: 18736 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 2 - - uid: 18737 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 2 - - uid: 18742 + pos: 1.5,-5.5 + parent: 13386 + - uid: 16787 components: - type: Transform - pos: 55.5,-11.5 - parent: 2 - - uid: 18743 + pos: -1.5,-5.5 + parent: 13386 + - uid: 30957 components: - type: Transform - pos: 64.5,-10.5 - parent: 2 - - uid: 18744 + pos: -2.5,-0.5 + parent: 30902 + - uid: 30958 components: - type: Transform - pos: 63.5,-11.5 - parent: 2 - - uid: 18746 + pos: -2.5,-1.5 + parent: 30902 + - uid: 30959 components: - type: Transform - pos: -0.5,-79.5 - parent: 2 - - uid: 18748 + pos: 5.5,-0.5 + parent: 30902 + - uid: 30960 components: - type: Transform - pos: 89.5,-4.5 - parent: 2 - - uid: 18750 + pos: 5.5,-1.5 + parent: 30902 + - uid: 37945 components: - type: Transform - pos: -3.5,-93.5 - parent: 2 - - uid: 18751 + pos: 3.5,-5.5 + parent: 37842 + - uid: 37947 components: - type: Transform - pos: -6.5,-93.5 - parent: 2 - - uid: 18752 + pos: -2.5,-5.5 + parent: 37842 + - uid: 43338 components: - type: Transform - pos: -10.5,-90.5 - parent: 2 - - uid: 18753 + pos: -0.5,-7.5 + parent: 37842 +- proto: GeneratorWallmountBasic + entities: + - uid: 22065 components: - type: Transform - pos: 2.5,-93.5 - parent: 2 - - uid: 18754 + pos: 1.5,-1.5 + parent: 21114 + - uid: 22066 components: - type: Transform - pos: -5.5,-93.5 - parent: 2 - - uid: 18757 + pos: 2.5,-1.5 + parent: 21114 + - uid: 22067 components: - type: Transform - pos: 63.5,-89.5 - parent: 2 - - uid: 18761 + pos: 3.5,-1.5 + parent: 21114 + - uid: 22068 components: - type: Transform - pos: 71.5,-15.5 - parent: 2 - - uid: 18762 + pos: 4.5,-1.5 + parent: 21114 +- proto: Girder + entities: + - uid: 8604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-7.5 + pos: -81.5,89.5 parent: 2 - - uid: 18763 + - uid: 25237 components: - type: Transform - pos: -18.5,39.5 + pos: -149.5,104.5 parent: 2 - - uid: 18764 +- proto: GlassBoxLaserFilled + entities: + - uid: 8951 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,44.5 + pos: -35.5,101.5 parent: 2 - - uid: 18765 +- proto: GlowstickBase + entities: + - uid: 20954 components: - type: Transform - pos: -22.5,19.5 + pos: -66.34589,159.57607 parent: 2 - - uid: 18766 +- proto: GoldOre1 + entities: + - uid: 1493 components: - type: Transform - pos: -22.5,21.5 + pos: -55.460968,-11.47315 parent: 2 - - uid: 18767 + - uid: 1545 components: - type: Transform - pos: -21.5,21.5 + pos: -70.475815,-11.475517 parent: 2 - - uid: 18771 +- proto: GoldRingDiamond + entities: + - uid: 8865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,27.5 + pos: -88.65018,86.57472 parent: 2 - - uid: 18772 +- proto: GravityGenerator + entities: + - uid: 3762 components: - type: Transform - pos: -25.5,37.5 + pos: -122.5,59.5 parent: 2 - - uid: 18773 +- proto: GravityGeneratorMini + entities: + - uid: 16728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-25.5 - parent: 2 - - uid: 18777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-23.5 - parent: 2 - - uid: 18778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-21.5 - parent: 2 - - uid: 18782 - components: - - type: Transform - pos: 19.5,41.5 - parent: 2 - - uid: 18784 - components: - - type: Transform - pos: 17.5,39.5 - parent: 2 - - uid: 18785 - components: - - type: Transform - pos: 9.5,34.5 - parent: 2 - - uid: 18786 - components: - - type: Transform - pos: 7.5,34.5 - parent: 2 - - uid: 18787 - components: - - type: Transform - pos: 6.5,34.5 - parent: 2 - - uid: 18790 - components: - - type: Transform - pos: -42.5,-21.5 - parent: 2 - - uid: 18791 - components: - - type: Transform - pos: 64.5,-89.5 - parent: 2 - - uid: 18792 - components: - - type: Transform - pos: 5.5,32.5 - parent: 2 - - uid: 18793 + pos: -0.5,-5.5 + parent: 13386 + - uid: 22069 components: - type: Transform - pos: 5.5,30.5 - parent: 2 - - uid: 18795 + pos: 2.5,-0.5 + parent: 21114 + - uid: 30961 components: - type: Transform - pos: 70.5,-89.5 - parent: 2 - - uid: 18796 + pos: -1.5,-1.5 + parent: 30902 + - uid: 37948 components: - type: Transform - pos: 3.5,29.5 - parent: 2 - - uid: 18797 - components: - - type: Transform - pos: 0.5,29.5 - parent: 2 - - uid: 18798 - components: - - type: Transform - pos: 1.5,29.5 - parent: 2 - - uid: 18799 - components: - - type: Transform - pos: -2.5,29.5 - parent: 2 - - uid: 18800 - components: - - type: Transform - pos: -8.5,25.5 - parent: 2 - - uid: 18801 - components: - - type: Transform - pos: -6.5,25.5 - parent: 2 - - uid: 18802 - components: - - type: Transform - pos: -4.5,25.5 - parent: 2 - - uid: 18803 - components: - - type: Transform - pos: -2.5,25.5 - parent: 2 - - uid: 18804 - components: - - type: Transform - pos: -0.5,25.5 - parent: 2 - - uid: 18805 - components: - - type: Transform - pos: 2.5,25.5 - parent: 2 - - uid: 18806 - components: - - type: Transform - pos: 5.5,25.5 - parent: 2 - - uid: 18807 - components: - - type: Transform - pos: 8.5,25.5 - parent: 2 - - uid: 18808 - components: - - type: Transform - pos: 10.5,25.5 - parent: 2 - - uid: 18809 - components: - - type: Transform - pos: -10.5,25.5 - parent: 2 - - uid: 18818 - components: - - type: Transform - pos: -10.5,22.5 - parent: 2 - - uid: 18819 - components: - - type: Transform - pos: -9.5,22.5 - parent: 2 - - uid: 18820 - components: - - type: Transform - pos: -8.5,22.5 - parent: 2 - - uid: 18821 - components: - - type: Transform - pos: -6.5,22.5 - parent: 2 - - uid: 18822 - components: - - type: Transform - pos: -5.5,22.5 - parent: 2 - - uid: 18823 - components: - - type: Transform - pos: -4.5,22.5 - parent: 2 - - uid: 18824 - components: - - type: Transform - pos: -1.5,22.5 - parent: 2 - - uid: 18825 - components: - - type: Transform - pos: -0.5,22.5 - parent: 2 - - uid: 18827 - components: - - type: Transform - pos: 5.5,22.5 - parent: 2 - - uid: 18828 - components: - - type: Transform - pos: 11.5,21.5 - parent: 2 - - uid: 18829 - components: - - type: Transform - pos: 11.5,19.5 - parent: 2 - - uid: 18830 - components: - - type: Transform - pos: -2.5,22.5 - parent: 2 - - uid: 18831 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 2 - - uid: 18832 - components: - - type: Transform - pos: -18.5,-25.5 - parent: 2 - - uid: 18833 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 2 - - uid: 18834 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 2 - - uid: 18835 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 2 - - uid: 18840 - components: - - type: Transform - pos: 4.5,-28.5 - parent: 2 - - uid: 18841 - components: - - type: Transform - pos: 3.5,-28.5 - parent: 2 - - uid: 18842 - components: - - type: Transform - pos: 2.5,-28.5 - parent: 2 - - uid: 18847 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 2 - - uid: 18848 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 2 - - uid: 18849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-15.5 - parent: 2 - - uid: 18850 - components: - - type: Transform - pos: 10.5,-9.5 - parent: 2 - - uid: 18851 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 2 - - uid: 18852 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 2 - - uid: 18853 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 2 - - uid: 18854 - components: - - type: Transform - pos: -13.5,-6.5 - parent: 2 - - uid: 18855 - components: - - type: Transform - pos: -11.5,-9.5 - parent: 2 - - uid: 18856 - components: - - type: Transform - pos: -11.5,-7.5 - parent: 2 - - uid: 18857 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - - uid: 18858 - components: - - type: Transform - pos: -7.5,-3.5 - parent: 2 - - uid: 18859 - components: - - type: Transform - pos: -14.5,-6.5 - parent: 2 - - uid: 18860 - components: - - type: Transform - pos: -14.5,-5.5 - parent: 2 - - uid: 18861 - components: - - type: Transform - pos: 68.5,-89.5 - parent: 2 - - uid: 18864 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 2 - - uid: 18865 + pos: 0.5,-6.5 + parent: 37842 +- proto: GrenadeFlashBang + entities: + - uid: 5193 components: - type: Transform - pos: -8.5,-3.5 + pos: 53.593315,49.003635 parent: 2 - - uid: 18866 + - uid: 6534 components: - type: Transform - pos: 8.5,-3.5 + pos: 53.4021,49.689545 parent: 2 - - uid: 18867 + - uid: 11950 components: - type: Transform - pos: 7.5,-3.5 + pos: 43.318428,57.62426 parent: 2 - - uid: 18868 + - uid: 36585 components: - type: Transform - pos: 3.5,-3.5 + pos: 43.64373,57.45597 parent: 2 - - uid: 18869 +- proto: Grille + entities: + - uid: 28 components: - type: Transform - pos: 4.5,-3.5 + pos: -0.5,-2.5 parent: 2 - - uid: 18870 + - uid: 29 components: - type: Transform - pos: 1.5,-3.5 + pos: -0.5,-3.5 parent: 2 - - uid: 18871 + - uid: 30 components: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 18873 + - uid: 31 components: - type: Transform - pos: -2.5,-3.5 + pos: 1.5,-3.5 parent: 2 - - uid: 18874 + - uid: 32 components: - type: Transform - pos: -4.5,-3.5 + pos: 2.5,-3.5 parent: 2 - - uid: 18875 + - uid: 33 components: - type: Transform - pos: -5.5,-3.5 + pos: 3.5,-3.5 parent: 2 - - uid: 18882 + - uid: 34 components: - type: Transform - pos: -6.5,-78.5 + pos: 4.5,-3.5 parent: 2 - - uid: 18885 + - uid: 35 components: - type: Transform - pos: -1.5,-79.5 + pos: 4.5,-2.5 parent: 2 - - uid: 18886 + - uid: 36 components: - type: Transform - pos: 69.5,-89.5 + pos: 5.5,-2.5 parent: 2 - - uid: 18887 + - uid: 37 components: - type: Transform - pos: 19.5,42.5 + pos: 5.5,-1.5 parent: 2 - - uid: 18888 + - uid: 38 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,43.5 + pos: 5.5,-0.5 parent: 2 - - uid: 18889 + - uid: 39 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,45.5 + pos: 5.5,0.5 parent: 2 - - uid: 18890 + - uid: 73 components: - type: Transform - pos: -21.5,39.5 + pos: -15.5,-6.5 parent: 2 - - uid: 18892 + - uid: 74 components: - type: Transform - pos: -15.5,39.5 + pos: -16.5,-6.5 parent: 2 - - uid: 18893 + - uid: 75 components: - type: Transform - pos: -14.5,39.5 + pos: -14.5,-6.5 parent: 2 - - uid: 18894 + - uid: 77 components: - type: Transform - pos: -13.5,39.5 + pos: -18.5,-9.5 parent: 2 - - uid: 18895 + - uid: 83 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,27.5 + pos: -18.5,-8.5 parent: 2 - - uid: 18897 + - uid: 117 components: - type: Transform - pos: 15.5,46.5 + pos: -18.5,-11.5 parent: 2 - - uid: 18898 + - uid: 118 components: - type: Transform - pos: 63.5,-84.5 + pos: -18.5,-10.5 parent: 2 - - uid: 18899 + - uid: 135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,32.5 + pos: -18.5,-12.5 parent: 2 - - uid: 18901 - components: - - type: Transform - pos: 63.5,-87.5 - parent: 2 - - uid: 18902 - components: - - type: Transform - pos: 68.5,3.5 - parent: 2 - - uid: 18903 - components: - - type: Transform - pos: -16.5,21.5 - parent: 2 - - uid: 18907 - components: - - type: Transform - pos: -14.5,28.5 - parent: 2 - - uid: 18908 - components: - - type: Transform - pos: 63.5,-86.5 - parent: 2 - - uid: 18909 - components: - - type: Transform - pos: 13.5,46.5 - parent: 2 - - uid: 18911 - components: - - type: Transform - pos: 68.5,1.5 - parent: 2 - - uid: 18913 - components: - - type: Transform - pos: -18.5,21.5 - parent: 2 - - uid: 18915 - components: - - type: Transform - pos: 63.5,-85.5 - parent: 2 - - uid: 18916 - components: - - type: Transform - pos: -10.5,-3.5 - parent: 2 - - uid: 18917 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 2 - - uid: 18918 - components: - - type: Transform - pos: 13.5,-5.5 - parent: 2 - - uid: 18920 - components: - - type: Transform - pos: 17.5,46.5 - parent: 2 - - uid: 18921 - components: - - type: Transform - pos: 13.5,39.5 - parent: 2 - - uid: 18922 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 2 - - uid: 18923 - components: - - type: Transform - pos: 13.5,-3.5 - parent: 2 - - uid: 18924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 2 - - uid: 18925 - components: - - type: Transform - pos: -1.5,29.5 - parent: 2 - - uid: 18927 - components: - - type: Transform - pos: -16.5,38.5 - parent: 2 - - uid: 18928 - components: - - type: Transform - pos: -58.5,-23.5 - parent: 2 - - uid: 18929 - components: - - type: Transform - pos: 8.5,-28.5 - parent: 2 - - uid: 18930 - components: - - type: Transform - pos: 35.5,-11.5 - parent: 2 - - uid: 18931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-11.5 - parent: 2 - - uid: 18934 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 2 - - uid: 18935 - components: - - type: Transform - pos: -2.5,-79.5 - parent: 2 - - uid: 18938 - components: - - type: Transform - pos: -13.5,28.5 - parent: 2 - - uid: 18939 - components: - - type: Transform - pos: 67.5,-81.5 - parent: 2 - - uid: 18940 - components: - - type: Transform - pos: 66.5,-81.5 - parent: 2 - - uid: 18942 - components: - - type: Transform - pos: 68.5,-16.5 - parent: 2 - - uid: 18946 - components: - - type: Transform - pos: 69.5,-25.5 - parent: 2 - - uid: 18956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 2 - - uid: 18957 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-20.5 - parent: 2 - - uid: 18958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-20.5 - parent: 2 - - uid: 18959 - components: - - type: Transform - pos: 39.5,-30.5 - parent: 2 - - uid: 18960 - components: - - type: Transform - pos: 40.5,-30.5 - parent: 2 - - uid: 18966 - components: - - type: Transform - pos: -11.5,-3.5 - parent: 2 - - uid: 18967 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 2 - - uid: 18968 - components: - - type: Transform - pos: 61.5,-11.5 - parent: 2 - - uid: 18969 - components: - - type: Transform - pos: 61.5,-11.5 - parent: 2 - - uid: 18971 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 2 - - uid: 18972 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 2 - - uid: 18973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,34.5 - parent: 2 - - uid: 18977 - components: - - type: Transform - pos: -59.5,2.5 - parent: 2 - - uid: 18978 - components: - - type: Transform - pos: -57.5,2.5 - parent: 2 - - uid: 18980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,7.5 - parent: 2 - - uid: 18981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,7.5 - parent: 2 - - uid: 18982 - components: - - type: Transform - pos: -25.5,-29.5 - parent: 2 - - uid: 18983 - components: - - type: Transform - pos: 24.5,50.5 - parent: 2 - - uid: 18984 - components: - - type: Transform - pos: 51.5,-56.5 - parent: 2 - - uid: 18985 - components: - - type: Transform - pos: 52.5,-56.5 - parent: 2 - - uid: 18986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-88.5 - parent: 2 - - uid: 18987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-88.5 - parent: 2 - - uid: 18988 - components: - - type: Transform - pos: 69.5,-81.5 - parent: 2 - - uid: 18989 - components: - - type: Transform - pos: 53.5,-56.5 - parent: 2 - - uid: 18990 - components: - - type: Transform - pos: -25.5,-30.5 - parent: 2 - - uid: 18992 - components: - - type: Transform - pos: 56.5,-56.5 - parent: 2 - - uid: 18993 - components: - - type: Transform - pos: 81.5,1.5 - parent: 2 - - uid: 18995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-87.5 - parent: 2 - - uid: 18996 - components: - - type: Transform - pos: -55.5,14.5 - parent: 2 - - uid: 18997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-10.5 - parent: 2 - - uid: 18998 - components: - - type: Transform - pos: 22.5,-58.5 - parent: 2 - - uid: 18999 - components: - - type: Transform - pos: -42.5,-17.5 - parent: 2 - - uid: 19000 - components: - - type: Transform - pos: -43.5,-17.5 - parent: 2 - - uid: 19002 + - uid: 136 components: - type: Transform pos: -19.5,-12.5 parent: 2 - - uid: 19003 + - uid: 137 components: - type: Transform - pos: 43.5,-32.5 + pos: -19.5,-13.5 parent: 2 - - uid: 19004 + - uid: 138 components: - type: Transform - pos: -2.5,-65.5 + pos: -20.5,-13.5 parent: 2 - - uid: 19015 + - uid: 139 components: - type: Transform - pos: -29.5,-26.5 + pos: -20.5,-14.5 parent: 2 - - uid: 19018 + - uid: 140 components: - type: Transform - pos: 5.5,53.5 + pos: -21.5,-14.5 parent: 2 - - uid: 19019 + - uid: 141 components: - type: Transform - pos: 2.5,49.5 + pos: -22.5,-14.5 parent: 2 - - uid: 19043 + - uid: 142 components: - type: Transform - pos: 38.5,-49.5 + pos: -23.5,-14.5 parent: 2 - - uid: 19045 + - uid: 143 components: - type: Transform - pos: 7.5,-58.5 + pos: -24.5,-14.5 parent: 2 - - uid: 19046 + - uid: 170 components: - type: Transform - pos: 0.5,-61.5 + pos: -25.5,-8.5 parent: 2 - - uid: 19054 + - uid: 171 components: - type: Transform - pos: 5.5,-78.5 + pos: -24.5,-8.5 parent: 2 - - uid: 19055 + - uid: 172 components: - type: Transform - pos: 0.5,-63.5 + pos: -24.5,-7.5 parent: 2 - - uid: 19056 + - uid: 188 components: - type: Transform - pos: 7.5,-100.5 + pos: 34.5,59.5 parent: 2 - - uid: 19057 + - uid: 384 components: - type: Transform - pos: 5.5,-100.5 + pos: 22.5,14.5 parent: 2 - - uid: 19058 + - uid: 390 components: - type: Transform - pos: 4.5,-100.5 + pos: 21.5,14.5 parent: 2 - - uid: 19059 + - uid: 391 components: - type: Transform - pos: 3.5,-100.5 + pos: 19.5,13.5 parent: 2 - - uid: 19060 + - uid: 393 components: - type: Transform - pos: 2.5,-100.5 + pos: 20.5,13.5 parent: 2 - - uid: 19061 + - uid: 394 components: - type: Transform - pos: -6.5,-100.5 + pos: 18.5,12.5 parent: 2 - - uid: 19062 - components: - - type: Transform - pos: -2.5,-102.5 - parent: 2 - - uid: 19063 - components: - - type: Transform - pos: 4.5,-78.5 - parent: 2 - - uid: 19068 - components: - - type: Transform - pos: 3.5,-78.5 - parent: 2 - - uid: 19071 - components: - - type: Transform - pos: 7.5,-101.5 - parent: 2 - - uid: 19072 - components: - - type: Transform - pos: 6.5,-102.5 - parent: 2 - - uid: 19073 - components: - - type: Transform - pos: 6.5,-100.5 - parent: 2 - - uid: 19074 - components: - - type: Transform - pos: -1.5,-102.5 - parent: 2 - - uid: 19075 - components: - - type: Transform - pos: -7.5,-100.5 - parent: 2 - - uid: 19076 - components: - - type: Transform - pos: 1.5,-100.5 - parent: 2 - - uid: 19077 - components: - - type: Transform - pos: 0.5,-72.5 - parent: 2 - - uid: 19078 - components: - - type: Transform - pos: 5.5,-102.5 - parent: 2 - - uid: 19079 - components: - - type: Transform - pos: -4.5,-102.5 - parent: 2 - - uid: 19080 - components: - - type: Transform - pos: -4.5,-100.5 - parent: 2 - - uid: 19085 - components: - - type: Transform - pos: -5.5,-28.5 - parent: 2 - - uid: 19089 - components: - - type: Transform - pos: 34.5,-32.5 - parent: 2 - - uid: 19090 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 2 - - uid: 19091 - components: - - type: Transform - pos: -58.5,-22.5 - parent: 2 - - uid: 19099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-60.5 - parent: 2 - - uid: 19103 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 2 - - uid: 19104 - components: - - type: Transform - pos: 2.5,-64.5 - parent: 2 - - uid: 19110 - components: - - type: Transform - pos: -34.5,-26.5 - parent: 2 - - uid: 19112 - components: - - type: Transform - pos: 5.5,-58.5 - parent: 2 - - uid: 19113 - components: - - type: Transform - pos: 6.5,-58.5 - parent: 2 - - uid: 19114 - components: - - type: Transform - pos: 38.5,-35.5 - parent: 2 - - uid: 19115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-28.5 - parent: 2 - - uid: 19116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-22.5 - parent: 2 - - uid: 19117 - components: - - type: Transform - pos: 33.5,-11.5 - parent: 2 - - uid: 19119 - components: - - type: Transform - pos: 22.5,-31.5 - parent: 2 - - uid: 19120 - components: - - type: Transform - pos: 21.5,-31.5 - parent: 2 - - uid: 19121 - components: - - type: Transform - pos: 20.5,-31.5 - parent: 2 - - uid: 19122 - components: - - type: Transform - pos: 19.5,-31.5 - parent: 2 - - uid: 19123 - components: - - type: Transform - pos: 18.5,-31.5 - parent: 2 - - uid: 19124 - components: - - type: Transform - pos: 24.5,-31.5 - parent: 2 - - uid: 19125 - components: - - type: Transform - pos: 26.5,-31.5 - parent: 2 - - uid: 19126 - components: - - type: Transform - pos: 29.5,-26.5 - parent: 2 - - uid: 19127 - components: - - type: Transform - pos: 27.5,-26.5 - parent: 2 - - uid: 19128 - components: - - type: Transform - pos: 24.5,-26.5 - parent: 2 - - uid: 19129 - components: - - type: Transform - pos: 33.5,-26.5 - parent: 2 - - uid: 19130 - components: - - type: Transform - pos: 38.5,-36.5 - parent: 2 - - uid: 19131 - components: - - type: Transform - pos: 27.5,-32.5 - parent: 2 - - uid: 19132 - components: - - type: Transform - pos: 42.5,-29.5 - parent: 2 - - uid: 19133 - components: - - type: Transform - pos: 38.5,-25.5 - parent: 2 - - uid: 19134 - components: - - type: Transform - pos: 42.5,-26.5 - parent: 2 - - uid: 19135 - components: - - type: Transform - pos: 68.5,-11.5 - parent: 2 - - uid: 19136 - components: - - type: Transform - pos: 37.5,-33.5 - parent: 2 - - uid: 19137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-27.5 - parent: 2 - - uid: 19138 - components: - - type: Transform - pos: 38.5,-34.5 - parent: 2 - - uid: 19139 - components: - - type: Transform - pos: 41.5,-25.5 - parent: 2 - - uid: 19141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-15.5 - parent: 2 - - uid: 19142 - components: - - type: Transform - pos: 58.5,-56.5 - parent: 2 - - uid: 19143 - components: - - type: Transform - pos: 57.5,-56.5 - parent: 2 - - uid: 19144 - components: - - type: Transform - pos: 62.5,-56.5 - parent: 2 - - uid: 19146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-32.5 - parent: 2 - - uid: 19147 - components: - - type: Transform - pos: 61.5,-56.5 - parent: 2 - - uid: 19148 - components: - - type: Transform - pos: 63.5,-56.5 - parent: 2 - - uid: 19149 - components: - - type: Transform - pos: 53.5,-28.5 - parent: 2 - - uid: 19150 - components: - - type: Transform - pos: 53.5,-32.5 - parent: 2 - - uid: 19151 - components: - - type: Transform - pos: 10.5,-54.5 - parent: 2 - - uid: 19152 - components: - - type: Transform - pos: 10.5,-51.5 - parent: 2 - - uid: 19154 - components: - - type: Transform - pos: 38.5,27.5 - parent: 2 - - uid: 19158 - components: - - type: Transform - pos: 43.5,-24.5 - parent: 2 - - uid: 19159 - components: - - type: Transform - pos: 38.5,-46.5 - parent: 2 - - uid: 19160 - components: - - type: Transform - pos: 38.5,-45.5 - parent: 2 - - uid: 19161 - components: - - type: Transform - pos: 53.5,-60.5 - parent: 2 - - uid: 19162 - components: - - type: Transform - pos: 52.5,-60.5 - parent: 2 - - uid: 19163 - components: - - type: Transform - pos: 58.5,-60.5 - parent: 2 - - uid: 19164 - components: - - type: Transform - pos: 57.5,-60.5 - parent: 2 - - uid: 19165 - components: - - type: Transform - pos: 56.5,-60.5 - parent: 2 - - uid: 19166 - components: - - type: Transform - pos: 63.5,-60.5 - parent: 2 - - uid: 19167 - components: - - type: Transform - pos: 62.5,-60.5 - parent: 2 - - uid: 19168 - components: - - type: Transform - pos: 61.5,-60.5 - parent: 2 - - uid: 19171 - components: - - type: Transform - pos: 76.5,-61.5 - parent: 2 - - uid: 19172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-7.5 - parent: 2 - - uid: 19173 - components: - - type: Transform - pos: 43.5,-34.5 - parent: 2 - - uid: 19177 - components: - - type: Transform - pos: -21.5,0.5 - parent: 2 - - uid: 19180 - components: - - type: Transform - pos: 51.5,-60.5 - parent: 2 - - uid: 19181 - components: - - type: Transform - pos: 23.5,-34.5 - parent: 2 - - uid: 19182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-11.5 - parent: 2 - - uid: 19183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-11.5 - parent: 2 - - uid: 19184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-25.5 - parent: 2 - - uid: 19185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-23.5 - parent: 2 - - uid: 19186 - components: - - type: Transform - pos: 35.5,-21.5 - parent: 2 - - uid: 19187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 2 - - uid: 19188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 2 - - uid: 19189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-15.5 - parent: 2 - - uid: 19190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 2 - - uid: 19191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-10.5 - parent: 2 - - uid: 19193 - components: - - type: Transform - pos: 57.5,-38.5 - parent: 2 - - uid: 19194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 2 - - uid: 19195 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 2 - - uid: 19196 - components: - - type: Transform - pos: 76.5,-48.5 - parent: 2 - - uid: 19200 - components: - - type: Transform - pos: 51.5,-38.5 - parent: 2 - - uid: 19201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,27.5 - parent: 2 - - uid: 19203 - components: - - type: Transform - pos: 77.5,-48.5 - parent: 2 - - uid: 19204 - components: - - type: Transform - pos: -22.5,-45.5 - parent: 2 - - uid: 19206 - components: - - type: Transform - pos: 10.5,-28.5 - parent: 2 - - uid: 19209 - components: - - type: Transform - pos: 41.5,-30.5 - parent: 2 - - uid: 19210 - components: - - type: Transform - pos: 68.5,-81.5 - parent: 2 - - uid: 19212 - components: - - type: Transform - pos: -34.5,-27.5 - parent: 2 - - uid: 19213 - components: - - type: Transform - pos: -29.5,-25.5 - parent: 2 - - uid: 19214 - components: - - type: Transform - pos: -34.5,-25.5 - parent: 2 - - uid: 19215 - components: - - type: Transform - pos: 79.5,1.5 - parent: 2 - - uid: 19216 - components: - - type: Transform - pos: -25.5,-31.5 - parent: 2 - - uid: 19218 - components: - - type: Transform - pos: -79.5,12.5 - parent: 2 - - uid: 19219 - components: - - type: Transform - pos: -78.5,12.5 - parent: 2 - - uid: 19220 - components: - - type: Transform - pos: -77.5,12.5 - parent: 2 - - uid: 19228 - components: - - type: Transform - pos: 42.5,-1.5 - parent: 2 - - uid: 19251 - components: - - type: Transform - pos: 9.5,-58.5 - parent: 2 - - uid: 19252 - components: - - type: Transform - pos: 10.5,-52.5 - parent: 2 - - uid: 19253 - components: - - type: Transform - pos: 3.5,-58.5 - parent: 2 - - uid: 19254 - components: - - type: Transform - pos: 10.5,-53.5 - parent: 2 - - uid: 19255 - components: - - type: Transform - pos: 2.5,-41.5 - parent: 2 - - uid: 19263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-25.5 - parent: 2 - - uid: 19264 - components: - - type: Transform - pos: 68.5,-18.5 - parent: 2 - - uid: 19265 - components: - - type: Transform - pos: 65.5,-89.5 - parent: 2 - - uid: 19266 - components: - - type: Transform - pos: 72.5,-25.5 - parent: 2 - - uid: 19267 - components: - - type: Transform - pos: 71.5,-89.5 - parent: 2 - - uid: 19268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-20.5 - parent: 2 - - uid: 19270 - components: - - type: Transform - pos: 76.5,-11.5 - parent: 2 - - uid: 19271 - components: - - type: Transform - pos: 74.5,-0.5 - parent: 2 - - uid: 19272 - components: - - type: Transform - pos: 59.5,-25.5 - parent: 2 - - uid: 19273 - components: - - type: Transform - pos: 74.5,-25.5 - parent: 2 - - uid: 19274 - components: - - type: Transform - pos: -6.5,46.5 - parent: 2 - - uid: 19275 - components: - - type: Transform - pos: -14.5,54.5 - parent: 2 - - uid: 19276 - components: - - type: Transform - pos: -15.5,54.5 - parent: 2 - - uid: 19277 - components: - - type: Transform - pos: -12.5,54.5 - parent: 2 - - uid: 19278 - components: - - type: Transform - pos: -8.5,46.5 - parent: 2 - - uid: 19279 - components: - - type: Transform - pos: -11.5,54.5 - parent: 2 - - uid: 19281 - components: - - type: Transform - pos: 44.5,-1.5 - parent: 2 - - uid: 19282 - components: - - type: Transform - pos: 6.5,29.5 - parent: 2 - - uid: 19283 - components: - - type: Transform - pos: 8.5,29.5 - parent: 2 - - uid: 19284 - components: - - type: Transform - pos: -12.5,-32.5 - parent: 2 - - uid: 19285 - components: - - type: Transform - pos: -13.5,-32.5 - parent: 2 - - uid: 19286 - components: - - type: Transform - pos: -14.5,-32.5 - parent: 2 - - uid: 19287 - components: - - type: Transform - pos: 17.5,-3.5 - parent: 2 - - uid: 19288 - components: - - type: Transform - pos: 11.5,-28.5 - parent: 2 - - uid: 19289 - components: - - type: Transform - pos: 12.5,-28.5 - parent: 2 - - uid: 19290 - components: - - type: Transform - pos: 72.5,-11.5 - parent: 2 - - uid: 19292 - components: - - type: Transform - pos: 69.5,-10.5 - parent: 2 - - uid: 19294 - components: - - type: Transform - pos: 70.5,-11.5 - parent: 2 - - uid: 19295 - components: - - type: Transform - pos: 72.5,-11.5 - parent: 2 - - uid: 19297 - components: - - type: Transform - pos: 7.5,-28.5 - parent: 2 - - uid: 19298 - components: - - type: Transform - pos: 6.5,-28.5 - parent: 2 - - uid: 19299 - components: - - type: Transform - pos: -27.5,41.5 - parent: 2 - - uid: 19300 - components: - - type: Transform - pos: -27.5,42.5 - parent: 2 - - uid: 19301 - components: - - type: Transform - pos: -27.5,43.5 - parent: 2 - - uid: 19302 - components: - - type: Transform - pos: -27.5,44.5 - parent: 2 - - uid: 19303 - components: - - type: Transform - pos: -27.5,45.5 - parent: 2 - - uid: 19304 - components: - - type: Transform - pos: -27.5,46.5 - parent: 2 - - uid: 19305 - components: - - type: Transform - pos: -27.5,47.5 - parent: 2 - - uid: 19306 - components: - - type: Transform - pos: -24.5,58.5 - parent: 2 - - uid: 19307 - components: - - type: Transform - pos: -23.5,58.5 - parent: 2 - - uid: 19308 - components: - - type: Transform - pos: -22.5,58.5 - parent: 2 - - uid: 19309 - components: - - type: Transform - pos: -21.5,58.5 - parent: 2 - - uid: 19310 - components: - - type: Transform - pos: -20.5,58.5 - parent: 2 - - uid: 19311 - components: - - type: Transform - pos: -19.5,58.5 - parent: 2 - - uid: 19312 - components: - - type: Transform - pos: -18.5,58.5 - parent: 2 - - uid: 19313 - components: - - type: Transform - pos: -17.5,58.5 - parent: 2 - - uid: 19314 - components: - - type: Transform - pos: -15.5,58.5 - parent: 2 - - uid: 19315 - components: - - type: Transform - pos: -14.5,58.5 - parent: 2 - - uid: 19316 - components: - - type: Transform - pos: -13.5,58.5 - parent: 2 - - uid: 19317 - components: - - type: Transform - pos: -12.5,58.5 - parent: 2 - - uid: 19318 - components: - - type: Transform - pos: -11.5,58.5 - parent: 2 - - uid: 19319 - components: - - type: Transform - pos: -10.5,58.5 - parent: 2 - - uid: 19320 - components: - - type: Transform - pos: -9.5,58.5 - parent: 2 - - uid: 19322 - components: - - type: Transform - pos: 9.5,53.5 - parent: 2 - - uid: 19323 - components: - - type: Transform - pos: 9.5,52.5 - parent: 2 - - uid: 19324 - components: - - type: Transform - pos: 9.5,51.5 - parent: 2 - - uid: 19325 - components: - - type: Transform - pos: 9.5,50.5 - parent: 2 - - uid: 19326 - components: - - type: Transform - pos: 9.5,49.5 - parent: 2 - - uid: 19327 - components: - - type: Transform - pos: 9.5,48.5 - parent: 2 - - uid: 19328 - components: - - type: Transform - pos: -27.5,54.5 - parent: 2 - - uid: 19329 - components: - - type: Transform - pos: -27.5,53.5 - parent: 2 - - uid: 19330 - components: - - type: Transform - pos: -27.5,52.5 - parent: 2 - - uid: 19331 - components: - - type: Transform - pos: -27.5,51.5 - parent: 2 - - uid: 19332 - components: - - type: Transform - pos: -27.5,50.5 - parent: 2 - - uid: 19334 - components: - - type: Transform - pos: 5.5,-93.5 - parent: 2 - - uid: 19335 - components: - - type: Transform - pos: -10.5,-83.5 - parent: 2 - - uid: 19336 - components: - - type: Transform - pos: 72.5,-0.5 - parent: 2 - - uid: 19337 - components: - - type: Transform - pos: -20.5,33.5 - parent: 2 - - uid: 19348 - components: - - type: Transform - pos: 65.5,-11.5 - parent: 2 - - uid: 19349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-20.5 - parent: 2 - - uid: 19350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-18.5 - parent: 2 - - uid: 19351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-16.5 - parent: 2 - - uid: 19352 - components: - - type: Transform - pos: 37.5,27.5 - parent: 2 - - uid: 19353 - components: - - type: Transform - pos: 36.5,27.5 - parent: 2 - - uid: 19362 - components: - - type: Transform - pos: -46.5,-23.5 - parent: 2 - - uid: 19363 - components: - - type: Transform - pos: -46.5,-25.5 - parent: 2 - - uid: 19364 - components: - - type: Transform - pos: -58.5,-25.5 - parent: 2 - - uid: 19365 - components: - - type: Transform - pos: -58.5,-24.5 - parent: 2 - - uid: 19366 - components: - - type: Transform - pos: -56.5,-25.5 - parent: 2 - - uid: 19367 - components: - - type: Transform - pos: -56.5,-23.5 - parent: 2 - - uid: 19368 - components: - - type: Transform - pos: -56.5,-22.5 - parent: 2 - - uid: 19369 - components: - - type: Transform - pos: -56.5,-24.5 - parent: 2 - - uid: 19370 - components: - - type: Transform - pos: -54.5,-27.5 - parent: 2 - - uid: 19371 - components: - - type: Transform - pos: -52.5,-27.5 - parent: 2 - - uid: 19372 - components: - - type: Transform - pos: -53.5,-27.5 - parent: 2 - - uid: 19373 - components: - - type: Transform - pos: -51.5,-27.5 - parent: 2 - - uid: 19374 - components: - - type: Transform - pos: -51.5,-29.5 - parent: 2 - - uid: 19375 - components: - - type: Transform - pos: -52.5,-29.5 - parent: 2 - - uid: 19376 - components: - - type: Transform - pos: -54.5,-29.5 - parent: 2 - - uid: 19377 - components: - - type: Transform - pos: -53.5,-29.5 - parent: 2 - - uid: 19378 - components: - - type: Transform - pos: -57.5,-30.5 - parent: 2 - - uid: 19379 - components: - - type: Transform - pos: -56.5,-30.5 - parent: 2 - - uid: 19380 - components: - - type: Transform - pos: -58.5,-30.5 - parent: 2 - - uid: 19381 - components: - - type: Transform - pos: -59.5,-30.5 - parent: 2 - - uid: 19382 - components: - - type: Transform - pos: -59.5,-29.5 - parent: 2 - - uid: 19383 - components: - - type: Transform - pos: -59.5,-28.5 - parent: 2 - - uid: 19385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-10.5 - parent: 2 - - uid: 19457 - components: - - type: Transform - pos: -50.5,-25.5 - parent: 2 - - uid: 19469 - components: - - type: Transform - pos: 15.5,-73.5 - parent: 2 - - uid: 19472 - components: - - type: Transform - pos: 15.5,-69.5 - parent: 2 - - uid: 19539 - components: - - type: Transform - pos: -40.5,-62.5 - parent: 2 - - uid: 19542 - components: - - type: Transform - pos: -23.5,37.5 - parent: 2 - - uid: 20060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,36.5 - parent: 2 - - uid: 20170 - components: - - type: Transform - pos: -27.5,29.5 - parent: 2 - - uid: 20183 - components: - - type: Transform - pos: 89.5,-10.5 - parent: 2 - - uid: 20184 - components: - - type: Transform - pos: -19.5,-29.5 - parent: 2 - - uid: 20187 - components: - - type: Transform - pos: -4.5,-28.5 - parent: 2 - - uid: 20204 - components: - - type: Transform - pos: 57.5,-53.5 - parent: 2 - - uid: 20227 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 2 - - uid: 20230 - components: - - type: Transform - pos: 60.5,-78.5 - parent: 2 - - uid: 20257 - components: - - type: Transform - pos: -42.5,-39.5 - parent: 2 - - uid: 20471 - components: - - type: Transform - pos: -15.5,37.5 - parent: 2 - - uid: 20634 - components: - - type: Transform - pos: -3.5,-68.5 - parent: 2 - - uid: 20696 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 2 - - uid: 20955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-82.5 - parent: 2 - - uid: 20983 - components: - - type: Transform - pos: 42.5,-47.5 - parent: 2 - - uid: 21003 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 2 - - uid: 21004 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 2 - - uid: 21010 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - - uid: 21011 - components: - - type: Transform - pos: -37.5,-39.5 - parent: 2 - - uid: 21017 - components: - - type: Transform - pos: -33.5,-35.5 - parent: 2 - - uid: 21030 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - - uid: 21045 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 2 - - uid: 21063 - components: - - type: Transform - pos: -23.5,-22.5 - parent: 2 - - uid: 21080 - components: - - type: Transform - pos: 82.5,3.5 - parent: 2 - - uid: 21170 - components: - - type: Transform - pos: 25.5,-89.5 - parent: 2 - - uid: 21534 - components: - - type: Transform - pos: 22.5,-64.5 - parent: 2 - - uid: 21617 - components: - - type: Transform - pos: -23.5,-24.5 - parent: 2 - - uid: 21629 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - - uid: 21631 - components: - - type: Transform - pos: -32.5,-39.5 - parent: 2 - - uid: 21851 - components: - - type: Transform - pos: -31.5,-39.5 - parent: 2 - - uid: 21871 - components: - - type: Transform - pos: -74.5,17.5 - parent: 2 - - uid: 21872 - components: - - type: Transform - pos: -74.5,16.5 - parent: 2 - - uid: 21873 - components: - - type: Transform - pos: -74.5,15.5 - parent: 2 - - uid: 21874 - components: - - type: Transform - pos: -74.5,14.5 - parent: 2 - - uid: 21875 - components: - - type: Transform - pos: -74.5,13.5 - parent: 2 - - uid: 21876 - components: - - type: Transform - pos: -67.5,19.5 - parent: 2 - - uid: 21877 - components: - - type: Transform - pos: -66.5,19.5 - parent: 2 - - uid: 21878 - components: - - type: Transform - pos: -65.5,19.5 - parent: 2 - - uid: 21960 - components: - - type: Transform - pos: -33.5,-39.5 - parent: 2 - - uid: 22003 - components: - - type: Transform - pos: -6.5,1.5 - parent: 2 - - uid: 22055 - components: - - type: Transform - pos: -6.5,3.5 - parent: 2 - - uid: 22099 - components: - - type: Transform - pos: -6.5,2.5 - parent: 2 - - uid: 22106 - components: - - type: Transform - pos: -27.5,37.5 - parent: 2 - - uid: 22108 - components: - - type: Transform - pos: 38.5,-69.5 - parent: 2 - - uid: 22116 - components: - - type: Transform - pos: -6.5,5.5 - parent: 2 - - uid: 22117 - components: - - type: Transform - pos: -6.5,6.5 - parent: 2 - - uid: 22118 - components: - - type: Transform - pos: -6.5,7.5 - parent: 2 - - uid: 22134 - components: - - type: Transform - pos: -5.5,8.5 - parent: 2 - - uid: 22138 - components: - - type: Transform - pos: -3.5,8.5 - parent: 2 - - uid: 22139 - components: - - type: Transform - pos: -2.5,7.5 - parent: 2 - - uid: 22276 - components: - - type: Transform - pos: -2.5,5.5 - parent: 2 - - uid: 22288 - components: - - type: Transform - pos: 1.5,-51.5 - parent: 2 - - uid: 22299 - components: - - type: Transform - pos: -50.5,-24.5 - parent: 2 - - uid: 22375 - components: - - type: Transform - pos: -32.5,-35.5 - parent: 2 - - uid: 22379 - components: - - type: Transform - pos: -24.5,37.5 - parent: 2 - - uid: 22381 - components: - - type: Transform - pos: -2.5,6.5 - parent: 2 - - uid: 22389 - components: - - type: Transform - pos: -16.5,33.5 - parent: 2 - - uid: 22390 - components: - - type: Transform - pos: -20.5,32.5 - parent: 2 - - uid: 22475 - components: - - type: Transform - pos: 62.5,-15.5 - parent: 2 - - uid: 22480 - components: - - type: Transform - pos: -9.5,15.5 - parent: 2 - - uid: 22554 - components: - - type: Transform - pos: -9.5,17.5 - parent: 2 - - uid: 22555 - components: - - type: Transform - pos: -5.5,18.5 - parent: 2 - - uid: 22556 - components: - - type: Transform - pos: -3.5,18.5 - parent: 2 - - uid: 22594 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 - - uid: 22595 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 2 - - uid: 22596 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 2 - - uid: 22597 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 2 - - uid: 22641 - components: - - type: Transform - pos: -3.5,-70.5 - parent: 2 - - uid: 22648 - components: - - type: Transform - pos: -2.5,16.5 - parent: 2 - - uid: 22651 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 2 - - uid: 22824 - components: - - type: Transform - pos: -2.5,15.5 - parent: 2 - - uid: 22825 - components: - - type: Transform - pos: -10.5,18.5 - parent: 2 - - uid: 22866 - components: - - type: Transform - pos: 89.5,-12.5 - parent: 2 - - uid: 23171 - components: - - type: Transform - pos: -19.5,-31.5 - parent: 2 - - uid: 23225 - components: - - type: Transform - pos: -11.5,18.5 - parent: 2 - - uid: 23237 - components: - - type: Transform - pos: -12.5,18.5 - parent: 2 - - uid: 23238 - components: - - type: Transform - pos: -13.5,18.5 - parent: 2 - - uid: 23331 - components: - - type: Transform - pos: 24.5,-44.5 - parent: 2 - - uid: 23450 - components: - - type: Transform - pos: -29.5,18.5 - parent: 2 - - uid: 23487 - components: - - type: Transform - pos: 89.5,-8.5 - parent: 2 - - uid: 23496 - components: - - type: Transform - pos: -14.5,18.5 - parent: 2 - - uid: 23637 - components: - - type: Transform - pos: 22.5,-62.5 - parent: 2 - - uid: 23777 - components: - - type: Transform - pos: -35.5,-39.5 - parent: 2 - - uid: 23801 - components: - - type: Transform - pos: -3.5,0.5 - parent: 2 - - uid: 24127 - components: - - type: Transform - pos: 15.5,-54.5 - parent: 2 - - uid: 24128 - components: - - type: Transform - pos: 22.5,-61.5 - parent: 2 - - uid: 24129 - components: - - type: Transform - pos: 22.5,-63.5 - parent: 2 - - uid: 24394 - components: - - type: Transform - pos: -16.5,32.5 - parent: 2 - - uid: 24396 - components: - - type: Transform - pos: -25.5,29.5 - parent: 2 - - uid: 24633 - components: - - type: Transform - pos: -39.5,44.5 - parent: 2 - - uid: 24671 - components: - - type: Transform - pos: 67.5,-15.5 - parent: 2 - - uid: 25070 - components: - - type: Transform - pos: 25.5,-85.5 - parent: 2 - - uid: 25072 - components: - - type: Transform - pos: 25.5,-87.5 - parent: 2 - - uid: 25256 - components: - - type: Transform - pos: 89.5,-2.5 - parent: 2 - - uid: 25320 - components: - - type: Transform - pos: 64.5,-65.5 - parent: 2 - - uid: 25393 - components: - - type: Transform - pos: -39.5,-36.5 - parent: 2 - - uid: 25436 - components: - - type: Transform - pos: -13.5,37.5 - parent: 2 - - uid: 25661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-78.5 - parent: 2 - - uid: 25749 - components: - - type: Transform - pos: 22.5,-43.5 - parent: 2 - - uid: 25866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-38.5 - parent: 2 - - uid: 25897 - components: - - type: Transform - pos: 23.5,-75.5 - parent: 2 - - uid: 26476 - components: - - type: Transform - pos: 59.5,-53.5 - parent: 2 - - uid: 26608 - components: - - type: Transform - pos: -3.5,-28.5 - parent: 2 - - uid: 26902 - components: - - type: Transform - pos: 61.5,-53.5 - parent: 2 - - uid: 27152 - components: - - type: Transform - pos: 15.5,12.5 - parent: 2 - - uid: 27154 - components: - - type: Transform - pos: 16.5,12.5 - parent: 2 - - uid: 27156 + - uid: 397 components: - type: Transform pos: 17.5,12.5 parent: 2 - - uid: 27469 + - uid: 398 components: - type: Transform - pos: -19.5,-30.5 + pos: 16.5,11.5 parent: 2 - - uid: 27689 + - uid: 399 components: - type: Transform - pos: 16.5,-85.5 + pos: 16.5,8.5 parent: 2 - - uid: 27700 + - uid: 400 components: - type: Transform - pos: 20.5,-85.5 + pos: 18.5,9.5 parent: 2 - - uid: 27703 + - uid: 401 components: - type: Transform - pos: 25.5,-91.5 + pos: 17.5,8.5 parent: 2 - - uid: 27724 - components: - - type: Transform - pos: 16.5,-87.5 - parent: 2 - - uid: 28886 - components: - - type: Transform - pos: -2.5,48.5 - parent: 2 - - uid: 28887 - components: - - type: Transform - pos: -1.5,48.5 - parent: 2 - - uid: 28888 - components: - - type: Transform - pos: 31.5,-72.5 - parent: 2 - - uid: 28889 - components: - - type: Transform - pos: -0.5,48.5 - parent: 2 - - uid: 28893 - components: - - type: Transform - pos: 0.5,48.5 - parent: 2 - - uid: 28924 - components: - - type: Transform - pos: 1.5,48.5 - parent: 2 - - uid: 28925 - components: - - type: Transform - pos: 1.5,50.5 - parent: 2 - - uid: 28942 - components: - - type: Transform - pos: 0.5,50.5 - parent: 2 - - uid: 28943 - components: - - type: Transform - pos: 27.5,11.5 - parent: 2 - - uid: 28965 - components: - - type: Transform - pos: -0.5,50.5 - parent: 2 - - uid: 28966 - components: - - type: Transform - pos: -1.5,50.5 - parent: 2 - - uid: 28975 - components: - - type: Transform - pos: -2.5,50.5 - parent: 2 - - uid: 29146 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 2 - - uid: 29168 - components: - - type: Transform - pos: 4.5,47.5 - parent: 2 - - uid: 29169 - components: - - type: Transform - pos: 4.5,46.5 - parent: 2 - - uid: 29170 - components: - - type: Transform - pos: 4.5,45.5 - parent: 2 - - uid: 29171 - components: - - type: Transform - pos: 2.5,45.5 - parent: 2 - - uid: 29173 - components: - - type: Transform - pos: 2.5,46.5 - parent: 2 - - uid: 29265 - components: - - type: Transform - pos: 2.5,47.5 - parent: 2 - - uid: 29369 - components: - - type: Transform - pos: 66.5,-15.5 - parent: 2 - - uid: 29380 - components: - - type: Transform - pos: 82.5,5.5 - parent: 2 - - uid: 29381 - components: - - type: Transform - pos: 82.5,4.5 - parent: 2 - - uid: 29382 - components: - - type: Transform - pos: 81.5,5.5 - parent: 2 - - uid: 29383 - components: - - type: Transform - pos: 80.5,5.5 - parent: 2 - - uid: 29506 - components: - - type: Transform - pos: 16.5,-89.5 - parent: 2 - - uid: 29507 - components: - - type: Transform - pos: 20.5,-89.5 - parent: 2 - - uid: 29542 - components: - - type: Transform - pos: 32.5,-72.5 - parent: 2 - - uid: 29747 - components: - - type: Transform - pos: 24.5,11.5 - parent: 2 - - uid: 29748 + - uid: 402 components: - type: Transform pos: 22.5,11.5 parent: 2 - - uid: 29974 + - uid: 403 components: - type: Transform - pos: -49.5,-34.5 + pos: 21.5,11.5 parent: 2 - - uid: 29975 + - uid: 404 components: - type: Transform - pos: -49.5,-33.5 + pos: 19.5,9.5 parent: 2 - - uid: 29976 + - uid: 405 components: - type: Transform - pos: -49.5,-38.5 + pos: 20.5,10.5 parent: 2 - - uid: 29979 + - uid: 411 components: - type: Transform - pos: 79.5,8.5 + pos: 5.5,6.5 parent: 2 - - uid: 29980 + - uid: 412 components: - type: Transform - pos: 79.5,7.5 + pos: 2.5,5.5 parent: 2 - - uid: 29981 + - uid: 413 components: - type: Transform - pos: 75.5,16.5 + pos: 4.5,5.5 parent: 2 - - uid: 29982 + - uid: 414 components: - type: Transform - pos: 74.5,16.5 + pos: 3.5,5.5 parent: 2 - - uid: 29983 + - uid: 415 components: - type: Transform - pos: 72.5,16.5 + pos: 14.5,10.5 parent: 2 - - uid: 29984 + - uid: 416 components: - type: Transform - pos: 73.5,16.5 + pos: 13.5,9.5 parent: 2 - - uid: 30008 + - uid: 417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,42.5 + pos: 12.5,9.5 parent: 2 - - uid: 30045 + - uid: 418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,33.5 + pos: 10.5,8.5 parent: 2 - - uid: 30046 + - uid: 419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,33.5 + pos: 11.5,9.5 parent: 2 - - uid: 30047 + - uid: 420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,34.5 + pos: 8.5,7.5 parent: 2 - - uid: 30048 + - uid: 421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,35.5 + pos: 9.5,8.5 parent: 2 - - uid: 30049 + - uid: 422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,36.5 + pos: 6.5,6.5 parent: 2 - - uid: 30050 + - uid: 423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,37.5 + pos: 7.5,7.5 parent: 2 - - uid: 30052 + - uid: 424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,37.5 + pos: 15.5,10.5 parent: 2 - - uid: 30110 + - uid: 425 components: - type: Transform - pos: 30.5,36.5 + pos: 15.5,7.5 parent: 2 - - uid: 30111 + - uid: 426 components: - type: Transform - pos: 30.5,34.5 + pos: 14.5,7.5 parent: 2 - - uid: 30112 + - uid: 427 components: - type: Transform - pos: 29.5,40.5 + pos: 13.5,7.5 parent: 2 - - uid: 30113 + - uid: 428 components: - type: Transform - pos: 29.5,41.5 + pos: 12.5,6.5 parent: 2 - - uid: 30117 + - uid: 429 components: - type: Transform - pos: 29.5,42.5 + pos: 11.5,6.5 parent: 2 - - uid: 30118 + - uid: 430 components: - type: Transform - pos: 21.5,41.5 + pos: 10.5,5.5 parent: 2 - - uid: 30119 + - uid: 431 components: - type: Transform - pos: 21.5,42.5 + pos: 9.5,5.5 parent: 2 - - uid: 30120 + - uid: 432 components: - type: Transform - pos: 21.5,43.5 + pos: 8.5,4.5 parent: 2 - - uid: 30216 + - uid: 433 components: - type: Transform - pos: 51.5,-53.5 + pos: 7.5,4.5 parent: 2 - - uid: 30222 + - uid: 434 components: - type: Transform - pos: 37.5,-65.5 + pos: 6.5,3.5 parent: 2 - - uid: 30227 + - uid: 435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-45.5 + pos: 5.5,3.5 parent: 2 - - uid: 30292 + - uid: 436 components: - type: Transform - pos: -21.5,37.5 + pos: 1.5,4.5 parent: 2 - - uid: 31136 + - uid: 437 components: - type: Transform - pos: 72.5,23.5 + pos: 0.5,4.5 parent: 2 - - uid: 31137 + - uid: 438 components: - type: Transform - pos: 72.5,24.5 + pos: -0.5,4.5 parent: 2 - - uid: 31138 + - uid: 467 components: - type: Transform - pos: 72.5,25.5 + pos: -62.5,7.5 parent: 2 - - uid: 31484 + - uid: 468 components: - type: Transform - pos: 54.5,-76.5 + pos: -63.5,7.5 parent: 2 - - uid: 31746 + - uid: 469 components: - type: Transform - pos: -45.5,-17.5 + pos: -64.5,8.5 parent: 2 - - uid: 31768 + - uid: 470 + components: + - type: Transform + pos: -65.5,8.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: -66.5,9.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: -67.5,10.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: -68.5,10.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: -69.5,11.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: -70.5,11.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: -71.5,12.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: -62.5,10.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: -63.5,10.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: -64.5,11.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: -65.5,12.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: -66.5,12.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: -67.5,13.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: -68.5,13.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: -69.5,14.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: -70.5,15.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: -71.5,15.5 + parent: 2 + - uid: 612 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-9.5 + pos: -3.5,3.5 parent: 2 -- proto: GrilleBroken - entities: - - uid: 9379 + - uid: 619 components: - type: Transform - pos: 46.5,6.5 + pos: -41.5,-3.5 parent: 2 - - uid: 14852 + - uid: 644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,87.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: -42.5,79.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: -14.5,61.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: -121.5,110.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: -38.5,84.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: -38.5,83.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: 34.5,59.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: 34.5,61.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: -111.5,101.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: -31.5,106.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: -110.5,101.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: 39.5,26.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: 40.5,27.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + pos: -57.5,13.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: -53.5,13.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + pos: -72.5,146.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: 55.5,68.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + pos: 53.5,67.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + pos: 54.5,68.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: 53.5,68.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: 52.5,67.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + pos: 52.5,66.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,35.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + pos: -114.5,57.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: 64.5,69.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: 65.5,69.5 + parent: 2 + - uid: 3502 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-53.5 + pos: 0.5,89.5 parent: 2 - - uid: 19414 + - uid: 3509 components: - type: Transform - pos: -51.5,14.5 + pos: 65.5,70.5 parent: 2 - - uid: 19415 + - uid: 3510 components: - type: Transform - pos: 49.5,9.5 + pos: 66.5,70.5 parent: 2 - - uid: 19418 + - uid: 3511 components: - type: Transform - pos: -41.5,-17.5 + pos: 67.5,70.5 parent: 2 - - uid: 19419 + - uid: 3512 components: - type: Transform - pos: 42.5,-65.5 + pos: 68.5,70.5 parent: 2 - - uid: 19420 + - uid: 3513 components: - type: Transform - pos: -47.5,-53.5 + pos: 69.5,70.5 parent: 2 - - uid: 19421 + - uid: 3514 components: - type: Transform - pos: -56.5,-67.5 + pos: 70.5,70.5 parent: 2 - - uid: 19422 + - uid: 3516 components: - type: Transform - pos: -51.5,-69.5 + pos: 72.5,70.5 parent: 2 - - uid: 19423 + - uid: 3517 components: - type: Transform - pos: -41.5,35.5 + pos: 73.5,70.5 parent: 2 - - uid: 19424 + - uid: 3518 components: - type: Transform - pos: -57.5,28.5 + pos: 74.5,70.5 parent: 2 - - uid: 19425 + - uid: 3519 components: - type: Transform - pos: -47.5,42.5 + pos: 75.5,70.5 parent: 2 - - uid: 19426 + - uid: 3520 components: - type: Transform - pos: 49.5,42.5 + pos: 76.5,70.5 parent: 2 - - uid: 19427 + - uid: 3521 components: - type: Transform - pos: 39.5,39.5 + pos: 77.5,70.5 parent: 2 - - uid: 19428 + - uid: 3522 components: - type: Transform - pos: 55.5,28.5 + pos: 77.5,69.5 parent: 2 - - uid: 19429 + - uid: 3523 components: - type: Transform - pos: 87.5,-71.5 + pos: 78.5,69.5 parent: 2 - - uid: 19430 + - uid: 3567 components: - type: Transform - pos: 76.5,-71.5 + pos: 63.5,55.5 parent: 2 - - uid: 19431 + - uid: 3568 components: - type: Transform - pos: 73.5,-80.5 + pos: 81.5,68.5 parent: 2 - - uid: 19432 + - uid: 3569 components: - type: Transform - pos: 88.5,-85.5 + pos: 82.5,68.5 parent: 2 - - uid: 19433 + - uid: 3570 + components: + - type: Transform + pos: 83.5,68.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: 84.5,68.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + pos: 85.5,68.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: 86.5,68.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + pos: 63.5,52.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + pos: 86.5,67.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: 87.5,67.5 + parent: 2 + - uid: 3590 + components: + - type: Transform + pos: 87.5,66.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: 88.5,66.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: 88.5,65.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + pos: 89.5,65.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + pos: 63.5,49.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: 110.5,50.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: 109.5,50.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: 104.5,56.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + pos: 106.5,50.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + pos: 105.5,50.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: 108.5,50.5 + parent: 2 + - uid: 3777 + components: + - type: Transform + pos: 74.5,43.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + pos: 87.5,37.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: 88.5,37.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + pos: 89.5,38.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: 90.5,39.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + pos: 91.5,40.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + pos: 91.5,41.5 + parent: 2 + - uid: 3927 + components: + - type: Transform + pos: -105.5,103.5 + parent: 2 + - uid: 4037 + components: + - type: Transform + pos: 110.5,56.5 + parent: 2 + - uid: 4041 + components: + - type: Transform + pos: 109.5,56.5 + parent: 2 + - uid: 4043 + components: + - type: Transform + pos: 108.5,56.5 + parent: 2 + - uid: 4048 + components: + - type: Transform + pos: 93.5,50.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: 73.5,50.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: -105.5,102.5 + parent: 2 + - uid: 4136 + components: + - type: Transform + pos: -72.5,173.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: 73.5,64.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: 68.5,43.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: -9.5,163.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: -109.5,101.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + pos: 70.5,42.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + pos: 72.5,42.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + pos: 68.5,44.5 + parent: 2 + - uid: 4431 + components: + - type: Transform + pos: 74.5,44.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + pos: 69.5,64.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: -138.5,39.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: 53.5,37.5 + parent: 2 + - uid: 4503 + components: + - type: Transform + pos: -138.5,41.5 + parent: 2 + - uid: 4653 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-89.5 + pos: -0.5,89.5 parent: 2 - - uid: 19434 + - uid: 4717 + components: + - type: Transform + pos: -68.5,69.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: 100.5,54.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + pos: 99.5,55.5 + parent: 2 + - uid: 4786 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,-89.5 + pos: -108.5,17.5 parent: 2 - - uid: 19435 - components: - - type: Transform - pos: 71.5,-88.5 - parent: 2 - - uid: 19436 - components: - - type: Transform - pos: 63.5,-88.5 - parent: 2 - - uid: 19437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-88.5 - parent: 2 - - uid: 19438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-88.5 - parent: 2 - - uid: 19439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,30.5 - parent: 2 - - uid: 19443 - components: - - type: Transform - pos: -20.5,11.5 - parent: 2 - - uid: 19445 - components: - - type: Transform - pos: -27.5,48.5 - parent: 2 - - uid: 19446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,49.5 - parent: 2 - - uid: 19447 + - uid: 4797 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-37.5 + pos: -105.5,17.5 parent: 2 - - uid: 19448 + - uid: 4848 components: - type: Transform - pos: 15.5,-36.5 + pos: 100.5,52.5 parent: 2 - - uid: 19449 + - uid: 4855 components: - type: Transform - pos: -10.5,-85.5 + pos: 93.5,56.5 parent: 2 - - uid: 19450 + - uid: 4857 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-84.5 + pos: 99.5,51.5 parent: 2 - - uid: 19451 + - uid: 4876 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-91.5 + pos: 104.5,50.5 parent: 2 - - uid: 19452 + - uid: 4934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-93.5 + pos: 105.5,56.5 parent: 2 - - uid: 19453 + - uid: 4947 + components: + - type: Transform + pos: 106.5,56.5 + parent: 2 + - uid: 5002 + components: + - type: Transform + pos: 100.5,51.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: 100.5,55.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: 101.5,52.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: 101.5,53.5 + parent: 2 + - uid: 5086 + components: + - type: Transform + pos: 101.5,54.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + pos: 48.5,43.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: 48.5,44.5 + parent: 2 + - uid: 5349 + components: + - type: Transform + pos: -12.5,166.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + pos: 8.5,63.5 + parent: 2 + - uid: 5465 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 5491 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 5514 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + pos: 92.5,26.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + pos: 92.5,25.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + pos: 91.5,25.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: 91.5,24.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + pos: 93.5,25.5 + parent: 2 + - uid: 6075 + components: + - type: Transform + pos: 92.5,9.5 + parent: 2 + - uid: 6076 + components: + - type: Transform + pos: 93.5,9.5 + parent: 2 + - uid: 6077 + components: + - type: Transform + pos: 93.5,10.5 + parent: 2 + - uid: 6078 + components: + - type: Transform + pos: 94.5,10.5 + parent: 2 + - uid: 6079 + components: + - type: Transform + pos: 96.5,12.5 + parent: 2 + - uid: 6080 + components: + - type: Transform + pos: 96.5,13.5 + parent: 2 + - uid: 6081 + components: + - type: Transform + pos: 95.5,12.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + pos: 96.5,15.5 + parent: 2 + - uid: 6089 + components: + - type: Transform + pos: 89.5,9.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: 88.5,9.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: 87.5,9.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + pos: -99.5,62.5 + parent: 2 + - uid: 6113 + components: + - type: Transform + pos: -100.5,62.5 + parent: 2 + - uid: 6115 + components: + - type: Transform + pos: -100.5,63.5 + parent: 2 + - uid: 6303 + components: + - type: Transform + pos: -69.5,128.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: -69.5,129.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + pos: -69.5,130.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + pos: -69.5,131.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + pos: -70.5,130.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + pos: -70.5,131.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: -116.5,13.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: -70.5,129.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: -69.5,132.5 + parent: 2 + - uid: 6464 + components: + - type: Transform + pos: 110.5,42.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: 9.5,64.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: 107.5,42.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: 108.5,42.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: 8.5,64.5 + parent: 2 + - uid: 6500 + components: + - type: Transform + pos: 109.5,42.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: 7.5,63.5 + parent: 2 + - uid: 6615 + components: + - type: Transform + pos: -32.5,56.5 + parent: 2 + - uid: 7017 + components: + - type: Transform + pos: 79.5,37.5 + parent: 2 + - uid: 7041 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: 50.5,41.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 7629 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-93.5 + pos: -60.5,127.5 parent: 2 - - uid: 19454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-93.5 - parent: 2 - - uid: 19455 + - uid: 7630 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-93.5 + pos: -59.5,127.5 parent: 2 - - uid: 20042 + - uid: 7631 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-12.5 + pos: -58.5,127.5 parent: 2 - - uid: 21533 - components: - - type: Transform - pos: -33.5,43.5 - parent: 2 - - uid: 30212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,8.5 - parent: 2 - - uid: 30224 + - uid: 7632 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-65.5 + pos: -58.5,133.5 parent: 2 - - uid: 30225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-67.5 - parent: 2 - - uid: 30228 - components: - - type: Transform - pos: -27.5,-44.5 - parent: 2 - - uid: 31336 + - uid: 7633 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,19.5 + pos: -59.5,133.5 parent: 2 - - uid: 31485 + - uid: 7634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,133.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,135.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,135.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,135.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,125.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,125.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,125.5 + parent: 2 + - uid: 7721 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,-77.5 + pos: -66.5,128.5 parent: 2 - - uid: 31494 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-78.5 - parent: 2 - - uid: 31747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-17.5 - parent: 2 - - uid: 31771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-9.5 - parent: 2 -- proto: GrilleSpawner - entities: - - uid: 17531 - components: - - type: Transform - pos: 0.5,53.5 - parent: 2 - - uid: 17922 - components: - - type: Transform - pos: 6.5,53.5 - parent: 2 - - uid: 19468 + - uid: 7728 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,54.5 + pos: -64.5,128.5 parent: 2 -- proto: GroundTobacco - entities: - - uid: 19470 + - uid: 7741 components: - type: Transform - pos: 19.661535,-9.563926 + pos: -68.5,128.5 parent: 2 -- proto: GunSafeIonRifle - entities: - - uid: 30298 - components: - - type: Transform - pos: -2.5,42.5 - parent: 2 -- proto: GunSafeRifleM16A4 - entities: - - uid: 24730 - components: - - type: Transform - pos: -0.5,44.5 - parent: 2 -- proto: GunSafeShotgunTrenchgun4034 - entities: - - uid: 24732 - components: - - type: Transform - pos: -1.5,44.5 - parent: 2 -- proto: GunSafeSubMachineGunVector - entities: - - uid: 24734 - components: - - type: Transform - pos: -2.5,44.5 - parent: 2 -- proto: Gyroscope - entities: - - uid: 289 - components: - - type: Transform - pos: -71.5,14.5 - parent: 2 -- proto: Handcuffs - entities: - - uid: 19480 - components: - - type: Transform - pos: 10.5,24.5 - parent: 2 - - uid: 19481 - components: - - type: Transform - pos: 10.5,24.5 - parent: 2 - - uid: 19482 - components: - - type: Transform - pos: 10.5,24.5 - parent: 2 - - uid: 19483 - components: - - type: Transform - pos: 3.5,23.5 - parent: 2 - - uid: 19484 - components: - - type: Transform - pos: 3.5,23.5 - parent: 2 -- proto: HandheldCamera - entities: - - uid: 11392 - components: - - type: Transform - pos: 27.723858,20.510345 - parent: 2 -- proto: HandheldHealthAnalyzer - entities: - - uid: 19486 - components: - - type: Transform - pos: -21.53479,-9.394163 - parent: 2 - - uid: 19487 - components: - - type: Transform - pos: 63.429848,12.47963 - parent: 2 -- proto: HandheldSoil - entities: - - uid: 31643 - components: - - type: Transform - pos: -31.541534,-11.44471 - parent: 2 - - uid: 31644 - components: - - type: Transform - pos: -31.416534,-11.38221 - parent: 2 - - uid: 31646 - components: - - type: Transform - pos: -31.27591,-11.47596 - parent: 2 -- proto: HandLabeler - entities: - - uid: 19489 - components: - - type: Transform - pos: 38.4924,-28.821447 - parent: 2 - - uid: 19490 - components: - - type: Transform - pos: 33.541283,-7.98534 - parent: 2 - - uid: 19492 - components: - - type: Transform - pos: 1.530674,30.52632 - parent: 2 - - uid: 19494 - components: - - type: Transform - pos: -9.477612,-23.567398 - parent: 2 - - uid: 19495 - components: - - type: Transform - pos: -34.5,-6.5 - parent: 2 - - uid: 19497 - components: - - type: Transform - pos: 42.78838,-16.408396 - parent: 2 - - uid: 19498 - components: - - type: Transform - pos: 11.49096,-33.114952 - parent: 2 - - uid: 19499 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 2 - - uid: 19500 - components: - - type: Transform - pos: 65.5,-53.5 - parent: 2 - - uid: 19501 - components: - - type: Transform - pos: 65.50084,1.5970671 - parent: 2 - - uid: 22014 - components: - - type: Transform - pos: 12.578914,23.573957 - parent: 2 - - uid: 29399 - components: - - type: Transform - pos: 63.51528,-4.4040236 - parent: 2 - - uid: 29400 - components: - - type: Transform - pos: 59.49966,-6.5133986 - parent: 2 - - uid: 31730 - components: - - type: Transform - pos: -17.491432,28.64085 - parent: 2 -- proto: HarmonicaInstrument - entities: - - uid: 17398 - components: - - type: Transform - pos: -31.52846,-31.461025 - parent: 2 - - uid: 17592 - components: - - type: Transform - pos: 69.51017,-41.28846 - parent: 2 - - uid: 22063 - components: - - type: Transform - pos: -17.496164,41.379486 - parent: 2 -- proto: HeadVulpkanin - entities: - - uid: 30170 - components: - - type: Transform - pos: 29.105976,34.445107 - parent: 2 -- proto: HeatExchanger - entities: - - uid: 7749 + - uid: 7833 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-88.5 + pos: -66.5,132.5 parent: 2 - - uid: 11277 + - uid: 7834 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-76.5 + pos: -64.5,132.5 parent: 2 - - uid: 11278 + - uid: 7853 + components: + - type: Transform + pos: -68.5,132.5 + parent: 2 + - uid: 7865 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-77.5 + pos: -65.5,128.5 parent: 2 - - uid: 11310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-79.5 - parent: 2 - - uid: 11316 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-79.5 - parent: 2 - - uid: 11319 + - uid: 7872 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-77.5 + pos: -65.5,132.5 parent: 2 - - uid: 11334 + - uid: 8078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-79.5 + pos: -32.5,177.5 parent: 2 - - uid: 11483 + - uid: 8185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-79.5 + pos: -91.5,157.5 parent: 2 - - uid: 11666 + - uid: 8329 + components: + - type: Transform + pos: 91.5,39.5 + parent: 2 + - uid: 8394 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-77.5 + pos: -111.5,33.5 parent: 2 - - uid: 11673 + - uid: 8399 + components: + - type: Transform + pos: 89.5,37.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: 90.5,38.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: 73.5,27.5 + parent: 2 + - uid: 8405 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-78.5 + pos: 69.5,27.5 + parent: 2 + - uid: 8482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,33.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: 58.5,25.5 + parent: 2 + - uid: 8652 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 8665 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 8668 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 8998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,173.5 + parent: 2 + - uid: 9072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,173.5 + parent: 2 + - uid: 9711 + components: + - type: Transform + pos: -66.5,113.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + pos: -19.5,80.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + pos: -18.5,80.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + pos: -17.5,80.5 + parent: 2 + - uid: 10647 + components: + - type: Transform + pos: -5.5,83.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + pos: -8.5,163.5 + parent: 2 + - uid: 10733 + components: + - type: Transform + pos: -4.5,80.5 + parent: 2 + - uid: 10747 + components: + - type: Transform + pos: -13.5,166.5 + parent: 2 + - uid: 10749 + components: + - type: Transform + pos: -14.5,166.5 + parent: 2 + - uid: 10798 + components: + - type: Transform + pos: -4.5,76.5 + parent: 2 + - uid: 10799 + components: + - type: Transform + pos: -4.5,75.5 + parent: 2 + - uid: 10809 + components: + - type: Transform + pos: -32.5,178.5 + parent: 2 + - uid: 10836 + components: + - type: Transform + pos: 80.5,42.5 + parent: 2 + - uid: 10846 + components: + - type: Transform + pos: -32.5,178.5 + parent: 2 + - uid: 10864 + components: + - type: Transform + pos: -37.5,93.5 + parent: 2 + - uid: 10903 + components: + - type: Transform + pos: -9.5,89.5 + parent: 2 + - uid: 10926 + components: + - type: Transform + pos: -43.5,93.5 + parent: 2 + - uid: 11105 + components: + - type: Transform + pos: -68.5,69.5 + parent: 2 + - uid: 11174 + components: + - type: Transform + pos: -16.5,92.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + pos: -6.5,70.5 + parent: 2 + - uid: 11213 + components: + - type: Transform + pos: -64.5,115.5 + parent: 2 + - uid: 11239 + components: + - type: Transform + pos: -34.5,79.5 + parent: 2 + - uid: 11240 + components: + - type: Transform + pos: -34.5,75.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + pos: -34.5,87.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + pos: -34.5,83.5 + parent: 2 + - uid: 11331 + components: + - type: Transform + pos: 10.5,65.5 + parent: 2 + - uid: 11357 + components: + - type: Transform + pos: -46.5,87.5 + parent: 2 + - uid: 11358 + components: + - type: Transform + pos: -46.5,83.5 + parent: 2 + - uid: 11359 + components: + - type: Transform + pos: -46.5,79.5 + parent: 2 + - uid: 11360 + components: + - type: Transform + pos: -46.5,75.5 + parent: 2 + - uid: 11361 + components: + - type: Transform + pos: -42.5,70.5 + parent: 2 + - uid: 11362 + components: + - type: Transform + pos: -38.5,70.5 + parent: 2 + - uid: 11468 + components: + - type: Transform + pos: 10.5,66.5 + parent: 2 + - uid: 11492 + components: + - type: Transform + pos: 9.5,65.5 + parent: 2 + - uid: 11518 + components: + - type: Transform + pos: -31.5,56.5 + parent: 2 + - uid: 11531 + components: + - type: Transform + pos: -31.5,57.5 + parent: 2 + - uid: 11541 + components: + - type: Transform + pos: -39.5,86.5 + parent: 2 + - uid: 11542 + components: + - type: Transform + pos: -40.5,86.5 + parent: 2 + - uid: 11547 + components: + - type: Transform + pos: -42.5,84.5 + parent: 2 + - uid: 11548 + components: + - type: Transform + pos: -38.5,79.5 + parent: 2 + - uid: 11549 + components: + - type: Transform + pos: -38.5,78.5 + parent: 2 + - uid: 11552 + components: + - type: Transform + pos: -39.5,76.5 + parent: 2 + - uid: 11554 + components: + - type: Transform + pos: -41.5,86.5 + parent: 2 + - uid: 11556 + components: + - type: Transform + pos: -42.5,78.5 + parent: 2 + - uid: 11557 + components: + - type: Transform + pos: -41.5,76.5 + parent: 2 + - uid: 11561 + components: + - type: Transform + pos: -42.5,83.5 + parent: 2 + - uid: 11563 + components: + - type: Transform + pos: 1.5,185.5 + parent: 2 + - uid: 11578 + components: + - type: Transform + pos: -30.5,58.5 + parent: 2 + - uid: 11579 + components: + - type: Transform + pos: -30.5,57.5 + parent: 2 + - uid: 11611 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 11612 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 + - uid: 11613 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 + - uid: 11615 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 11617 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 11634 + components: + - type: Transform + pos: -57.5,59.5 + parent: 2 + - uid: 11635 + components: + - type: Transform + pos: -57.5,60.5 + parent: 2 + - uid: 11647 + components: + - type: Transform + pos: -56.5,60.5 + parent: 2 + - uid: 11683 + components: + - type: Transform + pos: -38.5,95.5 + parent: 2 + - uid: 11684 + components: + - type: Transform + pos: -38.5,94.5 + parent: 2 + - uid: 11685 + components: + - type: Transform + pos: -42.5,95.5 + parent: 2 + - uid: 11686 + components: + - type: Transform + pos: -42.5,94.5 + parent: 2 + - uid: 11761 + components: + - type: Transform + pos: -41.5,111.5 + parent: 2 + - uid: 11912 + components: + - type: Transform + pos: -58.5,59.5 + parent: 2 + - uid: 11972 + components: + - type: Transform + pos: -30.5,92.5 parent: 2 - uid: 11973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-85.5 + pos: -29.5,92.5 parent: 2 - - uid: 12170 + - uid: 11974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-77.5 + pos: -28.5,92.5 parent: 2 - - uid: 12173 + - uid: 11975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-76.5 + pos: -27.5,92.5 parent: 2 - - uid: 12174 + - uid: 12053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-77.5 + pos: -61.5,60.5 parent: 2 - - uid: 13516 + - uid: 12054 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-76.5 + pos: -60.5,59.5 parent: 2 - - uid: 13595 + - uid: 12055 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-90.5 + pos: -62.5,60.5 parent: 2 - - uid: 13679 + - uid: 12056 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-89.5 + pos: -61.5,59.5 parent: 2 - - uid: 15933 + - uid: 12057 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-76.5 + pos: -59.5,59.5 parent: 2 - - uid: 16264 + - uid: 12163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-76.5 + pos: -16.5,94.5 parent: 2 - - uid: 16472 + - uid: 12183 + components: + - type: Transform + pos: 1.5,184.5 + parent: 2 + - uid: 12185 + components: + - type: Transform + pos: 1.5,183.5 + parent: 2 + - uid: 12266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,17.5 + parent: 2 + - uid: 12267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,17.5 + parent: 2 + - uid: 12284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,17.5 + parent: 2 + - uid: 12286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,17.5 + parent: 2 + - uid: 12295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,17.5 + parent: 2 + - uid: 12333 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-84.5 + pos: 1.5,89.5 parent: 2 - - uid: 16473 + - uid: 12882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-85.5 + pos: 51.5,66.5 + parent: 2 + - uid: 12965 + components: + - type: Transform + pos: -45.5,110.5 + parent: 2 + - uid: 12981 + components: + - type: Transform + pos: -34.5,109.5 + parent: 2 + - uid: 13254 + components: + - type: Transform + pos: -35.5,110.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + pos: -5.5,70.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + pos: 0.5,59.5 + parent: 2 + - uid: 13326 + components: + - type: Transform + pos: -97.5,69.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + pos: -97.5,70.5 + parent: 2 + - uid: 13328 + components: + - type: Transform + pos: -96.5,70.5 + parent: 2 + - uid: 13420 + components: + - type: Transform + pos: -8.5,89.5 + parent: 2 + - uid: 13423 + components: + - type: Transform + pos: -7.5,89.5 + parent: 2 + - uid: 13481 + components: + - type: Transform + pos: -30.5,106.5 + parent: 2 + - uid: 13497 + components: + - type: Transform + pos: -29.5,106.5 + parent: 2 + - uid: 13498 + components: + - type: Transform + pos: -28.5,106.5 + parent: 2 + - uid: 13499 + components: + - type: Transform + pos: -27.5,106.5 + parent: 2 + - uid: 13500 + components: + - type: Transform + pos: -27.5,105.5 + parent: 2 + - uid: 13501 + components: + - type: Transform + pos: -26.5,105.5 + parent: 2 + - uid: 13503 + components: + - type: Transform + pos: -25.5,104.5 + parent: 2 + - uid: 13504 + components: + - type: Transform + pos: -25.5,103.5 + parent: 2 + - uid: 13505 + components: + - type: Transform + pos: -24.5,103.5 + parent: 2 + - uid: 13506 + components: + - type: Transform + pos: -24.5,102.5 + parent: 2 + - uid: 13704 + components: + - type: Transform + pos: -3.5,58.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + pos: -51.5,92.5 + parent: 2 + - uid: 13730 + components: + - type: Transform + pos: -50.5,92.5 + parent: 2 + - uid: 13763 + components: + - type: Transform + pos: -52.5,92.5 + parent: 2 + - uid: 13782 + components: + - type: Transform + pos: -63.5,115.5 + parent: 2 + - uid: 13791 + components: + - type: Transform + pos: -65.5,114.5 + parent: 2 + - uid: 14037 + components: + - type: Transform + pos: -66.5,114.5 + parent: 2 + - uid: 14163 + components: + - type: Transform + pos: -126.5,97.5 + parent: 2 + - uid: 14467 + components: + - type: Transform + pos: 77.5,37.5 + parent: 2 + - uid: 14501 + components: + - type: Transform + pos: 51.5,64.5 + parent: 2 + - uid: 14619 + components: + - type: Transform + pos: -76.5,76.5 + parent: 2 + - uid: 14620 + components: + - type: Transform + pos: -77.5,76.5 + parent: 2 + - uid: 14621 + components: + - type: Transform + pos: -74.5,76.5 + parent: 2 + - uid: 14622 + components: + - type: Transform + pos: -75.5,76.5 + parent: 2 + - uid: 14623 + components: + - type: Transform + pos: -73.5,76.5 + parent: 2 + - uid: 14898 + components: + - type: Transform + pos: -69.5,69.5 + parent: 2 + - uid: 14899 + components: + - type: Transform + pos: -92.5,142.5 + parent: 2 + - uid: 14900 + components: + - type: Transform + pos: -91.5,142.5 + parent: 2 + - uid: 14901 + components: + - type: Transform + pos: -89.5,142.5 + parent: 2 + - uid: 14902 + components: + - type: Transform + pos: -90.5,142.5 + parent: 2 + - uid: 14926 + components: + - type: Transform + pos: -134.5,27.5 + parent: 2 + - uid: 15267 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 13386 + - uid: 15339 + components: + - type: Transform + pos: 51.5,65.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + pos: -69.5,173.5 + parent: 2 + - uid: 15367 + components: + - type: Transform + pos: -70.5,69.5 + parent: 2 + - uid: 15381 + components: + - type: Transform + pos: -88.5,81.5 + parent: 2 + - uid: 15407 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 13386 + - uid: 15468 + components: + - type: Transform + pos: -53.5,92.5 + parent: 2 + - uid: 15486 + components: + - type: Transform + pos: 2.5,3.5 + parent: 13386 + - uid: 15488 + components: + - type: Transform + pos: 1.5,4.5 + parent: 13386 + - uid: 15489 + components: + - type: Transform + pos: 0.5,4.5 + parent: 13386 + - uid: 15500 + components: + - type: Transform + pos: -142.5,90.5 + parent: 2 + - uid: 15534 + components: + - type: Transform + pos: -0.5,4.5 + parent: 13386 + - uid: 15536 + components: + - type: Transform + pos: -140.5,104.5 + parent: 2 + - uid: 15549 + components: + - type: Transform + pos: -2.5,3.5 + parent: 13386 + - uid: 15598 + components: + - type: Transform + pos: -141.5,104.5 + parent: 2 + - uid: 15607 + components: + - type: Transform + pos: -2.5,4.5 + parent: 13386 + - uid: 15608 + components: + - type: Transform + pos: -2.5,5.5 + parent: 13386 + - uid: 15629 + components: + - type: Transform + pos: -2.5,6.5 + parent: 13386 + - uid: 15651 + components: + - type: Transform + pos: -1.5,6.5 + parent: 13386 + - uid: 15652 + components: + - type: Transform + pos: -0.5,6.5 + parent: 13386 + - uid: 15653 + components: + - type: Transform + pos: -0.5,5.5 + parent: 13386 + - uid: 15810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 13386 + - uid: 16263 + components: + - type: Transform + pos: -95.5,70.5 + parent: 2 + - uid: 16268 + components: + - type: Transform + pos: -95.5,71.5 + parent: 2 + - uid: 16269 + components: + - type: Transform + pos: -84.5,62.5 + parent: 2 + - uid: 16275 + components: + - type: Transform + pos: -85.5,62.5 + parent: 2 + - uid: 16276 + components: + - type: Transform + pos: -85.5,61.5 + parent: 2 + - uid: 16277 + components: + - type: Transform + pos: -86.5,61.5 + parent: 2 + - uid: 16278 + components: + - type: Transform + pos: -80.5,64.5 + parent: 2 + - uid: 16279 + components: + - type: Transform + pos: -90.5,59.5 + parent: 2 + - uid: 16280 + components: + - type: Transform + pos: -91.5,59.5 + parent: 2 + - uid: 16281 + components: + - type: Transform + pos: -91.5,58.5 + parent: 2 + - uid: 16282 + components: + - type: Transform + pos: -92.5,58.5 + parent: 2 + - uid: 16296 + components: + - type: Transform + pos: -79.5,64.5 + parent: 2 + - uid: 16297 + components: + - type: Transform + pos: -79.5,65.5 + parent: 2 + - uid: 16298 + components: + - type: Transform + pos: -78.5,65.5 + parent: 2 + - uid: 16317 + components: + - type: Transform + pos: -81.5,70.5 + parent: 2 + - uid: 16318 + components: + - type: Transform + pos: -80.5,69.5 + parent: 2 + - uid: 16322 + components: + - type: Transform + pos: -91.5,72.5 + parent: 2 + - uid: 16326 + components: + - type: Transform + pos: -91.5,73.5 + parent: 2 + - uid: 16327 + components: + - type: Transform + pos: -90.5,73.5 + parent: 2 + - uid: 16328 + components: + - type: Transform + pos: -89.5,73.5 + parent: 2 + - uid: 16352 + components: + - type: Transform + pos: -92.5,75.5 + parent: 2 + - uid: 16355 + components: + - type: Transform + pos: -96.5,74.5 + parent: 2 + - uid: 16356 + components: + - type: Transform + pos: -96.5,73.5 + parent: 2 + - uid: 16357 + components: + - type: Transform + pos: -97.5,73.5 + parent: 2 + - uid: 16358 + components: + - type: Transform + pos: -98.5,73.5 + parent: 2 + - uid: 16359 + components: + - type: Transform + pos: -98.5,72.5 + parent: 2 + - uid: 16364 + components: + - type: Transform + pos: -102.5,71.5 + parent: 2 + - uid: 16365 + components: + - type: Transform + pos: -102.5,70.5 + parent: 2 + - uid: 16366 + components: + - type: Transform + pos: -103.5,70.5 + parent: 2 + - uid: 16367 + components: + - type: Transform + pos: -104.5,70.5 + parent: 2 + - uid: 16368 + components: + - type: Transform + pos: -104.5,69.5 + parent: 2 + - uid: 16370 + components: + - type: Transform + pos: -91.5,76.5 + parent: 2 + - uid: 16373 + components: + - type: Transform + pos: -108.5,68.5 + parent: 2 + - uid: 16374 + components: + - type: Transform + pos: -108.5,67.5 + parent: 2 + - uid: 16375 + components: + - type: Transform + pos: -109.5,67.5 + parent: 2 + - uid: 16376 + components: + - type: Transform + pos: -110.5,67.5 + parent: 2 + - uid: 16394 + components: + - type: Transform + pos: -92.5,76.5 + parent: 2 + - uid: 16419 + components: + - type: Transform + pos: -85.5,58.5 + parent: 2 + - uid: 16420 + components: + - type: Transform + pos: -84.5,58.5 + parent: 2 + - uid: 16421 + components: + - type: Transform + pos: -84.5,59.5 + parent: 2 + - uid: 16422 + components: + - type: Transform + pos: -83.5,59.5 + parent: 2 + - uid: 16423 + components: + - type: Transform + pos: -79.5,61.5 + parent: 2 + - uid: 16424 + components: + - type: Transform + pos: -78.5,61.5 + parent: 2 + - uid: 16425 + components: + - type: Transform + pos: -78.5,62.5 + parent: 2 + - uid: 16426 + components: + - type: Transform + pos: -77.5,62.5 + parent: 2 + - uid: 16475 + components: + - type: Transform + pos: -46.5,109.5 + parent: 2 + - uid: 16476 + components: + - type: Transform + pos: -42.5,111.5 + parent: 2 + - uid: 16511 + components: + - type: Transform + pos: -83.5,66.5 + parent: 2 + - uid: 16512 + components: + - type: Transform + pos: -84.5,67.5 + parent: 2 + - uid: 16513 + components: + - type: Transform + pos: -84.5,68.5 + parent: 2 + - uid: 16514 + components: + - type: Transform + pos: -85.5,69.5 + parent: 2 + - uid: 16518 + components: + - type: Transform + pos: -87.5,73.5 + parent: 2 + - uid: 16519 + components: + - type: Transform + pos: -83.5,65.5 + parent: 2 + - uid: 16520 + components: + - type: Transform + pos: -82.5,64.5 + parent: 2 + - uid: 16521 + components: + - type: Transform + pos: -88.5,61.5 + parent: 2 + - uid: 16522 + components: + - type: Transform + pos: -89.5,62.5 + parent: 2 + - uid: 16523 + components: + - type: Transform + pos: -89.5,63.5 + parent: 2 + - uid: 16524 + components: + - type: Transform + pos: -90.5,64.5 + parent: 2 + - uid: 16525 + components: + - type: Transform + pos: -90.5,65.5 + parent: 2 + - uid: 16526 + components: + - type: Transform + pos: -91.5,66.5 + parent: 2 + - uid: 16527 + components: + - type: Transform + pos: -91.5,67.5 + parent: 2 + - uid: 16528 + components: + - type: Transform + pos: -92.5,68.5 + parent: 2 + - uid: 16529 + components: + - type: Transform + pos: -92.5,69.5 + parent: 2 + - uid: 16530 + components: + - type: Transform + pos: -93.5,70.5 + parent: 2 + - uid: 16531 + components: + - type: Transform + pos: -96.5,61.5 parent: 2 - uid: 16532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-86.5 + pos: -96.5,62.5 parent: 2 - - uid: 17364 + - uid: 16533 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-85.5 + pos: -95.5,60.5 parent: 2 - - uid: 17861 + - uid: 16534 components: - type: Transform - pos: 30.5,-87.5 + pos: -95.5,59.5 parent: 2 - - uid: 27158 + - uid: 16535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-84.5 + pos: -94.5,58.5 parent: 2 - - uid: 28585 + - uid: 16536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-88.5 - parent: 2 - - uid: 28600 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-88.5 - parent: 2 - - uid: 31308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-84.5 - parent: 2 -- proto: HeatExchangerBend - entities: - - uid: 7748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-86.5 - parent: 2 - - uid: 11162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-91.5 - parent: 2 - - uid: 11290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-78.5 - parent: 2 - - uid: 11330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-78.5 - parent: 2 - - uid: 11335 - components: - - type: Transform - pos: 25.5,-75.5 - parent: 2 - - uid: 11451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-78.5 - parent: 2 - - uid: 11693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-76.5 - parent: 2 - - uid: 12004 - components: - - type: Transform - pos: 27.5,-87.5 - parent: 2 - - uid: 12172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-78.5 - parent: 2 - - uid: 13488 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-87.5 - parent: 2 - - uid: 13738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-86.5 - parent: 2 - - uid: 14214 - components: - - type: Transform - pos: 26.5,-83.5 - parent: 2 - - uid: 15921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-75.5 - parent: 2 - - uid: 15922 - components: - - type: Transform - pos: 29.5,-75.5 - parent: 2 - - uid: 15923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-75.5 - parent: 2 - - uid: 16386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-75.5 + pos: -97.5,63.5 parent: 2 - uid: 16537 components: - type: Transform - pos: 30.5,-86.5 + pos: -97.5,64.5 parent: 2 - - uid: 16654 + - uid: 16538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-79.5 + pos: -98.5,65.5 parent: 2 - - uid: 16712 + - uid: 16539 components: - type: Transform - pos: 24.5,-78.5 + pos: -98.5,66.5 parent: 2 - - uid: 16867 + - uid: 16540 components: - type: Transform - pos: 27.5,-75.5 + pos: -99.5,67.5 parent: 2 - - uid: 16872 + - uid: 16691 + components: + - type: Transform + pos: -34.5,108.5 + parent: 2 + - uid: 16693 + components: + - type: Transform + pos: -35.5,109.5 + parent: 2 + - uid: 16695 + components: + - type: Transform + pos: -36.5,110.5 + parent: 2 + - uid: 16696 + components: + - type: Transform + pos: -37.5,110.5 + parent: 2 + - uid: 16697 + components: + - type: Transform + pos: -38.5,110.5 + parent: 2 + - uid: 16701 + components: + - type: Transform + pos: -42.5,110.5 + parent: 2 + - uid: 16702 + components: + - type: Transform + pos: -43.5,110.5 + parent: 2 + - uid: 16703 + components: + - type: Transform + pos: -44.5,110.5 + parent: 2 + - uid: 16705 + components: + - type: Transform + pos: -45.5,109.5 + parent: 2 + - uid: 16707 + components: + - type: Transform + pos: -46.5,108.5 + parent: 2 + - uid: 16964 + components: + - type: Transform + pos: -133.5,104.5 + parent: 2 + - uid: 16970 + components: + - type: Transform + pos: -134.5,104.5 + parent: 2 + - uid: 16980 + components: + - type: Transform + pos: -32.5,106.5 + parent: 2 + - uid: 17079 + components: + - type: Transform + pos: -144.5,90.5 + parent: 2 + - uid: 17116 + components: + - type: Transform + pos: -115.5,11.5 + parent: 2 + - uid: 17118 + components: + - type: Transform + pos: -132.5,104.5 + parent: 2 + - uid: 17301 + components: + - type: Transform + pos: -129.5,99.5 + parent: 2 + - uid: 17339 + components: + - type: Transform + pos: -76.5,187.5 + parent: 2 + - uid: 17362 + components: + - type: Transform + pos: -65.5,115.5 + parent: 2 + - uid: 17420 + components: + - type: Transform + pos: -81.5,187.5 + parent: 2 + - uid: 17567 + components: + - type: Transform + pos: -77.5,187.5 + parent: 2 + - uid: 17592 + components: + - type: Transform + pos: -16.5,61.5 + parent: 2 + - uid: 17649 + components: + - type: Transform + pos: -13.5,60.5 + parent: 2 + - uid: 17675 + components: + - type: Transform + pos: -14.5,60.5 + parent: 2 + - uid: 17676 + components: + - type: Transform + pos: -15.5,60.5 + parent: 2 + - uid: 17679 + components: + - type: Transform + pos: -17.5,60.5 + parent: 2 + - uid: 17681 + components: + - type: Transform + pos: -16.5,60.5 + parent: 2 + - uid: 17718 + components: + - type: Transform + pos: -120.5,67.5 + parent: 2 + - uid: 17728 + components: + - type: Transform + pos: -119.5,67.5 + parent: 2 + - uid: 17775 + components: + - type: Transform + pos: -126.5,96.5 + parent: 2 + - uid: 17829 + components: + - type: Transform + pos: -80.5,187.5 + parent: 2 + - uid: 17840 + components: + - type: Transform + pos: -110.5,90.5 + parent: 2 + - uid: 17843 + components: + - type: Transform + pos: -109.5,90.5 + parent: 2 + - uid: 17845 + components: + - type: Transform + pos: -106.5,90.5 + parent: 2 + - uid: 17847 + components: + - type: Transform + pos: -107.5,90.5 + parent: 2 + - uid: 17858 + components: + - type: Transform + pos: -104.5,90.5 + parent: 2 + - uid: 17863 + components: + - type: Transform + pos: -103.5,90.5 + parent: 2 + - uid: 17928 + components: + - type: Transform + pos: -92.5,158.5 + parent: 2 + - uid: 17982 + components: + - type: Transform + pos: -118.5,67.5 + parent: 2 + - uid: 18016 + components: + - type: Transform + pos: -126.5,98.5 + parent: 2 + - uid: 18026 + components: + - type: Transform + pos: -83.5,149.5 + parent: 2 + - uid: 18038 + components: + - type: Transform + pos: -132.5,28.5 + parent: 2 + - uid: 18063 + components: + - type: Transform + pos: -134.5,23.5 + parent: 2 + - uid: 18087 + components: + - type: Transform + pos: -79.5,149.5 + parent: 2 + - uid: 18107 + components: + - type: Transform + pos: -86.5,149.5 + parent: 2 + - uid: 18142 + components: + - type: Transform + pos: -6.5,187.5 + parent: 2 + - uid: 18150 + components: + - type: Transform + pos: -76.5,186.5 + parent: 2 + - uid: 18183 + components: + - type: Transform + pos: -75.5,185.5 + parent: 2 + - uid: 18198 + components: + - type: Transform + pos: -132.5,25.5 + parent: 2 + - uid: 18201 + components: + - type: Transform + pos: -51.5,155.5 + parent: 2 + - uid: 18203 + components: + - type: Transform + pos: -51.5,156.5 + parent: 2 + - uid: 18205 + components: + - type: Transform + pos: -51.5,154.5 + parent: 2 + - uid: 18252 + components: + - type: Transform + pos: -104.5,150.5 + parent: 2 + - uid: 18255 + components: + - type: Transform + pos: -107.5,150.5 + parent: 2 + - uid: 18259 + components: + - type: Transform + pos: -105.5,150.5 + parent: 2 + - uid: 18265 + components: + - type: Transform + pos: -132.5,24.5 + parent: 2 + - uid: 18283 + components: + - type: Transform + pos: -106.5,150.5 + parent: 2 + - uid: 18285 + components: + - type: Transform + pos: -132.5,26.5 + parent: 2 + - uid: 18298 + components: + - type: Transform + pos: -114.5,121.5 + parent: 2 + - uid: 18323 + components: + - type: Transform + pos: -83.5,185.5 + parent: 2 + - uid: 18345 + components: + - type: Transform + pos: -92.5,149.5 + parent: 2 + - uid: 18481 + components: + - type: Transform + pos: -83.5,184.5 + parent: 2 + - uid: 18515 + components: + - type: Transform + pos: -78.5,187.5 + parent: 2 + - uid: 18521 + components: + - type: Transform + pos: -82.5,186.5 + parent: 2 + - uid: 18522 + components: + - type: Transform + pos: -82.5,187.5 + parent: 2 + - uid: 18538 + components: + - type: Transform + pos: -75.5,184.5 + parent: 2 + - uid: 18604 + components: + - type: Transform + pos: -132.5,27.5 + parent: 2 + - uid: 18664 + components: + - type: Transform + pos: -8.5,187.5 + parent: 2 + - uid: 18675 + components: + - type: Transform + pos: -7.5,187.5 + parent: 2 + - uid: 18694 + components: + - type: Transform + pos: -102.5,101.5 + parent: 2 + - uid: 18741 + components: + - type: Transform + pos: -52.5,150.5 + parent: 2 + - uid: 18746 + components: + - type: Transform + pos: -51.5,150.5 + parent: 2 + - uid: 18802 + components: + - type: Transform + pos: -101.5,101.5 + parent: 2 + - uid: 18834 + components: + - type: Transform + pos: -134.5,25.5 + parent: 2 + - uid: 18839 + components: + - type: Transform + pos: -134.5,24.5 + parent: 2 + - uid: 18841 + components: + - type: Transform + pos: -134.5,26.5 + parent: 2 + - uid: 18851 + components: + - type: Transform + pos: -134.5,29.5 + parent: 2 + - uid: 18900 + components: + - type: Transform + pos: -134.5,28.5 + parent: 2 + - uid: 19040 + components: + - type: Transform + pos: -88.5,84.5 + parent: 2 + - uid: 19136 + components: + - type: Transform + pos: -22.5,200.5 + parent: 2 + - uid: 19307 + components: + - type: Transform + pos: -25.5,60.5 + parent: 2 + - uid: 19316 + components: + - type: Transform + pos: -6.5,177.5 + parent: 2 + - uid: 19330 + components: + - type: Transform + pos: -6.5,178.5 + parent: 2 + - uid: 19331 + components: + - type: Transform + pos: -6.5,179.5 + parent: 2 + - uid: 19332 + components: + - type: Transform + pos: -6.5,180.5 + parent: 2 + - uid: 19334 + components: + - type: Transform + pos: -6.5,181.5 + parent: 2 + - uid: 19434 + components: + - type: Transform + pos: -74.5,153.5 + parent: 2 + - uid: 19439 + components: + - type: Transform + pos: -74.5,154.5 + parent: 2 + - uid: 19722 + components: + - type: Transform + pos: -89.5,154.5 + parent: 2 + - uid: 19745 + components: + - type: Transform + pos: -92.5,159.5 + parent: 2 + - uid: 19746 + components: + - type: Transform + pos: -87.5,161.5 + parent: 2 + - uid: 19751 + components: + - type: Transform + pos: -85.5,161.5 + parent: 2 + - uid: 19759 + components: + - type: Transform + pos: -84.5,161.5 + parent: 2 + - uid: 19761 + components: + - type: Transform + pos: -86.5,161.5 + parent: 2 + - uid: 19768 + components: + - type: Transform + pos: -88.5,161.5 + parent: 2 + - uid: 19770 + components: + - type: Transform + pos: -89.5,161.5 + parent: 2 + - uid: 19775 + components: + - type: Transform + pos: -90.5,157.5 + parent: 2 + - uid: 19776 + components: + - type: Transform + pos: -89.5,156.5 + parent: 2 + - uid: 19923 + components: + - type: Transform + pos: -92.5,160.5 + parent: 2 + - uid: 19950 + components: + - type: Transform + pos: -89.5,157.5 + parent: 2 + - uid: 20093 + components: + - type: Transform + pos: -83.5,186.5 + parent: 2 + - uid: 20103 + components: + - type: Transform + pos: -75.5,186.5 + parent: 2 + - uid: 20233 + components: + - type: Transform + pos: -109.5,133.5 + parent: 2 + - uid: 20235 + components: + - type: Transform + pos: -109.5,132.5 + parent: 2 + - uid: 20236 + components: + - type: Transform + pos: -110.5,131.5 + parent: 2 + - uid: 20237 + components: + - type: Transform + pos: -110.5,130.5 + parent: 2 + - uid: 20238 + components: + - type: Transform + pos: -110.5,129.5 + parent: 2 + - uid: 20239 + components: + - type: Transform + pos: -111.5,128.5 + parent: 2 + - uid: 20240 + components: + - type: Transform + pos: -111.5,127.5 + parent: 2 + - uid: 20241 + components: + - type: Transform + pos: -112.5,126.5 + parent: 2 + - uid: 20242 + components: + - type: Transform + pos: -112.5,125.5 + parent: 2 + - uid: 20243 + components: + - type: Transform + pos: -113.5,124.5 + parent: 2 + - uid: 20244 + components: + - type: Transform + pos: -113.5,123.5 + parent: 2 + - uid: 20245 + components: + - type: Transform + pos: -113.5,122.5 + parent: 2 + - uid: 20246 + components: + - type: Transform + pos: -114.5,120.5 + parent: 2 + - uid: 20247 + components: + - type: Transform + pos: -114.5,119.5 + parent: 2 + - uid: 20248 + components: + - type: Transform + pos: -115.5,118.5 + parent: 2 + - uid: 20249 + components: + - type: Transform + pos: -115.5,117.5 + parent: 2 + - uid: 20250 + components: + - type: Transform + pos: -115.5,116.5 + parent: 2 + - uid: 20251 + components: + - type: Transform + pos: -116.5,115.5 + parent: 2 + - uid: 20252 + components: + - type: Transform + pos: -116.5,114.5 + parent: 2 + - uid: 20253 + components: + - type: Transform + pos: -116.5,113.5 + parent: 2 + - uid: 20254 + components: + - type: Transform + pos: -117.5,112.5 + parent: 2 + - uid: 20255 + components: + - type: Transform + pos: -117.5,111.5 + parent: 2 + - uid: 20256 + components: + - type: Transform + pos: -114.5,111.5 + parent: 2 + - uid: 20257 + components: + - type: Transform + pos: -114.5,112.5 + parent: 2 + - uid: 20258 + components: + - type: Transform + pos: -114.5,113.5 + parent: 2 + - uid: 20259 + components: + - type: Transform + pos: -113.5,114.5 + parent: 2 + - uid: 20260 + components: + - type: Transform + pos: -113.5,115.5 + parent: 2 + - uid: 20261 + components: + - type: Transform + pos: -113.5,116.5 + parent: 2 + - uid: 20262 + components: + - type: Transform + pos: -112.5,117.5 + parent: 2 + - uid: 20263 + components: + - type: Transform + pos: -112.5,118.5 + parent: 2 + - uid: 20264 + components: + - type: Transform + pos: -112.5,119.5 + parent: 2 + - uid: 20265 + components: + - type: Transform + pos: -111.5,120.5 + parent: 2 + - uid: 20266 + components: + - type: Transform + pos: -111.5,121.5 + parent: 2 + - uid: 20267 + components: + - type: Transform + pos: -111.5,122.5 + parent: 2 + - uid: 20268 + components: + - type: Transform + pos: -110.5,123.5 + parent: 2 + - uid: 20269 + components: + - type: Transform + pos: -110.5,124.5 + parent: 2 + - uid: 20270 + components: + - type: Transform + pos: -109.5,126.5 + parent: 2 + - uid: 20271 + components: + - type: Transform + pos: -109.5,125.5 + parent: 2 + - uid: 20272 + components: + - type: Transform + pos: -108.5,127.5 + parent: 2 + - uid: 20273 + components: + - type: Transform + pos: -108.5,128.5 + parent: 2 + - uid: 20274 + components: + - type: Transform + pos: -106.5,132.5 + parent: 2 + - uid: 20275 + components: + - type: Transform + pos: -108.5,129.5 + parent: 2 + - uid: 20276 + components: + - type: Transform + pos: -107.5,130.5 + parent: 2 + - uid: 20277 + components: + - type: Transform + pos: -107.5,131.5 + parent: 2 + - uid: 20279 + components: + - type: Transform + pos: -105.5,133.5 + parent: 2 + - uid: 20280 + components: + - type: Transform + pos: -105.5,134.5 + parent: 2 + - uid: 20281 + components: + - type: Transform + pos: -104.5,135.5 + parent: 2 + - uid: 20282 + components: + - type: Transform + pos: -108.5,134.5 + parent: 2 + - uid: 20400 + components: + - type: Transform + pos: -97.5,173.5 + parent: 2 + - uid: 20401 + components: + - type: Transform + pos: -96.5,173.5 + parent: 2 + - uid: 20402 + components: + - type: Transform + pos: -95.5,173.5 + parent: 2 + - uid: 20403 + components: + - type: Transform + pos: -97.5,177.5 + parent: 2 + - uid: 20404 + components: + - type: Transform + pos: -96.5,177.5 + parent: 2 + - uid: 20405 + components: + - type: Transform + pos: -95.5,177.5 + parent: 2 + - uid: 20407 + components: + - type: Transform + pos: -98.5,171.5 + parent: 2 + - uid: 20412 + components: + - type: Transform + pos: -99.5,169.5 + parent: 2 + - uid: 20413 + components: + - type: Transform + pos: -99.5,170.5 + parent: 2 + - uid: 20438 + components: + - type: Transform + pos: -91.5,181.5 + parent: 2 + - uid: 20439 + components: + - type: Transform + pos: -91.5,180.5 + parent: 2 + - uid: 20440 + components: + - type: Transform + pos: -97.5,171.5 + parent: 2 + - uid: 20441 + components: + - type: Transform + pos: -96.5,171.5 + parent: 2 + - uid: 20442 + components: + - type: Transform + pos: -95.5,171.5 + parent: 2 + - uid: 20447 + components: + - type: Transform + pos: -98.5,170.5 + parent: 2 + - uid: 20449 + components: + - type: Transform + pos: -91.5,175.5 + parent: 2 + - uid: 20456 + components: + - type: Transform + pos: -99.5,168.5 + parent: 2 + - uid: 20457 + components: + - type: Transform + pos: -99.5,167.5 + parent: 2 + - uid: 20466 + components: + - type: Transform + pos: -81.5,69.5 + parent: 2 + - uid: 20484 + components: + - type: Transform + pos: -138.5,49.5 + parent: 2 + - uid: 20485 + components: + - type: Transform + pos: -67.5,181.5 + parent: 2 + - uid: 20521 + components: + - type: Transform + pos: -85.5,183.5 + parent: 2 + - uid: 20522 + components: + - type: Transform + pos: -86.5,183.5 + parent: 2 + - uid: 20523 + components: + - type: Transform + pos: -87.5,183.5 + parent: 2 + - uid: 20524 + components: + - type: Transform + pos: -88.5,183.5 + parent: 2 + - uid: 20525 + components: + - type: Transform + pos: -89.5,183.5 + parent: 2 + - uid: 20526 + components: + - type: Transform + pos: -89.5,182.5 + parent: 2 + - uid: 20527 + components: + - type: Transform + pos: -90.5,182.5 + parent: 2 + - uid: 20528 + components: + - type: Transform + pos: -90.5,181.5 + parent: 2 + - uid: 20564 + components: + - type: Transform + pos: -72.5,183.5 + parent: 2 + - uid: 20565 + components: + - type: Transform + pos: -71.5,183.5 + parent: 2 + - uid: 20566 + components: + - type: Transform + pos: -70.5,183.5 + parent: 2 + - uid: 20567 + components: + - type: Transform + pos: -73.5,183.5 + parent: 2 + - uid: 20568 + components: + - type: Transform + pos: -68.5,181.5 + parent: 2 + - uid: 20569 + components: + - type: Transform + pos: -69.5,182.5 + parent: 2 + - uid: 20570 + components: + - type: Transform + pos: -68.5,182.5 + parent: 2 + - uid: 20571 + components: + - type: Transform + pos: -69.5,183.5 + parent: 2 + - uid: 20577 + components: + - type: Transform + pos: -67.5,155.5 + parent: 2 + - uid: 20608 + components: + - type: Transform + pos: -67.5,180.5 + parent: 2 + - uid: 20612 + components: + - type: Transform + pos: -62.5,175.5 + parent: 2 + - uid: 20616 + components: + - type: Transform + pos: -58.5,175.5 + parent: 2 + - uid: 20617 + components: + - type: Transform + pos: -59.5,175.5 + parent: 2 + - uid: 20639 + components: + - type: Transform + pos: -58.5,156.5 + parent: 2 + - uid: 20640 + components: + - type: Transform + pos: -58.5,158.5 + parent: 2 + - uid: 20641 + components: + - type: Transform + pos: -58.5,157.5 + parent: 2 + - uid: 20686 + components: + - type: Transform + pos: -67.5,159.5 + parent: 2 + - uid: 20698 + components: + - type: Transform + pos: -62.5,150.5 + parent: 2 + - uid: 20789 + components: + - type: Transform + pos: -104.5,146.5 + parent: 2 + - uid: 20790 + components: + - type: Transform + pos: -105.5,146.5 + parent: 2 + - uid: 20842 + components: + - type: Transform + pos: -61.5,150.5 + parent: 2 + - uid: 20846 + components: + - type: Transform + pos: -63.5,150.5 + parent: 2 + - uid: 20861 + components: + - type: Transform + pos: -60.5,175.5 + parent: 2 + - uid: 21117 + components: + - type: Transform + pos: -56.5,182.5 + parent: 2 + - uid: 21118 + components: + - type: Transform + pos: -55.5,182.5 + parent: 2 + - uid: 21119 + components: + - type: Transform + pos: -54.5,182.5 + parent: 2 + - uid: 21120 + components: + - type: Transform + pos: -53.5,182.5 + parent: 2 + - uid: 21121 + components: + - type: Transform + pos: -52.5,182.5 + parent: 2 + - uid: 21122 + components: + - type: Transform + pos: -51.5,183.5 + parent: 2 + - uid: 21123 + components: + - type: Transform + pos: -50.5,183.5 + parent: 2 + - uid: 21124 + components: + - type: Transform + pos: -49.5,183.5 + parent: 2 + - uid: 21125 + components: + - type: Transform + pos: -48.5,183.5 + parent: 2 + - uid: 21126 + components: + - type: Transform + pos: -47.5,184.5 + parent: 2 + - uid: 21127 + components: + - type: Transform + pos: -46.5,184.5 + parent: 2 + - uid: 21128 + components: + - type: Transform + pos: -45.5,184.5 + parent: 2 + - uid: 21129 + components: + - type: Transform + pos: -44.5,184.5 + parent: 2 + - uid: 21130 + components: + - type: Transform + pos: -43.5,184.5 + parent: 2 + - uid: 21131 + components: + - type: Transform + pos: -43.5,181.5 + parent: 2 + - uid: 21132 + components: + - type: Transform + pos: -44.5,181.5 + parent: 2 + - uid: 21133 + components: + - type: Transform + pos: -45.5,181.5 + parent: 2 + - uid: 21134 + components: + - type: Transform + pos: -46.5,181.5 + parent: 2 + - uid: 21135 + components: + - type: Transform + pos: -47.5,181.5 + parent: 2 + - uid: 21136 + components: + - type: Transform + pos: -48.5,181.5 + parent: 2 + - uid: 21137 + components: + - type: Transform + pos: -49.5,180.5 + parent: 2 + - uid: 21138 + components: + - type: Transform + pos: -50.5,180.5 + parent: 2 + - uid: 21139 + components: + - type: Transform + pos: -51.5,180.5 + parent: 2 + - uid: 21140 + components: + - type: Transform + pos: -52.5,179.5 + parent: 2 + - uid: 21141 + components: + - type: Transform + pos: -53.5,179.5 + parent: 2 + - uid: 21142 + components: + - type: Transform + pos: -54.5,179.5 + parent: 2 + - uid: 21143 + components: + - type: Transform + pos: -55.5,179.5 + parent: 2 + - uid: 21144 + components: + - type: Transform + pos: -56.5,179.5 + parent: 2 + - uid: 21175 + components: + - type: Transform + pos: -57.5,181.5 + parent: 2 + - uid: 21176 + components: + - type: Transform + pos: -58.5,181.5 + parent: 2 + - uid: 21415 + components: + - type: Transform + pos: -133.5,78.5 + parent: 2 + - uid: 21861 + components: + - type: Transform + pos: -132.5,77.5 + parent: 2 + - uid: 22070 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-79.5 - parent: 2 - - uid: 17200 + pos: 4.5,4.5 + parent: 21114 + - uid: 22071 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-85.5 - parent: 2 - - uid: 17242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-85.5 - parent: 2 - - uid: 17365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-89.5 - parent: 2 - - uid: 17368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-86.5 - parent: 2 - - uid: 17664 + pos: 1.5,4.5 + parent: 21114 + - uid: 22072 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-89.5 - parent: 2 - - uid: 17665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-88.5 - parent: 2 - - uid: 17862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-89.5 - parent: 2 - - uid: 18103 - components: - - type: Transform - pos: 29.5,-88.5 - parent: 2 - - uid: 31306 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-84.5 - parent: 2 - - uid: 31307 - components: - - type: Transform - pos: 30.5,-84.5 - parent: 2 - - uid: 31309 + pos: 3.5,5.5 + parent: 21114 + - uid: 22073 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-89.5 - parent: 2 -- proto: Hemostat - entities: - - uid: 19505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.42377,-77.655174 - parent: 2 - - uid: 19506 - components: - - type: Transform - pos: -52.5,7.5 - parent: 2 -- proto: HighSecArmoryLocked - entities: - - uid: 4459 - components: - - type: Transform - pos: 2.5,38.5 - parent: 2 - - uid: 9801 - components: - - type: Transform - pos: 0.5,41.5 - parent: 2 - - uid: 25870 - components: - - type: Transform - pos: 0.5,34.5 - parent: 2 -- proto: HighSecCaptainLocked - entities: - - uid: 20303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-20.5 - parent: 2 - - uid: 21903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-28.5 - parent: 2 - - uid: 21905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-26.5 - parent: 2 -- proto: HighSecCommandLocked - entities: - - uid: 19526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-36.5 - parent: 2 -- proto: HolofanProjector - entities: - - uid: 19528 - components: - - type: Transform - pos: -20.405937,-40.342514 - parent: 2 -- proto: HolopadCargoBay - entities: - - uid: 25697 - components: - - type: Transform - pos: -39.5,-30.5 - parent: 2 -- proto: HolopadCargoFront - entities: - - uid: 25696 - components: - - type: Transform - pos: -26.5,-25.5 - parent: 2 -- proto: HolopadCargoMailroom - entities: - - uid: 13457 - components: - - type: Transform - pos: -22.5,-17.5 - parent: 2 - - uid: 32130 - components: - - type: Transform - pos: -19.5,-17.5 - parent: 2 -- proto: HolopadCommandBridge - entities: - - uid: 25682 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 2 -- proto: HolopadCommandCaptain - entities: - - uid: 10830 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 2 -- proto: HolopadCommandCe - entities: - - uid: 25693 - components: - - type: Transform - pos: 8.5,-67.5 - parent: 2 -- proto: HolopadCommandCmo - entities: - - uid: 25694 - components: - - type: Transform - pos: 36.5,-39.5 - parent: 2 -- proto: HolopadCommandHop - entities: - - uid: 25710 - components: - - type: Transform - pos: -9.5,-22.5 - parent: 2 -- proto: HolopadCommandHos - entities: - - uid: 25731 - components: - - type: Transform - pos: 15.5,40.5 - parent: 2 -- proto: HolopadCommandMeetingRoom - entities: - - uid: 1241 + pos: 2.5,5.5 + parent: 21114 + - uid: 22115 components: - type: Transform - pos: 0.5,-13.5 + pos: -74.5,152.5 parent: 2 - - uid: 26241 + - uid: 22215 components: - type: Transform - pos: -0.5,-13.5 + pos: -134.5,73.5 parent: 2 - - uid: 26374 + - uid: 22216 components: - type: Transform - pos: -1.5,-13.5 + pos: -128.5,68.5 parent: 2 -- proto: HolopadCommandQm - entities: - - uid: 14381 + - uid: 22217 components: - type: Transform - pos: -31.5,-29.5 + pos: -128.5,69.5 parent: 2 -- proto: HolopadCommandRd - entities: - - uid: 25724 + - uid: 22218 components: - type: Transform - pos: 60.5,-36.5 + pos: -129.5,65.5 parent: 2 - - uid: 25726 + - uid: 22219 components: - type: Transform - pos: 60.5,-30.5 + pos: -129.5,70.5 parent: 2 -- proto: HolopadEngineeringAME - entities: - - uid: 14383 + - uid: 22220 components: - type: Transform - pos: -9.5,-64.5 + pos: -130.5,71.5 parent: 2 -- proto: HolopadEngineeringAtmosFront - entities: - - uid: 25671 + - uid: 22221 components: - type: Transform - pos: 7.5,-47.5 + pos: -130.5,73.5 parent: 2 -- proto: HolopadEngineeringAtmosMain - entities: - - uid: 25672 + - uid: 22226 components: - type: Transform - pos: 16.5,-56.5 + pos: -132.5,76.5 parent: 2 -- proto: HolopadEngineeringAtmosTeg - entities: - - uid: 7472 + - uid: 22228 components: - type: Transform - pos: 22.5,-77.5 + pos: -133.5,79.5 parent: 2 -- proto: HolopadEngineeringFront - entities: - - uid: 25709 + - uid: 22231 components: - type: Transform - pos: 6.5,-53.5 + pos: -129.5,66.5 parent: 2 -- proto: HolopadEngineeringStorage - entities: - - uid: 25708 + - uid: 22232 components: - type: Transform - pos: 4.5,-61.5 + pos: -131.5,67.5 parent: 2 -- proto: HolopadEngineeringTelecoms - entities: - - uid: 25736 + - uid: 22233 components: - type: Transform - pos: -13.5,-53.5 + pos: -131.5,68.5 parent: 2 -- proto: HolopadGeneralArrivals - entities: - - uid: 25641 + - uid: 22234 components: - type: Transform - pos: -59.5,-3.5 + pos: -132.5,69.5 parent: 2 -- proto: HolopadGeneralCryosleep - entities: - - uid: 15301 + - uid: 22235 components: - type: Transform - pos: 19.5,14.5 + pos: -133.5,70.5 parent: 2 -- proto: HolopadGeneralEvac - entities: - - uid: 25706 + - uid: 22236 components: - type: Transform - pos: 85.5,-10.5 + pos: -133.5,71.5 parent: 2 -- proto: HolopadGeneralEVAStorage - entities: - - uid: 25707 + - uid: 22241 components: - type: Transform - pos: -21.5,4.5 + pos: -131.5,74.5 parent: 2 -- proto: HolopadGeneralTheater - entities: - - uid: 14385 + - uid: 22243 components: - type: Transform - pos: 33.5,12.5 + pos: -135.5,76.5 parent: 2 -- proto: HolopadGeneralTools - entities: - - uid: 14386 + - uid: 22244 components: - type: Transform - pos: -41.5,3.5 + pos: -136.5,77.5 parent: 2 -- proto: HolopadMedicalBreakroom - entities: - - uid: 25717 + - uid: 22248 components: - type: Transform - pos: 45.5,-33.5 + pos: -136.5,78.5 parent: 2 -- proto: HolopadMedicalChemistry - entities: - - uid: 25699 + - uid: 22249 components: - type: Transform - pos: 20.5,-22.5 + pos: -132.5,75.5 parent: 2 -- proto: HolopadMedicalCryopods - entities: - - uid: 25703 + - uid: 22250 components: - type: Transform - pos: 31.5,-34.5 + pos: -136.5,79.5 parent: 2 -- proto: HolopadMedicalFront - entities: - - uid: 25718 + - uid: 22278 components: - type: Transform - pos: 29.5,-17.5 + pos: -133.5,72.5 parent: 2 -- proto: HolopadMedicalMedbay - entities: - - uid: 25719 + - uid: 22281 components: - type: Transform - pos: 31.5,-28.5 + pos: -130.5,72.5 parent: 2 -- proto: HolopadMedicalMorgue - entities: - - uid: 25720 + - uid: 22282 components: - type: Transform - pos: 42.5,-18.5 + pos: -131.5,75.5 parent: 2 -- proto: HolopadMedicalSurgery - entities: - - uid: 25735 + - uid: 22297 components: - type: Transform - pos: 20.5,-35.5 + pos: -130.5,66.5 parent: 2 -- proto: HolopadMedicalVirology - entities: - - uid: 25739 + - uid: 22298 components: - type: Transform - pos: 45.5,-56.5 + pos: -130.5,65.5 parent: 2 -- proto: HolopadScienceAnomaly - entities: - - uid: 25637 + - uid: 22300 components: - type: Transform - pos: 76.5,-53.5 + pos: -127.5,67.5 parent: 2 -- proto: HolopadScienceArtifact - entities: - - uid: 14384 + - uid: 22310 components: - type: Transform - pos: 72.5,-41.5 + pos: -42.5,185.5 parent: 2 -- proto: HolopadScienceBreakroom - entities: - - uid: 25732 + - uid: 22311 components: - type: Transform - pos: 54.5,-35.5 + pos: -41.5,185.5 parent: 2 -- proto: HolopadScienceFront - entities: - - uid: 25733 + - uid: 22312 components: - type: Transform - pos: 64.5,-16.5 + pos: -40.5,185.5 parent: 2 -- proto: HolopadScienceRnd - entities: - - uid: 25725 + - uid: 22313 components: - type: Transform - pos: 73.5,-20.5 + pos: -39.5,185.5 parent: 2 -- proto: HolopadScienceRobotics - entities: - - uid: 25711 + - uid: 22320 components: - type: Transform - pos: 55.5,-22.5 + pos: -42.5,182.5 parent: 2 -- proto: HolopadSecurityArmory - entities: - - uid: 25740 + - uid: 22321 components: - type: Transform - pos: 0.5,37.5 + pos: -41.5,182.5 parent: 2 -- proto: HolopadSecurityBrig - entities: - - uid: 25691 + - uid: 22322 components: - type: Transform - pos: -0.5,27.5 + pos: -40.5,182.5 parent: 2 -- proto: HolopadSecurityBrigMed - entities: - - uid: 25692 + - uid: 22323 components: - type: Transform - pos: -14.5,31.5 + pos: -39.5,182.5 parent: 2 -- proto: HolopadSecurityCourtroom - entities: - - uid: 25702 + - uid: 22324 components: - type: Transform - pos: -10.5,4.5 + pos: -38.5,182.5 parent: 2 -- proto: HolopadSecurityDetective - entities: - - uid: 25705 + - uid: 22325 components: - type: Transform - pos: 13.5,22.5 + pos: -37.5,182.5 parent: 2 -- proto: HolopadSecurityFront - entities: - - uid: 25734 + - uid: 22390 components: - type: Transform - pos: 3.5,21.5 + pos: -1.5,197.5 parent: 2 -- proto: HolopadSecurityInterrogation - entities: - - uid: 25712 + - uid: 22674 components: - type: Transform - pos: -5.5,31.5 + pos: -126.5,66.5 parent: 2 - - uid: 31733 + - uid: 22750 components: - type: Transform - pos: -5.5,30.5 + pos: -16.5,190.5 parent: 2 - - uid: 31735 + - uid: 22754 components: - type: Transform - pos: -5.5,35.5 + pos: -14.5,190.5 parent: 2 -- proto: HolopadSecurityLawyer - entities: - - uid: 25715 + - uid: 22767 components: - type: Transform - pos: -5.5,15.5 + pos: -10.5,171.5 parent: 2 -- proto: HolopadSecurityPerma - entities: - - uid: 25723 + - uid: 22818 components: - type: Transform - pos: -13.5,48.5 + pos: -18.5,190.5 parent: 2 -- proto: HolopadSecurityWarden - entities: - - uid: 25638 + - uid: 22819 components: - type: Transform - pos: 0.5,31.5 + pos: -20.5,190.5 parent: 2 -- proto: HolopadServiceBar - entities: - - uid: 25676 + - uid: 22965 components: - type: Transform - pos: 24.5,-0.5 + pos: 0.5,195.5 parent: 2 -- proto: HolopadServiceBotany - entities: - - uid: 25675 + - uid: 22966 components: - type: Transform - pos: 46.5,-4.5 + pos: 1.5,195.5 parent: 2 -- proto: HolopadServiceChapel - entities: - - uid: 25698 + - uid: 23039 components: - type: Transform - pos: 65.5,0.5 + pos: 1.5,59.5 parent: 2 -- proto: HolopadServiceClown - entities: - - uid: 25700 + - uid: 23133 components: - type: Transform - pos: 30.5,21.5 + pos: -2.5,168.5 parent: 2 -- proto: HolopadServiceJanitor - entities: - - uid: 31749 + - uid: 23138 components: - type: Transform - pos: -37.5,-6.5 + pos: -22.5,210.5 parent: 2 -- proto: HolopadServiceKitchen - entities: - - uid: 25714 + - uid: 23139 components: - type: Transform - pos: 33.5,-6.5 + pos: -24.5,210.5 parent: 2 -- proto: HolopadServiceLibrary - entities: - - uid: 25716 + - uid: 23140 components: - type: Transform - pos: 57.5,-8.5 + pos: -23.5,210.5 parent: 2 -- proto: HolopadServiceMime - entities: - - uid: 25721 + - uid: 23201 components: - type: Transform - pos: 36.5,21.5 + pos: -99.5,61.5 parent: 2 -- proto: HolopadServiceNewsroom - entities: - - uid: 31373 + - uid: 23272 components: - type: Transform - pos: 24.5,17.5 + pos: -16.5,202.5 parent: 2 -- proto: HolopadServiceZookeeper - entities: - - uid: 25741 + - uid: 23273 components: - type: Transform - pos: -23.5,-11.5 + pos: -17.5,202.5 parent: 2 -- proto: HospitalCurtainsOpen - entities: - - uid: 19530 + - uid: 23274 components: - type: Transform - pos: 24.5,-32.5 + pos: -14.5,202.5 parent: 2 - - uid: 19531 + - uid: 23275 components: - type: Transform - pos: 10.5,-22.5 + pos: -15.5,202.5 parent: 2 - - uid: 19532 + - uid: 23376 components: - type: Transform - pos: 28.5,4.5 + pos: -14.5,72.5 parent: 2 - - uid: 19534 + - uid: 23380 components: - type: Transform - pos: 67.5,-3.5 + pos: -17.5,72.5 parent: 2 - - uid: 19535 + - uid: 23409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-4.5 + pos: -1.5,198.5 parent: 2 - - uid: 23447 + - uid: 23413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,13.5 + pos: -1.5,199.5 parent: 2 - - uid: 23560 + - uid: 23444 components: - type: Transform - pos: 9.5,-70.5 + pos: -11.5,214.5 parent: 2 -- proto: hydroponicsSoil - entities: - - uid: 4894 + - uid: 23453 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,53.5 + pos: -7.5,214.5 parent: 2 - - uid: 4895 + - uid: 23457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,53.5 + pos: -10.5,214.5 parent: 2 - - uid: 5133 + - uid: 23461 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,51.5 + pos: -5.5,214.5 parent: 2 - - uid: 5139 + - uid: 23463 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,51.5 + pos: -6.5,214.5 parent: 2 - - uid: 5431 + - uid: 23465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,51.5 + pos: -9.5,214.5 parent: 2 - - uid: 5453 + - uid: 23466 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,51.5 + pos: -4.5,214.5 parent: 2 - - uid: 5460 + - uid: 23471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,53.5 + pos: -8.5,214.5 parent: 2 - - uid: 5475 + - uid: 23475 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,53.5 + pos: -22.5,201.5 parent: 2 - - uid: 31102 + - uid: 23493 components: - type: Transform - pos: -32.5,-73.5 + pos: 5.5,211.5 parent: 2 - - uid: 31104 + - uid: 23494 components: - type: Transform - pos: -30.5,-73.5 + pos: 6.5,210.5 parent: 2 - - uid: 31106 + - uid: 23496 components: - type: Transform - pos: -32.5,-72.5 + pos: 6.5,211.5 parent: 2 - - uid: 31117 + - uid: 23562 components: - type: Transform - pos: -32.5,-74.5 + pos: 17.5,196.5 parent: 2 - - uid: 31123 + - uid: 23563 components: - type: Transform - pos: -30.5,-74.5 + pos: 18.5,196.5 parent: 2 - - uid: 31130 + - uid: 23566 components: - type: Transform - pos: -30.5,-72.5 + pos: 15.5,194.5 parent: 2 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 14450 + - uid: 23567 components: - type: Transform - pos: -11.469769,47.543076 + pos: 15.5,195.5 parent: 2 -- proto: HydroponicsToolSpade - entities: - - uid: 4268 + - uid: 23599 components: - type: Transform - pos: -11.40079,47.58995 + pos: 8.5,186.5 parent: 2 -- proto: hydroponicsTray - entities: - - uid: 13951 + - uid: 23628 components: - type: Transform - pos: -35.5,46.5 + pos: 18.5,189.5 parent: 2 - - uid: 19554 + - uid: 23648 components: - type: Transform - pos: 42.5,-8.5 + pos: 18.5,190.5 parent: 2 - - uid: 19555 + - uid: 23649 components: - type: Transform - pos: 42.5,-7.5 + pos: 18.5,188.5 parent: 2 - - uid: 19556 + - uid: 23650 components: - type: Transform - pos: 42.5,-4.5 + pos: 17.5,190.5 parent: 2 - - uid: 19557 + - uid: 23651 components: - type: Transform - pos: 42.5,-3.5 + pos: 16.5,190.5 parent: 2 - - uid: 19558 + - uid: 23698 components: - type: Transform - pos: 44.5,-2.5 + pos: -4.5,197.5 parent: 2 - - uid: 19559 + - uid: 23699 components: - type: Transform - pos: 46.5,-2.5 + pos: -4.5,198.5 parent: 2 - - uid: 19560 + - uid: 23700 components: - type: Transform - pos: 47.5,-2.5 + pos: -6.5,200.5 parent: 2 - - uid: 19561 + - uid: 23701 components: - type: Transform - pos: 45.5,-2.5 + pos: -7.5,200.5 parent: 2 - - uid: 19562 + - uid: 23702 components: - type: Transform - pos: 49.5,-3.5 + pos: -8.5,200.5 parent: 2 - - uid: 19563 + - uid: 23720 components: - type: Transform - pos: 49.5,-4.5 + pos: -4.5,168.5 parent: 2 - - uid: 19564 + - uid: 23723 components: - type: Transform - pos: 49.5,-5.5 + pos: 24.5,180.5 parent: 2 - - uid: 19565 + - uid: 23724 components: - type: Transform - pos: 49.5,-6.5 + pos: 24.5,178.5 parent: 2 - - uid: 19566 + - uid: 23725 components: - type: Transform - pos: 49.5,-7.5 + pos: 24.5,179.5 parent: 2 - - uid: 19567 + - uid: 23828 components: - type: Transform - pos: 49.5,-8.5 + pos: 11.5,204.5 parent: 2 - - uid: 19568 + - uid: 23829 components: - type: Transform - pos: 46.5,-9.5 + pos: 13.5,204.5 parent: 2 - - uid: 19569 + - uid: 23830 components: - type: Transform - pos: 45.5,-9.5 + pos: 12.5,204.5 parent: 2 - - uid: 19570 + - uid: 23831 components: - type: Transform - pos: 46.5,-0.5 + pos: 14.5,204.5 parent: 2 - uid: 23843 components: - type: Transform - pos: -38.5,44.5 + pos: 7.5,209.5 parent: 2 - - uid: 30281 + - uid: 23844 components: - type: Transform - pos: -37.5,46.5 + pos: 7.5,210.5 parent: 2 -- proto: IDComputerCircuitboard - entities: - - uid: 19571 + - uid: 23860 components: - type: Transform - pos: -13.487051,-35.479218 + pos: -89.5,149.5 parent: 2 -- proto: InflatableDoor - entities: - - uid: 854 + - uid: 24154 + components: + - type: Transform + pos: 11.5,170.5 + parent: 2 + - uid: 24285 + components: + - type: Transform + pos: -138.5,47.5 + parent: 2 + - uid: 24362 + components: + - type: Transform + pos: -48.5,180.5 + parent: 2 + - uid: 24793 + components: + - type: Transform + pos: 10.5,170.5 + parent: 2 + - uid: 24794 + components: + - type: Transform + pos: 13.5,170.5 + parent: 2 + - uid: 24795 + components: + - type: Transform + pos: 12.5,170.5 + parent: 2 + - uid: 24796 + components: + - type: Transform + pos: 14.5,170.5 + parent: 2 + - uid: 25052 + components: + - type: Transform + pos: 78.5,37.5 + parent: 2 + - uid: 25110 + components: + - type: Transform + pos: -88.5,149.5 + parent: 2 + - uid: 25208 + components: + - type: Transform + pos: -129.5,100.5 + parent: 2 + - uid: 25220 + components: + - type: Transform + pos: -115.5,90.5 + parent: 2 + - uid: 25221 + components: + - type: Transform + pos: -118.5,90.5 + parent: 2 + - uid: 25222 + components: + - type: Transform + pos: -116.5,90.5 + parent: 2 + - uid: 25223 + components: + - type: Transform + pos: -31.5,177.5 + parent: 2 + - uid: 25224 + components: + - type: Transform + pos: -117.5,90.5 + parent: 2 + - uid: 25327 + components: + - type: Transform + pos: -129.5,94.5 + parent: 2 + - uid: 25344 + components: + - type: Transform + pos: -114.5,101.5 + parent: 2 + - uid: 25427 + components: + - type: Transform + pos: 2.5,61.5 + parent: 2 + - uid: 25428 + components: + - type: Transform + pos: -5.5,58.5 + parent: 2 + - uid: 25718 + components: + - type: Transform + pos: -30.5,176.5 + parent: 2 + - uid: 25724 + components: + - type: Transform + pos: -31.5,176.5 + parent: 2 + - uid: 25820 + components: + - type: Transform + pos: -15.5,163.5 + parent: 2 + - uid: 25834 + components: + - type: Transform + pos: -116.5,101.5 + parent: 2 + - uid: 26012 + components: + - type: Transform + pos: -10.5,167.5 + parent: 2 + - uid: 26530 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,39.5 + pos: -89.5,88.5 + parent: 2 + - uid: 26531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,89.5 + parent: 2 + - uid: 26532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,90.5 + parent: 2 + - uid: 26585 + components: + - type: Transform + pos: -24.5,60.5 + parent: 2 + - uid: 26606 + components: + - type: Transform + pos: -15.5,61.5 + parent: 2 + - uid: 26610 + components: + - type: Transform + pos: -26.5,60.5 + parent: 2 + - uid: 26858 + components: + - type: Transform + pos: -115.5,101.5 + parent: 2 + - uid: 26868 + components: + - type: Transform + pos: -129.5,97.5 + parent: 2 + - uid: 26872 + components: + - type: Transform + pos: -129.5,95.5 + parent: 2 + - uid: 26938 + components: + - type: Transform + pos: -4.5,58.5 + parent: 2 + - uid: 27002 + components: + - type: Transform + pos: -26.5,104.5 + parent: 2 + - uid: 27099 + components: + - type: Transform + pos: -37.5,100.5 + parent: 2 + - uid: 27137 + components: + - type: Transform + pos: -116.5,52.5 + parent: 2 + - uid: 27138 + components: + - type: Transform + pos: -117.5,52.5 + parent: 2 + - uid: 27203 + components: + - type: Transform + pos: -72.5,13.5 + parent: 2 + - uid: 27204 + components: + - type: Transform + pos: -73.5,13.5 + parent: 2 + - uid: 27205 + components: + - type: Transform + pos: -74.5,14.5 + parent: 2 + - uid: 27206 + components: + - type: Transform + pos: -75.5,15.5 + parent: 2 + - uid: 27207 + components: + - type: Transform + pos: -76.5,15.5 + parent: 2 + - uid: 27208 + components: + - type: Transform + pos: -77.5,16.5 + parent: 2 + - uid: 27209 + components: + - type: Transform + pos: -78.5,17.5 + parent: 2 + - uid: 27210 + components: + - type: Transform + pos: -79.5,18.5 + parent: 2 + - uid: 27211 + components: + - type: Transform + pos: -80.5,18.5 + parent: 2 + - uid: 27212 + components: + - type: Transform + pos: -81.5,19.5 + parent: 2 + - uid: 27213 + components: + - type: Transform + pos: -82.5,20.5 + parent: 2 + - uid: 27214 + components: + - type: Transform + pos: -83.5,21.5 + parent: 2 + - uid: 27215 + components: + - type: Transform + pos: -84.5,22.5 + parent: 2 + - uid: 27216 + components: + - type: Transform + pos: -72.5,16.5 + parent: 2 + - uid: 27217 + components: + - type: Transform + pos: -73.5,17.5 + parent: 2 + - uid: 27218 + components: + - type: Transform + pos: -74.5,17.5 + parent: 2 + - uid: 27219 + components: + - type: Transform + pos: -75.5,18.5 + parent: 2 + - uid: 27220 + components: + - type: Transform + pos: -76.5,19.5 + parent: 2 + - uid: 27221 + components: + - type: Transform + pos: -77.5,20.5 + parent: 2 + - uid: 27222 + components: + - type: Transform + pos: -78.5,20.5 + parent: 2 + - uid: 27223 + components: + - type: Transform + pos: -79.5,21.5 + parent: 2 + - uid: 27224 + components: + - type: Transform + pos: -80.5,22.5 + parent: 2 + - uid: 27225 + components: + - type: Transform + pos: -81.5,23.5 + parent: 2 + - uid: 27226 + components: + - type: Transform + pos: -82.5,24.5 + parent: 2 + - uid: 27227 + components: + - type: Transform + pos: -83.5,25.5 + parent: 2 + - uid: 27309 + components: + - type: Transform + pos: 68.5,52.5 + parent: 2 + - uid: 27315 + components: + - type: Transform + pos: 68.5,53.5 + parent: 2 + - uid: 27337 + components: + - type: Transform + pos: 69.5,51.5 + parent: 2 + - uid: 27474 + components: + - type: Transform + pos: -75.5,44.5 + parent: 2 + - uid: 27481 + components: + - type: Transform + pos: -75.5,46.5 + parent: 2 + - uid: 27491 + components: + - type: Transform + pos: -75.5,45.5 + parent: 2 + - uid: 27526 + components: + - type: Transform + pos: -75.5,36.5 + parent: 2 + - uid: 27550 + components: + - type: Transform + pos: -93.5,38.5 + parent: 2 + - uid: 27552 + components: + - type: Transform + pos: -91.5,38.5 + parent: 2 + - uid: 27553 + components: + - type: Transform + pos: -92.5,38.5 + parent: 2 + - uid: 27562 + components: + - type: Transform + pos: -75.5,38.5 + parent: 2 + - uid: 27564 + components: + - type: Transform + pos: -75.5,37.5 + parent: 2 + - uid: 27587 + components: + - type: Transform + pos: -85.5,48.5 + parent: 2 + - uid: 27588 + components: + - type: Transform + pos: -84.5,48.5 + parent: 2 + - uid: 27589 + components: + - type: Transform + pos: -87.5,48.5 + parent: 2 + - uid: 27590 + components: + - type: Transform + pos: -88.5,48.5 + parent: 2 + - uid: 27591 + components: + - type: Transform + pos: -86.5,48.5 + parent: 2 + - uid: 27622 + components: + - type: Transform + pos: -90.5,37.5 + parent: 2 + - uid: 27623 + components: + - type: Transform + pos: -90.5,38.5 + parent: 2 + - uid: 27631 + components: + - type: Transform + pos: -14.5,163.5 + parent: 2 + - uid: 27636 + components: + - type: Transform + pos: -114.5,23.5 + parent: 2 + - uid: 27713 + components: + - type: Transform + pos: 74.5,55.5 + parent: 2 + - uid: 27744 + components: + - type: Transform + pos: -13.5,163.5 + parent: 2 + - uid: 27751 + components: + - type: Transform + pos: -103.5,17.5 + parent: 2 + - uid: 27753 + components: + - type: Transform + pos: -113.5,17.5 + parent: 2 + - uid: 27798 + components: + - type: Transform + pos: -102.5,58.5 + parent: 2 + - uid: 27832 + components: + - type: Transform + pos: -113.5,18.5 + parent: 2 + - uid: 27835 + components: + - type: Transform + pos: -113.5,19.5 + parent: 2 + - uid: 27863 + components: + - type: Transform + pos: -103.5,19.5 + parent: 2 + - uid: 27874 + components: + - type: Transform + pos: -104.5,38.5 + parent: 2 + - uid: 27879 + components: + - type: Transform + pos: -103.5,18.5 + parent: 2 + - uid: 27885 + components: + - type: Transform + pos: -103.5,38.5 + parent: 2 + - uid: 27937 + components: + - type: Transform + pos: -102.5,23.5 + parent: 2 + - uid: 27939 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 27941 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 27961 + components: + - type: Transform + pos: -114.5,34.5 + parent: 2 + - uid: 28021 + components: + - type: Transform + pos: -101.5,63.5 + parent: 2 + - uid: 28070 + components: + - type: Transform + pos: -66.5,147.5 + parent: 2 + - uid: 28149 + components: + - type: Transform + pos: 74.5,53.5 + parent: 2 + - uid: 28159 + components: + - type: Transform + pos: -113.5,56.5 + parent: 2 + - uid: 28160 + components: + - type: Transform + pos: -113.5,55.5 + parent: 2 + - uid: 28190 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 28193 + components: + - type: Transform + pos: -16.5,179.5 + parent: 2 + - uid: 28228 + components: + - type: Transform + pos: -16.5,178.5 + parent: 2 + - uid: 28697 + components: + - type: Transform + pos: -114.5,21.5 + parent: 2 + - uid: 28741 + components: + - type: Transform + pos: -138.5,51.5 + parent: 2 + - uid: 28761 + components: + - type: Transform + pos: -102.5,25.5 + parent: 2 + - uid: 28781 + components: + - type: Transform + pos: -129.5,96.5 + parent: 2 + - uid: 28847 + components: + - type: Transform + pos: 68.5,55.5 + parent: 2 + - uid: 28887 + components: + - type: Transform + pos: -123.5,46.5 + parent: 2 + - uid: 28901 + components: + - type: Transform + pos: -122.5,46.5 + parent: 2 + - uid: 28902 + components: + - type: Transform + pos: -123.5,48.5 + parent: 2 + - uid: 28940 + components: + - type: Transform + pos: -112.5,64.5 + parent: 2 + - uid: 28941 + components: + - type: Transform + pos: -113.5,64.5 + parent: 2 + - uid: 28942 + components: + - type: Transform + pos: -114.5,64.5 + parent: 2 + - uid: 28943 + components: + - type: Transform + pos: -115.5,64.5 + parent: 2 + - uid: 28944 + components: + - type: Transform + pos: -112.5,66.5 + parent: 2 + - uid: 28945 + components: + - type: Transform + pos: -113.5,66.5 + parent: 2 + - uid: 28946 + components: + - type: Transform + pos: -114.5,66.5 + parent: 2 + - uid: 28947 + components: + - type: Transform + pos: -115.5,66.5 + parent: 2 + - uid: 28976 + components: + - type: Transform + pos: -113.5,57.5 + parent: 2 + - uid: 29010 + components: + - type: Transform + pos: -115.5,57.5 + parent: 2 + - uid: 29024 + components: + - type: Transform + pos: 68.5,51.5 + parent: 2 + - uid: 29046 + components: + - type: Transform + pos: -122.5,48.5 + parent: 2 + - uid: 29051 + components: + - type: Transform + pos: 74.5,52.5 + parent: 2 + - uid: 29069 + components: + - type: Transform + pos: 69.5,50.5 + parent: 2 + - uid: 29071 + components: + - type: Transform + pos: 70.5,50.5 + parent: 2 + - uid: 29110 + components: + - type: Transform + pos: -67.5,67.5 + parent: 2 + - uid: 29121 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 29127 + components: + - type: Transform + pos: -106.5,34.5 + parent: 2 + - uid: 29176 + components: + - type: Transform + pos: 68.5,54.5 + parent: 2 + - uid: 29194 + components: + - type: Transform + pos: 72.5,50.5 + parent: 2 + - uid: 29195 + components: + - type: Transform + pos: 73.5,51.5 + parent: 2 + - uid: 29196 + components: + - type: Transform + pos: 74.5,51.5 + parent: 2 + - uid: 29198 + components: + - type: Transform + pos: 74.5,54.5 + parent: 2 + - uid: 29207 + components: + - type: Transform + pos: 76.5,37.5 + parent: 2 + - uid: 29462 + components: + - type: Transform + pos: -111.5,37.5 + parent: 2 + - uid: 29467 + components: + - type: Transform + pos: -109.5,37.5 + parent: 2 + - uid: 30329 + components: + - type: Transform + pos: -116.5,14.5 + parent: 2 + - uid: 30393 + components: + - type: Transform + pos: -116.5,17.5 + parent: 2 + - uid: 30394 + components: + - type: Transform + pos: -96.5,9.5 + parent: 2 + - uid: 30397 + components: + - type: Transform + pos: -116.5,16.5 + parent: 2 + - uid: 30398 + components: + - type: Transform + pos: -116.5,15.5 + parent: 2 + - uid: 30402 + components: + - type: Transform + pos: -104.5,9.5 + parent: 2 + - uid: 30403 + components: + - type: Transform + pos: -114.5,11.5 + parent: 2 + - uid: 30404 + components: + - type: Transform + pos: -113.5,11.5 + parent: 2 + - uid: 30405 + components: + - type: Transform + pos: -112.5,11.5 + parent: 2 + - uid: 30406 + components: + - type: Transform + pos: -111.5,11.5 + parent: 2 + - uid: 30409 + components: + - type: Transform + pos: -110.5,11.5 + parent: 2 + - uid: 30410 + components: + - type: Transform + pos: -109.5,11.5 + parent: 2 + - uid: 30413 + components: + - type: Transform + pos: -108.5,11.5 + parent: 2 + - uid: 30414 + components: + - type: Transform + pos: -107.5,11.5 + parent: 2 + - uid: 30415 + components: + - type: Transform + pos: -106.5,11.5 + parent: 2 + - uid: 30416 + components: + - type: Transform + pos: -106.5,9.5 + parent: 2 + - uid: 30417 + components: + - type: Transform + pos: -105.5,9.5 + parent: 2 + - uid: 30418 + components: + - type: Transform + pos: -102.5,9.5 + parent: 2 + - uid: 30419 + components: + - type: Transform + pos: -103.5,9.5 + parent: 2 + - uid: 30420 + components: + - type: Transform + pos: -101.5,9.5 + parent: 2 + - uid: 30421 + components: + - type: Transform + pos: -100.5,9.5 parent: 2 - uid: 30422 components: - type: Transform - pos: -31.5,41.5 + pos: -99.5,9.5 + parent: 2 + - uid: 30423 + components: + - type: Transform + pos: -98.5,9.5 + parent: 2 + - uid: 30424 + components: + - type: Transform + pos: -97.5,9.5 + parent: 2 + - uid: 30427 + components: + - type: Transform + pos: -105.5,11.5 parent: 2 - uid: 30428 components: - type: Transform - pos: -33.5,43.5 - parent: 2 - - uid: 30477 - components: - - type: Transform - pos: -32.5,20.5 - parent: 2 -- proto: InflatableWall - entities: - - uid: 26683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-75.5 - parent: 2 - - uid: 27411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-76.5 + pos: -95.5,9.5 parent: 2 - uid: 30429 components: - type: Transform - pos: -32.5,41.5 + pos: -95.5,10.5 parent: 2 - uid: 30430 components: - type: Transform - pos: -30.5,41.5 + pos: -95.5,11.5 parent: 2 - - uid: 30463 + - uid: 30431 components: - type: Transform - pos: -38.5,22.5 + pos: -95.5,12.5 parent: 2 - - uid: 30465 + - uid: 30432 components: - type: Transform - pos: -37.5,22.5 + pos: -95.5,13.5 parent: 2 - - uid: 30471 + - uid: 30433 components: - type: Transform - pos: -34.5,20.5 + pos: -95.5,14.5 parent: 2 - - uid: 30472 + - uid: 30852 components: - type: Transform - pos: -33.5,20.5 + pos: -73.5,145.5 parent: 2 - - uid: 30480 - components: - - type: Transform - pos: -31.5,20.5 - parent: 2 - - uid: 30481 - components: - - type: Transform - pos: -30.5,20.5 - parent: 2 - - uid: 31471 - components: - - type: Transform - pos: 49.5,-68.5 - parent: 2 - - uid: 31478 - components: - - type: Transform - pos: 54.5,-75.5 - parent: 2 - - uid: 31479 - components: - - type: Transform - pos: 55.5,-75.5 - parent: 2 - - uid: 31480 - components: - - type: Transform - pos: 55.5,-76.5 - parent: 2 - - uid: 31558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-76.5 - parent: 2 -- proto: IngotGold - entities: - - uid: 24426 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 2 - - uid: 24495 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 2 -- proto: IngotGold1 - entities: - - uid: 19573 - components: - - type: Transform - pos: 58.422615,7.678384 - parent: 2 - - uid: 19574 - components: - - type: Transform - pos: 57.56324,7.397134 - parent: 2 - - uid: 19575 - components: - - type: Transform - pos: 57.391365,7.569009 - parent: 2 -- proto: IngotSilver - entities: - - uid: 24398 - components: - - type: Transform - pos: 1.5,-24.5 - parent: 2 - - uid: 24560 - components: - - type: Transform - pos: 1.5,-24.5 - parent: 2 -- proto: Intellicard - entities: - - uid: 7069 - components: - - type: Transform - pos: 63.553505,-33.469948 - parent: 2 - - uid: 19442 - components: - - type: Transform - pos: 63.553505,-33.313698 - parent: 2 -- proto: IntercomAll - entities: - - uid: 19577 + - uid: 30962 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 2 - - uid: 32036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,5.5 - parent: 2 -- proto: IntercomCommand - entities: - - uid: 19582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-27.5 - parent: 2 - - uid: 32028 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 2 -- proto: IntercomCommon - entities: - - uid: 19583 - components: - - type: Transform - pos: 56.5,-11.5 - parent: 2 - - uid: 19584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,6.5 - parent: 2 - - uid: 19585 - components: - - type: Transform - pos: -40.5,0.5 - parent: 2 -- proto: IntercomEngineering - entities: - - uid: 18009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-54.5 - parent: 2 - - uid: 19586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-45.5 - parent: 2 -- proto: IntercomMedical - entities: - - uid: 19588 - components: - - type: Transform - pos: 33.5,-21.5 - parent: 2 - - uid: 19589 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 2 - - uid: 19590 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 2 - - uid: 19591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-42.5 - parent: 2 - - uid: 19592 - components: - - type: Transform - pos: 38.5,-54.5 - parent: 2 - - uid: 19593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-34.5 - parent: 2 - - uid: 19594 - components: - - type: Transform - pos: 21.5,-28.5 - parent: 2 -- proto: IntercomScience - entities: - - uid: 5419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-28.5 - parent: 2 - - uid: 19595 - components: - - type: Transform - pos: 58.5,-38.5 - parent: 2 -- proto: IntercomSecurity - entities: - - uid: 19597 - components: - - type: Transform - pos: 16.5,39.5 - parent: 2 - - uid: 19598 - components: - - type: Transform - pos: 4.5,29.5 - parent: 2 -- proto: IntercomSupply - entities: - - uid: 19599 - components: - - type: Transform - pos: -20.5,-20.5 - parent: 2 - - uid: 19600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-22.5 - parent: 2 - - uid: 19601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-31.5 - parent: 2 -- proto: JanitorialTrolley - entities: - - uid: 31682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-6.5 - parent: 2 - - uid: 31683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-6.5 - parent: 2 -- proto: JetpackMiniFilled - entities: - - uid: 19608 - components: - - type: Transform - pos: -21.5,5.5 - parent: 2 - - type: CMExplosionEffect - - uid: 19609 - components: - - type: Transform - pos: -21.5,6.5 - parent: 2 - - type: CMExplosionEffect -- proto: Jukebox - entities: - - uid: 19614 - components: - - type: Transform - pos: 21.5,-3.5 - parent: 2 -- proto: KitchenElectricGrill - entities: - - uid: 19615 - components: - - type: Transform - pos: 38.5,-4.5 - parent: 2 - - uid: 19616 - components: - - type: Transform - pos: 35.5,-10.5 - parent: 2 -- proto: KitchenKnife - entities: - - uid: 557 - components: - - type: Transform - pos: 77.63555,-27.476358 - parent: 2 - - uid: 19617 - components: - - type: Transform - pos: -37.922302,-46.40773 - parent: 2 - - uid: 30556 - components: - - type: Transform - pos: -36.464466,41.61229 - parent: 2 -- proto: KitchenMicrowave - entities: - - uid: 5494 - components: - - type: Transform - pos: -6.5,52.5 - parent: 2 - - type: CMExplosionEffect - - uid: 19618 - components: - - type: Transform - pos: 52.5,-33.5 - parent: 2 - - type: CMExplosionEffect - - uid: 19620 - components: - - type: Transform - pos: 33.5,-10.5 - parent: 2 - - type: CMExplosionEffect - - uid: 19622 - components: - - type: Transform - pos: 39.5,-4.5 - parent: 2 - - type: CMExplosionEffect - - uid: 19623 - components: - - type: Transform - pos: 12.5,-27.5 - parent: 2 - - type: CMExplosionEffect - - uid: 19625 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 2 - - type: CMExplosionEffect - - uid: 19626 - components: - - type: Transform - pos: -29.5,-15.5 - parent: 2 - - type: CMExplosionEffect - - uid: 19627 - components: - - type: Transform - pos: 34.5,-52.5 - parent: 2 - - type: CMExplosionEffect - - uid: 19628 - components: - - type: Transform - pos: 11.5,34.5 - parent: 2 - - type: CMExplosionEffect - - uid: 19629 - components: - - type: Transform - pos: 18.5,42.5 - parent: 2 - - type: CMExplosionEffect - - uid: 30557 - components: - - type: Transform - pos: -34.5,44.5 - parent: 2 - - type: CMExplosionEffect -- proto: KitchenReagentGrinder - entities: - - uid: 2014 - components: - - type: Transform - pos: -7.5,49.5 - parent: 2 - - uid: 11259 - components: - - type: Transform - pos: -34.5,37.5 - parent: 2 - - uid: 19630 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 2 - - uid: 19631 - components: - - type: Transform - pos: 23.5,4.5 - parent: 2 - - uid: 19633 - components: - - type: Transform - pos: 65.5,-75.5 - parent: 2 - - uid: 19634 - components: - - type: Transform - pos: -38.5,-44.5 - parent: 2 - - uid: 19635 - components: - - type: Transform - pos: 34.5,-54.5 - parent: 2 - - uid: 19637 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 2 - - uid: 19638 - components: - - type: Transform - pos: 19.5,-20.5 - parent: 2 - - uid: 24098 - components: - - type: Transform - pos: 43.5,-10.5 - parent: 2 - - uid: 29408 - components: - - type: Transform - pos: 72.5,-16.5 - parent: 2 -- proto: KitchenSpike - entities: - - uid: 19545 - components: - - type: Transform - pos: 59.5,23.5 - parent: 2 - - uid: 19639 - components: - - type: Transform - pos: 39.5,0.5 - parent: 2 - - uid: 19640 - components: - - type: Transform - pos: 39.5,-2.5 - parent: 2 - - uid: 22658 - components: - - type: Transform - pos: 59.5,25.5 - parent: 2 - - uid: 30447 - components: - - type: Transform - pos: -30.5,45.5 - parent: 2 -- proto: KnifePlastic - entities: - - uid: 19642 - components: - - type: Transform - parent: 19641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: KukriKnife - entities: - - uid: 10100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.148581,42.511505 - parent: 2 -- proto: KvassTankFull - entities: - - uid: 30626 - components: - - type: Transform - pos: -34.5,34.5 - parent: 2 -- proto: Lamp - entities: - - uid: 11307 - components: - - type: Transform - pos: -5.6968927,36.77498 - parent: 2 - - uid: 19644 - components: - - type: Transform - pos: 11.522486,-33.17511 - parent: 2 - - uid: 19646 - components: - - type: Transform - pos: -61.369373,-1.2449265 - parent: 2 - - uid: 19648 - components: - - type: Transform - pos: 35.587208,-40.16114 - parent: 2 - - uid: 27386 - components: - - type: Transform - pos: -5.591009,31.962679 - parent: 2 - - uid: 29802 + pos: -0.5,3.5 + parent: 30902 + - uid: 30963 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.3875084,14.891649 - parent: 2 - - uid: 29837 + pos: -0.5,4.5 + parent: 30902 + - uid: 30964 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.600887,-29.364338 - parent: 2 -- proto: LampBanana - entities: - - uid: 19649 - components: - - type: Transform - pos: 31.602112,21.892363 - parent: 2 -- proto: LampGold - entities: - - uid: 8394 - components: - - type: Transform - pos: -33.629147,-27.355532 - parent: 2 - - uid: 13644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.389519,36.764893 - parent: 2 - - uid: 19652 - components: - - type: Transform - pos: 57.47965,-10.061116 - parent: 2 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 19654 - components: - - type: Transform - pos: -57.50557,-0.1837722 - parent: 2 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 19658 - components: - - type: Transform - pos: 9.496673,-16.280363 - parent: 2 - - uid: 19659 - components: - - type: Transform - pos: 74.51042,-10.28244 - parent: 2 - - uid: 22052 - components: - - type: Transform - pos: 15.4723425,23.68693 - parent: 2 - - uid: 24999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.13893366,-15.309916 - parent: 2 - - uid: 29913 - components: - - type: Transform - pos: 6.5545344,-23.515224 - parent: 2 -- proto: LandMineExplosive - entities: - - uid: 881 - components: - - type: Transform - pos: 67.53479,24.377195 - parent: 2 - - type: CMExplosionEffect - - uid: 3465 - components: - - type: Transform - pos: 64.394165,21.439695 - parent: 2 - - type: CMExplosionEffect -- proto: LandMineKick - entities: - - uid: 7742 - components: - - type: Transform - pos: -4.487368,47.5 - parent: 2 - - uid: 7743 - components: - - type: Transform - pos: -2.471743,49.5 - parent: 2 - - uid: 7751 - components: - - type: Transform - pos: 1.5438819,49.5 - parent: 2 - - uid: 7752 - components: - - type: Transform - pos: -4.471743,43.5 - parent: 2 - - uid: 29529 - components: - - type: Transform - pos: 3.5470428,46.55905 - parent: 2 -- proto: Lantern - entities: - - uid: 19664 - components: - - type: Transform - pos: 72.47586,-3.3416705 - parent: 2 -- proto: LargeBeaker - entities: - - uid: 19665 - components: - - type: Transform - pos: 35.53304,-36.306656 - parent: 2 - - uid: 19666 - components: - - type: Transform - pos: 35.736164,-36.400406 - parent: 2 - - uid: 19667 - components: - - type: Transform - pos: -38.156677,-46.329605 - parent: 2 - - uid: 19668 - components: - - type: Transform - pos: 74.664,-18.318996 - parent: 2 - - uid: 24355 - components: - - type: Transform - pos: 42.737797,-10.2649 - parent: 2 -- proto: LauncherSyringeMed - entities: - - uid: 11208 - components: - - type: Transform - pos: 36.537766,-38.2434 - parent: 2 - - uid: 31855 - components: - - type: Transform - pos: 19.00234,-20.505686 - parent: 2 -- proto: LeavesCannabis - entities: - - uid: 30564 - components: - - type: Transform - pos: -34.526966,40.624542 - parent: 2 - - uid: 30565 - components: - - type: Transform - pos: -36.19884,41.515167 - parent: 2 -- proto: LegionnaireBonfire - entities: - - uid: 19543 + pos: 0.5,5.5 + parent: 30902 + - uid: 30965 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,24.5 - parent: 2 -- proto: Lighter - entities: - - uid: 19670 - components: - - type: Transform - pos: -20.062664,-73.65716 - parent: 2 - - uid: 19671 - components: - - type: Transform - pos: 23.13705,-2.3611462 - parent: 2 - - uid: 22026 - components: - - type: Transform - pos: 14.511025,21.629814 - parent: 2 -- proto: LightReplacer - entities: - - uid: 19672 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 2 -- proto: LiveLetLiveCircuitBoard - entities: - - uid: 20207 - components: - - type: Transform - parent: 19293 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: LockableButtonArmory - entities: - - uid: 10811 + pos: 1.5,5.5 + parent: 30902 + - uid: 30966 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,38.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 11127: - - - Pressed - - Toggle - - uid: 11049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,37.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4131: - - - Pressed - - Toggle -- proto: LockableButtonAtmospherics - entities: - - uid: 5550 - components: - - type: Transform - pos: 20.5,-73.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7642: - - - Pressed - - Toggle - 22224: - - - Pressed - - Toggle - 23486: - - - Pressed - - Toggle - - uid: 11279 + pos: 2.5,5.5 + parent: 30902 + - uid: 30967 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-69.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7642: - - - Pressed - - Toggle - 22224: - - - Pressed - - Toggle - 23486: - - - Pressed - - Toggle -- proto: LockableButtonBrig - entities: - - uid: 19359 + pos: 3.5,4.5 + parent: 30902 + - uid: 30968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,30.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22532: - - - Pressed - - Toggle - 22527: - - - Pressed - - Toggle - 22552: - - - Pressed - - Toggle - 30339: - - - Pressed - - Toggle - 24540: - - - Pressed - - Toggle - 30347: - - - Pressed - - Toggle -- proto: LockableButtonCommand - entities: - - uid: 10842 + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 30902 + - uid: 30969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 30902 + - uid: 30970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 30902 + - uid: 31577 + components: + - type: Transform + pos: 2.5,59.5 parent: 2 - - uid: 20148 + - uid: 31874 + components: + - type: Transform + pos: 85.5,16.5 + parent: 2 + - uid: 31875 + components: + - type: Transform + pos: 86.5,16.5 + parent: 2 + - uid: 31876 + components: + - type: Transform + pos: 87.5,16.5 + parent: 2 + - uid: 31877 + components: + - type: Transform + pos: 87.5,15.5 + parent: 2 + - uid: 31878 + components: + - type: Transform + pos: 87.5,14.5 + parent: 2 + - uid: 31879 + components: + - type: Transform + pos: 89.5,16.5 + parent: 2 + - uid: 31880 + components: + - type: Transform + pos: 90.5,16.5 + parent: 2 + - uid: 31881 + components: + - type: Transform + pos: 91.5,16.5 + parent: 2 + - uid: 31882 + components: + - type: Transform + pos: 89.5,15.5 + parent: 2 + - uid: 31883 + components: + - type: Transform + pos: 89.5,14.5 + parent: 2 + - uid: 32207 + components: + - type: Transform + pos: -74.5,145.5 + parent: 2 + - uid: 32230 + components: + - type: Transform + pos: -72.5,145.5 + parent: 2 + - uid: 32232 + components: + - type: Transform + pos: -72.5,144.5 + parent: 2 + - uid: 32440 + components: + - type: Transform + pos: -42.5,93.5 + parent: 2 + - uid: 32441 + components: + - type: Transform + pos: -41.5,93.5 + parent: 2 + - uid: 32442 + components: + - type: Transform + pos: -39.5,93.5 + parent: 2 + - uid: 32443 + components: + - type: Transform + pos: -38.5,93.5 + parent: 2 + - uid: 33482 + components: + - type: Transform + pos: -88.5,82.5 + parent: 2 + - uid: 33487 + components: + - type: Transform + pos: -88.5,83.5 + parent: 2 + - uid: 34460 + components: + - type: Transform + pos: -129.5,98.5 + parent: 2 + - uid: 34765 + components: + - type: Transform + pos: 2.5,60.5 + parent: 2 + - uid: 34810 + components: + - type: Transform + pos: -39.5,111.5 + parent: 2 + - uid: 34811 + components: + - type: Transform + pos: -38.5,111.5 + parent: 2 + - uid: 35543 + components: + - type: Transform + pos: -119.5,58.5 + parent: 2 + - uid: 35544 + components: + - type: Transform + pos: -119.5,60.5 + parent: 2 + - uid: 35545 + components: + - type: Transform + pos: -119.5,59.5 + parent: 2 + - uid: 37005 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-11.5 + pos: -0.5,2.5 + parent: 36996 + - uid: 37011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 36996 + - uid: 37012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 36996 + - uid: 37027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 36996 + - uid: 37028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 36996 + - uid: 37041 + components: + - type: Transform + pos: -19.5,190.5 parent: 2 -- proto: LockableButtonEngineering + - uid: 37144 + components: + - type: Transform + pos: -35.5,175.5 + parent: 2 + - uid: 37149 + components: + - type: Transform + pos: -43.5,175.5 + parent: 2 + - uid: 37150 + components: + - type: Transform + pos: -42.5,178.5 + parent: 2 + - uid: 37151 + components: + - type: Transform + pos: -44.5,175.5 + parent: 2 + - uid: 37157 + components: + - type: Transform + pos: -43.5,178.5 + parent: 2 + - uid: 37158 + components: + - type: Transform + pos: -44.5,178.5 + parent: 2 + - uid: 37161 + components: + - type: Transform + pos: -42.5,175.5 + parent: 2 + - uid: 37183 + components: + - type: Transform + pos: -50.5,171.5 + parent: 2 + - uid: 37185 + components: + - type: Transform + pos: -51.5,171.5 + parent: 2 + - uid: 37186 + components: + - type: Transform + pos: -52.5,171.5 + parent: 2 + - uid: 37192 + components: + - type: Transform + pos: -37.5,171.5 + parent: 2 + - uid: 37197 + components: + - type: Transform + pos: -39.5,171.5 + parent: 2 + - uid: 37198 + components: + - type: Transform + pos: -40.5,171.5 + parent: 2 + - uid: 37199 + components: + - type: Transform + pos: -38.5,171.5 + parent: 2 + - uid: 37222 + components: + - type: Transform + pos: -47.5,171.5 + parent: 2 + - uid: 37234 + components: + - type: Transform + pos: -46.5,171.5 + parent: 2 + - uid: 37235 + components: + - type: Transform + pos: -45.5,171.5 + parent: 2 + - uid: 37236 + components: + - type: Transform + pos: -45.5,172.5 + parent: 2 + - uid: 37292 + components: + - type: Transform + pos: -34.5,175.5 + parent: 2 + - uid: 37294 + components: + - type: Transform + pos: -34.5,176.5 + parent: 2 + - uid: 37327 + components: + - type: Transform + pos: -52.5,168.5 + parent: 2 + - uid: 37328 + components: + - type: Transform + pos: -51.5,168.5 + parent: 2 + - uid: 37329 + components: + - type: Transform + pos: -50.5,168.5 + parent: 2 + - uid: 37594 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 36996 + - uid: 37602 + components: + - type: Transform + pos: -135.5,75.5 + parent: 2 + - uid: 37610 + components: + - type: Transform + pos: -135.5,74.5 + parent: 2 + - uid: 37699 + components: + - type: Transform + pos: -90.5,53.5 + parent: 2 + - uid: 37700 + components: + - type: Transform + pos: -90.5,52.5 + parent: 2 + - uid: 37701 + components: + - type: Transform + pos: -90.5,51.5 + parent: 2 + - uid: 37702 + components: + - type: Transform + pos: -90.5,50.5 + parent: 2 + - uid: 37714 + components: + - type: Transform + pos: 66.5,31.5 + parent: 2 + - uid: 37718 + components: + - type: Transform + pos: 66.5,37.5 + parent: 2 + - uid: 37833 + components: + - type: Transform + pos: 67.5,37.5 + parent: 2 + - uid: 37949 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 37842 + - uid: 37950 + components: + - type: Transform + pos: 0.5,2.5 + parent: 37842 + - uid: 37951 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 37842 + - uid: 37952 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 37842 + - uid: 37953 + components: + - type: Transform + pos: -0.5,2.5 + parent: 37842 + - uid: 37954 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 37842 + - uid: 37955 + components: + - type: Transform + pos: 1.5,2.5 + parent: 37842 + - uid: 37966 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 37842 + - uid: 37979 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 37842 + - uid: 37997 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 37842 + - uid: 38044 + components: + - type: Transform + pos: -1.5,1.5 + parent: 37842 + - uid: 38045 + components: + - type: Transform + pos: -1.5,2.5 + parent: 37842 + - uid: 38046 + components: + - type: Transform + pos: 2.5,1.5 + parent: 37842 + - uid: 38047 + components: + - type: Transform + pos: 2.5,2.5 + parent: 37842 + - uid: 38083 + components: + - type: Transform + pos: 65.5,31.5 + parent: 2 + - uid: 38084 + components: + - type: Transform + pos: 65.5,37.5 + parent: 2 + - uid: 38085 + components: + - type: Transform + pos: 67.5,31.5 + parent: 2 + - uid: 38106 + components: + - type: Transform + pos: -37.5,98.5 + parent: 2 + - uid: 39265 + components: + - type: Transform + pos: 81.5,42.5 + parent: 2 +- proto: GrilleBroken entities: + - uid: 843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,58.5 + parent: 2 + - uid: 846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,59.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-18.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,23.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,26.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,22.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: 48.5,45.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,42.5 + parent: 2 - uid: 8693 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-66.5 + pos: 46.5,28.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 10804: - - - Pressed - - Toggle - 6605: - - - Pressed - - Toggle - 23544: - - - Pressed - - Toggle -- proto: LockableButtonHeadOfPersonnel - entities: - - uid: 19675 + - uid: 15812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,59.5 + parent: 2 + - uid: 15813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,56.5 + parent: 2 + - uid: 15816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,56.5 + parent: 2 + - uid: 15817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,55.5 + parent: 2 + - uid: 15818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,55.5 + parent: 2 + - uid: 15820 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-21.5 + pos: 4.5,84.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22561: - - - Pressed - - Toggle - 22562: - - - Pressed - - Toggle -- proto: LockableButtonJanitor - entities: - - uid: 31722 + - uid: 16493 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-9.5 + rot: -1.5707963267948966 rad + pos: -143.5,90.5 parent: 2 -- proto: LockableButtonLawyer - entities: - - uid: 25384 + - uid: 18726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -122.5,93.5 + parent: 2 + - uid: 21237 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,4.5 + pos: -143.5,90.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 23851: - - - Pressed - - Toggle - 23733: - - - Pressed - - Toggle - 23726: - - - Pressed - - Toggle - 23635: - - - Pressed - - Toggle - 23725: - - - Pressed - - Toggle - 23713: - - - Pressed - - Toggle - - uid: 32101 + - uid: 23542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,186.5 + parent: 2 + - uid: 23600 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,16.5 + pos: 9.5,186.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 181: - - - Pressed - - Toggle - 2139: - - - Pressed - - Toggle - 2633: - - - Pressed - - Toggle - 2631: - - - Pressed - - Toggle - 2630: - - - Pressed - - Toggle - 2632: - - - Pressed - - Toggle - 2655: - - - Pressed - - Toggle -- proto: LockableButtonResearchDirector + - uid: 28693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,93.5 + parent: 2 +- proto: GrilleDiagonal entities: - - uid: 10889 + - uid: 6456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,127.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,128.5 + parent: 2 + - uid: 6465 + components: + - type: Transform + pos: -70.5,132.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + pos: -69.5,133.5 + parent: 2 + - uid: 28321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 30902 + - uid: 28330 + components: + - type: Transform + pos: -0.5,5.5 + parent: 30902 + - uid: 29375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,36.5 + parent: 2 + - uid: 29376 + components: + - type: Transform + pos: 59.5,36.5 + parent: 2 + - uid: 29378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 + - uid: 29379 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 +- proto: GrilleSpawner + entities: + - uid: 1273 + components: + - type: Transform + pos: 78.5,12.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: 62.5,16.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: 78.5,6.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + pos: 78.5,10.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: -71.5,186.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: -85.5,191.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + pos: -78.5,191.5 + parent: 2 + - uid: 5098 + components: + - type: Transform + pos: -86.5,187.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + pos: -83.5,191.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + pos: -79.5,191.5 + parent: 2 + - uid: 5334 + components: + - type: Transform + pos: 78.5,13.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + pos: 78.5,9.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + pos: 78.5,7.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + pos: 78.5,5.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + pos: 78.5,15.5 + parent: 2 + - uid: 5446 + components: + - type: Transform + pos: 76.5,4.5 + parent: 2 + - uid: 5481 + components: + - type: Transform + pos: 78.5,4.5 + parent: 2 + - uid: 5551 + components: + - type: Transform + pos: 78.5,8.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + pos: 78.5,11.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + pos: 73.5,4.5 + parent: 2 + - uid: 5586 + components: + - type: Transform + pos: 62.5,17.5 + parent: 2 + - uid: 5589 + components: + - type: Transform + pos: 72.5,4.5 + parent: 2 + - uid: 5593 + components: + - type: Transform + pos: 75.5,4.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + pos: 74.5,4.5 + parent: 2 + - uid: 5613 + components: + - type: Transform + pos: 62.5,15.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + pos: 62.5,12.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: 62.5,11.5 + parent: 2 + - uid: 5717 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - uid: 5872 + components: + - type: Transform + pos: 77.5,4.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + pos: 78.5,14.5 + parent: 2 + - uid: 5944 + components: + - type: Transform + pos: -81.5,191.5 + parent: 2 + - uid: 5945 + components: + - type: Transform + pos: -80.5,191.5 + parent: 2 + - uid: 5947 + components: + - type: Transform + pos: -72.5,186.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + pos: -86.5,191.5 + parent: 2 + - uid: 6068 + components: + - type: Transform + pos: -82.5,191.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + pos: -84.5,191.5 + parent: 2 + - uid: 6071 + components: + - type: Transform + pos: -70.5,186.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + pos: -69.5,186.5 + parent: 2 + - uid: 6187 + components: + - type: Transform + pos: -77.5,191.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + pos: -68.5,186.5 + parent: 2 + - uid: 6301 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + pos: 63.5,4.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + pos: 66.5,4.5 + parent: 2 + - uid: 6639 + components: + - type: Transform + pos: 65.5,4.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + pos: 62.5,6.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + pos: 64.5,4.5 + parent: 2 + - uid: 15798 + components: + - type: Transform + pos: -142.5,104.5 + parent: 2 + - uid: 19094 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 + - uid: 19467 + components: + - type: Transform + pos: 62.5,7.5 + parent: 2 + - uid: 27375 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 + - uid: 29419 + components: + - type: Transform + pos: 62.5,9.5 + parent: 2 + - uid: 29553 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-34.5 + pos: -113.5,11.5 + parent: 2 + - uid: 29554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -114.5,11.5 + parent: 2 + - uid: 29555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,11.5 + parent: 2 + - uid: 29573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,11.5 + parent: 2 + - uid: 29574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,11.5 + parent: 2 + - uid: 29575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,11.5 + parent: 2 + - uid: 29576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,11.5 + parent: 2 + - uid: 29577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,11.5 + parent: 2 + - uid: 29578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,11.5 + parent: 2 + - uid: 29579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,9.5 + parent: 2 + - uid: 29580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,9.5 + parent: 2 + - uid: 29581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,9.5 + parent: 2 + - uid: 29582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,9.5 + parent: 2 + - uid: 29583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,9.5 + parent: 2 + - uid: 29584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,9.5 + parent: 2 + - uid: 29585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,9.5 + parent: 2 + - uid: 29586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,9.5 + parent: 2 + - uid: 29587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,9.5 + parent: 2 + - uid: 29588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,9.5 + parent: 2 + - uid: 29592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,14.5 + parent: 2 + - uid: 29593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,15.5 + parent: 2 + - uid: 29594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,16.5 + parent: 2 + - uid: 29595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,17.5 + parent: 2 + - uid: 30602 + components: + - type: Transform + pos: 67.5,4.5 + parent: 2 + - uid: 30646 + components: + - type: Transform + pos: 68.5,4.5 + parent: 2 + - uid: 32941 + components: + - type: Transform + pos: -1.5,240.5 + parent: 2 + - uid: 34931 + components: + - type: Transform + pos: -2.5,240.5 + parent: 2 + - uid: 34932 + components: + - type: Transform + pos: -4.5,240.5 + parent: 2 + - uid: 34933 + components: + - type: Transform + pos: -3.5,240.5 + parent: 2 + - uid: 34934 + components: + - type: Transform + pos: -5.5,240.5 + parent: 2 + - uid: 34935 + components: + - type: Transform + pos: -6.5,240.5 + parent: 2 + - uid: 34936 + components: + - type: Transform + pos: -7.5,240.5 + parent: 2 + - uid: 34937 + components: + - type: Transform + pos: -7.5,239.5 + parent: 2 + - uid: 34938 + components: + - type: Transform + pos: -7.5,238.5 + parent: 2 + - uid: 34939 + components: + - type: Transform + pos: -7.5,237.5 + parent: 2 + - uid: 34940 + components: + - type: Transform + pos: -7.5,236.5 + parent: 2 + - uid: 34941 + components: + - type: Transform + pos: -7.5,235.5 + parent: 2 + - uid: 34942 + components: + - type: Transform + pos: -7.5,234.5 + parent: 2 + - uid: 34943 + components: + - type: Transform + pos: -7.5,233.5 + parent: 2 + - uid: 34944 + components: + - type: Transform + pos: -7.5,232.5 + parent: 2 + - uid: 34945 + components: + - type: Transform + pos: -7.5,231.5 + parent: 2 + - uid: 34946 + components: + - type: Transform + pos: -7.5,230.5 + parent: 2 + - uid: 34947 + components: + - type: Transform + pos: -7.5,229.5 + parent: 2 + - uid: 34948 + components: + - type: Transform + pos: -7.5,228.5 + parent: 2 + - uid: 34949 + components: + - type: Transform + pos: -7.5,227.5 + parent: 2 + - uid: 34950 + components: + - type: Transform + pos: -7.5,226.5 + parent: 2 + - uid: 34951 + components: + - type: Transform + pos: -7.5,225.5 + parent: 2 + - uid: 34952 + components: + - type: Transform + pos: -7.5,224.5 + parent: 2 + - uid: 34953 + components: + - type: Transform + pos: -7.5,223.5 + parent: 2 + - uid: 34954 + components: + - type: Transform + pos: -7.5,222.5 + parent: 2 + - uid: 34955 + components: + - type: Transform + pos: -7.5,221.5 + parent: 2 + - uid: 34956 + components: + - type: Transform + pos: -7.5,220.5 + parent: 2 + - uid: 34957 + components: + - type: Transform + pos: -7.5,219.5 + parent: 2 + - uid: 34959 + components: + - type: Transform + pos: 8.5,219.5 + parent: 2 + - uid: 34960 + components: + - type: Transform + pos: 8.5,220.5 + parent: 2 + - uid: 34961 + components: + - type: Transform + pos: 8.5,221.5 + parent: 2 + - uid: 34962 + components: + - type: Transform + pos: 8.5,222.5 + parent: 2 + - uid: 34963 + components: + - type: Transform + pos: 8.5,223.5 + parent: 2 + - uid: 34964 + components: + - type: Transform + pos: 8.5,224.5 + parent: 2 + - uid: 34965 + components: + - type: Transform + pos: 8.5,225.5 + parent: 2 + - uid: 34966 + components: + - type: Transform + pos: 8.5,226.5 + parent: 2 + - uid: 34967 + components: + - type: Transform + pos: 8.5,227.5 + parent: 2 + - uid: 34968 + components: + - type: Transform + pos: 8.5,228.5 + parent: 2 + - uid: 34969 + components: + - type: Transform + pos: 8.5,229.5 + parent: 2 + - uid: 34970 + components: + - type: Transform + pos: 8.5,230.5 + parent: 2 + - uid: 34971 + components: + - type: Transform + pos: 8.5,231.5 + parent: 2 + - uid: 34972 + components: + - type: Transform + pos: 8.5,232.5 + parent: 2 + - uid: 34973 + components: + - type: Transform + pos: 8.5,233.5 + parent: 2 + - uid: 34974 + components: + - type: Transform + pos: 8.5,234.5 + parent: 2 + - uid: 34975 + components: + - type: Transform + pos: 8.5,235.5 + parent: 2 + - uid: 34976 + components: + - type: Transform + pos: 8.5,236.5 + parent: 2 + - uid: 34977 + components: + - type: Transform + pos: 8.5,237.5 + parent: 2 + - uid: 34978 + components: + - type: Transform + pos: 8.5,238.5 + parent: 2 + - uid: 34979 + components: + - type: Transform + pos: 8.5,239.5 + parent: 2 + - uid: 34980 + components: + - type: Transform + pos: 8.5,240.5 + parent: 2 + - uid: 34981 + components: + - type: Transform + pos: 7.5,240.5 + parent: 2 + - uid: 34982 + components: + - type: Transform + pos: 6.5,240.5 + parent: 2 + - uid: 34983 + components: + - type: Transform + pos: 5.5,240.5 + parent: 2 + - uid: 34984 + components: + - type: Transform + pos: 4.5,240.5 + parent: 2 + - uid: 34985 + components: + - type: Transform + pos: 3.5,240.5 + parent: 2 + - uid: 34986 + components: + - type: Transform + pos: 2.5,240.5 + parent: 2 + - uid: 34987 + components: + - type: Transform + pos: -69.5,-14.5 + parent: 2 + - uid: 34988 + components: + - type: Transform + pos: -70.5,-14.5 + parent: 2 + - uid: 34989 + components: + - type: Transform + pos: -71.5,-14.5 + parent: 2 + - uid: 34990 + components: + - type: Transform + pos: -72.5,-14.5 + parent: 2 + - uid: 34991 + components: + - type: Transform + pos: -73.5,-14.5 + parent: 2 + - uid: 34992 + components: + - type: Transform + pos: -74.5,-14.5 + parent: 2 + - uid: 34993 + components: + - type: Transform + pos: -75.5,-14.5 + parent: 2 + - uid: 34994 + components: + - type: Transform + pos: -76.5,-14.5 + parent: 2 + - uid: 34995 + components: + - type: Transform + pos: -77.5,-14.5 + parent: 2 + - uid: 34996 + components: + - type: Transform + pos: -78.5,-14.5 + parent: 2 + - uid: 34997 + components: + - type: Transform + pos: -79.5,-14.5 + parent: 2 + - uid: 34998 + components: + - type: Transform + pos: -80.5,-14.5 + parent: 2 + - uid: 34999 + components: + - type: Transform + pos: -81.5,-14.5 + parent: 2 + - uid: 35000 + components: + - type: Transform + pos: -82.5,-14.5 + parent: 2 + - uid: 35001 + components: + - type: Transform + pos: -83.5,-14.5 + parent: 2 + - uid: 35002 + components: + - type: Transform + pos: -84.5,-14.5 + parent: 2 + - uid: 35003 + components: + - type: Transform + pos: -84.5,-13.5 + parent: 2 + - uid: 35004 + components: + - type: Transform + pos: -84.5,-12.5 + parent: 2 + - uid: 35005 + components: + - type: Transform + pos: -84.5,-11.5 + parent: 2 + - uid: 35006 + components: + - type: Transform + pos: -84.5,-10.5 + parent: 2 + - uid: 35007 + components: + - type: Transform + pos: -84.5,-6.5 + parent: 2 + - uid: 35008 + components: + - type: Transform + pos: -84.5,-5.5 + parent: 2 + - uid: 35009 + components: + - type: Transform + pos: -84.5,-4.5 + parent: 2 + - uid: 35010 + components: + - type: Transform + pos: -84.5,-3.5 + parent: 2 + - uid: 35011 + components: + - type: Transform + pos: -84.5,-2.5 + parent: 2 + - uid: 35012 + components: + - type: Transform + pos: -83.5,-2.5 + parent: 2 + - uid: 35013 + components: + - type: Transform + pos: -82.5,-2.5 + parent: 2 + - uid: 35014 + components: + - type: Transform + pos: -81.5,-2.5 + parent: 2 + - uid: 35015 + components: + - type: Transform + pos: -80.5,-2.5 + parent: 2 + - uid: 35016 + components: + - type: Transform + pos: -79.5,-2.5 + parent: 2 + - uid: 35017 + components: + - type: Transform + pos: -78.5,-2.5 + parent: 2 + - uid: 35018 + components: + - type: Transform + pos: -77.5,-2.5 + parent: 2 + - uid: 35019 + components: + - type: Transform + pos: -76.5,-2.5 + parent: 2 + - uid: 35020 + components: + - type: Transform + pos: -75.5,-2.5 + parent: 2 + - uid: 35021 + components: + - type: Transform + pos: -74.5,-2.5 + parent: 2 + - uid: 35022 + components: + - type: Transform + pos: -73.5,-2.5 + parent: 2 + - uid: 35023 + components: + - type: Transform + pos: -72.5,-2.5 + parent: 2 + - uid: 35024 + components: + - type: Transform + pos: -71.5,-2.5 + parent: 2 + - uid: 35025 + components: + - type: Transform + pos: -70.5,-2.5 + parent: 2 + - uid: 35026 + components: + - type: Transform + pos: -69.5,-2.5 + parent: 2 + - uid: 35325 + components: + - type: Transform + pos: -131.5,150.5 + parent: 2 + - uid: 35326 + components: + - type: Transform + pos: -131.5,151.5 + parent: 2 + - uid: 35327 + components: + - type: Transform + pos: -131.5,152.5 + parent: 2 + - uid: 35328 + components: + - type: Transform + pos: -131.5,153.5 + parent: 2 + - uid: 35329 + components: + - type: Transform + pos: -131.5,154.5 + parent: 2 + - uid: 35330 + components: + - type: Transform + pos: -131.5,155.5 + parent: 2 + - uid: 35331 + components: + - type: Transform + pos: -131.5,156.5 + parent: 2 + - uid: 35332 + components: + - type: Transform + pos: -130.5,156.5 + parent: 2 + - uid: 35333 + components: + - type: Transform + pos: -129.5,156.5 + parent: 2 + - uid: 35334 + components: + - type: Transform + pos: -128.5,156.5 + parent: 2 + - uid: 35335 + components: + - type: Transform + pos: -127.5,156.5 + parent: 2 + - uid: 35336 + components: + - type: Transform + pos: -126.5,156.5 + parent: 2 + - uid: 35337 + components: + - type: Transform + pos: -125.5,156.5 + parent: 2 + - uid: 35338 + components: + - type: Transform + pos: -124.5,156.5 + parent: 2 + - uid: 35339 + components: + - type: Transform + pos: -123.5,156.5 + parent: 2 + - uid: 35340 + components: + - type: Transform + pos: -122.5,156.5 + parent: 2 + - uid: 35341 + components: + - type: Transform + pos: -121.5,156.5 + parent: 2 + - uid: 35342 + components: + - type: Transform + pos: -120.5,156.5 + parent: 2 + - uid: 35343 + components: + - type: Transform + pos: -119.5,156.5 + parent: 2 + - uid: 35344 + components: + - type: Transform + pos: -118.5,156.5 + parent: 2 + - uid: 35345 + components: + - type: Transform + pos: -117.5,156.5 + parent: 2 + - uid: 35346 + components: + - type: Transform + pos: -116.5,156.5 + parent: 2 + - uid: 35347 + components: + - type: Transform + pos: -115.5,156.5 + parent: 2 + - uid: 35348 + components: + - type: Transform + pos: -114.5,156.5 + parent: 2 + - uid: 35349 + components: + - type: Transform + pos: -113.5,156.5 + parent: 2 + - uid: 35350 + components: + - type: Transform + pos: -112.5,156.5 + parent: 2 + - uid: 35351 + components: + - type: Transform + pos: -112.5,140.5 + parent: 2 + - uid: 35352 + components: + - type: Transform + pos: -113.5,140.5 + parent: 2 + - uid: 35353 + components: + - type: Transform + pos: -114.5,140.5 + parent: 2 + - uid: 35354 + components: + - type: Transform + pos: -115.5,140.5 + parent: 2 + - uid: 35355 + components: + - type: Transform + pos: -116.5,140.5 + parent: 2 + - uid: 35356 + components: + - type: Transform + pos: -117.5,140.5 + parent: 2 + - uid: 35357 + components: + - type: Transform + pos: -118.5,140.5 + parent: 2 + - uid: 35358 + components: + - type: Transform + pos: -119.5,140.5 + parent: 2 + - uid: 35359 + components: + - type: Transform + pos: -120.5,140.5 + parent: 2 + - uid: 35360 + components: + - type: Transform + pos: -121.5,140.5 + parent: 2 + - uid: 35361 + components: + - type: Transform + pos: -122.5,140.5 + parent: 2 + - uid: 35362 + components: + - type: Transform + pos: -123.5,140.5 + parent: 2 + - uid: 35363 + components: + - type: Transform + pos: -124.5,140.5 + parent: 2 + - uid: 35364 + components: + - type: Transform + pos: -125.5,140.5 + parent: 2 + - uid: 35365 + components: + - type: Transform + pos: -126.5,140.5 + parent: 2 + - uid: 35366 + components: + - type: Transform + pos: -127.5,140.5 + parent: 2 + - uid: 35367 + components: + - type: Transform + pos: -128.5,140.5 + parent: 2 + - uid: 35368 + components: + - type: Transform + pos: -129.5,140.5 + parent: 2 + - uid: 35369 + components: + - type: Transform + pos: -130.5,140.5 + parent: 2 + - uid: 35370 + components: + - type: Transform + pos: -131.5,140.5 + parent: 2 + - uid: 35371 + components: + - type: Transform + pos: -131.5,141.5 + parent: 2 + - uid: 35372 + components: + - type: Transform + pos: -131.5,142.5 + parent: 2 + - uid: 35373 + components: + - type: Transform + pos: -131.5,143.5 + parent: 2 + - uid: 35374 + components: + - type: Transform + pos: -131.5,144.5 + parent: 2 + - uid: 35375 + components: + - type: Transform + pos: -131.5,145.5 + parent: 2 + - uid: 35376 + components: + - type: Transform + pos: -131.5,146.5 + parent: 2 + - uid: 37392 + components: + - type: Transform + pos: -102.5,175.5 + parent: 2 + - uid: 37393 + components: + - type: Transform + pos: -102.5,174.5 + parent: 2 + - uid: 37394 + components: + - type: Transform + pos: -102.5,176.5 + parent: 2 + - uid: 37395 + components: + - type: Transform + pos: -102.5,177.5 + parent: 2 + - uid: 37396 + components: + - type: Transform + pos: -102.5,178.5 + parent: 2 + - uid: 37397 + components: + - type: Transform + pos: -102.5,179.5 + parent: 2 + - uid: 37398 + components: + - type: Transform + pos: -102.5,180.5 + parent: 2 + - uid: 37399 + components: + - type: Transform + pos: -102.5,181.5 + parent: 2 + - uid: 37400 + components: + - type: Transform + pos: -102.5,182.5 + parent: 2 + - uid: 37401 + components: + - type: Transform + pos: -76.5,191.5 + parent: 2 + - uid: 37402 + components: + - type: Transform + pos: -75.5,191.5 + parent: 2 + - uid: 37403 + components: + - type: Transform + pos: -74.5,191.5 + parent: 2 + - uid: 37404 + components: + - type: Transform + pos: -73.5,191.5 + parent: 2 + - uid: 37405 + components: + - type: Transform + pos: -72.5,191.5 + parent: 2 + - uid: 37406 + components: + - type: Transform + pos: -87.5,187.5 + parent: 2 + - uid: 37407 + components: + - type: Transform + pos: -88.5,187.5 + parent: 2 + - uid: 37408 + components: + - type: Transform + pos: -89.5,187.5 + parent: 2 + - uid: 37409 + components: + - type: Transform + pos: -90.5,187.5 + parent: 2 + - uid: 37410 + components: + - type: Transform + pos: -91.5,187.5 + parent: 2 + - uid: 37411 + components: + - type: Transform + pos: -92.5,187.5 + parent: 2 + - uid: 37412 + components: + - type: Transform + pos: -93.5,187.5 + parent: 2 + - uid: 37413 + components: + - type: Transform + pos: -94.5,187.5 + parent: 2 + - uid: 37414 + components: + - type: Transform + pos: -73.5,186.5 + parent: 2 + - uid: 37415 + components: + - type: Transform + pos: -67.5,186.5 + parent: 2 + - uid: 37416 + components: + - type: Transform + pos: -66.5,186.5 + parent: 2 + - uid: 37417 + components: + - type: Transform + pos: -65.5,186.5 + parent: 2 + - uid: 37418 + components: + - type: Transform + pos: -64.5,186.5 + parent: 2 + - uid: 37419 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 37452 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 37459 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 37460 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 37461 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 37462 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 37463 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 37464 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 37465 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 37466 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 37467 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 37468 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 37469 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 37470 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 37471 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 37472 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 37473 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 37474 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 37475 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 37476 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 37477 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 37478 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 37480 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 37481 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 37482 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 37483 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 +- proto: GroundCannabis + entities: + - uid: 7395 + components: + - type: Transform + parent: 7394 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19058 + components: + - type: Transform + parent: 29732 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GunSafeDisabler + entities: + - uid: 8374 + components: + - type: Transform + pos: 61.5,61.5 + parent: 2 +- proto: GunSafePistolMk58 + entities: + - uid: 8617 + components: + - type: Transform + pos: 60.5,61.5 + parent: 2 +- proto: GunSafeRifleLecter + entities: + - uid: 8349 + components: + - type: Transform + pos: 59.5,58.5 + parent: 2 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 8375 + components: + - type: Transform + pos: 58.5,58.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 16713 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 13386 + - uid: 22074 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 21114 + - uid: 30971 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 30902 + - uid: 37956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 37842 +- proto: GyroscopeMachineCircuitboard + entities: + - uid: 17782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.50355,95.66916 + parent: 2 +- proto: Handcuffs + entities: + - uid: 968 + components: + - type: Transform + pos: -32.36039,-5.4088287 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: 65.69057,47.488777 + parent: 2 + - uid: 11632 + components: + - type: Transform + pos: -41.56269,83.727554 + parent: 2 + - uid: 11633 + components: + - type: Transform + pos: -41.40522,83.513916 + parent: 2 + - uid: 18649 + components: + - type: Transform + pos: -95.54178,36.650093 + parent: 2 + - uid: 22128 + components: + - type: Transform + pos: -75.48276,152.65724 + parent: 2 +- proto: HandheldGPSBasic + entities: + - uid: 1124 + components: + - type: Transform + pos: -39.57162,-12.074748 + parent: 2 +- proto: HandheldHealthAnalyzer + entities: + - uid: 36777 + components: + - type: Transform + pos: -2.5557594,73.43998 + parent: 2 +- proto: HandheldStationMap + entities: + - uid: 4591 + components: + - type: Transform + pos: 71.41337,69.55955 + parent: 2 + - uid: 36555 + components: + - type: Transform + pos: -38.4659,103.65724 + parent: 2 +- proto: HandLabeler + entities: + - uid: 1153 + components: + - type: Transform + pos: -25.446741,-1.3841503 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: -16.664848,-5.467325 + parent: 2 + - uid: 10524 + components: + - type: Transform + pos: -17.475117,84.5181 + parent: 2 + - uid: 20991 + components: + - type: Transform + pos: -73.34652,168.04921 + parent: 2 + - uid: 22856 + components: + - type: Transform + pos: -24.581614,192.61334 + parent: 2 + - uid: 22857 + components: + - type: Transform + pos: -24.390398,192.36595 + parent: 2 +- proto: HappyHonk + entities: + - uid: 1876 + components: + - type: Transform + pos: 4.481044,0.64934576 + parent: 2 + - uid: 21061 + components: + - type: Transform + pos: -68.648415,170.85431 + parent: 2 + - uid: 25821 + components: + - type: Transform + pos: 108.665184,59.764427 + parent: 2 + - uid: 35805 + components: + - type: Transform + pos: -18.460619,63.40415 + parent: 2 +- proto: HarmonicaInstrument + entities: + - uid: 14312 + components: + - type: Transform + pos: -81.24681,103.76185 + parent: 2 +- proto: HeadSkeleton + entities: + - uid: 25288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -133.11008,87.4257 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 7046 + components: + - type: Transform + pos: 64.5,61.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 10313 + components: + - type: Transform + pos: -46.5,92.5 + parent: 2 + - uid: 11703 + components: + - type: Transform + pos: -47.5,92.5 + parent: 2 + - uid: 14235 + components: + - type: Transform + pos: -23.5,99.5 + parent: 2 +- proto: HolofanProjector + entities: + - uid: 23518 + components: + - type: Transform + pos: -105.6635,34.750355 + parent: 2 +- proto: Holopad + entities: + - uid: 4399 + components: + - type: MetaData + name: holopad (Reporter) + - type: Transform + pos: -1.5,86.5 + parent: 2 + - type: Label + currentLabel: Reporter + - type: NameModifier + baseName: holopad + - uid: 6468 + components: + - type: MetaData + name: holopad (Hydpoponic) + - type: Transform + pos: -4.5,59.5 + parent: 2 + - type: Label + currentLabel: Hydpoponic + - type: NameModifier + baseName: holopad + - uid: 9172 + components: + - type: MetaData + name: holopad (HoP) + - type: Transform + pos: -15.5,83.5 + parent: 2 + - type: Label + currentLabel: HoP + - type: NameModifier + baseName: holopad + - uid: 9174 + components: + - type: MetaData + name: holopad (Salvage) + - type: Transform + pos: -44.5,-12.5 + parent: 2 + - type: Label + currentLabel: Salvage + - type: NameModifier + baseName: holopad + - uid: 9176 + components: + - type: MetaData + name: holopad (Security) + - type: Transform + pos: 71.5,59.5 + parent: 2 + - type: Label + currentLabel: Security + - type: NameModifier + baseName: holopad + - uid: 9178 + components: + - type: MetaData + name: holopad (Kitchen) + - type: Transform + pos: -14.5,62.5 + parent: 2 + - type: Label + currentLabel: Kitchen + - type: NameModifier + baseName: holopad + - uid: 9179 + components: + - type: MetaData + name: holopad (Detective) + - type: Transform + pos: 0.5,77.5 + parent: 2 + - type: Label + currentLabel: Detective + - type: NameModifier + baseName: holopad + - uid: 9180 + components: + - type: MetaData + name: holopad (Chapel) + - type: Transform + pos: -54.5,61.5 + parent: 2 + - type: Label + currentLabel: Chapel + - type: NameModifier + baseName: holopad + - uid: 9181 + components: + - type: MetaData + name: holopad (Bartender) + - type: Transform + pos: -32.5,57.5 + parent: 2 + - type: Label + currentLabel: Bartender + - type: NameModifier + baseName: holopad + - uid: 9182 + components: + - type: MetaData + name: holopad (Zookeeper) + - type: Transform + pos: -64.5,66.5 + parent: 2 + - type: Label + currentLabel: Zookeeper + - type: NameModifier + baseName: holopad + - uid: 9183 + components: + - type: MetaData + name: holopad (Lawyer) + - type: Transform + pos: -77.5,74.5 + parent: 2 + - type: Label + currentLabel: Lawyer + - type: NameModifier + baseName: holopad + - uid: 9184 + components: + - type: MetaData + name: holopad (Library) + - type: Transform + pos: -64.5,84.5 + parent: 2 + - type: Label + currentLabel: Library + - type: NameModifier + baseName: holopad + - uid: 9185 + components: + - type: MetaData + name: holopad (CMO) + - type: Transform + pos: -15.5,205.5 + parent: 2 + - type: Label + currentLabel: CMO + - type: NameModifier + baseName: holopad + - uid: 9186 + components: + - type: MetaData + name: holopad (Chemistry) + - type: Transform + pos: -23.5,192.5 + parent: 2 + - type: Label + currentLabel: Chemistry + - type: NameModifier + baseName: holopad + - uid: 9187 + components: + - type: MetaData + name: holopad (Medical) + - type: Transform + pos: -7.5,188.5 + parent: 2 + - type: Label + currentLabel: Medical + - type: NameModifier + baseName: holopad + - uid: 9188 + components: + - type: MetaData + name: holopad (Science 2) + - type: Transform + pos: -71.5,167.5 + parent: 2 + - type: Label + currentLabel: Science 2 + - type: NameModifier + baseName: holopad + - uid: 9189 + components: + - type: MetaData + name: holopad (Science 1) + - type: Transform + pos: -86.5,181.5 + parent: 2 + - type: Label + currentLabel: Science 1 + - type: NameModifier + baseName: holopad + - uid: 9190 + components: + - type: MetaData + name: holopad (RD) + - type: Transform + pos: -87.5,158.5 + parent: 2 + - type: Label + currentLabel: RD + - type: NameModifier + baseName: holopad + - uid: 9191 + components: + - type: MetaData + name: holopad (Hangar) + - type: Transform + pos: -122.5,97.5 + parent: 2 + - type: Label + currentLabel: Hangar + - type: NameModifier + baseName: holopad + - uid: 9192 + components: + - type: MetaData + name: holopad (CE) + - type: Transform + pos: -122.5,53.5 + parent: 2 + - type: Label + currentLabel: CE + - type: NameModifier + baseName: holopad + - uid: 9193 + components: + - type: MetaData + name: holopad (Engineering) + - type: Transform + pos: -116.5,47.5 + parent: 2 + - type: Label + currentLabel: Engineering + - type: NameModifier + baseName: holopad + - uid: 9194 + components: + - type: MetaData + name: holopad (Atmos) + - type: Transform + pos: -108.5,18.5 + parent: 2 + - type: Label + currentLabel: Atmos + - type: NameModifier + baseName: holopad + - uid: 9195 + components: + - type: MetaData + name: holopad (Cargo) + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - type: Label + currentLabel: Cargo + - type: NameModifier + baseName: holopad + - uid: 9196 + components: + - type: MetaData + name: holopad (QM) + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - type: Label + currentLabel: QM + - type: NameModifier + baseName: holopad + - uid: 9198 + components: + - type: MetaData + name: holopad (Permabrig) + - type: Transform + pos: 54.5,24.5 + parent: 2 + - type: Label + currentLabel: Permabrig + - type: NameModifier + baseName: holopad + - uid: 9200 + components: + - type: MetaData + name: holopad (HoS) + - type: Transform + pos: 85.5,63.5 + parent: 2 + - type: Label + currentLabel: HoS + - type: NameModifier + baseName: holopad +- proto: HolopadLongRange + entities: + - uid: 9177 + components: + - type: MetaData + name: long-range holopad (Bridge) + - type: Transform + pos: -36.5,106.5 + parent: 2 + - type: Label + currentLabel: Bridge + - type: NameModifier + baseName: long-range holopad +- proto: Holoprojector + entities: + - uid: 18316 + components: + - type: Transform + pos: -58.536575,153.65407 + parent: 2 +- proto: HospitalCurtains + entities: + - uid: 5371 + components: + - type: Transform + pos: -102.5,145.5 + parent: 2 + - uid: 17359 + components: + - type: Transform + pos: -61.5,111.5 + parent: 2 + - uid: 18571 + components: + - type: Transform + pos: -31.5,67.5 + parent: 2 + - uid: 18597 + components: + - type: Transform + pos: -31.5,71.5 + parent: 2 + - uid: 30972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 30902 + - uid: 30973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 30902 +- proto: HospitalCurtainsOpen + entities: + - uid: 1797 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + pos: 83.5,62.5 + parent: 2 + - uid: 7814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,194.5 + parent: 2 + - uid: 7856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,193.5 + parent: 2 + - uid: 11012 + components: + - type: Transform + pos: -9.5,194.5 + parent: 2 + - uid: 11021 + components: + - type: Transform + pos: -5.5,193.5 + parent: 2 + - uid: 13161 + components: + - type: Transform + pos: -5.5,191.5 + parent: 2 + - uid: 13942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,113.5 + parent: 2 + - uid: 16543 + components: + - type: Transform + pos: -31.5,96.5 + parent: 2 + - uid: 17357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,109.5 + parent: 2 + - uid: 17900 + components: + - type: Transform + pos: -83.5,154.5 + parent: 2 + - uid: 22643 + components: + - type: Transform + pos: -9.5,190.5 + parent: 2 + - uid: 22733 + components: + - type: Transform + pos: 4.5,182.5 + parent: 2 + - uid: 23316 + components: + - type: Transform + pos: -20.5,204.5 + parent: 2 + - uid: 23317 + components: + - type: Transform + pos: -19.5,204.5 + parent: 2 + - uid: 26468 + components: + - type: Transform + pos: 49.5,58.5 + parent: 2 + - uid: 36965 + components: + - type: Transform + pos: -16.5,87.5 + parent: 2 + - uid: 38387 + components: + - type: Transform + pos: -10.5,206.5 + parent: 2 + - uid: 38388 + components: + - type: Transform + pos: -9.5,206.5 + parent: 2 + - uid: 38389 + components: + - type: Transform + pos: -8.5,206.5 + parent: 2 + - uid: 38390 + components: + - type: Transform + pos: -7.5,206.5 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 18708 + components: + - type: Transform + pos: -58.5,172.5 + parent: 2 + - uid: 18710 + components: + - type: Transform + pos: -88.5,152.5 + parent: 2 + - uid: 18717 + components: + - type: Transform + pos: -97.5,148.5 + parent: 2 + - uid: 38285 + components: + - type: Transform + pos: 11.5,198.5 + parent: 2 +- proto: HydroponicsToolClippers + entities: + - uid: 2425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.79599,63.52298 + parent: 2 + - uid: 2638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.79599,63.52298 + parent: 2 + - uid: 4283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.540245,26.51868 + parent: 2 + - uid: 16482 + components: + - type: Transform + pos: 1.441334,65.50586 + parent: 2 + - uid: 17898 + components: + - type: Transform + pos: -3.574791,59.61713 + parent: 2 + - uid: 19671 + components: + - type: Transform + pos: -94.538895,147.24026 + parent: 2 + - uid: 19737 + components: + - type: Transform + pos: -81.53746,155.7006 + parent: 2 +- proto: HydroponicsToolHatchet + entities: + - uid: 19738 + components: + - type: Transform + pos: -81.67244,154.59866 + parent: 2 + - uid: 21471 + components: + - type: Transform + pos: -5.6444206,59.482197 + parent: 2 + - uid: 21506 + components: + - type: Transform + pos: -5.43071,59.707085 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 773 + components: + - type: Transform + pos: 51.42914,25.963123 + parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 4351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.513954,25.55075 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,24.5 + parent: 2 + - uid: 738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,26.5 + parent: 2 + - uid: 933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,24.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,26.5 + parent: 2 + - uid: 5777 + components: + - type: Transform + pos: -7.5,67.5 + parent: 2 + - uid: 5826 + components: + - type: Transform + pos: -9.5,67.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: -3.5,61.5 + parent: 2 + - uid: 10698 + components: + - type: Transform + pos: -9.5,68.5 + parent: 2 + - uid: 11016 + components: + - type: Transform + pos: -5.5,67.5 + parent: 2 + - uid: 11024 + components: + - type: Transform + pos: -5.5,65.5 + parent: 2 + - uid: 11025 + components: + - type: Transform + pos: -3.5,65.5 + parent: 2 + - uid: 11960 + components: + - type: Transform + pos: -3.5,66.5 + parent: 2 + - uid: 11962 + components: + - type: Transform + pos: -5.5,66.5 + parent: 2 + - uid: 12229 + components: + - type: Transform + pos: -8.5,67.5 + parent: 2 + - uid: 13172 + components: + - type: Transform + pos: -5.5,61.5 + parent: 2 + - uid: 13215 + components: + - type: Transform + pos: -3.5,67.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + pos: -5.5,62.5 + parent: 2 + - uid: 14882 + components: + - type: Transform + pos: -80.5,140.5 + parent: 2 + - uid: 14887 + components: + - type: Transform + pos: -80.5,141.5 + parent: 2 + - uid: 14889 + components: + - type: Transform + pos: -80.5,142.5 + parent: 2 + - uid: 16859 + components: + - type: Transform + pos: -8.5,68.5 + parent: 2 + - uid: 17589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,68.5 + parent: 2 + - uid: 36188 + components: + - type: Transform + pos: -5.5,63.5 + parent: 2 + - uid: 36192 + components: + - type: Transform + pos: -3.5,63.5 + parent: 2 + - uid: 36193 + components: + - type: Transform + pos: -3.5,62.5 + parent: 2 +- proto: InflatableDoor + entities: + - uid: 15701 + components: + - type: Transform + pos: -35.5,55.5 + parent: 2 + - uid: 38107 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 36996 +- proto: InflatableDoorStack + entities: + - uid: 12893 + components: + - type: Transform + pos: -116.34634,24.623833 + parent: 2 +- proto: InflatableWall + entities: + - uid: 3717 + components: + - type: Transform + pos: 85.5,60.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + pos: 84.5,57.5 + parent: 2 +- proto: InflatableWallStack + entities: + - uid: 4059 + components: + - type: Transform + pos: -116.67446,24.249916 + parent: 2 +- proto: InflatableWallStack5 + entities: + - uid: 1895 + components: + - type: Transform + pos: -3.4087815,-2.335447 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: -3.6787333,-2.605312 + parent: 2 +- proto: IngotGold + entities: + - uid: 5296 + components: + - type: Transform + pos: -45.5,96.5 + parent: 2 + - type: Stack + count: 5 +- proto: IngotSilver + entities: + - uid: 11750 + components: + - type: Transform + pos: -48.58904,94.102974 + parent: 2 + - type: Stack + count: 5 +- proto: IntercomAll + entities: + - uid: 8703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,129.5 + parent: 2 +- proto: IntercomCommand + entities: + - uid: 13663 + components: + - type: Transform + pos: -45.5,106.5 + parent: 2 + - uid: 38560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,94.5 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 20597 + components: + - type: Transform + pos: -91.5,44.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 15873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,187.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 31599 + components: + - type: Transform + pos: -77.5,160.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 4234 + components: + - type: Transform + pos: 68.5,41.5 + parent: 2 +- proto: IntercomService + entities: + - uid: 43335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,60.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 35908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,1.5 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 10752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,80.5 + parent: 2 +- proto: JetpackBlueFilled + entities: + - uid: 9028 + components: + - type: Transform + pos: -12.5963745,84.5351 + parent: 2 + - uid: 9029 + components: + - type: Transform + pos: -12.345448,84.66713 + parent: 2 + - uid: 9030 + components: + - type: Transform + pos: -12.569962,84.759544 + parent: 2 + - uid: 12216 + components: + - type: Transform + pos: -44.585182,101.43793 + parent: 2 + - uid: 28886 + components: + - type: Transform + pos: -101.67387,47.919712 + parent: 2 + - uid: 28888 + components: + - type: Transform + pos: -101.70569,49.460007 + parent: 2 +- proto: JetpackMiniFilled + entities: + - uid: 11597 + components: + - type: Transform + pos: -39.5489,-15.375725 + parent: 2 + - uid: 15052 + components: + - type: Transform + pos: -48.50133,98.46442 + parent: 2 +- proto: JetpackSecurityFilled + entities: + - uid: 29138 + components: + - type: Transform + pos: 78.373314,35.624657 + parent: 2 + - uid: 37099 + components: + - type: Transform + pos: 78.346245,34.58789 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 4993 + components: + - type: Transform + pos: -17.5,67.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: -15.5,67.5 + parent: 2 +- proto: KitchenKnife + entities: + - uid: 13142 + components: + - type: Transform + pos: -15.43778,65.551636 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 4340 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + pos: 74.5,63.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + pos: -16.5,65.5 + parent: 2 + - uid: 11116 + components: + - type: Transform + pos: -17.5,69.5 + parent: 2 + - uid: 16681 + components: + - type: Transform + pos: -5.5,199.5 + parent: 2 + - uid: 27821 + components: + - type: Transform + pos: -79.5,33.5 + parent: 2 + - uid: 28656 + components: + - type: Transform + pos: -105.5,59.5 + parent: 2 + - uid: 28898 + components: + - type: Transform + pos: -112.5,43.5 + parent: 2 + - uid: 38074 + components: + - type: Transform + pos: -78.5,92.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 2610 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 11119 + components: + - type: Transform + pos: -15.5,69.5 + parent: 2 + - uid: 12067 + components: + - type: Transform + pos: -14.5,65.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + pos: -0.5,69.5 + parent: 2 + - uid: 22848 + components: + - type: Transform + pos: -23.5,194.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 12969 + components: + - type: Transform + pos: -9.5,63.5 + parent: 2 + - uid: 12970 + components: + - type: Transform + pos: -8.5,63.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + pos: -42.5,57.5 + parent: 2 + - uid: 15527 + components: + - type: Transform + pos: -41.5,57.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 8700 + components: + - type: Transform + pos: 54.637856,26.26635 + parent: 2 +- proto: Lamp + entities: + - uid: 1700 + components: + - type: Transform + pos: -27.641533,-5.495846 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: 26.40204,19.868414 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: 94.44699,53.759735 + parent: 2 + - uid: 11028 + components: + - type: Transform + pos: -43.47523,103.69351 + parent: 2 + - type: Physics + canCollide: True + - uid: 12190 + components: + - type: Transform + pos: -52.539528,63.7661 + parent: 2 + - type: Physics + canCollide: True + - uid: 14627 + components: + - type: Transform + pos: -77.55389,83.7612 + parent: 2 + - uid: 14629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.52711,83.78369 + parent: 2 + - uid: 17806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.216324,37.899822 + parent: 2 + - uid: 18614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.443544,178.34816 + parent: 2 + - uid: 20188 + components: + - type: Transform + pos: -81.65145,180.75948 + parent: 2 + - uid: 20375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.427826,165.7868 + parent: 2 + - uid: 20497 + components: + - type: Transform + pos: -97.3696,170.79243 + parent: 2 + - uid: 20918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.29333,175.69159 + parent: 2 + - uid: 22571 + components: + - type: Transform + pos: -5.5738497,179.57677 + parent: 2 + - uid: 23352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.389664,207.76599 + parent: 2 + - uid: 23575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.294724,55.583107 + parent: 2 + - uid: 28125 + components: + - type: Transform + pos: 70.20698,43.853382 + parent: 2 + - type: Physics + canCollide: True + - uid: 28256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.35695,141.6759 + parent: 2 + - uid: 29560 + components: + - type: Transform + pos: -119.6511,93.74292 + parent: 2 + - uid: 34585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.524574,88.66599 + parent: 2 + - uid: 36186 + components: + - type: Transform + pos: -2.6314583,86.59025 + parent: 2 +- proto: LampBanana + entities: + - uid: 14078 + components: + - type: Transform + pos: -70.42365,92.67868 + parent: 2 +- proto: LampGold + entities: + - uid: 11088 + components: + - type: Transform + pos: -1.4572706,76.94417 + parent: 2 + - uid: 11423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.45829082,76.834145 + parent: 2 + - uid: 14344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.47256,81.89669 + parent: 2 + - uid: 14458 + components: + - type: Transform + pos: -62.470184,87.83896 + parent: 2 + - uid: 14541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.65618,81.6983 + parent: 2 + - uid: 14758 + components: + - type: Transform + pos: -74.6243,75.90899 + parent: 2 + - uid: 27061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.456326,101.09242 + parent: 2 + - uid: 28629 + components: + - type: Transform + pos: -120.39788,52.708584 + parent: 2 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 28630 + - type: Physics + canCollide: True +- proto: LampInterrogator + entities: + - uid: 10919 + components: + - type: Transform + pos: 61.756172,45.0701 + parent: 2 +- proto: LandMineExplosive + entities: + - uid: 26336 + components: + - type: Transform + pos: -130.26373,82.80991 + parent: 2 +- proto: Lantern + entities: + - uid: 1026 + components: + - type: Transform + pos: -58.519203,63.713875 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -60.514763,63.713875 + parent: 2 + - uid: 14328 + components: + - type: Transform + pos: -72.88146,104.08956 + parent: 2 + - uid: 17672 + components: + - type: Transform + pos: -87.40864,100.6839 + parent: 2 + - uid: 17891 + components: + - type: Transform + pos: -66.66343,161.84158 + parent: 2 + - uid: 18562 + components: + - type: Transform + pos: -66.382225,161.66167 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 20993 + components: + - type: Transform + pos: -73.3808,169.03949 + parent: 2 +- proto: LauncherCreamPie + entities: + - uid: 33715 + components: + - type: Transform + pos: 7.456684,75.702156 + parent: 2 +- proto: LeavesCannabis + entities: + - uid: 7396 + components: + - type: Transform + parent: 7394 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LeavesCannabisDried + entities: + - uid: 2084 + components: + - type: Transform + pos: 48.42627,45.51488 + parent: 2 + - type: Stack + count: 5 + - uid: 34617 + components: + - type: Transform + pos: 42.46634,38.536983 + parent: 2 + - uid: 36685 + components: + - type: Transform + pos: 49.518173,42.42555 + parent: 2 + - type: Stack + count: 5 +- proto: LeftArmBorg + entities: + - uid: 38270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.02609,182.28293 + parent: 2 +- proto: LeftArmSkeleton + entities: + - uid: 3726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.30249,67.68201 + parent: 2 + - uid: 26339 + components: + - type: Transform + pos: -134.37924,87.75849 + parent: 2 +- proto: LeftHandSkeleton + entities: + - uid: 26337 + components: + - type: Transform + pos: -134.35797,87.696495 + parent: 2 +- proto: LeftLegSkeleton + entities: + - uid: 26045 + components: + - type: Transform + pos: -131.90509,85.363 + parent: 2 +- proto: LightBulbBroken + entities: + - uid: 1099 + components: + - type: Transform + pos: -31.43416,-19.189983 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: 29.416492,17.27271 + parent: 2 + - uid: 6489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.46831,22.476456 + parent: 2 + - uid: 28185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.4985,142.71852 + parent: 2 +- proto: Lighter + entities: + - uid: 13588 + components: + - type: Transform + pos: -27.244879,101.19113 + parent: 2 +- proto: LightHeadBorg + entities: + - uid: 23197 + components: + - type: Transform + pos: -76.46475,36.67176 + parent: 2 +- proto: LightReplacer + entities: + - uid: 25421 + components: + - type: Transform + pos: -102.596695,49.117046 + parent: 2 +- proto: LightTubeBroken + entities: + - uid: 1102 + components: + - type: Transform + pos: -36.277912,-18.564983 + parent: 2 + - uid: 2692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.682117,16.007088 + parent: 2 + - uid: 2979 + components: + - type: Transform + parent: 2978 + - type: Physics + canCollide: False + - uid: 18598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.45682,156.3921 + parent: 2 + - uid: 19688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.69182,147.52245 + parent: 2 + - uid: 19691 + components: + - type: Transform + pos: -85.42294,152.49246 + parent: 2 + - uid: 19694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.22689,148.5232 + parent: 2 + - uid: 19696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.41281,150.56967 + parent: 2 + - uid: 23652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.716059,183.65678 + parent: 2 + - uid: 23670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.4889555,184.59006 + parent: 2 + - uid: 34613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -129.53894,88.26722 + parent: 2 +- proto: LiquidNitrogenCanister + entities: + - uid: 7033 + components: + - type: Transform + pos: -112.5,15.5 + parent: 2 + - uid: 7899 + components: + - type: Transform + pos: -102.5,32.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + pos: -109.5,15.5 + parent: 2 + - uid: 12325 + components: + - type: Transform + pos: -68.5,149.5 + parent: 2 + - uid: 17475 + components: + - type: Transform + pos: 9.5,174.5 + parent: 2 +- proto: LiquidOxygenCanister + entities: + - uid: 4173 + components: + - type: Transform + pos: -69.5,149.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + pos: -107.5,15.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + pos: -104.5,15.5 + parent: 2 + - uid: 10924 + components: + - type: Transform + pos: -102.5,33.5 + parent: 2 + - uid: 21294 + components: + - type: Transform + pos: 9.5,175.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 673: - - - Pressed - - Toggle - 5433: - - - Pressed - - Toggle - 12779: - - - Pressed - - Toggle - 16335: - - - Pressed - - Toggle - 543: - - - Pressed - - Toggle - 10910: - - - Pressed - - Toggle - proto: LockerAtmosphericsFilledHardsuit entities: - - uid: 14001 + - uid: 5958 components: - type: Transform - pos: 8.5,-49.5 + pos: -104.5,37.5 parent: 2 - - uid: 17027 + - uid: 6026 components: - type: Transform - pos: 5.5,-49.5 + pos: -105.5,37.5 parent: 2 - - uid: 19676 + - uid: 6178 components: - type: Transform - pos: 6.5,-49.5 + pos: -103.5,37.5 parent: 2 - - uid: 19677 - components: - - type: Transform - pos: 7.5,-49.5 - parent: 2 -- proto: LockerBlueShieldEnsignFilled +- proto: LockerBoozeFilled entities: - - uid: 10833 + - uid: 11054 components: - type: Transform - pos: -12.5,-16.5 + pos: -33.5,58.5 parent: 2 -- proto: LockerBooze +- proto: LockerBotanistFilled entities: - - uid: 20988 + - uid: 13265 components: - type: Transform - pos: 18.5,41.5 + pos: -0.5,68.5 + parent: 2 + - uid: 13266 + components: + - type: Transform + pos: -0.5,67.5 + parent: 2 + - uid: 13267 + components: + - type: Transform + pos: -0.5,66.5 + parent: 2 + - uid: 19712 + components: + - type: Transform + pos: -64.5,161.5 + parent: 2 +- proto: LockerBotanistLoot + entities: + - uid: 17598 + components: + - type: Transform + pos: -64.5,169.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14673 + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 24098 + components: + - type: Transform + pos: 14.5,200.5 + parent: 2 +- proto: LockerCaptainFilledNoLaser + entities: + - uid: 9032 + components: + - type: Transform + pos: -32.5,98.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 22881 + components: + - type: Transform + pos: -22.5,190.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 moles: - 1.7459903 - 6.568249 @@ -143922,65 +139934,17 @@ entities: showEnts: False occludes: True ents: - - 13946 - - 21097 - - 21084 - - 21083 - - 21001 - - 21326 + - 21180 + - 21181 + - 21218 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: LockerBoozeFilled - entities: - - uid: 19680 + - uid: 23370 components: - type: Transform - pos: 23.5,3.5 - parent: 2 - - uid: 19681 - components: - - type: Transform - pos: 25.5,3.5 - parent: 2 -- proto: LockerBotanistFilled - entities: - - uid: 19683 - components: - - type: Transform - pos: 49.5,0.5 - parent: 2 - - uid: 19684 - components: - - type: Transform - pos: 49.5,-0.5 - parent: 2 -- proto: LockerBrigmedicFilled - entities: - - uid: 19685 - components: - - type: Transform - pos: -15.5,31.5 - parent: 2 - - uid: 24644 - components: - - type: Transform - pos: -15.5,30.5 - parent: 2 -- proto: LockerCaptainFilledNoLaser - entities: - - uid: 19686 - components: - - type: Transform - pos: 8.5,-25.5 - parent: 2 -- proto: LockerChemistryFilled - entities: - - uid: 19687 - components: - - type: Transform - pos: 22.5,-22.5 + pos: -24.5,190.5 parent: 2 - type: EntityStorage air: @@ -143988,280 +139952,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerChiefEngineerFilled - entities: - - uid: 23328 - components: - - type: Transform - pos: 9.5,-67.5 - parent: 2 -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 8999 - components: - - type: Transform - pos: 34.5,-43.5 - parent: 2 -- proto: LockerClown - entities: - - uid: 19690 - components: - - type: Transform - pos: 31.5,22.5 - parent: 2 -- proto: LockerDetectiveFilled - entities: - - uid: 20948 - components: - - type: Transform - pos: 15.5,19.5 - parent: 2 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 6561 - components: - - type: Transform - pos: 26.5,29.5 - parent: 2 - - uid: 19693 - components: - - type: Transform - pos: 84.5,-44.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 25134 - components: - - type: Transform - pos: -10.5,-76.5 - parent: 2 - - uid: 25135 - components: - - type: Transform - pos: -7.5,-67.5 - parent: 2 -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 19695 - components: - - type: Transform - pos: 2.5,-59.5 - parent: 2 - - uid: 19696 - components: - - type: Transform - pos: 2.5,-63.5 - parent: 2 - - uid: 19697 - components: - - type: Transform - pos: 1.5,-63.5 - parent: 2 - - uid: 19698 - components: - - type: Transform - pos: 1.5,-59.5 - parent: 2 - - uid: 19699 - components: - - type: Transform - pos: 2.5,-61.5 - parent: 2 - - uid: 19700 - components: - - type: Transform - pos: 1.5,-61.5 - parent: 2 - - uid: 19701 - components: - - type: Transform - pos: 1.5,-65.5 - parent: 2 - - uid: 19702 - components: - - type: Transform - pos: 1.5,-66.5 - parent: 2 - - uid: 23469 - components: - - type: Transform - pos: 1.5,-67.5 - parent: 2 -- proto: LockerEvidence - entities: - - uid: 10190 - components: - - type: Transform - pos: 0.5,28.5 - parent: 2 - - uid: 10191 - components: - - type: Transform - pos: 1.5,28.5 - parent: 2 - - uid: 11446 - components: - - type: Transform - pos: -6.5,41.5 - parent: 2 - - uid: 16641 - components: - - type: Transform - pos: -18.5,27.5 - parent: 2 - - uid: 17474 - components: - - type: Transform - pos: -7.5,41.5 - parent: 2 - - uid: 18738 - components: - - type: Transform - pos: -4.5,41.5 - parent: 2 - - uid: 18884 - components: - - type: Transform - pos: -5.5,41.5 - parent: 2 - - uid: 19207 - components: - - type: Transform - pos: -18.5,26.5 - parent: 2 - - uid: 19707 - components: - - type: Transform - pos: -8.5,41.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19709 - components: - - type: Transform - pos: -2.5,28.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19710 - components: - - type: Transform - pos: -1.5,28.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19713 - components: - - type: Transform - pos: 10.5,40.5 - parent: 2 -- proto: LockerFreezer - entities: - - uid: 19641 - components: - - type: Transform - pos: -7.5,52.5 - parent: 2 - - type: Lock - locked: False - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -144278,20 +139970,26 @@ entities: showEnts: False occludes: True ents: - - 19642 + - 21256 + - 22317 + - 22318 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 19714 +- proto: LockerChiefEngineerFilled + entities: + - uid: 8699 components: - type: Transform - pos: 40.5,-4.5 + pos: -123.5,55.5 parent: 2 - - uid: 19715 +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 23298 components: - type: Transform - pos: -38.5,-43.5 + pos: -19.5,206.5 parent: 2 - type: EntityStorage air: @@ -144299,8 +139997,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -144311,48 +140009,19 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 19716 - components: - - type: Transform - pos: 40.5,0.5 - parent: 2 - - uid: 19717 - components: - - type: Transform - pos: 40.5,-2.5 - parent: 2 - - uid: 19718 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 2 -- proto: LockerFreezerVaultFilled +- proto: LockerClown entities: - - uid: 24331 + - uid: 5584 components: - type: Transform - pos: -2.5,-21.5 + pos: -71.5,92.5 parent: 2 -- proto: LockerHeadOfPersonnelFilled +- proto: LockerDetectiveFilled entities: - - uid: 19720 + - uid: 11154 components: - type: Transform - pos: -11.5,-27.5 + pos: -3.5,78.5 parent: 2 - type: EntityStorage air: @@ -144360,8 +140029,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 2.146141 - - 8.073578 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -144372,1658 +140041,36 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerHeadOfSecurityFilled +- proto: LockerElectricalSuppliesFilled entities: - - uid: 19721 + - uid: 15062 components: - type: Transform - pos: 12.5,44.5 + pos: -48.5,103.5 parent: 2 -- proto: LockerMedical - entities: - - uid: 19722 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 2 - - uid: 19723 - components: - - type: Transform - pos: 24.5,-30.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedicalFilled - entities: - - uid: 19724 - components: - - type: Transform - pos: 35.5,-16.5 - parent: 2 - - uid: 19725 - components: - - type: Transform - pos: 35.5,-17.5 - parent: 2 - - uid: 19726 - components: - - type: Transform - pos: 35.5,-18.5 - parent: 2 - - uid: 20949 - components: - - type: Transform - pos: 35.5,-20.5 - parent: 2 -- proto: LockerMedicineFilled - entities: - - uid: 19727 - components: - - type: Transform - pos: 18.5,-36.5 - parent: 2 - - uid: 19728 - components: - - type: Transform - pos: 31.5,-27.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19729 - components: - - type: Transform - pos: 27.5,-23.5 - parent: 2 -- proto: LockerMime - entities: - - uid: 19730 - components: - - type: Transform - pos: 37.5,23.5 - parent: 2 -- proto: LockerParamedicFilled - entities: - - uid: 21519 - components: - - type: Transform - pos: 44.5,-26.5 - parent: 2 - - uid: 25364 - components: - - type: Transform - pos: 43.5,-26.5 - parent: 2 -- proto: LockerPilotFilledHardsuit - entities: - - uid: 30151 - components: - - type: Transform - pos: 26.5,40.5 - parent: 2 -- proto: LockerQuarterMasterFilled - entities: - - uid: 19733 - components: - - type: Transform - pos: -30.5,-25.5 - parent: 2 -- proto: LockerResearchDirectorFilled - entities: - - uid: 1183 - components: - - type: Transform - pos: 63.5,-37.5 - parent: 2 -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 1850 - components: - - type: Transform - pos: -33.5,-36.5 - parent: 2 - - uid: 3586 - components: - - type: Transform - pos: -31.5,-36.5 - parent: 2 - - uid: 3587 - components: - - type: Transform - pos: -32.5,-36.5 - parent: 2 - - uid: 25861 - components: - - type: Transform - pos: -34.5,-36.5 - parent: 2 -- proto: LockerScienceFilled - entities: - - uid: 13999 - components: - - type: Transform - pos: 72.5,-31.5 - parent: 2 - - uid: 19738 - components: - - type: Transform - pos: 71.5,-31.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19739 - components: - - type: Transform - pos: 70.5,-31.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19740 - components: - - type: Transform - pos: 69.5,-31.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19741 - components: - - type: Transform - pos: 65.5,-51.5 - parent: 2 - - uid: 19742 - components: - - type: Transform - pos: 65.5,-50.5 - parent: 2 - - uid: 19743 - components: - - type: Transform - pos: 72.5,-49.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerSecurityFilled - entities: - - uid: 19746 - components: - - type: Transform - pos: 8.5,39.5 - parent: 2 - - uid: 19747 - components: - - type: Transform - pos: 8.5,40.5 - parent: 2 - - uid: 19748 - components: - - type: Transform - pos: 8.5,41.5 - parent: 2 - - uid: 19749 - components: - - type: Transform - pos: 8.5,42.5 - parent: 2 - - uid: 19750 - components: - - type: Transform - pos: 8.5,38.5 - parent: 2 - - uid: 19751 - components: - - type: Transform - pos: 6.5,40.5 - parent: 2 - - uid: 19752 - components: - - type: Transform - pos: 6.5,42.5 - parent: 2 - - uid: 19754 - components: - - type: Transform - pos: 6.5,39.5 - parent: 2 - - uid: 19755 - components: - - type: Transform - pos: 6.5,38.5 - parent: 2 - - uid: 20939 - components: - - type: Transform - pos: 6.5,41.5 - parent: 2 -- proto: LockerSteel - entities: - - uid: 31328 - components: - - type: Transform - pos: 59.5,-81.5 - parent: 2 -- proto: LockerWardenFilled - entities: - - uid: 19757 - components: - - type: Transform - pos: -2.5,30.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 2.146141 - - 8.073578 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 204 - components: - - type: Transform - pos: -7.5,-66.5 - parent: 2 - - uid: 19760 - components: - - type: Transform - pos: -20.5,-72.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 25131 - components: - - type: Transform - pos: -11.5,-76.5 - parent: 2 -- proto: LootSpawnerIndustrial - entities: - - uid: 3487 - components: - - type: Transform - pos: 50.5,-68.5 - parent: 2 - - uid: 3688 - components: - - type: Transform - pos: 51.5,-68.5 - parent: 2 - - uid: 4331 - components: - - type: Transform - pos: 50.5,-68.5 - parent: 2 - - uid: 4344 - components: - - type: Transform - pos: 51.5,-68.5 - parent: 2 -- proto: LootSpawnerMaterials - entities: - - uid: 296 - components: - - type: Transform - pos: 4.5,32.5 - parent: 2 - - uid: 11321 - components: - - type: Transform - pos: 4.5,32.5 - parent: 2 - - uid: 11356 - components: - - type: Transform - pos: 4.5,32.5 - parent: 2 - - uid: 12421 - components: - - type: Transform - pos: 4.5,32.5 - parent: 2 -- proto: LootSpawnerMaterialsHighValue - entities: - - uid: 10574 - components: - - type: Transform - pos: 4.5,32.5 - parent: 2 - - uid: 11354 - components: - - type: Transform - pos: 4.5,32.5 - parent: 2 -- proto: LootSpawnerMaterialsSupplementary - entities: - - uid: 31579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-80.5 - parent: 2 -- proto: LootSpawnerMaterialsSurplus - entities: - - uid: 3470 - components: - - type: Transform - pos: 50.5,-70.5 - parent: 2 - - uid: 27869 - components: - - type: Transform - pos: 54.5,-72.5 - parent: 2 - - uid: 27876 - components: - - type: Transform - pos: 50.5,-71.5 - parent: 2 - - uid: 31483 - components: - - type: Transform - pos: 57.5,-81.5 - parent: 2 -- proto: MachineAnomalyGenerator - entities: - - uid: 19761 - components: - - type: Transform - pos: 76.5,-51.5 - parent: 2 -- proto: MachineAnomalyVessel - entities: - - uid: 19762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-49.5 - parent: 2 - - type: CMExplosionEffect - - uid: 19763 - components: - - type: Transform - pos: 70.5,-49.5 - parent: 2 - - type: CMExplosionEffect -- proto: MachineAPE - entities: - - uid: 19764 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-56.5 - parent: 2 - - uid: 19765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-57.5 - parent: 2 - - uid: 19767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-57.5 - parent: 2 - - uid: 19768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-56.5 - parent: 2 -- proto: MachineArtifactAnalyzer - entities: - - uid: 9766 - components: - - type: Transform - pos: 74.5,-35.5 - parent: 2 - - uid: 12017 - components: - - type: Transform - pos: 70.5,-35.5 - parent: 2 -- proto: MachineCentrifuge - entities: - - uid: 19771 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 2 - - uid: 28198 - components: - - type: Transform - pos: -13.5,33.5 - parent: 2 -- proto: MachineElectrolysisUnit - entities: - - uid: 17470 - components: - - type: Transform - pos: -13.5,32.5 - parent: 2 - - uid: 19772 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 2 -- proto: MachineFlatpacker - entities: - - uid: 21067 - components: - - type: Transform - pos: 71.5,-19.5 - parent: 2 -- proto: MachineFrame - entities: - - uid: 24393 - components: - - type: Transform - pos: -36.5,46.5 - parent: 2 - - uid: 24395 - components: - - type: Transform - pos: -34.5,46.5 - parent: 2 - - uid: 30286 - components: - - type: Transform - pos: -38.5,42.5 - parent: 2 - - uid: 30356 - components: - - type: Transform - pos: -34.5,38.5 - parent: 2 -- proto: MachineFrameDestroyed - entities: - - uid: 19776 - components: - - type: Transform - pos: -52.5,5.5 - parent: 2 -- proto: MachineMaterialSilo - entities: - - uid: 32075 - components: - - type: Transform - pos: 69.5,-24.5 - parent: 2 -- proto: MagazineDeagle - entities: - - uid: 19777 - components: - - type: Transform - pos: 18.51037,43.445023 - parent: 2 - - uid: 19778 - components: - - type: Transform - pos: 18.690928,43.458916 - parent: 2 -- proto: MagazineG36 - entities: - - uid: 24716 - components: - - type: Transform - pos: 1.437089,45.444435 - parent: 2 - - uid: 24717 - components: - - type: Transform - pos: 1.499589,45.600685 - parent: 2 - - uid: 24718 - components: - - type: Transform - pos: 1.608964,45.444435 - parent: 2 - - uid: 24719 - components: - - type: Transform - pos: 1.374589,46.52256 - parent: 2 - - uid: 24720 - components: - - type: Transform - pos: 1.483964,46.694435 - parent: 2 - - uid: 24723 - components: - - type: Transform - pos: 1.577714,46.49131 - parent: 2 - - uid: 24724 - components: - - type: Transform - pos: 1.452714,47.538185 - parent: 2 - - uid: 24725 - components: - - type: Transform - pos: 1.530839,47.725685 - parent: 2 - - uid: 24726 - components: - - type: Transform - pos: 1.593339,47.569435 - parent: 2 -- proto: MagazineLightRifle - entities: - - uid: 450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.441553,43.467346 - parent: 2 - - uid: 11017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.582541,43.47094 - parent: 2 - - uid: 23588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.441916,43.47094 - parent: 2 - - uid: 27453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.606276,43.5 - parent: 2 -- proto: MailBag - entities: - - uid: 32131 - components: - - type: Transform - pos: -18.489405,-15.572718 - parent: 2 -- proto: MailingUnit - entities: - - uid: 19794 - components: - - type: Transform - pos: -11.5,-26.5 - parent: 2 - - type: MailingUnit - tag: hop - - type: Configuration - config: - tag: hop - - uid: 19795 - components: - - type: Transform - pos: 5.5,28.5 - parent: 2 - - type: MailingUnit - tag: security - - type: Configuration - config: - tag: security - - uid: 19796 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 2 - - type: MailingUnit - tag: medical - - type: Configuration - config: - tag: medical - - uid: 19799 - components: - - type: Transform - pos: 69.5,-16.5 - parent: 2 - - type: MailingUnit - tag: science - - uid: 20950 - components: - - type: Transform - pos: -25.5,-27.5 - parent: 2 - - type: MailingUnit - tag: mailroom - - uid: 21677 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 2 - - type: MailingUnit - tag: bridge - - uid: 21763 - components: - - type: Transform - pos: 7.5,-61.5 - parent: 2 - - type: MailingUnit - tag: engineering -- proto: MaintenanceFluffSpawner - entities: - - uid: 19800 - components: - - type: Transform - pos: -35.5,-51.5 - parent: 2 - - uid: 19801 - components: - - type: Transform - pos: 60.5,19.5 - parent: 2 - - uid: 19802 - components: - - type: Transform - pos: 62.5,19.5 - parent: 2 - - uid: 19803 - components: - - type: Transform - pos: -18.5,-65.5 - parent: 2 - - uid: 19805 - components: - - type: Transform - pos: -8.5,53.5 - parent: 2 - - uid: 19806 - components: - - type: Transform - pos: -4.5,-48.5 - parent: 2 -- proto: MaintenancePlantSpawner - entities: - - uid: 19809 - components: - - type: Transform - pos: 41.5,-66.5 - parent: 2 - - uid: 19810 - components: - - type: Transform - pos: 82.5,-37.5 - parent: 2 -- proto: MaintenanceToolSpawner - entities: - - uid: 19811 - components: - - type: Transform - pos: 15.5,-34.5 - parent: 2 - - uid: 19812 - components: - - type: Transform - pos: -26.5,-43.5 - parent: 2 - - uid: 19813 - components: - - type: Transform - pos: -36.5,-48.5 - parent: 2 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 19814 - components: - - type: Transform - pos: -19.5,14.5 - parent: 2 -- proto: MaintsRoomMarker - entities: - - uid: 32108 - components: - - type: Transform - pos: 86.5,-63.5 - parent: 2 -- proto: Mannequin - entities: - - uid: 21940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: 22075 - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 22426 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: 22066 - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 22268 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: 22780 - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 22065 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: 22849 - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: 22834 - - type: DiseaseTempImmune - prob: 0.35 - - uid: 22898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-31.5 - parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: 22904 - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 23189 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: 23226 - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 23223 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: 23206 - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 23185 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: 23210 - - type: DiseaseTempImmune - prob: 0.35 - - uid: 23597 - components: - - type: Transform - pos: 13.5,45.5 - parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: 23606 - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 11300 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 23621 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: 23625 - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 11189 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: 30331 - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null -- proto: Matchbox - entities: - - uid: 24136 - components: - - type: Transform - pos: 14.355808,37.620766 - parent: 2 -- proto: MatchstickSpent - entities: - - uid: 24625 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.340183,37.245766 - parent: 2 -- proto: MaterialCloth - entities: - - uid: 19816 - components: - - type: Transform - pos: -9.540112,-23.395523 - parent: 2 -- proto: MaterialDiamond1 - entities: - - uid: 24327 - components: - - type: Transform - pos: -2.378912,-22.782017 - parent: 2 -- proto: MaterialDurathread - entities: - - uid: 19818 - components: - - type: Transform - pos: -9.321362,-23.629898 - parent: 2 -- proto: MaterialWoodPlank - entities: - - uid: 19819 - components: - - type: Transform - pos: 62.54538,-43.95337 - parent: 2 -- proto: MaterialWoodPlank1 - entities: - - uid: 30493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.485535,25.437023 - parent: 2 - - uid: 30535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.50637,27.582857 - parent: 2 - - uid: 30537 - components: - - type: Transform - pos: -36.50637,23.582857 - parent: 2 - - uid: 30543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.485535,23.499523 - parent: 2 - - uid: 30544 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.214706,27.332857 - parent: 2 -- proto: MatterBinStockPart - entities: - - uid: 19822 - components: - - type: Transform - pos: -10.435738,-39.009453 - parent: 2 -- proto: Mattress - entities: - - uid: 7865 - components: - - type: Transform - pos: -54.5,-11.5 - parent: 2 - - uid: 7881 - components: - - type: Transform - pos: -54.5,-10.5 - parent: 2 - - uid: 7940 - components: - - type: Transform - pos: -55.5,-11.5 - parent: 2 - - uid: 16434 - components: - - type: Transform - pos: -54.5,-9.5 - parent: 2 - - uid: 22537 - components: - - type: Transform - pos: -55.5,-10.5 - parent: 2 - - uid: 22723 - components: - - type: Transform - pos: -55.5,-9.5 - parent: 2 -- proto: MedicalBed - entities: - - uid: 1088 - components: - - type: Transform - pos: 24.5,-28.5 - parent: 2 - - uid: 1090 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 2 - - uid: 1100 - components: - - type: Transform - pos: 44.5,-58.5 - parent: 2 - - uid: 1104 - components: - - type: Transform - pos: 46.5,-58.5 - parent: 2 - - uid: 1105 - components: - - type: Transform - pos: 24.5,-27.5 - parent: 2 - - uid: 16675 - components: - - type: Transform - pos: -11.5,32.5 - parent: 2 - - uid: 19824 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 2 - - uid: 19825 - components: - - type: Transform - pos: 29.5,-36.5 - parent: 2 - - uid: 19826 - components: - - type: Transform - pos: 32.5,-36.5 - parent: 2 - - uid: 19827 - components: - - type: Transform - pos: 30.5,-27.5 - parent: 2 - - uid: 19828 - components: - - type: Transform - pos: 30.5,-36.5 - parent: 2 - - uid: 25412 - components: - - type: Transform - pos: -11.5,33.5 - parent: 2 -- proto: MedicalTechFab - entities: - - uid: 19829 - components: - - type: Transform - pos: 38.5,-27.5 - parent: 2 -- proto: MedkitBruteFilled - entities: - - uid: 19830 - components: - - type: Transform - pos: 62.445473,12.47963 - parent: 2 - - uid: 19831 - components: - - type: Transform - pos: 40.81253,-29.384502 - parent: 2 - - uid: 19832 - components: - - type: Transform - pos: 40.90628,-29.556377 - parent: 2 -- proto: MedkitBurnFilled - entities: - - uid: 19833 - components: - - type: Transform - pos: 41.515656,-29.400127 - parent: 2 - - uid: 19834 - components: - - type: Transform - pos: -59.651424,18.448038 - parent: 2 - - uid: 19835 - components: - - type: Transform - pos: 41.609406,-29.587627 - parent: 2 -- proto: MedkitCombatFilled - entities: - - uid: 19836 - components: - - type: Transform - pos: -14.21416,29.380013 - parent: 2 - - uid: 19838 - components: - - type: Transform - pos: -10.499985,-14.500264 - parent: 2 -- proto: MedkitFilled - entities: - - uid: 17699 - components: - - type: Transform - pos: 72.54014,-46.49642 - parent: 2 - - uid: 18197 - components: - - type: Transform - pos: 59.566418,-29.463865 - parent: 2 - - uid: 19842 - components: - - type: Transform - pos: 59.50506,-20.978178 - parent: 2 - - uid: 19843 - components: - - type: Transform - pos: -21.951458,-9.352496 - parent: 2 - - uid: 19844 - components: - - type: Transform - pos: -41.335575,1.3768375 - parent: 2 - - uid: 19845 - components: - - type: Transform - pos: -28.5,-27.5 - parent: 2 - - uid: 19846 - components: - - type: Transform - pos: 28.490118,-25.47996 - parent: 2 - - uid: 20073 - components: - - type: Transform - pos: 4.522112,-7.3002453 - parent: 2 -- proto: MedkitOxygenFilled - entities: - - uid: 19847 - components: - - type: Transform - pos: 38.75003,-29.556377 - parent: 2 - - uid: 19848 - components: - - type: Transform - pos: 38.68753,-29.353252 - parent: 2 - - uid: 19849 - components: - - type: Transform - pos: -14.729785,29.380013 - parent: 2 - - uid: 19850 - components: - - type: Transform - pos: -20.326458,-9.331663 - parent: 2 -- proto: MedkitRadiationFilled - entities: - - uid: 19851 - components: - - type: Transform - pos: 39.390656,-29.400127 - parent: 2 - - uid: 19852 - components: - - type: Transform - pos: -14.71416,29.723763 - parent: 2 - - uid: 19853 - components: - - type: Transform - pos: 39.46878,-29.572002 - parent: 2 -- proto: MedkitToxinFilled - entities: - - uid: 19855 - components: - - type: Transform - pos: -14.198535,29.723763 - parent: 2 - - uid: 19856 - components: - - type: Transform - pos: 40.12503,-29.431377 - parent: 2 - - uid: 19857 - components: - - type: Transform - pos: 40.21878,-29.572002 - parent: 2 -- proto: MeteorRock - entities: - - uid: 1364 - components: - - type: Transform - pos: 47.5,-80.5 - parent: 2 - - uid: 1370 - components: - - type: Transform - pos: 47.5,-78.5 - parent: 2 - - uid: 10619 - components: - - type: Transform - pos: 47.5,-81.5 - parent: 2 - - uid: 11203 - components: - - type: Transform - pos: 49.5,-80.5 - parent: 2 - - uid: 11204 - components: - - type: Transform - pos: 48.5,-81.5 - parent: 2 - - uid: 16436 - components: - - type: Transform - pos: 46.5,-78.5 - parent: 2 - - uid: 17264 - components: - - type: Transform - pos: 49.5,-81.5 - parent: 2 - - uid: 17319 - components: - - type: Transform - pos: 48.5,-78.5 - parent: 2 - - uid: 17320 - components: - - type: Transform - pos: 48.5,-80.5 - parent: 2 - - uid: 19871 - components: - - type: Transform - pos: 50.5,-80.5 - parent: 2 - - uid: 22119 - components: - - type: Transform - pos: 45.5,-81.5 - parent: 2 - - uid: 22178 - components: - - type: Transform - pos: 46.5,-81.5 - parent: 2 - - uid: 31537 - components: - - type: Transform - pos: 54.5,-80.5 - parent: 2 - - uid: 31539 - components: - - type: Transform - pos: 54.5,-78.5 - parent: 2 - - uid: 31540 - components: - - type: Transform - pos: 53.5,-78.5 - parent: 2 - - uid: 31546 - components: - - type: Transform - pos: 55.5,-79.5 - parent: 2 - - uid: 31548 - components: - - type: Transform - pos: 54.5,-77.5 - parent: 2 - - uid: 31553 - components: - - type: Transform - pos: 52.5,-77.5 - parent: 2 - - uid: 31556 - components: - - type: Transform - pos: 53.5,-79.5 - parent: 2 - - uid: 31752 - components: - - type: Transform - pos: 45.5,-78.5 - parent: 2 - - uid: 31756 - components: - - type: Transform - pos: 44.5,-80.5 - parent: 2 - - uid: 31757 - components: - - type: Transform - pos: 45.5,-80.5 - parent: 2 - - uid: 31759 - components: - - type: Transform - pos: 44.5,-79.5 - parent: 2 - - uid: 31760 - components: - - type: Transform - pos: 45.5,-79.5 - parent: 2 - - uid: 31761 - components: - - type: Transform - pos: 46.5,-80.5 - parent: 2 - - uid: 31762 - components: - - type: Transform - pos: 47.5,-79.5 - parent: 2 - - uid: 31763 - components: - - type: Transform - pos: 48.5,-79.5 - parent: 2 - - uid: 31764 - components: - - type: Transform - pos: 49.5,-79.5 - parent: 2 -- proto: MeteorRockBananium - entities: - - uid: 31543 - components: - - type: Transform - pos: 54.5,-79.5 - parent: 2 - - uid: 31545 - components: - - type: Transform - pos: 55.5,-80.5 - parent: 2 - - uid: 31555 - components: - - type: Transform - pos: 52.5,-78.5 - parent: 2 -- proto: MicroManipulatorStockPart - entities: - - uid: 19858 - components: - - type: Transform - pos: -10.498238,-39.353203 - parent: 2 - - uid: 19859 - components: - - type: Transform - pos: -10.310738,-39.540703 - parent: 2 - - uid: 19860 - components: - - type: Transform - pos: 74.25775,-19.490871 - parent: 2 - - uid: 19861 - components: - - type: Transform - rot: 0.0004530529258772731 rad - pos: 74.7369,-19.349794 - parent: 2 -- proto: MicrophoneInstrument - entities: - - uid: 19864 - components: - - type: Transform - pos: 34.459682,15.3401 - parent: 2 - - uid: 24998 - components: - - type: Transform - pos: -1.2894542,-15.388041 - parent: 2 - - uid: 25862 - components: - - type: Transform - pos: 27.395733,20.65097 - parent: 2 - - uid: 30586 - components: - - type: Transform - pos: -31.480682,23.526737 - parent: 2 -- proto: Mirror - entities: - - uid: 7635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,16.5 - parent: 2 - - uid: 19865 - components: - - type: Transform - pos: 10.5,2.5 - parent: 2 - - uid: 19866 - components: - - type: Transform - pos: 10.5,6.5 - parent: 2 - - uid: 19867 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 2 - - uid: 19869 - components: - - type: Transform - pos: -51.5,2.5 - parent: 2 - - uid: 19872 - components: - - type: Transform - pos: -36.5,-53.5 - parent: 2 - - uid: 19873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,41.5 - parent: 2 -- proto: MoonBattlemap - entities: - - uid: 5632 - components: - - type: Transform - pos: 80.269485,-28.012798 - parent: 2 -- proto: MopBucket - entities: - - uid: 19876 - components: - - type: Transform - pos: -51.975006,-8.452682 - parent: 2 - - uid: 19877 - components: - - type: Transform - pos: -52.538174,-8.415283 - parent: 2 - - uid: 19878 + - uid: 30720 components: - type: Transform - pos: -18.537788,51.577576 + pos: -94.5,50.5 parent: 2 -- proto: MopItem +- proto: LockerEngineerFilled entities: - - uid: 19880 - components: - - type: Transform - pos: 57.61384,-49.32746 - parent: 2 - - uid: 19881 - components: - - type: Transform - pos: -49.538174,-7.4621577 - parent: 2 - - uid: 19882 - components: - - type: Transform - pos: -49.538174,-7.4621577 - parent: 2 - - uid: 19883 - components: - - type: Transform - pos: -49.538174,-7.4621577 - parent: 2 - - uid: 19884 - components: - - type: Transform - pos: -18.522163,51.546326 - parent: 2 - - uid: 31716 + - uid: 1742 components: - type: Transform - pos: -38.5,-6.5 + pos: -59.5,-8.5 parent: 2 - - uid: 31720 + - uid: 2511 components: - type: Transform - pos: -39.5,-6.5 + pos: -59.5,-9.5 parent: 2 -- proto: Morgue +- proto: LockerEngineerFilledHardsuit entities: - - uid: 10972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,35.5 - parent: 2 - - uid: 19887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,2.5 - parent: 2 - - uid: 19889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,34.5 - parent: 2 - - uid: 19890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-0.5 - parent: 2 - - uid: 19891 + - uid: 4805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,36.5 + pos: -105.5,51.5 parent: 2 - type: EntityStorage air: @@ -146031,6 +140078,24478 @@ entities: immutable: False temperature: 293.14673 moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4927 + components: + - type: Transform + pos: -97.5,51.5 + parent: 2 + - uid: 7032 + components: + - type: Transform + pos: -97.5,49.5 + parent: 2 + - uid: 28808 + components: + - type: Transform + pos: -103.5,51.5 + parent: 2 + - uid: 28809 + components: + - type: Transform + pos: -102.5,51.5 + parent: 2 + - uid: 28810 + components: + - type: Transform + pos: -97.5,50.5 + parent: 2 + - uid: 28815 + components: + - type: Transform + pos: -101.5,51.5 + parent: 2 + - uid: 28826 + components: + - type: Transform + pos: -97.5,48.5 + parent: 2 + - uid: 28828 + components: + - type: Transform + pos: -104.5,51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerEvidence + entities: + - uid: 389 + components: + - type: Transform + pos: 67.5,55.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: -5.5,177.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4154 + components: + - type: Transform + pos: 67.5,53.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: 67.5,54.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: 67.5,52.5 + parent: 2 + - uid: 6205 + components: + - type: Transform + pos: 75.5,54.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: 75.5,52.5 + parent: 2 + - uid: 6467 + components: + - type: Transform + pos: -4.5,181.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14966 + moles: + - 1.8977377 + - 7.139109 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15540 + - 15541 + - 15542 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15411 + components: + - type: Transform + pos: 75.5,53.5 + parent: 2 + - uid: 22134 + components: + - type: Transform + pos: -77.5,155.5 + parent: 2 + - uid: 27917 + components: + - type: Transform + pos: -93.5,34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.138466 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 29732 + components: + - type: Transform + pos: 71.5,53.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19058 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezer + entities: + - uid: 12935 + components: + - type: Transform + pos: -17.5,71.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11122 + - 11128 + - 11157 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezerVaultFilled + entities: + - uid: 8934 + components: + - type: Transform + pos: -48.5,96.5 + parent: 2 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 10525 + components: + - type: Transform + pos: -15.5,87.5 + parent: 2 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 3551 + components: + - type: Transform + pos: 83.5,63.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 23415 + components: + - type: Transform + pos: 2.5,205.5 + parent: 2 + - uid: 23416 + components: + - type: Transform + pos: 2.5,204.5 + parent: 2 + - uid: 23447 + components: + - type: Transform + pos: -26.5,200.5 + parent: 2 + - uid: 30974 + components: + - type: Transform + pos: 0.5,1.5 + parent: 30902 + - uid: 30975 + components: + - type: Transform + pos: 2.5,1.5 + parent: 30902 +- proto: LockerMime + entities: + - uid: 5604 + components: + - type: Transform + pos: -60.5,99.5 + parent: 2 +- proto: LockerParamedicFilled + entities: + - uid: 25381 + components: + - type: Transform + pos: -5.5,169.5 + parent: 2 + - uid: 25382 + components: + - type: Transform + pos: -4.5,169.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 1720 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19069 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerResearchDirectorFilled + entities: + - uid: 18384 + components: + - type: Transform + pos: -83.5,156.5 + parent: 2 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 931 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: -42.5,-14.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: -42.5,-15.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 20353 + components: + - type: Transform + pos: -92.5,165.5 + parent: 2 + - uid: 20354 + components: + - type: Transform + pos: -92.5,164.5 + parent: 2 + - uid: 20355 + components: + - type: Transform + pos: -92.5,163.5 + parent: 2 + - uid: 20356 + components: + - type: Transform + pos: -92.5,162.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 903 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: 76.5,63.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + pos: 76.5,59.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: -39.5,84.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + pos: 79.5,57.5 + parent: 2 + - uid: 15384 + components: + - type: Transform + pos: 79.5,61.5 + parent: 2 + - uid: 22362 + components: + - type: Transform + pos: 81.5,57.5 + parent: 2 + - uid: 26814 + components: + - type: Transform + pos: 76.5,61.5 + parent: 2 + - uid: 27378 + components: + - type: Transform + pos: 76.5,62.5 + parent: 2 + - uid: 32439 + components: + - type: Transform + pos: 93.5,51.5 + parent: 2 + - uid: 37121 + components: + - type: Transform + pos: 80.5,57.5 + parent: 2 + - uid: 37502 + components: + - type: Transform + pos: 82.5,57.5 + parent: 2 + - uid: 39298 + components: + - type: Transform + pos: 76.5,60.5 + parent: 2 + - uid: 42216 + components: + - type: Transform + pos: 46.5,58.5 + parent: 2 +- proto: LockerWallMedicalFilled + entities: + - uid: 16975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 13386 +- proto: LockerWardenFilled + entities: + - uid: 4230 + components: + - type: Transform + pos: 73.5,54.5 + parent: 2 +- proto: LockerWeldingSupplies + entities: + - uid: 25246 + components: + - type: Transform + pos: -130.5,91.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25268 + - 25293 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Weldable + isWelded: True +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 15064 + components: + - type: Transform + pos: -48.5,104.5 + parent: 2 + - uid: 17165 + components: + - type: Transform + pos: -85.5,75.5 + parent: 2 + - uid: 28003 + components: + - type: Transform + pos: -93.5,48.5 + parent: 2 + - uid: 29103 + components: + - type: Transform + pos: 87.5,59.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LootSpawnerArmoryGunsOnly + entities: + - uid: 8577 + components: + - type: Transform + pos: 62.5,58.5 + parent: 2 +- proto: MachineAnomalyGenerator + entities: + - uid: 20109 + components: + - type: Transform + pos: -79.5,183.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 8345 + components: + - type: Transform + pos: -75.5,178.5 + parent: 2 + - uid: 20136 + components: + - type: Transform + pos: -75.5,177.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 3731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,149.5 + parent: 2 + - uid: 8911 + components: + - type: Transform + pos: -82.5,177.5 + parent: 2 + - uid: 20129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,177.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 12978 + components: + - type: Transform + pos: -85.5,147.5 + parent: 2 + - uid: 17347 + components: + - type: Transform + pos: -96.5,174.5 + parent: 2 +- proto: MachineFrame + entities: + - uid: 2889 + components: + - type: Transform + pos: -128.5,54.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: -128.5,55.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: -126.5,55.5 + parent: 2 + - uid: 6508 + components: + - type: Transform + pos: -7.5,210.5 + parent: 2 + - uid: 8849 + components: + - type: Transform + pos: -83.5,177.5 + parent: 2 + - uid: 23446 + components: + - type: Transform + pos: -23.5,198.5 + parent: 2 + - uid: 28081 + components: + - type: Transform + pos: -100.5,147.5 + parent: 2 + - uid: 37362 + components: + - type: Transform + pos: -75.5,179.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 2615 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: -65.5,-6.5 + parent: 2 + - uid: 23733 + components: + - type: Transform + pos: 23.5,199.5 + parent: 2 + - uid: 34519 + components: + - type: Transform + pos: -118.5,108.5 + parent: 2 + - uid: 37046 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 36996 +- proto: MagazineBoxMagnumPractice + entities: + - uid: 5301 + components: + - type: Transform + pos: 51.36094,56.594063 + parent: 2 +- proto: MagazineLightRifle + entities: + - uid: 8376 + components: + - type: Transform + pos: 61.6875,60.46875 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: 61.375,60.46875 + parent: 2 +- proto: MagazinePistolPractice + entities: + - uid: 12600 + components: + - type: Transform + pos: 52.31962,57.671314 + parent: 2 + - uid: 39157 + components: + - type: Transform + pos: 52.44728,57.671314 + parent: 2 + - uid: 39158 + components: + - type: Transform + pos: 52.489838,57.671314 + parent: 2 + - uid: 39159 + components: + - type: Transform + pos: 52.596214,57.671314 + parent: 2 + - uid: 39160 + components: + - type: Transform + pos: 52.681328,57.671314 + parent: 2 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 1809 + components: + - type: Transform + pos: 88.656746,64.585815 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: 88.562996,64.335815 + parent: 2 +- proto: MagicalLamp + entities: + - uid: 19917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.74762,160.71548 + parent: 2 +- proto: MagicDiceBag + entities: + - uid: 14835 + components: + - type: Transform + pos: -63.252403,87.48975 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 4734 + components: + - type: Transform + pos: 85.5,59.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + pos: -11.5,86.5 + parent: 2 + - uid: 14049 + components: + - type: Transform + pos: -58.5,95.5 + parent: 2 + - uid: 14448 + components: + - type: Transform + pos: -81.5,79.5 + parent: 2 + - uid: 15491 + components: + - type: Transform + pos: -66.5,110.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + pos: -49.5,66.5 + parent: 2 + - uid: 15783 + components: + - type: Transform + pos: -49.5,65.5 + parent: 2 + - uid: 15844 + components: + - type: Transform + pos: -46.5,71.5 + parent: 2 + - uid: 15872 + components: + - type: Transform + pos: -54.5,85.5 + parent: 2 + - uid: 17019 + components: + - type: Transform + pos: -60.5,113.5 + parent: 2 + - uid: 17345 + components: + - type: Transform + pos: -63.5,112.5 + parent: 2 + - uid: 17348 + components: + - type: Transform + pos: -60.5,109.5 + parent: 2 + - uid: 17351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,109.5 + parent: 2 + - uid: 17716 + components: + - type: Transform + pos: -105.5,95.5 + parent: 2 + - uid: 17723 + components: + - type: Transform + pos: -65.5,169.5 + parent: 2 + - uid: 18577 + components: + - type: Transform + pos: -62.5,171.5 + parent: 2 + - uid: 18588 + components: + - type: Transform + pos: -60.5,164.5 + parent: 2 + - uid: 19621 + components: + - type: Transform + pos: -105.5,89.5 + parent: 2 + - uid: 22878 + components: + - type: Transform + pos: -81.5,79.5 + parent: 2 + - uid: 24026 + components: + - type: Transform + pos: -13.5,211.5 + parent: 2 + - uid: 24027 + components: + - type: Transform + pos: -24.5,209.5 + parent: 2 + - uid: 24100 + components: + - type: Transform + pos: 12.5,202.5 + parent: 2 + - uid: 24101 + components: + - type: Transform + pos: 7.5,203.5 + parent: 2 + - uid: 24192 + components: + - type: Transform + pos: 24.5,186.5 + parent: 2 + - uid: 24193 + components: + - type: Transform + pos: 23.5,194.5 + parent: 2 + - uid: 24361 + components: + - type: Transform + pos: 23.5,179.5 + parent: 2 + - uid: 25499 + components: + - type: Transform + pos: 5.5,172.5 + parent: 2 + - uid: 26333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -132.5,87.5 + parent: 2 + - uid: 26335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -134.5,86.5 + parent: 2 + - uid: 28094 + components: + - type: Transform + pos: -89.5,143.5 + parent: 2 + - uid: 29719 + components: + - type: Transform + pos: -105.5,58.5 + parent: 2 + - uid: 34524 + components: + - type: Transform + pos: -30.5,194.5 + parent: 2 + - uid: 34525 + components: + - type: Transform + pos: -30.5,194.5 + parent: 2 + - uid: 34526 + components: + - type: Transform + pos: -30.5,196.5 + parent: 2 + - uid: 34527 + components: + - type: Transform + pos: -31.5,178.5 + parent: 2 + - uid: 37344 + components: + - type: Transform + pos: -41.5,176.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 66 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: -70.5,71.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 4718 + components: + - type: Transform + pos: 84.5,54.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + pos: -33.5,206.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + pos: -32.5,198.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: -31.5,198.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + pos: -33.5,199.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + pos: -84.5,33.5 + parent: 2 + - uid: 11949 + components: + - type: Transform + pos: -26.5,73.5 + parent: 2 + - uid: 14846 + components: + - type: Transform + pos: -70.5,87.5 + parent: 2 + - uid: 15569 + components: + - type: Transform + pos: -43.5,63.5 + parent: 2 + - uid: 17219 + components: + - type: Transform + pos: -73.5,71.5 + parent: 2 + - uid: 17223 + components: + - type: Transform + pos: -81.5,75.5 + parent: 2 + - uid: 17231 + components: + - type: Transform + pos: -78.5,71.5 + parent: 2 + - uid: 19944 + components: + - type: Transform + pos: -86.5,152.5 + parent: 2 + - uid: 19946 + components: + - type: Transform + pos: -98.5,152.5 + parent: 2 + - uid: 19947 + components: + - type: Transform + pos: -98.5,148.5 + parent: 2 + - uid: 20519 + components: + - type: Transform + pos: -90.5,167.5 + parent: 2 + - uid: 20870 + components: + - type: Transform + pos: -75.5,175.5 + parent: 2 + - uid: 21316 + components: + - type: Transform + pos: -57.5,172.5 + parent: 2 + - uid: 21317 + components: + - type: Transform + pos: -59.5,174.5 + parent: 2 + - uid: 21318 + components: + - type: Transform + pos: -64.5,172.5 + parent: 2 + - uid: 21319 + components: + - type: Transform + pos: -60.5,174.5 + parent: 2 + - uid: 21326 + components: + - type: Transform + pos: -60.5,163.5 + parent: 2 + - uid: 21327 + components: + - type: Transform + pos: -59.5,161.5 + parent: 2 + - uid: 21329 + components: + - type: Transform + pos: -62.5,168.5 + parent: 2 + - uid: 21330 + components: + - type: Transform + pos: -63.5,168.5 + parent: 2 + - uid: 21331 + components: + - type: Transform + pos: -61.5,171.5 + parent: 2 + - uid: 25271 + components: + - type: Transform + pos: -80.5,86.5 + parent: 2 + - uid: 25491 + components: + - type: Transform + pos: 8.5,172.5 + parent: 2 + - uid: 25492 + components: + - type: Transform + pos: 18.5,178.5 + parent: 2 + - uid: 25493 + components: + - type: Transform + pos: 23.5,177.5 + parent: 2 + - uid: 25494 + components: + - type: Transform + pos: 21.5,180.5 + parent: 2 + - uid: 25495 + components: + - type: Transform + pos: 22.5,175.5 + parent: 2 + - uid: 25674 + components: + - type: Transform + pos: 0.5,169.5 + parent: 2 + - uid: 25675 + components: + - type: Transform + pos: 0.5,170.5 + parent: 2 + - uid: 28095 + components: + - type: Transform + pos: -89.5,145.5 + parent: 2 + - uid: 34528 + components: + - type: Transform + pos: -30.5,195.5 + parent: 2 + - uid: 36158 + components: + - type: Transform + pos: -26.5,87.5 + parent: 2 + - uid: 37232 + components: + - type: Transform + pos: -57.5,169.5 + parent: 2 + - uid: 37340 + components: + - type: Transform + pos: -36.5,178.5 + parent: 2 + - uid: 37341 + components: + - type: Transform + pos: -44.5,176.5 + parent: 2 + - uid: 37342 + components: + - type: Transform + pos: -47.5,173.5 + parent: 2 + - uid: 37343 + components: + - type: Transform + pos: -53.5,172.5 + parent: 2 + - uid: 37508 + components: + - type: Transform + pos: 85.5,46.5 + parent: 2 + - uid: 38093 + components: + - type: Transform + pos: -91.5,53.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 3007 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 11955 + components: + - type: Transform + pos: -27.5,76.5 + parent: 2 + - uid: 17306 + components: + - type: Transform + pos: -100.5,61.5 + parent: 2 + - uid: 19636 + components: + - type: Transform + pos: -114.5,82.5 + parent: 2 + - uid: 23516 + components: + - type: Transform + pos: -23.5,196.5 + parent: 2 + - uid: 24102 + components: + - type: Transform + pos: 6.5,204.5 + parent: 2 + - uid: 27942 + components: + - type: Transform + pos: -116.5,97.5 + parent: 2 + - uid: 28089 + components: + - type: Transform + pos: -92.5,145.5 + parent: 2 + - uid: 28092 + components: + - type: Transform + pos: -92.5,145.5 + parent: 2 + - uid: 29717 + components: + - type: Transform + pos: -114.5,68.5 + parent: 2 + - uid: 37345 + components: + - type: Transform + pos: -41.5,176.5 + parent: 2 + - uid: 38096 + components: + - type: Transform + pos: -91.5,52.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 17701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-20.5 + parent: 2 + - uid: 23517 + components: + - type: Transform + pos: -25.5,196.5 + parent: 2 +- proto: MarimbaInstrument + entities: + - uid: 13165 + components: + - type: Transform + pos: -34.5,66.5 + parent: 2 +- proto: MatchstickSpent + entities: + - uid: 34540 + components: + - type: Transform + pos: -15.3647,179.69258 + parent: 2 +- proto: MaterialBananium1 + entities: + - uid: 1498 + components: + - type: Transform + pos: -57.470455,-0.31729198 + parent: 2 + - uid: 33716 + components: + - type: Transform + pos: 5.311184,77.63036 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 9017 + components: + - type: Transform + pos: -19.534115,81.75809 + parent: 2 +- proto: MaterialCloth1 + entities: + - uid: 25401 + components: + - type: Transform + pos: -3.479576,165.5937 + parent: 2 +- proto: MaterialCloth10 + entities: + - uid: 15871 + components: + - type: Transform + pos: -54.51159,84.637764 + parent: 2 +- proto: MaterialDiamond1 + entities: + - uid: 36117 + components: + - type: Transform + pos: -103.66792,142.15707 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 8950 + components: + - type: Transform + pos: -19.146719,81.546844 + parent: 2 +- proto: MedicalBed + entities: + - uid: 3460 + components: + - type: Transform + pos: -9.5,190.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: -5.5,191.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: -5.5,193.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + pos: -9.5,193.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + pos: 82.5,44.5 + parent: 2 + - uid: 7743 + components: + - type: Transform + pos: -5.5,194.5 + parent: 2 + - uid: 29721 + components: + - type: Transform + pos: -9.5,194.5 + parent: 2 + - uid: 43454 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 30902 + - uid: 43455 + components: + - type: Transform + pos: -0.5,0.5 + parent: 30902 +- proto: MedicalTechFab + entities: + - uid: 22978 + components: + - type: Transform + pos: 2.5,198.5 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 30976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5655556,1.4836578 + parent: 30902 +- proto: MedkitBruteFilled + entities: + - uid: 22868 + components: + - type: Transform + pos: 2.50806,197.47543 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 23010 + components: + - type: Transform + pos: 2.5193083,199.76929 + parent: 2 +- proto: MedkitCombatFilled + entities: + - uid: 22688 + components: + - type: Transform + pos: 14.126888,189.46518 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 9102 + components: + - type: Transform + pos: -4.5083885,172.68301 + parent: 2 + - uid: 20799 + components: + - type: Transform + pos: 73.41235,52.5728 + parent: 2 + - uid: 25399 + components: + - type: Transform + pos: -1.4811502,169.61919 + parent: 2 + - uid: 38567 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitOxygenFilled + entities: + - uid: 22828 + components: + - type: Transform + pos: 2.50806,196.60962 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 22872 + components: + - type: Transform + pos: 1.664032,196.5654 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 22873 + components: + - type: Transform + pos: 2.5193083,200.41022 + parent: 2 +- proto: MicroManipulatorStockPart + entities: + - uid: 21058 + components: + - type: Transform + pos: -68.56034,169.65195 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 9583 + components: + - type: Transform + pos: -31.467472,68.57844 + parent: 2 + - uid: 10707 + components: + - type: Transform + pos: -7.525024,84.3832 + parent: 2 +- proto: MicrowaveMachineCircuitboard + entities: + - uid: 20393 + components: + - type: Transform + pos: -86.4519,162.50287 + parent: 2 +- proto: Mirror + entities: + - uid: 13210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,67.5 + parent: 2 + - uid: 13793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,109.5 + parent: 2 + - uid: 13796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,111.5 + parent: 2 + - uid: 13941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,113.5 + parent: 2 + - uid: 15417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,109.5 + parent: 2 + - uid: 39426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,170.5 + parent: 2 +- proto: MopBucket + entities: + - uid: 38426 + components: + - type: Transform + pos: 58.581192,39.565628 + parent: 2 +- proto: MopItem + entities: + - uid: 24038 + components: + - type: Transform + pos: -25.467176,206.46101 + parent: 2 + - uid: 38384 + components: + - type: Transform + parent: 38381 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Morgue + entities: + - uid: 11212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,73.5 + parent: 2 + - uid: 12161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,69.5 + parent: 2 + - uid: 12168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,68.5 + parent: 2 + - uid: 12169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,67.5 + parent: 2 + - uid: 15525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,59.5 + parent: 2 + - uid: 19273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,60.5 + parent: 2 + - uid: 22357 + components: + - type: Transform + pos: -8.5,208.5 + parent: 2 + - uid: 22358 + components: + - type: Transform + pos: -7.5,208.5 + parent: 2 + - uid: 23128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,43.5 + parent: 2 + - uid: 23386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,207.5 + parent: 2 + - uid: 23396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,207.5 + parent: 2 + - uid: 23397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,208.5 + parent: 2 + - uid: 23398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,209.5 + parent: 2 + - uid: 23399 + components: + - type: Transform + pos: -10.5,208.5 + parent: 2 + - uid: 23400 + components: + - type: Transform + pos: -9.5,208.5 + parent: 2 + - uid: 23402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,208.5 + parent: 2 + - uid: 23403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,209.5 + parent: 2 +- proto: Multitool + entities: + - uid: 10600 + components: + - type: Transform + pos: -137.69815,52.589195 + parent: 2 + - uid: 37083 + components: + - type: Transform + pos: 3.9374428,209.33414 + parent: 2 + - uid: 37084 + components: + - type: Transform + pos: -61.53608,174.45718 + parent: 2 + - uid: 37085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.648575,-20.688828 + parent: 2 + - uid: 37087 + components: + - type: Transform + pos: -49.69513,71.27292 + parent: 2 + - uid: 37088 + components: + - type: Transform + pos: -124.54692,94.52317 + parent: 2 +- proto: MusicBoxInstrument + entities: + - uid: 37355 + components: + - type: Transform + pos: -43.648487,173.46503 + parent: 2 +- proto: Nettle + entities: + - uid: 38081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.16576,105.93599 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 1525 + components: + - type: Transform + pos: -65.5,-11.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + pos: 69.5,18.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: 57.5,49.5 + parent: 2 + - uid: 10601 + components: + - type: Transform + pos: -132.5,52.5 + parent: 2 + - uid: 11402 + components: + - type: Transform + pos: 91.5,15.5 + parent: 2 + - uid: 12124 + components: + - type: Transform + pos: 3.006569,208.4748 + parent: 2 + - uid: 13273 + components: + - type: Transform + pos: -57.5,14.5 + parent: 2 + - uid: 14863 + components: + - type: Transform + pos: -81.5,96.5 + parent: 2 + - uid: 15266 + components: + - type: Transform + pos: -105.5,42.5 + parent: 2 + - uid: 15473 + components: + - type: Transform + pos: -72.5,66.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + pos: -98.5,158.5 + parent: 2 + - uid: 16478 + components: + - type: Transform + pos: -22.5,98.5 + parent: 2 + - uid: 26203 + components: + - type: Transform + pos: -32.5,191.5 + parent: 2 + - uid: 37103 + components: + - type: Transform + pos: 76.5,34.5 + parent: 2 +- proto: NitrogenTank + entities: + - uid: 3515 + components: + - type: Transform + pos: 85.30824,47.53895 + parent: 2 +- proto: NitrogenTankFilled + entities: + - uid: 4808 + components: + - type: Transform + pos: 116.66271,57.403824 + parent: 2 + - uid: 11503 + components: + - type: Transform + pos: -110.617065,149.61588 + parent: 2 + - uid: 14315 + components: + - type: Transform + pos: -115.42291,37.52243 + parent: 2 +- proto: NitrousOxideCanister + entities: + - uid: 2174 + components: + - type: Transform + pos: 38.5,59.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + pos: 10.5,174.5 + parent: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 22741 + components: + - type: Transform + pos: 5.644435,182.43683 + parent: 2 +- proto: NoticeBoard + entities: + - uid: 12316 + components: + - type: Transform + pos: -23.5,64.5 + parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 8360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.419807,131.71463 + parent: 2 +- proto: NuclearBombUnanchored + entities: + - uid: 5300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,96.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeCircle + radius: 0.59400004 + position: 0,0 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - TableLayer + - LowImpassable + density: 80 + hard: True + restitution: 0 + friction: 0.4 + - type: Nuke + totalIntensity: 9000000 + - type: ScaleVisuals +- proto: OatBushel + entities: + - uid: 14548 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27202 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27695 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Ointment + entities: + - uid: 4783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.642418,12.186539 + parent: 2 + - uid: 13344 + components: + - type: Transform + pos: -0.5920167,200.52628 + parent: 2 + - uid: 15419 + components: + - type: Transform + pos: -80.39906,100.451904 + parent: 2 +- proto: Ointment1 + entities: + - uid: 26376 + components: + - type: Transform + pos: -36.348248,193.5337 + parent: 2 + - uid: 26378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5389,189.77164 + parent: 2 +- proto: OmnizineChemistryBottle + entities: + - uid: 22913 + components: + - type: Transform + pos: -3.402627,199.32462 + parent: 2 +- proto: OperatingTable + entities: + - uid: 15523 + components: + - type: Transform + pos: -39.5,59.5 + parent: 2 + - uid: 16761 + components: + - type: Transform + pos: -2.5,73.5 + parent: 2 + - uid: 23265 + components: + - type: Transform + pos: 4.5,184.5 + parent: 2 + - uid: 23405 + components: + - type: Transform + pos: -10.5,210.5 + parent: 2 +- proto: OreBag + entities: + - uid: 1080 + components: + - type: Transform + pos: -39.44789,-11.793639 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: -50.423325,5.1573486 + parent: 2 +- proto: OreBox + entities: + - uid: 4514 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 1034 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 +- proto: OrganHumanEyes + entities: + - uid: 675 + components: + - type: Transform + pos: -35.50139,57.563133 + parent: 2 + - uid: 35969 + components: + - type: Transform + pos: -43.52321,54.237442 + parent: 2 +- proto: OrganHumanKidneys + entities: + - uid: 15554 + components: + - type: Transform + pos: -37.63288,58.673306 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 1467 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: -71.5,-7.5 + parent: 2 + - uid: 9453 + components: + - type: Transform + pos: -53.5,14.5 + parent: 2 + - uid: 11282 + components: + - type: Transform + pos: -136.5,52.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + pos: 85.5,15.5 + parent: 2 + - uid: 12123 + components: + - type: Transform + pos: 3.5,82.5 + parent: 2 + - uid: 12141 + components: + - type: Transform + pos: 2.350319,208.44354 + parent: 2 + - uid: 15291 + components: + - type: Transform + pos: -36.5,187.5 + parent: 2 + - uid: 15292 + components: + - type: Transform + pos: 57.5,50.5 + parent: 2 + - uid: 15293 + components: + - type: Transform + pos: -80.5,96.5 + parent: 2 + - uid: 15509 + components: + - type: Transform + pos: -81.5,74.5 + parent: 2 + - uid: 15825 + components: + - type: Transform + pos: -76.5,141.5 + parent: 2 + - uid: 16502 + components: + - type: Transform + pos: 3.5,169.5 + parent: 2 + - uid: 16979 + components: + - type: Transform + pos: -21.5,98.5 + parent: 2 + - uid: 18237 + components: + - type: Transform + pos: -98.5,162.5 + parent: 2 + - uid: 28187 + components: + - type: Transform + pos: 76.5,35.5 + parent: 2 + - uid: 29126 + components: + - type: Transform + pos: -115.5,38.5 + parent: 2 + - uid: 32203 + components: + - type: Transform + pos: -86.5,175.5 + parent: 2 + - uid: 32206 + components: + - type: Transform + pos: -85.5,175.5 + parent: 2 + - uid: 34432 + components: + - type: Transform + pos: -15.5,175.5 + parent: 2 + - uid: 36348 + components: + - type: Transform + pos: 69.5,17.5 + parent: 2 + - uid: 37333 + components: + - type: Transform + pos: -52.5,170.5 + parent: 2 + - uid: 38095 + components: + - type: Transform + pos: -91.5,50.5 + parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 1151 + components: + - type: Transform + pos: -48.62166,-5.280056 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: -115.65729,37.663055 + parent: 2 + - uid: 4944 + components: + - type: Transform + pos: 116.41336,57.591324 + parent: 2 + - uid: 11589 + components: + - type: Transform + pos: -110.335815,149.47525 + parent: 2 + - uid: 29700 + components: + - type: Transform + pos: 85.5745,47.444233 + parent: 2 +- proto: PaintingMonkey + entities: + - uid: 11031 + components: + - type: Transform + pos: -29.5,64.5 + parent: 2 +- proto: PaintingSkeletonCigarette + entities: + - uid: 10701 + components: + - type: Transform + pos: -3.5,87.5 + parent: 2 +- proto: PanFluteInstrument + entities: + - uid: 17790 + components: + - type: Transform + pos: -75.54448,167.45238 + parent: 2 +- proto: Paper + entities: + - uid: 1686 + components: + - type: Transform + pos: -12.687513,4.5693884 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: -12.4175625,4.6818323 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: 27.292665,20.688726 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: 27.503603,20.618414 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: 27.316103,20.524664 + parent: 2 + - uid: 4618 + components: + - type: Transform + pos: 67.91085,67.43642 + parent: 2 + - uid: 4619 + components: + - type: Transform + pos: 67.787125,67.593834 + parent: 2 + - uid: 4621 + components: + - type: Transform + pos: 74.40094,67.57134 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: 95.02202,53.59107 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: 95.190735,53.669777 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: -18.633318,81.59547 + parent: 2 + - uid: 10503 + components: + - type: Transform + pos: -18.633318,81.59547 + parent: 2 + - uid: 10504 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10505 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10506 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10507 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10508 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10509 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10510 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10511 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10512 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10513 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10514 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10515 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10516 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10517 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10518 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10519 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10520 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10521 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10522 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10523 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10528 + components: + - type: Transform + pos: -19.877142,86.42372 + parent: 2 + - type: Paper + content: No one must touch Ian... No one must touch Ian... No one must touch Ian... No one must touch Ian... No one must touch Ian... No one must touch Ian... No one must touch Ian... No one... + - type: ActiveUserInterface + - uid: 10691 + components: + - type: Transform + pos: -5.6294026,86.54193 + parent: 2 + - uid: 10692 + components: + - type: Transform + pos: -5.640651,86.54193 + parent: 2 + - uid: 10693 + components: + - type: Transform + pos: -5.640651,86.54193 + parent: 2 + - uid: 10694 + components: + - type: Transform + pos: -5.640651,86.54193 + parent: 2 + - uid: 10695 + components: + - type: Transform + pos: -5.640651,86.54193 + parent: 2 + - uid: 10933 + components: + - type: Transform + pos: -134.11105,87.23734 + parent: 2 + - type: Paper + content: > + Attachment: 6/11: Dr. █████ Research Protocol. + + + Subject: Apple. + + Result: Loud explosion. The apple is gone. + + + Subject: Clown horn. + + Result: Loud explosion. The clown horn is gone. + + + Subject: Alice Jackson's assistant. + + Result: Loud explosion. Alice Jackson is missing. Elise Jackson reports over the comms channel that she is locked in the Head of Staff's office with Ian. The head of staff is furious. + + + Subject: ████████. + + Result: Very loud explosion. Depressurization. No further experimentation possible. + - uid: 14505 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14506 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14507 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14508 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14509 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14510 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14511 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14512 + components: + - type: Transform + pos: -65.64502,82.66365 + parent: 2 + - uid: 14743 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14744 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14745 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14746 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14747 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14748 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14749 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14750 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14751 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14752 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 19693 + components: + - type: Transform + pos: -95.35152,42.255627 + parent: 2 + - uid: 20182 + components: + - type: Transform + pos: -80.37672,180.52962 + parent: 2 + - uid: 20183 + components: + - type: Transform + pos: -80.37672,180.52962 + parent: 2 + - uid: 20184 + components: + - type: Transform + pos: -80.37672,180.52962 + parent: 2 + - uid: 20185 + components: + - type: Transform + pos: -80.37672,180.52962 + parent: 2 + - uid: 20186 + components: + - type: Transform + pos: -80.59042,180.63083 + parent: 2 + - uid: 20369 + components: + - type: Transform + pos: -84.45139,165.64062 + parent: 2 + - uid: 20370 + components: + - type: Transform + pos: -84.46264,165.64062 + parent: 2 + - uid: 20371 + components: + - type: Transform + pos: -84.46264,165.64062 + parent: 2 + - uid: 20372 + components: + - type: Transform + pos: -84.46264,165.64062 + parent: 2 + - uid: 20373 + components: + - type: Transform + pos: -84.46264,165.64062 + parent: 2 + - uid: 20374 + components: + - type: Transform + pos: -84.26018,165.52818 + parent: 2 + - uid: 20912 + components: + - type: Transform + pos: -68.2968,176.20135 + parent: 2 + - uid: 20913 + components: + - type: Transform + pos: -68.2968,176.20135 + parent: 2 + - uid: 20914 + components: + - type: Transform + pos: -68.2968,176.20135 + parent: 2 + - uid: 20915 + components: + - type: Transform + pos: -68.2968,176.20135 + parent: 2 + - uid: 20916 + components: + - type: Transform + pos: -68.2968,176.20135 + parent: 2 + - uid: 20917 + components: + - type: Transform + pos: -68.44302,176.04393 + parent: 2 + - uid: 24231 + components: + - type: Transform + pos: -58.235542,97.996445 + parent: 2 + - uid: 24232 + components: + - type: Transform + pos: -58.235542,97.996445 + parent: 2 + - uid: 24233 + components: + - type: Transform + pos: -58.235542,97.996445 + parent: 2 + - uid: 27977 + components: + - type: Transform + pos: -95.35152,42.255627 + parent: 2 + - uid: 28085 + components: + - type: Transform + pos: -95.35152,42.255627 + parent: 2 + - uid: 29203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.430954,92.614 + parent: 2 + - uid: 29992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.507545,94.75043 + parent: 2 + - uid: 30064 + components: + - type: Transform + pos: -116.305084,93.063774 + parent: 2 + - uid: 34607 + components: + - type: Transform + pos: -126.68592,87.654366 + parent: 2 + - uid: 34651 + components: + - type: Transform + pos: -126.29296,88.226265 + parent: 2 + - uid: 37834 + components: + - type: MetaData + name: postscript + - type: Transform + parent: 12072 + - type: Paper + content: >- + In this mass grave lie all the brave pioneers of Gate Station. Thanks to their efforts, this station has become as beautiful as it is today. + + + Here they are, from left to right: + + Aserovich + + gotmogoverhaul + + meyram273 + + lying_potato + + thoriumm + + yunevka + + etopolyak + + ktnlkrnl + + nimfarius + + Řøłæņđ#1048 + + alisw_a + + demuerte + + deserty0 + + hikzero + + just_useless + + lazychik + + lomcastar + + miyny + + super_duper_idol + + _tumbochka + + xeno_h + + Δαρβиη008#7907 + + abaddon3 + + jenya_corvax + + .zloykefir + + fresh_opef + + lyminitt + + .enriko_pucci + + tuman207 + + zmes1 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PaperBin10 + entities: + - uid: 1156 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 10688 + components: + - type: Transform + pos: -4.5,86.5 + parent: 2 + - uid: 28598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,55.5 + parent: 2 + - uid: 36616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,100.5 + parent: 2 + - uid: 36670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,197.5 + parent: 2 + - uid: 43173 + components: + - type: Transform + pos: 1.5,1.5 + parent: 37842 +- proto: PaperBin5 + entities: + - uid: 977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 2 + - uid: 34584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,87.5 + parent: 2 +- proto: PaperOffice + entities: + - uid: 4764 + components: + - type: Transform + pos: 26.700586,19.446747 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: -59.508972,129.62624 + parent: 2 + - uid: 14471 + components: + - type: Transform + pos: -63.63479,87.34115 + parent: 2 + - uid: 14472 + components: + - type: Transform + pos: -62.959915,86.55404 + parent: 2 + - uid: 14473 + components: + - type: Transform + pos: -62.1838,86.5428 + parent: 2 + - uid: 14474 + components: + - type: Transform + pos: -61.28396,87.37488 + parent: 2 + - uid: 17513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.56496,37.545982 + parent: 2 + - uid: 17514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.45558,37.514732 + parent: 2 + - uid: 17797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.65871,37.608482 + parent: 2 + - uid: 18944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.974794,177.68834 + parent: 2 + - uid: 29713 + components: + - type: Transform + pos: 71.52304,50.54513 + parent: 2 + - uid: 36671 + components: + - type: Transform + pos: -16.96088,203.57475 + parent: 2 + - uid: 36672 + components: + - type: Transform + pos: -16.96088,203.57475 + parent: 2 + - uid: 36673 + components: + - type: Transform + pos: -16.96088,203.57475 + parent: 2 + - uid: 36674 + components: + - type: Transform + pos: -16.96088,203.57475 + parent: 2 + - uid: 36675 + components: + - type: Transform + pos: -16.96088,203.57475 + parent: 2 + - uid: 36676 + components: + - type: Transform + pos: -16.870897,203.41733 + parent: 2 +- proto: ParchisBoard + entities: + - uid: 25364 + components: + - type: Transform + pos: -76.77675,45.564697 + parent: 2 +- proto: ParticleAcceleratorControlBoxUnfinished + entities: + - uid: 1824 + components: + - type: Transform + pos: -131.5,28.5 + parent: 2 +- proto: ParticleAcceleratorEmitterFore + entities: + - uid: 647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,26.5 + parent: 2 +- proto: ParticleAcceleratorEmitterPortUnfinished + entities: + - uid: 18756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,25.5 + parent: 2 +- proto: ParticleAcceleratorEmitterStarboard + entities: + - uid: 18962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,27.5 + parent: 2 +- proto: ParticleAcceleratorEndCap + entities: + - uid: 312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -130.5,28.5 + parent: 2 + - uid: 18922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,26.5 + parent: 2 +- proto: ParticleAcceleratorFuelChamber + entities: + - uid: 652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,24.5 + parent: 2 +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -130.5,24.5 + parent: 2 +- proto: PartRodMetal1 + entities: + - uid: 1456 + components: + - type: Transform + pos: -44.50421,2.3974192 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: -42.43458,2.5435958 + parent: 2 + - uid: 27950 + components: + - type: Transform + pos: -93.233894,145.41992 + parent: 2 + - uid: 27951 + components: + - type: Transform + pos: -90.296394,143.35742 + parent: 2 + - uid: 27972 + components: + - type: Transform + pos: -89.890144,143.45117 + parent: 2 +- proto: PartRodMetal10 + entities: + - uid: 27696 + components: + - type: Transform + pos: -104.87131,41.277573 + parent: 2 +- proto: Pen + entities: + - uid: 4411 + components: + - type: Transform + pos: 62.197388,44.52956 + parent: 2 + - uid: 4622 + components: + - type: Transform + pos: 75.688644,67.434975 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: 95.35946,53.5236 + parent: 2 + - uid: 10530 + components: + - type: Transform + pos: -18.603714,81.53516 + parent: 2 + - uid: 10696 + components: + - type: Transform + pos: -5.505675,86.823044 + parent: 2 + - uid: 14475 + components: + - type: Transform + pos: -63.233925,86.591774 + parent: 2 + - uid: 14476 + components: + - type: Transform + pos: -62.262535,86.39662 + parent: 2 + - uid: 14477 + components: + - type: Transform + pos: -61.306458,87.48733 + parent: 2 + - uid: 14478 + components: + - type: Transform + pos: -63.657288,87.54355 + parent: 2 + - uid: 18227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.31341,37.342163 + parent: 2 + - uid: 20187 + components: + - type: Transform + pos: -80.78702,180.53033 + parent: 2 + - uid: 28083 + components: + - type: Transform + pos: -95.25028,42.458023 + parent: 2 + - uid: 29206 + components: + - type: Transform + pos: -64.57041,65.76266 + parent: 2 + - uid: 29211 + components: + - type: Transform + pos: 70.6888,51.721226 + parent: 2 + - uid: 29720 + components: + - type: Transform + pos: 71.538666,50.529507 + parent: 2 + - uid: 35502 + components: + - type: Transform + pos: -112.5014,42.929836 + parent: 2 + - uid: 37366 + components: + - type: Transform + pos: -52.37763,62.905647 + parent: 2 +- proto: PersonalAI + entities: + - uid: 4560 + components: + - type: Transform + pos: -68.649284,170.06026 + parent: 2 + - uid: 6597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 114.55012,49.597195 + parent: 2 + - uid: 10457 + components: + - type: Transform + pos: -20.483505,84.448456 + parent: 2 + - uid: 12309 + components: + - type: Transform + pos: -91.33618,36.51999 + parent: 2 + - uid: 17899 + components: + - type: Transform + pos: -43.60204,109.6095 + parent: 2 + - uid: 22040 + components: + - type: Transform + pos: 2.4811502,0.44605076 + parent: 2 + - uid: 31600 + components: + - type: Transform + pos: 69.08546,67.62935 + parent: 2 + - uid: 31601 + components: + - type: Transform + pos: -17.538746,193.58914 + parent: 2 + - uid: 31602 + components: + - type: Transform + pos: -115.434204,44.683556 + parent: 2 + - uid: 39970 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PestSpray + entities: + - uid: 16489 + components: + - type: Transform + pos: 1.767525,65.83195 + parent: 2 + - uid: 18191 + components: + - type: Transform + pos: -60.66825,165.72089 + parent: 2 +- proto: PetCarrier + entities: + - uid: 28154 + components: + - type: Transform + pos: -68.5,65.5 + parent: 2 + - uid: 28177 + components: + - type: Transform + pos: -69.5,65.5 + parent: 2 + - uid: 28183 + components: + - type: Transform + pos: -70.5,65.5 + parent: 2 +- proto: PhoneInstrument + entities: + - uid: 13646 + components: + - type: Transform + pos: -39.56988,107.62078 + parent: 2 +- proto: PianoInstrument + entities: + - uid: 14841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,71.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 1137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.54107,-11.575691 + parent: 2 + - uid: 24048 + components: + - type: Transform + pos: -131.65852,56.921124 + parent: 2 + - uid: 36090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.66792,140.62517 + parent: 2 +- proto: PineappleSeeds + entities: + - uid: 13284 + components: + - type: Transform + pos: -0.08746719,69.73904 + parent: 2 +- proto: PlantBag + entities: + - uid: 7537 + components: + - type: Transform + pos: 0.5531578,69.59841 + parent: 2 + - uid: 14764 + components: + - type: Transform + pos: 0.6781578,69.78591 + parent: 2 + - uid: 35930 + components: + - type: Transform + pos: 0.3812828,69.36404 + parent: 2 +- proto: PlaqueAtmos + entities: + - uid: 25296 + components: + - type: Transform + pos: -112.5,26.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 5046 + components: + - type: Transform + pos: -122.5,18.5 + parent: 2 + - uid: 11294 + components: + - type: Transform + pos: -101.5,27.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + pos: -113.5,20.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + pos: -67.5,149.5 + parent: 2 + - uid: 32211 + components: + - type: Transform + pos: -90.5,171.5 + parent: 2 +- proto: PlasmaOre1 + entities: + - uid: 1489 + components: + - type: Transform + pos: -38.789467,3.4145467 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: -57.487347,-6.565716 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: -57.161156,-6.3520727 + parent: 2 + - uid: 13810 + components: + - type: Transform + pos: -94.512695,164.21005 + parent: 2 + - uid: 17493 + components: + - type: Transform + pos: -94.32148,164.35623 + parent: 2 + - uid: 21269 + components: + - type: Transform + pos: -94.69116,164.71867 + parent: 2 + - uid: 39235 + components: + - type: Transform + pos: -94.242744,163.8165 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 1278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-7.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-8.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,12.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,146.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-6.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: -65.5,-5.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,146.5 + parent: 2 + - uid: 6590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,144.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + pos: -74.5,144.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,146.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + pos: -73.5,144.5 + parent: 2 + - uid: 12423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,12.5 + parent: 2 + - uid: 12435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,178.5 + parent: 2 + - uid: 12438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,178.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-7.5 + parent: 2 + - uid: 23241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,192.5 + parent: 2 + - uid: 23242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,192.5 + parent: 2 + - uid: 23540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,193.5 + parent: 2 + - uid: 23541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,192.5 + parent: 2 + - uid: 23543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,195.5 + parent: 2 + - uid: 23605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,192.5 + parent: 2 + - uid: 24478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-6.5 + parent: 2 + - uid: 29733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,53.5 + parent: 2 + - uid: 29734 + components: + - type: Transform + pos: 71.5,53.5 + parent: 2 + - uid: 29735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,53.5 + parent: 2 + - uid: 31791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,11.5 + parent: 2 + - uid: 31959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,177.5 + parent: 2 + - uid: 31960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,178.5 + parent: 2 + - uid: 31961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,177.5 + parent: 2 + - uid: 31963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,177.5 + parent: 2 + - uid: 31964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,177.5 + parent: 2 + - uid: 31965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,177.5 + parent: 2 + - uid: 31966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,178.5 + parent: 2 + - uid: 31967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,177.5 + parent: 2 + - uid: 31968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,177.5 + parent: 2 + - uid: 34591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,21.5 + parent: 2 + - uid: 34618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,21.5 + parent: 2 + - uid: 34694 + components: + - type: Transform + pos: 2.5,215.5 + parent: 2 + - uid: 34696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,215.5 + parent: 2 + - uid: 34697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,216.5 + parent: 2 + - uid: 35487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,20.5 + parent: 2 + - uid: 35488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,20.5 + parent: 2 + - uid: 35489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,21.5 + parent: 2 +- proto: PlasmaWindow + entities: + - uid: 7846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,177.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,177.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,177.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,173.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,173.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,173.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 519 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + pos: 50.5,42.5 + parent: 2 + - uid: 17715 + components: + - type: Transform + pos: -108.5,90.5 + parent: 2 + - uid: 17717 + components: + - type: Transform + pos: -111.5,90.5 + parent: 2 + - uid: 17819 + components: + - type: Transform + pos: -102.5,90.5 + parent: 2 + - uid: 17849 + components: + - type: Transform + pos: -105.5,90.5 + parent: 2 + - uid: 17981 + components: + - type: Transform + pos: -121.5,67.5 + parent: 2 + - uid: 20961 + components: + - type: Transform + pos: -72.5,166.5 + parent: 2 + - uid: 21206 + components: + - type: Transform + pos: -61.5,175.5 + parent: 2 + - uid: 24347 + components: + - type: Transform + pos: 24.5,176.5 + parent: 2 + - uid: 28116 + components: + - type: Transform + pos: -95.5,40.5 + parent: 2 +- proto: PlayerStationAi + entities: + - uid: 7713 + components: + - type: Transform + pos: -67.5,130.5 + parent: 2 +- proto: PlushieAtmosian + entities: + - uid: 1812 + components: + - type: Transform + pos: -59.56137,13.5270815 + parent: 2 + - uid: 4963 + components: + - type: Transform + pos: -119.71025,21.333672 + parent: 2 + - uid: 28585 + components: + - type: Transform + pos: -114.7055,55.573143 + parent: 2 + - uid: 37771 + components: + - type: Transform + pos: -85.51099,59.55207 + parent: 2 +- proto: PlushieBee + entities: + - uid: 2468 + components: + - type: Transform + pos: 72.45078,34.51539 + parent: 2 + - uid: 10821 + components: + - type: Transform + pos: 27.487526,199.48502 + parent: 2 +- proto: PlushieCarp + entities: + - uid: 5005 + components: + - type: Transform + pos: 107.7613,54.00586 + parent: 2 + - uid: 5006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 107.28888,52.881424 + parent: 2 + - uid: 12631 + components: + - type: Transform + pos: -68.888214,68.61402 + parent: 2 + - uid: 21252 + components: + - type: Transform + pos: -57.515614,156.4843 + parent: 2 +- proto: PlushieDiona + entities: + - uid: 10951 + components: + - type: Transform + pos: -9.408943,73.62492 + parent: 2 + - uid: 20092 + components: + - type: Transform + pos: -83.30978,174.70564 + parent: 2 + - uid: 38268 + components: + - type: Transform + pos: -9.481037,59.668594 + parent: 2 +- proto: PlushieHampter + entities: + - uid: 17908 + components: + - type: Transform + pos: -40.509434,109.865 + parent: 2 +- proto: PlushieLamp + entities: + - uid: 11643 + components: + - type: Transform + pos: -40.355503,3.6647568 + parent: 2 + - uid: 21755 + components: + - type: Transform + pos: -17.428438,178.42867 + parent: 2 +- proto: PlushieLizard + entities: + - uid: 15573 + components: + - type: Transform + pos: -28.463522,105.50827 + parent: 2 + - uid: 29011 + components: + - type: Transform + pos: 105.5241,49.539993 + parent: 2 +- proto: PlushieMoth + entities: + - uid: 34926 + components: + - type: Transform + pos: -29.848465,174.54433 + parent: 2 +- proto: PlushieNuke + entities: + - uid: 11216 + components: + - type: Transform + pos: -32.60014,91.728 + parent: 2 +- proto: PlushieRatvar + entities: + - uid: 4796 + components: + - type: Transform + pos: -117.51508,44.661068 + parent: 2 +- proto: PlushieRouny + entities: + - uid: 7541 + components: + - type: Transform + pos: 98.29341,19.971115 + parent: 2 +- proto: PlushieSharkBlue + entities: + - uid: 37765 + components: + - type: Transform + pos: 108.561195,66.25235 + parent: 2 +- proto: PlushieSlime + entities: + - uid: 20209 + components: + - type: Transform + pos: -83.39797,183.67769 + parent: 2 + - uid: 20920 + components: + - type: Transform + pos: -54.61544,155.99759 + parent: 2 + - uid: 20941 + components: + - type: Transform + pos: -59.240013,159.69836 + parent: 2 +- proto: PlushieSnake + entities: + - uid: 11337 + components: + - type: Transform + pos: -83.45579,168.05905 + parent: 2 +- proto: PlushieSpaceLizard + entities: + - uid: 12260 + components: + - type: Transform + pos: -111.848015,27.513908 + parent: 2 + - uid: 29014 + components: + - type: Transform + pos: 105.504,57.422195 + parent: 2 + - uid: 30839 + components: + - type: Transform + pos: -33.452324,108.3133 + parent: 2 +- proto: PlushieVox + entities: + - uid: 16860 + components: + - type: Transform + pos: -131.61572,105.58053 + parent: 2 + - uid: 23920 + components: + - type: Transform + pos: -40.57216,87.677414 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 9199 + components: + - type: Transform + pos: 71.5,61.5 + parent: 2 + - uid: 12549 + components: + - type: Transform + pos: 59.5,60.5 + parent: 2 + - uid: 18025 + components: + - type: Transform + pos: 59.5,61.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 3060 + components: + - type: Transform + pos: -80.5,144.5 + parent: 2 + - uid: 3918 + components: + - type: Transform + pos: -54.5,87.5 + parent: 2 + - uid: 4085 + components: + - type: Transform + pos: -112.5,55.5 + parent: 2 + - uid: 20710 + components: + - type: Transform + pos: 84.5,52.5 + parent: 2 + - uid: 34521 + components: + - type: Transform + pos: -29.5,178.5 + parent: 2 + - uid: 37332 + components: + - type: Transform + pos: -50.5,170.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 2891 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 36325 + components: + - type: Transform + pos: 69.5,20.5 + parent: 2 +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 25308 + components: + - type: Transform + pos: -121.48976,91.37749 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 1654 + components: + - type: Transform + pos: 2.5,211.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: -47.5,68.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 17.5,182.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: -62.5,169.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: -101.5,62.5 + parent: 2 + - uid: 12417 + components: + - type: Transform + pos: -67.5,148.5 + parent: 2 + - uid: 12604 + components: + - type: Transform + pos: -29.5,189.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + pos: 58.5,45.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + pos: 11.5,174.5 + parent: 2 + - uid: 18590 + components: + - type: Transform + pos: -16.5,175.5 + parent: 2 + - uid: 19087 + components: + - type: Transform + pos: -109.5,26.5 + parent: 2 + - uid: 21834 + components: + - type: Transform + pos: -109.5,27.5 + parent: 2 + - uid: 25303 + components: + - type: Transform + pos: 87.5,17.5 + parent: 2 + - uid: 38403 + components: + - type: Transform + pos: -88.5,76.5 + parent: 2 + - uid: 38408 + components: + - type: Transform + pos: -26.5,81.5 + parent: 2 + - uid: 38412 + components: + - type: Transform + pos: -85.5,173.5 + parent: 2 + - uid: 38415 + components: + - type: Transform + pos: -53.5,7.5 + parent: 2 + - uid: 38417 + components: + - type: Transform + pos: 55.5,42.5 + parent: 2 + - uid: 38428 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 +- proto: PortalArtifact + entities: + - uid: 27855 + components: + - type: Transform + pos: -63.5,165.5 + parent: 2 + - type: TimedDespawn + lifetime: 12000 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 27932 + - uid: 27932 + components: + - type: Transform + pos: 5.5,83.5 + parent: 2 + - type: TimedDespawn + lifetime: 12000 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 27855 +- proto: PortalGatewayBlue + entities: + - uid: 7401 + components: + - type: Transform + pos: -31.5,85.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 7402 + - uid: 7404 + components: + - type: Transform + pos: -31.5,77.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 7407 + - uid: 7409 + components: + - type: Transform + pos: -40.5,67.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 7522 + - uid: 8052 + components: + - type: Transform + pos: -49.5,77.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 8053 + - uid: 8054 + components: + - type: Transform + pos: -49.5,85.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 8055 +- proto: PortalGatewayOrange + entities: + - uid: 7402 + components: + - type: Transform + pos: -13.5,169.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 7401 + - uid: 7407 + components: + - type: Transform + pos: 66.5,34.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 7404 + - uid: 7522 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 7409 + - uid: 8053 + components: + - type: Transform + pos: -84.5,41.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 8052 + - uid: 8055 + components: + - type: Transform + pos: -64.5,157.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 8054 +- proto: PosterBroken + entities: + - uid: 28232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,153.5 + parent: 2 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 5672 + components: + - type: Transform + pos: -102.5,28.5 + parent: 2 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 8720 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 +- proto: PosterContrabandBorgFancy + entities: + - uid: 20901 + components: + - type: Transform + pos: -67.5,177.5 + parent: 2 +- proto: PosterContrabandBorgFancyv2 + entities: + - uid: 20906 + components: + - type: Transform + pos: -67.5,174.5 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 4771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,44.5 + parent: 2 + - uid: 13951 + components: + - type: Transform + pos: -68.5,92.5 + parent: 2 +- proto: PosterContrabandEAT + entities: + - uid: 691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,65.5 + parent: 2 +- proto: PosterContrabandHackingGuide + entities: + - uid: 14540 + components: + - type: Transform + pos: -69.5,84.5 + parent: 2 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 27856 + components: + - type: Transform + pos: -81.5,41.5 + parent: 2 +- proto: PosterContrabandKudzu + entities: + - uid: 19734 + components: + - type: Transform + pos: -79.5,153.5 + parent: 2 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 1544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 2 + - uid: 4949 + components: + - type: Transform + pos: 102.5,50.5 + parent: 2 +- proto: PosterContrabandPunchShit + entities: + - uid: 4839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,54.5 + parent: 2 +- proto: PosterContrabandRIPBadger + entities: + - uid: 23032 + components: + - type: Transform + pos: 1.5,181.5 + parent: 2 +- proto: PosterContrabandTools + entities: + - uid: 28617 + components: + - type: Transform + pos: -126.5,93.5 + parent: 2 +- proto: PosterLegitCarbonDioxide + entities: + - uid: 19963 + components: + - type: Transform + pos: -90.5,149.5 + parent: 2 +- proto: PosterLegitCarpMount + entities: + - uid: 17591 + components: + - type: Transform + pos: -59.5,160.5 + parent: 2 +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 8719 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 +- proto: PosterLegitHelpOthers + entities: + - uid: 23382 + components: + - type: Transform + pos: -15.5,186.5 + parent: 2 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 28586 + components: + - type: Transform + pos: -117.5,101.5 + parent: 2 +- proto: PosterLegitIan + entities: + - uid: 10459 + components: + - type: Transform + pos: -21.5,84.5 + parent: 2 + - uid: 17788 + components: + - type: Transform + pos: 77.5,23.5 + parent: 2 +- proto: PosterLegitLoveIan + entities: + - uid: 12991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,85.5 + parent: 2 +- proto: PosterLegitMime + entities: + - uid: 13969 + components: + - type: Transform + pos: -61.5,97.5 + parent: 2 +- proto: PosterLegitNoERP + entities: + - uid: 14000 + components: + - type: Transform + pos: -79.5,108.5 + parent: 2 + - uid: 18118 + components: + - type: Transform + pos: -60.5,112.5 + parent: 2 + - uid: 39425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,170.5 + parent: 2 +- proto: PosterLegitPeriodicTable + entities: + - uid: 3102 + components: + - type: Transform + pos: -106.5,29.5 + parent: 2 +- proto: PosterLegitRenault + entities: + - uid: 23536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,96.5 + parent: 2 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 19633 + components: + - type: Transform + pos: -113.5,93.5 + parent: 2 + - uid: 23033 + components: + - type: Transform + pos: -16.5,186.5 + parent: 2 +- proto: PosterLegitSafetyInternals + entities: + - uid: 19639 + components: + - type: Transform + pos: -101.5,91.5 + parent: 2 + - uid: 23027 + components: + - type: Transform + pos: 73.5,36.5 + parent: 2 + - uid: 23035 + components: + - type: Transform + pos: -14.5,186.5 + parent: 2 + - uid: 30229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,34.5 + parent: 2 + - uid: 32383 + components: + - type: Transform + pos: -56.5,9.5 + parent: 2 +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 25326 + components: + - type: Transform + pos: -102.5,22.5 + parent: 2 +- proto: PosterLegitSafetyReport + entities: + - uid: 3402 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 +- proto: PosterLegitSecWatch + entities: + - uid: 3417 + components: + - type: Transform + pos: 73.5,42.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,10.5 + parent: 2 + - uid: 24569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,177.5 + parent: 2 +- proto: PosterLegitTheOwl + entities: + - uid: 14001 + components: + - type: Transform + pos: -67.5,65.5 + parent: 2 +- proto: PosterLegitVacation + entities: + - uid: 24170 + components: + - type: Transform + pos: -41.5,96.5 + parent: 2 +- proto: PosterLegitWalk + entities: + - uid: 15297 + components: + - type: Transform + pos: -107.5,101.5 + parent: 2 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 10549 + components: + - type: Transform + pos: -14.5,77.5 + parent: 2 +- proto: PottedPlant10 + entities: + - uid: 4347 + components: + - type: Transform + pos: 85.50945,67.47177 + parent: 2 + - uid: 4707 + components: + - type: Transform + pos: 79.5,67.5 + parent: 2 +- proto: PottedPlant20 + entities: + - uid: 14105 + components: + - type: Transform + pos: -59.5,99.5 + parent: 2 +- proto: PottedPlant5 + entities: + - uid: 37707 + components: + - type: Transform + pos: -5.5,82.5 + parent: 2 +- proto: PottedPlant7 + entities: + - uid: 18383 + components: + - type: Transform + pos: -83.5,158.5 + parent: 2 +- proto: PottedPlantBioluminscent + entities: + - uid: 2948 + components: + - type: Transform + pos: -33.5,105.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + pos: -29.5,99.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + pos: -17.5,179.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: -2.5,169.5 + parent: 2 + - uid: 13705 + components: + - type: Transform + pos: -36.5,97.5 + parent: 2 + - uid: 13739 + components: + - type: Transform + pos: -38.5,101.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + pos: -42.5,101.5 + parent: 2 + - uid: 13741 + components: + - type: Transform + pos: -42.5,97.5 + parent: 2 + - uid: 13742 + components: + - type: Transform + pos: -38.5,97.5 + parent: 2 + - uid: 16672 + components: + - type: Transform + pos: -22.5,80.5 + parent: 2 + - uid: 18546 + components: + - type: Transform + pos: -79.5,152.5 + parent: 2 + - uid: 19700 + components: + - type: Transform + pos: -98.5,153.5 + parent: 2 + - uid: 20478 + components: + - type: Transform + pos: -98.5,167.5 + parent: 2 + - uid: 20866 + components: + - type: Transform + pos: -89.5,177.5 + parent: 2 + - uid: 20869 + components: + - type: Transform + pos: -85.5,182.5 + parent: 2 + - uid: 22980 + components: + - type: Transform + pos: -14.5,194.5 + parent: 2 + - uid: 23667 + components: + - type: Transform + pos: 8.5,183.5 + parent: 2 + - uid: 25402 + components: + - type: Transform + pos: 3.5,167.5 + parent: 2 + - uid: 36556 + components: + - type: Transform + pos: -29.5,97.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 265 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -56.5,153.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: -61.5,-1.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + pos: 40.5,62.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + pos: 55.5,47.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: 64.5,55.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + pos: 74.5,60.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: 102.5,62.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + pos: 114.5,62.5 + parent: 2 + - uid: 5315 + components: + - type: Transform + pos: 53.5,66.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: -58.5,79.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + pos: -65.5,132.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: -65.5,128.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: -57.5,128.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: -57.5,132.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,60.5 + parent: 2 + - uid: 10818 + components: + - type: Transform + pos: -17.5,91.5 + parent: 2 + - uid: 11051 + components: + - type: Transform + pos: -23.5,61.5 + parent: 2 + - uid: 11139 + components: + - type: Transform + pos: -11.5,71.5 + parent: 2 + - uid: 11419 + components: + - type: Transform + pos: -54.5,160.5 + parent: 2 + - uid: 11440 + components: + - type: Transform + pos: 111.5,61.5 + parent: 2 + - uid: 11441 + components: + - type: Transform + pos: 105.5,61.5 + parent: 2 + - uid: 11663 + components: + - type: Transform + pos: -43.5,71.5 + parent: 2 + - uid: 11664 + components: + - type: Transform + pos: -37.5,71.5 + parent: 2 + - uid: 11666 + components: + - type: Transform + pos: -45.5,82.5 + parent: 2 + - uid: 12063 + components: + - type: Transform + pos: -56.5,71.5 + parent: 2 + - uid: 12069 + components: + - type: Transform + pos: -61.5,61.5 + parent: 2 + - uid: 12071 + components: + - type: Transform + pos: -57.5,61.5 + parent: 2 + - uid: 13156 + components: + - type: Transform + pos: -30.5,65.5 + parent: 2 + - uid: 13168 + components: + - type: Transform + pos: -25.5,71.5 + parent: 2 + - uid: 13635 + components: + - type: Transform + pos: -44.5,106.5 + parent: 2 + - uid: 14201 + components: + - type: Transform + pos: -68.5,165.5 + parent: 2 + - uid: 14214 + components: + - type: Transform + pos: -73.5,165.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + pos: -73.5,151.5 + parent: 2 + - uid: 14218 + components: + - type: Transform + pos: -60.5,153.5 + parent: 2 + - uid: 14716 + components: + - type: Transform + pos: -72.5,86.5 + parent: 2 + - uid: 14717 + components: + - type: Transform + pos: -68.5,79.5 + parent: 2 + - uid: 15890 + components: + - type: Transform + pos: -56.5,73.5 + parent: 2 + - uid: 16759 + components: + - type: Transform + pos: 45.5,56.5 + parent: 2 + - uid: 16863 + components: + - type: Transform + pos: -24.5,73.5 + parent: 2 + - uid: 17173 + components: + - type: Transform + pos: -64.5,69.5 + parent: 2 + - uid: 17217 + components: + - type: Transform + pos: -88.5,44.5 + parent: 2 + - uid: 17363 + components: + - type: Transform + pos: -64.5,69.5 + parent: 2 + - uid: 17587 + components: + - type: Transform + pos: -81.5,186.5 + parent: 2 + - uid: 18534 + components: + - type: Transform + pos: -83.5,169.5 + parent: 2 + - uid: 18671 + components: + - type: Transform + pos: -81.5,160.5 + parent: 2 + - uid: 20068 + components: + - type: Transform + pos: -77.5,167.5 + parent: 2 + - uid: 20088 + components: + - type: Transform + pos: -75.5,173.5 + parent: 2 + - uid: 20127 + components: + - type: Transform + pos: -77.5,186.5 + parent: 2 + - uid: 20140 + components: + - type: Transform + pos: -83.5,177.5 + parent: 2 + - uid: 20144 + components: + - type: Transform + pos: -76.5,185.5 + parent: 2 + - uid: 20145 + components: + - type: Transform + pos: -82.5,185.5 + parent: 2 + - uid: 20502 + components: + - type: Transform + pos: -85.5,175.5 + parent: 2 + - uid: 20503 + components: + - type: Transform + pos: -86.5,167.5 + parent: 2 + - uid: 20900 + components: + - type: Transform + pos: -68.5,178.5 + parent: 2 + - uid: 21033 + components: + - type: Transform + pos: -68.5,167.5 + parent: 2 + - uid: 21456 + components: + - type: Transform + pos: -35.5,82.5 + parent: 2 + - uid: 22121 + components: + - type: Transform + pos: -75.5,151.5 + parent: 2 + - uid: 22763 + components: + - type: Transform + pos: -16.5,187.5 + parent: 2 + - uid: 26437 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 28679 + components: + - type: Transform + pos: 109.5,44.5 + parent: 2 + - uid: 28779 + components: + - type: Transform + pos: -105.5,45.5 + parent: 2 + - uid: 28838 + components: + - type: Transform + pos: -102.5,45.5 + parent: 2 + - uid: 28899 + components: + - type: Transform + pos: -98.5,51.5 + parent: 2 + - uid: 34588 + components: + - type: Transform + pos: -129.5,87.5 + parent: 2 + - uid: 35947 + components: + - type: Transform + pos: -70.5,73.5 + parent: 2 + - uid: 36168 + components: + - type: Transform + pos: -45.5,73.5 + parent: 2 + - uid: 38419 + components: + - type: Transform + pos: -77.5,36.5 + parent: 2 +- proto: PottedPlantRandomPlastic + entities: + - uid: 14047 + components: + - type: Transform + pos: -61.5,103.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + pos: -59.5,95.5 + parent: 2 + - uid: 14398 + components: + - type: Transform + pos: -60.5,87.5 + parent: 2 + - uid: 14519 + components: + - type: Transform + pos: -66.5,83.5 + parent: 2 + - uid: 15703 + components: + - type: Transform + pos: -37.5,55.5 + parent: 2 +- proto: PottedPlantRD + entities: + - uid: 19954 + components: + - type: Transform + pos: -86.5,156.5 + parent: 2 +- proto: PowerCageMedium + entities: + - uid: 7160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.7983627,-0.6391907 + parent: 13386 + - uid: 7605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.8139877,-0.38919067 + parent: 13386 +- proto: PowerCageRecharger + entities: + - uid: 5410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 13386 +- proto: PowerCellHigh + entities: + - uid: 26406 + components: + - type: Transform + pos: 21.7543,189.20636 + parent: 2 +- proto: PowerCellHyper + entities: + - uid: 24807 + components: + - type: Transform + parent: 24806 + - type: Physics + canCollide: False +- proto: PowerCellMedium + entities: + - uid: 10619 + components: + - type: Transform + pos: -13.676371,79.458405 + parent: 2 + - uid: 20227 + components: + - type: Transform + pos: -75.622734,182.13773 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 10618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,80.5 + parent: 2 + - uid: 11748 + components: + - type: Transform + pos: -46.5,101.5 + parent: 2 + - uid: 12040 + components: + - type: Transform + pos: 74.5,61.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,192.5 + parent: 2 + - uid: 13387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 13386 + - uid: 14109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,43.5 + parent: 2 + - uid: 16892 + components: + - type: Transform + pos: -86.5,79.5 + parent: 2 + - uid: 17932 + components: + - type: Transform + pos: -87.5,154.5 + parent: 2 + - uid: 18293 + components: + - type: Transform + pos: -99.5,40.5 + parent: 2 + - uid: 18642 + components: + - type: Transform + pos: -54.5,156.5 + parent: 2 + - uid: 20383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,162.5 + parent: 2 + - uid: 20990 + components: + - type: Transform + pos: -73.5,167.5 + parent: 2 + - uid: 24817 + components: + - type: Transform + pos: -98.5,34.5 + parent: 2 + - uid: 28002 + components: + - type: Transform + pos: -91.5,48.5 + parent: 2 + - uid: 30980 + components: + - type: Transform + pos: 3.5,1.5 + parent: 30902 + - uid: 43176 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 37842 +- proto: PowerCellSmall + entities: + - uid: 10622 + components: + - type: Transform + pos: -13.665123,79.70578 + parent: 2 + - uid: 28630 + components: + - type: Transform + parent: 28629 + - type: Physics + canCollide: False +- proto: Poweredlight + entities: + - uid: 14 + components: + - type: Transform + pos: 33.5,61.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,1.5 + parent: 2 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,8.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,1.5 + parent: 2 + - uid: 627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,53.5 + parent: 2 + - uid: 682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,37.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-9.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: -116.5,56.5 + parent: 2 + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-1.5 + parent: 2 + - uid: 929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,53.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,34.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,164.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-2.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-10.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,8.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-15.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,83.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-8.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,2.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-5.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-12.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-3.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,10.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: 72.5,44.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + pos: 76.5,63.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: -11.5,84.5 + parent: 2 + - uid: 3935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,46.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,82.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,46.5 + parent: 2 + - uid: 3978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,53.5 + parent: 2 + - uid: 4016 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,67.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,48.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,53.5 + parent: 2 + - uid: 4272 + components: + - type: Transform + pos: 74.5,21.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: -37.5,92.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,58.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,43.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,43.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,57.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,63.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + pos: 74.5,63.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,67.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,67.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + pos: 54.5,57.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: -43.5,92.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,50.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,70.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,65.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,63.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,62.5 + parent: 2 + - uid: 4708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,20.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 111.5,57.5 + parent: 2 + - type: Timer + - uid: 4982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,52.5 + parent: 2 + - uid: 4985 + components: + - type: Transform + pos: 96.5,59.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: 94.5,59.5 + parent: 2 + - type: Timer + - uid: 4987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,47.5 + parent: 2 + - type: Timer + - uid: 4988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,47.5 + parent: 2 + - uid: 5019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,173.5 + parent: 2 + - uid: 5045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 102.5,60.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,57.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 114.5,60.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: 110.5,62.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + pos: 106.5,62.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 5225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,75.5 + parent: 2 + - uid: 5236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,89.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,47.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,65.5 + parent: 2 + - uid: 5286 + components: + - type: Transform + pos: 56.5,67.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,83.5 + parent: 2 + - uid: 5295 + components: + - type: Transform + pos: 50.5,53.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,61.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + pos: -31.5,87.5 + parent: 2 + - uid: 5329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,77.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,67.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + pos: -31.5,79.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,83.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,75.5 + parent: 2 + - uid: 5413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,67.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + pos: -49.5,79.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + pos: -49.5,87.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-9.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + pos: 77.5,40.5 + parent: 2 + - uid: 5603 + components: + - type: Transform + pos: -65.5,-4.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,34.5 + parent: 2 + - uid: 5813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,26.5 + parent: 2 + - uid: 5817 + components: + - type: Transform + pos: -86.5,37.5 + parent: 2 + - uid: 5824 + components: + - type: Transform + pos: 84.5,32.5 + parent: 2 + - uid: 5863 + components: + - type: Transform + pos: 66.5,36.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,32.5 + parent: 2 + - uid: 6248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,207.5 + parent: 2 + - uid: 6266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,203.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,80.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + pos: -14.5,97.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,99.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,105.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + pos: 15.5,172.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,50.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,68.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,41.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,37.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,41.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: 61.5,62.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,58.5 + parent: 2 + - uid: 7336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,61.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + pos: -67.5,131.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,131.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,129.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,134.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,126.5 + parent: 2 + - uid: 7778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,126.5 + parent: 2 + - uid: 7780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,134.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,80.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: 9.5,172.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,129.5 + parent: 2 + - uid: 7840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,150.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,77.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,136.5 + parent: 2 + - uid: 8114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,155.5 + parent: 2 + - uid: 8359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,52.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,34.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + pos: 70.5,24.5 + parent: 2 + - uid: 10551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,83.5 + parent: 2 + - uid: 10628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,80.5 + parent: 2 + - uid: 10760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,81.5 + parent: 2 + - uid: 10850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,109.5 + parent: 2 + - uid: 10869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,78.5 + parent: 2 + - type: Timer + - uid: 11324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,151.5 + parent: 2 + - uid: 11327 + components: + - type: Transform + pos: -90.5,160.5 + parent: 2 + - uid: 11328 + components: + - type: Transform + pos: -74.5,159.5 + parent: 2 + - uid: 11332 + components: + - type: Transform + pos: -79.5,186.5 + parent: 2 + - uid: 11335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,157.5 + parent: 2 + - uid: 11336 + components: + - type: Transform + pos: -83.5,160.5 + parent: 2 + - uid: 11339 + components: + - type: Transform + pos: -81.5,160.5 + parent: 2 + - uid: 11341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,167.5 + parent: 2 + - uid: 11342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,167.5 + parent: 2 + - uid: 11343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,175.5 + parent: 2 + - uid: 11344 + components: + - type: Transform + pos: -83.5,175.5 + parent: 2 + - uid: 11350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,180.5 + parent: 2 + - uid: 11351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,180.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + pos: -84.5,165.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + pos: -90.5,165.5 + parent: 2 + - uid: 11356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,167.5 + parent: 2 + - uid: 11364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,167.5 + parent: 2 + - uid: 11365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,176.5 + parent: 2 + - uid: 11366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,174.5 + parent: 2 + - uid: 11367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,174.5 + parent: 2 + - uid: 11368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,171.5 + parent: 2 + - uid: 11373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,181.5 + parent: 2 + - uid: 11377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,177.5 + parent: 2 + - uid: 11380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,164.5 + parent: 2 + - uid: 11394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,85.5 + parent: 2 + - uid: 11400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,65.5 + parent: 2 + - uid: 11404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,77.5 + parent: 2 + - uid: 11408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,205.5 + parent: 2 + - uid: 11415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,155.5 + parent: 2 + - uid: 11422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,151.5 + parent: 2 + - uid: 11454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,183.5 + parent: 2 + - uid: 11461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,202.5 + parent: 2 + - uid: 11476 + components: + - type: Transform + pos: -3.5,172.5 + parent: 2 + - uid: 11477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,165.5 + parent: 2 + - uid: 11478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,167.5 + parent: 2 + - uid: 11598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,36.5 + parent: 2 + - uid: 11642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,45.5 + parent: 2 + - uid: 11648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,62.5 + parent: 2 + - uid: 11665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,43.5 + parent: 2 + - uid: 11700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,97.5 + parent: 2 + - uid: 11701 + components: + - type: Transform + pos: -39.5,95.5 + parent: 2 + - uid: 11702 + components: + - type: Transform + pos: -41.5,95.5 + parent: 2 + - uid: 11768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,103.5 + parent: 2 + - uid: 11774 + components: + - type: Transform + pos: -46.5,101.5 + parent: 2 + - uid: 11959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,89.5 + parent: 2 + - uid: 11967 + components: + - type: Transform + pos: -26.5,91.5 + parent: 2 + - uid: 12031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,63.5 + parent: 2 + - uid: 12182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,56.5 + parent: 2 + - uid: 12483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,88.5 + parent: 2 + - uid: 12653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 114.5,46.5 + parent: 2 + - uid: 12884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,189.5 + parent: 2 + - uid: 12900 + components: + - type: Transform + pos: -84.5,43.5 + parent: 2 + - uid: 12934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,103.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,65.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,65.5 + parent: 2 + - uid: 12956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,60.5 + parent: 2 + - uid: 12957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,60.5 + parent: 2 + - uid: 12960 + components: + - type: Transform + pos: -19.5,63.5 + parent: 2 + - uid: 12961 + components: + - type: Transform + pos: -21.5,63.5 + parent: 2 + - uid: 13188 + components: + - type: Transform + pos: -24.5,71.5 + parent: 2 + - uid: 13189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,66.5 + parent: 2 + - uid: 13227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,85.5 + parent: 2 + - uid: 13249 + components: + - type: Transform + pos: -11.5,69.5 + parent: 2 + - uid: 13318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 103.5,46.5 + parent: 2 + - uid: 13322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 107.5,43.5 + parent: 2 + - uid: 13323 + components: + - type: Transform + pos: 116.5,49.5 + parent: 2 + - uid: 13325 + components: + - type: Transform + pos: 111.5,49.5 + parent: 2 + - uid: 13421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,96.5 + parent: 2 + - uid: 13424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,100.5 + parent: 2 + - uid: 13614 + components: + - type: Transform + pos: -107.5,36.5 + parent: 2 + - uid: 13699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,86.5 + parent: 2 + - uid: 13722 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 13386 + - uid: 13773 + components: + - type: Transform + pos: -13.5,171.5 + parent: 2 + - uid: 14672 + components: + - type: Transform + pos: -76.5,86.5 + parent: 2 + - uid: 14673 + components: + - type: Transform + pos: -74.5,86.5 + parent: 2 + - uid: 14710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,78.5 + parent: 2 + - uid: 14760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,60.5 + parent: 2 + - uid: 14799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,59.5 + parent: 2 + - uid: 15398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,164.5 + parent: 2 + - uid: 15408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,63.5 + parent: 2 + - uid: 15469 + components: + - type: Transform + pos: -54.5,91.5 + parent: 2 + - uid: 15497 + components: + - type: Transform + pos: 48.5,62.5 + parent: 2 + - uid: 15627 + components: + - type: Transform + pos: 83.5,40.5 + parent: 2 + - uid: 15632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,38.5 + parent: 2 + - uid: 15886 + components: + - type: Transform + pos: 79.5,63.5 + parent: 2 + - uid: 15891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,80.5 + parent: 2 + - uid: 16091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 13386 + - uid: 16132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 13386 + - uid: 16349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,57.5 + parent: 2 + - uid: 16418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,49.5 + parent: 2 + - uid: 16754 + components: + - type: Transform + pos: -65.5,75.5 + parent: 2 + - uid: 16763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,58.5 + parent: 2 + - uid: 16950 + components: + - type: Transform + pos: -1.5,5.5 + parent: 13386 + - uid: 16951 + components: + - type: Transform + pos: 1.5,3.5 + parent: 13386 + - uid: 17201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,73.5 + parent: 2 + - uid: 17371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,62.5 + parent: 2 + - uid: 17480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,44.5 + parent: 2 + - uid: 17761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,165.5 + parent: 2 + - uid: 17892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,78.5 + parent: 2 + - uid: 18058 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -130.5,101.5 + parent: 2 + - uid: 18069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,39.5 + parent: 2 + - uid: 18218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,44.5 + parent: 2 + - uid: 18251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,30.5 + parent: 2 + - uid: 18358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,150.5 + parent: 2 + - uid: 18661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,36.5 + parent: 2 + - uid: 18677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,164.5 + parent: 2 + - uid: 18686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,36.5 + parent: 2 + - uid: 18954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,32.5 + parent: 2 + - uid: 19070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,22.5 + parent: 2 + - uid: 19105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,33.5 + parent: 2 + - uid: 19211 + components: + - type: Transform + pos: -31.5,98.5 + parent: 2 + - uid: 19257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,44.5 + parent: 2 + - uid: 19268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,147.5 + parent: 2 + - uid: 19453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,155.5 + parent: 2 + - uid: 19623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,85.5 + parent: 2 + - uid: 19651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,169.5 + parent: 2 + - uid: 19814 + components: + - type: Transform + pos: -83.5,156.5 + parent: 2 + - uid: 19817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,154.5 + parent: 2 + - uid: 19949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,155.5 + parent: 2 + - uid: 19971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,151.5 + parent: 2 + - uid: 20048 + components: + - type: Transform + pos: -64.5,153.5 + parent: 2 + - uid: 20414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,169.5 + parent: 2 + - uid: 20779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,39.5 + parent: 2 + - uid: 20944 + components: + - type: Transform + pos: -64.5,159.5 + parent: 2 + - uid: 20945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,157.5 + parent: 2 + - uid: 20946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,155.5 + parent: 2 + - uid: 20998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,163.5 + parent: 2 + - uid: 21046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,177.5 + parent: 2 + - uid: 21230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,177.5 + parent: 2 + - uid: 21255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,180.5 + parent: 2 + - uid: 21458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,105.5 + parent: 2 + - uid: 22138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,151.5 + parent: 2 + - uid: 22139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,155.5 + parent: 2 + - uid: 22394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,200.5 + parent: 2 + - uid: 22418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,57.5 + parent: 2 + - uid: 22439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,187.5 + parent: 2 + - uid: 22475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,182.5 + parent: 2 + - uid: 22590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,176.5 + parent: 2 + - uid: 22614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,173.5 + parent: 2 + - uid: 22615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,173.5 + parent: 2 + - uid: 22642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,186.5 + parent: 2 + - uid: 22686 + components: + - type: Transform + pos: -13.5,183.5 + parent: 2 + - uid: 22687 + components: + - type: Transform + pos: -10.5,183.5 + parent: 2 + - uid: 22698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,189.5 + parent: 2 + - uid: 22699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,195.5 + parent: 2 + - uid: 22708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,182.5 + parent: 2 + - uid: 22721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,182.5 + parent: 2 + - uid: 22757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,187.5 + parent: 2 + - uid: 22758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,187.5 + parent: 2 + - uid: 22786 + components: + - type: Transform + pos: -14.5,189.5 + parent: 2 + - uid: 22820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,191.5 + parent: 2 + - uid: 22821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,191.5 + parent: 2 + - uid: 22822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,194.5 + parent: 2 + - uid: 22823 + components: + - type: Transform + pos: -14.5,194.5 + parent: 2 + - uid: 22824 + components: + - type: Transform + pos: -20.5,194.5 + parent: 2 + - uid: 22862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,188.5 + parent: 2 + - uid: 22863 + components: + - type: Transform + pos: -5.5,194.5 + parent: 2 + - uid: 22864 + components: + - type: Transform + pos: -9.5,194.5 + parent: 2 + - uid: 22907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,200.5 + parent: 2 + - uid: 22908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,201.5 + parent: 2 + - uid: 22909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,200.5 + parent: 2 + - uid: 22910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,201.5 + parent: 2 + - uid: 22916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,196.5 + parent: 2 + - uid: 22917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,196.5 + parent: 2 + - uid: 22918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,196.5 + parent: 2 + - uid: 22919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,196.5 + parent: 2 + - uid: 22920 + components: + - type: Transform + pos: -9.5,199.5 + parent: 2 + - uid: 22921 + components: + - type: Transform + pos: -6.5,199.5 + parent: 2 + - uid: 22948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,196.5 + parent: 2 + - uid: 22949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,202.5 + parent: 2 + - uid: 22950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,202.5 + parent: 2 + - uid: 22958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,205.5 + parent: 2 + - uid: 22959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,205.5 + parent: 2 + - uid: 22962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,196.5 + parent: 2 + - uid: 22973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,200.5 + parent: 2 + - uid: 22985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,202.5 + parent: 2 + - uid: 22991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,202.5 + parent: 2 + - uid: 23110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,85.5 + parent: 2 + - uid: 23220 + components: + - type: Transform + pos: -4.5,69.5 + parent: 2 + - uid: 23221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,83.5 + parent: 2 + - uid: 23341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-13.5 + parent: 2 + - uid: 23342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,70.5 + parent: 2 + - uid: 23344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,204.5 + parent: 2 + - uid: 23458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,202.5 + parent: 2 + - uid: 23532 + components: + - type: Transform + pos: -42.5,101.5 + parent: 2 + - uid: 23533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,190.5 + parent: 2 + - uid: 23534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,193.5 + parent: 2 + - uid: 23629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,193.5 + parent: 2 + - uid: 23630 + components: + - type: Transform + pos: 20.5,195.5 + parent: 2 + - uid: 23631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,188.5 + parent: 2 + - uid: 23633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,193.5 + parent: 2 + - uid: 23673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,190.5 + parent: 2 + - uid: 23674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,193.5 + parent: 2 + - uid: 23675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,190.5 + parent: 2 + - uid: 23676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,193.5 + parent: 2 + - uid: 23677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,187.5 + parent: 2 + - uid: 23734 + components: + - type: Transform + pos: -59.5,75.5 + parent: 2 + - uid: 23858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,63.5 + parent: 2 + - uid: 23859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,61.5 + parent: 2 + - uid: 23865 + components: + - type: Transform + pos: -40.5,75.5 + parent: 2 + - uid: 23994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-7.5 + parent: 2 + - uid: 24137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,199.5 + parent: 2 + - uid: 24372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,178.5 + parent: 2 + - uid: 24501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-7.5 + parent: 2 + - uid: 24578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,178.5 + parent: 2 + - uid: 24798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,70.5 + parent: 2 + - uid: 25051 + components: + - type: Transform + pos: -20.5,71.5 + parent: 2 + - uid: 25053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,65.5 + parent: 2 + - uid: 25056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,62.5 + parent: 2 + - uid: 25059 + components: + - type: Transform + pos: -18.5,71.5 + parent: 2 + - uid: 25061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,98.5 + parent: 2 + - uid: 25065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,165.5 + parent: 2 + - uid: 25135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,70.5 + parent: 2 + - uid: 25136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,77.5 + parent: 2 + - uid: 25153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,83.5 + parent: 2 + - uid: 25192 + components: + - type: Transform + pos: -125.5,60.5 + parent: 2 + - type: Timer + - uid: 25386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,186.5 + parent: 2 + - uid: 25415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,73.5 + parent: 2 + - uid: 25416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,83.5 + parent: 2 + - uid: 25417 + components: + - type: Transform + pos: -78.5,75.5 + parent: 2 + - uid: 25505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,175.5 + parent: 2 + - uid: 25554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,175.5 + parent: 2 + - uid: 25555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,176.5 + parent: 2 + - uid: 25688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,207.5 + parent: 2 + - uid: 25693 + components: + - type: Transform + pos: -40.5,110.5 + parent: 2 + - uid: 25814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,38.5 + parent: 2 + - uid: 25833 + components: + - type: Transform + pos: -7.5,171.5 + parent: 2 + - uid: 26014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,167.5 + parent: 2 + - uid: 26017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,170.5 + parent: 2 + - uid: 26327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,191.5 + parent: 2 + - uid: 26479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,57.5 + parent: 2 + - uid: 26622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,62.5 + parent: 2 + - uid: 27338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,34.5 + parent: 2 + - uid: 27388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,65.5 + parent: 2 + - uid: 27519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,41.5 + parent: 2 + - uid: 27746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,39.5 + parent: 2 + - uid: 27747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,43.5 + parent: 2 + - uid: 27973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 2 + - uid: 28227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,45.5 + parent: 2 + - uid: 28279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,177.5 + parent: 2 + - uid: 28441 + components: + - type: Transform + pos: -120.5,60.5 + parent: 2 + - uid: 28769 + components: + - type: Transform + pos: -93.5,48.5 + parent: 2 + - uid: 28780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,107.5 + parent: 2 + - uid: 28910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,48.5 + parent: 2 + - uid: 28911 + components: + - type: Transform + pos: -100.5,51.5 + parent: 2 + - uid: 29712 + components: + - type: Transform + pos: 73.5,55.5 + parent: 2 + - uid: 29718 + components: + - type: Transform + pos: 69.5,55.5 + parent: 2 + - uid: 30320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,20.5 + parent: 2 + - uid: 30376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,24.5 + parent: 2 + - uid: 30389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,26.5 + parent: 2 + - type: Timer + - uid: 30456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,21.5 + parent: 2 + - uid: 30463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,31.5 + parent: 2 + - uid: 30981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 30902 + - uid: 30982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 30902 + - uid: 30985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 30902 + - uid: 30986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 30902 + - uid: 30996 + components: + - type: Transform + pos: 1.5,4.5 + parent: 30902 + - uid: 32449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,52.5 + parent: 2 + - uid: 32450 + components: + - type: Transform + pos: 98.5,54.5 + parent: 2 + - uid: 32451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,54.5 + parent: 2 + - uid: 34126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,64.5 + parent: 2 + - uid: 34308 + components: + - type: Transform + pos: -127.5,89.5 + parent: 2 + - uid: 34421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,182.5 + parent: 2 + - uid: 34508 + components: + - type: Transform + pos: -24.5,188.5 + parent: 2 + - uid: 34559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 30902 + - uid: 34586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,87.5 + parent: 2 + - uid: 34860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,213.5 + parent: 2 + - uid: 34861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,219.5 + parent: 2 + - uid: 35501 + components: + - type: Transform + pos: -68.5,112.5 + parent: 2 + - uid: 35772 + components: + - type: Transform + pos: -108.5,96.5 + parent: 2 + - uid: 35773 + components: + - type: Transform + pos: -105.5,96.5 + parent: 2 + - uid: 35774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,98.5 + parent: 2 + - uid: 35775 + components: + - type: Transform + pos: -103.5,103.5 + parent: 2 + - uid: 35776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,98.5 + parent: 2 + - uid: 35830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,79.5 + parent: 2 + - uid: 35942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,60.5 + parent: 2 + - uid: 35951 + components: + - type: Transform + pos: -0.5,63.5 + parent: 2 + - uid: 36131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,89.5 + parent: 2 + - uid: 36614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,191.5 + parent: 2 + - uid: 37047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 36996 + - uid: 37959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 37842 + - uid: 37960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 37842 + - uid: 37962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 37842 + - uid: 38086 + components: + - type: Transform + pos: 74.5,40.5 + parent: 2 + - uid: 38087 + components: + - type: Transform + pos: 68.5,40.5 + parent: 2 + - uid: 38260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,171.5 + parent: 2 + - uid: 38261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,168.5 + parent: 2 + - uid: 38288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 37842 + - uid: 38475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - uid: 39083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,67.5 + parent: 2 + - uid: 39236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,112.5 + parent: 2 + - uid: 39287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,73.5 + parent: 2 + - uid: 39291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,77.5 + parent: 2 + - uid: 39294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,80.5 + parent: 2 + - uid: 39297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,74.5 + parent: 2 + - uid: 39319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,99.5 + parent: 2 + - uid: 39344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,103.5 + parent: 2 + - uid: 39382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,107.5 + parent: 2 + - uid: 39405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,65.5 + parent: 2 + - uid: 39448 + components: + - type: Transform + pos: 1.5,2.5 + parent: 21114 + - uid: 39449 + components: + - type: Transform + pos: 4.5,2.5 + parent: 21114 + - uid: 39461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 41207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,50.5 + parent: 2 + - uid: 42075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,103.5 + parent: 2 + - uid: 42448 + components: + - type: Transform + pos: 71.5,69.5 + parent: 2 + - uid: 42454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,42.5 + parent: 2 + - uid: 42464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 2 + - uid: 42597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,46.5 + parent: 2 + - uid: 42602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,56.5 + parent: 2 + - uid: 42893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,55.5 + parent: 2 + - uid: 43276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,102.5 + parent: 2 +- proto: PoweredlightEmpty + entities: + - uid: 2978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,12.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 2979 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,147.5 + parent: 2 + - uid: 17611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,150.5 + parent: 2 + - uid: 17956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,155.5 + parent: 2 + - uid: 18308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,30.5 + parent: 2 + - uid: 18361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,150.5 + parent: 2 + - uid: 19234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,147.5 + parent: 2 + - uid: 19263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,147.5 + parent: 2 + - uid: 19280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,147.5 + parent: 2 + - uid: 19298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,150.5 + parent: 2 + - uid: 20006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,80.5 + parent: 2 + - uid: 20491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,87.5 + parent: 2 + - uid: 23198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,74.5 + parent: 2 + - uid: 23200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,74.5 + parent: 2 + - uid: 23369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,82.5 + parent: 2 + - uid: 23671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,184.5 + parent: 2 + - uid: 23672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,184.5 + parent: 2 + - uid: 31943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-16.5 + parent: 2 + - uid: 32759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,147.5 + parent: 2 +- proto: PoweredlightExterior + entities: + - uid: 1094 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: -47.5,-16.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-17.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,100.5 + parent: 2 + - uid: 11763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,94.5 + parent: 2 + - uid: 15803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,57.5 + parent: 2 + - uid: 19517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,94.5 + parent: 2 + - uid: 22701 + components: + - type: Transform + pos: -8.5,210.5 + parent: 2 + - uid: 30835 + components: + - type: Transform + pos: -76.5,139.5 + parent: 2 + - uid: 30997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 30902 + - uid: 30998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 30902 + - uid: 31855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,177.5 + parent: 2 + - uid: 38708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,73.5 + parent: 2 +- proto: PoweredlightLED + entities: + - uid: 1252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,128.5 + parent: 2 + - uid: 7720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,136.5 + parent: 2 + - uid: 7723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,132.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + pos: -58.5,124.5 + parent: 2 + - uid: 17105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,221.5 + parent: 2 + - uid: 37709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,149.5 + parent: 2 + - uid: 37710 + components: + - type: Transform + pos: 69.5,15.5 + parent: 2 + - uid: 37963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 37842 + - uid: 37964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 37842 +- proto: PoweredlightOrange + entities: + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,86.5 + parent: 2 + - uid: 8784 + components: + - type: Transform + pos: -83.5,84.5 + parent: 2 +- proto: PoweredLightPostSmall + entities: + - uid: 729 + components: + - type: Transform + pos: -47.5,8.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: -141.5,105.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: -94.5,94.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: -91.5,100.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: -133.5,105.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: 83.5,27.5 + parent: 2 + - uid: 5624 + components: + - type: Transform + pos: 67.5,30.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + pos: -132.5,49.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + pos: -123.5,15.5 + parent: 2 + - uid: 11622 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 12136 + components: + - type: Transform + pos: -137.5,38.5 + parent: 2 + - uid: 13356 + components: + - type: Transform + pos: -137.5,47.5 + parent: 2 + - uid: 20910 + components: + - type: Transform + pos: -48.5,107.5 + parent: 2 + - uid: 21454 + components: + - type: Transform + pos: -119.5,9.5 + parent: 2 + - uid: 22645 + components: + - type: Transform + pos: -137.5,51.5 + parent: 2 + - uid: 23053 + components: + - type: Transform + pos: -132.5,41.5 + parent: 2 + - uid: 30665 + components: + - type: Transform + pos: -127.5,15.5 + parent: 2 + - uid: 30667 + components: + - type: Transform + pos: -128.5,9.5 + parent: 2 + - uid: 32879 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 34813 + components: + - type: Transform + pos: -32.5,107.5 + parent: 2 + - uid: 43359 + components: + - type: Transform + pos: -131.5,9.5 + parent: 2 + - uid: 43379 + components: + - type: Transform + pos: -122.5,9.5 + parent: 2 +- proto: PoweredlightSodium + entities: + - uid: 4516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -129.5,50.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,30.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,28.5 + parent: 2 + - uid: 5908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,50.5 + parent: 2 + - uid: 22018 + components: + - type: Transform + pos: -117.5,66.5 + parent: 2 + - type: Timer + - uid: 27179 + components: + - type: Transform + pos: -118.5,51.5 + parent: 2 + - uid: 27180 + components: + - type: Transform + pos: -114.5,51.5 + parent: 2 + - uid: 27984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -129.5,44.5 + parent: 2 + - uid: 28496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,49.5 + parent: 2 + - uid: 28497 + components: + - type: Transform + pos: -110.5,60.5 + parent: 2 + - uid: 28678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,39.5 + parent: 2 + - uid: 29021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,44.5 + parent: 2 + - uid: 29458 + components: + - type: Transform + pos: -117.5,35.5 + parent: 2 + - uid: 29459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,27.5 + parent: 2 + - uid: 30007 + components: + - type: Transform + pos: -130.5,28.5 + parent: 2 + - uid: 30008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -130.5,24.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 629 + components: + - type: Transform + pos: -75.5,89.5 + parent: 2 + - uid: 664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,15.5 + parent: 2 + - uid: 679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-2.5 + parent: 2 + - uid: 767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,59.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-7.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-20.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: -68.5,107.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: 57.5,30.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,59.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: 32.5,63.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: 36.5,63.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: -22.5,169.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-5.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,-9.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - type: Timer + - uid: 1915 + components: + - type: Transform + pos: 4.5,88.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,9.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,67.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,14.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: -127.5,57.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: 52.5,45.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,63.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,89.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,51.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,208.5 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: -82.5,145.5 + parent: 2 + - type: Timer + - uid: 4019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,67.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: 61.5,55.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + pos: 61.5,52.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + pos: 61.5,49.5 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: 70.5,30.5 + parent: 2 + - uid: 4383 + components: + - type: Transform + pos: 61.5,46.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: 81.5,20.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,37.5 + parent: 2 + - uid: 4712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,18.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + pos: 90.5,61.5 + parent: 2 + - type: Timer + - uid: 4965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,72.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: -62.5,83.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,81.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + pos: 5.5,81.5 + parent: 2 + - uid: 5012 + components: + - type: Transform + pos: -84.5,77.5 + parent: 2 + - uid: 5473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,21.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,26.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-2.5 + parent: 2 + - uid: 5594 + components: + - type: Transform + pos: 49.5,26.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,21.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + pos: 53.5,26.5 + parent: 2 + - uid: 5701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,208.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,64.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + pos: 118.5,58.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 111.5,64.5 + parent: 2 + - uid: 6625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,191.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,34.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,64.5 + parent: 2 + - uid: 6999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 113.5,64.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + pos: 66.5,62.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + pos: 51.5,43.5 + parent: 2 + - uid: 8309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,24.5 + parent: 2 + - uid: 8756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,28.5 + parent: 2 + - uid: 8932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,71.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,18.5 + parent: 2 + - uid: 9451 + components: + - type: Transform + pos: -54.5,15.5 + parent: 2 + - uid: 9478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,105.5 + parent: 2 + - uid: 9650 + components: + - type: Transform + pos: -33.5,69.5 + parent: 2 + - uid: 9871 + components: + - type: Transform + pos: 6.5,166.5 + parent: 2 + - uid: 10061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,105.5 + parent: 2 + - uid: 10118 + components: + - type: Transform + pos: -60.5,109.5 + parent: 2 + - uid: 10916 + components: + - type: Transform + pos: -12.5,87.5 + parent: 2 + - uid: 10922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,18.5 + parent: 2 + - uid: 10925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,108.5 + parent: 2 + - uid: 11081 + components: + - type: Transform + pos: -112.5,96.5 + parent: 2 + - uid: 11148 + components: + - type: Transform + pos: -101.5,96.5 + parent: 2 + - uid: 11162 + components: + - type: Transform + pos: 1.5,74.5 + parent: 2 + - uid: 11287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,67.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,160.5 + parent: 2 + - uid: 11345 + components: + - type: Transform + pos: -110.5,149.5 + parent: 2 + - uid: 11369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,173.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,178.5 + parent: 2 + - uid: 11403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,23.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,180.5 + parent: 2 + - uid: 11464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,161.5 + parent: 2 + - uid: 11466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,212.5 + parent: 2 + - uid: 11467 + components: + - type: Transform + pos: 2.5,211.5 + parent: 2 + - uid: 11469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,202.5 + parent: 2 + - uid: 11470 + components: + - type: Transform + pos: 7.5,205.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,181.5 + parent: 2 + - uid: 11475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,179.5 + parent: 2 + - uid: 11479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,181.5 + parent: 2 + - uid: 11481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,162.5 + parent: 2 + - uid: 11486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,191.5 + parent: 2 + - uid: 11488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,145.5 + parent: 2 + - uid: 11495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,162.5 + parent: 2 + - uid: 11501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,173.5 + parent: 2 + - uid: 11504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,176.5 + parent: 2 + - uid: 11507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,144.5 + parent: 2 + - uid: 11652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,66.5 + parent: 2 + - uid: 11653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,173.5 + parent: 2 + - uid: 11939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,73.5 + parent: 2 + - type: Timer + - uid: 12171 + components: + - type: Transform + pos: -64.5,63.5 + parent: 2 + - uid: 12282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,15.5 + parent: 2 + - uid: 12328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,105.5 + parent: 2 + - uid: 12398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,30.5 + parent: 2 + - uid: 12592 + components: + - type: Transform + pos: -75.5,42.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,169.5 + parent: 2 + - uid: 12818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,42.5 + parent: 2 + - uid: 13376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,73.5 + parent: 2 + - uid: 13876 + components: + - type: Transform + pos: -75.5,96.5 + parent: 2 + - uid: 13990 + components: + - type: Transform + pos: -60.5,113.5 + parent: 2 + - uid: 14005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,97.5 + parent: 2 + - uid: 14006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,93.5 + parent: 2 + - uid: 14060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,94.5 + parent: 2 + - uid: 14061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,97.5 + parent: 2 + - uid: 14062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,101.5 + parent: 2 + - uid: 14065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,98.5 + parent: 2 + - uid: 14066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,91.5 + parent: 2 + - uid: 14125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,91.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,96.5 + parent: 2 + - uid: 14253 + components: + - type: Transform + pos: -78.5,100.5 + parent: 2 + - uid: 14254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,105.5 + parent: 2 + - uid: 14288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,105.5 + parent: 2 + - uid: 14354 + components: + - type: Transform + pos: -84.5,100.5 + parent: 2 + - type: PointLight + color: '#E0FFFFFF' + - uid: 14436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,101.5 + parent: 2 + - uid: 14437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,105.5 + parent: 2 + - uid: 14438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,92.5 + parent: 2 + - uid: 14441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,100.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,96.5 + parent: 2 + - uid: 14443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,79.5 + parent: 2 + - uid: 14492 + components: + - type: Transform + pos: -22.5,100.5 + parent: 2 + - uid: 14499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,86.5 + parent: 2 + - uid: 14500 + components: + - type: Transform + pos: -61.5,87.5 + parent: 2 + - uid: 14542 + components: + - type: Transform + pos: -69.5,83.5 + parent: 2 + - uid: 14844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,105.5 + parent: 2 + - uid: 14868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,95.5 + parent: 2 + - uid: 14869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,90.5 + parent: 2 + - uid: 15218 + components: + - type: Transform + pos: -60.5,111.5 + parent: 2 + - uid: 15255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 112.5,42.5 + parent: 2 + - uid: 15387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,83.5 + parent: 2 + - uid: 15412 + components: + - type: Transform + pos: 81.5,55.5 + parent: 2 + - uid: 15413 + components: + - type: Transform + pos: 81.5,49.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,70.5 + parent: 2 + - uid: 15556 + components: + - type: Transform + pos: -38.5,60.5 + parent: 2 + - type: PointLight + color: '#FFC2C2FF' + - uid: 15558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,58.5 + parent: 2 + - type: PointLight + color: '#C2F5FFFF' + - uid: 15587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,63.5 + parent: 2 + - uid: 15874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,61.5 + parent: 2 + - uid: 15875 + components: + - type: Transform + pos: -52.5,73.5 + parent: 2 + - uid: 15876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,72.5 + parent: 2 + - uid: 15877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,81.5 + parent: 2 + - uid: 15878 + components: + - type: Transform + pos: -54.5,87.5 + parent: 2 + - uid: 15879 + components: + - type: Transform + pos: -48.5,81.5 + parent: 2 + - uid: 16307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,47.5 + parent: 2 + - uid: 16351 + components: + - type: Transform + pos: -77.5,64.5 + parent: 2 + - uid: 16553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,89.5 + parent: 2 + - uid: 17444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,65.5 + parent: 2 + - uid: 17638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -113.5,20.5 + parent: 2 + - uid: 17828 + components: + - type: Transform + pos: 118.5,48.5 + parent: 2 + - uid: 17835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,42.5 + parent: 2 + - uid: 18145 + components: + - type: Transform + pos: -25.5,166.5 + parent: 2 + - uid: 18209 + components: + - type: Transform + pos: -56.5,15.5 + parent: 2 + - uid: 18240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,30.5 + parent: 2 + - uid: 18264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,162.5 + parent: 2 + - uid: 18292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,40.5 + parent: 2 + - uid: 18467 + components: + - type: Transform + pos: -60.5,169.5 + parent: 2 + - uid: 18558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,159.5 + parent: 2 + - uid: 18581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,155.5 + parent: 2 + - uid: 18619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,177.5 + parent: 2 + - uid: 18804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,162.5 + parent: 2 + - uid: 20488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,188.5 + parent: 2 + - uid: 20768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,22.5 + parent: 2 + - uid: 20890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,171.5 + parent: 2 + - uid: 21027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,20.5 + parent: 2 + - uid: 21231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,28.5 + parent: 2 + - uid: 21233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,26.5 + parent: 2 + - uid: 21296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,18.5 + parent: 2 + - uid: 21603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,143.5 + parent: 2 + - uid: 21956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,142.5 + parent: 2 + - uid: 22209 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - uid: 23071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,178.5 + parent: 2 + - uid: 23083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,84.5 + parent: 2 + - uid: 23111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,71.5 + parent: 2 + - uid: 23172 + components: + - type: Transform + pos: -109.5,28.5 + parent: 2 + - uid: 23443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -113.5,25.5 + parent: 2 + - uid: 23857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,63.5 + parent: 2 + - uid: 24058 + components: + - type: Transform + pos: -112.5,28.5 + parent: 2 + - uid: 25029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,79.5 + parent: 2 + - uid: 25336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,102.5 + parent: 2 + - type: Timer + - uid: 25338 + components: + - type: Transform + pos: -123.5,100.5 + parent: 2 + - type: Timer + - uid: 25340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,98.5 + parent: 2 + - uid: 25341 + components: + - type: Transform + pos: -111.5,100.5 + parent: 2 + - uid: 25342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,98.5 + parent: 2 + - uid: 25343 + components: + - type: Transform + pos: -100.5,100.5 + parent: 2 + - uid: 25432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,76.5 + parent: 2 + - uid: 25461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,173.5 + parent: 2 + - uid: 25689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,205.5 + parent: 2 + - uid: 25778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,70.5 + parent: 2 + - uid: 25800 + components: + - type: Transform + pos: -104.5,64.5 + parent: 2 + - uid: 25807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,57.5 + parent: 2 + - uid: 26462 + components: + - type: Transform + pos: -89.5,58.5 + parent: 2 + - uid: 26862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,98.5 + parent: 2 + - uid: 26863 + components: + - type: Transform + pos: -115.5,100.5 + parent: 2 + - uid: 26864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,102.5 + parent: 2 + - uid: 26870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,101.5 + parent: 2 + - uid: 27487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,34.5 + parent: 2 + - uid: 27703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,35.5 + parent: 2 + - uid: 27759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,48.5 + parent: 2 + - uid: 27777 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 27837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,51.5 + parent: 2 + - type: Timer + - uid: 27996 + components: + - type: Transform + pos: -123.5,92.5 + parent: 2 + - uid: 28132 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 28184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,50.5 + parent: 2 + - uid: 28203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,15.5 + parent: 2 + - uid: 28214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,33.5 + parent: 2 + - uid: 28424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,61.5 + parent: 2 + - uid: 28731 + components: + - type: Transform + pos: -101.5,18.5 + parent: 2 + - uid: 28736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,16.5 + parent: 2 + - uid: 28737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,17.5 + parent: 2 + - uid: 28805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,54.5 + parent: 2 + - uid: 29210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,35.5 + parent: 2 + - uid: 29534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,50.5 + parent: 2 + - uid: 29589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,63.5 + parent: 2 + - uid: 29609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,68.5 + parent: 2 + - uid: 29723 + components: + - type: Transform + pos: 87.5,20.5 + parent: 2 + - uid: 29725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,53.5 + parent: 2 + - uid: 30343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,21.5 + parent: 2 + - uid: 30345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,23.5 + parent: 2 + - uid: 30643 + components: + - type: Transform + pos: -105.5,68.5 + parent: 2 + - uid: 30746 + components: + - type: Transform + pos: -93.5,74.5 + parent: 2 + - uid: 30884 + components: + - type: Transform + pos: -115.5,95.5 + parent: 2 + - uid: 31583 + components: + - type: Transform + pos: -45.5,68.5 + parent: 2 + - uid: 31938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,14.5 + parent: 2 + - uid: 31940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,14.5 + parent: 2 + - uid: 32292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,144.5 + parent: 2 + - uid: 32293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,146.5 + parent: 2 + - uid: 32294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,144.5 + parent: 2 + - uid: 32296 + components: + - type: Transform + pos: -69.5,149.5 + parent: 2 + - uid: 32318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,148.5 + parent: 2 + - uid: 32321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,10.5 + parent: 2 + - uid: 32323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,8.5 + parent: 2 + - uid: 32324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,7.5 + parent: 2 + - uid: 32325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,3.5 + parent: 2 + - uid: 32445 + components: + - type: Transform + pos: -3.5,175.5 + parent: 2 + - uid: 32446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,171.5 + parent: 2 + - uid: 32908 + components: + - type: Transform + pos: -50.5,152.5 + parent: 2 + - uid: 32909 + components: + - type: Transform + pos: -50.5,158.5 + parent: 2 + - uid: 35418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,149.5 + parent: 2 + - uid: 35770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,92.5 + parent: 2 + - uid: 35771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,92.5 + parent: 2 + - uid: 35793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,103.5 + parent: 2 + - uid: 36163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,81.5 + parent: 2 + - uid: 37215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,173.5 + parent: 2 + - uid: 37335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,170.5 + parent: 2 + - uid: 37919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,91.5 + parent: 2 + - uid: 38048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,77.5 + parent: 2 + - uid: 38480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,161.5 + parent: 2 + - uid: 38893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,71.5 + parent: 2 + - uid: 39001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,84.5 + parent: 2 + - uid: 39237 + components: + - type: Transform + pos: -75.5,110.5 + parent: 2 + - uid: 39238 + components: + - type: Transform + pos: -75.5,112.5 + parent: 2 + - uid: 39267 + components: + - type: Transform + pos: 81.5,52.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 3150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,81.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + pos: 78.5,22.5 + parent: 2 + - uid: 11490 + components: + - type: Transform + pos: -41.5,63.5 + parent: 2 + - uid: 11506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,93.5 + parent: 2 + - uid: 25339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,94.5 + parent: 2 + - uid: 28133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,16.5 + parent: 2 + - uid: 28189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.5,18.5 + parent: 2 + - uid: 28806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,61.5 + parent: 2 + - uid: 29729 + components: + - type: Transform + pos: -100.5,159.5 + parent: 2 + - uid: 30388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.5,34.5 + parent: 2 + - uid: 36535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,107.5 + parent: 2 + - uid: 38998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,74.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 20976 + components: + - type: Transform + pos: -70.5,169.5 + parent: 2 +- proto: PsychBed + entities: + - uid: 4321 + components: + - type: Transform + pos: -20.5,178.5 + parent: 2 +- proto: Rack + entities: + - uid: 736 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: 85.5,47.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-15.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 70.5,28.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-15.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-4.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-4.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: -60.5,5.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: -57.5,-0.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: -67.5,-12.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: -60.5,4.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: -50.5,9.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,0.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,73.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + pos: -4.5,186.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: 68.5,65.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + pos: 67.5,65.5 + parent: 2 + - uid: 4174 + components: + - type: Transform + pos: -133.5,52.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: 65.5,47.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,60.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,5.5 + parent: 2 + - uid: 4649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,5.5 + parent: 2 + - uid: 4726 + components: + - type: Transform + pos: 85.5,58.5 + parent: 2 + - uid: 4727 + components: + - type: Transform + pos: 85.5,59.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: 5.5,81.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,70.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,55.5 + parent: 2 + - uid: 8619 + components: + - type: Transform + pos: 61.5,58.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: 60.5,58.5 + parent: 2 + - uid: 9107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,55.5 + parent: 2 + - uid: 10533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,84.5 + parent: 2 + - uid: 10559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,79.5 + parent: 2 + - uid: 10560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,84.5 + parent: 2 + - uid: 10566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,84.5 + parent: 2 + - uid: 10576 + components: + - type: Transform + pos: 62.5,58.5 + parent: 2 + - uid: 10642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,149.5 + parent: 2 + - uid: 10806 + components: + - type: Transform + pos: -137.5,52.5 + parent: 2 + - uid: 10886 + components: + - type: Transform + pos: -11.5,86.5 + parent: 2 + - uid: 11184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,59.5 + parent: 2 + - uid: 11281 + components: + - type: Transform + pos: -132.5,46.5 + parent: 2 + - uid: 11628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,84.5 + parent: 2 + - uid: 11629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,83.5 + parent: 2 + - uid: 11940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,76.5 + parent: 2 + - uid: 11941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,75.5 + parent: 2 + - uid: 12485 + components: + - type: Transform + pos: -98.5,145.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,61.5 + parent: 2 + - uid: 13404 + components: + - type: Transform + pos: -31.5,183.5 + parent: 2 + - uid: 14211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,41.5 + parent: 2 + - uid: 14212 + components: + - type: Transform + pos: -47.5,98.5 + parent: 2 + - uid: 14845 + components: + - type: Transform + pos: -70.5,85.5 + parent: 2 + - uid: 15037 + components: + - type: Transform + pos: -48.5,98.5 + parent: 2 + - uid: 15675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,59.5 + parent: 2 + - uid: 15784 + components: + - type: Transform + pos: -49.5,64.5 + parent: 2 + - uid: 15785 + components: + - type: Transform + pos: -49.5,67.5 + parent: 2 + - uid: 15841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,70.5 + parent: 2 + - uid: 16338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,64.5 + parent: 2 + - uid: 16893 + components: + - type: Transform + pos: -83.5,75.5 + parent: 2 + - uid: 17098 + components: + - type: Transform + pos: -91.5,52.5 + parent: 2 + - uid: 17107 + components: + - type: Transform + pos: -91.5,51.5 + parent: 2 + - uid: 17158 + components: + - type: Transform + pos: -88.5,78.5 + parent: 2 + - uid: 17159 + components: + - type: Transform + pos: -88.5,79.5 + parent: 2 + - uid: 17222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,79.5 + parent: 2 + - uid: 17229 + components: + - type: Transform + pos: -77.5,71.5 + parent: 2 + - uid: 17230 + components: + - type: Transform + pos: -75.5,71.5 + parent: 2 + - uid: 17241 + components: + - type: Transform + pos: -72.5,67.5 + parent: 2 + - uid: 17242 + components: + - type: Transform + pos: -72.5,68.5 + parent: 2 + - uid: 17628 + components: + - type: Transform + pos: -66.5,161.5 + parent: 2 + - uid: 17663 + components: + - type: Transform + pos: -87.5,100.5 + parent: 2 + - uid: 17671 + components: + - type: Transform + pos: -87.5,101.5 + parent: 2 + - uid: 18005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,42.5 + parent: 2 + - uid: 18557 + components: + - type: Transform + pos: -95.5,36.5 + parent: 2 + - uid: 19007 + components: + - type: Transform + pos: -96.5,162.5 + parent: 2 + - uid: 19710 + components: + - type: Transform + pos: 116.5,57.5 + parent: 2 + - uid: 19735 + components: + - type: Transform + pos: -81.5,155.5 + parent: 2 + - uid: 19736 + components: + - type: Transform + pos: -81.5,154.5 + parent: 2 + - uid: 20137 + components: + - type: Transform + pos: -83.5,179.5 + parent: 2 + - uid: 20138 + components: + - type: Transform + pos: -83.5,178.5 + parent: 2 + - uid: 20363 + components: + - type: Transform + pos: -82.5,162.5 + parent: 2 + - uid: 20364 + components: + - type: Transform + pos: -83.5,162.5 + parent: 2 + - uid: 20494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,174.5 + parent: 2 + - uid: 20884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,181.5 + parent: 2 + - uid: 21223 + components: + - type: Transform + pos: -60.5,165.5 + parent: 2 + - uid: 21227 + components: + - type: Transform + pos: -96.5,158.5 + parent: 2 + - uid: 21324 + components: + - type: Transform + pos: -60.5,164.5 + parent: 2 + - uid: 22123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,152.5 + parent: 2 + - uid: 22126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,155.5 + parent: 2 + - uid: 22210 + components: + - type: Transform + pos: -130.5,103.5 + parent: 2 + - uid: 22977 + components: + - type: Transform + pos: -0.5,198.5 + parent: 2 + - uid: 23205 + components: + - type: Transform + pos: -0.5,197.5 + parent: 2 + - uid: 23230 + components: + - type: Transform + pos: 54.5,54.5 + parent: 2 + - uid: 23243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,193.5 + parent: 2 + - uid: 23262 + components: + - type: Transform + pos: -0.5,194.5 + parent: 2 + - uid: 24031 + components: + - type: Transform + pos: -17.5,211.5 + parent: 2 + - uid: 24036 + components: + - type: Transform + pos: -25.5,206.5 + parent: 2 + - uid: 24095 + components: + - type: Transform + pos: 5.5,205.5 + parent: 2 + - uid: 24099 + components: + - type: Transform + pos: 12.5,202.5 + parent: 2 + - uid: 24183 + components: + - type: Transform + pos: 23.5,190.5 + parent: 2 + - uid: 24184 + components: + - type: Transform + pos: 23.5,191.5 + parent: 2 + - uid: 24185 + components: + - type: Transform + pos: 23.5,189.5 + parent: 2 + - uid: 24191 + components: + - type: Transform + pos: 23.5,185.5 + parent: 2 + - uid: 24342 + components: + - type: Transform + pos: 23.5,179.5 + parent: 2 + - uid: 24359 + components: + - type: Transform + pos: 23.5,178.5 + parent: 2 + - uid: 25211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -132.5,91.5 + parent: 2 + - uid: 25422 + components: + - type: Transform + pos: -81.5,76.5 + parent: 2 + - uid: 25677 + components: + - type: Transform + pos: 0.5,172.5 + parent: 2 + - uid: 26019 + components: + - type: Transform + pos: -69.5,-9.5 + parent: 2 + - uid: 26204 + components: + - type: Transform + pos: -33.5,191.5 + parent: 2 + - uid: 27302 + components: + - type: Transform + pos: 116.5,49.5 + parent: 2 + - uid: 27764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,145.5 + parent: 2 + - uid: 27998 + components: + - type: Transform + pos: -95.5,48.5 + parent: 2 + - uid: 28007 + components: + - type: Transform + pos: -94.5,48.5 + parent: 2 + - uid: 28084 + components: + - type: Transform + pos: -89.5,143.5 + parent: 2 + - uid: 28103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,144.5 + parent: 2 + - uid: 29118 + components: + - type: Transform + pos: -115.5,37.5 + parent: 2 + - uid: 29124 + components: + - type: Transform + pos: 77.5,35.5 + parent: 2 + - uid: 29125 + components: + - type: Transform + pos: 78.5,35.5 + parent: 2 + - uid: 29565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,36.5 + parent: 2 + - uid: 29567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,36.5 + parent: 2 + - uid: 34145 + components: + - type: Transform + pos: -93.5,143.5 + parent: 2 + - uid: 34516 + components: + - type: Transform + pos: -31.5,182.5 + parent: 2 + - uid: 34523 + components: + - type: Transform + pos: -30.5,194.5 + parent: 2 + - uid: 35813 + components: + - type: Transform + pos: -102.5,98.5 + parent: 2 + - uid: 35941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,59.5 + parent: 2 + - uid: 36967 + components: + - type: Transform + pos: -20.5,174.5 + parent: 2 + - uid: 36971 + components: + - type: Transform + pos: 17.5,201.5 + parent: 2 + - uid: 37095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,34.5 + parent: 2 + - uid: 37096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,34.5 + parent: 2 + - uid: 37104 + components: + - type: Transform + pos: 79.5,34.5 + parent: 2 + - uid: 37293 + components: + - type: Transform + pos: -41.5,176.5 + parent: 2 + - uid: 37686 + components: + - type: Transform + pos: -100.5,61.5 + parent: 2 + - uid: 40099 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 40151 + components: + - type: Transform + pos: 53.5,54.5 + parent: 2 +- proto: RadarConsoleCircuitboard + entities: + - uid: 7191 + components: + - type: Transform + pos: -49.458397,71.52934 + parent: 2 +- proto: RadiationCollector + entities: + - uid: 13380 + components: + - type: Transform + pos: -143.5,18.5 + parent: 2 + - uid: 18092 + components: + - type: Transform + pos: -91.5,147.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 358 + components: + - type: Transform + pos: -39.23418,-12.277147 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: -39.34666,-12.479546 + parent: 2 + - uid: 6186 + components: + - type: Transform + pos: -111.7314,34.905823 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: -111.54651,34.949833 + parent: 2 + - uid: 8343 + components: + - type: Transform + pos: -111.44966,34.83541 + parent: 2 + - uid: 8698 + components: + - type: Transform + pos: -111.308784,34.98504 + parent: 2 + - uid: 24226 + components: + - type: Transform + pos: -43.815796,103.5668 + parent: 2 + - uid: 28880 + components: + - type: Transform + pos: -101.13095,48.86476 + parent: 2 +- proto: Railing + entities: + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,25.5 + parent: 2 + - uid: 621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,59.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-20.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-19.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-22.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-23.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-23.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + pos: 46.5,53.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,61.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,26.5 + parent: 2 + - uid: 3021 + components: + - type: Transform + pos: 1.5,62.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: -50.5,55.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,47.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,61.5 + parent: 2 + - uid: 3968 + components: + - type: Transform + pos: -119.5,35.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,29.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,32.5 + parent: 2 + - uid: 4068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,32.5 + parent: 2 + - uid: 4073 + components: + - type: Transform + pos: -1.5,62.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,42.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,49.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,48.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,50.5 + parent: 2 + - uid: 5989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,27.5 + parent: 2 + - uid: 5990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,28.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,29.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,30.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,32.5 + parent: 2 + - uid: 5994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,33.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,34.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,36.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,30.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + pos: -115.5,29.5 + parent: 2 + - uid: 6443 + components: + - type: Transform + pos: 45.5,53.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,47.5 + parent: 2 + - uid: 6507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,51.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + pos: 53.5,54.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + pos: 54.5,54.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,39.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,40.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,38.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,38.5 + parent: 2 + - uid: 7270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,38.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: 0.5,62.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,31.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,60.5 + parent: 2 + - uid: 9049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,41.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,41.5 + parent: 2 + - uid: 9051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,41.5 + parent: 2 + - uid: 11572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,86.5 + parent: 2 + - uid: 11574 + components: + - type: Transform + pos: -40.5,74.5 + parent: 2 + - uid: 11575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,88.5 + parent: 2 + - uid: 11595 + components: + - type: Transform + pos: -71.5,164.5 + parent: 2 + - uid: 11606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,76.5 + parent: 2 + - uid: 11607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,86.5 + parent: 2 + - uid: 11645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,161.5 + parent: 2 + - uid: 11646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,162.5 + parent: 2 + - uid: 11672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,22.5 + parent: 2 + - uid: 12164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,76.5 + parent: 2 + - uid: 12657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,160.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + pos: 79.5,21.5 + parent: 2 + - uid: 12899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,163.5 + parent: 2 + - uid: 13230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,152.5 + parent: 2 + - uid: 13255 + components: + - type: Transform + pos: -32.5,103.5 + parent: 2 + - uid: 13274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,102.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,102.5 + parent: 2 + - uid: 13590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,107.5 + parent: 2 + - uid: 13591 + components: + - type: Transform + pos: -41.5,108.5 + parent: 2 + - uid: 13592 + components: + - type: Transform + pos: -40.5,108.5 + parent: 2 + - uid: 13594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,107.5 + parent: 2 + - uid: 13595 + components: + - type: Transform + pos: -39.5,108.5 + parent: 2 + - uid: 13597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,106.5 + parent: 2 + - uid: 13598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,106.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,37.5 + parent: 2 + - uid: 13681 + components: + - type: Transform + pos: -18.5,77.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,101.5 + parent: 2 + - uid: 13738 + components: + - type: Transform + pos: -70.5,164.5 + parent: 2 + - uid: 13881 + components: + - type: Transform + pos: 7.5,74.5 + parent: 2 + - uid: 13904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,76.5 + parent: 2 + - uid: 14028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,54.5 + parent: 2 + - uid: 14099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,159.5 + parent: 2 + - uid: 14135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,55.5 + parent: 2 + - uid: 14142 + components: + - type: Transform + pos: -71.5,157.5 + parent: 2 + - uid: 14146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,156.5 + parent: 2 + - uid: 14147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,156.5 + parent: 2 + - uid: 14830 + components: + - type: Transform + pos: -76.5,89.5 + parent: 2 + - uid: 14831 + components: + - type: Transform + pos: -75.5,89.5 + parent: 2 + - uid: 14832 + components: + - type: Transform + pos: -74.5,89.5 + parent: 2 + - uid: 14833 + components: + - type: Transform + pos: -73.5,89.5 + parent: 2 + - uid: 14839 + components: + - type: Transform + pos: -30.5,67.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + pos: -29.5,67.5 + parent: 2 + - uid: 15482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,71.5 + parent: 2 + - uid: 15548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,60.5 + parent: 2 + - uid: 15550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,57.5 + parent: 2 + - uid: 15551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,58.5 + parent: 2 + - uid: 15561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,155.5 + parent: 2 + - uid: 15668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,81.5 + parent: 2 + - uid: 15669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,80.5 + parent: 2 + - uid: 15768 + components: + - type: Transform + pos: -42.5,52.5 + parent: 2 + - uid: 15769 + components: + - type: Transform + pos: -43.5,52.5 + parent: 2 + - uid: 15770 + components: + - type: Transform + pos: -49.5,55.5 + parent: 2 + - uid: 16639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,154.5 + parent: 2 + - uid: 16685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,100.5 + parent: 2 + - uid: 16914 + components: + - type: Transform + pos: -31.5,103.5 + parent: 2 + - uid: 17276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,152.5 + parent: 2 + - uid: 17296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,162.5 + parent: 2 + - uid: 17297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,159.5 + parent: 2 + - uid: 17388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,154.5 + parent: 2 + - uid: 17403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,153.5 + parent: 2 + - uid: 17509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,185.5 + parent: 2 + - uid: 17523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,51.5 + parent: 2 + - uid: 17614 + components: + - type: Transform + pos: -71.5,116.5 + parent: 2 + - uid: 17615 + components: + - type: Transform + pos: -67.5,117.5 + parent: 2 + - uid: 17618 + components: + - type: Transform + pos: -66.5,117.5 + parent: 2 + - uid: 17622 + components: + - type: Transform + pos: -65.5,117.5 + parent: 2 + - uid: 17623 + components: + - type: Transform + pos: -64.5,117.5 + parent: 2 + - uid: 17624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,118.5 + parent: 2 + - uid: 17789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,54.5 + parent: 2 + - uid: 17809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,54.5 + parent: 2 + - uid: 17853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,185.5 + parent: 2 + - uid: 17904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,109.5 + parent: 2 + - uid: 19518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,109.5 + parent: 2 + - uid: 19526 + components: + - type: Transform + pos: -70.5,157.5 + parent: 2 + - uid: 20026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,59.5 + parent: 2 + - uid: 20154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,183.5 + parent: 2 + - uid: 20155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,184.5 + parent: 2 + - uid: 20157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,183.5 + parent: 2 + - uid: 20158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,184.5 + parent: 2 + - uid: 20161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,185.5 + parent: 2 + - uid: 20398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,155.5 + parent: 2 + - uid: 20418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,163.5 + parent: 2 + - uid: 20505 + components: + - type: Transform + pos: -89.5,172.5 + parent: 2 + - uid: 20509 + components: + - type: Transform + pos: -90.5,172.5 + parent: 2 + - uid: 20636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,36.5 + parent: 2 + - uid: 20760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,38.5 + parent: 2 + - uid: 20776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,34.5 + parent: 2 + - uid: 20797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,161.5 + parent: 2 + - uid: 20809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,35.5 + parent: 2 + - uid: 20875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,180.5 + parent: 2 + - uid: 20876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,181.5 + parent: 2 + - uid: 20877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,182.5 + parent: 2 + - uid: 20878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,182.5 + parent: 2 + - uid: 20879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,180.5 + parent: 2 + - uid: 20880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,181.5 + parent: 2 + - uid: 21194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,37.5 + parent: 2 + - uid: 21258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,182.5 + parent: 2 + - uid: 21259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,182.5 + parent: 2 + - uid: 21260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,182.5 + parent: 2 + - uid: 21298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,171.5 + parent: 2 + - uid: 21299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,173.5 + parent: 2 + - uid: 21300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,174.5 + parent: 2 + - uid: 21862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,66.5 + parent: 2 + - uid: 21864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,65.5 + parent: 2 + - uid: 21888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,63.5 + parent: 2 + - uid: 22739 + components: + - type: Transform + pos: -1.5,182.5 + parent: 2 + - uid: 22740 + components: + - type: Transform + pos: 0.5,182.5 + parent: 2 + - uid: 22964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,153.5 + parent: 2 + - uid: 23005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,61.5 + parent: 2 + - uid: 23191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,187.5 + parent: 2 + - uid: 23353 + components: + - type: Transform + pos: -0.5,62.5 + parent: 2 + - uid: 24142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,201.5 + parent: 2 + - uid: 24143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,200.5 + parent: 2 + - uid: 24144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,199.5 + parent: 2 + - uid: 24145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,198.5 + parent: 2 + - uid: 24214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,61.5 + parent: 2 + - uid: 24328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,175.5 + parent: 2 + - uid: 24329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,176.5 + parent: 2 + - uid: 24331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,177.5 + parent: 2 + - uid: 24332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,178.5 + parent: 2 + - uid: 24333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,179.5 + parent: 2 + - uid: 24775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,187.5 + parent: 2 + - uid: 25036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,58.5 + parent: 2 + - uid: 25041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,34.5 + parent: 2 + - uid: 25042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,30.5 + parent: 2 + - uid: 25043 + components: + - type: Transform + pos: -116.5,29.5 + parent: 2 + - uid: 25044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,27.5 + parent: 2 + - uid: 25045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,25.5 + parent: 2 + - uid: 25046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,29.5 + parent: 2 + - uid: 25200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -133.5,103.5 + parent: 2 + - uid: 25210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -133.5,91.5 + parent: 2 + - uid: 25396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,72.5 + parent: 2 + - uid: 25453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,73.5 + parent: 2 + - uid: 25487 + components: + - type: Transform + pos: -9.5,74.5 + parent: 2 + - uid: 25537 + components: + - type: Transform + pos: -8.5,74.5 + parent: 2 + - uid: 26058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,28.5 + parent: 2 + - uid: 26356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,191.5 + parent: 2 + - uid: 26357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,192.5 + parent: 2 + - uid: 26358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,194.5 + parent: 2 + - uid: 26359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,195.5 + parent: 2 + - uid: 26385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,73.5 + parent: 2 + - uid: 27148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,29.5 + parent: 2 + - uid: 27329 + components: + - type: Transform + pos: -118.5,35.5 + parent: 2 + - uid: 27652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,27.5 + parent: 2 + - uid: 27881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,72.5 + parent: 2 + - uid: 28152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,28.5 + parent: 2 + - uid: 28239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,49.5 + parent: 2 + - uid: 28535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,37.5 + parent: 2 + - uid: 28602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,45.5 + parent: 2 + - uid: 28603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,45.5 + parent: 2 + - uid: 28604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,45.5 + parent: 2 + - uid: 28605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,45.5 + parent: 2 + - uid: 28606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,50.5 + parent: 2 + - uid: 28607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,51.5 + parent: 2 + - uid: 28609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,52.5 + parent: 2 + - uid: 28610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,53.5 + parent: 2 + - uid: 28612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,56.5 + parent: 2 + - uid: 28613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,57.5 + parent: 2 + - uid: 28616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,60.5 + parent: 2 + - uid: 28618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,55.5 + parent: 2 + - uid: 28619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,53.5 + parent: 2 + - uid: 28620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,50.5 + parent: 2 + - uid: 28621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,52.5 + parent: 2 + - uid: 28622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,49.5 + parent: 2 + - uid: 28767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,27.5 + parent: 2 + - uid: 28785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,69.5 + parent: 2 + - uid: 29025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,30.5 + parent: 2 + - uid: 29119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,41.5 + parent: 2 + - uid: 29148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -122.5,25.5 + parent: 2 + - uid: 29202 + components: + - type: Transform + pos: -125.5,28.5 + parent: 2 + - uid: 29205 + components: + - type: Transform + pos: -124.5,28.5 + parent: 2 + - uid: 29354 + components: + - type: Transform + pos: -126.5,40.5 + parent: 2 + - uid: 29362 + components: + - type: Transform + pos: -128.5,40.5 + parent: 2 + - uid: 29365 + components: + - type: Transform + pos: -127.5,40.5 + parent: 2 + - uid: 29559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,74.5 + parent: 2 + - uid: 29605 + components: + - type: Transform + pos: -123.5,40.5 + parent: 2 + - uid: 29606 + components: + - type: Transform + pos: -122.5,40.5 + parent: 2 + - uid: 29607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,30.5 + parent: 2 + - uid: 29608 + components: + - type: Transform + pos: -120.5,33.5 + parent: 2 + - uid: 30086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,35.5 + parent: 2 + - uid: 30087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,37.5 + parent: 2 + - uid: 30088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,33.5 + parent: 2 + - uid: 30152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,36.5 + parent: 2 + - uid: 30854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,152.5 + parent: 2 + - uid: 30885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,70.5 + parent: 2 + - uid: 31596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,152.5 + parent: 2 + - uid: 31695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,32.5 + parent: 2 + - uid: 31731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,31.5 + parent: 2 + - uid: 31746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,33.5 + parent: 2 + - uid: 33801 + components: + - type: Transform + pos: -30.5,103.5 + parent: 2 + - uid: 34407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,76.5 + parent: 2 + - uid: 34481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,75.5 + parent: 2 + - uid: 34539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,75.5 + parent: 2 + - uid: 34550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,74.5 + parent: 2 + - uid: 34566 + components: + - type: Transform + pos: -17.5,77.5 + parent: 2 + - uid: 34620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,52.5 + parent: 2 + - uid: 36473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,160.5 + parent: 2 + - uid: 36505 + components: + - type: Transform + pos: -106.5,40.5 + parent: 2 + - uid: 36734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,152.5 + parent: 2 + - uid: 36752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,153.5 + parent: 2 + - uid: 36753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,153.5 + parent: 2 + - uid: 37134 + components: + - type: Transform + pos: -105.5,40.5 + parent: 2 + - uid: 39187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,75.5 + parent: 2 + - uid: 39188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,75.5 + parent: 2 + - uid: 39453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,76.5 + parent: 2 + - uid: 43177 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 37842 + - uid: 43181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 37842 + - uid: 43182 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 37842 + - uid: 43183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 37842 + - uid: 43184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 37842 + - uid: 43185 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 37842 + - uid: 43370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,21.5 + parent: 2 + - uid: 43371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,20.5 + parent: 2 + - uid: 43372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,19.5 + parent: 2 + - uid: 43456 + components: + - type: Transform + pos: -31.5,67.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 1057 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,53.5 + parent: 2 + - uid: 5487 + components: + - type: Transform + pos: -123.5,34.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,30.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,41.5 + parent: 2 + - uid: 11544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,75.5 + parent: 2 + - uid: 11599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,88.5 + parent: 2 + - uid: 11600 + components: + - type: Transform + pos: -38.5,75.5 + parent: 2 + - uid: 11601 + components: + - type: Transform + pos: -39.5,74.5 + parent: 2 + - uid: 11602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,74.5 + parent: 2 + - uid: 11603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,88.5 + parent: 2 + - uid: 11604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,87.5 + parent: 2 + - uid: 11609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,87.5 + parent: 2 + - uid: 12205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,76.5 + parent: 2 + - uid: 13492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,103.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,105.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,105.5 + parent: 2 + - uid: 13878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,76.5 + parent: 2 + - uid: 14373 + components: + - type: Transform + pos: 8.5,74.5 + parent: 2 + - uid: 14829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,89.5 + parent: 2 + - uid: 17625 + components: + - type: Transform + pos: -63.5,117.5 + parent: 2 + - uid: 17626 + components: + - type: Transform + pos: -70.5,116.5 + parent: 2 + - uid: 20146 + components: + - type: Transform + pos: -77.5,182.5 + parent: 2 + - uid: 20151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,182.5 + parent: 2 + - uid: 20156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,185.5 + parent: 2 + - uid: 20162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,185.5 + parent: 2 + - uid: 20871 + components: + - type: Transform + pos: -70.5,179.5 + parent: 2 + - uid: 20872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,179.5 + parent: 2 + - uid: 20873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,182.5 + parent: 2 + - uid: 20874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,182.5 + parent: 2 + - uid: 23188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,185.5 + parent: 2 + - uid: 23189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,186.5 + parent: 2 + - uid: 23190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,187.5 + parent: 2 + - uid: 24141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,201.5 + parent: 2 + - uid: 25203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -132.5,102.5 + parent: 2 + - uid: 25209 + components: + - type: Transform + pos: -132.5,92.5 + parent: 2 + - uid: 26206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,190.5 + parent: 2 + - uid: 27314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -117.5,32.5 + parent: 2 + - uid: 28199 + components: + - type: Transform + pos: -117.5,35.5 + parent: 2 + - uid: 28599 + components: + - type: Transform + pos: -110.5,48.5 + parent: 2 + - uid: 28600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,48.5 + parent: 2 + - uid: 29059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,29.5 + parent: 2 + - uid: 29111 + components: + - type: Transform + pos: -103.5,40.5 + parent: 2 + - uid: 29112 + components: + - type: Transform + pos: -120.5,33.5 + parent: 2 + - uid: 29200 + components: + - type: Transform + pos: -123.5,28.5 + parent: 2 + - uid: 29680 + components: + - type: Transform + pos: -29.5,68.5 + parent: 2 + - uid: 30167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,37.5 + parent: 2 + - uid: 39186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,74.5 + parent: 2 + - uid: 43169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 37842 + - uid: 43175 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 37842 +- proto: RailingCornerSmall + entities: + - uid: 1056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-19.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,186.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,55.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,30.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,60.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,53.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,54.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + pos: -16.5,74.5 + parent: 2 + - uid: 11027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,34.5 + parent: 2 + - uid: 12188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,77.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,21.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,20.5 + parent: 2 + - uid: 13493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,102.5 + parent: 2 + - uid: 13583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,103.5 + parent: 2 + - uid: 13593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,108.5 + parent: 2 + - uid: 13596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,108.5 + parent: 2 + - uid: 13599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,105.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + pos: -38.5,105.5 + parent: 2 + - uid: 13678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,72.5 + parent: 2 + - uid: 13680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,74.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,103.5 + parent: 2 + - uid: 14222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,185.5 + parent: 2 + - uid: 14241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,184.5 + parent: 2 + - uid: 14867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,74.5 + parent: 2 + - uid: 15356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,21.5 + parent: 2 + - uid: 15375 + components: + - type: Transform + pos: 80.5,20.5 + parent: 2 + - uid: 17636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,117.5 + parent: 2 + - uid: 17645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,117.5 + parent: 2 + - uid: 25037 + components: + - type: Transform + pos: -104.5,41.5 + parent: 2 + - uid: 25038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,56.5 + parent: 2 + - uid: 25039 + components: + - type: Transform + pos: -107.5,57.5 + parent: 2 + - uid: 25167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -133.5,102.5 + parent: 2 + - uid: 25205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,92.5 + parent: 2 + - uid: 25299 + components: + - type: Transform + pos: -54.5,11.5 + parent: 2 + - uid: 25300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,11.5 + parent: 2 + - uid: 27978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,77.5 + parent: 2 + - uid: 30235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,27.5 + parent: 2 + - uid: 30236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,35.5 + parent: 2 + - uid: 31794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,74.5 + parent: 2 + - uid: 33093 + components: + - type: Transform + pos: -69.5,152.5 + parent: 2 + - uid: 33129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,152.5 + parent: 2 + - uid: 34555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,157.5 + parent: 2 + - uid: 34558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,157.5 + parent: 2 + - uid: 34571 + components: + - type: Transform + pos: -29.5,99.5 + parent: 2 + - uid: 35939 + components: + - type: Transform + pos: -41.5,87.5 + parent: 2 + - uid: 35943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,87.5 + parent: 2 + - uid: 36201 + components: + - type: Transform + pos: -7.5,72.5 + parent: 2 + - uid: 36474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,159.5 + parent: 2 + - uid: 36475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,164.5 + parent: 2 + - uid: 36477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,164.5 + parent: 2 + - uid: 36478 + components: + - type: Transform + pos: -69.5,159.5 + parent: 2 + - uid: 36754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,152.5 + parent: 2 + - uid: 36755 + components: + - type: Transform + pos: -56.5,152.5 + parent: 2 + - uid: 38447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,75.5 + parent: 2 + - uid: 38448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,75.5 + parent: 2 + - uid: 39446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 21114 + - uid: 39447 + components: + - type: Transform + pos: 1.5,0.5 + parent: 21114 + - uid: 39450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 21114 + - uid: 39451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 21114 +- proto: RandomArcade + entities: + - uid: 8427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,22.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,21.5 + parent: 2 + - uid: 15867 + components: + - type: Transform + pos: -54.5,83.5 + parent: 2 + - uid: 25504 + components: + - type: Transform + pos: 18.5,174.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 27850 + components: + - type: Transform + pos: -97.5,176.5 + parent: 2 +- proto: RandomDrinkBottle + entities: + - uid: 4735 + components: + - type: Transform + pos: 72.5,69.5 + parent: 2 + - uid: 5267 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 13108 + components: + - type: Transform + pos: -27.5,64.5 + parent: 2 + - uid: 15586 + components: + - type: Transform + pos: -40.5,63.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 2518 + components: + - type: Transform + pos: -61.5,-5.5 + parent: 2 + - uid: 5268 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + pos: 59.5,67.5 + parent: 2 + - uid: 11017 + components: + - type: Transform + pos: -28.5,64.5 + parent: 2 + - uid: 13110 + components: + - type: Transform + pos: -25.5,64.5 + parent: 2 + - uid: 13111 + components: + - type: Transform + pos: -26.5,64.5 + parent: 2 + - uid: 28415 + components: + - type: Transform + pos: 104.5,59.5 + parent: 2 + - uid: 28677 + components: + - type: Transform + pos: 108.5,44.5 + parent: 2 + - uid: 35803 + components: + - type: Transform + pos: -22.5,63.5 + parent: 2 +- proto: RandomFoodBakedSingle + entities: + - uid: 25430 + components: + - type: Transform + pos: -19.5,167.5 + parent: 2 +- proto: RandomFoodMeal + entities: + - uid: 12225 + components: + - type: Transform + pos: -77.5,91.5 + parent: 2 + - uid: 13115 + components: + - type: Transform + pos: -19.5,67.5 + parent: 2 + - uid: 13119 + components: + - type: Transform + pos: -19.5,69.5 + parent: 2 + - uid: 14042 + components: + - type: Transform + pos: -59.5,102.5 + parent: 2 + - uid: 23030 + components: + - type: Transform + pos: -6.5,199.5 + parent: 2 + - uid: 25418 + components: + - type: Transform + pos: -78.5,91.5 + parent: 2 + - uid: 27281 + components: + - type: Transform + pos: -117.5,46.5 + parent: 2 + - uid: 27290 + components: + - type: Transform + pos: -115.5,45.5 + parent: 2 + - uid: 27291 + components: + - type: Transform + pos: -117.5,45.5 + parent: 2 + - uid: 27296 + components: + - type: Transform + pos: -115.5,47.5 + parent: 2 + - uid: 27297 + components: + - type: Transform + pos: -117.5,48.5 + parent: 2 + - uid: 27298 + components: + - type: Transform + pos: -115.5,48.5 + parent: 2 + - uid: 28789 + components: + - type: Transform + pos: 112.5,59.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 13155 + components: + - type: Transform + pos: -19.5,68.5 + parent: 2 + - uid: 14363 + components: + - type: Transform + pos: -76.5,94.5 + parent: 2 + - uid: 14369 + components: + - type: Transform + pos: -75.5,94.5 + parent: 2 + - uid: 20232 + components: + - type: Transform + pos: -77.5,180.5 + parent: 2 + - uid: 22129 + components: + - type: Transform + pos: -75.5,154.5 + parent: 2 + - uid: 25809 + components: + - type: Transform + pos: 108.5,61.5 + parent: 2 + - uid: 27328 + components: + - type: Transform + pos: -71.5,96.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 10887 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 13164 + components: + - type: Transform + pos: -10.5,86.5 + parent: 2 + - uid: 13359 + components: + - type: Transform + pos: -58.5,105.5 + parent: 2 + - uid: 13360 + components: + - type: Transform + pos: -73.5,99.5 + parent: 2 + - uid: 13368 + components: + - type: Transform + pos: -33.5,65.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + pos: -33.5,65.5 + parent: 2 + - uid: 13371 + components: + - type: Transform + pos: -101.5,95.5 + parent: 2 + - uid: 13372 + components: + - type: Transform + pos: -97.5,148.5 + parent: 2 + - uid: 13373 + components: + - type: Transform + pos: -111.5,86.5 + parent: 2 + - uid: 13374 + components: + - type: Transform + pos: -26.5,194.5 + parent: 2 +- proto: RandomPainting + entities: + - uid: 4990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 107.5,56.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: -22.5,64.5 + parent: 2 + - uid: 14055 + components: + - type: Transform + pos: -68.5,104.5 + parent: 2 + - uid: 14056 + components: + - type: Transform + pos: -60.5,100.5 + parent: 2 + - uid: 22944 + components: + - type: Transform + pos: -16.5,208.5 + parent: 2 + - uid: 23515 + components: + - type: Transform + pos: -20.5,207.5 + parent: 2 + - uid: 25534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,175.5 + parent: 2 + - uid: 25545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,177.5 + parent: 2 + - uid: 25599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,176.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 7521 + components: + - type: Transform + pos: 82.5,20.5 + parent: 2 + - uid: 19634 + components: + - type: Transform + pos: -100.5,94.5 + parent: 2 + - uid: 22041 + components: + - type: Transform + pos: -94.5,44.5 + parent: 2 + - uid: 37228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,178.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 1168 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,49.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,57.5 + parent: 2 + - uid: 15584 + components: + - type: Transform + pos: -37.5,61.5 + parent: 2 + - uid: 15585 + components: + - type: Transform + pos: -40.5,56.5 + parent: 2 + - uid: 27149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,143.5 + parent: 2 + - uid: 39260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,85.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 4368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,81.5 + parent: 2 + - uid: 8723 + components: + - type: Transform + pos: 73.5,28.5 + parent: 2 + - uid: 8757 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 + - uid: 12979 + components: + - type: Transform + pos: -12.5,60.5 + parent: 2 + - uid: 12980 + components: + - type: Transform + pos: -10.5,60.5 + parent: 2 + - uid: 13159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,72.5 + parent: 2 + - uid: 14058 + components: + - type: Transform + pos: -61.5,104.5 + parent: 2 + - uid: 15514 + components: + - type: Transform + pos: 99.5,56.5 + parent: 2 + - uid: 15517 + components: + - type: Transform + pos: 99.5,50.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + pos: 112.5,49.5 + parent: 2 +- proto: RandomSnacks + entities: + - uid: 5282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,65.5 + parent: 2 + - uid: 19632 + components: + - type: Transform + pos: -108.5,89.5 + parent: 2 +- proto: RandomSoap + entities: + - uid: 19628 + components: + - type: Transform + pos: -102.5,87.5 + parent: 2 + - uid: 24245 + components: + - type: Transform + pos: -76.5,106.5 + parent: 2 +- proto: RandomVending + entities: + - uid: 84 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 5975 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 + - uid: 6058 + components: + - type: Transform + pos: 74.5,40.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + pos: 77.5,40.5 + parent: 2 + - uid: 9093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,157.5 + parent: 2 + - uid: 11220 + components: + - type: Transform + pos: 63.5,41.5 + parent: 2 + - uid: 11662 + components: + - type: Transform + pos: -35.5,74.5 + parent: 2 + - uid: 14170 + components: + - type: Transform + pos: -54.5,158.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + pos: -79.5,157.5 + parent: 2 + - uid: 14233 + components: + - type: Transform + pos: -54.5,159.5 + parent: 2 + - uid: 27815 + components: + - type: Transform + pos: -83.5,47.5 + parent: 2 + - uid: 27860 + components: + - type: Transform + pos: -85.5,37.5 + parent: 2 + - uid: 27875 + components: + - type: Transform + pos: -84.5,37.5 + parent: 2 + - uid: 27994 + components: + - type: Transform + pos: -91.5,45.5 + parent: 2 + - uid: 38518 + components: + - type: Transform + pos: -64.5,153.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 1215 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: -59.5,-6.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: 69.5,63.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + pos: 107.5,63.5 + parent: 2 + - uid: 11245 + components: + - type: Transform + pos: 52.5,65.5 + parent: 2 + - uid: 11660 + components: + - type: Transform + pos: -45.5,74.5 + parent: 2 + - uid: 14914 + components: + - type: Transform + pos: -55.5,79.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 692 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: -59.5,-5.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + pos: 68.5,63.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: 109.5,63.5 + parent: 2 + - uid: 10610 + components: + - type: Transform + pos: -17.5,101.5 + parent: 2 + - uid: 11460 + components: + - type: Transform + pos: 54.5,62.5 + parent: 2 + - uid: 13214 + components: + - type: Transform + pos: 0.5,205.5 + parent: 2 + - uid: 13476 + components: + - type: Transform + pos: -5.5,73.5 + parent: 2 + - uid: 13746 + components: + - type: Transform + pos: -21.5,167.5 + parent: 2 + - uid: 14925 + components: + - type: Transform + pos: -55.5,81.5 + parent: 2 + - uid: 16491 + components: + - type: Transform + pos: -29.5,91.5 + parent: 2 + - uid: 20645 + components: + - type: Transform + pos: -58.5,91.5 + parent: 2 + - uid: 22035 + components: + - type: Transform + pos: -90.5,43.5 + parent: 2 + - uid: 35661 + components: + - type: Transform + pos: -30.5,5.5 + parent: 2 +- proto: Recycler + entities: + - uid: 3942 + components: + - type: Transform + pos: -111.5,92.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + pos: -105.5,92.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + pos: -102.5,92.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,39.5 + parent: 2 + - uid: 19520 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 19521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,64.5 + parent: 2 + - uid: 21214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,173.5 + parent: 2 + - uid: 24323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,176.5 + parent: 2 + - uid: 37597 + components: + - type: Transform + pos: -108.5,92.5 + parent: 2 +- proto: ReinforcedGirder + entities: + - uid: 21334 + components: + - type: Transform + pos: -139.5,104.5 + parent: 2 + - uid: 21608 + components: + - type: Transform + pos: -149.5,90.5 + parent: 2 + - uid: 25735 + components: + - type: Transform + pos: -117.5,107.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,17.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: -53.5,13.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: -57.5,13.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: -72.5,146.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,17.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + pos: -91.5,157.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + pos: -90.5,157.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,33.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,33.5 + parent: 2 + - uid: 11851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,17.5 + parent: 2 + - uid: 12243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,17.5 + parent: 2 + - uid: 12283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,17.5 + parent: 2 + - uid: 12296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,17.5 + parent: 2 + - uid: 12297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,17.5 + parent: 2 + - uid: 14466 + components: + - type: Transform + pos: 78.5,37.5 + parent: 2 + - uid: 17571 + components: + - type: Transform + pos: -88.5,149.5 + parent: 2 + - uid: 17577 + components: + - type: Transform + pos: -89.5,149.5 + parent: 2 + - uid: 17986 + components: + - type: Transform + pos: -132.5,26.5 + parent: 2 + - uid: 18158 + components: + - type: Transform + pos: -134.5,29.5 + parent: 2 + - uid: 18159 + components: + - type: Transform + pos: -134.5,27.5 + parent: 2 + - uid: 18442 + components: + - type: Transform + pos: -134.5,28.5 + parent: 2 + - uid: 18443 + components: + - type: Transform + pos: -134.5,23.5 + parent: 2 + - uid: 18468 + components: + - type: Transform + pos: -134.5,25.5 + parent: 2 + - uid: 18517 + components: + - type: Transform + pos: -134.5,26.5 + parent: 2 + - uid: 18567 + components: + - type: Transform + pos: -92.5,158.5 + parent: 2 + - uid: 18634 + components: + - type: Transform + pos: -132.5,28.5 + parent: 2 + - uid: 18781 + components: + - type: Transform + pos: -132.5,25.5 + parent: 2 + - uid: 18843 + components: + - type: Transform + pos: -132.5,24.5 + parent: 2 + - uid: 18850 + components: + - type: Transform + pos: -134.5,24.5 + parent: 2 + - uid: 18949 + components: + - type: Transform + pos: -132.5,27.5 + parent: 2 + - uid: 19723 + components: + - type: Transform + pos: -89.5,156.5 + parent: 2 + - uid: 19742 + components: + - type: Transform + pos: -92.5,159.5 + parent: 2 + - uid: 19744 + components: + - type: Transform + pos: -92.5,160.5 + parent: 2 + - uid: 19760 + components: + - type: Transform + pos: -89.5,157.5 + parent: 2 + - uid: 19777 + components: + - type: Transform + pos: -89.5,154.5 + parent: 2 + - uid: 21614 + components: + - type: Transform + pos: -72.5,144.5 + parent: 2 + - uid: 23606 + components: + - type: Transform + pos: 16.5,190.5 + parent: 2 + - uid: 23607 + components: + - type: Transform + pos: 17.5,196.5 + parent: 2 + - uid: 23609 + components: + - type: Transform + pos: 15.5,194.5 + parent: 2 + - uid: 23620 + components: + - type: Transform + pos: 15.5,195.5 + parent: 2 + - uid: 23621 + components: + - type: Transform + pos: 18.5,196.5 + parent: 2 + - uid: 23622 + components: + - type: Transform + pos: 18.5,188.5 + parent: 2 + - uid: 23623 + components: + - type: Transform + pos: 18.5,189.5 + parent: 2 + - uid: 23626 + components: + - type: Transform + pos: 18.5,190.5 + parent: 2 + - uid: 23627 + components: + - type: Transform + pos: 17.5,190.5 + parent: 2 + - uid: 25054 + components: + - type: Transform + pos: 77.5,37.5 + parent: 2 + - uid: 27515 + components: + - type: Transform + pos: -113.5,17.5 + parent: 2 + - uid: 27722 + components: + - type: Transform + pos: -103.5,17.5 + parent: 2 + - uid: 27861 + components: + - type: Transform + pos: -113.5,18.5 + parent: 2 + - uid: 27862 + components: + - type: Transform + pos: -113.5,19.5 + parent: 2 + - uid: 27878 + components: + - type: Transform + pos: -103.5,19.5 + parent: 2 + - uid: 27880 + components: + - type: Transform + pos: -103.5,18.5 + parent: 2 + - uid: 27909 + components: + - type: Transform + pos: -102.5,25.5 + parent: 2 + - uid: 27934 + components: + - type: Transform + pos: -102.5,23.5 + parent: 2 + - uid: 27987 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 27995 + components: + - type: Transform + pos: -106.5,34.5 + parent: 2 + - uid: 28158 + components: + - type: Transform + pos: 76.5,37.5 + parent: 2 + - uid: 28180 + components: + - type: Transform + pos: 79.5,37.5 + parent: 2 + - uid: 28198 + components: + - type: Transform + pos: -73.5,145.5 + parent: 2 + - uid: 28755 + components: + - type: Transform + pos: -114.5,23.5 + parent: 2 + - uid: 28758 + components: + - type: Transform + pos: -114.5,21.5 + parent: 2 + - uid: 29123 + components: + - type: Transform + pos: -114.5,34.5 + parent: 2 + - uid: 29468 + components: + - type: Transform + pos: -109.5,37.5 + parent: 2 + - uid: 29471 + components: + - type: Transform + pos: -111.5,37.5 + parent: 2 + - uid: 30829 + components: + - type: Transform + pos: -74.5,145.5 + parent: 2 + - uid: 30832 + components: + - type: Transform + pos: -72.5,145.5 + parent: 2 + - uid: 30837 + components: + - type: Transform + pos: -66.5,147.5 + parent: 2 + - uid: 31873 + components: + - type: Transform + pos: 87.5,14.5 + parent: 2 + - uid: 31885 + components: + - type: Transform + pos: 89.5,16.5 + parent: 2 + - uid: 31886 + components: + - type: Transform + pos: 89.5,15.5 + parent: 2 + - uid: 31887 + components: + - type: Transform + pos: 89.5,14.5 + parent: 2 + - uid: 31888 + components: + - type: Transform + pos: 90.5,16.5 + parent: 2 + - uid: 31889 + components: + - type: Transform + pos: 91.5,16.5 + parent: 2 + - uid: 31890 + components: + - type: Transform + pos: 87.5,16.5 + parent: 2 + - uid: 31891 + components: + - type: Transform + pos: 86.5,16.5 + parent: 2 + - uid: 31892 + components: + - type: Transform + pos: 85.5,16.5 + parent: 2 + - uid: 31893 + components: + - type: Transform + pos: 87.5,15.5 + parent: 2 + - uid: 35546 + components: + - type: Transform + pos: -119.5,58.5 + parent: 2 + - uid: 35547 + components: + - type: Transform + pos: -119.5,59.5 + parent: 2 + - uid: 35548 + components: + - type: Transform + pos: -119.5,60.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 40 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 68.5,55.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: 3.5,85.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,89.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 + - uid: 681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,87.5 + parent: 2 + - uid: 686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,88.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,133.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: -16.5,92.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: -42.5,79.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 34.5,59.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,133.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: -38.5,83.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: -110.5,101.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: -109.5,101.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: -111.5,101.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 34.5,61.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: -16.5,94.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: -8.5,89.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + pos: 68.5,52.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,35.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + pos: 64.5,69.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + pos: 65.5,69.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + pos: 65.5,70.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + pos: 66.5,70.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + pos: 67.5,70.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + pos: 68.5,70.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + pos: 69.5,70.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + pos: 70.5,70.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: 72.5,70.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + pos: 73.5,70.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + pos: 74.5,70.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + pos: 75.5,70.5 + parent: 2 + - uid: 3537 + components: + - type: Transform + pos: 76.5,70.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + pos: 77.5,70.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + pos: 77.5,69.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: 78.5,69.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: 81.5,68.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + pos: 82.5,68.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: 83.5,68.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: 84.5,68.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: 85.5,68.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + pos: 86.5,68.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: 86.5,67.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + pos: 87.5,67.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + pos: 87.5,66.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + pos: 88.5,66.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + pos: 88.5,65.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: 89.5,65.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: 79.5,52.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + pos: 87.5,37.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + pos: 88.5,37.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + pos: 90.5,39.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: 91.5,40.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: 91.5,41.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: -105.5,103.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + pos: -88.5,81.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + pos: 93.5,56.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + pos: 68.5,53.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: 63.5,55.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + pos: 63.5,52.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + pos: 63.5,49.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: -99.5,61.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,27.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: 70.5,42.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: 72.5,42.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: 74.5,44.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: 68.5,44.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + pos: 68.5,43.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + pos: 74.5,43.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + pos: -14.5,163.5 + parent: 2 + - uid: 4483 + components: + - type: Transform + pos: 53.5,37.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: 70.5,50.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: -10.5,171.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,90.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,89.5 + parent: 2 + - uid: 4851 + components: + - type: Transform + pos: 99.5,51.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: 93.5,50.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + pos: 100.5,52.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: 100.5,54.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + pos: 99.5,55.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,89.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + pos: 100.5,51.5 + parent: 2 + - uid: 5030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,89.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: -100.5,62.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: -90.5,51.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + pos: -99.5,62.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + pos: 101.5,52.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: 100.5,55.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + pos: 101.5,53.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + pos: 101.5,54.5 + parent: 2 + - uid: 5180 + components: + - type: Transform + pos: 52.5,67.5 + parent: 2 + - uid: 5182 + components: + - type: Transform + pos: 53.5,67.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: 53.5,68.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: 54.5,68.5 + parent: 2 + - uid: 5185 + components: + - type: Transform + pos: 55.5,68.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + pos: -69.5,129.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + pos: -13.5,166.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + pos: -12.5,166.5 + parent: 2 + - uid: 5479 + components: + - type: Transform + pos: 58.5,25.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 5512 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,31.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + pos: -31.5,176.5 + parent: 2 + - uid: 5703 + components: + - type: Transform + pos: -69.5,130.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: -69.5,131.5 + parent: 2 + - uid: 5705 + components: + - type: Transform + pos: -69.5,128.5 + parent: 2 + - uid: 5713 + components: + - type: Transform + pos: -30.5,176.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + pos: -25.5,103.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + pos: -31.5,177.5 + parent: 2 + - uid: 5953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,173.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,129.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,130.5 + parent: 2 + - uid: 6056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,131.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + pos: -69.5,132.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + pos: 10.5,66.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,173.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + pos: 10.5,65.5 + parent: 2 + - uid: 6591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,135.5 + parent: 2 + - uid: 6593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,135.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,135.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,125.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,125.5 + parent: 2 + - uid: 6720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,125.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 7177 + components: + - type: Transform + pos: 50.5,41.5 + parent: 2 + - uid: 7313 + components: + - type: Transform + pos: 72.5,50.5 + parent: 2 + - uid: 7322 + components: + - type: Transform + pos: 8.5,64.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: 74.5,51.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: 74.5,53.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: 74.5,55.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + pos: 68.5,54.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + pos: 107.5,42.5 + parent: 2 + - uid: 7518 + components: + - type: Transform + pos: 108.5,42.5 + parent: 2 + - uid: 7519 + components: + - type: Transform + pos: 109.5,42.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + pos: 110.5,42.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,133.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,127.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,127.5 + parent: 2 + - uid: 7623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,127.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,128.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + pos: -68.5,128.5 + parent: 2 + - uid: 7823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,132.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,128.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,132.5 + parent: 2 + - uid: 7854 + components: + - type: Transform + pos: -68.5,132.5 + parent: 2 + - uid: 8317 + components: + - type: Transform + pos: 9.5,64.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: 73.5,27.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + pos: 89.5,37.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + pos: 91.5,39.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: 90.5,38.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + pos: 89.5,38.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + pos: 9.5,65.5 + parent: 2 + - uid: 8475 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + pos: 7.5,63.5 + parent: 2 + - uid: 8653 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 9099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,132.5 + parent: 2 + - uid: 9100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,128.5 + parent: 2 + - uid: 9621 + components: + - type: Transform + pos: 79.5,49.5 + parent: 2 + - uid: 10308 + components: + - type: Transform + pos: -66.5,113.5 + parent: 2 + - uid: 10367 + components: + - type: Transform + pos: 8.5,63.5 + parent: 2 + - uid: 10429 + components: + - type: Transform + pos: -17.5,80.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + pos: -50.5,92.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + pos: -19.5,80.5 + parent: 2 + - uid: 10717 + components: + - type: Transform + pos: -15.5,163.5 + parent: 2 + - uid: 10726 + components: + - type: Transform + pos: -8.5,163.5 + parent: 2 + - uid: 10746 + components: + - type: Transform + pos: -14.5,166.5 + parent: 2 + - uid: 10754 + components: + - type: Transform + pos: 79.5,55.5 + parent: 2 + - uid: 10807 + components: + - type: Transform + pos: -32.5,178.5 + parent: 2 + - uid: 10808 + components: + - type: Transform + pos: -32.5,177.5 + parent: 2 + - uid: 10883 + components: + - type: Transform + pos: -42.5,93.5 + parent: 2 + - uid: 10884 + components: + - type: Transform + pos: -41.5,93.5 + parent: 2 + - uid: 10888 + components: + - type: Transform + pos: -39.5,93.5 + parent: 2 + - uid: 10907 + components: + - type: Transform + pos: -38.5,93.5 + parent: 2 + - uid: 11241 + components: + - type: Transform + pos: -34.5,79.5 + parent: 2 + - uid: 11242 + components: + - type: Transform + pos: -34.5,75.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: -46.5,75.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + pos: -46.5,79.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + pos: -46.5,83.5 + parent: 2 + - uid: 11387 + components: + - type: Transform + pos: -46.5,87.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: -66.5,114.5 + parent: 2 + - uid: 11430 + components: + - type: Transform + pos: -38.5,70.5 + parent: 2 + - uid: 11431 + components: + - type: Transform + pos: -42.5,70.5 + parent: 2 + - uid: 11540 + components: + - type: Transform + pos: -39.5,86.5 + parent: 2 + - uid: 11564 + components: + - type: Transform + pos: -38.5,79.5 + parent: 2 + - uid: 11565 + components: + - type: Transform + pos: -38.5,78.5 + parent: 2 + - uid: 11568 + components: + - type: Transform + pos: -42.5,83.5 + parent: 2 + - uid: 11569 + components: + - type: Transform + pos: -42.5,84.5 + parent: 2 + - uid: 11571 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 11576 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 11580 + components: + - type: Transform + pos: -32.5,56.5 + parent: 2 + - uid: 11581 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 11582 + components: + - type: Transform + pos: -40.5,86.5 + parent: 2 + - uid: 11583 + components: + - type: Transform + pos: -41.5,86.5 + parent: 2 + - uid: 11584 + components: + - type: Transform + pos: -41.5,76.5 + parent: 2 + - uid: 11586 + components: + - type: Transform + pos: -39.5,76.5 + parent: 2 + - uid: 11587 + components: + - type: Transform + pos: -42.5,78.5 + parent: 2 + - uid: 11588 + components: + - type: Transform + pos: -38.5,84.5 + parent: 2 + - uid: 11594 + components: + - type: Transform + pos: -31.5,56.5 + parent: 2 + - uid: 11626 + components: + - type: Transform + pos: -56.5,60.5 + parent: 2 + - uid: 11687 + components: + - type: Transform + pos: -42.5,94.5 + parent: 2 + - uid: 11688 + components: + - type: Transform + pos: -42.5,95.5 + parent: 2 + - uid: 11689 + components: + - type: Transform + pos: -38.5,94.5 + parent: 2 + - uid: 11690 + components: + - type: Transform + pos: -38.5,95.5 + parent: 2 + - uid: 11786 + components: + - type: Transform + pos: -24.5,103.5 + parent: 2 + - uid: 11907 + components: + - type: Transform + pos: -57.5,60.5 + parent: 2 + - uid: 11908 + components: + - type: Transform + pos: -57.5,59.5 + parent: 2 + - uid: 11909 + components: + - type: Transform + pos: -61.5,59.5 + parent: 2 + - uid: 11911 + components: + - type: Transform + pos: -59.5,59.5 + parent: 2 + - uid: 11978 + components: + - type: Transform + pos: -30.5,92.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + pos: -29.5,92.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + pos: -28.5,92.5 + parent: 2 + - uid: 11981 + components: + - type: Transform + pos: -27.5,92.5 + parent: 2 + - uid: 11990 + components: + - type: Transform + pos: -37.5,98.5 + parent: 2 + - uid: 11997 + components: + - type: Transform + pos: -9.5,89.5 + parent: 2 + - uid: 12005 + components: + - type: Transform + pos: -61.5,60.5 + parent: 2 + - uid: 12014 + components: + - type: Transform + pos: -58.5,59.5 + parent: 2 + - uid: 12026 + components: + - type: Transform + pos: -62.5,60.5 + parent: 2 + - uid: 12029 + components: + - type: Transform + pos: -60.5,59.5 + parent: 2 + - uid: 12048 + components: + - type: Transform + pos: 104.5,56.5 + parent: 2 + - uid: 12165 + components: + - type: Transform + pos: -51.5,92.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,89.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + pos: -105.5,146.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: -142.5,90.5 + parent: 2 + - uid: 12920 + components: + - type: Transform + pos: 52.5,66.5 + parent: 2 + - uid: 12955 + components: + - type: Transform + pos: -144.5,90.5 + parent: 2 + - uid: 12986 + components: + - type: Transform + pos: -18.5,80.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + pos: -69.5,69.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + pos: -27.5,105.5 + parent: 2 + - uid: 13363 + components: + - type: Transform + pos: -26.5,105.5 + parent: 2 + - uid: 13584 + components: + - type: Transform + pos: -45.5,109.5 + parent: 2 + - uid: 13621 + components: + - type: Transform + pos: -34.5,108.5 + parent: 2 + - uid: 13656 + components: + - type: Transform + pos: -42.5,111.5 + parent: 2 + - uid: 13721 + components: + - type: Transform + pos: -37.5,93.5 + parent: 2 + - uid: 13727 + components: + - type: Transform + pos: -43.5,93.5 + parent: 2 + - uid: 13749 + components: + - type: Transform + pos: 2.5,59.5 + parent: 2 + - uid: 13788 + components: + - type: Transform + pos: -65.5,115.5 + parent: 2 + - uid: 13950 + components: + - type: Transform + pos: -64.5,115.5 + parent: 2 + - uid: 14150 + components: + - type: Transform + pos: -81.5,69.5 + parent: 2 + - uid: 14158 + components: + - type: Transform + pos: -65.5,114.5 + parent: 2 + - uid: 14178 + components: + - type: Transform + pos: -63.5,115.5 + parent: 2 + - uid: 14231 + components: + - type: Transform + pos: -24.5,102.5 + parent: 2 + - uid: 14498 + components: + - type: Transform + pos: 51.5,66.5 + parent: 2 + - uid: 14742 + components: + - type: Transform + pos: 51.5,65.5 + parent: 2 + - uid: 14796 + components: + - type: Transform + pos: -31.5,57.5 + parent: 2 + - uid: 14797 + components: + - type: Transform + pos: -30.5,57.5 + parent: 2 + - uid: 14798 + components: + - type: Transform + pos: -30.5,58.5 + parent: 2 + - uid: 15262 + components: + - type: Transform + pos: 110.5,56.5 + parent: 2 + - uid: 15341 + components: + - type: Transform + pos: -105.5,102.5 + parent: 2 + - uid: 15363 + components: + - type: Transform + pos: -70.5,69.5 + parent: 2 + - uid: 15386 + components: + - type: Transform + pos: -88.5,82.5 + parent: 2 + - uid: 15400 + components: + - type: Transform + pos: -88.5,84.5 + parent: 2 + - uid: 15494 + components: + - type: Transform + pos: -132.5,104.5 + parent: 2 + - uid: 15498 + components: + - type: Transform + pos: -133.5,104.5 + parent: 2 + - uid: 15593 + components: + - type: Transform + pos: -134.5,104.5 + parent: 2 + - uid: 15604 + components: + - type: Transform + pos: 80.5,42.5 + parent: 2 + - uid: 16262 + components: + - type: Transform + pos: -89.5,73.5 + parent: 2 + - uid: 16288 + components: + - type: Transform + pos: -86.5,61.5 + parent: 2 + - uid: 16289 + components: + - type: Transform + pos: -85.5,61.5 + parent: 2 + - uid: 16290 + components: + - type: Transform + pos: -85.5,62.5 + parent: 2 + - uid: 16291 + components: + - type: Transform + pos: -84.5,62.5 + parent: 2 + - uid: 16292 + components: + - type: Transform + pos: -90.5,59.5 + parent: 2 + - uid: 16293 + components: + - type: Transform + pos: -91.5,59.5 + parent: 2 + - uid: 16294 + components: + - type: Transform + pos: -91.5,58.5 + parent: 2 + - uid: 16295 + components: + - type: Transform + pos: -92.5,58.5 + parent: 2 + - uid: 16299 + components: + - type: Transform + pos: -80.5,64.5 + parent: 2 + - uid: 16300 + components: + - type: Transform + pos: -79.5,64.5 + parent: 2 + - uid: 16301 + components: + - type: Transform + pos: -79.5,65.5 + parent: 2 + - uid: 16302 + components: + - type: Transform + pos: -78.5,65.5 + parent: 2 + - uid: 16320 + components: + - type: Transform + pos: -81.5,70.5 + parent: 2 + - uid: 16321 + components: + - type: Transform + pos: -80.5,69.5 + parent: 2 + - uid: 16329 + components: + - type: Transform + pos: -90.5,73.5 + parent: 2 + - uid: 16330 + components: + - type: Transform + pos: -91.5,73.5 + parent: 2 + - uid: 16331 + components: + - type: Transform + pos: -91.5,72.5 + parent: 2 + - uid: 16333 + components: + - type: Transform + pos: -95.5,71.5 + parent: 2 + - uid: 16334 + components: + - type: Transform + pos: -95.5,70.5 + parent: 2 + - uid: 16335 + components: + - type: Transform + pos: -96.5,70.5 + parent: 2 + - uid: 16336 + components: + - type: Transform + pos: -97.5,70.5 + parent: 2 + - uid: 16337 + components: + - type: Transform + pos: -97.5,69.5 + parent: 2 + - uid: 16360 + components: + - type: Transform + pos: -92.5,76.5 + parent: 2 + - uid: 16369 + components: + - type: Transform + pos: -92.5,75.5 + parent: 2 + - uid: 16379 + components: + - type: Transform + pos: -96.5,74.5 + parent: 2 + - uid: 16380 + components: + - type: Transform + pos: -96.5,73.5 + parent: 2 + - uid: 16381 + components: + - type: Transform + pos: -97.5,73.5 + parent: 2 + - uid: 16382 + components: + - type: Transform + pos: -98.5,73.5 + parent: 2 + - uid: 16383 + components: + - type: Transform + pos: -98.5,72.5 + parent: 2 + - uid: 16384 + components: + - type: Transform + pos: -91.5,76.5 + parent: 2 + - uid: 16388 + components: + - type: Transform + pos: -102.5,71.5 + parent: 2 + - uid: 16389 + components: + - type: Transform + pos: -102.5,70.5 + parent: 2 + - uid: 16390 + components: + - type: Transform + pos: -103.5,70.5 + parent: 2 + - uid: 16391 + components: + - type: Transform + pos: -104.5,70.5 + parent: 2 + - uid: 16392 + components: + - type: Transform + pos: -104.5,69.5 + parent: 2 + - uid: 16397 + components: + - type: Transform + pos: -108.5,68.5 + parent: 2 + - uid: 16398 + components: + - type: Transform + pos: -108.5,67.5 + parent: 2 + - uid: 16399 + components: + - type: Transform + pos: -109.5,67.5 + parent: 2 + - uid: 16400 + components: + - type: Transform + pos: -110.5,67.5 + parent: 2 + - uid: 16427 + components: + - type: Transform + pos: -77.5,62.5 + parent: 2 + - uid: 16428 + components: + - type: Transform + pos: -78.5,62.5 + parent: 2 + - uid: 16429 + components: + - type: Transform + pos: -78.5,61.5 + parent: 2 + - uid: 16430 + components: + - type: Transform + pos: -79.5,61.5 + parent: 2 + - uid: 16431 + components: + - type: Transform + pos: -83.5,59.5 + parent: 2 + - uid: 16432 + components: + - type: Transform + pos: -84.5,59.5 + parent: 2 + - uid: 16433 + components: + - type: Transform + pos: -84.5,58.5 + parent: 2 + - uid: 16434 + components: + - type: Transform + pos: -85.5,58.5 + parent: 2 + - uid: 16468 + components: + - type: Transform + pos: -52.5,92.5 + parent: 2 + - uid: 16469 + components: + - type: Transform + pos: -53.5,92.5 + parent: 2 + - uid: 16545 + components: + - type: Transform + pos: -42.5,110.5 + parent: 2 + - uid: 16546 + components: + - type: Transform + pos: -46.5,109.5 + parent: 2 + - uid: 16561 + components: + - type: Transform + pos: -38.5,111.5 + parent: 2 + - uid: 16574 + components: + - type: Transform + pos: -44.5,110.5 + parent: 2 + - uid: 16576 + components: + - type: Transform + pos: -35.5,109.5 + parent: 2 + - uid: 16628 + components: + - type: Transform + pos: -37.5,100.5 + parent: 2 + - uid: 16662 + components: + - type: Transform + pos: -29.5,106.5 + parent: 2 + - uid: 16756 + components: + - type: Transform + pos: -68.5,69.5 + parent: 2 + - uid: 16967 + components: + - type: Transform + pos: -141.5,104.5 + parent: 2 + - uid: 16977 + components: + - type: Transform + pos: -26.5,104.5 + parent: 2 + - uid: 17273 + components: + - type: Transform + pos: 108.5,50.5 + parent: 2 + - uid: 17324 + components: + - type: Transform + pos: -90.5,37.5 + parent: 2 + - uid: 17333 + components: + - type: Transform + pos: -59.5,175.5 + parent: 2 + - uid: 17335 + components: + - type: Transform + pos: -58.5,175.5 + parent: 2 + - uid: 17373 + components: + - type: Transform + pos: -140.5,104.5 + parent: 2 + - uid: 17579 + components: + - type: Transform + pos: -14.5,61.5 + parent: 2 + - uid: 17777 + components: + - type: Transform + pos: -103.5,90.5 + parent: 2 + - uid: 17805 + components: + - type: Transform + pos: 110.5,50.5 + parent: 2 + - uid: 17823 + components: + - type: Transform + pos: -75.5,186.5 + parent: 2 + - uid: 17838 + components: + - type: Transform + pos: -110.5,90.5 + parent: 2 + - uid: 17851 + components: + - type: Transform + pos: -104.5,90.5 + parent: 2 + - uid: 17852 + components: + - type: Transform + pos: -109.5,90.5 + parent: 2 + - uid: 17859 + components: + - type: Transform + pos: -106.5,90.5 + parent: 2 + - uid: 17860 + components: + - type: Transform + pos: -107.5,90.5 + parent: 2 + - uid: 17871 + components: + - type: Transform + pos: 51.5,64.5 + parent: 2 + - uid: 17873 + components: + - type: Transform + pos: -83.5,185.5 + parent: 2 + - uid: 17880 + components: + - type: Transform + pos: -126.5,96.5 + parent: 2 + - uid: 17969 + components: + - type: Transform + pos: -118.5,67.5 + parent: 2 + - uid: 17978 + components: + - type: Transform + pos: -119.5,67.5 + parent: 2 + - uid: 17996 + components: + - type: Transform + pos: -120.5,67.5 + parent: 2 + - uid: 18103 + components: + - type: Transform + pos: -126.5,97.5 + parent: 2 + - uid: 18110 + components: + - type: Transform + pos: -126.5,98.5 + parent: 2 + - uid: 18161 + components: + - type: Transform + pos: -58.5,156.5 + parent: 2 + - uid: 18192 + components: + - type: Transform + pos: -51.5,150.5 + parent: 2 + - uid: 18194 + components: + - type: Transform + pos: -52.5,150.5 + parent: 2 + - uid: 18325 + components: + - type: Transform + pos: -129.5,99.5 + parent: 2 + - uid: 18420 + components: + - type: Transform + pos: -79.5,149.5 + parent: 2 + - uid: 18445 + components: + - type: Transform + pos: -129.5,100.5 + parent: 2 + - uid: 18450 + components: + - type: Transform + pos: -58.5,157.5 + parent: 2 + - uid: 18498 + components: + - type: Transform + pos: -83.5,184.5 + parent: 2 + - uid: 18559 + components: + - type: Transform + pos: -58.5,158.5 + parent: 2 + - uid: 18738 + components: + - type: Transform + pos: -51.5,156.5 + parent: 2 + - uid: 18739 + components: + - type: Transform + pos: -51.5,155.5 + parent: 2 + - uid: 18740 + components: + - type: Transform + pos: -51.5,154.5 + parent: 2 + - uid: 18811 + components: + - type: Transform + pos: -102.5,101.5 + parent: 2 + - uid: 18837 + components: + - type: Transform + pos: -101.5,101.5 + parent: 2 + - uid: 18983 + components: + - type: Transform + pos: -88.5,83.5 + parent: 2 + - uid: 19135 + components: + - type: Transform + pos: -22.5,200.5 + parent: 2 + - uid: 19489 + components: + - type: Transform + pos: -36.5,110.5 + parent: 2 + - uid: 19490 + components: + - type: Transform + pos: -35.5,110.5 + parent: 2 + - uid: 19532 + components: + - type: Transform + pos: -99.5,170.5 + parent: 2 + - uid: 19725 + components: + - type: Transform + pos: -84.5,161.5 + parent: 2 + - uid: 19750 + components: + - type: Transform + pos: -86.5,161.5 + parent: 2 + - uid: 19753 + components: + - type: Transform + pos: -87.5,161.5 + parent: 2 + - uid: 19763 + components: + - type: Transform + pos: -89.5,161.5 + parent: 2 + - uid: 19772 + components: + - type: Transform + pos: -88.5,161.5 + parent: 2 + - uid: 19773 + components: + - type: Transform + pos: -85.5,161.5 + parent: 2 + - uid: 19942 + components: + - type: Transform + pos: -41.5,111.5 + parent: 2 + - uid: 20094 + components: + - type: Transform + pos: -82.5,186.5 + parent: 2 + - uid: 20095 + components: + - type: Transform + pos: -83.5,186.5 + parent: 2 + - uid: 20096 + components: + - type: Transform + pos: -81.5,187.5 + parent: 2 + - uid: 20097 + components: + - type: Transform + pos: -80.5,187.5 + parent: 2 + - uid: 20099 + components: + - type: Transform + pos: -78.5,187.5 + parent: 2 + - uid: 20100 + components: + - type: Transform + pos: -77.5,187.5 + parent: 2 + - uid: 20101 + components: + - type: Transform + pos: -76.5,187.5 + parent: 2 + - uid: 20102 + components: + - type: Transform + pos: -76.5,186.5 + parent: 2 + - uid: 20104 + components: + - type: Transform + pos: -75.5,185.5 + parent: 2 + - uid: 20105 + components: + - type: Transform + pos: -75.5,184.5 + parent: 2 + - uid: 20117 + components: + - type: Transform + pos: -82.5,187.5 + parent: 2 + - uid: 20330 + components: + - type: Transform + pos: 109.5,50.5 + parent: 2 + - uid: 20443 + components: + - type: Transform + pos: -97.5,171.5 + parent: 2 + - uid: 20444 + components: + - type: Transform + pos: -96.5,171.5 + parent: 2 + - uid: 20445 + components: + - type: Transform + pos: -95.5,171.5 + parent: 2 + - uid: 20458 + components: + - type: Transform + pos: -98.5,171.5 + parent: 2 + - uid: 20459 + components: + - type: Transform + pos: -98.5,170.5 + parent: 2 + - uid: 20461 + components: + - type: Transform + pos: -99.5,169.5 + parent: 2 + - uid: 20462 + components: + - type: Transform + pos: -99.5,168.5 + parent: 2 + - uid: 20463 + components: + - type: Transform + pos: -99.5,167.5 + parent: 2 + - uid: 20469 + components: + - type: Transform + pos: -16.5,61.5 + parent: 2 + - uid: 20529 + components: + - type: Transform + pos: -85.5,183.5 + parent: 2 + - uid: 20530 + components: + - type: Transform + pos: -86.5,183.5 + parent: 2 + - uid: 20531 + components: + - type: Transform + pos: -87.5,183.5 + parent: 2 + - uid: 20532 + components: + - type: Transform + pos: -88.5,183.5 + parent: 2 + - uid: 20533 + components: + - type: Transform + pos: -89.5,183.5 + parent: 2 + - uid: 20534 + components: + - type: Transform + pos: -89.5,182.5 + parent: 2 + - uid: 20535 + components: + - type: Transform + pos: -90.5,182.5 + parent: 2 + - uid: 20536 + components: + - type: Transform + pos: -90.5,181.5 + parent: 2 + - uid: 20537 + components: + - type: Transform + pos: -91.5,181.5 + parent: 2 + - uid: 20538 + components: + - type: Transform + pos: -91.5,180.5 + parent: 2 + - uid: 20598 + components: + - type: Transform + pos: -67.5,180.5 + parent: 2 + - uid: 20696 + components: + - type: Transform + pos: -62.5,150.5 + parent: 2 + - uid: 20697 + components: + - type: Transform + pos: -63.5,150.5 + parent: 2 + - uid: 20847 + components: + - type: Transform + pos: -61.5,150.5 + parent: 2 + - uid: 20856 + components: + - type: Transform + pos: -70.5,183.5 + parent: 2 + - uid: 20857 + components: + - type: Transform + pos: -71.5,183.5 + parent: 2 + - uid: 20858 + components: + - type: Transform + pos: -72.5,183.5 + parent: 2 + - uid: 20859 + components: + - type: Transform + pos: -73.5,183.5 + parent: 2 + - uid: 20863 + components: + - type: Transform + pos: -60.5,175.5 + parent: 2 + - uid: 20864 + components: + - type: Transform + pos: -62.5,175.5 + parent: 2 + - uid: 20924 + components: + - type: Transform + pos: -67.5,155.5 + parent: 2 + - uid: 20925 + components: + - type: Transform + pos: -67.5,159.5 + parent: 2 + - uid: 20928 + components: + - type: Transform + pos: -69.5,182.5 + parent: 2 + - uid: 20929 + components: + - type: Transform + pos: -68.5,182.5 + parent: 2 + - uid: 20933 + components: + - type: Transform + pos: -69.5,183.5 + parent: 2 + - uid: 20934 + components: + - type: Transform + pos: -68.5,181.5 + parent: 2 + - uid: 20935 + components: + - type: Transform + pos: -67.5,181.5 + parent: 2 + - uid: 20938 + components: + - type: Transform + pos: -34.5,87.5 + parent: 2 + - uid: 20939 + components: + - type: Transform + pos: -34.5,83.5 + parent: 2 + - uid: 21196 + components: + - type: Transform + pos: -129.5,94.5 + parent: 2 + - uid: 21353 + components: + - type: Transform + pos: -138.5,39.5 + parent: 2 + - uid: 21358 + components: + - type: Transform + pos: -138.5,41.5 + parent: 2 + - uid: 21369 + components: + - type: Transform + pos: 65.5,37.5 + parent: 2 + - uid: 21388 + components: + - type: Transform + pos: 66.5,37.5 + parent: 2 + - uid: 21416 + components: + - type: Transform + pos: 67.5,37.5 + parent: 2 + - uid: 21444 + components: + - type: Transform + pos: 66.5,31.5 + parent: 2 + - uid: 21446 + components: + - type: Transform + pos: 67.5,31.5 + parent: 2 + - uid: 22116 + components: + - type: Transform + pos: -74.5,154.5 + parent: 2 + - uid: 22117 + components: + - type: Transform + pos: -74.5,153.5 + parent: 2 + - uid: 22118 + components: + - type: Transform + pos: -74.5,152.5 + parent: 2 + - uid: 22179 + components: + - type: Transform + pos: 109.5,56.5 + parent: 2 + - uid: 22532 + components: + - type: Transform + pos: -9.5,163.5 + parent: 2 + - uid: 22581 + components: + - type: Transform + pos: -129.5,98.5 + parent: 2 + - uid: 22606 + components: + - type: Transform + pos: -6.5,180.5 + parent: 2 + - uid: 22607 + components: + - type: Transform + pos: -6.5,181.5 + parent: 2 + - uid: 22610 + components: + - type: Transform + pos: -6.5,179.5 + parent: 2 + - uid: 22611 + components: + - type: Transform + pos: -6.5,178.5 + parent: 2 + - uid: 22612 + components: + - type: Transform + pos: -6.5,177.5 + parent: 2 + - uid: 22646 + components: + - type: Transform + pos: -52.5,168.5 + parent: 2 + - uid: 22927 + components: + - type: Transform + pos: 1.5,195.5 + parent: 2 + - uid: 22928 + components: + - type: Transform + pos: 0.5,195.5 + parent: 2 + - uid: 23247 + components: + - type: Transform + pos: -1.5,197.5 + parent: 2 + - uid: 23259 + components: + - type: Transform + pos: -1.5,198.5 + parent: 2 + - uid: 23294 + components: + - type: Transform + pos: -17.5,202.5 + parent: 2 + - uid: 23295 + components: + - type: Transform + pos: -16.5,202.5 + parent: 2 + - uid: 23296 + components: + - type: Transform + pos: -15.5,202.5 + parent: 2 + - uid: 23297 + components: + - type: Transform + pos: -14.5,202.5 + parent: 2 + - uid: 23408 + components: + - type: Transform + pos: -1.5,199.5 + parent: 2 + - uid: 23476 + components: + - type: Transform + pos: -22.5,201.5 + parent: 2 + - uid: 23495 + components: + - type: Transform + pos: 6.5,211.5 + parent: 2 + - uid: 23531 + components: + - type: Transform + pos: -104.5,146.5 + parent: 2 + - uid: 23545 + components: + - type: Transform + pos: 8.5,186.5 + parent: 2 + - uid: 23763 + components: + - type: Transform + pos: 108.5,56.5 + parent: 2 + - uid: 23845 + components: + - type: Transform + pos: 5.5,211.5 + parent: 2 + - uid: 23986 + components: + - type: Transform + pos: 105.5,56.5 + parent: 2 + - uid: 23998 + components: + - type: Transform + pos: -24.5,210.5 + parent: 2 + - uid: 23999 + components: + - type: Transform + pos: -23.5,210.5 + parent: 2 + - uid: 24000 + components: + - type: Transform + pos: -22.5,210.5 + parent: 2 + - uid: 24001 + components: + - type: Transform + pos: -11.5,214.5 + parent: 2 + - uid: 24002 + components: + - type: Transform + pos: -10.5,214.5 + parent: 2 + - uid: 24003 + components: + - type: Transform + pos: -9.5,214.5 + parent: 2 + - uid: 24004 + components: + - type: Transform + pos: -8.5,214.5 + parent: 2 + - uid: 24005 + components: + - type: Transform + pos: -7.5,214.5 + parent: 2 + - uid: 24006 + components: + - type: Transform + pos: -6.5,214.5 + parent: 2 + - uid: 24007 + components: + - type: Transform + pos: -5.5,214.5 + parent: 2 + - uid: 24008 + components: + - type: Transform + pos: -4.5,214.5 + parent: 2 + - uid: 24049 + components: + - type: Transform + pos: 6.5,210.5 + parent: 2 + - uid: 24050 + components: + - type: Transform + pos: 7.5,210.5 + parent: 2 + - uid: 24051 + components: + - type: Transform + pos: 7.5,209.5 + parent: 2 + - uid: 24105 + components: + - type: Transform + pos: 11.5,204.5 + parent: 2 + - uid: 24106 + components: + - type: Transform + pos: 12.5,204.5 + parent: 2 + - uid: 24107 + components: + - type: Transform + pos: 13.5,204.5 + parent: 2 + - uid: 24108 + components: + - type: Transform + pos: 14.5,204.5 + parent: 2 + - uid: 24146 + components: + - type: Transform + pos: 106.5,56.5 + parent: 2 + - uid: 24148 + components: + - type: Transform + pos: 106.5,50.5 + parent: 2 + - uid: 24149 + components: + - type: Transform + pos: 105.5,50.5 + parent: 2 + - uid: 24373 + components: + - type: Transform + pos: 24.5,180.5 + parent: 2 + - uid: 24374 + components: + - type: Transform + pos: 24.5,179.5 + parent: 2 + - uid: 24375 + components: + - type: Transform + pos: 24.5,178.5 + parent: 2 + - uid: 24449 + components: + - type: Transform + pos: -38.5,110.5 + parent: 2 + - uid: 25266 + components: + - type: Transform + pos: -118.5,90.5 + parent: 2 + - uid: 25392 + components: + - type: Transform + pos: 104.5,50.5 + parent: 2 + - uid: 25454 + components: + - type: Transform + pos: 10.5,170.5 + parent: 2 + - uid: 25455 + components: + - type: Transform + pos: 11.5,170.5 + parent: 2 + - uid: 25456 + components: + - type: Transform + pos: 12.5,170.5 + parent: 2 + - uid: 25457 + components: + - type: Transform + pos: 13.5,170.5 + parent: 2 + - uid: 25458 + components: + - type: Transform + pos: 14.5,170.5 + parent: 2 + - uid: 25822 + components: + - type: Transform + pos: -13.5,163.5 + parent: 2 + - uid: 26343 + components: + - type: Transform + pos: -115.5,90.5 + parent: 2 + - uid: 26387 + components: + - type: Transform + pos: -37.5,110.5 + parent: 2 + - uid: 26414 + components: + - type: Transform + pos: -39.5,111.5 + parent: 2 + - uid: 26624 + components: + - type: Transform + pos: -25.5,60.5 + parent: 2 + - uid: 26658 + components: + - type: Transform + pos: -26.5,60.5 + parent: 2 + - uid: 26782 + components: + - type: Transform + pos: -116.5,90.5 + parent: 2 + - uid: 26787 + components: + - type: Transform + pos: -117.5,90.5 + parent: 2 + - uid: 27139 + components: + - type: Transform + pos: -117.5,52.5 + parent: 2 + - uid: 27140 + components: + - type: Transform + pos: -116.5,52.5 + parent: 2 + - uid: 27332 + components: + - type: Transform + pos: 69.5,50.5 + parent: 2 + - uid: 27333 + components: + - type: Transform + pos: 68.5,51.5 + parent: 2 + - uid: 27505 + components: + - type: Transform + pos: -75.5,36.5 + parent: 2 + - uid: 27511 + components: + - type: Transform + pos: -75.5,37.5 + parent: 2 + - uid: 27513 + components: + - type: Transform + pos: -75.5,38.5 + parent: 2 + - uid: 27531 + components: + - type: Transform + pos: -75.5,44.5 + parent: 2 + - uid: 27532 + components: + - type: Transform + pos: -75.5,45.5 + parent: 2 + - uid: 27535 + components: + - type: Transform + pos: -75.5,46.5 + parent: 2 + - uid: 27799 + components: + - type: Transform + pos: -87.5,48.5 + parent: 2 + - uid: 27800 + components: + - type: Transform + pos: -86.5,48.5 + parent: 2 + - uid: 27801 + components: + - type: Transform + pos: -85.5,48.5 + parent: 2 + - uid: 27802 + components: + - type: Transform + pos: -84.5,48.5 + parent: 2 + - uid: 27810 + components: + - type: Transform + pos: -93.5,38.5 + parent: 2 + - uid: 27811 + components: + - type: Transform + pos: -92.5,38.5 + parent: 2 + - uid: 27812 + components: + - type: Transform + pos: -91.5,38.5 + parent: 2 + - uid: 27813 + components: + - type: Transform + pos: -90.5,38.5 + parent: 2 + - uid: 27985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + - uid: 28105 + components: + - type: Transform + pos: 73.5,50.5 + parent: 2 + - uid: 28204 + components: + - type: Transform + pos: -115.5,57.5 + parent: 2 + - uid: 28229 + components: + - type: Transform + pos: -83.5,149.5 + parent: 2 + - uid: 28233 + components: + - type: Transform + pos: -114.5,57.5 + parent: 2 + - uid: 28340 + components: + - type: Transform + pos: 69.5,51.5 + parent: 2 + - uid: 28348 + components: + - type: Transform + pos: -102.5,58.5 + parent: 2 + - uid: 28364 + components: + - type: Transform + pos: -90.5,52.5 + parent: 2 + - uid: 28481 + components: + - type: Transform + pos: -90.5,53.5 + parent: 2 + - uid: 28675 + components: + - type: Transform + pos: -104.5,38.5 + parent: 2 + - uid: 28676 + components: + - type: Transform + pos: -103.5,38.5 + parent: 2 + - uid: 28684 + components: + - type: Transform + pos: -100.5,63.5 + parent: 2 + - uid: 28685 + components: + - type: Transform + pos: -101.5,63.5 + parent: 2 + - uid: 28689 + components: + - type: Transform + pos: -129.5,96.5 + parent: 2 + - uid: 28706 + components: + - type: Transform + pos: 74.5,54.5 + parent: 2 + - uid: 28722 + components: + - type: Transform + pos: 74.5,52.5 + parent: 2 + - uid: 28723 + components: + - type: Transform + pos: 73.5,51.5 + parent: 2 + - uid: 28782 + components: + - type: Transform + pos: -138.5,47.5 + parent: 2 + - uid: 28783 + components: + - type: Transform + pos: -129.5,95.5 + parent: 2 + - uid: 28948 + components: + - type: Transform + pos: -112.5,66.5 + parent: 2 + - uid: 28949 + components: + - type: Transform + pos: -113.5,66.5 + parent: 2 + - uid: 28950 + components: + - type: Transform + pos: -114.5,66.5 + parent: 2 + - uid: 28951 + components: + - type: Transform + pos: -115.5,66.5 + parent: 2 + - uid: 28952 + components: + - type: Transform + pos: -112.5,64.5 + parent: 2 + - uid: 28953 + components: + - type: Transform + pos: -113.5,64.5 + parent: 2 + - uid: 28954 + components: + - type: Transform + pos: -114.5,64.5 + parent: 2 + - uid: 28955 + components: + - type: Transform + pos: -115.5,64.5 + parent: 2 + - uid: 29012 + components: + - type: Transform + pos: -113.5,57.5 + parent: 2 + - uid: 29013 + components: + - type: Transform + pos: -113.5,56.5 + parent: 2 + - uid: 29015 + components: + - type: Transform + pos: -113.5,55.5 + parent: 2 + - uid: 29047 + components: + - type: Transform + pos: -123.5,48.5 + parent: 2 + - uid: 29048 + components: + - type: Transform + pos: -122.5,48.5 + parent: 2 + - uid: 29049 + components: + - type: Transform + pos: -123.5,46.5 + parent: 2 + - uid: 29050 + components: + - type: Transform + pos: -122.5,46.5 + parent: 2 + - uid: 29344 + components: + - type: Transform + pos: -138.5,51.5 + parent: 2 + - uid: 29347 + components: + - type: Transform + pos: -138.5,49.5 + parent: 2 + - uid: 29474 + components: + - type: Transform + pos: -67.5,67.5 + parent: 2 + - uid: 30529 + components: + - type: Transform + pos: -15.5,61.5 + parent: 2 + - uid: 30886 + components: + - type: Transform + pos: -24.5,60.5 + parent: 2 + - uid: 31433 + components: + - type: Transform + pos: -34.5,109.5 + parent: 2 + - uid: 32471 + components: + - type: Transform + pos: -30.5,106.5 + parent: 2 + - uid: 33514 + components: + - type: Transform + pos: -72.5,173.5 + parent: 2 + - uid: 33702 + components: + - type: Transform + pos: -69.5,173.5 + parent: 2 + - uid: 33807 + components: + - type: Transform + pos: -28.5,106.5 + parent: 2 + - uid: 33889 + components: + - type: Transform + pos: -46.5,108.5 + parent: 2 + - uid: 34242 + components: + - type: Transform + pos: -52.5,171.5 + parent: 2 + - uid: 34302 + components: + - type: Transform + pos: -129.5,97.5 + parent: 2 + - uid: 34572 + components: + - type: Transform + pos: -43.5,110.5 + parent: 2 + - uid: 34767 + components: + - type: Transform + pos: 0.5,59.5 + parent: 2 + - uid: 34792 + components: + - type: Transform + pos: 1.5,59.5 + parent: 2 + - uid: 34794 + components: + - type: Transform + pos: 2.5,60.5 + parent: 2 + - uid: 34795 + components: + - type: Transform + pos: 2.5,61.5 + parent: 2 + - uid: 34797 + components: + - type: Transform + pos: -4.5,58.5 + parent: 2 + - uid: 34800 + components: + - type: Transform + pos: -3.5,58.5 + parent: 2 + - uid: 34820 + components: + - type: Transform + pos: -25.5,104.5 + parent: 2 + - uid: 34822 + components: + - type: Transform + pos: -45.5,110.5 + parent: 2 + - uid: 35400 + components: + - type: Transform + pos: -107.5,150.5 + parent: 2 + - uid: 35401 + components: + - type: Transform + pos: -106.5,150.5 + parent: 2 + - uid: 35419 + components: + - type: Transform + pos: -105.5,150.5 + parent: 2 + - uid: 35420 + components: + - type: Transform + pos: -104.5,150.5 + parent: 2 + - uid: 35829 + components: + - type: Transform + pos: -27.5,106.5 + parent: 2 + - uid: 35929 + components: + - type: Transform + pos: -5.5,58.5 + parent: 2 + - uid: 36613 + components: + - type: Transform + pos: 73.5,64.5 + parent: 2 + - uid: 36651 + components: + - type: Transform + pos: -31.5,106.5 + parent: 2 + - uid: 36652 + components: + - type: Transform + pos: -32.5,106.5 + parent: 2 + - uid: 36680 + components: + - type: Transform + pos: -18.5,190.5 + parent: 2 + - uid: 36681 + components: + - type: Transform + pos: 1.5,185.5 + parent: 2 + - uid: 36682 + components: + - type: Transform + pos: -20.5,190.5 + parent: 2 + - uid: 36683 + components: + - type: Transform + pos: -19.5,190.5 + parent: 2 + - uid: 36694 + components: + - type: Transform + pos: -4.5,197.5 + parent: 2 + - uid: 36707 + components: + - type: Transform + pos: -14.5,190.5 + parent: 2 + - uid: 36732 + components: + - type: Transform + pos: 69.5,64.5 + parent: 2 + - uid: 36733 + components: + - type: Transform + pos: 1.5,183.5 + parent: 2 + - uid: 36771 + components: + - type: Transform + pos: -92.5,142.5 + parent: 2 + - uid: 36772 + components: + - type: Transform + pos: -91.5,142.5 + parent: 2 + - uid: 36773 + components: + - type: Transform + pos: -90.5,142.5 + parent: 2 + - uid: 36774 + components: + - type: Transform + pos: -89.5,142.5 + parent: 2 + - uid: 36830 + components: + - type: Transform + pos: -7.5,187.5 + parent: 2 + - uid: 36966 + components: + - type: Transform + pos: -8.5,187.5 + parent: 2 + - uid: 37156 + components: + - type: Transform + pos: -44.5,175.5 + parent: 2 + - uid: 37165 + components: + - type: Transform + pos: -34.5,176.5 + parent: 2 + - uid: 37166 + components: + - type: Transform + pos: -34.5,175.5 + parent: 2 + - uid: 37167 + components: + - type: Transform + pos: -35.5,175.5 + parent: 2 + - uid: 37182 + components: + - type: Transform + pos: -47.5,171.5 + parent: 2 + - uid: 37187 + components: + - type: Transform + pos: -46.5,171.5 + parent: 2 + - uid: 37189 + components: + - type: Transform + pos: -45.5,172.5 + parent: 2 + - uid: 37190 + components: + - type: Transform + pos: -45.5,171.5 + parent: 2 + - uid: 37205 + components: + - type: Transform + pos: -43.5,175.5 + parent: 2 + - uid: 37206 + components: + - type: Transform + pos: -42.5,175.5 + parent: 2 + - uid: 37207 + components: + - type: Transform + pos: -44.5,178.5 + parent: 2 + - uid: 37208 + components: + - type: Transform + pos: -43.5,178.5 + parent: 2 + - uid: 37209 + components: + - type: Transform + pos: -42.5,178.5 + parent: 2 + - uid: 37210 + components: + - type: Transform + pos: -40.5,171.5 + parent: 2 + - uid: 37211 + components: + - type: Transform + pos: -39.5,171.5 + parent: 2 + - uid: 37212 + components: + - type: Transform + pos: -38.5,171.5 + parent: 2 + - uid: 37213 + components: + - type: Transform + pos: -37.5,171.5 + parent: 2 + - uid: 37216 + components: + - type: Transform + pos: -4.5,198.5 + parent: 2 + - uid: 37224 + components: + - type: Transform + pos: -50.5,171.5 + parent: 2 + - uid: 37225 + components: + - type: Transform + pos: -51.5,171.5 + parent: 2 + - uid: 37226 + components: + - type: Transform + pos: -51.5,168.5 + parent: 2 + - uid: 37322 + components: + - type: Transform + pos: -50.5,168.5 + parent: 2 + - uid: 37568 + components: + - type: Transform + pos: -8.5,200.5 + parent: 2 + - uid: 37678 + components: + - type: Transform + pos: -7.5,200.5 + parent: 2 + - uid: 37681 + components: + - type: Transform + pos: -6.5,200.5 + parent: 2 + - uid: 37683 + components: + - type: Transform + pos: -6.5,187.5 + parent: 2 + - uid: 37696 + components: + - type: Transform + pos: -90.5,50.5 + parent: 2 + - uid: 37703 + components: + - type: Transform + pos: -88.5,48.5 + parent: 2 + - uid: 38052 + components: + - type: Transform + pos: -16.5,190.5 + parent: 2 + - uid: 38246 + components: + - type: Transform + pos: 1.5,184.5 + parent: 2 + - uid: 38814 + components: + - type: Transform + pos: -86.5,149.5 + parent: 2 + - uid: 38832 + components: + - type: Transform + pos: -92.5,149.5 + parent: 2 + - uid: 39264 + components: + - type: Transform + pos: 81.5,42.5 + parent: 2 + - uid: 39266 + components: + - type: Transform + pos: -91.5,175.5 + parent: 2 + - uid: 39413 + components: + - type: Transform + pos: -10.5,167.5 + parent: 2 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 5721 + components: + - type: Transform + pos: -69.5,133.5 + parent: 2 + - uid: 5913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,127.5 + parent: 2 + - uid: 6148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,128.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + pos: -70.5,132.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 20230 + components: + - type: Transform + pos: -75.31904,182.91359 + parent: 2 + - uid: 32476 + components: + - type: Transform + pos: -75.21423,183.33795 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 17949 + components: + - type: Transform + pos: -90.5,156.5 + parent: 2 +- proto: Retractor + entities: + - uid: 15636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5418983,73.60834 + parent: 2 + - uid: 23203 + components: + - type: Transform + rot: 8.881784197001252E-16 rad + pos: 3.5341187,182.6485 + parent: 2 +- proto: RevolverCapGun + entities: + - uid: 6002 + components: + - type: Transform + pos: 37.48349,63.71048 + parent: 2 + - uid: 42945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.60591,47.147537 + parent: 2 +- proto: RiceBushel + entities: + - uid: 5290 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15615 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26500 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RightArmBorg + entities: + - uid: 38282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.96949,166.53644 + parent: 2 +- proto: RightFootSkeleton + entities: + - uid: 26332 + components: + - type: Transform + pos: -129.75058,82.76152 + parent: 2 +- proto: RightLegArachnid + entities: + - uid: 35973 + components: + - type: Transform + pos: -43.763634,54.1556 + parent: 2 +- proto: RightLegBorg + entities: + - uid: 11270 + components: + - type: Transform + pos: -70.76047,179.90793 + parent: 2 +- proto: RipleyCentralElectronics + entities: + - uid: 3057 + components: + - type: Transform + pos: -21.34799,-9.323975 + parent: 2 +- proto: RipleyChassis + entities: + - uid: 3059 + components: + - type: Transform + pos: -13.543303,0.5368974 + parent: 2 +- proto: RipleyPeripheralsElectronics + entities: + - uid: 518 + components: + - type: Transform + parent: 1816 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RobustHarvestChemistryBottle + entities: + - uid: 11333 + components: + - type: Transform + pos: -8.61179,59.628777 + parent: 2 +- proto: RollerBed + entities: + - uid: 23395 + components: + - type: Transform + pos: -10.37249,205.57013 + parent: 2 +- proto: RollerBedSpawnFolded + entities: + - uid: 34562 + components: + - type: Transform + pos: 0.42192793,-1.5316925 + parent: 30902 +- proto: RubberStampApproved + entities: + - uid: 1154 + components: + - type: Transform + pos: -25.962366,-1.2591503 + parent: 2 + - uid: 4623 + components: + - type: Transform + pos: 69.81573,69.71759 + parent: 2 + - uid: 8012 + components: + - type: Transform + pos: -17.970901,84.4801 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 1155 + components: + - type: Transform + pos: -26.056116,-1.4154003 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: 70.18691,69.54892 + parent: 2 + - uid: 8042 + components: + - type: Transform + pos: -17.970901,84.73872 + parent: 2 + - uid: 28130 + components: + - type: Transform + pos: -83.69974,143.33191 + parent: 2 +- proto: SalvageCanisterSpawner + entities: + - uid: 7412 + components: + - type: Transform + pos: -131.5,22.5 + parent: 2 + - uid: 15705 + components: + - type: Transform + pos: -36.5,53.5 + parent: 2 + - uid: 17617 + components: + - type: Transform + pos: -133.5,30.5 + parent: 2 + - uid: 26384 + components: + - type: Transform + pos: -37.5,198.5 + parent: 2 + - uid: 26829 + components: + - type: Transform + pos: -119.5,92.5 + parent: 2 + - uid: 29209 + components: + - type: Transform + pos: -107.5,49.5 + parent: 2 + - uid: 39508 + components: + - type: Transform + pos: -86.5,151.5 + parent: 2 +- proto: SalvageLootSpawner + entities: + - uid: 29676 + components: + - type: Transform + pos: -119.5,94.5 + parent: 2 + - uid: 37057 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 36996 +- proto: SalvageMagnet + entities: + - uid: 13733 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 24181 + components: + - type: Transform + pos: 19.5,197.5 + parent: 2 +- proto: SalvageMobSpawner + entities: + - uid: 9613 + components: + - type: Transform + pos: -117.5,99.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + pos: -114.5,103.5 + parent: 2 +- proto: Saw + entities: + - uid: 15535 + components: + - type: Transform + pos: -37.56848,57.61797 + parent: 2 +- proto: SawElectric + entities: + - uid: 22744 + components: + - type: Transform + pos: 2.4470596,183.61462 + parent: 2 +- proto: Scalpel + entities: + - uid: 11083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.429418,73.36096 + parent: 2 + - uid: 15520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.36904,57.52794 + parent: 2 + - uid: 17398 + components: + - type: Transform + parent: 17390 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22746 + components: + - type: Transform + rot: 8.881784197001252E-16 rad + pos: 3.5341187,182.32037 + parent: 2 + - uid: 23385 + components: + - type: Transform + pos: -8.590963,210.66316 + parent: 2 +- proto: ScrapPAIGold + entities: + - uid: 8925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.318085,20.440796 + parent: 2 +- proto: Screwdriver + entities: + - uid: 7769 + components: + - type: Transform + pos: -60.340996,129.4942 + parent: 2 + - uid: 8535 + components: + - type: Transform + pos: -111.53426,34.49627 + parent: 2 + - uid: 31682 + components: + - type: Transform + pos: 56.495033,55.363583 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 4487 + components: + - type: Transform + pos: 57.5,62.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 5784 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 16332 + components: + - type: Transform + pos: -79.5,140.5 + parent: 2 + - uid: 25443 + components: + - type: Transform + pos: -2.5,69.5 + parent: 2 +- proto: ShardCrystalPink + entities: + - uid: 290 + components: + - type: Transform + pos: 6.2057686,83.269356 + parent: 2 +- proto: ShardGlass + entities: + - uid: 2770 + components: + - type: Transform + pos: 29.800478,18.673101 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: 26.378603,14.852791 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: 29.378603,15.040291 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: 28.112978,12.180916 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: 32.636414,15.063728 + parent: 2 + - uid: 5949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.30624,197.35341 + parent: 2 + - uid: 12149 + components: + - type: Transform + pos: 23.71788,199.26343 + parent: 2 + - uid: 15832 + components: + - type: Transform + pos: -49.619476,70.265686 + parent: 2 + - uid: 15833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.24829,70.98532 + parent: 2 + - uid: 15834 + components: + - type: Transform + pos: -51.631298,70.726166 + parent: 2 + - uid: 17147 + components: + - type: Transform + pos: 21.436768,201.48734 + parent: 2 + - uid: 17468 + components: + - type: Transform + pos: -120.91832,65.06194 + parent: 2 + - uid: 17508 + components: + - type: Transform + pos: -118.74811,64.402374 + parent: 2 + - uid: 17980 + components: + - type: Transform + pos: -125.31942,98.905045 + parent: 2 + - uid: 18067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.555626,99.399796 + parent: 2 + - uid: 18111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -123.35102,95.36307 + parent: 2 + - uid: 18151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.745766,95.73413 + parent: 2 + - uid: 19246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.412056,151.18748 + parent: 2 + - uid: 19247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.11854,150.64777 + parent: 2 + - uid: 19284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.704506,150.54655 + parent: 2 + - uid: 19684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.53127,147.81192 + parent: 2 + - uid: 19685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.69892,148.18298 + parent: 2 + - uid: 19686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.327736,147.59827 + parent: 2 + - uid: 19687 + components: + - type: Transform + pos: -94.652855,147.56454 + parent: 2 + - uid: 24119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4014225,198.61287 + parent: 2 + - uid: 24120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5803194,199.29878 + parent: 2 + - uid: 24121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.6038866,201.01918 + parent: 2 + - uid: 24122 + components: + - type: Transform + pos: 4.366607,202.42471 + parent: 2 + - uid: 24123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.7276154,199.4562 + parent: 2 + - uid: 28248 + components: + - type: Transform + pos: -84.896355,143.96944 + parent: 2 + - uid: 28249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.526245,142.63135 + parent: 2 + - uid: 28250 + components: + - type: Transform + pos: -86.11114,143.41846 + parent: 2 + - uid: 28251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.00669,141.86673 + parent: 2 + - uid: 28252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.030266,142.60886 + parent: 2 + - uid: 28253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.882965,143.48592 + parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 13342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -143.46736,90.312195 + parent: 2 + - uid: 24147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.309841,201.45242 + parent: 2 + - uid: 29571 + components: + - type: Transform + pos: -112.82814,34.65273 + parent: 2 + - uid: 29572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.488434,35.3307 + parent: 2 +- proto: ShardGlassUranium + entities: + - uid: 17148 + components: + - type: Transform + pos: 24.093018,202.72171 + parent: 2 +- proto: SheetGlass + entities: + - uid: 2820 + components: + - type: Transform + pos: -100.92729,48.205933 + parent: 2 + - uid: 2824 + components: + - type: Transform + pos: -100.359406,48.694424 + parent: 2 + - uid: 8949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.49889,177.14505 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 9033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.56445,180.57016 + parent: 2 +- proto: SheetPlasma1 + entities: + - uid: 2961 + components: + - type: Transform + pos: 32.88313,15.717176 + parent: 2 + - uid: 17640 + components: + - type: Transform + parent: 34638 + - type: Stack + count: 3 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23363 + components: + - type: Transform + pos: -17.523806,192.45837 + parent: 2 + - uid: 23420 + components: + - type: Transform + pos: -17.46001,192.72333 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 8728 + components: + - type: Transform + pos: -102.42247,47.6941 + parent: 2 + - uid: 43369 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasteel10 + entities: + - uid: 28494 + components: + - type: Transform + pos: 116.556946,49.349663 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 8930 + components: + - type: Transform + pos: -101.548004,48.535995 + parent: 2 + - uid: 8931 + components: + - type: Transform + pos: -100.61034,49.301735 + parent: 2 +- proto: SheetPlastic10 + entities: + - uid: 9034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.35011,181.90802 + parent: 2 + - uid: 30896 + components: + - type: Transform + pos: -114.40638,93.405464 + parent: 2 +- proto: SheetSteel + entities: + - uid: 2795 + components: + - type: Transform + pos: -100.91409,47.58542 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: -100.359406,48.060707 + parent: 2 + - uid: 9036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.64276,167.66763 + parent: 2 + - uid: 43366 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetSteel10 + entities: + - uid: 2479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.445499,79.45635 + parent: 2 + - uid: 12487 + components: + - type: Transform + pos: 116.52092,49.5034 + parent: 2 + - type: Stack + count: 20 +- proto: ShellShotgunBeanbag + entities: + - uid: 37933 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 37937 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 37957 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38026 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38027 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38028 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38029 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38030 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShipBattlemap + entities: + - uid: 25684 + components: + - type: Transform + pos: -32.49058,4.594513 + parent: 2 +- proto: Shiv + entities: + - uid: 5331 + components: + - type: Transform + parent: 4151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Shovel + entities: + - uid: 1105 + components: + - type: Transform + pos: -46.254536,-2.480135 + parent: 2 + - uid: 25265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.67612,86.814896 + parent: 2 + - uid: 26205 + components: + - type: Transform + pos: -33.515373,191.54562 + parent: 2 +- proto: ShowcaseRobot + entities: + - uid: 4641 + components: + - type: Transform + pos: 66.5,65.5 + parent: 2 +- proto: ShuttersNormalOpen + entities: + - uid: 16492 + components: + - type: Transform + pos: -25.5,64.5 + parent: 2 + - uid: 16494 + components: + - type: Transform + pos: -31.5,64.5 + parent: 2 + - uid: 16496 + components: + - type: Transform + pos: -24.5,64.5 + parent: 2 + - uid: 22725 + components: + - type: Transform + pos: -27.5,64.5 + parent: 2 + - uid: 22952 + components: + - type: Transform + pos: -26.5,64.5 + parent: 2 + - uid: 23036 + components: + - type: Transform + pos: -28.5,64.5 + parent: 2 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 25334 + components: + - type: Transform + pos: -125.495964,95.51763 + parent: 2 +- proto: ShuttleGunPerforator + entities: + - uid: 5749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 13386 +- proto: ShuttleWindow + entities: + - uid: 13642 + components: + - type: Transform + pos: 2.5,3.5 + parent: 13386 + - uid: 13723 + components: + - type: Transform + pos: 1.5,4.5 + parent: 13386 + - uid: 13725 + components: + - type: Transform + pos: 0.5,4.5 + parent: 13386 + - uid: 13729 + components: + - type: Transform + pos: -0.5,4.5 + parent: 13386 + - uid: 13731 + components: + - type: Transform + pos: -0.5,5.5 + parent: 13386 + - uid: 14044 + components: + - type: Transform + pos: -0.5,6.5 + parent: 13386 + - uid: 14152 + components: + - type: Transform + pos: -1.5,6.5 + parent: 13386 + - uid: 14155 + components: + - type: Transform + pos: -2.5,6.5 + parent: 13386 + - uid: 14311 + components: + - type: Transform + pos: -2.5,5.5 + parent: 13386 + - uid: 14399 + components: + - type: Transform + pos: -2.5,4.5 + parent: 13386 + - uid: 14563 + components: + - type: Transform + pos: -2.5,3.5 + parent: 13386 + - uid: 14780 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 13386 + - uid: 15223 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 13386 + - uid: 15804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 13386 + - uid: 22079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 21114 + - uid: 22080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 21114 + - uid: 22081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 21114 + - uid: 22082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 21114 + - uid: 31001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 30902 + - uid: 31002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 30902 + - uid: 31003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 30902 + - uid: 31004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 30902 + - uid: 31005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 30902 + - uid: 31006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 30902 + - uid: 31007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 30902 + - uid: 31008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 30902 + - uid: 31009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 30902 + - uid: 37008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 36996 + - uid: 37009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 36996 + - uid: 37010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 36996 + - uid: 37026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 36996 + - uid: 37033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 36996 + - uid: 37593 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 36996 + - uid: 37935 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 37842 + - uid: 37967 + components: + - type: Transform + pos: -0.5,2.5 + parent: 37842 + - uid: 37968 + components: + - type: Transform + pos: 1.5,2.5 + parent: 37842 + - uid: 37969 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 37842 + - uid: 37970 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 37842 + - uid: 37971 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 37842 + - uid: 37972 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 37842 + - uid: 37973 + components: + - type: Transform + pos: 0.5,2.5 + parent: 37842 + - uid: 37990 + components: + - type: Transform + pos: -1.5,2.5 + parent: 37842 + - uid: 37992 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 37842 + - uid: 37999 + components: + - type: Transform + pos: 2.5,1.5 + parent: 37842 + - uid: 38007 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 37842 + - uid: 38008 + components: + - type: Transform + pos: -1.5,1.5 + parent: 37842 + - uid: 38009 + components: + - type: Transform + pos: 2.5,2.5 + parent: 37842 +- proto: ShuttleWindowDiagonal + entities: + - uid: 28317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 30902 + - uid: 28319 + components: + - type: Transform + pos: -0.5,5.5 + parent: 30902 +- proto: SignAi + entities: + - uid: 7844 + components: + - type: Transform + pos: -58.5,150.5 + parent: 2 + - uid: 7863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,125.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,136.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 7843 + components: + - type: Transform + pos: -60.5,150.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,62.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 195: + - Pressed: Toggle + 198: + - Pressed: Toggle + 625: + - Pressed: Toggle + - uid: 452 + components: + - type: Transform + pos: 66.5,63.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3916: + - Pressed: Toggle + - uid: 1049 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: -94.73944,171.50468 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4962: + - Pressed: Toggle + 4698: + - Pressed: Toggle + 4629: + - Pressed: Toggle + - uid: 1924 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 64: + - Pressed: Toggle + 68: + - Pressed: Toggle + 26: + - Pressed: Toggle + 920: + - Pressed: Toggle + - uid: 4115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,54.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28827: + - Pressed: Toggle + 28918: + - Pressed: Toggle + 38358: + - Pressed: Toggle + 38360: + - Pressed: Toggle + 38361: + - Pressed: Toggle + 38362: + - Pressed: Toggle + 26313: + - Pressed: Toggle + - uid: 4897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,51.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4879: + - Pressed: Toggle + 4878: + - Pressed: Toggle + 4877: + - Pressed: Toggle + - uid: 10633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,83.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10411: + - Pressed: Toggle + 10413: + - Pressed: Toggle + 10412: + - Pressed: Toggle + - uid: 12042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4240: + - Pressed: Toggle + - uid: 16968 + components: + - type: Transform + pos: -1.5009613,5.678486 + parent: 13386 + - type: DeviceLinkSource + linkedPorts: + 5749: + - Pressed: Trigger + - uid: 22888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,61.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16494: + - Pressed: Toggle + 23036: + - Pressed: Toggle + 22725: + - Pressed: Toggle + 22952: + - Pressed: Toggle + 16492: + - Pressed: Toggle + 16496: + - Pressed: Toggle + - uid: 26586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,149.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21273: + - Pressed: Toggle + 32470: + - Pressed: Toggle + - uid: 27198 + components: + - type: Transform + pos: -94.25616,171.50409 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1203: + - Pressed: Toggle + - uid: 28304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,51.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4882: + - Pressed: Toggle + 4881: + - Pressed: Toggle + 4880: + - Pressed: Toggle + - uid: 28311 + components: + - type: Transform + pos: 98.5,55.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4883: + - Pressed: Toggle + 4884: + - Pressed: Toggle + 4885: + - Pressed: Toggle + - uid: 28527 + components: + - type: Transform + pos: 92.5,55.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4886: + - Pressed: Toggle + 4887: + - Pressed: Toggle + 4888: + - Pressed: Toggle + - uid: 29457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29455: + - Pressed: Toggle + - uid: 31010 + components: + - type: Transform + pos: 0.5,4.5 + parent: 30902 + - type: DeviceLinkSource + linkedPorts: + 30997: + - Pressed: Toggle + 30986: + - Pressed: Toggle + 30985: + - Pressed: Toggle + 30998: + - Pressed: Toggle + - uid: 37974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.649444,1.2243648 + parent: 37842 + - type: DeviceLinkSource + linkedPorts: + 38019: + - Pressed: Toggle + - Pressed: AutoClose + - uid: 37975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.49717999,1.4584147 + parent: 37842 + - type: DeviceLinkSource + linkedPorts: + 37963: + - Pressed: Toggle + 37964: + - Pressed: Toggle + - uid: 37976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.34616482,1.2243648 + parent: 37842 + - type: DeviceLinkSource + linkedPorts: + 38020: + - Pressed: Toggle + - Pressed: AutoClose + - uid: 38301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,159.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 38297: + - Pressed: Toggle + 38296: + - Pressed: Toggle + 38294: + - Pressed: Toggle + 38295: + - Pressed: Toggle + 38293: + - Pressed: Toggle + 38292: + - Pressed: Toggle + 38298: + - Pressed: Toggle + 38299: + - Pressed: Toggle + 38300: + - Pressed: Toggle + - uid: 38303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,80.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 38302: + - Pressed: Toggle + 36845: + - Pressed: Toggle + 4370: + - Pressed: Toggle + 1740: + - Pressed: Toggle + - uid: 38323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 38322: + - Pressed: Toggle + 38321: + - Pressed: Toggle + 38320: + - Pressed: Toggle + 38319: + - Pressed: Toggle + 38318: + - Pressed: Toggle + 38317: + - Pressed: Toggle + 38316: + - Pressed: Toggle + 38315: + - Pressed: Toggle + 38314: + - Pressed: Toggle + 38313: + - Pressed: Toggle + 38312: + - Pressed: Toggle + 38311: + - Pressed: Toggle + 38310: + - Pressed: Toggle + 38325: + - Pressed: Toggle + 38371: + - Pressed: Toggle + 38326: + - Pressed: Toggle + - uid: 38344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,69.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 38328: + - Pressed: Toggle + 38327: + - Pressed: Toggle + 38329: + - Pressed: Toggle + 38330: + - Pressed: Toggle + 38331: + - Pressed: Toggle + 38332: + - Pressed: Toggle + 38333: + - Pressed: Toggle + 38334: + - Pressed: Toggle + 38336: + - Pressed: Toggle + 38337: + - Pressed: Toggle + 38338: + - Pressed: Toggle + 38339: + - Pressed: Toggle + 38340: + - Pressed: Toggle + 38341: + - Pressed: Toggle + 38342: + - Pressed: Toggle + 38343: + - Pressed: Toggle + - uid: 38346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,67.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 38345: + - Pressed: Toggle + 38347: + - Pressed: Toggle + 38348: + - Pressed: Toggle + 38349: + - Pressed: Toggle + 38350: + - Pressed: Toggle + 38351: + - Pressed: Toggle + 38352: + - Pressed: Toggle + 38353: + - Pressed: Toggle + 38354: + - Pressed: Toggle + 38355: + - Pressed: Toggle + 38356: + - Pressed: Toggle + 38357: + - Pressed: Toggle + - uid: 38376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,206.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 38372: + - Pressed: Toggle + 38373: + - Pressed: Toggle + 38374: + - Pressed: Toggle + 38375: + - Pressed: Toggle +- proto: SignalButtonBridge + entities: + - uid: 18365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,107.5 + parent: 2 +- proto: SignalButtonDirectional + entities: + - uid: 6532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,177.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7828: + - Pressed: Toggle +- proto: SignAnomaly + entities: + - uid: 20074 + components: + - type: Transform + pos: -84.5,169.5 + parent: 2 + - uid: 20075 + components: + - type: Transform + pos: -84.5,173.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 20070 + components: + - type: Transform + pos: -81.5,176.5 + parent: 2 + - uid: 20071 + components: + - type: Transform + pos: -77.5,176.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 4814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,60.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 1625 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - uid: 19092 + components: + - type: Transform + pos: -101.5,37.5 + parent: 2 + - uid: 25570 + components: + - type: Transform + pos: 11.5,173.5 + parent: 2 + - uid: 28343 + components: + - type: Transform + pos: 13.5,173.5 + parent: 2 + - uid: 32314 + components: + - type: Transform + pos: -71.5,149.5 + parent: 2 + - uid: 32315 + components: + - type: Transform + pos: -59.5,11.5 + parent: 2 + - uid: 32320 + components: + - type: Transform + pos: -58.5,9.5 + parent: 2 + - uid: 32375 + components: + - type: Transform + pos: 87.5,25.5 + parent: 2 + - uid: 32376 + components: + - type: Transform + pos: 89.5,25.5 + parent: 2 +- proto: SignBar + entities: + - uid: 1894 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 31450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,72.5 + parent: 2 + - uid: 38251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,59.5 + parent: 2 +- proto: SignBath + entities: + - uid: 9038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,96.5 + parent: 2 +- proto: SignBio + entities: + - uid: 31452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,156.5 + parent: 2 +- proto: SignBiohazardMed + entities: + - uid: 19251 + components: + - type: Transform + pos: -81.5,153.5 + parent: 2 + - uid: 23252 + components: + - type: Transform + pos: 3.5,190.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 14391 + components: + - type: Transform + pos: -82.5,100.5 + parent: 2 + - uid: 31493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,102.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 1620 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 +- proto: SignCargoDock + entities: + - uid: 923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 31472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + - uid: 31473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,5.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 12126 + components: + - type: Transform + pos: -62.5,72.5 + parent: 2 + - uid: 12127 + components: + - type: Transform + pos: -56.5,72.5 + parent: 2 +- proto: SignChem + entities: + - uid: 13734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,191.5 + parent: 2 + - uid: 22826 + components: + - type: Transform + pos: -24.5,189.5 + parent: 2 + - uid: 23001 + components: + - type: Transform + pos: -22.5,189.5 + parent: 2 +- proto: SignCloning + entities: + - uid: 23459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,198.5 + parent: 2 +- proto: SignConference + entities: + - uid: 37711 + components: + - type: Transform + pos: -34.5,103.5 + parent: 2 +- proto: SignCryogenicsMed + entities: + - uid: 23482 + components: + - type: Transform + pos: -22.5,202.5 + parent: 2 +- proto: SignDirectionalBar + entities: + - uid: 25826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,59.5 + parent: 2 + - uid: 31440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.482185,92.457794 + parent: 2 + - uid: 31441 + components: + - type: Transform + pos: -21.475113,88.485565 + parent: 2 + - uid: 31442 + components: + - type: Transform + pos: -21.490673,78.852264 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 13634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.544315,92.34421 + parent: 2 + - uid: 38468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,102.5 + parent: 2 +- proto: SignDirectionalBrig + entities: + - uid: 4038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,46.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,74.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: -34.5,80.5 + parent: 2 + - uid: 12744 + components: + - type: Transform + pos: 43.5,67.5 + parent: 2 + - uid: 27952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 + - uid: 27965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + - uid: 39462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 113.5,40.5 + parent: 2 + - uid: 39463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 104.5,40.5 + parent: 2 + - uid: 39464 + components: + - type: Transform + pos: 104.5,66.5 + parent: 2 + - uid: 39465 + components: + - type: Transform + pos: 112.5,66.5 + parent: 2 + - uid: 39466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 119.5,57.5 + parent: 2 + - uid: 39467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 119.5,49.5 + parent: 2 +- proto: SignDirectionalChapel + entities: + - uid: 39470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,92.5 + parent: 2 + - uid: 39472 + components: + - type: Transform + pos: -59.5,88.5 + parent: 2 +- proto: SignDirectionalCryo + entities: + - uid: 3504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,105.5 + parent: 2 + - uid: 31491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,200.5 + parent: 2 +- proto: SignDirectionalDorms + entities: + - uid: 31468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.546516,92.56604 + parent: 2 + - uid: 31469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5081,92.67451 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 3506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,33.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,74.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: -46.5,80.5 + parent: 2 + - uid: 38424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,41.5 + parent: 2 + - uid: 38444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,49.5 + parent: 2 + - uid: 38446 + components: + - type: Transform + pos: -81.5,52.5 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 3704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,50.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,50.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 113.5,50.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,41.5 + parent: 2 + - uid: 17669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.50172,80.26968 + parent: 2 + - uid: 31532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.50273,74.7162 + parent: 2 + - uid: 31533 + components: + - type: Transform + pos: -34.504406,88.29006 + parent: 2 + - uid: 31534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.53082,37.690735 + parent: 2 + - uid: 31535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.54093,37.734978 + parent: 2 +- proto: SignDirectionalFood + entities: + - uid: 31465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.49287,92.684166 + parent: 2 + - uid: 31466 + components: + - type: Transform + pos: -21.494486,87.82267 + parent: 2 + - uid: 31467 + components: + - type: Transform + pos: -21.494541,78.39329 + parent: 2 + - uid: 38253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,59.5 + parent: 2 +- proto: SignDirectionalHop + entities: + - uid: 31438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.481594,92.687164 + parent: 2 + - uid: 31439 + components: + - type: Transform + pos: -21.465631,88.71186 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 31445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.48117,92.2387 + parent: 2 + - uid: 31446 + components: + - type: Transform + pos: -21.47358,88.268745 + parent: 2 + - uid: 31447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.496876,78.628624 + parent: 2 +- proto: SignDirectionalJanitor + entities: + - uid: 10751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,82.5 + parent: 2 + - uid: 31526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.494884,92.46461 + parent: 2 + - uid: 31527 + components: + - type: Transform + pos: -21.488787,87.61441 + parent: 2 + - uid: 31528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.482487,79.168465 + parent: 2 + - uid: 31529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.488787,76.30786 + parent: 2 +- proto: SignDirectionalLibrary + entities: + - uid: 31443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.548126,92.79969 + parent: 2 + - uid: 31444 + components: + - type: Transform + pos: -59.516987,88.74401 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 4873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,160.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + pos: -34.5,88.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,82.5 + parent: 2 + - uid: 37220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,170.5 + parent: 2 + - uid: 38462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,161.5 + parent: 2 + - uid: 38463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,167.5 + parent: 2 + - uid: 38464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,165.5 + parent: 2 + - uid: 38466 + components: + - type: Transform + pos: -28.5,212.5 + parent: 2 +- proto: SignDirectionalSalvage + entities: + - uid: 1547 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 38476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-15.5 + parent: 2 + - uid: 39174 + components: + - type: Transform + pos: -36.50723,1.2728882 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 7182 + components: + - type: Transform + pos: -46.5,88.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,82.5 + parent: 2 + - uid: 18635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,160.5 + parent: 2 + - uid: 37145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,179.5 + parent: 2 + - uid: 38477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,160.5 + parent: 2 + - uid: 38481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,151.5 + parent: 2 + - uid: 38483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,157.5 + parent: 2 +- proto: SignDirectionalSolar + entities: + - uid: 4336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,204.5 + parent: 2 + - uid: 4386 + components: + - type: Transform + pos: 82.5,37.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,32.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,149.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,184.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,1.5 + parent: 2 + - uid: 18049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,175.5 + parent: 2 + - uid: 31509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,150.5 + parent: 2 + - uid: 31510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,145.5 + parent: 2 + - uid: 31511 + components: + - type: Transform + pos: -98.5,166.5 + parent: 2 + - uid: 31512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-1.5 + parent: 2 + - uid: 34864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,212.5 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 683 + components: + - type: Transform + pos: 57.5,35.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 59.5,35.5 + parent: 2 + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-2.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-6.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-10.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + pos: -43.5,70.5 + parent: 2 + - uid: 11456 + components: + - type: Transform + pos: -37.5,70.5 + parent: 2 + - uid: 36558 + components: + - type: Transform + pos: -46.50833,88.72705 + parent: 2 + - uid: 36559 + components: + - type: Transform + pos: -46.485836,82.28139 + parent: 2 + - uid: 36560 + components: + - type: Transform + pos: -46.485836,74.27142 + parent: 2 + - uid: 36561 + components: + - type: Transform + pos: -34.471264,74.29211 + parent: 2 + - uid: 36562 + components: + - type: Transform + pos: -34.508755,82.28164 + parent: 2 + - uid: 36563 + components: + - type: Transform + pos: -34.50126,88.71904 + parent: 2 + - uid: 38465 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 38470 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 38471 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 38473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 2 +- proto: SignDisposalSpace + entities: + - uid: 17816 + components: + - type: Transform + pos: -108.5,97.5 + parent: 2 + - uid: 17825 + components: + - type: Transform + pos: -105.5,97.5 + parent: 2 + - uid: 17966 + components: + - type: Transform + pos: -111.5,64.5 + parent: 2 + - uid: 31503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,44.5 + parent: 2 + - uid: 31504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-16.5 + parent: 2 + - uid: 31505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,170.5 + parent: 2 + - uid: 31506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,177.5 + parent: 2 +- proto: SignDoors + entities: + - uid: 1229 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 29320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,16.5 + parent: 2 + - uid: 43413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,16.5 + parent: 2 +- proto: SignEngine + entities: + - uid: 31463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,24.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 1540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-7.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 5434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,25.5 + parent: 2 + - uid: 8866 + components: + - type: Transform + pos: 51.5,31.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 6547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 2 + - uid: 10538 + components: + - type: Transform + pos: -13.5,76.5 + parent: 2 + - uid: 10539 + components: + - type: Transform + pos: -9.5,76.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + pos: 75.5,37.5 + parent: 2 + - uid: 21413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,162.5 + parent: 2 + - uid: 37536 + components: + - type: Transform + pos: 0.5,168.5 + parent: 2 +- proto: SignFire + entities: + - uid: 14366 + components: + - type: Transform + pos: -71.5,105.5 + parent: 2 + - uid: 30074 + components: + - type: Transform + pos: -114.5,24.5 + parent: 2 +- proto: SignFlammable + entities: + - uid: 31542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,45.5 + parent: 2 + - uid: 31543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,61.5 + parent: 2 + - uid: 31544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,36.5 + parent: 2 + - uid: 31545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -114.5,29.5 + parent: 2 +- proto: SignFlammableMed + entities: + - uid: 18974 + components: + - type: Transform + pos: -71.5,150.5 + parent: 2 +- proto: SignHead + entities: + - uid: 2968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: 78.5,67.5 + parent: 2 + - uid: 23332 + components: + - type: Transform + pos: -12.5,203.5 + parent: 2 + - uid: 31457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,80.5 + parent: 2 + - uid: 31458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,96.5 + parent: 2 + - uid: 31459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,52.5 + parent: 2 + - uid: 31460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,160.5 + parent: 2 + - uid: 31461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,161.5 + parent: 2 +- proto: SignHydro1 + entities: + - uid: 13263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,70.5 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 12904 + components: + - type: Transform + pos: 64.5,47.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 31451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,84.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 22696 + components: + - type: Transform + pos: -10.5,184.5 + parent: 2 + - uid: 22697 + components: + - type: Transform + pos: -13.5,184.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 14367 + components: + - type: Transform + pos: -75.5,97.5 + parent: 2 + - uid: 23387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,206.5 + parent: 2 + - uid: 23388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,206.5 + parent: 2 +- proto: SignNews + entities: + - uid: 9165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,83.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 1542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-5.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 38108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 37842 +- proto: SignRadiationMed + entities: + - uid: 29685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,32.5 + parent: 2 + - uid: 31507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,23.5 + parent: 2 +- proto: SignRedOne + entities: + - uid: 22778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,190.5 + parent: 2 +- proto: SignRedTwo + entities: + - uid: 22779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,190.5 + parent: 2 +- proto: SignRND + entities: + - uid: 20586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,161.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 20072 + components: + - type: Transform + pos: -74.5,173.5 + parent: 2 + - uid: 20073 + components: + - type: Transform + pos: -74.5,169.5 + parent: 2 +- proto: SignSecurearea + entities: + - uid: 4389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,59.5 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: 79.5,68.5 + parent: 2 + - uid: 22620 + components: + - type: Transform + pos: -6.5,176.5 + parent: 2 + - uid: 22626 + components: + - type: Transform + pos: -6.5,182.5 + parent: 2 +- proto: SignSecureMed + entities: + - uid: 28230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,149.5 + parent: 2 + - uid: 28231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,149.5 + parent: 2 +- proto: SignSecureMedRed + entities: + - uid: 17764 + components: + - type: Transform + pos: -74.5,156.5 + parent: 2 +- proto: SignSecureSmallRed + entities: + - uid: 31536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,52.5 + parent: 2 + - uid: 31537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,36.5 + parent: 2 + - uid: 31538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,175.5 + parent: 2 + - uid: 31539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-2.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-13.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,43.5 + parent: 2 + - uid: 11471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,210.5 + parent: 2 + - uid: 27366 + components: + - type: Transform + pos: -17.5,163.5 + parent: 2 + - uid: 31500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,49.5 + parent: 2 + - uid: 31513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 2 + - uid: 31514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,59.5 + parent: 2 + - uid: 31515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,63.5 + parent: 2 + - uid: 31517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,207.5 + parent: 2 + - uid: 31518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,153.5 + parent: 2 + - uid: 31519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -98.5,163.5 + parent: 2 + - uid: 31520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,99.5 + parent: 2 + - uid: 31523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,35.5 + parent: 2 +- proto: SignShock + entities: + - uid: 1186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -130.5,41.5 + parent: 2 + - uid: 14083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -130.5,37.5 + parent: 2 + - uid: 14393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-2.5 + parent: 2 + - uid: 14503 + components: + - type: Transform + pos: -121.5,46.5 + parent: 2 + - uid: 31455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,149.5 + parent: 2 + - uid: 31456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,145.5 + parent: 2 + - uid: 34862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,212.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 7152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,40.5 + parent: 2 + - uid: 13195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,70.5 + parent: 2 + - uid: 14365 + components: + - type: Transform + pos: -78.5,101.5 + parent: 2 + - uid: 34648 + components: + - type: Transform + pos: -126.5,101.5 + parent: 2 + - uid: 35819 + components: + - type: Transform + pos: -21.5,170.5 + parent: 2 +- proto: SignSomethingOld + entities: + - uid: 24055 + components: + - type: Transform + pos: -127.5,107.5 + parent: 2 + - uid: 37946 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 37842 +- proto: SignSomethingOld2 + entities: + - uid: 23997 + components: + - type: Transform + pos: -133.5,110.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 1139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-13.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,44.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,37.5 + parent: 2 + - uid: 11137 + components: + - type: Transform + pos: -22.5,61.5 + parent: 2 + - uid: 13626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,167.5 + parent: 2 + - uid: 14856 + components: + - type: Transform + pos: -81.5,94.5 + parent: 2 + - uid: 15880 + components: + - type: Transform + pos: -49.5,59.5 + parent: 2 + - uid: 17769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,154.5 + parent: 2 + - uid: 17799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,166.5 + parent: 2 + - uid: 21203 + components: + - type: Transform + pos: -65.5,174.5 + parent: 2 + - uid: 31475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,101.5 + parent: 2 + - uid: 31479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,34.5 + parent: 2 + - uid: 31480 + components: + - type: Transform + pos: -110.5,27.5 + parent: 2 + - uid: 31481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,36.5 + parent: 2 + - uid: 31482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,1.5 + parent: 2 + - uid: 31483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-3.5 + parent: 2 + - uid: 31484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-2.5 + parent: 2 + - uid: 31485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-14.5 + parent: 2 + - uid: 31486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-10.5 + parent: 2 + - uid: 31487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 2 + - uid: 31490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,62.5 + parent: 2 + - uid: 31497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,147.5 + parent: 2 + - uid: 31501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,190.5 + parent: 2 + - uid: 31502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,204.5 + parent: 2 + - uid: 34863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,217.5 + parent: 2 + - uid: 37221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,168.5 + parent: 2 +- proto: SignSurgery + entities: + - uid: 1316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,187.5 + parent: 2 +- proto: SignTheater + entities: + - uid: 9000 + components: + - type: Transform + pos: -32.5,65.5 + parent: 2 +- proto: SignToolStorage + entities: + - uid: 23427 + components: + - type: Transform + pos: -2.5,202.5 + parent: 2 + - uid: 23428 + components: + - type: Transform + pos: -2.5,205.5 + parent: 2 + - uid: 31508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,44.5 + parent: 2 + - uid: 34632 + components: + - type: Transform + pos: -115.5,97.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 23253 + components: + - type: Transform + pos: 3.5,193.5 + parent: 2 +- proto: SilverOre1 + entities: + - uid: 1486 + components: + - type: Transform + pos: -57.501976,-12.509216 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: -43.368702,3.3432157 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: -42.288895,3.5456145 + parent: 2 + - uid: 12928 + components: + - type: Transform + pos: -48.385197,94.56774 + parent: 2 +- proto: SingularityGenerator + entities: + - uid: 9164 + components: + - type: Transform + pos: -144.5,26.5 + parent: 2 +- proto: Sink + entities: + - uid: 8525 + components: + - type: Transform + pos: 56.5,26.5 + parent: 2 + - uid: 38053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,38.5 + parent: 2 + - uid: 39422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,169.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 10771 + components: + - type: Transform + pos: -0.5,82.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,65.5 + parent: 2 + - uid: 11759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,60.5 + parent: 2 + - uid: 15555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,57.5 + parent: 2 + - uid: 17807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,67.5 + parent: 2 + - uid: 22844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,184.5 + parent: 2 + - uid: 23037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,67.5 + parent: 2 + - uid: 23249 + components: + - type: Transform + pos: 5.5,193.5 + parent: 2 + - uid: 31561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,61.5 + parent: 2 + - uid: 34141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,61.5 + parent: 2 + - uid: 35794 + components: + - type: Transform + pos: -1.5,63.5 + parent: 2 + - uid: 35946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,64.5 + parent: 2 + - uid: 36487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,193.5 + parent: 2 + - uid: 39271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,110.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 15547 + components: + - type: Transform + pos: -37.5,60.5 + parent: 2 + - uid: 22724 + components: + - type: Transform + pos: 5.5,186.5 + parent: 2 + - uid: 22770 + components: + - type: Transform + pos: -17.5,194.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 5783 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + pos: -67.5,-4.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: 66.5,20.5 + parent: 2 + - uid: 10082 + components: + - type: Transform + pos: -128.5,53.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + pos: -126.5,54.5 + parent: 2 + - uid: 12651 + components: + - type: Transform + pos: 66.5,21.5 + parent: 2 + - uid: 14927 + components: + - type: Transform + pos: -47.5,66.5 + parent: 2 + - uid: 14968 + components: + - type: Transform + pos: -46.5,66.5 + parent: 2 + - uid: 15063 + components: + - type: Transform + pos: -48.5,105.5 + parent: 2 + - uid: 28429 + components: + - type: Transform + pos: -125.5,59.5 + parent: 2 + - uid: 33314 + components: + - type: Transform + pos: -1.5,215.5 + parent: 2 + - uid: 33315 + components: + - type: Transform + pos: -0.5,215.5 + parent: 2 + - uid: 35388 + components: + - type: Transform + pos: -105.5,147.5 + parent: 2 + - uid: 35389 + components: + - type: Transform + pos: -105.5,149.5 + parent: 2 + - uid: 37552 + components: + - type: Transform + pos: -126.5,53.5 + parent: 2 + - uid: 43268 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 37842 +- proto: SMESMachineCircuitboard + entities: + - uid: 17762 + components: + - type: Transform + pos: -107.44263,34.793495 + parent: 2 +- proto: SmokingPipeFilledCannabis + entities: + - uid: 7434 + components: + - type: Transform + pos: 51.670654,42.548653 + parent: 2 +- proto: SmokingPipeFilledTobacco + entities: + - uid: 10702 + components: + - type: Transform + pos: -5.6069064,86.39575 + parent: 2 +- proto: Soap + entities: + - uid: 38382 + components: + - type: Transform + parent: 38381 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SodaDispenser + entities: + - uid: 11109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,61.5 + parent: 2 +- proto: SolarPanel + entities: + - uid: 607 + components: + - type: Transform + pos: 4.5,227.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: 3.5,227.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: 5.5,225.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 6.5,225.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: 6.5,227.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: 4.5,233.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: 5.5,229.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: 6.5,231.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: 6.5,233.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: 6.5,223.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: 4.5,223.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: -4.5,225.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: -3.5,225.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: -1.5,229.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: -3.5,229.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: -4.5,229.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: -4.5,227.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: -5.5,227.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: -77.5,-4.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: -79.5,-12.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: -75.5,-10.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: -81.5,-10.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: -81.5,-11.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: -77.5,-12.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: -79.5,-6.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -75.5,-5.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -77.5,-11.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -79.5,-10.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: -77.5,-5.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: -1.5,223.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: -2.5,231.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: -3.5,231.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: -81.5,-12.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: -81.5,-4.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: -1.5,231.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: -4.5,231.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: -2.5,223.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: -5.5,231.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: -2.5,229.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: -3.5,223.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: -5.5,223.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: -5.5,225.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 2.5,231.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 3.5,231.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: 6.5,229.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: -5.5,233.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: -5.5,229.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: -4.5,233.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: -1.5,233.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: -3.5,233.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: -2.5,233.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: 5.5,231.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + pos: 4.5,231.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: 3.5,225.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: 2.5,225.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + pos: 5.5,233.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: 66.5,9.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: 76.5,9.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + pos: 72.5,7.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + pos: 74.5,7.5 + parent: 2 + - uid: 5419 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 5426 + components: + - type: Transform + pos: 74.5,9.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: 75.5,7.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + pos: 76.5,7.5 + parent: 2 + - uid: 5578 + components: + - type: Transform + pos: 72.5,9.5 + parent: 2 + - uid: 5580 + components: + - type: Transform + pos: 76.5,13.5 + parent: 2 + - uid: 5582 + components: + - type: Transform + pos: 75.5,11.5 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: 65.5,7.5 + parent: 2 + - uid: 5714 + components: + - type: Transform + pos: 67.5,7.5 + parent: 2 + - uid: 6295 + components: + - type: Transform + pos: 73.5,9.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: 75.5,13.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: 76.5,11.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: 72.5,11.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: 74.5,11.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + pos: 74.5,13.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + pos: 67.5,13.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: 66.5,11.5 + parent: 2 + - uid: 6495 + components: + - type: Transform + pos: 72.5,13.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + pos: 73.5,13.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + pos: 68.5,13.5 + parent: 2 + - uid: 6634 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 6635 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + pos: 64.5,7.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + pos: 68.5,7.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: 68.5,9.5 + parent: 2 + - uid: 17785 + components: + - type: Transform + pos: 5.5,227.5 + parent: 2 + - uid: 17824 + components: + - type: Transform + pos: -122.5,142.5 + parent: 2 + - uid: 17953 + components: + - type: Transform + pos: 3.5,223.5 + parent: 2 + - uid: 17989 + components: + - type: Transform + pos: -126.5,151.5 + parent: 2 + - uid: 17992 + components: + - type: Transform + pos: 2.5,223.5 + parent: 2 + - uid: 18006 + components: + - type: Transform + pos: -128.5,153.5 + parent: 2 + - uid: 18033 + components: + - type: Transform + pos: -126.5,150.5 + parent: 2 + - uid: 18041 + components: + - type: Transform + pos: -126.5,152.5 + parent: 2 + - uid: 18065 + components: + - type: Transform + pos: -128.5,154.5 + parent: 2 + - uid: 18232 + components: + - type: Transform + pos: -128.5,152.5 + parent: 2 + - uid: 18235 + components: + - type: Transform + pos: -79.5,-5.5 + parent: 2 + - uid: 18236 + components: + - type: Transform + pos: -77.5,-6.5 + parent: 2 + - uid: 18238 + components: + - type: Transform + pos: -75.5,-4.5 + parent: 2 + - uid: 18628 + components: + - type: Transform + pos: -1.5,225.5 + parent: 2 + - uid: 18643 + components: + - type: Transform + pos: 6.5,229.5 + parent: 2 + - uid: 18751 + components: + - type: Transform + pos: -128.5,151.5 + parent: 2 + - uid: 19125 + components: + - type: Transform + pos: 2.5,229.5 + parent: 2 + - uid: 23873 + components: + - type: Transform + pos: -79.5,-11.5 + parent: 2 + - uid: 24301 + components: + - type: Transform + pos: -81.5,-5.5 + parent: 2 + - uid: 24384 + components: + - type: Transform + pos: 2.5,227.5 + parent: 2 + - uid: 24781 + components: + - type: Transform + pos: -4.5,237.5 + parent: 2 + - uid: 24784 + components: + - type: Transform + pos: -3.5,237.5 + parent: 2 + - uid: 24785 + components: + - type: Transform + pos: -1.5,237.5 + parent: 2 + - uid: 24786 + components: + - type: Transform + pos: -4.5,235.5 + parent: 2 + - uid: 24787 + components: + - type: Transform + pos: 2.5,237.5 + parent: 2 + - uid: 24788 + components: + - type: Transform + pos: 3.5,237.5 + parent: 2 + - uid: 25715 + components: + - type: Transform + pos: 5.5,237.5 + parent: 2 + - uid: 25729 + components: + - type: Transform + pos: 4.5,237.5 + parent: 2 + - uid: 26751 + components: + - type: Transform + pos: 6.5,235.5 + parent: 2 + - uid: 26771 + components: + - type: Transform + pos: 6.5,237.5 + parent: 2 + - uid: 26772 + components: + - type: Transform + pos: -5.5,235.5 + parent: 2 + - uid: 26773 + components: + - type: Transform + pos: -3.5,235.5 + parent: 2 + - uid: 26774 + components: + - type: Transform + pos: -5.5,237.5 + parent: 2 + - uid: 26775 + components: + - type: Transform + pos: 2.5,233.5 + parent: 2 + - uid: 26776 + components: + - type: Transform + pos: 4.5,235.5 + parent: 2 + - uid: 26777 + components: + - type: Transform + pos: 3.5,235.5 + parent: 2 + - uid: 26778 + components: + - type: Transform + pos: 2.5,235.5 + parent: 2 + - uid: 26779 + components: + - type: Transform + pos: -1.5,235.5 + parent: 2 + - uid: 26781 + components: + - type: Transform + pos: -2.5,235.5 + parent: 2 + - uid: 29416 + components: + - type: Transform + pos: -1.5,227.5 + parent: 2 + - uid: 29417 + components: + - type: Transform + pos: -2.5,227.5 + parent: 2 + - uid: 35055 + components: + - type: Transform + pos: -126.5,153.5 + parent: 2 + - uid: 35056 + components: + - type: Transform + pos: -126.5,154.5 + parent: 2 + - uid: 35057 + components: + - type: Transform + pos: -124.5,154.5 + parent: 2 + - uid: 35058 + components: + - type: Transform + pos: -124.5,153.5 + parent: 2 + - uid: 35059 + components: + - type: Transform + pos: -124.5,152.5 + parent: 2 + - uid: 35060 + components: + - type: Transform + pos: -124.5,151.5 + parent: 2 + - uid: 35061 + components: + - type: Transform + pos: -124.5,150.5 + parent: 2 + - uid: 35062 + components: + - type: Transform + pos: -122.5,154.5 + parent: 2 + - uid: 35063 + components: + - type: Transform + pos: -122.5,153.5 + parent: 2 + - uid: 35064 + components: + - type: Transform + pos: -122.5,152.5 + parent: 2 + - uid: 35066 + components: + - type: Transform + pos: -122.5,150.5 + parent: 2 + - uid: 35067 + components: + - type: Transform + pos: -120.5,154.5 + parent: 2 + - uid: 35068 + components: + - type: Transform + pos: -120.5,153.5 + parent: 2 + - uid: 35069 + components: + - type: Transform + pos: -120.5,152.5 + parent: 2 + - uid: 35070 + components: + - type: Transform + pos: -120.5,151.5 + parent: 2 + - uid: 35071 + components: + - type: Transform + pos: -120.5,150.5 + parent: 2 + - uid: 35072 + components: + - type: Transform + pos: -118.5,154.5 + parent: 2 + - uid: 35073 + components: + - type: Transform + pos: -118.5,153.5 + parent: 2 + - uid: 35074 + components: + - type: Transform + pos: -118.5,152.5 + parent: 2 + - uid: 35075 + components: + - type: Transform + pos: -118.5,151.5 + parent: 2 + - uid: 35076 + components: + - type: Transform + pos: -118.5,150.5 + parent: 2 + - uid: 35077 + components: + - type: Transform + pos: -116.5,154.5 + parent: 2 + - uid: 35078 + components: + - type: Transform + pos: -116.5,153.5 + parent: 2 + - uid: 35079 + components: + - type: Transform + pos: -116.5,152.5 + parent: 2 + - uid: 35080 + components: + - type: Transform + pos: -116.5,151.5 + parent: 2 + - uid: 35081 + components: + - type: Transform + pos: -116.5,150.5 + parent: 2 + - uid: 35082 + components: + - type: Transform + pos: -114.5,154.5 + parent: 2 + - uid: 35083 + components: + - type: Transform + pos: -114.5,153.5 + parent: 2 + - uid: 35084 + components: + - type: Transform + pos: -114.5,152.5 + parent: 2 + - uid: 35085 + components: + - type: Transform + pos: -114.5,151.5 + parent: 2 + - uid: 35086 + components: + - type: Transform + pos: -114.5,150.5 + parent: 2 + - uid: 35087 + components: + - type: Transform + pos: -116.5,146.5 + parent: 2 + - uid: 35088 + components: + - type: Transform + pos: -116.5,145.5 + parent: 2 + - uid: 35089 + components: + - type: Transform + pos: -116.5,144.5 + parent: 2 + - uid: 35090 + components: + - type: Transform + pos: -116.5,143.5 + parent: 2 + - uid: 35091 + components: + - type: Transform + pos: -116.5,142.5 + parent: 2 + - uid: 35092 + components: + - type: Transform + pos: -114.5,146.5 + parent: 2 + - uid: 35093 + components: + - type: Transform + pos: -114.5,145.5 + parent: 2 + - uid: 35094 + components: + - type: Transform + pos: -114.5,144.5 + parent: 2 + - uid: 35095 + components: + - type: Transform + pos: -114.5,143.5 + parent: 2 + - uid: 35096 + components: + - type: Transform + pos: -114.5,142.5 + parent: 2 + - uid: 35097 + components: + - type: Transform + pos: -118.5,146.5 + parent: 2 + - uid: 35098 + components: + - type: Transform + pos: -118.5,145.5 + parent: 2 + - uid: 35100 + components: + - type: Transform + pos: -118.5,143.5 + parent: 2 + - uid: 35101 + components: + - type: Transform + pos: -118.5,142.5 + parent: 2 + - uid: 35102 + components: + - type: Transform + pos: -120.5,146.5 + parent: 2 + - uid: 35103 + components: + - type: Transform + pos: -120.5,145.5 + parent: 2 + - uid: 35104 + components: + - type: Transform + pos: -120.5,144.5 + parent: 2 + - uid: 35105 + components: + - type: Transform + pos: -120.5,143.5 + parent: 2 + - uid: 35106 + components: + - type: Transform + pos: -120.5,142.5 + parent: 2 + - uid: 35107 + components: + - type: Transform + pos: -122.5,143.5 + parent: 2 + - uid: 35110 + components: + - type: Transform + pos: -122.5,146.5 + parent: 2 + - uid: 35111 + components: + - type: Transform + pos: -126.5,142.5 + parent: 2 + - uid: 35112 + components: + - type: Transform + pos: -124.5,142.5 + parent: 2 + - uid: 35113 + components: + - type: Transform + pos: -124.5,143.5 + parent: 2 + - uid: 35114 + components: + - type: Transform + pos: -124.5,144.5 + parent: 2 + - uid: 35115 + components: + - type: Transform + pos: -124.5,145.5 + parent: 2 + - uid: 35116 + components: + - type: Transform + pos: -124.5,146.5 + parent: 2 + - uid: 35117 + components: + - type: Transform + pos: -126.5,143.5 + parent: 2 + - uid: 35118 + components: + - type: Transform + pos: -126.5,144.5 + parent: 2 + - uid: 35119 + components: + - type: Transform + pos: -126.5,145.5 + parent: 2 + - uid: 35120 + components: + - type: Transform + pos: -126.5,146.5 + parent: 2 + - uid: 35121 + components: + - type: Transform + pos: -128.5,142.5 + parent: 2 + - uid: 35122 + components: + - type: Transform + pos: -128.5,143.5 + parent: 2 + - uid: 35123 + components: + - type: Transform + pos: -128.5,144.5 + parent: 2 + - uid: 35124 + components: + - type: Transform + pos: -128.5,145.5 + parent: 2 + - uid: 35125 + components: + - type: Transform + pos: -128.5,146.5 + parent: 2 +- proto: SolarPanelBroken + entities: + - uid: 572 + components: + - type: Transform + pos: -2.5,237.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: 5.5,223.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-6.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-6.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-10.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-11.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 3.5,229.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: 4.5,225.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: 3.5,233.5 + parent: 2 + - uid: 5415 + components: + - type: Transform + pos: 66.5,13.5 + parent: 2 + - uid: 5424 + components: + - type: Transform + pos: 75.5,9.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + pos: 73.5,11.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + pos: 73.5,7.5 + parent: 2 + - uid: 6487 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 6490 + components: + - type: Transform + pos: 67.5,9.5 + parent: 2 + - uid: 17677 + components: + - type: Transform + pos: -3.5,227.5 + parent: 2 + - uid: 18435 + components: + - type: Transform + pos: -128.5,150.5 + parent: 2 + - uid: 18631 + components: + - type: Transform + pos: 4.5,229.5 + parent: 2 + - uid: 24748 + components: + - type: Transform + pos: -2.5,225.5 + parent: 2 + - uid: 24783 + components: + - type: Transform + pos: -4.5,223.5 + parent: 2 + - uid: 26780 + components: + - type: Transform + pos: 5.5,235.5 + parent: 2 + - uid: 35065 + components: + - type: Transform + pos: -122.5,151.5 + parent: 2 + - uid: 35099 + components: + - type: Transform + pos: -118.5,144.5 + parent: 2 + - uid: 35108 + components: + - type: Transform + pos: -122.5,144.5 + parent: 2 + - uid: 35109 + components: + - type: Transform + pos: -122.5,145.5 + parent: 2 + - uid: 35442 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 1304 + components: + - type: Transform + pos: -84.5,-8.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 + - uid: 24782 + components: + - type: Transform + pos: 0.5,240.5 + parent: 2 + - uid: 35127 + components: + - type: Transform + pos: -131.5,148.5 + parent: 2 +- proto: SolidSecretDoor + entities: + - uid: 11591 + components: + - type: Transform + pos: -36.5,56.5 + parent: 2 + - uid: 12547 + components: + - type: Transform + pos: -40.5,61.5 + parent: 2 + - uid: 12918 + components: + - type: Transform + pos: 80.5,23.5 + parent: 2 +- proto: SpaceCash10 + entities: + - uid: 9039 + components: + - type: Transform + pos: -29.39834,105.56616 + parent: 2 + - uid: 11411 + components: + - type: Transform + pos: -28.624065,-13.148628 + parent: 2 + - uid: 37240 + components: + - type: Transform + pos: -37.381187,172.81274 + parent: 2 + - uid: 37241 + components: + - type: Transform + pos: -38.11231,172.55412 + parent: 2 + - uid: 38033 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38034 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38040 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 39184 + components: + - type: Transform + pos: -77.97112,91.60706 + parent: 2 + - uid: 42463 + components: + - type: Transform + pos: -65.49792,113.6684 + parent: 2 +- proto: SpaceCash500 + entities: + - uid: 1591 + components: + - type: Transform + parent: 1589 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpawnMobAlexander + entities: + - uid: 31592 + components: + - type: Transform + pos: -14.5,67.5 + parent: 2 +- proto: SpawnMobBandito + entities: + - uid: 13355 + components: + - type: Transform + pos: -0.5,62.5 + parent: 2 +- proto: SpawnMobBee + entities: + - uid: 5433 + components: + - type: Transform + pos: -96.5,148.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + pos: -98.5,149.5 + parent: 2 + - uid: 36781 + components: + - type: Transform + pos: -98.5,150.5 + parent: 2 +- proto: SpawnMobButterfly + entities: + - uid: 1369 + components: + - type: Transform + pos: -65.5,103.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: -64.5,103.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: -63.5,103.5 + parent: 2 + - uid: 17356 + components: + - type: Transform + pos: -75.5,168.5 + parent: 2 + - uid: 17404 + components: + - type: Transform + pos: -81.5,167.5 + parent: 2 + - uid: 17451 + components: + - type: Transform + pos: -82.5,175.5 + parent: 2 + - uid: 18585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,164.5 + parent: 2 + - uid: 18586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,169.5 + parent: 2 +- proto: SpawnMobCatBingus + entities: + - uid: 31597 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 +- proto: SpawnMobCatGeneric + entities: + - uid: 12656 + components: + - type: Transform + pos: -20.5,205.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 10455 + components: + - type: Transform + pos: -19.5,84.5 + parent: 2 +- proto: SpawnMobCow + entities: + - uid: 13247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,63.5 + parent: 2 +- proto: SpawnMobCrabAtmos + entities: + - uid: 1598 + components: + - type: Transform + pos: -106.5,25.5 + parent: 2 + - uid: 12275 + components: + - type: Transform + pos: -102.5,36.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 36199 + components: + - type: Transform + pos: -35.5,97.5 + parent: 2 +- proto: SpawnMobLizard + entities: + - uid: 14059 + components: + - type: Transform + pos: -66.5,101.5 + parent: 2 +- proto: SpawnMobMcGriff + entities: + - uid: 29706 + components: + - type: Transform + pos: 69.5,54.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 14766 + components: + - type: Transform + pos: -8.5,192.5 + parent: 2 +- proto: SpawnMobMonkey + entities: + - uid: 17601 + components: + - type: Transform + pos: -97.5,152.5 + parent: 2 + - uid: 18189 + components: + - type: Transform + pos: -87.5,151.5 + parent: 2 + - uid: 21341 + components: + - type: Transform + pos: -60.5,169.5 + parent: 2 + - uid: 21357 + components: + - type: Transform + pos: -63.5,161.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 10971 + components: + - type: Transform + pos: -25.5,63.5 + parent: 2 +- proto: SpawnMobMouse + entities: + - uid: 1030 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + pos: 3.5,71.5 + parent: 2 + - uid: 13382 + components: + - type: Transform + pos: -17.5,75.5 + parent: 2 + - uid: 17722 + components: + - type: Transform + pos: -109.5,96.5 + parent: 2 + - uid: 27803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,145.5 + parent: 2 + - uid: 31594 + components: + - type: Transform + pos: -26.5,73.5 + parent: 2 + - uid: 32464 + components: + - type: Transform + pos: -49.5,70.5 + parent: 2 + - uid: 36205 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 +- proto: SpawnMobParrot + entities: + - uid: 2051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,151.5 + parent: 2 +- proto: SpawnMobPenguin + entities: + - uid: 24804 + components: + - type: Transform + pos: -7.5,197.5 + parent: 2 +- proto: SpawnMobPossumMorty + entities: + - uid: 36662 + components: + - type: Transform + pos: -26.5,202.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 4656 + components: + - type: Transform + pos: 71.5,67.5 + parent: 2 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 36736 + components: + - type: Transform + pos: -63.5,85.5 + parent: 2 +- proto: SpawnMobSlug + entities: + - uid: 2176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,149.5 + parent: 2 +- proto: SpawnMobSmile + entities: + - uid: 21036 + components: + - type: Transform + pos: -88.5,178.5 + parent: 2 +- proto: SpawnMobSpaceSpider + entities: + - uid: 3001 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 +- proto: SpawnMobWalter + entities: + - uid: 30752 + components: + - type: Transform + pos: -20.5,193.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 25558 + components: + - type: Transform + pos: -105.5,36.5 + parent: 2 + - uid: 35532 + components: + - type: Transform + pos: -104.5,36.5 + parent: 2 + - uid: 35536 + components: + - type: Transform + pos: -103.5,36.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 5110 + components: + - type: Transform + pos: -32.5,59.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 20903 + components: + - type: Transform + pos: -68.5,174.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 10852 + components: + - type: Transform + pos: 0.5,67.5 + parent: 2 + - uid: 13345 + components: + - type: Transform + pos: -10.5,66.5 + parent: 2 + - uid: 16692 + components: + - type: Transform + pos: -2.5,66.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 24224 + components: + - type: Transform + pos: -31.5,97.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 1562 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 25685 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 26005 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 15476 + components: + - type: Transform + pos: -53.5,63.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 13190 + components: + - type: Transform + pos: -16.5,66.5 + parent: 2 + - uid: 13191 + components: + - type: Transform + pos: -14.5,69.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 10952 + components: + - type: Transform + pos: -19.5,191.5 + parent: 2 + - uid: 22422 + components: + - type: Transform + pos: -22.5,193.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 32469 + components: + - type: Transform + pos: -28.5,98.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 15027 + components: + - type: Transform + pos: -25.5,101.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 9035 + components: + - type: Transform + pos: -28.5,99.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + pos: -70.5,91.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 18692 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 13632 + components: + - type: Transform + pos: -25.5,99.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 13637 + components: + - type: Transform + pos: -28.5,100.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 10765 + components: + - type: Transform + pos: -1.5,81.5 + parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 14007 + components: + - type: Transform + pos: 110.5,44.5 + parent: 2 + - uid: 38561 + components: + - type: Transform + pos: 107.5,44.5 + parent: 2 + - uid: 38562 + components: + - type: Transform + pos: 106.5,45.5 + parent: 2 + - uid: 38563 + components: + - type: Transform + pos: 104.5,45.5 + parent: 2 + - uid: 38564 + components: + - type: Transform + pos: 111.5,45.5 + parent: 2 + - uid: 38565 + components: + - type: Transform + pos: 113.5,45.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 14737 + components: + - type: Transform + pos: -75.5,74.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 14543 + components: + - type: Transform + pos: -69.5,82.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 22889 + components: + - type: Transform + pos: -7.5,199.5 + parent: 2 + - uid: 26488 + components: + - type: Transform + pos: -5.5,196.5 + parent: 2 + - uid: 26489 + components: + - type: Transform + pos: 4.5,183.5 + parent: 2 + - uid: 26491 + components: + - type: Transform + pos: -13.5,191.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 22967 + components: + - type: Transform + pos: -5.5,198.5 + parent: 2 + - uid: 22968 + components: + - type: Transform + pos: 0.5,204.5 + parent: 2 + - uid: 22969 + components: + - type: Transform + pos: -15.5,191.5 + parent: 2 + - uid: 23048 + components: + - type: Transform + pos: -6.5,192.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 14088 + components: + - type: Transform + pos: -59.5,98.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 4153 + components: + - type: Transform + pos: -33.5,66.5 + parent: 2 + - uid: 13197 + components: + - type: Transform + pos: -59.5,106.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 19625 + components: + - type: Transform + pos: -40.5,90.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 25378 + components: + - type: Transform + pos: -3.5,171.5 + parent: 2 + - uid: 25379 + components: + - type: Transform + pos: -2.5,170.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 14092 + components: + - type: Transform + pos: -72.5,99.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + pos: -60.5,102.5 + parent: 2 + - uid: 14097 + components: + - type: Transform + pos: -58.5,94.5 + parent: 2 + - uid: 14100 + components: + - type: Transform + pos: -64.5,100.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + pos: -65.5,101.5 + parent: 2 + - uid: 14103 + components: + - type: Transform + pos: -66.5,100.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 13169 + components: + - type: Transform + pos: -20.5,179.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 16578 + components: + - type: Transform + pos: -28.5,101.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 10687 + components: + - type: Transform + pos: -0.5,85.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 21014 + components: + - type: Transform + pos: -90.5,164.5 + parent: 2 + - uid: 21042 + components: + - type: Transform + pos: -84.5,163.5 + parent: 2 + - uid: 23229 + components: + - type: Transform + pos: -69.5,155.5 + parent: 2 + - uid: 25438 + components: + - type: Transform + pos: -71.5,176.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 13630 + components: + - type: Transform + pos: -25.5,100.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 2091 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 14713 + components: + - type: Transform + pos: -72.5,155.5 + parent: 2 + - uid: 21048 + components: + - type: Transform + pos: -79.5,179.5 + parent: 2 + - uid: 21069 + components: + - type: Transform + pos: -71.5,169.5 + parent: 2 + - uid: 39430 + components: + - type: Transform + pos: -69.5,160.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 4566 + components: + - type: Transform + pos: -92.5,35.5 + parent: 2 + - uid: 10669 + components: + - type: Transform + pos: 78.5,62.5 + parent: 2 + - uid: 15421 + components: + - type: Transform + pos: 60.5,65.5 + parent: 2 + - uid: 26386 + components: + - type: Transform + pos: 58.5,67.5 + parent: 2 + - uid: 26481 + components: + - type: Transform + pos: 69.5,58.5 + parent: 2 + - uid: 26483 + components: + - type: Transform + pos: 75.5,66.5 + parent: 2 + - uid: 26484 + components: + - type: Transform + pos: 68.5,68.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 3425 + components: + - type: Transform + pos: 49.5,58.5 + parent: 2 + - uid: 25831 + components: + - type: Transform + pos: 72.5,35.5 + parent: 2 + - uid: 26003 + components: + - type: Transform + pos: 72.5,33.5 + parent: 2 + - uid: 26467 + components: + - type: Transform + pos: 71.5,43.5 + parent: 2 + - uid: 26469 + components: + - type: Transform + pos: 72.5,67.5 + parent: 2 + - uid: 26470 + components: + - type: Transform + pos: 67.5,66.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 13194 + components: + - type: Transform + pos: -18.5,70.5 + parent: 2 + - uid: 13268 + components: + - type: Transform + pos: -27.5,63.5 + parent: 2 + - uid: 13269 + components: + - type: Transform + pos: -24.5,62.5 + parent: 2 + - uid: 13375 + components: + - type: Transform + pos: -15.5,64.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 9344 + components: + - type: Transform + pos: -99.5,49.5 + parent: 2 + - uid: 17144 + components: + - type: Transform + pos: -92.5,46.5 + parent: 2 + - uid: 31799 + components: + - type: Transform + pos: -114.5,47.5 + parent: 2 + - uid: 31802 + components: + - type: Transform + pos: -96.5,41.5 + parent: 2 + - uid: 36376 + components: + - type: Transform + pos: -114.5,45.5 + parent: 2 + - uid: 36380 + components: + - type: Transform + pos: -93.5,47.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 18177 + components: + - type: Transform + pos: -88.5,43.5 + parent: 2 + - uid: 26006 + components: + - type: Transform + pos: -91.5,39.5 + parent: 2 + - uid: 36388 + components: + - type: Transform + pos: -113.5,42.5 + parent: 2 + - uid: 36389 + components: + - type: Transform + pos: -103.5,48.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 29707 + components: + - type: Transform + pos: 71.5,51.5 + parent: 2 +- proto: SpawnPointZookeeper + entities: + - uid: 14180 + components: + - type: Transform + pos: -64.5,66.5 + parent: 2 +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 1253 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 +- proto: SpeedLoaderMagnum + entities: + - uid: 3542 + components: + - type: Transform + pos: 0.5574074,76.50379 + parent: 2 +- proto: SpeedLoaderMagnumPractice + entities: + - uid: 4830 + components: + - type: Transform + pos: 51.658813,56.551514 + parent: 2 +- proto: SpiderWeb + entities: + - uid: 3400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,44.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,43.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: 80.5,43.5 + parent: 2 + - uid: 4843 + components: + - type: Transform + pos: 58.5,49.5 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: 57.5,50.5 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: 55.5,45.5 + parent: 2 + - uid: 15382 + components: + - type: Transform + pos: 82.5,46.5 + parent: 2 + - uid: 21601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-4.5 + parent: 2 + - uid: 25404 + components: + - type: Transform + pos: 8.5,73.5 + parent: 2 + - uid: 25439 + components: + - type: Transform + pos: 5.5,76.5 + parent: 2 + - uid: 28352 + components: + - type: Transform + pos: 51.5,45.5 + parent: 2 + - uid: 33706 + components: + - type: Transform + pos: 7.5,77.5 + parent: 2 + - uid: 33708 + components: + - type: Transform + pos: 8.5,74.5 + parent: 2 + - uid: 33712 + components: + - type: Transform + pos: 7.5,73.5 + parent: 2 + - uid: 36797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,76.5 + parent: 2 + - uid: 36798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,74.5 + parent: 2 + - uid: 36799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,76.5 + parent: 2 + - uid: 39323 + components: + - type: Transform + pos: 79.5,44.5 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 38383 + components: + - type: Transform + parent: 38381 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SS13Memorial + entities: + - uid: 4581 + components: + - type: Transform + pos: 71.5,60.5 + parent: 2 + - uid: 22644 + components: + - type: MetaData + desc: 'Somewhere around here: Ed, Arcanis, Jojo Cat, Jeb, Zarxis, Xomak404, NikaVich' + name: monument to the architects of the station + - type: Transform + pos: -0.5,179.5 + parent: 2 +- proto: Stairs + entities: + - uid: 39147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 37842 + - uid: 43457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,64.5 + parent: 2 + - uid: 43458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,64.5 + parent: 2 + - uid: 43459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,64.5 + parent: 2 + - uid: 43460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,64.5 + parent: 2 + - uid: 43461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,64.5 + parent: 2 + - uid: 43462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,64.5 + parent: 2 + - uid: 43463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,64.5 + parent: 2 + - uid: 43467 + components: + - type: Transform + pos: -40.5,105.5 + parent: 2 + - uid: 43468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,53.5 + parent: 2 + - uid: 43469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,52.5 + parent: 2 + - uid: 43470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,51.5 + parent: 2 + - uid: 43471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,50.5 + parent: 2 + - uid: 43472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,49.5 + parent: 2 + - uid: 43473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,48.5 + parent: 2 + - uid: 43474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,47.5 + parent: 2 + - uid: 43475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,54.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 5735 + components: + - type: Transform + pos: -5.5,189.5 + parent: 2 + - uid: 17704 + components: + - type: Transform + pos: -5.5,188.5 + parent: 2 + - uid: 31011 + components: + - type: Transform + pos: 3.5,0.5 + parent: 30902 + - uid: 31012 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 30902 +- proto: StationAiBrain + entities: + - uid: 7920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.642565,182.4048 + parent: 2 + - type: MindContainer + - type: MobMover + - type: MovementSpeedModifier + - type: Emoting + missingComponents: + - ActionGrant + - UserInterface + - IntrinsicRadioReceiver + - IntrinsicRadioTransmitter + - ActiveRadio +- proto: StationAiUploadCircuitboard + entities: + - uid: 8694 + components: + - type: Transform + pos: -107.39902,30.598766 + parent: 2 +- proto: StationAiUploadComputer + entities: + - uid: 7756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,130.5 + parent: 2 +- proto: StationAnchor + entities: + - uid: 1649 + components: + - type: Transform + pos: -84.5,72.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: 75.5,19.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: 21.5,172.5 + parent: 2 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 2729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.234913,129.47021 + parent: 2 +- proto: StationMap + entities: + - uid: 6986 + components: + - type: Transform + pos: -79.5,172.5 + parent: 2 + - uid: 13485 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 36533 + components: + - type: Transform + pos: -62.5,92.5 + parent: 2 + - uid: 36551 + components: + - type: Transform + pos: -65.5,154.5 + parent: 2 + - uid: 36552 + components: + - type: Transform + pos: -10.5,186.5 + parent: 2 + - uid: 36553 + components: + - type: Transform + pos: -95.5,39.5 + parent: 2 + - uid: 36554 + components: + - type: Transform + pos: 74.5,41.5 + parent: 2 + - uid: 36710 + components: + - type: Transform + pos: -119.5,51.5 + parent: 2 + - uid: 39173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,1.5 + parent: 2 +- proto: StationMapAssembly + entities: + - uid: 38421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,19.5 + parent: 2 +- proto: StationMapBroken + entities: + - uid: 39507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,149.5 + parent: 2 +- proto: StatueBananiumClown + entities: + - uid: 25466 + components: + - type: Transform + pos: 8.5,75.5 + parent: 2 +- proto: StatueVenusBlue + entities: + - uid: 13718 + components: + - type: Transform + pos: -43.5,94.5 + parent: 2 +- proto: StatueVenusRed + entities: + - uid: 13719 + components: + - type: Transform + pos: -37.5,94.5 + parent: 2 +- proto: SteelBench + entities: + - uid: 707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-3.5 + parent: 2 + - uid: 709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 + - uid: 710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-2.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 6546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-5.5 + parent: 2 + - uid: 10456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,94.5 + parent: 2 + - uid: 10593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,95.5 + parent: 2 + - uid: 10598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,97.5 + parent: 2 + - uid: 10612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,98.5 + parent: 2 + - uid: 10625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,100.5 + parent: 2 + - uid: 10626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,101.5 + parent: 2 + - uid: 11483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,155.5 + parent: 2 + - uid: 11484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,160.5 + parent: 2 + - uid: 11485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,155.5 + parent: 2 + - uid: 11521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 113.5,45.5 + parent: 2 + - uid: 11528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 111.5,45.5 + parent: 2 + - uid: 11678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 106.5,45.5 + parent: 2 + - uid: 11679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 104.5,45.5 + parent: 2 + - uid: 11699 + components: + - type: Transform + pos: 109.5,59.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,153.5 + parent: 2 + - uid: 12482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,153.5 + parent: 2 + - uid: 12489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,78.5 + parent: 2 + - uid: 12563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,86.5 + parent: 2 + - uid: 12565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,162.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,45.5 + parent: 2 + - uid: 12635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,78.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,78.5 + parent: 2 + - uid: 13461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,39.5 + parent: 2 + - uid: 13462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,39.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + pos: 107.5,59.5 + parent: 2 + - uid: 13608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,83.5 + parent: 2 + - uid: 13655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,79.5 + parent: 2 + - uid: 13697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,77.5 + parent: 2 + - uid: 13698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,77.5 + parent: 2 + - uid: 13706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,83.5 + parent: 2 + - uid: 13707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,84.5 + parent: 2 + - uid: 14712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,151.5 + parent: 2 + - uid: 16395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,151.5 + parent: 2 + - uid: 20175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,85.5 + parent: 2 + - uid: 21044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,79.5 + parent: 2 + - uid: 22895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,160.5 + parent: 2 + - uid: 23224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,162.5 + parent: 2 + - uid: 25692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,39.5 + parent: 2 + - uid: 25815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,84.5 + parent: 2 + - uid: 25816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,85.5 + parent: 2 + - uid: 25828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,199.5 + parent: 2 + - uid: 25829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,199.5 + parent: 2 + - uid: 26013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,87.5 + parent: 2 + - uid: 26015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-1.5 + parent: 2 + - uid: 26471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 109.5,61.5 + parent: 2 + - uid: 32084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,43.5 + parent: 2 + - uid: 37090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 107.5,61.5 + parent: 2 + - uid: 37117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 112.5,61.5 + parent: 2 + - uid: 37130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-1.5 + parent: 2 + - uid: 37219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 104.5,61.5 + parent: 2 + - uid: 38274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,79.5 + parent: 2 + - uid: 38529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,38.5 + parent: 2 + - uid: 38580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,38.5 + parent: 2 + - uid: 39301 + components: + - type: Transform + pos: 105.5,49.5 + parent: 2 + - uid: 39314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,38.5 + parent: 2 + - uid: 39454 + components: + - type: Transform + pos: -23.5,94.5 + parent: 2 + - uid: 39511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,38.5 + parent: 2 +- proto: SteelOre1 + entities: + - uid: 2975 + components: + - type: Transform + pos: -132.51938,22.593283 + parent: 2 + - uid: 27311 + components: + - type: Transform + pos: -132.72183,22.357151 + parent: 2 + - uid: 29414 + components: + - type: Transform + pos: -133.3967,29.306177 + parent: 2 + - uid: 29432 + components: + - type: Transform + pos: -132.28317,30.531815 + parent: 2 + - uid: 29644 + components: + - type: Transform + pos: -131.68375,30.431812 + parent: 2 + - uid: 29653 + components: + - type: Transform + pos: -131.46207,30.554302 + parent: 2 + - uid: 29657 + components: + - type: Transform + pos: -133.55417,25.89913 + parent: 2 + - uid: 30605 + components: + - type: Transform + pos: -132.41815,22.334661 + parent: 2 + - uid: 30606 + components: + - type: Transform + pos: -131.7995,30.610525 + parent: 2 +- proto: Stool + entities: + - uid: 13016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,71.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 5328 + components: + - type: Transform + pos: -28.5,65.5 + parent: 2 + - uid: 11023 + components: + - type: Transform + pos: -26.5,65.5 + parent: 2 + - uid: 11058 + components: + - type: Transform + pos: -27.5,65.5 + parent: 2 + - uid: 12930 + components: + - type: Transform + pos: -25.5,65.5 + parent: 2 + - uid: 38264 + components: + - type: Transform + pos: -9.5,59.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 5827 + components: + - type: Transform + pos: -74.5,149.5 + parent: 2 + - uid: 10190 + components: + - type: Transform + pos: 15.5,175.5 + parent: 2 + - uid: 29693 + components: + - type: Transform + pos: -91.5,152.5 + parent: 2 + - uid: 29922 + components: + - type: Transform + pos: -94.5,147.5 + parent: 2 + - uid: 35574 + components: + - type: Transform + pos: -73.5,149.5 + parent: 2 +- proto: StrangePill + entities: + - uid: 22075 + components: + - type: Transform + pos: -47.427376,64.59432 + parent: 2 + - uid: 22076 + components: + - type: Transform + pos: -47.517357,64.45939 + parent: 2 + - uid: 22109 + components: + - type: Transform + pos: -47.32614,64.54935 + parent: 2 +- proto: Stunbaton + entities: + - uid: 15540 + components: + - type: Transform + parent: 6467 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SubstationBasic + entities: + - uid: 4573 + components: + - type: Transform + pos: -44.5,68.5 + parent: 2 + - uid: 7164 + components: + - type: MetaData + name: AME Substation + - type: Transform + pos: -128.5,56.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + pos: -55.5,132.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 13901 + components: + - type: Transform + pos: 82.5,60.5 + parent: 2 + - uid: 15059 + components: + - type: MetaData + name: AME Bridge + - type: Transform + pos: -47.5,105.5 + parent: 2 + - uid: 16729 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 13386 + - uid: 16931 + components: + - type: MetaData + name: AME Service (left) + - type: Transform + pos: -83.5,79.5 + parent: 2 + - uid: 17308 + components: + - type: Transform + pos: 6.5,81.5 + parent: 2 + - uid: 17965 + components: + - type: MetaData + name: AME Cargo + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 18233 + components: + - type: MetaData + name: AME Gravgen + - type: Transform + pos: -125.5,58.5 + parent: 2 + - uid: 19100 + components: + - type: Transform + pos: -129.5,33.5 + parent: 2 + - uid: 29935 + components: + - type: MetaData + name: AME Engineering + - type: Transform + pos: -95.5,50.5 + parent: 2 + - uid: 33330 + components: + - type: MetaData + name: AME medical + - type: Transform + pos: -1.5,213.5 + parent: 2 + - uid: 35392 + components: + - type: MetaData + name: AME sci + - type: Transform + pos: -103.5,147.5 + parent: 2 + - uid: 35451 + components: + - type: MetaData + name: AME Engineering + - type: Transform + pos: 67.5,23.5 + parent: 2 +- proto: SubstationBasicEmpty + entities: + - uid: 34492 + components: + - type: MetaData + name: AME ??? + - type: Transform + pos: -119.5,108.5 + parent: 2 +- proto: SubstationMachineCircuitboard + entities: + - uid: 12289 + components: + - type: Transform + parent: 12288 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SubstationWallBasic + entities: + - uid: 1714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,29.5 + parent: 2 + - uid: 10867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,32.5 + parent: 2 + - uid: 22083 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 21114 + - uid: 30490 + components: + - type: Transform + pos: -111.5,26.5 + parent: 2 + - uid: 31013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 30902 + - uid: 37978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 37842 +- proto: SuitStorageBase + entities: + - uid: 4372 + components: + - type: Transform + pos: -129.5,109.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6449 + components: + - type: Transform + pos: -130.5,109.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: SuitStorageBasic + entities: + - uid: 1004 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: 70.5,26.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: 33.5,13.5 + parent: 2 +- proto: SuitStorageCaptain + entities: + - uid: 13662 + components: + - type: Transform + pos: -31.5,98.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 8324 + components: + - type: Transform + pos: -124.5,55.5 + parent: 2 +- proto: SuitStorageCMO + entities: + - uid: 23300 + components: + - type: Transform + pos: -20.5,206.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 1206 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 4510 + components: + - type: Transform + pos: -13.5,78.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: -13.5,81.5 + parent: 2 + - uid: 10568 + components: + - type: Transform + pos: -13.5,80.5 + parent: 2 + - uid: 13543 + components: + - type: Transform + pos: -13.5,77.5 + parent: 2 + - uid: 13897 + components: + - type: Transform + pos: -9.5,80.5 + parent: 2 + - uid: 14226 + components: + - type: Transform + pos: -9.5,78.5 + parent: 2 + - uid: 14850 + components: + - type: Transform + pos: -9.5,81.5 + parent: 2 + - uid: 17202 + components: + - type: Transform + pos: -9.5,77.5 + parent: 2 + - uid: 17224 + components: + - type: Transform + pos: -9.5,84.5 + parent: 2 + - uid: 17924 + components: + - type: Transform + pos: -13.5,84.5 + parent: 2 +- proto: SuitStorageEVAAlternate + entities: + - uid: 15032 + components: + - type: Transform + pos: -46.5,98.5 + parent: 2 + - uid: 15038 + components: + - type: Transform + pos: -45.5,98.5 + parent: 2 + - uid: 15039 + components: + - type: Transform + pos: -44.5,98.5 + parent: 2 +- proto: SuitStorageEVAEmergency + entities: + - uid: 982 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: -37.5,-3.5 + parent: 2 + - uid: 12045 + components: + - type: Transform + pos: -1.5,167.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 15501 + components: + - type: Transform + pos: -131.5,109.5 + parent: 2 + - uid: 18260 + components: + - type: Transform + pos: -96.5,159.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 18303 + components: + - type: Transform + pos: -96.5,160.5 + parent: 2 + - uid: 18312 + components: + - type: Transform + pos: -96.5,161.5 + parent: 2 + - uid: 20043 + components: + - type: Transform + pos: -75.5,162.5 + parent: 2 + - uid: 20044 + components: + - type: Transform + pos: -75.5,164.5 + parent: 2 + - uid: 22717 + components: + - type: Transform + pos: -75.5,163.5 + parent: 2 + - uid: 22722 + components: + - type: Transform + pos: 0.5,167.5 + parent: 2 + - uid: 22727 + components: + - type: Transform + pos: -0.5,167.5 + parent: 2 + - uid: 37525 + components: + - type: Transform + pos: 1.5,167.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 4686 + components: + - type: Transform + pos: 81.5,62.5 + parent: 2 +- proto: SuitStorageRD + entities: + - uid: 18387 + components: + - type: Transform + pos: -84.5,156.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 1022 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: - 1.8856695 - 7.0937095 - 0 @@ -146043,60971 +164562,45287 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17457 - - uid: 19895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,2.5 - parent: 2 - - uid: 19896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,0.5 - parent: 2 - - uid: 19897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-17.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-16.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-19.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-18.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-17.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-18.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-16.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-18.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 22017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,22.5 - parent: 2 - - uid: 22018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,24.5 - parent: 2 - - uid: 23781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,34.5 - parent: 2 - - uid: 30886 - components: - - type: Transform - pos: 69.5,19.5 - parent: 2 - - uid: 30897 - components: - - type: Transform - pos: 70.5,19.5 - parent: 2 - - uid: 30913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,16.5 - parent: 2 -- proto: MouseTimedSpawner - entities: - - uid: 19906 - components: - - type: Transform - pos: 52.5,7.5 - parent: 2 - - uid: 31349 - components: - - type: Transform - pos: 24.5,29.5 - parent: 2 -- proto: Multitool - entities: - - uid: 11535 - components: - - type: Transform - pos: -39.669044,-29.091356 - parent: 2 - - type: NetworkConfigurator - devices: - 'UID: 53200': 25883 - - uid: 17698 - components: - - type: Transform - pos: 69.49326,-40.89097 - parent: 2 - - uid: 17940 - components: - - type: Transform - pos: 59.535168,-32.93599 - parent: 2 - - uid: 19908 - components: - - type: Transform - pos: -37.715458,2.9862125 - parent: 2 - - uid: 19909 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 2 - - uid: 19910 - components: - - type: Transform - pos: -28.508348,-26.915876 - parent: 2 - - uid: 19911 - components: - - type: Transform - pos: -5.5,-39.5 - parent: 2 - - uid: 19912 - components: - - type: Transform - pos: -6.5,-39.5 - parent: 2 - - uid: 19913 - components: - - type: Transform - pos: -5.398419,-57.63227 - parent: 2 - - uid: 19914 - components: - - type: Transform - pos: 47.523952,-66.25797 - parent: 2 - - uid: 19915 - components: - - type: Transform - pos: 88.5,-27.5 - parent: 2 - - uid: 19916 - components: - - type: Transform - pos: 78.5,-62.5 - parent: 2 - - uid: 19918 - components: - - type: Transform - pos: -40.78173,5.838598 - parent: 2 - - uid: 19919 - components: - - type: Transform - pos: 59.451736,-24.426472 - parent: 2 - - uid: 21068 - components: - - type: Transform - pos: 71.54529,-29.021149 - parent: 2 - - type: NetworkConfigurator - linkModeActive: False - - uid: 21158 - components: - - type: Transform - pos: -2.5170498,-9.490618 - parent: 2 - - uid: 26977 - components: - - type: Transform - pos: -21.473618,1.568919 - parent: 2 - - uid: 29430 - components: - - type: Transform - pos: 69.4871,-19.41495 - parent: 2 -- proto: MysteryFigureBox - entities: - - uid: 9031 - components: - - type: Transform - pos: 74.5239,-33.452133 - parent: 2 - - uid: 11587 - components: - - type: Transform - parent: 11586 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19921 - components: - - type: Transform - pos: 8.395978,24.514906 - parent: 2 - - uid: 19922 - components: - - type: Transform - pos: 35.512127,21.471544 - parent: 2 - - uid: 19925 - components: - - type: Transform - pos: 81.66649,4.576059 - parent: 2 - - uid: 19930 - components: - - type: Transform - pos: -43.57332,37.486725 - parent: 2 - - uid: 21168 - components: - - type: Transform - pos: 58.369595,16.888306 - parent: 2 - - uid: 30200 - components: - - type: Transform - pos: -44.483444,15.503904 - parent: 2 - - uid: 30201 - components: - - type: Transform - pos: -53.468464,7.5708294 - parent: 2 - - uid: 30203 - components: - - type: Transform - pos: -38.462414,-44.773323 - parent: 2 - - uid: 30204 - components: - - type: Transform - pos: -11.004032,-72.4349 - parent: 2 - - uid: 30205 - components: - - type: Transform - pos: 15.522282,-71.259254 - parent: 2 - - uid: 30206 - components: - - type: Transform - pos: 45.01898,-62.380463 - parent: 2 - - uid: 30207 - components: - - type: Transform - pos: 43.440853,-60.52066 - parent: 2 - - uid: 30208 - components: - - type: Transform - pos: 34.50789,-52.973785 - parent: 2 - - uid: 30209 - components: - - type: Transform - pos: 64.612595,-19.442387 - parent: 2 - - uid: 30210 - components: - - type: Transform - pos: 80.51648,-16.483398 - parent: 2 - - uid: 30211 - components: - - type: Transform - pos: 90.5187,-6.4502935 - parent: 2 -- proto: NitrogenCanister - entities: - - uid: 3693 - components: - - type: Transform - pos: 50.5,17.5 - parent: 2 - - uid: 7585 - components: - - type: Transform - pos: 82.5,-23.5 - parent: 2 - - uid: 9459 - components: - - type: Transform - pos: 74.5,-43.5 - parent: 2 - - uid: 9465 - components: - - type: Transform - pos: 74.5,-44.5 - parent: 2 - - uid: 14123 - components: - - type: Transform - pos: 9.5,-44.5 - parent: 2 - - uid: 14124 - components: - - type: Transform - pos: 11.5,-44.5 - parent: 2 - - uid: 14145 - components: - - type: Transform - pos: 26.5,-46.5 - parent: 2 - - uid: 14979 - components: - - type: Transform - pos: 10.5,-44.5 - parent: 2 - - uid: 17123 - components: - - type: Transform - pos: 16.5,-50.5 - parent: 2 - - uid: 17708 - components: - - type: Transform - pos: -29.5,-36.5 - parent: 2 - - uid: 19241 - components: - - type: Transform - pos: 11.5,-77.5 - parent: 2 - - uid: 19931 - components: - - type: Transform - pos: 34.5,-69.5 - parent: 2 - - uid: 19939 - components: - - type: Transform - pos: -18.5,1.5 - parent: 2 - - uid: 19942 - components: - - type: Transform - pos: 71.5,-59.5 - parent: 2 - - uid: 19945 - components: - - type: Transform - pos: 38.5,26.5 - parent: 2 - - uid: 21398 - components: - - type: Transform - pos: -52.5,-11.5 - parent: 2 - - uid: 21460 - components: - - type: Transform - pos: -65.5,15.5 - parent: 2 - - uid: 21737 - components: - - type: Transform - pos: -41.5,11.5 - parent: 2 - - uid: 22326 - components: - - type: Transform - pos: 10.5,-40.5 - parent: 2 -- proto: NitrousOxideTankFilled - entities: - - uid: 26198 - components: - - type: Transform - pos: -11.491957,37.614395 - parent: 2 - - type: CMExplosionEffect - - uid: 30175 - components: - - type: Transform - pos: 28.120829,34.57937 - parent: 2 - - type: CMExplosionEffect - - uid: 30176 - components: - - type: Transform - pos: 19.53067,-34.44757 - parent: 2 - - type: CMExplosionEffect -- proto: NoticeBoard - entities: - - uid: 19946 - components: - - type: Transform - pos: 37.5,-7.5 - parent: 2 -- proto: NTDefaultCircuitBoard - entities: - - uid: 19476 - components: - - type: Transform - parent: 19293 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NuclearBomb - entities: - - uid: 13502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-23.5 - parent: 2 -- proto: NuclearBombKeg - entities: - - uid: 19948 - components: - - type: Transform - pos: 10.5,-27.5 - parent: 2 - - uid: 30390 - components: - - type: MetaData - name: ядерная боеголовка "Понос Бобра" - - type: Transform - pos: -38.5,32.5 - parent: 2 -- proto: NutimovCircuitBoard - entities: - - uid: 20205 - components: - - type: Transform - parent: 19293 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Ointment - entities: - - uid: 30183 - components: - - type: Transform - pos: 29.102394,34.442192 - parent: 2 -- proto: OperatingTable - entities: - - uid: 19949 - components: - - type: Transform - pos: 19.5,-32.5 - parent: 2 - - uid: 19950 - components: - - type: Transform - pos: 67.5,-76.5 - parent: 2 - - uid: 19951 - components: - - type: Transform - pos: -24.5,-9.5 - parent: 2 - - uid: 19952 - components: - - type: Transform - pos: 21.5,-32.5 - parent: 2 - - uid: 19953 - components: - - type: Transform - pos: 47.5,-22.5 - parent: 2 -- proto: OreBox - entities: - - uid: 2166 - components: - - type: Transform - pos: -42.5,-38.5 - parent: 2 - - uid: 5537 - components: - - type: Transform - pos: -40.5,-38.5 - parent: 2 - - uid: 5565 - components: - - type: Transform - pos: -41.5,-38.5 - parent: 2 -- proto: OreProcessorIndustrial - entities: - - uid: 6741 - components: - - type: Transform - pos: -26.5,-28.5 - parent: 2 -- proto: OxygenCanister - entities: - - uid: 2145 - components: - - type: Transform - pos: 31.5,28.5 - parent: 2 - - uid: 2664 - components: - - type: Transform - pos: 49.5,17.5 - parent: 2 - - uid: 8284 - components: - - type: Transform - pos: 81.5,-23.5 - parent: 2 - - uid: 9460 - components: - - type: Transform - pos: 75.5,-44.5 - parent: 2 - - uid: 9464 - components: - - type: Transform - pos: 75.5,-43.5 - parent: 2 - - uid: 10566 - components: - - type: Transform - pos: -52.5,-12.5 - parent: 2 - - uid: 14035 - components: - - type: Transform - pos: 26.5,-44.5 - parent: 2 - - uid: 14958 - components: - - type: Transform - pos: 16.5,-51.5 - parent: 2 - - uid: 14977 - components: - - type: Transform - pos: 9.5,-42.5 - parent: 2 - - uid: 16656 - components: - - type: Transform - pos: -65.5,16.5 - parent: 2 - - uid: 17439 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 2 - - uid: 17441 - components: - - type: Transform - pos: 11.5,-42.5 - parent: 2 - - uid: 19242 - components: - - type: Transform - pos: 11.5,-75.5 - parent: 2 - - uid: 19957 - components: - - type: Transform - pos: -29.5,-35.5 - parent: 2 - - uid: 19958 - components: - - type: Transform - pos: -16.5,22.5 - parent: 2 - - uid: 19961 - components: - - type: Transform - pos: -41.5,9.5 - parent: 2 - - uid: 19962 - components: - - type: Transform - pos: -32.5,-51.5 - parent: 2 - - uid: 19965 - components: - - type: Transform - pos: 35.5,-69.5 - parent: 2 - - uid: 19966 - components: - - type: Transform - pos: 29.5,-30.5 - parent: 2 - - uid: 19972 - components: - - type: Transform - pos: 70.5,-59.5 - parent: 2 - - uid: 19978 - components: - - type: Transform - pos: 37.5,26.5 - parent: 2 - - uid: 19979 - components: - - type: Transform - pos: -19.5,1.5 - parent: 2 - - uid: 22325 - components: - - type: Transform - pos: 9.5,-40.5 - parent: 2 - - uid: 29889 - components: - - type: Transform - pos: -46.5,-36.5 - parent: 2 - - uid: 31987 - components: - - type: Transform - pos: -23.5,14.5 - parent: 2 -- proto: OxygenTankFilled - entities: - - uid: 19985 - components: - - type: Transform - pos: 86.512405,-55.497726 - parent: 2 - - type: CMExplosionEffect - - uid: 22849 - components: - - type: Transform - parent: 21940 - - type: GasTank - toggleActionEntity: 23169 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 23169 - - type: CMExplosionEffect - - uid: 23210 - components: - - type: Transform - parent: 22898 - - type: GasTank - toggleActionEntity: 23211 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 23211 - - type: CMExplosionEffect -- proto: PaintingAmogusTriptych - entities: - - uid: 19987 - components: - - type: Transform - pos: 53.5,-7.5 - parent: 2 -- proto: PaintingCafeTerraceAtNight - entities: - - uid: 19988 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 2 -- proto: PaintingNightHawks - entities: - - uid: 19989 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 2 -- proto: PaintingSadClown - entities: - - uid: 19990 - components: - - type: Transform - pos: 19.5,40.5 - parent: 2 -- proto: PaintingTheGreatWave - entities: - - uid: 19991 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 2 -- proto: PaintingTheScream - entities: - - uid: 19992 - components: - - type: Transform - pos: 60.5,-11.5 - parent: 2 -- proto: PaintingTheSonOfMan - entities: - - uid: 19993 - components: - - type: Transform - pos: 58.5,-11.5 - parent: 2 -- proto: PaladinCircuitBoard - entities: - - uid: 20201 - components: - - type: Transform - parent: 19293 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Paper - entities: - - uid: 4 - components: - - type: Transform - pos: 65.576805,-77.369644 - parent: 2 - - type: Paper - content: >+ - Вобщем. Пока нас не расскрыло Сб мы спрятали все нашы ТАБЛЫ. Их можно найти за фальшивой стеной под аномалистикой РНД. В тёмной комнате. - - - - - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - TableLayer - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 5 - - uid: 787 - components: - - type: Transform - pos: -5.262884,31.650179 - parent: 2 - - uid: 1231 - components: - - type: Transform - pos: 60.390285,-3.4349523 - parent: 2 - - uid: 1330 - components: - - type: Transform - pos: -13.580156,15.554556 - parent: 2 - - uid: 5437 - components: - - type: Transform - pos: 60.53902,-29.423237 - parent: 2 - - uid: 9888 - components: - - type: Transform - pos: 60.53902,-29.423237 - parent: 2 - - uid: 12190 - components: - - type: Transform - pos: 60.53902,-29.423237 - parent: 2 - - uid: 12195 - components: - - type: Transform - pos: 60.53902,-29.423237 - parent: 2 - - uid: 13531 - components: - - type: Transform - pos: -33.56023,-24.50964 - parent: 2 - - type: Paper - content: Эти денги вам выданы на чёрный день! - - uid: 15878 - components: - - type: Transform - pos: -5.3531427,36.52498 - parent: 2 - - uid: 16261 - components: - - type: Transform - pos: 60.53902,-29.423237 - parent: 2 - - uid: 16523 - components: - - type: Transform - pos: 65.48843,-6.5400047 - parent: 2 - - uid: 16658 - components: - - type: Transform - pos: 8.181152,-68.47794 - parent: 2 - - type: Paper - content: >- - Планы на сегодня: - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - Снести суд - - uid: 17253 - components: - - type: Transform - pos: 16.31089,37.632896 - parent: 2 - - uid: 19994 - components: - - type: Transform - pos: -48.45037,23.567854 - parent: 2 - - type: Paper - content: '[head=2]Я ненавижу Тэмми.' - - uid: 19995 - components: - - type: Transform - pos: 28.426676,-19.487911 - parent: 2 - - uid: 19996 - components: - - type: Transform - pos: 28.395426,-19.503536 - parent: 2 - - uid: 19997 - components: - - type: Transform - pos: 28.395426,-19.487911 - parent: 2 - - uid: 19998 - components: - - type: Transform - pos: 6.2845893,-15.291874 - parent: 2 - - uid: 19999 - components: - - type: Transform - pos: 6.2533393,-15.276249 - parent: 2 - - uid: 20000 - components: - - type: Transform - pos: 6.2533393,-15.260624 - parent: 2 - - uid: 20001 - components: - - type: Transform - pos: 6.2377143,-15.307499 - parent: 2 - - uid: 20002 - components: - - type: Transform - pos: 6.2533393,-15.307499 - parent: 2 - - uid: 20003 - components: - - type: Transform - pos: 39.5,11.5 - parent: 2 - - uid: 20004 - components: - - type: Transform - pos: 37.502907,-18.540497 - parent: 2 - - uid: 20005 - components: - - type: Transform - pos: 33.619408,-7.2991767 - parent: 2 - - uid: 20011 - components: - - type: Transform - pos: -22.63956,-9.310629 - parent: 2 - - uid: 20012 - components: - - type: Transform - pos: 3.5,24.5 - parent: 2 - - uid: 20013 - components: - - type: Transform - pos: 3.5,24.5 - parent: 2 - - uid: 20014 - components: - - type: Transform - pos: 3.5,24.5 - parent: 2 - - uid: 20015 - components: - - type: Transform - pos: 3.5,24.5 - parent: 2 - - uid: 20016 - components: - - type: Transform - pos: 3.5,24.5 - parent: 2 - - uid: 20017 - components: - - type: Transform - pos: -0.5,29.5 - parent: 2 - - uid: 20018 - components: - - type: Transform - pos: -22.570118,-9.393962 - parent: 2 - - uid: 20019 - components: - - type: Transform - pos: -22.51456,-9.491184 - parent: 2 - - uid: 20025 - components: - - type: Transform - pos: 56.5,1.5 - parent: 2 - - uid: 20026 - components: - - type: Transform - pos: 56.5,1.5 - parent: 2 - - uid: 20027 - components: - - type: Transform - pos: 56.5,1.5 - parent: 2 - - uid: 20028 - components: - - type: Transform - pos: 56.5,1.5 - parent: 2 - - uid: 20029 - components: - - type: Transform - pos: 56.5,1.5 - parent: 2 - - uid: 20030 - components: - - type: Transform - pos: -14.61899,-25.228035 - parent: 2 - - uid: 20031 - components: - - type: Transform - pos: -14.55649,-25.39991 - parent: 2 - - uid: 20032 - components: - - type: Transform - pos: -59.354946,3.707062 - parent: 2 - - uid: 20033 - components: - - type: Transform - pos: -59.354946,3.707062 - parent: 2 - - uid: 20034 - components: - - type: Transform - pos: -59.354946,3.707062 - parent: 2 - - uid: 20035 - components: - - type: Transform - pos: -58.43307,2.519562 - parent: 2 - - uid: 20036 - components: - - type: Transform - pos: -14.478365,-25.27491 - parent: 2 - - uid: 20038 - components: - - type: Transform - pos: -34.62692,-5.2055216 - parent: 2 - - uid: 20039 - components: - - type: Transform - pos: -34.361294,-5.4555216 - parent: 2 - - uid: 20040 - components: - - type: Transform - pos: -34.18942,-5.6742716 - parent: 2 - - uid: 20046 - components: - - type: Transform - pos: 29.961628,-19.444895 - parent: 2 - - uid: 20047 - components: - - type: Transform - pos: 4.372654,28.611383 - parent: 2 - - uid: 20048 - components: - - type: Transform - pos: 4.435154,28.486383 - parent: 2 - - uid: 20049 - components: - - type: Transform - pos: 4.560154,28.611383 - parent: 2 - - uid: 20056 - components: - - type: Transform - pos: -35.5,-51.5 - parent: 2 - - uid: 20057 - components: - - type: Transform - pos: -35.5,-51.5 - parent: 2 - - uid: 20058 - components: - - type: Transform - pos: -35.5,-51.5 - parent: 2 - - uid: 20061 - components: - - type: Transform - pos: 29.977253,-19.491943 - parent: 2 - - uid: 20062 - components: - - type: Transform - pos: 43.6327,-16.439646 - parent: 2 - - uid: 20063 - components: - - type: Transform - pos: 43.679577,-16.377146 - parent: 2 - - uid: 20064 - components: - - type: Transform - pos: 43.648327,-16.33027 - parent: 2 - - uid: 20065 - components: - - type: Transform - pos: 33.400658,-7.2262745 - parent: 2 - - uid: 20069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.607124,42.54283 - parent: 2 - - uid: 20070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.607124,42.54283 - parent: 2 - - uid: 20071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.551569,42.501167 - parent: 2 - - uid: 20076 - components: - - type: Transform - pos: -13.639617,-15.415809 - parent: 2 - - uid: 20077 - components: - - type: Transform - pos: -13.514617,-15.618934 - parent: 2 - - type: Paper - content: >+ - Вы наверное слышали историю про легендарного ОФИЦЕРА СИНЕГО ЩИТА. Никто не знает его имя, Но все знают его прозвище. Синий Цып. - - Говорят что он настолько силён. Что может разорвать Любого врага станции. пополам. И что его неберёт ничего. - - - Ходят слухи что он служит в секторе 13. - - - uid: 20078 - components: - - type: Transform - pos: -13.420867,-15.306434 - parent: 2 - - uid: 20085 - components: - - type: Transform - pos: -2.4831302,-64.401054 - parent: 2 - - uid: 20089 - components: - - type: Transform - pos: 70.528046,-10.426912 - parent: 2 - - uid: 22199 - components: - - type: Transform - pos: -11.62225,4.693494 - parent: 2 - - type: Paper - content: А тут мы построим хранилище - - uid: 24251 - components: - - type: Transform - pos: 8.650753,-68.434 - parent: 2 - - uid: 24273 - components: - - type: Transform - pos: 8.807003,-68.48087 - parent: 2 - - uid: 24773 - components: - - type: Transform - pos: -4.5623837,-16.48959 - parent: 2 - - uid: 24774 - components: - - type: Transform - pos: -4.3592587,-16.286465 - parent: 2 - - uid: 25667 - components: - - type: Transform - pos: -0.62669134,-17.622416 - parent: 2 - - uid: 25686 - components: - - type: Transform - pos: -0.45481634,-17.29429 - parent: 2 - - uid: 25687 - components: - - type: Transform - pos: -0.45481634,-17.88804 - parent: 2 - - uid: 29391 - components: - - type: Transform - pos: 60.577785,-3.4037023 - parent: 2 - - uid: 29393 - components: - - type: Transform - pos: 60.46841,-3.2318273 - parent: 2 - - uid: 29394 - components: - - type: Transform - pos: 60.577785,-3.4037023 - parent: 2 - - uid: 29402 - components: - - type: Transform - pos: 60.492977,-7.430492 - parent: 2 - - uid: 29766 - components: - - type: Transform - pos: -11.521017,3.634203 - parent: 2 - - uid: 29772 - components: - - type: Transform - pos: -11.411642,3.477953 - parent: 2 - - uid: 29773 - components: - - type: Transform - pos: -7.505392,3.509203 - parent: 2 - - uid: 29789 - components: - - type: Transform - pos: -13.486406,15.679556 - parent: 2 - - uid: 29838 - components: - - type: Transform - pos: -58.444637,-29.411213 - parent: 2 - - uid: 30312 - components: - - type: Transform - pos: -25.197866,-22.454386 - parent: 2 - - uid: 30313 - components: - - type: Transform - pos: -25.291616,-22.329386 - parent: 2 - - uid: 30315 - components: - - type: Transform - pos: -25.369741,-22.22001 - parent: 2 - - uid: 30348 - components: - - type: Transform - pos: -28.700321,32.589104 - parent: 2 - - type: Paper - content: Чувак, эта вечеринка отстой. Я, бля, ненавижу этих людей - - uid: 30756 - components: - - type: Transform - pos: 16.475231,37.493973 - parent: 2 - - uid: 30758 - components: - - type: Transform - pos: 16.381481,37.572098 - parent: 2 - - uid: 30766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.417665,36.680634 - parent: 2 - - type: Paper - content: >- - Брифинг идёт уже 30 минут.... За это время успели убить двух кадетов, а я у знал что одна сигара заканчивается ровно 4:30.... - - - Боже дайте мне уже виски - - uid: 30768 - components: - - type: Transform - pos: 16.55141,37.409027 - parent: 2 - - uid: 30769 - components: - - type: Transform - pos: 15.47889,36.565613 - parent: 2 - - type: Paper - content: >- - Отряд Альфа: - - - - - - - - - Отряд Бета: - - - - - - - - - Отряд Дельта: - - - - - - - - - Отряд Домино: - - - - - - - - - Отряд Гамма: - - - - - - - - uid: 30816 - components: - - type: Transform - pos: 66.51096,2.7250042 - parent: 2 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: >- - [color=#1b487e]███░███░░░░██░░░░[/color] - - [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#1b487e]░░░░██░░██░██░██░[/color] [bold] Box Station ЦК-СБ[/bold] - - [color=#1b487e]░░░░██░░░████░███[/color] - - ============================================= - РАЗРЕШЕНИЕ НА НОШЕНИЕ ОРУЖИЯ - ============================================= - - Время от начала смены и дата: - - 21:12 05/01/3025 - - Составитель документа: - - Тиграс Кушнарс - - Должность составителя: - - Офицер Центрального Командования - - - Я, Тиграс Кушнарс, в должности Офицера Центрального Командования, разрешаю ношение оружия священнику станции, до тех пор, пока оно используется по назначению. В случае нарушения разрешение аннулируется, оружие изымается Службой Безопасности. - - Оружие и тип патронов к нему: двуствольное ружьё, травматические и боевые боеприпасы - - - Способ получения оружия и патронов к нему: - - выделено центральным командованием до начала смены - - - Причина выдачи разрешения: - - приказ центрального командования в связи с появлением большого количество ксеновида в секторе. - - - ============================================= - [italic]Место для печатей[/italic] - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - TableLayer - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 30817 -- proto: PaperBin10 - entities: - - uid: 20090 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 2 -- proto: PaperBin20 - entities: - - uid: 18979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,22.5 - parent: 2 - - uid: 20091 - components: - - type: Transform - pos: -14.5,-24.5 - parent: 2 - - uid: 20092 - components: - - type: Transform - pos: 60.5,-2.5 - parent: 2 - - uid: 26560 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 2 - - uid: 29470 - components: - - type: Transform - pos: 65.5,-19.5 - parent: 2 - - uid: 29782 - components: - - type: Transform - pos: -7.5,1.5 - parent: 2 - - uid: 29783 - components: - - type: Transform - pos: -8.5,7.5 - parent: 2 - - uid: 29800 - components: - - type: Transform - pos: -6.5,16.5 - parent: 2 -- proto: PaperBin5 - entities: - - uid: 20093 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 2 - - uid: 20094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-23.5 - parent: 2 - - uid: 20095 - components: - - type: Transform - pos: 6.5,-56.5 - parent: 2 - - uid: 22538 - components: - - type: Transform - pos: -4.5,29.5 - parent: 2 - - uid: 25324 - components: - - type: Transform - pos: -4.5,34.5 - parent: 2 - - uid: 26600 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 2 -- proto: PaperCNCSheet - entities: - - uid: 556 - components: - - type: Transform - pos: 80.31636,-27.742876 - parent: 2 - - uid: 1072 - components: - - type: Transform - pos: 80.31636,-28.492876 - parent: 2 - - uid: 5262 - components: - - type: Transform - pos: 80.72261,-27.367876 - parent: 2 - - uid: 5263 - components: - - type: Transform - pos: 81.66011,-27.930376 - parent: 2 - - uid: 5269 - components: - - type: Transform - pos: 80.956985,-28.586626 - parent: 2 - - uid: 9444 - components: - - type: Transform - pos: 81.87886,-27.383501 - parent: 2 -- proto: ParchisBoard - entities: - - uid: 20096 - components: - - type: Transform - pos: -14.380374,40.648094 - parent: 2 - - uid: 20097 - components: - - type: Transform - pos: 56.483215,-34.930893 - parent: 2 -- proto: ParticleAcceleratorControlBoxUnfinished - entities: - - uid: 20098 - components: - - type: Transform - pos: -1.5,-75.5 - parent: 2 -- proto: ParticleAcceleratorEmitterForeUnfinished - entities: - - uid: 20099 - components: - - type: Transform - pos: -0.5,-77.5 - parent: 2 -- proto: ParticleAcceleratorEmitterPortUnfinished - entities: - - uid: 20100 - components: - - type: Transform - pos: 0.5,-77.5 - parent: 2 -- proto: ParticleAcceleratorEmitterStarboardUnfinished - entities: - - uid: 20101 - components: - - type: Transform - pos: -1.5,-77.5 - parent: 2 -- proto: ParticleAcceleratorEndCapUnfinished - entities: - - uid: 20102 - components: - - type: Transform - pos: -0.5,-74.5 - parent: 2 -- proto: ParticleAcceleratorFuelChamberUnfinished - entities: - - uid: 20103 - components: - - type: Transform - pos: -0.5,-75.5 - parent: 2 -- proto: ParticleAcceleratorPowerBoxUnfinished - entities: - - uid: 20104 - components: - - type: Transform - pos: 0.5,-76.5 - parent: 2 -- proto: PartRodMetal - entities: - - uid: 5492 - components: - - type: Transform - pos: 8.580415,-46.409363 - parent: 2 - - uid: 5584 - components: - - type: Transform - pos: 8.56479,-46.424988 - parent: 2 - - uid: 5692 - components: - - type: Transform - pos: -65.48615,13.365208 - parent: 2 - - uid: 14003 - components: - - type: Transform - pos: 8.56479,-46.424988 - parent: 2 - - uid: 14041 - components: - - type: Transform - pos: 9.470342,-60.437363 - parent: 2 - - uid: 14114 - components: - - type: Transform - pos: 8.56479,-46.424988 - parent: 2 - - uid: 14441 - components: - - type: Transform - pos: 8.56479,-46.424988 - parent: 2 - - uid: 20105 - components: - - type: Transform - pos: 9.470699,-60.377747 - parent: 2 - - uid: 20107 - components: - - type: Transform - pos: -49.419334,-6.4839315 - parent: 2 - - uid: 20108 - components: - - type: Transform - pos: -28.374622,-53.801064 - parent: 2 - - uid: 20109 - components: - - type: Transform - pos: 9.470699,-60.377747 - parent: 2 - - uid: 20112 - components: - - type: Transform - pos: 47.258327,-66.86735 - parent: 2 - - uid: 20113 - components: - - type: Transform - rot: 0.0003970976686105132 rad - pos: 78.73667,-63.693985 - parent: 2 - - uid: 20114 - components: - - type: Transform - pos: -49.419334,-6.4839315 - parent: 2 - - uid: 20115 - components: - - type: Transform - pos: -49.419334,-6.4839315 - parent: 2 - - uid: 20118 - components: - - type: Transform - pos: 9.470699,-60.377747 - parent: 2 -- proto: PartRodMetal1 - entities: - - uid: 30545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.38137,25.082857 - parent: 2 - - uid: 30546 - components: - - type: Transform - pos: -37.485535,25.29119 - parent: 2 - - uid: 30547 - components: - - type: Transform - pos: -33.360535,27.29119 - parent: 2 - - uid: 30548 - components: - - type: Transform - pos: -33.673035,27.187023 - parent: 2 - - uid: 30549 - components: - - type: Transform - pos: -36.69387,23.687023 - parent: 2 - - uid: 30550 - components: - - type: Transform - pos: -36.81887,23.66619 - parent: 2 -- proto: Pen - entities: - - uid: 1314 - components: - - type: Transform - pos: 1.7721915,30.405424 - parent: 2 - - uid: 12227 - components: - - type: Transform - pos: -4.6248837,-15.98959 - parent: 2 - - uid: 20121 - components: - - type: Transform - pos: 37.284157,-18.306122 - parent: 2 - - uid: 20122 - components: - - type: Transform - pos: 6.7796197,-15.189568 - parent: 2 - - uid: 20123 - components: - - type: Transform - pos: -14.572115,-24.86866 - parent: 2 - - uid: 20124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.585117,-9.789719 - parent: 2 - - uid: 20126 - components: - - type: Transform - pos: 3.5,24.5 - parent: 2 - - uid: 20128 - components: - - type: Transform - pos: -0.5,29.5 - parent: 2 - - uid: 20131 - components: - - type: Transform - pos: 61.529793,-23.79862 - parent: 2 - - uid: 20132 - components: - - type: Transform - pos: 55.5,1.5 - parent: 2 - - uid: 20134 - components: - - type: Transform - pos: -56.5,3.5000002 - parent: 2 - - uid: 20135 - components: - - type: Transform - pos: -59.58932,3.613312 - parent: 2 - - uid: 20138 - components: - - type: Transform - pos: -32.16884,-27.272776 - parent: 2 - - uid: 20139 - components: - - type: Transform - pos: 4.0775504,28.562046 - parent: 2 - - uid: 20143 - components: - - type: Transform - pos: -28.5,-33.5 - parent: 2 - - uid: 20144 - components: - - type: Transform - pos: -34.5,-51.5 - parent: 2 - - uid: 20145 - components: - - type: Transform - pos: 43.44618,-16.36152 - parent: 2 - - uid: 20146 - components: - - type: Transform - pos: 28.924086,-19.41955 - parent: 2 - - uid: 20147 - components: - - type: Transform - pos: 57.757774,-29.557352 - parent: 2 - - uid: 20149 - components: - - type: Transform - pos: 30.424086,-19.435175 - parent: 2 - - uid: 20150 - components: - - type: Transform - pos: -13.561492,-14.931434 - parent: 2 - - uid: 20151 - components: - - type: Transform - pos: -12.999181,-11.37 - parent: 2 - - uid: 20155 - components: - - type: Transform - pos: -2.7254467,-64.370705 - parent: 2 - - uid: 22200 - components: - - type: Transform - pos: -11.637875,4.9967585 - parent: 2 - - uid: 24755 - components: - - type: Transform - pos: -4.4061337,-15.86459 - parent: 2 - - uid: 25500 - components: - - type: Transform - pos: -5.612397,32.514755 - parent: 2 - - uid: 25689 - components: - - type: Transform - pos: -0.76731634,-15.263041 - parent: 2 - - uid: 29774 - components: - - type: Transform - pos: -7.864767,3.556078 - parent: 2 - - uid: 29775 - components: - - type: Transform - pos: -8.505392,5.571703 - parent: 2 - - uid: 29776 - components: - - type: Transform - pos: -7.849142,5.587328 - parent: 2 - - uid: 29790 - components: - - type: Transform - pos: -13.267656,15.518335 - parent: 2 - - uid: 29839 - components: - - type: Transform - pos: -58.033848,-29.429472 - parent: 2 - - uid: 30341 - components: - - type: Transform - pos: -25.447866,-22.53251 - parent: 2 - - uid: 30753 - components: - - type: Transform - pos: 16.736494,36.7893 - parent: 2 - - uid: 31725 - components: - - type: Transform - pos: -5.6343927,37.43123 - parent: 2 -- proto: PercentileDie - entities: - - uid: 20157 - components: - - type: Transform - pos: 57.5,20.5 - parent: 2 - - uid: 20158 - components: - - type: Transform - pos: 56.5,3.5000002 - parent: 2 - - uid: 20159 - components: - - type: Transform - pos: 55.5,0.5 - parent: 2 -- proto: PersonalAI - entities: - - uid: 9911 - components: - - type: Transform - pos: 22.526869,-26.511612 - parent: 2 - - uid: 13172 - components: - - type: Transform - pos: 69.55629,-19.197895 - parent: 2 - - uid: 18965 - components: - - type: Transform - pos: 72.15004,-29.262276 - parent: 2 - - uid: 19839 - components: - - type: Transform - pos: -5.446638,-6.5346203 - parent: 2 - - uid: 20160 - components: - - type: Transform - pos: 63.526154,-30.547365 - parent: 2 - - uid: 20161 - components: - - type: Transform - pos: 74.52456,-51.298523 - parent: 2 - - uid: 20163 - components: - - type: Transform - pos: 45.531628,-36.426903 - parent: 2 - - uid: 22581 - components: - - type: Transform - pos: -8.478019,-18.35876 - parent: 2 - - uid: 22601 - components: - - type: Transform - pos: -28.504988,-25.984083 - parent: 2 - - uid: 22604 - components: - - type: Transform - pos: 30.54152,-2.5033932 - parent: 2 -- proto: PetCarrier - entities: - - uid: 20164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 2 -- proto: PhoneInstrument - entities: - - uid: 20165 - components: - - type: Transform - pos: 7.478427,-15.438816 - parent: 2 - - uid: 20167 - components: - - type: Transform - pos: -8.522932,-51.390182 - parent: 2 - - uid: 20168 - components: - - type: Transform - pos: 11.499449,-12.320412 - parent: 2 - - uid: 26875 - components: - - type: Transform - pos: -1.4773743,-14.374928 - parent: 2 -- proto: PianoInstrument - entities: - - uid: 20169 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-8.5 - parent: 2 -- proto: Pickaxe - entities: - - uid: 10546 - components: - - type: Transform - pos: -43.166107,-36.3099 - parent: 2 - - uid: 18122 - components: - - type: Transform - pos: -23.507236,-34.40561 - parent: 2 - - uid: 20171 - components: - - type: Transform - pos: -28.5,-34.5 - parent: 2 - - uid: 26212 - components: - - type: Transform - pos: -43.454697,-36.408966 - parent: 2 -- proto: PillCanister - entities: - - uid: 8395 - components: - - type: Transform - pos: 76.54113,-58.522263 - parent: 2 - - uid: 20174 - components: - - type: Transform - pos: 11.687964,-33.82743 - parent: 2 - - uid: 20175 - components: - - type: Transform - pos: 11.422339,-33.82743 - parent: 2 - - uid: 20176 - components: - - type: Transform - pos: 11.562964,-33.92118 - parent: 2 -- proto: PillSpaceDrugs - entities: - - uid: 11105 - components: - - type: Transform - pos: 7.490184,-36.427925 - parent: 2 - - uid: 24752 - components: - - type: Transform - pos: 7.427684,-36.490425 - parent: 2 - - uid: 24757 - components: - - type: Transform - pos: 7.474559,-36.31855 - parent: 2 - - uid: 24758 - components: - - type: Transform - pos: 7.615184,-36.44355 - parent: 2 - - uid: 24759 - components: - - type: Transform - pos: 7.693309,-36.3498 - parent: 2 - - uid: 24768 - components: - - type: Transform - pos: 7.599559,-36.271675 - parent: 2 - - uid: 24769 - components: - - type: Transform - pos: 7.505809,-36.334175 - parent: 2 - - uid: 24770 - components: - - type: Transform - pos: 7.396434,-36.334175 - parent: 2 - - uid: 24771 - components: - - type: Transform - pos: 7.505809,-36.271675 - parent: 2 - - uid: 24772 - components: - - type: Transform - pos: 7.537059,-36.3498 - parent: 2 -- proto: PinpointerNuclear - entities: - - uid: 20177 - components: - - type: Transform - pos: 11.304271,-14.441936 - parent: 2 -- proto: PlantBGoneSpray - entities: - - uid: 20178 - components: - - type: Transform - pos: 48.767952,1.7352862 - parent: 2 -- proto: PlaqueAtmos - entities: - - uid: 20179 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 2 -- proto: PlasmaCanister - entities: - - uid: 9473 - components: - - type: Transform - pos: 74.5,-47.5 - parent: 2 - - uid: 14961 - components: - - type: Transform - pos: 26.5,-66.5 - parent: 2 - - uid: 17465 - components: - - type: Transform - pos: 14.5,-42.5 - parent: 2 - - uid: 19243 - components: - - type: Transform - pos: 11.5,-76.5 - parent: 2 - - uid: 30081 - components: - - type: Transform - pos: 29.5,38.5 - parent: 2 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 5682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-37.5 - parent: 2 - - uid: 5683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-37.5 - parent: 2 - - uid: 5684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-37.5 - parent: 2 - - uid: 5710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-37.5 - parent: 2 - - uid: 18775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-84.5 - parent: 2 - - uid: 18776 - components: - - type: Transform - pos: 19.5,-90.5 - parent: 2 - - uid: 18781 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-84.5 - parent: 2 - - uid: 18843 - components: - - type: Transform - pos: 17.5,-90.5 - parent: 2 - - uid: 20975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 2 - - uid: 26391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 2 - - uid: 28366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,43.5 - parent: 2 - - uid: 28368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,43.5 - parent: 2 - - uid: 28561 - components: - - type: Transform - pos: 18.5,43.5 - parent: 2 -- proto: PlasmaTankFilled - entities: - - uid: 20189 - components: - - type: Transform - pos: 7.5224895,-74.49767 - parent: 2 - - type: CMExplosionEffect -- proto: PlasmaWindoorSecureArmoryLocked - entities: - - uid: 3472 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 2 - - uid: 28367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,43.5 - parent: 2 -- proto: PlasmaWindoorSecureAtmosphericsLocked - entities: - - uid: 1026 - components: - - type: Transform - pos: 18.5,-90.5 - parent: 2 - - uid: 17008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-84.5 - parent: 2 -- proto: PlasmaWindoorSecureScienceLocked - entities: - - uid: 433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-37.5 - parent: 2 - - uid: 5711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-37.5 - parent: 2 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 13895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,31.5 - parent: 2 - - uid: 20192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-42.5 - parent: 2 -- proto: PlasticFlapsAirtightOpaque - entities: - - uid: 3057 - components: - - type: Transform - pos: -35.5,-33.5 - parent: 2 - - uid: 10194 - components: - - type: Transform - pos: -37.5,-31.5 - parent: 2 - - uid: 10198 - components: - - type: Transform - pos: -35.5,-31.5 - parent: 2 - - uid: 11538 - components: - - type: Transform - pos: -61.5,-19.5 - parent: 2 - - uid: 11561 - components: - - type: Transform - pos: -61.5,-21.5 - parent: 2 - - uid: 18108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-21.5 - parent: 2 - - uid: 19660 - components: - - type: Transform - pos: -37.5,-33.5 - parent: 2 - - uid: 20194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-21.5 - parent: 2 - - uid: 31885 - components: - - type: Transform - pos: -36.5,-39.5 - parent: 2 -- proto: PlayerStationAi - entities: - - uid: 8216 - components: - - type: Transform - pos: -30.5,5.5 - parent: 2 -- proto: PlushieLamp - entities: - - uid: 20198 - components: - - type: Transform - pos: 44.578045,-62.22757 - parent: 2 - - uid: 31887 - components: - - type: Transform - pos: 3.9720292,-34.962555 - parent: 2 -- proto: PlushieLizard - entities: - - uid: 31493 - components: - - type: MetaData - name: Нахуя вы медведя на сцену вывели?... - - type: Transform - pos: 59.53119,-75.51291 - parent: 2 -- proto: PlushieLizardMirrored - entities: - - uid: 9445 - components: - - type: Transform - pos: 77.51055,-28.382608 - parent: 2 - - uid: 31497 - components: - - type: MetaData - name: Начальникама, ну у нас же медведе фазбер, а медведя нет - - type: Transform - pos: 57.388393,-75.54416 - parent: 2 - - uid: 31498 - components: - - type: MetaData - name: Ему деньги нужны - - type: Transform - pos: 57.93527,-75.247284 - parent: 2 -- proto: PlushieRGBee - entities: - - uid: 20199 - components: - - type: Transform - pos: -21.53196,-58.55052 - parent: 2 -- proto: PlushieSmile - entities: - - uid: 8986 - components: - - type: Transform - pos: 77.5147,-27.434475 - parent: 2 -- proto: PortableFlasher - entities: - - uid: 3216 - components: - - type: Transform - pos: 1.5,37.5 - parent: 2 - - uid: 11336 - components: - - type: Transform - pos: 4.5,35.5 - parent: 2 - - uid: 24733 - components: - - type: Transform - pos: -1.5,45.5 - parent: 2 -- proto: PortableGeneratorJrPacman - entities: - - uid: 20212 - components: - - type: Transform - pos: -21.5,-7.5 - parent: 2 - - type: CMExplosionEffect - - uid: 20213 - components: - - type: Transform - pos: 42.5,7.5 - parent: 2 - - type: CMExplosionEffect - - uid: 20214 - components: - - type: Transform - pos: 65.5,7.5 - parent: 2 - - type: CMExplosionEffect - - uid: 20215 - components: - - type: Transform - pos: -48.5,21.5 - parent: 2 - - type: CMExplosionEffect - - uid: 20217 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 2 - - type: CMExplosionEffect - - uid: 20218 - components: - - type: Transform - pos: -7.5,-39.5 - parent: 2 - - type: CMExplosionEffect - - uid: 20219 - components: - - type: Transform - pos: -43.5,-16.5 - parent: 2 - - type: CMExplosionEffect - - uid: 20220 - components: - - type: Transform - pos: 43.5,9.5 - parent: 2 - - type: CMExplosionEffect - - uid: 20222 - components: - - type: Transform - pos: 46.5,-41.5 - parent: 2 - - type: CMExplosionEffect - - uid: 20354 - components: - - type: Transform - pos: -25.5,9.5 - parent: 2 - - type: CMExplosionEffect - - uid: 29823 - components: - - type: Transform - pos: -48.5,-32.5 - parent: 2 - - type: CMExplosionEffect -- proto: PortableGeneratorPacman - entities: - - uid: 5765 - components: - - type: Transform - pos: -65.5,12.5 - parent: 2 - - uid: 11170 - components: - - type: Transform - pos: -7.5,-62.5 - parent: 2 -- proto: PortableGeneratorSuperPacmanMachineCircuitboard - entities: - - uid: 20225 - components: - - type: Transform - pos: -13.537719,-37.43518 - parent: 2 -- proto: PortableScrubber - entities: - - uid: 14826 - components: - - type: Transform - pos: 11.5,-51.5 - parent: 2 - - uid: 14838 - components: - - type: Transform - pos: 11.5,-52.5 - parent: 2 - - uid: 20234 - components: - - type: Transform - pos: -20.5,-38.5 - parent: 2 - - uid: 20235 - components: - - type: Transform - pos: -49.5,-5.5 - parent: 2 - - uid: 20236 - components: - - type: Transform - pos: -49.5,-4.5 - parent: 2 - - uid: 20237 - components: - - type: Transform - pos: 1.5,-49.5 - parent: 2 - - uid: 20238 - components: - - type: Transform - pos: 1.5,-48.5 - parent: 2 -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 20242 - components: - - type: Transform - pos: 8.5,-45.5 - parent: 2 -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 20243 - components: - - type: Transform - pos: -19.5,41.5 - parent: 2 -- proto: PosterContrabandBountyHunters - entities: - - uid: 20244 - components: - - type: Transform - pos: -18.5,49.5 - parent: 2 -- proto: PosterContrabandBustyBackdoorExoBabes6 - entities: - - uid: 20245 - components: - - type: Transform - pos: 6.5,-37.5 - parent: 2 -- proto: PosterContrabandClown - entities: - - uid: 20246 - components: - - type: Transform - pos: 35.5,16.5 - parent: 2 -- proto: PosterContrabandEAT - entities: - - uid: 20247 - components: - - type: Transform - pos: -34.5,-44.5 - parent: 2 -- proto: PosterContrabandFreeDrone - entities: - - uid: 20248 - components: - - type: Transform - pos: -48.5,-5.5 - parent: 2 -- proto: PosterContrabandFreeTonto - entities: - - uid: 20249 - components: - - type: Transform - pos: -11.5,46.5 - parent: 2 -- proto: PosterContrabandGreyTide - entities: - - uid: 20250 - components: - - type: Transform - pos: -47.5,2.5 - parent: 2 - - uid: 20251 - components: - - type: Transform - pos: 41.5,-69.5 - parent: 2 -- proto: PosterContrabandHackingGuide - entities: - - uid: 20252 - components: - - type: Transform - pos: -41.5,6.5 - parent: 2 -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 20253 - components: - - type: Transform - pos: 10.5,-62.5 - parent: 2 -- proto: PosterContrabandLustyExomorph - entities: - - uid: 20255 - components: - - type: Transform - pos: 3.5,-37.5 - parent: 2 -- proto: PosterContrabandSyndicateRecruitment - entities: - - uid: 20259 - components: - - type: Transform - pos: -22.5,49.5 - parent: 2 -- proto: PosterContrabandTools - entities: - - uid: 20260 - components: - - type: Transform - pos: -39.5,6.5 - parent: 2 -- proto: PosterLegitAnatomyPoster - entities: - - uid: 20263 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 2 - - uid: 20264 - components: - - type: Transform - pos: 28.5,-27.5 - parent: 2 -- proto: PosterLegitBuild - entities: - - uid: 20265 - components: - - type: Transform - pos: 2.5,-50.5 - parent: 2 -- proto: PosterLegitCarpMount - entities: - - uid: 20266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-32.5 - parent: 2 -- proto: PosterLegitDickGumshue - entities: - - uid: 20268 - components: - - type: Transform - pos: 43.5,-64.5 - parent: 2 -- proto: PosterLegitIonRifle - entities: - - uid: 30383 - components: - - type: Transform - pos: -3.5,43.5 - parent: 2 -- proto: PosterLegitLoveIan - entities: - - uid: 20273 - components: - - type: Transform - pos: -10.5,-28.5 - parent: 2 -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 8133 - components: - - type: Transform - pos: -6.5,0.5 - parent: 2 - - uid: 18811 - components: - - type: Transform - pos: -6.5,8.5 - parent: 2 - - uid: 20274 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 2 - - uid: 20275 - components: - - type: Transform - pos: -14.5,-21.5 - parent: 2 - - uid: 20276 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 2 - - uid: 20277 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 2 - - uid: 20279 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 2 - - uid: 20280 - components: - - type: Transform - pos: 9.5,-28.5 - parent: 2 -- proto: PosterLegitNoERP - entities: - - uid: 20281 - components: - - type: Transform - pos: -22.5,46.5 - parent: 2 -- proto: PosterLegitPDAAd - entities: - - uid: 20283 - components: - - type: Transform - pos: -12.5,-26.5 - parent: 2 - - uid: 20284 - components: - - type: Transform - pos: -6.5,-25.5 - parent: 2 -- proto: PosterLegitPeriodicTable - entities: - - uid: 20285 - components: - - type: Transform - pos: 17.5,-35.5 - parent: 2 -- proto: PosterLegitSafetyInternals - entities: - - uid: 20287 - components: - - type: Transform - pos: 37.5,-29.5 - parent: 2 -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 20289 - components: - - type: Transform - pos: 17.5,-22.5 - parent: 2 - - uid: 26790 - components: - - type: Transform - pos: -15.5,29.5 - parent: 2 -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 20290 - components: - - type: Transform - pos: 10.5,-59.5 - parent: 2 -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 20291 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 2 -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 20292 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 2 -- proto: PosterLegitSafetyReport - entities: - - uid: 20294 - components: - - type: Transform - pos: -10.5,50.5 - parent: 2 -- proto: PosterLegitScience - entities: - - uid: 20295 - components: - - type: Transform - pos: 81.5,-50.5 - parent: 2 -- proto: PosterLegitSecWatch - entities: - - uid: 20296 - components: - - type: Transform - pos: 10.5,35.5 - parent: 2 - - uid: 20297 - components: - - type: Transform - pos: -10.5,53.5 - parent: 2 - - uid: 29986 - components: - - type: Transform - pos: 14.5,4.5 - parent: 2 -- proto: PosterLegitVacation - entities: - - uid: 20299 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 2 -- proto: PosterLegitWorkForAFuture - entities: - - uid: 20300 - components: - - type: Transform - pos: 54.5,-32.5 - parent: 2 -- proto: PottedPlant0 - entities: - - uid: 20302 - components: - - type: Transform - pos: 55.5,-39.5 - parent: 2 -- proto: PottedPlant1 - entities: - - uid: 20305 - components: - - type: Transform - pos: -33.5,-28.5 - parent: 2 -- proto: PottedPlant10 - entities: - - uid: 20306 - components: - - type: Transform - pos: 52.5,-8.5 - parent: 2 - - uid: 20308 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 2 -- proto: PottedPlant11 - entities: - - uid: 20310 - components: - - type: Transform - pos: -8.5,50.5 - parent: 2 -- proto: PottedPlant12 - entities: - - uid: 20312 - components: - - type: Transform - pos: -74.5,-3.5 - parent: 2 -- proto: PottedPlant14 - entities: - - uid: 20314 - components: - - type: Transform - pos: 65.5,-0.5 - parent: 2 -- proto: PottedPlant19 - entities: - - uid: 20316 - components: - - type: Transform - pos: -73.51865,8.204316 - parent: 2 - - uid: 20317 - components: - - type: Transform - pos: 60.5,-39.5 - parent: 2 -- proto: PottedPlant2 - entities: - - uid: 20318 - components: - - type: Transform - pos: 80.5,-52.5 - parent: 2 -- proto: PottedPlant21 - entities: - - uid: 20319 - components: - - type: Transform - pos: 34.5,-51.5 - parent: 2 -- proto: PottedPlant22 - entities: - - uid: 20321 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 2 -- proto: PottedPlant23 - entities: - - uid: 20322 - components: - - type: Transform - pos: 47.5,-36.5 - parent: 2 -- proto: PottedPlant24 - entities: - - uid: 20323 - components: - - type: Transform - pos: 34.5,-55.5 - parent: 2 - - uid: 20324 - components: - - type: Transform - pos: 49.5,-11.5 - parent: 2 -- proto: PottedPlant29 - entities: - - uid: 20325 - components: - - type: Transform - pos: 43.5,-63.5 - parent: 2 -- proto: PottedPlant3 - entities: - - uid: 20326 - components: - - type: Transform - pos: -20.5,-3.5 - parent: 2 - - uid: 20327 - components: - - type: Transform - pos: 46.5,-11.5 - parent: 2 -- proto: PottedPlant5 - entities: - - uid: 20328 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 2 - - uid: 20329 - components: - - type: Transform - pos: 37.493153,-34.77379 - parent: 2 -- proto: PottedPlantAlt2 - entities: - - uid: 11369 - components: - - type: Transform - pos: 21.5,8.5 - parent: 2 - - uid: 24511 - components: - - type: Transform - pos: 23.5,22.5 - parent: 2 - - uid: 26377 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 2 -- proto: PottedPlantBioluminscent - entities: - - uid: 20332 - components: - - type: Transform - pos: 42.5,-36.5 - parent: 2 -- proto: PottedPlantRandom - entities: - - uid: 13041 - components: - - type: Transform - pos: -58.5,5.5 - parent: 2 - - uid: 15413 - components: - - type: Transform - pos: 24.5,-23.5 - parent: 2 - - uid: 20041 - components: - - type: Transform - pos: -5.5,29.5 - parent: 2 - - uid: 20335 - components: - - type: Transform - pos: -72.5,-16.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 20336 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 20337 - components: - - type: Transform - pos: -10.5,-35.5 - parent: 2 - - uid: 20338 - components: - - type: Transform - pos: -10.5,-37.5 - parent: 2 - - uid: 20339 - components: - - type: Transform - pos: 37.5,-6.5 - parent: 2 - - uid: 20342 - components: - - type: Transform - pos: 29.5,-25.5 - parent: 2 - - uid: 20343 - components: - - type: Transform - pos: -20.5,-31.5 - parent: 2 - - uid: 20344 - components: - - type: Transform - pos: -23.5,-13.5 - parent: 2 - - uid: 20346 - components: - - type: Transform - pos: -61.5,3.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 20348 - components: - - type: Transform - pos: 13.5,-36.5 - parent: 2 - - uid: 20349 - components: - - type: Transform - pos: 68.5,-7.5 - parent: 2 - - uid: 20350 - components: - - type: Transform - pos: 37.5,-17.5 - parent: 2 - - uid: 20351 - components: - - type: Transform - pos: 27.5,3.5 - parent: 2 - - uid: 20353 - components: - - type: Transform - pos: -2.5,-63.5 - parent: 2 - - uid: 20355 - components: - - type: Transform - pos: 39.5,-21.5 - parent: 2 - - uid: 20356 - components: - - type: Transform - pos: -28.5,-22.5 - parent: 2 - - uid: 20357 - components: - - type: Transform - pos: 29.5,-2.5 - parent: 2 - - uid: 20358 - components: - - type: Transform - pos: 65.5,-10.5 - parent: 2 - - uid: 20359 - components: - - type: Transform - pos: 73.5,-10.5 - parent: 2 - - uid: 22688 - components: - - type: Transform - pos: 70.5,-0.5 - parent: 2 - - uid: 23534 - components: - - type: Transform - pos: -5.5,34.5 - parent: 2 - - uid: 24287 - components: - - type: Transform - pos: 67.5,-0.5 - parent: 2 - - uid: 24288 - components: - - type: Transform - pos: 70.5,4.5 - parent: 2 - - uid: 24289 - components: - - type: Transform - pos: 53.5,-0.5 - parent: 2 - - uid: 26138 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 2 - - uid: 29808 - components: - - type: Transform - pos: -3.5,15.5 - parent: 2 -- proto: PottedPlantRD - entities: - - uid: 9043 - components: - - type: Transform - pos: 59.5,-31.5 - parent: 2 -- proto: PowerCellMedium - entities: - - uid: 30165 - components: - - type: Transform - pos: 22.417862,41.86001 - parent: 2 - - type: CMExplosionEffect -- proto: PowerCellPotato - entities: - - uid: 20361 - components: - - type: Transform - pos: -18.541685,16.576048 - parent: 2 - - type: CMExplosionEffect -- proto: PowerCellRecharger - entities: - - uid: 20362 - components: - - type: Transform - pos: 37.5,-36.5 - parent: 2 - - uid: 20364 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 2 - - uid: 20366 - components: - - type: Transform - pos: -40.5,5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20368 - components: - - type: Transform - pos: -28.5,-26.5 - parent: 2 - - uid: 20369 - components: - - type: Transform - pos: -8.5,-34.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20370 - components: - - type: Transform - pos: -8.5,-38.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20371 - components: - - type: Transform - pos: 6.5,-55.5 - parent: 2 - - uid: 20372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-45.5 - parent: 2 - - uid: 20374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-40.5 - parent: 2 - - uid: 20375 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 2 - - uid: 20376 - components: - - type: Transform - pos: 38.5,-28.5 - parent: 2 - - uid: 20377 - components: - - type: Transform - pos: -18.5,16.5 - parent: 2 - - uid: 20378 - components: - - type: Transform - pos: -51.5,-6.5 - parent: 2 - - uid: 20380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-24.5 - parent: 2 - - uid: 20383 - components: - - type: Transform - pos: 6.5,32.5 - parent: 2 - - uid: 20384 - components: - - type: Transform - pos: -5.5,-33.5 - parent: 2 - - uid: 20385 - components: - - type: Transform - pos: -8.5,-56.5 - parent: 2 - - uid: 20386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-23.5 - parent: 2 - - uid: 20387 - components: - - type: Transform - pos: -33.5,-22.5 - parent: 2 - - uid: 20392 - components: - - type: Transform - pos: -31.5,-27.5 - parent: 2 - - uid: 20394 - components: - - type: Transform - pos: -26.5,-36.5 - parent: 2 - - uid: 20395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,2.5 - parent: 2 - - uid: 29411 - components: - - type: Transform - pos: 71.5,-16.5 - parent: 2 - - uid: 30155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,43.5 - parent: 2 - - uid: 31974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-29.5 - parent: 2 -- proto: PowerCellSmall - entities: - - uid: 20396 - components: - - type: Transform - pos: 6.5212584,32.97149 - parent: 2 - - type: CMExplosionEffect - - uid: 30166 - components: - - type: Transform - pos: 22.589737,41.531883 - parent: 2 - - type: CMExplosionEffect -- proto: PowerDrill - entities: - - uid: 9887 - components: - - type: Transform - pos: 59.547203,-32.3528 - parent: 2 -- proto: PoweredLEDSmallLight - entities: - - uid: 29145 - components: - - type: Transform - pos: 5.5,6.5 - parent: 2 - - uid: 31295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,8.5 - parent: 2 - - uid: 31300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 2 -- proto: Poweredlight - entities: - - uid: 553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-24.5 - parent: 2 - - uid: 566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,31.5 - parent: 2 - - uid: 674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-31.5 - parent: 2 - - uid: 809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-31.5 - parent: 2 - - uid: 1025 - components: - - type: Transform - pos: -41.5,-36.5 - parent: 2 - - uid: 1030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-35.5 - parent: 2 - - uid: 1194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 2 - - uid: 1195 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 2 - - uid: 1196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 2 - - uid: 1197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-10.5 - parent: 2 - - uid: 1198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-10.5 - parent: 2 - - uid: 1293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-17.5 - parent: 2 - - uid: 1613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,40.5 - parent: 2 - - uid: 4232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-72.5 - parent: 2 - - uid: 4275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,44.5 - parent: 2 - - uid: 4286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-70.5 - parent: 2 - - uid: 4289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-68.5 - parent: 2 - - uid: 4498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,48.5 - parent: 2 - - uid: 5425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-33.5 - parent: 2 - - uid: 5432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-36.5 - parent: 2 - - uid: 5536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,18.5 - parent: 2 - - uid: 5633 - components: - - type: Transform - pos: -2.5,-29.5 - parent: 2 - - uid: 5703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-38.5 - parent: 2 - - uid: 5704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-19.5 - parent: 2 - - uid: 5705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-34.5 - parent: 2 - - uid: 7756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-73.5 - parent: 2 - - uid: 7757 - components: - - type: Transform - pos: 16.5,-74.5 - parent: 2 - - uid: 7947 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,18.5 - parent: 2 - - uid: 8132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,52.5 - parent: 2 - - uid: 9000 - components: - - type: Transform - pos: 73.5,-26.5 - parent: 2 - - uid: 9265 - components: - - type: Transform - pos: -8.5,37.5 - parent: 2 - - uid: 10187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,12.5 - parent: 2 - - uid: 10207 - components: - - type: Transform - pos: -5.5,32.5 - parent: 2 - - uid: 10209 - components: - - type: Transform - pos: 24.5,22.5 - parent: 2 - - uid: 11058 - components: - - type: Transform - pos: -5.5,-61.5 - parent: 2 - - uid: 11477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-47.5 - parent: 2 - - uid: 11514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-19.5 - parent: 2 - - uid: 11562 - components: - - type: Transform - pos: 79.5,-42.5 - parent: 2 - - uid: 11563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-47.5 - parent: 2 - - uid: 11564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-38.5 - parent: 2 - - uid: 11565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-38.5 - parent: 2 - - uid: 11659 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 2 - - uid: 11703 - components: - - type: Transform - pos: 7.5,-27.5 - parent: 2 - - uid: 11898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-75.5 - parent: 2 - - uid: 11899 - components: - - type: Transform - pos: 6.5,-72.5 - parent: 2 - - uid: 12030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-70.5 - parent: 2 - - uid: 12804 - components: - - type: Transform - pos: 59.5,-35.5 - parent: 2 - - uid: 13966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,40.5 - parent: 2 - - uid: 14795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-46.5 - parent: 2 - - uid: 14978 - components: - - type: Transform - pos: -12.5,-62.5 - parent: 2 - - uid: 15484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 2 - - uid: 16327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-22.5 - parent: 2 - - uid: 16390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-31.5 - parent: 2 - - uid: 16536 - components: - - type: Transform - pos: 70.5,4.5 - parent: 2 - - uid: 17418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,14.5 - parent: 2 - - uid: 17454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-84.5 - parent: 2 - - uid: 17455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-30.5 - parent: 2 - - uid: 17456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,11.5 - parent: 2 - - uid: 17494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-49.5 - parent: 2 - - uid: 17495 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-43.5 - parent: 2 - - uid: 17498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,8.5 - parent: 2 - - uid: 17501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-46.5 - parent: 2 - - uid: 17502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-46.5 - parent: 2 - - uid: 17503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-55.5 - parent: 2 - - uid: 17504 - components: - - type: Transform - pos: 17.5,-56.5 - parent: 2 - - uid: 17507 - components: - - type: Transform - pos: 19.5,-43.5 - parent: 2 - - uid: 17508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-54.5 - parent: 2 - - uid: 17510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-69.5 - parent: 2 - - uid: 17512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-61.5 - parent: 2 - - uid: 17769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-64.5 - parent: 2 - - uid: 17915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-66.5 - parent: 2 - - uid: 17921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-76.5 - parent: 2 - - uid: 18109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-72.5 - parent: 2 - - uid: 18964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-38.5 - parent: 2 - - uid: 19463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,16.5 - parent: 2 - - uid: 19689 - components: - - type: Transform - pos: 56.5,-20.5 - parent: 2 - - uid: 19736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-41.5 - parent: 2 - - uid: 20009 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,25.5 - parent: 2 - - uid: 20379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-80.5 - parent: 2 - - uid: 20399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-35.5 - parent: 2 - - uid: 20400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,37.5 - parent: 2 - - uid: 20403 - components: - - type: Transform - pos: -76.5,-3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20404 - components: - - type: Transform - pos: 10.5,28.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 - parent: 2 - - uid: 20406 - components: - - type: Transform - pos: -9.5,-68.5 - parent: 2 - - uid: 20407 - components: - - type: Transform - pos: 42.5,-22.5 - parent: 2 - - uid: 20408 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-16.5 - parent: 2 - - uid: 20409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-10.5 - parent: 2 - - uid: 20410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-7.5 - parent: 2 - - uid: 20411 - components: - - type: Transform - pos: 83.5,-13.5 - parent: 2 - - uid: 20413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-0.5 - parent: 2 - - uid: 20414 - components: - - type: Transform - pos: 60.5,-2.5 - parent: 2 - - uid: 20415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-5.5 - parent: 2 - - uid: 20416 - components: - - type: Transform - pos: 80.5,-13.5 - parent: 2 - - uid: 20417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-11.5 - parent: 2 - - uid: 20418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,-7.5 - parent: 2 - - uid: 20419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-1.5 - parent: 2 - - uid: 20420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-2.5 - parent: 2 - - uid: 20422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-28.5 - parent: 2 - - uid: 20423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-16.5 - parent: 2 - - uid: 20424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-3.5 - parent: 2 - - uid: 20425 - components: - - type: Transform - pos: 80.5,4.5 - parent: 2 - - uid: 20426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-10.5 - parent: 2 - - uid: 20429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20433 - components: - - type: Transform - pos: -8.5,-11.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-19.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20437 - components: - - type: Transform - pos: 65.5,3.5 - parent: 2 - - uid: 20438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-18.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20439 - components: - - type: Transform - pos: 15.5,1.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-10.5 - parent: 2 - - uid: 20441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-10.5 - parent: 2 - - uid: 20442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 2 - - uid: 20443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,12.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,14.5 - parent: 2 - - uid: 20446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,8.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,8.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-18.5 - parent: 2 - - uid: 20452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-10.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20454 - components: - - type: Transform - pos: 31.5,19.5 - parent: 2 - - uid: 20455 - components: - - type: Transform - pos: 35.5,19.5 - parent: 2 - - uid: 20457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,22.5 - parent: 2 - - uid: 20459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,13.5 - parent: 2 - - uid: 20460 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,22.5 - parent: 2 - - uid: 20461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,42.5 - parent: 2 - - uid: 20462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 2 - - uid: 20463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,42.5 - parent: 2 - - uid: 20464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 2 - - uid: 20466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-31.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20467 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-10.5 - parent: 2 - - uid: 20469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,40.5 - parent: 2 - - uid: 20472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,26.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20474 - components: - - type: Transform - pos: 5.5,28.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,23.5 - parent: 2 - - uid: 20476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,24.5 - parent: 2 - - uid: 20478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,19.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,33.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,36.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,24.5 - parent: 2 - - uid: 20483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,24.5 - parent: 2 - - uid: 20484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,41.5 - parent: 2 - - uid: 20485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,41.5 - parent: 2 - - uid: 20486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,30.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,41.5 - parent: 2 - - uid: 20488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,41.5 - parent: 2 - - uid: 20489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,47.5 - parent: 2 - - uid: 20490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-2.5 - parent: 2 - - uid: 20495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,20.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20496 - components: - - type: Transform - pos: -21.5,24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20497 - components: - - type: Transform - pos: 38.5,-4.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20502 - components: - - type: Transform - pos: 46.5,-2.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20504 - components: - - type: Transform - pos: 57.5,3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20505 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-31.5 - parent: 2 - - uid: 20507 - components: - - type: Transform - pos: -9.5,-21.5 - parent: 2 - - uid: 20508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-27.5 - parent: 2 - - uid: 20518 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,1.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,4.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20521 - components: - - type: Transform - pos: -59.5,5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20524 - components: - - type: Transform - pos: -69.5,-3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,18.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20526 - components: - - type: Transform - pos: -69.5,10.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20527 - components: - - type: Transform - pos: -75.5,10.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,0.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20531 - components: - - type: Transform - pos: -65.5,-13.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-4.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20535 - components: - - type: Transform - pos: -62.5,1.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-14.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,13.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20538 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-2.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20541 - components: - - type: Transform - pos: -36.5,-0.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-2.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20544 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,19.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20547 - components: - - type: Transform - pos: 9.5,21.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20548 - components: - - type: Transform - pos: -3.5,21.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,19.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20550 - components: - - type: Transform - pos: 73.5,-12.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20551 - components: - - type: Transform - pos: 60.5,-12.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20552 - components: - - type: Transform - pos: 54.5,-12.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-14.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20555 - components: - - type: Transform - pos: 41.5,-12.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20556 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20557 - components: - - type: Transform - pos: 36.5,-22.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-23.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20560 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20564 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-13.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20566 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20568 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-21.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-31.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20571 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20572 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-31.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-27.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-21.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-15.5 - parent: 2 - - uid: 20582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-14.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-6.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-6.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-6.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-6.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20595 - components: - - type: Transform - pos: -31.5,-24.5 - parent: 2 - - uid: 20597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-23.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20599 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-35.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,3.5 - parent: 2 - - uid: 20602 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-31.5 - parent: 2 - - uid: 20603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-3.5 - parent: 2 - - uid: 20605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-23.5 - parent: 2 - - uid: 20606 - components: - - type: Transform - pos: -30.5,-18.5 - parent: 2 - - uid: 20607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 2 - - uid: 20608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-7.5 - parent: 2 - - uid: 20609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 2 - - uid: 20610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-35.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20611 - components: - - type: Transform - pos: -7.5,-33.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-39.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-48.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20615 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-57.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20616 - components: - - type: Transform - pos: 5.5,-40.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-76.5 - parent: 2 - - uid: 20624 - components: - - type: Transform - pos: -17.5,-72.5 - parent: 2 - - uid: 20627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-75.5 - parent: 2 - - uid: 20629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-62.5 - parent: 2 - - uid: 20630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-72.5 - parent: 2 - - uid: 20632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-56.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-69.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20636 - components: - - type: Transform - pos: -16.5,-68.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-75.5 - parent: 2 - - uid: 20642 - components: - - type: Transform - pos: 42.5,-16.5 - parent: 2 - - uid: 20643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-13.5 - parent: 2 - - uid: 20644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-22.5 - parent: 2 - - uid: 20645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-48.5 - parent: 2 - - uid: 20646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-20.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20649 - components: - - type: Transform - pos: 32.5,-16.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20650 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-14.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-18.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-43.5 - parent: 2 - - uid: 20654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-49.5 - parent: 2 - - uid: 20655 - components: - - type: Transform - pos: 40.5,-31.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-39.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20657 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-52.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20658 - components: - - type: Transform - pos: 45.5,-51.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-59.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-59.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20661 - components: - - type: Transform - pos: 41.5,-55.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-30.5 - parent: 2 - - uid: 20663 - components: - - type: Transform - pos: 36.5,-38.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-43.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-29.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-34.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-33.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20668 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-36.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-22.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20673 - components: - - type: Transform - pos: 50.5,-26.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-57.5 - parent: 2 - - uid: 20675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-57.5 - parent: 2 - - uid: 20676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-53.5 - parent: 2 - - uid: 20677 - components: - - type: Transform - pos: -13.5,-49.5 - parent: 2 - - uid: 20678 - components: - - type: Transform - pos: 9.5,-51.5 - parent: 2 - - uid: 20680 - components: - - type: Transform - pos: 34.5,-34.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20681 - components: - - type: Transform - pos: 1.5,-65.5 - parent: 2 - - uid: 20682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-25.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20684 - components: - - type: Transform - pos: 2.5,-59.5 - parent: 2 - - uid: 20688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-11.5 - parent: 2 - - uid: 20689 - components: - - type: Transform - pos: 64.5,-12.5 - parent: 2 - - uid: 20690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-19.5 - parent: 2 - - uid: 20691 - components: - - type: Transform - pos: 31.5,-4.5 - parent: 2 - - uid: 20692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-54.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20693 - components: - - type: Transform - pos: 80.5,-49.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-26.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-30.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20697 - components: - - type: Transform - pos: 60.5,-26.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20698 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-18.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-20.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20703 - components: - - type: Transform - pos: 61.5,-39.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-42.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-47.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20708 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-53.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20709 - components: - - type: Transform - pos: 73.5,-49.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-38.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-16.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-27.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-14.5 - parent: 2 - - uid: 20718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-6.5 - parent: 2 - - uid: 20720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-16.5 - parent: 2 - - uid: 20721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,-14.5 - parent: 2 - - uid: 20722 - components: - - type: Transform - pos: 53.5,-39.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-38.5 - parent: 2 - - uid: 20724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-40.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20726 - components: - - type: Transform - pos: 5.5,-29.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-27.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20729 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20730 - components: - - type: Transform - pos: -10.5,-7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 2 - - uid: 20732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-22.5 - parent: 2 - - uid: 20735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-25.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-61.5 - parent: 2 - - uid: 20738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-53.5 - parent: 2 - - uid: 20740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,47.5 - parent: 2 - - uid: 20741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,0.5 - parent: 2 - - uid: 20742 - components: - - type: Transform - pos: -28.5,-29.5 - parent: 2 - - uid: 20743 - components: - - type: Transform - pos: 73.5,5.5 - parent: 2 - - uid: 20745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,37.5 - parent: 2 - - uid: 20746 - components: - - type: Transform - pos: 30.5,-27.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20747 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20748 - components: - - type: Transform - pos: 54.5,-26.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-11.5 - parent: 2 - - uid: 20750 - components: - - type: Transform - pos: -19.5,-15.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-27.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-26.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-25.5 - parent: 2 - - uid: 20757 - components: - - type: Transform - pos: -19.5,45.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,50.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20759 - components: - - type: Transform - pos: -14.5,45.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20761 - components: - - type: Transform - pos: -9.5,41.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20763 - components: - - type: Transform - pos: -8.5,53.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,0.5 - parent: 2 - - uid: 20767 - components: - - type: Transform - pos: 36.5,-45.5 - parent: 2 - - uid: 20770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-36.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-33.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-67.5 - parent: 2 - - uid: 20780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-50.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-11.5 - parent: 2 - - uid: 20783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-24.5 - parent: 2 - - uid: 20784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-10.5 - parent: 2 - - uid: 20785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,34.5 - parent: 2 - - uid: 20786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,40.5 - parent: 2 - - uid: 20787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,46.5 - parent: 2 - - uid: 20788 - components: - - type: Transform - pos: 24.5,38.5 - parent: 2 - - uid: 20791 - components: - - type: Transform - pos: -44.5,-28.5 - parent: 2 - - uid: 20792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-32.5 - parent: 2 - - uid: 20795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-5.5 - parent: 2 - - uid: 20796 - components: - - type: Transform - pos: -21.5,8.5 - parent: 2 - - uid: 20797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 2 - - uid: 20798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,5.5 - parent: 2 - - uid: 20799 - components: - - type: Transform - pos: -18.5,3.5 - parent: 2 - - uid: 20800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,4.5 - parent: 2 - - uid: 21147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,27.5 - parent: 2 - - uid: 21437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-81.5 - parent: 2 - - uid: 21440 - components: - - type: Transform - pos: -41.5,-0.5 - parent: 2 - - uid: 21486 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-23.5 - parent: 2 - - uid: 21635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-17.5 - parent: 2 - - uid: 21646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 2 - - uid: 22187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-70.5 - parent: 2 - - uid: 22210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-19.5 - parent: 2 - - uid: 22914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-76.5 - parent: 2 - - uid: 23547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,4.5 - parent: 2 - - uid: 23564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,7.5 - parent: 2 - - uid: 23565 - components: - - type: Transform - pos: -50.5,-0.5 - parent: 2 - - uid: 23568 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 2 - - uid: 23603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,1.5 - parent: 2 - - uid: 23604 - components: - - type: Transform - pos: -9.5,10.5 - parent: 2 - - uid: 23609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 2 - - uid: 23872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,16.5 - parent: 2 - - uid: 23890 - components: - - type: Transform - pos: -7.5,17.5 - parent: 2 - - uid: 23891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,14.5 - parent: 2 - - uid: 24262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,39.5 - parent: 2 - - uid: 24356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-10.5 - parent: 2 - - uid: 24451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,37.5 - parent: 2 - - uid: 24452 - components: - - type: Transform - pos: 3.5,43.5 - parent: 2 - - uid: 24504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-67.5 - parent: 2 - - uid: 24570 - components: - - type: Transform - pos: -5.5,37.5 - parent: 2 - - uid: 24587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-28.5 - parent: 2 - - uid: 24618 - components: - - type: Transform - pos: -24.5,-64.5 - parent: 2 - - uid: 25044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-87.5 - parent: 2 - - uid: 25087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-88.5 - parent: 2 - - uid: 25088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-92.5 - parent: 2 - - uid: 25089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-84.5 - parent: 2 - - uid: 25236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 2 - - uid: 25377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,33.5 - parent: 2 - - uid: 25413 - components: - - type: Transform - pos: -11.5,33.5 - parent: 2 - - uid: 25875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-86.5 - parent: 2 - - uid: 25898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-74.5 - parent: 2 - - uid: 25899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-80.5 - parent: 2 - - uid: 27558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-82.5 - parent: 2 - - uid: 27650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-90.5 - parent: 2 - - uid: 27750 - components: - - type: Transform - pos: 21.5,-89.5 - parent: 2 - - uid: 28083 - components: - - type: Transform - pos: 18.5,-82.5 - parent: 2 - - uid: 28205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-85.5 - parent: 2 - - uid: 28298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-80.5 - parent: 2 - - uid: 28509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-92.5 - parent: 2 - - uid: 28755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-55.5 - parent: 2 - - uid: 28795 - components: - - type: Transform - pos: -35.5,-18.5 - parent: 2 - - uid: 29764 - components: - - type: Transform - pos: -16.5,-0.5 - parent: 2 - - uid: 29841 - components: - - type: Transform - pos: -41.5,-20.5 - parent: 2 - - uid: 29842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-26.5 - parent: 2 - - uid: 29843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-90.5 - parent: 2 - - uid: 30080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-55.5 - parent: 2 - - uid: 30092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-51.5 - parent: 2 - - uid: 30093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-59.5 - parent: 2 - - uid: 31293 - components: - - type: Transform - pos: 28.5,38.5 - parent: 2 - - uid: 31707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,24.5 - parent: 2 - - uid: 31842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,23.5 - parent: 2 - - uid: 31886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 2 - - uid: 31895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-33.5 - parent: 2 - - uid: 32029 - components: - - type: Transform - pos: -30.5,7.5 - parent: 2 - - uid: 32030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,6.5 - parent: 2 - - uid: 32031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,6.5 - parent: 2 - - uid: 32032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,9.5 - parent: 2 - - uid: 32144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-53.5 - parent: 2 - - uid: 32145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-44.5 - parent: 2 -- proto: PoweredlightCyan - entities: - - uid: 24351 - components: - - type: Transform - pos: -1.5,40.5 - parent: 2 - - uid: 24425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,35.5 - parent: 2 -- proto: PoweredlightExterior - entities: - - uid: 20805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,18.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,-23.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,27.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20810 - components: - - type: Transform - pos: 93.5,-32.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-56.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20812 - components: - - type: Transform - pos: 80.5,-69.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-60.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-64.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 21880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,19.5 - parent: 2 - - uid: 21881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,12.5 - parent: 2 -- proto: PoweredlightLED - entities: - - uid: 5884 - components: - - type: Transform - pos: 7.5,-80.5 - parent: 2 - - uid: 14398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-79.5 - parent: 2 - - uid: 18584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-79.5 - parent: 2 - - uid: 20820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-59.5 - parent: 2 - - uid: 20821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-59.5 - parent: 2 - - uid: 20823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredLightPostSmall - entities: - - uid: 20825 - components: - - type: Transform - pos: 31.5,13.5 - parent: 2 - - uid: 20826 - components: - - type: Transform - pos: 35.5,13.5 - parent: 2 - - uid: 21883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,21.5 - parent: 2 - - uid: 21884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,21.5 - parent: 2 - - uid: 29160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,51.5 - parent: 2 - - uid: 29161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,51.5 - parent: 2 - - uid: 29840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,48.5 - parent: 2 - - uid: 29910 - components: - - type: Transform - pos: -48.5,-43.5 - parent: 2 -- proto: PoweredlightRed - entities: - - uid: 23424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,46.5 - parent: 2 - - uid: 24450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,42.5 - parent: 2 - - uid: 30932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,24.5 - parent: 2 -- proto: PoweredSmallLight - entities: - - uid: 5560 - components: - - type: Transform - pos: 79.5,-26.5 - parent: 2 - - uid: 5667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-44.5 - parent: 2 - - uid: 5676 - components: - - type: Transform - pos: 81.5,-32.5 - parent: 2 - - uid: 5680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-27.5 - parent: 2 - - uid: 7946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-9.5 - parent: 2 - - uid: 8130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-3.5 - parent: 2 - - uid: 9443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-30.5 - parent: 2 - - uid: 9604 - components: - - type: Transform - pos: -45.5,-36.5 - parent: 2 - - uid: 11569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-35.5 - parent: 2 - - uid: 11579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-35.5 - parent: 2 - - uid: 15871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,21.5 - parent: 2 - - uid: 15880 - components: - - type: Transform - pos: 22.5,32.5 - parent: 2 - - uid: 16534 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,24.5 - parent: 2 - - uid: 17875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,35.5 - parent: 2 - - uid: 19248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-7.5 - parent: 2 - - uid: 19392 - components: - - type: Transform - pos: 70.5,12.5 - parent: 2 - - uid: 19655 - components: - - type: Transform - pos: 38.5,3.5 - parent: 2 - - uid: 19679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,10.5 - parent: 2 - - uid: 19862 - components: - - type: Transform - pos: 52.5,5.5 - parent: 2 - - uid: 20010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,27.5 - parent: 2 - - uid: 20154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 2 - - uid: 20267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,31.5 - parent: 2 - - uid: 20828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,8.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 2 - - uid: 20832 - components: - - type: Transform - pos: 78.5,-19.5 - parent: 2 - - uid: 20833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-2.5 - parent: 2 - - uid: 20834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-4.5 - parent: 2 - - uid: 20835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-3.5 - parent: 2 - - uid: 20836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,4.5 - parent: 2 - - uid: 20838 - components: - - type: Transform - pos: 26.5,0.5 - parent: 2 - - uid: 20839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,3.5 - parent: 2 - - uid: 20840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 2 - - uid: 20841 - components: - - type: Transform - pos: 29.5,0.5 - parent: 2 - - uid: 20842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-1.5 - parent: 2 - - uid: 20843 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20844 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20845 - components: - - type: Transform - pos: 88.5,-3.5 - parent: 2 - - uid: 20846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,13.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-48.5 - parent: 2 - - uid: 20850 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,12.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20852 - components: - - type: Transform - pos: 12.5,15.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,15.5 - parent: 2 - - uid: 20856 - components: - - type: Transform - pos: 37.5,26.5 - parent: 2 - - uid: 20857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,15.5 - parent: 2 - - uid: 20860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,22.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-78.5 - parent: 2 - - uid: 20864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,4.5 - parent: 2 - - uid: 20865 - components: - - type: Transform - pos: 72.5,15.5 - parent: 2 - - uid: 20866 - components: - - type: Transform - pos: 24.5,6.5 - parent: 2 - - uid: 20867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,22.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-1.5 - parent: 2 - - uid: 20871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,0.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,18.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,16.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,19.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,6.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,12.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,11.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20885 - components: - - type: Transform - pos: -80.5,-3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,22.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-72.5 - parent: 2 - - uid: 20890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,19.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,18.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20894 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20895 - components: - - type: Transform - pos: -55.5,18.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,10.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,14.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20899 - components: - - type: Transform - pos: -46.5,22.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20902 - components: - - type: Transform - pos: -17.5,10.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,16.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-19.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20908 - components: - - type: Transform - pos: -59.5,-15.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-18.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20912 - components: - - type: Transform - pos: -40.5,-18.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-6.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,15.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-35.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-38.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20929 - components: - - type: Transform - pos: -32.5,-43.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-44.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-48.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20932 - components: - - type: Transform - pos: -14.5,-59.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20933 - components: - - type: Transform - pos: -30.5,-60.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-54.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20935 - components: - - type: Transform - pos: -24.5,-60.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-62.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-73.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-55.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-58.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-56.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20943 - components: - - type: Transform - pos: -37.5,-60.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-77.5 - parent: 2 - - uid: 20945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-42.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-73.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20954 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-43.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20957 - components: - - type: Transform - pos: -19.5,-68.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-52.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20959 - components: - - type: Transform - pos: 43.5,-38.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20960 - components: - - type: Transform - pos: 46.5,-38.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-65.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20963 - components: - - type: Transform - pos: 44.5,-62.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20964 - components: - - type: Transform - pos: 45.5,-70.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-69.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20966 - components: - - type: Transform - pos: 34.5,-59.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-43.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-46.5 - parent: 2 - - uid: 20969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-36.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20972 - components: - - type: Transform - pos: 85.5,-44.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20973 - components: - - type: Transform - pos: 85.5,-47.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-56.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20976 - components: - - type: Transform - pos: 65.5,-55.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20977 - components: - - type: Transform - pos: 85.5,-40.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-26.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-64.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-57.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20992 - components: - - type: Transform - pos: -39.5,-48.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20993 - components: - - type: Transform - pos: 24.5,4.5 - parent: 2 - - uid: 20994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-47.5 - parent: 2 - - uid: 20995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 2 - - uid: 21005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-77.5 - parent: 2 - - uid: 21006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-77.5 - parent: 2 - - uid: 21007 - components: - - type: Transform - pos: 45.5,0.5 - parent: 2 - - uid: 21009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,50.5 - parent: 2 - - uid: 21014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-29.5 - parent: 2 - - uid: 21015 - components: - - type: Transform - pos: -56.5,-27.5 - parent: 2 - - uid: 21016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-19.5 - parent: 2 - - uid: 21018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,7.5 - parent: 2 - - uid: 21019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-24.5 - parent: 2 - - uid: 21523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,47.5 - parent: 2 - - uid: 21888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,9.5 - parent: 2 - - uid: 21889 - components: - - type: Transform - pos: -62.5,14.5 - parent: 2 - - uid: 22300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-39.5 - parent: 2 - - uid: 22324 - components: - - type: Transform - pos: 26.5,-38.5 - parent: 2 - - uid: 23514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-24.5 - parent: 2 - - uid: 23892 - components: - - type: Transform - pos: -12.5,13.5 - parent: 2 - - uid: 24009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-7.5 - parent: 2 - - uid: 24092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,47.5 - parent: 2 - - uid: 25092 - components: - - type: Transform - pos: 31.5,-70.5 - parent: 2 - - uid: 25145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-9.5 - parent: 2 - - uid: 25151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-1.5 - parent: 2 - - uid: 25152 - components: - - type: Transform - pos: 88.5,-11.5 - parent: 2 - - uid: 25880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-72.5 - parent: 2 - - uid: 26197 - components: - - type: Transform - pos: 32.5,36.5 - parent: 2 - - uid: 28297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-87.5 - parent: 2 - - uid: 29912 - components: - - type: Transform - pos: -49.5,-37.5 - parent: 2 - - uid: 30086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-66.5 - parent: 2 - - uid: 30087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-64.5 - parent: 2 - - uid: 30088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-62.5 - parent: 2 - - uid: 30089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-48.5 - parent: 2 - - uid: 30090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-46.5 - parent: 2 - - uid: 30091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-44.5 - parent: 2 - - uid: 30638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,33.5 - parent: 2 - - uid: 30741 - components: - - type: Transform - pos: -28.5,36.5 - parent: 2 - - uid: 30743 - components: - - type: Transform - pos: -31.5,45.5 - parent: 2 - - uid: 31334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,28.5 - parent: 2 - - uid: 31335 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 31344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,28.5 - parent: 2 - - uid: 31785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-12.5 - parent: 2 - - uid: 31787 - components: - - type: Transform - pos: -41.5,-10.5 - parent: 2 - - uid: 32033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 2 - - uid: 32034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,3.5 - parent: 2 - - uid: 32035 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,3.5 - parent: 2 -- proto: PoweredSmallLightEmpty - entities: - - uid: 21020 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-54.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 21021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-58.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredStrobeLightSiren - entities: - - uid: 21022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-14.5 - parent: 2 -- proto: PrinterDoc - entities: - - uid: 243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,15.5 - parent: 2 - - uid: 697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,15.5 - parent: 2 - - uid: 3348 - components: - - type: Transform - pos: 35.5,-41.5 - parent: 2 - - uid: 10241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-15.5 - parent: 2 - - uid: 13507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-32.5 - parent: 2 - - uid: 17367 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 2 - - uid: 17969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,30.5 - parent: 2 - - uid: 20221 - components: - - type: Transform - pos: -2.5,-11.5 - parent: 2 - - uid: 21024 - components: - - type: Transform - pos: 60.5,-4.5 - parent: 2 - - uid: 21025 - components: - - type: Transform - pos: 8.5,-51.5 - parent: 2 - - uid: 21027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-16.5 - parent: 2 - - uid: 21028 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 2 - - uid: 21032 - components: - - type: Transform - pos: 59.5,-10.5 - parent: 2 - - uid: 21033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-20.5 - parent: 2 - - uid: 21034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-23.5 - parent: 2 - - uid: 24293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-24.5 - parent: 2 -- proto: Protolathe - entities: - - uid: 21037 - components: - - type: Transform - pos: 69.5,-21.5 - parent: 2 - - uid: 21761 - components: - - type: Transform - pos: 5.5,-61.5 - parent: 2 -- proto: PsychBed - entities: - - uid: 21038 - components: - - type: Transform - pos: 12.5,-36.5 - parent: 2 -- proto: PuddleVomit - entities: - - uid: 21039 - components: - - type: Transform - pos: -54.5,14.5 - parent: 2 - - uid: 21040 - components: - - type: Transform - pos: -36.5,-54.5 - parent: 2 - - uid: 21041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-54.5 - parent: 2 - - uid: 21042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-58.5 - parent: 2 -- proto: Rack - entities: - - uid: 158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-46.5 - parent: 2 - - uid: 2527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-18.5 - parent: 2 - - uid: 3510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-33.5 - parent: 2 - - uid: 4244 - components: - - type: Transform - pos: -1.5,40.5 - parent: 2 - - uid: 4252 - components: - - type: Transform - pos: -1.5,35.5 - parent: 2 - - uid: 4295 - components: - - type: Transform - pos: -0.5,40.5 - parent: 2 - - uid: 4332 - components: - - type: Transform - pos: -0.5,35.5 - parent: 2 - - uid: 6209 - components: - - type: Transform - pos: -5.5,-61.5 - parent: 2 - - uid: 7068 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 2 - - uid: 7845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-33.5 - parent: 2 - - uid: 7966 - components: - - type: Transform - pos: 31.5,-52.5 - parent: 2 - - uid: 10124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,19.5 - parent: 2 - - uid: 10163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,4.5 - parent: 2 - - uid: 10746 - components: - - type: Transform - pos: 79.5,-2.5 - parent: 2 - - uid: 12528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,35.5 - parent: 2 - - uid: 13607 - components: - - type: Transform - pos: -1.5,38.5 - parent: 2 - - uid: 14517 - components: - - type: Transform - pos: -2.5,35.5 - parent: 2 - - uid: 16329 - components: - - type: Transform - pos: 59.5,-29.5 - parent: 2 - - uid: 17066 - components: - - type: Transform - pos: -2.5,40.5 - parent: 2 - - uid: 17314 - components: - - type: Transform - pos: 85.5,-4.5 - parent: 2 - - uid: 19360 - components: - - type: Transform - pos: -2.5,47.5 - parent: 2 - - uid: 19387 - components: - - type: Transform - pos: 67.5,8.5 - parent: 2 - - uid: 19405 - components: - - type: Transform - pos: 78.5,7.5 - parent: 2 - - uid: 20231 - components: - - type: Transform - pos: 50.5,-68.5 - parent: 2 - - uid: 21044 - components: - - type: Transform - pos: -5.5,-57.5 - parent: 2 - - uid: 21047 - components: - - type: Transform - pos: 48.5,7.5 - parent: 2 - - uid: 21048 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-46.5 - parent: 2 - - uid: 21049 - components: - - type: Transform - pos: 51.5,-43.5 - parent: 2 - - uid: 21050 - components: - - type: Transform - pos: 55.5,-51.5 - parent: 2 - - uid: 21054 - components: - - type: Transform - pos: 44.5,-40.5 - parent: 2 - - uid: 21057 - components: - - type: Transform - pos: 32.5,-16.5 - parent: 2 - - uid: 21058 - components: - - type: Transform - pos: 86.5,-55.5 - parent: 2 - - uid: 21062 - components: - - type: Transform - pos: 10.5,24.5 - parent: 2 - - uid: 21064 - components: - - type: Transform - pos: -8.5,53.5 - parent: 2 - - uid: 21065 - components: - - type: Transform - pos: 18.5,43.5 - parent: 2 - - uid: 21069 - components: - - type: Transform - pos: -44.5,14.5 - parent: 2 - - uid: 21070 - components: - - type: Transform - pos: 39.5,6.5 - parent: 2 - - uid: 21071 - components: - - type: Transform - pos: 35.5,-0.5 - parent: 2 - - uid: 21081 - components: - - type: Transform - pos: 58.5,19.5 - parent: 2 - - uid: 21082 - components: - - type: Transform - pos: 46.5,13.5 - parent: 2 - - uid: 21085 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 21086 - components: - - type: Transform - pos: 48.5,11.5 - parent: 2 - - uid: 21087 - components: - - type: Transform - pos: 47.5,11.5 - parent: 2 - - uid: 21088 - components: - - type: Transform - pos: 48.5,20.5 - parent: 2 - - uid: 21091 - components: - - type: Transform - pos: -65.5,18.5 - parent: 2 - - uid: 21093 - components: - - type: Transform - pos: -48.5,23.5 - parent: 2 - - uid: 21094 - components: - - type: Transform - pos: -46.5,22.5 - parent: 2 - - uid: 21095 - components: - - type: Transform - pos: -45.5,22.5 - parent: 2 - - uid: 21096 - components: - - type: Transform - pos: -45.5,21.5 - parent: 2 - - uid: 21098 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 2 - - uid: 21099 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 2 - - uid: 21100 - components: - - type: Transform - pos: -49.5,-7.5 - parent: 2 - - uid: 21101 - components: - - type: Transform - pos: 32.5,-18.5 - parent: 2 - - uid: 21102 - components: - - type: Transform - pos: -32.5,-10.5 - parent: 2 - - uid: 21103 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 2 - - uid: 21104 - components: - - type: Transform - pos: -31.5,-11.5 - parent: 2 - - uid: 21105 - components: - - type: Transform - pos: -21.5,-36.5 - parent: 2 - - uid: 21106 - components: - - type: Transform - pos: -21.5,-40.5 - parent: 2 - - uid: 21107 - components: - - type: Transform - pos: -36.5,-62.5 - parent: 2 - - uid: 21108 - components: - - type: Transform - pos: -28.5,-34.5 - parent: 2 - - uid: 21109 - components: - - type: Transform - pos: -34.5,-63.5 - parent: 2 - - uid: 21111 - components: - - type: Transform - pos: -18.5,-64.5 - parent: 2 - - uid: 21112 - components: - - type: Transform - pos: -34.5,-60.5 - parent: 2 - - uid: 21113 - components: - - type: Transform - pos: -18.5,-65.5 - parent: 2 - - uid: 21114 - components: - - type: Transform - pos: -24.5,-43.5 - parent: 2 - - uid: 21115 - components: - - type: Transform - pos: -25.5,-43.5 - parent: 2 - - uid: 21116 - components: - - type: Transform - pos: -26.5,-43.5 - parent: 2 - - uid: 21117 - components: - - type: Transform - pos: -29.5,-45.5 - parent: 2 - - uid: 21118 - components: - - type: Transform - pos: -4.5,-35.5 - parent: 2 - - uid: 21119 - components: - - type: Transform - pos: -5.5,-35.5 - parent: 2 - - uid: 21120 - components: - - type: Transform - pos: -6.5,-35.5 - parent: 2 - - uid: 21121 - components: - - type: Transform - pos: -4.5,-37.5 - parent: 2 - - uid: 21122 - components: - - type: Transform - pos: -5.5,-37.5 - parent: 2 - - uid: 21123 - components: - - type: Transform - pos: -6.5,-37.5 - parent: 2 - - uid: 21124 - components: - - type: Transform - pos: -5.5,-39.5 - parent: 2 - - uid: 21125 - components: - - type: Transform - pos: -6.5,-39.5 - parent: 2 - - uid: 21126 - components: - - type: Transform - pos: -13.5,-35.5 - parent: 2 - - uid: 21127 - components: - - type: Transform - pos: -13.5,-36.5 - parent: 2 - - uid: 21128 - components: - - type: Transform - pos: -13.5,-37.5 - parent: 2 - - uid: 21131 - components: - - type: Transform - pos: -5.5,-45.5 - parent: 2 - - uid: 21132 - components: - - type: Transform - pos: 3.5,-55.5 - parent: 2 - - uid: 21133 - components: - - type: Transform - pos: 47.5,-38.5 - parent: 2 - - uid: 21134 - components: - - type: Transform - pos: 15.5,-34.5 - parent: 2 - - uid: 21136 - components: - - type: Transform - pos: 47.5,-71.5 - parent: 2 - - uid: 21137 - components: - - type: Transform - pos: 84.5,-48.5 - parent: 2 - - uid: 21138 - components: - - type: Transform - pos: 88.5,-27.5 - parent: 2 - - uid: 21139 - components: - - type: Transform - pos: 82.5,-63.5 - parent: 2 - - uid: 21142 - components: - - type: Transform - pos: 65.5,-52.5 - parent: 2 - - uid: 21143 - components: - - type: Transform - pos: 65.5,-53.5 - parent: 2 - - uid: 21144 - components: - - type: Transform - pos: 75.5,-54.5 - parent: 2 - - uid: 21145 - components: - - type: Transform - pos: 86.5,-27.5 - parent: 2 - - uid: 21146 - components: - - type: Transform - pos: 86.5,-26.5 - parent: 2 - - uid: 21148 - components: - - type: Transform - pos: 3.5,-57.5 - parent: 2 - - uid: 21149 - components: - - type: Transform - pos: 43.5,-62.5 - parent: 2 - - uid: 21150 - components: - - type: Transform - pos: -36.5,-48.5 - parent: 2 - - uid: 21153 - components: - - type: Transform - pos: -17.5,51.5 - parent: 2 - - uid: 21154 - components: - - type: Transform - pos: -4.5,-48.5 - parent: 2 - - uid: 21155 - components: - - type: Transform - pos: 80.5,-49.5 - parent: 2 - - uid: 21159 - components: - - type: Transform - pos: -21.5,6.5 - parent: 2 - - uid: 21160 - components: - - type: Transform - pos: -21.5,8.5 - parent: 2 - - uid: 21161 - components: - - type: Transform - pos: -21.5,5.5 - parent: 2 - - uid: 21162 - components: - - type: Transform - pos: -16.5,7.5 - parent: 2 - - uid: 23227 - components: - - type: Transform - pos: 9.5,32.5 - parent: 2 - - uid: 23431 - components: - - type: Transform - pos: 51.5,-68.5 - parent: 2 - - uid: 23567 - components: - - type: Transform - pos: 1.5,45.5 - parent: 2 - - uid: 23569 - components: - - type: Transform - pos: 1.5,46.5 - parent: 2 - - uid: 23571 - components: - - type: Transform - pos: 1.5,47.5 - parent: 2 - - uid: 24364 - components: - - type: Transform - pos: 1.5,-24.5 - parent: 2 - - uid: 24390 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 2 - - uid: 24727 - components: - - type: Transform - pos: -0.5,42.5 - parent: 2 - - uid: 24736 - components: - - type: Transform - pos: -0.5,47.5 - parent: 2 - - uid: 24834 - components: - - type: Transform - pos: -1.5,47.5 - parent: 2 - - uid: 29805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,16.5 - parent: 2 - - uid: 29828 - components: - - type: Transform - pos: -49.5,-27.5 - parent: 2 - - uid: 30426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,33.5 - parent: 2 - - uid: 30433 - components: - - type: Transform - pos: -31.5,45.5 - parent: 2 - - uid: 30749 - components: - - type: Transform - pos: -1.5,42.5 - parent: 2 - - uid: 31348 - components: - - type: Transform - pos: 22.5,28.5 - parent: 2 - - uid: 32109 - components: - - type: Transform - pos: -24.5,-16.5 - parent: 2 - - uid: 32110 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 2 - - uid: 32111 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 2 -- proto: RadAutoInjector - entities: - - uid: 21163 - components: - - type: Transform - pos: -13.584658,29.500202 - parent: 2 -- proto: RadiationCollector - entities: - - uid: 21165 - components: - - type: Transform - pos: -7.5,-33.5 - parent: 2 - - uid: 21166 - components: - - type: Transform - pos: -6.5,-33.5 - parent: 2 -- proto: RadiationCollectorFullTank - entities: - - uid: 19361 - components: - - type: Transform - pos: 3.5,-77.5 - parent: 2 - - uid: 19410 - components: - - type: Transform - pos: -6.5,-77.5 - parent: 2 - - uid: 19444 - components: - - type: Transform - pos: 4.5,-77.5 - parent: 2 - - uid: 19596 - components: - - type: Transform - pos: 5.5,-77.5 - parent: 2 - - uid: 19663 - components: - - type: Transform - pos: -5.5,-77.5 - parent: 2 - - uid: 19926 - components: - - type: Transform - pos: -4.5,-77.5 - parent: 2 - - uid: 20633 - components: - - type: Transform - pos: 17.5,-85.5 - parent: 2 - - uid: 25069 - components: - - type: Transform - pos: 17.5,-89.5 - parent: 2 - - uid: 27581 - components: - - type: Transform - pos: 19.5,-85.5 - parent: 2 - - uid: 27595 - components: - - type: Transform - pos: 19.5,-89.5 - parent: 2 -- proto: RadioHandheld - entities: - - uid: 21173 - components: - - type: Transform - pos: 9.443931,-54.34355 - parent: 2 - - uid: 21174 - components: - - type: Transform - pos: 3.5,23.5 - parent: 2 - - uid: 21175 - components: - - type: Transform - pos: -56.5,3.5000002 - parent: 2 - - uid: 21176 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 2 - - uid: 21177 - components: - - type: Transform - pos: -8.455454,-57.408157 - parent: 2 - - uid: 21178 - components: - - type: Transform - pos: 9.568931,-54.452927 - parent: 2 - - uid: 21182 - components: - - type: Transform - pos: -0.48545742,-64.36208 - parent: 2 -- proto: RadioHandheldSecurity - entities: - - uid: 21183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.523987,-19.17214 - parent: 2 - - uid: 21184 - components: - - type: Transform - pos: 61.386955,-24.277788 - parent: 2 - - uid: 30759 - components: - - type: Transform - pos: 10.352665,41.57276 - parent: 2 - - uid: 30760 - components: - - type: Transform - pos: 10.571415,41.807137 - parent: 2 - - uid: 30761 - components: - - type: Transform - pos: 10.665165,41.57276 - parent: 2 -- proto: Railing - entities: - - uid: 79 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,4.5 - parent: 2 - - uid: 405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,6.5 - parent: 2 - - uid: 452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,6.5 - parent: 2 - - uid: 467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,9.5 - parent: 2 - - uid: 513 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,10.5 - parent: 2 - - uid: 681 - components: - - type: Transform - pos: 59.5,-69.5 - parent: 2 - - uid: 856 - components: - - type: Transform - pos: 58.5,-69.5 - parent: 2 - - uid: 859 - components: - - type: Transform - pos: 57.5,-69.5 - parent: 2 - - uid: 1292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,53.5 - parent: 2 - - uid: 2635 - components: - - type: Transform - pos: -11.5,2.5 - parent: 2 - - uid: 2641 - components: - - type: Transform - pos: -7.5,5.5 - parent: 2 - - uid: 2643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,7.5 - parent: 2 - - uid: 2648 - components: - - type: Transform - pos: -12.5,2.5 - parent: 2 - - uid: 5508 - components: - - type: Transform - pos: -11.5,51.5 - parent: 2 - - uid: 5523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,53.5 - parent: 2 - - uid: 6781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,6.5 - parent: 2 - - uid: 8153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,7.5 - parent: 2 - - uid: 8154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,5.5 - parent: 2 - - uid: 8219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,6.5 - parent: 2 - - uid: 8220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,8.5 - parent: 2 - - uid: 8222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,5.5 - parent: 2 - - uid: 11136 - components: - - type: Transform - pos: -8.5,8.5 - parent: 2 - - uid: 11154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,9.5 - parent: 2 - - uid: 11756 - components: - - type: Transform - pos: -9.5,8.5 - parent: 2 - - uid: 11760 - components: - - type: Transform - pos: -7.5,8.5 - parent: 2 - - uid: 11839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,10.5 - parent: 2 - - uid: 11841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,1.5 - parent: 2 - - uid: 12283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,3.5 - parent: 2 - - uid: 14519 - components: - - type: Transform - pos: -15.5,51.5 - parent: 2 - - uid: 18133 - components: - - type: Transform - pos: 68.5,9.5 - parent: 2 - - uid: 19395 - components: - - type: Transform - pos: 70.5,9.5 - parent: 2 - - uid: 19396 - components: - - type: Transform - pos: 67.5,9.5 - parent: 2 - - uid: 20055 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 2 - - uid: 21029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-22.5 - parent: 2 - - uid: 21185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-9.5 - parent: 2 - - uid: 21186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-73.5 - parent: 2 - - uid: 21187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-73.5 - parent: 2 - - uid: 21188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-0.5 - parent: 2 - - uid: 21189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-6.5 - parent: 2 - - uid: 21190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-6.5 - parent: 2 - - uid: 21191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-11.5 - parent: 2 - - uid: 21193 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 2 - - uid: 21194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,12.5 - parent: 2 - - uid: 21195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,12.5 - parent: 2 - - uid: 21196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,13.5 - parent: 2 - - uid: 21197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,13.5 - parent: 2 - - uid: 21199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-11.5 - parent: 2 - - uid: 21200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-0.5 - parent: 2 - - uid: 21201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-9.5 - parent: 2 - - uid: 21202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-11.5 - parent: 2 - - uid: 21204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-10.5 - parent: 2 - - uid: 21205 - components: - - type: Transform - pos: -25.5,-56.5 - parent: 2 - - uid: 21206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-21.5 - parent: 2 - - uid: 21207 - components: - - type: Transform - pos: -26.5,-56.5 - parent: 2 - - uid: 21208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 2 - - uid: 21209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-8.5 - parent: 2 - - uid: 21210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 2 - - uid: 21211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,12.5 - parent: 2 - - uid: 21212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,0.5 - parent: 2 - - uid: 21213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-23.5 - parent: 2 - - uid: 21214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-9.5 - parent: 2 - - uid: 21215 - components: - - type: Transform - pos: -24.5,-56.5 - parent: 2 - - uid: 21216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-51.5 - parent: 2 - - uid: 21217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-51.5 - parent: 2 - - uid: 21218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-11.5 - parent: 2 - - uid: 21219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-10.5 - parent: 2 - - uid: 21220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-10.5 - parent: 2 - - uid: 21221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-10.5 - parent: 2 - - uid: 21222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-9.5 - parent: 2 - - uid: 21223 - components: - - type: Transform - pos: 73.5,-3.5 - parent: 2 - - uid: 21224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 2 - - uid: 21499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,8.5 - parent: 2 - - uid: 21500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,7.5 - parent: 2 - - uid: 23845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,37.5 - parent: 2 - - uid: 28864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 2 - - uid: 28876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 2 - - uid: 28977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 2 - - uid: 29031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 2 - - uid: 29102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 2 - - uid: 29110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 2 - - uid: 29112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-6.5 - parent: 2 - - uid: 29117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 2 - - uid: 29118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-7.5 - parent: 2 - - uid: 29751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-36.5 - parent: 2 - - uid: 29753 - components: - - type: Transform - pos: -33.5,-27.5 - parent: 2 - - uid: 29754 - components: - - type: Transform - pos: -32.5,-27.5 - parent: 2 - - uid: 29755 - components: - - type: Transform - pos: -31.5,-27.5 - parent: 2 - - uid: 30327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,37.5 - parent: 2 - - uid: 30423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,23.5 - parent: 2 - - uid: 30788 - components: - - type: Transform - pos: 61.5,22.5 - parent: 2 - - uid: 30799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,24.5 - parent: 2 - - uid: 30803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,23.5 - parent: 2 - - uid: 30806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,25.5 - parent: 2 - - uid: 30807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,26.5 - parent: 2 - - uid: 30808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,27.5 - parent: 2 - - uid: 30809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,22.5 - parent: 2 - - uid: 30810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,21.5 - parent: 2 - - uid: 30813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,26.5 - parent: 2 -- proto: RailingCorner - entities: - - uid: 130 - components: - - type: Transform - pos: 60.5,-69.5 - parent: 2 - - uid: 189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 2 - - uid: 222 - components: - - type: Transform - pos: -12.5,8.5 - parent: 2 - - uid: 686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,5.5 - parent: 2 - - uid: 875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-69.5 - parent: 2 - - uid: 2651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,5.5 - parent: 2 - - uid: 4880 - components: - - type: Transform - pos: -14.5,51.5 - parent: 2 - - uid: 4893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,51.5 - parent: 2 - - uid: 8005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-43.5 - parent: 2 - - uid: 9770 - components: - - type: Transform - pos: -11.5,3.5 - parent: 2 - - uid: 12284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,3.5 - parent: 2 - - uid: 20141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-24.5 - parent: 2 - - uid: 20347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-22.5 - parent: 2 - - uid: 21231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-8.5 - parent: 2 - - uid: 21232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-7.5 - parent: 2 - - uid: 21233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-3.5 - parent: 2 - - uid: 21234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,22.5 - parent: 2 - - uid: 21236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-9.5 - parent: 2 - - uid: 21237 - components: - - type: Transform - pos: 70.5,-7.5 - parent: 2 - - uid: 21239 - components: - - type: Transform - pos: 74.5,-3.5 - parent: 2 - - uid: 21240 - components: - - type: Transform - pos: 74.5,-3.5 - parent: 2 - - uid: 21242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,21.5 - parent: 2 - - uid: 22664 - components: - - type: Transform - pos: 32.5,-22.5 - parent: 2 - - uid: 29750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-36.5 - parent: 2 - - uid: 29752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-36.5 - parent: 2 - - uid: 29903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-43.5 - parent: 2 - - uid: 29905 - components: - - type: Transform - pos: -48.5,-40.5 - parent: 2 - - uid: 30416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,22.5 - parent: 2 - - uid: 30417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,24.5 - parent: 2 - - uid: 30424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,21.5 - parent: 2 - - uid: 30425 - components: - - type: Transform - pos: -31.5,25.5 - parent: 2 - - uid: 30791 - components: - - type: Transform - pos: 62.5,22.5 - parent: 2 - - uid: 30812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,26.5 - parent: 2 -- proto: RailingCornerSmall - entities: - - uid: 21244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,0.5 - parent: 2 - - uid: 21245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,12.5 - parent: 2 - - uid: 21246 - components: - - type: Transform - pos: 35.5,12.5 - parent: 2 -- proto: RailingRound - entities: - - uid: 7750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,48.5 - parent: 2 - - uid: 16470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,8.5 - parent: 2 - - uid: 21247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,13.5 - parent: 2 - - uid: 21248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,13.5 - parent: 2 - - uid: 21879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,21.5 - parent: 2 - - uid: 21882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,21.5 - parent: 2 - - uid: 29159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,51.5 - parent: 2 - - uid: 29162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,51.5 - parent: 2 -- proto: RandomArcade - entities: - - uid: 21250 - components: - - type: Transform - pos: 55.5,20.5 - parent: 2 -- proto: RandomArtifactSpawner - entities: - - uid: 432 - components: - - type: Transform - pos: 79.5,-39.5 - parent: 2 - - uid: 5246 - components: - - type: Transform - pos: 77.5,-38.5 - parent: 2 - - uid: 5689 - components: - - type: Transform - pos: 77.5,-37.5 - parent: 2 -- proto: RandomArtifactSpawner20 - entities: - - uid: 21254 - components: - - type: Transform - pos: -39.5,-24.5 - parent: 2 - - uid: 21255 - components: - - type: Transform - pos: -39.5,-22.5 - parent: 2 -- proto: RandomBoard - entities: - - uid: 21256 - components: - - type: Transform - pos: -4.5,-37.5 - parent: 2 - - uid: 21257 - components: - - type: Transform - pos: -5.5,-35.5 - parent: 2 - - uid: 21258 - components: - - type: Transform - pos: -6.5,-35.5 - parent: 2 - - uid: 21259 - components: - - type: Transform - pos: -6.5,-37.5 - parent: 2 - - uid: 21260 - components: - - type: Transform - pos: -5.5,-37.5 - parent: 2 - - uid: 21261 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 2 - - uid: 21262 - components: - - type: Transform - pos: -4.5,-35.5 - parent: 2 - - uid: 21263 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 2 -- proto: RandomDrinkBottle - entities: - - uid: 17313 - components: - - type: Transform - pos: 85.5,-2.5 - parent: 2 - - uid: 23562 - components: - - type: Transform - pos: 85.5,-0.5 - parent: 2 -- proto: RandomDrinkGlass - entities: - - uid: 12912 - components: - - type: Transform - pos: 73.5,-28.5 - parent: 2 - - uid: 21265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,42.5 - parent: 2 - - uid: 21266 - components: - - type: Transform - pos: 72.5,-28.5 - parent: 2 - - uid: 21267 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 2 - - uid: 21268 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 2 - - uid: 21269 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 21270 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 2 - - uid: 21271 - components: - - type: Transform - pos: 22.5,-2.5 - parent: 2 -- proto: RandomFoodMeal - entities: - - uid: 21272 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 2 - - uid: 21273 - components: - - type: Transform - pos: 34.5,-10.5 - parent: 2 - - uid: 21274 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 2 - - uid: 21275 - components: - - type: Transform - pos: 11.5,35.5 - parent: 2 - - uid: 21276 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 2 - - uid: 21277 - components: - - type: Transform - pos: 19.5,-7.5 - parent: 2 - - uid: 21278 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 2 - - uid: 21279 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 2 - - uid: 21280 - components: - - type: Transform - pos: 24.5,-8.5 - parent: 2 -- proto: RandomFoodSingle - entities: - - uid: 8995 - components: - - type: Transform - pos: 71.5,-28.5 - parent: 2 - - uid: 11933 - components: - - type: Transform - pos: 73.5,-29.5 - parent: 2 - - uid: 21281 - components: - - type: Transform - pos: 71.5,-29.5 - parent: 2 - - uid: 21282 - components: - - type: Transform - pos: 24.5,-6.5 - parent: 2 - - uid: 21283 - components: - - type: Transform - pos: 30.5,-8.5 - parent: 2 - - uid: 21284 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 2 -- proto: RandomInstruments - entities: - - uid: 5094 - components: - - type: Transform - pos: 55.5,17.5 - parent: 2 - - uid: 18914 - components: - - type: Transform - pos: 13.5,15.5 - parent: 2 - - uid: 21287 - components: - - type: Transform - pos: 35.5,19.5 - parent: 2 - - uid: 21288 - components: - - type: Transform - pos: 34.5,19.5 - parent: 2 - - uid: 21289 - components: - - type: Transform - pos: 34.5,19.5 - parent: 2 - - uid: 21290 - components: - - type: Transform - pos: 35.5,19.5 - parent: 2 - - uid: 21291 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 2 -- proto: RandomPainting - entities: - - uid: 21292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,45.5 - parent: 2 -- proto: RandomPosterAny - entities: - - uid: 21293 - components: - - type: Transform - pos: 52.5,-48.5 - parent: 2 - - uid: 21294 - components: - - type: Transform - pos: 61.5,-44.5 - parent: 2 - - uid: 21296 - components: - - type: Transform - pos: 67.5,-70.5 - parent: 2 - - uid: 21298 - components: - - type: Transform - pos: -40.5,-17.5 - parent: 2 - - uid: 21299 - components: - - type: Transform - pos: -53.5,-13.5 - parent: 2 - - uid: 21300 - components: - - type: Transform - pos: -51.5,12.5 - parent: 2 - - uid: 21301 - components: - - type: Transform - pos: -44.5,8.5 - parent: 2 - - uid: 21305 - components: - - type: Transform - pos: 3.5,16.5 - parent: 2 - - uid: 21306 - components: - - type: Transform - pos: 10.5,16.5 - parent: 2 - - uid: 21307 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 2 - - uid: 21308 - components: - - type: Transform - pos: -19.5,-41.5 - parent: 2 - - uid: 21309 - components: - - type: Transform - pos: -30.5,-45.5 - parent: 2 - - uid: 21310 - components: - - type: Transform - pos: -19.5,-52.5 - parent: 2 - - uid: 21311 - components: - - type: Transform - pos: -30.5,-50.5 - parent: 2 - - uid: 21312 - components: - - type: Transform - pos: -30.5,-57.5 - parent: 2 - - uid: 21313 - components: - - type: Transform - pos: -30.5,-62.5 - parent: 2 - - uid: 21315 - components: - - type: Transform - pos: -18.5,-46.5 - parent: 2 - - uid: 21316 - components: - - type: Transform - pos: 33.5,-58.5 - parent: 2 - - uid: 21317 - components: - - type: Transform - pos: 33.5,-61.5 - parent: 2 - - uid: 21318 - components: - - type: Transform - pos: 34.5,-66.5 - parent: 2 - - uid: 21319 - components: - - type: Transform - pos: 41.5,-67.5 - parent: 2 - - uid: 21320 - components: - - type: Transform - pos: 50.5,-61.5 - parent: 2 - - uid: 21321 - components: - - type: Transform - pos: 48.5,-48.5 - parent: 2 - - uid: 21322 - components: - - type: Transform - pos: 48.5,-40.5 - parent: 2 - - uid: 21323 - components: - - type: Transform - pos: 48.5,-19.5 - parent: 2 - - uid: 21324 - components: - - type: Transform - pos: 64.5,-63.5 - parent: 2 - - uid: 21325 - components: - - type: Transform - pos: 67.5,-57.5 - parent: 2 - - uid: 21327 - components: - - type: Transform - pos: 75.5,-62.5 - parent: 2 - - uid: 21328 - components: - - type: Transform - pos: 72.5,-62.5 - parent: 2 - - uid: 21329 - components: - - type: Transform - pos: 83.5,-56.5 - parent: 2 - - uid: 21330 - components: - - type: Transform - pos: 83.5,-53.5 - parent: 2 - - uid: 21331 - components: - - type: Transform - pos: 83.5,-40.5 - parent: 2 - - uid: 21332 - components: - - type: Transform - pos: 82.5,-34.5 - parent: 2 - - uid: 21333 - components: - - type: Transform - pos: 84.5,-30.5 - parent: 2 - - uid: 21334 - components: - - type: Transform - pos: 87.5,-25.5 - parent: 2 - - uid: 21335 - components: - - type: Transform - pos: 77.5,-18.5 - parent: 2 - - uid: 21336 - components: - - type: Transform - pos: 59.5,7.5 - parent: 2 - - uid: 21337 - components: - - type: Transform - pos: 64.5,12.5 - parent: 2 - - uid: 21338 - components: - - type: Transform - pos: 67.5,15.5 - parent: 2 - - uid: 21339 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - - uid: 21340 - components: - - type: Transform - pos: 54.5,16.5 - parent: 2 - - uid: 21341 - components: - - type: Transform - pos: 47.5,9.5 - parent: 2 - - uid: 21342 - components: - - type: Transform - pos: 51.5,6.5 - parent: 2 - - uid: 21343 - components: - - type: Transform - pos: 44.5,9.5 - parent: 2 - - uid: 21345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-15.5 - parent: 2 - - uid: 21346 - components: - - type: Transform - pos: -16.5,52.5 - parent: 2 - - uid: 21347 - components: - - type: Transform - pos: 54.5,11.5 - parent: 2 - - uid: 21348 - components: - - type: Transform - pos: 29.5,5.5 - parent: 2 - - uid: 21349 - components: - - type: Transform - pos: 38.5,4.5 - parent: 2 - - uid: 21350 - components: - - type: Transform - pos: 40.5,23.5 - parent: 2 - - uid: 31420 - components: - - type: Transform - pos: 21.5,20.5 - parent: 2 - - uid: 31421 - components: - - type: Transform - pos: 26.5,26.5 - parent: 2 -- proto: RandomPosterContraband - entities: - - uid: 21351 - components: - - type: Transform - pos: -3.5,23.5 - parent: 2 - - uid: 21352 - components: - - type: Transform - pos: -7.5,24.5 - parent: 2 - - uid: 21353 - components: - - type: Transform - pos: 66.5,-72.5 - parent: 2 - - uid: 21354 - components: - - type: Transform - pos: -60.5,13.5 - parent: 2 - - uid: 21355 - components: - - type: Transform - pos: -60.5,15.5 - parent: 2 -- proto: RandomPosterLegit - entities: - - uid: 19929 - components: - - type: Transform - pos: 9.5,29.5 - parent: 2 - - uid: 21090 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 2 - - uid: 21156 - components: - - type: Transform - pos: 37.5,-11.5 - parent: 2 - - uid: 21356 - components: - - type: Transform - pos: 64.5,-51.5 - parent: 2 - - uid: 21357 - components: - - type: Transform - pos: 50.5,-44.5 - parent: 2 - - uid: 21358 - components: - - type: Transform - pos: 58.5,-42.5 - parent: 2 - - uid: 21359 - components: - - type: Transform - pos: 11.5,26.5 - parent: 2 - - uid: 21361 - components: - - type: Transform - pos: 9.5,22.5 - parent: 2 - - uid: 21362 - components: - - type: Transform - pos: -15.5,21.5 - parent: 2 - - uid: 21365 - components: - - type: Transform - pos: 7.5,18.5 - parent: 2 - - uid: 21366 - components: - - type: Transform - pos: -62.5,3.5 - parent: 2 - - uid: 21367 - components: - - type: Transform - pos: -71.5,11.5 - parent: 2 - - uid: 21368 - components: - - type: Transform - pos: -76.5,11.5 - parent: 2 - - uid: 21369 - components: - - type: Transform - pos: -66.5,-7.5 - parent: 2 - - uid: 21370 - components: - - type: Transform - pos: -62.5,-7.5 - parent: 2 - - uid: 21372 - components: - - type: Transform - pos: -53.5,-7.5 - parent: 2 - - uid: 21373 - components: - - type: Transform - pos: -58.5,-14.5 - parent: 2 - - uid: 21374 - components: - - type: Transform - pos: -44.5,-16.5 - parent: 2 - - uid: 21376 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 2 - - uid: 21377 - components: - - type: Transform - pos: -35.5,-4.5 - parent: 2 - - uid: 21378 - components: - - type: Transform - pos: -36.5,4.5 - parent: 2 - - uid: 21379 - components: - - type: Transform - pos: -56.5,-1.5 - parent: 2 - - uid: 21380 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 2 - - uid: 21381 - components: - - type: Transform - pos: 17.5,-24.5 - parent: 2 - - uid: 21382 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 2 - - uid: 21384 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 2 - - uid: 21385 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 2 - - uid: 21386 - components: - - type: Transform - pos: -14.5,-10.5 - parent: 2 - - uid: 21387 - components: - - type: Transform - pos: -6.5,-28.5 - parent: 2 - - uid: 21388 - components: - - type: Transform - pos: 52.5,-3.5 - parent: 2 - - uid: 21389 - components: - - type: Transform - pos: 58.5,4.5 - parent: 2 - - uid: 21390 - components: - - type: Transform - pos: 75.5,-17.5 - parent: 2 - - uid: 21391 - components: - - type: Transform - pos: 60.5,-38.5 - parent: 2 - - uid: 21392 - components: - - type: Transform - pos: 37.5,-59.5 - parent: 2 - - uid: 21393 - components: - - type: Transform - pos: -4.5,-32.5 - parent: 2 - - uid: 21394 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 2 - - uid: 21395 - components: - - type: Transform - pos: -23.5,-4.5 - parent: 2 - - uid: 21399 - components: - - type: Transform - pos: 1.5,15.5 - parent: 2 - - uid: 21400 - components: - - type: Transform - pos: 17.5,-1.5 - parent: 2 - - uid: 21401 - components: - - type: Transform - pos: 17.5,-2.5 - parent: 2 - - uid: 21402 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 2 - - uid: 21403 - components: - - type: Transform - pos: 17.5,-5.5 - parent: 2 - - uid: 21404 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 2 - - uid: 21405 - components: - - type: Transform - pos: 14.5,46.5 - parent: 2 - - uid: 21406 - components: - - type: Transform - pos: -18.5,6.5 - parent: 2 - - uid: 21407 - components: - - type: Transform - pos: -24.5,6.5 - parent: 2 - - uid: 31397 - components: - - type: Transform - pos: 24.5,23.5 - parent: 2 - - uid: 31398 - components: - - type: Transform - pos: 22.5,21.5 - parent: 2 - - uid: 31403 - components: - - type: Transform - pos: 16.5,16.5 - parent: 2 -- proto: RandomSoap - entities: - - uid: 10959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 2 -- proto: RandomSpawner100 - entities: - - uid: 10569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-45.5 - parent: 2 - - uid: 10572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-45.5 - parent: 2 - - uid: 21504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-46.5 - parent: 2 -- proto: RandomVending - entities: - - uid: 5138 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 2 - - uid: 8402 - components: - - type: Transform - pos: -18.5,-31.5 - parent: 2 - - uid: 12169 - components: - - type: Transform - pos: 20.5,13.5 - parent: 2 - - uid: 21410 - components: - - type: Transform - pos: 21.5,3.5 - parent: 2 - - uid: 21411 - components: - - type: Transform - pos: 21.5,2.5 - parent: 2 - - uid: 21412 - components: - - type: Transform - pos: 21.5,4.5 - parent: 2 - - uid: 21413 - components: - - type: Transform - pos: 32.5,7.5 - parent: 2 - - uid: 21414 - components: - - type: Transform - pos: 34.5,7.5 - parent: 2 - - uid: 21415 - components: - - type: Transform - pos: -55.5,-1.5 - parent: 2 - - uid: 21417 - components: - - type: Transform - pos: 33.5,-2.5 - parent: 2 - - uid: 21418 - components: - - type: Transform - pos: 30.5,0.5 - parent: 2 - - uid: 25651 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 2 - - uid: 26390 - components: - - type: Transform - pos: -4.5,-11.5 - parent: 2 - - uid: 26393 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 2 - - uid: 30198 - components: - - type: Transform - pos: 21.5,37.5 - parent: 2 - - uid: 30199 - components: - - type: Transform - pos: 25.5,37.5 - parent: 2 -- proto: RandomVendingDrinks - entities: - - uid: 6810 - components: - - type: Transform - pos: 27.5,18.5 - parent: 2 - - uid: 10834 - components: - - type: Transform - pos: -3.5,1.5 - parent: 2 - - uid: 21419 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 2 - - uid: 21420 - components: - - type: Transform - pos: 9.5,-56.5 - parent: 2 - - uid: 21421 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 2 - - uid: 21423 - components: - - type: Transform - pos: 83.5,-15.5 - parent: 2 - - uid: 21424 - components: - - type: Transform - pos: -55.5,-2.5 - parent: 2 - - uid: 21426 - components: - - type: Transform - pos: 61.5,-21.5 - parent: 2 - - uid: 23498 - components: - - type: Transform - pos: -7.5,8.5 - parent: 2 - - uid: 23628 - components: - - type: Transform - pos: -3.5,7.5 - parent: 2 -- proto: RandomVendingSnacks - entities: - - uid: 6560 - components: - - type: Transform - pos: 27.5,19.5 - parent: 2 - - uid: 21427 - components: - - type: Transform - pos: 82.5,-15.5 - parent: 2 - - uid: 21428 - components: - - type: Transform - pos: 14.5,-32.5 - parent: 2 - - uid: 21430 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 2 - - uid: 21431 - components: - - type: Transform - pos: -55.5,-3.5 - parent: 2 - - uid: 21432 - components: - - type: Transform - pos: -22.5,-3.5 - parent: 2 - - uid: 21433 - components: - - type: Transform - pos: 9.5,-57.5 - parent: 2 - - uid: 21434 - components: - - type: Transform - pos: 63.5,-10.5 - parent: 2 - - uid: 22894 - components: - - type: Transform - pos: -7.5,10.5 - parent: 2 -- proto: RCDAmmo - entities: - - uid: 23552 - components: - - type: Transform - pos: 7.650753,-65.47259 - parent: 2 - - uid: 23559 - components: - - type: Transform - pos: 7.463253,-65.23821 - parent: 2 - - uid: 23570 - components: - - type: Transform - pos: 7.369503,-65.45696 - parent: 2 -- proto: ReagentContainerFlourSmall - entities: - - uid: 21438 - components: - - type: Transform - pos: -6.481306,49.585167 - parent: 2 -- proto: ReagentContainerSugar - entities: - - uid: 21439 - components: - - type: Transform - pos: -38.656677,-45.97023 - parent: 2 - - type: Tag - tags: [] -- proto: Recycler - entities: - - uid: 17471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-40.5 - parent: 2 - - uid: 31732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-10.5 - parent: 2 -- proto: Reflector - entities: - - uid: 25041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-87.5 - parent: 2 - - uid: 25079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-87.5 - parent: 2 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-69.5 - parent: 2 - - uid: 156 - components: - - type: Transform - pos: 19.5,-69.5 - parent: 2 - - uid: 1562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-48.5 - parent: 2 - - uid: 4151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-73.5 - parent: 2 - - uid: 4152 - components: - - type: Transform - pos: 15.5,-69.5 - parent: 2 - - uid: 4156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-69.5 - parent: 2 - - uid: 4157 - components: - - type: Transform - pos: 15.5,-73.5 - parent: 2 - - uid: 4866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-89.5 - parent: 2 - - uid: 9431 - components: - - type: Transform - pos: 19.5,-73.5 - parent: 2 - - uid: 10233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-46.5 - parent: 2 - - uid: 10626 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-64.5 - parent: 2 - - uid: 13171 - components: - - type: Transform - pos: 73.5,-32.5 - parent: 2 - - uid: 13367 - components: - - type: Transform - pos: 69.5,-32.5 - parent: 2 - - uid: 13784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-62.5 - parent: 2 - - uid: 13838 - components: - - type: Transform - pos: 6.5,43.5 - parent: 2 - - uid: 13869 - components: - - type: Transform - pos: 18.5,-73.5 - parent: 2 - - uid: 13875 - components: - - type: Transform - pos: 8.5,43.5 - parent: 2 - - uid: 13883 - components: - - type: Transform - pos: -13.5,39.5 - parent: 2 - - uid: 13975 - components: - - type: Transform - pos: 7.5,43.5 - parent: 2 - - uid: 14069 - components: - - type: Transform - pos: 29.5,40.5 - parent: 2 - - uid: 14350 - components: - - type: Transform - pos: 71.5,-32.5 - parent: 2 - - uid: 14439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-66.5 - parent: 2 - - uid: 15882 - components: - - type: Transform - pos: 9.5,43.5 - parent: 2 - - uid: 16259 - components: - - type: Transform - pos: 70.5,-32.5 - parent: 2 - - uid: 16385 - components: - - type: Transform - pos: 74.5,-32.5 - parent: 2 - - uid: 16463 - components: - - type: Transform - pos: 10.5,43.5 - parent: 2 - - uid: 16496 - components: - - type: Transform - pos: 29.5,41.5 - parent: 2 - - uid: 17248 - components: - - type: Transform - pos: -16.5,33.5 - parent: 2 - - uid: 17476 - components: - - type: Transform - pos: -15.5,54.5 - parent: 2 - - uid: 17505 - components: - - type: Transform - pos: -14.5,54.5 - parent: 2 - - uid: 17511 - components: - - type: Transform - pos: -12.5,54.5 - parent: 2 - - uid: 17514 - components: - - type: Transform - pos: 75.5,-32.5 - parent: 2 - - uid: 17670 - components: - - type: Transform - pos: -11.5,54.5 - parent: 2 - - uid: 17777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,43.5 - parent: 2 - - uid: 17807 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,42.5 - parent: 2 - - uid: 17809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,41.5 - parent: 2 - - uid: 17867 - components: - - type: Transform - pos: -25.5,45.5 - parent: 2 - - uid: 17953 - components: - - type: Transform - pos: -15.5,37.5 - parent: 2 - - uid: 17966 - components: - - type: Transform - pos: 24.5,50.5 - parent: 2 - - uid: 18001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,46.5 - parent: 2 - - uid: 18011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,46.5 - parent: 2 - - uid: 18040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,46.5 - parent: 2 - - uid: 18059 - components: - - type: Transform - pos: -16.5,31.5 - parent: 2 - - uid: 18099 - components: - - type: Transform - pos: -25.5,43.5 - parent: 2 - - uid: 18251 - components: - - type: Transform - pos: -25.5,44.5 - parent: 2 - - uid: 19417 - components: - - type: Transform - pos: 21.5,43.5 - parent: 2 - - uid: 19440 - components: - - type: Transform - pos: -13.5,37.5 - parent: 2 - - uid: 19523 - components: - - type: Transform - pos: -14.5,39.5 - parent: 2 - - uid: 19533 - components: - - type: Transform - pos: -21.5,39.5 - parent: 2 - - uid: 19572 - components: - - type: Transform - pos: -18.5,39.5 - parent: 2 - - uid: 19576 - components: - - type: Transform - pos: -15.5,39.5 - parent: 2 - - uid: 19578 - components: - - type: Transform - pos: 21.5,42.5 - parent: 2 - - uid: 19580 - components: - - type: Transform - pos: 21.5,41.5 - parent: 2 - - uid: 19581 - components: - - type: Transform - pos: 29.5,42.5 - parent: 2 - - uid: 20594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,45.5 - parent: 2 - - uid: 20622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-44.5 - parent: 2 - - uid: 20768 - components: - - type: Transform - pos: -1.5,48.5 - parent: 2 - - uid: 20769 - components: - - type: Transform - pos: -1.5,50.5 - parent: 2 - - uid: 20854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,45.5 - parent: 2 - - uid: 20861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,47.5 - parent: 2 - - uid: 20905 - components: - - type: Transform - pos: -0.5,50.5 - parent: 2 - - uid: 20906 - components: - - type: Transform - pos: -2.5,48.5 - parent: 2 - - uid: 21043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,46.5 - parent: 2 - - uid: 21059 - components: - - type: Transform - pos: 1.5,48.5 - parent: 2 - - uid: 21066 - components: - - type: Transform - pos: 0.5,48.5 - parent: 2 - - uid: 21192 - components: - - type: Transform - pos: -0.5,48.5 - parent: 2 - - uid: 21198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,47.5 - parent: 2 - - uid: 21441 - components: - - type: Transform - pos: 47.5,-54.5 - parent: 2 - - uid: 21442 - components: - - type: Transform - pos: 46.5,-54.5 - parent: 2 - - uid: 21443 - components: - - type: Transform - pos: 43.5,-54.5 - parent: 2 - - uid: 21444 - components: - - type: Transform - pos: 44.5,-54.5 - parent: 2 - - uid: 21608 - components: - - type: Transform - pos: 0.5,50.5 - parent: 2 - - uid: 21819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-79.5 - parent: 2 - - uid: 21820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-79.5 - parent: 2 - - uid: 21844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-79.5 - parent: 2 - - uid: 21857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-79.5 - parent: 2 - - uid: 21858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-79.5 - parent: 2 - - uid: 21936 - components: - - type: Transform - pos: 1.5,50.5 - parent: 2 - - uid: 21977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,46.5 - parent: 2 - - uid: 23411 - components: - - type: Transform - pos: -2.5,50.5 - parent: 2 - - uid: 25039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-85.5 - parent: 2 - - uid: 26134 - components: - - type: Transform - pos: -16.5,32.5 - parent: 2 - - uid: 28962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-89.5 - parent: 2 - - uid: 29505 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-85.5 - parent: 2 - - uid: 29564 - components: - - type: Transform - pos: 16.5,-87.5 - parent: 2 -- proto: ReinforcedWindow - entities: - - uid: 58 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-28.5 - parent: 2 - - uid: 236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-69.5 - parent: 2 - - uid: 283 - components: - - type: Transform - pos: 22.5,-47.5 - parent: 2 - - uid: 491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,0.5 - parent: 2 - - uid: 620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-39.5 - parent: 2 - - uid: 744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-67.5 - parent: 2 - - uid: 849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-39.5 - parent: 2 - - uid: 899 - components: - - type: Transform - pos: 42.5,-45.5 - parent: 2 - - uid: 924 - components: - - type: Transform - pos: -2.5,1.5 - parent: 2 - - uid: 1003 - components: - - type: Transform - pos: 22.5,-66.5 - parent: 2 - - uid: 1281 - components: - - type: Transform - pos: 16.5,12.5 - parent: 2 - - uid: 1325 - components: - - type: Transform - pos: -5.5,-28.5 - parent: 2 - - uid: 1327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,7.5 - parent: 2 - - uid: 1328 - components: - - type: Transform - pos: -5.5,0.5 - parent: 2 - - uid: 1426 - components: - - type: Transform - pos: 17.5,12.5 - parent: 2 - - uid: 1551 - components: - - type: Transform - pos: 11.5,-50.5 - parent: 2 - - uid: 1563 - components: - - type: Transform - pos: 18.5,-55.5 - parent: 2 - - uid: 1595 - components: - - type: Transform - pos: 22.5,-61.5 - parent: 2 - - uid: 1658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 2 - - uid: 1849 - components: - - type: Transform - pos: -12.5,22.5 - parent: 2 - - uid: 2133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,18.5 - parent: 2 - - uid: 2134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,18.5 - parent: 2 - - uid: 2135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,18.5 - parent: 2 - - uid: 2137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,16.5 - parent: 2 - - uid: 2138 - components: - - type: Transform - pos: -10.5,-3.5 - parent: 2 - - uid: 2250 - components: - - type: Transform - pos: -67.5,19.5 - parent: 2 - - uid: 2265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,18.5 - parent: 2 - - uid: 2627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,15.5 - parent: 2 - - uid: 2628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,17.5 - parent: 2 - - uid: 2634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 2 - - uid: 2762 - components: - - type: Transform - pos: -66.5,19.5 - parent: 2 - - uid: 2769 - components: - - type: Transform - pos: -65.5,19.5 - parent: 2 - - uid: 3228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,28.5 - parent: 2 - - uid: 3229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,27.5 - parent: 2 - - uid: 3480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-78.5 - parent: 2 - - uid: 3537 - components: - - type: Transform - pos: -20.5,-28.5 - parent: 2 - - uid: 3786 - components: - - type: Transform - pos: -40.5,-62.5 - parent: 2 - - uid: 3914 - components: - - type: Transform - pos: 22.5,-65.5 - parent: 2 - - uid: 5088 - components: - - type: Transform - pos: 50.5,-65.5 - parent: 2 - - uid: 5244 - components: - - type: Transform - pos: 89.5,-2.5 - parent: 2 - - uid: 5378 - components: - - type: Transform - pos: 70.5,-42.5 - parent: 2 - - uid: 5379 - components: - - type: Transform - pos: 72.5,-42.5 - parent: 2 - - uid: 5412 - components: - - type: Transform - pos: 75.5,-39.5 - parent: 2 - - uid: 5499 - components: - - type: Transform - pos: 16.5,-55.5 - parent: 2 - - uid: 5557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-78.5 - parent: 2 - - uid: 5561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-77.5 - parent: 2 - - uid: 5719 - components: - - type: Transform - pos: 68.5,-30.5 - parent: 2 - - uid: 6340 - components: - - type: Transform - pos: -12.5,25.5 - parent: 2 - - uid: 6395 - components: - - type: Transform - pos: 89.5,-12.5 - parent: 2 - - uid: 6550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-0.5 - parent: 2 - - uid: 6733 - components: - - type: Transform - pos: 15.5,12.5 - parent: 2 - - uid: 7034 - components: - - type: Transform - pos: -6.5,6.5 - parent: 2 - - uid: 7234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-68.5 - parent: 2 - - uid: 7284 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 2 - - uid: 7414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-75.5 - parent: 2 - - uid: 7532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-70.5 - parent: 2 - - uid: 7601 - components: - - type: Transform - pos: -13.5,22.5 - parent: 2 - - uid: 7660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-76.5 - parent: 2 - - uid: 7775 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 2 - - uid: 7777 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 2 - - uid: 7924 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 2 - - uid: 8187 - components: - - type: Transform - pos: -6.5,2.5 - parent: 2 - - uid: 8381 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 2 - - uid: 8399 - components: - - type: Transform - pos: -19.5,-30.5 - parent: 2 - - uid: 8400 - components: - - type: Transform - pos: -19.5,-31.5 - parent: 2 - - uid: 9402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-91.5 - parent: 2 - - uid: 9594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-38.5 - parent: 2 - - uid: 9768 - components: - - type: Transform - pos: -6.5,5.5 - parent: 2 - - uid: 9799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 2 - - uid: 9810 - components: - - type: Transform - pos: -6.5,1.5 - parent: 2 - - uid: 9812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,8.5 - parent: 2 - - uid: 9918 - components: - - type: Transform - pos: -32.5,-39.5 - parent: 2 - - uid: 9921 - components: - - type: Transform - pos: 69.5,-39.5 - parent: 2 - - uid: 10128 - components: - - type: Transform - pos: -2.5,6.5 - parent: 2 - - uid: 10166 - components: - - type: Transform - pos: -31.5,-39.5 - parent: 2 - - uid: 10168 - components: - - type: Transform - pos: -33.5,-39.5 - parent: 2 - - uid: 10485 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - - uid: 10549 - components: - - type: Transform - pos: 64.5,-64.5 - parent: 2 - - uid: 10551 - components: - - type: Transform - pos: 64.5,-65.5 - parent: 2 - - uid: 10568 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 2 - - uid: 10657 - components: - - type: Transform - pos: -33.5,-35.5 - parent: 2 - - uid: 10862 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 2 - - uid: 10968 - components: - - type: Transform - pos: -35.5,47.5 - parent: 2 - - uid: 10974 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 2 - - uid: 11004 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - - uid: 11119 - components: - - type: Transform - pos: 89.5,-8.5 - parent: 2 - - uid: 11145 - components: - - type: Transform - pos: 69.5,-44.5 - parent: 2 - - uid: 11173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,3.5 - parent: 2 - - uid: 11186 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 2 - - uid: 11188 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 2 - - uid: 11242 - components: - - type: Transform - pos: -2.5,5.5 - parent: 2 - - uid: 11261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,37.5 - parent: 2 - - uid: 11456 - components: - - type: Transform - pos: 72.5,-48.5 - parent: 2 - - uid: 11464 - components: - - type: Transform - pos: -23.5,-22.5 - parent: 2 - - uid: 11482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,7.5 - parent: 2 - - uid: 11507 - components: - - type: Transform - pos: -32.5,-35.5 - parent: 2 - - uid: 11864 - components: - - type: Transform - pos: -14.5,22.5 - parent: 2 - - uid: 11934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-28.5 - parent: 2 - - uid: 12279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,15.5 - parent: 2 - - uid: 12280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,18.5 - parent: 2 - - uid: 12320 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,18.5 - parent: 2 - - uid: 12545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-68.5 - parent: 2 - - uid: 13222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,11.5 - parent: 2 - - uid: 13229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,18.5 - parent: 2 - - uid: 13305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-81.5 - parent: 2 - - uid: 13733 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-49.5 - parent: 2 - - uid: 13817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-83.5 - parent: 2 - - uid: 13902 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,22.5 - parent: 2 - - uid: 14009 - components: - - type: Transform - pos: 22.5,-63.5 - parent: 2 - - uid: 14014 - components: - - type: Transform - pos: 14.5,-50.5 - parent: 2 - - uid: 14015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-43.5 - parent: 2 - - uid: 14020 - components: - - type: Transform - pos: 21.5,-55.5 - parent: 2 - - uid: 14073 - components: - - type: Transform - pos: -74.5,16.5 - parent: 2 - - uid: 14078 - components: - - type: Transform - pos: -74.5,13.5 - parent: 2 - - uid: 14112 - components: - - type: Transform - pos: 15.5,-51.5 - parent: 2 - - uid: 14141 - components: - - type: Transform - pos: 22.5,-62.5 - parent: 2 - - uid: 14345 - components: - - type: Transform - pos: -3.5,0.5 - parent: 2 - - uid: 14424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-45.5 - parent: 2 - - uid: 14434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-48.5 - parent: 2 - - uid: 14437 - components: - - type: Transform - pos: 22.5,-52.5 - parent: 2 - - uid: 14734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-47.5 - parent: 2 - - uid: 14737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-49.5 - parent: 2 - - uid: 14757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-50.5 - parent: 2 - - uid: 14808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-78.5 - parent: 2 - - uid: 14809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,23.5 - parent: 2 - - uid: 14815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,23.5 - parent: 2 - - uid: 14820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-60.5 - parent: 2 - - uid: 14822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-46.5 - parent: 2 - - uid: 14859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-78.5 - parent: 2 - - uid: 14896 - components: - - type: Transform - pos: 22.5,-45.5 - parent: 2 - - uid: 14968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-44.5 - parent: 2 - - uid: 15093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-65.5 - parent: 2 - - uid: 15123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-78.5 - parent: 2 - - uid: 15912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 2 - - uid: 16454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-82.5 - parent: 2 - - uid: 16456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-82.5 - parent: 2 - - uid: 16457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-82.5 - parent: 2 - - uid: 16465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-78.5 - parent: 2 - - uid: 16705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-78.5 - parent: 2 - - uid: 16711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-79.5 - parent: 2 - - uid: 16858 - components: - - type: Transform - pos: -35.5,-39.5 - parent: 2 - - uid: 16862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-36.5 - parent: 2 - - uid: 17070 - components: - - type: Transform - pos: -74.5,15.5 - parent: 2 - - uid: 17080 - components: - - type: Transform - pos: 68.5,-31.5 - parent: 2 - - uid: 17386 - components: - - type: Transform - pos: -74.5,17.5 - parent: 2 - - uid: 17400 - components: - - type: Transform - pos: 15.5,-54.5 - parent: 2 - - uid: 18006 - components: - - type: Transform - pos: -74.5,14.5 - parent: 2 - - uid: 18091 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 2 - - uid: 18138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-66.5 - parent: 2 - - uid: 18269 - components: - - type: Transform - pos: 22.5,-67.5 - parent: 2 - - uid: 18532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-78.5 - parent: 2 - - uid: 18749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-78.5 - parent: 2 - - uid: 19341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 - parent: 2 - - uid: 19868 - components: - - type: Transform - pos: 75.5,16.5 - parent: 2 - - uid: 19940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-49.5 - parent: 2 - - uid: 19941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-49.5 - parent: 2 - - uid: 20044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,0.5 - parent: 2 - - uid: 20045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,19.5 - parent: 2 - - uid: 20059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,20.5 - parent: 2 - - uid: 20137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,18.5 - parent: 2 - - uid: 20190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,39.5 - parent: 2 - - uid: 20191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,39.5 - parent: 2 - - uid: 20258 - components: - - type: Transform - pos: 79.5,6.5 - parent: 2 - - uid: 20282 - components: - - type: Transform - pos: 89.5,-10.5 - parent: 2 - - uid: 20333 - components: - - type: Transform - pos: 79.5,8.5 - parent: 2 - - uid: 20345 - components: - - type: Transform - pos: 79.5,7.5 - parent: 2 - - uid: 20382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-39.5 - parent: 2 - - uid: 20421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-39.5 - parent: 2 - - uid: 20465 - components: - - type: Transform - pos: 74.5,16.5 - parent: 2 - - uid: 20563 - components: - - type: Transform - pos: 73.5,16.5 - parent: 2 - - uid: 20859 - components: - - type: Transform - pos: 72.5,16.5 - parent: 2 - - uid: 20889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,29.5 - parent: 2 - - uid: 20981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-53.5 - parent: 2 - - uid: 20985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-51.5 - parent: 2 - - uid: 20991 - components: - - type: Transform - pos: -49.5,-32.5 - parent: 2 - - uid: 21364 - components: - - type: Transform - pos: -49.5,-33.5 - parent: 2 - - uid: 21484 - components: - - type: Transform - pos: 47.5,4.5 - parent: 2 - - uid: 21490 - components: - - type: Transform - pos: -75.5,-6.5 - parent: 2 - - uid: 21491 - components: - - type: Transform - pos: 47.5,3.5 - parent: 2 - - uid: 21494 - components: - - type: Transform - pos: -34.5,0.5 - parent: 2 - - uid: 21496 - components: - - type: Transform - pos: -28.5,0.5 - parent: 2 - - uid: 21501 - components: - - type: Transform - pos: -33.5,0.5 - parent: 2 - - uid: 21502 - components: - - type: Transform - pos: -35.5,0.5 - parent: 2 - - uid: 21515 - components: - - type: Transform - pos: -30.5,14.5 - parent: 2 - - uid: 21516 - components: - - type: Transform - pos: -30.5,15.5 - parent: 2 - - uid: 21517 - components: - - type: Transform - pos: -30.5,16.5 - parent: 2 - - uid: 21520 - components: - - type: Transform - pos: -32.5,14.5 - parent: 2 - - uid: 21521 - components: - - type: Transform - pos: -32.5,15.5 - parent: 2 - - uid: 21522 - components: - - type: Transform - pos: -32.5,16.5 - parent: 2 - - uid: 21525 - components: - - type: Transform - pos: -42.5,19.5 - parent: 2 - - uid: 21526 - components: - - type: Transform - pos: -43.5,19.5 - parent: 2 - - uid: 21527 - components: - - type: Transform - pos: -48.5,26.5 - parent: 2 - - uid: 21528 - components: - - type: Transform - pos: -50.5,26.5 - parent: 2 - - uid: 21529 - components: - - type: Transform - pos: -50.5,25.5 - parent: 2 - - uid: 21530 - components: - - type: Transform - pos: -50.5,24.5 - parent: 2 - - uid: 21531 - components: - - type: Transform - pos: -51.5,24.5 - parent: 2 - - uid: 21539 - components: - - type: Transform - pos: -59.5,2.5 - parent: 2 - - uid: 21540 - components: - - type: Transform - pos: -57.5,2.5 - parent: 2 - - uid: 21542 - components: - - type: Transform - pos: 10.5,-54.5 - parent: 2 - - uid: 21549 - components: - - type: Transform - pos: -67.5,11.5 - parent: 2 - - uid: 21552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,7.5 - parent: 2 - - uid: 21553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-2.5 - parent: 2 - - uid: 21554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,7.5 - parent: 2 - - uid: 21555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-2.5 - parent: 2 - - uid: 21556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-2.5 - parent: 2 - - uid: 21557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,7.5 - parent: 2 - - uid: 21558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,7.5 - parent: 2 - - uid: 21559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,7.5 - parent: 2 - - uid: 21560 - components: - - type: Transform - pos: -65.5,4.5 - parent: 2 - - uid: 21561 - components: - - type: Transform - pos: -65.5,3.5 - parent: 2 - - uid: 21562 - components: - - type: Transform - pos: -65.5,2.5 - parent: 2 - - uid: 21563 - components: - - type: Transform - pos: -65.5,1.5 - parent: 2 - - uid: 21564 - components: - - type: Transform - pos: -65.5,0.5 - parent: 2 - - uid: 21565 - components: - - type: Transform - pos: 79.5,1.5 - parent: 2 - - uid: 21566 - components: - - type: Transform - pos: -13.5,28.5 - parent: 2 - - uid: 21569 - components: - - type: Transform - pos: 45.5,21.5 - parent: 2 - - uid: 21570 - components: - - type: Transform - pos: 46.5,21.5 - parent: 2 - - uid: 21572 - components: - - type: Transform - pos: 56.5,21.5 - parent: 2 - - uid: 21573 - components: - - type: Transform - pos: 57.5,21.5 - parent: 2 - - uid: 21575 - components: - - type: Transform - pos: 46.5,23.5 - parent: 2 - - uid: 21576 - components: - - type: Transform - pos: 55.5,21.5 - parent: 2 - - uid: 21577 - components: - - type: Transform - pos: 49.5,4.5 - parent: 2 - - uid: 21578 - components: - - type: Transform - pos: 49.5,3.5 - parent: 2 - - uid: 21579 - components: - - type: Transform - pos: 48.5,23.5 - parent: 2 - - uid: 21580 - components: - - type: Transform - pos: -74.5,-6.5 - parent: 2 - - uid: 21581 - components: - - type: Transform - pos: -73.5,-6.5 - parent: 2 - - uid: 21582 - components: - - type: Transform - pos: -72.5,-6.5 - parent: 2 - - uid: 21583 - components: - - type: Transform - pos: -71.5,-6.5 - parent: 2 - - uid: 21584 - components: - - type: Transform - pos: -70.5,-6.5 - parent: 2 - - uid: 21585 - components: - - type: Transform - pos: -69.5,-6.5 - parent: 2 - - uid: 21586 - components: - - type: Transform - pos: -68.5,-6.5 - parent: 2 - - uid: 21587 - components: - - type: Transform - pos: -75.5,-12.5 - parent: 2 - - uid: 21588 - components: - - type: Transform - pos: -74.5,-12.5 - parent: 2 - - uid: 21589 - components: - - type: Transform - pos: -73.5,-12.5 - parent: 2 - - uid: 21590 - components: - - type: Transform - pos: -72.5,-12.5 - parent: 2 - - uid: 21591 - components: - - type: Transform - pos: -71.5,-12.5 - parent: 2 - - uid: 21592 - components: - - type: Transform - pos: -70.5,-12.5 - parent: 2 - - uid: 21593 - components: - - type: Transform - pos: -69.5,-12.5 - parent: 2 - - uid: 21594 - components: - - type: Transform - pos: -68.5,-12.5 - parent: 2 - - uid: 21596 - components: - - type: Transform - pos: -73.5,-17.5 - parent: 2 - - uid: 21597 - components: - - type: Transform - pos: -72.5,-17.5 - parent: 2 - - uid: 21598 - components: - - type: Transform - pos: -71.5,-17.5 - parent: 2 - - uid: 21599 - components: - - type: Transform - pos: -70.5,-17.5 - parent: 2 - - uid: 21600 - components: - - type: Transform - pos: -67.5,-17.5 - parent: 2 - - uid: 21601 - components: - - type: Transform - pos: -67.5,-16.5 - parent: 2 - - uid: 21602 - components: - - type: Transform - pos: -66.5,-16.5 - parent: 2 - - uid: 21603 - components: - - type: Transform - pos: -67.5,-15.5 - parent: 2 - - uid: 21604 - components: - - type: Transform - pos: -66.5,-11.5 - parent: 2 - - uid: 21605 - components: - - type: Transform - pos: -66.5,-10.5 - parent: 2 - - uid: 21606 - components: - - type: Transform - pos: -67.5,-10.5 - parent: 2 - - uid: 21607 - components: - - type: Transform - pos: -65.5,-10.5 - parent: 2 - - uid: 21609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-2.5 - parent: 2 - - uid: 21610 - components: - - type: Transform - pos: -42.5,-23.5 - parent: 2 - - uid: 21611 - components: - - type: Transform - pos: -54.5,-19.5 - parent: 2 - - uid: 21612 - components: - - type: Transform - pos: -59.5,-21.5 - parent: 2 - - uid: 21614 - components: - - type: Transform - pos: -60.5,-20.5 - parent: 2 - - uid: 21615 - components: - - type: Transform - pos: -60.5,-18.5 - parent: 2 - - uid: 21622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,7.5 - parent: 2 - - uid: 21623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-2.5 - parent: 2 - - uid: 21625 - components: - - type: Transform - pos: -32.5,-32.5 - parent: 2 - - uid: 21626 - components: - - type: Transform - pos: -26.5,-39.5 - parent: 2 - - uid: 21627 - components: - - type: Transform - pos: -27.5,-39.5 - parent: 2 - - uid: 21630 - components: - - type: Transform - pos: -31.5,-32.5 - parent: 2 - - uid: 21632 - components: - - type: Transform - pos: -29.5,-29.5 - parent: 2 - - uid: 21633 - components: - - type: Transform - pos: -33.5,-32.5 - parent: 2 - - uid: 21634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-18.5 - parent: 2 - - uid: 21637 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 2 - - uid: 21638 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 2 - - uid: 21639 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 2 - - uid: 21640 - components: - - type: Transform - pos: -16.5,-39.5 - parent: 2 - - uid: 21641 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 2 - - uid: 21642 - components: - - type: Transform - pos: -16.5,-41.5 - parent: 2 - - uid: 21643 - components: - - type: Transform - pos: -16.5,-42.5 - parent: 2 - - uid: 21644 - components: - - type: Transform - pos: -16.5,-43.5 - parent: 2 - - uid: 21645 - components: - - type: Transform - pos: -16.5,-44.5 - parent: 2 - - uid: 21647 - components: - - type: Transform - pos: -18.5,-44.5 - parent: 2 - - uid: 21648 - components: - - type: Transform - pos: -18.5,-45.5 - parent: 2 - - uid: 21649 - components: - - type: Transform - pos: 2.5,-55.5 - parent: 2 - - uid: 21650 - components: - - type: Transform - pos: 2.5,-57.5 - parent: 2 - - uid: 21651 - components: - - type: Transform - pos: 21.5,-31.5 - parent: 2 - - uid: 21652 - components: - - type: Transform - pos: 20.5,-31.5 - parent: 2 - - uid: 21653 - components: - - type: Transform - pos: 19.5,-31.5 - parent: 2 - - uid: 21654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-16.5 - parent: 2 - - uid: 21655 - components: - - type: Transform - pos: 18.5,-31.5 - parent: 2 - - uid: 21656 - components: - - type: Transform - pos: 93.5,-27.5 - parent: 2 - - uid: 21657 - components: - - type: Transform - pos: 93.5,-28.5 - parent: 2 - - uid: 21658 - components: - - type: Transform - pos: 92.5,-28.5 - parent: 2 - - uid: 21659 - components: - - type: Transform - pos: 91.5,-28.5 - parent: 2 - - uid: 21660 - components: - - type: Transform - pos: 91.5,-27.5 - parent: 2 - - uid: 21661 - components: - - type: Transform - pos: 91.5,-30.5 - parent: 2 - - uid: 21662 - components: - - type: Transform - pos: 93.5,-30.5 - parent: 2 - - uid: 21663 - components: - - type: Transform - pos: 87.5,-36.5 - parent: 2 - - uid: 21664 - components: - - type: Transform - pos: 87.5,-35.5 - parent: 2 - - uid: 21665 - components: - - type: Transform - pos: 87.5,-34.5 - parent: 2 - - uid: 21666 - components: - - type: Transform - pos: 22.5,-31.5 - parent: 2 - - uid: 21667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-22.5 - parent: 2 - - uid: 21671 - components: - - type: Transform - pos: 53.5,-28.5 - parent: 2 - - uid: 21672 - components: - - type: Transform - pos: 53.5,-32.5 - parent: 2 - - uid: 21673 - components: - - type: Transform - pos: 74.5,-25.5 - parent: 2 - - uid: 21674 - components: - - type: Transform - pos: 72.5,-25.5 - parent: 2 - - uid: 21675 - components: - - type: Transform - pos: 77.5,-48.5 - parent: 2 - - uid: 21676 - components: - - type: Transform - pos: 75.5,-48.5 - parent: 2 - - uid: 21678 - components: - - type: Transform - pos: 70.5,-48.5 - parent: 2 - - uid: 21679 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 2 - - uid: 21682 - components: - - type: Transform - pos: 69.5,-25.5 - parent: 2 - - uid: 21683 - components: - - type: Transform - pos: 38.5,-49.5 - parent: 2 - - uid: 21684 - components: - - type: Transform - pos: 38.5,-38.5 - parent: 2 - - uid: 21685 - components: - - type: Transform - pos: 38.5,-40.5 - parent: 2 - - uid: 21686 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 2 - - uid: 21687 - components: - - type: Transform - pos: 69.5,-46.5 - parent: 2 - - uid: 21694 - components: - - type: Transform - pos: 64.5,-31.5 - parent: 2 - - uid: 21695 - components: - - type: Transform - pos: 64.5,-30.5 - parent: 2 - - uid: 21696 - components: - - type: Transform - pos: 64.5,-29.5 - parent: 2 - - uid: 21697 - components: - - type: Transform - pos: 63.5,-28.5 - parent: 2 - - uid: 21699 - components: - - type: Transform - pos: 54.5,-31.5 - parent: 2 - - uid: 21700 - components: - - type: Transform - pos: 54.5,-29.5 - parent: 2 - - uid: 21706 - components: - - type: Transform - pos: 88.5,-22.5 - parent: 2 - - uid: 21707 - components: - - type: Transform - pos: 89.5,-22.5 - parent: 2 - - uid: 21708 - components: - - type: Transform - pos: 90.5,-22.5 - parent: 2 - - uid: 21709 - components: - - type: Transform - pos: 91.5,-22.5 - parent: 2 - - uid: 21710 - components: - - type: Transform - pos: 92.5,-22.5 - parent: 2 - - uid: 21711 - components: - - type: Transform - pos: 92.5,-23.5 - parent: 2 - - uid: 21713 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 2 - - uid: 21714 - components: - - type: Transform - pos: 81.5,1.5 - parent: 2 - - uid: 21715 - components: - - type: Transform - pos: 85.5,2.5 - parent: 2 - - uid: 21716 - components: - - type: Transform - pos: 83.5,2.5 - parent: 2 - - uid: 21718 - components: - - type: Transform - pos: 49.5,-10.5 - parent: 2 - - uid: 21719 - components: - - type: Transform - pos: 46.5,-10.5 - parent: 2 - - uid: 21720 - components: - - type: Transform - pos: 42.5,-11.5 - parent: 2 - - uid: 21721 - components: - - type: Transform - pos: 87.5,-40.5 - parent: 2 - - uid: 21722 - components: - - type: Transform - pos: 87.5,-41.5 - parent: 2 - - uid: 21723 - components: - - type: Transform - pos: 87.5,-42.5 - parent: 2 - - uid: 21724 - components: - - type: Transform - pos: 87.5,-51.5 - parent: 2 - - uid: 21725 - components: - - type: Transform - pos: 87.5,-52.5 - parent: 2 - - uid: 21726 - components: - - type: Transform - pos: 87.5,-53.5 - parent: 2 - - uid: 21727 - components: - - type: Transform - pos: 82.5,-67.5 - parent: 2 - - uid: 21728 - components: - - type: Transform - pos: 82.5,-66.5 - parent: 2 - - uid: 21730 - components: - - type: Transform - pos: 82.5,-68.5 - parent: 2 - - uid: 21732 - components: - - type: Transform - pos: -28.5,-39.5 - parent: 2 - - uid: 21733 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 2 - - uid: 21734 - components: - - type: Transform - pos: 77.5,-65.5 - parent: 2 - - uid: 21735 - components: - - type: Transform - pos: 76.5,-65.5 - parent: 2 - - uid: 21738 - components: - - type: Transform - pos: -2.5,3.5 - parent: 2 - - uid: 21743 - components: - - type: Transform - pos: 63.5,-63.5 - parent: 2 - - uid: 21744 - components: - - type: Transform - pos: 62.5,-63.5 - parent: 2 - - uid: 21745 - components: - - type: Transform - pos: 61.5,-63.5 - parent: 2 - - uid: 21746 - components: - - type: Transform - pos: 58.5,-63.5 - parent: 2 - - uid: 21747 - components: - - type: Transform - pos: 57.5,-63.5 - parent: 2 - - uid: 21748 - components: - - type: Transform - pos: 56.5,-63.5 - parent: 2 - - uid: 21749 - components: - - type: Transform - pos: 53.5,-63.5 - parent: 2 - - uid: 21750 - components: - - type: Transform - pos: 52.5,-63.5 - parent: 2 - - uid: 21751 - components: - - type: Transform - pos: 51.5,-63.5 - parent: 2 - - uid: 21753 - components: - - type: Transform - pos: 50.5,-64.5 - parent: 2 - - uid: 21756 - components: - - type: Transform - pos: 44.5,-74.5 - parent: 2 - - uid: 21757 - components: - - type: Transform - pos: 43.5,-74.5 - parent: 2 - - uid: 21758 - components: - - type: Transform - pos: 42.5,-74.5 - parent: 2 - - uid: 21771 - components: - - type: Transform - pos: 74.5,-61.5 - parent: 2 - - uid: 21772 - components: - - type: Transform - pos: 73.5,-61.5 - parent: 2 - - uid: 21773 - components: - - type: Transform - pos: 73.5,-63.5 - parent: 2 - - uid: 21774 - components: - - type: Transform - pos: 74.5,-63.5 - parent: 2 - - uid: 21776 - components: - - type: Transform - pos: -12.5,-43.5 - parent: 2 - - uid: 21777 - components: - - type: Transform - pos: -13.5,-43.5 - parent: 2 - - uid: 21778 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 2 - - uid: 21779 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 2 - - uid: 21780 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 2 - - uid: 21781 - components: - - type: Transform - pos: -13.5,-38.5 - parent: 2 - - uid: 21782 - components: - - type: Transform - pos: -14.5,-38.5 - parent: 2 - - uid: 21783 - components: - - type: Transform - pos: -14.5,-37.5 - parent: 2 - - uid: 21784 - components: - - type: Transform - pos: -14.5,-36.5 - parent: 2 - - uid: 21785 - components: - - type: Transform - pos: -14.5,-35.5 - parent: 2 - - uid: 21786 - components: - - type: Transform - pos: -14.5,-34.5 - parent: 2 - - uid: 21787 - components: - - type: Transform - pos: -13.5,-34.5 - parent: 2 - - uid: 21788 - components: - - type: Transform - pos: -11.5,-34.5 - parent: 2 - - uid: 21789 - components: - - type: Transform - pos: -12.5,-34.5 - parent: 2 - - uid: 21790 - components: - - type: Transform - pos: -9.5,-57.5 - parent: 2 - - uid: 21791 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 2 - - uid: 21792 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 2 - - uid: 21793 - components: - - type: Transform - pos: -9.5,-54.5 - parent: 2 - - uid: 21794 - components: - - type: Transform - pos: -10.5,-54.5 - parent: 2 - - uid: 21795 - components: - - type: Transform - pos: -7.5,-52.5 - parent: 2 - - uid: 21796 - components: - - type: Transform - pos: -5.5,-52.5 - parent: 2 - - uid: 21797 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 2 - - uid: 21798 - components: - - type: Transform - pos: -9.5,-50.5 - parent: 2 - - uid: 21799 - components: - - type: Transform - pos: -9.5,-51.5 - parent: 2 - - uid: 21800 - components: - - type: Transform - pos: -9.5,-52.5 - parent: 2 - - uid: 21801 - components: - - type: Transform - pos: -10.5,-52.5 - parent: 2 - - uid: 21802 - components: - - type: Transform - pos: -21.5,-61.5 - parent: 2 - - uid: 21803 - components: - - type: Transform - pos: -22.5,-61.5 - parent: 2 - - uid: 21804 - components: - - type: Transform - pos: -23.5,-61.5 - parent: 2 - - uid: 21805 - components: - - type: Transform - pos: -24.5,-61.5 - parent: 2 - - uid: 21806 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 2 - - uid: 21807 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 2 - - uid: 21808 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 2 - - uid: 21809 - components: - - type: Transform - pos: -28.5,-61.5 - parent: 2 - - uid: 21810 - components: - - type: Transform - pos: -29.5,-61.5 - parent: 2 - - uid: 21812 - components: - - type: Transform - pos: 42.5,-60.5 - parent: 2 - - uid: 21813 - components: - - type: Transform - pos: 42.5,-59.5 - parent: 2 - - uid: 21814 - components: - - type: Transform - pos: 42.5,-58.5 - parent: 2 - - uid: 21816 - components: - - type: Transform - pos: 42.5,-57.5 - parent: 2 - - uid: 21821 - components: - - type: Transform - pos: -36.5,-51.5 - parent: 2 - - uid: 21822 - components: - - type: Transform - pos: -37.5,-51.5 - parent: 2 - - uid: 21823 - components: - - type: Transform - pos: -22.5,-74.5 - parent: 2 - - uid: 21824 - components: - - type: Transform - pos: -28.5,-63.5 - parent: 2 - - uid: 21825 - components: - - type: Transform - pos: -30.5,-67.5 - parent: 2 - - uid: 21826 - components: - - type: Transform - pos: -30.5,-68.5 - parent: 2 - - uid: 21827 - components: - - type: Transform - pos: -30.5,-69.5 - parent: 2 - - uid: 21828 - components: - - type: Transform - pos: -30.5,-70.5 - parent: 2 - - uid: 21829 - components: - - type: Transform - pos: -32.5,-67.5 - parent: 2 - - uid: 21830 - components: - - type: Transform - pos: -32.5,-68.5 - parent: 2 - - uid: 21831 - components: - - type: Transform - pos: -32.5,-69.5 - parent: 2 - - uid: 21832 - components: - - type: Transform - pos: -32.5,-70.5 - parent: 2 - - uid: 21833 - components: - - type: Transform - pos: -27.5,-74.5 - parent: 2 - - uid: 21834 - components: - - type: Transform - pos: -26.5,-74.5 - parent: 2 - - uid: 21835 - components: - - type: Transform - pos: -25.5,-74.5 - parent: 2 - - uid: 21836 - components: - - type: Transform - pos: -24.5,-74.5 - parent: 2 - - uid: 21837 - components: - - type: Transform - pos: -23.5,-74.5 - parent: 2 - - uid: 21838 - components: - - type: Transform - pos: -33.5,-73.5 - parent: 2 - - uid: 21839 - components: - - type: Transform - pos: -33.5,-74.5 - parent: 2 - - uid: 21840 - components: - - type: Transform - pos: -33.5,-75.5 - parent: 2 - - uid: 21841 - components: - - type: Transform - pos: -32.5,-75.5 - parent: 2 - - uid: 21842 - components: - - type: Transform - pos: -31.5,-75.5 - parent: 2 - - uid: 21843 - components: - - type: Transform - pos: -30.5,-75.5 - parent: 2 - - uid: 21846 - components: - - type: Transform - pos: 38.5,-48.5 - parent: 2 - - uid: 21848 - components: - - type: Transform - pos: 7.5,-50.5 - parent: 2 - - uid: 21850 - components: - - type: Transform - pos: 0.5,-63.5 - parent: 2 - - uid: 21852 - components: - - type: Transform - pos: -26.5,-42.5 - parent: 2 - - uid: 21853 - components: - - type: Transform - pos: -27.5,-42.5 - parent: 2 - - uid: 21854 - components: - - type: Transform - pos: -28.5,-42.5 - parent: 2 - - uid: 21855 - components: - - type: Transform - pos: -22.5,-40.5 - parent: 2 - - uid: 21856 - components: - - type: Transform - pos: -21.5,-44.5 - parent: 2 - - uid: 21861 - components: - - type: Transform - pos: -35.5,-42.5 - parent: 2 - - uid: 21862 - components: - - type: Transform - pos: -37.5,-42.5 - parent: 2 - - uid: 21893 - components: - - type: Transform - pos: -34.5,-29.5 - parent: 2 - - uid: 21894 - components: - - type: Transform - pos: 74.5,-0.5 - parent: 2 - - uid: 21920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 2 - - uid: 21923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-60.5 - parent: 2 - - uid: 21925 - components: - - type: Transform - pos: 22.5,-64.5 - parent: 2 - - uid: 21926 - components: - - type: Transform - pos: 0.5,-72.5 - parent: 2 - - uid: 21929 - components: - - type: Transform - pos: -2.5,-72.5 - parent: 2 - - uid: 21930 - components: - - type: Transform - pos: -1.5,-72.5 - parent: 2 - - uid: 21937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 2 - - uid: 21938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-60.5 - parent: 2 - - uid: 21941 - components: - - type: Transform - pos: 23.5,-34.5 - parent: 2 - - uid: 21943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,1.5 - parent: 2 - - uid: 21944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,3.5 - parent: 2 - - uid: 21945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,0.5 - parent: 2 - - uid: 21955 - components: - - type: Transform - pos: -4.5,-3.5 - parent: 2 - - uid: 21956 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 2 - - uid: 21957 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-23.5 - parent: 2 - - uid: 21958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-23.5 - parent: 2 - - uid: 21959 - components: - - type: Transform - pos: -49.5,-34.5 - parent: 2 - - uid: 21961 - components: - - type: Transform - pos: 76.5,-48.5 - parent: 2 - - uid: 21962 - components: - - type: Transform - pos: 10.5,-28.5 - parent: 2 - - uid: 21963 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 2 - - uid: 21966 - components: - - type: Transform - pos: -21.5,21.5 - parent: 2 - - uid: 21967 - components: - - type: Transform - pos: -22.5,21.5 - parent: 2 - - uid: 21968 - components: - - type: Transform - pos: -22.5,19.5 - parent: 2 - - uid: 21970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-20.5 - parent: 2 - - uid: 21971 - components: - - type: Transform - pos: 39.5,-7.5 - parent: 2 - - uid: 21973 - components: - - type: Transform - pos: 40.5,-7.5 - parent: 2 - - uid: 21974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-24.5 - parent: 2 - - uid: 21978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-25.5 - parent: 2 - - uid: 21981 - components: - - type: Transform - pos: 63.5,-25.5 - parent: 2 - - uid: 21982 - components: - - type: Transform - pos: 9.5,34.5 - parent: 2 - - uid: 21983 - components: - - type: Transform - pos: 6.5,34.5 - parent: 2 - - uid: 21984 - components: - - type: Transform - pos: 5.5,30.5 - parent: 2 - - uid: 21985 - components: - - type: Transform - pos: 5.5,32.5 - parent: 2 - - uid: 21988 - components: - - type: Transform - pos: 3.5,29.5 - parent: 2 - - uid: 21989 - components: - - type: Transform - pos: 1.5,29.5 - parent: 2 - - uid: 21990 - components: - - type: Transform - pos: 0.5,29.5 - parent: 2 - - uid: 21991 - components: - - type: Transform - pos: -1.5,29.5 - parent: 2 - - uid: 21992 - components: - - type: Transform - pos: -2.5,29.5 - parent: 2 - - uid: 21993 - components: - - type: Transform - pos: -8.5,25.5 - parent: 2 - - uid: 21994 - components: - - type: Transform - pos: -6.5,25.5 - parent: 2 - - uid: 21995 - components: - - type: Transform - pos: -4.5,25.5 - parent: 2 - - uid: 21996 - components: - - type: Transform - pos: -2.5,25.5 - parent: 2 - - uid: 21997 - components: - - type: Transform - pos: -0.5,25.5 - parent: 2 - - uid: 21998 - components: - - type: Transform - pos: 2.5,25.5 - parent: 2 - - uid: 21999 - components: - - type: Transform - pos: 5.5,25.5 - parent: 2 - - uid: 22000 - components: - - type: Transform - pos: 8.5,25.5 - parent: 2 - - uid: 22001 - components: - - type: Transform - pos: 10.5,25.5 - parent: 2 - - uid: 22002 - components: - - type: Transform - pos: 6.5,29.5 - parent: 2 - - uid: 22004 - components: - - type: Transform - pos: 5.5,22.5 - parent: 2 - - uid: 22005 - components: - - type: Transform - pos: -0.5,22.5 - parent: 2 - - uid: 22006 - components: - - type: Transform - pos: -1.5,22.5 - parent: 2 - - uid: 22007 - components: - - type: Transform - pos: -2.5,22.5 - parent: 2 - - uid: 22008 - components: - - type: Transform - pos: -4.5,22.5 - parent: 2 - - uid: 22009 - components: - - type: Transform - pos: -5.5,22.5 - parent: 2 - - uid: 22010 - components: - - type: Transform - pos: -6.5,22.5 - parent: 2 - - uid: 22011 - components: - - type: Transform - pos: -8.5,22.5 - parent: 2 - - uid: 22012 - components: - - type: Transform - pos: -9.5,22.5 - parent: 2 - - uid: 22013 - components: - - type: Transform - pos: -10.5,22.5 - parent: 2 - - uid: 22022 - components: - - type: Transform - pos: -14.5,-32.5 - parent: 2 - - uid: 22023 - components: - - type: Transform - pos: -13.5,-32.5 - parent: 2 - - uid: 22024 - components: - - type: Transform - pos: -12.5,-32.5 - parent: 2 - - uid: 22029 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 2 - - uid: 22030 - components: - - type: Transform - pos: -14.5,-14.5 - parent: 2 - - uid: 22031 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 2 - - uid: 22036 - components: - - type: Transform - pos: 2.5,-28.5 - parent: 2 - - uid: 22037 - components: - - type: Transform - pos: 3.5,-28.5 - parent: 2 - - uid: 22038 - components: - - type: Transform - pos: 4.5,-28.5 - parent: 2 - - uid: 22039 - components: - - type: Transform - pos: 10.5,-9.5 - parent: 2 - - uid: 22040 - components: - - type: Transform - pos: -11.5,-7.5 - parent: 2 - - uid: 22041 - components: - - type: Transform - pos: -11.5,-9.5 - parent: 2 - - uid: 22042 - components: - - type: Transform - pos: -7.5,-3.5 - parent: 2 - - uid: 22043 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - - uid: 22044 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 2 - - uid: 22046 - components: - - type: Transform - pos: -14.5,-5.5 - parent: 2 - - uid: 22047 - components: - - type: Transform - pos: -14.5,-6.5 - parent: 2 - - uid: 22048 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 2 - - uid: 22049 - components: - - type: Transform - pos: -8.5,-3.5 - parent: 2 - - uid: 22050 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 2 - - uid: 22051 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 2 - - uid: 22056 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 2 - - uid: 22057 - components: - - type: Transform - pos: -13.5,-6.5 - parent: 2 - - uid: 22058 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 2 - - uid: 22059 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 2 - - uid: 22060 - components: - - type: Transform - pos: 11.5,30.5 - parent: 2 - - uid: 22061 - components: - - type: Transform - pos: 8.5,29.5 - parent: 2 - - uid: 22067 - components: - - type: Transform - pos: -10.5,25.5 - parent: 2 - - uid: 22068 - components: - - type: Transform - pos: 7.5,34.5 - parent: 2 - - uid: 22077 - components: - - type: Transform - pos: -42.5,-21.5 - parent: 2 - - uid: 22082 - components: - - type: Transform - pos: -42.5,-25.5 - parent: 2 - - uid: 22086 - components: - - type: Transform - pos: 72.5,-0.5 - parent: 2 - - uid: 22090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,32.5 - parent: 2 - - uid: 22091 - components: - - type: Transform - pos: -16.5,21.5 - parent: 2 - - uid: 22095 - components: - - type: Transform - pos: -18.5,21.5 - parent: 2 - - uid: 22096 - components: - - type: Transform - pos: 20.5,36.5 - parent: 2 - - uid: 22097 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 2 - - uid: 22100 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 2 - - uid: 22109 - components: - - type: Transform - pos: 33.5,-11.5 - parent: 2 - - uid: 22110 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 2 - - uid: 22111 - components: - - type: Transform - pos: 12.5,-28.5 - parent: 2 - - uid: 22113 - components: - - type: Transform - pos: -11.5,28.5 - parent: 2 - - uid: 22115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,28.5 - parent: 2 - - uid: 22122 - components: - - type: Transform - pos: 39.5,-30.5 - parent: 2 - - uid: 22123 - components: - - type: Transform - pos: -11.5,-3.5 - parent: 2 - - uid: 22124 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 2 - - uid: 22125 - components: - - type: Transform - pos: -14.5,-4.5 - parent: 2 - - uid: 22126 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 2 - - uid: 22127 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 2 - - uid: 22129 - components: - - type: Transform - pos: 89.5,-4.5 - parent: 2 - - uid: 22131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,34.5 - parent: 2 - - uid: 22135 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 2 - - uid: 22142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-2.5 - parent: 2 - - uid: 22143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,7.5 - parent: 2 - - uid: 22144 - components: - - type: Transform - pos: 51.5,-60.5 - parent: 2 - - uid: 22145 - components: - - type: Transform - pos: 53.5,-56.5 - parent: 2 - - uid: 22148 - components: - - type: Transform - pos: 52.5,-56.5 - parent: 2 - - uid: 22149 - components: - - type: Transform - pos: 56.5,-56.5 - parent: 2 - - uid: 22150 - components: - - type: Transform - pos: -51.5,13.5 - parent: 2 - - uid: 22151 - components: - - type: Transform - pos: -36.5,17.5 - parent: 2 - - uid: 22152 - components: - - type: Transform - pos: -37.5,17.5 - parent: 2 - - uid: 22153 - components: - - type: Transform - pos: -38.5,17.5 - parent: 2 - - uid: 22154 - components: - - type: Transform - pos: -35.5,13.5 - parent: 2 - - uid: 22155 - components: - - type: Transform - pos: -36.5,13.5 - parent: 2 - - uid: 22156 - components: - - type: Transform - pos: -37.5,13.5 - parent: 2 - - uid: 22157 - components: - - type: Transform - pos: -38.5,13.5 - parent: 2 - - uid: 22158 - components: - - type: Transform - pos: -22.5,-28.5 - parent: 2 - - uid: 22159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-30.5 - parent: 2 - - uid: 22161 - components: - - type: Transform - pos: -51.5,15.5 - parent: 2 - - uid: 22163 - components: - - type: Transform - pos: 67.5,-81.5 - parent: 2 - - uid: 22164 - components: - - type: Transform - pos: 69.5,-81.5 - parent: 2 - - uid: 22169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 2 - - uid: 22171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-21.5 - parent: 2 - - uid: 22172 - components: - - type: Transform - pos: -29.5,-25.5 - parent: 2 - - uid: 22173 - components: - - type: Transform - pos: -29.5,-26.5 - parent: 2 - - uid: 22174 - components: - - type: Transform - pos: -34.5,-25.5 - parent: 2 - - uid: 22175 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 22176 - components: - - type: Transform - pos: -30.5,-38.5 - parent: 2 - - uid: 22177 - components: - - type: Transform - pos: -36.5,-42.5 - parent: 2 - - uid: 22180 - components: - - type: Transform - pos: 6.5,-58.5 - parent: 2 - - uid: 22181 - components: - - type: Transform - pos: -58.5,-22.5 - parent: 2 - - uid: 22182 - components: - - type: Transform - pos: 9.5,-58.5 - parent: 2 - - uid: 22183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,19.5 - parent: 2 - - uid: 22191 - components: - - type: Transform - pos: 2.5,-41.5 - parent: 2 - - uid: 22197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-61.5 - parent: 2 - - uid: 22203 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-20.5 - parent: 2 - - uid: 22204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-22.5 - parent: 2 - - uid: 22205 - components: - - type: Transform - pos: 37.5,-10.5 - parent: 2 - - uid: 22206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-22.5 - parent: 2 - - uid: 22207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,21.5 - parent: 2 - - uid: 22208 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 2 - - uid: 22209 - components: - - type: Transform - pos: -2.5,-65.5 - parent: 2 - - uid: 22212 - components: - - type: Transform - pos: 38.5,-45.5 - parent: 2 - - uid: 22213 - components: - - type: Transform - pos: 53.5,-60.5 - parent: 2 - - uid: 22214 - components: - - type: Transform - pos: 52.5,-60.5 - parent: 2 - - uid: 22215 - components: - - type: Transform - pos: 58.5,-60.5 - parent: 2 - - uid: 22216 - components: - - type: Transform - pos: 57.5,-60.5 - parent: 2 - - uid: 22217 - components: - - type: Transform - pos: 56.5,-60.5 - parent: 2 - - uid: 22218 - components: - - type: Transform - pos: 63.5,-60.5 - parent: 2 - - uid: 22219 - components: - - type: Transform - pos: 62.5,-60.5 - parent: 2 - - uid: 22220 - components: - - type: Transform - pos: 61.5,-60.5 - parent: 2 - - uid: 22221 - components: - - type: Transform - pos: -21.5,0.5 - parent: 2 - - uid: 22222 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 2 - - uid: 22225 - components: - - type: Transform - pos: 63.5,-56.5 - parent: 2 - - uid: 22226 - components: - - type: Transform - pos: 3.5,-58.5 - parent: 2 - - uid: 22227 - components: - - type: Transform - pos: 58.5,-56.5 - parent: 2 - - uid: 22228 - components: - - type: Transform - pos: 61.5,-56.5 - parent: 2 - - uid: 22229 - components: - - type: Transform - pos: 39.5,-15.5 - parent: 2 - - uid: 22230 - components: - - type: Transform - pos: 5.5,-58.5 - parent: 2 - - uid: 22231 - components: - - type: Transform - pos: 2.5,-64.5 - parent: 2 - - uid: 22232 - components: - - type: Transform - pos: 68.5,-81.5 - parent: 2 - - uid: 22233 - components: - - type: Transform - pos: -0.5,-65.5 - parent: 2 - - uid: 22235 - components: - - type: Transform - pos: 51.5,-56.5 - parent: 2 - - uid: 22236 - components: - - type: Transform - pos: 62.5,-56.5 - parent: 2 - - uid: 22237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-29.5 - parent: 2 - - uid: 22240 - components: - - type: Transform - pos: 70.5,-15.5 - parent: 2 - - uid: 22241 - components: - - type: Transform - pos: 36.5,27.5 - parent: 2 - - uid: 22242 - components: - - type: Transform - pos: 64.5,-39.5 - parent: 2 - - uid: 22243 - components: - - type: Transform - pos: 37.5,-15.5 - parent: 2 - - uid: 22245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-11.5 - parent: 2 - - uid: 22246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-11.5 - parent: 2 - - uid: 22247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-29.5 - parent: 2 - - uid: 22248 - components: - - type: Transform - pos: 38.5,-7.5 - parent: 2 - - uid: 22249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-31.5 - parent: 2 - - uid: 22250 - components: - - type: Transform - pos: 68.5,-16.5 - parent: 2 - - uid: 22251 - components: - - type: Transform - pos: 37.5,27.5 - parent: 2 - - uid: 22252 - components: - - type: Transform - pos: 63.5,-20.5 - parent: 2 - - uid: 22253 - components: - - type: Transform - pos: 37.5,-27.5 - parent: 2 - - uid: 22254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-25.5 - parent: 2 - - uid: 22255 - components: - - type: Transform - pos: 64.5,-41.5 - parent: 2 - - uid: 22256 - components: - - type: Transform - pos: 37.5,-28.5 - parent: 2 - - uid: 22257 - components: - - type: Transform - pos: -22.5,-45.5 - parent: 2 - - uid: 22258 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 2 - - uid: 22259 - components: - - type: Transform - pos: 38.5,-25.5 - parent: 2 - - uid: 22260 - components: - - type: Transform - pos: -34.5,-26.5 - parent: 2 - - uid: 22261 - components: - - type: Transform - pos: 42.5,-26.5 - parent: 2 - - uid: 22262 - components: - - type: Transform - pos: 11.5,-28.5 - parent: 2 - - uid: 22263 - components: - - type: Transform - pos: 41.5,-30.5 - parent: 2 - - uid: 22264 - components: - - type: Transform - pos: 40.5,-30.5 - parent: 2 - - uid: 22265 - components: - - type: Transform - pos: -34.5,-27.5 - parent: 2 - - uid: 22266 - components: - - type: Transform - pos: 42.5,-29.5 - parent: 2 - - uid: 22267 - components: - - type: Transform - pos: 43.5,-24.5 - parent: 2 - - uid: 22269 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 2 - - uid: 22270 - components: - - type: Transform - pos: 45.5,-60.5 - parent: 2 - - uid: 22271 - components: - - type: Transform - pos: 45.5,-59.5 - parent: 2 - - uid: 22272 - components: - - type: Transform - pos: 45.5,-58.5 - parent: 2 - - uid: 22273 - components: - - type: Transform - pos: 45.5,-57.5 - parent: 2 - - uid: 22274 - components: - - type: Transform - pos: 44.5,-57.5 - parent: 2 - - uid: 22275 - components: - - type: Transform - pos: 46.5,-57.5 - parent: 2 - - uid: 22282 - components: - - type: Transform - pos: 1.5,-72.5 - parent: 2 - - uid: 22301 - components: - - type: Transform - pos: 10.5,-51.5 - parent: 2 - - uid: 22302 - components: - - type: Transform - pos: 10.5,-52.5 - parent: 2 - - uid: 22303 - components: - - type: Transform - pos: 10.5,-53.5 - parent: 2 - - uid: 22306 - components: - - type: Transform - pos: 71.5,-15.5 - parent: 2 - - uid: 22307 - components: - - type: Transform - pos: 27.5,-32.5 - parent: 2 - - uid: 22308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-29.5 - parent: 2 - - uid: 22310 - components: - - type: Transform - pos: 34.5,-32.5 - parent: 2 - - uid: 22311 - components: - - type: Transform - pos: 38.5,-34.5 - parent: 2 - - uid: 22313 - components: - - type: Transform - pos: 35.5,-21.5 - parent: 2 - - uid: 22314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-25.5 - parent: 2 - - uid: 22315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-25.5 - parent: 2 - - uid: 22316 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-10.5 - parent: 2 - - uid: 22317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 2 - - uid: 22319 - components: - - type: Transform - pos: 59.5,-25.5 - parent: 2 - - uid: 22320 - components: - - type: Transform - pos: 68.5,-18.5 - parent: 2 - - uid: 22321 - components: - - type: Transform - pos: 69.5,-15.5 - parent: 2 - - uid: 22322 - components: - - type: Transform - pos: 35.5,-11.5 - parent: 2 - - uid: 22323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-20.5 - parent: 2 - - uid: 22328 - components: - - type: Transform - pos: 6.5,-28.5 - parent: 2 - - uid: 22329 - components: - - type: Transform - pos: 8.5,-28.5 - parent: 2 - - uid: 22330 - components: - - type: Transform - pos: 38.5,-35.5 - parent: 2 - - uid: 22331 - components: - - type: Transform - pos: 10.5,-32.5 - parent: 2 - - uid: 22332 - components: - - type: Transform - pos: 7.5,-58.5 - parent: 2 - - uid: 22333 - components: - - type: Transform - pos: 38.5,-46.5 - parent: 2 - - uid: 22335 - components: - - type: Transform - pos: 41.5,-25.5 - parent: 2 - - uid: 22336 - components: - - type: Transform - pos: 37.5,-33.5 - parent: 2 - - uid: 22337 - components: - - type: Transform - pos: 26.5,-31.5 - parent: 2 - - uid: 22338 - components: - - type: Transform - pos: 24.5,-31.5 - parent: 2 - - uid: 22339 - components: - - type: Transform - pos: 38.5,-36.5 - parent: 2 - - uid: 22340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-21.5 - parent: 2 - - uid: 22341 - components: - - type: Transform - pos: 38.5,27.5 - parent: 2 - - uid: 22342 - components: - - type: Transform - pos: 46.5,22.5 - parent: 2 - - uid: 22345 - components: - - type: Transform - pos: 13.5,-3.5 - parent: 2 - - uid: 22346 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 2 - - uid: 22347 - components: - - type: Transform - pos: 13.5,-4.5 - parent: 2 - - uid: 22348 - components: - - type: Transform - pos: 13.5,-5.5 - parent: 2 - - uid: 22350 - components: - - type: Transform - pos: 7.5,-28.5 - parent: 2 - - uid: 22351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-23.5 - parent: 2 - - uid: 22352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-25.5 - parent: 2 - - uid: 22353 - components: - - type: Transform - pos: -53.5,-19.5 - parent: 2 - - uid: 22354 - components: - - type: Transform - pos: -57.5,-30.5 - parent: 2 - - uid: 22355 - components: - - type: Transform - pos: -56.5,-30.5 - parent: 2 - - uid: 22356 - components: - - type: Transform - pos: -58.5,-30.5 - parent: 2 - - uid: 22357 - components: - - type: Transform - pos: -59.5,-30.5 - parent: 2 - - uid: 22358 - components: - - type: Transform - pos: -59.5,-29.5 - parent: 2 - - uid: 22359 - components: - - type: Transform - pos: -59.5,-28.5 - parent: 2 - - uid: 22360 - components: - - type: Transform - pos: -58.5,-23.5 - parent: 2 - - uid: 22361 - components: - - type: Transform - pos: -58.5,-25.5 - parent: 2 - - uid: 22362 - components: - - type: Transform - pos: -58.5,-24.5 - parent: 2 - - uid: 22363 - components: - - type: Transform - pos: -56.5,-22.5 - parent: 2 - - uid: 22364 - components: - - type: Transform - pos: -56.5,-23.5 - parent: 2 - - uid: 22365 - components: - - type: Transform - pos: -56.5,-24.5 - parent: 2 - - uid: 22366 - components: - - type: Transform - pos: -56.5,-25.5 - parent: 2 - - uid: 22367 - components: - - type: Transform - pos: -54.5,-27.5 - parent: 2 - - uid: 22368 - components: - - type: Transform - pos: -53.5,-27.5 - parent: 2 - - uid: 22369 - components: - - type: Transform - pos: -52.5,-27.5 - parent: 2 - - uid: 22370 - components: - - type: Transform - pos: -51.5,-27.5 - parent: 2 - - uid: 22372 - components: - - type: Transform - pos: -53.5,-29.5 - parent: 2 - - uid: 22373 - components: - - type: Transform - pos: -52.5,-29.5 - parent: 2 - - uid: 22374 - components: - - type: Transform - pos: -54.5,-29.5 - parent: 2 - - uid: 22376 - components: - - type: Transform - pos: -27.5,0.5 - parent: 2 - - uid: 22388 - components: - - type: Transform - pos: -36.5,47.5 - parent: 2 - - uid: 22428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 2 - - uid: 22448 - components: - - type: Transform - pos: -34.5,-66.5 - parent: 2 - - uid: 22671 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 - - uid: 22677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-58.5 - parent: 2 - - uid: 22685 - components: - - type: Transform - pos: -39.5,33.5 - parent: 2 - - uid: 23258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 2 - - uid: 23311 - components: - - type: Transform - pos: -39.5,32.5 - parent: 2 - - uid: 23421 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 2 - - uid: 23423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 2 - - uid: 23720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-67.5 - parent: 2 - - uid: 23782 - components: - - type: Transform - pos: -37.5,-39.5 - parent: 2 - - uid: 23993 - components: - - type: Transform - pos: -2.5,2.5 - parent: 2 - - uid: 24066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-67.5 - parent: 2 - - uid: 24067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-63.5 - parent: 2 - - uid: 24083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-67.5 - parent: 2 - - uid: 24628 - components: - - type: Transform - pos: 18.5,12.5 - parent: 2 - - uid: 24689 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,11.5 - parent: 2 - - uid: 24740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,0.5 - parent: 2 - - uid: 25009 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,26.5 - parent: 2 - - uid: 25065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-89.5 - parent: 2 - - uid: 25085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-85.5 - parent: 2 - - uid: 25122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-68.5 - parent: 2 - - uid: 25811 - components: - - type: Transform - pos: -50.5,-26.5 - parent: 2 - - uid: 25812 - components: - - type: Transform - pos: -50.5,-25.5 - parent: 2 - - uid: 25813 - components: - - type: Transform - pos: -50.5,-24.5 - parent: 2 - - uid: 26181 - components: - - type: Transform - pos: 82.5,4.5 - parent: 2 - - uid: 26204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-47.5 - parent: 2 - - uid: 26485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-53.5 - parent: 2 - - uid: 26486 - components: - - type: Transform - pos: 57.5,-56.5 - parent: 2 - - uid: 26605 - components: - - type: Transform - pos: -3.5,-28.5 - parent: 2 - - uid: 26614 - components: - - type: Transform - pos: -4.5,-28.5 - parent: 2 - - uid: 26901 - components: - - type: Transform - pos: 82.5,3.5 - parent: 2 - - uid: 26919 - components: - - type: Transform - pos: 82.5,5.5 - parent: 2 - - uid: 26934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-53.5 - parent: 2 - - uid: 26935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-53.5 - parent: 2 - - uid: 26980 - components: - - type: Transform - pos: 80.5,5.5 - parent: 2 - - uid: 27145 - components: - - type: Transform - pos: -37.5,47.5 - parent: 2 - - uid: 28333 - components: - - type: Transform - pos: 31.5,-72.5 - parent: 2 - - uid: 28852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-87.5 - parent: 2 - - uid: 28879 - components: - - type: Transform - pos: -34.5,47.5 - parent: 2 - - uid: 29007 - components: - - type: Transform - pos: -14.5,25.5 - parent: 2 - - uid: 29384 - components: - - type: Transform - pos: 84.5,2.5 - parent: 2 - - uid: 29547 - components: - - type: Transform - pos: 32.5,-72.5 - parent: 2 - - uid: 29881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-38.5 - parent: 2 - - uid: 29978 - components: - - type: Transform - pos: -51.5,-29.5 - parent: 2 - - uid: 29985 - components: - - type: Transform - pos: 81.5,5.5 - parent: 2 - - uid: 29989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-45.5 - parent: 2 - - uid: 30003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,24.5 - parent: 2 - - uid: 30041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,36.5 - parent: 2 - - uid: 30043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,34.5 - parent: 2 - - uid: 30248 - components: - - type: Transform - pos: -39.5,43.5 - parent: 2 - - uid: 30249 - components: - - type: Transform - pos: -39.5,42.5 - parent: 2 - - uid: 30255 - components: - - type: Transform - pos: -39.5,44.5 - parent: 2 - - uid: 30260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,31.5 - parent: 2 - - uid: 30261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,32.5 - parent: 2 - - uid: 30262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,33.5 - parent: 2 - - uid: 30265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,37.5 - parent: 2 - - uid: 30266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,37.5 - parent: 2 - - uid: 30267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,37.5 - parent: 2 - - uid: 30270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,29.5 - parent: 2 - - uid: 30272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,29.5 - parent: 2 - - uid: 30285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,29.5 - parent: 2 - - uid: 30290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,29.5 - parent: 2 - - uid: 30293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,37.5 - parent: 2 - - uid: 30294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,37.5 - parent: 2 - - uid: 30300 - components: - - type: Transform - pos: -39.5,31.5 - parent: 2 - - uid: 30302 - components: - - type: Transform - pos: -39.5,30.5 - parent: 2 - - uid: 30309 - components: - - type: Transform - pos: -39.5,34.5 - parent: 2 - - uid: 30815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,24.5 - parent: 2 - - uid: 30831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,25.5 - parent: 2 -- proto: RemoteSignaller - entities: - - uid: 22383 - components: - - type: Transform - pos: -16.756233,4.2179623 - parent: 2 - - uid: 22384 - components: - - type: Transform - pos: -16.646858,4.2179623 - parent: 2 -- proto: ResearchAndDevelopmentServer - entities: - - uid: 22385 - components: - - type: Transform - pos: 52.5,-31.5 - parent: 2 -- proto: ResearchComputerCircuitboard - entities: - - uid: 493 - components: - - type: Transform - pos: 63.562996,-31.415297 - parent: 2 -- proto: ResearchDisk - entities: - - uid: 22763 - components: - - type: Transform - pos: 45.57849,-73.52191 - parent: 2 -- proto: ResearchDisk5000 - entities: - - uid: 10557 - components: - - type: Transform - pos: 57.47167,-31.549068 - parent: 2 - - uid: 10558 - components: - - type: Transform - pos: 57.75562,-31.240427 - parent: 2 -- proto: Retractor - entities: - - uid: 22387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.396095,-77.26991 - parent: 2 -- proto: RiotShield - entities: - - uid: 24572 - components: - - type: Transform - pos: -2.612083,35.531044 - parent: 2 - - uid: 24573 - components: - - type: Transform - pos: -2.518333,35.656044 - parent: 2 - - uid: 24586 - components: - - type: Transform - pos: -2.299583,35.48417 - parent: 2 - - uid: 30304 - components: - - type: Transform - pos: -1.6067088,47.458466 - parent: 2 - - uid: 30750 - components: - - type: Transform - pos: -1.4504588,47.708466 - parent: 2 - - uid: 30751 - components: - - type: Transform - pos: -1.3879588,47.50534 - parent: 2 -- proto: RobocopCircuitBoard - entities: - - uid: 20202 - components: - - type: Transform - parent: 19293 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: RockGuitarInstrument - entities: - - uid: 31500 - components: - - type: Transform - pos: 59.5,-68.5 - parent: 2 -- proto: RollerBed - entities: - - uid: 22391 - components: - - type: Transform - pos: 63.382973,11.66713 - parent: 2 -- proto: RubberStampApproved - entities: - - uid: 22392 - components: - - type: Transform - pos: -33.048824,-27.254221 - parent: 2 - - uid: 29799 - components: - - type: Transform - pos: -6.423357,14.482857 - parent: 2 -- proto: RubberStampDenied - entities: - - uid: 22393 - components: - - type: Transform - pos: -32.93945,-27.410471 - parent: 2 - - uid: 29798 - components: - - type: Transform - pos: -6.657732,14.654732 - parent: 2 -- proto: SalvageMagnet - entities: - - uid: 22394 - components: - - type: Transform - pos: -46.5,-40.5 - parent: 2 -- proto: SalvageSpawnerScrapCommon - entities: - - uid: 5466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-46.5 - parent: 2 - - uid: 9218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,21.5 - parent: 2 - - uid: 10630 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,17.5 - parent: 2 - - uid: 10631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,25.5 - parent: 2 - - uid: 10633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,27.5 - parent: 2 - - uid: 13529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-46.5 - parent: 2 - - uid: 19870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,26.5 - parent: 2 - - uid: 21008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,22.5 - parent: 2 - - uid: 21371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,22.5 - parent: 2 - - uid: 21668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-47.5 - parent: 2 - - uid: 31554 - components: - - type: Transform - pos: -18.5,13.5 - parent: 2 - - uid: 31650 - components: - - type: Transform - pos: -19.5,13.5 - parent: 2 - - uid: 31651 - components: - - type: Transform - pos: -19.5,12.5 - parent: 2 - - uid: 31653 - components: - - type: Transform - pos: -34.5,18.5 - parent: 2 - - uid: 31654 - components: - - type: Transform - pos: -31.5,19.5 - parent: 2 - - uid: 31655 - components: - - type: Transform - pos: -33.5,19.5 - parent: 2 - - uid: 31656 - components: - - type: Transform - pos: -37.5,18.5 - parent: 2 - - uid: 31657 - components: - - type: Transform - pos: -38.5,19.5 - parent: 2 - - uid: 31658 - components: - - type: Transform - pos: -37.5,24.5 - parent: 2 - - uid: 31659 - components: - - type: Transform - pos: -34.5,25.5 - parent: 2 - - uid: 31660 - components: - - type: Transform - pos: -36.5,26.5 - parent: 2 - - uid: 31661 - components: - - type: Transform - pos: -37.5,31.5 - parent: 2 - - uid: 31662 - components: - - type: Transform - pos: -36.5,32.5 - parent: 2 - - uid: 31663 - components: - - type: Transform - pos: -31.5,36.5 - parent: 2 - - uid: 31664 - components: - - type: Transform - pos: -32.5,38.5 - parent: 2 - - uid: 31665 - components: - - type: Transform - pos: -31.5,39.5 - parent: 2 - - uid: 31666 - components: - - type: Transform - pos: -37.5,43.5 - parent: 2 - - uid: 31667 - components: - - type: Transform - pos: -36.5,43.5 - parent: 2 - - uid: 31668 - components: - - type: Transform - pos: -35.5,42.5 - parent: 2 - - uid: 31669 - components: - - type: Transform - pos: -24.5,35.5 - parent: 2 - - uid: 31670 - components: - - type: Transform - pos: -16.5,12.5 - parent: 2 - - uid: 31673 - components: - - type: Transform - pos: -38.5,12.5 - parent: 2 - - uid: 31674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,26.5 - parent: 2 - - uid: 31675 - components: - - type: Transform - pos: -55.5,12.5 - parent: 2 - - uid: 31784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,18.5 - parent: 2 - - uid: 31788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,16.5 - parent: 2 - - uid: 31789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,8.5 - parent: 2 - - uid: 31790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,11.5 - parent: 2 - - uid: 31791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,10.5 - parent: 2 - - uid: 31792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,6.5 - parent: 2 - - uid: 31969 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-46.5 - parent: 2 - - uid: 31970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-45.5 - parent: 2 - - uid: 31971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-45.5 - parent: 2 - - uid: 31972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-46.5 - parent: 2 - - uid: 31973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-46.5 - parent: 2 -- proto: SalvageSpawnerScrapCommon75 - entities: - - uid: 31645 - components: - - type: Transform - pos: -21.5,-50.5 - parent: 2 - - uid: 31647 - components: - - type: Transform - pos: -27.5,-54.5 - parent: 2 - - uid: 31648 - components: - - type: Transform - pos: -22.5,-54.5 - parent: 2 - - uid: 31649 - components: - - type: Transform - pos: -24.5,-53.5 - parent: 2 -- proto: SandBattlemap - entities: - - uid: 5608 - components: - - type: Transform - pos: 81.00386,-28.200298 - parent: 2 -- proto: Saw - entities: - - uid: 1160 - components: - - type: Transform - pos: 47.53683,-24.376837 - parent: 2 - - uid: 22396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.38707,-77.3066 - parent: 2 -- proto: SawElectric - entities: - - uid: 22398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.46978,-77.49007 - parent: 2 -- proto: Scalpel - entities: - - uid: 22399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.46978,-77.214874 - parent: 2 - - uid: 23808 - components: - - type: Transform - pos: 47.41183,-24.626837 - parent: 2 -- proto: SciFlash - entities: - - uid: 22401 - components: - - type: Transform - pos: 6.50395,33.459053 - parent: 2 -- proto: Screen - entities: - - uid: 164 - components: - - type: Transform - pos: -3.5,28.5 - parent: 2 - - uid: 22402 - components: - - type: Transform - pos: 62.5,-11.5 - parent: 2 - - uid: 22403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,7.5 - parent: 2 - - uid: 22404 - components: - - type: Transform - pos: 73.5,-15.5 - parent: 2 - - uid: 22405 - components: - - type: Transform - pos: -7.5,0.5 - parent: 2 - - uid: 22406 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - - uid: 22407 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 2 - - uid: 22408 - components: - - type: Transform - pos: 73.5,-11.5 - parent: 2 - - uid: 22409 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 2 - - uid: 22410 - components: - - type: Transform - pos: -36.5,0.5 - parent: 2 - - uid: 22411 - components: - - type: Transform - pos: -52.5,0.5 - parent: 2 - - uid: 22412 - components: - - type: Transform - pos: -64.5,-16.5 - parent: 2 - - uid: 22413 - components: - - type: Transform - pos: -69.5,11.5 - parent: 2 - - uid: 22414 - components: - - type: Transform - pos: -2.5,13.5 - parent: 2 - - uid: 22415 - components: - - type: Transform - pos: 5.5,18.5 - parent: 2 - - uid: 22416 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 2 - - uid: 22417 - components: - - type: Transform - pos: -4.5,-52.5 - parent: 2 - - uid: 22418 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 2 - - uid: 22419 - components: - - type: Transform - pos: -16.5,-32.5 - parent: 2 - - uid: 22420 - components: - - type: Transform - pos: -14.5,-11.5 - parent: 2 - - uid: 22421 - components: - - type: Transform - pos: -19.5,8.5 - parent: 2 - - uid: 22422 - components: - - type: Transform - pos: -23.5,8.5 - parent: 2 -- proto: ScreenTimer - entities: - - uid: 14503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,31.5 - parent: 2 - - uid: 17965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,36.5 - parent: 2 -- proto: Screwdriver - entities: - - uid: 8401 - components: - - type: Transform - pos: -23.407362,-29.455332 - parent: 2 - - uid: 22423 - components: - - type: Transform - pos: 59.397083,-51.321266 - parent: 2 - - uid: 22424 - components: - - type: Transform - pos: 37.45603,-19.009247 - parent: 2 - - uid: 22425 - components: - - type: Transform - pos: -46.457306,2.9827793 - parent: 2 - - uid: 22427 - components: - - type: Transform - rot: 0.00013372956891544163 rad - pos: -8.435265,-33.26435 - parent: 2 - - uid: 30164 - components: - - type: Transform - pos: 22.495987,42.313133 - parent: 2 -- proto: SecBreachingHammer - entities: - - uid: 20428 - components: - - type: Transform - pos: -0.5513725,47.60881 - parent: 2 - - uid: 23926 - components: - - type: Transform - pos: -0.5513725,47.436935 - parent: 2 -- proto: SecurityPalletBuy - entities: - - uid: 141 - components: - - type: Transform - pos: 22.5,34.5 - parent: 2 -- proto: SecurityTechFab - entities: - - uid: 3349 - components: - - type: Transform - pos: 2.5,33.5 - parent: 2 -- proto: SeedExtractor - entities: - - uid: 22433 - components: - - type: Transform - pos: 45.5,-5.5 - parent: 2 -- proto: ShardGlass - entities: - - uid: 22435 - components: - - type: Transform - pos: 60.52009,-47.51496 - parent: 2 - - uid: 22436 - components: - - type: Transform - pos: -41.498413,-16.841608 - parent: 2 -- proto: ShardGlassReinforced - entities: - - uid: 22437 - components: - - type: Transform - pos: -52.937687,15.598715 - parent: 2 - - uid: 22438 - components: - - type: Transform - pos: -57.359562,12.192465 - parent: 2 - - uid: 22439 - components: - - type: Transform - pos: -57.531437,12.004965 - parent: 2 - - uid: 22440 - components: - - type: Transform - pos: -55.265812,16.848715 - parent: 2 - - uid: 22441 - components: - - type: Transform - pos: -53.265812,15.348715 - parent: 2 - - uid: 22442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,14.5 - parent: 2 - - uid: 22443 - components: - - type: Transform - pos: -57.531437,14.45809 - parent: 2 -- proto: SheetGlass - entities: - - uid: 4141 - components: - - type: Transform - pos: 73.341774,-16.237913 - parent: 2 - - uid: 4146 - components: - - type: Transform - pos: 9.407842,-60.015488 - parent: 2 - - uid: 5848 - components: - - type: Transform - pos: -65.48615,13.537083 - parent: 2 - - uid: 22444 - components: - - type: Transform - pos: -51.52255,-5.0715327 - parent: 2 - - uid: 22445 - components: - - type: Transform - pos: -51.52255,-5.0715327 - parent: 2 - - uid: 22446 - components: - - type: Transform - pos: 47.405727,11.349856 - parent: 2 - - uid: 22449 - components: - - type: Transform - pos: -51.52255,-5.0715327 - parent: 2 - - uid: 22451 - components: - - type: Transform - pos: -45.29138,21.721916 - parent: 2 - - uid: 22452 - components: - - type: Transform - pos: -23.474255,-5.524679 - parent: 2 - - uid: 22453 - components: - - type: Transform - pos: -28.687122,-52.44169 - parent: 2 - - uid: 22454 - components: - - type: Transform - pos: 9.439449,-60.01837 - parent: 2 - - uid: 22455 - components: - - type: Transform - pos: 9.439449,-60.01837 - parent: 2 - - uid: 22456 - components: - - type: Transform - rot: -0.0007233519572764635 rad - pos: 47.73502,-67.92985 - parent: 2 - - uid: 22457 - components: - - type: Transform - pos: 59.63006,-19.884428 - parent: 2 - - uid: 22458 - components: - - type: Transform - pos: 78.42439,-63.099358 - parent: 2 - - uid: 22460 - components: - - type: Transform - pos: 9.439449,-60.01837 - parent: 2 - - uid: 22461 - components: - - type: Transform - pos: -23.465462,1.6571176 - parent: 2 - - uid: 29413 - components: - - type: Transform - pos: 73.32297,-16.258312 - parent: 2 -- proto: SheetPlasma - entities: - - uid: 5697 - components: - - type: Transform - pos: -65.54865,12.50544 - parent: 2 - - uid: 10717 - components: - - type: Transform - pos: -7.452041,-63.430412 - parent: 2 - - uid: 22462 - components: - - type: Transform - pos: 43.53589,-62.501984 - parent: 2 - - uid: 22463 - components: - - type: Transform - pos: 77.44578,-54.439636 - parent: 2 -- proto: SheetPlasma1 - entities: - - uid: 17701 - components: - - type: Transform - pos: 72.534645,-47.488365 - parent: 2 - - uid: 22465 - components: - - type: Transform - pos: 57.348213,-49.249336 - parent: 2 - - uid: 22466 - components: - - type: Transform - pos: 57.348213,-49.249336 - parent: 2 - - uid: 22467 - components: - - type: Transform - pos: 57.348213,-49.249336 - parent: 2 -- proto: SheetPlasteel - entities: - - uid: 4123 - components: - - type: Transform - pos: 9.689092,-59.702988 - parent: 2 - - uid: 22468 - components: - - type: Transform - pos: 9.673824,-59.64337 - parent: 2 - - uid: 22470 - components: - - type: Transform - pos: -51.506924,-5.4777827 - parent: 2 - - uid: 22471 - components: - - type: Transform - pos: -51.506924,-5.4777827 - parent: 2 - - uid: 22472 - components: - - type: Transform - pos: -51.506924,-5.4777827 - parent: 2 - - uid: 22473 - components: - - type: Transform - pos: -23.498888,1.519556 - parent: 2 - - uid: 25140 - components: - - type: Transform - pos: 9.687922,-59.686913 - parent: 2 - - uid: 25141 - components: - - type: Transform - pos: 9.594172,-59.686913 - parent: 2 -- proto: SheetPlastic - entities: - - uid: 999 - components: - - type: Transform - pos: 73.45115,-16.519163 - parent: 2 - - uid: 22474 - components: - - type: Transform - pos: 59.47381,-20.228178 - parent: 2 - - uid: 29412 - components: - - type: Transform - pos: 73.46359,-16.508312 - parent: 2 -- proto: SheetRGlass - entities: - - uid: 22476 - components: - - type: Transform - pos: -65.35544,13.342238 - parent: 2 - - uid: 22477 - components: - - type: Transform - pos: -28.390247,-52.707314 - parent: 2 - - uid: 22478 - components: - - type: Transform - pos: 47.289577,-67.7736 - parent: 2 - - uid: 22479 - components: - - type: Transform - pos: 78.42439,-63.599358 - parent: 2 -- proto: SheetSteel - entities: - - uid: 1074 - components: - - type: Transform - pos: 8.537008,-46.491272 - parent: 2 - - uid: 1164 - components: - - type: Transform - pos: 8.517915,-46.503113 - parent: 2 - - uid: 4139 - components: - - type: Transform - pos: 73.6699,-16.316038 - parent: 2 - - uid: 4147 - components: - - type: Transform - pos: 9.470342,-59.499863 - parent: 2 - - uid: 4210 - components: - - type: Transform - pos: 8.517915,-46.503113 - parent: 2 - - uid: 4276 - components: - - type: Transform - pos: 8.517915,-46.503113 - parent: 2 - - uid: 4874 - components: - - type: Transform - pos: 8.517915,-46.503113 - parent: 2 - - uid: 5496 - components: - - type: Transform - pos: 8.517915,-46.503113 - parent: 2 - - uid: 13994 - components: - - type: Transform - pos: 8.537008,-46.491272 - parent: 2 - - uid: 18287 - components: - - type: Transform - pos: 8.537008,-46.491272 - parent: 2 - - uid: 19465 - components: - - type: Transform - pos: 2.5069914,-53.419846 - parent: 2 - - uid: 22481 - components: - - type: Transform - pos: -51.5538,-4.6965327 - parent: 2 - - uid: 22482 - components: - - type: Transform - pos: 9.423824,-59.471497 - parent: 2 - - uid: 22483 - components: - - type: Transform - pos: 59.34881,-19.759428 - parent: 2 - - uid: 22484 - components: - - type: Transform - pos: 47.796352,11.724856 - parent: 2 - - uid: 22486 - components: - - type: Transform - pos: -65.63669,13.873488 - parent: 2 - - uid: 22487 - components: - - type: Transform - pos: -65.43356,13.982863 - parent: 2 - - uid: 22489 - components: - - type: Transform - pos: -51.5538,-4.6965327 - parent: 2 - - uid: 22492 - components: - - type: Transform - pos: -45.69763,21.378166 - parent: 2 - - uid: 22493 - components: - - type: Transform - pos: -23.005505,-5.509054 - parent: 2 - - uid: 22495 - components: - - type: Transform - pos: -28.671497,-53.41044 - parent: 2 - - uid: 22498 - components: - - type: Transform - pos: 47.711452,-67.03922 - parent: 2 - - uid: 22499 - components: - - type: Transform - pos: 78.65877,-63.208733 - parent: 2 - - uid: 22500 - components: - - type: Transform - pos: -51.5538,-4.6965327 - parent: 2 - - uid: 22503 - components: - - type: Transform - pos: 9.423824,-59.471497 - parent: 2 - - uid: 22504 - components: - - type: Transform - pos: 9.423824,-59.471497 - parent: 2 - - uid: 22505 - components: - - type: Transform - pos: -16.5,3.5 - parent: 2 - - uid: 22506 - components: - - type: Transform - pos: -16.5,3.5 - parent: 2 - - uid: 25142 - components: - - type: Transform - pos: -9.446684,-72.43277 - parent: 2 - - uid: 25143 - components: - - type: Transform - pos: -9.462309,-72.43277 - parent: 2 - - uid: 25144 - components: - - type: Transform - pos: -9.446684,-72.43277 - parent: 2 - - uid: 29410 - components: - - type: Transform - pos: 73.66672,-16.305187 - parent: 2 -- proto: ShelfStoreBar - entities: - - uid: 21302 - components: - - type: Transform - pos: 24.5,0.5 - parent: 2 -- proto: ShelfStoreKitchen - entities: - - uid: 1240 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 -- proto: ShellShotgun - entities: - - uid: 30460 - components: - - type: Transform - pos: -31.474209,45.709854 - parent: 2 -- proto: ShipBattlemap - entities: - - uid: 5707 - components: - - type: Transform - pos: 80.96498,-27.544048 - parent: 2 -- proto: ShotGunCabinetFilled - entities: - - uid: 24751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 2 -- proto: Shovel - entities: - - uid: 19394 - components: - - type: Transform - pos: 67.52701,8.503879 - parent: 2 - - uid: 22508 - components: - - type: Transform - pos: -28.5,-34.5 - parent: 2 -- proto: ShuttersFrame - entities: - - uid: 3234 - components: - - type: Transform - pos: -31.5,40.5 - parent: 2 -- proto: ShuttersNormal - entities: - - uid: 392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-8.5 - parent: 2 - - uid: 20195 - components: - - type: Transform - pos: 54.5,-15.5 - parent: 2 - - uid: 20794 - components: - - type: Transform - pos: 53.5,-15.5 - parent: 2 - - uid: 21503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-45.5 - parent: 2 - - uid: 21505 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-47.5 - parent: 2 - - uid: 22511 - components: - - type: Transform - pos: 52.5,-15.5 - parent: 2 - - uid: 22514 - components: - - type: Transform - pos: 43.5,1.5 - parent: 2 - - uid: 26907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-7.5 - parent: 2 -- proto: ShuttersNormalOpen - entities: - - uid: 181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,18.5 - parent: 2 - - uid: 411 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 2 - - uid: 543 - components: - - type: Transform - pos: 61.5,-28.5 - parent: 2 - - uid: 673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-31.5 - parent: 2 - - uid: 2139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,18.5 - parent: 2 - - uid: 2630 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,18.5 - parent: 2 - - uid: 2631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,18.5 - parent: 2 - - uid: 2632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,17.5 - parent: 2 - - uid: 2633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,18.5 - parent: 2 - - uid: 2655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,15.5 - parent: 2 - - uid: 5433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-30.5 - parent: 2 - - uid: 6605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-68.5 - parent: 2 - - uid: 10728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,19.5 - parent: 2 - - uid: 10730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,21.5 - parent: 2 - - uid: 10804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-69.5 - parent: 2 - - uid: 10910 - components: - - type: Transform - pos: 59.5,-28.5 - parent: 2 - - uid: 10973 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 2 - - uid: 11529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-24.5 - parent: 2 - - uid: 12779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-29.5 - parent: 2 - - uid: 13372 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 2 - - uid: 16335 - components: - - type: Transform - pos: 63.5,-28.5 - parent: 2 - - uid: 20278 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 2 - - uid: 20331 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 2 - - uid: 22485 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 2 - - uid: 22512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-16.5 - parent: 2 - - uid: 22519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-18.5 - parent: 2 - - uid: 22520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-16.5 - parent: 2 - - uid: 22521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-18.5 - parent: 2 - - uid: 22522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-25.5 - parent: 2 - - uid: 22523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-29.5 - parent: 2 - - uid: 22524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-51.5 - parent: 2 - - uid: 22525 - components: - - type: Transform - pos: 74.5,-25.5 - parent: 2 - - uid: 22527 - components: - - type: Transform - pos: -13.5,28.5 - parent: 2 - - uid: 22528 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 2 - - uid: 22529 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 2 - - uid: 22530 - components: - - type: Transform - pos: -40.5,-27.5 - parent: 2 - - uid: 22532 - components: - - type: Transform - pos: -11.5,28.5 - parent: 2 - - uid: 22535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 2 - - uid: 22536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 2 - - uid: 22540 - components: - - type: Transform - pos: -39.5,-27.5 - parent: 2 - - uid: 22541 - components: - - type: Transform - pos: 76.5,-11.5 - parent: 2 - - uid: 22542 - components: - - type: Transform - pos: 74.5,-0.5 - parent: 2 - - uid: 22543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 2 - - uid: 22544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 2 - - uid: 22545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-7.5 - parent: 2 - - uid: 22546 - components: - - type: Transform - pos: 69.5,-25.5 - parent: 2 - - uid: 22547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-50.5 - parent: 2 - - uid: 22548 - components: - - type: Transform - pos: 3.5,23.5 - parent: 2 - - uid: 22549 - components: - - type: Transform - pos: 3.5,24.5 - parent: 2 - - uid: 22550 - components: - - type: Transform - pos: 2.5,22.5 - parent: 2 - - uid: 22551 - components: - - type: Transform - pos: 1.5,22.5 - parent: 2 - - uid: 22552 - components: - - type: Transform - pos: -14.5,28.5 - parent: 2 - - uid: 22553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-52.5 - parent: 2 - - uid: 22558 - components: - - type: Transform - pos: 10.5,-32.5 - parent: 2 - - uid: 22559 - components: - - type: Transform - pos: 72.5,-25.5 - parent: 2 - - uid: 22560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-17.5 - parent: 2 - - uid: 22561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-23.5 - parent: 2 - - uid: 22562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 2 - - uid: 22563 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 2 - - uid: 22564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-26.5 - parent: 2 - - uid: 22565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-26.5 - parent: 2 - - uid: 22566 - components: - - type: Transform - pos: 74.5,-11.5 - parent: 2 - - uid: 22567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-10.5 - parent: 2 - - uid: 22568 - components: - - type: Transform - pos: -31.5,-32.5 - parent: 2 - - uid: 22569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-29.5 - parent: 2 - - uid: 22570 - components: - - type: Transform - pos: -32.5,-32.5 - parent: 2 - - uid: 22571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-25.5 - parent: 2 - - uid: 22572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-27.5 - parent: 2 - - uid: 22573 - components: - - type: Transform - pos: -33.5,-32.5 - parent: 2 - - uid: 22575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-19.5 - parent: 2 - - uid: 22576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 2 - - uid: 22577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-18.5 - parent: 2 - - uid: 22580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-15.5 - parent: 2 - - uid: 22583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-17.5 - parent: 2 - - uid: 22584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 2 - - uid: 22585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-15.5 - parent: 2 - - uid: 22586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-15.5 - parent: 2 - - uid: 22587 - components: - - type: Transform - pos: 72.5,-11.5 - parent: 2 - - uid: 22588 - components: - - type: Transform - pos: 72.5,-0.5 - parent: 2 - - uid: 22598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 2 - - uid: 22599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-6.5 - parent: 2 - - uid: 22605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-26.5 - parent: 2 - - uid: 22606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-29.5 - parent: 2 - - uid: 22607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-10.5 - parent: 2 - - uid: 22608 - components: - - type: Transform - pos: 70.5,-11.5 - parent: 2 - - uid: 22609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,0.5 - parent: 2 - - uid: 22610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,1.5 - parent: 2 - - uid: 22611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,3.5 - parent: 2 - - uid: 23544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-66.5 - parent: 2 - - uid: 23635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,3.5 - parent: 2 - - uid: 23713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 2 - - uid: 23725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,2.5 - parent: 2 - - uid: 23726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,5.5 - parent: 2 - - uid: 23733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 2 - - uid: 23734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,7.5 - parent: 2 - - uid: 23779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 2 - - uid: 23851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,7.5 - parent: 2 - - uid: 24210 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 2 - - uid: 24211 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - - uid: 24213 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 2 - - uid: 24214 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 - - uid: 24218 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - - uid: 24219 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 2 - - uid: 24240 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 2 - - uid: 24540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,32.5 - parent: 2 - - uid: 26248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-22.5 - parent: 2 - - uid: 30339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,31.5 - parent: 2 - - uid: 30347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,33.5 - parent: 2 - - uid: 30358 - components: - - type: Transform - pos: -28.5,29.5 - parent: 2 - - uid: 30359 - components: - - type: Transform - pos: -27.5,29.5 - parent: 2 - - uid: 30360 - components: - - type: Transform - pos: -25.5,29.5 - parent: 2 - - uid: 30361 - components: - - type: Transform - pos: -24.5,29.5 - parent: 2 - - uid: 30362 - components: - - type: Transform - pos: -22.5,29.5 - parent: 2 - - uid: 30363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,31.5 - parent: 2 - - uid: 30364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,32.5 - parent: 2 - - uid: 30365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,33.5 - parent: 2 - - uid: 31917 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 31918 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 2 - - uid: 31919 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 2 - - uid: 31920 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 2 - - uid: 31921 - components: - - type: Transform - pos: 22.5,-2.5 - parent: 2 - - uid: 32083 - components: - - type: Transform - pos: 33.5,-11.5 - parent: 2 - - uid: 32084 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 2 - - uid: 32085 - components: - - type: Transform - pos: 35.5,-11.5 - parent: 2 - - uid: 32086 - components: - - type: Transform - pos: 38.5,-7.5 - parent: 2 - - uid: 32087 - components: - - type: Transform - pos: 39.5,-7.5 - parent: 2 - - uid: 32088 - components: - - type: Transform - pos: 40.5,-7.5 - parent: 2 - - uid: 32089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 2 - - uid: 32090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-10.5 - parent: 2 - - uid: 32092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 2 - - uid: 32093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-10.5 - parent: 2 - - uid: 32094 - components: - - type: Transform - pos: 42.5,-11.5 - parent: 2 - - uid: 32095 - components: - - type: Transform - pos: 43.5,-11.5 - parent: 2 - - uid: 32096 - components: - - type: Transform - pos: 44.5,-11.5 - parent: 2 - - uid: 32097 - components: - - type: Transform - pos: 46.5,-10.5 - parent: 2 - - uid: 32098 - components: - - type: Transform - pos: 49.5,-10.5 - parent: 2 - - uid: 32099 - components: - - type: Transform - pos: 47.5,-10.5 - parent: 2 - - uid: 32100 - components: - - type: Transform - pos: 48.5,-10.5 - parent: 2 - - uid: 32148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 2 - - uid: 32149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 2 - - uid: 32150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-17.5 - parent: 2 - - uid: 32151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-16.5 - parent: 2 - - uid: 32152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 2 -- proto: ShuttersRadiationOpen - entities: - - uid: 6216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-65.5 - parent: 2 - - uid: 6223 - components: - - type: Transform - pos: -13.5,-67.5 - parent: 2 - - uid: 6667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-63.5 - parent: 2 - - uid: 6824 - components: - - type: Transform - pos: -11.5,-67.5 - parent: 2 - - uid: 8628 - components: - - type: Transform - pos: -15.5,-67.5 - parent: 2 - - uid: 13540 - components: - - type: Transform - pos: -9.5,-67.5 - parent: 2 - - uid: 22612 - components: - - type: Transform - pos: 0.5,-72.5 - parent: 2 - - uid: 22613 - components: - - type: Transform - pos: 1.5,-72.5 - parent: 2 - - uid: 22614 - components: - - type: Transform - pos: -2.5,-72.5 - parent: 2 - - uid: 22615 - components: - - type: Transform - pos: -1.5,-72.5 - parent: 2 -- proto: ShuttersWindow - entities: - - uid: 3236 - components: - - type: Transform - pos: -19.5,34.5 - parent: 2 - - uid: 18846 - components: - - type: Transform - pos: -18.5,36.5 - parent: 2 - - uid: 22378 - components: - - type: Transform - pos: -17.5,34.5 - parent: 2 - - uid: 22616 - components: - - type: MetaData - name: Warehouse Shutters - - type: Transform - pos: -31.5,-17.5 - parent: 2 - - uid: 30322 - components: - - type: Transform - pos: -19.5,36.5 - parent: 2 - - uid: 30323 - components: - - type: Transform - pos: -17.5,36.5 - parent: 2 - - uid: 30324 - components: - - type: Transform - pos: -18.5,34.5 - parent: 2 -- proto: ShuttersWindowOpen - entities: - - uid: 586 - components: - - type: Transform - pos: -13.5,22.5 - parent: 2 - - uid: 22624 - components: - - type: Transform - pos: -10.5,22.5 - parent: 2 - - uid: 22625 - components: - - type: Transform - pos: -9.5,22.5 - parent: 2 - - uid: 22626 - components: - - type: Transform - pos: -8.5,22.5 - parent: 2 - - uid: 22627 - components: - - type: Transform - pos: -6.5,22.5 - parent: 2 - - uid: 22628 - components: - - type: Transform - pos: -5.5,22.5 - parent: 2 - - uid: 22629 - components: - - type: Transform - pos: -4.5,22.5 - parent: 2 - - uid: 22630 - components: - - type: Transform - pos: -2.5,22.5 - parent: 2 - - uid: 22631 - components: - - type: Transform - pos: -1.5,22.5 - parent: 2 - - uid: 22632 - components: - - type: Transform - pos: -0.5,22.5 - parent: 2 - - uid: 26561 - components: - - type: Transform - pos: -12.5,22.5 - parent: 2 - - uid: 31734 - components: - - type: Transform - pos: -14.5,22.5 - parent: 2 -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 22633 - components: - - type: Transform - pos: -67.6619,12.290884 - parent: 2 -- proto: SignalButton - entities: - - uid: 1012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-18.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 32148: - - - Pressed - - Toggle - 32149: - - - Pressed - - Toggle - 32150: - - - Pressed - - Toggle - 32151: - - - Pressed - - Toggle - 32152: - - - Pressed - - Toggle - - uid: 3241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,36.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 30322: - - - Pressed - - Toggle - 18846: - - - Pressed - - Toggle - 30323: - - - Pressed - - Toggle - 3236: - - - Pressed - - Toggle - 30324: - - - Pressed - - Toggle - 22378: - - - Pressed - - Toggle - - uid: 8627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-66.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13540: - - - Pressed - - Toggle - 6216: - - - Pressed - - Toggle - 6667: - - - Pressed - - Toggle - 6824: - - - Pressed - - Toggle - 6223: - - - Pressed - - Toggle - 8628: - - - Pressed - - Toggle - - uid: 10820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1150: - - - Pressed - - DoorBolt - - uid: 22015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,21.5 - parent: 2 - - uid: 22016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 10730: - - - Pressed - - Toggle - 10728: - - - Pressed - - Toggle - - uid: 22635 - components: - - type: Transform - pos: -60.5,-19.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1174: - - - Pressed - - Toggle - 2209: - - - Pressed - - Toggle - - uid: 22640 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22535: - - - Pressed - - Toggle - 22536: - - - Pressed - - Toggle - 22584: - - - Pressed - - Toggle - - uid: 22642 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22558: - - - Pressed - - Toggle - - uid: 22645 - components: - - type: Transform - pos: 35.5,-7.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22544: - - - Pressed - - Toggle - 22543: - - - Pressed - - Toggle - 22545: - - - Pressed - - Toggle - 22599: - - - Pressed - - Toggle - 22598: - - - Pressed - - Toggle - - uid: 22646 - components: - - type: Transform - pos: 75.5,-1.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22541: - - - Pressed - - Toggle - 22566: - - - Pressed - - Toggle - 22587: - - - Pressed - - Toggle - 22608: - - - Pressed - - Toggle - 22567: - - - Pressed - - Toggle - 22542: - - - Pressed - - Toggle - 22588: - - - Pressed - - Toggle - 22607: - - - Pressed - - Toggle - - uid: 22647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-27.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22540: - - - Pressed - - Toggle - 22530: - - - Pressed - - Toggle - - uid: 22653 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22576: - - - Pressed - - Toggle - 22575: - - - Pressed - - Toggle - 22577: - - - Pressed - - Toggle - 22563: - - - Pressed - - Toggle - 22528: - - - Pressed - - Toggle - 22529: - - - Pressed - - Toggle - - uid: 22654 - components: - - type: Transform - pos: 6.5,-76.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1170: - - - Pressed - - Toggle - 1171: - - - Pressed - - Toggle - 1166: - - - Pressed - - Toggle - - uid: 22655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22569: - - - Pressed - - Toggle - 22523: - - - Pressed - - Toggle - 22572: - - - Pressed - - Toggle - 22565: - - - Pressed - - Toggle - 22522: - - - Pressed - - Toggle - 22564: - - - Pressed - - Toggle - 22571: - - - Pressed - - Toggle - - uid: 22657 - components: - - type: Transform - pos: 0.5,25.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22632: - - - Pressed - - Toggle - 22631: - - - Pressed - - Toggle - 22630: - - - Pressed - - Toggle - 22629: - - - Pressed - - Toggle - 22628: - - - Pressed - - Toggle - 22627: - - - Pressed - - Toggle - 22626: - - - Pressed - - Toggle - 22625: - - - Pressed - - Toggle - 22624: - - - Pressed - - Toggle - 22551: - - - Pressed - - Toggle - 22550: - - - Pressed - - Toggle - 22548: - - - Pressed - - Toggle - 22549: - - - Pressed - - Toggle - 26561: - - - Pressed - - Toggle - 586: - - - Pressed - - Toggle - 31734: - - - Pressed - - Toggle - - uid: 22662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,14.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 148: - - - Pressed - - DoorBolt - - uid: 22663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5385313,12.721962 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 138: - - - Pressed - - DoorBolt - - uid: 22668 - components: - - type: Transform - pos: -7.5,-76.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1165: - - - Pressed - - Toggle - 1173: - - - Pressed - - Toggle - 1172: - - - Pressed - - Toggle - - uid: 22669 - components: - - type: Transform - pos: 2.5,-75.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1191: - - - Pressed - - Toggle - 1192: - - - Pressed - - Toggle - - uid: 22670 - components: - - type: Transform - pos: -3.5,-75.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1189: - - - Pressed - - Toggle - 1190: - - - Pressed - - Toggle - - uid: 22672 - components: - - type: Transform - pos: 2.5,-71.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22613: - - - Pressed - - Toggle - 22612: - - - Pressed - - Toggle - 22615: - - - Pressed - - Toggle - 22614: - - - Pressed - - Toggle - - uid: 22674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22605: - - - Pressed - - Toggle - 22606: - - - Pressed - - Toggle - - uid: 22675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-53.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22553: - - - Pressed - - Toggle - 22524: - - - Pressed - - Toggle - 22547: - - - Pressed - - Toggle - - uid: 22676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,45.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1208: - - - Pressed - - Toggle - 1207: - - - Pressed - - Toggle - 1206: - - - Pressed - - Toggle - 1203: - - - Pressed - - Toggle - 1200: - - - Pressed - - Toggle - 1193: - - - Pressed - - Toggle - 1209: - - - Pressed - - Toggle - 1210: - - - Pressed - - Toggle - - uid: 22678 - components: - - type: Transform - pos: 65.5,4.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22611: - - - Pressed - - Toggle - 22610: - - - Pressed - - Toggle - 22609: - - - Pressed - - Toggle - - uid: 23930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,9.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 754: - - - Pressed - - DoorBolt - - uid: 24567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6780: - - - Pressed - - DoorBolt - 8156: - - - Pressed - - DoorBolt - 8217: - - - Pressed - - DoorBolt - 8157: - - - Pressed - - DoorBolt - 8218: - - - Pressed - - Toggle - 8507: - - - Pressed - - Toggle - 8158: - - - Pressed - - DoorBolt - 8224: - - - Pressed - - DoorBolt - - uid: 24651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-71.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 18863: - - - Pressed - - Toggle - 10418: - - - Pressed - - Toggle - 19082: - - - Pressed - - Toggle - - uid: 26255 - components: - - type: Transform - pos: 44.5,-21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26248: - - - Pressed - - Toggle - 11529: - - - Pressed - - Toggle - - uid: 29088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 23413: - - - Pressed - - DoorBolt - - uid: 30114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,44.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 28455: - - - Pressed - - Toggle - 26650: - - - Pressed - - Toggle - 4114: - - - Pressed - - Toggle - - uid: 30115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,42.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1187: - - - Pressed - - Toggle - 30030: - - - Pressed - - Toggle - 30031: - - - Pressed - - Toggle - 30033: - - - Pressed - - Toggle - 30034: - - - Pressed - - Toggle - 30035: - - - Pressed - - Toggle - 30032: - - - Pressed - - Toggle - - uid: 30116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,36.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1011: - - - Pressed - - Toggle - 17462: - - - Pressed - - Toggle - 20239: - - - Pressed - - Toggle - - uid: 30321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,36.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 30323: - - - Pressed - - Toggle - 18846: - - - Pressed - - Toggle - 30322: - - - Pressed - - Toggle - 22378: - - - Pressed - - Toggle - 30324: - - - Pressed - - Toggle - 3236: - - - Pressed - - Toggle - - uid: 30336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,19.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 15883: - - - Pressed - - Toggle - 15874: - - - Pressed - - Toggle - 15875: - - - Pressed - - Toggle - - uid: 31922 - components: - - type: Transform - pos: 26.5,1.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31917: - - - Pressed - - Toggle - 31918: - - - Pressed - - Toggle - 31919: - - - Pressed - - Toggle - 31920: - - - Pressed - - Toggle - 31921: - - - Pressed - - Toggle - - uid: 32091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-7.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 32085: - - - Pressed - - Toggle - 32084: - - - Pressed - - Toggle - 32083: - - - Pressed - - Toggle - 32089: - - - Pressed - - Toggle - 32090: - - - Pressed - - Toggle - 32086: - - - Pressed - - Toggle - 32087: - - - Pressed - - Toggle - 32088: - - - Pressed - - Toggle - - uid: 32102 - components: - - type: Transform - pos: 45.5,-1.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 32092: - - - Pressed - - Toggle - 32093: - - - Pressed - - Toggle - 32094: - - - Pressed - - Toggle - 32095: - - - Pressed - - Toggle - 32096: - - - Pressed - - Toggle - 32097: - - - Pressed - - Toggle - 32099: - - - Pressed - - Toggle - 32100: - - - Pressed - - Toggle - 32098: - - - Pressed - - Toggle -- proto: SignalButtonDirectional - entities: - - uid: 1355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 23779: - - - Pressed - - Toggle - - uid: 9074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-39.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13680: - - - Pressed - - Toggle - 12023: - - - Pressed - - Toggle - 12024: - - - Pressed - - Toggle - - uid: 11571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,30.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 30360: - - - Pressed - - Toggle - 30361: - - - Pressed - - Toggle - - uid: 16391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-39.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 14013: - - - Pressed - - Toggle - 14012: - - - Pressed - - Toggle - 12186: - - - Pressed - - Toggle - - uid: 22517 - components: - - type: Transform - pos: 59.5,-15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22512: - - - Pressed - - Toggle - 22560: - - - Pressed - - Toggle - 22519: - - - Pressed - - Toggle - - uid: 22518 - components: - - type: Transform - pos: 55.5,-15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20195: - - - Pressed - - Toggle - 20794: - - - Pressed - - Toggle - 22511: - - - Pressed - - Toggle - - uid: 22679 - components: - - type: Transform - pos: 42.5,1.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22514: - - - Pressed - - Toggle - - uid: 24574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 22546: - - - Pressed - - Toggle - 22559: - - - Pressed - - Toggle - 22525: - - - Pressed - - Toggle - 22521: - - - Pressed - - Toggle - 22583: - - - Pressed - - Toggle - 22520: - - - Pressed - - Toggle - 22580: - - - Pressed - - Toggle - 22586: - - - Pressed - - Toggle - 22585: - - - Pressed - - Toggle - - uid: 24708 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 24750: - - - Pressed - - Toggle - - uid: 30350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,30.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 30365: - - - Pressed - - Toggle - 30364: - - - Pressed - - Toggle - 30363: - - - Pressed - - Toggle - 30362: - - - Pressed - - Toggle - - uid: 30351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,30.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 30359: - - - Pressed - - Toggle - 30358: - - - Pressed - - Toggle - - uid: 30352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,33.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 30278: - - - Pressed - - DoorBolt - - uid: 30354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,32.5 - parent: 2 - - uid: 30355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,32.5 - parent: 2 -- proto: SignalSwitch - entities: - - uid: 22681 - components: - - type: MetaData - name: lights switch - - type: Transform - pos: 10.8,3.5 - parent: 2 -- proto: SignAnomaly - entities: - - uid: 22682 - components: - - type: Transform - pos: 75.5,-22.5 - parent: 2 -- proto: SignAnomaly2 - entities: - - uid: 22683 - components: - - type: Transform - pos: 68.5,-48.5 - parent: 2 -- proto: SignBar - entities: - - uid: 22687 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 2 -- proto: SignBarbershop - entities: - - uid: 30777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,11.5 - parent: 2 -- proto: SignBiohazardMed - entities: - - uid: 22689 - components: - - type: Transform - pos: 41.5,-50.5 - parent: 2 - - uid: 22690 - components: - - type: Transform - pos: 39.5,-54.5 - parent: 2 -- proto: SignBridge - entities: - - uid: 22691 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 2 - - uid: 22692 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 2 -- proto: SignCanisters - entities: - - uid: 22693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-40.5 - parent: 2 -- proto: SignCargo - entities: - - uid: 22694 - components: - - type: Transform - pos: -18.5,-20.5 - parent: 2 -- proto: SignCargoDock - entities: - - uid: 22695 - components: - - type: Transform - pos: -29.5,-18.5 - parent: 2 -- proto: SignChem - entities: - - uid: 22696 - components: - - type: Transform - pos: 18.5,-23.5 - parent: 2 - - uid: 22697 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 2 -- proto: SignConference - entities: - - uid: 22699 - components: - - type: Transform - pos: -8.5,-10.5 - parent: 2 -- proto: SignCryogenicsMed - entities: - - uid: 22700 - components: - - type: Transform - pos: 38.5,-33.5 - parent: 2 -- proto: SignDirectionalBridge - entities: - - uid: 22704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,2.5 - parent: 2 - - uid: 22705 - components: - - type: Transform - pos: -17.5,0.5 - parent: 2 -- proto: SignDirectionalCryo - entities: - - uid: 22706 - components: - - type: Transform - pos: 37.5,-26.5 - parent: 2 -- proto: SignDirectionalDorms - entities: - - uid: 22707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -62.499004,2.2885544 - parent: 2 -- proto: SignDirectionalEng - entities: - - uid: 22708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-28.5 - parent: 2 - - uid: 22709 - components: - - type: Transform - pos: -19.49536,-3.7142625 - parent: 2 - - uid: 22710 - components: - - type: Transform - pos: -2.495048,-32.707497 - parent: 2 - - uid: 22711 - components: - - type: Transform - pos: 17.493805,-15.696056 - parent: 2 - - uid: 22712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -62.50528,-6.7218995 - parent: 2 -- proto: SignDirectionalEvac - entities: - - uid: 22713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-32.5 - parent: 2 - - uid: 22714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 2 - - uid: 22716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 2 -- proto: SignDirectionalGravity - entities: - - uid: 22717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.48893,-28.299696 - parent: 2 -- proto: SignDirectionalHop - entities: - - uid: 22718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-6.5 - parent: 2 - - uid: 22719 - components: - - type: Transform - pos: -18.489511,-4.1296644 - parent: 2 - - uid: 22720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-28.5 - parent: 2 - - uid: 22721 - components: - - type: Transform - pos: -14.5,-20.5 - parent: 2 -- proto: SignDirectionalHydro - entities: - - uid: 22722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.499992,-3.7091393 - parent: 2 -- proto: SignDirectionalMed - entities: - - uid: 22724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.499992,-3.2872643 - parent: 2 - - uid: 22725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.495048,-32.301247 - parent: 2 - - uid: 22726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.493805,-15.305431 - parent: 2 -- proto: SignDirectionalSci - entities: - - uid: 22728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-3.5 - parent: 2 - - uid: 22729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-15.5 - parent: 2 -- proto: SignDirectionalSec - entities: - - uid: 22730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,13.5 - parent: 2 - - uid: 22731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.49536,-3.2767625 - parent: 2 - - uid: 22732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.499279,-11.288156 - parent: 2 - - uid: 22734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -62.499004,2.7260544 - parent: 2 - - uid: 22735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.505136,0.7252439 - parent: 2 -- proto: SignDirectionalSolar - entities: - - uid: 22736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-59.5 - parent: 2 - - uid: 22737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-65.5 - parent: 2 - - uid: 22738 - components: - - type: Transform - pos: 83.5,-49.5 - parent: 2 - - uid: 22739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,14.5 - parent: 2 - - uid: 22740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,4.5 - parent: 2 - - uid: 22741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,12.5 - parent: 2 - - uid: 22742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,12.5 - parent: 2 - - uid: 22743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,6.5 - parent: 2 -- proto: SignDirectionalSupply - entities: - - uid: 22744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 2 - - uid: 22745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.494359,-28.72186 - parent: 2 - - uid: 22746 - components: - - type: Transform - pos: -18.494526,-3.909933 - parent: 2 - - uid: 22747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -62.50528,-6.2843995 - parent: 2 - - uid: 22748 - components: - - type: Transform - pos: -17.505136,0.28774393 - parent: 2 -- proto: SignDirectionalWash - entities: - - uid: 22749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.490667,-11.707433 - parent: 2 -- proto: SignElectricalMed - entities: - - uid: 22750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-60.5 - parent: 2 - - uid: 22751 - components: - - type: Transform - pos: 43.5,4.5 - parent: 2 - - uid: 22753 - components: - - type: Transform - pos: -44.5,11.5 - parent: 2 - - uid: 22754 - components: - - type: Transform - pos: -8.5,-73.5 - parent: 2 - - uid: 22755 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 2 - - uid: 22756 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 2 - - uid: 22757 - components: - - type: Transform - pos: -30.5,-64.5 - parent: 2 - - uid: 22758 - components: - - type: Transform - pos: -25.5,46.5 - parent: 2 - - uid: 22759 - components: - - type: Transform - pos: -16.5,39.5 - parent: 2 -- proto: SignEngineering - entities: - - uid: 765 - components: - - type: Transform - pos: 0.5,-58.5 - parent: 2 -- proto: SignEscapePods - entities: - - uid: 22761 - components: - - type: Transform - pos: -65.5,-8.5 - parent: 2 - - uid: 22762 - components: - - type: Transform - pos: -19.5,21.5 - parent: 2 -- proto: SignEVA - entities: - - uid: 22764 - components: - - type: Transform - pos: -13.5,0.5 - parent: 2 - - uid: 22765 - components: - - type: Transform - pos: -19.5,0.5 - parent: 2 -- proto: SignExamroom - entities: - - uid: 22766 - components: - - type: Transform - pos: 34.5,-26.5 - parent: 2 - - uid: 22767 - components: - - type: Transform - pos: 28.5,-26.5 - parent: 2 -- proto: SignFire - entities: - - uid: 22770 - components: - - type: Transform - pos: 68.5,-38.5 - parent: 2 -- proto: SignHead - entities: - - uid: 22774 - components: - - type: Transform - pos: -8.5,-28.5 - parent: 2 -- proto: SignHydro1 - entities: - - uid: 22775 - components: - - type: Transform - pos: 41.5,-11.5 - parent: 2 -- proto: SignInterrogation - entities: - - uid: 860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,29.5 - parent: 2 - - uid: 19821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,34.5 - parent: 2 -- proto: SignJanitor - entities: - - uid: 4184 - components: - - type: Transform - pos: -36.5,-3.5 - parent: 2 -- proto: SignKiddiePlaque - entities: - - uid: 22778 - components: - - type: MetaData - desc: A sign showing Bungle Town's permit to operate on this station. - name: Bungle Town - - type: Transform - pos: 56.5,-51.5 - parent: 2 - - uid: 22779 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 2 - - uid: 22781 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 2 -- proto: SignLibrary - entities: - - uid: 22782 - components: - - type: Transform - pos: 54.5,-10.5 - parent: 2 -- proto: SignMagneticsMed - entities: - - uid: 22783 - components: - - type: Transform - pos: -29.5,-33.5 - parent: 2 -- proto: SignMail - entities: - - uid: 21455 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-14.5 - parent: 2 -- proto: SignMaterials - entities: - - uid: 22785 - components: - - type: Transform - pos: -51.5,-3.5 - parent: 2 -- proto: SignMedical - entities: - - uid: 22786 - components: - - type: Transform - pos: 36.5,-15.5 - parent: 2 - - uid: 22787 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 2 - - uid: 22788 - components: - - type: Transform - pos: 37.5,-25.5 - parent: 2 - - uid: 22789 - components: - - type: Transform - pos: 63.5,10.5 - parent: 2 -- proto: SignMorgue - entities: - - uid: 22790 - components: - - type: Transform - pos: 45.5,-15.5 - parent: 2 - - uid: 22791 - components: - - type: Transform - pos: 42.5,-21.5 - parent: 2 -- proto: SignNanotrasen1 - entities: - - uid: 27892 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 2 -- proto: SignNanotrasen2 - entities: - - uid: 27894 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 2 -- proto: SignNanotrasen3 - entities: - - uid: 27898 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 2 -- proto: SignNanotrasen4 - entities: - - uid: 28305 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 2 -- proto: SignNanotrasen5 - entities: - - uid: 4130 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 2 -- proto: SignNews - entities: - - uid: 20789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,11.5 - parent: 2 -- proto: SignPlaque - entities: - - uid: 22794 - components: - - type: Transform - pos: 11.5,-21.5 - parent: 2 - - uid: 22795 - components: - - type: Transform - pos: -11.5,-10.5 - parent: 2 - - uid: 22796 - components: - - type: Transform - pos: -24.5,-8.5 - parent: 2 - - uid: 22797 - components: - - type: Transform - pos: -10.5,-20.5 - parent: 2 -- proto: SignPsychology - entities: - - uid: 22799 - components: - - type: Transform - pos: 9.5,-32.5 - parent: 2 -- proto: SignRadiationMed - entities: - - uid: 22802 - components: - - type: Transform - pos: 6.5,-71.5 - parent: 2 - - uid: 22803 - components: - - type: Transform - pos: -19.5,-54.5 - parent: 2 - - uid: 22804 - components: - - type: Transform - pos: -30.5,-52.5 - parent: 2 - - uid: 22805 - components: - - type: Transform - pos: 8.5,-93.5 - parent: 2 - - uid: 22806 - components: - - type: Transform - pos: -9.5,-93.5 - parent: 2 - - uid: 22808 - components: - - type: Transform - pos: -3.5,-72.5 - parent: 2 - - uid: 22809 - components: - - type: Transform - pos: 2.5,-72.5 - parent: 2 -- proto: SignRobo - entities: - - uid: 22810 - components: - - type: Transform - pos: 64.5,-25.5 - parent: 2 -- proto: SignScience - entities: - - uid: 22811 - components: - - type: Transform - pos: 72.5,-15.5 - parent: 2 -- proto: SignSecurearea - entities: - - uid: 22813 - components: - - type: Transform - pos: 11.5,28.5 - parent: 2 - - uid: 22814 - components: - - type: Transform - pos: 7.5,22.5 - parent: 2 -- proto: SignSecureMed - entities: - - uid: 22816 - components: - - type: Transform - pos: 7.5,-64.5 - parent: 2 - - uid: 22817 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 2 - - uid: 22818 - components: - - type: Transform - pos: -9.5,-7.5 - parent: 2 - - uid: 22823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-40.5 - parent: 2 -- proto: SignSecureSmall - entities: - - uid: 22830 - components: - - type: Transform - pos: -80.5,12.5 - parent: 2 -- proto: SignSecurity - entities: - - uid: 22832 - components: - - type: Transform - pos: 1.5,18.5 - parent: 2 - - uid: 22833 - components: - - type: Transform - pos: -2.5,18.5 - parent: 2 -- proto: SignSmoking - entities: - - uid: 22835 - components: - - type: Transform - pos: 43.5,-31.5 - parent: 2 - - uid: 22837 - components: - - type: Transform - pos: 28.5,-30.5 - parent: 2 - - uid: 22838 - components: - - type: Transform - pos: 23.5,-36.5 - parent: 2 -- proto: SignSomethingOld - entities: - - uid: 22839 - components: - - type: Transform - pos: -6.5,-40.5 - parent: 2 -- proto: SignSomethingOld2 - entities: - - uid: 22840 - components: - - type: Transform - pos: -8.5,-32.5 - parent: 2 -- proto: SignSpace - entities: - - uid: 9263 - components: - - type: Transform - pos: -38.5,-14.5 - parent: 2 - - uid: 22842 - components: - - type: Transform - pos: -20.5,19.5 - parent: 2 - - uid: 22843 - components: - - type: Transform - pos: -19.5,25.5 - parent: 2 - - uid: 22844 - components: - - type: Transform - pos: 48.5,21.5 - parent: 2 - - uid: 22845 - components: - - type: Transform - pos: 91.5,-24.5 - parent: 2 - - uid: 22846 - components: - - type: Transform - pos: 87.5,-56.5 - parent: 2 - - uid: 22847 - components: - - type: Transform - pos: 80.5,-66.5 - parent: 2 - - uid: 22850 - components: - - type: Transform - pos: -33.5,-64.5 - parent: 2 - - uid: 22851 - components: - - type: Transform - pos: -39.5,-60.5 - parent: 2 - - uid: 22852 - components: - - type: Transform - pos: -38.5,-48.5 - parent: 2 - - uid: 22853 - components: - - type: Transform - pos: -30.5,-35.5 - parent: 2 - - uid: 22854 - components: - - type: Transform - pos: -62.5,-20.5 - parent: 2 - - uid: 22855 - components: - - type: Transform - pos: -69.5,-15.5 - parent: 2 - - uid: 22856 - components: - - type: Transform - pos: -74.5,-15.5 - parent: 2 - - uid: 22857 - components: - - type: Transform - pos: -76.5,-12.5 - parent: 2 - - uid: 22859 - components: - - type: Transform - pos: -62.5,15.5 - parent: 2 - - uid: 22860 - components: - - type: Transform - pos: -48.5,24.5 - parent: 2 -- proto: SignSurgery - entities: - - uid: 22862 - components: - - type: Transform - pos: 23.5,-32.5 - parent: 2 -- proto: SignTelecomms - entities: - - uid: 22863 - components: - - type: Transform - pos: -4.5,-55.5 - parent: 2 -- proto: SignTheater - entities: - - uid: 22864 - components: - - type: Transform - pos: 31.5,16.5 - parent: 2 -- proto: SignToolStorage - entities: - - uid: 22865 - components: - - type: Transform - pos: -43.5,0.5 - parent: 2 -- proto: SignVirology - entities: - - uid: 22868 - components: - - type: Transform - pos: 39.5,-50.5 - parent: 2 -- proto: SilverOre1 - entities: - - uid: 24670 - components: - - type: Transform - pos: 1.5274587,-23.535488 - parent: 2 -- proto: SilverRingDiamond - entities: - - uid: 24533 - components: - - type: Transform - pos: 1.316365,-22.764736 - parent: 2 -- proto: SingularityGenerator - entities: - - uid: 24237 - components: - - type: Transform - pos: -25.5,-71.5 - parent: 2 -- proto: Sink - entities: - - uid: 1383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,32.5 - parent: 2 - - uid: 20431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-4.5 - parent: 2 - - uid: 22870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,6.5 - parent: 2 - - uid: 22871 - components: - - type: Transform - pos: 26.5,-32.5 - parent: 2 - - uid: 22872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-19.5 - parent: 2 - - uid: 22874 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 2 - - uid: 22875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 2 - - uid: 22876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 2 - - uid: 22877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 2 - - uid: 22883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-56.5 - parent: 2 - - uid: 22884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,41.5 - parent: 2 - - uid: 22885 - components: - - type: Transform - pos: -19.5,51.5 - parent: 2 - - uid: 22886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,51.5 - parent: 2 -- proto: SinkEmpty - entities: - - uid: 22889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 2 - - uid: 22890 - components: - - type: Transform - pos: -36.5,-54.5 - parent: 2 - - uid: 30343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,39.5 - parent: 2 -- proto: SinkStemlessWater - entities: - - uid: 882 - components: - - type: Transform - pos: 22.521694,15.241674 - parent: 2 - - uid: 22891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-9.5 - parent: 2 -- proto: SinkWide - entities: - - uid: 17020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-7.5 - parent: 2 - - uid: 19140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 2 - - uid: 21181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-7.5 - parent: 2 - - uid: 22893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-2.5 - parent: 2 - - uid: 22895 - components: - - type: Transform - pos: -42.5,22.5 - parent: 2 - - uid: 22896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-46.5 - parent: 2 - - uid: 22897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-35.5 - parent: 2 - - uid: 24353 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 2 - - uid: 31748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-5.5 - parent: 2 - - uid: 32154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-17.5 - parent: 2 - - uid: 32156 - components: - - type: Transform - pos: -14.5,36.5 - parent: 2 -- proto: Sledgehammer - entities: - - uid: 14797 - components: - - type: Transform - pos: 7.5490055,-65.42807 - parent: 2 -- proto: SmartFridge - entities: - - uid: 22900 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 2 - - uid: 22901 - components: - - type: Transform - pos: 41.5,-4.5 - parent: 2 - - uid: 22902 - components: - - type: Transform - pos: 38.5,-57.5 - parent: 2 - - uid: 22903 - components: - - type: Transform - pos: 20.5,-32.5 - parent: 2 -- proto: SMESBasic - entities: - - uid: 7231 - components: - - type: Transform - pos: -22.5,-67.5 - parent: 2 - - uid: 19694 - components: - - type: Transform - pos: -22.5,-66.5 - parent: 2 - - uid: 20449 - components: - - type: Transform - pos: 9.5,-77.5 - parent: 2 -- proto: SMESExtended - entities: - - uid: 14985 - components: - - type: Transform - pos: -12.5,-73.5 - parent: 2 - - uid: 18768 - components: - - type: Transform - pos: -12.5,-75.5 - parent: 2 - - uid: 18936 - components: - - type: Transform - pos: -12.5,-74.5 - parent: 2 - - uid: 22905 - components: - - type: MetaData - name: Solars South East SMES - - type: Transform - pos: 80.5,-65.5 - parent: 2 - - uid: 22906 - components: - - type: MetaData - name: Solars North East SMES - - type: Transform - pos: 46.5,20.5 - parent: 2 - - uid: 22907 - components: - - type: MetaData - name: Solars North West SMES - - type: Transform - pos: -50.5,23.5 - parent: 2 - - uid: 22908 - components: - - type: Transform - pos: -3.5,-33.5 - parent: 2 - - uid: 22909 - components: - - type: MetaData - name: Telecomms SMES - - type: Transform - pos: -6.5,-49.5 - parent: 2 - - uid: 22910 - components: - - type: MetaData - name: Solars South West SMES - - type: Transform - pos: -38.5,-62.5 - parent: 2 -- proto: SMESMachineCircuitboard - entities: - - uid: 22919 - components: - - type: Transform - pos: -67.4744,12.728384 - parent: 2 -- proto: SmokingPipeFilledTobacco - entities: - - uid: 22920 - components: - - type: Transform - pos: 7.5295286,-15.907934 - parent: 2 -- proto: SoapNT - entities: - - uid: 22921 - components: - - type: Transform - pos: 10.464365,-22.554323 - parent: 2 -- proto: SodaDispenser - entities: - - uid: 22923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 2 -- proto: SolarPanel - entities: - - uid: 22924 - components: - - type: Transform - pos: -53.5,36.5 - parent: 2 - - uid: 22925 - components: - - type: Transform - pos: -51.5,36.5 - parent: 2 - - type: PowerSupplier - supplyRate: 261 - - uid: 22926 - components: - - type: Transform - pos: -43.5,38.5 - parent: 2 - - uid: 22927 - components: - - type: Transform - pos: -44.5,36.5 - parent: 2 - - uid: 22928 - components: - - type: Transform - pos: -45.5,38.5 - parent: 2 - - uid: 22929 - components: - - type: Transform - pos: -52.5,36.5 - parent: 2 - - uid: 22930 - components: - - type: Transform - pos: -47.5,38.5 - parent: 2 - - uid: 22931 - components: - - type: Transform - pos: -44.5,38.5 - parent: 2 - - uid: 22932 - components: - - type: Transform - pos: -43.5,36.5 - parent: 2 - - uid: 22933 - components: - - type: Transform - pos: -55.5,38.5 - parent: 2 - - uid: 22934 - components: - - type: Transform - pos: -53.5,38.5 - parent: 2 - - uid: 22935 - components: - - type: Transform - pos: -46.5,38.5 - parent: 2 - - uid: 22936 - components: - - type: Transform - pos: -47.5,34.5 - parent: 2 - - uid: 22937 - components: - - type: Transform - pos: -46.5,34.5 - parent: 2 - - type: PowerSupplier - supplyRate: 261 - - uid: 22938 - components: - - type: Transform - pos: -44.5,34.5 - parent: 2 - - uid: 22939 - components: - - type: Transform - pos: -55.5,32.5 - parent: 2 - - uid: 22940 - components: - - type: Transform - pos: -53.5,34.5 - parent: 2 - - uid: 22941 - components: - - type: Transform - pos: -52.5,34.5 - parent: 2 - - uid: 22942 - components: - - type: Transform - pos: -51.5,34.5 - parent: 2 - - type: PowerSupplier - supplyRate: 260 - - uid: 22943 - components: - - type: Transform - pos: -43.5,32.5 - parent: 2 - - type: PowerSupplier - supplyRate: 260 - - uid: 22944 - components: - - type: Transform - pos: -44.5,32.5 - parent: 2 - - uid: 22945 - components: - - type: Transform - pos: -47.5,32.5 - parent: 2 - - type: PowerSupplier - supplyRate: 261 - - uid: 22946 - components: - - type: Transform - pos: -45.5,32.5 - parent: 2 - - uid: 22947 - components: - - type: Transform - pos: -43.5,34.5 - parent: 2 - - type: PowerSupplier - supplyRate: 261 - - uid: 22948 - components: - - type: Transform - pos: -54.5,32.5 - parent: 2 - - uid: 22949 - components: - - type: Transform - pos: -53.5,32.5 - parent: 2 - - uid: 22950 - components: - - type: Transform - pos: -52.5,32.5 - parent: 2 - - type: PowerSupplier - supplyRate: 260 - - uid: 22951 - components: - - type: Transform - pos: -55.5,34.5 - parent: 2 - - uid: 22952 - components: - - type: Transform - pos: -55.5,30.5 - parent: 2 - - uid: 22953 - components: - - type: Transform - pos: -54.5,30.5 - parent: 2 - - uid: 22954 - components: - - type: Transform - pos: -54.5,28.5 - parent: 2 - - uid: 22955 - components: - - type: Transform - pos: -53.5,28.5 - parent: 2 - - uid: 22956 - components: - - type: Transform - pos: -52.5,30.5 - parent: 2 - - uid: 22957 - components: - - type: Transform - pos: -51.5,30.5 - parent: 2 - - type: PowerSupplier - supplyRate: 260 - - uid: 22958 - components: - - type: Transform - pos: -51.5,28.5 - parent: 2 - - uid: 22959 - components: - - type: Transform - pos: -46.5,30.5 - parent: 2 - - type: PowerSupplier - supplyRate: 260 - - uid: 22960 - components: - - type: Transform - pos: -54.5,36.5 - parent: 2 - - uid: 22961 - components: - - type: Transform - pos: -47.5,30.5 - parent: 2 - - uid: 22962 - components: - - type: Transform - pos: -46.5,28.5 - parent: 2 - - uid: 22963 - components: - - type: Transform - pos: -55.5,36.5 - parent: 2 - - uid: 22964 - components: - - type: Transform - pos: -52.5,38.5 - parent: 2 - - uid: 22965 - components: - - type: Transform - pos: -51.5,38.5 - parent: 2 - - type: PowerSupplier - supplyRate: 262 - - uid: 22966 - components: - - type: Transform - pos: 42.5,34.5 - parent: 2 - - uid: 22967 - components: - - type: Transform - pos: -45.5,36.5 - parent: 2 - - uid: 22968 - components: - - type: Transform - pos: -47.5,36.5 - parent: 2 - - type: PowerSupplier - supplyRate: 261 - - uid: 22969 - components: - - type: Transform - pos: 43.5,28.5 - parent: 2 - - uid: 22970 - components: - - type: Transform - pos: 41.5,30.5 - parent: 2 - - uid: 22971 - components: - - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 22972 - components: - - type: Transform - pos: 44.5,34.5 - parent: 2 - - uid: 22973 - components: - - type: Transform - pos: 49.5,34.5 - parent: 2 - - uid: 22974 - components: - - type: Transform - pos: 50.5,32.5 - parent: 2 - - uid: 22975 - components: - - type: Transform - pos: 52.5,36.5 - parent: 2 - - uid: 22976 - components: - - type: Transform - pos: 44.5,38.5 - parent: 2 - - uid: 22977 - components: - - type: Transform - pos: 41.5,34.5 - parent: 2 - - uid: 22978 - components: - - type: Transform - pos: 43.5,34.5 - parent: 2 - - uid: 22979 - components: - - type: Transform - pos: 45.5,34.5 - parent: 2 - - uid: 22980 - components: - - type: Transform - pos: 41.5,32.5 - parent: 2 - - uid: 22981 - components: - - type: Transform - pos: 43.5,32.5 - parent: 2 - - uid: 22982 - components: - - type: Transform - pos: 44.5,32.5 - parent: 2 - - uid: 22983 - components: - - type: Transform - pos: 45.5,32.5 - parent: 2 - - uid: 22984 - components: - - type: Transform - pos: 50.5,34.5 - parent: 2 - - uid: 22985 - components: - - type: Transform - pos: 51.5,34.5 - parent: 2 - - uid: 22986 - components: - - type: Transform - pos: 52.5,34.5 - parent: 2 - - uid: 22987 - components: - - type: Transform - pos: 53.5,34.5 - parent: 2 - - uid: 22988 - components: - - type: Transform - pos: 53.5,36.5 - parent: 2 - - uid: 22989 - components: - - type: Transform - pos: 53.5,32.5 - parent: 2 - - uid: 22990 - components: - - type: Transform - pos: 52.5,32.5 - parent: 2 - - uid: 22991 - components: - - type: Transform - pos: 51.5,32.5 - parent: 2 - - uid: 22992 - components: - - type: Transform - pos: 49.5,32.5 - parent: 2 - - uid: 22993 - components: - - type: Transform - pos: 51.5,36.5 - parent: 2 - - uid: 22994 - components: - - type: Transform - pos: 50.5,36.5 - parent: 2 - - uid: 22995 - components: - - type: Transform - pos: 49.5,36.5 - parent: 2 - - uid: 22996 - components: - - type: Transform - pos: 53.5,38.5 - parent: 2 - - uid: 22997 - components: - - type: Transform - pos: 52.5,38.5 - parent: 2 - - uid: 22998 - components: - - type: Transform - pos: 51.5,38.5 - parent: 2 - - uid: 22999 - components: - - type: Transform - pos: 50.5,38.5 - parent: 2 - - uid: 23000 - components: - - type: Transform - pos: 49.5,38.5 - parent: 2 - - uid: 23001 - components: - - type: Transform - pos: 45.5,38.5 - parent: 2 - - uid: 23002 - components: - - type: Transform - pos: 43.5,38.5 - parent: 2 - - uid: 23003 - components: - - type: Transform - pos: 42.5,38.5 - parent: 2 - - uid: 23004 - components: - - type: Transform - pos: 41.5,38.5 - parent: 2 - - uid: 23005 - components: - - type: Transform - pos: 41.5,36.5 - parent: 2 - - uid: 23006 - components: - - type: Transform - pos: 42.5,36.5 - parent: 2 - - uid: 23007 - components: - - type: Transform - pos: 43.5,36.5 - parent: 2 - - uid: 23008 - components: - - type: Transform - pos: 44.5,36.5 - parent: 2 - - uid: 23009 - components: - - type: Transform - pos: 45.5,36.5 - parent: 2 - - uid: 23010 - components: - - type: Transform - pos: 51.5,28.5 - parent: 2 - - uid: 23011 - components: - - type: Transform - pos: 42.5,30.5 - parent: 2 - - uid: 23012 - components: - - type: Transform - pos: 42.5,28.5 - parent: 2 - - uid: 23013 - components: - - type: Transform - pos: 51.5,30.5 - parent: 2 - - uid: 23014 - components: - - type: Transform - pos: 43.5,30.5 - parent: 2 - - uid: 23015 - components: - - type: Transform - pos: 50.5,28.5 - parent: 2 - - uid: 23016 - components: - - type: Transform - pos: 52.5,30.5 - parent: 2 - - type: PowerSupplier - supplyRate: 259 - - uid: 23017 - components: - - type: Transform - pos: 52.5,28.5 - parent: 2 - - uid: 23018 - components: - - type: Transform - pos: 49.5,30.5 - parent: 2 - - uid: 23019 - components: - - type: Transform - pos: 45.5,28.5 - parent: 2 - - type: PowerSupplier - supplyRate: 259 - - uid: 23020 - components: - - type: Transform - pos: 44.5,28.5 - parent: 2 - - uid: 23021 - components: - - type: Transform - pos: 50.5,30.5 - parent: 2 - - uid: 23022 - components: - - type: Transform - pos: 44.5,30.5 - parent: 2 - - type: PowerSupplier - supplyRate: 259 - - uid: 23023 - components: - - type: Transform - pos: 41.5,28.5 - parent: 2 - - uid: 23024 - components: - - type: Transform - pos: -45.5,28.5 - parent: 2 - - uid: 23025 - components: - - type: Transform - pos: -44.5,30.5 - parent: 2 - - uid: 23026 - components: - - type: Transform - pos: -43.5,30.5 - parent: 2 - - type: PowerSupplier - supplyRate: 259 - - uid: 23027 - components: - - type: Transform - pos: -43.5,28.5 - parent: 2 - - uid: 23028 - components: - - type: Transform - pos: -50.5,-64.5 - parent: 2 - - uid: 23029 - components: - - type: Transform - pos: -44.5,-58.5 - parent: 2 - - uid: 23030 - components: - - type: Transform - pos: -54.5,-65.5 - parent: 2 - - uid: 23031 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 2 - - uid: 23032 - components: - - type: Transform - pos: -52.5,-58.5 - parent: 2 - - uid: 23033 - components: - - type: Transform - pos: -48.5,-56.5 - parent: 2 - - uid: 23034 - components: - - type: Transform - pos: -50.5,-55.5 - parent: 2 - - uid: 23035 - components: - - type: Transform - pos: -52.5,-59.5 - parent: 2 - - uid: 23036 - components: - - type: Transform - pos: -52.5,-55.5 - parent: 2 - - uid: 23037 - components: - - type: Transform - pos: -48.5,-58.5 - parent: 2 - - uid: 23038 - components: - - type: Transform - pos: -46.5,-57.5 - parent: 2 - - uid: 23039 - components: - - type: Transform - pos: -54.5,-57.5 - parent: 2 - - uid: 23040 - components: - - type: Transform - pos: -52.5,-64.5 - parent: 2 - - uid: 23041 - components: - - type: Transform - pos: -54.5,-66.5 - parent: 2 - - uid: 23042 - components: - - type: Transform - pos: -48.5,-67.5 - parent: 2 - - uid: 23043 - components: - - type: Transform - pos: -50.5,-65.5 - parent: 2 - - uid: 23044 - components: - - type: Transform - pos: -46.5,-66.5 - parent: 2 - - uid: 23045 - components: - - type: Transform - pos: -44.5,-64.5 - parent: 2 - - uid: 23046 - components: - - type: Transform - pos: 53.5,30.5 - parent: 2 - - uid: 23047 - components: - - type: Transform - pos: 53.5,28.5 - parent: 2 - - uid: 23048 - components: - - type: Transform - pos: 49.5,28.5 - parent: 2 - - uid: 23049 - components: - - type: Transform - pos: 45.5,30.5 - parent: 2 - - uid: 23050 - components: - - type: Transform - pos: -50.5,-67.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1493 - - uid: 23051 - components: - - type: Transform - pos: -50.5,-66.5 - parent: 2 - - uid: 23052 - components: - - type: Transform - pos: -50.5,-63.5 - parent: 2 - - uid: 23053 - components: - - type: Transform - pos: -48.5,-66.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1493 - - uid: 23054 - components: - - type: Transform - pos: -48.5,-65.5 - parent: 2 - - uid: 23055 - components: - - type: Transform - pos: -48.5,-64.5 - parent: 2 - - uid: 23056 - components: - - type: Transform - pos: -48.5,-63.5 - parent: 2 - - uid: 23057 - components: - - type: Transform - pos: -44.5,-67.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1493 - - uid: 23058 - components: - - type: Transform - pos: -44.5,-66.5 - parent: 2 - - uid: 23059 - components: - - type: Transform - pos: -44.5,-65.5 - parent: 2 - - uid: 23060 - components: - - type: Transform - pos: -44.5,-63.5 - parent: 2 - - uid: 23061 - components: - - type: Transform - pos: -46.5,-67.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1493 - - uid: 23062 - components: - - type: Transform - pos: -46.5,-65.5 - parent: 2 - - uid: 23063 - components: - - type: Transform - pos: -46.5,-64.5 - parent: 2 - - uid: 23064 - components: - - type: Transform - pos: -46.5,-63.5 - parent: 2 - - uid: 23065 - components: - - type: Transform - pos: -44.5,-59.5 - parent: 2 - - uid: 23066 - components: - - type: Transform - pos: -54.5,-64.5 - parent: 2 - - uid: 23067 - components: - - type: Transform - pos: -44.5,-57.5 - parent: 2 - - uid: 23068 - components: - - type: Transform - pos: -44.5,-56.5 - parent: 2 - - uid: 23069 - components: - - type: Transform - pos: -44.5,-55.5 - parent: 2 - - uid: 23070 - components: - - type: Transform - pos: -46.5,-59.5 - parent: 2 - - uid: 23071 - components: - - type: Transform - pos: -46.5,-58.5 - parent: 2 - - uid: 23072 - components: - - type: Transform - pos: -54.5,-63.5 - parent: 2 - - uid: 23073 - components: - - type: Transform - pos: -46.5,-56.5 - parent: 2 - - uid: 23074 - components: - - type: Transform - pos: -46.5,-55.5 - parent: 2 - - uid: 23075 - components: - - type: Transform - pos: -48.5,-59.5 - parent: 2 - - uid: 23076 - components: - - type: Transform - pos: -48.5,-57.5 - parent: 2 - - uid: 23077 - components: - - type: Transform - pos: -48.5,-55.5 - parent: 2 - - uid: 23078 - components: - - type: Transform - pos: -52.5,-67.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1494 - - uid: 23079 - components: - - type: Transform - pos: -50.5,-58.5 - parent: 2 - - uid: 23080 - components: - - type: Transform - pos: -50.5,-57.5 - parent: 2 - - uid: 23081 - components: - - type: Transform - pos: -50.5,-56.5 - parent: 2 - - uid: 23082 - components: - - type: Transform - pos: -54.5,-67.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1494 - - uid: 23083 - components: - - type: Transform - pos: -52.5,-66.5 - parent: 2 - - uid: 23084 - components: - - type: Transform - pos: -52.5,-65.5 - parent: 2 - - uid: 23085 - components: - - type: Transform - pos: -52.5,-57.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1494 - - uid: 23086 - components: - - type: Transform - pos: -52.5,-56.5 - parent: 2 - - uid: 23087 - components: - - type: Transform - pos: -54.5,-56.5 - parent: 2 - - uid: 23088 - components: - - type: Transform - pos: -54.5,-58.5 - parent: 2 - - uid: 23089 - components: - - type: Transform - pos: -50.5,-59.5 - parent: 2 - - uid: 23090 - components: - - type: Transform - pos: -52.5,-63.5 - parent: 2 - - uid: 23091 - components: - - type: Transform - pos: -54.5,-55.5 - parent: 2 - - uid: 23092 - components: - - type: Transform - pos: -46.5,36.5 - parent: 2 - - uid: 23093 - components: - - type: Transform - pos: -54.5,38.5 - parent: 2 - - uid: 23094 - components: - - type: Transform - pos: -54.5,34.5 - parent: 2 - - uid: 23095 - components: - - type: Transform - pos: -51.5,32.5 - parent: 2 - - uid: 23096 - components: - - type: Transform - pos: -45.5,34.5 - parent: 2 - - uid: 23097 - components: - - type: Transform - pos: -46.5,32.5 - parent: 2 - - uid: 23098 - components: - - type: Transform - pos: -45.5,30.5 - parent: 2 - - uid: 23099 - components: - - type: Transform - pos: -44.5,28.5 - parent: 2 - - uid: 23100 - components: - - type: Transform - pos: -47.5,28.5 - parent: 2 - - uid: 23101 - components: - - type: Transform - pos: -52.5,28.5 - parent: 2 - - uid: 23102 - components: - - type: Transform - pos: -55.5,28.5 - parent: 2 - - uid: 23103 - components: - - type: Transform - pos: -53.5,30.5 - parent: 2 - - uid: 23104 - components: - - type: Transform - pos: 78.5,-77.5 - parent: 2 - - uid: 23105 - components: - - type: Transform - pos: 77.5,-79.5 - parent: 2 - - uid: 23106 - components: - - type: Transform - pos: 75.5,-73.5 - parent: 2 - - uid: 23107 - components: - - type: Transform - pos: 78.5,-75.5 - parent: 2 - - uid: 23108 - components: - - type: Transform - pos: 79.5,-81.5 - parent: 2 - - uid: 23109 - components: - - type: Transform - pos: 79.5,-83.5 - parent: 2 - - uid: 23110 - components: - - type: Transform - pos: 84.5,-83.5 - parent: 2 - - uid: 23111 - components: - - type: Transform - pos: 77.5,-83.5 - parent: 2 - - uid: 23112 - components: - - type: Transform - pos: 76.5,-81.5 - parent: 2 - - uid: 23113 - components: - - type: Transform - pos: 76.5,-77.5 - parent: 2 - - uid: 23114 - components: - - type: Transform - pos: 75.5,-83.5 - parent: 2 - - uid: 23115 - components: - - type: Transform - pos: 87.5,-77.5 - parent: 2 - - uid: 23116 - components: - - type: Transform - pos: 84.5,-75.5 - parent: 2 - - uid: 23117 - components: - - type: Transform - pos: 83.5,-77.5 - parent: 2 - - uid: 23118 - components: - - type: Transform - pos: 86.5,-79.5 - parent: 2 - - uid: 23119 - components: - - type: Transform - pos: 85.5,-73.5 - parent: 2 - - uid: 23120 - components: - - type: Transform - pos: 87.5,-81.5 - parent: 2 - - uid: 23121 - components: - - type: Transform - pos: 86.5,-83.5 - parent: 2 - - uid: 23122 - components: - - type: Transform - pos: 83.5,-81.5 - parent: 2 - - uid: 23123 - components: - - type: Transform - pos: 84.5,-79.5 - parent: 2 - - uid: 23124 - components: - - type: Transform - pos: 76.5,-73.5 - parent: 2 - - uid: 23125 - components: - - type: Transform - pos: 77.5,-73.5 - parent: 2 - - uid: 23126 - components: - - type: Transform - pos: 78.5,-73.5 - parent: 2 - - uid: 23127 - components: - - type: Transform - pos: 79.5,-73.5 - parent: 2 - - uid: 23128 - components: - - type: Transform - pos: 79.5,-75.5 - parent: 2 - - uid: 23129 - components: - - type: Transform - pos: 77.5,-75.5 - parent: 2 - - uid: 23130 - components: - - type: Transform - pos: 76.5,-75.5 - parent: 2 - - uid: 23131 - components: - - type: Transform - pos: 75.5,-75.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1297 - - uid: 23132 - components: - - type: Transform - pos: 83.5,-73.5 - parent: 2 - - uid: 23133 - components: - - type: Transform - pos: 84.5,-73.5 - parent: 2 - - uid: 23134 - components: - - type: Transform - pos: 86.5,-73.5 - parent: 2 - - uid: 23135 - components: - - type: Transform - pos: 87.5,-73.5 - parent: 2 - - uid: 23136 - components: - - type: Transform - pos: 87.5,-75.5 - parent: 2 - - uid: 23137 - components: - - type: Transform - pos: 86.5,-75.5 - parent: 2 - - uid: 23138 - components: - - type: Transform - pos: 85.5,-75.5 - parent: 2 - - uid: 23139 - components: - - type: Transform - pos: 83.5,-75.5 - parent: 2 - - uid: 23140 - components: - - type: Transform - pos: 75.5,-77.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1297 - - uid: 23141 - components: - - type: Transform - pos: 77.5,-77.5 - parent: 2 - - uid: 23142 - components: - - type: Transform - pos: 79.5,-77.5 - parent: 2 - - uid: 23143 - components: - - type: Transform - pos: 79.5,-79.5 - parent: 2 - - uid: 23144 - components: - - type: Transform - pos: 78.5,-79.5 - parent: 2 - - uid: 23145 - components: - - type: Transform - pos: 76.5,-79.5 - parent: 2 - - uid: 23146 - components: - - type: Transform - pos: 75.5,-79.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1297 - - uid: 23147 - components: - - type: Transform - pos: 75.5,-81.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1297 - - uid: 23148 - components: - - type: Transform - pos: 78.5,-81.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1297 - - uid: 23149 - components: - - type: Transform - pos: 77.5,-81.5 - parent: 2 - - uid: 23150 - components: - - type: Transform - pos: 76.5,-83.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1297 - - uid: 23151 - components: - - type: Transform - pos: 78.5,-83.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1297 - - uid: 23152 - components: - - type: Transform - pos: 83.5,-83.5 - parent: 2 - - uid: 23153 - components: - - type: Transform - pos: 85.5,-83.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1297 - - uid: 23154 - components: - - type: Transform - pos: 87.5,-83.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1297 - - uid: 23155 - components: - - type: Transform - pos: 86.5,-81.5 - parent: 2 - - uid: 23156 - components: - - type: Transform - pos: 85.5,-81.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1297 - - uid: 23157 - components: - - type: Transform - pos: 84.5,-81.5 - parent: 2 - - uid: 23158 - components: - - type: Transform - pos: 83.5,-79.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1297 - - uid: 23159 - components: - - type: Transform - pos: 85.5,-79.5 - parent: 2 - - uid: 23160 - components: - - type: Transform - pos: 87.5,-79.5 - parent: 2 - - uid: 23161 - components: - - type: Transform - pos: 86.5,-77.5 - parent: 2 - - uid: 23162 - components: - - type: Transform - pos: 85.5,-77.5 - parent: 2 - - type: PowerSupplier - supplyRate: 1297 - - uid: 23163 - components: - - type: Transform - pos: 84.5,-77.5 - parent: 2 -- proto: SolarTracker - entities: - - uid: 23164 - components: - - type: Transform - pos: 47.5,41.5 - parent: 2 - - uid: 23165 - components: - - type: Transform - pos: -49.5,41.5 - parent: 2 - - uid: 23166 - components: - - type: Transform - pos: 81.5,-86.5 - parent: 2 - - uid: 23167 - components: - - type: Transform - pos: -57.5,-61.5 - parent: 2 -- proto: SolidSecretDoor - entities: - - uid: 5137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-58.5 - parent: 2 - - uid: 12418 - components: - - type: Transform - pos: 76.5,-56.5 - parent: 2 -- proto: SpaceCash5000 - entities: - - uid: 27479 - components: - - type: Transform - pos: -33.53206,-24.115194 - parent: 2 -- proto: SpaceHeater - entities: - - uid: 17706 - components: - - type: Transform - pos: 11.5,-49.5 - parent: 2 - - uid: 18919 - components: - - type: Transform - pos: 10.5,-49.5 - parent: 2 -- proto: Spaceshroom - entities: - - uid: 23170 - components: - - type: Transform - pos: 65.5,-72.5 - parent: 2 - - uid: 23172 - components: - - type: Transform - pos: 48.5,-64.5 - parent: 2 -- proto: SpaceVillainArcadeFilled - entities: - - uid: 23173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-32.5 - parent: 2 - - type: SpamEmitSound - enabled: False - - uid: 23175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 2 - - type: SpamEmitSound - enabled: False -- proto: SpawnMechSecPodFilled - entities: - - uid: 30006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,46.5 - parent: 2 -- proto: SpawnMobAlexander - entities: - - uid: 23176 - components: - - type: Transform - pos: 39.5,-5.5 - parent: 2 -- proto: SpawnMobBandito - entities: - - uid: 13185 - components: - - type: Transform - pos: 61.5,-35.5 - parent: 2 -- proto: SpawnMobBear - entities: - - uid: 761 - components: - - type: Transform - pos: 58.5,-68.5 - parent: 2 - - uid: 30432 - components: - - type: Transform - pos: -31.5,44.5 - parent: 2 -- proto: SpawnMobCatException - entities: - - uid: 23178 - components: - - type: Transform - pos: 34.5,-41.5 - parent: 2 -- proto: SpawnMobCatRuntime - entities: - - uid: 23179 - components: - - type: Transform - pos: 35.5,-38.5 - parent: 2 -- proto: SpawnMobCleanBot - entities: - - uid: 23180 - components: - - type: Transform - pos: 66.5,-13.5 - parent: 2 -- proto: SpawnMobCorgi - entities: - - uid: 23181 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 2 -- proto: SpawnMobCrabAtmos - entities: - - uid: 32153 - components: - - type: Transform - pos: 13.5,-59.5 - parent: 2 -- proto: SpawnMobFoxRenault - entities: - - uid: 23183 - components: - - type: Transform - pos: 9.5,-17.5 - parent: 2 -- proto: SpawnMobGoat - entities: - - uid: 23184 - components: - - type: Transform - pos: 43.5,0.5 - parent: 2 -- proto: SpawnMobLizard - entities: - - uid: 20807 - components: - - type: Transform - pos: -38.5,-5.5 - parent: 2 -- proto: SpawnMobMcGriff - entities: - - uid: 23186 - components: - - type: Transform - pos: 3.5,33.5 - parent: 2 -- proto: SpawnMobMedibot - entities: - - uid: 23187 - components: - - type: Transform - pos: 26.5,-24.5 - parent: 2 -- proto: SpawnMobMouse - entities: - - uid: 5949 - components: - - type: Transform - pos: -57.5,-28.5 - parent: 2 - - uid: 19924 - components: - - type: Transform - pos: 82.5,-32.5 - parent: 2 - - uid: 23188 - components: - - type: Transform - pos: 49.5,8.5 - parent: 2 - - uid: 23190 - components: - - type: Transform - pos: -53.5,-16.5 - parent: 2 - - uid: 23191 - components: - - type: Transform - pos: -22.5,-54.5 - parent: 2 - - uid: 23193 - components: - - type: Transform - pos: -21.5,50.5 - parent: 2 -- proto: SpawnMobPossumMorty - entities: - - uid: 23194 - components: - - type: Transform - pos: 44.5,-18.5 - parent: 2 -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 23195 - components: - - type: Transform - pos: -30.5,-26.5 - parent: 2 -- proto: SpawnMobShiva - entities: - - uid: 30318 - components: - - type: Transform - pos: 18.5,40.5 - parent: 2 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 23196 - components: - - type: Transform - pos: 62.5,-7.5 - parent: 2 -- proto: SpawnMobSmile - entities: - - uid: 13683 - components: - - type: Transform - pos: 70.5,-26.5 - parent: 2 -- proto: SpawnMobSpaceSpider - entities: - - uid: 31501 - components: - - type: Transform - pos: 58.5,-79.5 - parent: 2 -- proto: SpawnMobWalter - entities: - - uid: 23199 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 2 -- proto: SpawnPointAdjutant - entities: - - uid: 24753 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 2 -- proto: SpawnPointAtmos - entities: - - uid: 14959 - components: - - type: Transform - pos: 8.5,-48.5 - parent: 2 - - uid: 23201 - components: - - type: Transform - pos: 7.5,-48.5 - parent: 2 - - uid: 23202 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 2 - - uid: 32155 - components: - - type: Transform - pos: 5.5,-48.5 - parent: 2 -- proto: SpawnPointBarber - entities: - - uid: 17800 - components: - - type: Transform - pos: 23.5,13.5 - parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 23204 - components: - - type: Transform - pos: 28.5,4.5 - parent: 2 - - uid: 23205 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 2 -- proto: SpawnPointBlueShield - entities: - - uid: 9925 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 30780 - components: - - type: Transform - pos: 53.5,-17.5 - parent: 2 - - uid: 30781 - components: - - type: Transform - pos: 52.5,-17.5 - parent: 2 - - uid: 30782 - components: - - type: Transform - pos: 54.5,-17.5 - parent: 2 -- proto: SpawnPointBotanist - entities: - - uid: 23207 - components: - - type: Transform - pos: 46.5,-3.5 - parent: 2 - - uid: 23208 - components: - - type: Transform - pos: 45.5,-4.5 - parent: 2 - - uid: 23209 - components: - - type: Transform - pos: 47.5,-4.5 - parent: 2 -- proto: SpawnPointBrigmedic - entities: - - uid: 880 - components: - - type: Transform - pos: -12.5,32.5 - parent: 2 -- proto: SpawnPointCaptain - entities: - - uid: 25635 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 2 -- proto: SpawnPointCargoTechnician - entities: - - uid: 23212 - components: - - type: Transform - pos: -26.5,-20.5 - parent: 2 - - uid: 23213 - components: - - type: Transform - pos: -26.5,-22.5 - parent: 2 - - uid: 23214 - components: - - type: Transform - pos: -26.5,-21.5 - parent: 2 -- proto: SpawnPointChaplain - entities: - - uid: 23215 - components: - - type: Transform - pos: 65.5,2.5 - parent: 2 -- proto: SpawnPointChef - entities: - - uid: 23216 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 - - uid: 23217 - components: - - type: Transform - pos: 38.5,-5.5 - parent: 2 - - uid: 23218 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 2 -- proto: SpawnPointChemist - entities: - - uid: 23219 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 2 - - uid: 23220 - components: - - type: Transform - pos: 20.5,-18.5 - parent: 2 - - uid: 23221 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 2 -- proto: SpawnPointChiefEngineer - entities: - - uid: 19959 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 2 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 25546 - components: - - type: Transform - pos: -1.5,-17.5 - parent: 2 -- proto: SpawnPointClown - entities: - - uid: 21497 - components: - - type: Transform - pos: 15.5,37.5 - parent: 2 - - uid: 23224 - components: - - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 25239 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 2 -- proto: SpawnPointDetective - entities: - - uid: 21488 - components: - - type: Transform - pos: 15.5,22.5 - parent: 2 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 25374 - components: - - type: Transform - pos: -1.5,-16.5 - parent: 2 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 25376 - components: - - type: Transform - pos: 0.5,-16.5 - parent: 2 -- proto: SpawnPointJanitor - entities: - - uid: 17224 - components: - - type: Transform - pos: -39.5,-5.5 - parent: 2 - - uid: 18010 - components: - - type: Transform - pos: -37.5,-5.5 - parent: 2 - - uid: 28952 - components: - - type: Transform - pos: -38.5,-7.5 - parent: 2 -- proto: SpawnPointLatejoin - entities: - - uid: 23229 - components: - - type: Transform - pos: -75.5,10.5 - parent: 2 - - uid: 23230 - components: - - type: Transform - pos: -74.5,10.5 - parent: 2 - - uid: 23231 - components: - - type: Transform - pos: -73.5,10.5 - parent: 2 - - uid: 23232 - components: - - type: Transform - pos: -72.5,10.5 - parent: 2 - - uid: 23233 - components: - - type: Transform - pos: -75.5,-5.5 - parent: 2 - - uid: 23234 - components: - - type: Transform - pos: -74.5,-5.5 - parent: 2 - - uid: 23235 - components: - - type: Transform - pos: -73.5,-5.5 - parent: 2 - - uid: 23236 - components: - - type: Transform - pos: -72.5,-5.5 - parent: 2 -- proto: SpawnPointLawyer - entities: - - uid: 29792 - components: - - type: Transform - pos: -14.5,17.5 - parent: 2 - - uid: 29793 - components: - - type: Transform - pos: -14.5,15.5 - parent: 2 -- proto: SpawnPointMagistrat - entities: - - uid: 29794 - components: - - type: Transform - pos: -7.5,15.5 - parent: 2 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 23239 - components: - - type: Transform - pos: 39.5,-27.5 - parent: 2 - - uid: 23240 - components: - - type: Transform - pos: 40.5,-27.5 - parent: 2 - - uid: 23241 - components: - - type: Transform - pos: 32.5,-19.5 - parent: 2 - - uid: 23242 - components: - - type: Transform - pos: 33.5,-19.5 - parent: 2 - - uid: 23243 - components: - - type: Transform - pos: 29.5,-20.5 - parent: 2 - - uid: 23244 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 2 - - uid: 23245 - components: - - type: Transform - pos: 24.5,-28.5 - parent: 2 - - uid: 23246 - components: - - type: Transform - pos: 24.5,-27.5 - parent: 2 -- proto: SpawnPointMedicalIntern - entities: - - uid: 23247 - components: - - type: Transform - pos: 40.5,-28.5 - parent: 2 - - uid: 23248 - components: - - type: Transform - pos: 39.5,-28.5 - parent: 2 - - uid: 23249 - components: - - type: Transform - pos: 34.5,-17.5 - parent: 2 - - uid: 23250 - components: - - type: Transform - pos: 34.5,-18.5 - parent: 2 - - uid: 23251 - components: - - type: Transform - pos: 34.5,-16.5 - parent: 2 - - uid: 23252 - components: - - type: Transform - pos: 34.5,-19.5 - parent: 2 - - uid: 23253 - components: - - type: Transform - pos: 34.5,-20.5 - parent: 2 - - uid: 23254 - components: - - type: Transform - pos: 28.5,-20.5 - parent: 2 - - uid: 23255 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 2 - - uid: 23256 - components: - - type: Transform - pos: 30.5,-27.5 - parent: 2 -- proto: SpawnPointMedicalPathologist - entities: - - uid: 24126 - components: - - type: Transform - pos: 42.5,-18.5 - parent: 2 -- proto: SpawnPointMime - entities: - - uid: 23257 - components: - - type: Transform - pos: 36.5,22.5 - parent: 2 -- proto: SpawnPointNtrep - entities: - - uid: 19703 - components: - - type: Transform - pos: -56.5,-10.5 - parent: 2 - - uid: 25690 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 2 -- proto: SpawnPointObserver - entities: - - uid: 20999 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 -- proto: SpawnPointParamedic - entities: - - uid: 25912 - components: - - type: Transform - pos: 44.5,-27.5 - parent: 2 - - uid: 25919 - components: - - type: Transform - pos: 45.5,-27.5 - parent: 2 -- proto: SpawnPointPassenger - entities: - - uid: 871 - components: - - type: Transform - pos: -55.5,-9.5 - parent: 2 - - uid: 2595 - components: - - type: Transform - pos: -55.5,-10.5 - parent: 2 - - uid: 12206 - components: - - type: Transform - pos: -54.5,-11.5 - parent: 2 - - uid: 18906 - components: - - type: Transform - pos: -41.5,3.5 - parent: 2 - - uid: 20590 - components: - - type: Transform - pos: -55.5,-11.5 - parent: 2 - - uid: 20591 - components: - - type: Transform - pos: -54.5,-9.5 - parent: 2 - - uid: 23261 - components: - - type: Transform - pos: -43.5,3.5 - parent: 2 - - uid: 23262 - components: - - type: Transform - pos: -40.5,3.5 - parent: 2 - - uid: 23263 - components: - - type: Transform - pos: -42.5,3.5 - parent: 2 - - uid: 31753 - components: - - type: Transform - pos: -54.5,-10.5 - parent: 2 -- proto: SpawnPointPsychologist - entities: - - uid: 23265 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 25695 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 2 -- proto: SpawnPointReporter - entities: - - uid: 3191 - components: - - type: Transform - pos: 26.5,14.5 - parent: 2 - - uid: 31346 - components: - - type: Transform - pos: 24.5,21.5 - parent: 2 - - uid: 31350 - components: - - type: Transform - pos: 23.5,18.5 - parent: 2 - - uid: 31395 - components: - - type: Transform - pos: 23.5,19.5 - parent: 2 - - uid: 31396 - components: - - type: Transform - pos: 25.5,19.5 - parent: 2 -- proto: SpawnPointResearchAssistant - entities: - - uid: 13998 - components: - - type: Transform - pos: 74.5,-28.5 - parent: 2 - - uid: 23271 - components: - - type: Transform - pos: 70.5,-29.5 - parent: 2 - - uid: 23272 - components: - - type: Transform - pos: 70.5,-28.5 - parent: 2 -- proto: SpawnPointResearchDirector - entities: - - uid: 25688 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 23274 - components: - - type: Transform - pos: -26.5,-33.5 - parent: 2 - - uid: 23275 - components: - - type: Transform - pos: -26.5,-35.5 - parent: 2 - - uid: 23276 - components: - - type: Transform - pos: -26.5,-31.5 - parent: 2 -- proto: SpawnPointScientist - entities: - - uid: 23277 - components: - - type: Transform - pos: 71.5,-30.5 - parent: 2 - - uid: 23278 - components: - - type: Transform - pos: 72.5,-30.5 - parent: 2 -- proto: SpawnPointSecurityCadet - entities: - - uid: 23279 - components: - - type: Transform - pos: 7.5,39.5 - parent: 2 - - uid: 23280 - components: - - type: Transform - pos: 7.5,38.5 - parent: 2 - - uid: 23281 - components: - - type: Transform - pos: 7.5,40.5 - parent: 2 - - uid: 23282 - components: - - type: Transform - pos: 7.5,41.5 - parent: 2 - - uid: 23283 - components: - - type: Transform - pos: 7.5,42.5 - parent: 2 - - uid: 32138 - components: - - type: Transform - pos: 13.5,30.5 - parent: 2 - - uid: 32139 - components: - - type: Transform - pos: 14.5,30.5 - parent: 2 - - uid: 32140 - components: - - type: Transform - pos: 16.5,30.5 - parent: 2 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 23284 - components: - - type: Transform - pos: 9.5,40.5 - parent: 2 - - uid: 23285 - components: - - type: Transform - pos: 9.5,39.5 - parent: 2 - - uid: 23286 - components: - - type: Transform - pos: 9.5,38.5 - parent: 2 - - uid: 23287 - components: - - type: Transform - pos: 9.5,41.5 - parent: 2 - - uid: 23288 - components: - - type: Transform - pos: 9.5,42.5 - parent: 2 - - uid: 32134 - components: - - type: Transform - pos: 13.5,33.5 - parent: 2 - - uid: 32135 - components: - - type: Transform - pos: 13.5,32.5 - parent: 2 - - uid: 32136 - components: - - type: Transform - pos: 15.5,33.5 - parent: 2 - - uid: 32137 - components: - - type: Transform - pos: 16.5,32.5 - parent: 2 - - uid: 32141 - components: - - type: Transform - pos: 16.5,33.5 - parent: 2 - - uid: 32142 - components: - - type: Transform - pos: 17.5,33.5 - parent: 2 - - uid: 32143 - components: - - type: Transform - pos: 14.5,32.5 - parent: 2 -- proto: SpawnPointSeniorEngineer - entities: - - uid: 31754 - components: - - type: Transform - pos: 6.5,-53.5 - parent: 2 -- proto: SpawnPointSeniorOfficer - entities: - - uid: 11268 - components: - - type: Transform - pos: 8.5,37.5 - parent: 2 -- proto: SpawnPointSeniorPhysician - entities: - - uid: 30740 - components: - - type: Transform - pos: 30.5,-28.5 - parent: 2 -- proto: SpawnPointSeniorResearcher - entities: - - uid: 30776 - components: - - type: Transform - pos: 71.5,-22.5 - parent: 2 -- proto: SpawnPointServiceWorker - entities: - - uid: 23289 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 2 - - uid: 23290 - components: - - type: Transform - pos: 37.5,-5.5 - parent: 2 - - uid: 23291 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 2 - - uid: 23292 - components: - - type: Transform - pos: 29.5,-0.5 - parent: 2 - - uid: 23293 - components: - - type: Transform - pos: 29.5,-1.5 - parent: 2 -- proto: SpawnPointStationEngineer - entities: - - uid: 23297 - components: - - type: Transform - pos: 5.5,-54.5 - parent: 2 - - uid: 23298 - components: - - type: Transform - pos: 5.5,-55.5 - parent: 2 - - uid: 23299 - components: - - type: Transform - pos: 5.5,-57.5 - parent: 2 - - uid: 23300 - components: - - type: Transform - pos: 5.5,-56.5 - parent: 2 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 23301 - components: - - type: Transform - pos: 7.5,-54.5 - parent: 2 - - uid: 23304 - components: - - type: Transform - pos: 7.5,-57.5 - parent: 2 - - uid: 23305 - components: - - type: Transform - pos: 7.5,-56.5 - parent: 2 - - uid: 23306 - components: - - type: Transform - pos: 7.5,-55.5 - parent: 2 -- proto: SpawnPointWarden - entities: - - uid: 23307 - components: - - type: Transform - pos: -0.5,30.5 - parent: 2 -- proto: SpawnPointZookeeper - entities: - - uid: 23308 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 2 -- proto: SpawnVendingMachineRestockFoodDrink - entities: - - uid: 23309 - components: - - type: Transform - pos: -37.5,-43.5 - parent: 2 - - uid: 23310 - components: - - type: Transform - pos: -31.5,-43.5 - parent: 2 -- proto: SpiderWeb - entities: - - uid: 868 - components: - - type: Transform - pos: -54.5,-7.5 - parent: 2 - - uid: 1040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-47.5 - parent: 2 - - uid: 1366 - components: - - type: Transform - pos: -61.5,-10.5 - parent: 2 - - uid: 2533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,34.5 - parent: 2 - - uid: 3474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-57.5 - parent: 2 - - uid: 5638 - components: - - type: Transform - pos: 79.5,-56.5 - parent: 2 - - uid: 5658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-58.5 - parent: 2 - - uid: 5660 - components: - - type: Transform - pos: 78.5,-56.5 - parent: 2 - - uid: 5665 - components: - - type: Transform - pos: 78.5,-57.5 - parent: 2 - - uid: 5666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-57.5 - parent: 2 - - uid: 5688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-56.5 - parent: 2 - - uid: 5715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-58.5 - parent: 2 - - uid: 10757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,22.5 - parent: 2 - - uid: 10767 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,21.5 - parent: 2 - - uid: 11111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,41.5 - parent: 2 - - uid: 11485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-58.5 - parent: 2 - - uid: 11572 - components: - - type: Transform - pos: -38.5,42.5 - parent: 2 - - uid: 12419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-58.5 - parent: 2 - - uid: 13397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-58.5 - parent: 2 - - uid: 14414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,7.5 - parent: 2 - - uid: 14418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,8.5 - parent: 2 - - uid: 15483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,36.5 - parent: 2 - - uid: 17926 - components: - - type: Transform - pos: 77.5,-29.5 - parent: 2 - - uid: 17927 - components: - - type: Transform - pos: 77.5,-26.5 - parent: 2 - - uid: 17976 - components: - - type: Transform - pos: -38.5,34.5 - parent: 2 - - uid: 19485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,34.5 - parent: 2 - - uid: 21409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,23.5 - parent: 2 - - uid: 21493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,22.5 - parent: 2 - - uid: 21495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,23.5 - parent: 2 - - uid: 21532 - components: - - type: Transform - pos: -37.5,36.5 - parent: 2 - - uid: 21567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-55.5 - parent: 2 - - uid: 22502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-38.5 - parent: 2 - - uid: 23456 - components: - - type: Transform - pos: -35.5,44.5 - parent: 2 - - uid: 23784 - components: - - type: Transform - pos: -60.5,-11.5 - parent: 2 - - uid: 24146 - components: - - type: Transform - pos: -60.5,-10.5 - parent: 2 - - uid: 28793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,39.5 - parent: 2 - - uid: 28798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,40.5 - parent: 2 - - uid: 28812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,38.5 - parent: 2 - - uid: 30279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,32.5 - parent: 2 - - uid: 30345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,36.5 - parent: 2 - - uid: 30346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,36.5 - parent: 2 - - uid: 30371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,43.5 - parent: 2 - - uid: 30372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,46.5 - parent: 2 - - uid: 30373 - components: - - type: Transform - pos: -36.5,45.5 - parent: 2 - - uid: 30374 - components: - - type: Transform - pos: -35.5,45.5 - parent: 2 - - uid: 30375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,44.5 - parent: 2 - - uid: 30376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,46.5 - parent: 2 - - uid: 30378 - components: - - type: Transform - pos: -34.5,41.5 - parent: 2 - - uid: 30379 - components: - - type: Transform - pos: -34.5,46.5 - parent: 2 - - uid: 30380 - components: - - type: Transform - pos: -36.5,46.5 - parent: 2 - - uid: 30381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,45.5 - parent: 2 - - uid: 30382 - components: - - type: Transform - pos: -36.5,46.5 - parent: 2 - - uid: 30385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,42.5 - parent: 2 - - uid: 30386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,43.5 - parent: 2 - - uid: 30387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,39.5 - parent: 2 - - uid: 30388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,38.5 - parent: 2 - - uid: 30398 - components: - - type: Transform - pos: -37.5,29.5 - parent: 2 - - uid: 30408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,29.5 - parent: 2 - - uid: 30409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,29.5 - parent: 2 - - uid: 30410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,32.5 - parent: 2 - - uid: 30412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,33.5 - parent: 2 - - uid: 30414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,31.5 - parent: 2 - - uid: 30415 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,30.5 - parent: 2 - - uid: 30418 - components: - - type: Transform - pos: -36.5,36.5 - parent: 2 - - uid: 30419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,36.5 - parent: 2 - - uid: 30420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,35.5 - parent: 2 - - uid: 30421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,35.5 - parent: 2 - - uid: 30434 - components: - - type: Transform - pos: -32.5,34.5 - parent: 2 - - uid: 30435 - components: - - type: Transform - pos: -30.5,39.5 - parent: 2 - - uid: 30436 - components: - - type: Transform - pos: -32.5,37.5 - parent: 2 - - uid: 30439 - components: - - type: Transform - pos: -32.5,42.5 - parent: 2 - - uid: 30440 - components: - - type: Transform - pos: -32.5,43.5 - parent: 2 - - uid: 30442 - components: - - type: Transform - pos: -32.5,45.5 - parent: 2 - - uid: 30446 - components: - - type: Transform - pos: -30.5,42.5 - parent: 2 - - uid: 30448 - components: - - type: Transform - pos: -58.5,16.5 - parent: 2 - - uid: 30449 - components: - - type: Transform - pos: -59.5,17.5 - parent: 2 - - uid: 30450 - components: - - type: Transform - pos: -59.5,16.5 - parent: 2 - - uid: 30451 - components: - - type: Transform - pos: -56.5,13.5 - parent: 2 - - uid: 30452 - components: - - type: Transform - pos: -56.5,14.5 - parent: 2 - - uid: 30453 - components: - - type: Transform - pos: -57.5,13.5 - parent: 2 - - uid: 30454 - components: - - type: Transform - pos: -48.5,5.5 - parent: 2 - - uid: 30455 - components: - - type: Transform - pos: -48.5,6.5 - parent: 2 - - uid: 30456 - components: - - type: Transform - pos: -46.5,8.5 - parent: 2 - - uid: 30457 - components: - - type: Transform - pos: -46.5,9.5 - parent: 2 - - uid: 30461 - components: - - type: Transform - pos: -21.5,12.5 - parent: 2 - - uid: 30462 - components: - - type: Transform - pos: -21.5,13.5 - parent: 2 - - uid: 30464 - components: - - type: Transform - pos: -14.5,13.5 - parent: 2 - - uid: 30476 - components: - - type: Transform - pos: -31.5,16.5 - parent: 2 - - uid: 30478 - components: - - type: Transform - pos: -31.5,17.5 - parent: 2 - - uid: 30479 - components: - - type: Transform - pos: -31.5,16.5 - parent: 2 - - uid: 30482 - components: - - type: Transform - pos: -32.5,18.5 - parent: 2 - - uid: 30483 - components: - - type: Transform - pos: -31.5,18.5 - parent: 2 - - uid: 30484 - components: - - type: Transform - pos: -31.5,18.5 - parent: 2 - - uid: 30485 - components: - - type: Transform - pos: -37.5,19.5 - parent: 2 - - uid: 30486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,20.5 - parent: 2 - - uid: 30487 - components: - - type: Transform - pos: -38.5,20.5 - parent: 2 - - uid: 30488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,18.5 - parent: 2 - - uid: 30489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,19.5 - parent: 2 - - uid: 30490 - components: - - type: Transform - pos: -38.5,24.5 - parent: 2 - - uid: 30491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,18.5 - parent: 2 - - uid: 30494 - components: - - type: Transform - pos: -37.5,27.5 - parent: 2 - - uid: 30495 - components: - - type: Transform - pos: -35.5,19.5 - parent: 2 - - uid: 30496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,19.5 - parent: 2 - - uid: 30497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,20.5 - parent: 2 - - uid: 30498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,24.5 - parent: 2 - - uid: 30499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,24.5 - parent: 2 - - uid: 30500 - components: - - type: Transform - pos: -32.5,20.5 - parent: 2 - - uid: 30501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,20.5 - parent: 2 - - uid: 30503 - components: - - type: Transform - pos: -28.5,33.5 - parent: 2 - - uid: 30506 - components: - - type: Transform - pos: -21.5,36.5 - parent: 2 - - uid: 30507 - components: - - type: Transform - pos: -22.5,36.5 - parent: 2 - - uid: 30508 - components: - - type: Transform - pos: -28.5,36.5 - parent: 2 - - uid: 30509 - components: - - type: Transform - pos: -18.5,35.5 - parent: 2 - - uid: 30513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,22.5 - parent: 2 - - uid: 30514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,22.5 - parent: 2 - - uid: 30516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,23.5 - parent: 2 - - uid: 30517 - components: - - type: Transform - pos: -32.5,23.5 - parent: 2 - - uid: 30518 - components: - - type: Transform - pos: -30.5,25.5 - parent: 2 - - uid: 30519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,25.5 - parent: 2 - - uid: 30521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,22.5 - parent: 2 - - uid: 30522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,22.5 - parent: 2 - - uid: 30523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,21.5 - parent: 2 - - uid: 30525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,22.5 - parent: 2 - - uid: 30526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,21.5 - parent: 2 - - uid: 30527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,22.5 - parent: 2 - - uid: 30529 - components: - - type: Transform - pos: -33.5,22.5 - parent: 2 - - uid: 30566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,32.5 - parent: 2 - - uid: 30567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,30.5 - parent: 2 - - uid: 30568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,30.5 - parent: 2 - - uid: 30569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,30.5 - parent: 2 - - uid: 30570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,30.5 - parent: 2 - - uid: 30571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,32.5 - parent: 2 - - uid: 30572 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,29.5 - parent: 2 - - uid: 30573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,29.5 - parent: 2 - - uid: 30574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,28.5 - parent: 2 - - uid: 30575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,28.5 - parent: 2 - - uid: 30576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,31.5 - parent: 2 - - uid: 30577 - components: - - type: Transform - pos: -30.5,31.5 - parent: 2 - - uid: 30578 - components: - - type: Transform - pos: -30.5,37.5 - parent: 2 - - uid: 30579 - components: - - type: Transform - pos: -30.5,36.5 - parent: 2 - - uid: 30580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,36.5 - parent: 2 - - uid: 30581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,37.5 - parent: 2 - - uid: 30588 - components: - - type: Transform - pos: -22.5,36.5 - parent: 2 - - uid: 30589 - components: - - type: Transform - pos: -21.5,36.5 - parent: 2 - - uid: 30590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,36.5 - parent: 2 - - uid: 30591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,30.5 - parent: 2 - - uid: 30592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,30.5 - parent: 2 - - uid: 30593 - components: - - type: Transform - pos: -28.5,30.5 - parent: 2 - - uid: 30594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,30.5 - parent: 2 - - uid: 30595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,33.5 - parent: 2 - - uid: 30596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,33.5 - parent: 2 - - uid: 30699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,21.5 - parent: 2 - - uid: 30701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,20.5 - parent: 2 - - uid: 30702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,21.5 - parent: 2 - - uid: 30706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,21.5 - parent: 2 - - uid: 30707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,21.5 - parent: 2 - - uid: 30709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - - uid: 30710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - - uid: 30711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - - uid: 30712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - - uid: 30713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - - uid: 30714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - - uid: 30715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - - uid: 30716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,20.5 - parent: 2 - - uid: 30717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,20.5 - parent: 2 - - uid: 30718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,20.5 - parent: 2 - - uid: 30723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,21.5 - parent: 2 - - uid: 30724 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,22.5 - parent: 2 - - uid: 30725 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,22.5 - parent: 2 - - uid: 30726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,20.5 - parent: 2 - - uid: 30727 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,22.5 - parent: 2 - - uid: 30728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,21.5 - parent: 2 - - uid: 30730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,22.5 - parent: 2 - - uid: 30731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,22.5 - parent: 2 - - uid: 30732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - - uid: 30733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,21.5 - parent: 2 - - uid: 30734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,22.5 - parent: 2 - - uid: 30735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,22.5 - parent: 2 - - uid: 30736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,20.5 - parent: 2 - - uid: 30737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,20.5 - parent: 2 - - uid: 30738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,22.5 - parent: 2 - - uid: 30818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-42.5 - parent: 2 - - uid: 30872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-72.5 - parent: 2 - - uid: 30884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,27.5 - parent: 2 - - uid: 30887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,27.5 - parent: 2 - - uid: 30907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,26.5 - parent: 2 - - uid: 30910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,26.5 - parent: 2 - - uid: 30911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,26.5 - parent: 2 - - uid: 30912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,27.5 - parent: 2 - - uid: 30914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,25.5 - parent: 2 - - uid: 30915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,23.5 - parent: 2 - - uid: 30916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,24.5 - parent: 2 - - uid: 30917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,25.5 - parent: 2 - - uid: 30918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,25.5 - parent: 2 - - uid: 30919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,23.5 - parent: 2 - - uid: 30920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,26.5 - parent: 2 - - uid: 30921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,27.5 - parent: 2 - - uid: 30922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,21.5 - parent: 2 - - uid: 30923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,22.5 - parent: 2 - - uid: 30924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,23.5 - parent: 2 - - uid: 30925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,22.5 - parent: 2 - - uid: 30931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,23.5 - parent: 2 - - uid: 30933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-51.5 - parent: 2 - - uid: 30934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-51.5 - parent: 2 - - uid: 30935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-47.5 - parent: 2 - - uid: 30936 - components: - - type: Transform - pos: -34.5,-49.5 - parent: 2 - - uid: 30937 - components: - - type: Transform - pos: -36.5,-49.5 - parent: 2 - - uid: 30938 - components: - - type: Transform - pos: -36.5,-50.5 - parent: 2 - - uid: 30939 - components: - - type: Transform - pos: -35.5,-48.5 - parent: 2 - - uid: 30940 - components: - - type: Transform - pos: -34.5,-48.5 - parent: 2 - - uid: 30941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-54.5 - parent: 2 - - uid: 30942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-56.5 - parent: 2 - - uid: 30943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-58.5 - parent: 2 - - uid: 30944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-54.5 - parent: 2 - - uid: 30945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-56.5 - parent: 2 - - uid: 30946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-56.5 - parent: 2 - - uid: 30947 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-60.5 - parent: 2 - - uid: 30948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-60.5 - parent: 2 - - uid: 30949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-63.5 - parent: 2 - - uid: 30950 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-62.5 - parent: 2 - - uid: 30952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-66.5 - parent: 2 - - uid: 30955 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-59.5 - parent: 2 - - uid: 30956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-59.5 - parent: 2 - - uid: 30957 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-57.5 - parent: 2 - - uid: 30958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-57.5 - parent: 2 - - uid: 30959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-60.5 - parent: 2 - - uid: 30960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-60.5 - parent: 2 - - uid: 30961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,19.5 - parent: 2 - - uid: 30962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,18.5 - parent: 2 - - uid: 30963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,17.5 - parent: 2 - - uid: 30964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,19.5 - parent: 2 - - uid: 30965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,18.5 - parent: 2 - - uid: 30966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-41.5 - parent: 2 - - uid: 30967 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-41.5 - parent: 2 - - uid: 30968 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,20.5 - parent: 2 - - uid: 30969 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,19.5 - parent: 2 - - uid: 30970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,19.5 - parent: 2 - - uid: 30971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-39.5 - parent: 2 - - uid: 30972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,18.5 - parent: 2 - - uid: 30973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-39.5 - parent: 2 - - uid: 30974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,18.5 - parent: 2 - - uid: 30975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-39.5 - parent: 2 - - uid: 30976 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-39.5 - parent: 2 - - uid: 30977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-40.5 - parent: 2 - - uid: 30978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,19.5 - parent: 2 - - uid: 30979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-41.5 - parent: 2 - - uid: 30980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-41.5 - parent: 2 - - uid: 30981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,19.5 - parent: 2 - - uid: 30982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-40.5 - parent: 2 - - uid: 30983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,20.5 - parent: 2 - - uid: 30984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-40.5 - parent: 2 - - uid: 30985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-40.5 - parent: 2 - - uid: 30986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-40.5 - parent: 2 - - uid: 30987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-41.5 - parent: 2 - - uid: 30988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-41.5 - parent: 2 - - uid: 30989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,17.5 - parent: 2 - - uid: 30990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-40.5 - parent: 2 - - uid: 30991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-39.5 - parent: 2 - - uid: 30992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,16.5 - parent: 2 - - uid: 30993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-39.5 - parent: 2 - - uid: 30994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-41.5 - parent: 2 - - uid: 30995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-39.5 - parent: 2 - - uid: 30996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,16.5 - parent: 2 - - uid: 30999 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-40.5 - parent: 2 - - uid: 31001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-40.5 - parent: 2 - - uid: 31002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,18.5 - parent: 2 - - uid: 31003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,19.5 - parent: 2 - - uid: 31005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-43.5 - parent: 2 - - uid: 31006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-45.5 - parent: 2 - - uid: 31007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-44.5 - parent: 2 - - uid: 31008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-43.5 - parent: 2 - - uid: 31009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-35.5 - parent: 2 - - uid: 31010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,16.5 - parent: 2 - - uid: 31011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,16.5 - parent: 2 - - uid: 31013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-59.5 - parent: 2 - - uid: 31014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-60.5 - parent: 2 - - uid: 31015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-60.5 - parent: 2 - - uid: 31016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-58.5 - parent: 2 - - uid: 31017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-58.5 - parent: 2 - - uid: 31018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-60.5 - parent: 2 - - uid: 31019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-59.5 - parent: 2 - - uid: 31020 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-59.5 - parent: 2 - - uid: 31021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-57.5 - parent: 2 - - uid: 31022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,12.5 - parent: 2 - - uid: 31023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-73.5 - parent: 2 - - uid: 31024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-65.5 - parent: 2 - - uid: 31025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-65.5 - parent: 2 - - uid: 31026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-66.5 - parent: 2 - - uid: 31027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-66.5 - parent: 2 - - uid: 31028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-64.5 - parent: 2 - - uid: 31029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-67.5 - parent: 2 - - uid: 31030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-67.5 - parent: 2 - - uid: 31031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-71.5 - parent: 2 - - uid: 31032 - components: - - type: Transform - pos: 42.5,-70.5 - parent: 2 - - uid: 31033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-71.5 - parent: 2 - - uid: 31034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-70.5 - parent: 2 - - uid: 31035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-71.5 - parent: 2 - - uid: 31036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-72.5 - parent: 2 - - uid: 31037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-72.5 - parent: 2 - - uid: 31038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-71.5 - parent: 2 - - uid: 31039 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-71.5 - parent: 2 - - uid: 31041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-68.5 - parent: 2 - - uid: 31042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-67.5 - parent: 2 - - uid: 31043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-66.5 - parent: 2 - - uid: 31044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-66.5 - parent: 2 - - uid: 31045 - components: - - type: Transform - pos: 41.5,-62.5 - parent: 2 - - uid: 31046 - components: - - type: Transform - pos: 39.5,-68.5 - parent: 2 - - uid: 31047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-66.5 - parent: 2 - - uid: 31048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-66.5 - parent: 2 - - uid: 31049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-55.5 - parent: 2 - - uid: 31050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-55.5 - parent: 2 - - uid: 31051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-55.5 - parent: 2 - - uid: 31052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-57.5 - parent: 2 - - uid: 31053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-57.5 - parent: 2 - - uid: 31054 - components: - - type: Transform - pos: 70.5,-56.5 - parent: 2 - - uid: 31055 - components: - - type: Transform - pos: 70.5,-55.5 - parent: 2 - - uid: 31056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-73.5 - parent: 2 - - uid: 31057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-74.5 - parent: 2 - - uid: 31058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-74.5 - parent: 2 - - uid: 31059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-74.5 - parent: 2 - - uid: 31060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-73.5 - parent: 2 - - uid: 31061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-74.5 - parent: 2 - - uid: 31062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-73.5 - parent: 2 - - uid: 31063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-74.5 - parent: 2 - - uid: 31064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-73.5 - parent: 2 - - uid: 31065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-73.5 - parent: 2 - - uid: 31066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-76.5 - parent: 2 - - uid: 31067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-77.5 - parent: 2 - - uid: 31068 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-77.5 - parent: 2 - - uid: 31069 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-77.5 - parent: 2 - - uid: 31070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-77.5 - parent: 2 - - uid: 31071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-77.5 - parent: 2 - - uid: 31072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-77.5 - parent: 2 - - uid: 31073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-76.5 - parent: 2 - - uid: 31074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-74.5 - parent: 2 - - uid: 31075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-75.5 - parent: 2 - - uid: 31076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-78.5 - parent: 2 - - uid: 31077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-79.5 - parent: 2 - - uid: 31079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-78.5 - parent: 2 - - uid: 31080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-78.5 - parent: 2 - - uid: 31081 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-79.5 - parent: 2 - - uid: 31082 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-77.5 - parent: 2 - - uid: 31083 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-78.5 - parent: 2 - - uid: 31084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-79.5 - parent: 2 - - uid: 31085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-27.5 - parent: 2 - - uid: 31086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-50.5 - parent: 2 - - uid: 31087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-50.5 - parent: 2 - - uid: 31088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-52.5 - parent: 2 - - uid: 31089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-53.5 - parent: 2 - - uid: 31090 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-52.5 - parent: 2 - - uid: 31091 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-53.5 - parent: 2 - - uid: 31092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-40.5 - parent: 2 - - uid: 31093 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-40.5 - parent: 2 - - uid: 31094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-40.5 - parent: 2 - - uid: 31095 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-40.5 - parent: 2 - - uid: 31096 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-42.5 - parent: 2 - - uid: 31097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,30.5 - parent: 2 - - uid: 31098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-41.5 - parent: 2 - - uid: 31099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-31.5 - parent: 2 - - uid: 31100 - components: - - type: Transform - pos: 78.5,-31.5 - parent: 2 - - uid: 31101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,30.5 - parent: 2 - - uid: 31103 - components: - - type: Transform - pos: 78.5,-33.5 - parent: 2 - - uid: 31105 - components: - - type: Transform - pos: 78.5,-34.5 - parent: 2 - - uid: 31111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-35.5 - parent: 2 - - uid: 31115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-35.5 - parent: 2 - - uid: 31116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-23.5 - parent: 2 - - uid: 31118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-32.5 - parent: 2 - - uid: 31119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-32.5 - parent: 2 - - uid: 31120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-23.5 - parent: 2 - - uid: 31121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,10.5 - parent: 2 - - uid: 31122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-25.5 - parent: 2 - - uid: 31124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-25.5 - parent: 2 - - uid: 31125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-25.5 - parent: 2 - - uid: 31126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-24.5 - parent: 2 - - uid: 31127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-23.5 - parent: 2 - - uid: 31128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,7.5 - parent: 2 - - uid: 31131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-29.5 - parent: 2 - - uid: 31132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-29.5 - parent: 2 - - uid: 31133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-30.5 - parent: 2 - - uid: 31134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,9.5 - parent: 2 - - uid: 31135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,15.5 - parent: 2 - - uid: 31139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 92.5,-29.5 - parent: 2 - - uid: 31140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 92.5,-30.5 - parent: 2 - - uid: 31141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,16.5 - parent: 2 - - uid: 31142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,15.5 - parent: 2 - - uid: 31143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-21.5 - parent: 2 - - uid: 31144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-21.5 - parent: 2 - - uid: 31145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-22.5 - parent: 2 - - uid: 31146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-23.5 - parent: 2 - - uid: 31147 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-23.5 - parent: 2 - - uid: 31148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-24.5 - parent: 2 - - uid: 31149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-23.5 - parent: 2 - - uid: 31150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-23.5 - parent: 2 - - uid: 31151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,8.5 - parent: 2 - - uid: 31154 - components: - - type: Transform - pos: 77.5,-22.5 - parent: 2 - - uid: 31156 - components: - - type: Transform - pos: 65.5,16.5 - parent: 2 - - uid: 31157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-17.5 - parent: 2 - - uid: 31158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-16.5 - parent: 2 - - uid: 31159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-16.5 - parent: 2 - - uid: 31160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-17.5 - parent: 2 - - uid: 31177 - components: - - type: Transform - pos: 64.5,17.5 - parent: 2 - - uid: 31178 - components: - - type: Transform - pos: 65.5,17.5 - parent: 2 - - uid: 31179 - components: - - type: Transform - pos: 64.5,18.5 - parent: 2 - - uid: 31180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-44.5 - parent: 2 - - uid: 31181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-45.5 - parent: 2 - - uid: 31182 - components: - - type: Transform - pos: 67.5,17.5 - parent: 2 - - uid: 31183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-46.5 - parent: 2 - - uid: 31184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-48.5 - parent: 2 - - uid: 31185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-48.5 - parent: 2 - - uid: 31186 - components: - - type: Transform - pos: 68.5,16.5 - parent: 2 - - uid: 31187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-48.5 - parent: 2 - - uid: 31188 - components: - - type: Transform - pos: 69.5,18.5 - parent: 2 - - uid: 31189 - components: - - type: Transform - pos: 68.5,18.5 - parent: 2 - - uid: 31190 - components: - - type: Transform - pos: 58.5,-47.5 - parent: 2 - - uid: 31191 - components: - - type: Transform - pos: 58.5,-47.5 - parent: 2 - - uid: 31192 - components: - - type: Transform - pos: 58.5,-45.5 - parent: 2 - - uid: 31193 - components: - - type: Transform - pos: 59.5,-45.5 - parent: 2 - - uid: 31194 - components: - - type: Transform - pos: 58.5,-45.5 - parent: 2 - - uid: 31197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-51.5 - parent: 2 - - uid: 31198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-51.5 - parent: 2 - - uid: 31199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-51.5 - parent: 2 - - uid: 31200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-50.5 - parent: 2 - - uid: 31203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-52.5 - parent: 2 - - uid: 31204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-50.5 - parent: 2 - - uid: 31205 - components: - - type: Transform - pos: 62.5,-46.5 - parent: 2 - - uid: 31206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,17.5 - parent: 2 - - uid: 31207 - components: - - type: Transform - pos: 62.5,-47.5 - parent: 2 - - uid: 31208 - components: - - type: Transform - pos: 62.5,-48.5 - parent: 2 - - uid: 31209 - components: - - type: Transform - pos: 62.5,-48.5 - parent: 2 - - uid: 31210 - components: - - type: Transform - pos: 63.5,-47.5 - parent: 2 - - uid: 31211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,17.5 - parent: 2 - - uid: 31212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-44.5 - parent: 2 - - uid: 31213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,16.5 - parent: 2 - - uid: 31214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-43.5 - parent: 2 - - uid: 31215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,17.5 - parent: 2 - - uid: 31216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-44.5 - parent: 2 - - uid: 31217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-45.5 - parent: 2 - - uid: 31218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-44.5 - parent: 2 - - uid: 31219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-47.5 - parent: 2 - - uid: 31220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-47.5 - parent: 2 - - uid: 31221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-49.5 - parent: 2 - - uid: 31222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-49.5 - parent: 2 - - uid: 31223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-48.5 - parent: 2 - - uid: 31224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-45.5 - parent: 2 - - uid: 31225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-44.5 - parent: 2 - - uid: 31226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-45.5 - parent: 2 - - uid: 31227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-46.5 - parent: 2 - - uid: 31228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-48.5 - parent: 2 - - uid: 31229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-48.5 - parent: 2 - - uid: 31230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-52.5 - parent: 2 - - uid: 31231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-52.5 - parent: 2 - - uid: 31232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-52.5 - parent: 2 - - uid: 31233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-53.5 - parent: 2 - - uid: 31234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-53.5 - parent: 2 - - uid: 31235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-52.5 - parent: 2 - - uid: 31236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-54.5 - parent: 2 - - uid: 31237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-55.5 - parent: 2 - - uid: 31238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-54.5 - parent: 2 - - uid: 31239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-54.5 - parent: 2 - - uid: 31240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-54.5 - parent: 2 - - uid: 31241 - components: - - type: Transform - pos: 60.5,-54.5 - parent: 2 - - uid: 31242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-47.5 - parent: 2 - - uid: 31246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-56.5 - parent: 2 - - uid: 31247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-53.5 - parent: 2 - - uid: 31248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-54.5 - parent: 2 - - uid: 31249 - components: - - type: Transform - pos: -26.5,-55.5 - parent: 2 - - uid: 31250 - components: - - type: Transform - pos: -26.5,-54.5 - parent: 2 - - uid: 31251 - components: - - type: Transform - pos: -28.5,-56.5 - parent: 2 - - uid: 31252 - components: - - type: Transform - pos: -29.5,-57.5 - parent: 2 - - uid: 31253 - components: - - type: Transform - pos: -28.5,-57.5 - parent: 2 - - uid: 31254 - components: - - type: Transform - pos: -27.5,-58.5 - parent: 2 - - uid: 31255 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 2 - - uid: 31256 - components: - - type: Transform - pos: -28.5,-55.5 - parent: 2 - - uid: 31257 - components: - - type: Transform - pos: -27.5,-52.5 - parent: 2 - - uid: 31258 - components: - - type: Transform - pos: -28.5,-50.5 - parent: 2 - - uid: 31259 - components: - - type: Transform - pos: -29.5,-50.5 - parent: 2 - - uid: 31260 - components: - - type: Transform - pos: -27.5,-51.5 - parent: 2 - - uid: 31261 - components: - - type: Transform - pos: -29.5,-49.5 - parent: 2 - - uid: 31262 - components: - - type: Transform - pos: -29.5,-51.5 - parent: 2 - - uid: 31263 - components: - - type: Transform - pos: -29.5,-51.5 - parent: 2 - - uid: 31264 - components: - - type: Transform - pos: -29.5,-52.5 - parent: 2 - - uid: 31265 - components: - - type: Transform - pos: -27.5,-50.5 - parent: 2 - - uid: 31266 - components: - - type: Transform - pos: -27.5,-49.5 - parent: 2 - - uid: 31267 - components: - - type: Transform - pos: -27.5,-51.5 - parent: 2 - - uid: 31268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-51.5 - parent: 2 - - uid: 31269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-50.5 - parent: 2 - - uid: 31270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-52.5 - parent: 2 - - uid: 31271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-52.5 - parent: 2 - - uid: 31272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-51.5 - parent: 2 - - uid: 31273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-51.5 - parent: 2 - - uid: 31274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-52.5 - parent: 2 - - uid: 31275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-54.5 - parent: 2 - - uid: 31276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-55.5 - parent: 2 - - uid: 31277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-56.5 - parent: 2 - - uid: 31278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-57.5 - parent: 2 - - uid: 31279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-56.5 - parent: 2 - - uid: 31280 - components: - - type: Transform - pos: -21.5,-56.5 - parent: 2 - - uid: 31281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-43.5 - parent: 2 - - uid: 31282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-43.5 - parent: 2 - - uid: 31283 - components: - - type: Transform - pos: -31.5,-45.5 - parent: 2 - - uid: 31284 - components: - - type: Transform - pos: -32.5,-45.5 - parent: 2 - - uid: 31285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-45.5 - parent: 2 - - uid: 31286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-45.5 - parent: 2 - - uid: 31287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-46.5 - parent: 2 - - uid: 31288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-46.5 - parent: 2 - - uid: 31289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-35.5 - parent: 2 - - uid: 31290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-34.5 - parent: 2 - - uid: 31291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-27.5 - parent: 2 - - uid: 31292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-26.5 - parent: 2 - - uid: 31569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-73.5 - parent: 2 - - uid: 31570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-72.5 - parent: 2 - - uid: 31571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-72.5 - parent: 2 - - uid: 31572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-73.5 - parent: 2 - - uid: 31573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-72.5 - parent: 2 - - uid: 31574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-70.5 - parent: 2 - - uid: 31575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-71.5 - parent: 2 - - uid: 31576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-70.5 - parent: 2 - - uid: 31577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-71.5 - parent: 2 - - uid: 31578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-70.5 - parent: 2 - - uid: 31580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-68.5 - parent: 2 - - uid: 31581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-69.5 - parent: 2 - - uid: 31582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-70.5 - parent: 2 - - uid: 31583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-69.5 - parent: 2 - - uid: 31584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-69.5 - parent: 2 - - uid: 31585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-70.5 - parent: 2 - - uid: 31586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-70.5 - parent: 2 - - uid: 31587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-73.5 - parent: 2 - - uid: 31588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-72.5 - parent: 2 - - uid: 31589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-73.5 - parent: 2 - - uid: 31590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-71.5 - parent: 2 - - uid: 31591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-72.5 - parent: 2 - - uid: 31592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-78.5 - parent: 2 - - uid: 31593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-77.5 - parent: 2 - - uid: 31594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-78.5 - parent: 2 - - uid: 31595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-78.5 - parent: 2 - - uid: 31596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-79.5 - parent: 2 - - uid: 31597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-78.5 - parent: 2 - - uid: 31598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-79.5 - parent: 2 - - uid: 31599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-79.5 - parent: 2 - - uid: 31600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-77.5 - parent: 2 - - uid: 31601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-77.5 - parent: 2 - - uid: 31602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-79.5 - parent: 2 - - uid: 31603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-78.5 - parent: 2 - - uid: 31604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-79.5 - parent: 2 - - uid: 31605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-79.5 - parent: 2 - - uid: 31606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-78.5 - parent: 2 - - uid: 31607 - components: - - type: Transform - pos: 57.5,-78.5 - parent: 2 - - uid: 31608 - components: - - type: Transform - pos: 59.5,-78.5 - parent: 2 - - uid: 31609 - components: - - type: Transform - pos: 59.5,-77.5 - parent: 2 - - uid: 31610 - components: - - type: Transform - pos: 58.5,-80.5 - parent: 2 - - uid: 31611 - components: - - type: Transform - pos: 57.5,-80.5 - parent: 2 - - uid: 31612 - components: - - type: Transform - pos: 59.5,-80.5 - parent: 2 - - uid: 31613 - components: - - type: Transform - pos: 59.5,-81.5 - parent: 2 - - uid: 31614 - components: - - type: Transform - pos: 58.5,-81.5 - parent: 2 - - uid: 31615 - components: - - type: Transform - pos: 57.5,-81.5 - parent: 2 - - uid: 31616 - components: - - type: Transform - pos: 58.5,-80.5 - parent: 2 - - uid: 31617 - components: - - type: Transform - pos: 58.5,-81.5 - parent: 2 - - uid: 31618 - components: - - type: Transform - pos: 59.5,-81.5 - parent: 2 - - uid: 31619 - components: - - type: Transform - pos: 59.5,-80.5 - parent: 2 - - uid: 31620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-80.5 - parent: 2 - - uid: 31621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-80.5 - parent: 2 - - uid: 31622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-79.5 - parent: 2 - - uid: 31633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-80.5 - parent: 2 - - uid: 31634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-81.5 - parent: 2 - - uid: 31923 - components: - - type: Transform - pos: -48.5,-20.5 - parent: 2 - - uid: 31936 - components: - - type: Transform - pos: -61.5,-9.5 - parent: 2 - - uid: 31937 - components: - - type: Transform - pos: -57.5,-15.5 - parent: 2 - - uid: 31938 - components: - - type: Transform - pos: -57.5,-16.5 - parent: 2 - - uid: 31939 - components: - - type: Transform - pos: -56.5,-18.5 - parent: 2 - - uid: 31940 - components: - - type: Transform - pos: -58.5,-20.5 - parent: 2 - - uid: 31941 - components: - - type: Transform - pos: -45.5,-8.5 - parent: 2 - - uid: 31942 - components: - - type: Transform - pos: -45.5,-7.5 - parent: 2 - - uid: 31943 - components: - - type: Transform - pos: -45.5,-14.5 - parent: 2 - - uid: 31944 - components: - - type: Transform - pos: -51.5,-10.5 - parent: 2 - - uid: 31945 - components: - - type: Transform - pos: -51.5,-14.5 - parent: 2 - - uid: 31946 - components: - - type: Transform - pos: -53.5,-18.5 - parent: 2 - - uid: 31947 - components: - - type: Transform - pos: -48.5,-21.5 - parent: 2 - - uid: 31948 - components: - - type: Transform - pos: -48.5,-22.5 - parent: 2 - - uid: 31949 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-21.5 - parent: 2 - - uid: 31950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-20.5 - parent: 2 - - uid: 31951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-29.5 - parent: 2 - - uid: 31952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-27.5 - parent: 2 - - uid: 31953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-28.5 - parent: 2 - - uid: 31954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-27.5 - parent: 2 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 23315 - components: - - type: Transform - pos: -49.700584,-7.3589315 - parent: 2 - - uid: 23316 - components: - - type: Transform - pos: -49.700584,-7.3589315 - parent: 2 - - uid: 23317 - components: - - type: Transform - pos: -34.47067,-4.5023966 - parent: 2 - - uid: 23318 - components: - - type: Transform - pos: -34.25192,-4.6898966 - parent: 2 - - uid: 23319 - components: - - type: Transform - pos: -34.68942,-4.3773966 - parent: 2 - - uid: 23320 - components: - - type: Transform - rot: 0.00031763542210683227 rad - pos: 22.734983,-27.003876 - parent: 2 - - uid: 23321 - components: - - type: Transform - pos: -49.700584,-7.3589315 - parent: 2 -- proto: SprayBottleWater - entities: - - uid: 23325 - components: - - type: Transform - pos: 24.48325,-36.395668 - parent: 2 -- proto: SprayPaintBlack - entities: - - uid: 21620 - components: - - type: Transform - pos: -32.155525,-6.3433743 - parent: 2 - - uid: 23933 - components: - - type: Transform - pos: -32.155525,-6.3433743 - parent: 2 -- proto: SprayPaintBlue - entities: - - uid: 131 - components: - - type: Transform - pos: -32.57219,-6.3433743 - parent: 2 - - uid: 20585 - components: - - type: Transform - pos: -32.57219,-6.3433743 - parent: 2 -- proto: SprayPaintGreen - entities: - - uid: 10543 - components: - - type: Transform - pos: -33.469723,-6.3433743 - parent: 2 - - uid: 10544 - components: - - type: Transform - pos: -33.469723,-6.3433743 - parent: 2 -- proto: SprayPaintOrange - entities: - - uid: 8508 - components: - - type: Transform - pos: -32.803673,-6.3433743 - parent: 2 - - uid: 9400 - components: - - type: Transform - pos: -32.803673,-6.3433743 - parent: 2 - - uid: 23419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.361286,-9.616046 - parent: 2 -- proto: SprayPaintPurple - entities: - - uid: 24682 - components: - - type: Transform - pos: -32.36849,-6.3433743 - parent: 2 - - uid: 25238 - components: - - type: Transform - pos: -32.36849,-6.3433743 - parent: 2 -- proto: SprayPaintRed - entities: - - uid: 865 - components: - - type: Transform - pos: -33.044415,-6.3433743 - parent: 2 - - uid: 24507 - components: - - type: Transform - pos: -33.044415,-6.3433743 - parent: 2 -- proto: SprayPaintWhite - entities: - - uid: 10575 - components: - - type: Transform - pos: -33.26602,-6.3433743 - parent: 2 - - uid: 20142 - components: - - type: Transform - pos: -33.26602,-6.3433743 - parent: 2 -- proto: StairDark - entities: - - uid: 6381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-9.5 - parent: 2 - - uid: 6539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-11.5 - parent: 2 - - uid: 20391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-1.5 - parent: 2 - - uid: 23326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-3.5 - parent: 2 -- proto: StairStageDark - entities: - - uid: 1369 - components: - - type: Transform - pos: 18.5,37.5 - parent: 2 - - uid: 8164 - components: - - type: Transform - pos: -32.5,8.5 - parent: 2 - - uid: 8165 - components: - - type: Transform - pos: -28.5,8.5 - parent: 2 - - uid: 13294 - components: - - type: Transform - pos: 12.5,37.5 - parent: 2 -- proto: StairStageWhite - entities: - - uid: 9072 - components: - - type: Transform - pos: 70.5,-39.5 - parent: 2 - - uid: 16273 - components: - - type: Transform - pos: 74.5,-39.5 - parent: 2 -- proto: StairStageWood - entities: - - uid: 228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,2.5 - parent: 2 - - uid: 457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 2 - - uid: 774 - components: - - type: Transform - pos: 61.5,-69.5 - parent: 2 - - uid: 863 - components: - - type: Transform - pos: 55.5,-69.5 - parent: 2 - - uid: 23333 - components: - - type: Transform - pos: 75.5,-3.5 - parent: 2 - - uid: 23334 - components: - - type: Transform - pos: 71.5,-3.5 - parent: 2 - - uid: 29756 - components: - - type: Transform - pos: -30.5,-27.5 - parent: 2 - - uid: 30411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,25.5 - parent: 2 - - uid: 30413 - components: - - type: Transform - pos: -30.5,21.5 - parent: 2 -- proto: StairWood - entities: - - uid: 23335 - components: - - type: Transform - pos: 29.5,17.5 - parent: 2 - - uid: 23336 - components: - - type: Transform - pos: 36.5,17.5 - parent: 2 - - uid: 23337 - components: - - type: Transform - pos: 36.5,13.5 - parent: 2 - - uid: 23338 - components: - - type: Transform - pos: 32.5,16.5 - parent: 2 - - uid: 23339 - components: - - type: Transform - pos: 29.5,13.5 - parent: 2 - - uid: 23340 - components: - - type: Transform - pos: 30.5,13.5 - parent: 2 - - uid: 23341 - components: - - type: Transform - pos: 37.5,13.5 - parent: 2 - - uid: 23342 - components: - - type: Transform - pos: 34.5,16.5 - parent: 2 - - uid: 23343 - components: - - type: Transform - pos: 37.5,17.5 - parent: 2 - - uid: 23344 - components: - - type: Transform - pos: 30.5,17.5 - parent: 2 - - uid: 23345 - components: - - type: Transform - pos: 33.5,16.5 - parent: 2 - - uid: 30790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,27.5 - parent: 2 - - uid: 30792 - components: - - type: Transform - pos: 63.5,26.5 - parent: 2 - - uid: 30802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,21.5 - parent: 2 - - uid: 30804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,22.5 - parent: 2 -- proto: StasisBed - entities: - - uid: 14810 - components: - - type: Transform - pos: -11.5,30.5 - parent: 2 - - uid: 23347 - components: - - type: Transform - pos: 44.5,-22.5 - parent: 2 - - uid: 23348 - components: - - type: Transform - pos: 32.5,-30.5 - parent: 2 - - uid: 23349 - components: - - type: Transform - pos: 34.5,-36.5 - parent: 2 -- proto: StationAiUploadComputer - entities: - - uid: 8152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,5.5 - parent: 2 - - uid: 8221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,5.5 - parent: 2 -- proto: StationAnchor - entities: - - uid: 23532 - components: - - type: Transform - pos: -15.5,-80.5 - parent: 2 -- proto: StationEfficiencyCircuitBoard - entities: - - uid: 19509 - components: - - type: Transform - parent: 19293 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: StationMap - entities: - - uid: 23351 - components: - - type: Transform - pos: 69.5,-11.5 - parent: 2 - - uid: 23352 - components: - - type: Transform - pos: -51.5,0.5 - parent: 2 - - uid: 23353 - components: - - type: Transform - pos: -66.5,-2.5 - parent: 2 - - uid: 23354 - components: - - type: Transform - pos: 15.5,0.5 - parent: 2 - - uid: 23355 - components: - - type: Transform - pos: 29.5,-11.5 - parent: 2 - - uid: 23356 - components: - - type: Transform - pos: -11.5,-32.5 - parent: 2 - - uid: 23357 - components: - - type: Transform - pos: 13.5,-32.5 - parent: 2 -- proto: StationMapAssembly - entities: - - uid: 30349 - components: - - type: Transform - pos: -33.5,29.5 - parent: 2 -- proto: StatueBananiumClown - entities: - - uid: 23267 - components: - - type: MetaData - name: статуя начальнимана Одлера - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-11.5 - parent: 2 -- proto: SteelBench - entities: - - uid: 1304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,6.5 - parent: 2 - - uid: 1305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,7.5 - parent: 2 - - uid: 2653 - components: - - type: Transform - pos: -10.5,8.5 - parent: 2 - - uid: 2654 - components: - - type: Transform - pos: -9.5,8.5 - parent: 2 - - uid: 8129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,1.5 - parent: 2 - - uid: 8191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,2.5 - parent: 2 - - uid: 8192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 2 - - uid: 9765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,5.5 - parent: 2 - - uid: 9809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,6.5 - parent: 2 - - uid: 10126 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,3.5 - parent: 2 - - uid: 10132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,3.5 - parent: 2 - - uid: 10133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,4.5 - parent: 2 - - uid: 12287 - components: - - type: Transform - pos: -9.5,10.5 - parent: 2 - - uid: 12289 - components: - - type: Transform - pos: -10.5,10.5 - parent: 2 - - uid: 23358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,9.5 - parent: 2 - - uid: 23359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,9.5 - parent: 2 - - uid: 23360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-9.5 - parent: 2 - - uid: 23361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-12.5 - parent: 2 - - uid: 23362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-8.5 - parent: 2 - - uid: 23363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-12.5 - parent: 2 - - uid: 23364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-8.5 - parent: 2 - - uid: 23365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-12.5 - parent: 2 - - uid: 23366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-8.5 - parent: 2 - - uid: 23367 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-12.5 - parent: 2 - - uid: 23368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,3.5 - parent: 2 - - uid: 23369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-11.5 - parent: 2 - - uid: 23370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,23.5 - parent: 2 - - uid: 23371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,23.5 - parent: 2 - - uid: 23372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,24.5 - parent: 2 - - uid: 23373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,10.5 - parent: 2 - - uid: 23374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,9.5 - parent: 2 - - uid: 23375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,11.5 - parent: 2 - - uid: 23376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,10.5 - parent: 2 - - uid: 23377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,10.5 - parent: 2 - - uid: 23378 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,11.5 - parent: 2 - - uid: 23379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,11.5 - parent: 2 - - uid: 23380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,2.5 - parent: 2 - - uid: 23381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-9.5 - parent: 2 - - uid: 23382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-9.5 - parent: 2 - - uid: 23383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-10.5 - parent: 2 - - uid: 23384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,4.5 - parent: 2 - - uid: 23385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,2.5 - parent: 2 - - uid: 23386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,3.5 - parent: 2 - - uid: 23387 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,4.5 - parent: 2 - - uid: 23388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-10.5 - parent: 2 - - uid: 23389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-11.5 - parent: 2 - - uid: 23390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-8.5 - parent: 2 - - uid: 23391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-11.5 - parent: 2 - - uid: 23392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-10.5 - parent: 2 - - uid: 23393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-11.5 - parent: 2 - - uid: 23394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,9.5 - parent: 2 - - uid: 23395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,11.5 - parent: 2 - - uid: 23396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,10.5 - parent: 2 - - uid: 23397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,10.5 - parent: 2 - - uid: 23398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,10.5 - parent: 2 - - uid: 23399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,9.5 - parent: 2 - - uid: 23400 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,9.5 - parent: 2 - - uid: 23401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-9.5 - parent: 2 - - uid: 23402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-10.5 - parent: 2 - - uid: 23403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,11.5 - parent: 2 - - uid: 23404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,11.5 - parent: 2 - - uid: 23499 - components: - - type: Transform - pos: -9.5,9.5 - parent: 2 - - uid: 23500 - components: - - type: Transform - pos: -10.5,9.5 - parent: 2 - - uid: 27451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,2.5 - parent: 2 - - uid: 29179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,26.5 - parent: 2 -- proto: SteelcapSeeds - entities: - - uid: 1266 - components: - - type: Transform - pos: -29.469854,-64.430534 - parent: 2 - - uid: 29967 - components: - - type: Transform - pos: -29.469854,-64.368034 - parent: 2 - - uid: 30308 - components: - - type: Transform - pos: -29.469854,-64.53991 - parent: 2 - - uid: 30310 - components: - - type: Transform - pos: -29.469854,-64.47741 - parent: 2 - - uid: 30319 - components: - - type: Transform - pos: -29.469854,-64.53991 - parent: 2 - - uid: 30320 - components: - - type: Transform - pos: -29.469854,-64.555534 - parent: 2 -- proto: Stool - entities: - - uid: 23406 - components: - - type: Transform - pos: -57.5,16.5 - parent: 2 - - uid: 23407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,6.5 - parent: 2 - - uid: 23408 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-32.5 - parent: 2 - - uid: 23409 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-33.5 - parent: 2 - - uid: 23410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-49.5 - parent: 2 - - uid: 23418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,12.5 - parent: 2 - - uid: 23422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,9.5 - parent: 2 - - uid: 23426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-19.5 - parent: 2 - - uid: 23427 - components: - - type: Transform - pos: -41.5,2.5 - parent: 2 - - uid: 23432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-36.5 - parent: 2 - - uid: 23433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-39.5 - parent: 2 - - uid: 23434 - components: - - type: Transform - pos: 47.5,-9.5 - parent: 2 - - uid: 23435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-34.5 - parent: 2 - - uid: 23436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-45.5 - parent: 2 - - uid: 23439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.505064,6.4863653 - parent: 2 - - uid: 23440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,47.5 - parent: 2 - - uid: 23441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-76.5 - parent: 2 - - uid: 23442 - components: - - type: Transform - pos: 44.459972,-28.256899 - parent: 2 - - uid: 31333 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,27.5 - parent: 2 - - uid: 31488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-73.5 - parent: 2 - - uid: 31489 - components: - - type: Transform - pos: 63.5,-71.5 - parent: 2 - - uid: 31490 - components: - - type: Transform - pos: 62.5,-71.5 - parent: 2 - - uid: 31491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-72.5 - parent: 2 - - uid: 31492 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-73.5 - parent: 2 - - uid: 31495 - components: - - type: Transform - pos: 53.5,-71.5 - parent: 2 - - uid: 31496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-73.5 - parent: 2 -- proto: StoolBar - entities: - - uid: 23451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-3.5 - parent: 2 - - uid: 23452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-3.5 - parent: 2 - - uid: 23454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,48.5 - parent: 2 - - uid: 23455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,48.5 - parent: 2 - - uid: 23457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-3.5 - parent: 2 - - uid: 23458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,22.5 - parent: 2 - - uid: 23459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-3.5 - parent: 2 - - uid: 23460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-3.5 - parent: 2 - - uid: 30530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,28.5 - parent: 2 - - uid: 30531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,28.5 - parent: 2 - - uid: 30532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,28.5 - parent: 2 -- proto: StorageCanister - entities: - - uid: 1217 - components: - - type: Transform - pos: 26.5,-62.5 - parent: 2 - - uid: 7542 - components: - - type: Transform - pos: 83.5,-23.5 - parent: 2 - - uid: 9467 - components: - - type: Transform - pos: 76.5,-46.5 - parent: 2 - - uid: 9468 - components: - - type: Transform - pos: 76.5,-47.5 - parent: 2 - - uid: 9471 - components: - - type: Transform - pos: 75.5,-46.5 - parent: 2 - - uid: 9472 - components: - - type: Transform - pos: 75.5,-47.5 - parent: 2 - - uid: 17442 - components: - - type: Transform - pos: 9.5,-43.5 - parent: 2 - - uid: 17443 - components: - - type: Transform - pos: 10.5,-43.5 - parent: 2 - - uid: 17446 - components: - - type: Transform - pos: 11.5,-43.5 - parent: 2 - - uid: 19240 - components: - - type: Transform - pos: 11.5,-78.5 - parent: 2 - - uid: 20641 - components: - - type: Transform - pos: 11.5,-53.5 - parent: 2 - - uid: 28727 - components: - - type: Transform - pos: 10.5,-85.5 - parent: 2 - - uid: 28765 - components: - - type: Transform - pos: 10.5,-84.5 - parent: 2 - - uid: 28802 - components: - - type: Transform - pos: 10.5,-83.5 - parent: 2 - - uid: 30108 - components: - - type: Transform - pos: 27.5,38.5 - parent: 2 -- proto: StorageCanisterBase - entities: - - uid: 12230 - components: - - type: Transform - pos: 52.5,17.5 - parent: 2 - - uid: 32103 - components: - - type: Transform - pos: 53.5,17.5 - parent: 2 -- proto: StrangePill - entities: - - uid: 11617 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11618 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11619 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11620 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11621 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11622 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11623 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11624 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11625 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11626 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11627 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11628 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11629 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11630 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11631 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11632 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11633 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11634 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11635 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11636 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11637 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11638 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11639 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11640 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11641 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11642 - components: - - type: Transform - parent: 23445 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23472 - components: - - type: Transform - pos: -11.396675,31.44482 - parent: 2 -- proto: Stunbaton - entities: - - uid: 28947 - components: - - type: Transform - pos: 1.3220818,35.50273 - parent: 2 - - type: CMExplosionEffect - - uid: 29017 - components: - - type: Transform - pos: 1.5564568,35.50273 - parent: 2 - - type: CMExplosionEffect -- proto: SubstationBasic - entities: - - uid: 24201 - components: - - type: Transform - pos: -24.5,-71.5 - parent: 2 - - type: CMExplosionEffect -- proto: SubstationExtended - entities: - - uid: 3527 - components: - - type: Transform - pos: 27.5,29.5 - parent: 2 - - type: CMExplosionEffect - - uid: 8582 - components: - - type: Transform - pos: -14.5,-78.5 - parent: 2 - - type: CMExplosionEffect - - uid: 10408 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 2 - - type: CMExplosionEffect - - uid: 23473 - components: - - type: MetaData - name: Cargo Substation - - type: Transform - pos: -21.5,-35.5 - parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 60.000237 - currentSupply: 60.000237 - supplyRampPosition: 60.000237 - - type: CMExplosionEffect - - uid: 23474 - components: - - type: MetaData - name: Science Substation - - type: Transform - pos: 85.5,-44.5 - parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 260.0401 - currentSupply: 260.0401 - supplyRampPosition: 260.0401 - - type: CMExplosionEffect - - uid: 23475 - components: - - type: MetaData - name: Command Substation - - type: Transform - pos: -10.5,-19.5 - parent: 2 - - type: CMExplosionEffect - - uid: 23476 - components: - - type: MetaData - name: Starboard Bow Service Substation - - type: Transform - pos: 43.5,7.5 - parent: 2 - - type: CMExplosionEffect - - uid: 23477 - components: - - type: MetaData - name: Port Quarter Maintenance Substation - - type: Transform - pos: -28.5,-64.5 - parent: 2 - - type: CMExplosionEffect - - uid: 23479 - components: - - type: MetaData - name: Port Bow Service Substation - - type: Transform - pos: -44.5,9.5 - parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 19.980549 - currentSupply: 19.980549 - supplyRampPosition: 19.980549 - - type: CMExplosionEffect - - uid: 23480 - components: - - type: MetaData - name: Engineering Substation - - type: Transform - pos: -20.5,-66.5 - parent: 2 - - type: CMExplosionEffect - - uid: 23481 - components: - - type: MetaData - name: Telecomms Substation - - type: Transform - pos: -7.5,-49.5 - parent: 2 - - type: CMExplosionEffect - - uid: 23482 - components: - - type: MetaData - name: Medbay Substation - - type: Transform - pos: 46.5,-38.5 - parent: 2 - - type: Battery - startingCharge: 2421964.2 - - type: PowerNetworkBattery - loadingNetworkDemand: 225.0009 - currentSupply: 225.0009 - supplyRampPosition: 225.0009 - - type: CMExplosionEffect - - uid: 23484 - components: - - type: MetaData - name: Perma Substation - - type: Transform - pos: -20.5,51.5 - parent: 2 - - type: CMExplosionEffect - - uid: 25316 - components: - - type: Transform - pos: 9.5,-78.5 - parent: 2 - - type: CMExplosionEffect -- proto: SubstationMachineCircuitboard - entities: - - uid: 23488 - components: - - type: Transform - pos: -67.42753,12.306509 - parent: 2 -- proto: SuitStorageBlueShield - entities: - - uid: 19462 - components: - - type: Transform - pos: -10.5,-16.5 - parent: 2 -- proto: SuitStorageCaptain - entities: - - uid: 23490 - components: - - type: Transform - pos: 6.5,-25.5 - parent: 2 -- proto: SuitStorageCE - entities: - - uid: 23539 - components: - - type: Transform - pos: 9.5,-65.5 - parent: 2 -- proto: SuitStorageEngi - entities: - - uid: 12543 - components: - - type: Transform - pos: 5.5,-63.5 - parent: 2 - - uid: 12544 - components: - - type: Transform - pos: 6.5,-63.5 - parent: 2 - - uid: 24110 - components: - - type: Transform - pos: 7.5,-63.5 - parent: 2 -- proto: SuitStorageEVA - entities: - - uid: 23497 - components: - - type: Transform - pos: -19.5,6.5 - parent: 2 - - uid: 23501 - components: - - type: Transform - pos: -22.5,8.5 - parent: 2 - - uid: 23503 - components: - - type: Transform - pos: -19.5,4.5 - parent: 2 - - uid: 23504 - components: - - type: Transform - pos: -19.5,5.5 - parent: 2 - - uid: 23505 - components: - - type: Transform - pos: -23.5,6.5 - parent: 2 - - uid: 23506 - components: - - type: Transform - pos: -20.5,8.5 - parent: 2 - - uid: 23507 - components: - - type: Transform - pos: -23.5,7.5 - parent: 2 - - uid: 23508 - components: - - type: Transform - pos: -23.5,4.5 - parent: 2 - - uid: 23509 - components: - - type: Transform - pos: -23.5,5.5 - parent: 2 - - uid: 23510 - components: - - type: Transform - pos: -19.5,7.5 - parent: 2 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 30504 - components: - - type: Transform - pos: -10.5,35.5 - parent: 2 - - uid: 30505 - components: - - type: Transform - pos: -11.5,35.5 - parent: 2 -- proto: SuitStorageHOS - entities: - - uid: 23513 - components: - - type: Transform - pos: 18.5,44.5 - parent: 2 -- proto: SuitStorageRD - entities: - - uid: 13526 - components: - - type: Transform - pos: 63.5,-35.5 - parent: 2 -- proto: SuitStorageSalv - entities: - - uid: 894 - components: - - type: Transform - pos: -31.5,-38.5 - parent: 2 - - uid: 3588 - components: - - type: Transform - pos: -32.5,-38.5 - parent: 2 - - uid: 3925 - components: - - type: Transform - pos: -33.5,-38.5 - parent: 2 - - uid: 10849 - components: - - type: Transform - pos: -34.5,-38.5 - parent: 2 -- proto: SuitStorageSec - entities: - - uid: 1280 - components: - - type: Transform - pos: 2.5,42.5 - parent: 2 - - uid: 1620 - components: - - type: Transform - pos: 4.5,42.5 - parent: 2 - - uid: 1862 - components: - - type: Transform - pos: 4.5,41.5 - parent: 2 - - uid: 2017 - components: - - type: Transform - pos: 4.5,43.5 - parent: 2 - - uid: 14070 - components: - - type: Transform - pos: 2.5,41.5 - parent: 2 - - uid: 17124 - components: - - type: Transform - pos: 2.5,43.5 - parent: 2 - - uid: 17128 - components: - - type: Transform - pos: 4.5,40.5 - parent: 2 -- proto: SuitStorageWarden - entities: - - uid: 13833 - components: - - type: Transform - pos: 3.5,30.5 - parent: 2 -- proto: SupermatterCrystal - entities: - - uid: 9493 - components: - - type: Transform - pos: 18.5,-87.5 - parent: 2 - - type: CMExplosionEffect -- proto: SurveillanceCameraCommand - entities: - - uid: 8393 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 2 - - uid: 11467 - components: - - type: Transform - pos: -2.5,-19.5 - parent: 2 - - uid: 15892 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 2 - - uid: 18872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,7.5 - parent: 2 - - uid: 21478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,3.5 - parent: 2 - - uid: 21481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,7.5 - parent: 2 - - uid: 21483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 2 - - uid: 23485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 2 - - uid: 23526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-37.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: High Sec Circuitry - - uid: 23531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-22.5 - parent: 2 - - uid: 23533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-11.5 - parent: 2 - - uid: 23541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-13.5 - parent: 2 - - uid: 24802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-25.5 - parent: 2 - - uid: 24831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-21.5 - parent: 2 - - uid: 26532 - components: - - type: Transform - pos: -18.5,1.5 - parent: 2 - - uid: 29915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 2 -- proto: SurveillanceCameraEngineering - entities: - - uid: 5524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-76.5 - parent: 2 - - uid: 14408 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-80.5 - parent: 2 - - uid: 18586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-80.5 - parent: 2 - - uid: 19226 - components: - - type: Transform - pos: -72.5,12.5 - parent: 2 - - uid: 20193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-49.5 - parent: 2 - - uid: 21551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,15.5 - parent: 2 - - uid: 21891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-48.5 - parent: 2 - - uid: 21892 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 2 - - uid: 21924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-42.5 - parent: 2 - - uid: 21932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-43.5 - parent: 2 - - uid: 21933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-60.5 - parent: 2 - - uid: 21947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-72.5 - parent: 2 - - uid: 23578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-37.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Circuitry - - uid: 23579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-54.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Lobby - - uid: 23582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-54.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms - - uid: 23586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-54.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Break Room - - uid: 23587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-76.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Particle Accelerator - - uid: 23589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-72.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Entrance - - uid: 23590 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-66.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Soft Play Area - - uid: 24652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-64.5 - parent: 2 - - uid: 24654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-62.5 - parent: 2 - - uid: 24669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-72.5 - parent: 2 - - uid: 24676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-75.5 - parent: 2 - - uid: 24686 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-78.5 - parent: 2 - - uid: 24688 - components: - - type: Transform - pos: -24.5,-71.5 - parent: 2 - - uid: 24793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-64.5 - parent: 2 - - uid: 24796 - components: - - type: Transform - pos: -20.5,-70.5 - parent: 2 - - uid: 25090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-90.5 - parent: 2 - - uid: 25748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-66.5 - parent: 2 - - uid: 25751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-75.5 - parent: 2 - - uid: 25915 - components: - - type: Transform - pos: -5.5,-57.5 - parent: 2 - - uid: 27444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-89.5 - parent: 2 - - uid: 27651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-82.5 - parent: 2 - - uid: 27740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-84.5 - parent: 2 - - uid: 27754 - components: - - type: Transform - pos: 18.5,-92.5 - parent: 2 - - uid: 30094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-54.5 - parent: 2 - - uid: 30095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-56.5 - parent: 2 - - uid: 30096 - components: - - type: Transform - pos: 20.5,-68.5 - parent: 2 -- proto: SurveillanceCameraGeneral - entities: - - uid: 376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,21.5 - parent: 2 - - uid: 912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,13.5 - parent: 2 - - uid: 915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,4.5 - parent: 2 - - uid: 1794 - components: - - type: Transform - pos: 25.5,17.5 - parent: 2 - - uid: 3466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 2 - - uid: 10134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,8.5 - parent: 2 - - uid: 10135 - components: - - type: Transform - pos: -15.5,-31.5 - parent: 2 - - uid: 11142 - components: - - type: Transform - pos: -2.5,9.5 - parent: 2 - - uid: 15905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 2 - - uid: 18042 - components: - - type: Transform - pos: 17.5,8.5 - parent: 2 - - uid: 19225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-14.5 - parent: 2 - - uid: 20517 - components: - - type: Transform - pos: 73.5,-14.5 - parent: 2 - - uid: 21304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-19.5 - parent: 2 - - uid: 21479 - components: - - type: Transform - pos: -39.5,-2.5 - parent: 2 - - uid: 21550 - components: - - type: Transform - pos: -71.5,8.5 - parent: 2 - - uid: 23448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,13.5 - parent: 2 - - uid: 23596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-6.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hydroponics - - uid: 23598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,12.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms - - uid: 23599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-10.5 - parent: 2 - - uid: 23600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,3.5 - parent: 2 - - uid: 23601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-21.5 - parent: 2 - - uid: 23602 - components: - - type: Transform - pos: 6.5,19.5 - parent: 2 - - uid: 23607 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-3.5 - parent: 2 - - uid: 23608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-15.5 - parent: 2 - - uid: 23610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-12.5 - parent: 2 - - uid: 23611 - components: - - type: Transform - pos: 33.5,-14.5 - parent: 2 - - uid: 23612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-12.5 - parent: 2 - - uid: 23613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 2 - - uid: 23614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-22.5 - parent: 2 - - uid: 23615 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-12.5 - parent: 2 - - uid: 23616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,16.5 - parent: 2 - - uid: 23617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-10.5 - parent: 2 - - uid: 23619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-1.5 - parent: 2 - - uid: 23622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 2 - - uid: 23623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-4.5 - parent: 2 - - uid: 23624 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-4.5 - parent: 2 - - uid: 23626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,6.5 - parent: 2 - - uid: 23629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-45.5 - parent: 2 - - uid: 23632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,2.5 - parent: 2 - - uid: 23636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-15.5 - parent: 2 - - uid: 23640 - components: - - type: Transform - pos: 22.5,8.5 - parent: 2 - - uid: 23641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 2 - - uid: 23642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-10.5 - parent: 2 - - uid: 23643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-4.5 - parent: 2 - - type: SurveillanceCamera - id: Kitchen - - uid: 23645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-12.5 - parent: 2 - - uid: 23646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,4.5 - parent: 2 - - uid: 23647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,0.5 - parent: 2 - - uid: 23648 - components: - - type: Transform - pos: 57.5,-0.5 - parent: 2 - - uid: 23649 - components: - - type: Transform - pos: 56.5,-10.5 - parent: 2 - - uid: 23650 - components: - - type: Transform - pos: 65.5,-0.5 - parent: 2 - - uid: 23651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-5.5 - parent: 2 - - uid: 23652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-6.5 - parent: 2 - - uid: 23653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-3.5 - parent: 2 - - uid: 23654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-2.5 - parent: 2 - - uid: 23656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-5.5 - parent: 2 - - uid: 23657 - components: - - type: Transform - pos: 13.5,-31.5 - parent: 2 - - uid: 23658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-6.5 - parent: 2 - - uid: 23659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-5.5 - parent: 2 - - uid: 23660 - components: - - type: Transform - pos: 34.5,7.5 - parent: 2 - - uid: 23661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,15.5 - parent: 2 - - uid: 23662 - components: - - type: Transform - pos: 29.5,21.5 - parent: 2 - - uid: 23663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,19.5 - parent: 2 - - uid: 23664 - components: - - type: Transform - pos: 37.5,21.5 - parent: 2 - - uid: 23665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,15.5 - parent: 2 - - uid: 23666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,1.5 - parent: 2 - - uid: 24190 - components: - - type: Transform - pos: 81.5,-14.5 - parent: 2 - - uid: 24832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-32.5 - parent: 2 - - uid: 25016 - components: - - type: Transform - pos: 6.5,-31.5 - parent: 2 - - uid: 25100 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 2 - - uid: 29757 - components: - - type: Transform - pos: -2.5,19.5 - parent: 2 - - uid: 29760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,13.5 - parent: 2 - - uid: 29761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-0.5 - parent: 2 - - uid: 29762 - components: - - type: Transform - pos: -9.5,1.5 - parent: 2 - - uid: 29763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 2 - - uid: 29987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,3.5 - parent: 2 - - uid: 31301 - components: - - type: Transform - pos: 15.5,1.5 - parent: 2 - - uid: 31302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,1.5 - parent: 2 - - uid: 31310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,29.5 - parent: 2 - - uid: 31311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,41.5 - parent: 2 -- proto: SurveillanceCameraMedical - entities: - - uid: 21890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 2 - - uid: 23668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-33.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery - - uid: 23669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-55.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - - uid: 23670 - components: - - type: Transform - pos: 44.5,-20.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - - uid: 23672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-27.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Emergency Room - - uid: 23673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-20.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - - uid: 23674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-26.5 - parent: 2 - - uid: 23675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-18.5 - parent: 2 - - uid: 23676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 2 - - uid: 23677 - components: - - type: Transform - pos: 34.5,-25.5 - parent: 2 - - uid: 23678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-33.5 - parent: 2 - - uid: 23679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-41.5 - parent: 2 - - uid: 23680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-45.5 - parent: 2 - - uid: 23681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-52.5 - parent: 2 - - uid: 23682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-54.5 - parent: 2 - - uid: 23683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-31.5 - parent: 2 - - uid: 23686 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-22.5 - parent: 2 - - type: SurveillanceCamera - id: Dissection - - uid: 23688 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-26.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical Storage - - uid: 23689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-33.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cryonics - - uid: 23690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Dissection - - uid: 23691 - components: - - type: Transform - pos: 27.5,-20.5 - parent: 2 - - type: SurveillanceCamera - id: Medbay Lobby - - uid: 31679 - components: - - type: Transform - pos: 45.5,-47.5 - parent: 2 -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 23692 - components: - - type: Transform - pos: -15.5,-57.5 - parent: 2 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 23693 - components: - - type: Transform - pos: -11.5,-49.5 - parent: 2 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 23694 - components: - - type: Transform - pos: -11.5,-56.5 - parent: 2 -- proto: SurveillanceCameraRouterHandheld - entities: - - uid: 23695 - components: - - type: Transform - pos: -15.5,-51.5 - parent: 2 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 23696 - components: - - type: Transform - pos: -15.5,-49.5 - parent: 2 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 23697 - components: - - type: Transform - pos: -15.5,-50.5 - parent: 2 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 23698 - components: - - type: Transform - pos: -15.5,-56.5 - parent: 2 -- proto: SurveillanceCameraRouterService - entities: - - uid: 23699 - components: - - type: Transform - pos: -11.5,-57.5 - parent: 2 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 23700 - components: - - type: Transform - pos: -11.5,-50.5 - parent: 2 -- proto: SurveillanceCameraScience - entities: - - uid: 5381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-32.5 - parent: 2 - - uid: 5387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-29.5 - parent: 2 - - uid: 5388 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-35.5 - parent: 2 - - uid: 5390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-44.5 - parent: 2 - - uid: 5391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-21.5 - parent: 2 - - uid: 18974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-28.5 - parent: 2 - - uid: 20776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-35.5 - parent: 2 - - uid: 20777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-43.5 - parent: 2 - - uid: 20778 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-37.5 - parent: 2 - - uid: 20779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-37.5 - parent: 2 - - uid: 20961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-43.5 - parent: 2 - - uid: 20978 - components: - - type: Transform - pos: 79.5,-40.5 - parent: 2 - - uid: 20980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-51.5 - parent: 2 - - uid: 21422 - components: - - type: Transform - pos: 58.5,-27.5 - parent: 2 - - uid: 21429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-22.5 - parent: 2 - - uid: 21987 - components: - - type: Transform - pos: 72.5,-31.5 - parent: 2 - - uid: 23703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-21.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RND - - uid: 23704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-17.5 - parent: 2 - - uid: 23706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-51.5 - parent: 2 - - uid: 23707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-56.5 - parent: 2 - - uid: 23708 - components: - - type: Transform - pos: 56.5,-41.5 - parent: 2 - - uid: 23709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-34.5 - parent: 2 -- proto: SurveillanceCameraSecurity - entities: - - uid: 726 - components: - - type: Transform - pos: -5.5,34.5 - parent: 2 - - uid: 10141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,47.5 - parent: 2 - - uid: 10552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,35.5 - parent: 2 - - uid: 10792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,37.5 - parent: 2 - - uid: 10881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,33.5 - parent: 2 - - uid: 14380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,38.5 - parent: 2 - - uid: 16526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,36.5 - parent: 2 - - uid: 16527 - components: - - type: Transform - pos: 16.5,30.5 - parent: 2 - - uid: 16528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,38.5 - parent: 2 - - uid: 16529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,28.5 - parent: 2 - - uid: 16530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,26.5 - parent: 2 - - uid: 16531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,26.5 - parent: 2 - - uid: 16533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,23.5 - parent: 2 - - uid: 19001 - components: - - type: Transform - pos: -5.5,29.5 - parent: 2 - - uid: 19935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-2.5 - parent: 2 - - uid: 21480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,28.5 - parent: 2 - - uid: 21736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,27.5 - parent: 2 - - uid: 23722 - components: - - type: Transform - pos: -20.5,-31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cargo Sec Office - - uid: 23723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Arrivals Sec Office - - uid: 23732 - components: - - type: Transform - pos: 24.5,40.5 - parent: 2 - - uid: 23743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,33.5 - parent: 2 - - uid: 23746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,45.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Hall - - uid: 23748 - components: - - type: Transform - pos: -19.5,43.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Cells - - uid: 23749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,47.5 - parent: 2 - - uid: 23753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,45.5 - parent: 2 - - uid: 23755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,22.5 - parent: 2 - - uid: 23757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,49.5 - parent: 2 - - uid: 23758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-0.5 - parent: 2 - - uid: 25742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,39.5 - parent: 2 - - uid: 25743 - components: - - type: Transform - pos: -0.5,42.5 - parent: 2 - - uid: 25744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,32.5 - parent: 2 - - uid: 25745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,52.5 - parent: 2 - - uid: 25747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,40.5 - parent: 2 - - uid: 25914 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,40.5 - parent: 2 - - uid: 28976 - components: - - type: Transform - pos: -3.5,51.5 - parent: 2 - - uid: 29130 - components: - - type: Transform - pos: 2.5,51.5 - parent: 2 - - uid: 29759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,48.5 - parent: 2 - - uid: 30184 - components: - - type: Transform - pos: 28.5,34.5 - parent: 2 - - uid: 30185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,40.5 - parent: 2 - - uid: 30186 - components: - - type: Transform - pos: 26.5,44.5 - parent: 2 - - uid: 31303 - components: - - type: Transform - pos: -10.5,35.5 - parent: 2 -- proto: SurveillanceCameraService - entities: - - uid: 373 - components: - - type: Transform - pos: 3.5,-35.5 - parent: 2 - - uid: 23761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,0.5 - parent: 2 - - uid: 23762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-10.5 - parent: 2 - - uid: 23763 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,3.5 - parent: 2 - - uid: 23764 - components: - - type: Transform - pos: 38.5,-2.5 - parent: 2 - - uid: 23765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,0.5 - parent: 2 - - uid: 23768 - components: - - type: Transform - pos: 29.5,-2.5 - parent: 2 - - uid: 23769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-33.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitor Closet -- proto: SurveillanceCameraSupply - entities: - - uid: 139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-36.5 - parent: 2 - - uid: 18769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-17.5 - parent: 2 - - uid: 18779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-15.5 - parent: 2 - - uid: 19223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 2 - - uid: 23771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-24.5 - parent: 2 - - uid: 23772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-35.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Bay - - uid: 23773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-24.5 - parent: 2 - - uid: 23774 - components: - - type: Transform - pos: -34.5,-22.5 - parent: 2 - - uid: 23775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-28.5 - parent: 2 - - uid: 28898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-28.5 - parent: 2 - - uid: 29916 - components: - - type: Transform - pos: -35.5,-38.5 - parent: 2 -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 23778 - components: - - type: Transform - pos: -15.5,-55.5 - parent: 2 -- proto: SurveillanceWirelessCameraAnchoredEntertainment - entities: - - uid: 5914 - components: - - type: Transform - pos: 27.5,13.5 - parent: 2 - - uid: 22665 - components: - - type: Transform - pos: 27.5,12.5 - parent: 2 -- proto: SurveillanceWirelessCameraMovableEntertainment - entities: - - uid: 1045 - components: - - type: Transform - pos: 27.5,14.5 - parent: 2 - - uid: 1091 - components: - - type: Transform - pos: 27.5,15.5 - parent: 2 -- proto: Syringe - entities: - - uid: 23783 - components: - - type: Transform - pos: 29.437502,-32.468803 - parent: 2 -- proto: SyringeEphedrine - entities: - - uid: 23785 - components: - - type: Transform - pos: -20.550821,14.488405 - parent: 2 - - type: Tag - tags: [] - - uid: 30739 - components: - - type: Transform - pos: -24.552052,30.454298 - parent: 2 -- proto: SyringePhalanximine - entities: - - uid: 29906 - components: - - type: Transform - pos: 48.738274,1.4988544 - parent: 2 - - uid: 29917 - components: - - type: Transform - pos: 42.425774,-10.387416 - parent: 2 - - uid: 29940 - components: - - type: Transform - pos: 42.769524,-10.371791 - parent: 2 -- proto: SyringeTranexamicAcid - entities: - - uid: 23786 - components: - - type: Transform - pos: -11.552925,31.585443 - parent: 2 -- proto: Table - entities: - - uid: 1372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,47.5 - parent: 2 - - uid: 2596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-7.5 - parent: 2 - - uid: 2917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-7.5 - parent: 2 - - uid: 2987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-10.5 - parent: 2 - - uid: 3250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-7.5 - parent: 2 - - uid: 3386 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-9.5 - parent: 2 - - uid: 3469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-8.5 - parent: 2 - - uid: 3690 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,36.5 - parent: 2 - - uid: 5509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,47.5 - parent: 2 - - uid: 5614 - components: - - type: Transform - pos: -43.5,-36.5 - parent: 2 - - uid: 5621 - components: - - type: Transform - pos: -42.5,-36.5 - parent: 2 - - uid: 7945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-7.5 - parent: 2 - - uid: 8424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,34.5 - parent: 2 - - uid: 8897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-28.5 - parent: 2 - - uid: 10748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,19.5 - parent: 2 - - uid: 10870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-22.5 - parent: 2 - - uid: 11110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-29.5 - parent: 2 - - uid: 11267 - components: - - type: Transform - pos: -7.5,-63.5 - parent: 2 - - uid: 11616 - components: - - type: Transform - pos: 36.5,-38.5 - parent: 2 - - uid: 12076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,32.5 - parent: 2 - - uid: 12189 - components: - - type: Transform - pos: 60.5,-29.5 - parent: 2 - - uid: 12200 - components: - - type: Transform - pos: 20.5,15.5 - parent: 2 - - uid: 12209 - components: - - type: Transform - pos: 7.5,-36.5 - parent: 2 - - uid: 12780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-31.5 - parent: 2 - - uid: 13040 - components: - - type: Transform - pos: -57.5,5.5 - parent: 2 - - uid: 13186 - components: - - type: Transform - pos: 63.5,-30.5 - parent: 2 - - uid: 14365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-9.5 - parent: 2 - - uid: 14521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,47.5 - parent: 2 - - uid: 14565 - components: - - type: Transform - pos: 10.5,41.5 - parent: 2 - - uid: 15085 - components: - - type: Transform - pos: 69.5,-22.5 - parent: 2 - - uid: 16260 - components: - - type: Transform - pos: 61.5,-29.5 - parent: 2 - - uid: 17279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-41.5 - parent: 2 - - uid: 17280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-40.5 - parent: 2 - - uid: 17362 - components: - - type: Transform - pos: 72.5,-46.5 - parent: 2 - - uid: 17423 - components: - - type: Transform - pos: -41.5,-36.5 - parent: 2 - - uid: 17458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-30.5 - parent: 2 - - uid: 17642 - components: - - type: Transform - pos: 72.5,-44.5 - parent: 2 - - uid: 17646 - components: - - type: Transform - pos: 72.5,-43.5 - parent: 2 - - uid: 17697 - components: - - type: Transform - pos: 72.5,-47.5 - parent: 2 - - uid: 17890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,32.5 - parent: 2 - - uid: 18198 - components: - - type: Transform - pos: 63.5,-33.5 - parent: 2 - - uid: 18207 - components: - - type: Transform - pos: 63.5,-31.5 - parent: 2 - - uid: 19205 - components: - - type: Transform - pos: 24.5,13.5 - parent: 2 - - uid: 19413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-53.5 - parent: 2 - - uid: 19893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,37.5 - parent: 2 - - uid: 19920 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 2 - - uid: 19968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-29.5 - parent: 2 - - uid: 20286 - components: - - type: Transform - pos: -54.5,-8.5 - parent: 2 - - uid: 20315 - components: - - type: Transform - pos: -54.5,-7.5 - parent: 2 - - uid: 20473 - components: - - type: Transform - pos: -5.5,31.5 - parent: 2 - - uid: 20559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,23.5 - parent: 2 - - uid: 20593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-7.5 - parent: 2 - - uid: 21863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-65.5 - parent: 2 - - uid: 22083 - components: - - type: Transform - pos: -34.5,37.5 - parent: 2 - - uid: 22088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,47.5 - parent: 2 - - uid: 22312 - components: - - type: Transform - pos: 43.5,-10.5 - parent: 2 - - uid: 22878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,5.5 - parent: 2 - - uid: 23449 - components: - - type: Transform - pos: -37.5,36.5 - parent: 2 - - uid: 23483 - components: - - type: Transform - pos: 9.5,-63.5 - parent: 2 - - uid: 23787 - components: - - type: Transform - pos: 37.5,-18.5 - parent: 2 - - uid: 23788 - components: - - type: Transform - pos: -20.5,-9.5 - parent: 2 - - uid: 23789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-77.5 - parent: 2 - - uid: 23791 - components: - - type: Transform - pos: -33.5,-27.5 - parent: 2 - - uid: 23792 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 2 - - uid: 23793 - components: - - type: Transform - pos: 44.5,-24.5 - parent: 2 - - uid: 23794 - components: - - type: Transform - pos: 47.5,-24.5 - parent: 2 - - uid: 23795 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 2 - - uid: 23796 - components: - - type: Transform - pos: 39.5,-29.5 - parent: 2 - - uid: 23797 - components: - - type: Transform - pos: 58.5,-49.5 - parent: 2 - - uid: 23798 - components: - - type: Transform - pos: 60.5,-49.5 - parent: 2 - - uid: 23799 - components: - - type: Transform - pos: 59.5,-49.5 - parent: 2 - - uid: 23800 - components: - - type: Transform - pos: 57.5,-49.5 - parent: 2 - - uid: 23802 - components: - - type: Transform - pos: 59.5,-51.5 - parent: 2 - - uid: 23803 - components: - - type: Transform - pos: 58.5,-51.5 - parent: 2 - - uid: 23804 - components: - - type: Transform - pos: 41.5,-29.5 - parent: 2 - - uid: 23805 - components: - - type: Transform - pos: 53.5,-48.5 - parent: 2 - - uid: 23806 - components: - - type: Transform - pos: 40.5,-29.5 - parent: 2 - - uid: 23807 - components: - - type: Transform - pos: 38.5,-28.5 - parent: 2 - - uid: 23809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-57.5 - parent: 2 - - uid: 23811 - components: - - type: Transform - pos: 9.5,-54.5 - parent: 2 - - uid: 23812 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 2 - - uid: 23813 - components: - - type: Transform - pos: 72.5,-29.5 - parent: 2 - - uid: 23814 - components: - - type: Transform - pos: 72.5,-28.5 - parent: 2 - - uid: 23815 - components: - - type: Transform - pos: 71.5,-28.5 - parent: 2 - - uid: 23816 - components: - - type: Transform - pos: 71.5,-29.5 - parent: 2 - - uid: 23817 - components: - - type: Transform - pos: 27.5,-25.5 - parent: 2 - - uid: 23818 - components: - - type: Transform - pos: 69.5,-28.5 - parent: 2 - - uid: 23819 - components: - - type: Transform - pos: 4.5,11.5 - parent: 2 - - uid: 23820 - components: - - type: Transform - pos: 37.5,-19.5 - parent: 2 - - uid: 23821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-75.5 - parent: 2 - - uid: 23822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-76.5 - parent: 2 - - uid: 23825 - components: - - type: Transform - pos: 39.5,11.5 - parent: 2 - - uid: 23828 - components: - - type: Transform - pos: 4.5,12.5 - parent: 2 - - uid: 23829 - components: - - type: Transform - pos: 43.5,6.5 - parent: 2 - - uid: 23831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 2 - - uid: 23832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 2 - - uid: 23834 - components: - - type: Transform - pos: 39.5,-4.5 - parent: 2 - - uid: 23835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-6.5 - parent: 2 - - uid: 23836 - components: - - type: Transform - pos: 33.5,-0.5 - parent: 2 - - uid: 23837 - components: - - type: Transform - pos: 38.5,-4.5 - parent: 2 - - uid: 23838 - components: - - type: Transform - pos: 38.5,-6.5 - parent: 2 - - uid: 23839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,23.5 - parent: 2 - - uid: 23840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,23.5 - parent: 2 - - uid: 23841 - components: - - type: Transform - pos: 61.5,-23.5 - parent: 2 - - uid: 23844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,1.5 - parent: 2 - - uid: 23846 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 2 - - uid: 23847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,1.5 - parent: 2 - - uid: 23848 - components: - - type: Transform - pos: -26.5,-36.5 - parent: 2 - - uid: 23849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,19.5 - parent: 2 - - uid: 23854 - components: - - type: Transform - pos: 6.5,35.5 - parent: 2 - - uid: 23855 - components: - - type: Transform - pos: -18.5,16.5 - parent: 2 - - uid: 23856 - components: - - type: Transform - pos: -6.5,52.5 - parent: 2 - - uid: 23858 - components: - - type: Transform - pos: -6.5,49.5 - parent: 2 - - uid: 23861 - components: - - type: Transform - pos: -19.5,22.5 - parent: 2 - - uid: 23862 - components: - - type: Transform - pos: 4.5,33.5 - parent: 2 - - uid: 23863 - components: - - type: Transform - pos: 4.5,32.5 - parent: 2 - - uid: 23864 - components: - - type: Transform - pos: -1.5,30.5 - parent: 2 - - uid: 23865 - components: - - type: Transform - pos: -0.5,29.5 - parent: 2 - - uid: 23866 - components: - - type: Transform - pos: 7.5,35.5 - parent: 2 - - uid: 23867 - components: - - type: Transform - pos: 1.5,30.5 - parent: 2 - - uid: 23868 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 2 - - uid: 23869 - components: - - type: Transform - pos: 6.5,33.5 - parent: 2 - - uid: 23870 - components: - - type: Transform - pos: 11.5,35.5 - parent: 2 - - uid: 23871 - components: - - type: Transform - pos: 11.5,34.5 - parent: 2 - - uid: 23873 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 2 - - uid: 23875 - components: - - type: Transform - pos: 48.5,1.5 - parent: 2 - - uid: 23877 - components: - - type: Transform - pos: 59.5,-24.5 - parent: 2 - - uid: 23878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-77.5 - parent: 2 - - uid: 23879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-77.5 - parent: 2 - - uid: 23880 - components: - - type: Transform - pos: 66.5,-80.5 - parent: 2 - - uid: 23881 - components: - - type: Transform - pos: 67.5,-80.5 - parent: 2 - - uid: 23884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,49.5 - parent: 2 - - uid: 23885 - components: - - type: Transform - pos: 64.5,16.5 - parent: 2 - - uid: 23886 - components: - - type: Transform - pos: 67.5,18.5 - parent: 2 - - uid: 23887 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 2 - - uid: 23888 - components: - - type: Transform - pos: -18.5,14.5 - parent: 2 - - uid: 23895 - components: - - type: Transform - pos: -42.5,1.5 - parent: 2 - - uid: 23896 - components: - - type: Transform - pos: -41.5,1.5 - parent: 2 - - uid: 23897 - components: - - type: Transform - pos: -37.5,2.5 - parent: 2 - - uid: 23898 - components: - - type: Transform - pos: -37.5,3.5 - parent: 2 - - uid: 23899 - components: - - type: Transform - pos: -39.5,5.5 - parent: 2 - - uid: 23900 - components: - - type: Transform - pos: -40.5,5.5 - parent: 2 - - uid: 23902 - components: - - type: Transform - pos: -44.5,5.5 - parent: 2 - - uid: 23903 - components: - - type: Transform - pos: -46.5,3.5 - parent: 2 - - uid: 23904 - components: - - type: Transform - pos: -46.5,2.5 - parent: 2 - - uid: 23905 - components: - - type: Transform - pos: -46.5,1.5 - parent: 2 - - uid: 23906 - components: - - type: Transform - pos: 68.5,-80.5 - parent: 2 - - uid: 23907 - components: - - type: Transform - pos: 69.5,-80.5 - parent: 2 - - uid: 23908 - components: - - type: Transform - pos: -59.5,3.5 - parent: 2 - - uid: 23909 - components: - - type: Transform - pos: -57.5,3.5 - parent: 2 - - uid: 23910 - components: - - type: Transform - pos: -56.5,3.5 - parent: 2 - - uid: 23912 - components: - - type: Transform - pos: -65.5,13.5 - parent: 2 - - uid: 23913 - components: - - type: Transform - pos: -65.5,14.5 - parent: 2 - - uid: 23914 - components: - - type: Transform - pos: -67.5,12.5 - parent: 2 - - uid: 23915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-77.5 - parent: 2 - - uid: 23916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-76.5 - parent: 2 - - uid: 23917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-75.5 - parent: 2 - - uid: 23918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,19.5 - parent: 2 - - uid: 23920 - components: - - type: Transform - pos: 78.5,-16.5 - parent: 2 - - uid: 23922 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 2 - - uid: 23924 - components: - - type: Transform - pos: -46.5,14.5 - parent: 2 - - uid: 23925 - components: - - type: Transform - pos: -46.5,13.5 - parent: 2 - - uid: 23927 - components: - - type: Transform - pos: -33.5,-22.5 - parent: 2 - - uid: 23928 - components: - - type: Transform - pos: -52.5,-13.5 - parent: 2 - - uid: 23936 - components: - - type: Transform - pos: -34.5,-6.5 - parent: 2 - - uid: 23937 - components: - - type: Transform - pos: -34.5,-4.5 - parent: 2 - - uid: 23938 - components: - - type: Transform - pos: -34.5,-5.5 - parent: 2 - - uid: 23939 - components: - - type: Transform - pos: -33.5,-6.5 - parent: 2 - - uid: 23940 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 2 - - uid: 23941 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 2 - - uid: 23942 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 2 - - uid: 23943 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 2 - - uid: 23944 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 2 - - uid: 23945 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 2 - - uid: 23947 - components: - - type: Transform - pos: 24.5,-36.5 - parent: 2 - - uid: 23948 - components: - - type: Transform - pos: -28.5,-32.5 - parent: 2 - - uid: 23949 - components: - - type: Transform - pos: -34.5,-22.5 - parent: 2 - - uid: 23950 - components: - - type: Transform - pos: -31.5,-27.5 - parent: 2 - - uid: 23951 - components: - - type: Transform - pos: -33.5,-26.5 - parent: 2 - - uid: 23955 - components: - - type: Transform - pos: -28.5,-27.5 - parent: 2 - - uid: 23956 - components: - - type: Transform - pos: -28.5,-26.5 - parent: 2 - - uid: 23957 - components: - - type: Transform - pos: -28.5,-25.5 - parent: 2 - - uid: 23960 - components: - - type: Transform - pos: -28.5,-33.5 - parent: 2 - - uid: 23961 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 2 - - uid: 23963 - components: - - type: Transform - pos: -20.5,-29.5 - parent: 2 - - uid: 23964 - components: - - type: Transform - pos: -31.5,-31.5 - parent: 2 - - uid: 23965 - components: - - type: Transform - pos: -32.5,-27.5 - parent: 2 - - uid: 23966 - components: - - type: Transform - pos: -8.5,-57.5 - parent: 2 - - uid: 23967 - components: - - type: Transform - pos: -8.5,-56.5 - parent: 2 - - uid: 23969 - components: - - type: Transform - pos: -38.5,-44.5 - parent: 2 - - uid: 23970 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 2 - - uid: 23971 - components: - - type: Transform - pos: -37.5,-46.5 - parent: 2 - - uid: 23972 - components: - - type: Transform - pos: -38.5,-46.5 - parent: 2 - - uid: 23973 - components: - - type: Transform - pos: -34.5,-51.5 - parent: 2 - - uid: 23974 - components: - - type: Transform - pos: -35.5,-51.5 - parent: 2 - - uid: 23975 - components: - - type: Transform - pos: 28.5,-36.5 - parent: 2 - - uid: 23976 - components: - - type: Transform - pos: -28.5,-52.5 - parent: 2 - - uid: 23977 - components: - - type: Transform - pos: -28.5,-53.5 - parent: 2 - - uid: 23978 - components: - - type: Transform - pos: -28.5,-54.5 - parent: 2 - - uid: 23979 - components: - - type: Transform - pos: -28.5,-55.5 - parent: 2 - - uid: 23980 - components: - - type: Transform - pos: -5.5,-33.5 - parent: 2 - - uid: 23981 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 2 - - uid: 23982 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 2 - - uid: 23983 - components: - - type: Transform - pos: -8.5,-33.5 - parent: 2 - - uid: 23984 - components: - - type: Transform - pos: -8.5,-34.5 - parent: 2 - - uid: 23985 - components: - - type: Transform - pos: -8.5,-35.5 - parent: 2 - - uid: 23986 - components: - - type: Transform - pos: -10.5,-34.5 - parent: 2 - - uid: 23987 - components: - - type: Transform - pos: -10.5,-38.5 - parent: 2 - - uid: 23988 - components: - - type: Transform - pos: -10.5,-39.5 - parent: 2 - - uid: 23989 - components: - - type: Transform - pos: -9.5,-39.5 - parent: 2 - - uid: 23990 - components: - - type: Transform - pos: -8.5,-39.5 - parent: 2 - - uid: 23991 - components: - - type: Transform - pos: -8.5,-38.5 - parent: 2 - - uid: 23992 - components: - - type: Transform - pos: -8.5,-37.5 - parent: 2 - - uid: 23994 - components: - - type: Transform - pos: -3.5,-45.5 - parent: 2 - - uid: 23995 - components: - - type: Transform - pos: -4.5,-45.5 - parent: 2 - - uid: 23996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-17.5 - parent: 2 - - uid: 23997 - components: - - type: Transform - pos: -3.5,-53.5 - parent: 2 - - uid: 24000 - components: - - type: Transform - pos: -8.5,-49.5 - parent: 2 - - uid: 24001 - components: - - type: Transform - pos: -5.5,-50.5 - parent: 2 - - uid: 24002 - components: - - type: Transform - pos: -8.5,-51.5 - parent: 2 - - uid: 24003 - components: - - type: Transform - pos: -8.5,-50.5 - parent: 2 - - uid: 24004 - components: - - type: Transform - pos: 45.5,-36.5 - parent: 2 - - uid: 24005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-54.5 - parent: 2 - - uid: 24006 - components: - - type: Transform - pos: 5.5,-51.5 - parent: 2 - - uid: 24007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-55.5 - parent: 2 - - uid: 24010 - components: - - type: Transform - pos: -29.5,-15.5 - parent: 2 - - uid: 24011 - components: - - type: Transform - pos: 37.5,-35.5 - parent: 2 - - uid: 24012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-64.5 - parent: 2 - - uid: 24013 - components: - - type: Transform - pos: 35.5,-36.5 - parent: 2 - - uid: 24014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-23.5 - parent: 2 - - uid: 24015 - components: - - type: Transform - pos: 31.5,-36.5 - parent: 2 - - uid: 24016 - components: - - type: Transform - pos: 36.5,-36.5 - parent: 2 - - uid: 24020 - components: - - type: Transform - pos: 37.5,-36.5 - parent: 2 - - uid: 24023 - components: - - type: Transform - pos: 9.5,-60.5 - parent: 2 - - uid: 24024 - components: - - type: Transform - pos: 22.5,-27.5 - parent: 2 - - uid: 24025 - components: - - type: Transform - pos: 22.5,-26.5 - parent: 2 - - uid: 24026 - components: - - type: Transform - pos: 34.5,-52.5 - parent: 2 - - uid: 24027 - components: - - type: Transform - pos: 34.5,-53.5 - parent: 2 - - uid: 24028 - components: - - type: Transform - pos: 34.5,-54.5 - parent: 2 - - uid: 24029 - components: - - type: Transform - pos: 44.5,-33.5 - parent: 2 - - uid: 24030 - components: - - type: Transform - pos: 30.5,-30.5 - parent: 2 - - uid: 24031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-45.5 - parent: 2 - - uid: 24032 - components: - - type: Transform - pos: 42.5,-16.5 - parent: 2 - - uid: 24033 - components: - - type: Transform - pos: 43.5,-16.5 - parent: 2 - - uid: 24034 - components: - - type: Transform - pos: 38.5,-29.5 - parent: 2 - - uid: 24035 - components: - - type: Transform - pos: 41.5,-16.5 - parent: 2 - - uid: 24036 - components: - - type: Transform - pos: 37.5,-38.5 - parent: 2 - - uid: 24037 - components: - - type: Transform - pos: 47.5,-68.5 - parent: 2 - - uid: 24038 - components: - - type: Transform - pos: 47.5,-67.5 - parent: 2 - - uid: 24039 - components: - - type: Transform - pos: 47.5,-66.5 - parent: 2 - - uid: 24041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 2 - - uid: 24042 - components: - - type: Transform - pos: 23.5,0.5 - parent: 2 - - uid: 24043 - components: - - type: Transform - pos: 33.5,-10.5 - parent: 2 - - uid: 24044 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 2 - - uid: 24045 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 2 - - uid: 24046 - components: - - type: Transform - pos: 35.5,-10.5 - parent: 2 - - uid: 24047 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 2 - - uid: 24051 - components: - - type: Transform - pos: 57.5,-31.5 - parent: 2 - - uid: 24052 - components: - - type: Transform - pos: 70.5,-53.5 - parent: 2 - - uid: 24053 - components: - - type: Transform - pos: 69.5,-53.5 - parent: 2 - - uid: 24054 - components: - - type: Transform - pos: 76.5,-54.5 - parent: 2 - - uid: 24068 - components: - - type: Transform - pos: 61.5,-24.5 - parent: 2 - - uid: 24069 - components: - - type: Transform - pos: 77.5,-54.5 - parent: 2 - - uid: 24070 - components: - - type: Transform - pos: 78.5,-54.5 - parent: 2 - - uid: 24071 - components: - - type: Transform - pos: 78.5,-64.5 - parent: 2 - - uid: 24072 - components: - - type: Transform - pos: 78.5,-63.5 - parent: 2 - - uid: 24073 - components: - - type: Transform - pos: 78.5,-62.5 - parent: 2 - - uid: 24074 - components: - - type: Transform - pos: -19.5,14.5 - parent: 2 - - uid: 24075 - components: - - type: Transform - pos: -20.5,14.5 - parent: 2 - - uid: 24076 - components: - - type: Transform - pos: 6.5,32.5 - parent: 2 - - uid: 24077 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 2 - - uid: 24078 - components: - - type: Transform - pos: 34.5,-10.5 - parent: 2 - - uid: 24079 - components: - - type: Transform - pos: -30.5,-18.5 - parent: 2 - - uid: 24080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-56.5 - parent: 2 - - uid: 24081 - components: - - type: Transform - pos: -33.5,-24.5 - parent: 2 - - uid: 24085 - components: - - type: Transform - pos: 9.5,-59.5 - parent: 2 - - uid: 24087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-24.5 - parent: 2 - - uid: 24088 - components: - - type: Transform - pos: 3.5,28.5 - parent: 2 - - uid: 24089 - components: - - type: Transform - pos: -14.5,-24.5 - parent: 2 - - uid: 24090 - components: - - type: Transform - pos: -14.5,-25.5 - parent: 2 - - uid: 24091 - components: - - type: Transform - pos: 4.5,28.5 - parent: 2 - - uid: 24096 - components: - - type: Transform - pos: 42.5,-10.5 - parent: 2 - - uid: 24099 - components: - - type: Transform - pos: 74.5,1.5 - parent: 2 - - uid: 24101 - components: - - type: Transform - pos: 59.5,-39.5 - parent: 2 - - uid: 24104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 2 - - uid: 24105 - components: - - type: Transform - pos: 7.5,-74.5 - parent: 2 - - uid: 24106 - components: - - type: Transform - pos: 6.5,-74.5 - parent: 2 - - uid: 24107 - components: - - type: Transform - pos: 5.5,-74.5 - parent: 2 - - uid: 24111 - components: - - type: Transform - pos: -1.5,-71.5 - parent: 2 - - uid: 24112 - components: - - type: Transform - pos: -2.5,-71.5 - parent: 2 - - uid: 24116 - components: - - type: Transform - pos: 31.5,21.5 - parent: 2 - - uid: 24118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-24.5 - parent: 2 - - uid: 24119 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 2 - - uid: 24120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-8.5 - parent: 2 - - uid: 24121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 2 - - uid: 24122 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 2 - - uid: 24123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-63.5 - parent: 2 - - uid: 24124 - components: - - type: Transform - pos: -2.5,-64.5 - parent: 2 - - uid: 24246 - components: - - type: Transform - pos: 74.5,0.5 - parent: 2 - - uid: 24257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,37.5 - parent: 2 - - uid: 24401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,29.5 - parent: 2 - - uid: 24443 - components: - - type: Transform - pos: 60.5,-3.5 - parent: 2 - - uid: 24529 - components: - - type: Transform - pos: 60.5,-2.5 - parent: 2 - - uid: 24729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,30.5 - parent: 2 - - uid: 25101 - components: - - type: Transform - pos: -9.5,-72.5 - parent: 2 - - uid: 25102 - components: - - type: Transform - pos: -10.5,-72.5 - parent: 2 - - uid: 25103 - components: - - type: Transform - pos: -11.5,-72.5 - parent: 2 - - uid: 25407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-34.5 - parent: 2 - - uid: 25789 - components: - - type: Transform - pos: -13.5,33.5 - parent: 2 - - uid: 27387 - components: - - type: Transform - pos: -17.5,28.5 - parent: 2 - - uid: 29450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-19.5 - parent: 2 - - uid: 29451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-19.5 - parent: 2 - - uid: 29743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 2 - - uid: 29826 - components: - - type: Transform - pos: -48.5,-30.5 - parent: 2 - - uid: 30083 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,34.5 - parent: 2 - - uid: 30084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,34.5 - parent: 2 - - uid: 30085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,34.5 - parent: 2 - - uid: 30157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,42.5 - parent: 2 - - uid: 30158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,43.5 - parent: 2 - - uid: 30159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,42.5 - parent: 2 - - uid: 30161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,41.5 - parent: 2 - - uid: 30307 - components: - - type: Transform - pos: -25.5,-22.5 - parent: 2 - - uid: 30554 - components: - - type: Transform - pos: -34.5,44.5 - parent: 2 - - uid: 31830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-9.5 - parent: 2 - - uid: 32078 - components: - - type: Transform - pos: 14.5,-49.5 - parent: 2 - - uid: 32118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 2 -- proto: TableCarpet - entities: - - uid: 22638 - components: - - type: Transform - pos: 18.5,-40.5 - parent: 2 - - uid: 22659 - components: - - type: Transform - pos: 19.5,-40.5 - parent: 2 - - uid: 24130 - components: - - type: Transform - pos: 58.5,16.5 - parent: 2 -- proto: TableCounterMetal - entities: - - uid: 22603 - components: - - type: Transform - pos: 59.5,24.5 - parent: 2 - - uid: 24133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-10.5 - parent: 2 - - uid: 24134 - components: - - type: Transform - pos: 9.5,33.5 - parent: 2 - - uid: 32112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-16.5 - parent: 2 - - uid: 32113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-17.5 - parent: 2 - - uid: 32114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 2 - - uid: 32119 - components: - - type: Transform - pos: -18.5,-15.5 - parent: 2 -- proto: TableCounterWood - entities: - - uid: 10205 - components: - - type: Transform - pos: 42.5,-73.5 - parent: 2 - - uid: 11205 - components: - - type: Transform - pos: 41.5,-73.5 - parent: 2 - - uid: 23750 - components: - - type: Transform - pos: 44.5,-73.5 - parent: 2 - - uid: 29292 - components: - - type: Transform - pos: 45.5,-73.5 - parent: 2 -- proto: TableGlass - entities: - - uid: 24138 - components: - - type: Transform - pos: 19.5,-34.5 - parent: 2 - - uid: 24139 - components: - - type: Transform - pos: 21.5,-34.5 - parent: 2 - - uid: 24140 - components: - - type: Transform - pos: 20.5,-33.5 - parent: 2 - - uid: 24141 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 2 - - uid: 24142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,29.5 - parent: 2 - - uid: 24143 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 2 - - uid: 24144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,31.5 - parent: 2 - - uid: 24147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 2 - - uid: 24149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,29.5 - parent: 2 - - uid: 24151 - components: - - type: Transform - pos: -51.5,7.5 - parent: 2 - - uid: 24152 - components: - - type: Transform - pos: -52.5,7.5 - parent: 2 - - uid: 24153 - components: - - type: Transform - pos: -53.5,7.5 - parent: 2 - - uid: 24154 - components: - - type: Transform - pos: -53.5,3.5 - parent: 2 - - uid: 24155 - components: - - type: Transform - pos: -54.5,3.5 - parent: 2 - - uid: 24156 - components: - - type: Transform - pos: -35.5,-43.5 - parent: 2 - - uid: 24157 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 2 - - uid: 24158 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 2 - - uid: 24159 - components: - - type: Transform - pos: 41.5,-57.5 - parent: 2 - - uid: 24160 - components: - - type: Transform - pos: 29.5,-27.5 - parent: 2 - - uid: 24161 - components: - - type: Transform - pos: 33.5,-27.5 - parent: 2 - - uid: 24162 - components: - - type: Transform - pos: 38.5,-58.5 - parent: 2 - - uid: 24163 - components: - - type: Transform - pos: 38.5,-59.5 - parent: 2 - - uid: 24164 - components: - - type: Transform - pos: 38.5,-60.5 - parent: 2 - - uid: 24165 - components: - - type: Transform - pos: 37.5,-40.5 - parent: 2 - - uid: 24166 - components: - - type: Transform - pos: 35.5,-40.5 - parent: 2 - - uid: 24167 - components: - - type: Transform - pos: 36.5,-40.5 - parent: 2 - - uid: 24169 - components: - - type: Transform - pos: 20.5,-34.5 - parent: 2 - - uid: 24170 - components: - - type: Transform - pos: 74.5,-18.5 - parent: 2 - - uid: 24171 - components: - - type: Transform - pos: 74.5,-19.5 - parent: 2 - - uid: 24172 - components: - - type: Transform - pos: 74.5,-20.5 - parent: 2 - - uid: 24173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-16.5 - parent: 2 - - uid: 24174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-21.5 - parent: 2 - - uid: 24175 - components: - - type: Transform - pos: 33.5,-30.5 - parent: 2 - - uid: 24176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-16.5 - parent: 2 - - uid: 24177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-16.5 - parent: 2 - - uid: 24178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-16.5 - parent: 2 - - uid: 29428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-19.5 - parent: 2 -- proto: TablePlasmaGlass - entities: - - uid: 24179 - components: - - type: Transform - pos: 47.5,-60.5 - parent: 2 - - uid: 24180 - components: - - type: Transform - pos: 44.5,-60.5 - parent: 2 - - uid: 24181 - components: - - type: Transform - pos: 46.5,-60.5 - parent: 2 - - uid: 24182 - components: - - type: Transform - pos: 43.5,-60.5 - parent: 2 - - uid: 24183 - components: - - type: Transform - pos: 73.5,-49.5 - parent: 2 - - uid: 24184 - components: - - type: Transform - pos: 74.5,-49.5 - parent: 2 - - uid: 24185 - components: - - type: Transform - pos: 74.5,-50.5 - parent: 2 - - uid: 24186 - components: - - type: Transform - pos: 74.5,-51.5 - parent: 2 - - uid: 24187 - components: - - type: Transform - pos: 78.5,-51.5 - parent: 2 - - uid: 24188 - components: - - type: Transform - pos: 78.5,-50.5 - parent: 2 -- proto: TableReinforced - entities: - - uid: 1255 - components: - - type: Transform - pos: -5.5,-6.5 - parent: 2 - - uid: 1259 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 2 - - uid: 1315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,36.5 - parent: 2 - - uid: 1904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,28.5 - parent: 2 - - uid: 1924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,26.5 - parent: 2 - - uid: 3485 - components: - - type: Transform - pos: 50.5,-71.5 - parent: 2 - - uid: 3486 - components: - - type: Transform - pos: 50.5,-70.5 - parent: 2 - - uid: 12312 - components: - - type: Transform - pos: 14.5,36.5 - parent: 2 - - uid: 16664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-52.5 - parent: 2 - - uid: 17081 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 2 - - uid: 17311 - components: - - type: Transform - pos: 85.5,-2.5 - parent: 2 - - uid: 17972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,36.5 - parent: 2 - - uid: 19118 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 2 - - uid: 20710 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 2 - - uid: 20888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,36.5 - parent: 2 - - uid: 20921 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 2 - - uid: 21489 - components: - - type: Transform - pos: 12.5,23.5 - parent: 2 - - uid: 21510 - components: - - type: Transform - pos: 16.5,36.5 - parent: 2 - - uid: 21511 - components: - - type: Transform - pos: 16.5,37.5 - parent: 2 - - uid: 21951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-7.5 - parent: 2 - - uid: 22019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,23.5 - parent: 2 - - uid: 22277 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 2 - - uid: 24137 - components: - - type: Transform - pos: 14.5,37.5 - parent: 2 - - uid: 24191 - components: - - type: Transform - pos: 68.5,-17.5 - parent: 2 - - uid: 24192 - components: - - type: Transform - pos: 7.5,-44.5 - parent: 2 - - uid: 24193 - components: - - type: Transform - pos: -51.5,-6.5 - parent: 2 - - uid: 24194 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 2 - - uid: 24195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-19.5 - parent: 2 - - uid: 24196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-0.5 - parent: 2 - - uid: 24197 - components: - - type: Transform - pos: 53.5,-33.5 - parent: 2 - - uid: 24198 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 2 - - uid: 24199 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 2 - - uid: 24200 - components: - - type: Transform - pos: 23.5,-19.5 - parent: 2 - - uid: 24202 - components: - - type: Transform - pos: 30.5,-8.5 - parent: 2 - - uid: 24203 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 2 - - uid: 24204 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 2 - - uid: 24205 - components: - - type: Transform - pos: 23.5,-17.5 - parent: 2 - - uid: 24206 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 2 - - uid: 24212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-22.5 - parent: 2 - - uid: 24216 - components: - - type: Transform - pos: -10.5,-14.5 - parent: 2 - - uid: 24217 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 2 - - uid: 24221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-21.5 - parent: 2 - - uid: 24222 - components: - - type: Transform - pos: 41.5,-6.5 - parent: 2 - - uid: 24225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-16.5 - parent: 2 - - uid: 24226 - components: - - type: Transform - pos: 60.5,-17.5 - parent: 2 - - uid: 24227 - components: - - type: Transform - pos: 1.5,22.5 - parent: 2 - - uid: 24228 - components: - - type: Transform - pos: 2.5,22.5 - parent: 2 - - uid: 24229 - components: - - type: Transform - pos: 3.5,23.5 - parent: 2 - - uid: 24230 - components: - - type: Transform - pos: 3.5,24.5 - parent: 2 - - uid: 24233 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 2 - - uid: 24234 - components: - - type: Transform - pos: 48.5,-10.5 - parent: 2 - - uid: 24235 - components: - - type: Transform - pos: 47.5,-10.5 - parent: 2 - - uid: 24241 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 2 - - uid: 24242 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 2 - - uid: 24249 - components: - - type: Transform - pos: -58.5,2.5 - parent: 2 - - uid: 24254 - components: - - type: Transform - pos: -23.5,1.5 - parent: 2 - - uid: 24255 - components: - - type: Transform - pos: -53.5,5.5 - parent: 2 - - uid: 24256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-19.5 - parent: 2 - - uid: 24259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-6.5 - parent: 2 - - uid: 24260 - components: - - type: Transform - pos: -51.5,-5.5 - parent: 2 - - uid: 24263 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 2 - - uid: 24264 - components: - - type: Transform - pos: -51.5,-4.5 - parent: 2 - - uid: 24265 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 2 - - uid: 24267 - components: - - type: Transform - pos: 29.5,-32.5 - parent: 2 - - uid: 24268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-19.5 - parent: 2 - - uid: 24269 - components: - - type: Transform - pos: 52.5,-33.5 - parent: 2 - - uid: 24270 - components: - - type: Transform - pos: 51.5,-33.5 - parent: 2 - - uid: 24271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,4.5 - parent: 2 - - uid: 24272 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 2 - - uid: 24275 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 2 - - uid: 24277 - components: - - type: Transform - pos: 54.5,-33.5 - parent: 2 - - uid: 24278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-20.5 - parent: 2 - - uid: 24279 - components: - - type: Transform - pos: 2.5,-43.5 - parent: 2 - - uid: 24280 - components: - - type: Transform - pos: -10.5,-11.5 - parent: 2 - - uid: 24281 - components: - - type: Transform - pos: -16.5,4.5 - parent: 2 - - uid: 24282 - components: - - type: Transform - pos: -16.5,2.5 - parent: 2 - - uid: 24283 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 2 - - uid: 24284 - components: - - type: Transform - pos: -12.5,-11.5 - parent: 2 - - uid: 24285 - components: - - type: Transform - pos: -16.5,3.5 - parent: 2 - - uid: 24290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-19.5 - parent: 2 - - uid: 24328 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 2 - - uid: 24329 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 2 - - uid: 25549 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 2 - - uid: 26218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,27.5 - parent: 2 - - uid: 26392 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 2 - - uid: 26403 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 2 - - uid: 26660 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 2 - - uid: 26974 - components: - - type: Transform - pos: -21.5,1.5 - parent: 2 - - uid: 28984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,25.5 - parent: 2 -- proto: TableReinforcedGlass - entities: - - uid: 24295 - components: - - type: Transform - pos: 69.5,-55.5 - parent: 2 - - uid: 24296 - components: - - type: Transform - pos: 68.5,-55.5 - parent: 2 - - uid: 24299 - components: - - type: Transform - pos: 63.5,12.5 - parent: 2 -- proto: TableStone - entities: - - uid: 435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,15.5 - parent: 2 - - uid: 2287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,15.5 - parent: 2 - - uid: 4129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,15.5 - parent: 2 -- proto: TableWood - entities: - - uid: 57 - components: - - type: Transform - pos: 59.5,-35.5 - parent: 2 - - uid: 150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,15.5 - parent: 2 - - uid: 180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,3.5 - parent: 2 - - uid: 841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,14.5 - parent: 2 - - uid: 857 - components: - - type: Transform - pos: 59.5,-72.5 - parent: 2 - - uid: 861 - components: - - type: Transform - pos: 57.5,-73.5 - parent: 2 - - uid: 862 - components: - - type: Transform - pos: 57.5,-72.5 - parent: 2 - - uid: 1301 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,17.5 - parent: 2 - - uid: 1302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,15.5 - parent: 2 - - uid: 1654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 2 - - uid: 1706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 2 - - uid: 1725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-17.5 - parent: 2 - - uid: 1726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 2 - - uid: 1753 - components: - - type: Transform - pos: 80.5,-28.5 - parent: 2 - - uid: 1811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,22.5 - parent: 2 - - uid: 1910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-15.5 - parent: 2 - - uid: 1911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-14.5 - parent: 2 - - uid: 2332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-15.5 - parent: 2 - - uid: 2358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-15.5 - parent: 2 - - uid: 2617 - components: - - type: Transform - pos: 81.5,-28.5 - parent: 2 - - uid: 2644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,5.5 - parent: 2 - - uid: 2645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,3.5 - parent: 2 - - uid: 2647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,4.5 - parent: 2 - - uid: 2661 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,3.5 - parent: 2 - - uid: 2665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 - parent: 2 - - uid: 3346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,5.5 - parent: 2 - - uid: 5047 - components: - - type: Transform - pos: 59.5,-73.5 - parent: 2 - - uid: 5147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 2 - - uid: 5451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,20.5 - parent: 2 - - uid: 5612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-30.5 - parent: 2 - - uid: 5629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-27.5 - parent: 2 - - uid: 5766 - components: - - type: Transform - pos: 80.5,-27.5 - parent: 2 - - uid: 5844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-31.5 - parent: 2 - - uid: 5845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-33.5 - parent: 2 - - uid: 5846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-32.5 - parent: 2 - - uid: 5847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-31.5 - parent: 2 - - uid: 6700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,21.5 - parent: 2 - - uid: 6736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,22.5 - parent: 2 - - uid: 7564 - components: - - type: Transform - pos: 24.5,19.5 - parent: 2 - - uid: 9037 - components: - - type: Transform - pos: 60.5,-37.5 - parent: 2 - - uid: 9045 - components: - - type: Transform - pos: 59.5,-37.5 - parent: 2 - - uid: 9769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,16.5 - parent: 2 - - uid: 10540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,21.5 - parent: 2 - - uid: 10547 - components: - - type: Transform - pos: 53.5,-72.5 - parent: 2 - - uid: 10548 - components: - - type: Transform - pos: 62.5,-72.5 - parent: 2 - - uid: 10571 - components: - - type: Transform - pos: 54.5,-72.5 - parent: 2 - - uid: 10573 - components: - - type: Transform - pos: 63.5,-72.5 - parent: 2 - - uid: 10731 - components: - - type: Transform - pos: 14.5,22.5 - parent: 2 - - uid: 10732 - components: - - type: Transform - pos: 14.5,21.5 - parent: 2 - - uid: 10734 - components: - - type: Transform - pos: 14.5,23.5 - parent: 2 - - uid: 11840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,14.5 - parent: 2 - - uid: 12288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,5.5 - parent: 2 - - uid: 13166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,32.5 - parent: 2 - - uid: 13227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,29.5 - parent: 2 - - uid: 18288 - components: - - type: Transform - pos: 5.5,9.5 - parent: 2 - - uid: 18933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,32.5 - parent: 2 - - uid: 19169 - components: - - type: Transform - pos: 5.5,5.5 - parent: 2 - - uid: 20006 - components: - - type: Transform - pos: 14.5,19.5 - parent: 2 - - uid: 20008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,23.5 - parent: 2 - - uid: 21026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,33.5 - parent: 2 - - uid: 21251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,29.5 - parent: 2 - - uid: 22070 - components: - - type: Transform - pos: 3.5,-14.5 - parent: 2 - - uid: 22078 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-15.5 - parent: 2 - - uid: 22120 - components: - - type: Transform - pos: 6.5,-23.5 - parent: 2 - - uid: 22639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-40.5 - parent: 2 - - uid: 22661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-40.5 - parent: 2 - - uid: 23314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-68.5 - parent: 2 - - uid: 23329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-68.5 - parent: 2 - - uid: 23538 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-68.5 - parent: 2 - - uid: 23667 - components: - - type: Transform - pos: 12.5,43.5 - parent: 2 - - uid: 24304 - components: - - type: Transform - pos: 45.5,-62.5 - parent: 2 - - uid: 24305 - components: - - type: Transform - pos: 74.5,-3.5 - parent: 2 - - uid: 24306 - components: - - type: Transform - pos: 68.5,-6.5 - parent: 2 - - uid: 24307 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 2 - - uid: 24308 - components: - - type: Transform - pos: 65.5,-6.5 - parent: 2 - - uid: 24309 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 24310 - components: - - type: Transform - pos: 15.5,42.5 - parent: 2 - - uid: 24311 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 2 - - uid: 24312 - components: - - type: Transform - pos: 9.5,-16.5 - parent: 2 - - uid: 24315 - components: - - type: Transform - pos: 12.5,42.5 - parent: 2 - - uid: 24317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-21.5 - parent: 2 - - uid: 24318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-22.5 - parent: 2 - - uid: 24319 - components: - - type: Transform - pos: 11.5,-17.5 - parent: 2 - - uid: 24320 - components: - - type: Transform - pos: 4.5,15.5 - parent: 2 - - uid: 24321 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 2 - - uid: 24322 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 2 - - uid: 24323 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 2 - - uid: 24330 - components: - - type: Transform - pos: -11.5,-21.5 - parent: 2 - - uid: 24339 - components: - - type: Transform - pos: 23.5,4.5 - parent: 2 - - uid: 24340 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 2 - - uid: 24341 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 2 - - uid: 24342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-9.5 - parent: 2 - - uid: 24343 - components: - - type: Transform - pos: 22.5,-2.5 - parent: 2 - - uid: 24344 - components: - - type: Transform - pos: 19.5,-7.5 - parent: 2 - - uid: 24345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 2 - - uid: 24346 - components: - - type: Transform - pos: 16.5,45.5 - parent: 2 - - uid: 24347 - components: - - type: Transform - pos: 14.5,45.5 - parent: 2 - - uid: 24362 - components: - - type: Transform - pos: 14.5,42.5 - parent: 2 - - uid: 24363 - components: - - type: Transform - pos: 18.5,42.5 - parent: 2 - - uid: 24365 - components: - - type: Transform - pos: 12.5,41.5 - parent: 2 - - uid: 24366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,4.5 - parent: 2 - - uid: 24367 - components: - - type: Transform - pos: 27.5,2.5 - parent: 2 - - uid: 24368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-23.5 - parent: 2 - - uid: 24369 - components: - - type: Transform - pos: 72.5,-3.5 - parent: 2 - - uid: 24370 - components: - - type: Transform - pos: 55.5,1.5 - parent: 2 - - uid: 24371 - components: - - type: Transform - pos: 56.5,1.5 - parent: 2 - - uid: 24372 - components: - - type: Transform - pos: 55.5,0.5 - parent: 2 - - uid: 24373 - components: - - type: Transform - pos: 56.5,0.5 - parent: 2 - - uid: 24374 - components: - - type: Transform - pos: 64.5,1.5 - parent: 2 - - uid: 24375 - components: - - type: Transform - pos: 65.5,1.5 - parent: 2 - - uid: 24376 - components: - - type: Transform - pos: 57.5,-10.5 - parent: 2 - - uid: 24377 - components: - - type: Transform - pos: 56.5,3.5 - parent: 2 - - uid: 24378 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 2 - - uid: 24379 - components: - - type: Transform - pos: 7.5,-15.5 - parent: 2 - - uid: 24380 - components: - - type: Transform - pos: 57.5,20.5 - parent: 2 - - uid: 24382 - components: - - type: Transform - pos: 55.5,18.5 - parent: 2 - - uid: 24383 - components: - - type: Transform - pos: 55.5,17.5 - parent: 2 - - uid: 24384 - components: - - type: Transform - pos: -61.5,-1.5 - parent: 2 - - uid: 24385 - components: - - type: Transform - pos: -60.5,-1.5 - parent: 2 - - uid: 24386 - components: - - type: Transform - pos: -60.5,-2.5 - parent: 2 - - uid: 24387 - components: - - type: Transform - pos: -61.5,-2.5 - parent: 2 - - uid: 24388 - components: - - type: Transform - pos: -57.5,-0.5 - parent: 2 - - uid: 24389 - components: - - type: Transform - pos: -57.5,-3.5 - parent: 2 - - uid: 24397 - components: - - type: Transform - pos: 66.5,1.5 - parent: 2 - - uid: 24405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,2.5 - parent: 2 - - uid: 24406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-7.5 - parent: 2 - - uid: 24407 - components: - - type: Transform - pos: 45.5,-63.5 - parent: 2 - - uid: 24408 - components: - - type: Transform - pos: 44.5,-62.5 - parent: 2 - - uid: 24410 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 2 - - uid: 24411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,42.5 - parent: 2 - - uid: 24412 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 2 - - uid: 24413 - components: - - type: Transform - pos: 56.5,-35.5 - parent: 2 - - uid: 24414 - components: - - type: Transform - pos: 56.5,-34.5 - parent: 2 - - uid: 24415 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 2 - - uid: 24416 - components: - - type: Transform - pos: 4.5,14.5 - parent: 2 - - uid: 24418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 2 - - uid: 24419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 2 - - uid: 24420 - components: - - type: Transform - pos: -14.5,40.5 - parent: 2 - - uid: 24421 - components: - - type: Transform - pos: -14.5,41.5 - parent: 2 - - uid: 24422 - components: - - type: Transform - pos: 10.5,-34.5 - parent: 2 - - uid: 24423 - components: - - type: Transform - pos: 11.5,-33.5 - parent: 2 - - uid: 24424 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 2 - - uid: 24427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-6.5 - parent: 2 - - uid: 24428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-7.5 - parent: 2 - - uid: 24429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-7.5 - parent: 2 - - uid: 24430 - components: - - type: Transform - pos: 67.5,-2.5 - parent: 2 - - uid: 24436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-27.5 - parent: 2 - - uid: 24437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-27.5 - parent: 2 - - uid: 24438 - components: - - type: Transform - pos: 70.5,-10.5 - parent: 2 - - uid: 24439 - components: - - type: Transform - pos: 72.5,-10.5 - parent: 2 - - uid: 24440 - components: - - type: Transform - pos: 74.5,-10.5 - parent: 2 - - uid: 24441 - components: - - type: Transform - pos: 76.5,-10.5 - parent: 2 - - uid: 24444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-4.5 - parent: 2 - - uid: 24445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-2.5 - parent: 2 - - uid: 24446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-2.5 - parent: 2 - - uid: 24447 - components: - - type: Transform - pos: 57.5,-6.5 - parent: 2 - - uid: 24448 - components: - - type: Transform - pos: 61.5,-10.5 - parent: 2 - - uid: 25289 - components: - - type: Transform - pos: 62.5,25.5 - parent: 2 - - uid: 25665 - components: - - type: Transform - pos: 24.5,18.5 - parent: 2 - - uid: 26188 - components: - - type: Transform - pos: -58.5,-29.5 - parent: 2 - - uid: 28322 - components: - - type: Transform - pos: 4.5,9.5 - parent: 2 - - uid: 29626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,15.5 - parent: 2 - - uid: 29780 - components: - - type: Transform - pos: -7.5,1.5 - parent: 2 - - uid: 29781 - components: - - type: Transform - pos: -8.5,7.5 - parent: 2 - - uid: 29784 - components: - - type: Transform - pos: -10.5,17.5 - parent: 2 - - uid: 29803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,17.5 - parent: 2 - - uid: 29804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,16.5 - parent: 2 - - uid: 29807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,14.5 - parent: 2 - - uid: 29835 - components: - - type: Transform - pos: -57.5,-29.5 - parent: 2 - - uid: 30400 - components: - - type: Transform - pos: -30.5,23.5 - parent: 2 - - uid: 30403 - components: - - type: Transform - pos: -31.5,23.5 - parent: 2 - - uid: 30404 - components: - - type: Transform - pos: -31.5,22.5 - parent: 2 - - uid: 30405 - components: - - type: Transform - pos: -32.5,24.5 - parent: 2 - - uid: 30406 - components: - - type: Transform - pos: -32.5,23.5 - parent: 2 - - uid: 30407 - components: - - type: Transform - pos: -32.5,22.5 - parent: 2 - - uid: 30528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,23.5 - parent: 2 - - uid: 30538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,27.5 - parent: 2 - - uid: 30541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,27.5 - parent: 2 - - uid: 30789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,26.5 - parent: 2 - - uid: 30800 - components: - - type: Transform - pos: 62.5,23.5 - parent: 2 - - uid: 30801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,22.5 - parent: 2 - - uid: 30805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,22.5 - parent: 2 - - uid: 30811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,26.5 - parent: 2 - - uid: 30849 - components: - - type: Transform - pos: 70.5,27.5 - parent: 2 - - uid: 30850 - components: - - type: Transform - pos: 70.5,26.5 - parent: 2 - - uid: 30851 - components: - - type: Transform - pos: 70.5,21.5 - parent: 2 - - uid: 30852 - components: - - type: Transform - pos: 70.5,22.5 - parent: 2 - - uid: 31474 - components: - - type: Transform - pos: 57.5,-80.5 - parent: 2 - - uid: 31477 - components: - - type: Transform - pos: 57.5,-81.5 - parent: 2 -- proto: TargetClown - entities: - - uid: 9873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,26.5 - parent: 2 - - uid: 9937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,28.5 - parent: 2 - - uid: 21035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,27.5 - parent: 2 -- proto: TegCenter - entities: - - uid: 25173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-77.5 - parent: 2 -- proto: TegCirculator - entities: - - uid: 25167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-78.5 - parent: 2 - - type: PointLight - color: '#FF3300FF' - - uid: 25363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-76.5 - parent: 2 - - type: PointLight - color: '#FF3300FF' -- proto: TelecomServer - entities: - - uid: 13427 - components: - - type: Transform - pos: -12.5,-50.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 13428 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 13429 - components: - - type: Transform - pos: -14.5,-57.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 13430 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 13431 - components: - - type: Transform - pos: -12.5,-56.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 13432 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 13433 - components: - - type: Transform - pos: -12.5,-49.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 13434 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 13435 - components: - - type: Transform - pos: -14.5,-49.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 13436 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 13437 - components: - - type: Transform - pos: -14.5,-50.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 13438 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 13439 - components: - - type: Transform - pos: -14.5,-56.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 13440 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 13441 - components: - - type: Transform - pos: -12.5,-57.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 13442 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 24453 - components: - - type: Transform - pos: 53.5,-31.5 - parent: 2 -- proto: TelecomServerFilledCommand - entities: - - uid: 19005 - components: - - type: Transform - pos: -14.5,-51.5 - parent: 2 -- proto: TelecomServerFilledLaw - entities: - - uid: 17946 - components: - - type: Transform - pos: -14.5,-55.5 - parent: 2 -- proto: TelescopicShield - entities: - - uid: 11357 - components: - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11358 - components: - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11359 - components: - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24473 - components: - - type: Transform - pos: 1.497292,45.50518 - parent: 2 - - uid: 24475 - components: - - type: Transform - pos: 1.512917,46.56768 - parent: 2 - - uid: 24571 - components: - - type: Transform - pos: 1.544167,47.53643 - parent: 2 -- proto: TeslaCoil - entities: - - uid: 16399 - components: - - type: Transform - pos: 18.5,-85.5 - parent: 2 - - uid: 18430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-85.5 - parent: 2 - - uid: 19235 - components: - - type: Transform - pos: 18.5,-89.5 - parent: 2 - - uid: 20672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-87.5 - parent: 2 - - uid: 23295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-66.5 - parent: 2 - - uid: 24224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-67.5 - parent: 2 - - uid: 25179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-87.5 - parent: 2 - - uid: 27605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-86.5 - parent: 2 - - uid: 27608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-86.5 - parent: 2 - - uid: 27707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-85.5 - parent: 2 -- proto: TeslaGenerator - entities: - - uid: 24236 - components: - - type: Transform - pos: -23.5,-71.5 - parent: 2 -- proto: TeslaGroundingRod - entities: - - uid: 1024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-84.5 - parent: 2 - - uid: 7215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-66.5 - parent: 2 - - uid: 17053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-84.5 - parent: 2 - - uid: 18844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-90.5 - parent: 2 - - uid: 18845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-90.5 - parent: 2 - - uid: 20754 - components: - - type: Transform - pos: 15.5,-90.5 - parent: 2 - - uid: 24220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-67.5 - parent: 2 - - uid: 24461 - components: - - type: Transform - pos: 4.5,-79.5 - parent: 2 - - uid: 24462 - components: - - type: Transform - pos: 3.5,-79.5 - parent: 2 - - uid: 24463 - components: - - type: Transform - pos: 6.5,-79.5 - parent: 2 - - uid: 24464 - components: - - type: Transform - pos: 5.5,-79.5 - parent: 2 - - uid: 28018 - components: - - type: Transform - pos: 21.5,-84.5 - parent: 2 - - uid: 28055 - components: - - type: Transform - pos: 15.5,-84.5 - parent: 2 - - uid: 29973 - components: - - type: Transform - pos: 21.5,-90.5 - parent: 2 -- proto: Thruster - entities: - - uid: 749 - components: - - type: Transform - pos: -72.5,15.5 - parent: 2 - - uid: 2771 - components: - - type: Transform - pos: -70.5,16.5 - parent: 2 - - uid: 3049 - components: - - type: Transform - pos: -70.5,14.5 - parent: 2 - - uid: 17534 - components: - - type: Transform - pos: -72.5,16.5 - parent: 2 -- proto: TimpaniInstrument - entities: - - uid: 24468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-8.5 - parent: 2 -- proto: TintedWindow - entities: - - uid: 24471 - components: - - type: Transform - pos: 29.5,-26.5 - parent: 2 - - uid: 24472 - components: - - type: Transform - pos: 33.5,-26.5 - parent: 2 - - uid: 24474 - components: - - type: Transform - pos: 43.5,-32.5 - parent: 2 - - uid: 24476 - components: - - type: Transform - pos: 43.5,-33.5 - parent: 2 - - uid: 24477 - components: - - type: Transform - pos: 43.5,-34.5 - parent: 2 - - uid: 24478 - components: - - type: Transform - pos: 69.5,-3.5 - parent: 2 - - uid: 24479 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 2 - - uid: 24480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-6.5 - parent: 2 - - uid: 24481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-9.5 - parent: 2 -- proto: TobaccoSeeds - entities: - - uid: 30562 - components: - - type: Transform - pos: -34.44884,42.58075 - parent: 2 - - uid: 30563 - components: - - type: Transform - pos: -37.495716,46.33075 - parent: 2 -- proto: ToiletDirtyWater - entities: - - uid: 24482 - components: - - type: Transform - pos: 14.5,3.5 - parent: 2 - - uid: 24483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-54.5 - parent: 2 - - uid: 24484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-56.5 - parent: 2 - - uid: 24485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-58.5 - parent: 2 - - uid: 24486 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,40.5 - parent: 2 - - uid: 31742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-14.5 - parent: 2 -- proto: ToiletGoldenDirtyWater - entities: - - uid: 24490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-21.5 - parent: 2 -- proto: ToolboxArtistic - entities: - - uid: 24491 - components: - - type: Transform - pos: -34.499626,-5.94352 - parent: 2 -- proto: ToolboxElectricalFilled - entities: - - uid: 11260 - components: - - type: Transform - pos: -1.4934335,30.5773 - parent: 2 - - uid: 24493 - components: - - type: Transform - pos: 43.497356,5.7166862 - parent: 2 - - uid: 24494 - components: - - type: Transform - pos: 47.537563,-38.378395 - parent: 2 - - uid: 24496 - components: - - type: Transform - pos: 48.5,11.5 - parent: 2 - - uid: 24497 - components: - - type: Transform - pos: -46.5,2.5 - parent: 2 - - uid: 24498 - components: - - type: Transform - pos: -45.5,22.5 - parent: 2 - - uid: 24499 - components: - - type: Transform - rot: 0.0005229588132351637 rad - pos: -29.737185,-45.684746 - parent: 2 - - uid: 24500 - components: - - type: Transform - pos: -5.5,-39.5 - parent: 2 - - uid: 24501 - components: - - type: Transform - pos: -6.5,-39.5 - parent: 2 - - uid: 24502 - components: - - type: Transform - pos: 78.5,-62.5 - parent: 2 - - uid: 24505 - components: - - type: Transform - pos: 56.482986,-24.363972 - parent: 2 - - uid: 24506 - components: - - type: Transform - pos: -16.517702,4.691431 - parent: 2 - - uid: 30162 - components: - - type: Transform - pos: 22.476938,43.04751 - parent: 2 -- proto: ToolboxEmergency - entities: - - uid: 24508 - components: - - type: Transform - pos: 35.95467,23.709267 - parent: 2 -- proto: ToolboxEmergencyFilled - entities: - - uid: 24510 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 2 - - uid: 24513 - components: - - type: Transform - pos: -1.5837178,-71.39313 - parent: 2 - - uid: 25918 - components: - - type: Transform - pos: 4.4907303,-6.4373007 - parent: 2 - - uid: 29379 - components: - - type: Transform - pos: 79.50137,-2.4408333 - parent: 2 - - uid: 31347 - components: - - type: Transform - pos: 22.489653,28.541187 - parent: 2 -- proto: ToolboxMechanicalFilled - entities: - - uid: 19258 - components: - - type: Transform - pos: -1.4934335,30.780424 - parent: 2 - - uid: 19399 - components: - - type: Transform - pos: 76.53685,4.519326 - parent: 2 - - uid: 19400 - components: - - type: Transform - pos: 78.50427,7.5412827 - parent: 2 - - uid: 24517 - components: - - type: Transform - pos: 46.5,13.5 - parent: 2 - - uid: 24518 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 24519 - components: - - type: Transform - pos: -37.5,3.5000002 - parent: 2 - - uid: 24520 - components: - - type: Transform - pos: -39.5,5.5 - parent: 2 - - uid: 24521 - components: - - type: Transform - pos: -46.5,22.5 - parent: 2 - - uid: 24522 - components: - - type: Transform - pos: -28.5,-34.5 - parent: 2 - - uid: 24523 - components: - - type: Transform - pos: -34.5,-63.5 - parent: 2 - - uid: 24524 - components: - - type: Transform - pos: -29.300238,-45.38687 - parent: 2 - - uid: 24525 - components: - - type: Transform - pos: -5.492169,-57.366646 - parent: 2 - - uid: 24526 - components: - - type: Transform - pos: 6.4599867,-44.36032 - parent: 2 - - uid: 24532 - components: - - type: Transform - pos: 6.450849,-74.36196 - parent: 2 - - uid: 24534 - components: - - type: Transform - pos: 69.27437,-80.45532 - parent: 2 - - uid: 24535 - components: - - type: Transform - pos: -16.505388,4.550806 - parent: 2 - - uid: 29409 - components: - - type: Transform - pos: 71.99484,-16.383312 - parent: 2 - - uid: 30163 - components: - - type: Transform - pos: 22.475843,42.769157 - parent: 2 -- proto: TowelColorGold - entities: - - uid: 24349 - components: - - type: Transform - pos: -2.5447462,-22.61196 - parent: 2 -- proto: TowelColorSilver - entities: - - uid: 24531 - components: - - type: Transform - pos: 1.4621983,-22.355015 - parent: 2 -- proto: ToyFigurineCaptain - entities: - - uid: 24537 - components: - - type: Transform - pos: 7.971634,-27.511358 - parent: 2 -- proto: ToyFigurineChaplain - entities: - - uid: 24538 - components: - - type: Transform - pos: 64.91415,1.5946889 - parent: 2 -- proto: ToyFigurineClown - entities: - - uid: 23921 - components: - - type: MetaData - name: фигурка Главы Службы Безопасности - - type: Transform - pos: 14.525252,36.637566 - parent: 2 -- proto: ToyFigurineHeadOfSecurity - entities: - - uid: 24539 - components: - - type: Transform - pos: 8.424759,-27.667608 - parent: 2 -- proto: ToyFigurineLibrarian - entities: - - uid: 24541 - components: - - type: Transform - pos: 64.51727,-2.4072466 - parent: 2 -- proto: ToyFigurineNukie - entities: - - uid: 24542 - components: - - type: Transform - pos: 6.534134,-27.245733 - parent: 2 -- proto: ToyFigurineNukieCommander - entities: - - uid: 24543 - components: - - type: Transform - pos: 7.018509,-27.495733 - parent: 2 -- proto: ToyFigurineNukieElite - entities: - - uid: 24544 - components: - - type: Transform - pos: 6.518509,-27.714483 - parent: 2 -- proto: ToyFigurineSecurity - entities: - - uid: 24546 - components: - - type: Transform - pos: 8.471634,-27.276983 - parent: 2 -- proto: ToyMouse - entities: - - uid: 24547 - components: - - type: Transform - pos: 35.67903,-38.52378 - parent: 2 -- proto: ToyRubberDuck - entities: - - uid: 24548 - components: - - type: Transform - pos: 10.494166,-22.655447 - parent: 2 - - uid: 24549 - components: - - type: Transform - pos: 16.5,5.5 - parent: 2 -- proto: ToySpawner - entities: - - uid: 24550 - components: - - type: Transform - pos: 4.5,11.5 - parent: 2 - - uid: 24551 - components: - - type: Transform - pos: 58.5,17.5 - parent: 2 - - uid: 24553 - components: - - type: Transform - pos: -28.5,-55.5 - parent: 2 -- proto: TrashBag - entities: - - uid: 24555 - components: - - type: Transform - pos: -53.5,3.5 - parent: 2 - - uid: 24556 - components: - - type: Transform - pos: -49.68496,-6.4370565 - parent: 2 - - uid: 24557 - components: - - type: Transform - pos: -49.68496,-6.4370565 - parent: 2 - - uid: 24558 - components: - - type: Transform - pos: -49.68496,-6.4370565 - parent: 2 - - uid: 24559 - components: - - type: Transform - pos: -23.561554,51.44249 - parent: 2 -- proto: TrashBananaPeel - entities: - - uid: 22105 - components: - - type: Transform - pos: 15.5229,39.431404 - parent: 2 - - uid: 24563 - components: - - type: Transform - pos: 32.561905,15.311721 - parent: 2 - - uid: 24564 - components: - - type: Transform - pos: 79.44753,-17.678238 - parent: 2 - - uid: 24565 - components: - - type: Transform - pos: 36.501545,22.61869 - parent: 2 - - uid: 26753 - components: - - type: Transform - pos: 29.470585,23.732113 - parent: 2 - - uid: 30587 - components: - - type: Transform - pos: 30.50903,20.423693 - parent: 2 - - uid: 30786 - components: - - type: Transform - pos: 30.50903,22.402859 - parent: 2 -- proto: trayScanner - entities: - - uid: 24566 - components: - - type: Transform - pos: 51.56124,-43.44272 - parent: 2 - - uid: 24568 - components: - - type: Transform - pos: -6.5,-39.5 - parent: 2 - - uid: 24569 - components: - - type: Transform - pos: 7.5693617,-44.500946 - parent: 2 - - uid: 32147 - components: - - type: Transform - pos: -44.53058,5.697184 - parent: 2 -- proto: TwoWayLever - entities: - - uid: 9219 - components: - - type: Transform - pos: -39.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 28734: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 20043: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 31678: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 31731: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 28735: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 20136: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 11663: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - - uid: 11060 - components: - - type: Transform - pos: -44.5,-41.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 11309: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 11023: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 5558: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 17471: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 11165: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 11061: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 5594: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 5520: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 1947: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 11164: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 11016: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 31884: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 11977: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 6555: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 12440: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 11697: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - - uid: 13533 - components: - - type: Transform - pos: -40.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 11656: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - - uid: 18106 - components: - - type: Transform - pos: -25.5,-21.5 - parent: 2 - - uid: 24576 - components: - - type: Transform - pos: -59.5,-18.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 28184: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 27551: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 28185: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 28186: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 23540: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 23634: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 28197: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - - uid: 24577 - components: - - type: Transform - pos: 88.5,-25.5 - parent: 2 - - uid: 25499 - components: - - type: Transform - pos: -36.5,-34.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 3056: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 16668: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 16670: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 10188: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 19587: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 20522: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off -- proto: UnfinishedMachineFrame - entities: - - uid: 24590 - components: - - type: Transform - pos: -38.5,43.5 - parent: 2 - - uid: 30357 - components: - - type: Transform - pos: -34.5,41.5 - parent: 2 -- proto: UniformPrinter - entities: - - uid: 24580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-23.5 - parent: 2 -- proto: UprightPianoInstrument - entities: - - uid: 24581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,22.5 - parent: 2 -- proto: Vaccinator - entities: - - uid: 24582 - components: - - type: Transform - pos: 41.5,-59.5 - parent: 2 - - type: ContainerContainer - containers: - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - mixer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: Vape - entities: - - uid: 24583 - components: - - type: Transform - pos: 18.466734,-9.393926 - parent: 2 -- proto: VariantCubeBox - entities: - - uid: 24584 - components: - - type: Transform - pos: 45.5,-52.5 - parent: 2 -- proto: VendingBarDrobe - entities: - - uid: 24585 - components: - - type: Transform - pos: 23.5,2.5 - parent: 2 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 25794 - components: - - type: Transform - pos: 5.5,-46.5 - parent: 2 -- proto: VendingMachineBarber - entities: - - uid: 4888 - components: - - type: Transform - pos: 24.5,12.5 - parent: 2 -- proto: VendingMachineBooze - entities: - - uid: 22304 - components: - - type: Transform - pos: 85.5,0.5 - parent: 2 - - uid: 24588 - components: - - type: Transform - pos: 9.5,-14.5 - parent: 2 - - uid: 24589 - components: - - type: Transform - pos: 22.5,0.5 - parent: 2 -- proto: VendingMachineCargoDrobe - entities: - - uid: 24591 - components: - - type: Transform - pos: -30.5,-22.5 - parent: 2 -- proto: VendingMachineCart - entities: - - uid: 24592 - components: - - type: Transform - pos: -8.5,-21.5 - parent: 2 -- proto: VendingMachineChang - entities: - - uid: 24593 - components: - - type: Transform - pos: 57.5,-37.5 - parent: 2 - - uid: 24594 - components: - - type: Transform - pos: 44.5,-31.5 - parent: 2 - - uid: 24595 - components: - - type: Transform - pos: 51.5,-24.5 - parent: 2 -- proto: VendingMachineChapel - entities: - - uid: 24596 - components: - - type: Transform - pos: 67.5,-4.5 - parent: 2 -- proto: VendingMachineChefDrobe - entities: - - uid: 24597 - components: - - type: Transform - pos: 31.5,-4.5 - parent: 2 -- proto: VendingMachineChefvend - entities: - - uid: 24598 - components: - - type: Transform - pos: 35.5,-2.5 - parent: 2 -- proto: VendingMachineChemDrobe - entities: - - uid: 24599 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 2 -- proto: VendingMachineChemicals - entities: - - uid: 24600 - components: - - type: Transform - pos: 18.5,-21.5 - parent: 2 -- proto: VendingMachineCigs - entities: - - uid: 11355 - components: - - type: Transform - pos: 27.5,17.5 - parent: 2 - - uid: 17163 - components: - - type: Transform - pos: 85.5,1.5 - parent: 2 - - uid: 23627 - components: - - type: Transform - pos: -8.5,10.5 - parent: 2 - - uid: 24601 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 2 - - uid: 24602 - components: - - type: Transform - pos: 81.5,-4.5 - parent: 2 - - uid: 24603 - components: - - type: Transform - pos: 68.5,-47.5 - parent: 2 - - uid: 24604 - components: - - type: Transform - pos: 37.5,-16.5 - parent: 2 - - uid: 24605 - components: - - type: Transform - pos: 21.5,-8.5 - parent: 2 - - uid: 24606 - components: - - type: Transform - pos: -38.5,5.5 - parent: 2 - - uid: 24607 - components: - - type: Transform - pos: -55.5,-0.5 - parent: 2 - - uid: 24610 - components: - - type: Transform - pos: -18.5,-9.5 - parent: 2 - - uid: 24611 - components: - - type: Transform - pos: 53.5,-37.5 - parent: 2 - - uid: 24613 - components: - - type: Transform - pos: 68.5,-10.5 - parent: 2 - - uid: 24614 - components: - - type: Transform - pos: 10.5,32.5 - parent: 2 - - uid: 26401 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 2 -- proto: VendingMachineClothing - entities: - - uid: 1780 - components: - - type: Transform - pos: 18.5,11.5 - parent: 2 - - uid: 24617 - components: - - type: Transform - pos: 31.5,23.5 - parent: 2 -- proto: VendingMachineClown - entities: - - uid: 29306 - components: - - type: Transform - pos: 29.5,19.5 - parent: 2 -- proto: VendingMachineCoffee - entities: - - uid: 388 - components: - - type: Transform - pos: 13.5,-36.5 - parent: 2 - - uid: 23405 - components: - - type: Transform - pos: 3.5,-16.5 - parent: 2 - - uid: 24620 - components: - - type: Transform - pos: 55.5,-10.5 - parent: 2 - - uid: 24621 - components: - - type: Transform - pos: 84.5,-15.5 - parent: 2 - - uid: 24622 - components: - - type: Transform - pos: -74.5,8.5 - parent: 2 - - uid: 24623 - components: - - type: Transform - pos: 44.5,-32.5 - parent: 2 - - uid: 24624 - components: - - type: Transform - pos: 9.5,-51.5 - parent: 2 - - uid: 24626 - components: - - type: Transform - pos: 52.5,-24.5 - parent: 2 -- proto: VendingMachineCoffeeMigrateUnderwear - entities: - - uid: 23850 - components: - - type: Transform - pos: 16.5,11.5 - parent: 2 -- proto: VendingMachineCola - entities: - - uid: 24629 - components: - - type: Transform - pos: -18.5,-10.5 - parent: 2 -- proto: VendingMachineDetDrobe - entities: - - uid: 1931 - components: - - type: Transform - pos: 16.5,23.5 - parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 24631 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 2 -- proto: VendingMachineDiscount - entities: - - uid: 24632 - components: - - type: Transform - pos: -71.5,-16.5 - parent: 2 -- proto: VendingMachineDonut - entities: - - uid: 10725 - components: - - type: Transform - pos: 81.5,-2.5 - parent: 2 - - uid: 10821 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 2 - - uid: 17970 - components: - - type: Transform - pos: 11.5,37.5 - parent: 2 -- proto: VendingMachineDonutMigrateKinko - entities: - - uid: 23853 - components: - - type: Transform - pos: 17.5,11.5 - parent: 2 -- proto: VendingMachineEngiDrobe - entities: - - uid: 24635 - components: - - type: Transform - pos: 0.5,-66.5 - parent: 2 -- proto: VendingMachineEngivend - entities: - - uid: 24636 - components: - - type: Transform - pos: 6.5,-59.5 - parent: 2 -- proto: VendingMachineGames - entities: - - uid: 427 - components: - - type: Transform - pos: 81.5,-25.5 - parent: 2 - - uid: 14975 - components: - - type: Transform - pos: -6.5,45.5 - parent: 2 - - uid: 24637 - components: - - type: Transform - pos: 53.5,2.5 - parent: 2 -- proto: VendingMachineGeneDrobe - entities: - - uid: 24638 - components: - - type: Transform - pos: 32.5,-20.5 - parent: 2 -- proto: VendingMachineHappyHonk - entities: - - uid: 24639 - components: - - type: Transform - pos: 35.5,0.5 - parent: 2 -- proto: VendingMachineHydrobe - entities: - - uid: 24640 - components: - - type: Transform - pos: 49.5,1.5 - parent: 2 -- proto: VendingMachineJaniDrobe - entities: - - uid: 31680 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 2 -- proto: VendingMachineLawDrobe - entities: - - uid: 8190 - components: - - type: Transform - pos: -10.5,15.5 - parent: 2 -- proto: VendingMachineMailDrobe - entities: - - uid: 32128 - components: - - type: Transform - pos: -22.5,-19.5 - parent: 2 -- proto: VendingMachineMayson - entities: - - uid: 24643 - components: - - type: Transform - pos: 21.5,-7.5 - parent: 2 -- proto: VendingMachineMedical - entities: - - uid: 13443 - components: - - type: Transform - pos: -11.5,29.5 - parent: 2 - - uid: 24645 - components: - - type: Transform - pos: 33.5,-22.5 - parent: 2 - - uid: 24646 - components: - - type: Transform - pos: 38.5,-26.5 - parent: 2 - - uid: 24647 - components: - - type: Transform - pos: 18.5,-24.5 - parent: 2 - - uid: 24648 - components: - - type: Transform - pos: 47.5,-55.5 - parent: 2 -- proto: VendingMachineMediDrobe - entities: - - uid: 24649 - components: - - type: Transform - pos: 33.5,-20.5 - parent: 2 -- proto: VendingMachineNutri - entities: - - uid: 24650 - components: - - type: Transform - pos: 45.5,-6.5 - parent: 2 -- proto: VendingMachineRoboDrobe - entities: - - uid: 549 - components: - - type: Transform - pos: 52.5,-20.5 - parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 8896 - components: - - type: Transform - pos: 51.5,-20.5 - parent: 2 -- proto: VendingMachineSalvage - entities: - - uid: 24653 - components: - - type: Transform - pos: -28.5,-31.5 - parent: 2 -- proto: VendingMachineSciDrobe - entities: - - uid: 5288 - components: - - type: Transform - pos: 75.5,-28.5 - parent: 2 -- proto: VendingMachineSec - entities: - - uid: 18636 - components: - - type: Transform - pos: 2.5,35.5 - parent: 2 - - uid: 24656 - components: - - type: Transform - pos: 10.5,39.5 - parent: 2 -- proto: VendingMachineSecDrobe - entities: - - uid: 9795 - components: - - type: Transform - pos: 10.5,42.5 - parent: 2 - - uid: 21344 - components: - - type: Transform - pos: -22.5,-31.5 - parent: 2 - - uid: 21514 - components: - - type: Transform - pos: -61.5,5.5 - parent: 2 - - uid: 24658 - components: - - type: Transform - pos: 39.5,-19.5 - parent: 2 - - uid: 24661 - components: - - type: Transform - pos: 63.5,-24.5 - parent: 2 - - uid: 24662 - components: - - type: Transform - pos: -2.5,-61.5 - parent: 2 -- proto: VendingMachineSeeds - entities: - - uid: 24663 - components: - - type: Transform - pos: 46.5,-6.5 - parent: 2 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 5505 - components: - - type: Transform - pos: -14.5,47.5 - parent: 2 -- proto: VendingMachineSnack - entities: - - uid: 24665 - components: - - type: Transform - pos: -73.5,-3.5 - parent: 2 -- proto: VendingMachineSovietSoda - entities: - - uid: 24666 - components: - - type: Transform - pos: 61.5,19.5 - parent: 2 - - uid: 24667 - components: - - type: Transform - pos: -24.5,45.5 - parent: 2 -- proto: VendingMachineSustenance - entities: - - uid: 8024 - components: - - type: Transform - pos: -11.5,50.5 - parent: 2 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 27727 - components: - - type: Transform - pos: 10.5,-89.5 - parent: 2 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 4241 - components: - - type: Transform - pos: 2.5,40.5 - parent: 2 - - uid: 7138 - components: - - type: Transform - pos: 3.5,-59.5 - parent: 2 - - uid: 20755 - components: - - type: Transform - pos: 4.5,-44.5 - parent: 2 - - uid: 24672 - components: - - type: Transform - pos: -17.5,1.5 - parent: 2 - - uid: 24673 - components: - - type: Transform - pos: -28.5,-29.5 - parent: 2 - - uid: 29890 - components: - - type: Transform - pos: -46.5,-38.5 - parent: 2 -- proto: VendingMachineTheater - entities: - - uid: 24677 - components: - - type: Transform - pos: 32.5,19.5 - parent: 2 -- proto: VendingMachineVendomat - entities: - - uid: 24678 - components: - - type: Transform - pos: -46.5,5.5 - parent: 2 - - uid: 24679 - components: - - type: Transform - pos: -3.5,-39.5 - parent: 2 - - uid: 29443 - components: - - type: Transform - pos: 63.5,-19.5 - parent: 2 -- proto: VendingMachineViroDrobe - entities: - - uid: 24680 - components: - - type: Transform - pos: 37.5,-53.5 - parent: 2 -- proto: VendingMachineWallMedical - entities: - - uid: 24681 - components: - - type: Transform - pos: 34.5,-33.5 - parent: 2 -- proto: VendingMachineWinter - entities: - - uid: 21492 - components: - - type: Transform - pos: 15.5,11.5 - parent: 2 -- proto: VendingMachineYouTool - entities: - - uid: 24684 - components: - - type: Transform - pos: -37.5,5.5 - parent: 2 - - uid: 24685 - components: - - type: Transform - pos: 5.5,-59.5 - parent: 2 -- proto: WallMountATM - entities: - - uid: 2064 - components: - - type: Transform - pos: 41.5,-54.5 - parent: 2 - - uid: 14049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-17.5 - parent: 2 - - uid: 21454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,4.5 - parent: 2 - - uid: 22582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,5.5 - parent: 2 - - uid: 22888 - components: - - type: Transform - pos: 18.5,39.5 - parent: 2 - - uid: 22892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 2 - - uid: 23561 - components: - - type: Transform - pos: 45.5,-11.5 - parent: 2 - - uid: 23901 - components: - - type: Transform - pos: -10.5,-67.5 - parent: 2 - - uid: 26319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-19.5 - parent: 2 - - uid: 26507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 2 - - uid: 29150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-36.5 - parent: 2 - - uid: 29151 - components: - - type: Transform - pos: -41.5,0.5 - parent: 2 - - uid: 29154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-8.5 - parent: 2 - - uid: 29156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-24.5 - parent: 2 - - uid: 29175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-27.5 - parent: 2 - - uid: 29178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,8.5 - parent: 2 - - uid: 29186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-7.5 - parent: 2 - - uid: 29187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 2 - - uid: 29232 - components: - - type: Transform - pos: 64.5,4.5 - parent: 2 - - uid: 29233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-0.5 - parent: 2 -- proto: WallmountTelescreen - entities: - - uid: 15890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,22.5 - parent: 2 -- proto: WallReinforced - entities: - - uid: 11 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 - parent: 2 - - uid: 30 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-81.5 - parent: 2 - - uid: 155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-73.5 - parent: 2 - - uid: 157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-45.5 - parent: 2 - - uid: 163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,43.5 - parent: 2 - - uid: 174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-70.5 - parent: 2 - - uid: 183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 2 - - uid: 214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,21.5 - parent: 2 - - uid: 218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 2 - - uid: 225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-45.5 - parent: 2 - - uid: 229 - components: - - type: Transform - pos: -7.5,-71.5 - parent: 2 - - uid: 267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,43.5 - parent: 2 - - uid: 276 - components: - - type: Transform - pos: 18.5,-42.5 - parent: 2 - - uid: 286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-49.5 - parent: 2 - - uid: 298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,0.5 - parent: 2 - - uid: 362 - components: - - type: Transform - pos: -74.5,19.5 - parent: 2 - - uid: 446 - components: - - type: Transform - pos: -24.5,3.5 - parent: 2 - - uid: 535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-38.5 - parent: 2 - - uid: 552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-34.5 - parent: 2 - - uid: 705 - components: - - type: Transform - pos: -5.5,51.5 - parent: 2 - - uid: 729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-78.5 - parent: 2 - - uid: 745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-77.5 - parent: 2 - - uid: 776 - components: - - type: Transform - pos: 67.5,28.5 - parent: 2 - - uid: 810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-35.5 - parent: 2 - - uid: 813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-34.5 - parent: 2 - - uid: 909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-83.5 - parent: 2 - - uid: 985 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-44.5 - parent: 2 - - uid: 987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-43.5 - parent: 2 - - uid: 992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-61.5 - parent: 2 - - uid: 994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-79.5 - parent: 2 - - uid: 1001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-61.5 - parent: 2 - - uid: 1007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,37.5 - parent: 2 - - uid: 1008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,37.5 - parent: 2 - - uid: 1009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,37.5 - parent: 2 - - uid: 1018 - components: - - type: Transform - pos: -14.5,37.5 - parent: 2 - - uid: 1067 - components: - - type: Transform - pos: 25.5,44.5 - parent: 2 - - uid: 1119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,29.5 - parent: 2 - - uid: 1162 - components: - - type: Transform - pos: 19.5,-42.5 - parent: 2 - - uid: 1175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,39.5 - parent: 2 - - uid: 1181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,39.5 - parent: 2 - - uid: 1182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,39.5 - parent: 2 - - uid: 1184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-34.5 - parent: 2 - - uid: 1185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-34.5 - parent: 2 - - uid: 1188 - components: - - type: Transform - pos: 28.5,-55.5 - parent: 2 - - uid: 1202 - components: - - type: Transform - pos: 25.5,46.5 - parent: 2 - - uid: 1211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,29.5 - parent: 2 - - uid: 1213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-63.5 - parent: 2 - - uid: 1214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-59.5 - parent: 2 - - uid: 1215 - components: - - type: Transform - pos: 28.5,-58.5 - parent: 2 - - uid: 1234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-43.5 - parent: 2 - - uid: 1245 - components: - - type: Transform - pos: 2.5,50.5 - parent: 2 - - uid: 1270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-37.5 - parent: 2 - - uid: 1287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,13.5 - parent: 2 - - uid: 1291 - components: - - type: Transform - pos: 3.5,50.5 - parent: 2 - - uid: 1299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-62.5 - parent: 2 - - uid: 1340 - components: - - type: Transform - pos: -32.5,13.5 - parent: 2 - - uid: 1385 - components: - - type: Transform - pos: -27.5,13.5 - parent: 2 - - uid: 1398 - components: - - type: Transform - pos: 28.5,27.5 - parent: 2 - - uid: 1466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-64.5 - parent: 2 - - uid: 1512 - components: - - type: Transform - pos: -5.5,52.5 - parent: 2 - - uid: 1565 - components: - - type: Transform - pos: -30.5,13.5 - parent: 2 - - uid: 1584 - components: - - type: Transform - pos: 27.5,-45.5 - parent: 2 - - uid: 1586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-43.5 - parent: 2 - - uid: 1610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,32.5 - parent: 2 - - uid: 1797 - components: - - type: Transform - pos: 25.5,26.5 - parent: 2 - - uid: 1816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,17.5 - parent: 2 - - uid: 1893 - components: - - type: Transform - pos: -34.5,-35.5 - parent: 2 - - uid: 1909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-63.5 - parent: 2 - - uid: 2009 - components: - - type: Transform - pos: 27.5,26.5 - parent: 2 - - uid: 2010 - components: - - type: Transform - pos: 26.5,26.5 - parent: 2 - - uid: 2011 - components: - - type: Transform - pos: 26.5,30.5 - parent: 2 - - uid: 2013 - components: - - type: Transform - pos: 25.5,30.5 - parent: 2 - - uid: 2063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,14.5 - parent: 2 - - uid: 2065 - components: - - type: Transform - pos: -20.5,23.5 - parent: 2 - - uid: 2124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-66.5 - parent: 2 - - uid: 2159 - components: - - type: Transform - pos: 22.5,26.5 - parent: 2 - - uid: 2165 - components: - - type: Transform - pos: 24.5,30.5 - parent: 2 - - uid: 2169 - components: - - type: Transform - pos: 25.5,27.5 - parent: 2 - - uid: 2208 - components: - - type: Transform - pos: 27.5,30.5 - parent: 2 - - uid: 2252 - components: - - type: Transform - pos: -69.5,20.5 - parent: 2 - - uid: 2302 - components: - - type: Transform - pos: 0.5,-26.5 - parent: 2 - - uid: 2326 - components: - - type: Transform - pos: 2.5,-26.5 - parent: 2 - - uid: 2405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,25.5 - parent: 2 - - uid: 2521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-66.5 - parent: 2 - - uid: 2528 - components: - - type: Transform - pos: -69.5,19.5 - parent: 2 - - uid: 2625 - components: - - type: Transform - pos: 28.5,-54.5 - parent: 2 - - uid: 2666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,10.5 - parent: 2 - - uid: 2667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,10.5 - parent: 2 - - uid: 2668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,10.5 - parent: 2 - - uid: 2669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,10.5 - parent: 2 - - uid: 2670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,13.5 - parent: 2 - - uid: 2671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,5.5 - parent: 2 - - uid: 2673 - components: - - type: Transform - pos: -26.5,7.5 - parent: 2 - - uid: 2674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,10.5 - parent: 2 - - uid: 2676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-60.5 - parent: 2 - - uid: 2677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-61.5 - parent: 2 - - uid: 2679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-66.5 - parent: 2 - - uid: 2680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-60.5 - parent: 2 - - uid: 2683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,9.5 - parent: 2 - - uid: 2770 - components: - - type: Transform - pos: -68.5,19.5 - parent: 2 - - uid: 2824 - components: - - type: Transform - pos: -60.5,-21.5 - parent: 2 - - uid: 2908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,8.5 - parent: 2 - - uid: 3055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,38.5 - parent: 2 - - uid: 3227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,46.5 - parent: 2 - - uid: 3240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,37.5 - parent: 2 - - uid: 3248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,8.5 - parent: 2 - - uid: 3257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,9.5 - parent: 2 - - uid: 3318 - components: - - type: Transform - pos: -21.5,-46.5 - parent: 2 - - uid: 3322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,10.5 - parent: 2 - - uid: 3356 - components: - - type: Transform - pos: -15.5,8.5 - parent: 2 - - uid: 3359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-62.5 - parent: 2 - - uid: 3364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,13.5 - parent: 2 - - uid: 3367 - components: - - type: Transform - pos: 28.5,-57.5 - parent: 2 - - uid: 3461 - components: - - type: Transform - pos: -20.5,-46.5 - parent: 2 - - uid: 3509 - components: - - type: Transform - pos: 25.5,29.5 - parent: 2 - - uid: 3589 - components: - - type: Transform - pos: -40.5,-35.5 - parent: 2 - - uid: 3590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-35.5 - parent: 2 - - uid: 3684 - components: - - type: Transform - pos: -22.5,-44.5 - parent: 2 - - uid: 3750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-59.5 - parent: 2 - - uid: 3838 - components: - - type: Transform - pos: -39.5,-63.5 - parent: 2 - - uid: 3912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-61.5 - parent: 2 - - uid: 3923 - components: - - type: Transform - pos: 28.5,-47.5 - parent: 2 - - uid: 4109 - components: - - type: Transform - pos: 21.5,40.5 - parent: 2 - - uid: 4113 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-72.5 - parent: 2 - - uid: 4115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,36.5 - parent: 2 - - uid: 4116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,37.5 - parent: 2 - - uid: 4117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,38.5 - parent: 2 - - uid: 4118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-49.5 - parent: 2 - - uid: 4120 - components: - - type: Transform - pos: 15.5,-50.5 - parent: 2 - - uid: 4127 - components: - - type: Transform - pos: 28.5,-56.5 - parent: 2 - - uid: 4128 - components: - - type: Transform - pos: 28.5,-53.5 - parent: 2 - - uid: 4134 - components: - - type: Transform - pos: -48.5,-38.5 - parent: 2 - - uid: 4136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-46.5 - parent: 2 - - uid: 4148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-71.5 - parent: 2 - - uid: 4149 - components: - - type: Transform - pos: 28.5,-52.5 - parent: 2 - - uid: 4154 - components: - - type: Transform - pos: 16.5,-73.5 - parent: 2 - - uid: 4155 - components: - - type: Transform - pos: 22.5,-69.5 - parent: 2 - - uid: 4163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-59.5 - parent: 2 - - uid: 4169 - components: - - type: Transform - pos: 21.5,-42.5 - parent: 2 - - uid: 4170 - components: - - type: Transform - pos: 20.5,-42.5 - parent: 2 - - uid: 4175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-43.5 - parent: 2 - - uid: 4176 - components: - - type: Transform - pos: 26.5,-45.5 - parent: 2 - - uid: 4186 - components: - - type: Transform - pos: 22.5,-42.5 - parent: 2 - - uid: 4189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-45.5 - parent: 2 - - uid: 4191 - components: - - type: Transform - pos: 9.5,-79.5 - parent: 2 - - uid: 4220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-55.5 - parent: 2 - - uid: 4237 - components: - - type: Transform - pos: -1.5,41.5 - parent: 2 - - uid: 4240 - components: - - type: Transform - pos: 2.5,44.5 - parent: 2 - - uid: 4243 - components: - - type: Transform - pos: 4.5,44.5 - parent: 2 - - uid: 4247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-65.5 - parent: 2 - - uid: 4248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-65.5 - parent: 2 - - uid: 4249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,40.5 - parent: 2 - - uid: 4254 - components: - - type: Transform - pos: 1.5,44.5 - parent: 2 - - uid: 4255 - components: - - type: Transform - pos: -0.5,41.5 - parent: 2 - - uid: 4260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-59.5 - parent: 2 - - uid: 4271 - components: - - type: Transform - pos: 11.5,-71.5 - parent: 2 - - uid: 4277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-63.5 - parent: 2 - - uid: 4281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-65.5 - parent: 2 - - uid: 4283 - components: - - type: Transform - pos: 22.5,-70.5 - parent: 2 - - uid: 4324 - components: - - type: Transform - pos: 86.5,-8.5 - parent: 2 - - uid: 4325 - components: - - type: Transform - pos: 86.5,-7.5 - parent: 2 - - uid: 4361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-61.5 - parent: 2 - - uid: 4380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-80.5 - parent: 2 - - uid: 4408 - components: - - type: Transform - pos: -12.5,-67.5 - parent: 2 - - uid: 4413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-61.5 - parent: 2 - - uid: 4418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-61.5 - parent: 2 - - uid: 4424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-66.5 - parent: 2 - - uid: 4427 - components: - - type: Transform - pos: -12.5,-77.5 - parent: 2 - - uid: 4428 - components: - - type: Transform - pos: -11.5,-77.5 - parent: 2 - - uid: 4429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-71.5 - parent: 2 - - uid: 4430 - components: - - type: Transform - pos: -12.5,-72.5 - parent: 2 - - uid: 4431 - components: - - type: Transform - pos: -11.5,-71.5 - parent: 2 - - uid: 4878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,41.5 - parent: 2 - - uid: 5091 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,29.5 - parent: 2 - - uid: 5095 - components: - - type: Transform - pos: 88.5,-0.5 - parent: 2 - - uid: 5271 - components: - - type: Transform - pos: 88.5,-12.5 - parent: 2 - - uid: 5392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-34.5 - parent: 2 - - uid: 5393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-33.5 - parent: 2 - - uid: 5450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,27.5 - parent: 2 - - uid: 5467 - components: - - type: Transform - pos: -26.5,6.5 - parent: 2 - - uid: 5468 - components: - - type: Transform - pos: -32.5,4.5 - parent: 2 - - uid: 5473 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-70.5 - parent: 2 - - uid: 5476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-69.5 - parent: 2 - - uid: 5480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-70.5 - parent: 2 - - uid: 5481 - components: - - type: Transform - pos: -24.5,-63.5 - parent: 2 - - uid: 5484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-72.5 - parent: 2 - - uid: 5485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-55.5 - parent: 2 - - uid: 5554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-73.5 - parent: 2 - - uid: 5582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-80.5 - parent: 2 - - uid: 5585 - components: - - type: Transform - pos: 30.5,-49.5 - parent: 2 - - uid: 5586 - components: - - type: Transform - pos: 26.5,-41.5 - parent: 2 - - uid: 5609 - components: - - type: Transform - pos: 20.5,-69.5 - parent: 2 - - uid: 5850 - components: - - type: Transform - pos: 1.5,-26.5 - parent: 2 - - uid: 5851 - components: - - type: Transform - pos: -2.5,-26.5 - parent: 2 - - uid: 5952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-39.5 - parent: 2 - - uid: 5953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-39.5 - parent: 2 - - uid: 5954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-36.5 - parent: 2 - - uid: 5956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-39.5 - parent: 2 - - uid: 5962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-36.5 - parent: 2 - - uid: 5966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-38.5 - parent: 2 - - uid: 6180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-78.5 - parent: 2 - - uid: 6210 - components: - - type: Transform - pos: 27.5,-41.5 - parent: 2 - - uid: 6251 - components: - - type: Transform - pos: 90.5,-12.5 - parent: 2 - - uid: 6374 - components: - - type: Transform - pos: 87.5,-8.5 - parent: 2 - - uid: 6375 - components: - - type: Transform - pos: 86.5,-12.5 - parent: 2 - - uid: 6376 - components: - - type: Transform - pos: 90.5,-8.5 - parent: 2 - - uid: 6377 - components: - - type: Transform - pos: -12.5,-76.5 - parent: 2 - - uid: 6390 - components: - - type: Transform - pos: -8.5,-62.5 - parent: 2 - - uid: 6545 - components: - - type: Transform - pos: 86.5,-13.5 - parent: 2 - - uid: 6548 - components: - - type: Transform - pos: 87.5,-12.5 - parent: 2 - - uid: 7024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,11.5 - parent: 2 - - uid: 7037 - components: - - type: Transform - pos: -6.5,8.5 - parent: 2 - - uid: 7153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-66.5 - parent: 2 - - uid: 7156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-61.5 - parent: 2 - - uid: 7158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-63.5 - parent: 2 - - uid: 7186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-61.5 - parent: 2 - - uid: 7193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-62.5 - parent: 2 - - uid: 7201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-65.5 - parent: 2 - - uid: 7236 - components: - - type: Transform - pos: 23.5,-41.5 - parent: 2 - - uid: 7237 - components: - - type: Transform - pos: 30.5,-46.5 - parent: 2 - - uid: 7415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-74.5 - parent: 2 - - uid: 7434 - components: - - type: Transform - pos: 30.5,-44.5 - parent: 2 - - uid: 7738 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 2 - - uid: 7953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-65.5 - parent: 2 - - uid: 8098 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,40.5 - parent: 2 - - uid: 8099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,36.5 - parent: 2 - - uid: 8100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,37.5 - parent: 2 - - uid: 8142 - components: - - type: Transform - pos: -16.5,9.5 - parent: 2 - - uid: 8174 - components: - - type: Transform - pos: -26.5,5.5 - parent: 2 - - uid: 8213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,13.5 - parent: 2 - - uid: 8214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,8.5 - parent: 2 - - uid: 8215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,8.5 - parent: 2 - - uid: 8265 - components: - - type: Transform - pos: 63.5,28.5 - parent: 2 - - uid: 8266 - components: - - type: Transform - pos: 68.5,28.5 - parent: 2 - - uid: 8267 - components: - - type: Transform - pos: 65.5,28.5 - parent: 2 - - uid: 8622 - components: - - type: Transform - pos: 30.5,-42.5 - parent: 2 - - uid: 8623 - components: - - type: Transform - pos: 12.5,-40.5 - parent: 2 - - uid: 8662 - components: - - type: Transform - pos: 15.5,-40.5 - parent: 2 - - uid: 8663 - components: - - type: Transform - pos: 9.5,-41.5 - parent: 2 - - uid: 8990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-20.5 - parent: 2 - - uid: 9050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-36.5 - parent: 2 - - uid: 9106 - components: - - type: Transform - pos: 10.5,-70.5 - parent: 2 - - uid: 9110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,29.5 - parent: 2 - - uid: 9210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,29.5 - parent: 2 - - uid: 9211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,27.5 - parent: 2 - - uid: 9345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-73.5 - parent: 2 - - uid: 9446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-20.5 - parent: 2 - - uid: 9447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-20.5 - parent: 2 - - uid: 9595 - components: - - type: Transform - pos: -38.5,-35.5 - parent: 2 - - uid: 9596 - components: - - type: Transform - pos: -39.5,-35.5 - parent: 2 - - uid: 9597 - components: - - type: Transform - pos: -34.5,-39.5 - parent: 2 - - uid: 9606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-38.5 - parent: 2 - - uid: 9707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,38.5 - parent: 2 - - uid: 9725 - components: - - type: Transform - pos: 70.5,28.5 - parent: 2 - - uid: 9726 - components: - - type: Transform - pos: 69.5,28.5 - parent: 2 - - uid: 9748 - components: - - type: Transform - pos: 7.5,-45.5 - parent: 2 - - uid: 9762 - components: - - type: Transform - pos: 2.5,48.5 - parent: 2 - - uid: 9767 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 2 - - uid: 9800 - components: - - type: Transform - pos: 5.5,44.5 - parent: 2 - - uid: 9896 - components: - - type: Transform - pos: 1.5,39.5 - parent: 2 - - uid: 10063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 2 - - uid: 10157 - components: - - type: Transform - pos: -30.5,4.5 - parent: 2 - - uid: 10158 - components: - - type: Transform - pos: -29.5,4.5 - parent: 2 - - uid: 10167 - components: - - type: Transform - pos: -38.5,-39.5 - parent: 2 - - uid: 10182 - components: - - type: Transform - pos: -36.5,-33.5 - parent: 2 - - uid: 10189 - components: - - type: Transform - pos: -36.5,-31.5 - parent: 2 - - uid: 10202 - components: - - type: Transform - pos: -28.5,4.5 - parent: 2 - - uid: 10586 - components: - - type: Transform - pos: -10.5,-67.5 - parent: 2 - - uid: 10599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-72.5 - parent: 2 - - uid: 10624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,35.5 - parent: 2 - - uid: 10768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,41.5 - parent: 2 - - uid: 10769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,38.5 - parent: 2 - - uid: 10770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,38.5 - parent: 2 - - uid: 10844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,39.5 - parent: 2 - - uid: 10847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,42.5 - parent: 2 - - uid: 10865 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 2 - - uid: 10929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,28.5 - parent: 2 - - uid: 11025 - components: - - type: Transform - pos: -34.5,-34.5 - parent: 2 - - uid: 11101 - components: - - type: Transform - pos: 86.5,-10.5 - parent: 2 - - uid: 11132 - components: - - type: Transform - pos: -3.5,50.5 - parent: 2 - - uid: 11147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-50.5 - parent: 2 - - uid: 11191 - components: - - type: Transform - pos: -6.5,-6.5 - parent: 2 - - uid: 11230 - components: - - type: Transform - pos: 4.5,49.5 - parent: 2 - - uid: 11231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,38.5 - parent: 2 - - uid: 11233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-0.5 - parent: 2 - - uid: 11281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,37.5 - parent: 2 - - uid: 11285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,34.5 - parent: 2 - - uid: 11286 - components: - - type: Transform - pos: -6.5,38.5 - parent: 2 - - uid: 11287 - components: - - type: Transform - pos: -5.5,38.5 - parent: 2 - - uid: 11372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,23.5 - parent: 2 - - uid: 11400 - components: - - type: Transform - pos: 21.5,26.5 - parent: 2 - - uid: 11445 - components: - - type: Transform - pos: 4.5,48.5 - parent: 2 - - uid: 11566 - components: - - type: Transform - pos: 16.5,-69.5 - parent: 2 - - uid: 11896 - components: - - type: Transform - pos: 22.5,-93.5 - parent: 2 - - uid: 11897 - components: - - type: Transform - pos: 88.5,-10.5 - parent: 2 - - uid: 11943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,2.5 - parent: 2 - - uid: 12025 - components: - - type: Transform - pos: 68.5,-35.5 - parent: 2 - - uid: 12183 - components: - - type: Transform - pos: 72.5,-34.5 - parent: 2 - - uid: 12210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,45.5 - parent: 2 - - uid: 12400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-34.5 - parent: 2 - - uid: 12871 - components: - - type: Transform - pos: 76.5,-36.5 - parent: 2 - - uid: 12911 - components: - - type: Transform - pos: 60.5,-28.5 - parent: 2 - - uid: 13511 - components: - - type: Transform - pos: 21.5,29.5 - parent: 2 - - uid: 13645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-93.5 - parent: 2 - - uid: 13681 - components: - - type: Transform - pos: 72.5,-35.5 - parent: 2 - - uid: 13783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-61.5 - parent: 2 - - uid: 13787 - components: - - type: Transform - pos: 17.5,-42.5 - parent: 2 - - uid: 13790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-93.5 - parent: 2 - - uid: 13792 - components: - - type: Transform - pos: 76.5,-35.5 - parent: 2 - - uid: 13834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,1.5 - parent: 2 - - uid: 13858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-61.5 - parent: 2 - - uid: 13977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-61.5 - parent: 2 - - uid: 13988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-44.5 - parent: 2 - - uid: 13990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-43.5 - parent: 2 - - uid: 14000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-46.5 - parent: 2 - - uid: 14004 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-67.5 - parent: 2 - - uid: 14021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-67.5 - parent: 2 - - uid: 14023 - components: - - type: Transform - pos: 22.5,-41.5 - parent: 2 - - uid: 14036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-51.5 - parent: 2 - - uid: 14037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-51.5 - parent: 2 - - uid: 14074 - components: - - type: Transform - pos: -4.5,50.5 - parent: 2 - - uid: 14076 - components: - - type: Transform - pos: 14.5,-81.5 - parent: 2 - - uid: 14077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-75.5 - parent: 2 - - uid: 14103 - components: - - type: Transform - pos: 68.5,-36.5 - parent: 2 - - uid: 14151 - components: - - type: Transform - pos: 15.5,-41.5 - parent: 2 - - uid: 14152 - components: - - type: Transform - pos: 14.5,-40.5 - parent: 2 - - uid: 14158 - components: - - type: Transform - pos: 30.5,-43.5 - parent: 2 - - uid: 14160 - components: - - type: Transform - pos: 30.5,-47.5 - parent: 2 - - uid: 14169 - components: - - type: Transform - pos: 24.5,-41.5 - parent: 2 - - uid: 14170 - components: - - type: Transform - pos: 25.5,-41.5 - parent: 2 - - uid: 14171 - components: - - type: Transform - pos: 28.5,-41.5 - parent: 2 - - uid: 14172 - components: - - type: Transform - pos: 30.5,-51.5 - parent: 2 - - uid: 14173 - components: - - type: Transform - pos: 30.5,-53.5 - parent: 2 - - uid: 14320 - components: - - type: Transform - pos: 72.5,-33.5 - parent: 2 - - uid: 14321 - components: - - type: Transform - pos: 72.5,-36.5 - parent: 2 - - uid: 14375 - components: - - type: Transform - pos: 22.5,-56.5 - parent: 2 - - uid: 14377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-67.5 - parent: 2 - - uid: 14400 - components: - - type: Transform - pos: -21.5,23.5 - parent: 2 - - uid: 14403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-65.5 - parent: 2 - - uid: 14406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-78.5 - parent: 2 - - uid: 14407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-77.5 - parent: 2 - - uid: 14411 - components: - - type: Transform - pos: 27.5,-47.5 - parent: 2 - - uid: 14412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,47.5 - parent: 2 - - uid: 14415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-79.5 - parent: 2 - - uid: 14419 - components: - - type: Transform - pos: 24.5,-47.5 - parent: 2 - - uid: 14423 - components: - - type: Transform - pos: 15.5,-48.5 - parent: 2 - - uid: 14427 - components: - - type: Transform - pos: -5.5,53.5 - parent: 2 - - uid: 14431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-90.5 - parent: 2 - - uid: 14432 - components: - - type: Transform - pos: 30.5,-56.5 - parent: 2 - - uid: 14581 - components: - - type: Transform - pos: -74.5,18.5 - parent: 2 - - uid: 14582 - components: - - type: Transform - pos: 11.5,-81.5 - parent: 2 - - uid: 14593 - components: - - type: Transform - pos: 24.5,26.5 - parent: 2 - - uid: 14721 - components: - - type: Transform - pos: 16.5,-42.5 - parent: 2 - - uid: 14724 - components: - - type: Transform - pos: 30.5,-55.5 - parent: 2 - - uid: 14725 - components: - - type: Transform - pos: 30.5,-57.5 - parent: 2 - - uid: 14728 - components: - - type: Transform - pos: 30.5,-61.5 - parent: 2 - - uid: 14731 - components: - - type: Transform - pos: 30.5,-58.5 - parent: 2 - - uid: 14732 - components: - - type: Transform - pos: 30.5,-60.5 - parent: 2 - - uid: 14733 - components: - - type: Transform - pos: 30.5,-59.5 - parent: 2 - - uid: 14735 - components: - - type: Transform - pos: 15.5,-46.5 - parent: 2 - - uid: 14739 - components: - - type: Transform - pos: 15.5,-42.5 - parent: 2 - - uid: 14756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-73.5 - parent: 2 - - uid: 14759 - components: - - type: Transform - pos: 30.5,-50.5 - parent: 2 - - uid: 14761 - components: - - type: Transform - pos: 30.5,-45.5 - parent: 2 - - uid: 14762 - components: - - type: Transform - pos: 30.5,-48.5 - parent: 2 - - uid: 14763 - components: - - type: Transform - pos: 29.5,-41.5 - parent: 2 - - uid: 14764 - components: - - type: Transform - pos: 30.5,-41.5 - parent: 2 - - uid: 14765 - components: - - type: Transform - pos: 30.5,-52.5 - parent: 2 - - uid: 14792 - components: - - type: Transform - pos: 30.5,-54.5 - parent: 2 - - uid: 14799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-72.5 - parent: 2 - - uid: 14800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-51.5 - parent: 2 - - uid: 14801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-50.5 - parent: 2 - - uid: 14802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-77.5 - parent: 2 - - uid: 14806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-51.5 - parent: 2 - - uid: 14807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-64.5 - parent: 2 - - uid: 14811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-51.5 - parent: 2 - - uid: 14812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-51.5 - parent: 2 - - uid: 14813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-63.5 - parent: 2 - - uid: 14814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-51.5 - parent: 2 - - uid: 14816 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-61.5 - parent: 2 - - uid: 14817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-63.5 - parent: 2 - - uid: 14821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-59.5 - parent: 2 - - uid: 14893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-79.5 - parent: 2 - - uid: 14898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-48.5 - parent: 2 - - uid: 14950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-78.5 - parent: 2 - - uid: 14956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-49.5 - parent: 2 - - uid: 14989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-91.5 - parent: 2 - - uid: 14992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-89.5 - parent: 2 - - uid: 14995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-41.5 - parent: 2 - - uid: 14996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-40.5 - parent: 2 - - uid: 14998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-41.5 - parent: 2 - - uid: 15002 - components: - - type: Transform - pos: 21.5,-93.5 - parent: 2 - - uid: 15003 - components: - - type: Transform - pos: -29.5,43.5 - parent: 2 - - uid: 15098 - components: - - type: Transform - pos: 9.5,-64.5 - parent: 2 - - uid: 15785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-79.5 - parent: 2 - - uid: 15872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,21.5 - parent: 2 - - uid: 15916 - components: - - type: Transform - pos: -29.5,45.5 - parent: 2 - - uid: 15917 - components: - - type: Transform - pos: -32.5,46.5 - parent: 2 - - uid: 16330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-36.5 - parent: 2 - - uid: 16331 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-35.5 - parent: 2 - - uid: 16332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-34.5 - parent: 2 - - uid: 16333 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-33.5 - parent: 2 - - uid: 16334 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-32.5 - parent: 2 - - uid: 16336 - components: - - type: Transform - pos: 76.5,-32.5 - parent: 2 - - uid: 16387 - components: - - type: Transform - pos: 76.5,-33.5 - parent: 2 - - uid: 16388 - components: - - type: Transform - pos: 76.5,-34.5 - parent: 2 - - uid: 16497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-65.5 - parent: 2 - - uid: 16499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,15.5 - parent: 2 - - uid: 16665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,30.5 - parent: 2 - - uid: 16871 - components: - - type: Transform - pos: -39.5,-39.5 - parent: 2 - - uid: 16891 - components: - - type: Transform - pos: -46.5,-35.5 - parent: 2 - - uid: 17060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,38.5 - parent: 2 - - uid: 17064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,42.5 - parent: 2 - - uid: 17125 - components: - - type: Transform - pos: 3.5,44.5 - parent: 2 - - uid: 17127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,43.5 - parent: 2 - - uid: 17198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,1.5 - parent: 2 - - uid: 17238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,13.5 - parent: 2 - - uid: 17363 - components: - - type: Transform - pos: 25.5,-47.5 - parent: 2 - - uid: 17384 - components: - - type: Transform - pos: -7.5,38.5 - parent: 2 - - uid: 17387 - components: - - type: Transform - pos: -74.5,12.5 - parent: 2 - - uid: 17401 - components: - - type: Transform - pos: 29.5,33.5 - parent: 2 - - uid: 17402 - components: - - type: Transform - pos: 29.5,43.5 - parent: 2 - - uid: 17450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-38.5 - parent: 2 - - uid: 17451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-37.5 - parent: 2 - - uid: 17461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,29.5 - parent: 2 - - uid: 17463 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - - uid: 17475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,41.5 - parent: 2 - - uid: 17477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,46.5 - parent: 2 - - uid: 17478 - components: - - type: Transform - pos: 29.5,44.5 - parent: 2 - - uid: 17610 - components: - - type: Transform - pos: -29.5,44.5 - parent: 2 - - uid: 17654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-49.5 - parent: 2 - - uid: 17739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,42.5 - parent: 2 - - uid: 17845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-48.5 - parent: 2 - - uid: 17846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-54.5 - parent: 2 - - uid: 17852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-36.5 - parent: 2 - - uid: 17902 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-67.5 - parent: 2 - - uid: 17948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,0.5 - parent: 2 - - uid: 17951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,10.5 - parent: 2 - - uid: 17959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,9.5 - parent: 2 - - uid: 17960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,15.5 - parent: 2 - - uid: 17985 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 2 - - uid: 18014 - components: - - type: Transform - pos: -73.5,20.5 - parent: 2 - - uid: 18057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,30.5 - parent: 2 - - uid: 18060 - components: - - type: Transform - pos: -30.5,46.5 - parent: 2 - - uid: 18121 - components: - - type: Transform - pos: -47.5,-35.5 - parent: 2 - - uid: 18131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-45.5 - parent: 2 - - uid: 18185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-38.5 - parent: 2 - - uid: 18187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-38.5 - parent: 2 - - uid: 18188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-38.5 - parent: 2 - - uid: 18189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-38.5 - parent: 2 - - uid: 18190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-38.5 - parent: 2 - - uid: 18191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-33.5 - parent: 2 - - uid: 18192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-32.5 - parent: 2 - - uid: 18222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-67.5 - parent: 2 - - uid: 18231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,44.5 - parent: 2 - - uid: 18244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-35.5 - parent: 2 - - uid: 18338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,33.5 - parent: 2 - - uid: 18681 - components: - - type: Transform - pos: -8.5,38.5 - parent: 2 - - uid: 18740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,43.5 - parent: 2 - - uid: 18756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,41.5 - parent: 2 - - uid: 18883 - components: - - type: Transform - pos: -5.5,49.5 - parent: 2 - - uid: 18891 - components: - - type: Transform - pos: 6.5,-26.5 - parent: 2 - - uid: 18900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,42.5 - parent: 2 - - uid: 18904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,43.5 - parent: 2 - - uid: 18905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,46.5 - parent: 2 - - uid: 18926 - components: - - type: Transform - pos: 8.5,-26.5 - parent: 2 - - uid: 18932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,37.5 - parent: 2 - - uid: 18944 - components: - - type: Transform - pos: 4.5,50.5 - parent: 2 - - uid: 18970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-92.5 - parent: 2 - - uid: 19014 - components: - - type: Transform - pos: -5.5,50.5 - parent: 2 - - uid: 19097 - components: - - type: Transform - pos: 17.5,-55.5 - parent: 2 - - uid: 19176 - components: - - type: Transform - pos: -5.5,48.5 - parent: 2 - - uid: 19211 - components: - - type: Transform - pos: 26.5,-47.5 - parent: 2 - - uid: 19237 - components: - - type: Transform - pos: 23.5,-93.5 - parent: 2 - - uid: 19261 - components: - - type: Transform - pos: 24.5,-45.5 - parent: 2 - - uid: 19296 - components: - - type: Transform - pos: 22.5,-81.5 - parent: 2 - - uid: 19321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-49.5 - parent: 2 - - uid: 19339 - components: - - type: Transform - pos: 88.5,-8.5 - parent: 2 - - uid: 19343 - components: - - type: Transform - pos: 88.5,-4.5 - parent: 2 - - uid: 19346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-90.5 - parent: 2 - - uid: 19355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,40.5 - parent: 2 - - uid: 19356 - components: - - type: Transform - pos: 16.5,-81.5 - parent: 2 - - uid: 19357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-88.5 - parent: 2 - - uid: 19416 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-49.5 - parent: 2 - - uid: 19471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,29.5 - parent: 2 - - uid: 19488 - components: - - type: Transform - pos: -39.5,-62.5 - parent: 2 - - uid: 19514 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 2 - - uid: 19515 - components: - - type: Transform - pos: 2.5,-25.5 - parent: 2 - - uid: 19544 - components: - - type: Transform - pos: 58.5,27.5 - parent: 2 - - uid: 19645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,31.5 - parent: 2 - - uid: 19650 - components: - - type: Transform - pos: 14.5,24.5 - parent: 2 - - uid: 19657 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 2 - - uid: 19682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,39.5 - parent: 2 - - uid: 19753 - components: - - type: Transform - pos: -22.5,-46.5 - parent: 2 - - uid: 19756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,46.5 - parent: 2 - - uid: 19797 - components: - - type: Transform - pos: -73.5,19.5 - parent: 2 - - uid: 19807 - components: - - type: Transform - pos: -64.5,19.5 - parent: 2 - - uid: 19815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,42.5 - parent: 2 - - uid: 19854 - components: - - type: Transform - pos: 64.5,-28.5 - parent: 2 - - uid: 20007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,24.5 - parent: 2 - - uid: 20106 - components: - - type: Transform - pos: -1.5,-26.5 - parent: 2 - - uid: 20153 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 2 - - uid: 20196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-82.5 - parent: 2 - - uid: 20216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-82.5 - parent: 2 - - uid: 20223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-71.5 - parent: 2 - - uid: 20240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,47.5 - parent: 2 - - uid: 20256 - components: - - type: Transform - pos: 48.5,18.5 - parent: 2 - - uid: 20261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-71.5 - parent: 2 - - uid: 20262 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 2 - - uid: 20272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,33.5 - parent: 2 - - uid: 20293 - components: - - type: Transform - pos: 22.5,44.5 - parent: 2 - - uid: 20330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-19.5 - parent: 2 - - uid: 20360 - components: - - type: Transform - pos: -3.5,-26.5 - parent: 2 - - uid: 20390 - components: - - type: Transform - pos: -3.5,-25.5 - parent: 2 - - uid: 20393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,45.5 - parent: 2 - - uid: 20397 - components: - - type: Transform - pos: 24.5,44.5 - parent: 2 - - uid: 20398 - components: - - type: Transform - pos: -3.5,-24.5 - parent: 2 - - uid: 20401 - components: - - type: Transform - pos: 29.5,39.5 - parent: 2 - - uid: 20435 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 2 - - uid: 20436 - components: - - type: Transform - pos: 2.5,-24.5 - parent: 2 - - uid: 20451 - components: - - type: Transform - pos: -3.5,-23.5 - parent: 2 - - uid: 20468 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - uid: 20477 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,31.5 - parent: 2 - - uid: 20503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-76.5 - parent: 2 - - uid: 20509 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 2 - - uid: 20523 - components: - - type: Transform - pos: -1.5,-20.5 - parent: 2 - - uid: 20570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 2 - - uid: 20583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,10.5 - parent: 2 - - uid: 20604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,0.5 - parent: 2 - - uid: 20625 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-59.5 - parent: 2 - - uid: 20631 - components: - - type: Transform - pos: 7.5,-78.5 - parent: 2 - - uid: 20683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 2 - - uid: 20685 - components: - - type: Transform - pos: 20.5,25.5 - parent: 2 - - uid: 20704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-28.5 - parent: 2 - - uid: 20765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 2 - - uid: 20774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-12.5 - parent: 2 - - uid: 20877 - components: - - type: Transform - pos: -43.5,-35.5 - parent: 2 - - uid: 20920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-12.5 - parent: 2 - - uid: 20923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-81.5 - parent: 2 - - uid: 21012 - components: - - type: Transform - pos: -45.5,-35.5 - parent: 2 - - uid: 21046 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 2 - - uid: 21264 - components: - - type: Transform - pos: 16.5,25.5 - parent: 2 - - uid: 21456 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,5.5 - parent: 2 - - uid: 21476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,7.5 - parent: 2 - - uid: 21624 - components: - - type: Transform - pos: -38.5,-33.5 - parent: 2 - - uid: 21628 - components: - - type: Transform - pos: -34.5,-33.5 - parent: 2 - - uid: 21690 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 2 - - uid: 21691 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 2 - - uid: 21692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-28.5 - parent: 2 - - uid: 21731 - components: - - type: Transform - pos: -41.5,-35.5 - parent: 2 - - uid: 21752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-86.5 - parent: 2 - - uid: 21901 - components: - - type: Transform - pos: -2.5,-20.5 - parent: 2 - - uid: 21902 - components: - - type: Transform - pos: 3.5,-20.5 - parent: 2 - - uid: 21904 - components: - - type: Transform - pos: 2.5,-21.5 - parent: 2 - - uid: 21909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 2 - - uid: 21911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 2 - - uid: 21915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-12.5 - parent: 2 - - uid: 21928 - components: - - type: Transform - pos: 20.5,-81.5 - parent: 2 - - uid: 21965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,-66.5 - parent: 2 - - uid: 21969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 2 - - uid: 22032 - components: - - type: Transform - pos: 19.5,-81.5 - parent: 2 - - uid: 22033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-81.5 - parent: 2 - - uid: 22035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-66.5 - parent: 2 - - uid: 22069 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-66.5 - parent: 2 - - uid: 22073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-66.5 - parent: 2 - - uid: 22107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-66.5 - parent: 2 - - uid: 22128 - components: - - type: Transform - pos: 18.5,-81.5 - parent: 2 - - uid: 22188 - components: - - type: Transform - pos: -8.5,-67.5 - parent: 2 - - uid: 22189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-0.5 - parent: 2 - - uid: 22343 - components: - - type: Transform - pos: -29.5,13.5 - parent: 2 - - uid: 22371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-36.5 - parent: 2 - - uid: 22377 - components: - - type: Transform - pos: 7.5,-26.5 - parent: 2 - - uid: 22434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,41.5 - parent: 2 - - uid: 22491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,38.5 - parent: 2 - - uid: 22539 - components: - - type: Transform - pos: -41.5,-62.5 - parent: 2 - - uid: 22578 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 2 - - uid: 22656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-82.5 - parent: 2 - - uid: 22660 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-71.5 - parent: 2 - - uid: 22667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-92.5 - parent: 2 - - uid: 22673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-82.5 - parent: 2 - - uid: 22684 - components: - - type: Transform - pos: 59.5,28.5 - parent: 2 - - uid: 22800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-71.5 - parent: 2 - - uid: 22801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-80.5 - parent: 2 - - uid: 22867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-60.5 - parent: 2 - - uid: 23228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,28.5 - parent: 2 - - uid: 23332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,29.5 - parent: 2 - - uid: 23416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,29.5 - parent: 2 - - uid: 23425 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 2 - - uid: 23430 - components: - - type: Transform - pos: 11.5,-21.5 - parent: 2 - - uid: 23443 - components: - - type: Transform - pos: 11.5,-22.5 - parent: 2 - - uid: 23465 - components: - - type: Transform - pos: 90.5,-10.5 - parent: 2 - - uid: 23466 - components: - - type: Transform - pos: 87.5,-10.5 - parent: 2 - - uid: 23491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-77.5 - parent: 2 - - uid: 23494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-79.5 - parent: 2 - - uid: 23502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-82.5 - parent: 2 - - uid: 23556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-67.5 - parent: 2 - - uid: 23605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,25.5 - parent: 2 - - uid: 23618 - components: - - type: Transform - pos: -42.5,11.5 - parent: 2 - - uid: 23638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-93.5 - parent: 2 - - uid: 23639 - components: - - type: Transform - pos: -42.5,9.5 - parent: 2 - - uid: 23717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-61.5 - parent: 2 - - uid: 23718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-61.5 - parent: 2 - - uid: 23719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-61.5 - parent: 2 - - uid: 23731 - components: - - type: Transform - pos: 21.5,27.5 - parent: 2 - - uid: 23776 - components: - - type: Transform - pos: -44.5,11.5 - parent: 2 - - uid: 23790 - components: - - type: Transform - pos: -42.5,10.5 - parent: 2 - - uid: 23827 - components: - - type: Transform - pos: -45.5,11.5 - parent: 2 - - uid: 24018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-64.5 - parent: 2 - - uid: 24019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-65.5 - parent: 2 - - uid: 24021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-66.5 - parent: 2 - - uid: 24022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-67.5 - parent: 2 - - uid: 24040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-77.5 - parent: 2 - - uid: 24049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-68.5 - parent: 2 - - uid: 24060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-69.5 - parent: 2 - - uid: 24061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-71.5 - parent: 2 - - uid: 24065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-93.5 - parent: 2 - - uid: 24082 - components: - - type: Transform - pos: -8.5,-66.5 - parent: 2 - - uid: 24102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-65.5 - parent: 2 - - uid: 24103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-71.5 - parent: 2 - - uid: 24108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-71.5 - parent: 2 - - uid: 24109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-64.5 - parent: 2 - - uid: 24113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-64.5 - parent: 2 - - uid: 24114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-64.5 - parent: 2 - - uid: 24115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-71.5 - parent: 2 - - uid: 24117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-79.5 - parent: 2 - - uid: 24145 - components: - - type: Transform - pos: -45.5,10.5 - parent: 2 - - uid: 24168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,22.5 - parent: 2 - - uid: 24215 - components: - - type: Transform - pos: -45.5,8.5 - parent: 2 - - uid: 24274 - components: - - type: Transform - pos: -44.5,8.5 - parent: 2 - - uid: 24332 - components: - - type: Transform - pos: -43.5,8.5 - parent: 2 - - uid: 24333 - components: - - type: Transform - pos: -42.5,8.5 - parent: 2 - - uid: 24334 - components: - - type: Transform - pos: -45.5,9.5 - parent: 2 - - uid: 24335 - components: - - type: Transform - pos: 43.5,4.5 - parent: 2 - - uid: 24336 - components: - - type: Transform - pos: 44.5,4.5 - parent: 2 - - uid: 24337 - components: - - type: Transform - pos: 42.5,8.5 - parent: 2 - - uid: 24338 - components: - - type: Transform - pos: 44.5,7.5 - parent: 2 - - uid: 24381 - components: - - type: Transform - pos: 15.5,-81.5 - parent: 2 - - uid: 24400 - components: - - type: Transform - pos: -15.5,26.5 - parent: 2 - - uid: 24417 - components: - - type: Transform - pos: 44.5,6.5 - parent: 2 - - uid: 24432 - components: - - type: Transform - pos: 17.5,25.5 - parent: 2 - - uid: 24435 - components: - - type: Transform - pos: 20.5,29.5 - parent: 2 - - uid: 24552 - components: - - type: Transform - pos: 43.5,8.5 - parent: 2 - - uid: 24579 - components: - - type: Transform - pos: -41.5,-27.5 - parent: 2 - - uid: 24615 - components: - - type: Transform - pos: 44.5,5.5 - parent: 2 - - uid: 24627 - components: - - type: Transform - pos: 44.5,8.5 - parent: 2 - - uid: 24683 - components: - - type: Transform - pos: -30.5,-64.5 - parent: 2 - - uid: 24690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-17.5 - parent: 2 - - uid: 24691 - components: - - type: Transform - pos: -20.5,17.5 - parent: 2 - - uid: 24692 - components: - - type: Transform - pos: -20.5,15.5 - parent: 2 - - uid: 24693 - components: - - type: Transform - pos: -17.5,18.5 - parent: 2 - - uid: 24694 - components: - - type: Transform - pos: 21.5,-81.5 - parent: 2 - - uid: 24695 - components: - - type: Transform - pos: -17.5,17.5 - parent: 2 - - uid: 24699 - components: - - type: Transform - pos: -15.5,4.5 - parent: 2 - - uid: 24700 - components: - - type: Transform - pos: -15.5,6.5 - parent: 2 - - uid: 24701 - components: - - type: Transform - pos: -15.5,9.5 - parent: 2 - - uid: 24709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,45.5 - parent: 2 - - uid: 24711 - components: - - type: Transform - pos: -20.5,18.5 - parent: 2 - - uid: 24712 - components: - - type: Transform - pos: -20.5,16.5 - parent: 2 - - uid: 24713 - components: - - type: Transform - pos: -18.5,15.5 - parent: 2 - - uid: 24715 - components: - - type: Transform - pos: -17.5,16.5 - parent: 2 - - uid: 24721 - components: - - type: Transform - pos: -15.5,5.5 - parent: 2 - - uid: 24722 - components: - - type: Transform - pos: -15.5,7.5 - parent: 2 - - uid: 24738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,2.5 - parent: 2 - - uid: 24743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,8.5 - parent: 2 - - uid: 24744 - components: - - type: Transform - pos: -36.5,9.5 - parent: 2 - - uid: 24745 - components: - - type: Transform - pos: -36.5,7.5 - parent: 2 - - uid: 24746 - components: - - type: Transform - pos: -36.5,5.5 - parent: 2 - - uid: 24747 - components: - - type: Transform - pos: -36.5,4.5 - parent: 2 - - uid: 24748 - components: - - type: Transform - pos: -36.5,2.5 - parent: 2 - - uid: 24749 - components: - - type: Transform - pos: -36.5,1.5 - parent: 2 - - uid: 24763 - components: - - type: Transform - pos: -36.5,8.5 - parent: 2 - - uid: 24764 - components: - - type: Transform - pos: -36.5,6.5 - parent: 2 - - uid: 24765 - components: - - type: Transform - pos: -36.5,3.5 - parent: 2 - - uid: 24766 - components: - - type: Transform - pos: -36.5,0.5 - parent: 2 - - uid: 24777 - components: - - type: Transform - pos: -3.5,-64.5 - parent: 2 - - uid: 24778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-29.5 - parent: 2 - - uid: 24779 - components: - - type: Transform - pos: -47.5,23.5 - parent: 2 - - uid: 24780 - components: - - type: Transform - pos: -47.5,20.5 - parent: 2 - - uid: 24781 - components: - - type: Transform - pos: -47.5,22.5 - parent: 2 - - uid: 24782 - components: - - type: Transform - pos: -47.5,21.5 - parent: 2 - - uid: 24783 - components: - - type: Transform - pos: -50.5,20.5 - parent: 2 - - uid: 24784 - components: - - type: Transform - pos: -51.5,21.5 - parent: 2 - - uid: 24785 - components: - - type: Transform - pos: -48.5,24.5 - parent: 2 - - uid: 24786 - components: - - type: Transform - pos: -51.5,23.5 - parent: 2 - - uid: 24787 - components: - - type: Transform - pos: -51.5,22.5 - parent: 2 - - uid: 24788 - components: - - type: Transform - pos: -51.5,20.5 - parent: 2 - - uid: 24789 - components: - - type: Transform - pos: -47.5,24.5 - parent: 2 - - uid: 24790 - components: - - type: Transform - pos: -48.5,20.5 - parent: 2 - - uid: 24791 - components: - - type: Transform - pos: -48.5,25.5 - parent: 2 - - uid: 24792 - components: - - type: Transform - pos: -20.5,39.5 - parent: 2 - - uid: 24794 - components: - - type: Transform - pos: 33.5,-39.5 - parent: 2 - - uid: 24795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-2.5 - parent: 2 - - uid: 24797 - components: - - type: Transform - pos: -80.5,11.5 - parent: 2 - - uid: 24798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,7.5 - parent: 2 - - uid: 24799 - components: - - type: Transform - pos: -65.5,5.5 - parent: 2 - - uid: 24800 - components: - - type: Transform - pos: -65.5,6.5 - parent: 2 - - uid: 24801 - components: - - type: Transform - pos: -65.5,7.5 - parent: 2 - - uid: 24803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,-3.5 - parent: 2 - - uid: 24804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,-2.5 - parent: 2 - - uid: 24805 - components: - - type: Transform - pos: -78.5,11.5 - parent: 2 - - uid: 24806 - components: - - type: Transform - pos: -79.5,11.5 - parent: 2 - - uid: 24807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,11.5 - parent: 2 - - uid: 24808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,7.5 - parent: 2 - - uid: 24809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,7.5 - parent: 2 - - uid: 24810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,-6.5 - parent: 2 - - uid: 24811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-6.5 - parent: 2 - - uid: 24812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,7.5 - parent: 2 - - uid: 24813 - components: - - type: Transform - pos: -65.5,-0.5 - parent: 2 - - uid: 24814 - components: - - type: Transform - pos: -65.5,-1.5 - parent: 2 - - uid: 24815 - components: - - type: Transform - pos: -65.5,-2.5 - parent: 2 - - uid: 24816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,-6.5 - parent: 2 - - uid: 24817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,-5.5 - parent: 2 - - uid: 24818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-3.5 - parent: 2 - - uid: 24819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-2.5 - parent: 2 - - uid: 24820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,8.5 - parent: 2 - - uid: 24821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-6.5 - parent: 2 - - uid: 24822 - components: - - type: Transform - pos: -66.5,-2.5 - parent: 2 - - uid: 24823 - components: - - type: Transform - pos: -76.5,-6.5 - parent: 2 - - uid: 24824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,7.5 - parent: 2 - - uid: 24825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,10.5 - parent: 2 - - uid: 24826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-2.5 - parent: 2 - - uid: 24827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,7.5 - parent: 2 - - uid: 24828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-6.5 - parent: 2 - - uid: 24829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,0.5 - parent: 2 - - uid: 24830 - components: - - type: Transform - pos: 45.5,16.5 - parent: 2 - - uid: 24833 - components: - - type: Transform - pos: 2.5,-54.5 - parent: 2 - - uid: 24837 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,24.5 - parent: 2 - - uid: 24838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,26.5 - parent: 2 - - uid: 24839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-4.5 - parent: 2 - - uid: 24840 - components: - - type: Transform - pos: 71.5,-78.5 - parent: 2 - - uid: 24841 - components: - - type: Transform - pos: 45.5,17.5 - parent: 2 - - uid: 24842 - components: - - type: Transform - pos: 49.5,18.5 - parent: 2 - - uid: 24843 - components: - - type: Transform - pos: 49.5,19.5 - parent: 2 - - uid: 24844 - components: - - type: Transform - pos: 49.5,20.5 - parent: 2 - - uid: 24845 - components: - - type: Transform - pos: 49.5,21.5 - parent: 2 - - uid: 24846 - components: - - type: Transform - pos: 48.5,21.5 - parent: 2 - - uid: 24847 - components: - - type: Transform - pos: 45.5,18.5 - parent: 2 - - uid: 24848 - components: - - type: Transform - pos: 45.5,19.5 - parent: 2 - - uid: 24849 - components: - - type: Transform - pos: 45.5,20.5 - parent: 2 - - uid: 24850 - components: - - type: Transform - pos: 48.5,22.5 - parent: 2 - - uid: 24851 - components: - - type: Transform - pos: 53.5,18.5 - parent: 2 - - uid: 24852 - components: - - type: Transform - pos: 52.5,18.5 - parent: 2 - - uid: 24853 - components: - - type: Transform - pos: 51.5,18.5 - parent: 2 - - uid: 24854 - components: - - type: Transform - pos: 50.5,18.5 - parent: 2 - - uid: 24855 - components: - - type: Transform - pos: 48.5,17.5 - parent: 2 - - uid: 24856 - components: - - type: Transform - pos: -34.5,-28.5 - parent: 2 - - uid: 24857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,8.5 - parent: 2 - - uid: 24858 - components: - - type: Transform - pos: -32.5,17.5 - parent: 2 - - uid: 24859 - components: - - type: Transform - pos: -29.5,21.5 - parent: 2 - - uid: 24862 - components: - - type: Transform - pos: -30.5,17.5 - parent: 2 - - uid: 24863 - components: - - type: Transform - pos: -29.5,17.5 - parent: 2 - - uid: 24865 - components: - - type: Transform - pos: -21.5,15.5 - parent: 2 - - uid: 24866 - components: - - type: Transform - pos: -16.5,37.5 - parent: 2 - - uid: 24867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,10.5 - parent: 2 - - uid: 24868 - components: - - type: Transform - pos: -39.5,25.5 - parent: 2 - - uid: 24869 - components: - - type: Transform - pos: -39.5,24.5 - parent: 2 - - uid: 24871 - components: - - type: Transform - pos: -40.5,23.5 - parent: 2 - - uid: 24872 - components: - - type: Transform - pos: -40.5,19.5 - parent: 2 - - uid: 24873 - components: - - type: Transform - pos: -39.5,19.5 - parent: 2 - - uid: 24874 - components: - - type: Transform - pos: -42.5,16.5 - parent: 2 - - uid: 24875 - components: - - type: Transform - pos: -39.5,18.5 - parent: 2 - - uid: 24876 - components: - - type: Transform - pos: -39.5,23.5 - parent: 2 - - uid: 24877 - components: - - type: Transform - pos: -41.5,23.5 - parent: 2 - - uid: 24878 - components: - - type: Transform - pos: -42.5,23.5 - parent: 2 - - uid: 24879 - components: - - type: Transform - pos: -43.5,23.5 - parent: 2 - - uid: 24880 - components: - - type: Transform - pos: -44.5,23.5 - parent: 2 - - uid: 24881 - components: - - type: Transform - pos: -44.5,19.5 - parent: 2 - - uid: 24882 - components: - - type: Transform - pos: -41.5,19.5 - parent: 2 - - uid: 24883 - components: - - type: Transform - pos: -46.5,23.5 - parent: 2 - - uid: 24884 - components: - - type: Transform - pos: -45.5,23.5 - parent: 2 - - uid: 24885 - components: - - type: Transform - pos: -43.5,17.5 - parent: 2 - - uid: 24887 - components: - - type: Transform - pos: -41.5,13.5 - parent: 2 - - uid: 24888 - components: - - type: Transform - pos: -42.5,14.5 - parent: 2 - - uid: 24889 - components: - - type: Transform - pos: 46.5,17.5 - parent: 2 - - uid: 24890 - components: - - type: Transform - pos: -42.5,17.5 - parent: 2 - - uid: 24891 - components: - - type: Transform - pos: -45.5,19.5 - parent: 2 - - uid: 24893 - components: - - type: Transform - pos: -45.5,18.5 - parent: 2 - - uid: 24894 - components: - - type: Transform - pos: -67.5,-6.5 - parent: 2 - - uid: 24895 - components: - - type: Transform - pos: -66.5,-6.5 - parent: 2 - - uid: 24896 - components: - - type: Transform - pos: -66.5,-7.5 - parent: 2 - - uid: 24897 - components: - - type: Transform - pos: -65.5,-8.5 - parent: 2 - - uid: 24898 - components: - - type: Transform - pos: -66.5,-8.5 - parent: 2 - - uid: 24899 - components: - - type: Transform - pos: -67.5,-8.5 - parent: 2 - - uid: 24900 - components: - - type: Transform - pos: -66.5,-12.5 - parent: 2 - - uid: 24901 - components: - - type: Transform - pos: -67.5,-12.5 - parent: 2 - - uid: 24902 - components: - - type: Transform - pos: -76.5,-12.5 - parent: 2 - - uid: 24903 - components: - - type: Transform - pos: -77.5,-12.5 - parent: 2 - - uid: 24904 - components: - - type: Transform - pos: -78.5,-12.5 - parent: 2 - - uid: 24905 - components: - - type: Transform - pos: -65.5,-16.5 - parent: 2 - - uid: 24906 - components: - - type: Transform - pos: -64.5,-16.5 - parent: 2 - - uid: 24907 - components: - - type: Transform - pos: -63.5,-16.5 - parent: 2 - - uid: 24908 - components: - - type: Transform - pos: -77.5,-16.5 - parent: 2 - - uid: 24909 - components: - - type: Transform - pos: -45.5,17.5 - parent: 2 - - uid: 24910 - components: - - type: Transform - pos: -51.5,19.5 - parent: 2 - - uid: 24911 - components: - - type: Transform - pos: -33.5,17.5 - parent: 2 - - uid: 24912 - components: - - type: Transform - pos: -39.5,17.5 - parent: 2 - - uid: 24913 - components: - - type: Transform - pos: -79.5,-14.5 - parent: 2 - - uid: 24914 - components: - - type: Transform - pos: -35.5,17.5 - parent: 2 - - uid: 24915 - components: - - type: Transform - pos: -78.5,-16.5 - parent: 2 - - uid: 24916 - components: - - type: Transform - pos: -44.5,17.5 - parent: 2 - - uid: 24917 - components: - - type: Transform - pos: -42.5,13.5 - parent: 2 - - uid: 24918 - components: - - type: Transform - pos: -39.5,13.5 - parent: 2 - - uid: 24919 - components: - - type: Transform - pos: -33.5,13.5 - parent: 2 - - uid: 24920 - components: - - type: Transform - pos: -34.5,13.5 - parent: 2 - - uid: 24921 - components: - - type: Transform - pos: -34.5,17.5 - parent: 2 - - uid: 24922 - components: - - type: Transform - pos: -40.5,13.5 - parent: 2 - - uid: 24923 - components: - - type: Transform - pos: -52.5,19.5 - parent: 2 - - uid: 24924 - components: - - type: Transform - pos: -57.5,19.5 - parent: 2 - - uid: 24925 - components: - - type: Transform - pos: -56.5,19.5 - parent: 2 - - uid: 24926 - components: - - type: Transform - pos: -58.5,19.5 - parent: 2 - - uid: 24927 - components: - - type: Transform - pos: -59.5,19.5 - parent: 2 - - uid: 24928 - components: - - type: Transform - pos: -55.5,19.5 - parent: 2 - - uid: 24929 - components: - - type: Transform - pos: -51.5,-19.5 - parent: 2 - - uid: 24930 - components: - - type: Transform - pos: -50.5,-19.5 - parent: 2 - - uid: 24931 - components: - - type: Transform - pos: -49.5,-19.5 - parent: 2 - - uid: 24932 - components: - - type: Transform - pos: -46.5,-19.5 - parent: 2 - - uid: 24933 - components: - - type: Transform - pos: -45.5,-19.5 - parent: 2 - - uid: 24934 - components: - - type: Transform - pos: -62.5,17.5 - parent: 2 - - uid: 24935 - components: - - type: Transform - pos: -62.5,16.5 - parent: 2 - - uid: 24936 - components: - - type: Transform - pos: 1.5,-58.5 - parent: 2 - - uid: 24937 - components: - - type: Transform - pos: -62.5,15.5 - parent: 2 - - uid: 24938 - components: - - type: Transform - pos: -63.5,15.5 - parent: 2 - - uid: 24939 - components: - - type: Transform - pos: -64.5,15.5 - parent: 2 - - uid: 24940 - components: - - type: Transform - pos: -60.5,18.5 - parent: 2 - - uid: 24941 - components: - - type: Transform - pos: -29.5,-28.5 - parent: 2 - - uid: 24942 - components: - - type: Transform - pos: -60.5,17.5 - parent: 2 - - uid: 24943 - components: - - type: Transform - pos: -54.5,19.5 - parent: 2 - - uid: 24944 - components: - - type: Transform - pos: -77.5,11.5 - parent: 2 - - uid: 24945 - components: - - type: Transform - pos: -76.5,11.5 - parent: 2 - - uid: 24946 - components: - - type: Transform - pos: -75.5,11.5 - parent: 2 - - uid: 24947 - components: - - type: Transform - pos: -74.5,11.5 - parent: 2 - - uid: 24954 - components: - - type: Transform - pos: -31.5,-23.5 - parent: 2 - - uid: 24955 - components: - - type: Transform - pos: -30.5,-23.5 - parent: 2 - - uid: 24958 - components: - - type: Transform - pos: -64.5,18.5 - parent: 2 - - uid: 24959 - components: - - type: Transform - pos: -64.5,17.5 - parent: 2 - - uid: 24960 - components: - - type: Transform - pos: -64.5,16.5 - parent: 2 - - uid: 24961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-2.5 - parent: 2 - - uid: 24962 - components: - - type: Transform - pos: -53.5,19.5 - parent: 2 - - uid: 24963 - components: - - type: Transform - pos: -60.5,19.5 - parent: 2 - - uid: 24965 - components: - - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 24966 - components: - - type: Transform - pos: -29.5,-31.5 - parent: 2 - - uid: 24967 - components: - - type: Transform - pos: 2.5,-58.5 - parent: 2 - - uid: 24968 - components: - - type: Transform - pos: 0.5,-58.5 - parent: 2 - - uid: 24969 - components: - - type: Transform - pos: -4.5,-57.5 - parent: 2 - - uid: 24970 - components: - - type: Transform - pos: -4.5,-58.5 - parent: 2 - - uid: 24971 - components: - - type: Transform - pos: -4.5,-55.5 - parent: 2 - - uid: 24972 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 2 - - uid: 24973 - components: - - type: Transform - pos: -3.5,-60.5 - parent: 2 - - uid: 24975 - components: - - type: Transform - pos: 2.5,-46.5 - parent: 2 - - uid: 24976 - components: - - type: Transform - pos: 2.5,-47.5 - parent: 2 - - uid: 24977 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 2 - - uid: 24978 - components: - - type: Transform - pos: 2.5,-49.5 - parent: 2 - - uid: 24979 - components: - - type: Transform - pos: 2.5,-50.5 - parent: 2 - - uid: 24980 - components: - - type: Transform - pos: -10.5,-79.5 - parent: 2 - - uid: 24981 - components: - - type: Transform - pos: -3.5,-63.5 - parent: 2 - - uid: 24982 - components: - - type: Transform - pos: 2.5,-39.5 - parent: 2 - - uid: 24983 - components: - - type: Transform - pos: 3.5,-39.5 - parent: 2 - - uid: 24984 - components: - - type: Transform - pos: 4.5,-39.5 - parent: 2 - - uid: 24985 - components: - - type: Transform - pos: 5.5,-39.5 - parent: 2 - - uid: 24987 - components: - - type: Transform - pos: 7.5,-39.5 - parent: 2 - - uid: 24988 - components: - - type: Transform - pos: 8.5,-41.5 - parent: 2 - - uid: 24989 - components: - - type: Transform - pos: 47.5,2.5 - parent: 2 - - uid: 24990 - components: - - type: Transform - pos: 47.5,5.5 - parent: 2 - - uid: 24991 - components: - - type: Transform - pos: 47.5,6.5 - parent: 2 - - uid: 24992 - components: - - type: Transform - pos: 48.5,6.5 - parent: 2 - - uid: 24993 - components: - - type: Transform - pos: 49.5,2.5 - parent: 2 - - uid: 24994 - components: - - type: Transform - pos: 49.5,5.5 - parent: 2 - - uid: 24995 - components: - - type: Transform - pos: 49.5,6.5 - parent: 2 - - uid: 25001 - components: - - type: Transform - pos: 54.5,21.5 - parent: 2 - - uid: 25002 - components: - - type: Transform - pos: 54.5,20.5 - parent: 2 - - uid: 25003 - components: - - type: Transform - pos: 54.5,19.5 - parent: 2 - - uid: 25004 - components: - - type: Transform - pos: 54.5,18.5 - parent: 2 - - uid: 25005 - components: - - type: Transform - pos: 58.5,21.5 - parent: 2 - - uid: 25006 - components: - - type: Transform - pos: 58.5,20.5 - parent: 2 - - uid: 25007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-88.5 - parent: 2 - - uid: 25012 - components: - - type: Transform - pos: 59.5,20.5 - parent: 2 - - uid: 25013 - components: - - type: Transform - pos: -3.5,-62.5 - parent: 2 - - uid: 25014 - components: - - type: Transform - pos: -3.5,-61.5 - parent: 2 - - uid: 25017 - components: - - type: Transform - pos: 45.5,-39.5 - parent: 2 - - uid: 25018 - components: - - type: Transform - pos: 42.5,-39.5 - parent: 2 - - uid: 25020 - components: - - type: Transform - pos: 58.5,22.5 - parent: 2 - - uid: 25024 - components: - - type: Transform - pos: 47.5,-37.5 - parent: 2 - - uid: 25025 - components: - - type: Transform - pos: 48.5,-37.5 - parent: 2 - - uid: 25026 - components: - - type: Transform - pos: 48.5,-38.5 - parent: 2 - - uid: 25027 - components: - - type: Transform - pos: 48.5,-39.5 - parent: 2 - - uid: 25028 - components: - - type: Transform - pos: 42.5,-40.5 - parent: 2 - - uid: 25029 - components: - - type: Transform - pos: 48.5,-40.5 - parent: 2 - - uid: 25030 - components: - - type: Transform - pos: 45.5,-38.5 - parent: 2 - - uid: 25031 - components: - - type: Transform - pos: 45.5,-40.5 - parent: 2 - - uid: 25032 - components: - - type: Transform - pos: 46.5,-40.5 - parent: 2 - - uid: 25033 - components: - - type: Transform - pos: 45.5,-41.5 - parent: 2 - - uid: 25034 - components: - - type: Transform - pos: 42.5,-37.5 - parent: 2 - - uid: 25035 - components: - - type: Transform - pos: 42.5,-38.5 - parent: 2 - - uid: 25036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-88.5 - parent: 2 - - uid: 25046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-88.5 - parent: 2 - - uid: 25048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-82.5 - parent: 2 - - uid: 25053 - components: - - type: Transform - pos: 48.5,-57.5 - parent: 2 - - uid: 25054 - components: - - type: Transform - pos: 48.5,-58.5 - parent: 2 - - uid: 25055 - components: - - type: Transform - pos: 48.5,-59.5 - parent: 2 - - uid: 25056 - components: - - type: Transform - pos: 48.5,-60.5 - parent: 2 - - uid: 25057 - components: - - type: Transform - pos: 48.5,-61.5 - parent: 2 - - uid: 25058 - components: - - type: Transform - pos: 47.5,-61.5 - parent: 2 - - uid: 25059 - components: - - type: Transform - pos: 46.5,-61.5 - parent: 2 - - uid: 25060 - components: - - type: Transform - pos: 45.5,-61.5 - parent: 2 - - uid: 25061 - components: - - type: Transform - pos: 44.5,-61.5 - parent: 2 - - uid: 25062 - components: - - type: Transform - pos: 43.5,-61.5 - parent: 2 - - uid: 25063 - components: - - type: Transform - pos: 42.5,-61.5 - parent: 2 - - uid: 25078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-54.5 - parent: 2 - - uid: 25084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-84.5 - parent: 2 - - uid: 25086 - components: - - type: Transform - pos: -15.5,23.5 - parent: 2 - - uid: 25091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-69.5 - parent: 2 - - uid: 25095 - components: - - type: Transform - pos: 64.5,-53.5 - parent: 2 - - uid: 25096 - components: - - type: Transform - pos: 64.5,-52.5 - parent: 2 - - uid: 25097 - components: - - type: Transform - pos: 64.5,-51.5 - parent: 2 - - uid: 25098 - components: - - type: Transform - pos: 64.5,-50.5 - parent: 2 - - uid: 25104 - components: - - type: Transform - pos: 57.5,-32.5 - parent: 2 - - uid: 25105 - components: - - type: Transform - pos: 56.5,-32.5 - parent: 2 - - uid: 25106 - components: - - type: Transform - pos: 55.5,-32.5 - parent: 2 - - uid: 25107 - components: - - type: Transform - pos: 54.5,-32.5 - parent: 2 - - uid: 25108 - components: - - type: Transform - pos: 52.5,-32.5 - parent: 2 - - uid: 25109 - components: - - type: Transform - pos: 51.5,-32.5 - parent: 2 - - uid: 25110 - components: - - type: Transform - pos: 51.5,-31.5 - parent: 2 - - uid: 25111 - components: - - type: Transform - pos: 51.5,-30.5 - parent: 2 - - uid: 25112 - components: - - type: Transform - pos: 51.5,-29.5 - parent: 2 - - uid: 25113 - components: - - type: Transform - pos: 51.5,-28.5 - parent: 2 - - uid: 25114 - components: - - type: Transform - pos: 52.5,-28.5 - parent: 2 - - uid: 25115 - components: - - type: Transform - pos: 54.5,-28.5 - parent: 2 - - uid: 25116 - components: - - type: Transform - pos: 56.5,-28.5 - parent: 2 - - uid: 25117 - components: - - type: Transform - pos: 57.5,-28.5 - parent: 2 - - uid: 25118 - components: - - type: Transform - pos: 58.5,-28.5 - parent: 2 - - uid: 25119 - components: - - type: Transform - pos: 58.5,-29.5 - parent: 2 - - uid: 25121 - components: - - type: Transform - pos: 58.5,-31.5 - parent: 2 - - uid: 25124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-65.5 - parent: 2 - - uid: 25161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,29.5 - parent: 2 - - uid: 25176 - components: - - type: Transform - pos: -22.5,-39.5 - parent: 2 - - uid: 25180 - components: - - type: Transform - pos: 81.5,-48.5 - parent: 2 - - uid: 25181 - components: - - type: Transform - pos: 81.5,-49.5 - parent: 2 - - uid: 25182 - components: - - type: Transform - pos: 81.5,-50.5 - parent: 2 - - uid: 25183 - components: - - type: Transform - pos: 81.5,-51.5 - parent: 2 - - uid: 25184 - components: - - type: Transform - pos: 81.5,-52.5 - parent: 2 - - uid: 25185 - components: - - type: Transform - pos: 81.5,-53.5 - parent: 2 - - uid: 25186 - components: - - type: Transform - pos: 80.5,-55.5 - parent: 2 - - uid: 25187 - components: - - type: Transform - pos: 81.5,-54.5 - parent: 2 - - uid: 25188 - components: - - type: Transform - pos: 79.5,-55.5 - parent: 2 - - uid: 25189 - components: - - type: Transform - pos: 78.5,-55.5 - parent: 2 - - uid: 25190 - components: - - type: Transform - pos: 77.5,-55.5 - parent: 2 - - uid: 25191 - components: - - type: Transform - pos: 76.5,-55.5 - parent: 2 - - uid: 25192 - components: - - type: Transform - pos: 75.5,-55.5 - parent: 2 - - uid: 25193 - components: - - type: Transform - pos: 80.5,-48.5 - parent: 2 - - uid: 25194 - components: - - type: Transform - pos: 79.5,-48.5 - parent: 2 - - uid: 25195 - components: - - type: Transform - pos: 78.5,-48.5 - parent: 2 - - uid: 25196 - components: - - type: Transform - pos: 74.5,-48.5 - parent: 2 - - uid: 25197 - components: - - type: Transform - pos: 73.5,-48.5 - parent: 2 - - uid: 25198 - components: - - type: Transform - pos: 69.5,-48.5 - parent: 2 - - uid: 25199 - components: - - type: Transform - pos: 75.5,-56.5 - parent: 2 - - uid: 25200 - components: - - type: Transform - pos: 75.5,-57.5 - parent: 2 - - uid: 25201 - components: - - type: Transform - pos: 75.5,-58.5 - parent: 2 - - uid: 25202 - components: - - type: Transform - pos: 74.5,-58.5 - parent: 2 - - uid: 25203 - components: - - type: Transform - pos: 73.5,-58.5 - parent: 2 - - uid: 25204 - components: - - type: Transform - pos: 72.5,-58.5 - parent: 2 - - uid: 25205 - components: - - type: Transform - pos: 71.5,-58.5 - parent: 2 - - uid: 25206 - components: - - type: Transform - pos: 71.5,-57.5 - parent: 2 - - uid: 25207 - components: - - type: Transform - pos: 71.5,-56.5 - parent: 2 - - uid: 25208 - components: - - type: Transform - pos: 71.5,-55.5 - parent: 2 - - uid: 25209 - components: - - type: Transform - pos: 70.5,-54.5 - parent: 2 - - uid: 25210 - components: - - type: Transform - pos: 69.5,-54.5 - parent: 2 - - uid: 25211 - components: - - type: Transform - pos: 68.5,-54.5 - parent: 2 - - uid: 25212 - components: - - type: Transform - pos: 67.5,-54.5 - parent: 2 - - uid: 25213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,25.5 - parent: 2 - - uid: 25214 - components: - - type: Transform - pos: 58.5,28.5 - parent: 2 - - uid: 25215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 2 - - uid: 25216 - components: - - type: Transform - pos: 42.5,-41.5 - parent: 2 - - uid: 25217 - components: - - type: Transform - pos: 45.5,-37.5 - parent: 2 - - uid: 25218 - components: - - type: Transform - pos: 46.5,-37.5 - parent: 2 - - uid: 25219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-11.5 - parent: 2 - - uid: 25220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,24.5 - parent: 2 - - uid: 25221 - components: - - type: Transform - pos: 60.5,28.5 - parent: 2 - - uid: 25222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 2 - - uid: 25223 - components: - - type: Transform - pos: 55.5,-56.5 - parent: 2 - - uid: 25224 - components: - - type: Transform - pos: 54.5,-56.5 - parent: 2 - - uid: 25225 - components: - - type: Transform - pos: 50.5,-58.5 - parent: 2 - - uid: 25226 - components: - - type: Transform - pos: 50.5,-57.5 - parent: 2 - - uid: 25227 - components: - - type: Transform - pos: 50.5,-56.5 - parent: 2 - - uid: 25228 - components: - - type: Transform - pos: 60.5,-56.5 - parent: 2 - - uid: 25229 - components: - - type: Transform - pos: 59.5,-56.5 - parent: 2 - - uid: 25230 - components: - - type: Transform - pos: 64.5,-56.5 - parent: 2 - - uid: 25231 - components: - - type: Transform - pos: 64.5,-49.5 - parent: 2 - - uid: 25232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,29.5 - parent: 2 - - uid: 25233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,29.5 - parent: 2 - - uid: 25234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,29.5 - parent: 2 - - uid: 25235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,29.5 - parent: 2 - - uid: 25237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,29.5 - parent: 2 - - uid: 25240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-82.5 - parent: 2 - - uid: 25242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-93.5 - parent: 2 - - uid: 25258 - components: - - type: Transform - pos: 71.5,17.5 - parent: 2 - - uid: 25259 - components: - - type: Transform - pos: 71.5,18.5 - parent: 2 - - uid: 25260 - components: - - type: Transform - pos: 71.5,19.5 - parent: 2 - - uid: 25261 - components: - - type: Transform - pos: 71.5,20.5 - parent: 2 - - uid: 25262 - components: - - type: Transform - pos: 61.5,28.5 - parent: 2 - - uid: 25263 - components: - - type: Transform - pos: 62.5,28.5 - parent: 2 - - uid: 25266 - components: - - type: Transform - pos: -11.5,-24.5 - parent: 2 - - uid: 25267 - components: - - type: Transform - pos: 64.5,28.5 - parent: 2 - - uid: 25268 - components: - - type: Transform - pos: -74.5,-16.5 - parent: 2 - - uid: 25269 - components: - - type: Transform - pos: -74.5,-17.5 - parent: 2 - - uid: 25270 - components: - - type: Transform - pos: -69.5,-16.5 - parent: 2 - - uid: 25271 - components: - - type: Transform - pos: -69.5,-17.5 - parent: 2 - - uid: 25272 - components: - - type: Transform - pos: -56.5,-21.5 - parent: 2 - - uid: 25273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,26.5 - parent: 2 - - uid: 25275 - components: - - type: Transform - pos: 44.5,-41.5 - parent: 2 - - uid: 25276 - components: - - type: Transform - pos: 44.5,-37.5 - parent: 2 - - uid: 25277 - components: - - type: Transform - pos: 43.5,-37.5 - parent: 2 - - uid: 25278 - components: - - type: Transform - pos: 64.5,-54.5 - parent: 2 - - uid: 25279 - components: - - type: Transform - pos: 65.5,-54.5 - parent: 2 - - uid: 25280 - components: - - type: Transform - pos: -62.5,-18.5 - parent: 2 - - uid: 25281 - components: - - type: Transform - pos: -62.5,-19.5 - parent: 2 - - uid: 25282 - components: - - type: Transform - pos: -62.5,-20.5 - parent: 2 - - uid: 25283 - components: - - type: Transform - pos: -62.5,-21.5 - parent: 2 - - uid: 25284 - components: - - type: Transform - pos: -52.5,-19.5 - parent: 2 - - uid: 25285 - components: - - type: Transform - pos: -55.5,-21.5 - parent: 2 - - uid: 25287 - components: - - type: Transform - pos: 22.5,49.5 - parent: 2 - - uid: 25288 - components: - - type: Transform - pos: 21.5,49.5 - parent: 2 - - uid: 25290 - components: - - type: Transform - pos: 3.5,34.5 - parent: 2 - - uid: 25291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,34.5 - parent: 2 - - uid: 25292 - components: - - type: Transform - pos: -12.5,-24.5 - parent: 2 - - uid: 25295 - components: - - type: Transform - pos: 21.5,48.5 - parent: 2 - - uid: 25297 - components: - - type: Transform - pos: 25.5,48.5 - parent: 2 - - uid: 25298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-15.5 - parent: 2 - - uid: 25299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,2.5 - parent: 2 - - uid: 25300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-6.5 - parent: 2 - - uid: 25302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-16.5 - parent: 2 - - uid: 25303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,-16.5 - parent: 2 - - uid: 25304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-0.5 - parent: 2 - - uid: 25305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-4.5 - parent: 2 - - uid: 25306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-2.5 - parent: 2 - - uid: 25307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,2.5 - parent: 2 - - uid: 25308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-5.5 - parent: 2 - - uid: 25309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,1.5 - parent: 2 - - uid: 25310 - components: - - type: Transform - pos: -62.5,-16.5 - parent: 2 - - uid: 25311 - components: - - type: Transform - pos: -44.5,-19.5 - parent: 2 - - uid: 25312 - components: - - type: Transform - pos: -43.5,-19.5 - parent: 2 - - uid: 25313 - components: - - type: Transform - pos: -42.5,-19.5 - parent: 2 - - uid: 25315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-17.5 - parent: 2 - - uid: 25318 - components: - - type: Transform - pos: 9.5,-24.5 - parent: 2 - - uid: 25319 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,0.5 - parent: 2 - - uid: 25321 - components: - - type: Transform - pos: -18.5,9.5 - parent: 2 - - uid: 25325 - components: - - type: Transform - pos: -34.5,-24.5 - parent: 2 - - uid: 25326 - components: - - type: Transform - pos: 86.5,-43.5 - parent: 2 - - uid: 25327 - components: - - type: Transform - pos: 85.5,-43.5 - parent: 2 - - uid: 25328 - components: - - type: Transform - pos: 84.5,-43.5 - parent: 2 - - uid: 25329 - components: - - type: Transform - pos: 83.5,-43.5 - parent: 2 - - uid: 25330 - components: - - type: Transform - pos: 85.5,-46.5 - parent: 2 - - uid: 25331 - components: - - type: Transform - pos: 84.5,-46.5 - parent: 2 - - uid: 25332 - components: - - type: Transform - pos: 83.5,-46.5 - parent: 2 - - uid: 25333 - components: - - type: Transform - pos: 87.5,-46.5 - parent: 2 - - uid: 25334 - components: - - type: Transform - pos: 86.5,-46.5 - parent: 2 - - uid: 25335 - components: - - type: Transform - pos: 87.5,-49.5 - parent: 2 - - uid: 25336 - components: - - type: Transform - pos: 83.5,-48.5 - parent: 2 - - uid: 25337 - components: - - type: Transform - pos: 83.5,-61.5 - parent: 2 - - uid: 25338 - components: - - type: Transform - pos: 79.5,-61.5 - parent: 2 - - uid: 25339 - components: - - type: Transform - pos: 79.5,-62.5 - parent: 2 - - uid: 25340 - components: - - type: Transform - pos: 79.5,-63.5 - parent: 2 - - uid: 25341 - components: - - type: Transform - pos: 79.5,-64.5 - parent: 2 - - uid: 25342 - components: - - type: Transform - pos: 83.5,-62.5 - parent: 2 - - uid: 25343 - components: - - type: Transform - pos: 83.5,-63.5 - parent: 2 - - uid: 25344 - components: - - type: Transform - pos: 83.5,-64.5 - parent: 2 - - uid: 25345 - components: - - type: Transform - pos: 79.5,-65.5 - parent: 2 - - uid: 25346 - components: - - type: Transform - pos: 80.5,-68.5 - parent: 2 - - uid: 25347 - components: - - type: Transform - pos: 79.5,-66.5 - parent: 2 - - uid: 25348 - components: - - type: Transform - pos: 80.5,-67.5 - parent: 2 - - uid: 25349 - components: - - type: Transform - pos: 80.5,-62.5 - parent: 2 - - uid: 25350 - components: - - type: Transform - pos: 82.5,-62.5 - parent: 2 - - uid: 25352 - components: - - type: Transform - pos: 80.5,-66.5 - parent: 2 - - uid: 25353 - components: - - type: Transform - pos: 8.5,-39.5 - parent: 2 - - uid: 25354 - components: - - type: Transform - pos: 66.5,28.5 - parent: 2 - - uid: 25385 - components: - - type: Transform - pos: -46.5,-28.5 - parent: 2 - - uid: 25386 - components: - - type: Transform - pos: -45.5,-27.5 - parent: 2 - - uid: 25387 - components: - - type: Transform - pos: -34.5,-32.5 - parent: 2 - - uid: 25388 - components: - - type: Transform - pos: -30.5,-32.5 - parent: 2 - - uid: 25389 - components: - - type: Transform - pos: -29.5,-32.5 - parent: 2 - - uid: 25390 - components: - - type: Transform - pos: -29.5,-33.5 - parent: 2 - - uid: 25391 - components: - - type: Transform - pos: -30.5,-34.5 - parent: 2 - - uid: 25392 - components: - - type: Transform - pos: -29.5,-34.5 - parent: 2 - - uid: 25394 - components: - - type: Transform - pos: -30.5,-35.5 - parent: 2 - - uid: 25395 - components: - - type: Transform - pos: -24.5,-42.5 - parent: 2 - - uid: 25396 - components: - - type: Transform - pos: -23.5,-42.5 - parent: 2 - - uid: 25397 - components: - - type: Transform - pos: -22.5,-42.5 - parent: 2 - - uid: 25398 - components: - - type: Transform - pos: -22.5,-41.5 - parent: 2 - - uid: 25400 - components: - - type: Transform - pos: -19.5,-43.5 - parent: 2 - - uid: 25401 - components: - - type: Transform - pos: -23.5,-39.5 - parent: 2 - - uid: 25402 - components: - - type: Transform - pos: -11.5,-40.5 - parent: 2 - - uid: 25403 - components: - - type: Transform - pos: -11.5,-39.5 - parent: 2 - - uid: 25404 - components: - - type: Transform - pos: -11.5,-32.5 - parent: 2 - - uid: 25405 - components: - - type: Transform - pos: -11.5,-33.5 - parent: 2 - - uid: 25406 - components: - - type: Transform - pos: -18.5,-46.5 - parent: 2 - - uid: 25408 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-28.5 - parent: 2 - - uid: 25409 - components: - - type: Transform - pos: 93.5,-24.5 - parent: 2 - - uid: 25410 - components: - - type: Transform - pos: 92.5,-24.5 - parent: 2 - - uid: 25415 - components: - - type: Transform - pos: 2.5,-40.5 - parent: 2 - - uid: 25417 - components: - - type: Transform - pos: -24.5,1.5 - parent: 2 - - uid: 25418 - components: - - type: Transform - pos: -24.5,4.5 - parent: 2 - - uid: 25419 - components: - - type: Transform - pos: -24.5,7.5 - parent: 2 - - uid: 25420 - components: - - type: Transform - pos: 87.5,-37.5 - parent: 2 - - uid: 25421 - components: - - type: Transform - pos: 18.5,-23.5 - parent: 2 - - uid: 25422 - components: - - type: Transform - pos: 17.5,-19.5 - parent: 2 - - uid: 25423 - components: - - type: Transform - pos: 17.5,-23.5 - parent: 2 - - uid: 25424 - components: - - type: Transform - pos: 17.5,-22.5 - parent: 2 - - uid: 25425 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 - - uid: 25426 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 2 - - uid: 25427 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 2 - - uid: 25428 - components: - - type: Transform - pos: -39.5,-47.5 - parent: 2 - - uid: 25429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-16.5 - parent: 2 - - uid: 25430 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 2 - - uid: 25431 - components: - - type: Transform - pos: -11.5,-37.5 - parent: 2 - - uid: 25432 - components: - - type: Transform - pos: -11.5,-35.5 - parent: 2 - - uid: 25437 - components: - - type: Transform - pos: 87.5,-39.5 - parent: 2 - - uid: 25438 - components: - - type: Transform - pos: 89.5,-32.5 - parent: 2 - - uid: 25439 - components: - - type: Transform - pos: 90.5,-32.5 - parent: 2 - - uid: 25440 - components: - - type: Transform - pos: -4.5,-53.5 - parent: 2 - - uid: 25441 - components: - - type: Transform - pos: -4.5,-52.5 - parent: 2 - - uid: 25442 - components: - - type: Transform - pos: -4.5,-51.5 - parent: 2 - - uid: 25443 - components: - - type: Transform - pos: -4.5,-50.5 - parent: 2 - - uid: 25444 - components: - - type: Transform - pos: -4.5,-49.5 - parent: 2 - - uid: 25445 - components: - - type: Transform - pos: -5.5,-49.5 - parent: 2 - - uid: 25446 - components: - - type: Transform - pos: -5.5,-48.5 - parent: 2 - - uid: 25447 - components: - - type: Transform - pos: -6.5,-48.5 - parent: 2 - - uid: 25448 - components: - - type: Transform - pos: -7.5,-48.5 - parent: 2 - - uid: 25449 - components: - - type: Transform - pos: -8.5,-48.5 - parent: 2 - - uid: 25450 - components: - - type: Transform - pos: -9.5,-48.5 - parent: 2 - - uid: 25451 - components: - - type: Transform - pos: -10.5,-48.5 - parent: 2 - - uid: 25452 - components: - - type: Transform - pos: -11.5,-48.5 - parent: 2 - - uid: 25453 - components: - - type: Transform - pos: -12.5,-48.5 - parent: 2 - - uid: 25454 - components: - - type: Transform - pos: -13.5,-48.5 - parent: 2 - - uid: 25455 - components: - - type: Transform - pos: -14.5,-48.5 - parent: 2 - - uid: 25456 - components: - - type: Transform - pos: -15.5,-48.5 - parent: 2 - - uid: 25457 - components: - - type: Transform - pos: -16.5,-48.5 - parent: 2 - - uid: 25458 - components: - - type: Transform - pos: -17.5,-48.5 - parent: 2 - - uid: 25459 - components: - - type: Transform - pos: -5.5,-58.5 - parent: 2 - - uid: 25460 - components: - - type: Transform - pos: -6.5,-58.5 - parent: 2 - - uid: 25461 - components: - - type: Transform - pos: -7.5,-58.5 - parent: 2 - - uid: 25462 - components: - - type: Transform - pos: -8.5,-58.5 - parent: 2 - - uid: 25463 - components: - - type: Transform - pos: -9.5,-58.5 - parent: 2 - - uid: 25464 - components: - - type: Transform - pos: -10.5,-58.5 - parent: 2 - - uid: 25465 - components: - - type: Transform - pos: -11.5,-58.5 - parent: 2 - - uid: 25466 - components: - - type: Transform - pos: -12.5,-58.5 - parent: 2 - - uid: 25467 - components: - - type: Transform - pos: -13.5,-58.5 - parent: 2 - - uid: 25468 - components: - - type: Transform - pos: -14.5,-58.5 - parent: 2 - - uid: 25469 - components: - - type: Transform - pos: -15.5,-58.5 - parent: 2 - - uid: 25470 - components: - - type: Transform - pos: -16.5,-58.5 - parent: 2 - - uid: 25471 - components: - - type: Transform - pos: -17.5,-58.5 - parent: 2 - - uid: 25472 - components: - - type: Transform - pos: -17.5,-56.5 - parent: 2 - - uid: 25473 - components: - - type: Transform - pos: -17.5,-55.5 - parent: 2 - - uid: 25474 - components: - - type: Transform - pos: -17.5,-54.5 - parent: 2 - - uid: 25475 - components: - - type: Transform - pos: -17.5,-53.5 - parent: 2 - - uid: 25476 - components: - - type: Transform - pos: -17.5,-52.5 - parent: 2 - - uid: 25477 - components: - - type: Transform - pos: -17.5,-51.5 - parent: 2 - - uid: 25478 - components: - - type: Transform - pos: -17.5,-50.5 - parent: 2 - - uid: 25479 - components: - - type: Transform - pos: -17.5,-49.5 - parent: 2 - - uid: 25480 - components: - - type: Transform - pos: -17.5,-57.5 - parent: 2 - - uid: 25481 - components: - - type: Transform - pos: 91.5,-32.5 - parent: 2 - - uid: 25485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-63.5 - parent: 2 - - uid: 25486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-59.5 - parent: 2 - - uid: 25490 - components: - - type: Transform - pos: -6.5,-60.5 - parent: 2 - - uid: 25491 - components: - - type: Transform - pos: -5.5,-60.5 - parent: 2 - - uid: 25492 - components: - - type: Transform - pos: -4.5,-60.5 - parent: 2 - - uid: 25493 - components: - - type: Transform - pos: 0.5,-60.5 - parent: 2 - - uid: 25494 - components: - - type: Transform - pos: 0.5,-59.5 - parent: 2 - - uid: 25495 - components: - - type: Transform - pos: 91.5,-31.5 - parent: 2 - - uid: 25496 - components: - - type: Transform - pos: 92.5,-31.5 - parent: 2 - - uid: 25497 - components: - - type: Transform - pos: 93.5,-31.5 - parent: 2 - - uid: 25504 - components: - - type: Transform - pos: -18.5,-67.5 - parent: 2 - - uid: 25505 - components: - - type: Transform - pos: -19.5,-67.5 - parent: 2 - - uid: 25506 - components: - - type: Transform - pos: -16.5,-67.5 - parent: 2 - - uid: 25507 - components: - - type: Transform - pos: -14.5,-67.5 - parent: 2 - - uid: 25508 - components: - - type: Transform - pos: 87.5,-22.5 - parent: 2 - - uid: 25509 - components: - - type: Transform - pos: 87.5,-21.5 - parent: 2 - - uid: 25510 - components: - - type: Transform - pos: 87.5,-20.5 - parent: 2 - - uid: 25511 - components: - - type: Transform - pos: 86.5,-20.5 - parent: 2 - - uid: 25513 - components: - - type: Transform - pos: 85.5,-20.5 - parent: 2 - - uid: 25514 - components: - - type: Transform - pos: 84.5,-20.5 - parent: 2 - - uid: 25515 - components: - - type: Transform - pos: -24.5,6.5 - parent: 2 - - uid: 25516 - components: - - type: Transform - pos: -35.5,-59.5 - parent: 2 - - uid: 25517 - components: - - type: Transform - pos: -39.5,-51.5 - parent: 2 - - uid: 25518 - components: - - type: Transform - pos: -40.5,-50.5 - parent: 2 - - uid: 25519 - components: - - type: Transform - pos: -41.5,-51.5 - parent: 2 - - uid: 25520 - components: - - type: Transform - pos: -38.5,-50.5 - parent: 2 - - uid: 25521 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 2 - - uid: 25522 - components: - - type: Transform - pos: 83.5,-20.5 - parent: 2 - - uid: 25523 - components: - - type: Transform - pos: 82.5,-18.5 - parent: 2 - - uid: 25524 - components: - - type: Transform - pos: -36.5,-59.5 - parent: 2 - - uid: 25525 - components: - - type: Transform - pos: -37.5,-59.5 - parent: 2 - - uid: 25526 - components: - - type: Transform - pos: -38.5,-59.5 - parent: 2 - - uid: 25527 - components: - - type: Transform - pos: -39.5,-59.5 - parent: 2 - - uid: 25528 - components: - - type: Transform - pos: -35.5,-62.5 - parent: 2 - - uid: 25529 - components: - - type: Transform - pos: -35.5,-63.5 - parent: 2 - - uid: 25530 - components: - - type: Transform - pos: -36.5,-63.5 - parent: 2 - - uid: 25531 - components: - - type: Transform - pos: -37.5,-63.5 - parent: 2 - - uid: 25532 - components: - - type: Transform - pos: -38.5,-63.5 - parent: 2 - - uid: 25533 - components: - - type: Transform - pos: -39.5,-60.5 - parent: 2 - - uid: 25534 - components: - - type: Transform - pos: -40.5,-60.5 - parent: 2 - - uid: 25535 - components: - - type: Transform - pos: -41.5,-60.5 - parent: 2 - - uid: 25536 - components: - - type: Transform - pos: -40.5,-51.5 - parent: 2 - - uid: 25537 - components: - - type: Transform - pos: 81.5,-18.5 - parent: 2 - - uid: 25538 - components: - - type: Transform - pos: -35.5,-60.5 - parent: 2 - - uid: 25540 - components: - - type: Transform - pos: -22.5,9.5 - parent: 2 - - uid: 25543 - components: - - type: Transform - pos: 71.5,-80.5 - parent: 2 - - uid: 25547 - components: - - type: Transform - pos: -27.5,-63.5 - parent: 2 - - uid: 25548 - components: - - type: Transform - pos: -27.5,-64.5 - parent: 2 - - uid: 25550 - components: - - type: Transform - pos: -27.5,-66.5 - parent: 2 - - uid: 25551 - components: - - type: Transform - pos: -27.5,-67.5 - parent: 2 - - uid: 25552 - components: - - type: Transform - pos: -27.5,-68.5 - parent: 2 - - uid: 25553 - components: - - type: Transform - pos: -27.5,-69.5 - parent: 2 - - uid: 25554 - components: - - type: Transform - pos: -27.5,-70.5 - parent: 2 - - uid: 25555 - components: - - type: Transform - pos: -27.5,-71.5 - parent: 2 - - uid: 25556 - components: - - type: Transform - pos: -27.5,-72.5 - parent: 2 - - uid: 25557 - components: - - type: Transform - pos: -26.5,-72.5 - parent: 2 - - uid: 25558 - components: - - type: Transform - pos: -25.5,-72.5 - parent: 2 - - uid: 25559 - components: - - type: Transform - pos: -24.5,-72.5 - parent: 2 - - uid: 25560 - components: - - type: Transform - pos: -23.5,-72.5 - parent: 2 - - uid: 25561 - components: - - type: Transform - pos: -22.5,-72.5 - parent: 2 - - uid: 25562 - components: - - type: Transform - pos: -21.5,-72.5 - parent: 2 - - uid: 25563 - components: - - type: Transform - pos: -21.5,-71.5 - parent: 2 - - uid: 25564 - components: - - type: Transform - pos: -20.5,-71.5 - parent: 2 - - uid: 25565 - components: - - type: Transform - pos: -18.5,-71.5 - parent: 2 - - uid: 25566 - components: - - type: Transform - pos: -20.5,-65.5 - parent: 2 - - uid: 25567 - components: - - type: Transform - pos: -21.5,-67.5 - parent: 2 - - uid: 25568 - components: - - type: Transform - pos: -21.5,-66.5 - parent: 2 - - uid: 25569 - components: - - type: Transform - pos: -21.5,-65.5 - parent: 2 - - uid: 25570 - components: - - type: Transform - pos: -21.5,-64.5 - parent: 2 - - uid: 25571 - components: - - type: Transform - pos: -26.5,-63.5 - parent: 2 - - uid: 25572 - components: - - type: Transform - pos: -25.5,-63.5 - parent: 2 - - uid: 25574 - components: - - type: Transform - pos: -23.5,-63.5 - parent: 2 - - uid: 25575 - components: - - type: Transform - pos: -22.5,-63.5 - parent: 2 - - uid: 25576 - components: - - type: Transform - pos: -21.5,-63.5 - parent: 2 - - uid: 25577 - components: - - type: Transform - pos: -20.5,-74.5 - parent: 2 - - uid: 25578 - components: - - type: Transform - pos: -21.5,-73.5 - parent: 2 - - uid: 25579 - components: - - type: Transform - pos: -19.5,-74.5 - parent: 2 - - uid: 25580 - components: - - type: Transform - pos: 87.5,-43.5 - parent: 2 - - uid: 25582 - components: - - type: Transform - pos: 87.5,-50.5 - parent: 2 - - uid: 25583 - components: - - type: Transform - pos: 87.5,-54.5 - parent: 2 - - uid: 25584 - components: - - type: Transform - pos: 83.5,-60.5 - parent: 2 - - uid: 25585 - components: - - type: Transform - pos: -21.5,-74.5 - parent: 2 - - uid: 25586 - components: - - type: Transform - pos: -18.5,-72.5 - parent: 2 - - uid: 25587 - components: - - type: Transform - pos: -18.5,-73.5 - parent: 2 - - uid: 25588 - components: - - type: Transform - pos: -18.5,-74.5 - parent: 2 - - uid: 25589 - components: - - type: Transform - pos: 84.5,-60.5 - parent: 2 - - uid: 25590 - components: - - type: Transform - pos: 0.5,-65.5 - parent: 2 - - uid: 25593 - components: - - type: Transform - pos: 0.5,-64.5 - parent: 2 - - uid: 25596 - components: - - type: Transform - pos: 10.5,-63.5 - parent: 2 - - uid: 25597 - components: - - type: Transform - pos: 10.5,-62.5 - parent: 2 - - uid: 25598 - components: - - type: Transform - pos: 10.5,-61.5 - parent: 2 - - uid: 25599 - components: - - type: Transform - pos: 10.5,-60.5 - parent: 2 - - uid: 25600 - components: - - type: Transform - pos: 10.5,-59.5 - parent: 2 - - uid: 25602 - components: - - type: Transform - pos: 86.5,-60.5 - parent: 2 - - uid: 25603 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 2 - - uid: 25604 - components: - - type: Transform - pos: 8.5,-50.5 - parent: 2 - - uid: 25609 - components: - - type: Transform - pos: 87.5,-60.5 - parent: 2 - - uid: 25610 - components: - - type: Transform - pos: 87.5,-59.5 - parent: 2 - - uid: 25611 - components: - - type: Transform - pos: 87.5,-58.5 - parent: 2 - - uid: 25612 - components: - - type: Transform - pos: 87.5,-56.5 - parent: 2 - - uid: 25613 - components: - - type: Transform - pos: 87.5,-55.5 - parent: 2 - - uid: 25614 - components: - - type: Transform - pos: 89.5,-56.5 - parent: 2 - - uid: 25615 - components: - - type: Transform - pos: 88.5,-56.5 - parent: 2 - - uid: 25616 - components: - - type: Transform - pos: 89.5,-58.5 - parent: 2 - - uid: 25617 - components: - - type: Transform - pos: 88.5,-58.5 - parent: 2 - - uid: 25618 - components: - - type: Transform - pos: 31.5,-61.5 - parent: 2 - - uid: 25619 - components: - - type: Transform - pos: 31.5,-62.5 - parent: 2 - - uid: 25620 - components: - - type: Transform - pos: -10.5,-77.5 - parent: 2 - - uid: 25621 - components: - - type: Transform - pos: -9.5,-77.5 - parent: 2 - - uid: 25624 - components: - - type: Transform - pos: -7.5,-78.5 - parent: 2 - - uid: 25625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-92.5 - parent: 2 - - uid: 25627 - components: - - type: Transform - pos: 37.5,-70.5 - parent: 2 - - uid: 25628 - components: - - type: Transform - pos: 31.5,-65.5 - parent: 2 - - uid: 25629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-92.5 - parent: 2 - - uid: 25630 - components: - - type: Transform - pos: 37.5,-71.5 - parent: 2 - - uid: 25634 - components: - - type: Transform - pos: 7.5,-79.5 - parent: 2 - - uid: 25639 - components: - - type: Transform - pos: 39.5,-72.5 - parent: 2 - - uid: 25640 - components: - - type: Transform - pos: 39.5,-73.5 - parent: 2 - - uid: 25642 - components: - - type: Transform - pos: 40.5,-73.5 - parent: 2 - - uid: 25643 - components: - - type: Transform - pos: 40.5,-74.5 - parent: 2 - - uid: 25644 - components: - - type: Transform - pos: 45.5,-74.5 - parent: 2 - - uid: 25645 - components: - - type: Transform - pos: 41.5,-74.5 - parent: 2 - - uid: 25646 - components: - - type: Transform - pos: 46.5,-74.5 - parent: 2 - - uid: 25648 - components: - - type: Transform - pos: 46.5,-73.5 - parent: 2 - - uid: 25649 - components: - - type: Transform - pos: 47.5,-73.5 - parent: 2 - - uid: 25655 - components: - - type: Transform - pos: 54.5,-63.5 - parent: 2 - - uid: 25656 - components: - - type: Transform - pos: 64.5,-60.5 - parent: 2 - - uid: 25657 - components: - - type: Transform - pos: 59.5,-60.5 - parent: 2 - - uid: 25658 - components: - - type: Transform - pos: 60.5,-63.5 - parent: 2 - - uid: 25659 - components: - - type: Transform - pos: 64.5,-63.5 - parent: 2 - - uid: 25663 - components: - - type: Transform - pos: -38.5,-48.5 - parent: 2 - - uid: 25666 - components: - - type: Transform - pos: -38.5,-47.5 - parent: 2 - - uid: 25673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-42.5 - parent: 2 - - uid: 25674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-45.5 - parent: 2 - - uid: 25677 - components: - - type: Transform - pos: 10.5,-57.5 - parent: 2 - - uid: 25678 - components: - - type: Transform - pos: 10.5,-56.5 - parent: 2 - - uid: 25679 - components: - - type: Transform - pos: 10.5,-55.5 - parent: 2 - - uid: 25680 - components: - - type: Transform - pos: -17.5,-71.5 - parent: 2 - - uid: 25683 - components: - - type: Transform - pos: 7.5,-77.5 - parent: 2 - - uid: 25685 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-3.5 - parent: 2 - - uid: 25704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,28.5 - parent: 2 - - uid: 25713 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - - uid: 25753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,45.5 - parent: 2 - - uid: 25754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-5.5 - parent: 2 - - uid: 25755 - components: - - type: Transform - pos: 71.5,-69.5 - parent: 2 - - uid: 25756 - components: - - type: Transform - pos: 72.5,-69.5 - parent: 2 - - uid: 25757 - components: - - type: Transform - pos: 73.5,-69.5 - parent: 2 - - uid: 25758 - components: - - type: Transform - pos: 73.5,-68.5 - parent: 2 - - uid: 25759 - components: - - type: Transform - pos: 73.5,-67.5 - parent: 2 - - uid: 25760 - components: - - type: Transform - pos: 73.5,-66.5 - parent: 2 - - uid: 25761 - components: - - type: Transform - pos: 73.5,-65.5 - parent: 2 - - uid: 25762 - components: - - type: Transform - pos: 75.5,-65.5 - parent: 2 - - uid: 25763 - components: - - type: Transform - pos: 74.5,-65.5 - parent: 2 - - uid: 25764 - components: - - type: Transform - pos: 78.5,-65.5 - parent: 2 - - uid: 25777 - components: - - type: Transform - pos: -55.5,-19.5 - parent: 2 - - uid: 25778 - components: - - type: Transform - pos: 64.5,-58.5 - parent: 2 - - uid: 25781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,26.5 - parent: 2 - - uid: 25815 - components: - - type: Transform - pos: -15.5,29.5 - parent: 2 - - uid: 25816 - components: - - type: Transform - pos: -15.5,28.5 - parent: 2 - - uid: 25817 - components: - - type: Transform - pos: -57.5,6.5 - parent: 2 - - uid: 25818 - components: - - type: Transform - pos: -58.5,6.5 - parent: 2 - - uid: 25820 - components: - - type: Transform - pos: -60.5,16.5 - parent: 2 - - uid: 25821 - components: - - type: Transform - pos: -60.5,15.5 - parent: 2 - - uid: 25822 - components: - - type: Transform - pos: -61.5,2.5 - parent: 2 - - uid: 25823 - components: - - type: Transform - pos: -55.5,6.5 - parent: 2 - - uid: 25824 - components: - - type: Transform - pos: -55.5,5.5 - parent: 2 - - uid: 25825 - components: - - type: Transform - pos: -55.5,3.5 - parent: 2 - - uid: 25826 - components: - - type: Transform - pos: -55.5,4.5 - parent: 2 - - uid: 25827 - components: - - type: Transform - pos: -56.5,2.5 - parent: 2 - - uid: 25828 - components: - - type: Transform - pos: -62.5,5.5 - parent: 2 - - uid: 25829 - components: - - type: Transform - pos: -62.5,4.5 - parent: 2 - - uid: 25830 - components: - - type: Transform - pos: -62.5,3.5 - parent: 2 - - uid: 25831 - components: - - type: Transform - pos: -62.5,2.5 - parent: 2 - - uid: 25832 - components: - - type: Transform - pos: -62.5,6.5 - parent: 2 - - uid: 25833 - components: - - type: Transform - pos: -60.5,6.5 - parent: 2 - - uid: 25834 - components: - - type: Transform - pos: -61.5,6.5 - parent: 2 - - uid: 25835 - components: - - type: Transform - pos: -59.5,6.5 - parent: 2 - - uid: 25836 - components: - - type: Transform - pos: -55.5,2.5 - parent: 2 - - uid: 25837 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-15.5 - parent: 2 - - uid: 25838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-16.5 - parent: 2 - - uid: 25839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-15.5 - parent: 2 - - uid: 25840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-16.5 - parent: 2 - - uid: 25841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-17.5 - parent: 2 - - uid: 25842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-18.5 - parent: 2 - - uid: 25843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-19.5 - parent: 2 - - uid: 25844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-21.5 - parent: 2 - - uid: 25845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-25.5 - parent: 2 - - uid: 25846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-20.5 - parent: 2 - - uid: 25847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-20.5 - parent: 2 - - uid: 25848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-17.5 - parent: 2 - - uid: 25849 - components: - - type: Transform - pos: -34.5,-64.5 - parent: 2 - - uid: 25850 - components: - - type: Transform - pos: -33.5,-64.5 - parent: 2 - - uid: 25851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-25.5 - parent: 2 - - uid: 25852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-20.5 - parent: 2 - - uid: 25855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-19.5 - parent: 2 - - uid: 25856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-22.5 - parent: 2 - - uid: 25857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-23.5 - parent: 2 - - uid: 25858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-20.5 - parent: 2 - - uid: 25859 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-24.5 - parent: 2 - - uid: 25877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-82.5 - parent: 2 - - uid: 25878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,29.5 - parent: 2 - - uid: 25887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-87.5 - parent: 2 - - uid: 25888 - components: - - type: Transform - pos: -19.5,-41.5 - parent: 2 - - uid: 25889 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 2 - - uid: 25890 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 2 - - uid: 25903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-49.5 - parent: 2 - - uid: 25913 - components: - - type: Transform - pos: 64.5,-59.5 - parent: 2 - - uid: 25940 - components: - - type: Transform - pos: 59.5,-63.5 - parent: 2 - - uid: 25950 - components: - - type: Transform - pos: 71.5,-74.5 - parent: 2 - - uid: 25954 - components: - - type: Transform - pos: 9.5,-27.5 - parent: 2 - - uid: 25961 - components: - - type: Transform - pos: 71.5,-73.5 - parent: 2 - - uid: 25962 - components: - - type: Transform - pos: 71.5,-76.5 - parent: 2 - - uid: 25963 - components: - - type: Transform - pos: 71.5,-75.5 - parent: 2 - - uid: 25964 - components: - - type: Transform - pos: 71.5,-77.5 - parent: 2 - - uid: 25969 - components: - - type: Transform - pos: 1.5,-64.5 - parent: 2 - - uid: 25970 - components: - - type: Transform - pos: -20.5,-41.5 - parent: 2 - - uid: 25971 - components: - - type: Transform - pos: 60.5,-60.5 - parent: 2 - - uid: 25972 - components: - - type: Transform - pos: -3.5,-72.5 - parent: 2 - - uid: 25973 - components: - - type: Transform - pos: 2.5,-75.5 - parent: 2 - - uid: 25974 - components: - - type: Transform - pos: 2.5,-72.5 - parent: 2 - - uid: 25975 - components: - - type: Transform - pos: 55.5,-60.5 - parent: 2 - - uid: 25976 - components: - - type: Transform - pos: 7.5,-76.5 - parent: 2 - - uid: 25980 - components: - - type: Transform - pos: 2.5,-76.5 - parent: 2 - - uid: 25981 - components: - - type: Transform - pos: -11.5,-87.5 - parent: 2 - - uid: 25982 - components: - - type: Transform - pos: -12.5,-87.5 - parent: 2 - - uid: 25983 - components: - - type: Transform - pos: -13.5,-87.5 - parent: 2 - - uid: 25984 - components: - - type: Transform - pos: -14.5,-87.5 - parent: 2 - - uid: 25985 - components: - - type: Transform - pos: -15.5,-87.5 - parent: 2 - - uid: 25986 - components: - - type: Transform - pos: -16.5,-87.5 - parent: 2 - - uid: 25987 - components: - - type: Transform - pos: -21.5,-87.5 - parent: 2 - - uid: 25988 - components: - - type: Transform - pos: -20.5,-87.5 - parent: 2 - - uid: 25989 - components: - - type: Transform - pos: -20.5,-88.5 - parent: 2 - - uid: 25990 - components: - - type: Transform - pos: -20.5,-77.5 - parent: 2 - - uid: 25991 - components: - - type: Transform - pos: -20.5,-78.5 - parent: 2 - - uid: 25992 - components: - - type: Transform - pos: -20.5,-79.5 - parent: 2 - - uid: 25993 - components: - - type: Transform - pos: -20.5,-80.5 - parent: 2 - - uid: 25994 - components: - - type: Transform - pos: -20.5,-81.5 - parent: 2 - - uid: 25995 - components: - - type: Transform - pos: -20.5,-82.5 - parent: 2 - - uid: 25996 - components: - - type: Transform - pos: -20.5,-83.5 - parent: 2 - - uid: 25997 - components: - - type: Transform - pos: 54.5,-60.5 - parent: 2 - - uid: 25998 - components: - - type: Transform - pos: 50.5,-60.5 - parent: 2 - - uid: 25999 - components: - - type: Transform - pos: 55.5,-63.5 - parent: 2 - - uid: 26000 - components: - - type: Transform - pos: 50.5,-59.5 - parent: 2 - - uid: 26001 - components: - - type: Transform - pos: 31.5,-64.5 - parent: 2 - - uid: 26002 - components: - - type: Transform - pos: 31.5,-63.5 - parent: 2 - - uid: 26003 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 2 - - uid: 26004 - components: - - type: Transform - pos: -19.5,-37.5 - parent: 2 - - uid: 26005 - components: - - type: Transform - pos: -3.5,-75.5 - parent: 2 - - uid: 26007 - components: - - type: Transform - pos: -12.5,37.5 - parent: 2 - - uid: 26008 - components: - - type: Transform - pos: -14.5,-45.5 - parent: 2 - - uid: 26009 - components: - - type: Transform - pos: -13.5,-45.5 - parent: 2 - - uid: 26010 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 2 - - uid: 26011 - components: - - type: Transform - pos: -16.5,-45.5 - parent: 2 - - uid: 26012 - components: - - type: Transform - pos: -15.5,-45.5 - parent: 2 - - uid: 26013 - components: - - type: Transform - pos: -11.5,-41.5 - parent: 2 - - uid: 26014 - components: - - type: Transform - pos: -11.5,-42.5 - parent: 2 - - uid: 26015 - components: - - type: Transform - pos: -11.5,-43.5 - parent: 2 - - uid: 26016 - components: - - type: Transform - pos: -19.5,-62.5 - parent: 2 - - uid: 26017 - components: - - type: Transform - pos: -19.5,-63.5 - parent: 2 - - uid: 26018 - components: - - type: Transform - pos: -19.5,-65.5 - parent: 2 - - uid: 26019 - components: - - type: Transform - pos: -19.5,-64.5 - parent: 2 - - uid: 26020 - components: - - type: Transform - pos: -19.5,-61.5 - parent: 2 - - uid: 26021 - components: - - type: Transform - pos: -20.5,-61.5 - parent: 2 - - uid: 26022 - components: - - type: Transform - pos: -29.5,-66.5 - parent: 2 - - uid: 26023 - components: - - type: Transform - pos: -36.5,-52.5 - parent: 2 - - uid: 26024 - components: - - type: Transform - pos: -37.5,-53.5 - parent: 2 - - uid: 26025 - components: - - type: Transform - pos: -36.5,-53.5 - parent: 2 - - uid: 26026 - components: - - type: Transform - pos: -38.5,-53.5 - parent: 2 - - uid: 26027 - components: - - type: Transform - pos: -39.5,-53.5 - parent: 2 - - uid: 26028 - components: - - type: Transform - pos: -39.5,-54.5 - parent: 2 - - uid: 26029 - components: - - type: Transform - pos: -39.5,-55.5 - parent: 2 - - uid: 26030 - components: - - type: Transform - pos: -39.5,-56.5 - parent: 2 - - uid: 26031 - components: - - type: Transform - pos: -39.5,-57.5 - parent: 2 - - uid: 26032 - components: - - type: Transform - pos: -39.5,-58.5 - parent: 2 - - uid: 26033 - components: - - type: Transform - pos: -32.5,-66.5 - parent: 2 - - uid: 26034 - components: - - type: Transform - pos: -33.5,-66.5 - parent: 2 - - uid: 26036 - components: - - type: Transform - pos: -35.5,-66.5 - parent: 2 - - uid: 26037 - components: - - type: Transform - pos: -35.5,-64.5 - parent: 2 - - uid: 26038 - components: - - type: Transform - pos: -29.5,-63.5 - parent: 2 - - uid: 26039 - components: - - type: Transform - pos: -30.5,-66.5 - parent: 2 - - uid: 26040 - components: - - type: Transform - pos: -30.5,-61.5 - parent: 2 - - uid: 26041 - components: - - type: Transform - pos: -28.5,-66.5 - parent: 2 - - uid: 26042 - components: - - type: Transform - pos: -30.5,-62.5 - parent: 2 - - uid: 26043 - components: - - type: Transform - pos: -30.5,-63.5 - parent: 2 - - uid: 26044 - components: - - type: Transform - pos: -32.5,-71.5 - parent: 2 - - uid: 26045 - components: - - type: Transform - pos: -33.5,-71.5 - parent: 2 - - uid: 26046 - components: - - type: Transform - pos: -41.5,-47.5 - parent: 2 - - uid: 26047 - components: - - type: Transform - pos: -42.5,-47.5 - parent: 2 - - uid: 26048 - components: - - type: Transform - pos: -33.5,-72.5 - parent: 2 - - uid: 26049 - components: - - type: Transform - pos: -30.5,-71.5 - parent: 2 - - uid: 26050 - components: - - type: Transform - pos: -29.5,-71.5 - parent: 2 - - uid: 26051 - components: - - type: Transform - pos: -29.5,-72.5 - parent: 2 - - uid: 26052 - components: - - type: Transform - pos: -29.5,-73.5 - parent: 2 - - uid: 26053 - components: - - type: Transform - pos: -29.5,-75.5 - parent: 2 - - uid: 26054 - components: - - type: Transform - pos: -28.5,-74.5 - parent: 2 - - uid: 26055 - components: - - type: Transform - pos: -29.5,-74.5 - parent: 2 - - uid: 26057 - components: - - type: Transform - pos: -20.5,-44.5 - parent: 2 - - uid: 26058 - components: - - type: Transform - pos: -25.5,-39.5 - parent: 2 - - uid: 26059 - components: - - type: Transform - pos: -29.5,-39.5 - parent: 2 - - uid: 26060 - components: - - type: Transform - pos: -30.5,-39.5 - parent: 2 - - uid: 26061 - components: - - type: Transform - pos: -29.5,-42.5 - parent: 2 - - uid: 26062 - components: - - type: Transform - pos: -25.5,-42.5 - parent: 2 - - uid: 26063 - components: - - type: Transform - pos: -30.5,-42.5 - parent: 2 - - uid: 26064 - components: - - type: Transform - pos: -18.5,-43.5 - parent: 2 - - uid: 26065 - components: - - type: Transform - pos: -31.5,-42.5 - parent: 2 - - uid: 26066 - components: - - type: Transform - pos: -32.5,-42.5 - parent: 2 - - uid: 26067 - components: - - type: Transform - pos: -33.5,-42.5 - parent: 2 - - uid: 26068 - components: - - type: Transform - pos: -34.5,-42.5 - parent: 2 - - uid: 26069 - components: - - type: Transform - pos: -39.5,-44.5 - parent: 2 - - uid: 26070 - components: - - type: Transform - pos: -39.5,-43.5 - parent: 2 - - uid: 26071 - components: - - type: Transform - pos: -39.5,-46.5 - parent: 2 - - uid: 26072 - components: - - type: Transform - pos: -38.5,-42.5 - parent: 2 - - uid: 26073 - components: - - type: Transform - pos: -24.5,-39.5 - parent: 2 - - uid: 26074 - components: - - type: Transform - pos: -19.5,-46.5 - parent: 2 - - uid: 26075 - components: - - type: Transform - pos: -20.5,-43.5 - parent: 2 - - uid: 26076 - components: - - type: Transform - pos: -39.5,-42.5 - parent: 2 - - uid: 26077 - components: - - type: Transform - pos: 9.5,-25.5 - parent: 2 - - uid: 26088 - components: - - type: Transform - pos: 21.5,47.5 - parent: 2 - - uid: 26089 - components: - - type: Transform - pos: 21.5,46.5 - parent: 2 - - uid: 26092 - components: - - type: Transform - pos: -9.5,-93.5 - parent: 2 - - uid: 26093 - components: - - type: Transform - pos: 38.5,-71.5 - parent: 2 - - uid: 26094 - components: - - type: Transform - pos: 33.5,-70.5 - parent: 2 - - uid: 26095 - components: - - type: Transform - pos: 33.5,-69.5 - parent: 2 - - uid: 26096 - components: - - type: Transform - pos: 33.5,-68.5 - parent: 2 - - uid: 26097 - components: - - type: Transform - pos: 31.5,-68.5 - parent: 2 - - uid: 26098 - components: - - type: Transform - pos: 31.5,-66.5 - parent: 2 - - uid: 26099 - components: - - type: Transform - pos: 31.5,-67.5 - parent: 2 - - uid: 26100 - components: - - type: Transform - pos: 39.5,-71.5 - parent: 2 - - uid: 26101 - components: - - type: Transform - pos: 34.5,-70.5 - parent: 2 - - uid: 26102 - components: - - type: Transform - pos: 35.5,-70.5 - parent: 2 - - uid: 26103 - components: - - type: Transform - pos: 36.5,-70.5 - parent: 2 - - uid: 26104 - components: - - type: Transform - pos: -24.5,2.5 - parent: 2 - - uid: 26105 - components: - - type: Transform - pos: -24.5,5.5 - parent: 2 - - uid: 26106 - components: - - type: Transform - pos: 9.5,-26.5 - parent: 2 - - uid: 26107 - components: - - type: Transform - pos: -24.5,8.5 - parent: 2 - - uid: 26108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,43.5 - parent: 2 - - uid: 26122 - components: - - type: Transform - pos: 52.5,-74.5 - parent: 2 - - uid: 26123 - components: - - type: Transform - pos: -3.5,44.5 - parent: 2 - - uid: 26126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,41.5 - parent: 2 - - uid: 26128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-27.5 - parent: 2 - - uid: 26129 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 2 - - uid: 26130 - components: - - type: Transform - pos: -15.5,3.5 - parent: 2 - - uid: 26131 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 2 - - uid: 26132 - components: - - type: Transform - pos: -15.5,2.5 - parent: 2 - - uid: 26133 - components: - - type: Transform - pos: -15.5,1.5 - parent: 2 - - uid: 26135 - components: - - type: Transform - pos: -2.5,-28.5 - parent: 2 - - uid: 26136 - components: - - type: Transform - pos: -44.5,-27.5 - parent: 2 - - uid: 26137 - components: - - type: Transform - pos: -6.5,42.5 - parent: 2 - - uid: 26139 - components: - - type: Transform - pos: 5.5,35.5 - parent: 2 - - uid: 26142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-31.5 - parent: 2 - - uid: 26145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-1.5 - parent: 2 - - uid: 26146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-0.5 - parent: 2 - - uid: 26147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-16.5 - parent: 2 - - uid: 26148 - components: - - type: Transform - pos: -21.5,-37.5 - parent: 2 - - uid: 26149 - components: - - type: Transform - pos: -10.5,-80.5 - parent: 2 - - uid: 26150 - components: - - type: Transform - pos: 4.5,-14.5 - parent: 2 - - uid: 26151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,1.5 - parent: 2 - - uid: 26153 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 2 - - uid: 26155 - components: - - type: Transform - pos: -10.5,-81.5 - parent: 2 - - uid: 26156 - components: - - type: Transform - pos: -10.5,-82.5 - parent: 2 - - uid: 26157 - components: - - type: Transform - pos: -10.5,-86.5 - parent: 2 - - uid: 26158 - components: - - type: Transform - pos: -10.5,-87.5 - parent: 2 - - uid: 26159 - components: - - type: Transform - pos: -10.5,-88.5 - parent: 2 - - uid: 26160 - components: - - type: Transform - pos: -10.5,-89.5 - parent: 2 - - uid: 26161 - components: - - type: Transform - pos: -20.5,9.5 - parent: 2 - - uid: 26162 - components: - - type: Transform - pos: -21.5,9.5 - parent: 2 - - uid: 26163 - components: - - type: Transform - pos: -19.5,9.5 - parent: 2 - - uid: 26164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,3.5 - parent: 2 - - uid: 26165 - components: - - type: Transform - pos: -42.5,-27.5 - parent: 2 - - uid: 26166 - components: - - type: Transform - pos: -46.5,-27.5 - parent: 2 - - uid: 26169 - components: - - type: Transform - pos: -20.5,-37.5 - parent: 2 - - uid: 26172 - components: - - type: Transform - pos: -22.5,-34.5 - parent: 2 - - uid: 26174 - components: - - type: Transform - pos: -10.5,-92.5 - parent: 2 - - uid: 26175 - components: - - type: Transform - pos: -9.5,-92.5 - parent: 2 - - uid: 26177 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,2.5 - parent: 2 - - uid: 26178 - components: - - type: Transform - pos: 4.5,-50.5 - parent: 2 - - uid: 26179 - components: - - type: Transform - pos: 1.5,-28.5 - parent: 2 - - uid: 26182 - components: - - type: Transform - pos: -22.5,-36.5 - parent: 2 - - uid: 26183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,23.5 - parent: 2 - - uid: 26184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-48.5 - parent: 2 - - uid: 26185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,30.5 - parent: 2 - - uid: 26187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,16.5 - parent: 2 - - uid: 26189 - components: - - type: Transform - pos: 81.5,-55.5 - parent: 2 - - uid: 26190 - components: - - type: Transform - pos: -55.5,-20.5 - parent: 2 - - uid: 26191 - components: - - type: Transform - pos: -8.5,42.5 - parent: 2 - - uid: 26192 - components: - - type: Transform - pos: -22.5,-37.5 - parent: 2 - - uid: 26194 - components: - - type: Transform - pos: -12.5,40.5 - parent: 2 - - uid: 26195 - components: - - type: Transform - pos: -11.5,42.5 - parent: 2 - - uid: 26196 - components: - - type: Transform - pos: -3.5,42.5 - parent: 2 - - uid: 26200 - components: - - type: Transform - pos: -17.5,15.5 - parent: 2 - - uid: 26201 - components: - - type: Transform - pos: -19.5,15.5 - parent: 2 - - uid: 26202 - components: - - type: Transform - pos: -19.5,18.5 - parent: 2 - - uid: 26203 - components: - - type: Transform - pos: -20.5,22.5 - parent: 2 - - uid: 26205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,40.5 - parent: 2 - - uid: 26206 - components: - - type: Transform - pos: -16.5,34.5 - parent: 2 - - uid: 26207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,19.5 - parent: 2 - - uid: 26208 - components: - - type: Transform - pos: -20.5,21.5 - parent: 2 - - uid: 26209 - components: - - type: Transform - pos: -21.5,19.5 - parent: 2 - - uid: 26210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,23.5 - parent: 2 - - uid: 26211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,26.5 - parent: 2 - - uid: 26215 - components: - - type: Transform - pos: 53.5,-76.5 - parent: 2 - - uid: 26217 - components: - - type: Transform - pos: 21.5,45.5 - parent: 2 - - uid: 26219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,31.5 - parent: 2 - - uid: 26220 - components: - - type: Transform - pos: 21.5,39.5 - parent: 2 - - uid: 26222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,45.5 - parent: 2 - - uid: 26224 - components: - - type: Transform - pos: 21.5,38.5 - parent: 2 - - uid: 26225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,25.5 - parent: 2 - - uid: 26226 - components: - - type: Transform - pos: 24.5,49.5 - parent: 2 - - uid: 26227 - components: - - type: Transform - pos: 25.5,49.5 - parent: 2 - - uid: 26228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,44.5 - parent: 2 - - uid: 26229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,39.5 - parent: 2 - - uid: 26230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,39.5 - parent: 2 - - uid: 26231 - components: - - type: Transform - pos: 4.5,34.5 - parent: 2 - - uid: 26232 - components: - - type: Transform - pos: 5.5,33.5 - parent: 2 - - uid: 26233 - components: - - type: Transform - pos: 5.5,34.5 - parent: 2 - - uid: 26235 - components: - - type: Transform - pos: -1.5,34.5 - parent: 2 - - uid: 26236 - components: - - type: Transform - pos: -2.5,34.5 - parent: 2 - - uid: 26237 - components: - - type: Transform - pos: -3.5,33.5 - parent: 2 - - uid: 26238 - components: - - type: Transform - pos: -3.5,34.5 - parent: 2 - - uid: 26239 - components: - - type: Transform - pos: -3.5,35.5 - parent: 2 - - uid: 26245 - components: - - type: Transform - pos: 5.5,38.5 - parent: 2 - - uid: 26246 - components: - - type: Transform - pos: 5.5,39.5 - parent: 2 - - uid: 26249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,42.5 - parent: 2 - - uid: 26251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,27.5 - parent: 2 - - uid: 26252 - components: - - type: Transform - pos: 53.5,-75.5 - parent: 2 - - uid: 26253 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - - uid: 26254 - components: - - type: Transform - pos: 19.5,40.5 - parent: 2 - - uid: 26256 - components: - - type: Transform - pos: 5.5,29.5 - parent: 2 - - uid: 26257 - components: - - type: Transform - pos: 4.5,29.5 - parent: 2 - - uid: 26259 - components: - - type: Transform - pos: -15.5,24.5 - parent: 2 - - uid: 26260 - components: - - type: Transform - pos: -15.5,22.5 - parent: 2 - - uid: 26262 - components: - - type: Transform - pos: 11.5,24.5 - parent: 2 - - uid: 26263 - components: - - type: Transform - pos: 11.5,23.5 - parent: 2 - - uid: 26264 - components: - - type: Transform - pos: -3.5,22.5 - parent: 2 - - uid: 26265 - components: - - type: Transform - pos: 11.5,22.5 - parent: 2 - - uid: 26266 - components: - - type: Transform - pos: 10.5,22.5 - parent: 2 - - uid: 26267 - components: - - type: Transform - pos: 9.5,22.5 - parent: 2 - - uid: 26268 - components: - - type: Transform - pos: 8.5,22.5 - parent: 2 - - uid: 26269 - components: - - type: Transform - pos: 7.5,22.5 - parent: 2 - - uid: 26270 - components: - - type: Transform - pos: 0.5,22.5 - parent: 2 - - uid: 26271 - components: - - type: Transform - pos: -7.5,22.5 - parent: 2 - - uid: 26272 - components: - - type: Transform - pos: -11.5,22.5 - parent: 2 - - uid: 26275 - components: - - type: Transform - pos: 56.5,-80.5 - parent: 2 - - uid: 26277 - components: - - type: Transform - pos: -15.5,21.5 - parent: 2 - - uid: 26287 - components: - - type: Transform - pos: -22.5,-38.5 - parent: 2 - - uid: 26288 - components: - - type: Transform - pos: -15.5,-32.5 - parent: 2 - - uid: 26289 - components: - - type: Transform - pos: -16.5,-32.5 - parent: 2 - - uid: 26290 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 2 - - uid: 26291 - components: - - type: Transform - pos: -42.5,-33.5 - parent: 2 - - uid: 26292 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 2 - - uid: 26293 - components: - - type: Transform - pos: 23.5,-23.5 - parent: 2 - - uid: 26295 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 2 - - uid: 26296 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 2 - - uid: 26297 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 2 - - uid: 26300 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 2 - - uid: 26301 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 2 - - uid: 26302 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 2 - - uid: 26303 - components: - - type: Transform - pos: 23.5,-20.5 - parent: 2 - - uid: 26304 - components: - - type: Transform - pos: -12.5,-27.5 - parent: 2 - - uid: 26305 - components: - - type: Transform - pos: -8.5,-28.5 - parent: 2 - - uid: 26306 - components: - - type: Transform - pos: -9.5,-28.5 - parent: 2 - - uid: 26307 - components: - - type: Transform - pos: -10.5,-28.5 - parent: 2 - - uid: 26308 - components: - - type: Transform - pos: -11.5,-28.5 - parent: 2 - - uid: 26309 - components: - - type: Transform - pos: -12.5,-28.5 - parent: 2 - - uid: 26310 - components: - - type: Transform - pos: -12.5,-26.5 - parent: 2 - - uid: 26311 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 2 - - uid: 26312 - components: - - type: Transform - pos: -12.5,-21.5 - parent: 2 - - uid: 26313 - components: - - type: Transform - pos: -14.5,-21.5 - parent: 2 - - uid: 26314 - components: - - type: Transform - pos: -14.5,-20.5 - parent: 2 - - uid: 26315 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 2 - - uid: 26316 - components: - - type: Transform - pos: -14.5,-17.5 - parent: 2 - - uid: 26317 - components: - - type: Transform - pos: -14.5,-16.5 - parent: 2 - - uid: 26320 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 2 - - uid: 26321 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 2 - - uid: 26322 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 2 - - uid: 26323 - components: - - type: Transform - pos: -6.5,-21.5 - parent: 2 - - uid: 26324 - components: - - type: Transform - pos: -6.5,-22.5 - parent: 2 - - uid: 26325 - components: - - type: Transform - pos: -6.5,-23.5 - parent: 2 - - uid: 26326 - components: - - type: Transform - pos: -6.5,-24.5 - parent: 2 - - uid: 26327 - components: - - type: Transform - pos: -6.5,-25.5 - parent: 2 - - uid: 26328 - components: - - type: Transform - pos: -6.5,-26.5 - parent: 2 - - uid: 26329 - components: - - type: Transform - pos: -6.5,-27.5 - parent: 2 - - uid: 26330 - components: - - type: Transform - pos: -6.5,-28.5 - parent: 2 - - uid: 26331 - components: - - type: Transform - pos: 5.5,-24.5 - parent: 2 - - uid: 26332 - components: - - type: Transform - pos: 23.5,-15.5 - parent: 2 - - uid: 26333 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 2 - - uid: 26334 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 2 - - uid: 26335 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - - uid: 26336 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 2 - - uid: 26337 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 2 - - uid: 26338 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 2 - - uid: 26339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-16.5 - parent: 2 - - uid: 26340 - components: - - type: Transform - pos: 5.5,-19.5 - parent: 2 - - uid: 26341 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 2 - - uid: 26342 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 2 - - uid: 26343 - components: - - type: Transform - pos: 9.5,-19.5 - parent: 2 - - uid: 26344 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 2 - - uid: 26345 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 2 - - uid: 26346 - components: - - type: Transform - pos: -22.5,-35.5 - parent: 2 - - uid: 26347 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 2 - - uid: 26348 - components: - - type: Transform - pos: 9.5,-28.5 - parent: 2 - - uid: 26349 - components: - - type: Transform - pos: 13.5,-28.5 - parent: 2 - - uid: 26350 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 2 - - uid: 26351 - components: - - type: Transform - pos: 13.5,-24.5 - parent: 2 - - uid: 26352 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 2 - - uid: 26353 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 2 - - uid: 26354 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 2 - - uid: 26355 - components: - - type: Transform - pos: 13.5,-20.5 - parent: 2 - - uid: 26356 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 2 - - uid: 26357 - components: - - type: Transform - pos: 13.5,-18.5 - parent: 2 - - uid: 26358 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 2 - - uid: 26359 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 2 - - uid: 26360 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 2 - - uid: 26361 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 2 - - uid: 26362 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 2 - - uid: 26363 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 2 - - uid: 26364 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 2 - - uid: 26365 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 2 - - uid: 26366 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 2 - - uid: 26367 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 2 - - uid: 26368 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 2 - - uid: 26369 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 26370 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 2 - - uid: 26371 - components: - - type: Transform - pos: 7.5,-10.5 - parent: 2 - - uid: 26372 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 2 - - uid: 26373 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 2 - - uid: 26379 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 2 - - uid: 26380 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 2 - - uid: 26381 - components: - - type: Transform - pos: -11.5,-10.5 - parent: 2 - - uid: 26382 - components: - - type: Transform - pos: -14.5,-11.5 - parent: 2 - - uid: 26383 - components: - - type: Transform - pos: -14.5,-10.5 - parent: 2 - - uid: 26384 - components: - - type: Transform - pos: -13.5,-10.5 - parent: 2 - - uid: 26385 - components: - - type: Transform - pos: -9.5,-10.5 - parent: 2 - - uid: 26386 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 2 - - uid: 26387 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 2 - - uid: 26388 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 2 - - uid: 26389 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 2 - - uid: 26397 - components: - - type: Transform - pos: -9.5,-9.5 - parent: 2 - - uid: 26398 - components: - - type: Transform - pos: -9.5,-7.5 - parent: 2 - - uid: 26399 - components: - - type: Transform - pos: -10.5,-6.5 - parent: 2 - - uid: 26400 - components: - - type: Transform - pos: -9.5,-6.5 - parent: 2 - - uid: 26402 - components: - - type: Transform - pos: 71.5,-71.5 - parent: 2 - - uid: 26405 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 2 - - uid: 26406 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 2 - - uid: 26408 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 2 - - uid: 26410 - components: - - type: Transform - pos: 21.5,25.5 - parent: 2 - - uid: 26411 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 2 - - uid: 26412 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 2 - - uid: 26413 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 2 - - uid: 26414 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 2 - - uid: 26416 - components: - - type: Transform - pos: 22.5,50.5 - parent: 2 - - uid: 26420 - components: - - type: Transform - pos: -16.5,30.5 - parent: 2 - - uid: 26421 - components: - - type: Transform - pos: -21.5,52.5 - parent: 2 - - uid: 26422 - components: - - type: Transform - pos: -20.5,52.5 - parent: 2 - - uid: 26423 - components: - - type: Transform - pos: 24.5,51.5 - parent: 2 - - uid: 26424 - components: - - type: Transform - pos: -9.5,-25.5 - parent: 2 - - uid: 26426 - components: - - type: Transform - pos: -23.5,9.5 - parent: 2 - - uid: 26429 - components: - - type: Transform - pos: -16.5,36.5 - parent: 2 - - uid: 26430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,4.5 - parent: 2 - - uid: 26431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,45.5 - parent: 2 - - uid: 26432 - components: - - type: Transform - pos: -18.5,25.5 - parent: 2 - - uid: 26433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-2.5 - parent: 2 - - uid: 26434 - components: - - type: Transform - pos: 25.5,47.5 - parent: 2 - - uid: 26435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,39.5 - parent: 2 - - uid: 26436 - components: - - type: Transform - pos: 22.5,51.5 - parent: 2 - - uid: 26437 - components: - - type: Transform - pos: 12.5,46.5 - parent: 2 - - uid: 26438 - components: - - type: Transform - pos: 14.5,46.5 - parent: 2 - - uid: 26439 - components: - - type: Transform - pos: -10.5,53.5 - parent: 2 - - uid: 26440 - components: - - type: Transform - pos: -9.5,54.5 - parent: 2 - - uid: 26441 - components: - - type: Transform - pos: -8.5,54.5 - parent: 2 - - uid: 26442 - components: - - type: Transform - pos: -7.5,54.5 - parent: 2 - - uid: 26443 - components: - - type: Transform - pos: -7.5,53.5 - parent: 2 - - uid: 26444 - components: - - type: Transform - pos: -6.5,53.5 - parent: 2 - - uid: 26448 - components: - - type: Transform - pos: -19.5,25.5 - parent: 2 - - uid: 26449 - components: - - type: Transform - pos: -16.5,25.5 - parent: 2 - - uid: 26450 - components: - - type: Transform - pos: -21.5,-34.5 - parent: 2 - - uid: 26451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-4.5 - parent: 2 - - uid: 26452 - components: - - type: Transform - pos: -19.5,-40.5 - parent: 2 - - uid: 26453 - components: - - type: Transform - pos: -12.5,39.5 - parent: 2 - - uid: 26454 - components: - - type: Transform - pos: -12.5,42.5 - parent: 2 - - uid: 26455 - components: - - type: Transform - pos: -12.5,41.5 - parent: 2 - - uid: 26456 - components: - - type: Transform - pos: -9.5,42.5 - parent: 2 - - uid: 26458 - components: - - type: Transform - pos: -23.5,52.5 - parent: 2 - - uid: 26459 - components: - - type: Transform - pos: -22.5,52.5 - parent: 2 - - uid: 26461 - components: - - type: Transform - pos: -24.5,42.5 - parent: 2 - - uid: 26462 - components: - - type: Transform - pos: -24.5,40.5 - parent: 2 - - uid: 26463 - components: - - type: Transform - pos: -20.5,-34.5 - parent: 2 - - uid: 26464 - components: - - type: Transform - pos: -16.5,39.5 - parent: 2 - - uid: 26466 - components: - - type: Transform - pos: -10.5,54.5 - parent: 2 - - uid: 26467 - components: - - type: Transform - pos: -21.5,-41.5 - parent: 2 - - uid: 26468 - components: - - type: Transform - pos: -19.5,-38.5 - parent: 2 - - uid: 26471 - components: - - type: Transform - pos: -23.5,39.5 - parent: 2 - - uid: 26472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-5.5 - parent: 2 - - uid: 26473 - components: - - type: Transform - pos: -16.5,54.5 - parent: 2 - - uid: 26474 - components: - - type: Transform - pos: -24.5,39.5 - parent: 2 - - uid: 26475 - components: - - type: Transform - pos: -13.5,54.5 - parent: 2 - - uid: 26477 - components: - - type: Transform - pos: -17.5,39.5 - parent: 2 - - uid: 26478 - components: - - type: Transform - pos: -22.5,39.5 - parent: 2 - - uid: 26479 - components: - - type: Transform - pos: -24.5,46.5 - parent: 2 - - uid: 26480 - components: - - type: Transform - pos: -24.5,49.5 - parent: 2 - - uid: 26481 - components: - - type: Transform - pos: -12.5,38.5 - parent: 2 - - uid: 26482 - components: - - type: Transform - pos: -24.5,41.5 - parent: 2 - - uid: 26483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-2.5 - parent: 2 - - uid: 26484 - components: - - type: Transform - pos: 16.5,46.5 - parent: 2 - - uid: 26487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 2 - - uid: 26489 - components: - - type: Transform - pos: -19.5,39.5 - parent: 2 - - uid: 26490 - components: - - type: Transform - pos: -19.5,52.5 - parent: 2 - - uid: 26491 - components: - - type: Transform - pos: -18.5,52.5 - parent: 2 - - uid: 26492 - components: - - type: Transform - pos: -16.5,52.5 - parent: 2 - - uid: 26493 - components: - - type: Transform - pos: 18.5,46.5 - parent: 2 - - uid: 26494 - components: - - type: Transform - pos: -44.5,-33.5 - parent: 2 - - uid: 26495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,5.5 - parent: 2 - - uid: 26496 - components: - - type: Transform - pos: -45.5,-33.5 - parent: 2 - - uid: 26497 - components: - - type: Transform - pos: 19.5,24.5 - parent: 2 - - uid: 26498 - components: - - type: Transform - pos: -46.5,-33.5 - parent: 2 - - uid: 26499 - components: - - type: Transform - pos: -46.5,-32.5 - parent: 2 - - uid: 26500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,39.5 - parent: 2 - - uid: 26501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,38.5 - parent: 2 - - uid: 26502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,38.5 - parent: 2 - - uid: 26503 - components: - - type: Transform - pos: -40.5,-33.5 - parent: 2 - - uid: 26504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,-5.5 - parent: 2 - - uid: 26509 - components: - - type: Transform - pos: 19.5,45.5 - parent: 2 - - uid: 26510 - components: - - type: Transform - pos: 28.5,30.5 - parent: 2 - - uid: 26511 - components: - - type: Transform - pos: 5.5,-27.5 - parent: 2 - - uid: 26515 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-43.5 - parent: 2 - - uid: 26517 - components: - - type: Transform - pos: 21.5,28.5 - parent: 2 - - uid: 26518 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-18.5 - parent: 2 - - uid: 26519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 2 - - uid: 26520 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 2 - - uid: 26521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,39.5 - parent: 2 - - uid: 26524 - components: - - type: Transform - pos: 61.5,-82.5 - parent: 2 - - uid: 26529 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 2 - - uid: 26531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-19.5 - parent: 2 - - uid: 26535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-20.5 - parent: 2 - - uid: 26536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,39.5 - parent: 2 - - uid: 26538 - components: - - type: Transform - pos: 22.5,33.5 - parent: 2 - - uid: 26539 - components: - - type: Transform - pos: 19.5,44.5 - parent: 2 - - uid: 26540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-20.5 - parent: 2 - - uid: 26542 - components: - - type: Transform - pos: -24.5,50.5 - parent: 2 - - uid: 26543 - components: - - type: Transform - pos: -24.5,51.5 - parent: 2 - - uid: 26544 - components: - - type: Transform - pos: -3.5,45.5 - parent: 2 - - uid: 26545 - components: - - type: Transform - pos: -24.5,47.5 - parent: 2 - - uid: 26546 - components: - - type: Transform - pos: -24.5,48.5 - parent: 2 - - uid: 26547 - components: - - type: Transform - pos: -25.5,42.5 - parent: 2 - - uid: 26548 - components: - - type: Transform - pos: -25.5,46.5 - parent: 2 - - uid: 26549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-20.5 - parent: 2 - - uid: 26551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-20.5 - parent: 2 - - uid: 26552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,27.5 - parent: 2 - - uid: 26553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,26.5 - parent: 2 - - uid: 26554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,26.5 - parent: 2 - - uid: 26555 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,26.5 - parent: 2 - - uid: 26556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-20.5 - parent: 2 - - uid: 26558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-3.5 - parent: 2 - - uid: 26559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-2.5 - parent: 2 - - uid: 26562 - components: - - type: Transform - pos: -16.5,29.5 - parent: 2 - - uid: 26563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-76.5 - parent: 2 - - uid: 26566 - components: - - type: Transform - pos: 9.5,-50.5 - parent: 2 - - uid: 26571 - components: - - type: Transform - pos: 5.5,37.5 - parent: 2 - - uid: 26572 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 2 - - uid: 26578 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 2 - - uid: 26580 - components: - - type: Transform - pos: 5.5,40.5 - parent: 2 - - uid: 26589 - components: - - type: Transform - pos: 65.5,-81.5 - parent: 2 - - uid: 26604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-16.5 - parent: 2 - - uid: 26607 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,0.5 - parent: 2 - - uid: 26609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-2.5 - parent: 2 - - uid: 26610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-3.5 - parent: 2 - - uid: 26611 - components: - - type: Transform - pos: 25.5,-45.5 - parent: 2 - - uid: 26612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,1.5 - parent: 2 - - uid: 26618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-58.5 - parent: 2 - - uid: 26622 - components: - - type: Transform - pos: -22.5,15.5 - parent: 2 - - uid: 26623 - components: - - type: Transform - pos: -22.5,12.5 - parent: 2 - - uid: 26624 - components: - - type: Transform - pos: -31.5,4.5 - parent: 2 - - uid: 26625 - components: - - type: Transform - pos: -42.5,15.5 - parent: 2 - - uid: 26626 - components: - - type: Transform - pos: -29.5,25.5 - parent: 2 - - uid: 26627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,7.5 - parent: 2 - - uid: 26628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-2.5 - parent: 2 - - uid: 26629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-2.5 - parent: 2 - - uid: 26630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,8.5 - parent: 2 - - uid: 26631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-5.5 - parent: 2 - - uid: 26632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,10.5 - parent: 2 - - uid: 26633 - components: - - type: Transform - pos: -79.5,-16.5 - parent: 2 - - uid: 26634 - components: - - type: Transform - pos: -79.5,-12.5 - parent: 2 - - uid: 26635 - components: - - type: Transform - pos: -77.5,-15.5 - parent: 2 - - uid: 26636 - components: - - type: Transform - pos: -77.5,-14.5 - parent: 2 - - uid: 26637 - components: - - type: Transform - pos: -79.5,-15.5 - parent: 2 - - uid: 26639 - components: - - type: Transform - pos: -22.5,13.5 - parent: 2 - - uid: 26640 - components: - - type: Transform - pos: -22.5,11.5 - parent: 2 - - uid: 26641 - components: - - type: Transform - pos: -22.5,14.5 - parent: 2 - - uid: 26643 - components: - - type: Transform - pos: -62.5,-17.5 - parent: 2 - - uid: 26649 - components: - - type: Transform - pos: 49.5,-73.5 - parent: 2 - - uid: 26651 - components: - - type: Transform - pos: -20.5,25.5 - parent: 2 - - uid: 26652 - components: - - type: Transform - pos: -10.5,-24.5 - parent: 2 - - uid: 26653 - components: - - type: Transform - pos: 21.5,44.5 - parent: 2 - - uid: 26658 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,43.5 - parent: 2 - - uid: 26663 - components: - - type: Transform - pos: -58.5,-21.5 - parent: 2 - - uid: 26665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,48.5 - parent: 2 - - uid: 26666 - components: - - type: Transform - pos: -42.5,-22.5 - parent: 2 - - uid: 26667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,34.5 - parent: 2 - - uid: 26668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-0.5 - parent: 2 - - uid: 26669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-32.5 - parent: 2 - - uid: 26670 - components: - - type: Transform - pos: -32.5,-23.5 - parent: 2 - - uid: 26671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-28.5 - parent: 2 - - uid: 26673 - components: - - type: Transform - pos: -43.5,-27.5 - parent: 2 - - uid: 26674 - components: - - type: Transform - pos: -34.5,-31.5 - parent: 2 - - uid: 26675 - components: - - type: Transform - pos: -46.5,-31.5 - parent: 2 - - uid: 26676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-32.5 - parent: 2 - - uid: 26677 - components: - - type: Transform - pos: -19.5,-66.5 - parent: 2 - - uid: 26678 - components: - - type: Transform - pos: -34.5,-23.5 - parent: 2 - - uid: 26679 - components: - - type: Transform - pos: -40.5,-48.5 - parent: 2 - - uid: 26680 - components: - - type: Transform - pos: -38.5,-51.5 - parent: 2 - - uid: 26681 - components: - - type: Transform - pos: -40.5,-47.5 - parent: 2 - - uid: 26682 - components: - - type: Transform - pos: 2.5,34.5 - parent: 2 - - uid: 26685 - components: - - type: Transform - pos: -46.5,-29.5 - parent: 2 - - uid: 26687 - components: - - type: Transform - pos: -39.5,-33.5 - parent: 2 - - uid: 26688 - components: - - type: Transform - pos: -33.5,-23.5 - parent: 2 - - uid: 26689 - components: - - type: Transform - pos: -3.5,43.5 - parent: 2 - - uid: 26692 - components: - - type: Transform - pos: 10.5,-77.5 - parent: 2 - - uid: 26693 - components: - - type: Transform - pos: 10.5,-78.5 - parent: 2 - - uid: 26694 - components: - - type: Transform - pos: -42.5,-51.5 - parent: 2 - - uid: 26695 - components: - - type: Transform - pos: 10.5,-79.5 - parent: 2 - - uid: 26696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-2.5 - parent: 2 - - uid: 26697 - components: - - type: Transform - pos: 10.5,-81.5 - parent: 2 - - uid: 26698 - components: - - type: Transform - pos: 10.5,-80.5 - parent: 2 - - uid: 26699 - components: - - type: Transform - pos: -8.5,-75.5 - parent: 2 - - uid: 26700 - components: - - type: Transform - pos: -8.5,-73.5 - parent: 2 - - uid: 26701 - components: - - type: Transform - pos: -8.5,-72.5 - parent: 2 - - uid: 26702 - components: - - type: Transform - pos: -8.5,-71.5 - parent: 2 - - uid: 26704 - components: - - type: Transform - pos: -9.5,-71.5 - parent: 2 - - uid: 26705 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-3.5 - parent: 2 - - uid: 26707 - components: - - type: Transform - pos: 70.5,-80.5 - parent: 2 - - uid: 26713 - components: - - type: Transform - pos: -6.5,-101.5 - parent: 2 - - uid: 26714 - components: - - type: Transform - pos: -4.5,-101.5 - parent: 2 - - uid: 26715 - components: - - type: Transform - pos: -2.5,-101.5 - parent: 2 - - uid: 26716 - components: - - type: Transform - pos: -0.5,-101.5 - parent: 2 - - uid: 26717 - components: - - type: Transform - pos: 1.5,-101.5 - parent: 2 - - uid: 26718 - components: - - type: Transform - pos: 3.5,-101.5 - parent: 2 - - uid: 26719 - components: - - type: Transform - pos: 5.5,-101.5 - parent: 2 - - uid: 26720 - components: - - type: Transform - pos: -5.5,-101.5 - parent: 2 - - uid: 26721 - components: - - type: Transform - pos: -3.5,-101.5 - parent: 2 - - uid: 26722 - components: - - type: Transform - pos: -1.5,-101.5 - parent: 2 - - uid: 26723 - components: - - type: Transform - pos: 2.5,-101.5 - parent: 2 - - uid: 26724 - components: - - type: Transform - pos: 4.5,-101.5 - parent: 2 - - uid: 26725 - components: - - type: Transform - pos: 6.5,-101.5 - parent: 2 - - uid: 26726 - components: - - type: Transform - pos: -7.5,-101.5 - parent: 2 - - uid: 26727 - components: - - type: Transform - pos: 0.5,-101.5 - parent: 2 - - uid: 26728 - components: - - type: Transform - pos: -8.5,-93.5 - parent: 2 - - uid: 26731 - components: - - type: Transform - pos: -17.5,-77.5 - parent: 2 - - uid: 26732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-16.5 - parent: 2 - - uid: 26737 - components: - - type: Transform - pos: 50.5,-73.5 - parent: 2 - - uid: 26738 - components: - - type: Transform - pos: 51.5,-73.5 - parent: 2 - - uid: 26739 - components: - - type: Transform - pos: 62.5,-81.5 - parent: 2 - - uid: 26740 - components: - - type: Transform - pos: 63.5,-81.5 - parent: 2 - - uid: 26742 - components: - - type: Transform - pos: 71.5,-72.5 - parent: 2 - - uid: 26744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-76.5 - parent: 2 - - uid: 26746 - components: - - type: Transform - pos: 6.5,-78.5 - parent: 2 - - uid: 26750 - components: - - type: Transform - pos: -8.5,-78.5 - parent: 2 - - uid: 26751 - components: - - type: Transform - pos: 10.5,-76.5 - parent: 2 - - uid: 26754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,18.5 - parent: 2 - - uid: 26757 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 2 - - uid: 26758 - components: - - type: Transform - pos: -16.5,0.5 - parent: 2 - - uid: 26759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-15.5 - parent: 2 - - uid: 26760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-10.5 - parent: 2 - - uid: 26762 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,0.5 - parent: 2 - - uid: 26763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,16.5 - parent: 2 - - uid: 26764 - components: - - type: Transform - pos: 36.5,-44.5 - parent: 2 - - uid: 26765 - components: - - type: Transform - pos: 35.5,-44.5 - parent: 2 - - uid: 26766 - components: - - type: Transform - pos: 34.5,-44.5 - parent: 2 - - uid: 26768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-16.5 - parent: 2 - - uid: 26769 - components: - - type: Transform - pos: 83.5,-44.5 - parent: 2 - - uid: 26770 - components: - - type: Transform - pos: 86.5,-44.5 - parent: 2 - - uid: 26771 - components: - - type: Transform - pos: 86.5,-45.5 - parent: 2 - - uid: 26772 - components: - - type: Transform - pos: 87.5,-47.5 - parent: 2 - - uid: 26773 - components: - - type: Transform - pos: 87.5,-48.5 - parent: 2 - - uid: 26774 - components: - - type: Transform - pos: 86.5,-49.5 - parent: 2 - - uid: 26775 - components: - - type: Transform - pos: 85.5,-49.5 - parent: 2 - - uid: 26776 - components: - - type: Transform - pos: 84.5,-49.5 - parent: 2 - - uid: 26777 - components: - - type: Transform - pos: 83.5,-49.5 - parent: 2 - - uid: 26778 - components: - - type: Transform - pos: 87.5,-32.5 - parent: 2 - - uid: 26779 - components: - - type: Transform - pos: 88.5,-32.5 - parent: 2 - - uid: 26782 - components: - - type: Transform - pos: 87.5,-33.5 - parent: 2 - - uid: 26783 - components: - - type: Transform - pos: -29.5,-23.5 - parent: 2 - - uid: 26785 - components: - - type: Transform - pos: 64.5,-57.5 - parent: 2 - - uid: 26786 - components: - - type: Transform - pos: -24.5,52.5 - parent: 2 - - uid: 26789 - components: - - type: Transform - pos: -10.5,-71.5 - parent: 2 - - uid: 26791 - components: - - type: Transform - pos: -7.5,42.5 - parent: 2 - - uid: 26794 - components: - - type: Transform - pos: -43.5,-33.5 - parent: 2 - - uid: 26795 - components: - - type: Transform - pos: -41.5,-33.5 - parent: 2 - - uid: 26801 - components: - - type: Transform - pos: -9.5,-24.5 - parent: 2 - - uid: 26802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,20.5 - parent: 2 - - uid: 26803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,21.5 - parent: 2 - - uid: 26804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,22.5 - parent: 2 - - uid: 26805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-28.5 - parent: 2 - - uid: 26806 - components: - - type: Transform - pos: 63.5,-80.5 - parent: 2 - - uid: 26808 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 2 - - uid: 26809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,18.5 - parent: 2 - - uid: 26810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,16.5 - parent: 2 - - uid: 26811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,16.5 - parent: 2 - - uid: 26812 - components: - - type: Transform - pos: -29.5,-24.5 - parent: 2 - - uid: 26813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,16.5 - parent: 2 - - uid: 26815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-18.5 - parent: 2 - - uid: 26817 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 2 - - uid: 26825 - components: - - type: Transform - pos: 70.5,-81.5 - parent: 2 - - uid: 26826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,14.5 - parent: 2 - - uid: 26827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,13.5 - parent: 2 - - uid: 26829 - components: - - type: Transform - pos: 71.5,-79.5 - parent: 2 - - uid: 26830 - components: - - type: Transform - pos: 64.5,-80.5 - parent: 2 - - uid: 26831 - components: - - type: Transform - pos: 65.5,-80.5 - parent: 2 - - uid: 26832 - components: - - type: Transform - pos: -53.5,-6.5 - parent: 2 - - uid: 26833 - components: - - type: Transform - pos: -52.5,-6.5 - parent: 2 - - uid: 26834 - components: - - type: Transform - pos: -52.5,-5.5 - parent: 2 - - uid: 26837 - components: - - type: Transform - pos: -52.5,-4.5 - parent: 2 - - uid: 26838 - components: - - type: Transform - pos: -52.5,-3.5 - parent: 2 - - uid: 26839 - components: - - type: Transform - pos: -49.5,-3.5 - parent: 2 - - uid: 26840 - components: - - type: Transform - pos: -53.5,-7.5 - parent: 2 - - uid: 26841 - components: - - type: Transform - pos: -53.5,-8.5 - parent: 2 - - uid: 26843 - components: - - type: Transform - pos: -49.5,-9.5 - parent: 2 - - uid: 26844 - components: - - type: Transform - pos: -48.5,-9.5 - parent: 2 - - uid: 26845 - components: - - type: Transform - pos: -48.5,-8.5 - parent: 2 - - uid: 26846 - components: - - type: Transform - pos: -48.5,-7.5 - parent: 2 - - uid: 26847 - components: - - type: Transform - pos: -48.5,-6.5 - parent: 2 - - uid: 26848 - components: - - type: Transform - pos: -48.5,-5.5 - parent: 2 - - uid: 26849 - components: - - type: Transform - pos: -48.5,-4.5 - parent: 2 - - uid: 26850 - components: - - type: Transform - pos: -48.5,-3.5 - parent: 2 - - uid: 26855 - components: - - type: Transform - pos: 71.5,-70.5 - parent: 2 - - uid: 26858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,4.5 - parent: 2 - - uid: 26859 - components: - - type: Transform - pos: -51.5,-3.5 - parent: 2 - - uid: 26865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,33.5 - parent: 2 - - uid: 26866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,46.5 - parent: 2 - - uid: 26867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,5.5 - parent: 2 - - uid: 26868 - components: - - type: Transform - pos: -80.5,12.5 - parent: 2 - - uid: 26870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,16.5 - parent: 2 - - uid: 26871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,10.5 - parent: 2 - - uid: 26872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,12.5 - parent: 2 - - uid: 26873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 2 - - uid: 26874 - components: - - type: Transform - pos: 17.5,-21.5 - parent: 2 - - uid: 26881 - components: - - type: Transform - pos: -8.5,-77.5 - parent: 2 - - uid: 26882 - components: - - type: Transform - pos: 6.5,-45.5 - parent: 2 - - uid: 26884 - components: - - type: Transform - pos: 2.5,-45.5 - parent: 2 - - uid: 26885 - components: - - type: Transform - pos: -3.5,-76.5 - parent: 2 - - uid: 26886 - components: - - type: Transform - pos: -18.5,-75.5 - parent: 2 - - uid: 26888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-40.5 - parent: 2 - - uid: 26889 - components: - - type: Transform - pos: -3.5,-65.5 - parent: 2 - - uid: 26890 - components: - - type: Transform - pos: -18.5,-77.5 - parent: 2 - - uid: 26891 - components: - - type: Transform - pos: -18.5,-76.5 - parent: 2 - - uid: 26896 - components: - - type: Transform - pos: 48.5,-73.5 - parent: 2 - - uid: 26898 - components: - - type: Transform - pos: 56.5,-81.5 - parent: 2 - - uid: 26899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,5.5 - parent: 2 - - uid: 26903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-28.5 - parent: 2 - - uid: 26904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-32.5 - parent: 2 - - uid: 26905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-32.5 - parent: 2 - - uid: 26906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-32.5 - parent: 2 - - uid: 26909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,26.5 - parent: 2 - - uid: 26911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,8.5 - parent: 2 - - uid: 26912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,4.5 - parent: 2 - - uid: 26913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,4.5 - parent: 2 - - uid: 26914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,7.5 - parent: 2 - - uid: 26915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-26.5 - parent: 2 - - uid: 26916 - components: - - type: Transform - pos: 33.5,-37.5 - parent: 2 - - uid: 26917 - components: - - type: Transform - pos: 34.5,-37.5 - parent: 2 - - uid: 26918 - components: - - type: Transform - pos: 35.5,-37.5 - parent: 2 - - uid: 26920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-4.5 - parent: 2 - - uid: 26921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-15.5 - parent: 2 - - uid: 26922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,11.5 - parent: 2 - - uid: 26923 - components: - - type: Transform - pos: 78.5,9.5 - parent: 2 - - uid: 26924 - components: - - type: Transform - pos: 79.5,9.5 - parent: 2 - - uid: 26925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,15.5 - parent: 2 - - uid: 26926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,15.5 - parent: 2 - - uid: 26927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,15.5 - parent: 2 - - uid: 26928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-24.5 - parent: 2 - - uid: 26929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 2 - - uid: 26930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 2 - - uid: 26931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-32.5 - parent: 2 - - uid: 26932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,6.5 - parent: 2 - - uid: 26933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,5.5 - parent: 2 - - uid: 26937 - components: - - type: Transform - pos: -17.5,52.5 - parent: 2 - - uid: 26940 - components: - - type: Transform - pos: -16.5,53.5 - parent: 2 - - uid: 26941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-14.5 - parent: 2 - - uid: 26942 - components: - - type: Transform - pos: 18.5,25.5 - parent: 2 - - uid: 26947 - components: - - type: Transform - pos: 36.5,-37.5 - parent: 2 - - uid: 26948 - components: - - type: Transform - pos: 37.5,-37.5 - parent: 2 - - uid: 26949 - components: - - type: Transform - pos: 38.5,-37.5 - parent: 2 - - uid: 26951 - components: - - type: Transform - pos: 38.5,-41.5 - parent: 2 - - uid: 26952 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 2 - - uid: 26953 - components: - - type: Transform - pos: 9.5,-23.5 - parent: 2 - - uid: 26954 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 2 - - uid: 26955 - components: - - type: Transform - pos: -52.5,-9.5 - parent: 2 - - uid: 26956 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,7.5 - parent: 2 - - uid: 26957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,8.5 - parent: 2 - - uid: 26958 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,9.5 - parent: 2 - - uid: 26959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,9.5 - parent: 2 - - uid: 26960 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,9.5 - parent: 2 - - uid: 26961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,9.5 - parent: 2 - - uid: 26962 - components: - - type: Transform - pos: 38.5,-42.5 - parent: 2 - - uid: 26963 - components: - - type: Transform - pos: 38.5,-43.5 - parent: 2 - - uid: 26964 - components: - - type: Transform - pos: 38.5,-44.5 - parent: 2 - - uid: 26965 - components: - - type: Transform - pos: -51.5,-9.5 - parent: 2 - - uid: 26966 - components: - - type: Transform - pos: -9.5,-27.5 - parent: 2 - - uid: 26967 - components: - - type: Transform - pos: 33.5,-44.5 - parent: 2 - - uid: 26969 - components: - - type: Transform - pos: 33.5,-40.5 - parent: 2 - - uid: 26970 - components: - - type: Transform - pos: 33.5,-41.5 - parent: 2 - - uid: 26971 - components: - - type: Transform - pos: 33.5,-42.5 - parent: 2 - - uid: 26972 - components: - - type: Transform - pos: -3.5,48.5 - parent: 2 - - uid: 26973 - components: - - type: Transform - pos: -8.5,-76.5 - parent: 2 - - uid: 26975 - components: - - type: Transform - pos: 1.5,-50.5 - parent: 2 - - uid: 26976 - components: - - type: Transform - pos: 60.5,-82.5 - parent: 2 - - uid: 26978 - components: - - type: Transform - pos: -3.5,47.5 - parent: 2 - - uid: 26981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,17.5 - parent: 2 - - uid: 26982 - components: - - type: Transform - pos: 24.5,33.5 - parent: 2 - - uid: 26983 - components: - - type: Transform - pos: 25.5,33.5 - parent: 2 - - uid: 26984 - components: - - type: Transform - pos: 21.5,33.5 - parent: 2 - - uid: 26985 - components: - - type: Transform - pos: 23.5,33.5 - parent: 2 - - uid: 26986 - components: - - type: Transform - pos: 33.5,-43.5 - parent: 2 - - uid: 26990 - components: - - type: Transform - pos: 1.5,-54.5 - parent: 2 - - uid: 26997 - components: - - type: Transform - pos: 33.5,-38.5 - parent: 2 - - uid: 26999 - components: - - type: Transform - pos: -3.5,-71.5 - parent: 2 - - uid: 27007 - components: - - type: Transform - pos: 72.5,-32.5 - parent: 2 - - uid: 27008 - components: - - type: Transform - pos: 2.5,-71.5 - parent: 2 - - uid: 27009 - components: - - type: Transform - pos: 62.5,-82.5 - parent: 2 - - uid: 27012 - components: - - type: Transform - pos: 68.5,-32.5 - parent: 2 - - uid: 27013 - components: - - type: Transform - pos: -4.5,-93.5 - parent: 2 - - uid: 27014 - components: - - type: Transform - pos: -2.5,-93.5 - parent: 2 - - uid: 27015 - components: - - type: Transform - pos: -1.5,-93.5 - parent: 2 - - uid: 27016 - components: - - type: Transform - pos: -0.5,-93.5 - parent: 2 - - uid: 27017 - components: - - type: Transform - pos: 0.5,-93.5 - parent: 2 - - uid: 27018 - components: - - type: Transform - pos: 1.5,-93.5 - parent: 2 - - uid: 27019 - components: - - type: Transform - pos: 20.5,33.5 - parent: 2 - - uid: 27020 - components: - - type: Transform - pos: 26.5,33.5 - parent: 2 - - uid: 27021 - components: - - type: Transform - pos: 6.5,-93.5 - parent: 2 - - uid: 27022 - components: - - type: Transform - pos: 7.5,-93.5 - parent: 2 - - uid: 27023 - components: - - type: Transform - pos: 8.5,-93.5 - parent: 2 - - uid: 27030 - components: - - type: Transform - pos: 9.5,-86.5 - parent: 2 - - uid: 27031 - components: - - type: Transform - pos: 9.5,-85.5 - parent: 2 - - uid: 27032 - components: - - type: Transform - pos: 9.5,-84.5 - parent: 2 - - uid: 27034 - components: - - type: Transform - pos: 19.5,33.5 - parent: 2 - - uid: 27042 - components: - - type: Transform - pos: -23.5,8.5 - parent: 2 - - uid: 27048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-26.5 - parent: 2 - - uid: 27049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-24.5 - parent: 2 - - uid: 27050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-22.5 - parent: 2 - - uid: 27051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-20.5 - parent: 2 - - uid: 27052 - components: - - type: Transform - pos: -55.5,-26.5 - parent: 2 - - uid: 27053 - components: - - type: Transform - pos: -55.5,-27.5 - parent: 2 - - uid: 27054 - components: - - type: Transform - pos: -50.5,-27.5 - parent: 2 - - uid: 27056 - components: - - type: Transform - pos: -50.5,-29.5 - parent: 2 - - uid: 27057 - components: - - type: Transform - pos: -50.5,-30.5 - parent: 2 - - uid: 27058 - components: - - type: Transform - pos: -55.5,-29.5 - parent: 2 - - uid: 27059 - components: - - type: Transform - pos: -55.5,-30.5 - parent: 2 - - uid: 27060 - components: - - type: Transform - pos: -58.5,-26.5 - parent: 2 - - uid: 27061 - components: - - type: Transform - pos: -59.5,-26.5 - parent: 2 - - uid: 27062 - components: - - type: Transform - pos: -59.5,-27.5 - parent: 2 - - uid: 27063 - components: - - type: Transform - pos: -56.5,-26.5 - parent: 2 - - uid: 27066 - components: - - type: Transform - pos: -50.5,-23.5 - parent: 2 - - uid: 27067 - components: - - type: Transform - pos: -49.5,-23.5 - parent: 2 - - uid: 27068 - components: - - type: Transform - pos: -49.5,-22.5 - parent: 2 - - uid: 27069 - components: - - type: Transform - pos: -49.5,-20.5 - parent: 2 - - uid: 27070 - components: - - type: Transform - pos: -49.5,-21.5 - parent: 2 - - uid: 27071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-30.5 - parent: 2 - - uid: 27072 - components: - - type: Transform - pos: -49.5,-31.5 - parent: 2 - - uid: 27227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,0.5 - parent: 2 - - uid: 27292 - components: - - type: Transform - pos: 56.5,-82.5 - parent: 2 - - uid: 27390 - components: - - type: Transform - pos: 52.5,-73.5 - parent: 2 - - uid: 27570 - components: - - type: Transform - pos: 17.5,-81.5 - parent: 2 - - uid: 27572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-93.5 - parent: 2 - - uid: 27573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-93.5 - parent: 2 - - uid: 27574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-93.5 - parent: 2 - - uid: 27576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-93.5 - parent: 2 - - uid: 27577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-93.5 - parent: 2 - - uid: 27578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-93.5 - parent: 2 - - uid: 27579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-93.5 - parent: 2 - - uid: 27580 - components: - - type: Transform - pos: 10.5,-93.5 - parent: 2 - - uid: 27698 - components: - - type: Transform - pos: 16.5,-90.5 - parent: 2 - - uid: 27699 - components: - - type: Transform - pos: 20.5,-90.5 - parent: 2 - - uid: 27704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-86.5 - parent: 2 - - uid: 27705 - components: - - type: Transform - pos: 20.5,-84.5 - parent: 2 - - uid: 27706 - components: - - type: Transform - pos: 16.5,-84.5 - parent: 2 - - uid: 27741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-71.5 - parent: 2 - - uid: 27778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-86.5 - parent: 2 - - uid: 28215 - components: - - type: Transform - pos: 12.5,18.5 - parent: 2 - - uid: 28216 - components: - - type: Transform - pos: 13.5,18.5 - parent: 2 - - uid: 28217 - components: - - type: Transform - pos: 17.5,18.5 - parent: 2 - - uid: 28218 - components: - - type: Transform - pos: 16.5,18.5 - parent: 2 - - uid: 28219 - components: - - type: Transform - pos: 14.5,18.5 - parent: 2 - - uid: 28220 - components: - - type: Transform - pos: 17.5,19.5 - parent: 2 - - uid: 28223 - components: - - type: Transform - pos: 19.5,21.5 - parent: 2 - - uid: 28224 - components: - - type: Transform - pos: 19.5,23.5 - parent: 2 - - uid: 28225 - components: - - type: Transform - pos: 19.5,25.5 - parent: 2 - - uid: 28235 - components: - - type: Transform - pos: 11.5,18.5 - parent: 2 - - uid: 28314 - components: - - type: Transform - pos: 15.5,18.5 - parent: 2 - - uid: 28354 - components: - - type: Transform - pos: 19.5,22.5 - parent: 2 - - uid: 28520 - components: - - type: Transform - pos: -15.5,25.5 - parent: 2 - - uid: 28582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-63.5 - parent: 2 - - uid: 28807 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-86.5 - parent: 2 - - uid: 28813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-88.5 - parent: 2 - - uid: 28884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-86.5 - parent: 2 - - uid: 28885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-72.5 - parent: 2 - - uid: 28964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-81.5 - parent: 2 - - uid: 28981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-54.5 - parent: 2 - - uid: 28982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-53.5 - parent: 2 - - uid: 28983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-52.5 - parent: 2 - - uid: 28985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,24.5 - parent: 2 - - uid: 28989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-51.5 - parent: 2 - - uid: 28991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-50.5 - parent: 2 - - uid: 29002 - components: - - type: Transform - pos: 12.5,24.5 - parent: 2 - - uid: 29231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-50.5 - parent: 2 - - uid: 29234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-50.5 - parent: 2 - - uid: 29235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-50.5 - parent: 2 - - uid: 29236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-50.5 - parent: 2 - - uid: 29239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-50.5 - parent: 2 - - uid: 29246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-50.5 - parent: 2 - - uid: 29249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-51.5 - parent: 2 - - uid: 29250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-52.5 - parent: 2 - - uid: 29251 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-53.5 - parent: 2 - - uid: 29257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-54.5 - parent: 2 - - uid: 29291 - components: - - type: Transform - pos: 53.5,-74.5 - parent: 2 - - uid: 29315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,27.5 - parent: 2 - - uid: 29509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-88.5 - parent: 2 - - uid: 29534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-81.5 - parent: 2 - - uid: 29541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-70.5 - parent: 2 - - uid: 29545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-72.5 - parent: 2 - - uid: 29546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-69.5 - parent: 2 - - uid: 29869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-36.5 - parent: 2 - - uid: 29879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-38.5 - parent: 2 - - uid: 29928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-35.5 - parent: 2 - - uid: 30007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,46.5 - parent: 2 - - uid: 30036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,37.5 - parent: 2 - - uid: 30037 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,38.5 - parent: 2 - - uid: 30038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,39.5 - parent: 2 - - uid: 30039 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,33.5 - parent: 2 - - uid: 30040 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,33.5 - parent: 2 - - uid: 30232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,25.5 - parent: 2 - - uid: 30233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,26.5 - parent: 2 - - uid: 30234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,27.5 - parent: 2 - - uid: 30235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,29.5 - parent: 2 - - uid: 30236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,28.5 - parent: 2 - - uid: 30237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,29.5 - parent: 2 - - uid: 30238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,35.5 - parent: 2 - - uid: 30239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,35.5 - parent: 2 - - uid: 30240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,36.5 - parent: 2 - - uid: 30241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,37.5 - parent: 2 - - uid: 30242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,38.5 - parent: 2 - - uid: 30243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,39.5 - parent: 2 - - uid: 30244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,40.5 - parent: 2 - - uid: 30245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,41.5 - parent: 2 - - uid: 30246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,41.5 - parent: 2 - - uid: 30247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,37.5 - parent: 2 - - uid: 30250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,45.5 - parent: 2 - - uid: 30251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,47.5 - parent: 2 - - uid: 30252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,45.5 - parent: 2 - - uid: 30253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,46.5 - parent: 2 - - uid: 30254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,47.5 - parent: 2 - - uid: 30258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,34.5 - parent: 2 - - uid: 30259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,30.5 - parent: 2 - - uid: 30263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,29.5 - parent: 2 - - uid: 30264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,34.5 - parent: 2 - - uid: 30269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,29.5 - parent: 2 - - uid: 30284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,29.5 - parent: 2 - - uid: 30291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,37.5 - parent: 2 - - uid: 30295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,36.5 - parent: 2 - - uid: 30389 - components: - - type: Transform - pos: -39.5,20.5 - parent: 2 - - uid: 30779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,26.5 - parent: 2 - - uid: 30783 - components: - - type: Transform - pos: 71.5,28.5 - parent: 2 - - uid: 30785 - components: - - type: Transform - pos: 71.5,27.5 - parent: 2 - - uid: 30794 - components: - - type: Transform - pos: 71.5,26.5 - parent: 2 - - uid: 30795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,22.5 - parent: 2 - - uid: 30796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,26.5 - parent: 2 - - uid: 30797 - components: - - type: Transform - pos: 71.5,22.5 - parent: 2 - - uid: 30798 - components: - - type: Transform - pos: 71.5,21.5 - parent: 2 - - uid: 31671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,28.5 - parent: 2 - - uid: 31710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,27.5 - parent: 2 - - uid: 31726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,26.5 - parent: 2 - - uid: 31843 - components: - - type: Transform - pos: -53.5,-9.5 - parent: 2 - - uid: 31975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,2.5 - parent: 2 - - uid: 31977 - components: - - type: Transform - pos: -26.5,4.5 - parent: 2 - - uid: 31978 - components: - - type: Transform - pos: -26.5,3.5 - parent: 2 - - uid: 31979 - components: - - type: Transform - pos: -26.5,2.5 - parent: 2 - - uid: 31980 - components: - - type: Transform - pos: -27.5,2.5 - parent: 2 - - uid: 31981 - components: - - type: Transform - pos: -29.5,2.5 - parent: 2 - - uid: 31982 - components: - - type: Transform - pos: -28.5,2.5 - parent: 2 - - uid: 31988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,15.5 - parent: 2 - - uid: 31989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,7.5 - parent: 2 - - uid: 31990 - components: - - type: Transform - pos: -34.5,6.5 - parent: 2 - - uid: 31991 - components: - - type: Transform - pos: -34.5,5.5 - parent: 2 - - uid: 31992 - components: - - type: Transform - pos: -34.5,4.5 - parent: 2 - - uid: 31993 - components: - - type: Transform - pos: -34.5,3.5 - parent: 2 - - uid: 31994 - components: - - type: Transform - pos: -34.5,2.5 - parent: 2 - - uid: 31995 - components: - - type: Transform - pos: -33.5,2.5 - parent: 2 - - uid: 32059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,7.5 - parent: 2 -- proto: WallShuttle - entities: - - uid: 3508 - components: - - type: Transform - pos: 2.5,-35.5 - parent: 2 - - uid: 7948 - components: - - type: Transform - pos: 5.5,-36.5 - parent: 2 - - uid: 8004 - components: - - type: Transform - pos: 3.5,-36.5 - parent: 2 - - uid: 8007 - components: - - type: Transform - pos: 3.5,-33.5 - parent: 2 - - uid: 8251 - components: - - type: Transform - pos: 2.5,-34.5 - parent: 2 - - uid: 8426 - components: - - type: Transform - pos: 5.5,-33.5 - parent: 2 - - uid: 8427 - components: - - type: Transform - pos: 2.5,-33.5 - parent: 2 - - uid: 8431 - components: - - type: Transform - pos: 4.5,-36.5 - parent: 2 - - uid: 9347 - components: - - type: Transform - pos: 2.5,-36.5 - parent: 2 - - uid: 9913 - components: - - type: Transform - pos: 4.5,-33.5 - parent: 2 -- proto: WallSolid - entities: - - uid: 55 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-23.5 - parent: 2 - - uid: 56 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-19.5 - parent: 2 - - uid: 66 - components: - - type: Transform - pos: -3.5,28.5 - parent: 2 - - uid: 145 - components: - - type: Transform - pos: -41.5,-4.5 - parent: 2 - - uid: 162 - components: - - type: Transform - pos: 25.5,40.5 - parent: 2 - - uid: 299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - - uid: 326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-14.5 - parent: 2 - - uid: 447 - components: - - type: Transform - pos: -28.5,-4.5 - parent: 2 - - uid: 448 - components: - - type: Transform - pos: -46.5,-3.5 - parent: 2 - - uid: 519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-45.5 - parent: 2 - - uid: 565 - components: - - type: Transform - pos: -43.5,-9.5 - parent: 2 - - uid: 585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-7.5 - parent: 2 - - uid: 592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-9.5 - parent: 2 - - uid: 593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,35.5 - parent: 2 - - uid: 603 - components: - - type: Transform - pos: -43.5,-4.5 - parent: 2 - - uid: 879 - components: - - type: Transform - pos: 52.5,-69.5 - parent: 2 - - uid: 938 - components: - - type: Transform - pos: -25.5,-19.5 - parent: 2 - - uid: 956 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 2 - - uid: 1028 - components: - - type: Transform - pos: 6.5,0.5 - parent: 2 - - uid: 1029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 2 - - uid: 1031 - components: - - type: Transform - pos: 7.5,0.5 - parent: 2 - - uid: 1070 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-29.5 - parent: 2 - - uid: 1077 - components: - - type: Transform - pos: 25.5,42.5 - parent: 2 - - uid: 1142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-24.5 - parent: 2 - - uid: 1151 - components: - - type: Transform - pos: 14.5,7.5 - parent: 2 - - uid: 1169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-24.5 - parent: 2 - - uid: 1311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,28.5 - parent: 2 - - uid: 1329 - components: - - type: Transform - pos: -76.5,-17.5 - parent: 2 - - uid: 1358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,8.5 - parent: 2 - - uid: 1360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,0.5 - parent: 2 - - uid: 1758 - components: - - type: Transform - pos: 4.5,0.5 - parent: 2 - - uid: 1759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,12.5 - parent: 2 - - uid: 1760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,11.5 - parent: 2 - - uid: 1776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,20.5 - parent: 2 - - uid: 1788 - components: - - type: Transform - pos: 5.5,0.5 - parent: 2 - - uid: 1789 - components: - - type: Transform - pos: 7.5,1.5 - parent: 2 - - uid: 1821 - components: - - type: Transform - pos: 20.5,12.5 - parent: 2 - - uid: 1884 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 2 - - uid: 2099 - components: - - type: Transform - pos: -64.5,14.5 - parent: 2 - - uid: 2127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,11.5 - parent: 2 - - uid: 2128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 2 - - uid: 2129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,14.5 - parent: 2 - - uid: 2130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,14.5 - parent: 2 - - uid: 2132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,14.5 - parent: 2 - - uid: 2141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,13.5 - parent: 2 - - uid: 2153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,20.5 - parent: 2 - - uid: 2156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,17.5 - parent: 2 - - uid: 2167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,9.5 - parent: 2 - - uid: 2200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 2 - - uid: 2259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,11.5 - parent: 2 - - uid: 2260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,13.5 - parent: 2 - - uid: 2261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,13.5 - parent: 2 - - uid: 2262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,13.5 - parent: 2 - - uid: 2263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 2 - - uid: 2264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,13.5 - parent: 2 - - uid: 2451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,20.5 - parent: 2 - - uid: 2452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,20.5 - parent: 2 - - uid: 2681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,11.5 - parent: 2 - - uid: 3190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,14.5 - parent: 2 - - uid: 3231 - components: - - type: Transform - pos: -29.5,30.5 - parent: 2 - - uid: 3326 - components: - - type: Transform - pos: 45.5,-44.5 - parent: 2 - - uid: 3327 - components: - - type: Transform - pos: 42.5,-44.5 - parent: 2 - - uid: 3352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,11.5 - parent: 2 - - uid: 3354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,11.5 - parent: 2 - - uid: 3355 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,4.5 - parent: 2 - - uid: 3357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,8.5 - parent: 2 - - uid: 3366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,11.5 - parent: 2 - - uid: 3468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-9.5 - parent: 2 - - uid: 3477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-6.5 - parent: 2 - - uid: 3481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-6.5 - parent: 2 - - uid: 3484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-4.5 - parent: 2 - - uid: 3507 - components: - - type: Transform - pos: -36.5,-19.5 - parent: 2 - - uid: 3531 - components: - - type: Transform - pos: -58.5,-6.5 - parent: 2 - - uid: 3535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,37.5 - parent: 2 - - uid: 4171 - components: - - type: Transform - pos: 11.5,-37.5 - parent: 2 - - uid: 4365 - components: - - type: Transform - pos: 50.5,-66.5 - parent: 2 - - uid: 4375 - components: - - type: Transform - pos: 51.5,-67.5 - parent: 2 - - uid: 5048 - components: - - type: Transform - pos: 53.5,-67.5 - parent: 2 - - uid: 5050 - components: - - type: Transform - pos: 50.5,-67.5 - parent: 2 - - uid: 5051 - components: - - type: Transform - pos: 52.5,-67.5 - parent: 2 - - uid: 5136 - components: - - type: Transform - pos: 77.5,-57.5 - parent: 2 - - uid: 5154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,18.5 - parent: 2 - - uid: 5256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-22.5 - parent: 2 - - uid: 5257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-24.5 - parent: 2 - - uid: 5395 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-19.5 - parent: 2 - - uid: 5397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-18.5 - parent: 2 - - uid: 5398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-19.5 - parent: 2 - - uid: 5413 - components: - - type: Transform - pos: 76.5,-39.5 - parent: 2 - - uid: 5417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-32.5 - parent: 2 - - uid: 5430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,19.5 - parent: 2 - - uid: 5553 - components: - - type: Transform - pos: 18.5,16.5 - parent: 2 - - uid: 5616 - components: - - type: Transform - pos: 28.5,12.5 - parent: 2 - - uid: 5617 - components: - - type: Transform - pos: 28.5,11.5 - parent: 2 - - uid: 5623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-25.5 - parent: 2 - - uid: 5706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-25.5 - parent: 2 - - uid: 5709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-28.5 - parent: 2 - - uid: 5852 - components: - - type: Transform - pos: 77.5,-41.5 - parent: 2 - - uid: 5853 - components: - - type: Transform - pos: 68.5,-40.5 - parent: 2 - - uid: 6086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,5.5 - parent: 2 - - uid: 6145 - components: - - type: Transform - pos: 68.5,-39.5 - parent: 2 - - uid: 6146 - components: - - type: Transform - pos: 68.5,-41.5 - parent: 2 - - uid: 6147 - components: - - type: Transform - pos: 75.5,-42.5 - parent: 2 - - uid: 6150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,11.5 - parent: 2 - - uid: 6188 - components: - - type: Transform - pos: 74.5,-42.5 - parent: 2 - - uid: 6189 - components: - - type: Transform - pos: 72.5,-39.5 - parent: 2 - - uid: 6239 - components: - - type: Transform - pos: 73.5,-42.5 - parent: 2 - - uid: 6240 - components: - - type: Transform - pos: 69.5,-42.5 - parent: 2 - - uid: 6326 - components: - - type: Transform - pos: 73.5,-47.5 - parent: 2 - - uid: 6327 - components: - - type: Transform - pos: 73.5,-43.5 - parent: 2 - - uid: 6341 - components: - - type: Transform - pos: 73.5,-46.5 - parent: 2 - - uid: 6342 - components: - - type: Transform - pos: 73.5,-44.5 - parent: 2 - - uid: 6343 - components: - - type: Transform - pos: 76.5,-42.5 - parent: 2 - - uid: 6344 - components: - - type: Transform - pos: 76.5,-41.5 - parent: 2 - - uid: 6345 - components: - - type: Transform - pos: 72.5,-37.5 - parent: 2 - - uid: 6346 - components: - - type: Transform - pos: 68.5,-37.5 - parent: 2 - - uid: 6387 - components: - - type: Transform - pos: -36.5,-18.5 - parent: 2 - - uid: 6563 - components: - - type: Transform - pos: 1.5,-34.5 - parent: 2 - - uid: 6565 - components: - - type: Transform - pos: 79.5,-41.5 - parent: 2 - - uid: 6608 - components: - - type: Transform - pos: 76.5,-38.5 - parent: 2 - - uid: 6777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-41.5 - parent: 2 - - uid: 6958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,11.5 - parent: 2 - - uid: 7023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,3.5 - parent: 2 - - uid: 7027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,2.5 - parent: 2 - - uid: 7029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,10.5 - parent: 2 - - uid: 7032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,11.5 - parent: 2 - - uid: 7036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,11.5 - parent: 2 - - uid: 7425 - components: - - type: Transform - pos: 76.5,-37.5 - parent: 2 - - uid: 7426 - components: - - type: Transform - pos: 69.5,-43.5 - parent: 2 - - uid: 7543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-24.5 - parent: 2 - - uid: 7616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,23.5 - parent: 2 - - uid: 7643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-25.5 - parent: 2 - - uid: 7657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-25.5 - parent: 2 - - uid: 7737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-24.5 - parent: 2 - - uid: 7768 - components: - - type: Transform - pos: 25.5,12.5 - parent: 2 - - uid: 7949 - components: - - type: Transform - pos: 7.5,-37.5 - parent: 2 - - uid: 7987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,5.5 - parent: 2 - - uid: 8059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-26.5 - parent: 2 - - uid: 8128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,0.5 - parent: 2 - - uid: 8136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,0.5 - parent: 2 - - uid: 8175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 2 - - uid: 8179 - components: - - type: Transform - pos: -48.5,1.5 - parent: 2 - - uid: 8185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 2 - - uid: 8194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,0.5 - parent: 2 - - uid: 8258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-17.5 - parent: 2 - - uid: 8396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-9.5 - parent: 2 - - uid: 8423 - components: - - type: Transform - pos: 25.5,11.5 - parent: 2 - - uid: 8988 - components: - - type: Transform - pos: 68.5,-38.5 - parent: 2 - - uid: 8989 - components: - - type: Transform - pos: 68.5,-42.5 - parent: 2 - - uid: 9030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-16.5 - parent: 2 - - uid: 9215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-15.5 - parent: 2 - - uid: 9378 - components: - - type: Transform - pos: 4.5,1.5 - parent: 2 - - uid: 9399 - components: - - type: Transform - pos: 31.5,-42.5 - parent: 2 - - uid: 9407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-56.5 - parent: 2 - - uid: 9441 - components: - - type: Transform - pos: 72.5,-38.5 - parent: 2 - - uid: 9622 - components: - - type: Transform - pos: 76.5,-5.5 - parent: 2 - - uid: 9797 - components: - - type: Transform - pos: 62.5,-69.5 - parent: 2 - - uid: 9892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 2 - - uid: 9940 - components: - - type: Transform - pos: 25.5,14.5 - parent: 2 - - uid: 10099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,33.5 - parent: 2 - - uid: 10193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,33.5 - parent: 2 - - uid: 10238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-3.5 - parent: 2 - - uid: 10541 - components: - - type: Transform - pos: 54.5,-69.5 - parent: 2 - - uid: 10550 - components: - - type: Transform - pos: 52.5,-68.5 - parent: 2 - - uid: 10555 - components: - - type: Transform - pos: 64.5,-72.5 - parent: 2 - - uid: 10563 - components: - - type: Transform - pos: 54.5,-68.5 - parent: 2 - - uid: 10850 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,4.5 - parent: 2 - - uid: 10851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 2 - - uid: 10971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,10.5 - parent: 2 - - uid: 10993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 2 - - uid: 11103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,29.5 - parent: 2 - - uid: 11109 - components: - - type: Transform - pos: 52.5,-71.5 - parent: 2 - - uid: 11150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 2 - - uid: 11200 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,10.5 - parent: 2 - - uid: 11209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-9.5 - parent: 2 - - uid: 11244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,0.5 - parent: 2 - - uid: 11325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,14.5 - parent: 2 - - uid: 11326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,14.5 - parent: 2 - - uid: 11345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,33.5 - parent: 2 - - uid: 11347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,35.5 - parent: 2 - - uid: 11387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-3.5 - parent: 2 - - uid: 11406 - components: - - type: Transform - pos: -47.5,-3.5 - parent: 2 - - uid: 11418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,9.5 - parent: 2 - - uid: 11473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,13.5 - parent: 2 - - uid: 11525 - components: - - type: Transform - pos: -2.5,0.5 - parent: 2 - - uid: 11752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,7.5 - parent: 2 - - uid: 11793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-18.5 - parent: 2 - - uid: 11845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,6.5 - parent: 2 - - uid: 12238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,24.5 - parent: 2 - - uid: 12281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,18.5 - parent: 2 - - uid: 12285 - components: - - type: Transform - pos: 18.5,19.5 - parent: 2 - - uid: 12893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,28.5 - parent: 2 - - uid: 13032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,16.5 - parent: 2 - - uid: 13170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,16.5 - parent: 2 - - uid: 13214 - components: - - type: Transform - pos: 25.5,15.5 - parent: 2 - - uid: 13289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,16.5 - parent: 2 - - uid: 13360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 2 - - uid: 13391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 2 - - uid: 13485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,11.5 - parent: 2 - - uid: 13598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 2 - - uid: 13984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,11.5 - parent: 2 - - uid: 14045 - components: - - type: Transform - pos: 4.5,-32.5 - parent: 2 - - uid: 14068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,16.5 - parent: 2 - - uid: 14118 - components: - - type: Transform - pos: 25.5,13.5 - parent: 2 - - uid: 14122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-20.5 - parent: 2 - - uid: 14285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 2 - - uid: 14468 - components: - - type: Transform - pos: -62.5,-9.5 - parent: 2 - - uid: 14572 - components: - - type: Transform - pos: 7.5,2.5 - parent: 2 - - uid: 15008 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 2 - - uid: 15077 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 2 - - uid: 15130 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 2 - - uid: 15729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,28.5 - parent: 2 - - uid: 15926 - components: - - type: Transform - pos: -7.5,28.5 - parent: 2 - - uid: 16437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,33.5 - parent: 2 - - uid: 16467 - components: - - type: Transform - pos: 61.5,-67.5 - parent: 2 - - uid: 16468 - components: - - type: Transform - pos: 64.5,-68.5 - parent: 2 - - uid: 16657 - components: - - type: Transform - pos: 28.5,-39.5 - parent: 2 - - uid: 16659 - components: - - type: Transform - pos: 23.5,-39.5 - parent: 2 - - uid: 16660 - components: - - type: Transform - pos: 22.5,-39.5 - parent: 2 - - uid: 17002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 2 - - uid: 17432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,7.5 - parent: 2 - - uid: 17499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-49.5 - parent: 2 - - uid: 17600 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 17967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-43.5 - parent: 2 - - uid: 18093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,21.5 - parent: 2 - - uid: 18770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-44.5 - parent: 2 - - uid: 18947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 2 - - uid: 18948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,9.5 - parent: 2 - - uid: 18949 - components: - - type: Transform - pos: 15.5,7.5 - parent: 2 - - uid: 18994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,32.5 - parent: 2 - - uid: 19246 - components: - - type: Transform - pos: 14.5,12.5 - parent: 2 - - uid: 19247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,33.5 - parent: 2 - - uid: 19249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,29.5 - parent: 2 - - uid: 19250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,31.5 - parent: 2 - - uid: 19347 - components: - - type: Transform - pos: 16.5,7.5 - parent: 2 - - uid: 19456 - components: - - type: Transform - pos: 70.5,7.5 - parent: 2 - - uid: 19491 - components: - - type: Transform - pos: -39.5,-19.5 - parent: 2 - - uid: 19624 - components: - - type: Transform - pos: -29.5,36.5 - parent: 2 - - uid: 19643 - components: - - type: Transform - pos: -33.5,45.5 - parent: 2 - - uid: 19653 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,20.5 - parent: 2 - - uid: 19704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-14.5 - parent: 2 - - uid: 19734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-19.5 - parent: 2 - - uid: 19770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-19.5 - parent: 2 - - uid: 19779 - components: - - type: Transform - pos: 62.5,-68.5 - parent: 2 - - uid: 20172 - components: - - type: Transform - pos: 62.5,-67.5 - parent: 2 - - uid: 20232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-8.5 - parent: 2 - - uid: 20320 - components: - - type: Transform - pos: 64.5,-71.5 - parent: 2 - - uid: 20381 - components: - - type: Transform - pos: 46.5,-44.5 - parent: 2 - - uid: 20427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,33.5 - parent: 2 - - uid: 20448 - components: - - type: Transform - pos: 76.5,-27.5 - parent: 2 - - uid: 20514 - components: - - type: Transform - pos: 76.5,-26.5 - parent: 2 - - uid: 20539 - components: - - type: Transform - pos: 56.5,-67.5 - parent: 2 - - uid: 20545 - components: - - type: Transform - pos: 76.5,-25.5 - parent: 2 - - uid: 20581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-3.5 - parent: 2 - - uid: 20790 - components: - - type: Transform - pos: 44.5,-44.5 - parent: 2 - - uid: 21285 - components: - - type: Transform - pos: 76.5,-31.5 - parent: 2 - - uid: 21383 - components: - - type: Transform - pos: 76.5,-29.5 - parent: 2 - - uid: 21408 - components: - - type: Transform - pos: 76.5,-30.5 - parent: 2 - - uid: 21754 - components: - - type: Transform - pos: 52.5,-72.5 - parent: 2 - - uid: 21931 - components: - - type: Transform - pos: 75.5,-24.5 - parent: 2 - - uid: 21949 - components: - - type: Transform - pos: 76.5,-28.5 - parent: 2 - - uid: 22034 - components: - - type: Transform - pos: 64.5,-48.5 - parent: 2 - - uid: 22076 - components: - - type: Transform - pos: 64.5,-47.5 - parent: 2 - - uid: 22080 - components: - - type: Transform - pos: 64.5,-46.5 - parent: 2 - - uid: 22081 - components: - - type: Transform - pos: 64.5,-45.5 - parent: 2 - - uid: 22103 - components: - - type: Transform - pos: 64.5,-44.5 - parent: 2 - - uid: 22141 - components: - - type: Transform - pos: 64.5,-43.5 - parent: 2 - - uid: 22168 - components: - - type: Transform - pos: 64.5,-42.5 - parent: 2 - - uid: 22201 - components: - - type: Transform - pos: 22.5,-40.5 - parent: 2 - - uid: 22223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,16.5 - parent: 2 - - uid: 22293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 2 - - uid: 22344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,33.5 - parent: 2 - - uid: 22447 - components: - - type: Transform - pos: -45.5,-3.5 - parent: 2 - - uid: 22534 - components: - - type: Transform - pos: 80.5,-39.5 - parent: 2 - - uid: 22634 - components: - - type: Transform - pos: 79.5,-36.5 - parent: 2 - - uid: 22643 - components: - - type: Transform - pos: 77.5,-36.5 - parent: 2 - - uid: 22666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,18.5 - parent: 2 - - uid: 22680 - components: - - type: Transform - pos: 79.5,-31.5 - parent: 2 - - uid: 22752 - components: - - type: Transform - pos: -56.5,-6.5 - parent: 2 - - uid: 22772 - components: - - type: Transform - pos: 77.5,-30.5 - parent: 2 - - uid: 22793 - components: - - type: Transform - pos: 78.5,-30.5 - parent: 2 - - uid: 22798 - components: - - type: Transform - pos: 27.5,-39.5 - parent: 2 - - uid: 22807 - components: - - type: Transform - pos: 79.5,-30.5 - parent: 2 - - uid: 22820 - components: - - type: Transform - pos: 30.5,-39.5 - parent: 2 - - uid: 22887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 2 - - uid: 22922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,33.5 - parent: 2 - - uid: 23313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,32.5 - parent: 2 - - uid: 23414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,7.5 - parent: 2 - - uid: 23415 - components: - - type: Transform - pos: 5.5,4.5 - parent: 2 - - uid: 23417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,7.5 - parent: 2 - - uid: 23489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,8.5 - parent: 2 - - uid: 23521 - components: - - type: Transform - pos: -44.5,-3.5 - parent: 2 - - uid: 23524 - components: - - type: Transform - pos: 80.5,-40.5 - parent: 2 - - uid: 23542 - components: - - type: Transform - pos: 80.5,-41.5 - parent: 2 - - uid: 23584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 2 - - uid: 23655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,5.5 - parent: 2 - - uid: 23767 - components: - - type: Transform - pos: -41.5,-9.5 - parent: 2 - - uid: 23935 - components: - - type: Transform - pos: 55.5,-67.5 - parent: 2 - - uid: 23958 - components: - - type: Transform - pos: 6.5,4.5 - parent: 2 - - uid: 23959 - components: - - type: Transform - pos: 4.5,4.5 - parent: 2 - - uid: 23962 - components: - - type: Transform - pos: 58.5,-67.5 - parent: 2 - - uid: 24008 - components: - - type: Transform - pos: 64.5,-69.5 - parent: 2 - - uid: 24131 - components: - - type: Transform - pos: 80.5,-36.5 - parent: 2 - - uid: 24135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,22.5 - parent: 2 - - uid: 24148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,36.5 - parent: 2 - - uid: 24208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-3.5 - parent: 2 - - uid: 24258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-73.5 - parent: 2 - - uid: 24348 - components: - - type: Transform - pos: 48.5,-69.5 - parent: 2 - - uid: 24352 - components: - - type: Transform - pos: 48.5,-70.5 - parent: 2 - - uid: 24358 - components: - - type: Transform - pos: -16.5,1.5 - parent: 2 - - uid: 24359 - components: - - type: Transform - pos: -18.5,4.5 - parent: 2 - - uid: 24360 - components: - - type: Transform - pos: -18.5,5.5 - parent: 2 - - uid: 24361 - components: - - type: Transform - pos: -18.5,6.5 - parent: 2 - - uid: 24402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,20.5 - parent: 2 - - uid: 24458 - components: - - type: Transform - pos: 80.5,-35.5 - parent: 2 - - uid: 24459 - components: - - type: Transform - pos: 80.5,-37.5 - parent: 2 - - uid: 24488 - components: - - type: Transform - pos: 22.5,21.5 - parent: 2 - - uid: 24492 - components: - - type: Transform - pos: 48.5,-71.5 - parent: 2 - - uid: 24503 - components: - - type: Transform - pos: -18.5,7.5 - parent: 2 - - uid: 24512 - components: - - type: Transform - pos: -16.5,5.5 - parent: 2 - - uid: 24515 - components: - - type: Transform - pos: 48.5,-72.5 - parent: 2 - - uid: 24516 - components: - - type: Transform - pos: 48.5,-68.5 - parent: 2 - - uid: 24528 - components: - - type: Transform - pos: -19.5,8.5 - parent: 2 - - uid: 24530 - components: - - type: Transform - pos: -18.5,8.5 - parent: 2 - - uid: 24554 - components: - - type: Transform - pos: 22.5,22.5 - parent: 2 - - uid: 24562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-76.5 - parent: 2 - - uid: 24578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,23.5 - parent: 2 - - uid: 24608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,23.5 - parent: 2 - - uid: 24609 - components: - - type: Transform - pos: 64.5,-66.5 - parent: 2 - - uid: 24616 - components: - - type: Transform - pos: 64.5,-67.5 - parent: 2 - - uid: 24634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,15.5 - parent: 2 - - uid: 24641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,23.5 - parent: 2 - - uid: 24642 - components: - - type: Transform - pos: 80.5,-42.5 - parent: 2 - - uid: 24860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,23.5 - parent: 2 - - uid: 24861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,23.5 - parent: 2 - - uid: 24864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,34.5 - parent: 2 - - uid: 24956 - components: - - type: Transform - pos: 80.5,-38.5 - parent: 2 - - uid: 24974 - components: - - type: Transform - pos: 80.5,-34.5 - parent: 2 - - uid: 25010 - components: - - type: Transform - pos: -29.5,31.5 - parent: 2 - - uid: 25011 - components: - - type: Transform - pos: -29.5,32.5 - parent: 2 - - uid: 25021 - components: - - type: Transform - pos: 64.5,20.5 - parent: 2 - - uid: 25022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,20.5 - parent: 2 - - uid: 25023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,20.5 - parent: 2 - - uid: 25125 - components: - - type: Transform - pos: 77.5,-15.5 - parent: 2 - - uid: 25126 - components: - - type: Transform - pos: 81.5,-15.5 - parent: 2 - - uid: 25127 - components: - - type: Transform - pos: 1.5,-39.5 - parent: 2 - - uid: 25128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 2 - - uid: 25129 - components: - - type: Transform - pos: 72.5,-15.5 - parent: 2 - - uid: 25130 - components: - - type: Transform - pos: 73.5,-15.5 - parent: 2 - - uid: 25132 - components: - - type: Transform - pos: 74.5,-15.5 - parent: 2 - - uid: 25133 - components: - - type: Transform - pos: 75.5,-16.5 - parent: 2 - - uid: 25146 - components: - - type: Transform - pos: 75.5,-17.5 - parent: 2 - - uid: 25147 - components: - - type: Transform - pos: 75.5,-18.5 - parent: 2 - - uid: 25148 - components: - - type: Transform - pos: 75.5,-19.5 - parent: 2 - - uid: 25149 - components: - - type: Transform - pos: 75.5,-20.5 - parent: 2 - - uid: 25150 - components: - - type: Transform - pos: 76.5,-20.5 - parent: 2 - - uid: 25153 - components: - - type: Transform - pos: 76.5,-22.5 - parent: 2 - - uid: 25156 - components: - - type: Transform - pos: 75.5,-22.5 - parent: 2 - - uid: 25157 - components: - - type: Transform - pos: 83.5,-30.5 - parent: 2 - - uid: 25158 - components: - - type: Transform - pos: 83.5,-31.5 - parent: 2 - - uid: 25159 - components: - - type: Transform - pos: 82.5,-31.5 - parent: 2 - - uid: 25160 - components: - - type: Transform - pos: 81.5,-31.5 - parent: 2 - - uid: 25162 - components: - - type: Transform - pos: 80.5,-31.5 - parent: 2 - - uid: 25163 - components: - - type: Transform - pos: 81.5,-42.5 - parent: 2 - - uid: 25164 - components: - - type: Transform - pos: 81.5,-43.5 - parent: 2 - - uid: 25165 - components: - - type: Transform - pos: 81.5,-44.5 - parent: 2 - - uid: 25166 - components: - - type: Transform - pos: 81.5,-45.5 - parent: 2 - - uid: 25168 - components: - - type: Transform - pos: 81.5,-46.5 - parent: 2 - - uid: 25169 - components: - - type: Transform - pos: 81.5,-47.5 - parent: 2 - - uid: 25170 - components: - - type: Transform - pos: 71.5,15.5 - parent: 2 - - uid: 25171 - components: - - type: Transform - pos: 75.5,-25.5 - parent: 2 - - uid: 25172 - components: - - type: Transform - pos: 80.5,-15.5 - parent: 2 - - uid: 25174 - components: - - type: Transform - pos: 79.5,-15.5 - parent: 2 - - uid: 25175 - components: - - type: Transform - pos: 78.5,-15.5 - parent: 2 - - uid: 25177 - components: - - type: Transform - pos: 77.5,-16.5 - parent: 2 - - uid: 25243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-28.5 - parent: 2 - - uid: 25255 - components: - - type: Transform - pos: 73.5,-25.5 - parent: 2 - - uid: 25301 - components: - - type: Transform - pos: 63.5,-67.5 - parent: 2 - - uid: 25314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 2 - - uid: 25371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,20.5 - parent: 2 - - uid: 25372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,20.5 - parent: 2 - - uid: 25544 - components: - - type: Transform - pos: 74.5,-16.5 - parent: 2 - - uid: 25594 - components: - - type: Transform - pos: 60.5,-67.5 - parent: 2 - - uid: 25647 - components: - - type: Transform - pos: 59.5,-67.5 - parent: 2 - - uid: 25650 - components: - - type: Transform - pos: 57.5,-67.5 - parent: 2 - - uid: 25652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-75.5 - parent: 2 - - uid: 25653 - components: - - type: Transform - pos: 54.5,-67.5 - parent: 2 - - uid: 25654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-74.5 - parent: 2 - - uid: 25660 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-9.5 - parent: 2 - - uid: 25662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-79.5 - parent: 2 - - uid: 25664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-77.5 - parent: 2 - - uid: 25768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-78.5 - parent: 2 - - uid: 25782 - components: - - type: Transform - pos: 12.5,13.5 - parent: 2 - - uid: 25792 - components: - - type: Transform - pos: -68.5,12.5 - parent: 2 - - uid: 25793 - components: - - type: Transform - pos: -68.5,18.5 - parent: 2 - - uid: 25795 - components: - - type: Transform - pos: -73.5,11.5 - parent: 2 - - uid: 25796 - components: - - type: Transform - pos: -72.5,11.5 - parent: 2 - - uid: 25797 - components: - - type: Transform - pos: -71.5,11.5 - parent: 2 - - uid: 25798 - components: - - type: Transform - pos: -70.5,11.5 - parent: 2 - - uid: 25799 - components: - - type: Transform - pos: -69.5,11.5 - parent: 2 - - uid: 25800 - components: - - type: Transform - pos: -68.5,11.5 - parent: 2 - - uid: 25853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,25.5 - parent: 2 - - uid: 25904 - components: - - type: Transform - pos: 17.5,7.5 - parent: 2 - - uid: 25905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,6.5 - parent: 2 - - uid: 25906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,4.5 - parent: 2 - - uid: 25907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,5.5 - parent: 2 - - uid: 25917 - components: - - type: Transform - pos: 47.5,-44.5 - parent: 2 - - uid: 26180 - components: - - type: Transform - pos: -12.5,34.5 - parent: 2 - - uid: 26199 - components: - - type: Transform - pos: 60.5,-75.5 - parent: 2 - - uid: 26214 - components: - - type: Transform - pos: 60.5,-77.5 - parent: 2 - - uid: 26216 - components: - - type: Transform - pos: 56.5,-77.5 - parent: 2 - - uid: 26244 - components: - - type: Transform - pos: 58.5,-74.5 - parent: 2 - - uid: 26250 - components: - - type: Transform - pos: 60.5,-81.5 - parent: 2 - - uid: 26273 - components: - - type: Transform - pos: 60.5,-74.5 - parent: 2 - - uid: 26274 - components: - - type: Transform - pos: 60.5,-80.5 - parent: 2 - - uid: 26276 - components: - - type: Transform - pos: 56.5,-76.5 - parent: 2 - - uid: 26469 - components: - - type: Transform - pos: 65.5,-73.5 - parent: 2 - - uid: 26470 - components: - - type: Transform - pos: 77.5,-17.5 - parent: 2 - - uid: 26514 - components: - - type: Transform - pos: 48.5,-67.5 - parent: 2 - - uid: 26527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,18.5 - parent: 2 - - uid: 26528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,18.5 - parent: 2 - - uid: 26533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,18.5 - parent: 2 - - uid: 26564 - components: - - type: Transform - pos: 21.5,13.5 - parent: 2 - - uid: 26591 - components: - - type: Transform - pos: 57.5,-74.5 - parent: 2 - - uid: 26602 - components: - - type: Transform - pos: 21.5,15.5 - parent: 2 - - uid: 26661 - components: - - type: Transform - pos: 20.5,37.5 - parent: 2 - - uid: 26664 - components: - - type: Transform - pos: 22.5,39.5 - parent: 2 - - uid: 26672 - components: - - type: Transform - pos: 24.5,39.5 - parent: 2 - - uid: 26686 - components: - - type: Transform - pos: 25.5,39.5 - parent: 2 - - uid: 26690 - components: - - type: Transform - pos: 25.5,38.5 - parent: 2 - - uid: 26835 - components: - - type: Transform - pos: 59.5,-76.5 - parent: 2 - - uid: 26842 - components: - - type: Transform - pos: 58.5,-76.5 - parent: 2 - - uid: 26851 - components: - - type: Transform - pos: 57.5,-76.5 - parent: 2 - - uid: 27075 - components: - - type: Transform - pos: 21.5,14.5 - parent: 2 - - uid: 27077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-4.5 - parent: 2 - - uid: 27107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,16.5 - parent: 2 - - uid: 27108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,14.5 - parent: 2 - - uid: 27113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,17.5 - parent: 2 - - uid: 27114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,15.5 - parent: 2 - - uid: 27115 - components: - - type: Transform - pos: 50.5,1.5 - parent: 2 - - uid: 27116 - components: - - type: Transform - pos: 50.5,-5.5 - parent: 2 - - uid: 27117 - components: - - type: Transform - pos: 50.5,-0.5 - parent: 2 - - uid: 27118 - components: - - type: Transform - pos: 50.5,-1.5 - parent: 2 - - uid: 27119 - components: - - type: Transform - pos: 50.5,-2.5 - parent: 2 - - uid: 27120 - components: - - type: Transform - pos: 50.5,-3.5 - parent: 2 - - uid: 27121 - components: - - type: Transform - pos: 50.5,-4.5 - parent: 2 - - uid: 27122 - components: - - type: Transform - pos: 50.5,-6.5 - parent: 2 - - uid: 27123 - components: - - type: Transform - pos: 50.5,-7.5 - parent: 2 - - uid: 27124 - components: - - type: Transform - pos: 52.5,-7.5 - parent: 2 - - uid: 27125 - components: - - type: Transform - pos: 52.5,-6.5 - parent: 2 - - uid: 27126 - components: - - type: Transform - pos: 52.5,-5.5 - parent: 2 - - uid: 27127 - components: - - type: Transform - pos: 52.5,-4.5 - parent: 2 - - uid: 27128 - components: - - type: Transform - pos: 52.5,-3.5 - parent: 2 - - uid: 27129 - components: - - type: Transform - pos: 52.5,-2.5 - parent: 2 - - uid: 27130 - components: - - type: Transform - pos: 52.5,-1.5 - parent: 2 - - uid: 27131 - components: - - type: Transform - pos: 52.5,-0.5 - parent: 2 - - uid: 27132 - components: - - type: Transform - pos: 52.5,2.5 - parent: 2 - - uid: 27133 - components: - - type: Transform - pos: 52.5,0.5 - parent: 2 - - uid: 27134 - components: - - type: Transform - pos: 52.5,1.5 - parent: 2 - - uid: 27135 - components: - - type: Transform - pos: -62.5,7.5 - parent: 2 - - uid: 27138 - components: - - type: Transform - pos: 53.5,-50.5 - parent: 2 - - uid: 27141 - components: - - type: Transform - pos: -37.5,9.5 - parent: 2 - - uid: 27142 - components: - - type: Transform - pos: -44.5,22.5 - parent: 2 - - uid: 27143 - components: - - type: Transform - pos: 17.5,-30.5 - parent: 2 - - uid: 27144 - components: - - type: Transform - pos: -44.5,13.5 - parent: 2 - - uid: 27146 - components: - - type: Transform - pos: -45.5,13.5 - parent: 2 - - uid: 27147 - components: - - type: Transform - pos: -39.5,22.5 - parent: 2 - - uid: 27148 - components: - - type: Transform - pos: -51.5,16.5 - parent: 2 - - uid: 27149 - components: - - type: Transform - pos: -49.5,15.5 - parent: 2 - - uid: 27151 - components: - - type: Transform - pos: -49.5,14.5 - parent: 2 - - uid: 27153 - components: - - type: Transform - pos: -45.5,16.5 - parent: 2 - - uid: 27157 - components: - - type: Transform - pos: -45.5,15.5 - parent: 2 - - uid: 27159 - components: - - type: Transform - pos: -45.5,14.5 - parent: 2 - - uid: 27160 - components: - - type: Transform - pos: -37.5,11.5 - parent: 2 - - uid: 27161 - components: - - type: Transform - pos: -38.5,11.5 - parent: 2 - - uid: 27163 - components: - - type: Transform - pos: -39.5,8.5 - parent: 2 - - uid: 27164 - components: - - type: Transform - pos: -39.5,9.5 - parent: 2 - - uid: 27169 - components: - - type: Transform - pos: -41.5,8.5 - parent: 2 - - uid: 27170 - components: - - type: Transform - pos: -40.5,8.5 - parent: 2 - - uid: 27172 - components: - - type: Transform - pos: -50.5,12.5 - parent: 2 - - uid: 27173 - components: - - type: Transform - pos: -50.5,16.5 - parent: 2 - - uid: 27174 - components: - - type: Transform - pos: -37.5,6.5 - parent: 2 - - uid: 27175 - components: - - type: Transform - pos: -38.5,6.5 - parent: 2 - - uid: 27176 - components: - - type: Transform - pos: -39.5,6.5 - parent: 2 - - uid: 27177 - components: - - type: Transform - pos: -40.5,6.5 - parent: 2 - - uid: 27178 - components: - - type: Transform - pos: -41.5,6.5 - parent: 2 - - uid: 27179 - components: - - type: Transform - pos: -42.5,6.5 - parent: 2 - - uid: 27180 - components: - - type: Transform - pos: -43.5,6.5 - parent: 2 - - uid: 27181 - components: - - type: Transform - pos: -44.5,6.5 - parent: 2 - - uid: 27182 - components: - - type: Transform - pos: -46.5,6.5 - parent: 2 - - uid: 27183 - components: - - type: Transform - pos: -47.5,6.5 - parent: 2 - - uid: 27184 - components: - - type: Transform - pos: -47.5,4.5 - parent: 2 - - uid: 27185 - components: - - type: Transform - pos: -60.5,10.5 - parent: 2 - - uid: 27187 - components: - - type: Transform - pos: -55.5,9.5 - parent: 2 - - uid: 27188 - components: - - type: Transform - pos: -58.5,9.5 - parent: 2 - - uid: 27189 - components: - - type: Transform - pos: -56.5,9.5 - parent: 2 - - uid: 27190 - components: - - type: Transform - pos: -57.5,9.5 - parent: 2 - - uid: 27191 - components: - - type: Transform - pos: -60.5,9.5 - parent: 2 - - uid: 27193 - components: - - type: Transform - pos: -64.5,13.5 - parent: 2 - - uid: 27194 - components: - - type: Transform - pos: -64.5,12.5 - parent: 2 - - uid: 27195 - components: - - type: Transform - pos: -64.5,11.5 - parent: 2 - - uid: 27196 - components: - - type: Transform - pos: -50.5,0.5 - parent: 2 - - uid: 27197 - components: - - type: Transform - pos: -62.5,11.5 - parent: 2 - - uid: 27198 - components: - - type: Transform - pos: -60.5,12.5 - parent: 2 - - uid: 27199 - components: - - type: Transform - pos: -60.5,11.5 - parent: 2 - - uid: 27201 - components: - - type: Transform - pos: 74.5,8.5 - parent: 2 - - uid: 27203 - components: - - type: Transform - pos: -59.5,9.5 - parent: 2 - - uid: 27204 - components: - - type: Transform - pos: -55.5,8.5 - parent: 2 - - uid: 27205 - components: - - type: Transform - pos: -56.5,-2.5 - parent: 2 - - uid: 27207 - components: - - type: Transform - pos: -62.5,8.5 - parent: 2 - - uid: 27208 - components: - - type: Transform - pos: -62.5,9.5 - parent: 2 - - uid: 27209 - components: - - type: Transform - pos: -62.5,10.5 - parent: 2 - - uid: 27210 - components: - - type: Transform - pos: -65.5,11.5 - parent: 2 - - uid: 27215 - components: - - type: Transform - pos: -56.5,-0.5 - parent: 2 - - uid: 27221 - components: - - type: Transform - pos: -56.5,-1.5 - parent: 2 - - uid: 27222 - components: - - type: Transform - pos: -56.5,-3.5 - parent: 2 - - uid: 27228 - components: - - type: Transform - pos: -60.5,13.5 - parent: 2 - - uid: 27229 - components: - - type: Transform - pos: -52.5,2.5 - parent: 2 - - uid: 27230 - components: - - type: Transform - pos: -54.5,2.5 - parent: 2 - - uid: 27232 - components: - - type: Transform - pos: -47.5,1.5 - parent: 2 - - uid: 27233 - components: - - type: Transform - pos: -47.5,5.5 - parent: 2 - - uid: 27234 - components: - - type: Transform - pos: -47.5,3.5 - parent: 2 - - uid: 27235 - components: - - type: Transform - pos: -47.5,2.5 - parent: 2 - - uid: 27236 - components: - - type: Transform - pos: -52.5,0.5 - parent: 2 - - uid: 27237 - components: - - type: Transform - pos: -53.5,2.5 - parent: 2 - - uid: 27239 - components: - - type: Transform - pos: -43.5,0.5 - parent: 2 - - uid: 27240 - components: - - type: Transform - pos: -42.5,0.5 - parent: 2 - - uid: 27241 - components: - - type: Transform - pos: -41.5,0.5 - parent: 2 - - uid: 27242 - components: - - type: Transform - pos: -47.5,0.5 - parent: 2 - - uid: 27243 - components: - - type: Transform - pos: -52.5,1.5 - parent: 2 - - uid: 27244 - components: - - type: Transform - pos: -40.5,0.5 - parent: 2 - - uid: 27245 - components: - - type: Transform - pos: -24.5,0.5 - parent: 2 - - uid: 27246 - components: - - type: Transform - pos: -23.5,0.5 - parent: 2 - - uid: 27247 - components: - - type: Transform - pos: 50.5,11.5 - parent: 2 - - uid: 27256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,24.5 - parent: 2 - - uid: 27257 - components: - - type: Transform - pos: 53.5,-25.5 - parent: 2 - - uid: 27258 - components: - - type: Transform - pos: 34.5,2.5 - parent: 2 - - uid: 27259 - components: - - type: Transform - pos: 34.5,1.5 - parent: 2 - - uid: 27260 - components: - - type: Transform - pos: 35.5,1.5 - parent: 2 - - uid: 27261 - components: - - type: Transform - pos: 34.5,-0.5 - parent: 2 - - uid: 27262 - components: - - type: Transform - pos: 34.5,-1.5 - parent: 2 - - uid: 27263 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 2 - - uid: 27264 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 2 - - uid: 27265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-30.5 - parent: 2 - - uid: 27266 - components: - - type: Transform - pos: 33.5,-3.5 - parent: 2 - - uid: 27267 - components: - - type: Transform - pos: 37.5,1.5 - parent: 2 - - uid: 27268 - components: - - type: Transform - pos: 39.5,1.5 - parent: 2 - - uid: 27269 - components: - - type: Transform - pos: 41.5,1.5 - parent: 2 - - uid: 27270 - components: - - type: Transform - pos: 42.5,1.5 - parent: 2 - - uid: 27271 - components: - - type: Transform - pos: 44.5,1.5 - parent: 2 - - uid: 27272 - components: - - type: Transform - pos: 45.5,1.5 - parent: 2 - - uid: 27273 - components: - - type: Transform - pos: 47.5,1.5 - parent: 2 - - uid: 27274 - components: - - type: Transform - pos: 47.5,7.5 - parent: 2 - - uid: 27275 - components: - - type: Transform - pos: 47.5,8.5 - parent: 2 - - uid: 27276 - components: - - type: Transform - pos: 47.5,9.5 - parent: 2 - - uid: 27277 - components: - - type: Transform - pos: 48.5,9.5 - parent: 2 - - uid: 27278 - components: - - type: Transform - pos: 50.5,7.5 - parent: 2 - - uid: 27279 - components: - - type: Transform - pos: 50.5,8.5 - parent: 2 - - uid: 27280 - components: - - type: Transform - pos: 50.5,9.5 - parent: 2 - - uid: 27281 - components: - - type: Transform - pos: 51.5,6.5 - parent: 2 - - uid: 27282 - components: - - type: Transform - pos: 52.5,6.5 - parent: 2 - - uid: 27283 - components: - - type: Transform - pos: 53.5,6.5 - parent: 2 - - uid: 27284 - components: - - type: Transform - pos: 53.5,7.5 - parent: 2 - - uid: 27285 - components: - - type: Transform - pos: 53.5,9.5 - parent: 2 - - uid: 27286 - components: - - type: Transform - pos: 51.5,9.5 - parent: 2 - - uid: 27287 - components: - - type: Transform - pos: 50.5,2.5 - parent: 2 - - uid: 27288 - components: - - type: Transform - pos: 53.5,12.5 - parent: 2 - - uid: 27289 - components: - - type: Transform - pos: 64.5,11.5 - parent: 2 - - uid: 27290 - components: - - type: Transform - pos: 61.5,10.5 - parent: 2 - - uid: 27291 - components: - - type: Transform - pos: 63.5,10.5 - parent: 2 - - uid: 27293 - components: - - type: Transform - pos: 56.5,11.5 - parent: 2 - - uid: 27294 - components: - - type: Transform - pos: 54.5,11.5 - parent: 2 - - uid: 27295 - components: - - type: Transform - pos: 64.5,10.5 - parent: 2 - - uid: 27296 - components: - - type: Transform - pos: 58.5,9.5 - parent: 2 - - uid: 27297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,5.5 - parent: 2 - - uid: 27298 - components: - - type: Transform - pos: 70.5,15.5 - parent: 2 - - uid: 27299 - components: - - type: Transform - pos: 64.5,12.5 - parent: 2 - - uid: 27300 - components: - - type: Transform - pos: 67.5,13.5 - parent: 2 - - uid: 27301 - components: - - type: Transform - pos: 58.5,11.5 - parent: 2 - - uid: 27302 - components: - - type: Transform - pos: 59.5,9.5 - parent: 2 - - uid: 27303 - components: - - type: Transform - pos: 55.5,11.5 - parent: 2 - - uid: 27304 - components: - - type: Transform - pos: 56.5,-53.5 - parent: 2 - - uid: 27305 - components: - - type: Transform - pos: 63.5,18.5 - parent: 2 - - uid: 27306 - components: - - type: Transform - pos: 59.5,16.5 - parent: 2 - - uid: 27307 - components: - - type: Transform - pos: 59.5,15.5 - parent: 2 - - uid: 27308 - components: - - type: Transform - pos: 54.5,15.5 - parent: 2 - - uid: 27309 - components: - - type: Transform - pos: 63.5,19.5 - parent: 2 - - uid: 27310 - components: - - type: Transform - pos: 64.5,15.5 - parent: 2 - - uid: 27311 - components: - - type: Transform - pos: 59.5,18.5 - parent: 2 - - uid: 27312 - components: - - type: Transform - pos: 68.5,15.5 - parent: 2 - - uid: 27313 - components: - - type: Transform - pos: 69.5,15.5 - parent: 2 - - uid: 27314 - components: - - type: Transform - pos: 66.5,15.5 - parent: 2 - - uid: 27315 - components: - - type: Transform - pos: 63.5,15.5 - parent: 2 - - uid: 27316 - components: - - type: Transform - pos: 59.5,17.5 - parent: 2 - - uid: 27317 - components: - - type: Transform - pos: 62.5,15.5 - parent: 2 - - uid: 27318 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - - uid: 27319 - components: - - type: Transform - pos: 66.5,7.5 - parent: 2 - - uid: 27320 - components: - - type: Transform - pos: 65.5,8.5 - parent: 2 - - uid: 27321 - components: - - type: Transform - pos: 79.5,11.5 - parent: 2 - - uid: 27322 - components: - - type: Transform - pos: 80.5,11.5 - parent: 2 - - uid: 27323 - components: - - type: Transform - pos: 81.5,11.5 - parent: 2 - - uid: 27324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-1.5 - parent: 2 - - uid: 27325 - components: - - type: Transform - pos: 75.5,-0.5 - parent: 2 - - uid: 27326 - components: - - type: Transform - pos: 74.5,6.5 - parent: 2 - - uid: 27327 - components: - - type: Transform - pos: 73.5,6.5 - parent: 2 - - uid: 27328 - components: - - type: Transform - pos: 67.5,15.5 - parent: 2 - - uid: 27329 - components: - - type: Transform - pos: 59.5,14.5 - parent: 2 - - uid: 27330 - components: - - type: Transform - pos: 54.5,14.5 - parent: 2 - - uid: 27331 - components: - - type: Transform - pos: 54.5,16.5 - parent: 2 - - uid: 27332 - components: - - type: Transform - pos: 61.5,11.5 - parent: 2 - - uid: 27333 - components: - - type: Transform - pos: 59.5,7.5 - parent: 2 - - uid: 27334 - components: - - type: Transform - pos: 59.5,8.5 - parent: 2 - - uid: 27335 - components: - - type: Transform - pos: 58.5,6.5 - parent: 2 - - uid: 27336 - components: - - type: Transform - pos: 57.5,6.5 - parent: 2 - - uid: 27337 - components: - - type: Transform - pos: 56.5,6.5 - parent: 2 - - uid: 27338 - components: - - type: Transform - pos: 56.5,7.5 - parent: 2 - - uid: 27339 - components: - - type: Transform - pos: 56.5,8.5 - parent: 2 - - uid: 27340 - components: - - type: Transform - pos: 64.5,13.5 - parent: 2 - - uid: 27341 - components: - - type: Transform - pos: 63.5,13.5 - parent: 2 - - uid: 27343 - components: - - type: Transform - pos: 68.5,4.5 - parent: 2 - - uid: 27344 - components: - - type: Transform - pos: 67.5,4.5 - parent: 2 - - uid: 27345 - components: - - type: Transform - pos: 66.5,4.5 - parent: 2 - - uid: 27346 - components: - - type: Transform - pos: 65.5,4.5 - parent: 2 - - uid: 27347 - components: - - type: Transform - pos: 64.5,4.5 - parent: 2 - - uid: 27348 - components: - - type: Transform - pos: 63.5,4.5 - parent: 2 - - uid: 27349 - components: - - type: Transform - pos: 62.5,3.5 - parent: 2 - - uid: 27350 - components: - - type: Transform - pos: 60.5,3.5 - parent: 2 - - uid: 27351 - components: - - type: Transform - pos: 59.5,3.5 - parent: 2 - - uid: 27352 - components: - - type: Transform - pos: 59.5,4.5 - parent: 2 - - uid: 27353 - components: - - type: Transform - pos: 58.5,4.5 - parent: 2 - - uid: 27354 - components: - - type: Transform - pos: 57.5,4.5 - parent: 2 - - uid: 27355 - components: - - type: Transform - pos: 56.5,4.5 - parent: 2 - - uid: 27356 - components: - - type: Transform - pos: 55.5,4.5 - parent: 2 - - uid: 27357 - components: - - type: Transform - pos: 53.5,3.5 - parent: 2 - - uid: 27358 - components: - - type: Transform - pos: 55.5,3.5 - parent: 2 - - uid: 27359 - components: - - type: Transform - pos: 52.5,3.5 - parent: 2 - - uid: 27360 - components: - - type: Transform - pos: 24.5,1.5 - parent: 2 - - uid: 27361 - components: - - type: Transform - pos: 61.5,12.5 - parent: 2 - - uid: 27362 - components: - - type: Transform - pos: -76.5,-16.5 - parent: 2 - - uid: 27363 - components: - - type: Transform - pos: -69.5,-15.5 - parent: 2 - - uid: 27364 - components: - - type: Transform - pos: -74.5,-15.5 - parent: 2 - - uid: 27365 - components: - - type: Transform - pos: -65.5,-12.5 - parent: 2 - - uid: 27366 - components: - - type: Transform - pos: -62.5,-15.5 - parent: 2 - - uid: 27367 - components: - - type: Transform - pos: -62.5,-14.5 - parent: 2 - - uid: 27368 - components: - - type: Transform - pos: -62.5,-12.5 - parent: 2 - - uid: 27369 - components: - - type: Transform - pos: -62.5,-11.5 - parent: 2 - - uid: 27370 - components: - - type: Transform - pos: -62.5,-8.5 - parent: 2 - - uid: 27371 - components: - - type: Transform - pos: -62.5,-7.5 - parent: 2 - - uid: 27372 - components: - - type: Transform - pos: -62.5,-6.5 - parent: 2 - - uid: 27373 - components: - - type: Transform - pos: 56.5,-75.5 - parent: 2 - - uid: 27374 - components: - - type: Transform - pos: -65.5,-6.5 - parent: 2 - - uid: 27375 - components: - - type: Transform - pos: -61.5,-6.5 - parent: 2 - - uid: 27376 - components: - - type: Transform - pos: -60.5,-6.5 - parent: 2 - - uid: 27377 - components: - - type: Transform - pos: -59.5,-6.5 - parent: 2 - - uid: 27378 - components: - - type: Transform - pos: -57.5,-6.5 - parent: 2 - - uid: 27379 - components: - - type: Transform - pos: -54.5,-6.5 - parent: 2 - - uid: 27380 - components: - - type: Transform - pos: -53.5,-10.5 - parent: 2 - - uid: 27381 - components: - - type: Transform - pos: -53.5,-11.5 - parent: 2 - - uid: 27382 - components: - - type: Transform - pos: -53.5,-12.5 - parent: 2 - - uid: 27383 - components: - - type: Transform - pos: -53.5,-13.5 - parent: 2 - - uid: 27384 - components: - - type: Transform - pos: -53.5,-14.5 - parent: 2 - - uid: 27385 - components: - - type: Transform - pos: -52.5,-14.5 - parent: 2 - - uid: 27389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-21.5 - parent: 2 - - uid: 27394 - components: - - type: Transform - pos: -61.5,-14.5 - parent: 2 - - uid: 27395 - components: - - type: Transform - pos: -59.5,-14.5 - parent: 2 - - uid: 27396 - components: - - type: Transform - pos: -58.5,-14.5 - parent: 2 - - uid: 27397 - components: - - type: Transform - pos: -57.5,-14.5 - parent: 2 - - uid: 27398 - components: - - type: Transform - pos: -56.5,-14.5 - parent: 2 - - uid: 27399 - components: - - type: Transform - pos: -56.5,-15.5 - parent: 2 - - uid: 27400 - components: - - type: Transform - pos: -56.5,-17.5 - parent: 2 - - uid: 27401 - components: - - type: Transform - pos: -55.5,-17.5 - parent: 2 - - uid: 27402 - components: - - type: Transform - pos: 60.5,-76.5 - parent: 2 - - uid: 27406 - components: - - type: Transform - pos: -49.5,-14.5 - parent: 2 - - uid: 27407 - components: - - type: Transform - pos: -49.5,-15.5 - parent: 2 - - uid: 27409 - components: - - type: Transform - pos: -49.5,-17.5 - parent: 2 - - uid: 27410 - components: - - type: Transform - pos: -48.5,-17.5 - parent: 2 - - uid: 27412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,9.5 - parent: 2 - - uid: 27413 - components: - - type: Transform - pos: -44.5,-17.5 - parent: 2 - - uid: 27414 - components: - - type: Transform - pos: -44.5,-16.5 - parent: 2 - - uid: 27415 - components: - - type: Transform - pos: -44.5,-15.5 - parent: 2 - - uid: 27416 - components: - - type: Transform - pos: -44.5,-14.5 - parent: 2 - - uid: 27417 - components: - - type: Transform - pos: -62.5,-10.5 - parent: 2 - - uid: 27418 - components: - - type: Transform - pos: -54.5,-12.5 - parent: 2 - - uid: 27419 - components: - - type: Transform - pos: -44.5,-11.5 - parent: 2 - - uid: 27420 - components: - - type: Transform - pos: -44.5,-10.5 - parent: 2 - - uid: 27423 - components: - - type: Transform - pos: -61.5,-12.5 - parent: 2 - - uid: 27424 - components: - - type: Transform - pos: -60.5,-12.5 - parent: 2 - - uid: 27427 - components: - - type: Transform - pos: -56.5,-12.5 - parent: 2 - - uid: 27429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-10.5 - parent: 2 - - uid: 27430 - components: - - type: Transform - pos: 2.5,-32.5 - parent: 2 - - uid: 27431 - components: - - type: Transform - pos: 3.5,-32.5 - parent: 2 - - uid: 27432 - components: - - type: Transform - pos: 6.5,-32.5 - parent: 2 - - uid: 27433 - components: - - type: Transform - pos: 7.5,-32.5 - parent: 2 - - uid: 27439 - components: - - type: Transform - pos: -52.5,-18.5 - parent: 2 - - uid: 27440 - components: - - type: Transform - pos: -60.5,-19.5 - parent: 2 - - uid: 27441 - components: - - type: Transform - pos: -60.5,-17.5 - parent: 2 - - uid: 27443 - components: - - type: Transform - pos: -41.5,-19.5 - parent: 2 - - uid: 27449 - components: - - type: Transform - pos: -40.5,-14.5 - parent: 2 - - uid: 27450 - components: - - type: Transform - pos: -39.5,-14.5 - parent: 2 - - uid: 27452 - components: - - type: Transform - pos: -38.5,-14.5 - parent: 2 - - uid: 27454 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 2 - - uid: 27455 - components: - - type: Transform - pos: -33.5,-7.5 - parent: 2 - - uid: 27456 - components: - - type: Transform - pos: -34.5,-7.5 - parent: 2 - - uid: 27457 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 2 - - uid: 27458 + - uid: 1027 components: - type: Transform pos: -35.5,-12.5 parent: 2 - - uid: 27459 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1126 components: - type: Transform - pos: -35.5,-11.5 - parent: 2 - - uid: 27460 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 2 - - uid: 27461 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 2 - - uid: 27462 - components: - - type: Transform - pos: -35.5,-8.5 - parent: 2 - - uid: 27463 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 2 - - uid: 27464 - components: - - type: Transform - pos: -35.5,-6.5 - parent: 2 - - uid: 27465 - components: - - type: Transform - pos: -35.5,-5.5 - parent: 2 - - uid: 27466 - components: - - type: Transform - pos: -35.5,-4.5 - parent: 2 - - uid: 27467 - components: - - type: Transform - pos: -35.5,-3.5 - parent: 2 - - uid: 27468 - components: - - type: Transform - pos: -36.5,-3.5 - parent: 2 - - uid: 27470 - components: - - type: Transform - pos: -38.5,-3.5 - parent: 2 - - uid: 27471 - components: - - type: Transform - pos: -39.5,-3.5 - parent: 2 - - uid: 27472 - components: - - type: Transform - pos: -40.5,-3.5 - parent: 2 - - uid: 27473 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 2 - - uid: 27474 - components: - - type: Transform - pos: -31.5,-7.5 - parent: 2 - - uid: 27475 - components: - - type: Transform - pos: -31.5,-6.5 - parent: 2 - - uid: 27476 - components: - - type: Transform - pos: -31.5,-5.5 - parent: 2 - - uid: 27477 - components: - - type: Transform - pos: -31.5,-4.5 - parent: 2 - - uid: 27478 - components: - - type: Transform - pos: -31.5,-3.5 - parent: 2 - - uid: 27482 - components: - - type: Transform - pos: -29.5,-4.5 - parent: 2 - - uid: 27483 - components: - - type: Transform - pos: -29.5,-5.5 - parent: 2 - - uid: 27484 - components: - - type: Transform - pos: -29.5,-6.5 - parent: 2 - - uid: 27485 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 2 - - uid: 27487 - components: - - type: Transform - pos: -19.5,-3.5 - parent: 2 - - uid: 27488 - components: - - type: Transform - pos: -19.5,-4.5 - parent: 2 - - uid: 27489 - components: - - type: Transform - pos: -20.5,-4.5 - parent: 2 - - uid: 27490 - components: - - type: Transform - pos: -22.5,-4.5 - parent: 2 - - uid: 27491 - components: - - type: Transform - pos: -24.5,-4.5 - parent: 2 - - uid: 27492 - components: - - type: Transform - pos: -23.5,-4.5 - parent: 2 - - uid: 27495 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 2 - - uid: 27496 - components: - - type: Transform - pos: -24.5,-6.5 - parent: 2 - - uid: 27497 - components: - - type: Transform - pos: -24.5,-7.5 - parent: 2 - - uid: 27498 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 2 - - uid: 27499 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 2 - - uid: 27500 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 2 - - uid: 27501 - components: - - type: Transform - pos: -19.5,-8.5 - parent: 2 - - uid: 27502 - components: - - type: Transform - pos: -20.5,-8.5 - parent: 2 - - uid: 27503 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 2 - - uid: 27504 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 2 - - uid: 27505 - components: - - type: Transform - pos: -23.5,-8.5 - parent: 2 - - uid: 27506 - components: - - type: Transform - pos: -24.5,-8.5 - parent: 2 - - uid: 27507 - components: - - type: Transform - pos: -25.5,-8.5 - parent: 2 - - uid: 27508 - components: - - type: Transform - pos: -25.5,-9.5 - parent: 2 - - uid: 27509 - components: - - type: Transform - pos: -25.5,-10.5 - parent: 2 - - uid: 27510 - components: - - type: Transform - pos: -25.5,-11.5 - parent: 2 - - uid: 27511 - components: - - type: Transform - pos: -25.5,-13.5 - parent: 2 - - uid: 27512 - components: - - type: Transform - pos: -25.5,-14.5 - parent: 2 - - uid: 27513 - components: - - type: Transform - pos: -19.5,-10.5 - parent: 2 - - uid: 27514 - components: - - type: Transform - pos: -24.5,-14.5 - parent: 2 - - uid: 27515 - components: - - type: Transform - pos: -23.5,-14.5 - parent: 2 - - uid: 27516 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 2 - - uid: 27517 - components: - - type: Transform - pos: -21.5,-14.5 - parent: 2 - - uid: 27518 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 2 - - uid: 27519 - components: - - type: Transform - pos: -19.5,-14.5 - parent: 2 - - uid: 27520 - components: - - type: Transform - pos: -19.5,-13.5 - parent: 2 - - uid: 27521 - components: - - type: Transform - pos: -27.5,-14.5 - parent: 2 - - uid: 27522 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 2 - - uid: 27523 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 2 - - uid: 27524 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 2 - - uid: 27525 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 2 - - uid: 27526 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 2 - - uid: 27527 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 2 - - uid: 27528 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 2 - - uid: 27529 - components: - - type: Transform - pos: -31.5,-9.5 - parent: 2 - - uid: 27530 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 2 - - uid: 27531 - components: - - type: Transform - pos: -33.5,-9.5 - parent: 2 - - uid: 27532 - components: - - type: Transform - pos: -33.5,-10.5 - parent: 2 - - uid: 27533 - components: - - type: Transform - pos: -33.5,-11.5 - parent: 2 - - uid: 27534 - components: - - type: Transform - pos: -33.5,-12.5 - parent: 2 - - uid: 27535 - components: - - type: Transform - pos: -33.5,-13.5 - parent: 2 - - uid: 27536 - components: - - type: Transform - pos: -33.5,-14.5 - parent: 2 - - uid: 27537 - components: - - type: Transform - pos: -33.5,-15.5 - parent: 2 - - uid: 27538 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 2 - - uid: 27539 - components: - - type: Transform - pos: -33.5,-17.5 - parent: 2 - - uid: 27540 - components: - - type: Transform - pos: -32.5,-17.5 - parent: 2 - - uid: 27541 - components: - - type: Transform - pos: -29.5,-17.5 - parent: 2 - - uid: 27542 - components: - - type: Transform - pos: -30.5,-17.5 - parent: 2 - - uid: 27543 - components: - - type: Transform - pos: -28.5,-17.5 - parent: 2 - - uid: 27544 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 2 - - uid: 27545 - components: - - type: Transform - pos: -28.5,-15.5 - parent: 2 - - uid: 27547 - components: - - type: Transform - pos: -40.5,-19.5 - parent: 2 - - uid: 27548 - components: - - type: Transform - pos: -38.5,-19.5 - parent: 2 - - uid: 27549 - components: - - type: Transform - pos: -44.5,-13.5 - parent: 2 - - uid: 27552 - components: - - type: Transform - pos: -36.5,-17.5 - parent: 2 - - uid: 27553 - components: - - type: Transform - pos: -35.5,-17.5 - parent: 2 - - uid: 27554 - components: - - type: Transform - pos: -34.5,-17.5 - parent: 2 - - uid: 27555 - components: - - type: Transform - pos: -40.5,-17.5 - parent: 2 - - uid: 27556 - components: - - type: Transform - pos: -28.5,-18.5 - parent: 2 - - uid: 27557 - components: - - type: Transform - pos: -27.5,-18.5 - parent: 2 - - uid: 27561 - components: - - type: Transform - pos: -19.5,-20.5 - parent: 2 - - uid: 27562 - components: - - type: Transform - pos: -20.5,-20.5 - parent: 2 - - uid: 27563 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 2 - - uid: 27564 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 2 - - uid: 27565 - components: - - type: Transform - pos: -29.5,-18.5 - parent: 2 - - uid: 27566 - components: - - type: Transform - pos: -28.5,-28.5 - parent: 2 - - uid: 27567 - components: - - type: Transform - pos: 50.5,12.5 - parent: 2 - - uid: 27568 - components: - - type: Transform - pos: 51.5,12.5 - parent: 2 - - uid: 27569 - components: - - type: Transform - pos: 52.5,12.5 - parent: 2 - - uid: 27575 - components: - - type: Transform - pos: -16.5,-46.5 - parent: 2 - - uid: 27583 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 2 - - uid: 27584 - components: - - type: Transform - pos: -2.5,-45.5 - parent: 2 - - uid: 27585 - components: - - type: Transform - pos: -2.5,-46.5 - parent: 2 - - uid: 27586 - components: - - type: Transform - pos: -2.5,-42.5 - parent: 2 - - uid: 27587 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 2 - - uid: 27588 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 2 - - uid: 27589 - components: - - type: Transform - pos: -2.5,-39.5 - parent: 2 - - uid: 27590 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 2 - - uid: 27591 - components: - - type: Transform - pos: -2.5,-37.5 - parent: 2 - - uid: 27592 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 2 - - uid: 27593 - components: - - type: Transform - pos: -2.5,-34.5 - parent: 2 - - uid: 27594 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 2 - - uid: 27596 - components: - - type: Transform - pos: 47.5,12.5 - parent: 2 - - uid: 27598 - components: - - type: Transform - pos: 91.5,-24.5 - parent: 2 - - uid: 27599 - components: - - type: Transform - pos: 43.5,-21.5 - parent: 2 - - uid: 27600 - components: - - type: Transform - pos: 48.5,-25.5 - parent: 2 - - uid: 27601 - components: - - type: Transform - pos: 17.5,-26.5 - parent: 2 - - uid: 27602 - components: - - type: Transform - pos: 80.5,15.5 - parent: 2 - - uid: 27603 - components: - - type: Transform - pos: 44.5,-21.5 - parent: 2 - - uid: 27604 - components: - - type: Transform - pos: 51.5,-15.5 - parent: 2 - - uid: 27606 - components: - - type: Transform - pos: 50.5,-15.5 - parent: 2 - - uid: 27609 - components: - - type: Transform - pos: 42.5,-15.5 - parent: 2 - - uid: 27610 - components: - - type: Transform - pos: 43.5,-15.5 - parent: 2 - - uid: 27611 - components: - - type: Transform - pos: 17.5,-35.5 - parent: 2 - - uid: 27612 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 2 - - uid: 27613 - components: - - type: Transform - pos: 48.5,-15.5 - parent: 2 - - uid: 27614 - components: - - type: Transform - pos: 40.5,-21.5 - parent: 2 - - uid: 27615 - components: - - type: Transform - pos: 46.5,-21.5 - parent: 2 - - uid: 27616 - components: - - type: Transform - pos: 47.5,-21.5 - parent: 2 - - uid: 27617 - components: - - type: Transform - pos: 42.5,-21.5 - parent: 2 - - uid: 27618 - components: - - type: Transform - pos: 23.5,-27.5 - parent: 2 - - uid: 27619 - components: - - type: Transform - pos: 23.5,-26.5 - parent: 2 - - uid: 27620 - components: - - type: Transform - pos: 23.5,-29.5 - parent: 2 - - uid: 27621 - components: - - type: Transform - pos: 23.5,-31.5 - parent: 2 - - uid: 27622 - components: - - type: Transform - pos: 23.5,-30.5 - parent: 2 - - uid: 27623 - components: - - type: Transform - pos: 23.5,-32.5 - parent: 2 - - uid: 27624 - components: - - type: Transform - pos: 23.5,-36.5 - parent: 2 - - uid: 27625 - components: - - type: Transform - pos: 23.5,-33.5 - parent: 2 - - uid: 27626 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 2 - - uid: 27627 - components: - - type: Transform - pos: -44.5,21.5 - parent: 2 - - uid: 27628 - components: - - type: Transform - pos: 27.5,-22.5 - parent: 2 - - uid: 27629 - components: - - type: Transform - pos: 27.5,-21.5 - parent: 2 - - uid: 27630 - components: - - type: Transform - pos: 33.5,-21.5 - parent: 2 - - uid: 27631 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 2 - - uid: 27632 - components: - - type: Transform - pos: 18.5,-37.5 - parent: 2 - - uid: 27633 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 2 - - uid: 27634 - components: - - type: Transform - pos: 21.5,-37.5 - parent: 2 - - uid: 27635 - components: - - type: Transform - pos: 22.5,-37.5 - parent: 2 - - uid: 27636 - components: - - type: Transform - pos: 23.5,-37.5 - parent: 2 - - uid: 27637 - components: - - type: Transform - pos: 24.5,-37.5 - parent: 2 - - uid: 27638 - components: - - type: Transform - pos: 26.5,-37.5 - parent: 2 - - uid: 27639 - components: - - type: Transform - pos: 27.5,-37.5 - parent: 2 - - uid: 27640 - components: - - type: Transform - pos: 28.5,-37.5 - parent: 2 - - uid: 27641 - components: - - type: Transform - pos: 29.5,-37.5 - parent: 2 - - uid: 27642 - components: - - type: Transform - pos: 30.5,-37.5 - parent: 2 - - uid: 27643 - components: - - type: Transform - pos: 31.5,-37.5 - parent: 2 - - uid: 27644 - components: - - type: Transform - pos: 32.5,-37.5 - parent: 2 - - uid: 27645 - components: - - type: Transform - pos: 31.5,-15.5 - parent: 2 - - uid: 27646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-18.5 - parent: 2 - - uid: 27647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-20.5 - parent: 2 - - uid: 27652 - components: - - type: Transform - pos: 33.5,-46.5 - parent: 2 - - uid: 27653 - components: - - type: Transform - pos: 33.5,-45.5 - parent: 2 - - uid: 27654 - components: - - type: Transform - pos: 33.5,-49.5 - parent: 2 - - uid: 27655 - components: - - type: Transform - pos: 39.5,-50.5 - parent: 2 - - uid: 27656 - components: - - type: Transform - pos: 33.5,-48.5 - parent: 2 - - uid: 27657 - components: - - type: Transform - pos: 41.5,-50.5 - parent: 2 - - uid: 27658 - components: - - type: Transform - pos: 48.5,-48.5 - parent: 2 - - uid: 27659 - components: - - type: Transform - pos: 47.5,-30.5 - parent: 2 - - uid: 27660 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 2 - - uid: 27661 - components: - - type: Transform - pos: 48.5,-30.5 - parent: 2 - - uid: 27662 - components: - - type: Transform - pos: 48.5,-31.5 - parent: 2 - - uid: 27663 - components: - - type: Transform - pos: 37.5,-54.5 - parent: 2 - - uid: 27664 - components: - - type: Transform - pos: 67.5,-58.5 - parent: 2 - - uid: 27665 - components: - - type: Transform - pos: 50.5,-43.5 - parent: 2 - - uid: 27666 - components: - - type: Transform - pos: 50.5,-44.5 - parent: 2 - - uid: 27667 - components: - - type: Transform - pos: 50.5,-45.5 - parent: 2 - - uid: 27668 - components: - - type: Transform - pos: 50.5,-39.5 - parent: 2 - - uid: 27669 - components: - - type: Transform - pos: 50.5,-38.5 - parent: 2 - - uid: 27670 - components: - - type: Transform - pos: 43.5,-36.5 - parent: 2 - - uid: 27671 - components: - - type: Transform - pos: 50.5,-32.5 - parent: 2 - - uid: 27672 - components: - - type: Transform - pos: 50.5,-41.5 - parent: 2 - - uid: 27673 - components: - - type: Transform - pos: 50.5,-21.5 - parent: 2 - - uid: 27674 - components: - - type: Transform - pos: 50.5,-22.5 - parent: 2 - - uid: 27675 - components: - - type: Transform - pos: 50.5,-23.5 - parent: 2 - - uid: 27676 - components: - - type: Transform - pos: 50.5,-24.5 - parent: 2 - - uid: 27677 - components: - - type: Transform - pos: 50.5,-25.5 - parent: 2 - - uid: 27678 - components: - - type: Transform - pos: 51.5,-25.5 - parent: 2 - - uid: 27679 - components: - - type: Transform - pos: 51.5,-26.5 - parent: 2 - - uid: 27680 - components: - - type: Transform - pos: 39.5,14.5 - parent: 2 - - uid: 27681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,7.5 - parent: 2 - - uid: 27682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,7.5 - parent: 2 - - uid: 27683 - components: - - type: Transform - pos: 30.5,1.5 - parent: 2 - - uid: 27684 - components: - - type: Transform - pos: 27.5,1.5 - parent: 2 - - uid: 27685 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 2 - - uid: 27686 - components: - - type: Transform - pos: 53.5,-38.5 - parent: 2 - - uid: 27687 - components: - - type: Transform - pos: 54.5,-50.5 - parent: 2 - - uid: 27691 - components: - - type: Transform - pos: 71.5,-53.5 - parent: 2 - - uid: 27692 - components: - - type: Transform - pos: 67.5,-55.5 - parent: 2 - - uid: 27693 - components: - - type: Transform - pos: 67.5,-57.5 - parent: 2 - - uid: 27694 - components: - - type: Transform - pos: 69.5,-47.5 - parent: 2 - - uid: 27696 - components: - - type: Transform - pos: 68.5,-22.5 - parent: 2 - - uid: 27716 - components: - - type: Transform - pos: 86.5,-39.5 - parent: 2 - - uid: 27717 - components: - - type: Transform - pos: 85.5,-39.5 - parent: 2 - - uid: 27718 - components: - - type: Transform - pos: 84.5,-39.5 - parent: 2 - - uid: 27719 - components: - - type: Transform - pos: 83.5,-39.5 - parent: 2 - - uid: 27720 - components: - - type: Transform - pos: 83.5,-38.5 - parent: 2 - - uid: 27721 - components: - - type: Transform - pos: 83.5,-37.5 - parent: 2 - - uid: 27722 - components: - - type: Transform - pos: 82.5,-38.5 - parent: 2 - - uid: 27723 - components: - - type: Transform - pos: 83.5,-35.5 - parent: 2 - - uid: 27725 - components: - - type: Transform - pos: 83.5,-34.5 - parent: 2 - - uid: 27726 - components: - - type: Transform - pos: 82.5,-34.5 - parent: 2 - - uid: 27728 - components: - - type: Transform - pos: 85.5,-34.5 - parent: 2 - - uid: 27729 - components: - - type: Transform - pos: 84.5,-34.5 - parent: 2 - - uid: 27730 - components: - - type: Transform - pos: 86.5,-33.5 - parent: 2 - - uid: 27731 - components: - - type: Transform - pos: 85.5,-33.5 - parent: 2 - - uid: 27732 - components: - - type: Transform - pos: 87.5,-31.5 - parent: 2 - - uid: 27733 - components: - - type: Transform - pos: 87.5,-30.5 - parent: 2 - - uid: 27734 - components: - - type: Transform - pos: 86.5,-30.5 - parent: 2 - - uid: 27735 - components: - - type: Transform - pos: 84.5,-30.5 - parent: 2 - - uid: 27736 - components: - - type: Transform - pos: 87.5,-27.5 - parent: 2 - - uid: 27737 - components: - - type: Transform - pos: 87.5,-26.5 - parent: 2 - - uid: 27738 - components: - - type: Transform - pos: 87.5,-25.5 - parent: 2 - - uid: 27739 - components: - - type: Transform - pos: 68.5,-21.5 - parent: 2 - - uid: 27742 - components: - - type: Transform - pos: 55.5,-25.5 - parent: 2 - - uid: 27743 - components: - - type: Transform - pos: 54.5,-25.5 - parent: 2 - - uid: 27744 - components: - - type: Transform - pos: 52.5,-25.5 - parent: 2 - - uid: 27745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-3.5 - parent: 2 - - uid: 27746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-2.5 - parent: 2 - - uid: 27747 - components: - - type: Transform - pos: 50.5,-20.5 - parent: 2 - - uid: 27748 - components: - - type: Transform - pos: 50.5,-19.5 - parent: 2 - - uid: 27749 - components: - - type: Transform - pos: 50.5,-18.5 - parent: 2 - - uid: 27751 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 2 - - uid: 27752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,5.5 - parent: 2 - - uid: 27753 - components: - - type: Transform - pos: 17.5,-36.5 - parent: 2 - - uid: 27755 - components: - - type: Transform - pos: 48.5,-16.5 - parent: 2 - - uid: 27756 - components: - - type: Transform - pos: 46.5,-15.5 - parent: 2 - - uid: 27757 - components: - - type: Transform - pos: 21.5,-28.5 - parent: 2 - - uid: 27758 - components: - - type: Transform - pos: 48.5,-19.5 - parent: 2 - - uid: 27759 - components: - - type: Transform - pos: 36.5,-21.5 - parent: 2 - - uid: 27762 - components: - - type: Transform - pos: 38.5,15.5 - parent: 2 - - uid: 27763 - components: - - type: Transform - pos: 60.5,-42.5 - parent: 2 - - uid: 27764 - components: - - type: Transform - pos: 47.5,-19.5 - parent: 2 - - uid: 27765 - components: - - type: Transform - pos: 47.5,-15.5 - parent: 2 - - uid: 27766 - components: - - type: Transform - pos: 45.5,-15.5 - parent: 2 - - uid: 27767 - components: - - type: Transform - pos: 22.5,-28.5 - parent: 2 - - uid: 27768 - components: - - type: Transform - pos: 27.5,-36.5 - parent: 2 - - uid: 27769 - components: - - type: Transform - pos: 18.5,-28.5 - parent: 2 - - uid: 27770 - components: - - type: Transform - pos: 48.5,-17.5 - parent: 2 - - uid: 27771 - components: - - type: Transform - pos: 59.5,-42.5 - parent: 2 - - uid: 27772 - components: - - type: Transform - pos: 55.5,-38.5 - parent: 2 - - uid: 27773 - components: - - type: Transform - pos: 58.5,-53.5 - parent: 2 - - uid: 27774 - components: - - type: Transform - pos: 63.5,-53.5 - parent: 2 - - uid: 27775 - components: - - type: Transform - pos: 55.5,-50.5 - parent: 2 - - uid: 27776 - components: - - type: Transform - pos: 38.5,14.5 - parent: 2 - - uid: 27782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-5.5 - parent: 2 - - uid: 27783 - components: - - type: Transform - pos: 75.5,0.5 - parent: 2 - - uid: 27784 - components: - - type: Transform - pos: 63.5,1.5 - parent: 2 - - uid: 27785 - components: - - type: Transform - pos: 66.5,13.5 - parent: 2 - - uid: 27786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,8.5 - parent: 2 - - uid: 27787 - components: - - type: Transform - pos: 11.5,33.5 - parent: 2 - - uid: 27788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,34.5 - parent: 2 - - uid: 27789 - components: - - type: Transform - pos: 53.5,-7.5 - parent: 2 - - uid: 27790 - components: - - type: Transform - pos: 54.5,-7.5 - parent: 2 - - uid: 27791 - components: - - type: Transform - pos: 54.5,-10.5 - parent: 2 - - uid: 27792 - components: - - type: Transform - pos: 54.5,-11.5 - parent: 2 - - uid: 27793 - components: - - type: Transform - pos: 56.5,-11.5 - parent: 2 - - uid: 27794 - components: - - type: Transform - pos: 58.5,-11.5 - parent: 2 - - uid: 27795 - components: - - type: Transform - pos: 60.5,-11.5 - parent: 2 - - uid: 27796 - components: - - type: Transform - pos: 64.5,-11.5 - parent: 2 - - uid: 27797 - components: - - type: Transform - pos: 63.5,-5.5 - parent: 2 - - uid: 27798 - components: - - type: Transform - pos: 73.5,-11.5 - parent: 2 - - uid: 27799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-8.5 - parent: 2 - - uid: 27800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-8.5 - parent: 2 - - uid: 27801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-12.5 - parent: 2 - - uid: 27802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-12.5 - parent: 2 - - uid: 27803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-11.5 - parent: 2 - - uid: 27804 - components: - - type: Transform - pos: 67.5,-1.5 - parent: 2 - - uid: 27805 - components: - - type: Transform - pos: 64.5,-1.5 - parent: 2 - - uid: 27806 - components: - - type: Transform - pos: 63.5,-1.5 - parent: 2 - - uid: 27807 - components: - - type: Transform - pos: 61.5,-1.5 - parent: 2 - - uid: 27808 - components: - - type: Transform - pos: 60.5,-1.5 - parent: 2 - - uid: 27809 - components: - - type: Transform - pos: 59.5,-0.5 - parent: 2 - - uid: 27810 - components: - - type: Transform - pos: 59.5,1.5 - parent: 2 - - uid: 27811 - components: - - type: Transform - pos: 59.5,2.5 - parent: 2 - - uid: 27813 - components: - - type: Transform - pos: 50.5,-11.5 - parent: 2 - - uid: 27814 - components: - - type: Transform - pos: 50.5,-10.5 - parent: 2 - - uid: 27815 - components: - - type: Transform - pos: 50.5,-9.5 - parent: 2 - - uid: 27816 - components: - - type: Transform - pos: 50.5,-8.5 - parent: 2 - - uid: 27817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,14.5 - parent: 2 - - uid: 27818 - components: - - type: Transform - pos: 46.5,-1.5 - parent: 2 - - uid: 27819 - components: - - type: Transform - pos: 45.5,-1.5 - parent: 2 - - uid: 27820 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 2 - - uid: 27821 - components: - - type: Transform - pos: 41.5,-1.5 - parent: 2 - - uid: 27822 - components: - - type: Transform - pos: 41.5,-2.5 - parent: 2 - - uid: 27823 - components: - - type: Transform - pos: 41.5,-3.5 - parent: 2 - - uid: 27825 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 27826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,17.5 - parent: 2 - - uid: 27827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,16.5 - parent: 2 - - uid: 27828 - components: - - type: Transform - pos: 41.5,-11.5 - parent: 2 - - uid: 27829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,20.5 - parent: 2 - - uid: 27830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,19.5 - parent: 2 - - uid: 27831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,18.5 - parent: 2 - - uid: 27832 - components: - - type: Transform - pos: 32.5,-11.5 - parent: 2 - - uid: 27833 - components: - - type: Transform - pos: 41.5,0.5 - parent: 2 - - uid: 27834 - components: - - type: Transform - pos: 40.5,1.5 - parent: 2 - - uid: 27835 - components: - - type: Transform - pos: 40.5,-3.5 - parent: 2 - - uid: 27836 - components: - - type: Transform - pos: 39.5,-3.5 - parent: 2 - - uid: 27837 - components: - - type: Transform - pos: 38.5,-3.5 - parent: 2 - - uid: 27838 - components: - - type: Transform - pos: 35.5,-3.5 - parent: 2 - - uid: 27839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,13.5 - parent: 2 - - uid: 27840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,24.5 - parent: 2 - - uid: 27841 - components: - - type: Transform - pos: 28.5,7.5 - parent: 2 - - uid: 27842 - components: - - type: Transform - pos: 54.5,12.5 - parent: 2 - - uid: 27843 - components: - - type: Transform - pos: 31.5,-11.5 - parent: 2 - - uid: 27844 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 2 - - uid: 27845 - components: - - type: Transform - pos: 29.5,-11.5 - parent: 2 - - uid: 27846 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 2 - - uid: 27847 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 2 - - uid: 27848 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 2 - - uid: 27849 - components: - - type: Transform - pos: 25.5,-11.5 - parent: 2 - - uid: 27850 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 2 - - uid: 27851 - components: - - type: Transform - pos: 20.5,-11.5 - parent: 2 - - uid: 27852 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 2 - - uid: 27853 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 2 - - uid: 27854 - components: - - type: Transform - pos: 83.5,-40.5 - parent: 2 - - uid: 27855 - components: - - type: Transform - pos: 86.5,-54.5 - parent: 2 - - uid: 27856 - components: - - type: Transform - pos: 85.5,-54.5 - parent: 2 - - uid: 27857 - components: - - type: Transform - pos: 84.5,-54.5 - parent: 2 - - uid: 27858 - components: - - type: Transform - pos: 83.5,-54.5 - parent: 2 - - uid: 27859 - components: - - type: Transform - pos: 83.5,-55.5 - parent: 2 - - uid: 27860 - components: - - type: Transform - pos: 83.5,-53.5 - parent: 2 - - uid: 27861 - components: - - type: Transform - pos: 83.5,-42.5 - parent: 2 - - uid: 27862 - components: - - type: Transform - pos: 81.5,-56.5 - parent: 2 - - uid: 27863 - components: - - type: Transform - pos: 81.5,-57.5 - parent: 2 - - uid: 27864 - components: - - type: Transform - pos: 81.5,-58.5 - parent: 2 - - uid: 27865 - components: - - type: Transform - pos: 81.5,-59.5 - parent: 2 - - uid: 27866 - components: - - type: Transform - pos: 80.5,-59.5 - parent: 2 - - uid: 27867 - components: - - type: Transform - pos: 78.5,-59.5 - parent: 2 - - uid: 27868 - components: - - type: Transform - pos: 77.5,-59.5 - parent: 2 - - uid: 27870 - components: - - type: Transform - pos: 77.5,-56.5 - parent: 2 - - uid: 27871 - components: - - type: Transform - pos: 76.5,-59.5 - parent: 2 - - uid: 27872 - components: - - type: Transform - pos: 83.5,-59.5 - parent: 2 - - uid: 27873 - components: - - type: Transform - pos: 83.5,-56.5 - parent: 2 - - uid: 27874 - components: - - type: Transform - pos: -22.5,-20.5 - parent: 2 - - uid: 27875 - components: - - type: Transform - pos: -23.5,-20.5 - parent: 2 - - uid: 27877 - components: - - type: Transform - pos: 48.5,-66.5 - parent: 2 - - uid: 27878 - components: - - type: Transform - pos: 37.5,-63.5 - parent: 2 - - uid: 27879 - components: - - type: Transform - pos: 36.5,-63.5 - parent: 2 - - uid: 27880 - components: - - type: Transform - pos: 75.5,-61.5 - parent: 2 - - uid: 27881 - components: - - type: Transform - pos: 75.5,-62.5 - parent: 2 - - uid: 27882 - components: - - type: Transform - pos: 75.5,-63.5 - parent: 2 - - uid: 27883 - components: - - type: Transform - pos: 72.5,-62.5 - parent: 2 - - uid: 27884 - components: - - type: Transform - pos: 72.5,-63.5 - parent: 2 - - uid: 27885 - components: - - type: Transform - pos: 72.5,-59.5 - parent: 2 - - uid: 27886 - components: - - type: Transform - pos: 71.5,-63.5 - parent: 2 - - uid: 27887 - components: - - type: Transform - pos: 70.5,-63.5 - parent: 2 - - uid: 27888 - components: - - type: Transform - pos: 69.5,-63.5 - parent: 2 - - uid: 27889 - components: - - type: Transform - pos: 67.5,-66.5 - parent: 2 - - uid: 27893 - components: - - type: Transform - pos: 67.5,-67.5 - parent: 2 - - uid: 27895 - components: - - type: Transform - pos: 68.5,-58.5 - parent: 2 - - uid: 27896 - components: - - type: Transform - pos: 66.5,-63.5 - parent: 2 - - uid: 27897 - components: - - type: Transform - pos: 67.5,-63.5 - parent: 2 - - uid: 27900 - components: - - type: Transform - pos: 69.5,-58.5 - parent: 2 - - uid: 27901 - components: - - type: Transform - pos: 70.5,-58.5 - parent: 2 - - uid: 27902 - components: - - type: Transform - pos: 66.5,-58.5 - parent: 2 - - uid: 27903 - components: - - type: Transform - pos: 66.5,-59.5 - parent: 2 - - uid: 27904 - components: - - type: Transform - pos: 66.5,-62.5 - parent: 2 - - uid: 27905 - components: - - type: Transform - pos: 66.5,-61.5 - parent: 2 - - uid: 27906 - components: - - type: Transform - pos: 49.5,-63.5 - parent: 2 - - uid: 27907 - components: - - type: Transform - pos: 46.5,-62.5 - parent: 2 - - uid: 27908 - components: - - type: Transform - pos: 46.5,-64.5 - parent: 2 - - uid: 27909 - components: - - type: Transform - pos: 45.5,-64.5 - parent: 2 - - uid: 27910 - components: - - type: Transform - pos: 43.5,-64.5 - parent: 2 - - uid: 27911 - components: - - type: Transform - pos: 42.5,-64.5 - parent: 2 - - uid: 27912 - components: - - type: Transform - pos: 42.5,-63.5 - parent: 2 - - uid: 27913 - components: - - type: Transform - pos: 42.5,-62.5 - parent: 2 - - uid: 27914 - components: - - type: Transform - pos: 41.5,-63.5 - parent: 2 - - uid: 27915 - components: - - type: Transform - pos: 39.5,-63.5 - parent: 2 - - uid: 27916 - components: - - type: Transform - pos: 38.5,-63.5 - parent: 2 - - uid: 27917 - components: - - type: Transform - pos: 44.5,-67.5 - parent: 2 - - uid: 27918 - components: - - type: Transform - pos: 44.5,-69.5 - parent: 2 - - uid: 27919 - components: - - type: Transform - pos: 45.5,-69.5 - parent: 2 - - uid: 27920 - components: - - type: Transform - pos: 46.5,-69.5 - parent: 2 - - uid: 27921 - components: - - type: Transform - pos: 47.5,-69.5 - parent: 2 - - uid: 27922 - components: - - type: Transform - pos: 42.5,-67.5 - parent: 2 - - uid: 27923 - components: - - type: Transform - pos: 42.5,-66.5 - parent: 2 - - uid: 27924 - components: - - type: Transform - pos: 42.5,-69.5 - parent: 2 - - uid: 27925 - components: - - type: Transform - pos: 39.5,-69.5 - parent: 2 - - uid: 27926 - components: - - type: Transform - pos: 34.5,-65.5 - parent: 2 - - uid: 27927 - components: - - type: Transform - pos: 34.5,-68.5 - parent: 2 - - uid: 27928 - components: - - type: Transform - pos: 34.5,-66.5 - parent: 2 - - uid: 27929 - components: - - type: Transform - pos: 34.5,-67.5 - parent: 2 - - uid: 27930 - components: - - type: Transform - pos: 38.5,-67.5 - parent: 2 - - uid: 27931 - components: - - type: Transform - pos: 41.5,-67.5 - parent: 2 - - uid: 27932 - components: - - type: Transform - pos: 39.5,-67.5 - parent: 2 - - uid: 27933 - components: - - type: Transform - pos: 32.5,-61.5 - parent: 2 - - uid: 27934 - components: - - type: Transform - pos: 33.5,-61.5 - parent: 2 - - uid: 27935 - components: - - type: Transform - pos: 33.5,-58.5 - parent: 2 - - uid: 27936 - components: - - type: Transform - pos: 34.5,-58.5 - parent: 2 - - uid: 27937 - components: - - type: Transform - pos: -34.5,-47.5 - parent: 2 - - uid: 27938 - components: - - type: Transform - pos: -35.5,-47.5 - parent: 2 - - uid: 27939 - components: - - type: Transform - pos: -3.5,-40.5 - parent: 2 - - uid: 27940 - components: - - type: Transform - pos: -4.5,-40.5 - parent: 2 - - uid: 27941 - components: - - type: Transform - pos: -5.5,-40.5 - parent: 2 - - uid: 27942 - components: - - type: Transform - pos: -6.5,-40.5 - parent: 2 - - uid: 27943 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 2 - - uid: 27944 - components: - - type: Transform - pos: -8.5,-40.5 - parent: 2 - - uid: 27945 - components: - - type: Transform - pos: -9.5,-40.5 - parent: 2 - - uid: 27946 - components: - - type: Transform - pos: -10.5,-40.5 - parent: 2 - - uid: 27947 - components: - - type: Transform - pos: -3.5,-46.5 - parent: 2 - - uid: 27948 - components: - - type: Transform - pos: -4.5,-46.5 - parent: 2 - - uid: 27949 - components: - - type: Transform - pos: -5.5,-46.5 - parent: 2 - - uid: 27950 - components: - - type: Transform - pos: -6.5,-46.5 - parent: 2 - - uid: 27951 - components: - - type: Transform - pos: -7.5,-46.5 - parent: 2 - - uid: 27952 - components: - - type: Transform - pos: -8.5,-46.5 - parent: 2 - - uid: 27953 - components: - - type: Transform - pos: -10.5,-46.5 - parent: 2 - - uid: 27954 - components: - - type: Transform - pos: -11.5,-46.5 - parent: 2 - - uid: 27955 - components: - - type: Transform - pos: -13.5,-46.5 - parent: 2 - - uid: 27956 - components: - - type: Transform - pos: -8.5,-54.5 - parent: 2 - - uid: 27957 - components: - - type: Transform - pos: -8.5,-52.5 - parent: 2 - - uid: 27960 - components: - - type: Transform - pos: -19.5,-59.5 - parent: 2 - - uid: 27961 - components: - - type: Transform - pos: -30.5,-59.5 - parent: 2 - - uid: 27962 - components: - - type: Transform - pos: -29.5,-59.5 - parent: 2 - - uid: 27963 - components: - - type: Transform - pos: -27.5,-59.5 - parent: 2 - - uid: 27964 - components: - - type: Transform - pos: -25.5,-59.5 - parent: 2 - - uid: 27965 - components: - - type: Transform - pos: -24.5,-59.5 - parent: 2 - - uid: 27966 - components: - - type: Transform - pos: -23.5,-59.5 - parent: 2 - - uid: 27967 - components: - - type: Transform - pos: -22.5,-59.5 - parent: 2 - - uid: 27968 - components: - - type: Transform - pos: -21.5,-59.5 - parent: 2 - - uid: 27969 - components: - - type: Transform - pos: -30.5,-58.5 - parent: 2 - - uid: 27970 - components: - - type: Transform - pos: -30.5,-57.5 - parent: 2 - - uid: 27971 - components: - - type: Transform - pos: -30.5,-56.5 - parent: 2 - - uid: 27972 - components: - - type: Transform - pos: -31.5,-55.5 - parent: 2 - - uid: 27973 - components: - - type: Transform - pos: -32.5,-55.5 - parent: 2 - - uid: 27974 - components: - - type: Transform - pos: -30.5,-52.5 - parent: 2 - - uid: 27975 - components: - - type: Transform - pos: -30.5,-51.5 - parent: 2 - - uid: 27976 - components: - - type: Transform - pos: -30.5,-50.5 - parent: 2 - - uid: 27977 - components: - - type: Transform - pos: -30.5,-49.5 - parent: 2 - - uid: 27978 - components: - - type: Transform - pos: -29.5,-48.5 - parent: 2 - - uid: 27979 - components: - - type: Transform - pos: -28.5,-48.5 - parent: 2 - - uid: 27980 - components: - - type: Transform - pos: -27.5,-48.5 - parent: 2 - - uid: 27981 - components: - - type: Transform - pos: -25.5,-48.5 - parent: 2 - - uid: 27982 - components: - - type: Transform - pos: -24.5,-48.5 - parent: 2 - - uid: 27983 - components: - - type: Transform - pos: -19.5,-48.5 - parent: 2 - - uid: 27984 - components: - - type: Transform - pos: -19.5,-49.5 - parent: 2 - - uid: 27985 - components: - - type: Transform - pos: -19.5,-50.5 - parent: 2 - - uid: 27986 - components: - - type: Transform - pos: -19.5,-51.5 - parent: 2 - - uid: 27987 - components: - - type: Transform - pos: -19.5,-52.5 - parent: 2 - - uid: 27988 - components: - - type: Transform - pos: -34.5,-55.5 - parent: 2 - - uid: 27989 - components: - - type: Transform - pos: -19.5,-54.5 - parent: 2 - - uid: 27990 - components: - - type: Transform - pos: -19.5,-55.5 - parent: 2 - - uid: 27991 - components: - - type: Transform - pos: -19.5,-56.5 - parent: 2 - - uid: 27992 - components: - - type: Transform - pos: -19.5,-58.5 - parent: 2 - - uid: 27993 - components: - - type: Transform - pos: -35.5,-55.5 - parent: 2 - - uid: 27994 - components: - - type: Transform - pos: -35.5,-54.5 - parent: 2 - - uid: 27995 - components: - - type: Transform - pos: -35.5,-53.5 - parent: 2 - - uid: 27996 - components: - - type: Transform - pos: -35.5,-52.5 - parent: 2 - - uid: 27997 - components: - - type: Transform - pos: -32.5,-52.5 - parent: 2 - - uid: 27998 - components: - - type: Transform - pos: -31.5,-52.5 - parent: 2 - - uid: 27999 - components: - - type: Transform - pos: -34.5,-59.5 - parent: 2 - - uid: 28000 - components: - - type: Transform - pos: -35.5,-58.5 - parent: 2 - - uid: 28001 - components: - - type: Transform - pos: -35.5,-57.5 - parent: 2 - - uid: 28002 - components: - - type: Transform - pos: -32.5,-58.5 - parent: 2 - - uid: 28003 - components: - - type: Transform - pos: -30.5,-48.5 - parent: 2 - - uid: 28004 - components: - - type: Transform - pos: -37.5,-47.5 - parent: 2 - - uid: 28008 - components: - - type: Transform - pos: 70.5,-69.5 - parent: 2 - - uid: 28009 - components: - - type: Transform - pos: -2.5,-49.5 - parent: 2 - - uid: 28010 - components: - - type: Transform - pos: -2.5,-50.5 - parent: 2 - - uid: 28012 - components: - - type: Transform - pos: -31.5,-46.5 - parent: 2 - - uid: 28014 - components: - - type: Transform - pos: -30.5,-43.5 - parent: 2 - - uid: 28015 - components: - - type: Transform - pos: -30.5,-45.5 - parent: 2 - - uid: 28016 - components: - - type: Transform - pos: -27.5,-46.5 - parent: 2 - - uid: 28017 - components: - - type: Transform - pos: -25.5,-46.5 - parent: 2 - - uid: 28019 - components: - - type: Transform - pos: -23.5,-46.5 - parent: 2 - - uid: 28020 - components: - - type: Transform - pos: -32.5,-46.5 - parent: 2 - - uid: 28021 - components: - - type: Transform - pos: -33.5,-46.5 - parent: 2 - - uid: 28022 - components: - - type: Transform - pos: -34.5,-46.5 - parent: 2 - - uid: 28028 - components: - - type: Transform - pos: 62.5,-53.5 - parent: 2 - - uid: 28029 - components: - - type: Transform - pos: -17.5,14.5 - parent: 2 - - uid: 28030 - components: - - type: Transform - pos: -17.5,13.5 - parent: 2 - - uid: 28031 - components: - - type: Transform - pos: -17.5,12.5 - parent: 2 - - uid: 28032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,12.5 - parent: 2 - - uid: 28033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-5.5 - parent: 2 - - uid: 28034 - components: - - type: Transform - pos: 37.5,-7.5 - parent: 2 - - uid: 28035 - components: - - type: Transform - pos: 22.5,5.5 - parent: 2 - - uid: 28036 - components: - - type: Transform - pos: 23.5,5.5 - parent: 2 - - uid: 28037 - components: - - type: Transform - pos: 21.5,-0.5 - parent: 2 - - uid: 28038 - components: - - type: Transform - pos: 60.5,-53.5 - parent: 2 - - uid: 28039 - components: - - type: Transform - pos: 62.5,-2.5 - parent: 2 - - uid: 28040 - components: - - type: Transform - pos: 62.5,-1.5 - parent: 2 - - uid: 28041 - components: - - type: Transform - pos: 65.5,-3.5 - parent: 2 - - uid: 28042 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 2 - - uid: 28043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-1.5 - parent: 2 - - uid: 28044 - components: - - type: Transform - pos: 62.5,-5.5 - parent: 2 - - uid: 28045 - components: - - type: Transform - pos: 65.5,-2.5 - parent: 2 - - uid: 28046 - components: - - type: Transform - pos: 65.5,-5.5 - parent: 2 - - uid: 28047 - components: - - type: Transform - pos: 48.5,-22.5 - parent: 2 - - uid: 28048 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-21.5 - parent: 2 - - uid: 28049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-25.5 - parent: 2 - - uid: 28050 - components: - - type: Transform - pos: 72.5,8.5 - parent: 2 - - uid: 28051 - components: - - type: Transform - pos: 71.5,6.5 - parent: 2 - - uid: 28052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-5.5 - parent: 2 - - uid: 28053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-11.5 - parent: 2 - - uid: 28054 - components: - - type: Transform - pos: 63.5,3.5 - parent: 2 - - uid: 28058 - components: - - type: Transform - pos: 57.5,-15.5 - parent: 2 - - uid: 28059 - components: - - type: Transform - pos: 62.5,-4.5 - parent: 2 - - uid: 28060 - components: - - type: Transform - pos: 24.5,7.5 - parent: 2 - - uid: 28061 - components: - - type: Transform - pos: 25.5,7.5 - parent: 2 - - uid: 28063 - components: - - type: Transform - pos: 55.5,-15.5 - parent: 2 - - uid: 28065 - components: - - type: Transform - pos: 25.5,5.5 - parent: 2 - - uid: 28067 - components: - - type: Transform - pos: 27.5,5.5 - parent: 2 - - uid: 28070 - components: - - type: Transform - pos: 38.5,13.5 - parent: 2 - - uid: 28071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,6.5 - parent: 2 - - uid: 28072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,1.5 - parent: 2 - - uid: 28073 - components: - - type: Transform - pos: 28.5,5.5 - parent: 2 - - uid: 28074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,7.5 - parent: 2 - - uid: 28075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,6.5 - parent: 2 - - uid: 28076 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 - parent: 2 - - uid: 28077 - components: - - type: Transform - pos: 60.5,-19.5 - parent: 2 - - uid: 28078 - components: - - type: Transform - pos: 26.5,7.5 - parent: 2 - - uid: 28079 - components: - - type: Transform - pos: 56.5,-15.5 - parent: 2 - - uid: 28081 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,1.5 - parent: 2 - - uid: 28082 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,1.5 - parent: 2 - - uid: 28084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,4.5 - parent: 2 - - uid: 28085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-3.5 - parent: 2 - - uid: 28086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,22.5 - parent: 2 - - uid: 28087 - components: - - type: Transform - pos: 22.5,7.5 - parent: 2 - - uid: 28088 - components: - - type: Transform - pos: -10.5,30.5 - parent: 2 - - uid: 28089 - components: - - type: Transform - pos: -10.5,29.5 - parent: 2 - - uid: 28090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,33.5 - parent: 2 - - uid: 28091 - components: - - type: Transform - pos: 59.5,-2.5 - parent: 2 - - uid: 28092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-1.5 - parent: 2 - - uid: 28093 - components: - - type: Transform - pos: 64.5,-5.5 - parent: 2 - - uid: 28094 - components: - - type: Transform - pos: 65.5,-4.5 - parent: 2 - - uid: 28095 - components: - - type: Transform - pos: 64.5,-6.5 - parent: 2 - - uid: 28096 - components: - - type: Transform - pos: 28.5,2.5 - parent: 2 - - uid: 28097 - components: - - type: Transform - pos: 31.5,6.5 - parent: 2 - - uid: 28098 - components: - - type: Transform - pos: -10.5,33.5 - parent: 2 - - uid: 28103 - components: - - type: Transform - pos: -20.5,19.5 - parent: 2 - - uid: 28105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-10.5 - parent: 2 - - uid: 28106 - components: - - type: Transform - pos: 35.5,6.5 - parent: 2 - - uid: 28107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,4.5 - parent: 2 - - uid: 28108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,2.5 - parent: 2 - - uid: 28109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,3.5 - parent: 2 - - uid: 28110 - components: - - type: Transform - pos: 50.5,0.5 - parent: 2 - - uid: 28111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,22.5 - parent: 2 - - uid: 28112 - components: - - type: Transform - pos: 7.5,7.5 - parent: 2 - - uid: 28117 - components: - - type: Transform - pos: 6.5,10.5 - parent: 2 - - uid: 28118 - components: - - type: Transform - pos: 4.5,10.5 - parent: 2 - - uid: 28119 - components: - - type: Transform - pos: 5.5,10.5 - parent: 2 - - uid: 28120 - components: - - type: Transform - pos: 7.5,12.5 - parent: 2 - - uid: 28121 - components: - - type: Transform - pos: 7.5,13.5 - parent: 2 - - uid: 28122 - components: - - type: Transform - pos: 6.5,13.5 - parent: 2 - - uid: 28123 - components: - - type: Transform - pos: 5.5,13.5 - parent: 2 - - uid: 28124 - components: - - type: Transform - pos: 4.5,13.5 - parent: 2 - - uid: 28125 - components: - - type: Transform - pos: 7.5,15.5 - parent: 2 - - uid: 28130 - components: - - type: Transform - pos: 13.5,13.5 - parent: 2 - - uid: 28131 - components: - - type: Transform - pos: 14.5,13.5 - parent: 2 - - uid: 28132 - components: - - type: Transform - pos: 14.5,14.5 - parent: 2 - - uid: 28133 - components: - - type: Transform - pos: 14.5,15.5 - parent: 2 - - uid: 28134 - components: - - type: Transform - pos: 11.5,13.5 - parent: 2 - - uid: 28135 - components: - - type: Transform - pos: 10.5,13.5 - parent: 2 - - uid: 28137 - components: - - type: Transform - pos: 15.5,2.5 - parent: 2 - - uid: 28138 - components: - - type: Transform - pos: 15.5,3.5 - parent: 2 - - uid: 28139 - components: - - type: Transform - pos: 13.5,2.5 - parent: 2 - - uid: 28140 - components: - - type: Transform - pos: 13.5,3.5 - parent: 2 - - uid: 28141 - components: - - type: Transform - pos: 13.5,4.5 - parent: 2 - - uid: 28142 - components: - - type: Transform - pos: 14.5,4.5 - parent: 2 - - uid: 28143 - components: - - type: Transform - pos: 15.5,4.5 - parent: 2 - - uid: 28144 - components: - - type: Transform - pos: 16.5,4.5 - parent: 2 - - uid: 28145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,21.5 - parent: 2 - - uid: 28146 - components: - - type: Transform - pos: 17.5,3.5 - parent: 2 - - uid: 28147 - components: - - type: Transform - pos: 17.5,2.5 - parent: 2 - - uid: 28148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,23.5 - parent: 2 - - uid: 28150 - components: - - type: Transform - pos: 13.5,7.5 - parent: 2 - - uid: 28151 - components: - - type: Transform - pos: 11.5,7.5 - parent: 2 - - uid: 28152 - components: - - type: Transform - pos: 10.5,4.5 - parent: 2 - - uid: 28153 - components: - - type: Transform - pos: 10.5,7.5 - parent: 2 - - uid: 28154 - components: - - type: Transform - pos: 10.5,6.5 - parent: 2 - - uid: 28155 - components: - - type: Transform - pos: 10.5,5.5 - parent: 2 - - uid: 28156 - components: - - type: Transform - pos: 10.5,15.5 - parent: 2 - - uid: 28157 - components: - - type: Transform - pos: 10.5,3.5 - parent: 2 - - uid: 28158 - components: - - type: Transform - pos: 10.5,2.5 - parent: 2 - - uid: 28159 - components: - - type: Transform - pos: 10.5,1.5 - parent: 2 - - uid: 28160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,21.5 - parent: 2 - - uid: 28162 - components: - - type: Transform - pos: 3.5,11.5 - parent: 2 - - uid: 28163 - components: - - type: Transform - pos: 3.5,12.5 - parent: 2 - - uid: 28164 - components: - - type: Transform - pos: 3.5,13.5 - parent: 2 - - uid: 28165 - components: - - type: Transform - pos: 3.5,14.5 - parent: 2 - - uid: 28166 - components: - - type: Transform - pos: 3.5,15.5 - parent: 2 - - uid: 28167 - components: - - type: Transform - pos: 3.5,16.5 - parent: 2 - - uid: 28168 - components: - - type: Transform - pos: 4.5,16.5 - parent: 2 - - uid: 28169 - components: - - type: Transform - pos: 5.5,16.5 - parent: 2 - - uid: 28170 - components: - - type: Transform - pos: 6.5,16.5 - parent: 2 - - uid: 28171 - components: - - type: Transform - pos: 7.5,16.5 - parent: 2 - - uid: 28172 - components: - - type: Transform - pos: 10.5,16.5 - parent: 2 - - uid: 28173 - components: - - type: Transform - pos: 11.5,16.5 - parent: 2 - - uid: 28174 - components: - - type: Transform - pos: 12.5,16.5 - parent: 2 - - uid: 28175 - components: - - type: Transform - pos: 13.5,16.5 - parent: 2 - - uid: 28176 - components: - - type: Transform - pos: 14.5,16.5 - parent: 2 - - uid: 28177 - components: - - type: Transform - pos: 15.5,16.5 - parent: 2 - - uid: 28178 - components: - - type: Transform - pos: 16.5,16.5 - parent: 2 - - uid: 28179 - components: - - type: Transform - pos: 17.5,16.5 - parent: 2 - - uid: 28181 - components: - - type: Transform - pos: 20.5,16.5 - parent: 2 - - uid: 28182 - components: - - type: Transform - pos: 21.5,16.5 - parent: 2 - - uid: 28183 - components: - - type: Transform - pos: 22.5,16.5 - parent: 2 - - uid: 28190 - components: - - type: Transform - pos: 10.5,35.5 - parent: 2 - - uid: 28191 - components: - - type: Transform - pos: 10.5,36.5 - parent: 2 - - uid: 28192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,37.5 - parent: 2 - - uid: 28193 - components: - - type: Transform - pos: 17.5,-1.5 - parent: 2 - - uid: 28196 - components: - - type: Transform - pos: -10.5,28.5 - parent: 2 - - uid: 28199 - components: - - type: Transform - pos: -11.5,25.5 - parent: 2 - - uid: 28200 - components: - - type: Transform - pos: -11.5,24.5 - parent: 2 - - uid: 28201 - components: - - type: Transform - pos: -11.5,23.5 - parent: 2 - - uid: 28202 - components: - - type: Transform - pos: -7.5,25.5 - parent: 2 - - uid: 28203 - components: - - type: Transform - pos: -7.5,24.5 - parent: 2 - - uid: 28204 - components: - - type: Transform - pos: -7.5,23.5 - parent: 2 - - uid: 28206 - components: - - type: Transform - pos: -3.5,24.5 - parent: 2 - - uid: 28207 - components: - - type: Transform - pos: -3.5,23.5 - parent: 2 - - uid: 28208 - components: - - type: Transform - pos: 0.5,25.5 - parent: 2 - - uid: 28209 - components: - - type: Transform - pos: 0.5,24.5 - parent: 2 - - uid: 28210 - components: - - type: Transform - pos: 0.5,23.5 - parent: 2 - - uid: 28211 - components: - - type: Transform - pos: 3.5,25.5 - parent: 2 - - uid: 28212 - components: - - type: Transform - pos: 7.5,25.5 - parent: 2 - - uid: 28213 - components: - - type: Transform - pos: 7.5,24.5 - parent: 2 - - uid: 28214 - components: - - type: Transform - pos: 7.5,23.5 - parent: 2 - - uid: 28232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,18.5 - parent: 2 - - uid: 28236 - components: - - type: Transform - pos: 10.5,18.5 - parent: 2 - - uid: 28237 - components: - - type: Transform - pos: 7.5,18.5 - parent: 2 - - uid: 28238 - components: - - type: Transform - pos: 6.5,18.5 - parent: 2 - - uid: 28239 - components: - - type: Transform - pos: 5.5,18.5 - parent: 2 - - uid: 28240 - components: - - type: Transform - pos: 4.5,18.5 - parent: 2 - - uid: 28241 - components: - - type: Transform - pos: 3.5,18.5 - parent: 2 - - uid: 28242 - components: - - type: Transform - pos: 2.5,18.5 - parent: 2 - - uid: 28243 - components: - - type: Transform - pos: 1.5,18.5 - parent: 2 - - uid: 28244 - components: - - type: Transform - pos: 1.5,17.5 - parent: 2 - - uid: 28245 - components: - - type: Transform - pos: 1.5,16.5 - parent: 2 - - uid: 28246 - components: - - type: Transform - pos: 1.5,15.5 - parent: 2 - - uid: 28247 - components: - - type: Transform - pos: 1.5,14.5 - parent: 2 - - uid: 28250 - components: - - type: Transform - pos: 1.5,10.5 - parent: 2 - - uid: 28251 - components: - - type: Transform - pos: 1.5,9.5 - parent: 2 - - uid: 28252 - components: - - type: Transform - pos: 1.5,8.5 - parent: 2 - - uid: 28253 - components: - - type: Transform - pos: 1.5,7.5 - parent: 2 - - uid: 28254 - components: - - type: Transform - pos: 1.5,6.5 - parent: 2 - - uid: 28255 - components: - - type: Transform - pos: 1.5,5.5 - parent: 2 - - uid: 28256 - components: - - type: Transform - pos: 1.5,4.5 - parent: 2 - - uid: 28257 - components: - - type: Transform - pos: -10.5,-32.5 - parent: 2 - - uid: 28258 - components: - - type: Transform - pos: -9.5,-32.5 - parent: 2 - - uid: 28259 - components: - - type: Transform - pos: -8.5,-32.5 - parent: 2 - - uid: 28260 - components: - - type: Transform - pos: -7.5,-32.5 - parent: 2 - - uid: 28261 - components: - - type: Transform - pos: -6.5,-32.5 - parent: 2 - - uid: 28262 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 2 - - uid: 28263 - components: - - type: Transform - pos: -4.5,-32.5 - parent: 2 - - uid: 28264 - components: - - type: Transform - pos: -3.5,-32.5 - parent: 2 - - uid: 28265 - components: - - type: Transform - pos: -2.5,-32.5 - parent: 2 - - uid: 28266 - components: - - type: Transform - pos: 14.5,-36.5 - parent: 2 - - uid: 28267 - components: - - type: Transform - pos: 9.5,-37.5 - parent: 2 - - uid: 28268 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 2 - - uid: 28269 - components: - - type: Transform - pos: 13.5,-32.5 - parent: 2 - - uid: 28270 - components: - - type: Transform - pos: 17.5,-32.5 - parent: 2 - - uid: 28271 - components: - - type: Transform - pos: 17.5,-31.5 - parent: 2 - - uid: 28272 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 2 - - uid: 28273 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 2 - - uid: 28274 - components: - - type: Transform - pos: 17.5,-24.5 - parent: 2 - - uid: 28275 - components: - - type: Transform - pos: 14.5,-33.5 - parent: 2 - - uid: 28276 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 2 - - uid: 28277 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - - uid: 28278 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 2 - - uid: 28279 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 2 - - uid: 28280 - components: - - type: Transform - pos: 17.5,-4.5 - parent: 2 - - uid: 28281 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 2 - - uid: 28282 - components: - - type: Transform - pos: 17.5,0.5 - parent: 2 - - uid: 28283 - components: - - type: Transform - pos: 16.5,0.5 - parent: 2 - - uid: 28284 - components: - - type: Transform - pos: 15.5,0.5 - parent: 2 - - uid: 28285 - components: - - type: Transform - pos: 14.5,0.5 - parent: 2 - - uid: 28286 - components: - - type: Transform - pos: 13.5,0.5 - parent: 2 - - uid: 28287 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - - uid: 28288 - components: - - type: Transform - pos: 10.5,0.5 - parent: 2 - - uid: 28289 - components: - - type: Transform - pos: 1.5,2.5 - parent: 2 - - uid: 28290 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 2 - - uid: 28291 - components: - - type: Transform - pos: -18.5,-4.5 - parent: 2 - - uid: 28292 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 2 - - uid: 28293 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 2 - - uid: 28294 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 2 - - uid: 28295 - components: - - type: Transform - pos: -18.5,-8.5 - parent: 2 - - uid: 28296 - components: - - type: Transform - pos: -18.5,-14.5 - parent: 2 - - uid: 28299 - components: - - type: Transform - pos: -18.5,-20.5 - parent: 2 - - uid: 28300 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 2 - - uid: 28301 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 2 - - uid: 28302 - components: - - type: Transform - pos: -18.5,-32.5 - parent: 2 - - uid: 28303 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 2 - - uid: 28304 - components: - - type: Transform - pos: -13.5,-28.5 - parent: 2 - - uid: 28308 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 2 - - uid: 28309 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,7.5 - parent: 2 - - uid: 28310 - components: - - type: Transform - pos: -6.5,-10.5 - parent: 2 - - uid: 28311 - components: - - type: Transform - pos: -8.5,-10.5 - parent: 2 - - uid: 28312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-15.5 - parent: 2 - - uid: 28316 - components: - - type: Transform - pos: 57.5,-1.5 - parent: 2 - - uid: 28317 - components: - - type: Transform - pos: 59.5,-4.5 - parent: 2 - - uid: 28318 - components: - - type: Transform - pos: 58.5,-1.5 - parent: 2 - - uid: 28320 - components: - - type: Transform - pos: -10.5,32.5 - parent: 2 - - uid: 28321 - components: - - type: Transform - pos: -19.5,21.5 - parent: 2 - - uid: 28323 - components: - - type: Transform - pos: 75.5,8.5 - parent: 2 - - uid: 28324 - components: - - type: Transform - pos: -10.5,52.5 - parent: 2 - - uid: 28326 - components: - - type: Transform - pos: -10.5,49.5 - parent: 2 - - uid: 28327 - components: - - type: Transform - pos: -10.5,47.5 - parent: 2 - - uid: 28328 - components: - - type: Transform - pos: -10.5,46.5 - parent: 2 - - uid: 28329 - components: - - type: Transform - pos: -11.5,46.5 - parent: 2 - - uid: 28330 - components: - - type: Transform - pos: -10.5,51.5 - parent: 2 - - uid: 28331 - components: - - type: Transform - pos: -10.5,50.5 - parent: 2 - - uid: 28332 - components: - - type: Transform - pos: -9.5,46.5 - parent: 2 - - uid: 28335 - components: - - type: Transform - pos: -19.5,48.5 - parent: 2 - - uid: 28336 - components: - - type: Transform - pos: -19.5,47.5 - parent: 2 - - uid: 28337 - components: - - type: Transform - pos: -19.5,46.5 - parent: 2 - - uid: 28338 - components: - - type: Transform - pos: 65.5,-1.5 - parent: 2 - - uid: 28339 - components: - - type: Transform - pos: -22.5,47.5 - parent: 2 - - uid: 28340 - components: - - type: Transform - pos: -22.5,46.5 - parent: 2 - - uid: 28341 - components: - - type: Transform - pos: -22.5,48.5 - parent: 2 - - uid: 28342 - components: - - type: Transform - pos: -18.5,49.5 - parent: 2 - - uid: 28343 - components: - - type: Transform - pos: -19.5,49.5 - parent: 2 - - uid: 28344 - components: - - type: Transform - pos: -22.5,42.5 - parent: 2 - - uid: 28345 - components: - - type: Transform - pos: 59.5,-1.5 - parent: 2 - - uid: 28346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,34.5 - parent: 2 - - uid: 28347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,38.5 - parent: 2 - - uid: 28348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,38.5 - parent: 2 - - uid: 28349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-2.5 - parent: 2 - - uid: 28350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-3.5 - parent: 2 - - uid: 28351 - components: - - type: Transform - pos: 9.5,-32.5 - parent: 2 - - uid: 28352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-7.5 - parent: 2 - - uid: 28353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-15.5 - parent: 2 - - uid: 28355 - components: - - type: Transform - pos: 21.5,0.5 - parent: 2 - - uid: 28356 - components: - - type: Transform - pos: 38.5,1.5 - parent: 2 - - uid: 28357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,7.5 - parent: 2 - - uid: 28358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,7.5 - parent: 2 - - uid: 28359 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 2 - - uid: 28360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-1.5 - parent: 2 - - uid: 28361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-11.5 - parent: 2 - - uid: 28362 - components: - - type: Transform - pos: 17.5,-7.5 - parent: 2 - - uid: 28364 - components: - - type: Transform - pos: 7.5,4.5 - parent: 2 - - uid: 28365 - components: - - type: Transform - pos: 1.5,3.5 - parent: 2 - - uid: 28370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,23.5 - parent: 2 - - uid: 28371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-11.5 - parent: 2 - - uid: 28372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,20.5 - parent: 2 - - uid: 28373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,31.5 - parent: 2 - - uid: 28375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,11.5 - parent: 2 - - uid: 28376 - components: - - type: Transform - pos: 35.5,16.5 - parent: 2 - - uid: 28377 - components: - - type: Transform - pos: 31.5,16.5 - parent: 2 - - uid: 28378 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,20.5 - parent: 2 - - uid: 28379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,24.5 - parent: 2 - - uid: 28380 - components: - - type: Transform - pos: 44.5,9.5 - parent: 2 - - uid: 28381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-15.5 - parent: 2 - - uid: 28382 - components: - - type: Transform - pos: 59.5,0.5 - parent: 2 - - uid: 28383 - components: - - type: Transform - pos: 71.5,-11.5 - parent: 2 - - uid: 28384 - components: - - type: Transform - pos: 69.5,-11.5 - parent: 2 - - uid: 28388 - components: - - type: Transform - pos: 75.5,-1.5 - parent: 2 - - uid: 28389 - components: - - type: Transform - pos: 9.5,-22.5 - parent: 2 - - uid: 28390 - components: - - type: Transform - pos: 65.5,-24.5 - parent: 2 - - uid: 28392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-16.5 - parent: 2 - - uid: 28393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-19.5 - parent: 2 - - uid: 28395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,24.5 - parent: 2 - - uid: 28396 - components: - - type: Transform - pos: 63.5,2.5 - parent: 2 - - uid: 28397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-1.5 - parent: 2 - - uid: 28398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,9.5 - parent: 2 - - uid: 28400 - components: - - type: Transform - pos: 35.5,17.5 - parent: 2 - - uid: 28402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,20.5 - parent: 2 - - uid: 28404 - components: - - type: Transform - pos: -51.5,0.5 - parent: 2 - - uid: 28405 - components: - - type: Transform - pos: -49.5,13.5 - parent: 2 - - uid: 28406 - components: - - type: Transform - pos: -76.5,-15.5 - parent: 2 - - uid: 28408 - components: - - type: Transform - pos: 17.5,-2.5 - parent: 2 - - uid: 28409 - components: - - type: Transform - pos: 56.5,-51.5 - parent: 2 - - uid: 28410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-26.5 - parent: 2 - - uid: 28411 - components: - - type: Transform - pos: -51.5,12.5 - parent: 2 - - uid: 28412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-3.5 - parent: 2 - - uid: 28413 - components: - - type: Transform - pos: 68.5,-69.5 - parent: 2 - - uid: 28414 - components: - - type: Transform - pos: -54.5,8.5 - parent: 2 - - uid: 28415 - components: - - type: Transform - pos: -17.5,11.5 - parent: 2 - - uid: 28416 - components: - - type: Transform - pos: -18.5,11.5 - parent: 2 - - uid: 28417 - components: - - type: Transform - pos: -19.5,11.5 - parent: 2 - - uid: 28418 - components: - - type: Transform - pos: -21.5,11.5 - parent: 2 - - uid: 28419 - components: - - type: Transform - pos: -49.5,12.5 - parent: 2 - - uid: 28420 - components: - - type: Transform - pos: 75.5,4.5 - parent: 2 - - uid: 28421 - components: - - type: Transform - pos: -49.5,16.5 - parent: 2 - - uid: 28422 - components: - - type: Transform - pos: -53.5,8.5 - parent: 2 - - uid: 28423 - components: - - type: Transform - pos: -52.5,8.5 - parent: 2 - - uid: 28424 - components: - - type: Transform - pos: -51.5,8.5 - parent: 2 - - uid: 28425 - components: - - type: Transform - pos: -50.5,8.5 - parent: 2 - - uid: 28426 - components: - - type: Transform - pos: -50.5,7.5 - parent: 2 - - uid: 28427 - components: - - type: Transform - pos: -50.5,6.5 - parent: 2 - - uid: 28428 - components: - - type: Transform - pos: -50.5,5.5 - parent: 2 - - uid: 28429 - components: - - type: Transform - pos: -51.5,2.5 - parent: 2 - - uid: 28430 - components: - - type: Transform - pos: -50.5,4.5 - parent: 2 - - uid: 28431 - components: - - type: Transform - pos: -50.5,2.5 - parent: 2 - - uid: 28432 - components: - - type: Transform - pos: -50.5,1.5 - parent: 2 - - uid: 28433 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 2 - - uid: 28434 - components: - - type: Transform - pos: -19.5,-9.5 - parent: 2 - - uid: 28439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,5.5 - parent: 2 - - uid: 28440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-24.5 - parent: 2 - - uid: 28441 - components: - - type: Transform - pos: -34.5,-44.5 - parent: 2 - - uid: 28442 - components: - - type: Transform - pos: 75.5,1.5 - parent: 2 - - uid: 28443 - components: - - type: Transform - pos: 71.5,8.5 - parent: 2 - - uid: 28444 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,13.5 - parent: 2 - - uid: 28445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,13.5 - parent: 2 - - uid: 28446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,13.5 - parent: 2 - - uid: 28447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,13.5 - parent: 2 - - uid: 28448 - components: - - type: Transform - pos: -38.5,-55.5 - parent: 2 - - uid: 28449 - components: - - type: Transform - pos: -37.5,-55.5 - parent: 2 - - uid: 28450 - components: - - type: Transform - pos: -38.5,-57.5 - parent: 2 - - uid: 28451 - components: - - type: Transform - pos: -37.5,-57.5 - parent: 2 - - uid: 28452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,5.5 - parent: 2 - - uid: 28453 - components: - - type: Transform - pos: -3.5,-58.5 - parent: 2 - - uid: 28454 - components: - - type: Transform - pos: 56.5,-48.5 - parent: 2 - - uid: 28456 - components: - - type: Transform - pos: 27.5,-35.5 - parent: 2 - - uid: 28457 - components: - - type: Transform - pos: 27.5,-31.5 - parent: 2 - - uid: 28458 - components: - - type: Transform - pos: 28.5,-31.5 - parent: 2 - - uid: 28459 - components: - - type: Transform - pos: 28.5,-30.5 - parent: 2 - - uid: 28460 - components: - - type: Transform - pos: 28.5,-27.5 - parent: 2 - - uid: 28461 - components: - - type: Transform - pos: 28.5,-26.5 - parent: 2 - - uid: 28462 - components: - - type: Transform - pos: 30.5,-26.5 - parent: 2 - - uid: 28463 - components: - - type: Transform - pos: 32.5,-26.5 - parent: 2 - - uid: 28464 - components: - - type: Transform - pos: 34.5,-26.5 - parent: 2 - - uid: 28465 - components: - - type: Transform - pos: 34.5,-27.5 - parent: 2 - - uid: 28466 - components: - - type: Transform - pos: 34.5,-30.5 - parent: 2 - - uid: 28467 - components: - - type: Transform - pos: 34.5,-31.5 - parent: 2 - - uid: 28468 - components: - - type: Transform - pos: 33.5,-31.5 - parent: 2 - - uid: 28469 - components: - - type: Transform - pos: 32.5,-31.5 - parent: 2 - - uid: 28470 - components: - - type: Transform - pos: 30.5,-31.5 - parent: 2 - - uid: 28471 - components: - - type: Transform - pos: 29.5,-31.5 - parent: 2 - - uid: 28472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-25.5 - parent: 2 - - uid: 28473 - components: - - type: Transform - pos: 37.5,-25.5 - parent: 2 - - uid: 28474 - components: - - type: Transform - pos: 37.5,-26.5 - parent: 2 - - uid: 28475 - components: - - type: Transform - pos: 37.5,-29.5 - parent: 2 - - uid: 28476 - components: - - type: Transform - pos: 37.5,-30.5 - parent: 2 - - uid: 28477 - components: - - type: Transform - pos: 38.5,-30.5 - parent: 2 - - uid: 28478 - components: - - type: Transform - pos: 42.5,-30.5 - parent: 2 - - uid: 28479 - components: - - type: Transform - pos: 43.5,-30.5 - parent: 2 - - uid: 28480 - components: - - type: Transform - pos: 45.5,-30.5 - parent: 2 - - uid: 28481 - components: - - type: Transform - pos: 44.5,-30.5 - parent: 2 - - uid: 28482 - components: - - type: Transform - pos: 47.5,-29.5 - parent: 2 - - uid: 28483 - components: - - type: Transform - pos: 31.5,-22.5 - parent: 2 - - uid: 28484 - components: - - type: Transform - pos: 47.5,-26.5 - parent: 2 - - uid: 28485 - components: - - type: Transform - pos: 50.5,-37.5 - parent: 2 - - uid: 28486 - components: - - type: Transform - pos: 50.5,-36.5 - parent: 2 - - uid: 28487 - components: - - type: Transform - pos: 48.5,-36.5 - parent: 2 - - uid: 28488 - components: - - type: Transform - pos: 48.5,-34.5 - parent: 2 - - uid: 28489 - components: - - type: Transform - pos: 48.5,-18.5 - parent: 2 - - uid: 28490 - components: - - type: Transform - pos: 42.5,-25.5 - parent: 2 - - uid: 28491 - components: - - type: Transform - pos: 34.5,-33.5 - parent: 2 - - uid: 28492 - components: - - type: Transform - pos: 61.5,-44.5 - parent: 2 - - uid: 28493 - components: - - type: Transform - pos: 50.5,-33.5 - parent: 2 - - uid: 28494 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 2 - - uid: 28495 - components: - - type: Transform - pos: 56.5,-50.5 - parent: 2 - - uid: 28496 - components: - - type: Transform - pos: 61.5,-43.5 - parent: 2 - - uid: 28497 - components: - - type: Transform - pos: 61.5,-45.5 - parent: 2 - - uid: 28498 - components: - - type: Transform - pos: 61.5,-47.5 - parent: 2 - - uid: 28499 - components: - - type: Transform - pos: 61.5,-46.5 - parent: 2 - - uid: 28500 - components: - - type: Transform - pos: 58.5,-42.5 - parent: 2 - - uid: 28501 - components: - - type: Transform - pos: 43.5,-31.5 - parent: 2 - - uid: 28503 - components: - - type: Transform - pos: 14.5,-34.5 - parent: 2 - - uid: 28504 - components: - - type: Transform - pos: 27.5,-34.5 - parent: 2 - - uid: 28505 - components: - - type: Transform - pos: 37.5,-69.5 - parent: 2 - - uid: 28506 - components: - - type: Transform - pos: 12.5,-37.5 - parent: 2 - - uid: 28507 - components: - - type: Transform - pos: 32.5,6.5 - parent: 2 - - uid: 28508 - components: - - type: Transform - pos: 38.5,-33.5 - parent: 2 - - uid: 28510 - components: - - type: Transform - pos: 27.5,0.5 - parent: 2 - - uid: 28511 - components: - - type: Transform - pos: 23.5,7.5 - parent: 2 - - uid: 28512 - components: - - type: Transform - pos: 61.5,-49.5 - parent: 2 - - uid: 28513 - components: - - type: Transform - pos: 48.5,-33.5 - parent: 2 - - uid: 28514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-25.5 - parent: 2 - - uid: 28515 - components: - - type: Transform - pos: 50.5,-34.5 - parent: 2 - - uid: 28516 - components: - - type: Transform - pos: 32.5,-15.5 - parent: 2 - - uid: 28517 - components: - - type: Transform - pos: 31.5,1.5 - parent: 2 - - uid: 28518 - components: - - type: Transform - pos: 50.5,-61.5 - parent: 2 - - uid: 28519 - components: - - type: Transform - pos: 61.5,-48.5 - parent: 2 - - uid: 28521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-6.5 - parent: 2 - - uid: 28522 - components: - - type: Transform - pos: 75.5,5.5 - parent: 2 - - uid: 28523 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 2 - - uid: 28524 - components: - - type: Transform - pos: 55.5,-42.5 - parent: 2 - - uid: 28525 - components: - - type: Transform - pos: 57.5,-42.5 - parent: 2 - - uid: 28526 - components: - - type: Transform - pos: 68.5,-24.5 - parent: 2 - - uid: 28527 - components: - - type: Transform - pos: 13.5,-37.5 - parent: 2 - - uid: 28528 - components: - - type: Transform - pos: 14.5,-37.5 - parent: 2 - - uid: 28529 - components: - - type: Transform - pos: -2.5,-48.5 - parent: 2 - - uid: 28530 - components: - - type: Transform - pos: 52.5,-42.5 - parent: 2 - - uid: 28531 - components: - - type: Transform - pos: 67.5,-24.5 - parent: 2 - - uid: 28532 - components: - - type: Transform - pos: 51.5,-42.5 - parent: 2 - - uid: 28533 - components: - - type: Transform - pos: 50.5,-42.5 - parent: 2 - - uid: 28534 - components: - - type: Transform - pos: 63.5,-49.5 - parent: 2 - - uid: 28535 - components: - - type: Transform - pos: 62.5,-49.5 - parent: 2 - - uid: 28536 - components: - - type: Transform - pos: 60.5,-46.5 - parent: 2 - - uid: 28537 - components: - - type: Transform - pos: 59.5,-46.5 - parent: 2 - - uid: 28538 - components: - - type: Transform - pos: 56.5,-43.5 - parent: 2 - - uid: 28539 - components: - - type: Transform - pos: 56.5,-49.5 - parent: 2 - - uid: 28540 - components: - - type: Transform - pos: 56.5,-47.5 - parent: 2 - - uid: 28541 - components: - - type: Transform - pos: 17.5,1.5 - parent: 2 - - uid: 28542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,0.5 - parent: 2 - - uid: 28543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 2 - - uid: 28544 - components: - - type: Transform - pos: 56.5,-45.5 - parent: 2 - - uid: 28545 - components: - - type: Transform - pos: 56.5,-44.5 - parent: 2 - - uid: 28546 - components: - - type: Transform - pos: 52.5,-47.5 - parent: 2 - - uid: 28547 - components: - - type: Transform - pos: 54.5,-42.5 - parent: 2 - - uid: 28548 - components: - - type: Transform - pos: 56.5,-42.5 - parent: 2 - - uid: 28549 - components: - - type: Transform - pos: 63.5,-42.5 - parent: 2 - - uid: 28550 - components: - - type: Transform - pos: 62.5,-42.5 - parent: 2 - - uid: 28551 - components: - - type: Transform - pos: 52.5,-48.5 - parent: 2 - - uid: 28552 - components: - - type: Transform - pos: 52.5,-50.5 - parent: 2 - - uid: 28553 - components: - - type: Transform - pos: 52.5,-46.5 - parent: 2 - - uid: 28554 - components: - - type: Transform - pos: 61.5,-42.5 - parent: 2 - - uid: 28555 - components: - - type: Transform - pos: 52.5,-49.5 - parent: 2 - - uid: 28556 - components: - - type: Transform - pos: 53.5,-42.5 - parent: 2 - - uid: 28557 - components: - - type: Transform - pos: 50.5,-46.5 - parent: 2 - - uid: 28558 - components: - - type: Transform - pos: 68.5,-23.5 - parent: 2 - - uid: 28559 - components: - - type: Transform - pos: 27.5,-1.5 - parent: 2 - - uid: 28560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,21.5 - parent: 2 - - uid: 28562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,7.5 - parent: 2 - - uid: 28563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,20.5 - parent: 2 - - uid: 28565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,20.5 - parent: 2 - - uid: 28566 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 2 - - uid: 28567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,24.5 - parent: 2 - - uid: 28568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,24.5 - parent: 2 - - uid: 28569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,23.5 - parent: 2 - - uid: 28570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,22.5 - parent: 2 - - uid: 28571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,24.5 - parent: 2 - - uid: 28572 - components: - - type: Transform - pos: 42.5,-43.5 - parent: 2 - - uid: 28573 - components: - - type: Transform - pos: 48.5,-32.5 - parent: 2 - - uid: 28574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-46.5 - parent: 2 - - uid: 28575 - components: - - type: Transform - pos: 68.5,-28.5 - parent: 2 - - uid: 28577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-45.5 - parent: 2 - - uid: 28578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,13.5 - parent: 2 - - uid: 28581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-25.5 - parent: 2 - - uid: 28583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-17.5 - parent: 2 - - uid: 28584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-21.5 - parent: 2 - - uid: 28586 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 2 - - uid: 28588 - components: - - type: Transform - pos: 21.5,-2.5 - parent: 2 - - uid: 28589 - components: - - type: Transform - pos: 28.5,3.5 - parent: 2 - - uid: 28593 - components: - - type: Transform - pos: 43.5,-48.5 - parent: 2 - - uid: 28594 - components: - - type: Transform - pos: 45.5,-48.5 - parent: 2 - - uid: 28595 - components: - - type: Transform - pos: 47.5,-48.5 - parent: 2 - - uid: 28596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,10.5 - parent: 2 - - uid: 28597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,8.5 - parent: 2 - - uid: 28598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,9.5 - parent: 2 - - uid: 28599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,11.5 - parent: 2 - - uid: 28601 - components: - - type: Transform - pos: 75.5,6.5 - parent: 2 - - uid: 28602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-18.5 - parent: 2 - - uid: 28603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-18.5 - parent: 2 - - uid: 28604 - components: - - type: Transform - pos: 8.5,-33.5 - parent: 2 - - uid: 28605 - components: - - type: Transform - pos: 8.5,-34.5 - parent: 2 - - uid: 28607 - components: - - type: Transform - pos: 8.5,-36.5 - parent: 2 - - uid: 28608 - components: - - type: Transform - pos: -16.5,48.5 - parent: 2 - - uid: 28609 - components: - - type: Transform - pos: 8.5,-37.5 - parent: 2 - - uid: 28611 - components: - - type: Transform - pos: 1.5,-36.5 - parent: 2 - - uid: 28612 - components: - - type: Transform - pos: 1.5,-35.5 - parent: 2 - - uid: 28613 - components: - - type: Transform - pos: 75.5,3.5 - parent: 2 - - uid: 28614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-73.5 - parent: 2 - - uid: 28615 - components: - - type: Transform - pos: 66.5,-71.5 - parent: 2 - - uid: 28616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-14.5 - parent: 2 - - uid: 28617 - components: - - type: Transform - pos: 67.5,-69.5 - parent: 2 - - uid: 28618 - components: - - type: Transform - pos: 47.5,-46.5 - parent: 2 - - uid: 28619 - components: - - type: Transform - pos: 67.5,-70.5 - parent: 2 - - uid: 28620 - components: - - type: Transform - pos: 66.5,-70.5 - parent: 2 - - uid: 28621 - components: - - type: Transform - pos: 66.5,-72.5 - parent: 2 - - uid: 28622 - components: - - type: Transform - pos: 1.5,-32.5 - parent: 2 - - uid: 28623 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 2 - - uid: 28624 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 2 - - uid: 28625 - components: - - type: Transform - pos: 1.5,-37.5 - parent: 2 - - uid: 28626 - components: - - type: Transform - pos: 2.5,-37.5 - parent: 2 - - uid: 28627 - components: - - type: Transform - pos: 3.5,-37.5 - parent: 2 - - uid: 28628 - components: - - type: Transform - pos: 4.5,-37.5 - parent: 2 - - uid: 28629 - components: - - type: Transform - pos: 5.5,-37.5 - parent: 2 - - uid: 28630 - components: - - type: Transform - pos: 6.5,-37.5 - parent: 2 - - uid: 28631 - components: - - type: Transform - pos: 47.5,-47.5 - parent: 2 - - uid: 28632 - components: - - type: Transform - pos: 31.5,-3.5 - parent: 2 - - uid: 28633 - components: - - type: Transform - pos: 47.5,-28.5 - parent: 2 - - uid: 28634 - components: - - type: Transform - pos: 42.5,-48.5 - parent: 2 - - uid: 28635 - components: - - type: Transform - pos: 44.5,-48.5 - parent: 2 - - uid: 28636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,12.5 - parent: 2 - - uid: 28637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,15.5 - parent: 2 - - uid: 28638 - components: - - type: Transform - pos: 41.5,-15.5 - parent: 2 - - uid: 28639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,12.5 - parent: 2 - - uid: 28641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,13.5 - parent: 2 - - uid: 28642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 2 - - uid: 28643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,29.5 - parent: 2 - - uid: 28644 - components: - - type: Transform - pos: -19.5,42.5 - parent: 2 - - uid: 28645 - components: - - type: Transform - pos: 46.5,-48.5 - parent: 2 - - uid: 28648 - components: - - type: Transform - pos: 60.5,-15.5 - parent: 2 - - uid: 28649 - components: - - type: Transform - pos: 59.5,-15.5 - parent: 2 - - uid: 28651 - components: - - type: Transform - pos: -3.5,-50.5 - parent: 2 - - uid: 28652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,12.5 - parent: 2 - - uid: 28654 - components: - - type: Transform - pos: 68.5,-19.5 - parent: 2 - - uid: 28656 - components: - - type: Transform - pos: 68.5,-15.5 - parent: 2 - - uid: 28657 - components: - - type: Transform - pos: 67.5,-20.5 - parent: 2 - - uid: 28659 - components: - - type: Transform - pos: 68.5,-20.5 - parent: 2 - - uid: 28660 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,13.5 - parent: 2 - - uid: 28661 - components: - - type: Transform - pos: 27.5,7.5 - parent: 2 - - uid: 28662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,12.5 - parent: 2 - - uid: 28663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,13.5 - parent: 2 - - uid: 28664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,14.5 - parent: 2 - - uid: 28665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,3.5 - parent: 2 - - uid: 28666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,12.5 - parent: 2 - - uid: 28667 - components: - - type: Transform - pos: 31.5,0.5 - parent: 2 - - uid: 28668 - components: - - type: Transform - pos: 28.5,1.5 - parent: 2 - - uid: 28669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,0.5 - parent: 2 - - uid: 28670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,12.5 - parent: 2 - - uid: 28671 - components: - - type: Transform - pos: 41.5,-7.5 - parent: 2 - - uid: 28672 - components: - - type: Transform - pos: 26.5,1.5 - parent: 2 - - uid: 28673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,10.5 - parent: 2 - - uid: 28675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-0.5 - parent: 2 - - uid: 28676 - components: - - type: Transform - pos: 69.5,-7.5 - parent: 2 - - uid: 28677 - components: - - type: Transform - pos: 68.5,-25.5 - parent: 2 - - uid: 28679 - components: - - type: Transform - pos: 65.5,-20.5 - parent: 2 - - uid: 28680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,4.5 - parent: 2 - - uid: 28681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-11.5 - parent: 2 - - uid: 28682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-1.5 - parent: 2 - - uid: 28683 - components: - - type: Transform - pos: -16.5,42.5 - parent: 2 - - uid: 28684 - components: - - type: Transform - pos: -14.5,46.5 - parent: 2 - - uid: 28685 - components: - - type: Transform - pos: -11.5,34.5 - parent: 2 - - uid: 28686 - components: - - type: Transform - pos: -16.5,46.5 - parent: 2 - - uid: 28687 - components: - - type: Transform - pos: -16.5,47.5 - parent: 2 - - uid: 28688 - components: - - type: Transform - pos: -19.5,40.5 - parent: 2 - - uid: 28689 - components: - - type: Transform - pos: -19.5,41.5 - parent: 2 - - uid: 28690 - components: - - type: Transform - pos: -16.5,49.5 - parent: 2 - - uid: 28691 - components: - - type: Transform - pos: -12.5,46.5 - parent: 2 - - uid: 28692 - components: - - type: Transform - pos: -16.5,40.5 - parent: 2 - - uid: 28693 - components: - - type: Transform - pos: -16.5,41.5 - parent: 2 - - uid: 28694 - components: - - type: Transform - pos: -16.5,51.5 - parent: 2 - - uid: 28695 - components: - - type: Transform - pos: -17.5,49.5 - parent: 2 - - uid: 28696 - components: - - type: Transform - pos: -15.5,46.5 - parent: 2 - - uid: 28697 - components: - - type: Transform - pos: -22.5,40.5 - parent: 2 - - uid: 28698 - components: - - type: Transform - pos: -22.5,41.5 - parent: 2 - - uid: 28699 - components: - - type: Transform - pos: -21.5,49.5 - parent: 2 - - uid: 28700 - components: - - type: Transform - pos: -22.5,49.5 - parent: 2 - - uid: 28701 - components: - - type: Transform - pos: -20.5,49.5 - parent: 2 - - uid: 28702 - components: - - type: Transform - pos: 67.5,7.5 - parent: 2 - - uid: 28704 - components: - - type: Transform - pos: 66.5,12.5 - parent: 2 - - uid: 28705 - components: - - type: Transform - pos: 63.5,-0.5 - parent: 2 - - uid: 28706 - components: - - type: Transform - pos: 68.5,13.5 - parent: 2 - - uid: 28708 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,10.5 - parent: 2 - - uid: 28710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-16.5 - parent: 2 - - uid: 28711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,13.5 - parent: 2 - - uid: 28712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,13.5 - parent: 2 - - uid: 28713 - components: - - type: Transform - pos: 62.5,-11.5 - parent: 2 - - uid: 28714 - components: - - type: Transform - pos: 17.5,-5.5 - parent: 2 - - uid: 28715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-3.5 - parent: 2 - - uid: 28716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-5.5 - parent: 2 - - uid: 28717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-2.5 - parent: 2 - - uid: 28718 - components: - - type: Transform - pos: 64.5,-7.5 - parent: 2 - - uid: 28719 - components: - - type: Transform - pos: 68.5,-2.5 - parent: 2 - - uid: 28720 - components: - - type: Transform - pos: 68.5,-4.5 - parent: 2 - - uid: 28721 - components: - - type: Transform - pos: 68.5,-5.5 - parent: 2 - - uid: 28722 - components: - - type: Transform - pos: 68.5,-3.5 - parent: 2 - - uid: 28723 - components: - - type: Transform - pos: 69.5,-6.5 - parent: 2 - - uid: 28724 - components: - - type: Transform - pos: 69.5,-5.5 - parent: 2 - - uid: 28725 - components: - - type: Transform - pos: 21.5,-1.5 - parent: 2 - - uid: 28726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,24.5 - parent: 2 - - uid: 28729 - components: - - type: Transform - pos: 71.5,7.5 - parent: 2 - - uid: 28730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-7.5 - parent: 2 - - uid: 28731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,5.5 - parent: 2 - - uid: 28733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-14.5 - parent: 2 - - uid: 28736 - components: - - type: Transform - pos: -38.5,-17.5 - parent: 2 - - uid: 28737 - components: - - type: Transform - pos: 68.5,-0.5 - parent: 2 - - uid: 28738 - components: - - type: Transform - pos: 72.5,6.5 - parent: 2 - - uid: 28794 - components: - - type: Transform - rot: -1.5707963267948966 rad pos: -35.5,-15.5 parent: 2 - - uid: 28831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,7.5 - parent: 2 - - uid: 29223 - components: - - type: Transform - pos: 59.5,-74.5 - parent: 2 - - uid: 29285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-55.5 - parent: 2 - - uid: 29286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-56.5 - parent: 2 - - uid: 29294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-61.5 - parent: 2 - - uid: 29295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-61.5 - parent: 2 - - uid: 29296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-61.5 - parent: 2 - - uid: 29297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-61.5 - parent: 2 - - uid: 29302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-61.5 - parent: 2 - - uid: 29326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-60.5 - parent: 2 - - uid: 29327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-59.5 - parent: 2 - - uid: 29328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-58.5 - parent: 2 - - uid: 29331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-57.5 - parent: 2 - - uid: 29335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-56.5 - parent: 2 - - uid: 29336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-56.5 - parent: 2 - - uid: 29347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-56.5 - parent: 2 - - uid: 29348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-56.5 - parent: 2 - - uid: 29349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-56.5 - parent: 2 - - uid: 29350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-55.5 - parent: 2 - - uid: 29368 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-54.5 - parent: 2 - - uid: 29377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-53.5 - parent: 2 - - uid: 29378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-52.5 - parent: 2 - - uid: 29454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-51.5 - parent: 2 - - uid: 29478 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-50.5 - parent: 2 - - uid: 29479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-50.5 - parent: 2 - - uid: 29480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-50.5 - parent: 2 - - uid: 29481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-50.5 - parent: 2 - - uid: 29482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-50.5 - parent: 2 - - uid: 29483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-50.5 - parent: 2 - - uid: 29484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-51.5 - parent: 2 - - uid: 29485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-52.5 - parent: 2 - - uid: 29486 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-53.5 - parent: 2 - - uid: 29502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-54.5 - parent: 2 - - uid: 29503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-54.5 - parent: 2 - - uid: 29504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-54.5 - parent: 2 - - uid: 29964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,23.5 - parent: 2 - - uid: 30009 - components: - - type: Transform - pos: -33.5,41.5 - parent: 2 - - uid: 30010 - components: - - type: Transform - pos: -33.5,40.5 - parent: 2 - - uid: 30012 - components: - - type: Transform - pos: -33.5,38.5 - parent: 2 - - uid: 30215 - components: - - type: Transform - pos: 52.5,-53.5 - parent: 2 - - uid: 30231 - components: - - type: Transform - pos: -33.5,37.5 - parent: 2 - - uid: 30268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,34.5 - parent: 2 - - uid: 30273 - components: - - type: Transform - pos: -23.5,30.5 - parent: 2 - - uid: 30274 - components: - - type: Transform - pos: -23.5,31.5 - parent: 2 - - uid: 30275 - components: - - type: Transform - pos: -23.5,32.5 - parent: 2 - - uid: 30276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,34.5 - parent: 2 - - uid: 30277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,33.5 - parent: 2 - - uid: 30280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,34.5 - parent: 2 - - uid: 30282 - components: - - type: Transform - pos: -26.5,31.5 - parent: 2 - - uid: 30283 - components: - - type: Transform - pos: -26.5,30.5 - parent: 2 - - uid: 30288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,34.5 - parent: 2 - - uid: 30305 - components: - - type: Transform - pos: -34.5,36.5 - parent: 2 - - uid: 30311 - components: - - type: Transform - pos: -33.5,36.5 - parent: 2 - - uid: 30317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,30.5 - parent: 2 - - uid: 30583 - components: - - type: Transform - pos: -32.5,40.5 - parent: 2 - - uid: 30694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,34.5 - parent: 2 - - uid: 30705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,33.5 - parent: 2 - - uid: 30729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,33.5 - parent: 2 - - uid: 30901 - components: - - type: Transform - pos: 67.5,20.5 - parent: 2 - - uid: 31487 - components: - - type: Transform - pos: 56.5,-74.5 - parent: 2 - - uid: 31502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-74.5 - parent: 2 - - uid: 31705 - components: - - type: Transform - pos: -46.5,-15.5 - parent: 2 - - uid: 31736 - components: - - type: Transform - pos: -47.5,-13.5 - parent: 2 - - uid: 31737 - components: - - type: Transform - pos: -47.5,-15.5 - parent: 2 - - uid: 31738 - components: - - type: Transform - pos: -46.5,-13.5 - parent: 2 - - uid: 31739 - components: - - type: Transform - pos: -45.5,-15.5 - parent: 2 - - uid: 31740 - components: - - type: Transform - pos: -45.5,-13.5 - parent: 2 - - uid: 31743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-9.5 - parent: 2 - - uid: 31744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-10.5 - parent: 2 -- proto: WallSolidRust + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1133 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageSec entities: - - uid: 7524 + - uid: 18673 components: - type: Transform - pos: -17.5,-61.5 + pos: 74.5,34.5 parent: 2 - - uid: 28739 + - uid: 18676 components: - type: Transform - pos: 50.5,6.5 + pos: 74.5,35.5 parent: 2 - - uid: 28740 + - uid: 18679 components: - type: Transform - pos: 53.5,8.5 + pos: 74.5,36.5 parent: 2 - - uid: 28741 + - uid: 18684 components: - type: Transform - pos: 57.5,11.5 + pos: 81.5,34.5 parent: 2 - - uid: 28742 + - uid: 18687 components: - type: Transform - pos: 59.5,19.5 + pos: 81.5,35.5 parent: 2 - - uid: 28743 + - uid: 18688 components: - type: Transform - pos: 61.5,13.5 + pos: 81.5,36.5 parent: 2 - - uid: 28744 + - uid: 26161 components: - type: Transform - pos: 54.5,17.5 + pos: 74.5,33.5 parent: 2 - - uid: 28745 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 26162 components: - type: Transform - pos: 63.5,17.5 + pos: 81.5,33.5 parent: 2 - - uid: 28746 + - uid: 41238 components: - type: Transform - pos: 63.5,16.5 - parent: 2 - - uid: 28747 - components: - - type: Transform - pos: -54.5,-14.5 - parent: 2 - - uid: 28748 - components: - - type: Transform - pos: -56.5,-16.5 - parent: 2 - - uid: 28749 - components: - - type: Transform - pos: -60.5,-14.5 - parent: 2 - - uid: 28750 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 2 - - uid: 28751 - components: - - type: Transform - pos: 87.5,-29.5 - parent: 2 - - uid: 28752 - components: - - type: Transform - pos: 87.5,-24.5 - parent: 2 - - uid: 28753 - components: - - type: Transform - pos: 75.5,-59.5 - parent: 2 - - uid: 28754 - components: - - type: Transform - pos: 72.5,-61.5 - parent: 2 - - uid: 28756 - components: - - type: Transform - pos: 41.5,-69.5 - parent: 2 - - uid: 28757 - components: - - type: Transform - pos: 44.5,-66.5 - parent: 2 - - uid: 28758 - components: - - type: Transform - pos: 46.5,-63.5 - parent: 2 - - uid: 28759 - components: - - type: Transform - pos: 33.5,-60.5 - parent: 2 - - uid: 28760 - components: - - type: Transform - pos: 35.5,-58.5 - parent: 2 - - uid: 28761 - components: - - type: Transform - pos: 40.5,-69.5 + pos: 45.5,58.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageWarden + entities: - uid: 28762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-43.5 + pos: 73.5,55.5 parent: 2 - - uid: 28763 - components: - - type: Transform - pos: -9.5,-46.5 - parent: 2 - - uid: 28766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-59.5 - parent: 2 - - uid: 28767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-59.5 - parent: 2 - - uid: 28768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-59.5 - parent: 2 - - uid: 28769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-59.5 - parent: 2 - - uid: 28770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-48.5 - parent: 2 - - uid: 28771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-48.5 - parent: 2 - - uid: 28772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-48.5 - parent: 2 - - uid: 28773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-48.5 - parent: 2 - - uid: 28774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-48.5 - parent: 2 - - uid: 28775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-57.5 - parent: 2 - - uid: 28776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-52.5 - parent: 2 - - uid: 28777 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-55.5 - parent: 2 - - uid: 28778 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-46.5 - parent: 2 - - uid: 28779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-46.5 - parent: 2 - - uid: 28780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-47.5 - parent: 2 - - uid: 28781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-41.5 - parent: 2 - - uid: 28782 - components: - - type: Transform - pos: 67.5,-64.5 - parent: 2 - - uid: 28783 - components: - - type: Transform - pos: 49.5,12.5 - parent: 2 - - uid: 28784 - components: - - type: Transform - pos: 48.5,12.5 - parent: 2 - - uid: 28785 - components: - - type: Transform - pos: 34.5,4.5 - parent: 2 - - uid: 28786 - components: - - type: Transform - pos: 41.5,14.5 - parent: 2 -- proto: WallWeaponCapacitorRecharger +- proto: SurveillanceCameraCommand entities: - - uid: 21568 + - uid: 7874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,39.5 + pos: -67.5,136.5 parent: 2 - - uid: 30335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,40.5 - parent: 2 - - uid: 30747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,43.5 - parent: 2 - - uid: 30748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,42.5 - parent: 2 -- proto: WardrobeAtmospherics - entities: - - uid: 28787 - components: - - type: Transform - pos: 39.5,5.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: WardrobeBlueFilled - entities: - - uid: 28789 - components: - - type: Transform - pos: 54.5,-43.5 - parent: 2 -- proto: WardrobeCargoFilled - entities: - - uid: 28790 - components: - - type: Transform - pos: -31.5,-22.5 - parent: 2 -- proto: WardrobeChapelFilled - entities: - - uid: 28791 - components: - - type: Transform - pos: 64.5,-0.5 - parent: 2 -- proto: WardrobeGreenFilled - entities: - - uid: 19239 - components: - - type: Transform - pos: 13.5,12.5 - parent: 2 -- proto: WardrobeMixedFilled - entities: - - uid: 1632 - components: - - type: Transform - pos: 10.5,12.5 - parent: 2 - - uid: 28797 - components: - - type: Transform - pos: -9.5,53.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: WardrobePrisonFilled - entities: - - uid: 1619 - components: - - type: Transform - pos: -4.5,39.5 - parent: 2 - - uid: 4272 - components: - - type: Transform - pos: -6.5,39.5 - parent: 2 - - uid: 5490 - components: - - type: Transform - pos: -7.5,39.5 - parent: 2 - - uid: 5491 - components: - - type: Transform - pos: -8.5,39.5 - parent: 2 - - uid: 19012 - components: - - type: Transform - pos: -5.5,39.5 - parent: 2 - - uid: 25076 - components: - - type: Transform - pos: -12.5,23.5 - parent: 2 - - uid: 28799 - components: - - type: Transform - pos: -0.5,23.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 28800 - components: - - type: Transform - pos: -4.5,23.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 28801 - components: - - type: Transform - pos: -8.5,23.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 28803 - components: - - type: Transform - pos: -17.5,40.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 28804 - components: - - type: Transform - pos: -20.5,40.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 28805 - components: - - type: Transform - pos: -21.5,48.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 28806 - components: - - type: Transform - pos: -18.5,48.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: WardrobeSalvageFilled - entities: - - uid: 19406 - components: - - type: Transform - pos: -23.5,-35.5 - parent: 2 - - uid: 19407 - components: - - type: Transform - pos: -23.5,-37.5 - parent: 2 - - uid: 19408 - components: - - type: Transform - pos: -23.5,-36.5 - parent: 2 - - uid: 25155 - components: - - type: Transform - pos: -23.5,-38.5 - parent: 2 -- proto: WardrobeScienceFilled - entities: - - uid: 19875 - components: - - type: Transform - pos: 74.5,-31.5 - parent: 2 - - uid: 28810 - components: - - type: Transform - pos: 73.5,-31.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: WardrobeWhiteFilled - entities: - - uid: 18963 - components: - - type: Transform - pos: 11.5,12.5 - parent: 2 -- proto: WardrobeYellowFilled - entities: - - uid: 1781 - components: - - type: Transform - pos: 12.5,12.5 - parent: 2 -- proto: WarpPoint - entities: - - uid: 28820 - components: - - type: Transform - pos: -49.5,18.5 - parent: 2 - - type: WarpPoint - location: port bow - - uid: 28821 - components: - - type: Transform - pos: 76.5,-62.5 - parent: 2 - - type: WarpPoint - location: starboard quarter -- proto: WaterCooler - entities: - - uid: 22327 - components: - - type: Transform - pos: -8.5,8.5 - parent: 2 - - uid: 26240 - components: - - type: Transform - pos: 13.5,8.5 - parent: 2 - - uid: 27486 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 2 - - uid: 28822 - components: - - type: Transform - pos: 63.5,-50.5 - parent: 2 - - uid: 28823 - components: - - type: Transform - pos: -8.411721,-19.364393 - parent: 2 - - uid: 28826 - components: - - type: Transform - pos: 52.5,-37.5 - parent: 2 -- proto: WaterTankFull - entities: - - uid: 9397 - components: - - type: Transform - pos: 31.5,-43.5 - parent: 2 - - uid: 19401 - components: - - type: Transform - pos: 72.5,15.5 - parent: 2 - - uid: 19841 - components: - - type: Transform - pos: -38.5,-38.5 - parent: 2 - - uid: 28828 - components: - - type: Transform - pos: -27.5,-12.5 - parent: 2 - - uid: 28830 - components: - - type: Transform - pos: 19.5,18.5 - parent: 2 - - uid: 28832 - components: - - type: Transform - pos: 51.5,11.5 - parent: 2 - - uid: 28833 - components: - - type: Transform - pos: -43.5,1.5 - parent: 2 - - uid: 28834 - components: - - type: Transform - pos: -60.5,7.5 - parent: 2 - - uid: 28835 - components: - - type: Transform - pos: -37.5,8.5 - parent: 2 - - uid: 28838 - components: - - type: Transform - pos: -23.5,-7.5 - parent: 2 - - uid: 28839 - components: - - type: Transform - pos: -15.5,-46.5 - parent: 2 - - uid: 28840 - components: - - type: Transform - pos: -33.5,-58.5 - parent: 2 - - uid: 28841 - components: - - type: Transform - pos: 48.5,-47.5 - parent: 2 - - uid: 28842 - components: - - type: Transform - pos: 32.5,-63.5 - parent: 2 - - uid: 28843 - components: - - type: Transform - pos: 74.5,-59.5 - parent: 2 - - uid: 28844 - components: - - type: Transform - pos: 82.5,-39.5 - parent: 2 - - uid: 28845 - components: - - type: Transform - pos: 86.5,-29.5 - parent: 2 - - uid: 28846 - components: - - type: Transform - pos: 6.5,-77.5 - parent: 2 - - uid: 28847 - components: - - type: Transform - pos: 42.5,14.5 - parent: 2 - - uid: 29376 - components: - - type: Transform - pos: 65.5,6.5 - parent: 2 - - uid: 29820 - components: - - type: Transform - pos: -49.5,-24.5 - parent: 2 - - uid: 31129 - components: - - type: Transform - pos: -31.5,-74.5 - parent: 2 - - uid: 31297 - components: - - type: Transform - pos: 3.5,2.5 - parent: 2 - - uid: 31769 - components: - - type: Transform - pos: -45.5,-10.5 - parent: 2 -- proto: WaterTankHighCapacity - entities: - - uid: 28848 - components: - - type: Transform - pos: 49.5,-9.5 - parent: 2 - - uid: 28850 - components: - - type: Transform - pos: 44.5,-10.5 - parent: 2 - - uid: 28851 - components: - - type: Transform - pos: -52.5,-7.5 - parent: 2 - - uid: 31697 - components: - - type: Transform - pos: -39.5,-4.5 - parent: 2 -- proto: WaterVaporCanister - entities: - - uid: 991 - components: - - type: Transform - pos: 26.5,-64.5 - parent: 2 - - uid: 9474 - components: - - type: Transform - pos: 74.5,-46.5 - parent: 2 - - uid: 17464 - components: - - type: Transform - pos: 14.5,-41.5 - parent: 2 -- proto: WeaponCapacitorRecharger - entities: - - uid: 17573 - components: - - type: Transform - pos: 72.5,-44.5 - parent: 2 - - uid: 19954 + - uid: 7893 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-7.5 + pos: -76.5,161.5 parent: 2 - - uid: 22621 - components: - - type: Transform - pos: 14.5,28.5 - parent: 2 - - uid: 24710 - components: - - type: Transform - pos: 14.5,26.5 - parent: 2 - - uid: 24756 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 2 - - uid: 28855 - components: - - type: Transform - pos: 37.5,-19.5 - parent: 2 - - uid: 28856 + - uid: 7894 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,-24.5 + pos: -67.5,124.5 parent: 2 - - uid: 28857 + - uid: 7896 components: - type: Transform - pos: -19.5,22.5 + rot: -1.5707963267948966 rad + pos: -55.5,129.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 28858 + - uid: 7900 components: - type: Transform - pos: 4.5,33.5 + rot: -1.5707963267948966 rad + pos: -52.5,127.5 parent: 2 - - uid: 28859 + - uid: 7901 components: - type: Transform - pos: 4.5,32.5 + rot: -1.5707963267948966 rad + pos: -52.5,133.5 parent: 2 - - uid: 28860 + - uid: 7906 components: - type: Transform - pos: 7.5,35.5 + rot: 3.141592653589793 rad + pos: -81.5,175.5 parent: 2 - - uid: 28861 - components: - - type: Transform - pos: 6.5,35.5 - parent: 2 - - uid: 28862 - components: - - type: Transform - pos: -11.5,-21.5 - parent: 2 - - uid: 28863 - components: - - type: Transform - pos: -57.5,3.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 28865 - components: - - type: Transform - pos: -20.5,-29.5 - parent: 2 - - uid: 28866 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 2 - - uid: 28867 - components: - - type: Transform - pos: -12.5,-11.5 - parent: 2 - - uid: 28868 + - uid: 7907 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-63.5 + pos: -83.5,160.5 parent: 2 - - uid: 29290 + - uid: 7908 components: - type: Transform - pos: 14.5,27.5 + rot: -1.5707963267948966 rad + pos: -80.5,165.5 parent: 2 - - uid: 30156 + - uid: 7909 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,42.5 + pos: -83.5,165.5 parent: 2 -- proto: WeaponDisablerPractice - entities: - - uid: 7843 + - uid: 7911 components: - type: Transform - pos: 14.498813,26.485939 + pos: -86.5,177.5 + parent: 2 + - uid: 7912 + components: + - type: Transform + pos: -96.5,167.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,100.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,98.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,98.5 + parent: 2 + - uid: 8029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,82.5 + parent: 2 + - uid: 9037 + components: + - type: Transform + pos: -61.5,128.5 + parent: 2 + - uid: 27447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,80.5 + parent: 2 + - type: SurveillanceCamera + id: Storage EVA + - uid: 33805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,98.5 + parent: 2 + - type: SurveillanceCamera + id: Cap room + - uid: 34568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,109.5 + parent: 2 + - type: SurveillanceCamera + id: Bridge + - uid: 34569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,99.5 + parent: 2 + - type: SurveillanceCamera + id: Evacuation + - uid: 34570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,95.5 + parent: 2 + - type: SurveillanceCamera + id: Bridge entrance +- proto: SurveillanceCameraEngineering + entities: + - uid: 1165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,29.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + pos: -85.5,39.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,37.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + pos: -84.5,45.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,46.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,37.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,34.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,33.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,26.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,26.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,37.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,60.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,54.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -132.5,51.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -132.5,41.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,58.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,45.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,54.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,54.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,67.5 + parent: 2 + - uid: 31209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,43.5 + parent: 2 + - type: SurveillanceCamera + id: Gate hall + - uid: 31210 + components: + - type: Transform + pos: -102.5,45.5 + parent: 2 + - type: SurveillanceCamera + id: Dressing room + - uid: 31211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,56.5 + parent: 2 + - type: SurveillanceCamera + id: Head room + - uid: 31212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,46.5 + parent: 2 + - type: SurveillanceCamera + id: Rest room + - uid: 31213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,48.5 + parent: 2 + - type: SurveillanceCamera + id: AME + - uid: 31214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,36.5 + parent: 2 + - type: SurveillanceCamera + id: Circuit storage + - uid: 31216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,41.5 + parent: 2 + - type: SurveillanceCamera + id: Docks +- proto: SurveillanceCameraGeneral + entities: + - uid: 2239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,100.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,103.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,94.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,63.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,59.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: -101.5,69.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,74.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: -122.5,105.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,101.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,106.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,103.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,95.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,93.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -130.5,103.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -130.5,93.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: -109.5,98.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,103.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,96.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,78.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: -63.5,73.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,84.5 parent: 2 - uid: 8021 components: - type: Transform - pos: 14.498813,27.485939 + rot: 3.141592653589793 rad + pos: -68.5,83.5 parent: 2 - - uid: 11415 + - uid: 8022 components: - type: Transform - pos: 14.498813,28.470314 + rot: 1.5707963267948966 rad + pos: -63.5,80.5 parent: 2 -- proto: WeaponDisablerSMG + - uid: 8023 + components: + - type: Transform + pos: -65.5,109.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + pos: -45.5,93.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,91.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,84.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,76.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,76.5 + parent: 2 + - uid: 8035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,84.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + pos: -57.5,73.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,66.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,63.5 + parent: 2 + - uid: 8039 + components: + - type: Transform + pos: -41.5,65.5 + parent: 2 + - uid: 8046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,96.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,96.5 + parent: 2 + - uid: 8048 + components: + - type: Transform + pos: -93.5,94.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,155.5 + parent: 2 + - uid: 27449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,82.5 + parent: 2 + - type: SurveillanceCamera + id: Gate room + - uid: 27450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,82.5 + parent: 2 + - type: SurveillanceCamera + id: Gate room + - uid: 27451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,75.5 + parent: 2 + - type: SurveillanceCamera + id: Gate room + - uid: 27457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,101.5 + parent: 2 + - type: SurveillanceCamera + id: Dorms + - uid: 27458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,91.5 + parent: 2 + - type: SurveillanceCamera + id: Left side + - uid: 27459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,91.5 + parent: 2 + - type: SurveillanceCamera + id: Right side +- proto: SurveillanceCameraMedical entities: - - uid: 11360 + - uid: 7913 components: - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11361 - components: - - type: Transform - parent: 11342 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WeaponEnergyGunMini - entities: - - uid: 26404 - components: - - type: Transform - pos: -1.4828072,-6.3837767 + pos: -11.5,167.5 parent: 2 - - type: EnergyGunFireModes - currentFireMode: - state: disabler - name: energy-gun-disable - shotType: Hitscan - fireCost: 50 - hitscanProto: BulletDisabler - projectileProto: null - - type: Item - heldPrefix: disabler - - type: HitscanBatteryAmmoProvider - fireCost: 50 - proto: BulletDisabler - - uid: 28869 + - uid: 7917 components: - type: Transform - pos: 4.4614744,33.066376 + pos: 2.5,165.5 parent: 2 - - type: EnergyGunFireModes - currentFireMode: - state: disabler - name: energy-gun-disable - shotType: Hitscan - fireCost: 50 - hitscanProto: BulletDisabler - projectileProto: null - - type: Item - heldPrefix: disabler - - type: HitscanBatteryAmmoProvider - fireCost: 50 - proto: BulletDisabler -- proto: WeaponEnergyGunPistolSecurity - entities: - - uid: 23543 + - uid: 7918 components: - type: Transform - pos: -1.5191084,40.490364 + rot: 1.5707963267948966 rad + pos: -17.5,167.5 parent: 2 - - type: EnergyGunFireModes - currentFireMode: - state: disabler - name: energy-gun-disable - shotType: Hitscan - fireCost: 50 - hitscanProto: BulletDisabler - projectileProto: null - - type: Item - heldPrefix: disabler - - type: HitscanBatteryAmmoProvider - fireCost: 50 - proto: BulletDisabler - - uid: 26767 + - uid: 7919 components: - type: Transform - pos: -1.5191084,40.44349 + rot: -1.5707963267948966 rad + pos: -5.5,171.5 parent: 2 - - type: EnergyGunFireModes - currentFireMode: - state: disabler - name: energy-gun-disable - shotType: Hitscan - fireCost: 50 - hitscanProto: BulletDisabler - projectileProto: null - - type: Item - heldPrefix: disabler - - type: HitscanBatteryAmmoProvider - fireCost: 50 - proto: BulletDisabler - - uid: 26828 + - uid: 7922 components: - type: Transform - pos: -1.5191084,40.59974 + rot: 3.141592653589793 rad + pos: -6.5,162.5 parent: 2 - - type: EnergyGunFireModes - currentFireMode: - state: disabler - name: energy-gun-disable - shotType: Hitscan - fireCost: 50 - hitscanProto: BulletDisabler - projectileProto: null - - type: Item - heldPrefix: disabler - - type: HitscanBatteryAmmoProvider - fireCost: 50 - proto: BulletDisabler -- proto: WeaponEnergyGunTactical - entities: - - uid: 28938 + - uid: 7923 components: - type: Transform - pos: -2.4649508,40.71463 + rot: 3.141592653589793 rad + pos: 4.5,163.5 parent: 2 - - type: Item - heldPrefix: disabler - - type: EnergyGunFireModes - currentFireMode: - state: disabler - name: energy-gun-disable - shotType: Hitscan - fireCost: 49 - hitscanProto: BulletDisablerSmg - projectileProto: null - - type: HitscanBatteryAmmoProvider - fireCost: 49 - proto: BulletDisablerSmg - - uid: 29966 + - uid: 7924 components: - type: Transform - pos: -2.4805758,40.449005 + rot: -1.5707963267948966 rad + pos: -1.5,179.5 parent: 2 - - type: Item - heldPrefix: disabler - - type: EnergyGunFireModes - currentFireMode: - state: disabler - name: energy-gun-disable - shotType: Hitscan - fireCost: 49 - hitscanProto: BulletDisablerSmg - projectileProto: null - - type: HitscanBatteryAmmoProvider - fireCost: 49 - proto: BulletDisablerSmg - - uid: 30306 + - uid: 7925 components: - type: Transform - pos: -2.467518,40.599785 + pos: -15.5,175.5 parent: 2 - - type: Item - heldPrefix: disabler - - type: EnergyGunFireModes - currentFireMode: - state: disabler - name: energy-gun-disable - shotType: Hitscan - fireCost: 49 - hitscanProto: BulletDisablerSmg - projectileProto: null - - type: HitscanBatteryAmmoProvider - fireCost: 49 - proto: BulletDisablerSmg -- proto: WeaponGunLaserCarbineAutomatic - entities: + - uid: 7926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,198.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,181.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,194.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + pos: -16.5,196.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + pos: 4.5,190.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,200.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,200.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + pos: -19.5,204.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,194.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,162.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,190.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + pos: 15.5,197.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,186.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,186.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,204.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,176.5 + parent: 2 + - uid: 19256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,182.5 + parent: 2 + - type: SurveillanceCamera + id: Gate + - uid: 27419 + components: + - type: Transform + pos: -14.5,191.5 + parent: 2 + - type: SurveillanceCamera + id: Reception + - uid: 27420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,190.5 + parent: 2 + - type: SurveillanceCamera + id: Med - uid: 27422 - components: - - type: Transform - pos: -0.5393534,42.44332 - parent: 2 - - uid: 27435 - components: - - type: Transform - pos: -0.5393534,42.56832 - parent: 2 - - uid: 27437 - components: - - type: Transform - pos: -0.5393534,42.28707 - parent: 2 -- proto: WeaponGunLaserCarbineSemi - entities: - - uid: 27421 - components: - - type: Transform - pos: -1.4768534,42.44332 - parent: 2 - - uid: 27438 - components: - - type: Transform - pos: -1.4768534,42.583946 - parent: 2 - - uid: 28837 - components: - - type: Transform - pos: -1.4768534,42.708946 - parent: 2 -- proto: WeaponLaserCarbinePractice - entities: - - uid: 7866 - components: - - type: Transform - pos: 14.498813,27.798439 - parent: 2 - - uid: 7880 - components: - - type: Transform - pos: 14.483188,26.798439 - parent: 2 - - uid: 17647 - components: - - type: Transform - pos: 72.54142,-43.491585 - parent: 2 - - uid: 17696 - components: - - type: Transform - pos: 72.54142,-43.866585 - parent: 2 - - uid: 22623 - components: - - type: Transform - pos: 14.467563,28.798439 - parent: 2 -- proto: WeaponPistolDeagle - entities: - - uid: 28872 - components: - - type: Transform - pos: 18.593704,43.54225 - parent: 2 -- proto: WeaponRifleAKM - entities: - - uid: 21396 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.309401,42.153793 + pos: -7.5,206.5 parent: 2 -- proto: WeaponRifleG36 - entities: - - uid: 24465 + - type: SurveillanceCamera + id: Morgue + - uid: 27423 components: - type: Transform - pos: 1.624589,47.55381 + pos: -16.5,203.5 parent: 2 - - uid: 24466 - components: - - type: Transform - pos: 1.608964,46.538185 - parent: 2 - - uid: 24467 - components: - - type: Transform - pos: 1.577714,45.52256 - parent: 2 -- proto: WeaponShotgunDoubleBarreledRubber - entities: - - uid: 23593 - components: - - type: Transform - pos: -0.47351906,40.705208 - parent: 2 - - uid: 23594 - components: - - type: Transform - pos: -0.45789406,40.486458 - parent: 2 - - uid: 30793 - components: - - type: Transform - pos: 66.490135,1.9125042 - parent: 2 -- proto: WeaponShotgunSawn - entities: - - uid: 30331 - components: - - type: MetaData - desc: Обрез что был создан специально для Главы СБ данной станции. Использует 50-тый калибр - name: тактический обрез Главы СБ - - type: Transform - parent: 23597 - - type: Physics - canCollide: False -- proto: WeaponShotgunSawnEmpty - entities: - - uid: 30431 - components: - - type: Transform - pos: -31.494076,45.52305 - parent: 2 -- proto: WeedSpray - entities: - - uid: 5504 - components: - - type: Transform - pos: -12.049046,47.574326 - parent: 2 - - uid: 28890 - components: - - type: Transform - pos: 48.492844,1.7853565 - parent: 2 - - uid: 28891 - components: - - type: Transform - pos: 48.25847,1.6759815 - parent: 2 - - uid: 28892 - components: - - type: Transform - pos: 48.35222,1.7228565 - parent: 2 -- proto: Welder - entities: - - uid: 28894 - components: - - type: Transform - pos: -37.277958,2.8924625 - parent: 2 -- proto: WelderMini - entities: - - uid: 30168 - components: - - type: Transform - pos: 29.512226,34.58573 - parent: 2 - - uid: 31793 - components: - - type: Transform - pos: 6.5240736,2.5061274 - parent: 2 -- proto: WeldingFuelTankFull - entities: - - uid: 1888 - components: - - type: Transform - pos: 22.5,27.5 - parent: 2 - - type: CMExplosionEffect - - uid: 3048 - components: - - type: Transform - pos: -72.5,17.5 - parent: 2 - - type: CMExplosionEffect - - uid: 8252 - components: - - type: Transform - pos: 31.5,-44.5 - parent: 2 - - type: CMExplosionEffect - - uid: 9032 - components: - - type: Transform - pos: 84.5,-40.5 - parent: 2 - - type: CMExplosionEffect - - uid: 10178 - components: - - type: Transform - pos: 55.5,-18.5 - parent: 2 - - type: CMExplosionEffect - - uid: 11073 - components: - - type: Transform - pos: -38.5,-36.5 - parent: 2 - - type: CMExplosionEffect - - uid: 19386 - components: - - type: Transform - pos: 73.5,15.5 - parent: 2 - - type: CMExplosionEffect - - uid: 23471 - components: - - type: Transform - pos: 9.5,-62.5 - parent: 2 - - type: CMExplosionEffect - - uid: 23931 - components: - - type: Transform - pos: 24.5,42.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28897 - components: - - type: Transform - pos: 18.5,18.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28899 - components: - - type: Transform - pos: 52.5,11.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28900 - components: - - type: Transform - pos: -40.5,1.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28902 - components: - - type: Transform - pos: -61.5,7.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28903 - components: - - type: Transform - pos: -37.5,7.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28905 - components: - - type: Transform - pos: -27.5,-13.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28907 - components: - - type: Transform - pos: -23.5,-6.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28908 - components: - - type: Transform - pos: -14.5,-46.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28909 - components: - - type: Transform - pos: -34.5,-58.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28911 - components: - - type: Transform - pos: 48.5,-46.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28912 - components: - - type: Transform - pos: -7.5,-75.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28913 - components: - - type: Transform - pos: 42.5,13.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28915 - components: - - type: Transform - pos: 32.5,-62.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28916 - components: - - type: Transform - pos: 73.5,-59.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28918 - components: - - type: Transform - pos: 84.5,-29.5 - parent: 2 - - type: CMExplosionEffect - - uid: 28921 - components: - - type: Transform - pos: -7.5,-77.5 - parent: 2 - - type: CMExplosionEffect - - uid: 29375 - components: - - type: Transform - pos: 66.5,6.5 - parent: 2 - - type: CMExplosionEffect - - uid: 29821 - components: - - type: Transform - pos: -49.5,-25.5 - parent: 2 - - type: CMExplosionEffect - - uid: 31299 - components: - - type: Transform - pos: 6.5,2.5 - parent: 2 - - type: CMExplosionEffect - - uid: 31770 - components: - - type: Transform - pos: -45.5,-11.5 - parent: 2 - - type: CMExplosionEffect -- proto: Windoor - entities: - - uid: 11652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,36.5 - parent: 2 - - uid: 28922 - components: - - type: Transform - pos: 58.5,-49.5 - parent: 2 - - uid: 28923 - components: - - type: MetaData - name: Reception Window - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 2 - - uid: 28926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-9.5 - parent: 2 - - uid: 28927 - components: - - type: MetaData - name: Reception Desk - - type: Transform - pos: 2.5,22.5 - parent: 2 - - uid: 28928 - components: - - type: MetaData - name: Reception Desk - - type: Transform - pos: 1.5,22.5 - parent: 2 - - uid: 28929 - components: - - type: MetaData - name: Brig Desk - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,23.5 - parent: 2 - - uid: 28930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 2 - - uid: 28931 - components: - - type: MetaData - name: Reception Desk - - type: Transform - pos: -0.5,29.5 - parent: 2 - - uid: 28932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,12.5 - parent: 2 - - uid: 28933 + - type: SurveillanceCamera + id: Head room + - uid: 27424 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,16.5 - parent: 2 - - uid: 28934 - components: - - type: Transform - pos: 72.5,4.5 - parent: 2 - - uid: 28935 - components: - - type: Transform - pos: 73.5,4.5 - parent: 2 - - uid: 28936 - components: - - type: Transform - pos: 74.5,4.5 - parent: 2 - - uid: 30296 - components: - - type: Transform - pos: -37.5,36.5 - parent: 2 - - uid: 32116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-23.5 - parent: 2 - - uid: 32117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 2 -- proto: WindoorCargoLocked - entities: - - uid: 13618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-23.5 - parent: 2 - - uid: 32115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 2 -- proto: WindoorHydroponicsLocked - entities: - - uid: 27041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 2 - - uid: 28945 - components: - - type: MetaData - name: Hydroponics Desk - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-10.5 - parent: 2 - - uid: 28946 - components: - - type: MetaData - name: Hydroponics Desk - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-10.5 - parent: 2 -- proto: WindoorJanitorLocked - entities: - - uid: 31677 - components: - - type: Transform - pos: -37.5,-6.5 - parent: 2 -- proto: WindoorKitchenLocked - entities: - - uid: 7854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 2 - - uid: 28948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 2 - - uid: 28949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-6.5 - parent: 2 -- proto: WindoorSecure - entities: - - uid: 5092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,42.5 - parent: 2 - - uid: 10075 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-39.5 - parent: 2 - - uid: 16393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-39.5 - parent: 2 - - uid: 28951 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-17.5 - parent: 2 - - uid: 28953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,42.5 - parent: 2 - - uid: 28954 - components: - - type: Transform - pos: -20.5,46.5 - parent: 2 - - uid: 28955 - components: - - type: Transform - pos: -17.5,46.5 - parent: 2 - - uid: 28956 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,42.5 - parent: 2 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 4314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,39.5 - parent: 2 - - uid: 11284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,36.5 - parent: 2 - - uid: 23575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,45.5 - parent: 2 - - uid: 23576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,46.5 - parent: 2 - - uid: 23577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,47.5 - parent: 2 - - uid: 24957 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,43.5 - parent: 2 - - uid: 24986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,46.5 - parent: 2 - - uid: 25411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,24.5 - parent: 2 - - uid: 28957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,29.5 - parent: 2 - - uid: 30775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,42.5 - parent: 2 -- proto: WindoorSecureAtmosphericsLocked - entities: - - uid: 8430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-42.5 - parent: 2 - - uid: 23323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,31.5 - parent: 2 - - uid: 25863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-43.5 - parent: 2 -- proto: WindoorSecureCargoLocked - entities: - - uid: 19224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-21.5 - parent: 2 -- proto: WindoorSecureChapelLocked - entities: - - uid: 28967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-0.5 - parent: 2 -- proto: WindoorSecureChemistryLocked - entities: - - uid: 28968 - components: - - type: MetaData - name: Chemistry Desk - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 2 - - uid: 28969 - components: - - type: MetaData - name: Chemistry Desk - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-23.5 - parent: 2 - - uid: 28970 - components: - - type: MetaData - name: Chemistry Desk - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-19.5 - parent: 2 - - uid: 28971 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 2 - - uid: 28972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-23.5 - parent: 2 - - uid: 28973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-21.5 - parent: 2 -- proto: WindoorSecureCommandLocked - entities: - - uid: 1307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 2 - - uid: 8156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,6.5 - parent: 2 - - uid: 8157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,6.5 - parent: 2 - - uid: 8217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,6.5 - parent: 2 - - uid: 8218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,6.5 - parent: 2 - - uid: 16794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-33.5 - parent: 2 - - uid: 20082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 2 - - uid: 21509 - components: - - type: Transform - pos: 15.5,36.5 - parent: 2 - - uid: 21922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-70.5 - parent: 2 - - uid: 24704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 2 - - uid: 25730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-40.5 - parent: 2 - - uid: 28974 - components: - - type: Transform - pos: -11.5,-13.5 - parent: 2 - - uid: 28978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-13.5 - parent: 2 - - uid: 28979 - components: - - type: Transform - pos: 8.5,-14.5 - parent: 2 - - uid: 28980 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 2 - - uid: 28986 - components: - - type: Transform - pos: -20.5,4.5 - parent: 2 - - uid: 28987 - components: - - type: Transform - pos: -22.5,4.5 - parent: 2 - - uid: 29868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-23.5 - parent: 2 -- proto: WindoorSecureDetectiveLocked - entities: - - uid: 343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,22.5 - parent: 2 - - uid: 10723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,20.5 - parent: 2 - - uid: 15873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,22.5 - parent: 2 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 8626 - components: - - type: Transform - pos: -25.5,-67.5 - parent: 2 - - uid: 10580 - components: - - type: Transform - pos: -23.5,-67.5 - parent: 2 - - uid: 21036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-52.5 - parent: 2 - - uid: 28990 - components: - - type: Transform - pos: -20.5,-67.5 - parent: 2 -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 28994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 2 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 28995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-19.5 - parent: 2 -- proto: WindoorSecureSalvageLocked - entities: - - uid: 2286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-39.5 - parent: 2 - - uid: 7040 - components: - - type: Transform - pos: -35.5,-33.5 - parent: 2 - - uid: 7521 - components: - - type: Transform - pos: -37.5,-33.5 - parent: 2 - - uid: 7755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-37.5 - parent: 2 - - uid: 28996 - components: - - type: Transform - pos: -26.5,-28.5 - parent: 2 -- proto: WindoorSecureScienceLocked - entities: - - uid: 20083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-17.5 - parent: 2 - - uid: 28950 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-17.5 - parent: 2 - - uid: 28997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-55.5 - parent: 2 - - uid: 28998 - components: - - type: MetaData - name: Research Delivery - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-21.5 - parent: 2 - - uid: 28999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-37.5 - parent: 2 -- proto: WindoorSecureSecurityLawyerLocked - entities: - - uid: 777 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,15.5 - parent: 2 - - uid: 2646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 2 - - uid: 11844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,17.5 - parent: 2 -- proto: WindoorSecureSecurityLocked - entities: - - uid: 582 - components: - - type: Transform - pos: -14.5,34.5 - parent: 2 - - uid: 1923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,25.5 - parent: 2 - - uid: 2068 - components: - - type: Transform - pos: 3.5,40.5 - parent: 2 - - uid: 4342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,40.5 - parent: 2 - - uid: 29003 - components: - - type: MetaData - name: Holding Cell - - type: Transform - pos: 9.5,25.5 - parent: 2 - - uid: 29004 - components: - - type: MetaData - name: Brig Desk - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,22.5 - parent: 2 - - uid: 29005 - components: - - type: MetaData - name: Brig Desk - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,22.5 - parent: 2 - - uid: 29010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,31.5 - parent: 2 - - uid: 29011 - components: - - type: MetaData - name: Security Checkpoint Desk - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,2.5 - parent: 2 - - uid: 29015 - components: - - type: Transform - pos: 7.5,38.5 - parent: 2 - - uid: 29016 - components: - - type: Transform - pos: 9.5,38.5 - parent: 2 - - uid: 29018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,48.5 - parent: 2 - - uid: 30332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,38.5 - parent: 2 - - uid: 30757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,38.5 - parent: 2 -- proto: WindoorSecureServiceLocked - entities: - - uid: 29019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-5.5 - parent: 2 - - uid: 29020 - components: - - type: Transform - pos: 60.5,-7.5 - parent: 2 -- proto: WindoorServiceLocked - entities: - - uid: 2158 - components: - - type: Transform - pos: 26.5,20.5 - parent: 2 - - uid: 29021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 2 -- proto: Window - entities: - - uid: 2542 - components: - - type: Transform - pos: -33.5,42.5 - parent: 2 - - uid: 5325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-38.5 - parent: 2 - - uid: 6235 - components: - - type: Transform - pos: 28.5,8.5 - parent: 2 - - uid: 7773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 2 - - uid: 11033 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 2 - - uid: 17429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 2 - - uid: 20412 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 2 - - uid: 21717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-11.5 - parent: 2 - - uid: 22196 - components: - - type: Transform - pos: 28.5,-15.5 - parent: 2 - - uid: 22234 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 2 - - uid: 22244 - components: - - type: Transform - pos: 19.5,7.5 - parent: 2 - - uid: 22280 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 2 - - uid: 23312 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,36.5 - parent: 2 - - uid: 25926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-38.5 - parent: 2 - - uid: 29022 - components: - - type: Transform - pos: -62.5,-0.5 - parent: 2 - - uid: 29023 - components: - - type: Transform - pos: -62.5,-1.5 - parent: 2 - - uid: 29025 - components: - - type: Transform - pos: -62.5,-3.5 - parent: 2 - - uid: 29026 - components: - - type: Transform - pos: -46.5,0.5 - parent: 2 - - uid: 29027 - components: - - type: Transform - pos: -44.5,0.5 - parent: 2 - - uid: 29028 - components: - - type: Transform - pos: -37.5,0.5 - parent: 2 - - uid: 29029 - components: - - type: Transform - pos: -39.5,0.5 - parent: 2 - - uid: 29030 - components: - - type: Transform - pos: 62.5,-15.5 - parent: 2 - - uid: 29033 - components: - - type: Transform - pos: -62.5,-2.5 - parent: 2 - - uid: 29034 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 2 - - uid: 29035 - components: - - type: Transform - pos: -34.5,-3.5 - parent: 2 - - uid: 29036 - components: - - type: Transform - pos: -29.5,-19.5 - parent: 2 - - uid: 29037 - components: - - type: Transform - pos: -29.5,-22.5 - parent: 2 - - uid: 29038 - components: - - type: Transform - pos: 86.5,-37.5 - parent: 2 - - uid: 29039 - components: - - type: Transform - pos: 85.5,-37.5 - parent: 2 - - uid: 29040 - components: - - type: Transform - pos: 52.5,-38.5 - parent: 2 - - uid: 29041 - components: - - type: Transform - pos: 24.5,-26.5 - parent: 2 - - uid: 29044 - components: - - type: Transform - pos: 27.5,-26.5 - parent: 2 - - uid: 29045 - components: - - type: Transform - pos: 57.5,-11.5 - parent: 2 - - uid: 29046 - components: - - type: Transform - pos: 59.5,-11.5 - parent: 2 - - uid: 29047 - components: - - type: Transform - pos: 78.5,-61.5 - parent: 2 - - uid: 29048 - components: - - type: Transform - pos: 35.5,-61.5 - parent: 2 - - uid: 29049 - components: - - type: Transform - pos: 34.5,-61.5 - parent: 2 - - uid: 29050 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 2 - - uid: 29054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-10.5 - parent: 2 - - uid: 29055 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 2 - - uid: 29056 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 2 - - uid: 29057 - components: - - type: Transform - pos: -18.5,-25.5 - parent: 2 - - uid: 29058 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 2 - - uid: 29059 - components: - - type: Transform - pos: 47.5,-1.5 - parent: 2 - - uid: 29060 - components: - - type: Transform - pos: 74.5,-11.5 - parent: 2 - - uid: 29061 - components: - - type: Transform - pos: 76.5,-11.5 - parent: 2 - - uid: 29062 - components: - - type: Transform - pos: 61.5,-11.5 - parent: 2 - - uid: 29063 - components: - - type: Transform - pos: 55.5,-11.5 - parent: 2 - - uid: 29064 - components: - - type: Transform - pos: 66.5,-15.5 - parent: 2 - - uid: 29065 - components: - - type: Transform - pos: 67.5,-15.5 - parent: 2 - - uid: 29066 - components: - - type: Transform - pos: 61.5,-15.5 - parent: 2 - - uid: 29067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-11.5 - parent: 2 - - uid: 29070 - components: - - type: Transform - pos: 51.5,-38.5 - parent: 2 - - uid: 29072 - components: - - type: Transform - pos: 68.5,-11.5 - parent: 2 - - uid: 29073 - components: - - type: Transform - pos: 63.5,-11.5 - parent: 2 - - uid: 29074 - components: - - type: Transform - pos: -6.5,46.5 - parent: 2 - - uid: 29075 - components: - - type: Transform - pos: -8.5,46.5 - parent: 2 - - uid: 29076 - components: - - type: Transform - pos: 69.5,-10.5 - parent: 2 - - uid: 29077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-37.5 - parent: 2 - - uid: 29078 - components: - - type: Transform - pos: 44.5,-1.5 - parent: 2 - - uid: 29079 - components: - - type: Transform - pos: 42.5,-1.5 - parent: 2 - - uid: 29080 - components: - - type: Transform - pos: 64.5,-10.5 - parent: 2 - - uid: 29081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-11.5 - parent: 2 - - uid: 30004 - components: - - type: Transform - pos: -33.5,44.5 - parent: 2 -- proto: WindowDirectional - entities: - - uid: 867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-12.5 - parent: 2 - - uid: 7849 - components: - - type: Transform - pos: -58.5,-12.5 - parent: 2 - - uid: 25722 - components: - - type: Transform - pos: -57.5,-12.5 + pos: -0.5,198.5 parent: 2 + - type: SurveillanceCamera + id: Storage - uid: 27425 components: - type: Transform - pos: -59.5,-12.5 + pos: 18.5,191.5 parent: 2 - - uid: 27426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-12.5 - parent: 2 - - uid: 29082 - components: - - type: Transform - pos: -8.5,51.5 - parent: 2 - - uid: 29083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,51.5 - parent: 2 - - uid: 29084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,52.5 - parent: 2 - - uid: 29085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,19.5 - parent: 2 - - uid: 29086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,16.5 - parent: 2 - - uid: 29091 - components: - - type: Transform - pos: 59.5,-49.5 - parent: 2 - - uid: 29092 - components: - - type: Transform - pos: 57.5,-49.5 - parent: 2 - - uid: 29093 - components: - - type: Transform - pos: 60.5,-49.5 - parent: 2 - - uid: 29095 - components: - - type: Transform - pos: -43.5,-17.5 - parent: 2 - - uid: 29096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-17.5 - parent: 2 - - uid: 29097 - components: - - type: Transform - pos: -41.5,-17.5 - parent: 2 - - uid: 29098 - components: - - type: Transform - pos: -42.5,-17.5 - parent: 2 - - uid: 29099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-17.5 - parent: 2 -- proto: WindowFrostedDirectional + - type: SurveillanceCamera + id: Virology +- proto: SurveillanceCameraRouterCommand entities: - - uid: 1046 + - uid: 8110 components: - type: Transform - pos: -24.5,31.5 + pos: -94.5,156.5 parent: 2 - - uid: 9811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,23.5 - parent: 2 - - uid: 12866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-20.5 - parent: 2 - - uid: 22622 - components: - - type: Transform - pos: 14.5,28.5 - parent: 2 - - uid: 24964 - components: - - type: Transform - pos: 14.5,27.5 - parent: 2 - - uid: 26836 - components: - - type: Transform - pos: 14.5,26.5 - parent: 2 - - uid: 29101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-7.5 - parent: 2 - - uid: 29103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,3.5 - parent: 2 - - uid: 29104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 2 - - uid: 29105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 2 - - uid: 29106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-8.5 - parent: 2 - - uid: 29107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-8.5 - parent: 2 - - uid: 29108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-8.5 - parent: 2 - - uid: 29109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 2 - - uid: 29111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,4.5 - parent: 2 - - uid: 29113 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-36.5 - parent: 2 - - uid: 29114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-36.5 - parent: 2 - - uid: 29115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 2 - - uid: 29116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-10.5 - parent: 2 - - uid: 29119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 2 - - uid: 29120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-36.5 - parent: 2 - - uid: 29122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-24.5 - parent: 2 -- proto: WindowReinforcedDirectional +- proto: SurveillanceCameraRouterEngineering entities: - - uid: 7 + - uid: 8126 + components: + - type: Transform + pos: -93.5,156.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 8123 + components: + - type: Transform + pos: -92.5,156.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 8122 + components: + - type: Transform + pos: -94.5,154.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 8117 + components: + - type: Transform + pos: -93.5,154.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 8121 + components: + - type: Transform + pos: -92.5,154.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 8118 + components: + - type: Transform + pos: -91.5,154.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 8116 + components: + - type: Transform + pos: -90.5,154.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 7902 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-67.5 + pos: -54.5,154.5 parent: 2 - - uid: 221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 2 - - uid: 424 - components: - - type: Transform - pos: -38.5,-6.5 - parent: 2 - - uid: 596 - components: - - type: Transform - pos: -15.5,34.5 - parent: 2 - - uid: 696 + - uid: 7903 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,14.5 + pos: -67.5,146.5 parent: 2 - - uid: 876 - components: - - type: Transform - pos: 23.5,20.5 - parent: 2 - - uid: 930 - components: - - type: Transform - pos: -39.5,-6.5 - parent: 2 - - uid: 1603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,39.5 - parent: 2 - - uid: 1728 + - uid: 7904 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-19.5 + pos: -62.5,156.5 parent: 2 - - uid: 2642 + - uid: 7905 + components: + - type: Transform + pos: -79.5,157.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + pos: -84.5,185.5 + parent: 2 + - uid: 7914 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,16.5 + pos: -92.5,179.5 parent: 2 - - uid: 2649 + - uid: 7915 components: - type: Transform - pos: -11.5,2.5 + pos: -74.5,185.5 parent: 2 - - uid: 2650 + - uid: 7916 components: - type: Transform - pos: -10.5,2.5 + pos: -65.5,180.5 parent: 2 - - uid: 3347 - components: - - type: Transform - pos: -12.5,2.5 - parent: 2 - - uid: 3479 + - uid: 8049 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-19.5 + pos: -93.5,152.5 parent: 2 - - uid: 4454 + - uid: 8050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,152.5 + parent: 2 + - uid: 17844 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,41.5 + pos: -73.5,160.5 parent: 2 - - uid: 5449 + - type: SurveillanceCamera + id: Gate + - uid: 27428 components: - type: Transform - pos: 25.5,20.5 + rot: 3.141592653589793 rad + pos: -88.5,160.5 parent: 2 - - uid: 5566 + - type: SurveillanceCamera + id: Head room + - uid: 27429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,170.5 + parent: 2 + - type: SurveillanceCamera + id: Xenoarch + - uid: 27430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,181.5 + parent: 2 + - type: SurveillanceCamera + id: Anomaly + - uid: 27431 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,44.5 + pos: -68.5,178.5 parent: 2 - - uid: 6228 + - type: SurveillanceCamera + id: Robotech + - uid: 27433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,170.5 + parent: 2 + - type: SurveillanceCamera + id: Reception +- proto: SurveillanceCameraSecurity + entities: + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,21.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: 77.5,33.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: 56.5,65.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 48.5,60.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,62.5 + parent: 2 + - type: SurveillanceCamera + id: Armory + - uid: 4787 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-11.5 + pos: 75.5,51.5 parent: 2 - - uid: 7251 + - type: SurveillanceCamera + id: Right side + - uid: 5841 components: - type: Transform - pos: -24.5,-67.5 + rot: 1.5707963267948966 rad + pos: 72.5,26.5 parent: 2 - - uid: 7262 + - uid: 6423 components: - type: Transform - pos: -26.5,-67.5 + rot: -1.5707963267948966 rad + pos: 45.5,56.5 parent: 2 - - uid: 7444 + - type: SurveillanceCamera + id: Pilote room + - uid: 7512 components: - type: Transform - pos: -12.5,-75.5 + pos: 68.5,65.5 + parent: 2 + - type: SurveillanceCamera + id: Cabin + - uid: 7944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,62.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 87.5,63.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + pos: 91.5,57.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,47.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,52.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,43.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: 86.5,38.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,32.5 parent: 2 - uid: 7954 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,52.5 + pos: 64.5,33.5 parent: 2 - - uid: 8180 + - uid: 7955 + components: + - type: Transform + pos: 89.5,26.5 + parent: 2 + - uid: 7958 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-19.5 + pos: 86.5,20.5 parent: 2 - - uid: 8181 + - uid: 7959 + components: + - type: Transform + pos: 64.5,38.5 + parent: 2 + - uid: 7960 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-19.5 + pos: 51.5,55.5 parent: 2 - - uid: 8694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-19.5 - parent: 2 - - uid: 8996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-28.5 - parent: 2 - - uid: 9231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-9.5 - parent: 2 - - uid: 10018 - components: - - type: Transform - pos: 24.5,20.5 - parent: 2 - - uid: 10061 - components: - - type: Transform - pos: -4.5,-13.5 - parent: 2 - - uid: 10239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-19.5 - parent: 2 - - uid: 10554 - components: - - type: Transform - pos: 7.5,-65.5 - parent: 2 - - uid: 10576 + - uid: 7962 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-65.5 + pos: 38.5,60.5 parent: 2 - - uid: 10579 + - uid: 7963 components: - type: Transform - pos: -22.5,-67.5 + pos: 69.5,57.5 parent: 2 - - uid: 10726 + - uid: 7964 + components: + - type: Transform + pos: 74.5,65.5 + parent: 2 + - uid: 8576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,24.5 + parent: 2 + - uid: 8629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,15.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,44.5 + parent: 2 + - type: SurveillanceCamera + id: Interrogation room + - uid: 8725 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,21.5 + pos: 59.5,30.5 parent: 2 - - uid: 10727 + - uid: 8726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,23.5 + parent: 2 + - uid: 10553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 107.5,48.5 + parent: 2 + - type: SurveillanceCamera + id: Arrivals + - uid: 12790 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,23.5 + pos: -3.5,76.5 parent: 2 - - uid: 10733 + - type: SurveillanceCamera + id: Detective's office + - uid: 13833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,40.5 + parent: 2 + - type: SurveillanceCamera + id: Gate + - uid: 18533 + components: + - type: Transform + pos: 107.5,57.5 + parent: 2 + - type: SurveillanceCamera + id: Evacuation + - uid: 19205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,67.5 + parent: 2 + - type: SurveillanceCamera + id: Head room + - uid: 22415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,51.5 + parent: 2 + - type: SurveillanceCamera + id: Left side + - uid: 36827 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,19.5 + pos: 76.5,59.5 + parent: 2 + - type: SurveillanceCamera + id: Sec dressing +- proto: SurveillanceCameraService + entities: + - uid: 1195 + components: + - type: Transform + pos: -27.5,61.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,68.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + pos: -2.5,84.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + pos: -1.5,60.5 + parent: 2 + - uid: 8040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,71.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,58.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,105.5 + parent: 2 + - uid: 13675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,69.5 + parent: 2 + - type: SurveillanceCamera + id: Botanic + - uid: 22417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,69.5 + parent: 2 + - type: SurveillanceCamera + id: Zookeeper office + - uid: 27440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,78.5 + parent: 2 + - type: SurveillanceCamera + id: Head room + - uid: 27442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,64.5 + parent: 2 + - type: SurveillanceCamera + id: Kitchen + - uid: 27445 + components: + - type: Transform + pos: -2.5,80.5 + parent: 2 + - type: SurveillanceCamera + id: Janitor's office + - uid: 27452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,81.5 + parent: 2 + - type: SurveillanceCamera + id: Library + - uid: 27453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,65.5 + parent: 2 + - type: SurveillanceCamera + id: Chapel + - uid: 27454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,67.5 + parent: 2 + - type: SurveillanceCamera + id: Crematorium + - uid: 27456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,80.5 + parent: 2 + - type: SurveillanceCamera + id: Courtroom +- proto: SurveillanceCameraSupply + entities: + - uid: 1655 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 + - type: SurveillanceCamera + id: Salvage + - uid: 7965 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-5.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-14.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-7.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-7.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-2.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-9.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,7.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,6.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,8.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,10.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: -54.5,10.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - uid: 19440 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - type: SurveillanceCamera + id: Gate + - uid: 27434 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - type: SurveillanceCamera + id: Docking + - uid: 27435 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - type: SurveillanceCamera + id: Storage + - uid: 27437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 2 + - type: SurveillanceCamera + id: Head room + - uid: 27439 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 2 +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 5782 + components: + - type: Transform + pos: 0.5,84.5 + parent: 2 +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 10685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,86.5 + parent: 2 + - uid: 10686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,85.5 + parent: 2 + - uid: 21419 + components: + - type: Transform + pos: -106.5,87.5 + parent: 2 +- proto: Syringe + entities: + - uid: 2650 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 372.10287 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: Desoxyephedrine + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2855 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 372.10287 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: Desoxyephedrine + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2991 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2992 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2993 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2994 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2995 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2996 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23665 + components: + - type: Transform + pos: 8.425763,185.64502 + parent: 2 + - uid: 23666 + components: + - type: Transform + pos: 8.571987,185.49884 + parent: 2 + - uid: 24118 + components: + - type: Transform + pos: 4.3811035,198.6691 + parent: 2 +- proto: SyringeBicaridine + entities: + - uid: 13014 + components: + - type: Transform + pos: -5.4878044,190.50526 + parent: 2 +- proto: SyringeDermaline + entities: + - uid: 13416 + components: + - type: Transform + pos: -31.454132,182.58287 + parent: 2 +- proto: Table + entities: + - uid: 251 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 54.5,28.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: 55.5,28.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,4.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,169.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: -61.5,-5.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,44.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 109.5,44.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,34.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,107.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,44.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: 72.5,69.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: 73.5,69.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: 71.5,69.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + pos: 70.5,69.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + pos: 69.5,69.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: 67.5,67.5 + parent: 2 + - uid: 4602 + components: + - type: Transform + pos: 68.5,67.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + pos: 69.5,67.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + pos: 73.5,67.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + pos: 74.5,67.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + pos: 75.5,67.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 110.5,49.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,49.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 108.5,44.5 + parent: 2 + - uid: 5033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 109.5,43.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 108.5,43.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: -15.5,67.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: 114.5,49.5 + parent: 2 + - uid: 8319 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: 57.5,25.5 + parent: 2 + - uid: 8387 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,26.5 + parent: 2 + - uid: 8538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,25.5 + parent: 2 + - uid: 8711 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 8840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,70.5 + parent: 2 + - uid: 8841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,70.5 + parent: 2 + - uid: 8842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,70.5 + parent: 2 + - uid: 8843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,70.5 + parent: 2 + - uid: 9579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,69.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + pos: -17.5,102.5 + parent: 2 + - uid: 10558 + components: + - type: Transform + pos: -91.5,55.5 + parent: 2 + - uid: 10624 + components: + - type: Transform + pos: -92.5,55.5 parent: 2 - uid: 10755 components: - type: Transform - pos: 4.5,40.5 + rot: 1.5707963267948966 rad + pos: -2.5,80.5 parent: 2 - - uid: 11126 + - uid: 10756 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,38.5 + pos: -1.5,80.5 parent: 2 - - uid: 11128 + - uid: 10955 components: - type: Transform - pos: 2.5,40.5 + pos: -17.5,69.5 parent: 2 - - uid: 11283 + - uid: 10965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,37.5 + pos: -16.5,65.5 parent: 2 - - uid: 12205 + - uid: 11004 + components: + - type: Transform + pos: -17.5,67.5 + parent: 2 + - uid: 11042 + components: + - type: Transform + pos: -13.5,70.5 + parent: 2 + - uid: 11112 + components: + - type: Transform + pos: -15.5,69.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: -13.5,69.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + pos: -16.5,69.5 + parent: 2 + - uid: 11198 + components: + - type: Transform + pos: -16.5,67.5 + parent: 2 + - uid: 11436 + components: + - type: Transform + pos: 108.5,61.5 + parent: 2 + - uid: 11438 + components: + - type: Transform + pos: 108.5,59.5 + parent: 2 + - uid: 11945 + components: + - type: Transform + pos: -13.5,71.5 + parent: 2 + - uid: 12070 components: - type: Transform rot: 3.141592653589793 rad - pos: 71.5,-39.5 + pos: -62.5,70.5 parent: 2 - - uid: 12416 + - uid: 12925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-24.5 + pos: -15.5,65.5 parent: 2 - - uid: 13269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-39.5 - parent: 2 - - uid: 13760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-38.5 - parent: 2 - - uid: 14379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-40.5 - parent: 2 - - uid: 14426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,1.5 - parent: 2 - - uid: 14428 + - uid: 12968 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,1.5 + pos: -11.5,61.5 parent: 2 - - uid: 14429 + - uid: 12994 components: - type: Transform - pos: -42.5,1.5 + pos: -11.5,62.5 parent: 2 - - uid: 14436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,1.5 - parent: 2 - - uid: 14746 + - uid: 13078 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-38.5 + pos: -14.5,65.5 parent: 2 - - uid: 15126 + - uid: 13192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-68.5 + pos: -9.5,191.5 parent: 2 - - uid: 15127 + - uid: 13193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-68.5 + pos: -5.5,192.5 parent: 2 - - uid: 16328 + - uid: 13229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-28.5 + pos: -3.5,69.5 parent: 2 - - uid: 16458 - components: - - type: Transform - pos: 36.5,-38.5 - parent: 2 - - uid: 16471 + - uid: 13258 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-65.5 + pos: -11.5,65.5 parent: 2 - - uid: 16767 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-31.5 - parent: 2 - - uid: 16768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-31.5 - parent: 2 - - uid: 16769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-31.5 - parent: 2 - - uid: 16770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-31.5 - parent: 2 - - uid: 16771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-32.5 - parent: 2 - - uid: 17513 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,35.5 - parent: 2 - - uid: 17730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 2 - - uid: 17973 - components: - - type: Transform - pos: 16.5,36.5 - parent: 2 - - uid: 18284 - components: - - type: Transform - pos: -33.5,-24.5 - parent: 2 - - uid: 18398 + - uid: 13259 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-49.5 + pos: -9.5,65.5 parent: 2 - - uid: 18741 + - uid: 13260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,65.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + pos: -0.5,69.5 + parent: 2 + - uid: 13271 + components: + - type: Transform + pos: 0.5,69.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + pos: -4.5,69.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + pos: 1.5,65.5 + parent: 2 + - uid: 14204 + components: + - type: Transform + pos: -54.5,155.5 + parent: 2 + - uid: 14213 + components: + - type: Transform + pos: -54.5,156.5 + parent: 2 + - uid: 14671 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,40.5 + pos: -78.5,86.5 parent: 2 - - uid: 19780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-38.5 - parent: 2 - - uid: 19963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-74.5 - parent: 2 - - uid: 20081 + - uid: 14703 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-9.5 + pos: -78.5,77.5 + parent: 2 + - uid: 15521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,57.5 + parent: 2 + - uid: 15528 + components: + - type: Transform + pos: -39.5,57.5 + parent: 2 + - uid: 15529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,58.5 + parent: 2 + - uid: 15530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,57.5 + parent: 2 + - uid: 15537 + components: + - type: Transform + pos: -35.5,57.5 + parent: 2 + - uid: 15884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,73.5 + parent: 2 + - uid: 16437 + components: + - type: Transform + pos: 115.5,49.5 + parent: 2 + - uid: 16495 + components: + - type: Transform + pos: -24.5,86.5 + parent: 2 + - uid: 16884 + components: + - type: Transform + pos: -86.5,79.5 + parent: 2 + - uid: 16891 + components: + - type: Transform + pos: -87.5,79.5 + parent: 2 + - uid: 17706 + components: + - type: Transform + pos: -110.5,91.5 + parent: 2 + - uid: 17836 + components: + - type: Transform + pos: 99.5,52.5 + parent: 2 + - uid: 17841 + components: + - type: Transform + pos: 99.5,54.5 + parent: 2 + - uid: 17850 + components: + - type: Transform + pos: -109.5,91.5 + parent: 2 + - uid: 17890 + components: + - type: Transform + pos: -64.5,151.5 + parent: 2 + - uid: 17972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,168.5 + parent: 2 + - uid: 19102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,45.5 + parent: 2 + - uid: 19601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,91.5 + parent: 2 + - uid: 19602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,91.5 + parent: 2 + - uid: 19603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,91.5 + parent: 2 + - uid: 19604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,91.5 + parent: 2 + - uid: 19667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,61.5 + parent: 2 + - uid: 22113 + components: + - type: Transform + pos: -75.5,154.5 + parent: 2 + - uid: 22122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,153.5 + parent: 2 + - uid: 22522 + components: + - type: Transform + pos: -9.5,189.5 + parent: 2 + - uid: 22583 + components: + - type: Transform + pos: -5.5,190.5 + parent: 2 + - uid: 23009 + components: + - type: Transform + pos: -8.5,199.5 + parent: 2 + - uid: 23021 + components: + - type: Transform + pos: -5.5,197.5 + parent: 2 + - uid: 23614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,195.5 + parent: 2 + - uid: 23615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,195.5 + parent: 2 + - uid: 23616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,193.5 + parent: 2 + - uid: 23617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,193.5 + parent: 2 + - uid: 23708 + components: + - type: Transform + pos: -88.5,38.5 + parent: 2 + - uid: 24020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,212.5 + parent: 2 + - uid: 24021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,212.5 + parent: 2 + - uid: 25062 + components: + - type: Transform + pos: -14.5,71.5 + parent: 2 + - uid: 25423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,167.5 + parent: 2 + - uid: 27781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,36.5 + parent: 2 + - uid: 27823 + components: + - type: Transform + pos: -79.5,33.5 + parent: 2 + - uid: 27824 + components: + - type: Transform + pos: -80.5,33.5 + parent: 2 + - uid: 27887 + components: + - type: Transform + pos: -95.5,45.5 + parent: 2 + - uid: 28009 + components: + - type: Transform + pos: -91.5,48.5 + parent: 2 + - uid: 28268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,33.5 + parent: 2 + - uid: 28285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,34.5 + parent: 2 + - uid: 28287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,35.5 + parent: 2 + - uid: 28784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 112.5,59.5 + parent: 2 + - uid: 28876 + components: + - type: Transform + pos: 104.5,59.5 + parent: 2 + - uid: 29876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,34.5 + parent: 2 + - uid: 29877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,34.5 + parent: 2 + - uid: 30771 + components: + - type: Transform + pos: -110.5,66.5 + parent: 2 + - uid: 30772 + components: + - type: Transform + pos: -109.5,66.5 + parent: 2 + - uid: 34580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,88.5 + parent: 2 + - uid: 34581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,87.5 + parent: 2 + - uid: 34582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,87.5 + parent: 2 + - uid: 35479 + components: + - type: Transform + pos: -19.5,197.5 + parent: 2 + - uid: 37746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,79.5 + parent: 2 + - uid: 39412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,167.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 1842 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: -88.5,86.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + pos: -65.5,113.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + pos: -84.5,90.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + pos: -86.5,85.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: -85.5,85.5 + parent: 2 + - uid: 8558 + components: + - type: Transform + pos: -88.5,88.5 + parent: 2 + - uid: 8559 + components: + - type: Transform + pos: -83.5,90.5 + parent: 2 + - uid: 8560 + components: + - type: Transform + pos: -85.5,90.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: -84.5,89.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + pos: -88.5,89.5 + parent: 2 + - uid: 8612 + components: + - type: Transform + pos: -83.5,89.5 + parent: 2 + - uid: 8682 + components: + - type: Transform + pos: -84.5,85.5 + parent: 2 + - uid: 8745 + components: + - type: Transform + pos: -85.5,89.5 + parent: 2 + - uid: 14455 + components: + - type: Transform + pos: -61.5,86.5 + parent: 2 + - uid: 14457 + components: + - type: Transform + pos: -62.5,86.5 + parent: 2 + - uid: 14552 + components: + - type: Transform + pos: -63.5,86.5 + parent: 2 + - uid: 25276 + components: + - type: Transform + pos: -62.5,87.5 + parent: 2 + - uid: 25279 + components: + - type: Transform + pos: -63.5,87.5 + parent: 2 + - uid: 36851 + components: + - type: Transform + pos: -61.5,87.5 + parent: 2 + - uid: 37245 + components: + - type: Transform + pos: -38.5,172.5 + parent: 2 + - uid: 37246 + components: + - type: Transform + pos: -37.5,172.5 + parent: 2 + - uid: 37247 + components: + - type: Transform + pos: -37.5,173.5 + parent: 2 + - uid: 37248 + components: + - type: Transform + pos: -38.5,173.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,3.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,4.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,5.5 + parent: 2 + - uid: 4195 + components: + - type: Transform + pos: -136.5,37.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -136.5,109.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.5,109.5 + parent: 2 + - uid: 6618 + components: + - type: Transform + pos: -49.5,65.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + pos: -49.5,66.5 + parent: 2 + - uid: 7044 + components: + - type: Transform + pos: 80.5,41.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,23.5 + parent: 2 + - uid: 10703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,84.5 + parent: 2 + - uid: 11047 + components: + - type: Transform + pos: -31.5,58.5 + parent: 2 + - uid: 11107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,61.5 + parent: 2 + - uid: 11108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,61.5 + parent: 2 + - uid: 11158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,61.5 + parent: 2 + - uid: 11199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,61.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.5,105.5 + parent: 2 + - uid: 13393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,105.5 + parent: 2 + - uid: 14136 + components: + - type: Transform + pos: -81.5,100.5 + parent: 2 + - uid: 14284 + components: + - type: Transform + pos: -80.5,100.5 + parent: 2 + - uid: 14310 + components: + - type: Transform + pos: -79.5,100.5 + parent: 2 + - uid: 14340 + components: + - type: Transform + pos: -81.5,98.5 + parent: 2 + - uid: 14538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,199.5 + parent: 2 + - uid: 15219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,105.5 + parent: 2 + - uid: 15403 + components: + - type: Transform + pos: -55.5,80.5 + parent: 2 + - uid: 15564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,63.5 + parent: 2 + - uid: 15565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,63.5 + parent: 2 + - uid: 15566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,63.5 + parent: 2 + - uid: 15691 + components: + - type: Transform + pos: -38.5,52.5 + parent: 2 + - uid: 15692 + components: + - type: Transform + pos: -37.5,52.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + pos: -54.5,74.5 + parent: 2 + - uid: 15849 + components: + - type: Transform + pos: -54.5,73.5 + parent: 2 + - uid: 15868 + components: + - type: Transform + pos: -54.5,84.5 + parent: 2 + - uid: 15869 + components: + - type: Transform + pos: -54.5,85.5 + parent: 2 + - uid: 16565 + components: + - type: Transform + pos: -33.5,91.5 + parent: 2 + - uid: 17120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -136.5,105.5 + parent: 2 + - uid: 17277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-4.5 + parent: 2 + - uid: 17283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-4.5 + parent: 2 + - uid: 17897 + components: + - type: Transform + pos: 81.5,41.5 + parent: 2 + - uid: 18130 + components: + - type: Transform + pos: -103.5,57.5 + parent: 2 + - uid: 18157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,108.5 + parent: 2 + - uid: 18268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,109.5 + parent: 2 + - uid: 18269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,109.5 + parent: 2 + - uid: 20357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,165.5 + parent: 2 + - uid: 20358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,165.5 + parent: 2 + - uid: 20359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,165.5 + parent: 2 + - uid: 20380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,162.5 + parent: 2 + - uid: 20381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,162.5 + parent: 2 + - uid: 20382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,162.5 + parent: 2 + - uid: 20996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,200.5 + parent: 2 + - uid: 22096 + components: + - type: Transform + pos: -46.5,64.5 + parent: 2 + - uid: 22101 + components: + - type: Transform + pos: -47.5,64.5 + parent: 2 + - uid: 22413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,196.5 + parent: 2 + - uid: 22445 + components: + - type: Transform + pos: 3.5,182.5 + parent: 2 + - uid: 22731 + components: + - type: Transform + pos: 5.5,182.5 + parent: 2 + - uid: 22861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,183.5 + parent: 2 + - uid: 22914 + components: + - type: Transform + pos: -32.5,91.5 + parent: 2 + - uid: 22947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,197.5 + parent: 2 + - uid: 22981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,196.5 + parent: 2 + - uid: 23374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,200.5 + parent: 2 + - uid: 23379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,196.5 + parent: 2 + - uid: 23381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,199.5 + parent: 2 + - uid: 23414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,196.5 + parent: 2 + - uid: 24139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,202.5 + parent: 2 + - uid: 24140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,201.5 + parent: 2 + - uid: 25309 + components: + - type: Transform + pos: -127.5,94.5 + parent: 2 + - uid: 25310 + components: + - type: Transform + pos: -127.5,95.5 + parent: 2 + - uid: 25311 + components: + - type: Transform + pos: -127.5,96.5 + parent: 2 + - uid: 25312 + components: + - type: Transform + pos: -127.5,98.5 + parent: 2 + - uid: 25313 + components: + - type: Transform + pos: -127.5,99.5 + parent: 2 + - uid: 25314 + components: + - type: Transform + pos: -127.5,100.5 + parent: 2 + - uid: 25544 + components: + - type: Transform + pos: 5.5,177.5 + parent: 2 + - uid: 26873 + components: + - type: Transform + pos: -119.5,97.5 + parent: 2 + - uid: 26874 + components: + - type: Transform + pos: -118.5,97.5 + parent: 2 + - uid: 26875 + components: + - type: Transform + pos: -117.5,97.5 + parent: 2 + - uid: 27187 + components: + - type: Transform + pos: -116.5,97.5 + parent: 2 + - uid: 28031 + components: + - type: Transform + pos: -114.5,102.5 + parent: 2 + - uid: 28050 + components: + - type: Transform + pos: -115.5,102.5 + parent: 2 + - uid: 28611 + components: + - type: Transform + pos: -103.5,58.5 + parent: 2 + - uid: 32474 + components: + - type: Transform + pos: -68.5,96.5 + parent: 2 + - uid: 32475 + components: + - type: Transform + pos: -68.5,97.5 + parent: 2 + - uid: 35414 + components: + - type: Transform + pos: -104.5,149.5 + parent: 2 + - uid: 35415 + components: + - type: Transform + pos: -103.5,149.5 + parent: 2 +- proto: TableCounterWood + entities: + - uid: 15484 + components: + - type: Transform + pos: -34.5,65.5 + parent: 2 + - uid: 15485 + components: + - type: Transform + pos: -33.5,65.5 + parent: 2 + - uid: 16858 + components: + - type: Transform + pos: -17.5,182.5 + parent: 2 + - uid: 22628 + components: + - type: Transform + pos: -5.5,180.5 + parent: 2 + - uid: 22629 + components: + - type: Transform + pos: -5.5,179.5 + parent: 2 + - uid: 23204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,182.5 + parent: 2 + - uid: 29695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,71.5 + parent: 2 + - uid: 29696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,71.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 2841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,20.5 + parent: 2 + - uid: 5733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,142.5 + parent: 2 + - uid: 17903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,99.5 + parent: 2 + - uid: 19281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,150.5 + parent: 2 + - uid: 19563 + components: + - type: Transform + pos: -125.5,94.5 + parent: 2 + - uid: 19680 + components: + - type: Transform + pos: -96.5,147.5 + parent: 2 + - uid: 19681 + components: + - type: Transform + pos: -95.5,147.5 + parent: 2 + - uid: 23662 + components: + - type: Transform + pos: 9.5,185.5 + parent: 2 + - uid: 23664 + components: + - type: Transform + pos: 8.5,184.5 + parent: 2 + - uid: 28240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,141.5 + parent: 2 + - uid: 28241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,143.5 + parent: 2 + - uid: 28242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,142.5 + parent: 2 + - uid: 29562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,35.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 3774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,193.5 + parent: 2 + - uid: 3789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,190.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,46.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + pos: -4.5,172.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,129.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,129.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,131.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,131.5 + parent: 2 + - uid: 18030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,95.5 + parent: 2 + - uid: 18071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,98.5 + parent: 2 + - uid: 18441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,96.5 + parent: 2 + - uid: 19217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,150.5 + parent: 2 + - uid: 19279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,151.5 + parent: 2 + - uid: 19564 + components: + - type: Transform + pos: -124.5,94.5 + parent: 2 + - uid: 19643 + components: + - type: Transform + pos: -125.5,100.5 + parent: 2 + - uid: 19682 + components: + - type: Transform + pos: -97.5,147.5 + parent: 2 + - uid: 20118 + components: + - type: Transform + pos: -83.5,183.5 + parent: 2 + - uid: 20119 + components: + - type: Transform + pos: -83.5,182.5 + parent: 2 + - uid: 20120 + components: + - type: Transform + pos: -83.5,181.5 + parent: 2 + - uid: 20121 + components: + - type: Transform + pos: -75.5,183.5 + parent: 2 + - uid: 20122 + components: + - type: Transform + pos: -75.5,182.5 + parent: 2 + - uid: 20123 + components: + - type: Transform + pos: -75.5,181.5 parent: 2 - uid: 20166 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-9.5 + pos: -77.5,180.5 parent: 2 - - uid: 20210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-75.5 - parent: 2 - - uid: 20226 + - uid: 20167 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-9.5 + pos: -78.5,180.5 parent: 2 - - uid: 20363 + - uid: 20168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-73.5 + rot: 3.141592653589793 rad + pos: -80.5,180.5 parent: 2 - - uid: 20540 + - uid: 20169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-13.5 + rot: 3.141592653589793 rad + pos: -81.5,180.5 parent: 2 - - uid: 20637 + - uid: 20474 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-73.5 + pos: -98.5,169.5 parent: 2 - - uid: 20762 + - uid: 20476 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,33.5 + pos: -97.5,170.5 parent: 2 - - uid: 20986 + - uid: 20477 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-9.5 + pos: -97.5,169.5 + parent: 2 + - uid: 20492 + components: + - type: Transform + pos: -92.5,167.5 + parent: 2 + - uid: 20493 + components: + - type: Transform + pos: -93.5,167.5 + parent: 2 + - uid: 20499 + components: + - type: Transform + pos: -91.5,167.5 + parent: 2 + - uid: 20895 + components: + - type: Transform + pos: -68.5,175.5 + parent: 2 + - uid: 20896 + components: + - type: Transform + pos: -68.5,176.5 + parent: 2 + - uid: 20897 + components: + - type: Transform + pos: -68.5,177.5 + parent: 2 + - uid: 20987 + components: + - type: Transform + pos: -73.5,169.5 + parent: 2 + - uid: 20988 + components: + - type: Transform + pos: -73.5,168.5 parent: 2 - uid: 20989 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-9.5 + pos: -73.5,167.5 parent: 2 - - uid: 21458 + - uid: 21052 components: - type: Transform - pos: -13.5,34.5 + pos: -68.5,169.5 parent: 2 - - uid: 21512 + - uid: 21053 components: - type: Transform - pos: 17.5,36.5 + pos: -68.5,170.5 parent: 2 - - uid: 21518 + - uid: 21054 + components: + - type: Transform + pos: -68.5,171.5 + parent: 2 + - uid: 23318 + components: + - type: Transform + pos: -16.5,203.5 + parent: 2 + - uid: 23319 + components: + - type: Transform + pos: -15.5,203.5 + parent: 2 + - uid: 23320 + components: + - type: Transform + pos: -17.5,203.5 + parent: 2 + - uid: 23321 + components: + - type: Transform + pos: -16.5,207.5 + parent: 2 + - uid: 23322 + components: + - type: Transform + pos: -15.5,207.5 + parent: 2 + - uid: 23323 + components: + - type: Transform + pos: -15.5,206.5 + parent: 2 + - uid: 23324 + components: + - type: Transform + pos: -16.5,206.5 + parent: 2 + - uid: 24054 + components: + - type: Transform + pos: -124.5,100.5 + parent: 2 + - uid: 24303 + components: + - type: Transform + pos: -119.5,94.5 + parent: 2 + - uid: 25083 + components: + - type: Transform + pos: -118.5,95.5 + parent: 2 + - uid: 25117 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,36.5 + pos: -2.5,172.5 parent: 2 - - uid: 21742 + - uid: 25118 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-46.5 + pos: -3.5,172.5 parent: 2 - - uid: 22074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-13.5 - parent: 2 - - uid: 22079 - components: - - type: Transform - pos: 3.5,-13.5 - parent: 2 - - uid: 22102 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 2 - - uid: 22179 - components: - - type: Transform - pos: -36.5,-6.5 - parent: 2 - - uid: 22284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-86.5 - parent: 2 - - uid: 22526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-73.5 - parent: 2 - - uid: 22769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-74.5 - parent: 2 - - uid: 23260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-68.5 - parent: 2 - - uid: 23528 + - uid: 25119 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-69.5 + pos: -1.5,169.5 parent: 2 - - uid: 23549 + - uid: 25138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-68.5 + pos: -119.5,95.5 parent: 2 - - uid: 23573 + - uid: 25150 components: - type: Transform - pos: 1.5,46.5 + pos: -119.5,93.5 parent: 2 - - uid: 23574 + - uid: 25389 components: - type: Transform - pos: 1.5,47.5 + pos: -3.5,165.5 parent: 2 - - uid: 23581 + - uid: 25390 + components: + - type: Transform + pos: -4.5,165.5 + parent: 2 + - uid: 28246 components: - type: Transform rot: 3.141592653589793 rad - pos: 71.5,-28.5 + pos: -85.5,141.5 parent: 2 - - uid: 23747 + - uid: 28247 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-86.5 + pos: -83.5,143.5 parent: 2 - - uid: 23852 +- proto: TablePlasmaGlass + entities: + - uid: 19835 components: - type: Transform - pos: 14.5,36.5 + pos: -86.5,154.5 parent: 2 - - uid: 23889 + - uid: 19919 components: - type: Transform - pos: 13.5,36.5 + pos: -87.5,154.5 parent: 2 - - uid: 24062 + - uid: 23637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-75.5 + pos: 21.5,189.5 parent: 2 - - uid: 24456 + - uid: 23640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-86.5 + pos: 21.5,188.5 parent: 2 - - uid: 24952 + - uid: 23641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-36.5 + pos: 20.5,188.5 parent: 2 - - uid: 24997 +- proto: TableReinforced + entities: + - uid: 826 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 37.5,63.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 910 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,42.5 + pos: -32.5,-5.5 parent: 2 - - uid: 25154 + - uid: 1117 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,44.5 + pos: -49.5,-11.5 parent: 2 - - uid: 25244 + - uid: 1120 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,45.5 + pos: -49.5,-12.5 parent: 2 - - uid: 25245 + - uid: 1158 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 1499 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,47.5 + pos: -33.5,201.5 parent: 2 - - uid: 25246 + - uid: 1735 components: - type: Transform - pos: -0.5,45.5 + pos: -28.5,-13.5 parent: 2 - - uid: 25247 + - uid: 1736 components: - type: Transform - pos: -1.5,45.5 + pos: -29.5,-13.5 parent: 2 - - uid: 25248 + - uid: 2179 components: - type: Transform - pos: -2.5,45.5 + pos: -123.5,32.5 parent: 2 - - uid: 25249 + - uid: 2426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,44.5 + pos: 38.5,63.5 parent: 2 - - uid: 25250 + - uid: 2761 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,44.5 + pos: 26.5,20.5 parent: 2 - - uid: 25251 + - uid: 2762 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,44.5 + pos: 26.5,19.5 parent: 2 - - uid: 25252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,37.5 - parent: 2 - - uid: 25253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,37.5 - parent: 2 - - uid: 25254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,37.5 - parent: 2 - - uid: 25257 - components: - - type: Transform - pos: -2.5,38.5 - parent: 2 - - uid: 25264 - components: - - type: Transform - pos: -1.5,38.5 - parent: 2 - - uid: 25265 - components: - - type: Transform - pos: -0.5,38.5 - parent: 2 - - uid: 25728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-40.5 - parent: 2 - - uid: 25729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-40.5 - parent: 2 - - uid: 25788 + - uid: 2763 components: - type: Transform pos: 27.5,20.5 parent: 2 - - uid: 25929 + - uid: 2765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,48.5 + pos: 26.5,16.5 parent: 2 - - uid: 26143 + - uid: 2766 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: 67.5,61.5 + parent: 2 + - uid: 4045 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-28.5 + pos: 94.5,50.5 parent: 2 - - uid: 26427 + - uid: 4084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,52.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 116.5,59.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: -70.5,149.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,60.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: 71.5,42.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: 70.5,43.5 + parent: 2 + - uid: 4444 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,37.5 + pos: 95.5,50.5 parent: 2 - - uid: 26505 + - uid: 4519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 + pos: 74.5,62.5 parent: 2 - - uid: 27448 + - uid: 4562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-11.5 + pos: 74.5,61.5 parent: 2 - - uid: 28325 + - uid: 4663 components: - type: Transform - pos: 17.5,-88.5 + pos: -69.5,147.5 parent: 2 - - uid: 28436 + - uid: 4802 components: - type: Transform - pos: 18.5,-88.5 + pos: 74.5,63.5 parent: 2 - - uid: 28963 - components: - - type: Transform - pos: 19.5,-88.5 - parent: 2 - - uid: 29123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,13.5 - parent: 2 - - uid: 29124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,14.5 - parent: 2 - - uid: 29125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,16.5 - parent: 2 - - uid: 29126 + - uid: 4854 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,16.5 + pos: 94.5,56.5 parent: 2 - - uid: 29127 + - uid: 4859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,50.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,56.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,56.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,53.5 + parent: 2 + - uid: 4921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,53.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,53.5 + parent: 2 + - uid: 5138 + components: + - type: Transform + pos: -41.5,79.5 + parent: 2 + - uid: 5152 + components: + - type: Transform + pos: 46.5,55.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,52.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + pos: 59.5,67.5 + parent: 2 + - uid: 5275 + components: + - type: Transform + pos: 59.5,65.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 5935 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,13.5 + pos: 80.5,59.5 parent: 2 - - uid: 29128 + - uid: 5943 + components: + - type: Transform + pos: -19.5,70.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,202.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,202.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,202.5 + parent: 2 + - uid: 7316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,200.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,202.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,80.5 + parent: 2 + - uid: 10574 + components: + - type: Transform + pos: -13.5,79.5 + parent: 2 + - uid: 10615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,79.5 + parent: 2 + - uid: 10616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,80.5 + parent: 2 + - uid: 10617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,81.5 + parent: 2 + - uid: 10627 + components: + - type: Transform + pos: -11.5,82.5 + parent: 2 + - uid: 11007 + components: + - type: Transform + pos: -8.5,70.5 + parent: 2 + - uid: 11009 + components: + - type: Transform + pos: -28.5,64.5 + parent: 2 + - uid: 11010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,70.5 + parent: 2 + - uid: 11029 + components: + - type: Transform + pos: -44.5,103.5 + parent: 2 + - uid: 11068 + components: + - type: Transform + pos: -19.5,66.5 + parent: 2 + - uid: 11129 + components: + - type: Transform + pos: -24.5,64.5 + parent: 2 + - uid: 11130 + components: + - type: Transform + pos: -19.5,68.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: -19.5,69.5 + parent: 2 + - uid: 11428 + components: + - type: Transform + pos: -27.5,64.5 + parent: 2 + - uid: 11429 + components: + - type: Transform + pos: -26.5,64.5 + parent: 2 + - uid: 11726 + components: + - type: Transform + pos: -19.5,67.5 + parent: 2 + - uid: 11758 + components: + - type: Transform + pos: -44.5,101.5 + parent: 2 + - uid: 11762 + components: + - type: Transform + pos: -46.5,96.5 + parent: 2 + - uid: 11914 + components: + - type: Transform + pos: -17.5,62.5 + parent: 2 + - uid: 11935 + components: + - type: Transform + pos: -16.5,62.5 + parent: 2 + - uid: 11936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,68.5 + parent: 2 + - uid: 12065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,67.5 + parent: 2 + - uid: 12226 + components: + - type: Transform + pos: -25.5,64.5 + parent: 2 + - uid: 12227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,63.5 + parent: 2 + - uid: 12228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,63.5 + parent: 2 + - uid: 12235 + components: + - type: Transform + pos: -39.5,79.5 + parent: 2 + - uid: 12817 + components: + - type: Transform + pos: 60.5,60.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + pos: 57.5,59.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + pos: 57.5,61.5 + parent: 2 + - uid: 13578 + components: + - type: Transform + pos: -43.5,109.5 + parent: 2 + - uid: 13606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,107.5 + parent: 2 + - uid: 13607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,107.5 + parent: 2 + - uid: 13685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,103.5 + parent: 2 + - uid: 13686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,103.5 + parent: 2 + - uid: 13687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,103.5 + parent: 2 + - uid: 13688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,103.5 + parent: 2 + - uid: 13716 + components: + - type: Transform + pos: -46.5,101.5 + parent: 2 + - uid: 13724 + components: + - type: Transform + pos: -45.5,101.5 + parent: 2 + - uid: 14110 + components: + - type: Transform + pos: 73.5,43.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,36.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + pos: -44.5,100.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: -45.5,96.5 + parent: 2 + - uid: 14223 + components: + - type: Transform + pos: -45.5,94.5 + parent: 2 + - uid: 14234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,38.5 + parent: 2 + - uid: 14906 + components: + - type: Transform + pos: -45.5,95.5 + parent: 2 + - uid: 15036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,93.5 + parent: 2 + - uid: 15041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,94.5 + parent: 2 + - uid: 16064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,60.5 + parent: 2 + - uid: 16087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 13386 + - uid: 16088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 13386 + - uid: 16089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 13386 + - uid: 16486 + components: + - type: Transform + pos: -50.5,91.5 + parent: 2 + - uid: 16711 + components: + - type: Transform + pos: -2.5,1.5 + parent: 13386 + - uid: 17606 + components: + - type: Transform + pos: 52.5,57.5 + parent: 2 + - uid: 17630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,50.5 + parent: 2 + - uid: 17869 + components: + - type: Transform + pos: 69.5,55.5 + parent: 2 + - uid: 17991 + components: + - type: Transform + pos: 61.5,60.5 + parent: 2 + - uid: 18004 + components: + - type: Transform + pos: 57.5,60.5 + parent: 2 + - uid: 18877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -117.5,91.5 + parent: 2 + - uid: 18915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,91.5 + parent: 2 + - uid: 19029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,37.5 + parent: 2 + - uid: 20927 + components: + - type: Transform + pos: 71.5,50.5 + parent: 2 + - uid: 20994 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 22440 + components: + - type: Transform + pos: -17.5,192.5 + parent: 2 + - uid: 22747 + components: + - type: Transform + pos: -15.5,190.5 + parent: 2 + - uid: 22749 + components: + - type: Transform + pos: -13.5,190.5 + parent: 2 + - uid: 22788 + components: + - type: Transform + pos: -17.5,193.5 + parent: 2 + - uid: 22838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,192.5 + parent: 2 + - uid: 22839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,191.5 + parent: 2 + - uid: 22845 + components: + - type: Transform + pos: -22.5,194.5 + parent: 2 + - uid: 22851 + components: + - type: Transform + pos: -23.5,194.5 + parent: 2 + - uid: 22998 + components: + - type: Transform + pos: -12.5,194.5 + parent: 2 + - uid: 22999 + components: + - type: Transform + pos: -13.5,194.5 + parent: 2 + - uid: 23022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,199.5 + parent: 2 + - uid: 23023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,199.5 + parent: 2 + - uid: 23046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,198.5 + parent: 2 + - uid: 23304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,49.5 + parent: 2 + - uid: 23404 + components: + - type: Transform + pos: -8.5,210.5 + parent: 2 + - uid: 23407 + components: + - type: Transform + pos: -9.5,210.5 + parent: 2 + - uid: 23449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,199.5 + parent: 2 + - uid: 23519 + components: + - type: Transform + pos: -93.5,37.5 + parent: 2 + - uid: 23551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,55.5 + parent: 2 + - uid: 28131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,43.5 + parent: 2 + - uid: 29476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,51.5 + parent: 2 + - uid: 29563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,35.5 + parent: 2 + - uid: 29564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,34.5 + parent: 2 + - uid: 29569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,34.5 + parent: 2 + - uid: 29570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,35.5 + parent: 2 + - uid: 30863 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,12.5 parent: 2 - - uid: 29129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,16.5 - parent: 2 - - uid: 29131 - components: - - type: Transform - pos: -19.5,4.5 - parent: 2 - - uid: 29133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-21.5 - parent: 2 - - uid: 29134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-55.5 - parent: 2 - - uid: 29136 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 2 - - uid: 29137 + - uid: 30864 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-14.5 + pos: -57.5,11.5 parent: 2 - - uid: 29138 + - uid: 31014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 30902 + - uid: 31015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 30902 + - uid: 31016 + components: + - type: Transform + pos: -0.5,1.5 + parent: 30902 + - uid: 31017 + components: + - type: Transform + pos: 3.5,1.5 + parent: 30902 + - uid: 31021 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 30902 + - uid: 31022 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 30902 + - uid: 31930 + components: + - type: Transform + pos: 91.5,17.5 + parent: 2 + - uid: 34138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,62.5 + parent: 2 + - uid: 34567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,93.5 + parent: 2 + - uid: 34621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,51.5 + parent: 2 + - uid: 34623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,93.5 + parent: 2 + - uid: 35789 components: - type: Transform rot: 3.141592653589793 rad - pos: 74.5,-55.5 + pos: -22.5,63.5 parent: 2 - - uid: 29139 - components: - - type: Transform - pos: 35.5,-68.5 - parent: 2 - - uid: 29140 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 2 - - uid: 29141 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 2 - - uid: 29142 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 2 - - uid: 29143 - components: - - type: Transform - pos: 1.5,-46.5 - parent: 2 - - uid: 29149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-19.5 - parent: 2 - - uid: 29152 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 2 - - uid: 29153 + - uid: 35797 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-12.5 + pos: -18.5,63.5 parent: 2 - - uid: 29174 + - uid: 36014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,62.5 + parent: 2 + - uid: 36557 + components: + - type: Transform + pos: 56.5,55.5 + parent: 2 + - uid: 36602 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-0.5 + pos: 48.5,55.5 parent: 2 - - uid: 29181 + - uid: 36711 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,32.5 - parent: 2 - - uid: 29182 + pos: -1.5,-2.5 + parent: 37842 + - uid: 37712 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,29.5 + pos: 53.5,48.5 parent: 2 - - uid: 29183 + - uid: 37981 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,30.5 - parent: 2 - - uid: 29184 + pos: 1.5,1.5 + parent: 37842 + - uid: 37982 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,41.5 - parent: 2 - - uid: 29185 + pos: 0.5,-0.5 + parent: 37842 + - uid: 39569 components: - type: Transform - pos: -14.5,-26.5 + pos: 51.5,57.5 parent: 2 - - uid: 29195 - components: - - type: Transform - pos: -54.5,12.5 - parent: 2 - - uid: 29196 + - uid: 39570 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,16.5 + pos: 53.5,53.5 parent: 2 - - uid: 29197 + - uid: 41914 components: - type: Transform - pos: -53.5,12.5 + pos: 51.5,56.5 parent: 2 - - uid: 29199 + - uid: 43170 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 37842 +- proto: TableReinforcedGlass + entities: + - uid: 654 + components: + - type: Transform + pos: -107.5,32.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: -107.5,31.5 + parent: 2 + - uid: 6197 + components: + - type: Transform + pos: -124.5,53.5 + parent: 2 + - uid: 8321 + components: + - type: Transform + pos: -123.5,53.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: -107.5,30.5 + parent: 2 + - uid: 10461 + components: + - type: Transform + pos: -18.5,81.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + pos: -19.5,81.5 + parent: 2 + - uid: 10476 + components: + - type: Transform + pos: -18.5,84.5 + parent: 2 + - uid: 10479 + components: + - type: Transform + pos: -17.5,84.5 + parent: 2 + - uid: 14394 + components: + - type: Transform + pos: -27.5,99.5 + parent: 2 + - uid: 14656 + components: + - type: Transform + pos: -75.5,85.5 + parent: 2 + - uid: 15022 + components: + - type: Transform + pos: -26.5,98.5 + parent: 2 + - uid: 16588 + components: + - type: Transform + pos: -26.5,101.5 + parent: 2 + - uid: 18315 + components: + - type: Transform + pos: -27.5,98.5 + parent: 2 + - uid: 19480 + components: + - type: Transform + pos: -27.5,100.5 + parent: 2 + - uid: 19481 + components: + - type: Transform + pos: -27.5,101.5 + parent: 2 + - uid: 20952 + components: + - type: Transform + pos: -70.5,166.5 + parent: 2 + - uid: 20956 + components: + - type: Transform + pos: -69.5,166.5 + parent: 2 + - uid: 20957 + components: + - type: Transform + pos: -71.5,166.5 + parent: 2 + - uid: 27130 + components: + - type: Transform + pos: -34.5,101.5 + parent: 2 + - uid: 27655 + components: + - type: Transform + pos: -115.5,56.5 + parent: 2 + - uid: 28315 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,16.5 + pos: -115.5,55.5 parent: 2 - - uid: 29200 + - uid: 28698 + components: + - type: Transform + pos: -117.5,56.5 + parent: 2 + - uid: 28744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -117.5,55.5 + parent: 2 + - uid: 28746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,55.5 + parent: 2 + - uid: 28756 + components: + - type: Transform + pos: -116.5,56.5 + parent: 2 + - uid: 29561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,34.5 + parent: 2 + - uid: 29635 + components: + - type: Transform + pos: -107.5,35.5 + parent: 2 + - uid: 29636 + components: + - type: Transform + pos: -107.5,34.5 + parent: 2 + - uid: 31437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,105.5 + parent: 2 + - uid: 32295 + components: + - type: Transform + pos: -26.5,99.5 + parent: 2 + - uid: 33797 + components: + - type: Transform + pos: -26.5,100.5 + parent: 2 + - uid: 34815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,105.5 + parent: 2 + - uid: 37980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 37842 +- proto: TableStone + entities: + - uid: 1722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,49.5 + parent: 2 + - uid: 4086 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,15.5 + pos: -116.5,48.5 parent: 2 - - uid: 29201 + - uid: 4099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,46.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,46.5 + parent: 2 + - uid: 4106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,48.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,48.5 + parent: 2 + - uid: 4345 + components: + - type: Transform + pos: 88.5,64.5 + parent: 2 + - uid: 4661 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-21.5 + pos: 82.5,67.5 parent: 2 - - uid: 29202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-26.5 - parent: 2 - - uid: 29203 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 2 - - uid: 29204 - components: - - type: Transform - pos: -55.5,12.5 - parent: 2 - - uid: 29205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 2 - - uid: 29206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 2 - - uid: 29207 + - uid: 4664 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-23.5 + pos: 83.5,67.5 parent: 2 - - uid: 29208 - components: - - type: Transform - pos: -56.5,12.5 - parent: 2 - - uid: 29215 + - uid: 4665 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-17.5 + pos: 84.5,67.5 parent: 2 - - uid: 29216 + - uid: 4666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,67.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,43.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + pos: 88.5,63.5 + parent: 2 + - uid: 5417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,42.5 + parent: 2 + - uid: 8883 + components: + - type: Transform + pos: -87.5,82.5 + parent: 2 + - uid: 8884 + components: + - type: Transform + pos: -87.5,81.5 + parent: 2 + - uid: 8885 + components: + - type: Transform + pos: -86.5,81.5 + parent: 2 + - uid: 8886 + components: + - type: Transform + pos: -85.5,81.5 + parent: 2 + - uid: 8887 + components: + - type: Transform + pos: -84.5,81.5 + parent: 2 + - uid: 13995 + components: + - type: Transform + pos: -58.5,98.5 + parent: 2 + - uid: 13996 + components: + - type: Transform + pos: -58.5,97.5 + parent: 2 + - uid: 19093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,147.5 + parent: 2 + - uid: 19127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,147.5 + parent: 2 + - uid: 19151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,147.5 + parent: 2 + - uid: 19213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,147.5 + parent: 2 + - uid: 19459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,147.5 + parent: 2 + - uid: 23663 + components: + - type: Transform + pos: 8.5,185.5 + parent: 2 + - uid: 27629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,42.5 + parent: 2 + - uid: 27630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,41.5 + parent: 2 + - uid: 27975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,41.5 + parent: 2 + - uid: 27976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,40.5 + parent: 2 + - uid: 28078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,42.5 + parent: 2 + - uid: 28113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,47.5 + parent: 2 + - uid: 28114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,44.5 + parent: 2 + - uid: 28144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,47.5 + parent: 2 + - uid: 28146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,45.5 + parent: 2 + - uid: 28346 + components: + - type: Transform + pos: -104.5,59.5 + parent: 2 + - uid: 28404 + components: + - type: Transform + pos: -101.5,48.5 + parent: 2 + - uid: 28449 + components: + - type: Transform + pos: -102.5,47.5 + parent: 2 + - uid: 28489 + components: + - type: Transform + pos: -106.5,59.5 + parent: 2 + - uid: 28623 + components: + - type: Transform + pos: 87.5,65.5 + parent: 2 + - uid: 28627 + components: + - type: Transform + pos: 86.5,66.5 + parent: 2 + - uid: 28657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,59.5 + parent: 2 + - uid: 28770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,45.5 + parent: 2 + - uid: 28818 + components: + - type: Transform + pos: -102.5,48.5 + parent: 2 + - uid: 28830 + components: + - type: Transform + pos: -100.5,47.5 + parent: 2 + - uid: 28843 + components: + - type: Transform + pos: -102.5,49.5 + parent: 2 + - uid: 28845 + components: + - type: Transform + pos: -100.5,49.5 + parent: 2 + - uid: 28846 + components: + - type: Transform + pos: -100.5,48.5 + parent: 2 + - uid: 28878 + components: + - type: Transform + pos: -101.5,47.5 + parent: 2 + - uid: 29092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,44.5 + parent: 2 + - uid: 29094 + components: + - type: Transform + pos: -120.5,43.5 + parent: 2 +- proto: TableWood + entities: + - uid: 1773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-10.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 2 + - uid: 3986 + components: + - type: Transform + pos: -101.5,102.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + pos: 81.5,18.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + pos: 80.5,18.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,67.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: -100.5,103.5 + parent: 2 + - uid: 6069 + components: + - type: Transform + pos: -64.5,65.5 + parent: 2 + - uid: 6444 + components: + - type: Transform + pos: -58.5,105.5 + parent: 2 + - uid: 7194 + components: + - type: Transform + pos: -52.5,63.5 + parent: 2 + - uid: 10677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,85.5 + parent: 2 + - uid: 10679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,86.5 + parent: 2 + - uid: 10682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,86.5 + parent: 2 + - uid: 10684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,86.5 + parent: 2 + - uid: 10800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,76.5 + parent: 2 + - uid: 10953 + components: + - type: Transform + pos: -19.5,178.5 + parent: 2 + - uid: 11135 + components: + - type: Transform + pos: -0.5,76.5 + parent: 2 + - uid: 11173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,70.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + pos: 0.5,76.5 + parent: 2 + - uid: 11934 + components: + - type: Transform + pos: -72.5,96.5 + parent: 2 + - uid: 12186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,62.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + pos: -23.5,66.5 + parent: 2 + - uid: 13146 + components: + - type: Transform + pos: -23.5,69.5 + parent: 2 + - uid: 13181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,67.5 + parent: 2 + - uid: 13568 + components: + - type: Transform + pos: -78.5,91.5 + parent: 2 + - uid: 13991 + components: + - type: Transform + pos: -59.5,102.5 + parent: 2 + - uid: 13992 + components: + - type: Transform + pos: -58.5,95.5 + parent: 2 + - uid: 13993 + components: + - type: Transform + pos: -70.5,92.5 + parent: 2 + - uid: 14043 + components: + - type: Transform + pos: -73.5,99.5 + parent: 2 + - uid: 14122 + components: + - type: Transform + pos: -76.5,91.5 + parent: 2 + - uid: 14124 + components: + - type: Transform + pos: -77.5,94.5 + parent: 2 + - uid: 14276 + components: + - type: Transform + pos: -75.5,103.5 + parent: 2 + - uid: 14289 + components: + - type: Transform + pos: -80.5,103.5 + parent: 2 + - uid: 14291 + components: + - type: Transform + pos: -80.5,107.5 + parent: 2 + - uid: 14292 + components: + - type: Transform + pos: -81.5,104.5 + parent: 2 + - uid: 14293 + components: + - type: Transform + pos: -79.5,107.5 + parent: 2 + - uid: 14298 + components: + - type: Transform + pos: -81.5,105.5 + parent: 2 + - uid: 14301 + components: + - type: Transform + pos: -79.5,103.5 + parent: 2 + - uid: 14307 + components: + - type: Transform + pos: -81.5,106.5 + parent: 2 + - uid: 14309 + components: + - type: Transform + pos: -72.5,103.5 + parent: 2 + - uid: 14319 + components: + - type: Transform + pos: -81.5,103.5 + parent: 2 + - uid: 14320 + components: + - type: Transform + pos: -72.5,104.5 + parent: 2 + - uid: 14321 + components: + - type: Transform + pos: -73.5,103.5 + parent: 2 + - uid: 14322 + components: + - type: Transform + pos: -74.5,103.5 + parent: 2 + - uid: 14329 + components: + - type: Transform + pos: -78.5,103.5 + parent: 2 + - uid: 14335 + components: + - type: Transform + pos: -80.5,106.5 + parent: 2 + - uid: 14343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,94.5 + parent: 2 + - uid: 14439 + components: + - type: Transform + pos: -66.5,85.5 + parent: 2 + - uid: 14451 + components: + - type: Transform + pos: -65.5,81.5 + parent: 2 + - uid: 14452 + components: + - type: Transform + pos: -65.5,82.5 + parent: 2 + - uid: 14453 + components: + - type: Transform + pos: -65.5,83.5 + parent: 2 + - uid: 14484 + components: + - type: Transform + pos: -73.5,83.5 + parent: 2 + - uid: 14521 + components: + - type: Transform + pos: -70.5,81.5 + parent: 2 + - uid: 14522 + components: + - type: Transform + pos: -70.5,82.5 + parent: 2 + - uid: 14628 + components: + - type: Transform + pos: -74.5,83.5 + parent: 2 + - uid: 14630 + components: + - type: Transform + pos: -76.5,83.5 + parent: 2 + - uid: 14631 + components: + - type: Transform + pos: -77.5,83.5 + parent: 2 + - uid: 14719 + components: + - type: Transform + pos: -75.5,75.5 + parent: 2 + - uid: 14720 + components: + - type: Transform + pos: -74.5,75.5 + parent: 2 + - uid: 14722 + components: + - type: Transform + pos: -74.5,74.5 + parent: 2 + - uid: 14723 + components: + - type: Transform + pos: -76.5,75.5 + parent: 2 + - uid: 14765 + components: + - type: Transform + pos: -77.5,91.5 + parent: 2 + - uid: 14771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,67.5 + parent: 2 + - uid: 16051 + components: + - type: Transform + pos: -71.5,90.5 + parent: 2 + - uid: 16441 + components: + - type: Transform + pos: -102.5,102.5 + parent: 2 + - uid: 17326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,159.5 + parent: 2 + - uid: 17327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,159.5 + parent: 2 + - uid: 17682 + components: + - type: Transform + pos: -100.5,102.5 + parent: 2 + - uid: 18197 + components: + - type: Transform + pos: -60.5,155.5 + parent: 2 + - uid: 19803 + components: + - type: Transform + pos: -87.5,160.5 + parent: 2 + - uid: 19804 + components: + - type: Transform + pos: -86.5,160.5 + parent: 2 + - uid: 19807 + components: + - type: Transform + pos: -88.5,160.5 + parent: 2 + - uid: 20551 + components: + - type: Transform + pos: -85.5,180.5 + parent: 2 + - uid: 20552 + components: + - type: Transform + pos: -87.5,182.5 + parent: 2 + - uid: 20622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,180.5 + parent: 2 + - uid: 21375 + components: + - type: Transform + pos: -60.5,156.5 + parent: 2 + - uid: 21376 + components: + - type: Transform + pos: -59.5,155.5 + parent: 2 + - uid: 21632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,159.5 + parent: 2 + - uid: 23064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,177.5 + parent: 2 + - uid: 23065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,177.5 + parent: 2 + - uid: 23074 + components: + - type: Transform + pos: -17.5,178.5 + parent: 2 + - uid: 23080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,177.5 + parent: 2 + - uid: 25114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,204.5 + parent: 2 + - uid: 28680 + components: + - type: Transform + pos: -120.5,52.5 + parent: 2 + - uid: 30745 + components: + - type: Transform + pos: -60.5,63.5 + parent: 2 + - uid: 30901 + components: + - type: Transform + pos: -31.5,68.5 + parent: 2 + - uid: 31939 + components: + - type: Transform + pos: -58.5,63.5 + parent: 2 + - uid: 36709 + components: + - type: Transform + pos: -76.5,94.5 + parent: 2 + - uid: 36786 + components: + - type: Transform + pos: -78.5,92.5 + parent: 2 + - uid: 36849 + components: + - type: Transform + pos: -68.5,83.5 + parent: 2 + - uid: 38265 + components: + - type: Transform + pos: -8.5,59.5 + parent: 2 + - uid: 39180 + components: + - type: Transform + pos: -71.5,96.5 + parent: 2 +- proto: TaikoInstrument + entities: + - uid: 13213 + components: + - type: Transform + pos: -59.5,107.5 + parent: 2 +- proto: TargetClown + entities: + - uid: 34619 + components: + - type: Transform + rot: -3.141592351598195 rad + pos: 46.648773,49.035885 + parent: 2 +- proto: TargetHuman + entities: + - uid: 5316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,47.5 + parent: 2 +- proto: TargetStrange + entities: + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.561897,53.507374 + parent: 2 + - uid: 36097 + components: + - type: Transform + pos: 54.5,57.5 + parent: 2 +- proto: TargetSyndicate + entities: + - uid: 1009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.499847,53.498817 + parent: 2 + - uid: 7185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.004158,53.29522 + parent: 2 +- proto: TegCenter + entities: + - uid: 1051 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -105.5,31.5 + parent: 2 + - type: ApcPowerReceiver + powerDisabled: True + - type: Physics + bodyType: Dynamic +- proto: TegCirculator + entities: + - uid: 770 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -105.5,30.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - type: Physics + bodyType: Dynamic + - uid: 5489 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -105.5,32.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - type: Physics + bodyType: Dynamic +- proto: TelecomServer + entities: + - uid: 5478 + components: + - type: Transform + pos: -114.5,53.5 + parent: 2 +- proto: TelecomServerFilledCargo + entities: + - uid: 8379 + components: + - type: Transform + pos: -111.5,30.5 + parent: 2 +- proto: TelecomServerFilledCommand + entities: + - uid: 8378 + components: + - type: Transform + pos: -112.5,30.5 + parent: 2 +- proto: TelecomServerFilledCommon + entities: + - uid: 8380 + components: + - type: Transform + pos: -113.5,30.5 + parent: 2 +- proto: TelecomServerFilledEngineering + entities: + - uid: 8377 + components: + - type: Transform + pos: -109.5,32.5 + parent: 2 +- proto: TelecomServerFilledMedical + entities: + - uid: 8540 + components: + - type: Transform + pos: -109.5,30.5 + parent: 2 +- proto: TelecomServerFilledScience + entities: + - uid: 8338 + components: + - type: Transform + pos: -111.5,32.5 + parent: 2 +- proto: TelecomServerFilledSecurity + entities: + - uid: 184 + components: + - type: Transform + pos: -112.5,32.5 + parent: 2 +- proto: TelecomServerFilledService + entities: + - uid: 7766 + components: + - type: Transform + pos: -113.5,32.5 + parent: 2 +- proto: Thruster + entities: + - uid: 15674 + components: + - type: Transform + pos: 3.5,3.5 + parent: 13386 + - uid: 15678 + components: + - type: Transform + pos: -3.5,3.5 + parent: 13386 + - uid: 15679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 13386 + - uid: 15680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 13386 + - uid: 15681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 13386 + - uid: 15682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 13386 + - uid: 15684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 13386 + - uid: 15771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 13386 + - uid: 19236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-17.5 + parent: 2 + - uid: 19237 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-17.5 parent: 2 - - uid: 29225 + - uid: 19527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 21114 + - uid: 19530 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-23.5 - parent: 2 - - uid: 29226 - components: - - type: Transform - pos: -23.5,4.5 - parent: 2 - - uid: 29228 + pos: 5.5,-1.5 + parent: 21114 + - uid: 22084 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-0.5 - parent: 2 - - uid: 29230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-21.5 - parent: 2 - - uid: 29237 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 2 - - uid: 29240 + pos: 2.5,-2.5 + parent: 21114 + - uid: 22086 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,24.5 - parent: 2 - - uid: 29241 + pos: 0.5,-1.5 + parent: 21114 + - uid: 22088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,24.5 - parent: 2 - - uid: 29242 + pos: 0.5,4.5 + parent: 21114 + - uid: 22089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,24.5 - parent: 2 - - uid: 29244 + pos: 5.5,4.5 + parent: 21114 + - uid: 31023 components: - type: Transform - pos: 9.5,23.5 - parent: 2 - - uid: 29245 + pos: -2.5,0.5 + parent: 30902 + - uid: 31024 + components: + - type: Transform + pos: 5.5,0.5 + parent: 30902 + - uid: 31025 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-21.5 - parent: 2 - - uid: 29247 + pos: 5.5,-2.5 + parent: 30902 + - uid: 31026 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,45.5 - parent: 2 - - uid: 29248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,45.5 - parent: 2 - - uid: 29252 - components: - - type: Transform - pos: 71.5,-59.5 - parent: 2 - - uid: 29253 - components: - - type: Transform - pos: 6.5,38.5 - parent: 2 - - uid: 29254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,50.5 - parent: 2 - - uid: 29255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,53.5 - parent: 2 - - uid: 29256 + pos: -2.5,-2.5 + parent: 30902 + - uid: 31027 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-20.5 - parent: 2 - - uid: 29258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-19.5 - parent: 2 - - uid: 29259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-19.5 - parent: 2 - - uid: 29260 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 2 - - uid: 29261 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 2 - - uid: 29262 - components: - - type: Transform - pos: 9.5,-14.5 - parent: 2 - - uid: 29263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 2 - - uid: 29264 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 2 - - uid: 29266 + pos: 4.5,-3.5 + parent: 30902 + - uid: 31028 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,41.5 - parent: 2 - - uid: 29267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,41.5 - parent: 2 - - uid: 29268 - components: - - type: Transform - pos: -21.5,4.5 - parent: 2 - - uid: 29269 + pos: -1.5,-3.5 + parent: 30902 + - uid: 37039 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,42.5 - parent: 2 - - uid: 29270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,42.5 - parent: 2 - - uid: 29271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,42.5 - parent: 2 - - uid: 29272 - components: - - type: Transform - pos: -18.5,46.5 - parent: 2 - - uid: 29273 - components: - - type: Transform - pos: -21.5,46.5 - parent: 2 - - uid: 29274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,42.5 - parent: 2 - - uid: 29275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,47.5 - parent: 2 - - uid: 29276 + pos: -3.5,-1.5 + parent: 36996 + - uid: 37040 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,47.5 - parent: 2 - - uid: 29277 + pos: 3.5,1.5 + parent: 36996 + - uid: 37983 + components: + - type: Transform + pos: 3.5,2.5 + parent: 37842 + - uid: 37984 + components: + - type: Transform + pos: -2.5,2.5 + parent: 37842 + - uid: 37985 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,41.5 - parent: 2 - - uid: 29278 + pos: -2.5,-7.5 + parent: 37842 + - uid: 37986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 37842 + - uid: 37987 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-19.5 - parent: 2 - - uid: 29279 - components: - - type: Transform - pos: 63.5,-7.5 - parent: 2 - - uid: 29280 - components: - - type: Transform - pos: 61.5,-7.5 - parent: 2 - - uid: 29281 - components: - - type: Transform - pos: 62.5,-7.5 - parent: 2 - - uid: 29282 - components: - - type: Transform - pos: 59.5,-7.5 - parent: 2 - - uid: 29283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-7.5 - parent: 2 - - uid: 29284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-6.5 - parent: 2 - - uid: 29287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-66.5 - parent: 2 - - uid: 29288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-65.5 - parent: 2 - - uid: 29289 - components: - - type: Transform - pos: 8.5,38.5 - parent: 2 - - uid: 29293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-22.5 - parent: 2 - - uid: 29424 + pos: -0.5,-8.5 + parent: 37842 + - uid: 37988 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-28.5 - parent: 2 - - uid: 29866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-23.5 - parent: 2 - - uid: 29867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 2 - - uid: 30325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,37.5 - parent: 2 - - uid: 30328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,36.5 - parent: 2 - - uid: 30330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,37.5 - parent: 2 - - uid: 30774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,42.5 - parent: 2 - - uid: 31708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,24.5 - parent: 2 - - uid: 31729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,32.5 - parent: 2 - - uid: 32120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 2 - - uid: 32121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-17.5 - parent: 2 - - uid: 32122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-16.5 - parent: 2 - - uid: 32123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 2 - - uid: 32124 - components: - - type: Transform - pos: -18.5,-17.5 - parent: 2 - - uid: 32125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-19.5 - parent: 2 -- proto: Wirecutter + pos: 1.5,-8.5 + parent: 37842 +- proto: TintedWindow entities: - - uid: 19441 + - uid: 37585 components: - type: Transform - pos: -44.389954,5.384684 + pos: -64.5,62.5 parent: 2 - - uid: 29298 - components: - - type: Transform - pos: -8.450888,-33.681717 - parent: 2 - - uid: 30167 - components: - - type: Transform - pos: 27.590351,34.58573 - parent: 2 -- proto: WoodenBench +- proto: TobaccoSeeds entities: - - uid: 25414 + - uid: 15612 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-5.5 + pos: -80.483154,140.47917 parent: 2 - - uid: 25416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-5.5 - parent: 2 - - uid: 29300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-6.5 - parent: 2 - - uid: 29301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-6.5 - parent: 2 - - uid: 29303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-7.5 - parent: 2 - - uid: 29304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-6.5 - parent: 2 - - uid: 29305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-7.5 - parent: 2 - - uid: 29307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-5.5 - parent: 2 - - uid: 29308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-7.5 - parent: 2 - - uid: 29309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-6.5 - parent: 2 - - uid: 29310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-5.5 - parent: 2 - - uid: 29311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-7.5 - parent: 2 -- proto: WoodenSupport +- proto: ToiletDirtyWater entities: - - uid: 31557 + - uid: 2546 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,-71.5 + pos: -22.5,169.5 parent: 2 -- proto: Wrench + - uid: 17528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,110.5 + parent: 2 + - uid: 25832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,171.5 + parent: 2 +- proto: ToiletEmpty entities: - - uid: 25136 + - uid: 12855 components: - type: Transform - pos: -11.506361,-72.41291 + rot: -1.5707963267948966 rad + pos: 59.5,41.5 parent: 2 - - uid: 29312 + - uid: 17565 components: - type: Transform - pos: 37.56429,-35.54103 + rot: 1.5707963267948966 rad + pos: -75.5,112.5 parent: 2 - - uid: 29313 +- proto: ToolboxArtistic + entities: + - uid: 10567 components: - type: Transform - pos: 44.39694,-40.48777 + pos: -130.51793,103.77196 parent: 2 - - uid: 29314 +- proto: ToolboxElectricalFilled + entities: + - uid: 1226 components: - type: Transform - pos: 39.5,6.5 + pos: -56.595947,-4.5583954 parent: 2 - - uid: 29316 + - uid: 3930 components: - type: Transform - pos: -44.5,14.5 - parent: 2 - - uid: 29317 + parent: 11269 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24182 components: - type: Transform - pos: 23.548819,4.727818 + pos: 23.356367,190.51512 parent: 2 - - uid: 29318 + - uid: 28686 components: - type: Transform - pos: -40.403015,5.626782 + pos: 5.5351677,81.6223 parent: 2 - - uid: 29319 + - uid: 29737 + components: + - type: Transform + pos: -113.47805,36.536823 + parent: 2 + - uid: 30861 + components: + - type: Transform + pos: -110.35789,66.52527 + parent: 2 + - uid: 36419 + components: + - type: Transform + pos: -125.60061,105.56065 + parent: 2 + - uid: 36969 + components: + - type: Transform + pos: 4.219364,208.81953 + parent: 2 + - uid: 36970 + components: + - type: Transform + pos: 17.401558,201.52988 + parent: 2 + - uid: 40445 + components: + - type: Transform + pos: 46.52841,55.733616 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 756 + components: + - type: Transform + pos: -50.53337,3.634224 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -35.718227,-10.322052 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: -29.605646,-6.4254856 + parent: 2 + - uid: 14847 + components: + - type: Transform + pos: -70.63176,85.7171 + parent: 2 + - uid: 15786 + components: + - type: Transform + pos: -49.476448,64.58074 + parent: 2 + - uid: 16480 + components: + - type: Transform + pos: -81.61885,76.59455 + parent: 2 + - uid: 17305 + components: + - type: Transform + pos: -92.00946,55.562565 + parent: 2 + - uid: 23263 + components: + - type: Transform + pos: -0.6587577,194.74225 + parent: 2 + - uid: 24032 + components: + - type: Transform + pos: -17.58209,211.59784 + parent: 2 + - uid: 31156 + components: + - type: Transform + pos: 23.437965,185.68268 + parent: 2 + - uid: 31157 + components: + - type: Transform + pos: 23.55198,191.46512 + parent: 2 + - uid: 32430 + components: + - type: Transform + pos: -25.430298,206.48688 + parent: 2 + - uid: 32951 + components: + - type: Transform + pos: -33.5841,191.69588 + parent: 2 + - uid: 32953 + components: + - type: Transform + pos: -60.42721,165.54169 + parent: 2 + - uid: 32955 + components: + - type: Transform + pos: -90.46791,152.71614 + parent: 2 + - uid: 32957 + components: + - type: Transform + pos: -92.52644,145.67578 + parent: 2 + - uid: 32964 + components: + - type: Transform + pos: -107.40548,60.47017 + parent: 2 + - uid: 33092 + components: + - type: Transform + pos: -107.364105,48.700848 + parent: 2 + - uid: 33094 + components: + - type: Transform + pos: -115.52953,63.394157 + parent: 2 + - uid: 33096 + components: + - type: Transform + pos: -139.96475,19.74096 + parent: 2 + - uid: 33099 + components: + - type: Transform + pos: -27.531826,75.747246 + parent: 2 + - uid: 33100 + components: + - type: Transform + pos: -40.96862,63.527565 + parent: 2 + - uid: 33101 + components: + - type: Transform + pos: -46.441204,63.774944 + parent: 2 + - uid: 34517 + components: + - type: Transform + pos: -31.541485,183.68501 + parent: 2 + - uid: 34634 + components: + - type: Transform + pos: -98.58045,145.65045 + parent: 2 + - uid: 35416 + components: + - type: Transform + pos: -104.35223,149.63913 + parent: 2 + - uid: 38097 + components: + - type: Transform + pos: -91.471466,52.567764 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 1221 + components: + - type: Transform + pos: -57.470947,-4.4333954 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: -35.41453,-10.512276 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: 57.363823,48.573128 + parent: 2 + - uid: 11280 + components: + - type: Transform + pos: -137.42819,52.67915 + parent: 2 + - uid: 15787 + components: + - type: Transform + pos: -49.678913,67.50428 + parent: 2 + - uid: 16621 + components: + - type: Transform + pos: 3.4974442,1.7561369 + parent: 13386 + - uid: 17227 + components: + - type: Transform + pos: -81.41638,76.71824 + parent: 2 + - uid: 17583 + components: + - type: Transform + pos: -110.345345,91.71141 + parent: 2 + - uid: 17686 + components: + - type: Transform + pos: 73.509,52.66552 + parent: 2 + - uid: 23264 + components: + - type: Transform + pos: -0.3888054,194.51736 + parent: 2 + - uid: 25218 + components: + - type: Transform + pos: -130.51793,103.47508 + parent: 2 + - uid: 25315 + components: + - type: Transform + pos: -127.50042,95.571175 + parent: 2 + - uid: 25316 + components: + - type: Transform + pos: -127.50042,100.39501 + parent: 2 + - uid: 25678 + components: + - type: Transform + pos: 0.52395487,172.65623 + parent: 2 + - uid: 28147 + components: + - type: Transform + pos: -78.62292,144.41803 + parent: 2 + - uid: 30851 + components: + - type: Transform + pos: -110.49851,66.71277 + parent: 2 + - uid: 33105 + components: + - type: Transform + pos: -60.429897,165.24466 + parent: 2 + - uid: 33106 + components: + - type: Transform + pos: -83.384705,143.20491 + parent: 2 + - uid: 33107 + components: + - type: Transform + pos: -93.55449,143.46024 + parent: 2 + - uid: 34533 + components: + - type: Transform + pos: -98.55917,145.37386 + parent: 2 + - uid: 36565 + components: + - type: Transform + pos: -27.593124,75.450455 + parent: 2 + - uid: 36779 + components: + - type: Transform + pos: -40.99174,63.674095 + parent: 2 + - uid: 36968 + components: + - type: Transform + pos: -20.487823,174.59323 + parent: 2 + - uid: 37356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.56977,177.497 + parent: 2 + - uid: 38038 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40524 + components: + - type: Transform + pos: 46.52841,55.37191 + parent: 2 +- proto: ToyAi + entities: + - uid: 7842 + components: + - type: Transform + pos: -60.341904,129.89326 + parent: 2 +- proto: ToyAmongPequeno + entities: + - uid: 9083 + components: + - type: Transform + pos: 6.6331215,188.51001 + parent: 2 + - uid: 36371 + components: + - type: Transform + pos: -32.381207,4.547638 + parent: 2 +- proto: ToyDurand + entities: + - uid: 15870 + components: + - type: Transform + pos: -54.50034,85.78469 + parent: 2 +- proto: ToyFigurineAtmosTech + entities: + - uid: 11235 + components: + - type: Transform + pos: -105.50725,33.656605 + parent: 2 +- proto: ToyFigurineBartender + entities: + - uid: 13158 + components: + - type: Transform + pos: -26.884592,61.63367 + parent: 2 +- proto: ToyFigurineBotanist + entities: + - uid: 13346 + components: + - type: Transform + pos: -8.496202,70.62888 + parent: 2 +- proto: ToyFigurineCaptain + entities: + - uid: 25598 + components: + - type: Transform + pos: -32.539093,96.99742 + parent: 2 +- proto: ToyFigurineCargoTech + entities: + - uid: 10768 + components: + - type: Transform + pos: -5.535946,-4.223362 + parent: 2 +- proto: ToyFigurineChaplain + entities: + - uid: 14469 + components: + - type: Transform + pos: -52.358,63.41378 + parent: 2 +- proto: ToyFigurineChef + entities: + - uid: 14468 + components: + - type: Transform + pos: -14.21763,71.6815 + parent: 2 +- proto: ToyFigurineChemist + entities: + - uid: 23044 + components: + - type: Transform + pos: -22.30231,194.7969 + parent: 2 +- proto: ToyFigurineChiefEngineer + entities: + - uid: 19303 + components: + - type: Transform + pos: -117.59441,56.729626 + parent: 2 + - uid: 34602 + components: + - type: Transform + pos: -125.91395,87.79847 + parent: 2 +- proto: ToyFigurineChiefMedicalOfficer + entities: + - uid: 23340 + components: + - type: Transform + pos: -15.415056,203.79047 + parent: 2 +- proto: ToyFigurineDetective + entities: + - uid: 12891 + components: + - type: Transform + pos: 0.46578956,74.06053 + parent: 2 +- proto: ToyFigurineEngineer + entities: + - uid: 18742 + components: + - type: Transform + pos: -99.382126,41.74925 + parent: 2 +- proto: ToyFigurineHamlet + entities: + - uid: 4357 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one wears glasses and pretends to be smart. + name: seventh Hamlet figurine + - type: Transform + pos: -71.445625,155.63577 + parent: 2 + - uid: 10613 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one's full and lying on his belly. + name: first Hamlet figurine + - type: Transform + pos: -17.516815,102.77845 + parent: 2 + - uid: 10614 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one's chewing on a wrench. + name: fifth Hamlet figurine! + - type: Transform + pos: -91.43581,55.843674 + parent: 2 + - uid: 17081 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one looks like the unfortunate victim of a clown. + name: eighth Hamlet figurine + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.388084,93.57832 + parent: 2 + - uid: 17101 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one looks hungry and lonely. + name: fourth Hamlet figurine + - type: Transform + pos: 115.6748,49.773445 + parent: 2 + - uid: 20692 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one looks hurt and ready to bite. + name: sixth Hamlet figurine + - type: Transform + pos: -78.640625,86.64981 + parent: 2 + - uid: 20788 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one's happy and in a spacesuit. + name: third Hamlet figurine + - type: Transform + pos: -17.49073,6.491913 + parent: 2 + - uid: 23419 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one looks embarrassed and flirtatious. + name: second Hamlet figurine + - type: Transform + pos: -60.491615,111.68542 + parent: 2 + - uid: 38104 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one is disheveled and has puffy cheeks. + name: ninth Hamlet figurine + - type: Transform + pos: -26.530703,193.3324 + parent: 2 +- proto: ToyFigurineHeadOfPersonnel + entities: + - uid: 10478 + components: + - type: Transform + pos: -18.312418,81.99234 + parent: 2 +- proto: ToyFigurineHeadOfSecurity + entities: + - uid: 4705 + components: + - type: Transform + pos: 82.52039,66.49927 + parent: 2 +- proto: ToyFigurineHoloClown + entities: + - uid: 5008 + components: + - type: Transform + pos: 8.48819,77.530235 + parent: 2 +- proto: ToyFigurineJanitor + entities: + - uid: 10758 + components: + - type: Transform + pos: -1.3964744,80.94918 + parent: 2 +- proto: ToyFigurineLawyer + entities: + - uid: 22887 + components: + - type: Transform + pos: -75.409996,75.65042 + parent: 2 +- proto: ToyFigurineLibrarian + entities: + - uid: 14463 + components: + - type: Transform + pos: -65.41716,83.57734 + parent: 2 +- proto: ToyFigurineMedicalDoctor + entities: + - uid: 23045 + components: + - type: Transform + pos: -13.163654,194.64453 + parent: 2 +- proto: ToyFigurineMime + entities: + - uid: 14465 + components: + - type: Transform + pos: -58.591904,98.34595 + parent: 2 +- proto: ToyFigurineMouse + entities: + - uid: 17244 + components: + - type: Transform + pos: -13.285582,70.68941 + parent: 2 +- proto: ToyFigurineMusician + entities: + - uid: 14515 + components: + - type: Transform + pos: -33.8991,65.89598 + parent: 2 +- proto: ToyFigurineNukie + entities: + - uid: 21062 + components: + - type: Transform + pos: -48.219852,107.56736 + parent: 2 +- proto: ToyFigurineNukieElite + entities: + - uid: 14504 + components: + - type: Transform + pos: -48.235146,93.998116 + parent: 2 +- proto: ToyFigurineParamedic + entities: + - uid: 25380 + components: + - type: Transform + pos: -2.4269748,172.69862 + parent: 2 +- proto: ToyFigurinePassenger + entities: + - uid: 32432 + components: + - type: Transform + pos: -59.497166,102.0468 + parent: 2 + - uid: 32434 + components: + - type: Transform + pos: -73.50193,100.7947 + parent: 2 +- proto: ToyFigurineQuartermaster + entities: + - uid: 1737 + components: + - type: Transform + pos: -29.643015,-13.115172 + parent: 2 +- proto: ToyFigurineRatKing + entities: + - uid: 10770 + components: + - type: Transform + pos: -103.728584,91.725464 + parent: 2 +- proto: ToyFigurineRatServant + entities: + - uid: 13157 + components: + - type: Transform + pos: -103.28991,91.70298 + parent: 2 + - uid: 14514 + components: + - type: Transform + pos: -104.223495,92.01782 + parent: 2 +- proto: ToyFigurineResearchDirector + entities: + - uid: 18385 + components: + - type: Transform + pos: -84.530014,155.00575 + parent: 2 +- proto: ToyFigurineSalvage + entities: + - uid: 29090 + components: + - type: Transform + pos: -40.485214,-15.284172 + parent: 2 +- proto: ToyFigurineScientist + entities: + - uid: 21034 + components: + - type: Transform + pos: -88.062416,162.90915 + parent: 2 +- proto: ToyFigurineSecurity + entities: + - uid: 4638 + components: + - type: Transform + pos: 75.729836,67.92833 + parent: 2 +- proto: ToyFigurineSlime + entities: + - uid: 21035 + components: + - type: Transform + pos: -87.31781,182.63678 + parent: 2 +- proto: ToyFigurineSpaceDragon + entities: + - uid: 13160 + components: + - type: Transform + pos: 5.5172763,164.16153 + parent: 2 + - uid: 20486 + components: + - type: Transform + pos: -80.19525,36.286007 + parent: 2 +- proto: ToyFigurineWarden + entities: + - uid: 32436 + components: + - type: Transform + pos: 70.59013,51.92549 + parent: 2 +- proto: ToyFigurineWizard + entities: + - uid: 6442 + components: + - type: Transform + pos: -60.364788,156.66792 + parent: 2 + - uid: 25361 + components: + - type: Transform + pos: -79.6596,35.64603 + parent: 2 +- proto: ToyGriffin + entities: + - uid: 1079 + components: + - type: Transform + pos: 26.42986,16.932518 + parent: 2 +- proto: ToyHonk + entities: + - uid: 10781 + components: + - type: Transform + pos: -18.631903,75.422806 + parent: 2 +- proto: ToyMouse + entities: + - uid: 10779 + components: + - type: Transform + pos: -2.9451065,81.482506 + parent: 2 + - uid: 10780 + components: + - type: Transform + pos: -3.383779,81.831085 + parent: 2 + - uid: 13744 + components: + - type: Transform + pos: -30.598701,101.215836 + parent: 2 + - uid: 14172 + components: + - type: Transform + pos: -64.47846,67.821106 + parent: 2 +- proto: ToyNuke + entities: + - uid: 22960 + components: + - type: Transform + pos: -33.303967,91.63701 + parent: 2 +- proto: ToyOwlman + entities: + - uid: 12853 + components: + - type: Transform + pos: 69.55601,55.605793 + parent: 2 +- proto: ToyRipley + entities: + - uid: 1874 + components: + - type: Transform + pos: 4.7172523,0.17708182 + parent: 2 +- proto: ToyRubberDuck + entities: + - uid: 14383 + components: + - type: Transform + pos: -77.95344,106.81387 + parent: 2 +- proto: ToySkeleton + entities: + - uid: 14470 + components: + - type: Transform + pos: -62.945625,87.880875 + parent: 2 +- proto: ToySpawner + entities: + - uid: 1793 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: -59.5,105.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 2 + - uid: 14052 + components: + - type: Transform + pos: -59.5,103.5 + parent: 2 + - uid: 14053 + components: + - type: Transform + pos: -59.5,93.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + pos: -71.5,98.5 + parent: 2 + - uid: 14104 + components: + - type: Transform + pos: -60.5,97.5 + parent: 2 + - uid: 14240 + components: + - type: Transform + pos: -71.5,161.5 + parent: 2 + - uid: 14318 + components: + - type: Transform + pos: -60.5,77.5 + parent: 2 + - uid: 14574 + components: + - type: Transform + pos: -66.5,85.5 + parent: 2 + - uid: 14575 + components: + - type: Transform + pos: -66.5,85.5 + parent: 2 + - uid: 17139 + components: + - type: Transform + pos: -24.5,86.5 + parent: 2 + - uid: 17294 + components: + - type: Transform + pos: -70.5,160.5 + parent: 2 + - uid: 20069 + components: + - type: Transform + pos: -75.5,174.5 + parent: 2 + - uid: 20089 + components: + - type: Transform + pos: -82.5,167.5 + parent: 2 + - uid: 20848 + components: + - type: Transform + pos: -87.5,180.5 + parent: 2 + - uid: 28213 + components: + - type: Transform + pos: -78.5,144.5 + parent: 2 + - uid: 28647 + components: + - type: Transform + pos: 110.5,43.5 + parent: 2 + - uid: 28648 + components: + - type: Transform + pos: 107.5,43.5 + parent: 2 + - uid: 37846 + components: + - type: Transform + pos: -71.5,156.5 + parent: 2 +- proto: TrainingBomb + entities: + - uid: 14518 + components: + - type: Transform + pos: 55.5,56.5 + parent: 2 + - uid: 15807 + components: + - type: Transform + pos: 58.5,55.5 + parent: 2 + - uid: 15808 + components: + - type: Transform + pos: 58.5,54.5 + parent: 2 +- proto: TrashBag + entities: + - uid: 7390 + components: + - type: Transform + pos: 55.576614,41.619625 + parent: 2 + - uid: 10759 + components: + - type: Transform + pos: -2.0019374,80.61185 + parent: 2 + - uid: 17705 + components: + - type: Transform + pos: -117.34551,63.616394 + parent: 2 + - uid: 17712 + components: + - type: Transform + pos: -117.55923,63.413994 + parent: 2 + - uid: 21306 + components: + - type: Transform + pos: -57.641296,171.40204 + parent: 2 + - uid: 21307 + components: + - type: Transform + pos: -57.3376,171.61569 + parent: 2 + - uid: 21308 + components: + - type: Transform + pos: -57.27011,171.34583 + parent: 2 + - uid: 24322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.442743,180.48955 + parent: 2 +- proto: TrashBananaPeel + entities: + - uid: 5035 + components: + - type: Transform + pos: 82.49935,64.44148 + parent: 2 + - uid: 14077 + components: + - type: Transform + pos: -70.45905,92.79113 + parent: 2 +- proto: TrashBananiumPeel + entities: + - uid: 33707 + components: + - type: Transform + pos: 4.504265,75.477264 + parent: 2 +- proto: trayScanner + entities: + - uid: 15842 + components: + - type: Transform + pos: -45.547413,70.646576 + parent: 2 + - uid: 25322 + components: + - type: Transform + pos: -127.48907,94.497154 + parent: 2 + - uid: 28006 + components: + - type: Transform + pos: -95.417015,48.643307 + parent: 2 + - uid: 28101 + components: + - type: Transform + pos: -76.38605,45.552673 + parent: 2 +- proto: TreasureCoinGold + entities: + - uid: 3306 + components: + - type: Transform + pos: -84.00142,90.03376 + parent: 2 + - uid: 8863 + components: + - type: Transform + pos: -84.87306,89.7169 + parent: 2 + - uid: 8864 + components: + - type: Transform + pos: -88.67659,88.85874 + parent: 2 +- proto: TrumpetInstrument + entities: + - uid: 12278 + components: + - type: Transform + pos: -112.45739,27.326408 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 689 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1808: + - Right: Forward + - Left: Reverse + - Middle: Off + 1807: + - Left: Reverse + - Right: Forward + - Middle: Off + 70: + - Left: Reverse + - Right: Forward + - Middle: Off + 60: + - Right: Forward + - Left: Reverse + - Middle: Off + 98: + - Left: Reverse + - Right: Forward + - Middle: Off + 65: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 1050 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1048: + - Right: Forward + - Left: Reverse + - Middle: Off + 1047: + - Right: Forward + - Left: Reverse + - Middle: Off + 1043: + - Right: Forward + - Left: Reverse + - Middle: Off + 1040: + - Right: Forward + - Left: Reverse + - Middle: Off + 1041: + - Right: Forward + - Left: Reverse + - Middle: Off + 1042: + - Right: Forward + - Left: Reverse + - Middle: Off + 1104: + - Right: Forward + - Left: Reverse + - Middle: Off + 19520: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 2112 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 277: + - Left: Forward + - Right: Reverse + - Middle: Off + 273: + - Left: Forward + - Right: Reverse + - Middle: Off + 274: + - Left: Forward + - Right: Reverse + - Middle: Off + 275: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 2538 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1806: + - Left: Reverse + - Right: Forward + - Middle: Off + 1805: + - Left: Reverse + - Right: Forward + - Middle: Off + 1801: + - Right: Forward + - Left: Reverse + - Middle: Off + 1803: + - Left: Reverse + - Right: Forward + - Middle: Off + 1802: + - Left: Reverse + - Right: Forward + - Middle: Off + 1804: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 7301 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - type: TwoWayLever + nextSignalLeft: True + - type: DeviceLinkSource + linkedPorts: + 7450: + - Left: Forward + - Right: Reverse + - Middle: Off + 7229: + - Left: Forward + - Right: Reverse + - Middle: Off + 7296: + - Left: Forward + - Right: Reverse + - Middle: Off + 7226: + - Left: Forward + - Right: Reverse + - Middle: Off + 7223: + - Left: Forward + - Right: Reverse + - Middle: Off + 5027: + - Left: Forward + - Right: Reverse + - Middle: Off + 7216: + - Left: Forward + - Right: Reverse + - Middle: Off + 7206: + - Left: Forward + - Right: Reverse + - Middle: Off + 7198: + - Left: Forward + - Right: Reverse + - Middle: Off + 7197: + - Left: Forward + - Right: Reverse + - Middle: Off + 7195: + - Left: Forward + - Right: Reverse + - Middle: Off + 7193: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 10915 + components: + - type: Transform + pos: -39.5,69.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11311: + - Left: Forward + - Right: Reverse + - Middle: Off + 11312: + - Left: Forward + - Right: Reverse + - Middle: Off + 11313: + - Left: Forward + - Right: Reverse + - Middle: Off + 11314: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 11050 + components: + - type: Transform + pos: -33.5,76.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11231: + - Left: Forward + - Right: Reverse + - Middle: Off + 11232: + - Left: Forward + - Right: Reverse + - Middle: Off + 11233: + - Left: Forward + - Right: Reverse + - Middle: Off + 11234: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 11093 + components: + - type: Transform + pos: -33.5,84.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11296: + - Left: Forward + - Right: Reverse + - Middle: Off + 11298: + - Left: Forward + - Right: Reverse + - Middle: Off + 11299: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 11179 + components: + - type: Transform + pos: -48.5,84.5 + parent: 2 + - type: TwoWayLever + nextSignalLeft: True + - type: DeviceLinkSource + linkedPorts: + 11304: + - Left: Forward + - Right: Reverse + - Middle: Off + 11303: + - Left: Forward + - Right: Reverse + - Middle: Off + 11302: + - Left: Forward + - Right: Reverse + - Middle: Off + 11301: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 11206 + components: + - type: Transform + pos: -48.5,76.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11309: + - Left: Forward + - Right: Reverse + - Middle: Off + 11308: + - Left: Forward + - Right: Reverse + - Middle: Off + 11307: + - Left: Forward + - Right: Reverse + - Middle: Off + 11306: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 14714 + components: + - type: Transform + pos: -11.5,168.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15397: + - Left: Forward + - Right: Reverse + - Middle: Off + 15893: + - Left: Forward + - Right: Reverse + - Middle: Off + 16638: + - Left: Forward + - Right: Reverse + - Middle: Off + 15210: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 14762 + components: + - type: Transform + pos: 68.5,35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5521: + - Left: Forward + - Right: Reverse + - Middle: Off + 7049: + - Left: Forward + - Right: Reverse + - Middle: Off + 7581: + - Left: Forward + - Right: Reverse + - Middle: Off + 7580: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 18149 + components: + - type: Transform + pos: -118.5,66.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17834: + - Left: Forward + - Right: Reverse + - Middle: Off + 17721: + - Left: Forward + - Right: Reverse + - Middle: Off + 17393: + - Left: Forward + - Right: Reverse + - Middle: Off + 17745: + - Left: Forward + - Right: Reverse + - Middle: Off + 15331: + - Left: Forward + - Right: Reverse + - Middle: Off + 17396: + - Left: Forward + - Right: Reverse + - Middle: Off + 17772: + - Left: Forward + - Right: Reverse + - Middle: Off + 18304: + - Left: Forward + - Right: Reverse + - Middle: Off + 18200: + - Left: Forward + - Right: Reverse + - Middle: Off + 18626: + - Left: Forward + - Right: Reverse + - Middle: Off + 18994: + - Left: Forward + - Right: Reverse + - Middle: Off + 18565: + - Left: Forward + - Right: Reverse + - Middle: Off + 18685: + - Left: Forward + - Right: Reverse + - Middle: Off + 18990: + - Left: Forward + - Right: Reverse + - Middle: Off + 18042: + - Left: Forward + - Right: Reverse + - Middle: Off + 19521: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 20947 + components: + - type: Transform + pos: -66.5,158.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 20882: + - Left: Forward + - Right: Reverse + - Middle: Off + 20881: + - Left: Forward + - Right: Reverse + - Middle: Off + 20883: + - Left: Forward + - Right: Reverse + - Middle: Off + 20885: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 21320 + components: + - type: Transform + pos: -59.5,173.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21208: + - Left: Forward + - Right: Reverse + - Middle: Off + 21211: + - Left: Forward + - Right: Reverse + - Middle: Off + 21212: + - Left: Forward + - Right: Reverse + - Middle: Off + 21213: + - Left: Forward + - Right: Reverse + - Middle: Off + 21215: + - Left: Forward + - Right: Reverse + - Middle: Off + 21214: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 24377 + components: + - type: Transform + pos: 22.5,178.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 24201: + - Left: Forward + - Right: Reverse + - Middle: Off + 24200: + - Left: Forward + - Right: Reverse + - Middle: Off + 24199: + - Left: Forward + - Right: Reverse + - Middle: Off + 24198: + - Left: Forward + - Right: Reverse + - Middle: Off + 24197: + - Left: Forward + - Right: Reverse + - Middle: Off + 24196: + - Left: Forward + - Right: Reverse + - Middle: Off + 24323: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 36183 + components: + - type: Transform + pos: -110.5,93.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 35749: + - Left: Forward + - Right: Reverse + - Middle: Off + 35741: + - Left: Forward + - Right: Reverse + - Middle: Off + 35740: + - Left: Forward + - Right: Reverse + - Middle: Off + 17426: + - Left: Forward + - Right: Reverse + - Middle: Off + 35734: + - Left: Forward + - Right: Reverse + - Middle: Off + 35735: + - Left: Forward + - Right: Reverse + - Middle: Off + 12948: + - Left: Forward + - Right: Reverse + - Middle: Off + 35739: + - Left: Forward + - Right: Reverse + - Middle: Off + 35737: + - Left: Forward + - Right: Reverse + - Middle: Off + 35736: + - Left: Forward + - Right: Reverse + - Middle: Off + 17561: + - Left: Forward + - Right: Reverse + - Middle: Off + 35747: + - Left: Forward + - Right: Reverse + - Middle: Off + 35742: + - Left: Forward + - Right: Reverse + - Middle: Off + 35748: + - Left: Forward + - Right: Reverse + - Middle: Off + 3942: + - Left: Forward + - Right: Reverse + - Middle: Off + 37597: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 36184 + components: + - type: Transform + pos: -104.5,93.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 35738: + - Left: Forward + - Right: Reverse + - Middle: Off + 35733: + - Left: Forward + - Right: Reverse + - Middle: Off + 35732: + - Left: Forward + - Right: Reverse + - Middle: Off + 17570: + - Left: Forward + - Right: Reverse + - Middle: Off + 35746: + - Left: Forward + - Right: Reverse + - Middle: Off + 35743: + - Left: Forward + - Right: Reverse + - Middle: Off + 35750: + - Left: Forward + - Right: Reverse + - Middle: Off + 35751: + - Left: Forward + - Right: Reverse + - Middle: Off + 35744: + - Left: Forward + - Right: Reverse + - Middle: Off + 35745: + - Left: Forward + - Right: Reverse + - Middle: Off + 17820: + - Left: Forward + - Right: Reverse + - Middle: Off + 35731: + - Left: Forward + - Right: Reverse + - Middle: Off + 35730: + - Left: Forward + - Right: Reverse + - Middle: Off + 35729: + - Left: Forward + - Right: Reverse + - Middle: Off + 4517: + - Left: Forward + - Right: Reverse + - Middle: Off + 4569: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 43227 + components: + - type: Transform + pos: 48.5,51.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17145: + - Left: Forward + - Right: Reverse + - Middle: Off + 5164: + - Left: Forward + - Right: Reverse + - Middle: Off + 5226: + - Left: Forward + - Right: Reverse + - Middle: Off + 23384: + - Left: Forward + - Right: Reverse + - Middle: Off + 4824: + - Left: Forward + - Right: Reverse + - Middle: Off + 23291: + - Left: Forward + - Right: Reverse + - Middle: Off + 4825: + - Left: Forward + - Right: Reverse + - Middle: Off + 7362: + - Left: Forward + - Right: Reverse + - Middle: Off + 4823: + - Left: Forward + - Right: Reverse + - Middle: Off + 4842: + - Left: Forward + - Right: Reverse + - Middle: Off + 5173: + - Left: Forward + - Right: Reverse + - Middle: Off + 4828: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 23448 + components: + - type: Transform + pos: -24.5,198.5 + parent: 2 + - uid: 37052 + components: + - type: Transform + pos: 1.5,0.5 + parent: 36996 +- proto: UniformPrinter + entities: + - uid: 10475 + components: + - type: Transform + pos: -20.5,81.5 + parent: 2 +- proto: UniformShortsRed + entities: + - uid: 1021 + components: + - type: Transform + pos: -80.15831,100.41541 + parent: 2 + - uid: 13695 + components: + - type: Transform + pos: -79.681015,100.38168 + parent: 2 + - uid: 20379 + components: + - type: Transform + pos: -79.87222,100.55035 + parent: 2 + - uid: 24114 + components: + - type: Transform + pos: -79.39981,100.55035 + parent: 2 +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 38267 + components: + - type: Transform + pos: -8.389982,59.73606 + parent: 2 +- proto: UraniumOre1 + entities: + - uid: 1482 + components: + - type: Transform + pos: -51.365433,-12.3053665 + parent: 2 +- proto: Vaccinator + entities: + - uid: 23638 + components: + - type: Transform + pos: 21.5,190.5 + parent: 2 +- proto: Vape + entities: + - uid: 38590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.074394226,-5.470194 + parent: 37842 +- proto: VariantCubeBox + entities: + - uid: 13184 + components: + - type: Transform + pos: -8.806694,62.205544 + parent: 2 + - uid: 20517 + components: + - type: Transform + pos: -92.64765,167.77615 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 11102 + components: + - type: Transform + pos: -33.5,57.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 22205 + components: + - type: Transform + pos: -102.5,37.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 8895 + components: + - type: Transform + pos: -83.5,81.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + pos: -25.5,61.5 + parent: 2 + - uid: 36570 + components: + - type: Transform + pos: -24.5,97.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 937 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 10550 + components: + - type: Transform + pos: -20.5,83.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 4964 + components: + - type: Transform + pos: -53.5,64.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 13183 + components: + - type: Transform + pos: -13.5,62.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 12972 + components: + - type: Transform + pos: -10.5,61.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 35464 + components: + - type: Transform + pos: -19.5,196.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 35465 + components: + - type: Transform + pos: -19.5,194.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 13364 + components: + - type: Transform + pos: 103.5,49.5 + parent: 2 + - uid: 14362 + components: + - type: Transform + pos: -75.5,91.5 + parent: 2 + - uid: 20936 + components: + - type: Transform + pos: -78.5,157.5 + parent: 2 + - uid: 30693 + components: + - type: Transform + pos: -89.5,47.5 + parent: 2 + - uid: 37421 + components: + - type: Transform + pos: -52.5,91.5 + parent: 2 + - uid: 37422 + components: + - type: Transform + pos: -65.5,75.5 + parent: 2 + - uid: 37423 + components: + - type: Transform + pos: -24.5,74.5 + parent: 2 + - uid: 37430 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 38391 + components: + - type: Transform + pos: -54.5,157.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 4923 + components: + - type: Transform + pos: 108.5,63.5 + parent: 2 + - uid: 14041 + components: + - type: Transform + pos: -64.5,114.5 + parent: 2 +- proto: VendingMachineCola + entities: + - uid: 20849 + components: + - type: Transform + pos: -85.5,178.5 + parent: 2 +- proto: VendingMachineColaBlack + entities: + - uid: 24246 + components: + - type: Transform + pos: -78.5,100.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 12995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,70.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 11418 + components: + - type: Transform + pos: -2.5,78.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 20041 + components: + - type: Transform + pos: -18.5,65.5 + parent: 2 +- proto: VendingMachineDiscount + entities: + - uid: 20554 + components: + - type: Transform + pos: -85.5,177.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 28877 + components: + - type: Transform + pos: -105.5,49.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 28753 + components: + - type: Transform + pos: -100.5,45.5 + parent: 2 +- proto: VendingMachineGeneDrobe + entities: + - uid: 23481 + components: + - type: Transform + pos: -23.5,201.5 + parent: 2 + - uid: 23661 + components: + - type: Transform + pos: 12.5,185.5 + parent: 2 +- proto: VendingMachineHappyHonk + entities: + - uid: 37748 + components: + - type: Transform + pos: -26.5,83.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 13281 + components: + - type: Transform + pos: 1.5,66.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 10763 + components: + - type: Transform + pos: -1.5,82.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 14740 + components: + - type: Transform + pos: -78.5,75.5 + parent: 2 +- proto: VendingMachineMagivend + entities: + - uid: 18625 + components: + - type: Transform + pos: -123.5,44.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 4795 + components: + - type: Transform + pos: 82.5,46.5 + parent: 2 + - uid: 19492 + components: + - type: Transform + pos: -0.5,202.5 + parent: 2 + - uid: 23207 + components: + - type: Transform + pos: -11.5,194.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 24286 + components: + - type: Transform + pos: -0.5,205.5 + parent: 2 + - uid: 26466 + components: + - type: Transform + pos: -13.5,171.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 11676 + components: + - type: Transform + pos: -8.5,65.5 + parent: 2 +- proto: VendingMachinePwrGame + entities: + - uid: 10805 + components: + - type: Transform + pos: -5.5,78.5 + parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 20892 + components: + - type: Transform + pos: -73.5,176.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 18516 + components: + - type: Transform + pos: -73.5,175.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 9159 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 20352 + components: + - type: Transform + pos: -89.5,165.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 31464 + components: + - type: Transform + pos: 79.5,63.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 6206 + components: + - type: Transform + pos: 79.5,62.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + pos: -39.5,83.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 11644 + components: + - type: Transform + pos: -7.5,65.5 + parent: 2 +- proto: VendingMachineSnackGreen + entities: + - uid: 20027 + components: + - type: Transform + pos: -83.5,175.5 + parent: 2 +- proto: VendingMachineSovietSoda + entities: + - uid: 16415 + components: + - type: Transform + pos: -103.5,64.5 + parent: 2 + - uid: 28196 + components: + - type: Transform + pos: -84.5,145.5 + parent: 2 + - uid: 36847 + components: + - type: Transform + pos: -99.5,145.5 + parent: 2 + - uid: 37223 + components: + - type: Transform + pos: -40.5,174.5 + parent: 2 +- proto: VendingMachineSpaceUp + entities: + - uid: 17163 + components: + - type: Transform + pos: -88.5,77.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 407 + components: + - type: Transform + pos: 67.5,51.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 31790 + components: + - type: Transform + pos: -100.5,51.5 + parent: 2 + - uid: 35578 + components: + - type: Transform + pos: -121.5,94.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1116 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + pos: 88.5,14.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: 70.5,30.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + pos: 15.5,176.5 + parent: 2 + - uid: 11757 + components: + - type: Transform + pos: -48.5,101.5 + parent: 2 + - uid: 16086 + components: + - type: Transform + pos: -3.5,1.5 + parent: 13386 + - uid: 17077 + components: + - type: Transform + pos: -11.5,78.5 + parent: 2 + - uid: 22290 + components: + - type: Transform + pos: -81.5,49.5 + parent: 2 + - uid: 24777 + components: + - type: Transform + pos: -100.5,37.5 + parent: 2 + - uid: 28197 + components: + - type: Transform + pos: 79.5,35.5 + parent: 2 + - uid: 30862 + components: + - type: Transform + pos: -53.5,10.5 + parent: 2 + - uid: 32280 + components: + - type: Transform + pos: -71.5,145.5 + parent: 2 + - uid: 35569 + components: + - type: Transform + pos: -117.5,37.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 13212 + components: + - type: Transform + pos: -34.5,67.5 + parent: 2 + - uid: 14040 + components: + - type: Transform + pos: -63.5,114.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 14767 + components: + - type: Transform + pos: -50.5,67.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 15544 + components: + - type: Transform + pos: -9.5,195.5 + parent: 2 + - uid: 25250 + components: + - type: Transform + pos: 2.5,201.5 + parent: 2 + - uid: 35480 + components: + - type: Transform + pos: -13.5,198.5 + parent: 2 +- proto: VendingMachineWinter + entities: + - uid: 8312 + components: + - type: Transform + pos: -62.5,114.5 + parent: 2 + - uid: 22957 + components: + - type: Transform + pos: -16.5,188.5 + parent: 2 + - uid: 23985 + components: + - type: Transform + pos: -23.5,206.5 + parent: 2 + - uid: 36381 + components: + - type: Transform + pos: -12.5,171.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 16880 + components: + - type: Transform + pos: -85.5,79.5 + parent: 2 + - uid: 28839 + components: + - type: Transform + pos: -101.5,45.5 + parent: 2 + - uid: 38090 + components: + - type: Transform + pos: -91.5,47.5 + parent: 2 +- proto: WallmountGeneratorAPUElectronics + entities: + - uid: 43267 + components: + - type: Transform + pos: -125.50791,100.50188 + parent: 2 +- proto: WallPlastitanium + entities: + - uid: 455 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: -64.5,9.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: -64.5,10.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: -65.5,10.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: -65.5,9.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: -65.5,11.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: -66.5,11.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: -66.5,10.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: -67.5,11.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: -68.5,11.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: -69.5,12.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: -69.5,13.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: -70.5,12.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: -70.5,14.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + pos: -70.5,13.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: -71.5,14.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: -71.5,13.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: -62.5,8.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 2628 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: -67.5,12.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: 37.5,22.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: 41.5,24.5 + parent: 2 + - uid: 3323 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: 41.5,27.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: 43.5,27.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 49.5,37.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 + - uid: 9874 + components: + - type: Transform + pos: -63.5,8.5 + parent: 2 + - uid: 10442 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - uid: 10445 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - uid: 10448 + components: + - type: Transform + pos: 48.5,34.5 + parent: 2 + - uid: 10449 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 + - uid: 10450 + components: + - type: Transform + pos: 48.5,33.5 + parent: 2 + - uid: 10451 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 10452 + components: + - type: Transform + pos: 47.5,33.5 + parent: 2 + - uid: 10453 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 10454 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 10458 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 10460 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - uid: 10464 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 10469 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 10967 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 12155 + components: + - type: Transform + pos: -62.5,9.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + pos: -137.5,89.5 + parent: 2 + - uid: 14446 + components: + - type: Transform + pos: -74.5,15.5 + parent: 2 + - uid: 15220 + components: + - type: Transform + pos: -138.5,89.5 + parent: 2 + - uid: 15352 + components: + - type: Transform + pos: -137.5,88.5 + parent: 2 + - uid: 15353 + components: + - type: Transform + pos: -138.5,88.5 + parent: 2 + - uid: 15371 + components: + - type: Transform + pos: -138.5,87.5 + parent: 2 + - uid: 15600 + components: + - type: Transform + pos: -136.5,86.5 + parent: 2 + - uid: 15609 + components: + - type: Transform + pos: -136.5,85.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + pos: -137.5,85.5 + parent: 2 + - uid: 15772 + components: + - type: Transform + pos: -137.5,86.5 + parent: 2 + - uid: 15773 + components: + - type: Transform + pos: -136.5,84.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + pos: -137.5,84.5 + parent: 2 + - uid: 15814 + components: + - type: Transform + pos: -137.5,87.5 + parent: 2 + - uid: 20278 + components: + - type: Transform + pos: -48.5,181.5 + parent: 2 + - uid: 20283 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 20284 + components: + - type: Transform + pos: -128.5,64.5 + parent: 2 + - uid: 20286 + components: + - type: Transform + pos: -108.5,133.5 + parent: 2 + - uid: 20287 + components: + - type: Transform + pos: -107.5,133.5 + parent: 2 + - uid: 20288 + components: + - type: Transform + pos: -107.5,134.5 + parent: 2 + - uid: 20289 + components: + - type: Transform + pos: -106.5,133.5 + parent: 2 + - uid: 20290 + components: + - type: Transform + pos: -106.5,134.5 + parent: 2 + - uid: 20291 + components: + - type: Transform + pos: -105.5,135.5 + parent: 2 + - uid: 20292 + components: + - type: Transform + pos: -107.5,132.5 + parent: 2 + - uid: 20293 + components: + - type: Transform + pos: -108.5,132.5 + parent: 2 + - uid: 20294 + components: + - type: Transform + pos: -108.5,131.5 + parent: 2 + - uid: 20295 + components: + - type: Transform + pos: -108.5,130.5 + parent: 2 + - uid: 20296 + components: + - type: Transform + pos: -109.5,131.5 + parent: 2 + - uid: 20297 + components: + - type: Transform + pos: -109.5,130.5 + parent: 2 + - uid: 20298 + components: + - type: Transform + pos: -109.5,129.5 + parent: 2 + - uid: 20299 + components: + - type: Transform + pos: -109.5,128.5 + parent: 2 + - uid: 20300 + components: + - type: Transform + pos: -109.5,127.5 + parent: 2 + - uid: 20301 + components: + - type: Transform + pos: -110.5,128.5 + parent: 2 + - uid: 20302 + components: + - type: Transform + pos: -110.5,127.5 + parent: 2 + - uid: 20303 + components: + - type: Transform + pos: -110.5,126.5 + parent: 2 + - uid: 20304 + components: + - type: Transform + pos: -110.5,125.5 + parent: 2 + - uid: 20305 + components: + - type: Transform + pos: -111.5,126.5 + parent: 2 + - uid: 20306 + components: + - type: Transform + pos: -111.5,125.5 + parent: 2 + - uid: 20307 + components: + - type: Transform + pos: -111.5,124.5 + parent: 2 + - uid: 20308 + components: + - type: Transform + pos: -111.5,123.5 + parent: 2 + - uid: 20309 + components: + - type: Transform + pos: -112.5,124.5 + parent: 2 + - uid: 20310 + components: + - type: Transform + pos: -112.5,123.5 + parent: 2 + - uid: 20311 + components: + - type: Transform + pos: -112.5,122.5 + parent: 2 + - uid: 20312 + components: + - type: Transform + pos: -112.5,121.5 + parent: 2 + - uid: 20313 + components: + - type: Transform + pos: -112.5,120.5 + parent: 2 + - uid: 20314 + components: + - type: Transform + pos: -113.5,121.5 + parent: 2 + - uid: 20315 + components: + - type: Transform + pos: -113.5,120.5 + parent: 2 + - uid: 20316 + components: + - type: Transform + pos: -113.5,119.5 + parent: 2 + - uid: 20317 + components: + - type: Transform + pos: -113.5,118.5 + parent: 2 + - uid: 20318 + components: + - type: Transform + pos: -113.5,117.5 + parent: 2 + - uid: 20319 + components: + - type: Transform + pos: -114.5,118.5 + parent: 2 + - uid: 20320 + components: + - type: Transform + pos: -114.5,117.5 + parent: 2 + - uid: 20321 + components: + - type: Transform + pos: -114.5,116.5 + parent: 2 + - uid: 20322 + components: + - type: Transform + pos: -114.5,115.5 + parent: 2 + - uid: 20323 + components: + - type: Transform + pos: -114.5,114.5 + parent: 2 + - uid: 20324 + components: + - type: Transform + pos: -115.5,115.5 + parent: 2 + - uid: 20325 + components: + - type: Transform + pos: -115.5,114.5 + parent: 2 + - uid: 20326 + components: + - type: Transform + pos: -115.5,113.5 + parent: 2 + - uid: 21080 + components: + - type: Transform + pos: -115.5,112.5 + parent: 2 + - uid: 21145 + components: + - type: Transform + pos: -115.5,111.5 + parent: 2 + - uid: 21146 + components: + - type: Transform + pos: -116.5,112.5 + parent: 2 + - uid: 21147 + components: + - type: Transform + pos: -116.5,111.5 + parent: 2 + - uid: 21148 + components: + - type: Transform + pos: -58.5,179.5 + parent: 2 + - uid: 21149 + components: + - type: Transform + pos: -56.5,180.5 + parent: 2 + - uid: 21150 + components: + - type: Transform + pos: -56.5,181.5 + parent: 2 + - uid: 21151 + components: + - type: Transform + pos: -55.5,180.5 + parent: 2 + - uid: 21152 + components: + - type: Transform + pos: -55.5,181.5 + parent: 2 + - uid: 21153 + components: + - type: Transform + pos: -54.5,180.5 + parent: 2 + - uid: 21154 + components: + - type: Transform + pos: -54.5,181.5 + parent: 2 + - uid: 21155 + components: + - type: Transform + pos: -53.5,180.5 + parent: 2 + - uid: 21156 + components: + - type: Transform + pos: -53.5,181.5 + parent: 2 + - uid: 21157 + components: + - type: Transform + pos: -52.5,180.5 + parent: 2 + - uid: 21158 + components: + - type: Transform + pos: -52.5,181.5 + parent: 2 + - uid: 21159 + components: + - type: Transform + pos: -51.5,181.5 + parent: 2 + - uid: 21160 + components: + - type: Transform + pos: -51.5,182.5 + parent: 2 + - uid: 21161 + components: + - type: Transform + pos: -50.5,181.5 + parent: 2 + - uid: 21162 + components: + - type: Transform + pos: -50.5,182.5 + parent: 2 + - uid: 21163 + components: + - type: Transform + pos: -49.5,181.5 + parent: 2 + - uid: 21164 + components: + - type: Transform + pos: -49.5,182.5 + parent: 2 + - uid: 21165 + components: + - type: Transform + pos: -48.5,182.5 + parent: 2 + - uid: 21166 + components: + - type: Transform + pos: -47.5,182.5 + parent: 2 + - uid: 21167 + components: + - type: Transform + pos: -47.5,183.5 + parent: 2 + - uid: 21168 + components: + - type: Transform + pos: -46.5,182.5 + parent: 2 + - uid: 21169 + components: + - type: Transform + pos: -46.5,183.5 + parent: 2 + - uid: 21170 + components: + - type: Transform + pos: -45.5,182.5 + parent: 2 + - uid: 21171 + components: + - type: Transform + pos: -45.5,183.5 + parent: 2 + - uid: 21172 + components: + - type: Transform + pos: -44.5,182.5 + parent: 2 + - uid: 21173 + components: + - type: Transform + pos: -44.5,183.5 + parent: 2 + - uid: 21174 + components: + - type: Transform + pos: -43.5,182.5 + parent: 2 + - uid: 21228 + components: + - type: Transform + pos: -43.5,183.5 + parent: 2 + - uid: 21245 + components: + - type: Transform + pos: -57.5,180.5 + parent: 2 + - uid: 22213 + components: + - type: Transform + pos: -58.5,180.5 + parent: 2 + - uid: 22214 + components: + - type: Transform + pos: -57.5,179.5 + parent: 2 + - uid: 22222 + components: + - type: Transform + pos: -135.5,80.5 + parent: 2 + - uid: 22225 + components: + - type: Transform + pos: -126.5,65.5 + parent: 2 + - uid: 22227 + components: + - type: Transform + pos: -127.5,66.5 + parent: 2 + - uid: 22237 + components: + - type: Transform + pos: -128.5,67.5 + parent: 2 + - uid: 22239 + components: + - type: Transform + pos: -133.5,73.5 + parent: 2 + - uid: 22242 + components: + - type: Transform + pos: -132.5,72.5 + parent: 2 + - uid: 22247 + components: + - type: Transform + pos: -132.5,74.5 + parent: 2 + - uid: 22252 + components: + - type: Transform + pos: -133.5,77.5 + parent: 2 + - uid: 22253 + components: + - type: Transform + pos: -132.5,73.5 + parent: 2 + - uid: 22256 + components: + - type: Transform + pos: -135.5,77.5 + parent: 2 + - uid: 22257 + components: + - type: Transform + pos: -127.5,64.5 + parent: 2 + - uid: 22258 + components: + - type: Transform + pos: -126.5,64.5 + parent: 2 + - uid: 22259 + components: + - type: Transform + pos: -127.5,65.5 + parent: 2 + - uid: 22260 + components: + - type: Transform + pos: -128.5,65.5 + parent: 2 + - uid: 22261 + components: + - type: Transform + pos: -128.5,66.5 + parent: 2 + - uid: 22263 + components: + - type: Transform + pos: -129.5,66.5 + parent: 2 + - uid: 22264 + components: + - type: Transform + pos: -129.5,67.5 + parent: 2 + - uid: 22266 + components: + - type: Transform + pos: -129.5,68.5 + parent: 2 + - uid: 22267 + components: + - type: Transform + pos: -130.5,68.5 + parent: 2 + - uid: 22268 + components: + - type: Transform + pos: -129.5,69.5 + parent: 2 + - uid: 22270 + components: + - type: Transform + pos: -130.5,69.5 + parent: 2 + - uid: 22271 + components: + - type: Transform + pos: -131.5,69.5 + parent: 2 + - uid: 22272 + components: + - type: Transform + pos: -130.5,70.5 + parent: 2 + - uid: 22273 + components: + - type: Transform + pos: -131.5,70.5 + parent: 2 + - uid: 22274 + components: + - type: Transform + pos: -132.5,70.5 + parent: 2 + - uid: 22275 + components: + - type: Transform + pos: -132.5,71.5 + parent: 2 + - uid: 22276 + components: + - type: Transform + pos: -131.5,71.5 + parent: 2 + - uid: 22277 + components: + - type: Transform + pos: -133.5,74.5 + parent: 2 + - uid: 22279 + components: + - type: Transform + pos: -131.5,72.5 + parent: 2 + - uid: 22280 + components: + - type: Transform + pos: -131.5,73.5 + parent: 2 + - uid: 22283 + components: + - type: Transform + pos: -134.5,75.5 + parent: 2 + - uid: 22284 + components: + - type: Transform + pos: -133.5,76.5 + parent: 2 + - uid: 22285 + components: + - type: Transform + pos: -134.5,76.5 + parent: 2 + - uid: 22286 + components: + - type: Transform + pos: -134.5,77.5 + parent: 2 + - uid: 22287 + components: + - type: Transform + pos: -134.5,78.5 + parent: 2 + - uid: 22304 + components: + - type: Transform + pos: -135.5,78.5 + parent: 2 + - uid: 22305 + components: + - type: Transform + pos: -134.5,74.5 + parent: 2 + - uid: 22308 + components: + - type: Transform + pos: -135.5,79.5 + parent: 2 + - uid: 22330 + components: + - type: Transform + pos: -134.5,79.5 + parent: 2 + - uid: 22331 + components: + - type: Transform + pos: -134.5,80.5 + parent: 2 + - uid: 22332 + components: + - type: Transform + pos: -130.5,67.5 + parent: 2 + - uid: 22333 + components: + - type: Transform + pos: -133.5,75.5 + parent: 2 + - uid: 22334 + components: + - type: Transform + pos: -42.5,184.5 + parent: 2 + - uid: 22335 + components: + - type: Transform + pos: -42.5,183.5 + parent: 2 + - uid: 22336 + components: + - type: Transform + pos: -41.5,184.5 + parent: 2 + - uid: 22337 + components: + - type: Transform + pos: -41.5,183.5 + parent: 2 + - uid: 22338 + components: + - type: Transform + pos: -40.5,184.5 + parent: 2 + - uid: 22339 + components: + - type: Transform + pos: -40.5,183.5 + parent: 2 + - uid: 22340 + components: + - type: Transform + pos: -39.5,184.5 + parent: 2 + - uid: 22341 + components: + - type: Transform + pos: -39.5,183.5 + parent: 2 + - uid: 22342 + components: + - type: Transform + pos: -38.5,184.5 + parent: 2 + - uid: 22343 + components: + - type: Transform + pos: -38.5,183.5 + parent: 2 + - uid: 22344 + components: + - type: Transform + pos: -37.5,184.5 + parent: 2 + - uid: 22345 + components: + - type: Transform + pos: -37.5,183.5 + parent: 2 + - uid: 22346 + components: + - type: Transform + pos: -36.5,184.5 + parent: 2 + - uid: 22347 + components: + - type: Transform + pos: -36.5,183.5 + parent: 2 + - uid: 22348 + components: + - type: Transform + pos: -35.5,184.5 + parent: 2 + - uid: 22349 + components: + - type: Transform + pos: -35.5,183.5 + parent: 2 + - uid: 24800 + components: + - type: Transform + pos: -34.5,184.5 + parent: 2 + - uid: 24808 + components: + - type: Transform + pos: -34.5,183.5 + parent: 2 + - uid: 24809 + components: + - type: Transform + pos: -33.5,184.5 + parent: 2 + - uid: 25181 + components: + - type: Transform + pos: -33.5,183.5 + parent: 2 + - uid: 25332 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 26344 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 26345 + components: + - type: Transform + pos: -72.5,14.5 + parent: 2 + - uid: 26374 + components: + - type: Transform + pos: -116.5,108.5 + parent: 2 + - uid: 26487 + components: + - type: Transform + pos: -116.5,109.5 + parent: 2 + - uid: 27132 + components: + - type: Transform + pos: -117.5,110.5 + parent: 2 + - uid: 27199 + components: + - type: Transform + pos: -72.5,15.5 + parent: 2 + - uid: 27200 + components: + - type: Transform + pos: -73.5,14.5 + parent: 2 + - uid: 27201 + components: + - type: Transform + pos: -73.5,15.5 + parent: 2 + - uid: 27228 + components: + - type: Transform + pos: -74.5,16.5 + parent: 2 + - uid: 27229 + components: + - type: Transform + pos: -73.5,16.5 + parent: 2 + - uid: 27230 + components: + - type: Transform + pos: -75.5,16.5 + parent: 2 + - uid: 27231 + components: + - type: Transform + pos: -75.5,17.5 + parent: 2 + - uid: 27232 + components: + - type: Transform + pos: -76.5,16.5 + parent: 2 + - uid: 27233 + components: + - type: Transform + pos: -76.5,17.5 + parent: 2 + - uid: 27234 + components: + - type: Transform + pos: -76.5,18.5 + parent: 2 + - uid: 27235 + components: + - type: Transform + pos: -77.5,18.5 + parent: 2 + - uid: 27236 + components: + - type: Transform + pos: -77.5,17.5 + parent: 2 + - uid: 27237 + components: + - type: Transform + pos: -77.5,19.5 + parent: 2 + - uid: 27238 + components: + - type: Transform + pos: -78.5,19.5 + parent: 2 + - uid: 27239 + components: + - type: Transform + pos: -78.5,18.5 + parent: 2 + - uid: 27240 + components: + - type: Transform + pos: -79.5,20.5 + parent: 2 + - uid: 27241 + components: + - type: Transform + pos: -79.5,19.5 + parent: 2 + - uid: 27242 + components: + - type: Transform + pos: -80.5,20.5 + parent: 2 + - uid: 27243 + components: + - type: Transform + pos: -80.5,19.5 + parent: 2 + - uid: 27244 + components: + - type: Transform + pos: -80.5,21.5 + parent: 2 + - uid: 27245 + components: + - type: Transform + pos: -81.5,21.5 + parent: 2 + - uid: 27246 + components: + - type: Transform + pos: -81.5,20.5 + parent: 2 + - uid: 27247 + components: + - type: Transform + pos: -81.5,22.5 + parent: 2 + - uid: 27248 + components: + - type: Transform + pos: -82.5,22.5 + parent: 2 + - uid: 27249 + components: + - type: Transform + pos: -82.5,21.5 + parent: 2 + - uid: 27250 + components: + - type: Transform + pos: -82.5,23.5 + parent: 2 + - uid: 27251 + components: + - type: Transform + pos: -83.5,23.5 + parent: 2 + - uid: 27252 + components: + - type: Transform + pos: -83.5,22.5 + parent: 2 + - uid: 27253 + components: + - type: Transform + pos: -83.5,24.5 + parent: 2 + - uid: 27254 + components: + - type: Transform + pos: -84.5,24.5 + parent: 2 + - uid: 27255 + components: + - type: Transform + pos: -84.5,23.5 + parent: 2 + - uid: 28326 + components: + - type: Transform + pos: -135.5,81.5 + parent: 2 + - uid: 28327 + components: + - type: Transform + pos: -135.5,82.5 + parent: 2 + - uid: 28329 + components: + - type: Transform + pos: -136.5,81.5 + parent: 2 + - uid: 28409 + components: + - type: Transform + pos: -135.5,83.5 + parent: 2 + - uid: 28421 + components: + - type: Transform + pos: -136.5,83.5 + parent: 2 + - uid: 28425 + components: + - type: Transform + pos: -136.5,82.5 + parent: 2 + - uid: 29037 + components: + - type: Transform + pos: -116.5,110.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 5 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 7 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 21 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 24 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 25 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 59 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 67 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 69 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 99 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: -84.5,92.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: -49.5,-5.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 32.5,64.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: 31.5,63.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 33.5,64.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 76.5,16.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: 64.5,31.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 31.5,62.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: -30.5,-10.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 + - uid: 242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,20.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: -37.5,1.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: -40.5,1.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 34.5,64.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: 35.5,64.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: -62.5,125.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: -60.5,125.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: 36.5,64.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: -36.5,1.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: -45.5,-6.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -30.5,-21.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 73.5,22.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: -43.5,-16.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: -42.5,-16.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: -43.5,-15.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: -44.5,-13.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: -45.5,-15.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: -45.5,-13.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: -47.5,-15.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: -49.5,-13.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: -49.5,-6.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 50.5,57.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: 67.5,62.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 37.5,64.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: 38.5,64.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: 34.5,62.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: -58.5,-6.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: -56.5,16.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: -55.5,16.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -54.5,16.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: -53.5,16.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: -52.5,16.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: -52.5,15.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: -52.5,14.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: -52.5,13.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: -52.5,12.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: -52.5,11.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -52.5,10.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: -52.5,9.5 + parent: 2 + - uid: 504 components: - type: Transform pos: -52.5,7.5 parent: 2 - - uid: 29320 + - uid: 505 components: - type: Transform - pos: -52.517487,-13.387003 + pos: -52.5,6.5 parent: 2 - - uid: 29321 + - uid: 506 components: - type: Transform - pos: -21.530937,-40.42064 + pos: -53.5,6.5 parent: 2 - - uid: 29322 + - uid: 507 components: - type: Transform - pos: -25.576,-43.60518 + pos: -54.5,6.5 parent: 2 - - uid: 29323 + - uid: 508 components: - type: Transform - pos: 30.5,-30.5 + pos: -55.5,6.5 parent: 2 - - uid: 29324 + - uid: 509 components: - type: Transform - pos: 84.626945,-48.5344 + pos: -56.5,6.5 parent: 2 - - uid: 29325 + - uid: 510 components: - type: Transform - pos: 65.5,-53.5 + pos: -57.5,6.5 parent: 2 - - uid: 29329 + - uid: 511 components: - type: Transform - pos: 31.380894,19.64647 + pos: -58.5,6.5 parent: 2 - - uid: 29829 + - uid: 512 components: - type: Transform - pos: -49.553173,-27.415976 + pos: -61.5,6.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: -61.5,7.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: -61.5,8.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: -61.5,9.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: -61.5,10.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: -61.5,11.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: -60.5,6.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: -61.5,5.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: -61.5,4.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: -61.5,3.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: -61.5,2.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: -61.5,1.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: -61.5,0.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: -58.5,4.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: -58.5,3.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: -58.5,1.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: -58.5,0.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: -60.5,-0.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: -61.5,-0.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: -58.5,-0.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: -58.5,-1.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: -57.5,-1.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: -55.5,-5.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: -56.5,-5.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: -57.5,-5.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: -58.5,-5.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: -58.5,-9.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: -64.5,-11.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: -62.5,-9.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: -62.5,-5.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: -62.5,-2.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: -62.5,-1.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -62.5,-0.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: -64.5,-10.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: -68.5,-6.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: -68.5,-7.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: -67.5,-10.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: -68.5,-10.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: -68.5,-9.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: -64.5,-12.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: -64.5,-13.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: -64.5,-14.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: -65.5,-14.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: -67.5,-14.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: -68.5,-14.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: -68.5,-13.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: -68.5,-12.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: -68.5,-11.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: -72.5,-6.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: -72.5,-7.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: -72.5,-9.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: -72.5,-10.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: -69.5,-10.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: -70.5,-10.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: -71.5,-10.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: -63.5,125.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 38.5,58.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 37.5,58.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: -58.5,125.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: 58.5,28.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: -56.5,125.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: -18.5,87.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: -18.5,86.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: -57.5,125.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: -58.5,135.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -54.5,150.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: -27.5,5.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: -51.5,160.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: -52.5,161.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: -48.5,59.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 114.5,56.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: -37.5,3.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: -56.5,135.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: -56.5,133.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: -57.5,135.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: -56.5,150.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: 80.5,50.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: -75.5,160.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: 74.5,16.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: -137.5,109.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 71.5,70.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 73.5,16.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: -56.5,134.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: -61.5,125.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: -136.5,110.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: -56.5,126.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: -126.5,58.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 77.5,16.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + pos: 58.5,30.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: -17.5,104.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: 65.5,21.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: -6.5,89.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: -16.5,90.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: -85.5,92.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -53.5,60.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 69.5,16.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: 36.5,58.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: 33.5,58.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: -68.5,-3.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: -103.5,150.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + pos: -57.5,133.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + pos: 35.5,58.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + pos: 34.5,58.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: -51.5,161.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: 33.5,62.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + pos: -57.5,127.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: -131.5,37.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: -101.5,97.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: 58.5,31.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + pos: 114.5,50.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: -86.5,92.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: -56.5,127.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + pos: 99.5,60.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: 68.5,37.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + pos: 81.5,23.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: -129.5,54.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: -67.5,125.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: -48.5,58.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: -67.5,127.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: -58.5,12.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: -63.5,135.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,70.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,71.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: -98.5,98.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: -51.5,61.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: -68.5,-4.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: -66.5,-3.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: -83.5,92.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: -24.5,95.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: -89.5,86.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: -54.5,60.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: -5.5,89.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: -114.5,27.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: -67.5,135.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,70.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + pos: -137.5,90.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: -93.5,91.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: -91.5,91.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: -57.5,16.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,71.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,74.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,70.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: 78.5,17.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 72.5,18.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + pos: 72.5,19.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: -58.5,16.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: -52.5,60.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: -93.5,92.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: -93.5,93.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: -91.5,93.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: -58.5,14.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: -53.5,9.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: -100.5,101.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: -16.5,104.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: -58.5,13.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: -83.5,93.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: -58.5,15.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: -54.5,9.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: -55.5,9.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + pos: -55.5,7.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: -56.5,9.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: -58.5,9.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + pos: -60.5,11.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: -59.5,11.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + pos: -58.5,11.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + pos: -55.5,13.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + pos: -55.5,15.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + pos: -55.5,14.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: -75.5,142.5 + parent: 2 + - uid: 3054 + components: + - type: Transform + pos: -76.5,143.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: -78.5,140.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: -129.5,53.5 + parent: 2 + - uid: 3062 + components: + - type: Transform + pos: -125.5,57.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,36.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,35.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: -91.5,92.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: 69.5,37.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: 68.5,31.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: 69.5,32.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + pos: -87.5,92.5 + parent: 2 + - uid: 3296 + components: + - type: Transform + pos: -88.5,92.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: 64.5,45.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: 52.5,37.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: 51.5,37.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: 50.5,37.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: 50.5,39.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: 50.5,40.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + pos: 50.5,44.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: 51.5,44.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: 52.5,44.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: 77.5,32.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: 58.5,68.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: 57.5,68.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + pos: 56.5,68.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + pos: -89.5,92.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,35.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + pos: 41.5,59.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + pos: 40.5,63.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: 40.5,59.5 + parent: 2 + - uid: 3392 + components: + - type: Transform + pos: 81.5,50.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: 75.5,16.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: 50.5,63.5 + parent: 2 + - uid: 3398 + components: + - type: Transform + pos: 46.5,59.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + pos: 48.5,59.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: 41.5,66.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: 43.5,63.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + pos: 49.5,59.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + pos: 48.5,63.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + pos: 44.5,51.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: 44.5,59.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: 50.5,56.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: 43.5,59.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + pos: 56.5,37.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: 41.5,65.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + pos: 56.5,58.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + pos: 56.5,59.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + pos: 56.5,60.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + pos: 56.5,61.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: 56.5,62.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: 56.5,63.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + pos: 56.5,64.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: 51.5,63.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,36.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,35.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + pos: 60.5,37.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + pos: 61.5,37.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + pos: 62.5,37.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + pos: 63.5,37.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: 64.5,37.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + pos: 46.5,63.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + pos: 50.5,59.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: 47.5,63.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: 55.5,46.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: 53.5,46.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: 57.5,57.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + pos: 52.5,58.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: 64.5,68.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: 64.5,67.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: 67.5,64.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: 67.5,63.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: 66.5,64.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: 66.5,63.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: 65.5,64.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: 65.5,63.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: 64.5,63.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: 63.5,64.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: 63.5,63.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: 62.5,64.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: 62.5,63.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + pos: 61.5,64.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: 61.5,63.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: 60.5,64.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: 59.5,64.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: 58.5,64.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + pos: 57.5,64.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: 57.5,63.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: 57.5,58.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: 54.5,58.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: 55.5,58.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + pos: 78.5,67.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: 78.5,68.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + pos: 80.5,68.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: 79.5,68.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + pos: 51.5,59.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: 58.5,57.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + pos: 58.5,56.5 + parent: 2 + - uid: 3554 + components: + - type: Transform + pos: 59.5,57.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: 59.5,56.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: 60.5,57.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + pos: 60.5,56.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: 61.5,57.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: 61.5,56.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + pos: 62.5,57.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: 62.5,56.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: 63.5,57.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: 63.5,56.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + pos: 64.5,57.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + pos: 64.5,56.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + pos: 59.5,68.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: 78.5,41.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: 78.5,43.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: 73.5,42.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + pos: 59.5,51.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + pos: 59.5,48.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: 59.5,50.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + pos: 59.5,54.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + pos: 59.5,49.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: 59.5,53.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: 59.5,52.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: 59.5,55.5 + parent: 2 + - uid: 3596 + components: + - type: Transform + pos: 60.5,53.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + pos: 62.5,53.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + pos: 61.5,53.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + pos: 63.5,53.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + pos: 61.5,50.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + pos: 60.5,50.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + pos: 89.5,64.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: 89.5,63.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + pos: 90.5,64.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + pos: 90.5,63.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + pos: 91.5,63.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + pos: 62.5,50.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: 62.5,47.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: 64.5,47.5 + parent: 2 + - uid: 3628 + components: + - type: Transform + pos: 91.5,62.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: 92.5,62.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: 91.5,60.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: 92.5,60.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: 93.5,60.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: 94.5,60.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + pos: 95.5,60.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + pos: 96.5,60.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + pos: 97.5,60.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + pos: 98.5,60.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + pos: 100.5,60.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + pos: 101.5,60.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + pos: 101.5,61.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + pos: 101.5,62.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + pos: 101.5,63.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + pos: 102.5,63.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + pos: 102.5,64.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + pos: 102.5,65.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + pos: 104.5,63.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + pos: 104.5,64.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + pos: 104.5,65.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + pos: 104.5,66.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + pos: 106.5,63.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + pos: 106.5,64.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + pos: 106.5,65.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + pos: 106.5,66.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + pos: 107.5,64.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + pos: 108.5,64.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: 109.5,64.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + pos: 110.5,64.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: 110.5,63.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + pos: 110.5,65.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + pos: 110.5,66.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + pos: 112.5,63.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + pos: 112.5,64.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + pos: 112.5,65.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + pos: 112.5,66.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + pos: 114.5,66.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: 114.5,65.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: 114.5,64.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + pos: 114.5,63.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: 115.5,63.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: 115.5,62.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + pos: 115.5,61.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + pos: 115.5,60.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: 116.5,60.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + pos: 117.5,60.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: 117.5,59.5 + parent: 2 + - uid: 3691 + components: + - type: Transform + pos: 118.5,59.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: 119.5,59.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: 119.5,57.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: 118.5,57.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: 117.5,57.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + pos: 117.5,56.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: 116.5,56.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: 115.5,56.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: 64.5,43.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: 115.5,50.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + pos: 65.5,41.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + pos: 64.5,41.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: 116.5,50.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + pos: 117.5,50.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + pos: 117.5,49.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + pos: 118.5,49.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: 119.5,49.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: 113.5,50.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + pos: 113.5,56.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + pos: 64.5,42.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + pos: 112.5,56.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: 111.5,56.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + pos: 107.5,56.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + pos: 103.5,56.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + pos: 102.5,56.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + pos: 101.5,56.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + pos: 100.5,56.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + pos: 99.5,56.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: 98.5,56.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + pos: 74.5,42.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: 100.5,50.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: 101.5,50.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: 102.5,50.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: 103.5,50.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: 111.5,50.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: 112.5,50.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: 74.5,41.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + pos: 68.5,41.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: 68.5,45.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: 67.5,60.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: 67.5,59.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: 55.5,60.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + pos: 68.5,64.5 + parent: 2 + - uid: 3778 + components: + - type: Transform + pos: 69.5,45.5 + parent: 2 + - uid: 3779 + components: + - type: Transform + pos: 74.5,45.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - uid: 3794 + components: + - type: Transform + pos: 82.5,34.5 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 3797 + components: + - type: Transform + pos: 75.5,37.5 + parent: 2 + - uid: 3799 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 3801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,72.5 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: 82.5,37.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: 82.5,36.5 + parent: 2 + - uid: 3804 + components: + - type: Transform + pos: 82.5,35.5 + parent: 2 + - uid: 3805 + components: + - type: Transform + pos: 82.5,33.5 + parent: 2 + - uid: 3806 + components: + - type: Transform + pos: 84.5,33.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: 84.5,34.5 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: 84.5,35.5 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: 84.5,36.5 + parent: 2 + - uid: 3810 + components: + - type: Transform + pos: 84.5,37.5 + parent: 2 + - uid: 3811 + components: + - type: Transform + pos: 85.5,37.5 + parent: 2 + - uid: 3812 + components: + - type: Transform + pos: 86.5,37.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: 91.5,42.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + pos: 91.5,43.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + pos: 91.5,44.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + pos: 91.5,45.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: 91.5,46.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + pos: 92.5,46.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + pos: 68.5,18.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + pos: 94.5,46.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: 95.5,46.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: 96.5,46.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + pos: 97.5,46.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: 98.5,46.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: 99.5,46.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: 100.5,46.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + pos: 101.5,46.5 + parent: 2 + - uid: 3837 + components: + - type: Transform + pos: 102.5,46.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: 69.5,36.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: 102.5,45.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + pos: 102.5,44.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + pos: 103.5,44.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: 104.5,44.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + pos: 104.5,43.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + pos: 104.5,42.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: 104.5,41.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + pos: 104.5,40.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: 106.5,40.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: 106.5,41.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + pos: 106.5,42.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: 106.5,43.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: 106.5,44.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: 72.5,17.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + pos: 72.5,16.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: 111.5,42.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: 111.5,44.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: 111.5,43.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: 111.5,41.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: 111.5,40.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: 113.5,40.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: 113.5,41.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + pos: 113.5,42.5 + parent: 2 + - uid: 3872 + components: + - type: Transform + pos: 113.5,43.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: 113.5,44.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: 114.5,44.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: 115.5,44.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: 115.5,46.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: 115.5,45.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + pos: 116.5,46.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: 117.5,46.5 + parent: 2 + - uid: 3880 + components: + - type: Transform + pos: 117.5,47.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + pos: 118.5,47.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: 119.5,47.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + pos: 69.5,31.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + pos: 55.5,59.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + pos: 50.5,58.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: 55.5,62.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + pos: 61.5,68.5 + parent: 2 + - uid: 3909 + components: + - type: Transform + pos: 60.5,68.5 + parent: 2 + - uid: 3912 + components: + - type: Transform + pos: 4.5,89.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + pos: -89.5,91.5 + parent: 2 + - uid: 3915 + components: + - type: Transform + pos: 55.5,63.5 + parent: 2 + - uid: 3917 + components: + - type: Transform + pos: 43.5,66.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + pos: 41.5,64.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: 43.5,65.5 + parent: 2 + - uid: 3926 + components: + - type: Transform + pos: 39.5,63.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + pos: 73.5,45.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + pos: 72.5,45.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: 77.5,45.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + pos: 78.5,45.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + pos: 77.5,41.5 + parent: 2 + - uid: 3941 + components: + - type: Transform + pos: 78.5,42.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + pos: 82.5,53.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + pos: -77.5,41.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: 83.5,49.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: 83.5,50.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: 83.5,51.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: 83.5,52.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: 83.5,53.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: 83.5,57.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: 83.5,56.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: 83.5,55.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: 83.5,54.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + pos: 82.5,50.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + pos: 79.5,50.5 + parent: 2 + - uid: 3967 + components: + - type: Transform + pos: 75.5,61.5 + parent: 2 + - uid: 3969 + components: + - type: Transform + pos: 75.5,59.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + pos: 75.5,62.5 + parent: 2 + - uid: 3971 + components: + - type: Transform + pos: 75.5,64.5 + parent: 2 + - uid: 3973 + components: + - type: Transform + pos: 74.5,64.5 + parent: 2 + - uid: 3974 + components: + - type: Transform + pos: 80.5,62.5 + parent: 2 + - uid: 3975 + components: + - type: Transform + pos: 80.5,61.5 + parent: 2 + - uid: 3976 + components: + - type: Transform + pos: 80.5,64.5 + parent: 2 + - uid: 3977 + components: + - type: Transform + pos: 76.5,64.5 + parent: 2 + - uid: 3979 + components: + - type: Transform + pos: 78.5,64.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: 80.5,63.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: 77.5,64.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + pos: 79.5,64.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: 89.5,62.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: 90.5,62.5 + parent: 2 + - uid: 3985 + components: + - type: Transform + pos: 78.5,19.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: -16.5,170.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + pos: 83.5,48.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + pos: 81.5,59.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + pos: 88.5,62.5 + parent: 2 + - uid: 4030 + components: + - type: Transform + pos: 49.5,46.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: 85.5,62.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: 87.5,62.5 + parent: 2 + - uid: 4033 + components: + - type: Transform + pos: 84.5,62.5 + parent: 2 + - uid: 4035 + components: + - type: Transform + pos: 98.5,50.5 + parent: 2 + - uid: 4036 + components: + - type: Transform + pos: 99.5,50.5 + parent: 2 + - uid: 4042 + components: + - type: Transform + pos: 107.5,50.5 + parent: 2 + - uid: 4044 + components: + - type: Transform + pos: 91.5,52.5 + parent: 2 + - uid: 4046 + components: + - type: Transform + pos: 91.5,50.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + pos: 92.5,50.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + pos: 91.5,54.5 + parent: 2 + - uid: 4053 + components: + - type: Transform + pos: 91.5,56.5 + parent: 2 + - uid: 4054 + components: + - type: Transform + pos: 92.5,56.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + pos: 64.5,65.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + pos: 81.5,56.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + pos: 67.5,56.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + pos: -67.5,133.5 + parent: 2 + - uid: 4125 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 41.5,67.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 4143 + components: + - type: Transform + pos: 44.5,47.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + pos: 81.5,47.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: 68.5,56.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + pos: 74.5,56.5 + parent: 2 + - uid: 4175 + components: + - type: Transform + pos: 78.5,44.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + pos: 51.5,46.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: -131.5,29.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + pos: -131.5,46.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: 79.5,56.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + pos: 75.5,56.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: 78.5,56.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + pos: 75.5,63.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: -131.5,47.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + pos: 75.5,60.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 83.5,59.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: 83.5,58.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: 82.5,59.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,70.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: 78.5,65.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: 63.5,47.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: 63.5,50.5 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: 65.5,45.5 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: -107.5,104.5 + parent: 2 + - uid: 4267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,70.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: -128.5,110.5 + parent: 2 + - uid: 4280 + components: + - type: Transform + pos: -129.5,110.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: -144.5,104.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: -131.5,104.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: -135.5,104.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + pos: -136.5,104.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + pos: -130.5,104.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: -137.5,104.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + pos: 63.5,42.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + pos: 59.5,45.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: -138.5,104.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + pos: 58.5,63.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: 62.5,42.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: 59.5,63.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: 59.5,42.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + pos: -51.5,58.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + pos: -51.5,60.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + pos: -51.5,57.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: 41.5,63.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: 60.5,63.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + pos: -68.5,126.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + pos: 39.5,59.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 4473 + components: + - type: Transform + pos: -134.5,37.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + pos: -68.5,127.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: -68.5,133.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: -51.5,59.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + pos: 51.5,58.5 + parent: 2 + - uid: 4504 + components: + - type: Transform + pos: 55.5,61.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,73.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + pos: 57.5,56.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + pos: 44.5,49.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + pos: 44.5,50.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: -138.5,110.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + pos: -68.5,134.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + pos: 48.5,46.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + pos: 60.5,42.5 + parent: 2 + - uid: 4559 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 + - uid: 4564 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: 56.5,48.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + pos: 56.5,57.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + pos: 43.5,64.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + pos: 50.5,46.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: 52.5,46.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: 54.5,46.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + pos: 43.5,67.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + pos: 63.5,68.5 + parent: 2 + - uid: 4630 + components: + - type: Transform + pos: 84.5,61.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + pos: 83.5,61.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + pos: 82.5,61.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + pos: 81.5,61.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + pos: 84.5,63.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + pos: 84.5,64.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: 83.5,64.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: 81.5,64.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: 5.5,89.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: -20.5,60.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: -102.5,53.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: -13.5,202.5 + parent: 2 + - uid: 4803 + components: + - type: Transform + pos: 78.5,16.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: -14.5,98.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: -21.5,160.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + pos: 92.5,55.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,28.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + pos: 69.5,30.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 4920 + components: + - type: Transform + pos: 107.5,49.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + pos: -17.5,208.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + pos: 92.5,51.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: 20.5,170.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + pos: 4.5,78.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: -66.5,149.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: 112.5,49.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: -18.5,208.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: 102.5,66.5 + parent: 2 + - uid: 5064 + components: + - type: Transform + pos: -101.5,68.5 + parent: 2 + - uid: 5065 + components: + - type: Transform + pos: -101.5,67.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: -102.5,67.5 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: -103.5,67.5 + parent: 2 + - uid: 5069 + components: + - type: Transform + pos: -103.5,66.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 5112 + components: + - type: Transform + pos: 56.5,52.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: 50.5,54.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + pos: 39.5,62.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: 56.5,31.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + pos: -78.5,139.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: 44.5,52.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: 39.5,60.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: 44.5,53.5 + parent: 2 + - uid: 5177 + components: + - type: Transform + pos: 62.5,68.5 + parent: 2 + - uid: 5179 + components: + - type: Transform + pos: 44.5,57.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 + - uid: 5208 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + pos: -15.5,166.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + pos: -89.5,56.5 + parent: 2 + - uid: 5281 + components: + - type: Transform + pos: -90.5,55.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: -90.5,56.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + pos: 48.5,54.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + pos: 50.5,55.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: 45.5,54.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: 47.5,54.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + pos: 85.5,12.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + pos: 80.5,32.5 + parent: 2 + - uid: 5383 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + pos: 55.5,31.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + pos: 69.5,19.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + pos: 22.5,170.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + pos: 68.5,16.5 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: 71.5,16.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + pos: 68.5,17.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + pos: 74.5,22.5 + parent: 2 + - uid: 5449 + components: + - type: Transform + pos: 23.5,172.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + pos: 73.5,24.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + pos: 70.5,31.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + pos: 68.5,24.5 + parent: 2 + - uid: 5457 + components: + - type: Transform + pos: 67.5,24.5 + parent: 2 + - uid: 5458 + components: + - type: Transform + pos: 66.5,24.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: 72.5,31.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,28.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: 56.5,28.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: 69.5,25.5 + parent: 2 + - uid: 5475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,24.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + pos: 72.5,25.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + pos: 51.5,33.5 + parent: 2 + - uid: 5517 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + pos: 63.5,36.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + pos: 23.5,173.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + pos: -20.5,207.5 + parent: 2 + - uid: 5577 + components: + - type: Transform + pos: 23.5,170.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: 66.5,19.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + pos: 83.5,19.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + pos: 83.5,20.5 + parent: 2 + - uid: 5626 + components: + - type: Transform + pos: 83.5,18.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + pos: 83.5,17.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + pos: 83.5,16.5 + parent: 2 + - uid: 5629 + components: + - type: Transform + pos: 83.5,15.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + pos: 83.5,14.5 + parent: 2 + - uid: 5631 + components: + - type: Transform + pos: 84.5,20.5 + parent: 2 + - uid: 5632 + components: + - type: Transform + pos: 84.5,19.5 + parent: 2 + - uid: 5633 + components: + - type: Transform + pos: 84.5,18.5 + parent: 2 + - uid: 5634 + components: + - type: Transform + pos: 84.5,17.5 + parent: 2 + - uid: 5635 + components: + - type: Transform + pos: 84.5,16.5 + parent: 2 + - uid: 5636 + components: + - type: Transform + pos: 84.5,15.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + pos: 84.5,14.5 + parent: 2 + - uid: 5638 + components: + - type: Transform + pos: 84.5,13.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: 85.5,13.5 + parent: 2 + - uid: 5640 + components: + - type: Transform + pos: 85.5,14.5 + parent: 2 + - uid: 5641 + components: + - type: Transform + pos: 86.5,12.5 + parent: 2 + - uid: 5642 + components: + - type: Transform + pos: 86.5,13.5 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: 87.5,12.5 + parent: 2 + - uid: 5644 + components: + - type: Transform + pos: 87.5,13.5 + parent: 2 + - uid: 5645 + components: + - type: Transform + pos: 88.5,12.5 + parent: 2 + - uid: 5646 + components: + - type: Transform + pos: 88.5,13.5 + parent: 2 + - uid: 5647 + components: + - type: Transform + pos: 89.5,12.5 + parent: 2 + - uid: 5648 + components: + - type: Transform + pos: 89.5,13.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: 90.5,12.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: 90.5,13.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: 91.5,13.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: 91.5,14.5 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: 92.5,13.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: 92.5,14.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: 93.5,14.5 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: 93.5,15.5 + parent: 2 + - uid: 5658 + components: + - type: Transform + pos: 93.5,16.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + pos: 93.5,17.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + pos: 93.5,18.5 + parent: 2 + - uid: 5661 + components: + - type: Transform + pos: 93.5,19.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + pos: 92.5,15.5 + parent: 2 + - uid: 5663 + components: + - type: Transform + pos: 92.5,16.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: 92.5,17.5 + parent: 2 + - uid: 5665 + components: + - type: Transform + pos: 92.5,18.5 + parent: 2 + - uid: 5666 + components: + - type: Transform + pos: 92.5,19.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: 92.5,20.5 + parent: 2 + - uid: 5668 + components: + - type: Transform + pos: 92.5,21.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + pos: 91.5,20.5 + parent: 2 + - uid: 5670 + components: + - type: Transform + pos: 91.5,21.5 + parent: 2 + - uid: 5671 + components: + - type: Transform + pos: 89.5,21.5 + parent: 2 + - uid: 5673 + components: + - type: Transform + pos: 90.5,21.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: 90.5,22.5 + parent: 2 + - uid: 5675 + components: + - type: Transform + pos: 91.5,22.5 + parent: 2 + - uid: 5676 + components: + - type: Transform + pos: 87.5,21.5 + parent: 2 + - uid: 5678 + components: + - type: Transform + pos: 86.5,21.5 + parent: 2 + - uid: 5679 + components: + - type: Transform + pos: 86.5,22.5 + parent: 2 + - uid: 5680 + components: + - type: Transform + pos: 85.5,21.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + pos: 85.5,22.5 + parent: 2 + - uid: 5682 + components: + - type: Transform + pos: 85.5,20.5 + parent: 2 + - uid: 5683 + components: + - type: Transform + pos: 84.5,21.5 + parent: 2 + - uid: 5684 + components: + - type: Transform + pos: 86.5,23.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + pos: 86.5,24.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + pos: 86.5,25.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + pos: 87.5,25.5 + parent: 2 + - uid: 5688 + components: + - type: Transform + pos: 89.5,25.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: 90.5,25.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + pos: 90.5,24.5 + parent: 2 + - uid: 5691 + components: + - type: Transform + pos: 90.5,23.5 + parent: 2 + - uid: 5708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,198.5 + parent: 2 + - uid: 5719 + components: + - type: Transform + pos: 67.5,19.5 + parent: 2 + - uid: 5732 + components: + - type: Transform + pos: -102.5,55.5 + parent: 2 + - uid: 5734 + components: + - type: Transform + pos: -100.5,56.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 6.5,82.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + pos: 74.5,37.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: -98.5,52.5 + parent: 2 + - uid: 5828 + components: + - type: Transform + pos: 21.5,170.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + pos: -19.5,207.5 + parent: 2 + - uid: 5844 + components: + - type: Transform + pos: -11.5,166.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + pos: 68.5,19.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: 23.5,171.5 + parent: 2 + - uid: 5874 + components: + - type: Transform + pos: 65.5,19.5 + parent: 2 + - uid: 5875 + components: + - type: Transform + pos: 71.5,19.5 + parent: 2 + - uid: 5898 + components: + - type: Transform + pos: 44.5,54.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: 44.5,55.5 + parent: 2 + - uid: 5916 + components: + - type: Transform + pos: 59.5,44.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: 49.5,54.5 + parent: 2 + - uid: 6044 + components: + - type: Transform + pos: 91.5,51.5 + parent: 2 + - uid: 6047 + components: + - type: Transform + pos: 91.5,55.5 + parent: 2 + - uid: 6051 + components: + - type: Transform + pos: 93.5,46.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + pos: 80.5,47.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + pos: -22.5,205.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + pos: 32.5,58.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + pos: 56.5,56.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + pos: 72.5,22.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + pos: -147.5,104.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + pos: 47.5,51.5 + parent: 2 + - uid: 6441 + components: + - type: Transform + pos: 47.5,48.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + pos: 78.5,18.5 + parent: 2 + - uid: 6504 + components: + - type: Transform + pos: 75.5,22.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + pos: -53.5,170.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + pos: 81.5,60.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: -10.5,166.5 + parent: 2 + - uid: 6636 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,126.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,134.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,127.5 + parent: 2 + - uid: 7031 + components: + - type: Transform + pos: 73.5,56.5 + parent: 2 + - uid: 7040 + components: + - type: Transform + pos: 73.5,32.5 + parent: 2 + - uid: 7047 + components: + - type: Transform + pos: 64.5,60.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: 63.5,33.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: 63.5,31.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: 63.5,32.5 + parent: 2 + - uid: 7055 + components: + - type: Transform + pos: 73.5,33.5 + parent: 2 + - uid: 7056 + components: + - type: Transform + pos: 73.5,37.5 + parent: 2 + - uid: 7076 + components: + - type: Transform + pos: 49.5,63.5 + parent: 2 + - uid: 7077 + components: + - type: Transform + pos: -137.5,105.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,127.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + pos: 46.5,54.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,127.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: 70.5,56.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + pos: -22.5,204.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,128.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,129.5 + parent: 2 + - uid: 7305 + components: + - type: Transform + pos: 73.5,35.5 + parent: 2 + - uid: 7317 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 7319 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,130.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,131.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,132.5 + parent: 2 + - uid: 7499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,133.5 + parent: 2 + - uid: 7514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,133.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + pos: -18.5,202.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,133.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,129.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,128.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + pos: 73.5,36.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: 73.5,34.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,131.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,132.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + pos: 82.5,56.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,133.5 + parent: 2 + - uid: 7625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,127.5 + parent: 2 + - uid: 7626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,135.5 + parent: 2 + - uid: 7627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,135.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,135.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,136.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,136.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,149.5 + parent: 2 + - uid: 7826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,149.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,127.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,132.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,199.5 + parent: 2 + - uid: 7873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,173.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,172.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,132.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,52.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + pos: 58.5,23.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,153.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,157.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,153.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,155.5 + parent: 2 + - uid: 8128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,156.5 + parent: 2 + - uid: 8148 + components: + - type: Transform + pos: 57.5,23.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + pos: 69.5,26.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -114.5,33.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + pos: 73.5,26.5 + parent: 2 + - uid: 8339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,33.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: 58.5,26.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 8365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,33.5 + parent: 2 + - uid: 8381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,33.5 + parent: 2 + - uid: 8392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,33.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,33.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,30.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,23.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,25.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 + - uid: 8485 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,59.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,60.5 + parent: 2 + - uid: 8488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,61.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + pos: -32.5,99.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 51.5,31.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: 73.5,25.5 + parent: 2 + - uid: 8520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -122.5,90.5 + parent: 2 + - uid: 8527 + components: + - type: Transform + pos: -31.5,195.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + pos: -33.5,197.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + pos: -31.5,196.5 + parent: 2 + - uid: 8543 + components: + - type: Transform + pos: -32.5,197.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + pos: -31.5,194.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + pos: -31.5,197.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,89.5 + parent: 2 + - uid: 8548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,90.5 + parent: 2 + - uid: 8554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,90.5 + parent: 2 + - uid: 8555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,90.5 + parent: 2 + - uid: 8556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,87.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,88.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: 55.5,20.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 8638 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + pos: 58.5,27.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: -108.5,101.5 + parent: 2 + - uid: 8651 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - uid: 8659 + components: + - type: Transform + pos: -16.5,166.5 + parent: 2 + - uid: 8667 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 + - uid: 8669 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 8670 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 8671 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 8672 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 8673 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 8676 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 8678 + components: + - type: Transform + pos: 73.5,31.5 + parent: 2 + - uid: 8679 + components: + - type: Transform + pos: 52.5,33.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,60.5 + parent: 2 + - uid: 8683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,59.5 + parent: 2 + - uid: 8685 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 8686 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 8687 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 8688 + components: + - type: Transform + pos: 56.5,21.5 + parent: 2 + - uid: 8690 + components: + - type: Transform + pos: 53.5,33.5 + parent: 2 + - uid: 9042 + components: + - type: Transform + pos: -31.5,99.5 + parent: 2 + - uid: 9076 + components: + - type: Transform + pos: -51.5,82.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + pos: -52.5,84.5 + parent: 2 + - uid: 9094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,174.5 + parent: 2 + - uid: 9095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,128.5 + parent: 2 + - uid: 9097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,133.5 + parent: 2 + - uid: 9098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,128.5 + parent: 2 + - uid: 9129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,79.5 + parent: 2 + - uid: 9130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,79.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,79.5 + parent: 2 + - uid: 9134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,79.5 + parent: 2 + - uid: 9135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,79.5 + parent: 2 + - uid: 9136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,79.5 + parent: 2 + - uid: 9137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,79.5 + parent: 2 + - uid: 9138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,78.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,73.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,72.5 + parent: 2 + - uid: 9142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,72.5 + parent: 2 + - uid: 9143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,72.5 + parent: 2 + - uid: 9144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,72.5 + parent: 2 + - uid: 9145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,72.5 + parent: 2 + - uid: 9146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,72.5 + parent: 2 + - uid: 9147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,72.5 + parent: 2 + - uid: 9149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,76.5 + parent: 2 + - uid: 9150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,77.5 + parent: 2 + - uid: 9151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,78.5 + parent: 2 + - uid: 9152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,72.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,73.5 + parent: 2 + - uid: 9155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,74.5 + parent: 2 + - uid: 9156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,73.5 + parent: 2 + - uid: 9157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,74.5 + parent: 2 + - uid: 9158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,75.5 + parent: 2 + - uid: 9850 + components: + - type: Transform + pos: -113.5,101.5 + parent: 2 + - uid: 9853 + components: + - type: Transform + pos: -112.5,101.5 + parent: 2 + - uid: 9876 + components: + - type: Transform + pos: -18.5,203.5 + parent: 2 + - uid: 9893 + components: + - type: Transform + pos: -104.5,101.5 + parent: 2 + - uid: 10279 + components: + - type: Transform + pos: -67.5,113.5 + parent: 2 + - uid: 10297 + components: + - type: Transform + pos: -59.5,111.5 + parent: 2 + - uid: 10299 + components: + - type: Transform + pos: -71.5,113.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + pos: -59.5,112.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + pos: -59.5,110.5 + parent: 2 + - uid: 10309 + components: + - type: Transform + pos: -68.5,113.5 + parent: 2 + - uid: 10380 + components: + - type: Transform + pos: 10.5,69.5 + parent: 2 + - uid: 10382 + components: + - type: Transform + pos: -21.5,85.5 + parent: 2 + - uid: 10383 + components: + - type: Transform + pos: -20.5,85.5 + parent: 2 + - uid: 10384 + components: + - type: Transform + pos: -19.5,85.5 + parent: 2 + - uid: 10385 + components: + - type: Transform + pos: -18.5,85.5 + parent: 2 + - uid: 10388 + components: + - type: Transform + pos: -18.5,88.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + pos: -17.5,88.5 + parent: 2 + - uid: 10390 + components: + - type: Transform + pos: -16.5,88.5 + parent: 2 + - uid: 10391 + components: + - type: Transform + pos: -15.5,88.5 + parent: 2 + - uid: 10392 + components: + - type: Transform + pos: -14.5,88.5 + parent: 2 + - uid: 10393 + components: + - type: Transform + pos: -14.5,85.5 + parent: 2 + - uid: 10395 + components: + - type: Transform + pos: -13.5,85.5 + parent: 2 + - uid: 10396 + components: + - type: Transform + pos: -12.5,85.5 + parent: 2 + - uid: 10397 + components: + - type: Transform + pos: -11.5,85.5 + parent: 2 + - uid: 10398 + components: + - type: Transform + pos: -10.5,85.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + pos: -9.5,85.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + pos: -8.5,85.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + pos: -8.5,84.5 + parent: 2 + - uid: 10402 + components: + - type: Transform + pos: -8.5,83.5 + parent: 2 + - uid: 10404 + components: + - type: Transform + pos: -8.5,81.5 + parent: 2 + - uid: 10405 + components: + - type: Transform + pos: -8.5,80.5 + parent: 2 + - uid: 10406 + components: + - type: Transform + pos: -8.5,79.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: -8.5,78.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + pos: -8.5,77.5 + parent: 2 + - uid: 10409 + components: + - type: Transform + pos: -8.5,76.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + pos: -9.5,76.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + pos: -13.5,76.5 + parent: 2 + - uid: 10415 + components: + - type: Transform + pos: -14.5,76.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + pos: -14.5,77.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + pos: -14.5,78.5 + parent: 2 + - uid: 10418 + components: + - type: Transform + pos: -14.5,79.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + pos: -15.5,80.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + pos: -20.5,80.5 + parent: 2 + - uid: 10431 + components: + - type: Transform + pos: -21.5,80.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: -21.5,81.5 + parent: 2 + - uid: 10433 + components: + - type: Transform + pos: -21.5,83.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + pos: -21.5,84.5 + parent: 2 + - uid: 10435 + components: + - type: Transform + pos: -14.5,87.5 + parent: 2 + - uid: 10473 + components: + - type: Transform + pos: -21.5,88.5 + parent: 2 + - uid: 10474 + components: + - type: Transform + pos: -21.5,86.5 + parent: 2 + - uid: 10477 + components: + - type: Transform + pos: -21.5,87.5 + parent: 2 + - uid: 10480 + components: + - type: Transform + pos: -20.5,88.5 + parent: 2 + - uid: 10547 + components: + - type: Transform + pos: -19.5,88.5 + parent: 2 + - uid: 10556 + components: + - type: Transform + pos: -22.5,163.5 + parent: 2 + - uid: 10605 + components: + - type: Transform + pos: -19.5,203.5 + parent: 2 + - uid: 10631 + components: + - type: Transform + pos: -57.5,106.5 + parent: 2 + - uid: 10632 + components: + - type: Transform + pos: -95.5,143.5 + parent: 2 + - uid: 10645 + components: + - type: Transform + pos: -20.5,203.5 + parent: 2 + - uid: 10700 + components: + - type: Transform + pos: -131.5,48.5 + parent: 2 + - uid: 10748 + components: + - type: Transform + pos: -9.5,172.5 + parent: 2 + - uid: 10813 + components: + - type: Transform + pos: -16.5,100.5 + parent: 2 + - uid: 10820 + components: + - type: Transform + pos: -15.5,96.5 + parent: 2 + - uid: 10835 + components: + - type: Transform + pos: -34.5,193.5 + parent: 2 + - uid: 10854 + components: + - type: Transform + pos: -57.5,104.5 + parent: 2 + - uid: 10857 + components: + - type: Transform + pos: -16.5,172.5 + parent: 2 + - uid: 10859 + components: + - type: Transform + pos: -12.5,163.5 + parent: 2 + - uid: 10861 + components: + - type: Transform + pos: -11.5,163.5 + parent: 2 + - uid: 10866 + components: + - type: Transform + pos: -35.5,92.5 + parent: 2 + - uid: 10871 + components: + - type: Transform + pos: 2.5,89.5 + parent: 2 + - uid: 10872 + components: + - type: Transform + pos: 3.5,89.5 + parent: 2 + - uid: 10875 + components: + - type: Transform + pos: -20.5,103.5 + parent: 2 + - uid: 10889 + components: + - type: Transform + pos: -19.5,106.5 + parent: 2 + - uid: 10890 + components: + - type: Transform + pos: -20.5,104.5 + parent: 2 + - uid: 10891 + components: + - type: Transform + pos: -19.5,105.5 + parent: 2 + - uid: 10892 + components: + - type: Transform + pos: -19.5,104.5 + parent: 2 + - uid: 10893 + components: + - type: Transform + pos: -17.5,105.5 + parent: 2 + - uid: 10894 + components: + - type: Transform + pos: -17.5,106.5 + parent: 2 + - uid: 10902 + components: + - type: Transform + pos: -16.5,91.5 + parent: 2 + - uid: 10905 + components: + - type: Transform + pos: -15.5,90.5 + parent: 2 + - uid: 10906 + components: + - type: Transform + pos: -14.5,96.5 + parent: 2 + - uid: 10909 + components: + - type: Transform + pos: -12.5,100.5 + parent: 2 + - uid: 10910 + components: + - type: Transform + pos: -16.5,96.5 + parent: 2 + - uid: 10914 + components: + - type: Transform + pos: -16.5,95.5 + parent: 2 + - uid: 10935 + components: + - type: Transform + pos: 3.5,84.5 + parent: 2 + - uid: 10938 + components: + - type: Transform + pos: -55.5,61.5 + parent: 2 + - uid: 10943 + components: + - type: Transform + pos: -16.5,102.5 + parent: 2 + - uid: 10994 + components: + - type: Transform + pos: -15.5,172.5 + parent: 2 + - uid: 11006 + components: + - type: Transform + pos: -7.5,60.5 + parent: 2 + - uid: 11011 + components: + - type: Transform + pos: -30.5,60.5 + parent: 2 + - uid: 11039 + components: + - type: Transform + pos: -10.5,60.5 + parent: 2 + - uid: 11040 + components: + - type: Transform + pos: -11.5,60.5 + parent: 2 + - uid: 11043 + components: + - type: Transform + pos: -12.5,60.5 + parent: 2 + - uid: 11064 + components: + - type: Transform + pos: -28.5,60.5 + parent: 2 + - uid: 11065 + components: + - type: Transform + pos: -29.5,60.5 + parent: 2 + - uid: 11070 + components: + - type: Transform + pos: -16.5,101.5 + parent: 2 + - uid: 11071 + components: + - type: Transform + pos: -6.5,163.5 + parent: 2 + - uid: 11076 + components: + - type: Transform + pos: -23.5,60.5 + parent: 2 + - uid: 11079 + components: + - type: Transform + pos: -23.5,163.5 + parent: 2 + - uid: 11098 + components: + - type: Transform + pos: -18.5,61.5 + parent: 2 + - uid: 11099 + components: + - type: Transform + pos: -18.5,60.5 + parent: 2 + - uid: 11103 + components: + - type: Transform + pos: -20.5,59.5 + parent: 2 + - uid: 11126 + components: + - type: Transform + pos: -33.5,56.5 + parent: 2 + - uid: 11141 + components: + - type: Transform + pos: -30.5,96.5 + parent: 2 + - uid: 11144 + components: + - type: Transform + pos: -22.5,61.5 + parent: 2 + - uid: 11175 + components: + - type: Transform + pos: -17.5,61.5 + parent: 2 + - uid: 11194 + components: + - type: Transform + pos: -27.5,60.5 + parent: 2 + - uid: 11208 + components: + - type: Transform + pos: -22.5,60.5 + parent: 2 + - uid: 11214 + components: + - type: Transform + pos: -33.5,61.5 + parent: 2 + - uid: 11215 + components: + - type: Transform + pos: -30.5,61.5 + parent: 2 + - uid: 11225 + components: + - type: Transform + pos: 63.5,35.5 + parent: 2 + - uid: 11249 + components: + - type: Transform + pos: -15.5,98.5 + parent: 2 + - uid: 11259 + components: + - type: Transform + pos: -21.5,203.5 + parent: 2 + - uid: 11273 + components: + - type: Transform + pos: -31.5,193.5 + parent: 2 + - uid: 11274 + components: + - type: Transform + pos: -131.5,49.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 11414 + components: + - type: Transform + pos: -31.5,61.5 + parent: 2 + - uid: 11416 + components: + - type: Transform + pos: -18.5,59.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + pos: -22.5,59.5 + parent: 2 + - uid: 11545 + components: + - type: Transform + pos: -38.5,82.5 + parent: 2 + - uid: 11551 + components: + - type: Transform + pos: -42.5,85.5 + parent: 2 + - uid: 11553 + components: + - type: Transform + pos: -40.5,76.5 + parent: 2 + - uid: 11555 + components: + - type: Transform + pos: -38.5,85.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + pos: -38.5,80.5 + parent: 2 + - uid: 11559 + components: + - type: Transform + pos: -28.5,6.5 + parent: 2 + - uid: 11560 + components: + - type: Transform + pos: -42.5,82.5 + parent: 2 + - uid: 11585 + components: + - type: Transform + pos: -42.5,80.5 + parent: 2 + - uid: 11590 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 11618 + components: + - type: Transform + pos: -49.5,102.5 + parent: 2 + - uid: 11623 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 11627 + components: + - type: Transform + pos: -65.5,62.5 + parent: 2 + - uid: 11658 + components: + - type: Transform + pos: -131.5,44.5 + parent: 2 + - uid: 11670 + components: + - type: Transform + pos: 3.5,86.5 + parent: 2 + - uid: 11691 + components: + - type: Transform + pos: -41.5,96.5 + parent: 2 + - uid: 11692 + components: + - type: Transform + pos: -42.5,96.5 + parent: 2 + - uid: 11693 + components: + - type: Transform + pos: -43.5,96.5 + parent: 2 + - uid: 11694 + components: + - type: Transform + pos: -39.5,96.5 + parent: 2 + - uid: 11695 + components: + - type: Transform + pos: -38.5,96.5 + parent: 2 + - uid: 11696 + components: + - type: Transform + pos: -37.5,96.5 + parent: 2 + - uid: 11711 + components: + - type: Transform + pos: 3.5,63.5 + parent: 2 + - uid: 11713 + components: + - type: Transform + pos: -131.5,43.5 + parent: 2 + - uid: 11731 + components: + - type: Transform + pos: -34.5,56.5 + parent: 2 + - uid: 11732 + components: + - type: Transform + pos: -106.5,65.5 + parent: 2 + - uid: 11736 + components: + - type: Transform + pos: -35.5,56.5 + parent: 2 + - uid: 11760 + components: + - type: Transform + pos: -48.5,106.5 + parent: 2 + - uid: 11767 + components: + - type: Transform + pos: -94.5,143.5 + parent: 2 + - uid: 11770 + components: + - type: Transform + pos: 4.5,63.5 + parent: 2 + - uid: 11785 + components: + - type: Transform + pos: 5.5,63.5 + parent: 2 + - uid: 11910 + components: + - type: Transform + pos: -63.5,62.5 + parent: 2 + - uid: 11968 + components: + - type: Transform + pos: -34.5,92.5 + parent: 2 + - uid: 11969 + components: + - type: Transform + pos: -33.5,92.5 + parent: 2 + - uid: 11970 + components: + - type: Transform + pos: -36.5,93.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + pos: -31.5,92.5 + parent: 2 + - uid: 11977 + components: + - type: Transform + pos: -32.5,92.5 + parent: 2 + - uid: 11982 + components: + - type: Transform + pos: -26.5,92.5 + parent: 2 + - uid: 11983 + components: + - type: Transform + pos: -25.5,92.5 + parent: 2 + - uid: 11984 + components: + - type: Transform + pos: -24.5,92.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + pos: -23.5,92.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + pos: -22.5,92.5 + parent: 2 + - uid: 11987 + components: + - type: Transform + pos: -21.5,92.5 + parent: 2 + - uid: 11988 + components: + - type: Transform + pos: -20.5,92.5 + parent: 2 + - uid: 11992 + components: + - type: Transform + pos: 3.5,87.5 + parent: 2 + - uid: 11996 + components: + - type: Transform + pos: -20.5,102.5 + parent: 2 + - uid: 11998 + components: + - type: Transform + pos: -12.5,90.5 + parent: 2 + - uid: 11999 + components: + - type: Transform + pos: -13.5,90.5 + parent: 2 + - uid: 12000 + components: + - type: Transform + pos: -16.5,103.5 + parent: 2 + - uid: 12001 + components: + - type: Transform + pos: -20.5,97.5 + parent: 2 + - uid: 12002 + components: + - type: Transform + pos: -21.5,97.5 + parent: 2 + - uid: 12007 + components: + - type: Transform + pos: 10.5,67.5 + parent: 2 + - uid: 12030 + components: + - type: Transform + pos: -105.5,65.5 + parent: 2 + - uid: 12034 + components: + - type: Transform + pos: -65.5,61.5 + parent: 2 + - uid: 12038 + components: + - type: Transform + pos: -67.5,64.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + pos: -65.5,63.5 + parent: 2 + - uid: 12058 + components: + - type: Transform + pos: -69.5,64.5 + parent: 2 + - uid: 12059 + components: + - type: Transform + pos: -70.5,64.5 + parent: 2 + - uid: 12060 + components: + - type: Transform + pos: -71.5,64.5 + parent: 2 + - uid: 12081 + components: + - type: Transform + pos: 64.5,64.5 + parent: 2 + - uid: 12133 + components: + - type: Transform + pos: 4.5,82.5 + parent: 2 + - uid: 12137 + components: + - type: Transform + pos: -40.5,56.5 + parent: 2 + - uid: 12139 + components: + - type: Transform + pos: -37.5,56.5 + parent: 2 + - uid: 12151 + components: + - type: Transform + pos: -30.5,59.5 + parent: 2 + - uid: 12153 + components: + - type: Transform + pos: -39.5,56.5 + parent: 2 + - uid: 12156 + components: + - type: Transform + pos: -38.5,56.5 + parent: 2 + - uid: 12172 + components: + - type: Transform + pos: 10.5,68.5 + parent: 2 + - uid: 12173 + components: + - type: Transform + pos: -81.5,60.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + pos: -63.5,60.5 + parent: 2 + - uid: 12177 + components: + - type: Transform + pos: -22.5,203.5 + parent: 2 + - uid: 12178 + components: + - type: Transform + pos: 6.5,63.5 + parent: 2 + - uid: 12193 + components: + - type: Transform + pos: -9.5,60.5 + parent: 2 + - uid: 12194 + components: + - type: Transform + pos: -8.5,60.5 + parent: 2 + - uid: 12204 + components: + - type: Transform + pos: 4.5,83.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + pos: 3.5,83.5 + parent: 2 + - uid: 12256 + components: + - type: Transform + pos: -36.5,92.5 + parent: 2 + - uid: 12271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,15.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,17.5 + parent: 2 + - uid: 12319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,17.5 + parent: 2 + - uid: 12320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,16.5 + parent: 2 + - uid: 12329 + components: + - type: Transform + pos: 5.5,87.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + pos: -126.5,57.5 + parent: 2 + - uid: 12484 + components: + - type: Transform + pos: -16.5,167.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + pos: -13.5,203.5 + parent: 2 + - uid: 12512 + components: + - type: Transform + pos: -18.5,206.5 + parent: 2 + - uid: 12519 + components: + - type: Transform + pos: -18.5,207.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + pos: -16.5,208.5 + parent: 2 + - uid: 12522 + components: + - type: Transform + pos: -15.5,208.5 + parent: 2 + - uid: 12523 + components: + - type: Transform + pos: -14.5,208.5 + parent: 2 + - uid: 12524 + components: + - type: Transform + pos: -13.5,208.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + pos: -13.5,207.5 + parent: 2 + - uid: 12593 + components: + - type: Transform + pos: -74.5,43.5 + parent: 2 + - uid: 12595 + components: + - type: Transform + pos: -77.5,43.5 + parent: 2 + - uid: 12596 + components: + - type: Transform + pos: -77.5,39.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + pos: -32.5,193.5 + parent: 2 + - uid: 12654 + components: + - type: Transform + pos: -32.5,100.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + pos: 65.5,23.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + pos: 65.5,24.5 + parent: 2 + - uid: 12852 + components: + - type: Transform + pos: -136.5,90.5 + parent: 2 + - uid: 12880 + components: + - type: Transform + pos: -107.5,102.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + pos: -107.5,101.5 + parent: 2 + - uid: 12901 + components: + - type: Transform + pos: -145.5,104.5 + parent: 2 + - uid: 12903 + components: + - type: Transform + pos: 44.5,63.5 + parent: 2 + - uid: 12973 + components: + - type: Transform + pos: -147.5,90.5 + parent: 2 + - uid: 12982 + components: + - type: Transform + pos: -82.5,60.5 + parent: 2 + - uid: 12987 + components: + - type: Transform + pos: -14.5,90.5 + parent: 2 + - uid: 12989 + components: + - type: Transform + pos: -16.5,168.5 + parent: 2 + - uid: 13114 + components: + - type: Transform + pos: -80.5,60.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + pos: 44.5,58.5 + parent: 2 + - uid: 13205 + components: + - type: Transform + pos: -130.5,87.5 + parent: 2 + - uid: 13233 + components: + - type: Transform + pos: -68.5,64.5 + parent: 2 + - uid: 13234 + components: + - type: Transform + pos: 9.5,72.5 + parent: 2 + - uid: 13235 + components: + - type: Transform + pos: 2.5,63.5 + parent: 2 + - uid: 13243 + components: + - type: Transform + pos: -59.5,114.5 + parent: 2 + - uid: 13246 + components: + - type: Transform + pos: -130.5,37.5 + parent: 2 + - uid: 13252 + components: + - type: Transform + pos: 2.5,65.5 + parent: 2 + - uid: 13256 + components: + - type: Transform + pos: -16.5,169.5 + parent: 2 + - uid: 13261 + components: + - type: Transform + pos: -33.5,101.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + pos: -25.5,95.5 + parent: 2 + - uid: 13307 + components: + - type: Transform + pos: 10.5,70.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + pos: 10.5,71.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + pos: 10.5,72.5 + parent: 2 + - uid: 13320 + components: + - type: Transform + pos: 5.5,78.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + pos: -3.5,89.5 + parent: 2 + - uid: 13383 + components: + - type: Transform + pos: -129.5,101.5 + parent: 2 + - uid: 13426 + components: + - type: Transform + pos: -59.5,109.5 + parent: 2 + - uid: 13430 + components: + - type: Transform + pos: -20.5,94.5 + parent: 2 + - uid: 13433 + components: + - type: Transform + pos: -20.5,96.5 + parent: 2 + - uid: 13434 + components: + - type: Transform + pos: -20.5,93.5 + parent: 2 + - uid: 13435 + components: + - type: Transform + pos: -13.5,96.5 + parent: 2 + - uid: 13436 + components: + - type: Transform + pos: -13.5,98.5 + parent: 2 + - uid: 13437 + components: + - type: Transform + pos: -12.5,98.5 + parent: 2 + - uid: 13438 + components: + - type: Transform + pos: -13.5,100.5 + parent: 2 + - uid: 13439 + components: + - type: Transform + pos: -14.5,100.5 + parent: 2 + - uid: 13440 + components: + - type: Transform + pos: -15.5,100.5 + parent: 2 + - uid: 13441 + components: + - type: Transform + pos: -10.5,89.5 + parent: 2 + - uid: 13447 + components: + - type: Transform + pos: -2.5,89.5 + parent: 2 + - uid: 13450 + components: + - type: Transform + pos: -1.5,89.5 + parent: 2 + - uid: 13456 + components: + - type: Transform + pos: -11.5,89.5 + parent: 2 + - uid: 13457 + components: + - type: Transform + pos: -12.5,89.5 + parent: 2 + - uid: 13458 + components: + - type: Transform + pos: -4.5,89.5 + parent: 2 + - uid: 13460 + components: + - type: Transform + pos: -12.5,96.5 + parent: 2 + - uid: 13464 + components: + - type: Transform + pos: -20.5,101.5 + parent: 2 + - uid: 13466 + components: + - type: Transform + pos: -22.5,101.5 + parent: 2 + - uid: 13469 + components: + - type: Transform + pos: -23.5,101.5 + parent: 2 + - uid: 13472 + components: + - type: Transform + pos: -30.5,99.5 + parent: 2 + - uid: 13474 + components: + - type: Transform + pos: -30.5,98.5 + parent: 2 + - uid: 13477 + components: + - type: Transform + pos: -31.5,100.5 + parent: 2 + - uid: 13478 + components: + - type: Transform + pos: -34.5,106.5 + parent: 2 + - uid: 13483 + components: + - type: Transform + pos: -23.5,97.5 + parent: 2 + - uid: 13484 + components: + - type: Transform + pos: -22.5,97.5 + parent: 2 + - uid: 13486 + components: + - type: Transform + pos: -33.5,102.5 + parent: 2 + - uid: 13487 + components: + - type: Transform + pos: -32.5,101.5 + parent: 2 + - uid: 13488 + components: + - type: Transform + pos: -34.5,103.5 + parent: 2 + - uid: 13502 + components: + - type: Transform + pos: -34.5,102.5 + parent: 2 + - uid: 13507 + components: + - type: Transform + pos: -34.5,107.5 + parent: 2 + - uid: 13508 + components: + - type: Transform + pos: -46.5,107.5 + parent: 2 + - uid: 13509 + components: + - type: Transform + pos: -46.5,106.5 + parent: 2 + - uid: 13510 + components: + - type: Transform + pos: -46.5,105.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + pos: -46.5,104.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + pos: -46.5,103.5 + parent: 2 + - uid: 13513 + components: + - type: Transform + pos: -46.5,102.5 + parent: 2 + - uid: 13514 + components: + - type: Transform + pos: -47.5,106.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + pos: -45.5,102.5 + parent: 2 + - uid: 13516 + components: + - type: Transform + pos: -44.5,102.5 + parent: 2 + - uid: 13517 + components: + - type: Transform + pos: -43.5,102.5 + parent: 2 + - uid: 13518 + components: + - type: Transform + pos: -42.5,102.5 + parent: 2 + - uid: 13519 + components: + - type: Transform + pos: -43.5,101.5 + parent: 2 + - uid: 13520 + components: + - type: Transform + pos: -43.5,100.5 + parent: 2 + - uid: 13522 + components: + - type: Transform + pos: -38.5,102.5 + parent: 2 + - uid: 13523 + components: + - type: Transform + pos: -37.5,102.5 + parent: 2 + - uid: 13524 + components: + - type: Transform + pos: -36.5,102.5 + parent: 2 + - uid: 13525 + components: + - type: Transform + pos: -35.5,102.5 + parent: 2 + - uid: 13526 + components: + - type: Transform + pos: -37.5,101.5 + parent: 2 + - uid: 13528 + components: + - type: Transform + pos: -43.5,98.5 + parent: 2 + - uid: 13530 + components: + - type: Transform + pos: -36.5,96.5 + parent: 2 + - uid: 13531 + components: + - type: Transform + pos: -35.5,96.5 + parent: 2 + - uid: 13532 + components: + - type: Transform + pos: -34.5,96.5 + parent: 2 + - uid: 13533 + components: + - type: Transform + pos: -33.5,95.5 + parent: 2 + - uid: 13534 + components: + - type: Transform + pos: -34.5,95.5 + parent: 2 + - uid: 13535 + components: + - type: Transform + pos: -32.5,95.5 + parent: 2 + - uid: 13536 + components: + - type: Transform + pos: -31.5,95.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + pos: -30.5,95.5 + parent: 2 + - uid: 13538 + components: + - type: Transform + pos: -29.5,95.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + pos: -27.5,95.5 + parent: 2 + - uid: 13540 + components: + - type: Transform + pos: -26.5,95.5 + parent: 2 + - uid: 13541 + components: + - type: Transform + pos: -43.5,97.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: -28.5,95.5 + parent: 2 + - uid: 13554 + components: + - type: Transform + pos: -48.5,102.5 + parent: 2 + - uid: 13556 + components: + - type: Transform + pos: -49.5,101.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + pos: -49.5,99.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + pos: -49.5,98.5 + parent: 2 + - uid: 13567 + components: + - type: Transform + pos: -49.5,103.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + pos: -45.5,106.5 + parent: 2 + - uid: 13616 + components: + - type: Transform + pos: -45.5,103.5 + parent: 2 + - uid: 13618 + components: + - type: Transform + pos: -35.5,106.5 + parent: 2 + - uid: 13619 + components: + - type: Transform + pos: -35.5,103.5 + parent: 2 + - uid: 13644 + components: + - type: Transform + pos: -23.5,98.5 + parent: 2 + - uid: 13660 + components: + - type: Transform + pos: -20.5,100.5 + parent: 2 + - uid: 13689 + components: + - type: Transform + pos: -33.5,107.5 + parent: 2 + - uid: 13694 + components: + - type: Transform + pos: -7.5,58.5 + parent: 2 + - uid: 13696 + components: + - type: Transform + pos: -6.5,58.5 + parent: 2 + - uid: 13708 + components: + - type: Transform + pos: -13.5,206.5 + parent: 2 + - uid: 13715 + components: + - type: Transform + pos: -49.5,105.5 + parent: 2 + - uid: 13717 + components: + - type: Transform + pos: -22.5,206.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + pos: -75.5,43.5 + parent: 2 + - uid: 13743 + components: + - type: Transform + pos: -23.5,96.5 + parent: 2 + - uid: 13764 + components: + - type: Transform + pos: -54.5,92.5 + parent: 2 + - uid: 13765 + components: + - type: Transform + pos: -55.5,92.5 + parent: 2 + - uid: 13766 + components: + - type: Transform + pos: -56.5,92.5 + parent: 2 + - uid: 13767 + components: + - type: Transform + pos: -56.5,93.5 + parent: 2 + - uid: 13768 + components: + - type: Transform + pos: -56.5,94.5 + parent: 2 + - uid: 13769 + components: + - type: Transform + pos: -56.5,95.5 + parent: 2 + - uid: 13770 + components: + - type: Transform + pos: -56.5,96.5 + parent: 2 + - uid: 13771 + components: + - type: Transform + pos: -57.5,96.5 + parent: 2 + - uid: 13772 + components: + - type: Transform + pos: -57.5,97.5 + parent: 2 + - uid: 13774 + components: + - type: Transform + pos: -57.5,99.5 + parent: 2 + - uid: 13775 + components: + - type: Transform + pos: -57.5,100.5 + parent: 2 + - uid: 13776 + components: + - type: Transform + pos: -58.5,100.5 + parent: 2 + - uid: 13777 + components: + - type: Transform + pos: -58.5,101.5 + parent: 2 + - uid: 13778 + components: + - type: Transform + pos: -58.5,102.5 + parent: 2 + - uid: 13779 + components: + - type: Transform + pos: -58.5,103.5 + parent: 2 + - uid: 13780 + components: + - type: Transform + pos: -58.5,104.5 + parent: 2 + - uid: 13781 + components: + - type: Transform + pos: -69.5,113.5 + parent: 2 + - uid: 13783 + components: + - type: Transform + pos: -57.5,105.5 + parent: 2 + - uid: 13784 + components: + - type: Transform + pos: -57.5,108.5 + parent: 2 + - uid: 13790 + components: + - type: Transform + pos: -57.5,107.5 + parent: 2 + - uid: 13792 + components: + - type: Transform + pos: -70.5,113.5 + parent: 2 + - uid: 13795 + components: + - type: Transform + pos: -60.5,115.5 + parent: 2 + - uid: 13805 + components: + - type: Transform + pos: -71.5,108.5 + parent: 2 + - uid: 13806 + components: + - type: Transform + pos: -71.5,109.5 + parent: 2 + - uid: 13807 + components: + - type: Transform + pos: -72.5,109.5 + parent: 2 + - uid: 13808 + components: + - type: Transform + pos: -73.5,109.5 + parent: 2 + - uid: 13809 + components: + - type: Transform + pos: -74.5,109.5 + parent: 2 + - uid: 13813 + components: + - type: Transform + pos: -78.5,109.5 + parent: 2 + - uid: 13814 + components: + - type: Transform + pos: -79.5,109.5 + parent: 2 + - uid: 13815 + components: + - type: Transform + pos: -80.5,109.5 + parent: 2 + - uid: 13816 + components: + - type: Transform + pos: -81.5,109.5 + parent: 2 + - uid: 13817 + components: + - type: Transform + pos: -82.5,109.5 + parent: 2 + - uid: 13818 + components: + - type: Transform + pos: -82.5,108.5 + parent: 2 + - uid: 13819 + components: + - type: Transform + pos: -83.5,108.5 + parent: 2 + - uid: 13820 + components: + - type: Transform + pos: -83.5,107.5 + parent: 2 + - uid: 13821 + components: + - type: Transform + pos: -83.5,106.5 + parent: 2 + - uid: 13822 + components: + - type: Transform + pos: -83.5,105.5 + parent: 2 + - uid: 13823 + components: + - type: Transform + pos: -83.5,104.5 + parent: 2 + - uid: 13824 + components: + - type: Transform + pos: -83.5,103.5 + parent: 2 + - uid: 13825 + components: + - type: Transform + pos: -83.5,102.5 + parent: 2 + - uid: 13826 + components: + - type: Transform + pos: -59.5,113.5 + parent: 2 + - uid: 13895 + components: + - type: Transform + pos: -82.5,97.5 + parent: 2 + - uid: 13896 + components: + - type: Transform + pos: -82.5,96.5 + parent: 2 + - uid: 13898 + components: + - type: Transform + pos: -82.5,94.5 + parent: 2 + - uid: 13899 + components: + - type: Transform + pos: -82.5,93.5 + parent: 2 + - uid: 13935 + components: + - type: Transform + pos: -71.5,112.5 + parent: 2 + - uid: 13976 + components: + - type: Transform + pos: -59.5,115.5 + parent: 2 + - uid: 13998 + components: + - type: Transform + pos: -62.5,115.5 + parent: 2 + - uid: 14002 + components: + - type: Transform + pos: -58.5,108.5 + parent: 2 + - uid: 14011 + components: + - type: Transform + pos: 63.5,58.5 + parent: 2 + - uid: 14084 + components: + - type: Transform + pos: -76.5,39.5 + parent: 2 + - uid: 14151 + components: + - type: Transform + pos: -94.5,142.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: -49.5,106.5 + parent: 2 + - uid: 14181 + components: + - type: Transform + pos: -145.5,90.5 + parent: 2 + - uid: 14184 + components: + - type: Transform + pos: -107.5,103.5 + parent: 2 + - uid: 14207 + components: + - type: Transform + pos: -74.5,41.5 + parent: 2 + - uid: 14221 + components: + - type: Transform + pos: -75.5,39.5 + parent: 2 + - uid: 14225 + components: + - type: Transform + pos: -49.5,104.5 + parent: 2 + - uid: 14229 + components: + - type: Transform + pos: 4.5,73.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + pos: -84.5,101.5 + parent: 2 + - uid: 14308 + components: + - type: Transform + pos: -85.5,101.5 + parent: 2 + - uid: 14313 + components: + - type: Transform + pos: -83.5,101.5 + parent: 2 + - uid: 14338 + components: + - type: Transform + pos: -86.5,101.5 + parent: 2 + - uid: 14346 + components: + - type: Transform + pos: -86.5,100.5 + parent: 2 + - uid: 14347 + components: + - type: Transform + pos: -86.5,99.5 + parent: 2 + - uid: 14348 + components: + - type: Transform + pos: -86.5,98.5 + parent: 2 + - uid: 14349 + components: + - type: Transform + pos: -86.5,97.5 + parent: 2 + - uid: 14350 + components: + - type: Transform + pos: -85.5,97.5 + parent: 2 + - uid: 14351 + components: + - type: Transform + pos: -84.5,97.5 + parent: 2 + - uid: 14352 + components: + - type: Transform + pos: -83.5,97.5 + parent: 2 + - uid: 14374 + components: + - type: Transform + pos: -72.5,113.5 + parent: 2 + - uid: 14395 + components: + - type: Transform + pos: -33.5,98.5 + parent: 2 + - uid: 14483 + components: + - type: Transform + pos: 64.5,62.5 + parent: 2 + - uid: 14496 + components: + - type: Transform + pos: -131.5,110.5 + parent: 2 + - uid: 14736 + components: + - type: Transform + pos: -22.5,207.5 + parent: 2 + - uid: 14779 + components: + - type: Transform + pos: -82.5,80.5 + parent: 2 + - uid: 14781 + components: + - type: Transform + pos: -84.5,80.5 + parent: 2 + - uid: 14782 + components: + - type: Transform + pos: -85.5,80.5 + parent: 2 + - uid: 14785 + components: + - type: Transform + pos: -88.5,80.5 + parent: 2 + - uid: 14786 + components: + - type: Transform + pos: -89.5,80.5 + parent: 2 + - uid: 14787 + components: + - type: Transform + pos: -89.5,79.5 + parent: 2 + - uid: 14788 + components: + - type: Transform + pos: -89.5,78.5 + parent: 2 + - uid: 14789 + components: + - type: Transform + pos: -89.5,77.5 + parent: 2 + - uid: 14790 + components: + - type: Transform + pos: -89.5,76.5 + parent: 2 + - uid: 14791 + components: + - type: Transform + pos: -90.5,77.5 + parent: 2 + - uid: 14792 + components: + - type: Transform + pos: -90.5,76.5 + parent: 2 + - uid: 14801 + components: + - type: Transform + pos: -89.5,74.5 + parent: 2 + - uid: 14802 + components: + - type: Transform + pos: -88.5,74.5 + parent: 2 + - uid: 14803 + components: + - type: Transform + pos: -87.5,74.5 + parent: 2 + - uid: 14804 + components: + - type: Transform + pos: -86.5,74.5 + parent: 2 + - uid: 14805 + components: + - type: Transform + pos: -85.5,74.5 + parent: 2 + - uid: 14807 + components: + - type: Transform + pos: -83.5,74.5 + parent: 2 + - uid: 14808 + components: + - type: Transform + pos: -82.5,74.5 + parent: 2 + - uid: 14809 + components: + - type: Transform + pos: -82.5,73.5 + parent: 2 + - uid: 14810 + components: + - type: Transform + pos: -82.5,72.5 + parent: 2 + - uid: 14811 + components: + - type: Transform + pos: -33.5,193.5 + parent: 2 + - uid: 14812 + components: + - type: Transform + pos: -31.5,191.5 + parent: 2 + - uid: 14813 + components: + - type: Transform + pos: -53.5,171.5 + parent: 2 + - uid: 14814 + components: + - type: Transform + pos: 4.5,74.5 + parent: 2 + - uid: 14864 + components: + - type: Transform + pos: -113.5,102.5 + parent: 2 + - uid: 14879 + components: + - type: Transform + pos: 4.5,76.5 + parent: 2 + - uid: 14880 + components: + - type: Transform + pos: 4.5,77.5 + parent: 2 + - uid: 14884 + components: + - type: Transform + pos: -80.5,143.5 + parent: 2 + - uid: 14885 + components: + - type: Transform + pos: -80.5,139.5 + parent: 2 + - uid: 14886 + components: + - type: Transform + pos: -133.5,110.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + pos: -76.5,43.5 + parent: 2 + - uid: 14910 + components: + - type: Transform + pos: -33.5,96.5 + parent: 2 + - uid: 14934 + components: + - type: Transform + pos: -49.5,57.5 + parent: 2 + - uid: 14935 + components: + - type: Transform + pos: -49.5,58.5 + parent: 2 + - uid: 14936 + components: + - type: Transform + pos: -49.5,59.5 + parent: 2 + - uid: 14938 + components: + - type: Transform + pos: -48.5,60.5 + parent: 2 + - uid: 14939 + components: + - type: Transform + pos: -47.5,60.5 + parent: 2 + - uid: 14940 + components: + - type: Transform + pos: -46.5,60.5 + parent: 2 + - uid: 14941 + components: + - type: Transform + pos: -45.5,60.5 + parent: 2 + - uid: 14942 + components: + - type: Transform + pos: -44.5,60.5 + parent: 2 + - uid: 14943 + components: + - type: Transform + pos: -44.5,59.5 + parent: 2 + - uid: 14944 + components: + - type: Transform + pos: -44.5,58.5 + parent: 2 + - uid: 14945 + components: + - type: Transform + pos: -44.5,57.5 + parent: 2 + - uid: 14946 + components: + - type: Transform + pos: -43.5,57.5 + parent: 2 + - uid: 14947 + components: + - type: Transform + pos: -43.5,56.5 + parent: 2 + - uid: 14948 + components: + - type: Transform + pos: -42.5,56.5 + parent: 2 + - uid: 14949 + components: + - type: Transform + pos: -41.5,56.5 + parent: 2 + - uid: 15030 + components: + - type: Transform + pos: -33.5,99.5 + parent: 2 + - uid: 15031 + components: + - type: Transform + pos: -25.5,175.5 + parent: 2 + - uid: 15051 + components: + - type: Transform + pos: -59.5,108.5 + parent: 2 + - uid: 15214 + components: + - type: Transform + pos: -125.5,110.5 + parent: 2 + - uid: 15215 + components: + - type: Transform + pos: -61.5,115.5 + parent: 2 + - uid: 15298 + components: + - type: Transform + pos: -138.5,90.5 + parent: 2 + - uid: 15324 + components: + - type: Transform + pos: -139.5,90.5 + parent: 2 + - uid: 15325 + components: + - type: Transform + pos: -130.5,110.5 + parent: 2 + - uid: 15337 + components: + - type: Transform + pos: -97.5,143.5 + parent: 2 + - uid: 15338 + components: + - type: Transform + pos: -143.5,104.5 + parent: 2 + - uid: 15342 + components: + - type: Transform + pos: -146.5,90.5 + parent: 2 + - uid: 15344 + components: + - type: Transform + pos: -148.5,90.5 + parent: 2 + - uid: 15347 + components: + - type: Transform + pos: -135.5,110.5 + parent: 2 + - uid: 15348 + components: + - type: Transform + pos: -134.5,110.5 + parent: 2 + - uid: 15349 + components: + - type: Transform + pos: -132.5,110.5 + parent: 2 + - uid: 15374 + components: + - type: Transform + pos: 78.5,47.5 + parent: 2 + - uid: 15378 + components: + - type: Transform + pos: -146.5,104.5 + parent: 2 + - uid: 15406 + components: + - type: Transform + pos: -86.5,80.5 + parent: 2 + - uid: 15409 + components: + - type: Transform + pos: 82.5,47.5 + parent: 2 + - uid: 15490 + components: + - type: Transform + pos: -145.5,105.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + pos: -21.5,207.5 + parent: 2 + - uid: 15597 + components: + - type: Transform + pos: -137.5,110.5 + parent: 2 + - uid: 15638 + components: + - type: Transform + pos: -27.5,176.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + pos: -29.5,176.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + pos: -28.5,176.5 + parent: 2 + - uid: 15654 + components: + - type: Transform + pos: 6.5,86.5 + parent: 2 + - uid: 15809 + components: + - type: Transform + pos: 58.5,52.5 + parent: 2 + - uid: 15819 + components: + - type: Transform + pos: -49.5,93.5 + parent: 2 + - uid: 15828 + components: + - type: Transform + pos: -76.5,160.5 + parent: 2 + - uid: 15829 + components: + - type: Transform + pos: -92.5,72.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + pos: -71.5,110.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + pos: -141.5,90.5 + parent: 2 + - uid: 15881 + components: + - type: Transform + pos: -140.5,90.5 + parent: 2 + - uid: 16254 + components: + - type: Transform + pos: -83.5,63.5 + parent: 2 + - uid: 16255 + components: + - type: Transform + pos: -82.5,63.5 + parent: 2 + - uid: 16256 + components: + - type: Transform + pos: -81.5,63.5 + parent: 2 + - uid: 16257 + components: + - type: Transform + pos: -81.5,64.5 + parent: 2 + - uid: 16258 + components: + - type: Transform + pos: -83.5,62.5 + parent: 2 + - uid: 16259 + components: + - type: Transform + pos: -93.5,72.5 + parent: 2 + - uid: 16260 + components: + - type: Transform + pos: -93.5,71.5 + parent: 2 + - uid: 16261 + components: + - type: Transform + pos: -94.5,71.5 + parent: 2 + - uid: 16264 + components: + - type: Transform + pos: -98.5,69.5 + parent: 2 + - uid: 16265 + components: + - type: Transform + pos: -99.5,69.5 + parent: 2 + - uid: 16266 + components: + - type: Transform + pos: -99.5,68.5 + parent: 2 + - uid: 16267 + components: + - type: Transform + pos: -100.5,68.5 + parent: 2 + - uid: 16270 + components: + - type: Transform + pos: -93.5,58.5 + parent: 2 + - uid: 16271 + components: + - type: Transform + pos: -93.5,57.5 + parent: 2 + - uid: 16272 + components: + - type: Transform + pos: -94.5,57.5 + parent: 2 + - uid: 16273 + components: + - type: Transform + pos: -95.5,57.5 + parent: 2 + - uid: 16274 + components: + - type: Transform + pos: -95.5,56.5 + parent: 2 + - uid: 16283 + components: + - type: Transform + pos: -89.5,59.5 + parent: 2 + - uid: 16284 + components: + - type: Transform + pos: -89.5,60.5 + parent: 2 + - uid: 16285 + components: + - type: Transform + pos: -88.5,60.5 + parent: 2 + - uid: 16286 + components: + - type: Transform + pos: -87.5,60.5 + parent: 2 + - uid: 16287 + components: + - type: Transform + pos: -87.5,61.5 + parent: 2 + - uid: 16303 + components: + - type: Transform + pos: -77.5,65.5 + parent: 2 + - uid: 16304 + components: + - type: Transform + pos: -77.5,66.5 + parent: 2 + - uid: 16305 + components: + - type: Transform + pos: -76.5,66.5 + parent: 2 + - uid: 16306 + components: + - type: Transform + pos: -75.5,66.5 + parent: 2 + - uid: 16308 + components: + - type: Transform + pos: -74.5,67.5 + parent: 2 + - uid: 16309 + components: + - type: Transform + pos: -74.5,68.5 + parent: 2 + - uid: 16310 + components: + - type: Transform + pos: -74.5,69.5 + parent: 2 + - uid: 16311 + components: + - type: Transform + pos: -75.5,69.5 + parent: 2 + - uid: 16312 + components: + - type: Transform + pos: -76.5,69.5 + parent: 2 + - uid: 16313 + components: + - type: Transform + pos: -77.5,69.5 + parent: 2 + - uid: 16314 + components: + - type: Transform + pos: -78.5,69.5 + parent: 2 + - uid: 16315 + components: + - type: Transform + pos: -79.5,69.5 + parent: 2 + - uid: 16323 + components: + - type: Transform + pos: -72.5,64.5 + parent: 2 + - uid: 16324 + components: + - type: Transform + pos: -73.5,64.5 + parent: 2 + - uid: 16325 + components: + - type: Transform + pos: -74.5,64.5 + parent: 2 + - uid: 16340 + components: + - type: Transform + pos: -105.5,62.5 + parent: 2 + - uid: 16341 + components: + - type: Transform + pos: -103.5,61.5 + parent: 2 + - uid: 16342 + components: + - type: Transform + pos: -103.5,62.5 + parent: 2 + - uid: 16344 + components: + - type: Transform + pos: -102.5,65.5 + parent: 2 + - uid: 16345 + components: + - type: Transform + pos: -103.5,65.5 + parent: 2 + - uid: 16353 + components: + - type: Transform + pos: -94.5,75.5 + parent: 2 + - uid: 16354 + components: + - type: Transform + pos: -95.5,74.5 + parent: 2 + - uid: 16361 + components: + - type: Transform + pos: -105.5,69.5 + parent: 2 + - uid: 16362 + components: + - type: Transform + pos: -106.5,69.5 + parent: 2 + - uid: 16363 + components: + - type: Transform + pos: -106.5,68.5 + parent: 2 + - uid: 16371 + components: + - type: Transform + pos: -100.5,72.5 + parent: 2 + - uid: 16372 + components: + - type: Transform + pos: -101.5,71.5 + parent: 2 + - uid: 16377 + components: + - type: Transform + pos: -93.5,75.5 + parent: 2 + - uid: 16378 + components: + - type: Transform + pos: -94.5,74.5 + parent: 2 + - uid: 16385 + components: + - type: Transform + pos: -107.5,68.5 + parent: 2 + - uid: 16386 + components: + - type: Transform + pos: -104.5,66.5 + parent: 2 + - uid: 16387 + components: + - type: Transform + pos: -105.5,66.5 + parent: 2 + - uid: 16393 + components: + - type: Transform + pos: -82.5,59.5 + parent: 2 + - uid: 16396 + components: + - type: Transform + pos: -100.5,71.5 + parent: 2 + - uid: 16401 + components: + - type: Transform + pos: -80.5,61.5 + parent: 2 + - uid: 16402 + components: + - type: Transform + pos: -86.5,58.5 + parent: 2 + - uid: 16403 + components: + - type: Transform + pos: -76.5,62.5 + parent: 2 + - uid: 16404 + components: + - type: Transform + pos: -76.5,63.5 + parent: 2 + - uid: 16405 + components: + - type: Transform + pos: -75.5,63.5 + parent: 2 + - uid: 16406 + components: + - type: Transform + pos: -74.5,63.5 + parent: 2 + - uid: 16407 + components: + - type: Transform + pos: -86.5,57.5 + parent: 2 + - uid: 16408 + components: + - type: Transform + pos: -87.5,57.5 + parent: 2 + - uid: 16409 + components: + - type: Transform + pos: -88.5,57.5 + parent: 2 + - uid: 16410 + components: + - type: Transform + pos: -88.5,56.5 + parent: 2 + - uid: 16412 + components: + - type: Transform + pos: -92.5,54.5 + parent: 2 + - uid: 16413 + components: + - type: Transform + pos: -93.5,54.5 + parent: 2 + - uid: 16414 + components: + - type: Transform + pos: -94.5,54.5 + parent: 2 + - uid: 16439 + components: + - type: Transform + pos: -74.5,66.5 + parent: 2 + - uid: 16464 + components: + - type: Transform + pos: 2.5,64.5 + parent: 2 + - uid: 16580 + components: + - type: Transform + pos: -23.5,100.5 + parent: 2 + - uid: 16581 + components: + - type: Transform + pos: -20.5,99.5 + parent: 2 + - uid: 16660 + components: + - type: Transform + pos: -34.5,105.5 + parent: 2 + - uid: 16665 + components: + - type: Transform + pos: -30.5,97.5 + parent: 2 + - uid: 16724 + components: + - type: Transform + pos: -83.5,80.5 + parent: 2 + - uid: 16725 + components: + - type: Transform + pos: -49.5,171.5 + parent: 2 + - uid: 16726 + components: + - type: Transform + pos: -48.5,92.5 + parent: 2 + - uid: 16758 + components: + - type: Transform + pos: 42.5,59.5 + parent: 2 + - uid: 16764 + components: + - type: Transform + pos: -81.5,80.5 + parent: 2 + - uid: 17078 + components: + - type: Transform + pos: -91.5,54.5 + parent: 2 + - uid: 17097 + components: + - type: Transform + pos: -90.5,54.5 + parent: 2 + - uid: 17194 + components: + - type: Transform + pos: -47.5,97.5 + parent: 2 + - uid: 17196 + components: + - type: Transform + pos: -45.5,97.5 + parent: 2 + - uid: 17197 + components: + - type: Transform + pos: -46.5,97.5 + parent: 2 + - uid: 17198 + components: + - type: Transform + pos: -49.5,92.5 + parent: 2 + - uid: 17200 + components: + - type: Transform + pos: -105.5,101.5 + parent: 2 + - uid: 17284 + components: + - type: Transform + pos: -102.5,149.5 + parent: 2 + - uid: 17292 + components: + - type: Transform + pos: -45.5,92.5 + parent: 2 + - uid: 17312 + components: + - type: Transform + pos: -101.5,65.5 + parent: 2 + - uid: 17315 + components: + - type: Transform + pos: -78.5,154.5 + parent: 2 + - uid: 17346 + components: + - type: Transform + pos: -15.5,85.5 + parent: 2 + - uid: 17358 + components: + - type: Transform + pos: -121.5,61.5 + parent: 2 + - uid: 17361 + components: + - type: Transform + pos: -126.5,61.5 + parent: 2 + - uid: 17372 + components: + - type: Transform + pos: -97.5,101.5 + parent: 2 + - uid: 17376 + components: + - type: Transform + pos: -125.5,61.5 + parent: 2 + - uid: 17382 + components: + - type: Transform + pos: -132.5,34.5 + parent: 2 + - uid: 17385 + components: + - type: Transform + pos: -134.5,34.5 + parent: 2 + - uid: 17397 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 17429 + components: + - type: Transform + pos: -76.5,112.5 + parent: 2 + - uid: 17431 + components: + - type: Transform + pos: -73.5,113.5 + parent: 2 + - uid: 17473 + components: + - type: Transform + pos: -112.5,150.5 + parent: 2 + - uid: 17476 + components: + - type: Transform + pos: -124.5,63.5 + parent: 2 + - uid: 17477 + components: + - type: Transform + pos: 59.5,43.5 + parent: 2 + - uid: 17483 + components: + - type: Transform + pos: -134.5,18.5 + parent: 2 + - uid: 17492 + components: + - type: Transform + pos: -96.5,143.5 + parent: 2 + - uid: 17504 + components: + - type: Transform + pos: -76.5,111.5 + parent: 2 + - uid: 17506 + components: + - type: Transform + pos: -75.5,111.5 + parent: 2 + - uid: 17510 + components: + - type: Transform + pos: -76.5,109.5 + parent: 2 + - uid: 17511 + components: + - type: Transform + pos: -77.5,109.5 + parent: 2 + - uid: 17515 + components: + - type: Transform + pos: -76.5,110.5 + parent: 2 + - uid: 17531 + components: + - type: Transform + pos: -74.5,111.5 + parent: 2 + - uid: 17534 + components: + - type: Transform + pos: -112.5,147.5 + parent: 2 + - uid: 17543 + components: + - type: Transform + pos: -109.5,149.5 + parent: 2 + - uid: 17556 + components: + - type: Transform + pos: 2.5,212.5 + parent: 2 + - uid: 17560 + components: + - type: Transform + pos: 1.5,212.5 + parent: 2 + - uid: 17562 + components: + - type: Transform + pos: -44.5,96.5 + parent: 2 + - uid: 17563 + components: + - type: Transform + pos: -75.5,109.5 + parent: 2 + - uid: 17569 + components: + - type: Transform + pos: -65.5,178.5 + parent: 2 + - uid: 17584 + components: + - type: Transform + pos: -65.5,177.5 + parent: 2 + - uid: 17595 + components: + - type: Transform + pos: -98.5,101.5 + parent: 2 + - uid: 17603 + components: + - type: Transform + pos: -123.5,109.5 + parent: 2 + - uid: 17605 + components: + - type: Transform + pos: -126.5,110.5 + parent: 2 + - uid: 17632 + components: + - type: Transform + pos: -64.5,175.5 + parent: 2 + - uid: 17635 + components: + - type: Transform + pos: -101.5,90.5 + parent: 2 + - uid: 17687 + components: + - type: Transform + pos: 59.5,46.5 + parent: 2 + - uid: 17688 + components: + - type: Transform + pos: 7.5,78.5 + parent: 2 + - uid: 17698 + components: + - type: Transform + pos: 9.5,78.5 + parent: 2 + - uid: 17713 + components: + - type: Transform + pos: 78.5,23.5 + parent: 2 + - uid: 17719 + components: + - type: Transform + pos: 77.5,23.5 + parent: 2 + - uid: 17729 + components: + - type: Transform + pos: -124.5,110.5 + parent: 2 + - uid: 17735 + components: + - type: Transform + pos: 79.5,23.5 + parent: 2 + - uid: 17737 + components: + - type: Transform + pos: -127.5,110.5 + parent: 2 + - uid: 17738 + components: + - type: Transform + pos: -118.5,104.5 + parent: 2 + - uid: 17740 + components: + - type: Transform + pos: -116.5,104.5 + parent: 2 + - uid: 17750 + components: + - type: Transform + pos: -68.5,-5.5 + parent: 2 + - uid: 17751 + components: + - type: Transform + pos: -39.5,178.5 + parent: 2 + - uid: 17754 + components: + - type: Transform + pos: -126.5,62.5 + parent: 2 + - uid: 17758 + components: + - type: Transform + pos: -125.5,63.5 + parent: 2 + - uid: 17759 + components: + - type: Transform + pos: -108.5,146.5 + parent: 2 + - uid: 17760 + components: + - type: Transform + pos: -112.5,146.5 + parent: 2 + - uid: 17776 + components: + - type: Transform + pos: -111.5,150.5 + parent: 2 + - uid: 17779 + components: + - type: Transform + pos: -111.5,146.5 + parent: 2 + - uid: 17780 + components: + - type: Transform + pos: -99.5,97.5 + parent: 2 + - uid: 17783 + components: + - type: Transform + pos: -98.5,100.5 + parent: 2 + - uid: 17784 + components: + - type: Transform + pos: -98.5,97.5 + parent: 2 + - uid: 17786 + components: + - type: Transform + pos: -126.5,28.5 + parent: 2 + - uid: 17787 + components: + - type: Transform + pos: -97.5,97.5 + parent: 2 + - uid: 17796 + components: + - type: Transform + pos: -49.5,97.5 + parent: 2 + - uid: 17801 + components: + - type: Transform + pos: -113.5,90.5 + parent: 2 + - uid: 17802 + components: + - type: Transform + pos: -87.5,141.5 + parent: 2 + - uid: 17803 + components: + - type: Transform + pos: -110.5,146.5 + parent: 2 + - uid: 17810 + components: + - type: Transform + pos: -120.5,90.5 + parent: 2 + - uid: 17813 + components: + - type: Transform + pos: -44.5,93.5 + parent: 2 + - uid: 17837 + components: + - type: Transform + pos: -46.5,65.5 + parent: 2 + - uid: 17854 + components: + - type: Transform + pos: -126.5,63.5 + parent: 2 + - uid: 17866 + components: + - type: Transform + pos: -134.5,90.5 + parent: 2 + - uid: 17867 + components: + - type: Transform + pos: -130.5,90.5 + parent: 2 + - uid: 17875 + components: + - type: Transform + pos: -99.5,101.5 + parent: 2 + - uid: 17884 + components: + - type: Transform + pos: -127.5,62.5 + parent: 2 + - uid: 17919 + components: + - type: Transform + pos: -113.5,103.5 + parent: 2 + - uid: 17925 + components: + - type: Transform + pos: -100.5,91.5 + parent: 2 + - uid: 17927 + components: + - type: Transform + pos: -131.5,90.5 + parent: 2 + - uid: 17930 + components: + - type: Transform + pos: -109.5,97.5 + parent: 2 + - uid: 17936 + components: + - type: Transform + pos: -49.5,94.5 + parent: 2 + - uid: 17939 + components: + - type: Transform + pos: -129.5,90.5 + parent: 2 + - uid: 17942 + components: + - type: Transform + pos: -44.5,95.5 + parent: 2 + - uid: 17947 + components: + - type: Transform + pos: -114.5,104.5 + parent: 2 + - uid: 17954 + components: + - type: Transform + pos: -113.5,94.5 + parent: 2 + - uid: 17959 + components: + - type: Transform + pos: -113.5,95.5 + parent: 2 + - uid: 17961 + components: + - type: Transform + pos: -123.5,56.5 + parent: 2 + - uid: 17968 + components: + - type: Transform + pos: -133.5,90.5 + parent: 2 + - uid: 17971 + components: + - type: Transform + pos: -135.5,90.5 + parent: 2 + - uid: 17983 + components: + - type: Transform + pos: -134.5,31.5 + parent: 2 + - uid: 17993 + components: + - type: Transform + pos: -102.5,54.5 + parent: 2 + - uid: 18011 + components: + - type: Transform + pos: -102.5,97.5 + parent: 2 + - uid: 18018 + components: + - type: Transform + pos: -113.5,104.5 + parent: 2 + - uid: 18039 + components: + - type: Transform + pos: -101.5,143.5 + parent: 2 + - uid: 18040 + components: + - type: Transform + pos: -55.5,173.5 + parent: 2 + - uid: 18083 + components: + - type: Transform + pos: -100.5,97.5 + parent: 2 + - uid: 18090 + components: + - type: Transform + pos: -105.5,97.5 + parent: 2 + - uid: 18091 + components: + - type: Transform + pos: -131.5,23.5 + parent: 2 + - uid: 18098 + components: + - type: Transform + pos: -128.5,33.5 + parent: 2 + - uid: 18099 + components: + - type: Transform + pos: -44.5,92.5 + parent: 2 + - uid: 18100 + components: + - type: Transform + pos: -124.5,56.5 + parent: 2 + - uid: 18112 + components: + - type: Transform + pos: -44.5,94.5 + parent: 2 + - uid: 18117 + components: + - type: Transform + pos: -127.5,23.5 + parent: 2 + - uid: 18124 + components: + - type: Transform + pos: -44.5,97.5 + parent: 2 + - uid: 18127 + components: + - type: Transform + pos: -49.5,95.5 + parent: 2 + - uid: 18128 + components: + - type: Transform + pos: -48.5,97.5 + parent: 2 + - uid: 18133 + components: + - type: Transform + pos: -112.5,149.5 + parent: 2 + - uid: 18135 + components: + - type: Transform + pos: -98.5,143.5 + parent: 2 + - uid: 18137 + components: + - type: Transform + pos: -100.5,143.5 + parent: 2 + - uid: 18140 + components: + - type: Transform + pos: -99.5,143.5 + parent: 2 + - uid: 18141 + components: + - type: Transform + pos: -100.5,92.5 + parent: 2 + - uid: 18155 + components: + - type: Transform + pos: -130.5,21.5 + parent: 2 + - uid: 18160 + components: + - type: Transform + pos: -127.5,19.5 + parent: 2 + - uid: 18162 + components: + - type: Transform + pos: -123.5,110.5 + parent: 2 + - uid: 18163 + components: + - type: Transform + pos: -114.5,90.5 + parent: 2 + - uid: 18165 + components: + - type: Transform + pos: -122.5,104.5 + parent: 2 + - uid: 18168 + components: + - type: Transform + pos: -113.5,97.5 + parent: 2 + - uid: 18180 + components: + - type: Transform + pos: -127.5,20.5 + parent: 2 + - uid: 18202 + components: + - type: Transform + pos: -124.5,62.5 + parent: 2 + - uid: 18213 + components: + - type: Transform + pos: -100.5,58.5 + parent: 2 + - uid: 18216 + components: + - type: Transform + pos: -89.5,85.5 + parent: 2 + - uid: 18226 + components: + - type: Transform + pos: -135.5,35.5 + parent: 2 + - uid: 18243 + components: + - type: Transform + pos: -127.5,61.5 + parent: 2 + - uid: 18244 + components: + - type: Transform + pos: -49.5,96.5 + parent: 2 + - uid: 18245 + components: + - type: Transform + pos: -67.5,179.5 + parent: 2 + - uid: 18257 + components: + - type: Transform + pos: -130.5,22.5 + parent: 2 + - uid: 18266 + components: + - type: Transform + pos: -108.5,150.5 + parent: 2 + - uid: 18271 + components: + - type: Transform + pos: -127.5,33.5 + parent: 2 + - uid: 18284 + components: + - type: Transform + pos: -128.5,34.5 + parent: 2 + - uid: 18322 + components: + - type: Transform + pos: -75.5,141.5 + parent: 2 + - uid: 18324 + components: + - type: Transform + pos: -127.5,109.5 + parent: 2 + - uid: 18333 + components: + - type: Transform + pos: -75.5,41.5 + parent: 2 + - uid: 18340 + components: + - type: Transform + pos: -73.5,41.5 + parent: 2 + - uid: 18353 + components: + - type: Transform + pos: -76.5,41.5 + parent: 2 + - uid: 18368 + components: + - type: Transform + pos: -113.5,92.5 + parent: 2 + - uid: 18370 + components: + - type: Transform + pos: -127.5,108.5 + parent: 2 + - uid: 18374 + components: + - type: Transform + pos: -127.5,29.5 + parent: 2 + - uid: 18375 + components: + - type: Transform + pos: -55.5,170.5 + parent: 2 + - uid: 18378 + components: + - type: Transform + pos: 7.5,182.5 + parent: 2 + - uid: 18380 + components: + - type: Transform + pos: -100.5,93.5 + parent: 2 + - uid: 18386 + components: + - type: Transform + pos: -123.5,106.5 + parent: 2 + - uid: 18399 + components: + - type: Transform + pos: -103.5,97.5 + parent: 2 + - uid: 18400 + components: + - type: Transform + pos: -110.5,97.5 + parent: 2 + - uid: 18403 + components: + - type: Transform + pos: -104.5,97.5 + parent: 2 + - uid: 18409 + components: + - type: Transform + pos: -113.5,93.5 + parent: 2 + - uid: 18412 + components: + - type: Transform + pos: -108.5,97.5 + parent: 2 + - uid: 18414 + components: + - type: Transform + pos: -123.5,104.5 + parent: 2 + - uid: 18416 + components: + - type: Transform + pos: 7.5,183.5 + parent: 2 + - uid: 18431 + components: + - type: Transform + pos: 6.5,189.5 + parent: 2 + - uid: 18447 + components: + - type: Transform + pos: 5.5,189.5 + parent: 2 + - uid: 18449 + components: + - type: Transform + pos: -133.5,31.5 + parent: 2 + - uid: 18451 + components: + - type: Transform + pos: -47.5,65.5 + parent: 2 + - uid: 18455 + components: + - type: Transform + pos: 4.5,189.5 + parent: 2 + - uid: 18456 + components: + - type: Transform + pos: 3.5,190.5 + parent: 2 + - uid: 18459 + components: + - type: Transform + pos: 7.5,190.5 + parent: 2 + - uid: 18461 + components: + - type: Transform + pos: -44.5,65.5 + parent: 2 + - uid: 18462 + components: + - type: Transform + pos: 7.5,193.5 + parent: 2 + - uid: 18464 + components: + - type: Transform + pos: 6.5,194.5 + parent: 2 + - uid: 18466 + components: + - type: Transform + pos: 4.5,194.5 + parent: 2 + - uid: 18469 + components: + - type: Transform + pos: -132.5,90.5 + parent: 2 + - uid: 18470 + components: + - type: Transform + pos: 5.5,194.5 + parent: 2 + - uid: 18472 + components: + - type: Transform + pos: 3.5,193.5 + parent: 2 + - uid: 18477 + components: + - type: Transform + pos: 7.5,197.5 + parent: 2 + - uid: 18478 + components: + - type: Transform + pos: -123.5,105.5 + parent: 2 + - uid: 18480 + components: + - type: Transform + pos: 7.5,198.5 + parent: 2 + - uid: 18483 + components: + - type: Transform + pos: -111.5,97.5 + parent: 2 + - uid: 18484 + components: + - type: Transform + pos: -112.5,97.5 + parent: 2 + - uid: 18485 + components: + - type: Transform + pos: 8.5,198.5 + parent: 2 + - uid: 18487 + components: + - type: Transform + pos: -113.5,96.5 + parent: 2 + - uid: 18489 + components: + - type: Transform + pos: -115.5,104.5 + parent: 2 + - uid: 18490 + components: + - type: Transform + pos: 8.5,199.5 + parent: 2 + - uid: 18491 + components: + - type: Transform + pos: 8.5,200.5 + parent: 2 + - uid: 18492 + components: + - type: Transform + pos: 9.5,199.5 + parent: 2 + - uid: 18493 + components: + - type: Transform + pos: 9.5,200.5 + parent: 2 + - uid: 18494 + components: + - type: Transform + pos: 7.5,200.5 + parent: 2 + - uid: 18496 + components: + - type: Transform + pos: 7.5,187.5 + parent: 2 + - uid: 18497 + components: + - type: Transform + pos: 7.5,185.5 + parent: 2 + - uid: 18501 + components: + - type: Transform + pos: 7.5,186.5 + parent: 2 + - uid: 18502 + components: + - type: Transform + pos: 7.5,184.5 + parent: 2 + - uid: 18503 + components: + - type: Transform + pos: 7.5,188.5 + parent: 2 + - uid: 18505 + components: + - type: Transform + pos: 7.5,189.5 + parent: 2 + - uid: 18506 + components: + - type: Transform + pos: 3.5,194.5 + parent: 2 + - uid: 18507 + components: + - type: Transform + pos: -120.5,104.5 + parent: 2 + - uid: 18508 + components: + - type: Transform + pos: 3.5,189.5 + parent: 2 + - uid: 18509 + components: + - type: Transform + pos: -46.5,175.5 + parent: 2 + - uid: 18510 + components: + - type: Transform + pos: -35.5,179.5 + parent: 2 + - uid: 18512 + components: + - type: Transform + pos: -73.5,166.5 + parent: 2 + - uid: 18513 + components: + - type: Transform + pos: -85.5,166.5 + parent: 2 + - uid: 18519 + components: + - type: Transform + pos: -86.5,166.5 + parent: 2 + - uid: 18523 + components: + - type: Transform + pos: -79.5,153.5 + parent: 2 + - uid: 18524 + components: + - type: Transform + pos: -94.5,146.5 + parent: 2 + - uid: 18526 + components: + - type: Transform + pos: -97.5,146.5 + parent: 2 + - uid: 18527 + components: + - type: Transform + pos: -95.5,146.5 + parent: 2 + - uid: 18529 + components: + - type: Transform + pos: -78.5,149.5 + parent: 2 + - uid: 18539 + components: + - type: Transform + pos: 13.5,186.5 + parent: 2 + - uid: 18541 + components: + - type: Transform + pos: 13.5,183.5 + parent: 2 + - uid: 18542 + components: + - type: Transform + pos: 13.5,184.5 + parent: 2 + - uid: 18544 + components: + - type: Transform + pos: 12.5,186.5 + parent: 2 + - uid: 18548 + components: + - type: Transform + pos: -93.5,147.5 + parent: 2 + - uid: 18549 + components: + - type: Transform + pos: -91.5,146.5 + parent: 2 + - uid: 18552 + components: + - type: Transform + pos: -96.5,146.5 + parent: 2 + - uid: 18553 + components: + - type: Transform + pos: -81.5,153.5 + parent: 2 + - uid: 18568 + components: + - type: Transform + pos: 13.5,185.5 + parent: 2 + - uid: 18569 + components: + - type: Transform + pos: 14.5,190.5 + parent: 2 + - uid: 18572 + components: + - type: Transform + pos: 15.5,190.5 + parent: 2 + - uid: 18573 + components: + - type: Transform + pos: 18.5,187.5 + parent: 2 + - uid: 18575 + components: + - type: Transform + pos: 19.5,187.5 + parent: 2 + - uid: 18576 + components: + - type: Transform + pos: 20.5,187.5 + parent: 2 + - uid: 18579 + components: + - type: Transform + pos: -92.5,153.5 + parent: 2 + - uid: 18580 + components: + - type: Transform + pos: -86.5,153.5 + parent: 2 + - uid: 18582 + components: + - type: Transform + pos: 21.5,187.5 + parent: 2 + - uid: 18583 + components: + - type: Transform + pos: 64.5,59.5 + parent: 2 + - uid: 18584 + components: + - type: Transform + pos: 22.5,187.5 + parent: 2 + - uid: 18587 + components: + - type: Transform + pos: 22.5,188.5 + parent: 2 + - uid: 18595 + components: + - type: Transform + pos: -102.5,29.5 + parent: 2 + - uid: 18599 + components: + - type: Transform + pos: -119.5,90.5 + parent: 2 + - uid: 18600 + components: + - type: Transform + pos: -69.5,143.5 + parent: 2 + - uid: 18612 + components: + - type: Transform + pos: -102.5,150.5 + parent: 2 + - uid: 18615 + components: + - type: Transform + pos: -119.5,104.5 + parent: 2 + - uid: 18632 + components: + - type: Transform + pos: -126.5,60.5 + parent: 2 + - uid: 18636 + components: + - type: Transform + pos: -45.5,65.5 + parent: 2 + - uid: 18637 + components: + - type: Transform + pos: -126.5,59.5 + parent: 2 + - uid: 18645 + components: + - type: Transform + pos: -125.5,104.5 + parent: 2 + - uid: 18650 + components: + - type: Transform + pos: -126.5,104.5 + parent: 2 + - uid: 18651 + components: + - type: Transform + pos: -127.5,104.5 + parent: 2 + - uid: 18659 + components: + - type: Transform + pos: -120.5,61.5 + parent: 2 + - uid: 18669 + components: + - type: Transform + pos: -117.5,104.5 + parent: 2 + - uid: 18689 + components: + - type: Transform + pos: -14.5,83.5 + parent: 2 + - uid: 18691 + components: + - type: Transform + pos: -14.5,80.5 + parent: 2 + - uid: 18695 + components: + - type: Transform + pos: -14.5,81.5 + parent: 2 + - uid: 18699 + components: + - type: Transform + pos: -17.5,85.5 + parent: 2 + - uid: 18701 + components: + - type: Transform + pos: -102.5,28.5 + parent: 2 + - uid: 18702 + components: + - type: Transform + pos: -14.5,84.5 + parent: 2 + - uid: 18703 + components: + - type: Transform + pos: -21.5,79.5 + parent: 2 + - uid: 18714 + components: + - type: Transform + pos: -126.5,24.5 + parent: 2 + - uid: 18720 + components: + - type: Transform + pos: -99.5,102.5 + parent: 2 + - uid: 18723 + components: + - type: Transform + pos: -99.5,103.5 + parent: 2 + - uid: 18732 + components: + - type: Transform + pos: -126.5,29.5 + parent: 2 + - uid: 18754 + components: + - type: Transform + pos: -132.5,23.5 + parent: 2 + - uid: 18763 + components: + - type: Transform + pos: -127.5,31.5 + parent: 2 + - uid: 18766 + components: + - type: Transform + pos: -64.5,150.5 + parent: 2 + - uid: 18768 + components: + - type: Transform + pos: -131.5,18.5 + parent: 2 + - uid: 18769 + components: + - type: Transform + pos: -127.5,32.5 + parent: 2 + - uid: 18770 + components: + - type: Transform + pos: -133.5,18.5 + parent: 2 + - uid: 18787 + components: + - type: Transform + pos: -21.5,78.5 + parent: 2 + - uid: 18788 + components: + - type: Transform + pos: -131.5,34.5 + parent: 2 + - uid: 18789 + components: + - type: Transform + pos: 4.5,81.5 + parent: 2 + - uid: 18792 + components: + - type: Transform + pos: -132.5,18.5 + parent: 2 + - uid: 18794 + components: + - type: Transform + pos: 4.5,79.5 + parent: 2 + - uid: 18797 + components: + - type: Transform + pos: -130.5,34.5 + parent: 2 + - uid: 18798 + components: + - type: Transform + pos: -79.5,187.5 + parent: 2 + - uid: 18806 + components: + - type: Transform + pos: -133.5,34.5 + parent: 2 + - uid: 18809 + components: + - type: Transform + pos: -48.5,66.5 + parent: 2 + - uid: 18810 + components: + - type: Transform + pos: -64.5,64.5 + parent: 2 + - uid: 18817 + components: + - type: Transform + pos: -63.5,64.5 + parent: 2 + - uid: 18820 + components: + - type: Transform + pos: -129.5,34.5 + parent: 2 + - uid: 18836 + components: + - type: Transform + pos: -48.5,67.5 + parent: 2 + - uid: 18838 + components: + - type: Transform + pos: -71.5,143.5 + parent: 2 + - uid: 18845 + components: + - type: Transform + pos: -75.5,140.5 + parent: 2 + - uid: 18849 + components: + - type: Transform + pos: 7.5,79.5 + parent: 2 + - uid: 18852 + components: + - type: Transform + pos: -123.5,108.5 + parent: 2 + - uid: 18854 + components: + - type: Transform + pos: -99.5,104.5 + parent: 2 + - uid: 18855 + components: + - type: Transform + pos: -133.5,21.5 + parent: 2 + - uid: 18857 + components: + - type: Transform + pos: -101.5,104.5 + parent: 2 + - uid: 18858 + components: + - type: Transform + pos: -100.5,104.5 + parent: 2 + - uid: 18859 + components: + - type: Transform + pos: -103.5,104.5 + parent: 2 + - uid: 18860 + components: + - type: Transform + pos: -102.5,104.5 + parent: 2 + - uid: 18863 + components: + - type: Transform + pos: -48.5,68.5 + parent: 2 + - uid: 18867 + components: + - type: Transform + pos: -130.5,29.5 + parent: 2 + - uid: 18869 + components: + - type: Transform + pos: -130.5,23.5 + parent: 2 + - uid: 18871 + components: + - type: Transform + pos: -129.5,18.5 + parent: 2 + - uid: 18872 + components: + - type: Transform + pos: -127.5,21.5 + parent: 2 + - uid: 18874 + components: + - type: Transform + pos: -105.5,104.5 + parent: 2 + - uid: 18875 + components: + - type: Transform + pos: -127.5,22.5 + parent: 2 + - uid: 18878 + components: + - type: Transform + pos: -130.5,30.5 + parent: 2 + - uid: 18881 + components: + - type: Transform + pos: -134.5,22.5 + parent: 2 + - uid: 18882 + components: + - type: Transform + pos: -132.5,31.5 + parent: 2 + - uid: 18883 + components: + - type: Transform + pos: -127.5,30.5 + parent: 2 + - uid: 18884 + components: + - type: Transform + pos: -87.5,80.5 + parent: 2 + - uid: 18887 + components: + - type: Transform + pos: -104.5,104.5 + parent: 2 + - uid: 18891 + components: + - type: Transform + pos: -128.5,19.5 + parent: 2 + - uid: 18895 + components: + - type: Transform + pos: -128.5,18.5 + parent: 2 + - uid: 18899 + components: + - type: Transform + pos: -131.5,31.5 + parent: 2 + - uid: 18910 + components: + - type: Transform + pos: -134.5,30.5 + parent: 2 + - uid: 18916 + components: + - type: Transform + pos: -134.5,21.5 + parent: 2 + - uid: 18942 + components: + - type: Transform + pos: -132.5,21.5 + parent: 2 + - uid: 18943 + components: + - type: Transform + pos: -131.5,21.5 + parent: 2 + - uid: 18945 + components: + - type: Transform + pos: -130.5,18.5 + parent: 2 + - uid: 18946 + components: + - type: Transform + pos: -130.5,31.5 + parent: 2 + - uid: 18953 + components: + - type: Transform + pos: -105.5,29.5 + parent: 2 + - uid: 18958 + components: + - type: Transform + pos: -102.5,27.5 + parent: 2 + - uid: 18969 + components: + - type: Transform + pos: -101.5,150.5 + parent: 2 + - uid: 18976 + components: + - type: Transform + pos: -126.5,23.5 + parent: 2 + - uid: 18981 + components: + - type: Transform + pos: -132.5,29.5 + parent: 2 + - uid: 19004 + components: + - type: Transform + pos: -100.5,150.5 + parent: 2 + - uid: 19033 + components: + - type: Transform + pos: -87.5,146.5 + parent: 2 + - uid: 19043 + components: + - type: Transform + pos: -56.5,171.5 + parent: 2 + - uid: 19051 + components: + - type: Transform + pos: -49.5,159.5 + parent: 2 + - uid: 19068 + components: + - type: Transform + pos: 23.5,182.5 + parent: 2 + - uid: 19072 + components: + - type: Transform + pos: 24.5,182.5 + parent: 2 + - uid: 19076 + components: + - type: Transform + pos: 23.5,183.5 + parent: 2 + - uid: 19104 + components: + - type: Transform + pos: 79.5,47.5 + parent: 2 + - uid: 19110 + components: + - type: Transform + pos: -68.5,173.5 + parent: 2 + - uid: 19114 + components: + - type: Transform + pos: 22.5,189.5 + parent: 2 + - uid: 19118 + components: + - type: Transform + pos: 64.5,58.5 + parent: 2 + - uid: 19120 + components: + - type: Transform + pos: 22.5,190.5 + parent: 2 + - uid: 19121 + components: + - type: Transform + pos: -87.5,149.5 + parent: 2 + - uid: 19122 + components: + - type: Transform + pos: 22.5,191.5 + parent: 2 + - uid: 19129 + components: + - type: Transform + pos: 22.5,192.5 + parent: 2 + - uid: 19165 + components: + - type: Transform + pos: -48.5,69.5 + parent: 2 + - uid: 19168 + components: + - type: Transform + pos: -19.5,208.5 + parent: 2 + - uid: 19170 + components: + - type: Transform + pos: 15.5,178.5 + parent: 2 + - uid: 19172 + components: + - type: Transform + pos: -84.5,153.5 + parent: 2 + - uid: 19184 + components: + - type: Transform + pos: -93.5,149.5 + parent: 2 + - uid: 19185 + components: + - type: Transform + pos: 22.5,193.5 + parent: 2 + - uid: 19186 + components: + - type: Transform + pos: 22.5,194.5 + parent: 2 + - uid: 19187 + components: + - type: Transform + pos: 22.5,195.5 + parent: 2 + - uid: 19192 + components: + - type: Transform + pos: 22.5,196.5 + parent: 2 + - uid: 19193 + components: + - type: Transform + pos: -87.5,153.5 + parent: 2 + - uid: 19194 + components: + - type: Transform + pos: -101.5,91.5 + parent: 2 + - uid: 19195 + components: + - type: Transform + pos: -100.5,96.5 + parent: 2 + - uid: 19196 + components: + - type: Transform + pos: -100.5,95.5 + parent: 2 + - uid: 19202 + components: + - type: Transform + pos: 21.5,196.5 + parent: 2 + - uid: 19203 + components: + - type: Transform + pos: 10.5,179.5 + parent: 2 + - uid: 19204 + components: + - type: Transform + pos: -82.5,75.5 + parent: 2 + - uid: 19207 + components: + - type: Transform + pos: 20.5,196.5 + parent: 2 + - uid: 19208 + components: + - type: Transform + pos: 19.5,196.5 + parent: 2 + - uid: 19212 + components: + - type: Transform + pos: -17.5,160.5 + parent: 2 + - uid: 19215 + components: + - type: Transform + pos: 16.5,196.5 + parent: 2 + - uid: 19219 + components: + - type: Transform + pos: -19.5,160.5 + parent: 2 + - uid: 19222 + components: + - type: Transform + pos: -112.5,90.5 + parent: 2 + - uid: 19226 + components: + - type: Transform + pos: -85.5,153.5 + parent: 2 + - uid: 19239 + components: + - type: Transform + pos: -93.5,153.5 + parent: 2 + - uid: 19240 + components: + - type: Transform + pos: -26.5,176.5 + parent: 2 + - uid: 19245 + components: + - type: Transform + pos: -88.5,153.5 + parent: 2 + - uid: 19255 + components: + - type: Transform + pos: -16.5,163.5 + parent: 2 + - uid: 19264 + components: + - type: Transform + pos: -77.5,156.5 + parent: 2 + - uid: 19287 + components: + - type: Transform + pos: 7.5,80.5 + parent: 2 + - uid: 19288 + components: + - type: Transform + pos: 7.5,81.5 + parent: 2 + - uid: 19290 + components: + - type: Transform + pos: 15.5,196.5 + parent: 2 + - uid: 19291 + components: + - type: Transform + pos: -78.5,156.5 + parent: 2 + - uid: 19292 + components: + - type: Transform + pos: -112.5,91.5 + parent: 2 + - uid: 19295 + components: + - type: Transform + pos: 15.5,193.5 + parent: 2 + - uid: 19322 + components: + - type: Transform + pos: -78.5,155.5 + parent: 2 + - uid: 19323 + components: + - type: Transform + pos: 14.5,193.5 + parent: 2 + - uid: 19338 + components: + - type: Transform + pos: 20.5,197.5 + parent: 2 + - uid: 19349 + components: + - type: Transform + pos: 19.5,199.5 + parent: 2 + - uid: 19354 + components: + - type: Transform + pos: -91.5,153.5 + parent: 2 + - uid: 19374 + components: + - type: Transform + pos: 18.5,199.5 + parent: 2 + - uid: 19391 + components: + - type: Transform + pos: 18.5,200.5 + parent: 2 + - uid: 19392 + components: + - type: Transform + pos: 17.5,200.5 + parent: 2 + - uid: 19395 + components: + - type: Transform + pos: 16.5,200.5 + parent: 2 + - uid: 19396 + components: + - type: Transform + pos: 16.5,201.5 + parent: 2 + - uid: 19397 + components: + - type: Transform + pos: -92.5,146.5 + parent: 2 + - uid: 19399 + components: + - type: Transform + pos: 15.5,201.5 + parent: 2 + - uid: 19400 + components: + - type: Transform + pos: 14.5,201.5 + parent: 2 + - uid: 19401 + components: + - type: Transform + pos: 13.5,201.5 + parent: 2 + - uid: 19402 + components: + - type: Transform + pos: 12.5,201.5 + parent: 2 + - uid: 19403 + components: + - type: Transform + pos: 21.5,186.5 + parent: 2 + - uid: 19414 + components: + - type: Transform + pos: 20.5,186.5 + parent: 2 + - uid: 19444 + components: + - type: Transform + pos: -51.5,159.5 + parent: 2 + - uid: 19450 + components: + - type: Transform + pos: -57.5,98.5 + parent: 2 + - uid: 19465 + components: + - type: Transform + pos: -100.5,94.5 + parent: 2 + - uid: 19469 + components: + - type: Transform + pos: -113.5,91.5 + parent: 2 + - uid: 19487 + components: + - type: Transform + pos: -33.5,100.5 + parent: 2 + - uid: 19538 + components: + - type: Transform + pos: -73.5,173.5 + parent: 2 + - uid: 19598 + components: + - type: Transform + pos: -93.5,50.5 + parent: 2 + - uid: 19600 + components: + - type: Transform + pos: -93.5,52.5 + parent: 2 + - uid: 19641 + components: + - type: Transform + pos: -83.5,153.5 + parent: 2 + - uid: 19697 + components: + - type: Transform + pos: -82.5,153.5 + parent: 2 + - uid: 19699 + components: + - type: Transform + pos: 8.5,78.5 + parent: 2 + - uid: 19701 + components: + - type: Transform + pos: -90.5,153.5 + parent: 2 + - uid: 19706 + components: + - type: Transform + pos: -96.5,52.5 + parent: 2 + - uid: 19707 + components: + - type: Transform + pos: -99.5,58.5 + parent: 2 + - uid: 19719 + components: + - type: Transform + pos: -89.5,153.5 + parent: 2 + - uid: 19724 + components: + - type: Transform + pos: -82.5,154.5 + parent: 2 + - uid: 19726 + components: + - type: Transform + pos: 20.5,185.5 + parent: 2 + - uid: 19727 + components: + - type: Transform + pos: 19.5,185.5 + parent: 2 + - uid: 19728 + components: + - type: Transform + pos: -78.5,153.5 + parent: 2 + - uid: 19729 + components: + - type: Transform + pos: -78.5,150.5 + parent: 2 + - uid: 19730 + components: + - type: Transform + pos: -78.5,152.5 + parent: 2 + - uid: 19731 + components: + - type: Transform + pos: -78.5,151.5 + parent: 2 + - uid: 19743 + components: + - type: Transform + pos: -93.5,157.5 + parent: 2 + - uid: 19747 + components: + - type: Transform + pos: -82.5,161.5 + parent: 2 + - uid: 19748 + components: + - type: Transform + pos: -92.5,161.5 + parent: 2 + - uid: 19749 + components: + - type: Transform + pos: -83.5,161.5 + parent: 2 + - uid: 19752 + components: + - type: Transform + pos: -82.5,160.5 + parent: 2 + - uid: 19754 + components: + - type: Transform + pos: -82.5,157.5 + parent: 2 + - uid: 19756 + components: + - type: Transform + pos: -82.5,156.5 + parent: 2 + - uid: 19757 + components: + - type: Transform + pos: -82.5,155.5 + parent: 2 + - uid: 19758 + components: + - type: Transform + pos: -93.5,161.5 + parent: 2 + - uid: 19762 + components: + - type: Transform + pos: -92.5,157.5 + parent: 2 + - uid: 19764 + components: + - type: Transform + pos: -85.5,156.5 + parent: 2 + - uid: 19766 + components: + - type: Transform + pos: -85.5,154.5 + parent: 2 + - uid: 19769 + components: + - type: Transform + pos: -82.5,158.5 + parent: 2 + - uid: 19771 + components: + - type: Transform + pos: -90.5,161.5 + parent: 2 + - uid: 19779 + components: + - type: Transform + pos: -83.5,157.5 + parent: 2 + - uid: 19780 + components: + - type: Transform + pos: -84.5,157.5 + parent: 2 + - uid: 19781 + components: + - type: Transform + pos: -85.5,157.5 + parent: 2 + - uid: 19802 + components: + - type: Transform + pos: -98.5,56.5 + parent: 2 + - uid: 19821 + components: + - type: Transform + pos: -105.5,146.5 + parent: 2 + - uid: 19839 + components: + - type: Transform + pos: 19.5,184.5 + parent: 2 + - uid: 19841 + components: + - type: Transform + pos: 18.5,184.5 + parent: 2 + - uid: 19843 + components: + - type: Transform + pos: -93.5,163.5 + parent: 2 + - uid: 19844 + components: + - type: Transform + pos: -93.5,162.5 + parent: 2 + - uid: 19845 + components: + - type: Transform + pos: -93.5,165.5 + parent: 2 + - uid: 19846 + components: + - type: Transform + pos: -93.5,164.5 + parent: 2 + - uid: 19847 + components: + - type: Transform + pos: -94.5,166.5 + parent: 2 + - uid: 19848 + components: + - type: Transform + pos: 18.5,183.5 + parent: 2 + - uid: 19849 + components: + - type: Transform + pos: 17.5,183.5 + parent: 2 + - uid: 19850 + components: + - type: Transform + pos: 16.5,183.5 + parent: 2 + - uid: 19851 + components: + - type: Transform + pos: 16.5,182.5 + parent: 2 + - uid: 19852 + components: + - type: Transform + pos: -93.5,166.5 + parent: 2 + - uid: 19853 + components: + - type: Transform + pos: -95.5,166.5 + parent: 2 + - uid: 19854 + components: + - type: Transform + pos: -96.5,166.5 + parent: 2 + - uid: 19855 + components: + - type: Transform + pos: -96.5,165.5 + parent: 2 + - uid: 19856 + components: + - type: Transform + pos: -96.5,164.5 + parent: 2 + - uid: 19857 + components: + - type: Transform + pos: -96.5,163.5 + parent: 2 + - uid: 19858 + components: + - type: Transform + pos: -95.5,163.5 + parent: 2 + - uid: 19859 + components: + - type: Transform + pos: -95.5,162.5 + parent: 2 + - uid: 19860 + components: + - type: Transform + pos: -95.5,161.5 + parent: 2 + - uid: 19861 + components: + - type: Transform + pos: -95.5,160.5 + parent: 2 + - uid: 19862 + components: + - type: Transform + pos: -95.5,159.5 + parent: 2 + - uid: 19863 + components: + - type: Transform + pos: -95.5,158.5 + parent: 2 + - uid: 19864 + components: + - type: Transform + pos: -95.5,157.5 + parent: 2 + - uid: 19865 + components: + - type: Transform + pos: -96.5,157.5 + parent: 2 + - uid: 19866 + components: + - type: Transform + pos: -96.5,156.5 + parent: 2 + - uid: 19868 + components: + - type: Transform + pos: -98.5,155.5 + parent: 2 + - uid: 19869 + components: + - type: Transform + pos: -98.5,156.5 + parent: 2 + - uid: 19870 + components: + - type: Transform + pos: -98.5,157.5 + parent: 2 + - uid: 19871 + components: + - type: Transform + pos: -99.5,157.5 + parent: 2 + - uid: 19872 + components: + - type: Transform + pos: -99.5,158.5 + parent: 2 + - uid: 19873 + components: + - type: Transform + pos: -100.5,158.5 + parent: 2 + - uid: 19874 + components: + - type: Transform + pos: -101.5,158.5 + parent: 2 + - uid: 19875 + components: + - type: Transform + pos: -101.5,160.5 + parent: 2 + - uid: 19876 + components: + - type: Transform + pos: -100.5,160.5 + parent: 2 + - uid: 19877 + components: + - type: Transform + pos: -99.5,160.5 + parent: 2 + - uid: 19878 + components: + - type: Transform + pos: -101.5,162.5 + parent: 2 + - uid: 19879 + components: + - type: Transform + pos: -100.5,162.5 + parent: 2 + - uid: 19880 + components: + - type: Transform + pos: -99.5,162.5 + parent: 2 + - uid: 19881 + components: + - type: Transform + pos: -99.5,163.5 + parent: 2 + - uid: 19882 + components: + - type: Transform + pos: -98.5,163.5 + parent: 2 + - uid: 19883 + components: + - type: Transform + pos: -98.5,164.5 + parent: 2 + - uid: 19884 + components: + - type: Transform + pos: -98.5,165.5 + parent: 2 + - uid: 19885 + components: + - type: Transform + pos: -98.5,166.5 + parent: 2 + - uid: 19886 + components: + - type: Transform + pos: -99.5,166.5 + parent: 2 + - uid: 19965 + components: + - type: Transform + pos: -77.5,150.5 + parent: 2 + - uid: 19967 + components: + - type: Transform + pos: -75.5,150.5 + parent: 2 + - uid: 19968 + components: + - type: Transform + pos: -76.5,150.5 + parent: 2 + - uid: 19969 + components: + - type: Transform + pos: -74.5,150.5 + parent: 2 + - uid: 19970 + components: + - type: Transform + pos: -74.5,151.5 + parent: 2 + - uid: 19973 + components: + - type: Transform + pos: -74.5,155.5 + parent: 2 + - uid: 19974 + components: + - type: Transform + pos: -74.5,156.5 + parent: 2 + - uid: 19975 + components: + - type: Transform + pos: -75.5,156.5 + parent: 2 + - uid: 19981 + components: + - type: Transform + pos: 15.5,182.5 + parent: 2 + - uid: 19982 + components: + - type: Transform + pos: 14.5,182.5 + parent: 2 + - uid: 19983 + components: + - type: Transform + pos: 13.5,182.5 + parent: 2 + - uid: 19984 + components: + - type: Transform + pos: 12.5,182.5 + parent: 2 + - uid: 19985 + components: + - type: Transform + pos: 11.5,182.5 + parent: 2 + - uid: 19986 + components: + - type: Transform + pos: 7.5,196.5 + parent: 2 + - uid: 19987 + components: + - type: Transform + pos: 7.5,195.5 + parent: 2 + - uid: 19991 + components: + - type: Transform + pos: 7.5,194.5 + parent: 2 + - uid: 19993 + components: + - type: Transform + pos: 10.5,186.5 + parent: 2 + - uid: 19994 + components: + - type: Transform + pos: 10.5,182.5 + parent: 2 + - uid: 19995 + components: + - type: Transform + pos: 9.5,182.5 + parent: 2 + - uid: 19996 + components: + - type: Transform + pos: 8.5,182.5 + parent: 2 + - uid: 19997 + components: + - type: Transform + pos: 23.5,196.5 + parent: 2 + - uid: 19998 + components: + - type: Transform + pos: 10.5,200.5 + parent: 2 + - uid: 19999 + components: + - type: Transform + pos: 11.5,200.5 + parent: 2 + - uid: 20000 + components: + - type: Transform + pos: 11.5,201.5 + parent: 2 + - uid: 20002 + components: + - type: Transform + pos: -84.5,146.5 + parent: 2 + - uid: 20003 + components: + - type: Transform + pos: -83.5,146.5 + parent: 2 + - uid: 20004 + components: + - type: Transform + pos: -82.5,146.5 + parent: 2 + - uid: 20009 + components: + - type: Transform + pos: -74.5,166.5 + parent: 2 + - uid: 20014 + components: + - type: Transform + pos: -81.5,146.5 + parent: 2 + - uid: 20015 + components: + - type: Transform + pos: -84.5,147.5 + parent: 2 + - uid: 20016 + components: + - type: Transform + pos: -90.5,146.5 + parent: 2 + - uid: 20017 + components: + - type: Transform + pos: -93.5,148.5 + parent: 2 + - uid: 20018 + components: + - type: Transform + pos: -80.5,146.5 + parent: 2 + - uid: 20019 + components: + - type: Transform + pos: -93.5,146.5 + parent: 2 + - uid: 20020 + components: + - type: Transform + pos: -84.5,148.5 + parent: 2 + - uid: 20021 + components: + - type: Transform + pos: -84.5,149.5 + parent: 2 + - uid: 20022 + components: + - type: Transform + pos: -99.5,147.5 + parent: 2 + - uid: 20023 + components: + - type: Transform + pos: -99.5,146.5 + parent: 2 + - uid: 20024 + components: + - type: Transform + pos: -98.5,146.5 + parent: 2 + - uid: 20025 + components: + - type: Transform + pos: -79.5,146.5 + parent: 2 + - uid: 20037 + components: + - type: Transform + pos: -77.5,160.5 + parent: 2 + - uid: 20038 + components: + - type: Transform + pos: -77.5,161.5 + parent: 2 + - uid: 20045 + components: + - type: Transform + pos: -74.5,160.5 + parent: 2 + - uid: 20066 + components: + - type: Transform + pos: -78.5,148.5 + parent: 2 + - uid: 20091 + components: + - type: Transform + pos: -129.5,37.5 + parent: 2 + - uid: 20106 + components: + - type: Transform + pos: -82.5,76.5 + parent: 2 + - uid: 20107 + components: + - type: Transform + pos: -82.5,78.5 + parent: 2 + - uid: 20108 + components: + - type: Transform + pos: -82.5,79.5 + parent: 2 + - uid: 20178 + components: + - type: Transform + pos: -42.5,77.5 + parent: 2 + - uid: 20192 + components: + - type: Transform + pos: -104.5,146.5 + parent: 2 + - uid: 20397 + components: + - type: Transform + pos: -74.5,163.5 + parent: 2 + - uid: 20406 + components: + - type: Transform + pos: -109.5,147.5 + parent: 2 + - uid: 20426 + components: + - type: Transform + pos: -94.5,176.5 + parent: 2 + - uid: 20427 + components: + - type: Transform + pos: -93.5,176.5 + parent: 2 + - uid: 20428 + components: + - type: Transform + pos: -92.5,176.5 + parent: 2 + - uid: 20433 + components: + - type: Transform + pos: -93.5,171.5 + parent: 2 + - uid: 20434 + components: + - type: Transform + pos: -91.5,176.5 + parent: 2 + - uid: 20435 + components: + - type: Transform + pos: -91.5,177.5 + parent: 2 + - uid: 20436 + components: + - type: Transform + pos: -91.5,178.5 + parent: 2 + - uid: 20437 + components: + - type: Transform + pos: -91.5,179.5 + parent: 2 + - uid: 20446 + components: + - type: Transform + pos: -94.5,171.5 + parent: 2 + - uid: 20450 + components: + - type: Transform + pos: -78.5,147.5 + parent: 2 + - uid: 20451 + components: + - type: Transform + pos: -85.5,146.5 + parent: 2 + - uid: 20452 + components: + - type: Transform + pos: -78.5,146.5 + parent: 2 + - uid: 20453 + components: + - type: Transform + pos: -86.5,146.5 + parent: 2 + - uid: 20460 + components: + - type: Transform + pos: -74.5,165.5 + parent: 2 + - uid: 20470 + components: + - type: Transform + pos: -90.5,148.5 + parent: 2 + - uid: 20471 + components: + - type: Transform + pos: -90.5,147.5 + parent: 2 + - uid: 20472 + components: + - type: Transform + pos: -88.5,146.5 + parent: 2 + - uid: 20498 + components: + - type: Transform + pos: -77.5,162.5 + parent: 2 + - uid: 20511 + components: + - type: Transform + pos: -76.5,140.5 + parent: 2 + - uid: 20578 + components: + - type: Transform + pos: -47.5,69.5 + parent: 2 + - uid: 20579 + components: + - type: Transform + pos: -89.5,146.5 + parent: 2 + - uid: 20581 + components: + - type: Transform + pos: -90.5,149.5 + parent: 2 + - uid: 20582 + components: + - type: Transform + pos: -81.5,156.5 + parent: 2 + - uid: 20583 + components: + - type: Transform + pos: -79.5,156.5 + parent: 2 + - uid: 20584 + components: + - type: Transform + pos: -81.5,161.5 + parent: 2 + - uid: 20585 + components: + - type: Transform + pos: -81.5,162.5 + parent: 2 + - uid: 20587 + components: + - type: Transform + pos: -89.5,166.5 + parent: 2 + - uid: 20588 + components: + - type: Transform + pos: -90.5,166.5 + parent: 2 + - uid: 20589 + components: + - type: Transform + pos: -91.5,166.5 + parent: 2 + - uid: 20591 + components: + - type: Transform + pos: -92.5,166.5 + parent: 2 + - uid: 20592 + components: + - type: Transform + pos: -81.5,166.5 + parent: 2 + - uid: 20593 + components: + - type: Transform + pos: -82.5,166.5 + parent: 2 + - uid: 20594 + components: + - type: Transform + pos: -83.5,166.5 + parent: 2 + - uid: 20595 + components: + - type: Transform + pos: -84.5,166.5 + parent: 2 + - uid: 20596 + components: + - type: Transform + pos: -84.5,167.5 + parent: 2 + - uid: 20603 + components: + - type: Transform + pos: -74.5,161.5 + parent: 2 + - uid: 20604 + components: + - type: Transform + pos: -99.5,154.5 + parent: 2 + - uid: 20606 + components: + - type: Transform + pos: -99.5,150.5 + parent: 2 + - uid: 20607 + components: + - type: Transform + pos: -99.5,153.5 + parent: 2 + - uid: 20609 + components: + - type: Transform + pos: -99.5,152.5 + parent: 2 + - uid: 20610 + components: + - type: Transform + pos: -99.5,151.5 + parent: 2 + - uid: 20624 + components: + - type: Transform + pos: -103.5,145.5 + parent: 2 + - uid: 20630 + components: + - type: Transform + pos: -107.5,146.5 + parent: 2 + - uid: 20631 + components: + - type: Transform + pos: -103.5,146.5 + parent: 2 + - uid: 20635 + components: + - type: Transform + pos: -106.5,146.5 + parent: 2 + - uid: 20637 + components: + - type: Transform + pos: 6.5,78.5 + parent: 2 + - uid: 20638 + components: + - type: Transform + pos: -84.5,168.5 + parent: 2 + - uid: 20642 + components: + - type: Transform + pos: -84.5,169.5 + parent: 2 + - uid: 20644 + components: + - type: Transform + pos: 9.5,76.5 + parent: 2 + - uid: 20651 + components: + - type: Transform + pos: -93.5,142.5 + parent: 2 + - uid: 20671 + components: + - type: Transform + pos: -45.5,69.5 + parent: 2 + - uid: 20672 + components: + - type: Transform + pos: -44.5,69.5 + parent: 2 + - uid: 20673 + components: + - type: Transform + pos: -84.5,79.5 + parent: 2 + - uid: 20674 + components: + - type: Transform + pos: -84.5,78.5 + parent: 2 + - uid: 20675 + components: + - type: Transform + pos: -84.5,183.5 + parent: 2 + - uid: 20676 + components: + - type: Transform + pos: -20.5,208.5 + parent: 2 + - uid: 20679 + components: + - type: Transform + pos: 9.5,179.5 + parent: 2 + - uid: 20680 + components: + - type: Transform + pos: -124.5,104.5 + parent: 2 + - uid: 20681 + components: + - type: Transform + pos: 12.5,179.5 + parent: 2 + - uid: 20682 + components: + - type: Transform + pos: 11.5,179.5 + parent: 2 + - uid: 20683 + components: + - type: Transform + pos: 13.5,179.5 + parent: 2 + - uid: 20684 + components: + - type: Transform + pos: 9.5,178.5 + parent: 2 + - uid: 20685 + components: + - type: Transform + pos: 8.5,178.5 + parent: 2 + - uid: 20687 + components: + - type: Transform + pos: 8.5,177.5 + parent: 2 + - uid: 20688 + components: + - type: Transform + pos: 8.5,176.5 + parent: 2 + - uid: 20689 + components: + - type: Transform + pos: 8.5,175.5 + parent: 2 + - uid: 20690 + components: + - type: Transform + pos: 8.5,174.5 + parent: 2 + - uid: 20691 + components: + - type: Transform + pos: 8.5,173.5 + parent: 2 + - uid: 20695 + components: + - type: Transform + pos: -58.5,150.5 + parent: 2 + - uid: 20700 + components: + - type: Transform + pos: -57.5,150.5 + parent: 2 + - uid: 20702 + components: + - type: Transform + pos: 14.5,179.5 + parent: 2 + - uid: 20703 + components: + - type: Transform + pos: 15.5,179.5 + parent: 2 + - uid: 20704 + components: + - type: Transform + pos: 16.5,179.5 + parent: 2 + - uid: 20705 + components: + - type: Transform + pos: 16.5,178.5 + parent: 2 + - uid: 20706 + components: + - type: Transform + pos: 16.5,177.5 + parent: 2 + - uid: 20707 + components: + - type: Transform + pos: -55.5,150.5 + parent: 2 + - uid: 20708 + components: + - type: Transform + pos: 16.5,176.5 + parent: 2 + - uid: 20714 + components: + - type: Transform + pos: -53.5,150.5 + parent: 2 + - uid: 20715 + components: + - type: Transform + pos: -51.5,151.5 + parent: 2 + - uid: 20716 + components: + - type: Transform + pos: -50.5,151.5 + parent: 2 + - uid: 20717 + components: + - type: Transform + pos: -49.5,153.5 + parent: 2 + - uid: 20718 + components: + - type: Transform + pos: -51.5,153.5 + parent: 2 + - uid: 20719 + components: + - type: Transform + pos: -50.5,153.5 + parent: 2 + - uid: 20722 + components: + - type: Transform + pos: -51.5,157.5 + parent: 2 + - uid: 20724 + components: + - type: Transform + pos: -54.5,161.5 + parent: 2 + - uid: 20725 + components: + - type: Transform + pos: -50.5,157.5 + parent: 2 + - uid: 20726 + components: + - type: Transform + pos: -49.5,157.5 + parent: 2 + - uid: 20727 + components: + - type: Transform + pos: -55.5,161.5 + parent: 2 + - uid: 20729 + components: + - type: Transform + pos: -50.5,159.5 + parent: 2 + - uid: 20730 + components: + - type: Transform + pos: -84.5,173.5 + parent: 2 + - uid: 20732 + components: + - type: Transform + pos: -55.5,158.5 + parent: 2 + - uid: 20733 + components: + - type: Transform + pos: -55.5,157.5 + parent: 2 + - uid: 20734 + components: + - type: Transform + pos: -55.5,159.5 + parent: 2 + - uid: 20735 + components: + - type: Transform + pos: -55.5,160.5 + parent: 2 + - uid: 20736 + components: + - type: Transform + pos: -55.5,154.5 + parent: 2 + - uid: 20737 + components: + - type: Transform + pos: -55.5,155.5 + parent: 2 + - uid: 20738 + components: + - type: Transform + pos: -57.5,154.5 + parent: 2 + - uid: 20739 + components: + - type: Transform + pos: -56.5,154.5 + parent: 2 + - uid: 20740 + components: + - type: Transform + pos: -55.5,156.5 + parent: 2 + - uid: 20741 + components: + - type: Transform + pos: -58.5,154.5 + parent: 2 + - uid: 20742 + components: + - type: Transform + pos: -58.5,159.5 + parent: 2 + - uid: 20743 + components: + - type: Transform + pos: -58.5,155.5 + parent: 2 + - uid: 20744 + components: + - type: Transform + pos: -84.5,174.5 + parent: 2 + - uid: 20745 + components: + - type: Transform + pos: -58.5,160.5 + parent: 2 + - uid: 20746 + components: + - type: Transform + pos: -84.5,175.5 + parent: 2 + - uid: 20747 + components: + - type: Transform + pos: -84.5,176.5 + parent: 2 + - uid: 20748 + components: + - type: Transform + pos: -58.5,161.5 + parent: 2 + - uid: 20750 + components: + - type: Transform + pos: -58.5,162.5 + parent: 2 + - uid: 20751 + components: + - type: Transform + pos: -58.5,164.5 + parent: 2 + - uid: 20752 + components: + - type: Transform + pos: -58.5,163.5 + parent: 2 + - uid: 20753 + components: + - type: Transform + pos: -58.5,166.5 + parent: 2 + - uid: 20754 + components: + - type: Transform + pos: -58.5,165.5 + parent: 2 + - uid: 20755 + components: + - type: Transform + pos: -58.5,168.5 + parent: 2 + - uid: 20756 + components: + - type: Transform + pos: -58.5,167.5 + parent: 2 + - uid: 20758 + components: + - type: Transform + pos: -57.5,168.5 + parent: 2 + - uid: 20759 + components: + - type: Transform + pos: -55.5,168.5 + parent: 2 + - uid: 20761 + components: + - type: Transform + pos: -56.5,168.5 + parent: 2 + - uid: 20762 + components: + - type: Transform + pos: -54.5,168.5 + parent: 2 + - uid: 20765 + components: + - type: Transform + pos: -53.5,168.5 + parent: 2 + - uid: 20766 + components: + - type: Transform + pos: 16.5,175.5 + parent: 2 + - uid: 20767 + components: + - type: Transform + pos: -56.5,173.5 + parent: 2 + - uid: 20769 + components: + - type: Transform + pos: -56.5,170.5 + parent: 2 + - uid: 20772 + components: + - type: Transform + pos: -83.5,176.5 + parent: 2 + - uid: 20774 + components: + - type: Transform + pos: -129.5,41.5 + parent: 2 + - uid: 20775 + components: + - type: Transform + pos: -56.5,172.5 + parent: 2 + - uid: 20778 + components: + - type: Transform + pos: -57.5,175.5 + parent: 2 + - uid: 20781 + components: + - type: Transform + pos: -56.5,174.5 + parent: 2 + - uid: 20782 + components: + - type: Transform + pos: -56.5,175.5 + parent: 2 + - uid: 20783 + components: + - type: Transform + pos: -63.5,175.5 + parent: 2 + - uid: 20784 + components: + - type: Transform + pos: -65.5,175.5 + parent: 2 + - uid: 20785 + components: + - type: Transform + pos: -65.5,176.5 + parent: 2 + - uid: 20787 + components: + - type: Transform + pos: -65.5,179.5 + parent: 2 + - uid: 20792 + components: + - type: Transform + pos: 16.5,174.5 + parent: 2 + - uid: 20793 + components: + - type: Transform + pos: 16.5,173.5 + parent: 2 + - uid: 20795 + components: + - type: Transform + pos: 15.5,173.5 + parent: 2 + - uid: 20796 + components: + - type: Transform + pos: -82.5,176.5 + parent: 2 + - uid: 20800 + components: + - type: Transform + pos: -49.5,151.5 + parent: 2 + - uid: 20802 + components: + - type: Transform + pos: -66.5,150.5 + parent: 2 + - uid: 20803 + components: + - type: Transform + pos: -66.5,148.5 + parent: 2 + - uid: 20805 + components: + - type: Transform + pos: -65.5,150.5 + parent: 2 + - uid: 20806 + components: + - type: Transform + pos: -60.5,150.5 + parent: 2 + - uid: 20807 + components: + - type: Transform + pos: -98.5,154.5 + parent: 2 + - uid: 20808 + components: + - type: Transform + pos: -66.5,145.5 + parent: 2 + - uid: 20810 + components: + - type: Transform + pos: 9.5,77.5 + parent: 2 + - uid: 20811 + components: + - type: Transform + pos: -66.5,146.5 + parent: 2 + - uid: 20812 + components: + - type: Transform + pos: -67.5,143.5 + parent: 2 + - uid: 20813 + components: + - type: Transform + pos: -66.5,144.5 + parent: 2 + - uid: 20814 + components: + - type: Transform + pos: -67.5,144.5 + parent: 2 + - uid: 20816 + components: + - type: Transform + pos: -72.5,143.5 + parent: 2 + - uid: 20817 + components: + - type: Transform + pos: -73.5,143.5 + parent: 2 + - uid: 20820 + components: + - type: Transform + pos: -68.5,143.5 + parent: 2 + - uid: 20822 + components: + - type: Transform + pos: -75.5,143.5 + parent: 2 + - uid: 20823 + components: + - type: Transform + pos: -74.5,143.5 + parent: 2 + - uid: 20824 + components: + - type: Transform + pos: 9.5,74.5 + parent: 2 + - uid: 20825 + components: + - type: Transform + pos: -81.5,143.5 + parent: 2 + - uid: 20828 + components: + - type: Transform + pos: -78.5,143.5 + parent: 2 + - uid: 20832 + components: + - type: Transform + pos: -87.5,142.5 + parent: 2 + - uid: 20833 + components: + - type: Transform + pos: -83.5,139.5 + parent: 2 + - uid: 20835 + components: + - type: Transform + pos: -86.5,139.5 + parent: 2 + - uid: 20836 + components: + - type: Transform + pos: -85.5,139.5 + parent: 2 + - uid: 20837 + components: + - type: Transform + pos: -87.5,140.5 + parent: 2 + - uid: 20838 + components: + - type: Transform + pos: -87.5,139.5 + parent: 2 + - uid: 20839 + components: + - type: Transform + pos: -81.5,140.5 + parent: 2 + - uid: 20841 + components: + - type: Transform + pos: -81.5,176.5 + parent: 2 + - uid: 20860 + components: + - type: Transform + pos: -81.5,141.5 + parent: 2 + - uid: 20865 + components: + - type: Transform + pos: -81.5,142.5 + parent: 2 + - uid: 21047 + components: + - type: Transform + pos: -12.5,190.5 + parent: 2 + - uid: 21097 + components: + - type: Transform + pos: 2.5,162.5 + parent: 2 + - uid: 21179 + components: + - type: Transform + pos: -125.5,67.5 + parent: 2 + - uid: 21266 + components: + - type: Transform + pos: -76.5,113.5 + parent: 2 + - uid: 21267 + components: + - type: Transform + pos: -75.5,113.5 + parent: 2 + - uid: 21333 + components: + - type: Transform + pos: -43.5,70.5 + parent: 2 + - uid: 21345 + components: + - type: Transform + pos: -82.5,139.5 + parent: 2 + - uid: 21346 + components: + - type: Transform + pos: -81.5,139.5 + parent: 2 + - uid: 21351 + components: + - type: Transform + pos: -88.5,142.5 + parent: 2 + - uid: 21352 + components: + - type: Transform + pos: -131.5,53.5 + parent: 2 + - uid: 21427 + components: + - type: Transform + pos: -84.5,139.5 + parent: 2 + - uid: 21464 + components: + - type: Transform + pos: -103.5,144.5 + parent: 2 + - uid: 21553 + components: + - type: Transform + pos: -78.5,142.5 + parent: 2 + - uid: 21610 + components: + - type: Transform + pos: -78.5,141.5 + parent: 2 + - uid: 21621 + components: + - type: Transform + pos: -73.5,33.5 + parent: 2 + - uid: 21827 + components: + - type: Transform + pos: -77.5,176.5 + parent: 2 + - uid: 22078 + components: + - type: Transform + pos: -23.5,169.5 + parent: 2 + - uid: 22211 + components: + - type: Transform + pos: -81.5,44.5 + parent: 2 + - uid: 22212 + components: + - type: Transform + pos: -81.5,38.5 + parent: 2 + - uid: 22224 + components: + - type: Transform + pos: -76.5,176.5 + parent: 2 + - uid: 22245 + components: + - type: Transform + pos: -127.5,63.5 + parent: 2 + - uid: 22251 + components: + - type: Transform + pos: -122.5,61.5 + parent: 2 + - uid: 22327 + components: + - type: Transform + pos: 17.5,204.5 + parent: 2 + - uid: 22328 + components: + - type: Transform + pos: 18.5,206.5 + parent: 2 + - uid: 22388 + components: + - type: Transform + pos: -102.5,14.5 + parent: 2 + - uid: 22410 + components: + - type: Transform + pos: -131.5,45.5 + parent: 2 + - uid: 22460 + components: + - type: Transform + pos: 2.5,163.5 + parent: 2 + - uid: 22510 + components: + - type: Transform + pos: -75.5,176.5 + parent: 2 + - uid: 22573 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 22578 + components: + - type: Transform + pos: -40.5,111.5 + parent: 2 + - uid: 22585 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 2 + - uid: 22594 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 2 + - uid: 22616 + components: + - type: Transform + pos: -34.5,199.5 + parent: 2 + - uid: 22618 + components: + - type: Transform + pos: 11.5,173.5 + parent: 2 + - uid: 22633 + components: + - type: Transform + pos: 9.5,173.5 + parent: 2 + - uid: 22635 + components: + - type: Transform + pos: -84.5,184.5 + parent: 2 + - uid: 22720 + components: + - type: Transform + pos: -74.5,164.5 + parent: 2 + - uid: 22736 + components: + - type: Transform + pos: -74.5,162.5 + parent: 2 + - uid: 22791 + components: + - type: Transform + pos: -7.5,163.5 + parent: 2 + - uid: 22883 + components: + - type: Transform + pos: -47.5,107.5 + parent: 2 + - uid: 22956 + components: + - type: Transform + pos: -131.5,50.5 + parent: 2 + - uid: 22983 + components: + - type: Transform + pos: -16.5,213.5 + parent: 2 + - uid: 23007 + components: + - type: Transform + pos: -16.5,212.5 + parent: 2 + - uid: 23018 + components: + - type: Transform + pos: -17.5,212.5 + parent: 2 + - uid: 23026 + components: + - type: Transform + pos: -108.5,37.5 + parent: 2 + - uid: 23042 + components: + - type: Transform + pos: -130.5,53.5 + parent: 2 + - uid: 23047 + components: + - type: Transform + pos: -18.5,211.5 + parent: 2 + - uid: 23049 + components: + - type: Transform + pos: -19.5,211.5 + parent: 2 + - uid: 23076 + components: + - type: Transform + pos: -25.5,172.5 + parent: 2 + - uid: 23108 + components: + - type: Transform + pos: -23.5,172.5 + parent: 2 + - uid: 23118 + components: + - type: Transform + pos: -127.5,106.5 + parent: 2 + - uid: 23119 + components: + - type: Transform + pos: -31.5,187.5 + parent: 2 + - uid: 23120 + components: + - type: Transform + pos: -31.5,188.5 + parent: 2 + - uid: 23121 + components: + - type: Transform + pos: -31.5,189.5 + parent: 2 + - uid: 23122 + components: + - type: Transform + pos: 17.5,206.5 + parent: 2 + - uid: 23123 + components: + - type: Transform + pos: 15.5,204.5 + parent: 2 + - uid: 23126 + components: + - type: Transform + pos: -74.5,184.5 + parent: 2 + - uid: 23136 + components: + - type: Transform + pos: -24.5,172.5 + parent: 2 + - uid: 23137 + components: + - type: Transform + pos: -74.5,183.5 + parent: 2 + - uid: 23141 + components: + - type: Transform + pos: -31.5,208.5 + parent: 2 + - uid: 23143 + components: + - type: Transform + pos: -67.5,160.5 + parent: 2 + - uid: 23145 + components: + - type: Transform + pos: -66.5,160.5 + parent: 2 + - uid: 23154 + components: + - type: Transform + pos: -129.5,91.5 + parent: 2 + - uid: 23217 + components: + - type: Transform + pos: -18.5,212.5 + parent: 2 + - uid: 23430 + components: + - type: Transform + pos: -65.5,160.5 + parent: 2 + - uid: 23433 + components: + - type: Transform + pos: -20.5,210.5 + parent: 2 + - uid: 23434 + components: + - type: Transform + pos: -21.5,210.5 + parent: 2 + - uid: 23435 + components: + - type: Transform + pos: -20.5,211.5 + parent: 2 + - uid: 23436 + components: + - type: Transform + pos: -34.5,201.5 + parent: 2 + - uid: 23437 + components: + - type: Transform + pos: -34.5,198.5 + parent: 2 + - uid: 23438 + components: + - type: Transform + pos: -34.5,200.5 + parent: 2 + - uid: 23439 + components: + - type: Transform + pos: -64.5,160.5 + parent: 2 + - uid: 23440 + components: + - type: Transform + pos: -34.5,202.5 + parent: 2 + - uid: 23442 + components: + - type: Transform + pos: -25.5,210.5 + parent: 2 + - uid: 23450 + components: + - type: Transform + pos: -104.5,14.5 + parent: 2 + - uid: 23467 + components: + - type: Transform + pos: -113.5,15.5 + parent: 2 + - uid: 23472 + components: + - type: Transform + pos: -2.5,212.5 + parent: 2 + - uid: 23484 + components: + - type: Transform + pos: -15.5,213.5 + parent: 2 + - uid: 23485 + components: + - type: Transform + pos: -14.5,213.5 + parent: 2 + - uid: 23486 + components: + - type: Transform + pos: -13.5,213.5 + parent: 2 + - uid: 23487 + components: + - type: Transform + pos: -13.5,214.5 + parent: 2 + - uid: 23488 + components: + - type: Transform + pos: -12.5,214.5 + parent: 2 + - uid: 23489 + components: + - type: Transform + pos: -25.5,173.5 + parent: 2 + - uid: 23491 + components: + - type: Transform + pos: -65.5,-3.5 + parent: 2 + - uid: 23492 + components: + - type: Transform + pos: 3.5,211.5 + parent: 2 + - uid: 23498 + components: + - type: Transform + pos: -67.5,-3.5 + parent: 2 + - uid: 23499 + components: + - type: Transform + pos: 8.5,206.5 + parent: 2 + - uid: 23500 + components: + - type: Transform + pos: 7.5,206.5 + parent: 2 + - uid: 23501 + components: + - type: Transform + pos: 8.5,205.5 + parent: 2 + - uid: 23505 + components: + - type: Transform + pos: 9.5,205.5 + parent: 2 + - uid: 23537 + components: + - type: Transform + pos: -132.5,37.5 + parent: 2 + - uid: 23726 + components: + - type: Transform + pos: 4.5,170.5 + parent: 2 + - uid: 23727 + components: + - type: Transform + pos: 5.5,170.5 + parent: 2 + - uid: 23728 + components: + - type: Transform + pos: 6.5,170.5 + parent: 2 + - uid: 23729 + components: + - type: Transform + pos: 7.5,170.5 + parent: 2 + - uid: 23730 + components: + - type: Transform + pos: 8.5,170.5 + parent: 2 + - uid: 23731 + components: + - type: Transform + pos: 9.5,170.5 + parent: 2 + - uid: 23736 + components: + - type: Transform + pos: 4.5,169.5 + parent: 2 + - uid: 23737 + components: + - type: Transform + pos: 4.5,168.5 + parent: 2 + - uid: 23739 + components: + - type: Transform + pos: -125.5,62.5 + parent: 2 + - uid: 23758 + components: + - type: Transform + pos: 15.5,170.5 + parent: 2 + - uid: 23759 + components: + - type: Transform + pos: 17.5,170.5 + parent: 2 + - uid: 23760 + components: + - type: Transform + pos: 16.5,170.5 + parent: 2 + - uid: 23761 + components: + - type: Transform + pos: 18.5,170.5 + parent: 2 + - uid: 23764 + components: + - type: Transform + pos: 19.5,170.5 + parent: 2 + - uid: 23765 + components: + - type: Transform + pos: 19.5,171.5 + parent: 2 + - uid: 23767 + components: + - type: Transform + pos: 19.5,173.5 + parent: 2 + - uid: 23768 + components: + - type: Transform + pos: 19.5,174.5 + parent: 2 + - uid: 23771 + components: + - type: Transform + pos: -63.5,160.5 + parent: 2 + - uid: 23772 + components: + - type: Transform + pos: -62.5,160.5 + parent: 2 + - uid: 23784 + components: + - type: Transform + pos: 24.5,181.5 + parent: 2 + - uid: 23788 + components: + - type: Transform + pos: 24.5,177.5 + parent: 2 + - uid: 23790 + components: + - type: Transform + pos: 24.5,175.5 + parent: 2 + - uid: 23791 + components: + - type: Transform + pos: 24.5,174.5 + parent: 2 + - uid: 23792 + components: + - type: Transform + pos: 23.5,174.5 + parent: 2 + - uid: 23793 + components: + - type: Transform + pos: 22.5,174.5 + parent: 2 + - uid: 23794 + components: + - type: Transform + pos: 21.5,174.5 + parent: 2 + - uid: 23795 + components: + - type: Transform + pos: 20.5,174.5 + parent: 2 + - uid: 23796 + components: + - type: Transform + pos: 23.5,184.5 + parent: 2 + - uid: 23797 + components: + - type: Transform + pos: 24.5,185.5 + parent: 2 + - uid: 23799 + components: + - type: Transform + pos: 24.5,184.5 + parent: 2 + - uid: 23800 + components: + - type: Transform + pos: 25.5,185.5 + parent: 2 + - uid: 23801 + components: + - type: Transform + pos: 25.5,186.5 + parent: 2 + - uid: 23802 + components: + - type: Transform + pos: 25.5,187.5 + parent: 2 + - uid: 23803 + components: + - type: Transform + pos: 25.5,188.5 + parent: 2 + - uid: 23804 + components: + - type: Transform + pos: 25.5,189.5 + parent: 2 + - uid: 23805 + components: + - type: Transform + pos: 25.5,190.5 + parent: 2 + - uid: 23807 + components: + - type: Transform + pos: 25.5,192.5 + parent: 2 + - uid: 23808 + components: + - type: Transform + pos: 25.5,193.5 + parent: 2 + - uid: 23809 + components: + - type: Transform + pos: 25.5,194.5 + parent: 2 + - uid: 23810 + components: + - type: Transform + pos: 25.5,195.5 + parent: 2 + - uid: 23811 + components: + - type: Transform + pos: 25.5,196.5 + parent: 2 + - uid: 23812 + components: + - type: Transform + pos: 25.5,197.5 + parent: 2 + - uid: 23814 + components: + - type: Transform + pos: 22.5,203.5 + parent: 2 + - uid: 23815 + components: + - type: Transform + pos: 21.5,203.5 + parent: 2 + - uid: 23816 + components: + - type: Transform + pos: 24.5,203.5 + parent: 2 + - uid: 23817 + components: + - type: Transform + pos: 23.5,203.5 + parent: 2 + - uid: 23818 + components: + - type: Transform + pos: 25.5,202.5 + parent: 2 + - uid: 23819 + components: + - type: Transform + pos: 25.5,203.5 + parent: 2 + - uid: 23820 + components: + - type: Transform + pos: 25.5,200.5 + parent: 2 + - uid: 23821 + components: + - type: Transform + pos: 25.5,201.5 + parent: 2 + - uid: 23823 + components: + - type: Transform + pos: 20.5,203.5 + parent: 2 + - uid: 23824 + components: + - type: Transform + pos: 19.5,203.5 + parent: 2 + - uid: 23825 + components: + - type: Transform + pos: 18.5,203.5 + parent: 2 + - uid: 23826 + components: + - type: Transform + pos: 18.5,204.5 + parent: 2 + - uid: 23832 + components: + - type: Transform + pos: -61.5,160.5 + parent: 2 + - uid: 23833 + components: + - type: Transform + pos: 10.5,204.5 + parent: 2 + - uid: 23834 + components: + - type: Transform + pos: -61.5,154.5 + parent: 2 + - uid: 23835 + components: + - type: Transform + pos: 9.5,204.5 + parent: 2 + - uid: 23837 + components: + - type: Transform + pos: 25.5,199.5 + parent: 2 + - uid: 23838 + components: + - type: Transform + pos: 25.5,198.5 + parent: 2 + - uid: 23841 + components: + - type: Transform + pos: 7.5,207.5 + parent: 2 + - uid: 23850 + components: + - type: Transform + pos: -2.5,213.5 + parent: 2 + - uid: 23851 + components: + - type: Transform + pos: -2.5,214.5 + parent: 2 + - uid: 23852 + components: + - type: Transform + pos: -3.5,214.5 + parent: 2 + - uid: 23853 + components: + - type: Transform + pos: -62.5,154.5 + parent: 2 + - uid: 23856 + components: + - type: Transform + pos: -23.5,168.5 + parent: 2 + - uid: 23889 + components: + - type: Transform + pos: -34.5,203.5 + parent: 2 + - uid: 23890 + components: + - type: Transform + pos: -34.5,204.5 + parent: 2 + - uid: 23891 + components: + - type: Transform + pos: -34.5,205.5 + parent: 2 + - uid: 23892 + components: + - type: Transform + pos: -33.5,207.5 + parent: 2 + - uid: 23893 + components: + - type: Transform + pos: -63.5,154.5 + parent: 2 + - uid: 23894 + components: + - type: Transform + pos: -34.5,207.5 + parent: 2 + - uid: 23895 + components: + - type: Transform + pos: -64.5,154.5 + parent: 2 + - uid: 23896 + components: + - type: Transform + pos: -34.5,206.5 + parent: 2 + - uid: 23897 + components: + - type: Transform + pos: -31.5,207.5 + parent: 2 + - uid: 23898 + components: + - type: Transform + pos: -31.5,210.5 + parent: 2 + - uid: 23899 + components: + - type: Transform + pos: -32.5,207.5 + parent: 2 + - uid: 23900 + components: + - type: Transform + pos: -30.5,210.5 + parent: 2 + - uid: 23901 + components: + - type: Transform + pos: -30.5,211.5 + parent: 2 + - uid: 23902 + components: + - type: Transform + pos: -30.5,212.5 + parent: 2 + - uid: 23903 + components: + - type: Transform + pos: -28.5,212.5 + parent: 2 + - uid: 23904 + components: + - type: Transform + pos: -28.5,211.5 + parent: 2 + - uid: 23905 + components: + - type: Transform + pos: -28.5,210.5 + parent: 2 + - uid: 23906 + components: + - type: Transform + pos: -26.5,212.5 + parent: 2 + - uid: 23907 + components: + - type: Transform + pos: -26.5,211.5 + parent: 2 + - uid: 23908 + components: + - type: Transform + pos: -26.5,210.5 + parent: 2 + - uid: 23910 + components: + - type: Transform + pos: -65.5,154.5 + parent: 2 + - uid: 23911 + components: + - type: Transform + pos: -66.5,154.5 + parent: 2 + - uid: 23912 + components: + - type: Transform + pos: -67.5,154.5 + parent: 2 + - uid: 23913 + components: + - type: Transform + pos: -61.5,155.5 + parent: 2 + - uid: 23914 + components: + - type: Transform + pos: -61.5,156.5 + parent: 2 + - uid: 23915 + components: + - type: Transform + pos: -61.5,157.5 + parent: 2 + - uid: 23937 + components: + - type: Transform + pos: -131.5,42.5 + parent: 2 + - uid: 23939 + components: + - type: Transform + pos: -131.5,51.5 + parent: 2 + - uid: 24052 + components: + - type: Transform + pos: 7.5,208.5 + parent: 2 + - uid: 24053 + components: + - type: Transform + pos: 4.5,211.5 + parent: 2 + - uid: 24109 + components: + - type: Transform + pos: -61.5,158.5 + parent: 2 + - uid: 24110 + components: + - type: Transform + pos: -61.5,159.5 + parent: 2 + - uid: 24450 + components: + - type: Transform + pos: -64.5,-3.5 + parent: 2 + - uid: 24739 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 24753 + components: + - type: Transform + pos: -0.5,212.5 + parent: 2 + - uid: 24754 + components: + - type: Transform + pos: -1.5,212.5 + parent: 2 + - uid: 25034 + components: + - type: Transform + pos: -99.5,56.5 + parent: 2 + - uid: 25049 + components: + - type: Transform + pos: -23.5,164.5 + parent: 2 + - uid: 25055 + components: + - type: Transform + pos: -99.5,72.5 + parent: 2 + - uid: 25066 + components: + - type: Transform + pos: -6.5,164.5 + parent: 2 + - uid: 25067 + components: + - type: Transform + pos: -5.5,164.5 + parent: 2 + - uid: 25068 + components: + - type: Transform + pos: -4.5,164.5 + parent: 2 + - uid: 25069 + components: + - type: Transform + pos: -3.5,164.5 + parent: 2 + - uid: 25070 + components: + - type: Transform + pos: -2.5,164.5 + parent: 2 + - uid: 25071 + components: + - type: Transform + pos: -1.5,164.5 + parent: 2 + - uid: 25072 + components: + - type: Transform + pos: 5.5,165.5 + parent: 2 + - uid: 25073 + components: + - type: Transform + pos: 0.5,164.5 + parent: 2 + - uid: 25074 + components: + - type: Transform + pos: 6.5,165.5 + parent: 2 + - uid: 25075 + components: + - type: Transform + pos: 2.5,164.5 + parent: 2 + - uid: 25076 + components: + - type: Transform + pos: 3.5,164.5 + parent: 2 + - uid: 25077 + components: + - type: Transform + pos: 4.5,164.5 + parent: 2 + - uid: 25078 + components: + - type: Transform + pos: 4.5,165.5 + parent: 2 + - uid: 25079 + components: + - type: Transform + pos: 4.5,167.5 + parent: 2 + - uid: 25080 + components: + - type: Transform + pos: -23.5,167.5 + parent: 2 + - uid: 25081 + components: + - type: Transform + pos: -23.5,165.5 + parent: 2 + - uid: 25082 + components: + - type: Transform + pos: 2.5,161.5 + parent: 2 + - uid: 25085 + components: + - type: Transform + pos: 0.5,161.5 + parent: 2 + - uid: 25086 + components: + - type: Transform + pos: 0.5,162.5 + parent: 2 + - uid: 25087 + components: + - type: Transform + pos: 0.5,163.5 + parent: 2 + - uid: 25089 + components: + - type: Transform + pos: -1.5,161.5 + parent: 2 + - uid: 25090 + components: + - type: Transform + pos: -1.5,162.5 + parent: 2 + - uid: 25091 + components: + - type: Transform + pos: -1.5,163.5 + parent: 2 + - uid: 25092 + components: + - type: Transform + pos: 6.5,167.5 + parent: 2 + - uid: 25093 + components: + - type: Transform + pos: 5.5,167.5 + parent: 2 + - uid: 25102 + components: + - type: Transform + pos: 7.5,165.5 + parent: 2 + - uid: 25103 + components: + - type: Transform + pos: 7.5,167.5 + parent: 2 + - uid: 25105 + components: + - type: Transform + pos: -34.5,80.5 + parent: 2 + - uid: 25106 + components: + - type: Transform + pos: -21.5,161.5 + parent: 2 + - uid: 25107 + components: + - type: Transform + pos: -33.5,80.5 + parent: 2 + - uid: 25109 + components: + - type: Transform + pos: -32.5,80.5 + parent: 2 + - uid: 25116 + components: + - type: Transform + pos: -31.5,80.5 + parent: 2 + - uid: 25120 + components: + - type: Transform + pos: -21.5,162.5 + parent: 2 + - uid: 25121 + components: + - type: Transform + pos: -21.5,163.5 + parent: 2 + - uid: 25122 + components: + - type: Transform + pos: -19.5,161.5 + parent: 2 + - uid: 25123 + components: + - type: Transform + pos: -19.5,162.5 + parent: 2 + - uid: 25124 + components: + - type: Transform + pos: -19.5,163.5 + parent: 2 + - uid: 25125 + components: + - type: Transform + pos: -17.5,161.5 + parent: 2 + - uid: 25126 + components: + - type: Transform + pos: -17.5,162.5 + parent: 2 + - uid: 25127 + components: + - type: Transform + pos: -17.5,163.5 + parent: 2 + - uid: 25129 + components: + - type: Transform + pos: -24.5,165.5 + parent: 2 + - uid: 25130 + components: + - type: Transform + pos: -25.5,165.5 + parent: 2 + - uid: 25131 + components: + - type: Transform + pos: -26.5,165.5 + parent: 2 + - uid: 25132 + components: + - type: Transform + pos: -26.5,167.5 + parent: 2 + - uid: 25133 + components: + - type: Transform + pos: -25.5,167.5 + parent: 2 + - uid: 25134 + components: + - type: Transform + pos: -24.5,167.5 + parent: 2 + - uid: 25141 + components: + - type: Transform + pos: -130.5,88.5 + parent: 2 + - uid: 25146 + components: + - type: Transform + pos: -128.5,86.5 + parent: 2 + - uid: 25149 + components: + - type: Transform + pos: -129.5,86.5 + parent: 2 + - uid: 25151 + components: + - type: Transform + pos: -130.5,86.5 + parent: 2 + - uid: 25156 + components: + - type: Transform + pos: -127.5,86.5 + parent: 2 + - uid: 25157 + components: + - type: Transform + pos: -126.5,86.5 + parent: 2 + - uid: 25158 + components: + - type: Transform + pos: -125.5,86.5 + parent: 2 + - uid: 25159 + components: + - type: Transform + pos: -124.5,86.5 + parent: 2 + - uid: 25163 + components: + - type: Transform + pos: -130.5,89.5 + parent: 2 + - uid: 25189 + components: + - type: Transform + pos: -125.5,56.5 + parent: 2 + - uid: 25195 + components: + - type: Transform + pos: -119.5,61.5 + parent: 2 + - uid: 25204 + components: + - type: Transform + pos: -129.5,103.5 + parent: 2 + - uid: 25228 + components: + - type: Transform + pos: -32.5,185.5 + parent: 2 + - uid: 25229 + components: + - type: Transform + pos: -32.5,186.5 + parent: 2 + - uid: 25230 + components: + - type: Transform + pos: -32.5,184.5 + parent: 2 + - uid: 25232 + components: + - type: Transform + pos: -32.5,183.5 + parent: 2 + - uid: 25249 + components: + - type: Transform + pos: -127.5,105.5 + parent: 2 + - uid: 25291 + components: + - type: Transform + pos: -30.5,80.5 + parent: 2 + - uid: 25295 + components: + - type: Transform + pos: -128.5,57.5 + parent: 2 + - uid: 25298 + components: + - type: Transform + pos: -129.5,55.5 + parent: 2 + - uid: 25331 + components: + - type: Transform + pos: -120.5,109.5 + parent: 2 + - uid: 25391 + components: + - type: Transform + pos: 18.5,205.5 + parent: 2 + - uid: 25405 + components: + - type: Transform + pos: -29.5,80.5 + parent: 2 + - uid: 25406 + components: + - type: Transform + pos: -28.5,80.5 + parent: 2 + - uid: 25407 + components: + - type: Transform + pos: -28.5,79.5 + parent: 2 + - uid: 25409 + components: + - type: Transform + pos: -28.5,77.5 + parent: 2 + - uid: 25410 + components: + - type: Transform + pos: -28.5,76.5 + parent: 2 + - uid: 25411 + components: + - type: Transform + pos: -28.5,75.5 + parent: 2 + - uid: 25412 + components: + - type: Transform + pos: -28.5,74.5 + parent: 2 + - uid: 25413 + components: + - type: Transform + pos: -29.5,74.5 + parent: 2 + - uid: 25414 + components: + - type: Transform + pos: -30.5,74.5 + parent: 2 + - uid: 25441 + components: + - type: Transform + pos: -133.5,37.5 + parent: 2 + - uid: 25481 + components: + - type: Transform + pos: -74.5,176.5 + parent: 2 + - uid: 25482 + components: + - type: Transform + pos: -74.5,175.5 + parent: 2 + - uid: 25697 + components: + - type: Transform + pos: -31.5,74.5 + parent: 2 + - uid: 25698 + components: + - type: Transform + pos: -32.5,74.5 + parent: 2 + - uid: 25716 + components: + - type: Transform + pos: -119.5,109.5 + parent: 2 + - uid: 25722 + components: + - type: Transform + pos: -121.5,109.5 + parent: 2 + - uid: 25727 + components: + - type: Transform + pos: -122.5,109.5 + parent: 2 + - uid: 25733 + components: + - type: Transform + pos: -117.5,105.5 + parent: 2 + - uid: 25734 + components: + - type: Transform + pos: -117.5,106.5 + parent: 2 + - uid: 25736 + components: + - type: Transform + pos: -117.5,109.5 + parent: 2 + - uid: 25737 + components: + - type: Transform + pos: -117.5,108.5 + parent: 2 + - uid: 25738 + components: + - type: Transform + pos: -118.5,109.5 + parent: 2 + - uid: 25749 + components: + - type: Transform + pos: -129.5,93.5 + parent: 2 + - uid: 25773 + components: + - type: Transform + pos: -95.5,32.5 + parent: 2 + - uid: 25774 + components: + - type: Transform + pos: -94.5,32.5 + parent: 2 + - uid: 25776 + components: + - type: Transform + pos: -93.5,32.5 + parent: 2 + - uid: 25780 + components: + - type: Transform + pos: -92.5,32.5 + parent: 2 + - uid: 25808 + components: + - type: Transform + pos: -96.5,32.5 + parent: 2 + - uid: 25818 + components: + - type: Transform + pos: -38.5,77.5 + parent: 2 + - uid: 25825 + components: + - type: Transform + pos: -23.5,170.5 + parent: 2 + - uid: 26164 + components: + - type: Transform + pos: 76.5,32.5 + parent: 2 + - uid: 26165 + components: + - type: Transform + pos: 74.5,32.5 + parent: 2 + - uid: 26166 + components: + - type: Transform + pos: 75.5,32.5 + parent: 2 + - uid: 26168 + components: + - type: Transform + pos: -35.5,193.5 + parent: 2 + - uid: 26169 + components: + - type: Transform + pos: -31.5,190.5 + parent: 2 + - uid: 26170 + components: + - type: Transform + pos: -32.5,190.5 + parent: 2 + - uid: 26174 + components: + - type: Transform + pos: -33.5,190.5 + parent: 2 + - uid: 26187 + components: + - type: Transform + pos: -34.5,190.5 + parent: 2 + - uid: 26188 + components: + - type: Transform + pos: -35.5,190.5 + parent: 2 + - uid: 26189 + components: + - type: Transform + pos: -35.5,191.5 + parent: 2 + - uid: 26190 + components: + - type: Transform + pos: -67.5,150.5 + parent: 2 + - uid: 26267 + components: + - type: Transform + pos: 82.5,32.5 + parent: 2 + - uid: 26328 + components: + - type: Transform + pos: -33.5,74.5 + parent: 2 + - uid: 26368 + components: + - type: Transform + pos: -32.5,181.5 + parent: 2 + - uid: 26370 + components: + - type: Transform + pos: -34.5,74.5 + parent: 2 + - uid: 26371 + components: + - type: Transform + pos: -33.5,181.5 + parent: 2 + - uid: 26373 + components: + - type: Transform + pos: -45.5,174.5 + parent: 2 + - uid: 26377 + components: + - type: Transform + pos: 79.5,32.5 + parent: 2 + - uid: 26383 + components: + - type: Transform + pos: 81.5,32.5 + parent: 2 + - uid: 26430 + components: + - type: Transform + pos: -34.5,82.5 + parent: 2 + - uid: 26463 + components: + - type: Transform + pos: -102.5,59.5 + parent: 2 + - uid: 26573 + components: + - type: Transform + pos: -74.5,174.5 + parent: 2 + - uid: 26582 + components: + - type: Transform + pos: 79.5,53.5 + parent: 2 + - uid: 26602 + components: + - type: Transform + pos: -79.5,139.5 + parent: 2 + - uid: 26604 + components: + - type: Transform + pos: -74.5,173.5 + parent: 2 + - uid: 26607 + components: + - type: Transform + pos: -74.5,177.5 + parent: 2 + - uid: 26608 + components: + - type: Transform + pos: -74.5,178.5 + parent: 2 + - uid: 26609 + components: + - type: Transform + pos: 81.5,53.5 + parent: 2 + - uid: 26783 + components: + - type: Transform + pos: -25.5,174.5 + parent: 2 + - uid: 26786 + components: + - type: Transform + pos: -25.5,176.5 + parent: 2 + - uid: 26799 + components: + - type: Transform + pos: -68.5,150.5 + parent: 2 + - uid: 26821 + components: + - type: Transform + pos: 15.5,205.5 + parent: 2 + - uid: 26824 + components: + - type: Transform + pos: 15.5,206.5 + parent: 2 + - uid: 26826 + components: + - type: Transform + pos: -127.5,107.5 + parent: 2 + - uid: 26836 + components: + - type: Transform + pos: -10.5,163.5 + parent: 2 + - uid: 26845 + components: + - type: Transform + pos: -2.5,58.5 + parent: 2 + - uid: 26848 + components: + - type: Transform + pos: -33.5,82.5 + parent: 2 + - uid: 26849 + components: + - type: Transform + pos: -32.5,82.5 + parent: 2 + - uid: 26851 + components: + - type: Transform + pos: -69.5,150.5 + parent: 2 + - uid: 26852 + components: + - type: Transform + pos: -70.5,150.5 + parent: 2 + - uid: 26853 + components: + - type: Transform + pos: -71.5,150.5 + parent: 2 + - uid: 26854 + components: + - type: Transform + pos: -73.5,150.5 + parent: 2 + - uid: 26869 + components: + - type: Transform + pos: -31.5,82.5 + parent: 2 + - uid: 27075 + components: + - type: Transform + pos: 2.5,66.5 + parent: 2 + - uid: 27133 + components: + - type: Transform + pos: -98.5,58.5 + parent: 2 + - uid: 27141 + components: + - type: Transform + pos: -122.5,56.5 + parent: 2 + - uid: 27142 + components: + - type: Transform + pos: -127.5,58.5 + parent: 2 + - uid: 27143 + components: + - type: Transform + pos: -120.5,56.5 + parent: 2 + - uid: 27144 + components: + - type: Transform + pos: -119.5,56.5 + parent: 2 + - uid: 27152 + components: + - type: Transform + pos: -113.5,54.5 + parent: 2 + - uid: 27153 + components: + - type: Transform + pos: -113.5,53.5 + parent: 2 + - uid: 27154 + components: + - type: Transform + pos: -119.5,55.5 + parent: 2 + - uid: 27155 + components: + - type: Transform + pos: -119.5,54.5 + parent: 2 + - uid: 27159 + components: + - type: Transform + pos: -122.5,52.5 + parent: 2 + - uid: 27160 + components: + - type: Transform + pos: -122.5,51.5 + parent: 2 + - uid: 27161 + components: + - type: Transform + pos: -121.5,51.5 + parent: 2 + - uid: 27162 + components: + - type: Transform + pos: -119.5,51.5 + parent: 2 + - uid: 27163 + components: + - type: Transform + pos: -120.5,51.5 + parent: 2 + - uid: 27164 + components: + - type: Transform + pos: -119.5,52.5 + parent: 2 + - uid: 27165 + components: + - type: Transform + pos: -118.5,52.5 + parent: 2 + - uid: 27166 + components: + - type: Transform + pos: -114.5,52.5 + parent: 2 + - uid: 27167 + components: + - type: Transform + pos: -113.5,52.5 + parent: 2 + - uid: 27168 + components: + - type: Transform + pos: -113.5,51.5 + parent: 2 + - uid: 27169 + components: + - type: Transform + pos: -112.5,51.5 + parent: 2 + - uid: 27170 + components: + - type: Transform + pos: -112.5,50.5 + parent: 2 + - uid: 27171 + components: + - type: Transform + pos: -111.5,50.5 + parent: 2 + - uid: 27172 + components: + - type: Transform + pos: -111.5,49.5 + parent: 2 + - uid: 27173 + components: + - type: Transform + pos: -111.5,48.5 + parent: 2 + - uid: 27174 + components: + - type: Transform + pos: -120.5,50.5 + parent: 2 + - uid: 27175 + components: + - type: Transform + pos: -121.5,50.5 + parent: 2 + - uid: 27176 + components: + - type: Transform + pos: -121.5,49.5 + parent: 2 + - uid: 27177 + components: + - type: Transform + pos: -121.5,48.5 + parent: 2 + - uid: 27178 + components: + - type: Transform + pos: -121.5,46.5 + parent: 2 + - uid: 27181 + components: + - type: Transform + pos: -96.5,56.5 + parent: 2 + - uid: 27188 + components: + - type: Transform + pos: -134.5,35.5 + parent: 2 + - uid: 27258 + components: + - type: Transform + pos: -121.5,45.5 + parent: 2 + - uid: 27259 + components: + - type: Transform + pos: -121.5,44.5 + parent: 2 + - uid: 27260 + components: + - type: Transform + pos: -121.5,43.5 + parent: 2 + - uid: 27261 + components: + - type: Transform + pos: -121.5,42.5 + parent: 2 + - uid: 27262 + components: + - type: Transform + pos: -121.5,41.5 + parent: 2 + - uid: 27263 + components: + - type: Transform + pos: -120.5,41.5 + parent: 2 + - uid: 27264 + components: + - type: Transform + pos: -120.5,40.5 + parent: 2 + - uid: 27265 + components: + - type: Transform + pos: -119.5,40.5 + parent: 2 + - uid: 27266 + components: + - type: Transform + pos: -119.5,39.5 + parent: 2 + - uid: 27267 + components: + - type: Transform + pos: -118.5,39.5 + parent: 2 + - uid: 27268 + components: + - type: Transform + pos: -117.5,39.5 + parent: 2 + - uid: 27269 + components: + - type: Transform + pos: -115.5,39.5 + parent: 2 + - uid: 27270 + components: + - type: Transform + pos: -114.5,39.5 + parent: 2 + - uid: 27271 + components: + - type: Transform + pos: -113.5,39.5 + parent: 2 + - uid: 27272 + components: + - type: Transform + pos: -113.5,40.5 + parent: 2 + - uid: 27273 + components: + - type: Transform + pos: -112.5,40.5 + parent: 2 + - uid: 27274 + components: + - type: Transform + pos: -112.5,41.5 + parent: 2 + - uid: 27275 + components: + - type: Transform + pos: -111.5,41.5 + parent: 2 + - uid: 27276 + components: + - type: Transform + pos: -111.5,42.5 + parent: 2 + - uid: 27277 + components: + - type: Transform + pos: -111.5,43.5 + parent: 2 + - uid: 27278 + components: + - type: Transform + pos: -111.5,44.5 + parent: 2 + - uid: 27279 + components: + - type: Transform + pos: -111.5,45.5 + parent: 2 + - uid: 27310 + components: + - type: Transform + pos: -129.5,57.5 + parent: 2 + - uid: 27342 + components: + - type: Transform + pos: 80.5,53.5 + parent: 2 + - uid: 27376 + components: + - type: Transform + pos: 98.5,55.5 + parent: 2 + - uid: 27379 + components: + - type: Transform + pos: 81.5,37.5 + parent: 2 + - uid: 27471 + components: + - type: Transform + pos: -135.5,36.5 + parent: 2 + - uid: 27472 + components: + - type: Transform + pos: -75.5,35.5 + parent: 2 + - uid: 27473 + components: + - type: Transform + pos: -74.5,33.5 + parent: 2 + - uid: 27475 + components: + - type: Transform + pos: -73.5,35.5 + parent: 2 + - uid: 27476 + components: + - type: Transform + pos: -74.5,179.5 + parent: 2 + - uid: 27479 + components: + - type: Transform + pos: -77.5,35.5 + parent: 2 + - uid: 27480 + components: + - type: Transform + pos: -76.5,33.5 + parent: 2 + - uid: 27482 + components: + - type: Transform + pos: -74.5,35.5 + parent: 2 + - uid: 27483 + components: + - type: Transform + pos: -74.5,180.5 + parent: 2 + - uid: 27484 + components: + - type: Transform + pos: -74.5,181.5 + parent: 2 + - uid: 27485 + components: + - type: Transform + pos: -103.5,14.5 + parent: 2 + - uid: 27489 + components: + - type: Transform + pos: -77.5,33.5 + parent: 2 + - uid: 27490 + components: + - type: Transform + pos: -90.5,36.5 + parent: 2 + - uid: 27492 + components: + - type: Transform + pos: -74.5,182.5 + parent: 2 + - uid: 27493 + components: + - type: Transform + pos: -75.5,33.5 + parent: 2 + - uid: 27496 + components: + - type: Transform + pos: -76.5,35.5 + parent: 2 + - uid: 27499 + components: + - type: Transform + pos: -101.5,14.5 + parent: 2 + - uid: 27501 + components: + - type: Transform + pos: -100.5,14.5 + parent: 2 + - uid: 27503 + components: + - type: Transform + pos: -101.5,144.5 + parent: 2 + - uid: 27507 + components: + - type: Transform + pos: -107.5,14.5 + parent: 2 + - uid: 27508 + components: + - type: Transform + pos: -84.5,177.5 + parent: 2 + - uid: 27509 + components: + - type: Transform + pos: -78.5,33.5 + parent: 2 + - uid: 27517 + components: + - type: Transform + pos: -99.5,14.5 + parent: 2 + - uid: 27523 + components: + - type: Transform + pos: -111.5,14.5 + parent: 2 + - uid: 27527 + components: + - type: Transform + pos: -98.5,14.5 + parent: 2 + - uid: 27528 + components: + - type: Transform + pos: -102.5,26.5 + parent: 2 + - uid: 27529 + components: + - type: Transform + pos: -98.5,16.5 + parent: 2 + - uid: 27530 + components: + - type: Transform + pos: -98.5,18.5 + parent: 2 + - uid: 27533 + components: + - type: Transform + pos: -84.5,178.5 + parent: 2 + - uid: 27536 + components: + - type: Transform + pos: -84.5,179.5 + parent: 2 + - uid: 27545 + components: + - type: Transform + pos: -80.5,32.5 + parent: 2 + - uid: 27546 + components: + - type: Transform + pos: -81.5,32.5 + parent: 2 + - uid: 27547 + components: + - type: Transform + pos: -82.5,32.5 + parent: 2 + - uid: 27548 + components: + - type: Transform + pos: -79.5,32.5 + parent: 2 + - uid: 27549 + components: + - type: Transform + pos: -78.5,32.5 + parent: 2 + - uid: 27551 + components: + - type: Transform + pos: -136.5,36.5 + parent: 2 + - uid: 27554 + components: + - type: Transform + pos: -84.5,180.5 + parent: 2 + - uid: 27555 + components: + - type: Transform + pos: -84.5,181.5 + parent: 2 + - uid: 27556 + components: + - type: Transform + pos: -84.5,182.5 + parent: 2 + - uid: 27557 + components: + - type: Transform + pos: -81.5,165.5 + parent: 2 + - uid: 27558 + components: + - type: Transform + pos: -91.5,174.5 + parent: 2 + - uid: 27559 + components: + - type: Transform + pos: -91.5,173.5 + parent: 2 + - uid: 27560 + components: + - type: Transform + pos: -91.5,172.5 + parent: 2 + - uid: 27561 + components: + - type: Transform + pos: -87.5,39.5 + parent: 2 + - uid: 27563 + components: + - type: Transform + pos: -91.5,171.5 + parent: 2 + - uid: 27565 + components: + - type: Transform + pos: -75.5,47.5 + parent: 2 + - uid: 27566 + components: + - type: Transform + pos: -73.5,47.5 + parent: 2 + - uid: 27567 + components: + - type: Transform + pos: -74.5,47.5 + parent: 2 + - uid: 27568 + components: + - type: Transform + pos: -76.5,47.5 + parent: 2 + - uid: 27569 + components: + - type: Transform + pos: -77.5,47.5 + parent: 2 + - uid: 27570 + components: + - type: Transform + pos: -73.5,49.5 + parent: 2 + - uid: 27571 + components: + - type: Transform + pos: -74.5,49.5 + parent: 2 + - uid: 27572 + components: + - type: Transform + pos: -75.5,49.5 + parent: 2 + - uid: 27573 + components: + - type: Transform + pos: -76.5,49.5 + parent: 2 + - uid: 27574 + components: + - type: Transform + pos: -77.5,49.5 + parent: 2 + - uid: 27575 + components: + - type: Transform + pos: -78.5,49.5 + parent: 2 + - uid: 27576 + components: + - type: Transform + pos: -78.5,50.5 + parent: 2 + - uid: 27577 + components: + - type: Transform + pos: -79.5,50.5 + parent: 2 + - uid: 27578 + components: + - type: Transform + pos: -79.5,51.5 + parent: 2 + - uid: 27579 + components: + - type: Transform + pos: -79.5,52.5 + parent: 2 + - uid: 27580 + components: + - type: Transform + pos: -81.5,52.5 + parent: 2 + - uid: 27581 + components: + - type: Transform + pos: -81.5,51.5 + parent: 2 + - uid: 27582 + components: + - type: Transform + pos: -81.5,50.5 + parent: 2 + - uid: 27583 + components: + - type: Transform + pos: -82.5,50.5 + parent: 2 + - uid: 27584 + components: + - type: Transform + pos: -82.5,49.5 + parent: 2 + - uid: 27585 + components: + - type: Transform + pos: -82.5,48.5 + parent: 2 + - uid: 27586 + components: + - type: Transform + pos: -83.5,48.5 + parent: 2 + - uid: 27592 + components: + - type: Transform + pos: -89.5,48.5 + parent: 2 + - uid: 27593 + components: + - type: Transform + pos: -82.5,33.5 + parent: 2 + - uid: 27594 + components: + - type: Transform + pos: -82.5,34.5 + parent: 2 + - uid: 27595 + components: + - type: Transform + pos: -83.5,34.5 + parent: 2 + - uid: 27596 + components: + - type: Transform + pos: -84.5,34.5 + parent: 2 + - uid: 27600 + components: + - type: Transform + pos: -88.5,34.5 + parent: 2 + - uid: 27601 + components: + - type: Transform + pos: -89.5,34.5 + parent: 2 + - uid: 27602 + components: + - type: Transform + pos: -87.5,38.5 + parent: 2 + - uid: 27603 + components: + - type: Transform + pos: -86.5,38.5 + parent: 2 + - uid: 27604 + components: + - type: Transform + pos: -85.5,38.5 + parent: 2 + - uid: 27605 + components: + - type: Transform + pos: -84.5,38.5 + parent: 2 + - uid: 27606 + components: + - type: Transform + pos: -83.5,38.5 + parent: 2 + - uid: 27607 + components: + - type: Transform + pos: -82.5,38.5 + parent: 2 + - uid: 27608 + components: + - type: Transform + pos: -137.5,36.5 + parent: 2 + - uid: 27609 + components: + - type: Transform + pos: -81.5,39.5 + parent: 2 + - uid: 27610 + components: + - type: Transform + pos: -81.5,40.5 + parent: 2 + - uid: 27611 + components: + - type: Transform + pos: -81.5,41.5 + parent: 2 + - uid: 27612 + components: + - type: Transform + pos: -81.5,42.5 + parent: 2 + - uid: 27613 + components: + - type: Transform + pos: -81.5,43.5 + parent: 2 + - uid: 27614 + components: + - type: Transform + pos: -138.5,36.5 + parent: 2 + - uid: 27615 + components: + - type: Transform + pos: -82.5,44.5 + parent: 2 + - uid: 27616 + components: + - type: Transform + pos: -83.5,44.5 + parent: 2 + - uid: 27617 + components: + - type: Transform + pos: -84.5,44.5 + parent: 2 + - uid: 27618 + components: + - type: Transform + pos: -85.5,44.5 + parent: 2 + - uid: 27619 + components: + - type: Transform + pos: -86.5,44.5 + parent: 2 + - uid: 27620 + components: + - type: Transform + pos: -87.5,44.5 + parent: 2 + - uid: 27624 + components: + - type: Transform + pos: -95.5,38.5 + parent: 2 + - uid: 27625 + components: + - type: Transform + pos: -96.5,38.5 + parent: 2 + - uid: 27627 + components: + - type: Transform + pos: -96.5,37.5 + parent: 2 + - uid: 27628 + components: + - type: Transform + pos: -95.5,39.5 + parent: 2 + - uid: 27632 + components: + - type: Transform + pos: -95.5,43.5 + parent: 2 + - uid: 27633 + components: + - type: Transform + pos: -94.5,44.5 + parent: 2 + - uid: 27634 + components: + - type: Transform + pos: -95.5,44.5 + parent: 2 + - uid: 27635 + components: + - type: Transform + pos: -96.5,44.5 + parent: 2 + - uid: 27637 + components: + - type: Transform + pos: -96.5,45.5 + parent: 2 + - uid: 27638 + components: + - type: Transform + pos: -91.5,44.5 + parent: 2 + - uid: 27639 + components: + - type: Transform + pos: -90.5,44.5 + parent: 2 + - uid: 27640 + components: + - type: Transform + pos: -90.5,45.5 + parent: 2 + - uid: 27641 + components: + - type: Transform + pos: -90.5,46.5 + parent: 2 + - uid: 27642 + components: + - type: Transform + pos: -90.5,47.5 + parent: 2 + - uid: 27643 + components: + - type: Transform + pos: -90.5,48.5 + parent: 2 + - uid: 27644 + components: + - type: Transform + pos: -90.5,49.5 + parent: 2 + - uid: 27645 + components: + - type: Transform + pos: -91.5,49.5 + parent: 2 + - uid: 27647 + components: + - type: Transform + pos: -93.5,49.5 + parent: 2 + - uid: 27648 + components: + - type: Transform + pos: -94.5,49.5 + parent: 2 + - uid: 27649 + components: + - type: Transform + pos: -95.5,49.5 + parent: 2 + - uid: 27650 + components: + - type: Transform + pos: -96.5,49.5 + parent: 2 + - uid: 27653 + components: + - type: Transform + pos: -118.5,57.5 + parent: 2 + - uid: 27654 + components: + - type: Transform + pos: -117.5,57.5 + parent: 2 + - uid: 27657 + components: + - type: Transform + pos: -96.5,48.5 + parent: 2 + - uid: 27660 + components: + - type: Transform + pos: -102.5,44.5 + parent: 2 + - uid: 27661 + components: + - type: Transform + pos: -101.5,44.5 + parent: 2 + - uid: 27662 + components: + - type: Transform + pos: -100.5,44.5 + parent: 2 + - uid: 27663 + components: + - type: Transform + pos: -100.5,43.5 + parent: 2 + - uid: 27664 + components: + - type: Transform + pos: -100.5,42.5 + parent: 2 + - uid: 27665 + components: + - type: Transform + pos: -100.5,41.5 + parent: 2 + - uid: 27666 + components: + - type: Transform + pos: -100.5,40.5 + parent: 2 + - uid: 27667 + components: + - type: Transform + pos: -100.5,39.5 + parent: 2 + - uid: 27668 + components: + - type: Transform + pos: -100.5,38.5 + parent: 2 + - uid: 27669 + components: + - type: Transform + pos: -101.5,38.5 + parent: 2 + - uid: 27670 + components: + - type: Transform + pos: -102.5,38.5 + parent: 2 + - uid: 27671 + components: + - type: Transform + pos: -85.5,33.5 + parent: 2 + - uid: 27672 + components: + - type: Transform + pos: -85.5,34.5 + parent: 2 + - uid: 27673 + components: + - type: Transform + pos: -105.5,38.5 + parent: 2 + - uid: 27674 + components: + - type: Transform + pos: -101.5,37.5 + parent: 2 + - uid: 27675 + components: + - type: Transform + pos: -101.5,34.5 + parent: 2 + - uid: 27676 + components: + - type: Transform + pos: -96.5,34.5 + parent: 2 + - uid: 27677 + components: + - type: Transform + pos: -90.5,34.5 + parent: 2 + - uid: 27678 + components: + - type: Transform + pos: -90.5,33.5 + parent: 2 + - uid: 27679 + components: + - type: Transform + pos: -91.5,33.5 + parent: 2 + - uid: 27680 + components: + - type: Transform + pos: -92.5,33.5 + parent: 2 + - uid: 27684 + components: + - type: Transform + pos: -96.5,33.5 + parent: 2 + - uid: 27685 + components: + - type: Transform + pos: -97.5,33.5 + parent: 2 + - uid: 27686 + components: + - type: Transform + pos: -98.5,33.5 + parent: 2 + - uid: 27687 + components: + - type: Transform + pos: -99.5,33.5 + parent: 2 + - uid: 27688 + components: + - type: Transform + pos: -100.5,33.5 + parent: 2 + - uid: 27689 + components: + - type: Transform + pos: -101.5,33.5 + parent: 2 + - uid: 27690 + components: + - type: Transform + pos: -111.5,66.5 + parent: 2 + - uid: 27691 + components: + - type: Transform + pos: -106.5,38.5 + parent: 2 + - uid: 27692 + components: + - type: Transform + pos: -106.5,37.5 + parent: 2 + - uid: 27693 + components: + - type: Transform + pos: -106.5,36.5 + parent: 2 + - uid: 27704 + components: + - type: Transform + pos: -114.5,37.5 + parent: 2 + - uid: 27705 + components: + - type: Transform + pos: -114.5,38.5 + parent: 2 + - uid: 27707 + components: + - type: Transform + pos: -115.5,36.5 + parent: 2 + - uid: 27708 + components: + - type: Transform + pos: -117.5,36.5 + parent: 2 + - uid: 27709 + components: + - type: Transform + pos: -118.5,36.5 + parent: 2 + - uid: 27710 + components: + - type: Transform + pos: -118.5,37.5 + parent: 2 + - uid: 27711 + components: + - type: Transform + pos: -118.5,38.5 + parent: 2 + - uid: 27712 + components: + - type: Transform + pos: -98.5,15.5 + parent: 2 + - uid: 27714 + components: + - type: Transform + pos: -98.5,17.5 + parent: 2 + - uid: 27715 + components: + - type: Transform + pos: -98.5,19.5 + parent: 2 + - uid: 27716 + components: + - type: Transform + pos: -99.5,19.5 + parent: 2 + - uid: 27717 + components: + - type: Transform + pos: -100.5,19.5 + parent: 2 + - uid: 27723 + components: + - type: Transform + pos: -85.5,176.5 + parent: 2 + - uid: 27726 + components: + - type: Transform + pos: -110.5,14.5 + parent: 2 + - uid: 27728 + components: + - type: Transform + pos: -29.5,82.5 + parent: 2 + - uid: 27729 + components: + - type: Transform + pos: -28.5,82.5 + parent: 2 + - uid: 27730 + components: + - type: Transform + pos: -28.5,83.5 + parent: 2 + - uid: 27731 + components: + - type: Transform + pos: -28.5,84.5 + parent: 2 + - uid: 27732 + components: + - type: Transform + pos: -28.5,85.5 + parent: 2 + - uid: 27733 + components: + - type: Transform + pos: -28.5,86.5 + parent: 2 + - uid: 27734 + components: + - type: Transform + pos: -28.5,87.5 + parent: 2 + - uid: 27735 + components: + - type: Transform + pos: -28.5,88.5 + parent: 2 + - uid: 27736 + components: + - type: Transform + pos: -29.5,88.5 + parent: 2 + - uid: 27743 + components: + - type: Transform + pos: -101.5,19.5 + parent: 2 + - uid: 27754 + components: + - type: Transform + pos: -102.5,20.5 + parent: 2 + - uid: 27756 + components: + - type: Transform + pos: -96.5,50.5 + parent: 2 + - uid: 27758 + components: + - type: Transform + pos: -113.5,14.5 + parent: 2 + - uid: 27763 + components: + - type: Transform + pos: -86.5,176.5 + parent: 2 + - uid: 27766 + components: + - type: Transform + pos: -102.5,21.5 + parent: 2 + - uid: 27773 + components: + - type: Transform + pos: -105.5,14.5 + parent: 2 + - uid: 27774 + components: + - type: Transform + pos: -102.5,22.5 + parent: 2 + - uid: 27775 + components: + - type: Transform + pos: -112.5,14.5 + parent: 2 + - uid: 27776 + components: + - type: Transform + pos: -113.5,16.5 + parent: 2 + - uid: 27789 + components: + - type: Transform + pos: -89.5,176.5 + parent: 2 + - uid: 27792 + components: + - type: Transform + pos: -109.5,14.5 + parent: 2 + - uid: 27795 + components: + - type: Transform + pos: -96.5,51.5 + parent: 2 + - uid: 27805 + components: + - type: Transform + pos: -108.5,14.5 + parent: 2 + - uid: 27806 + components: + - type: Transform + pos: -106.5,14.5 + parent: 2 + - uid: 27807 + components: + - type: Transform + pos: -102.5,144.5 + parent: 2 + - uid: 27841 + components: + - type: Transform + pos: -90.5,176.5 + parent: 2 + - uid: 27847 + components: + - type: Transform + pos: -103.5,16.5 + parent: 2 + - uid: 27848 + components: + - type: Transform + pos: -103.5,15.5 + parent: 2 + - uid: 27858 + components: + - type: Transform + pos: -102.5,19.5 + parent: 2 + - uid: 27895 + components: + - type: Transform + pos: -96.5,36.5 + parent: 2 + - uid: 27904 + components: + - type: Transform + pos: -114.5,19.5 + parent: 2 + - uid: 27906 + components: + - type: Transform + pos: -114.5,20.5 + parent: 2 + - uid: 27910 + components: + - type: Transform + pos: -114.5,24.5 + parent: 2 + - uid: 27911 + components: + - type: Transform + pos: -114.5,25.5 + parent: 2 + - uid: 27912 + components: + - type: Transform + pos: -114.5,26.5 + parent: 2 + - uid: 27913 + components: + - type: Transform + pos: -113.5,26.5 + parent: 2 + - uid: 27914 + components: + - type: Transform + pos: -112.5,26.5 + parent: 2 + - uid: 27915 + components: + - type: Transform + pos: -111.5,26.5 + parent: 2 + - uid: 27916 + components: + - type: Transform + pos: -110.5,26.5 + parent: 2 + - uid: 27929 + components: + - type: Transform + pos: -30.5,88.5 + parent: 2 + - uid: 27936 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 27979 + components: + - type: Transform + pos: -106.5,32.5 + parent: 2 + - uid: 28079 + components: + - type: Transform + pos: -23.5,171.5 + parent: 2 + - uid: 28091 + components: + - type: Transform + pos: -31.5,88.5 + parent: 2 + - uid: 28118 + components: + - type: Transform + pos: -144.5,16.5 + parent: 2 + - uid: 28119 + components: + - type: Transform + pos: -143.5,16.5 + parent: 2 + - uid: 28120 + components: + - type: Transform + pos: -142.5,16.5 + parent: 2 + - uid: 28121 + components: + - type: Transform + pos: -141.5,16.5 + parent: 2 + - uid: 28124 + components: + - type: Transform + pos: -110.5,27.5 + parent: 2 + - uid: 28127 + components: + - type: Transform + pos: -140.5,16.5 + parent: 2 + - uid: 28134 + components: + - type: Transform + pos: -139.5,16.5 + parent: 2 + - uid: 28136 + components: + - type: Transform + pos: -138.5,16.5 + parent: 2 + - uid: 28137 + components: + - type: Transform + pos: -137.5,16.5 + parent: 2 + - uid: 28139 + components: + - type: Transform + pos: -136.5,16.5 + parent: 2 + - uid: 28140 + components: + - type: Transform + pos: -135.5,16.5 + parent: 2 + - uid: 28141 + components: + - type: Transform + pos: -135.5,17.5 + parent: 2 + - uid: 28142 + components: + - type: Transform + pos: -134.5,17.5 + parent: 2 + - uid: 28164 + components: + - type: Transform + pos: -101.5,29.5 + parent: 2 + - uid: 28165 + components: + - type: Transform + pos: -101.5,30.5 + parent: 2 + - uid: 28166 + components: + - type: Transform + pos: -101.5,31.5 + parent: 2 + - uid: 28167 + components: + - type: Transform + pos: -101.5,32.5 + parent: 2 + - uid: 28168 + components: + - type: Transform + pos: -110.5,29.5 + parent: 2 + - uid: 28169 + components: + - type: Transform + pos: -109.5,29.5 + parent: 2 + - uid: 28170 + components: + - type: Transform + pos: -108.5,29.5 + parent: 2 + - uid: 28171 + components: + - type: Transform + pos: -107.5,29.5 + parent: 2 + - uid: 28173 + components: + - type: Transform + pos: -106.5,29.5 + parent: 2 + - uid: 28174 + components: + - type: Transform + pos: -106.5,30.5 + parent: 2 + - uid: 28176 + components: + - type: Transform + pos: -107.5,37.5 + parent: 2 + - uid: 28178 + components: + - type: Transform + pos: -112.5,37.5 + parent: 2 + - uid: 28186 + components: + - type: Transform + pos: -111.5,29.5 + parent: 2 + - uid: 28191 + components: + - type: Transform + pos: -114.5,29.5 + parent: 2 + - uid: 28192 + components: + - type: Transform + pos: -113.5,29.5 + parent: 2 + - uid: 28194 + components: + - type: Transform + pos: -114.5,30.5 + parent: 2 + - uid: 28195 + components: + - type: Transform + pos: -112.5,29.5 + parent: 2 + - uid: 28200 + components: + - type: Transform + pos: -85.5,32.5 + parent: 2 + - uid: 28208 + components: + - type: Transform + pos: -87.5,34.5 + parent: 2 + - uid: 28209 + components: + - type: Transform + pos: -87.5,33.5 + parent: 2 + - uid: 28210 + components: + - type: Transform + pos: -87.5,32.5 + parent: 2 + - uid: 28211 + components: + - type: Transform + pos: -87.5,31.5 + parent: 2 + - uid: 28212 + components: + - type: Transform + pos: -85.5,31.5 + parent: 2 + - uid: 28215 + components: + - type: Transform + pos: -83.5,32.5 + parent: 2 + - uid: 28219 + components: + - type: Transform + pos: -105.5,44.5 + parent: 2 + - uid: 28220 + components: + - type: Transform + pos: -106.5,44.5 + parent: 2 + - uid: 28221 + components: + - type: Transform + pos: -106.5,45.5 + parent: 2 + - uid: 28222 + components: + - type: Transform + pos: -106.5,48.5 + parent: 2 + - uid: 28223 + components: + - type: Transform + pos: -106.5,49.5 + parent: 2 + - uid: 28224 + components: + - type: Transform + pos: -102.5,52.5 + parent: 2 + - uid: 28225 + components: + - type: Transform + pos: -109.5,146.5 + parent: 2 + - uid: 28236 + components: + - type: Transform + pos: -103.5,60.5 + parent: 2 + - uid: 28237 + components: + - type: Transform + pos: -103.5,59.5 + parent: 2 + - uid: 28286 + components: + - type: Transform + pos: -104.5,62.5 + parent: 2 + - uid: 28303 + components: + - type: Transform + pos: 98.5,51.5 + parent: 2 + - uid: 28308 + components: + - type: Transform + pos: -111.5,67.5 + parent: 2 + - uid: 28309 + components: + - type: Transform + pos: -126.5,52.5 + parent: 2 + - uid: 28316 + components: + - type: Transform + pos: -107.5,61.5 + parent: 2 + - uid: 28349 + components: + - type: Transform + pos: -99.5,59.5 + parent: 2 + - uid: 28359 + components: + - type: Transform + pos: -99.5,60.5 + parent: 2 + - uid: 28403 + components: + - type: Transform + pos: -103.5,52.5 + parent: 2 + - uid: 28410 + components: + - type: Transform + pos: -106.5,50.5 + parent: 2 + - uid: 28418 + components: + - type: Transform + pos: -114.5,32.5 + parent: 2 + - uid: 28446 + components: + - type: Transform + pos: -116.5,57.5 + parent: 2 + - uid: 28459 + components: + - type: Transform + pos: -106.5,52.5 + parent: 2 + - uid: 28477 + components: + - type: Transform + pos: -97.5,56.5 + parent: 2 + - uid: 28480 + components: + - type: Transform + pos: -99.5,54.5 + parent: 2 + - uid: 28485 + components: + - type: Transform + pos: -124.5,61.5 + parent: 2 + - uid: 28486 + components: + - type: Transform + pos: -123.5,61.5 + parent: 2 + - uid: 28495 + components: + - type: Transform + pos: -101.5,64.5 + parent: 2 + - uid: 28502 + components: + - type: Transform + pos: -110.5,61.5 + parent: 2 + - uid: 28503 + components: + - type: Transform + pos: -111.5,61.5 + parent: 2 + - uid: 28504 + components: + - type: Transform + pos: -111.5,62.5 + parent: 2 + - uid: 28505 + components: + - type: Transform + pos: -111.5,63.5 + parent: 2 + - uid: 28507 + components: + - type: Transform + pos: -106.5,61.5 + parent: 2 + - uid: 28508 + components: + - type: Transform + pos: -106.5,62.5 + parent: 2 + - uid: 28510 + components: + - type: Transform + pos: -106.5,64.5 + parent: 2 + - uid: 28514 + components: + - type: Transform + pos: -111.5,64.5 + parent: 2 + - uid: 28525 + components: + - type: Transform + pos: -32.5,88.5 + parent: 2 + - uid: 28526 + components: + - type: Transform + pos: -33.5,88.5 + parent: 2 + - uid: 28534 + components: + - type: Transform + pos: -34.5,88.5 + parent: 2 + - uid: 28593 + components: + - type: Transform + pos: -106.5,51.5 + parent: 2 + - uid: 28634 + components: + - type: Transform + pos: -99.5,55.5 + parent: 2 + - uid: 28636 + components: + - type: Transform + pos: -97.5,52.5 + parent: 2 + - uid: 28642 + components: + - type: Transform + pos: 78.5,32.5 + parent: 2 + - uid: 28701 + components: + - type: Transform + pos: -105.5,52.5 + parent: 2 + - uid: 28705 + components: + - type: Transform + pos: -104.5,52.5 + parent: 2 + - uid: 28725 + components: + - type: Transform + pos: 69.5,56.5 + parent: 2 + - uid: 28726 + components: + - type: Transform + pos: 72.5,56.5 + parent: 2 + - uid: 28739 + components: + - type: Transform + pos: -119.5,57.5 + parent: 2 + - uid: 28742 + components: + - type: Transform + pos: -106.5,31.5 + parent: 2 + - uid: 28775 + components: + - type: Transform + pos: -87.5,43.5 + parent: 2 + - uid: 28836 + components: + - type: Transform + pos: -101.5,52.5 + parent: 2 + - uid: 28848 + components: + - type: Transform + pos: -131.5,41.5 + parent: 2 + - uid: 28849 + components: + - type: Transform + pos: -130.5,50.5 + parent: 2 + - uid: 28850 + components: + - type: Transform + pos: -130.5,48.5 + parent: 2 + - uid: 28851 + components: + - type: Transform + pos: -130.5,49.5 + parent: 2 + - uid: 28852 + components: + - type: Transform + pos: -130.5,46.5 + parent: 2 + - uid: 28853 + components: + - type: Transform + pos: -130.5,47.5 + parent: 2 + - uid: 28855 + components: + - type: Transform + pos: -130.5,44.5 + parent: 2 + - uid: 28856 + components: + - type: Transform + pos: -130.5,45.5 + parent: 2 + - uid: 28857 + components: + - type: Transform + pos: -129.5,52.5 + parent: 2 + - uid: 28859 + components: + - type: Transform + pos: -130.5,51.5 + parent: 2 + - uid: 28860 + components: + - type: Transform + pos: -130.5,52.5 + parent: 2 + - uid: 28863 + components: + - type: Transform + pos: -125.5,54.5 + parent: 2 + - uid: 28866 + components: + - type: Transform + pos: -125.5,55.5 + parent: 2 + - uid: 28868 + components: + - type: Transform + pos: -129.5,56.5 + parent: 2 + - uid: 28871 + components: + - type: Transform + pos: -124.5,51.5 + parent: 2 + - uid: 28872 + components: + - type: Transform + pos: -124.5,50.5 + parent: 2 + - uid: 28873 + components: + - type: Transform + pos: -125.5,52.5 + parent: 2 + - uid: 28874 + components: + - type: Transform + pos: -124.5,52.5 + parent: 2 + - uid: 28875 + components: + - type: Transform + pos: -125.5,53.5 + parent: 2 + - uid: 28879 + components: + - type: Transform + pos: -124.5,49.5 + parent: 2 + - uid: 28881 + components: + - type: Transform + pos: -130.5,43.5 + parent: 2 + - uid: 28882 + components: + - type: Transform + pos: -130.5,42.5 + parent: 2 + - uid: 28883 + components: + - type: Transform + pos: -129.5,42.5 + parent: 2 + - uid: 28884 + components: + - type: Transform + pos: -128.5,42.5 + parent: 2 + - uid: 28891 + components: + - type: Transform + pos: -124.5,44.5 + parent: 2 + - uid: 28892 + components: + - type: Transform + pos: -124.5,43.5 + parent: 2 + - uid: 28893 + components: + - type: Transform + pos: -124.5,45.5 + parent: 2 + - uid: 28894 + components: + - type: Transform + pos: -124.5,42.5 + parent: 2 + - uid: 28895 + components: + - type: Transform + pos: -125.5,42.5 + parent: 2 + - uid: 28896 + components: + - type: Transform + pos: -126.5,42.5 + parent: 2 + - uid: 28897 + components: + - type: Transform + pos: -127.5,42.5 + parent: 2 + - uid: 28905 + components: + - type: Transform + pos: -100.5,52.5 + parent: 2 + - uid: 28907 + components: + - type: Transform + pos: -124.5,48.5 + parent: 2 + - uid: 28908 + components: + - type: Transform + pos: -124.5,46.5 + parent: 2 + - uid: 28937 + components: + - type: Transform + pos: -108.5,66.5 + parent: 2 + - uid: 28938 + components: + - type: Transform + pos: -108.5,65.5 + parent: 2 + - uid: 28956 + components: + - type: Transform + pos: -128.5,52.5 + parent: 2 + - uid: 29026 + components: + - type: Transform + pos: -116.5,64.5 + parent: 2 + - uid: 29027 + components: + - type: Transform + pos: -116.5,63.5 + parent: 2 + - uid: 29028 + components: + - type: Transform + pos: -116.5,62.5 + parent: 2 + - uid: 29029 + components: + - type: Transform + pos: -117.5,62.5 + parent: 2 + - uid: 29030 + components: + - type: Transform + pos: -118.5,62.5 + parent: 2 + - uid: 29031 + components: + - type: Transform + pos: -119.5,62.5 + parent: 2 + - uid: 29032 + components: + - type: Transform + pos: -120.5,62.5 + parent: 2 + - uid: 29033 + components: + - type: Transform + pos: -121.5,62.5 + parent: 2 + - uid: 29034 + components: + - type: Transform + pos: -122.5,62.5 + parent: 2 + - uid: 29035 + components: + - type: Transform + pos: -123.5,62.5 + parent: 2 + - uid: 29036 + components: + - type: Transform + pos: -123.5,63.5 + parent: 2 + - uid: 29038 + components: + - type: Transform + pos: -123.5,65.5 + parent: 2 + - uid: 29039 + components: + - type: Transform + pos: -123.5,66.5 + parent: 2 + - uid: 29040 + components: + - type: Transform + pos: -123.5,67.5 + parent: 2 + - uid: 29041 + components: + - type: Transform + pos: -116.5,67.5 + parent: 2 + - uid: 29042 + components: + - type: Transform + pos: -116.5,66.5 + parent: 2 + - uid: 29043 + components: + - type: Transform + pos: -117.5,67.5 + parent: 2 + - uid: 29044 + components: + - type: Transform + pos: -122.5,67.5 + parent: 2 + - uid: 29120 + components: + - type: Transform + pos: -114.5,36.5 + parent: 2 + - uid: 29122 + components: + - type: Transform + pos: -114.5,31.5 + parent: 2 + - uid: 29134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,35.5 + parent: 2 + - uid: 29334 + components: + - type: Transform + pos: -46.5,74.5 + parent: 2 + - uid: 29338 + components: + - type: Transform + pos: -131.5,52.5 + parent: 2 + - uid: 29339 + components: + - type: Transform + pos: -118.5,23.5 + parent: 2 + - uid: 29348 + components: + - type: Transform + pos: -135.5,37.5 + parent: 2 + - uid: 29351 + components: + - type: Transform + pos: -118.5,21.5 + parent: 2 + - uid: 29377 + components: + - type: Transform + pos: -94.5,52.5 + parent: 2 + - uid: 29396 + components: + - type: Transform + pos: -93.5,51.5 + parent: 2 + - uid: 29463 + components: + - type: Transform + pos: -113.5,37.5 + parent: 2 + - uid: 29702 + components: + - type: Transform + pos: -47.5,74.5 + parent: 2 + - uid: 29705 + components: + - type: Transform + pos: -48.5,74.5 + parent: 2 + - uid: 29849 + components: + - type: Transform + pos: -49.5,74.5 + parent: 2 + - uid: 29852 + components: + - type: Transform + pos: -50.5,74.5 + parent: 2 + - uid: 29853 + components: + - type: Transform + pos: -51.5,74.5 + parent: 2 + - uid: 29861 + components: + - type: Transform + pos: -52.5,74.5 + parent: 2 + - uid: 29862 + components: + - type: Transform + pos: -52.5,75.5 + parent: 2 + - uid: 29863 + components: + - type: Transform + pos: -52.5,76.5 + parent: 2 + - uid: 29879 + components: + - type: Transform + pos: -52.5,77.5 + parent: 2 + - uid: 29882 + components: + - type: Transform + pos: -52.5,79.5 + parent: 2 + - uid: 29883 + components: + - type: Transform + pos: -52.5,80.5 + parent: 2 + - uid: 29886 + components: + - type: Transform + pos: -51.5,80.5 + parent: 2 + - uid: 29887 + components: + - type: Transform + pos: -50.5,80.5 + parent: 2 + - uid: 29888 + components: + - type: Transform + pos: -49.5,80.5 + parent: 2 + - uid: 29898 + components: + - type: Transform + pos: -48.5,80.5 + parent: 2 + - uid: 29903 + components: + - type: Transform + pos: -47.5,80.5 + parent: 2 + - uid: 29914 + components: + - type: Transform + pos: -46.5,80.5 + parent: 2 + - uid: 29917 + components: + - type: Transform + pos: -46.5,82.5 + parent: 2 + - uid: 29918 + components: + - type: Transform + pos: -47.5,82.5 + parent: 2 + - uid: 29926 + components: + - type: Transform + pos: -48.5,82.5 + parent: 2 + - uid: 29927 + components: + - type: Transform + pos: -49.5,82.5 + parent: 2 + - uid: 30025 + components: + - type: Transform + pos: -67.5,161.5 + parent: 2 + - uid: 30037 + components: + - type: Transform + pos: -52.5,82.5 + parent: 2 + - uid: 30062 + components: + - type: Transform + pos: -67.5,163.5 + parent: 2 + - uid: 30089 + components: + - type: Transform + pos: -43.5,65.5 + parent: 2 + - uid: 30127 + components: + - type: Transform + pos: -67.5,164.5 + parent: 2 + - uid: 30128 + components: + - type: Transform + pos: -67.5,165.5 + parent: 2 + - uid: 30129 + components: + - type: Transform + pos: -67.5,166.5 + parent: 2 + - uid: 30189 + components: + - type: Transform + pos: -52.5,83.5 + parent: 2 + - uid: 30222 + components: + - type: Transform + pos: -52.5,85.5 + parent: 2 + - uid: 30223 + components: + - type: Transform + pos: -52.5,86.5 + parent: 2 + - uid: 30234 + components: + - type: Transform + pos: -52.5,87.5 + parent: 2 + - uid: 30237 + components: + - type: Transform + pos: -52.5,88.5 + parent: 2 + - uid: 30238 + components: + - type: Transform + pos: -51.5,88.5 + parent: 2 + - uid: 30239 + components: + - type: Transform + pos: -50.5,88.5 + parent: 2 + - uid: 30242 + components: + - type: Transform + pos: -49.5,88.5 + parent: 2 + - uid: 30243 + components: + - type: Transform + pos: -48.5,88.5 + parent: 2 + - uid: 30244 + components: + - type: Transform + pos: -47.5,88.5 + parent: 2 + - uid: 30246 + components: + - type: Transform + pos: -46.5,88.5 + parent: 2 + - uid: 30247 + components: + - type: Transform + pos: -43.5,69.5 + parent: 2 + - uid: 30258 + components: + - type: Transform + pos: -43.5,68.5 + parent: 2 + - uid: 30259 + components: + - type: Transform + pos: -43.5,67.5 + parent: 2 + - uid: 30263 + components: + - type: Transform + pos: -43.5,66.5 + parent: 2 + - uid: 30266 + components: + - type: Transform + pos: -43.5,64.5 + parent: 2 + - uid: 30267 + components: + - type: Transform + pos: -42.5,64.5 + parent: 2 + - uid: 30270 + components: + - type: Transform + pos: -130.5,41.5 + parent: 2 + - uid: 30295 + components: + - type: Transform + pos: -41.5,64.5 + parent: 2 + - uid: 30513 + components: + - type: Transform + pos: 81.5,22.5 + parent: 2 + - uid: 30544 + components: + - type: Transform + pos: -13.5,61.5 + parent: 2 + - uid: 30593 + components: + - type: Transform + pos: 82.5,21.5 + parent: 2 + - uid: 30680 + components: + - type: Transform + pos: -67.5,167.5 + parent: 2 + - uid: 30743 + components: + - type: Transform + pos: -40.5,64.5 + parent: 2 + - uid: 30827 + components: + - type: Transform + pos: 9.5,75.5 + parent: 2 + - uid: 30836 + components: + - type: Transform + pos: -70.5,143.5 + parent: 2 + - uid: 30883 + components: + - type: Transform + pos: 81.5,21.5 + parent: 2 + - uid: 31094 + components: + - type: Transform + pos: -77.5,165.5 + parent: 2 + - uid: 31183 + components: + - type: Transform + pos: -77.5,166.5 + parent: 2 + - uid: 31198 + components: + - type: Transform + pos: 82.5,20.5 + parent: 2 + - uid: 31238 + components: + - type: Transform + pos: -76.5,166.5 + parent: 2 + - uid: 31240 + components: + - type: Transform + pos: -75.5,166.5 + parent: 2 + - uid: 31499 + components: + - type: Transform + pos: -75.5,144.5 + parent: 2 + - uid: 31524 + components: + - type: Transform + pos: -67.5,169.5 + parent: 2 + - uid: 31548 + components: + - type: Transform + pos: -109.5,150.5 + parent: 2 + - uid: 31572 + components: + - type: Transform + pos: -100.5,54.5 + parent: 2 + - uid: 31598 + components: + - type: Transform + pos: -67.5,170.5 + parent: 2 + - uid: 31642 + components: + - type: Transform + pos: 76.5,22.5 + parent: 2 + - uid: 31983 + components: + - type: Transform + pos: -67.5,171.5 + parent: 2 + - uid: 32043 + components: + - type: Transform + pos: 5.5,86.5 + parent: 2 + - uid: 32045 + components: + - type: Transform + pos: 7.5,86.5 + parent: 2 + - uid: 32095 + components: + - type: Transform + pos: -12.5,172.5 + parent: 2 + - uid: 32096 + components: + - type: Transform + pos: -11.5,172.5 + parent: 2 + - uid: 32116 + components: + - type: Transform + pos: 4.5,86.5 + parent: 2 + - uid: 32169 + components: + - type: Transform + pos: 76.5,23.5 + parent: 2 + - uid: 32204 + components: + - type: Transform + pos: -67.5,173.5 + parent: 2 + - uid: 32205 + components: + - type: Transform + pos: -67.5,174.5 + parent: 2 + - uid: 32217 + components: + - type: Transform + pos: -67.5,175.5 + parent: 2 + - uid: 32220 + components: + - type: Transform + pos: -67.5,176.5 + parent: 2 + - uid: 32222 + components: + - type: Transform + pos: -67.5,177.5 + parent: 2 + - uid: 32253 + components: + - type: Transform + pos: -67.5,178.5 + parent: 2 + - uid: 32444 + components: + - type: Transform + pos: -10.5,172.5 + parent: 2 + - uid: 32466 + components: + - type: Transform + pos: -20.5,98.5 + parent: 2 + - uid: 32613 + components: + - type: Transform + pos: -81.5,144.5 + parent: 2 + - uid: 32777 + components: + - type: Transform + pos: 80.5,17.5 + parent: 2 + - uid: 32778 + components: + - type: Transform + pos: 81.5,17.5 + parent: 2 + - uid: 32939 + components: + - type: Transform + pos: 79.5,18.5 + parent: 2 + - uid: 33025 + components: + - type: Transform + pos: -0.5,220.5 + parent: 2 + - uid: 33026 + components: + - type: Transform + pos: -1.5,220.5 + parent: 2 + - uid: 33027 + components: + - type: Transform + pos: -1.5,219.5 + parent: 2 + - uid: 33028 + components: + - type: Transform + pos: 1.5,220.5 + parent: 2 + - uid: 33030 + components: + - type: Transform + pos: 2.5,220.5 + parent: 2 + - uid: 33031 + components: + - type: Transform + pos: 2.5,219.5 + parent: 2 + - uid: 33032 + components: + - type: Transform + pos: 2.5,218.5 + parent: 2 + - uid: 33033 + components: + - type: Transform + pos: 2.5,217.5 + parent: 2 + - uid: 33034 + components: + - type: Transform + pos: 1.5,217.5 + parent: 2 + - uid: 33035 + components: + - type: Transform + pos: -0.5,217.5 + parent: 2 + - uid: 33036 + components: + - type: Transform + pos: -1.5,217.5 + parent: 2 + - uid: 33037 + components: + - type: Transform + pos: -1.5,218.5 + parent: 2 + - uid: 33038 + components: + - type: Transform + pos: 3.5,217.5 + parent: 2 + - uid: 33039 + components: + - type: Transform + pos: 3.5,216.5 + parent: 2 + - uid: 33040 + components: + - type: Transform + pos: 3.5,215.5 + parent: 2 + - uid: 33041 + components: + - type: Transform + pos: 3.5,214.5 + parent: 2 + - uid: 33042 + components: + - type: Transform + pos: 3.5,213.5 + parent: 2 + - uid: 33043 + components: + - type: Transform + pos: 3.5,212.5 + parent: 2 + - uid: 33044 + components: + - type: Transform + pos: -2.5,217.5 + parent: 2 + - uid: 33045 + components: + - type: Transform + pos: -2.5,216.5 + parent: 2 + - uid: 33066 + components: + - type: Transform + pos: 45.5,63.5 + parent: 2 + - uid: 33071 + components: + - type: Transform + pos: -2.5,215.5 + parent: 2 + - uid: 33098 + components: + - type: Transform + pos: -38.5,64.5 + parent: 2 + - uid: 33159 + components: + - type: Transform + pos: -37.5,97.5 + parent: 2 + - uid: 33414 + components: + - type: Transform + pos: -87.5,143.5 + parent: 2 + - uid: 33806 + components: + - type: Transform + pos: -23.5,102.5 + parent: 2 + - uid: 33904 + components: + - type: Transform + pos: -33.5,106.5 + parent: 2 + - uid: 34139 + components: + - type: Transform + pos: -0.5,59.5 + parent: 2 + - uid: 34283 + components: + - type: Transform + pos: -54.5,173.5 + parent: 2 + - uid: 34284 + components: + - type: Transform + pos: -129.5,104.5 + parent: 2 + - uid: 34310 + components: + - type: Transform + pos: -53.5,173.5 + parent: 2 + - uid: 34462 + components: + - type: Transform + pos: -52.5,173.5 + parent: 2 + - uid: 34463 + components: + - type: Transform + pos: -34.5,181.5 + parent: 2 + - uid: 34465 + components: + - type: Transform + pos: -32.5,182.5 + parent: 2 + - uid: 34493 + components: + - type: Transform + pos: -31.5,186.5 + parent: 2 + - uid: 34633 + components: + - type: Transform + pos: -74.5,113.5 + parent: 2 + - uid: 34641 + components: + - type: Transform + pos: -87.5,145.5 + parent: 2 + - uid: 34706 + components: + - type: Transform + pos: -37.5,64.5 + parent: 2 + - uid: 34764 + components: + - type: Transform + pos: 2.5,62.5 + parent: 2 + - uid: 34766 + components: + - type: Transform + pos: -23.5,95.5 + parent: 2 + - uid: 34793 + components: + - type: Transform + pos: -1.5,59.5 + parent: 2 + - uid: 34796 + components: + - type: Transform + pos: -1.5,58.5 + parent: 2 + - uid: 34929 + components: + - type: Transform + pos: -7.5,218.5 + parent: 2 + - uid: 34930 + components: + - type: Transform + pos: 8.5,218.5 + parent: 2 + - uid: 35052 + components: + - type: Transform + pos: -110.5,150.5 + parent: 2 + - uid: 35505 + components: + - type: Transform + pos: -128.5,58.5 + parent: 2 + - uid: 35509 + components: + - type: Transform + pos: -128.5,62.5 + parent: 2 + - uid: 35510 + components: + - type: Transform + pos: -128.5,63.5 + parent: 2 + - uid: 35601 + components: + - type: Transform + pos: -94.5,145.5 + parent: 2 + - uid: 35695 + components: + - type: Transform + pos: -75.5,145.5 + parent: 2 + - uid: 35795 + components: + - type: Transform + pos: -7.5,59.5 + parent: 2 + - uid: 35818 + components: + - type: Transform + pos: -16.5,171.5 + parent: 2 + - uid: 35909 + components: + - type: Transform + pos: -37.5,65.5 + parent: 2 + - uid: 36187 + components: + - type: Transform + pos: -55.5,60.5 + parent: 2 + - uid: 36195 + components: + - type: Transform + pos: -37.5,181.5 + parent: 2 + - uid: 36361 + components: + - type: Transform + pos: 79.5,17.5 + parent: 2 + - uid: 36362 + components: + - type: Transform + pos: -75.5,146.5 + parent: 2 + - uid: 36363 + components: + - type: Transform + pos: -75.5,147.5 + parent: 2 + - uid: 36378 + components: + - type: Transform + pos: -13.5,172.5 + parent: 2 + - uid: 36379 + components: + - type: Transform + pos: -14.5,172.5 + parent: 2 + - uid: 36679 + components: + - type: Transform + pos: -37.5,66.5 + parent: 2 + - uid: 36686 + components: + - type: Transform + pos: -65.5,64.5 + parent: 2 + - uid: 36702 + components: + - type: Transform + pos: -125.5,66.5 + parent: 2 + - uid: 36735 + components: + - type: Transform + pos: -75.5,149.5 + parent: 2 + - uid: 36762 + components: + - type: Transform + pos: -37.5,67.5 + parent: 2 + - uid: 36765 + components: + - type: Transform + pos: -37.5,68.5 + parent: 2 + - uid: 36766 + components: + - type: Transform + pos: -68.5,166.5 + parent: 2 + - uid: 36784 + components: + - type: Transform + pos: -67.5,168.5 + parent: 2 + - uid: 36785 + components: + - type: Transform + pos: 5.5,72.5 + parent: 2 + - uid: 36787 + components: + - type: Transform + pos: 6.5,72.5 + parent: 2 + - uid: 36790 + components: + - type: Transform + pos: 9.5,73.5 + parent: 2 + - uid: 36791 + components: + - type: Transform + pos: -37.5,69.5 + parent: 2 + - uid: 36795 + components: + - type: Transform + pos: 7.5,72.5 + parent: 2 + - uid: 36796 + components: + - type: Transform + pos: 8.5,72.5 + parent: 2 + - uid: 36802 + components: + - type: Transform + pos: 4.5,72.5 + parent: 2 + - uid: 36954 + components: + - type: Transform + pos: -66.5,64.5 + parent: 2 + - uid: 36978 + components: + - type: Transform + pos: -125.5,65.5 + parent: 2 + - uid: 36983 + components: + - type: Transform + pos: -35.5,181.5 + parent: 2 + - uid: 36984 + components: + - type: Transform + pos: -37.5,179.5 + parent: 2 + - uid: 36993 + components: + - type: Transform + pos: -38.5,178.5 + parent: 2 + - uid: 36995 + components: + - type: Transform + pos: -37.5,178.5 + parent: 2 + - uid: 37080 + components: + - type: Transform + pos: -36.5,181.5 + parent: 2 + - uid: 37125 + components: + - type: Transform + pos: 83.5,47.5 + parent: 2 + - uid: 37142 + components: + - type: Transform + pos: -37.5,180.5 + parent: 2 + - uid: 37146 + components: + - type: Transform + pos: -48.5,177.5 + parent: 2 + - uid: 37147 + components: + - type: Transform + pos: -40.5,178.5 + parent: 2 + - uid: 37148 + components: + - type: Transform + pos: -41.5,178.5 + parent: 2 + - uid: 37152 + components: + - type: Transform + pos: -45.5,178.5 + parent: 2 + - uid: 37153 + components: + - type: Transform + pos: -46.5,178.5 + parent: 2 + - uid: 37154 + components: + - type: Transform + pos: -74.5,147.5 + parent: 2 + - uid: 37155 + components: + - type: Transform + pos: -45.5,175.5 + parent: 2 + - uid: 37159 + components: + - type: Transform + pos: -41.5,175.5 + parent: 2 + - uid: 37160 + components: + - type: Transform + pos: -73.5,147.5 + parent: 2 + - uid: 37162 + components: + - type: Transform + pos: -72.5,147.5 + parent: 2 + - uid: 37163 + components: + - type: Transform + pos: -71.5,147.5 + parent: 2 + - uid: 37164 + components: + - type: Transform + pos: -36.5,175.5 + parent: 2 + - uid: 37168 + components: + - type: Transform + pos: -34.5,177.5 + parent: 2 + - uid: 37169 + components: + - type: Transform + pos: -34.5,178.5 + parent: 2 + - uid: 37170 + components: + - type: Transform + pos: -34.5,179.5 + parent: 2 + - uid: 37171 + components: + - type: Transform + pos: -32.5,179.5 + parent: 2 + - uid: 37172 + components: + - type: Transform + pos: -33.5,179.5 + parent: 2 + - uid: 37173 + components: + - type: Transform + pos: -48.5,178.5 + parent: 2 + - uid: 37174 + components: + - type: Transform + pos: -47.5,178.5 + parent: 2 + - uid: 37175 + components: + - type: Transform + pos: -48.5,176.5 + parent: 2 + - uid: 37176 + components: + - type: Transform + pos: -48.5,175.5 + parent: 2 + - uid: 37177 + components: + - type: Transform + pos: -48.5,174.5 + parent: 2 + - uid: 37178 + components: + - type: Transform + pos: -48.5,173.5 + parent: 2 + - uid: 37179 + components: + - type: Transform + pos: -49.5,173.5 + parent: 2 + - uid: 37180 + components: + - type: Transform + pos: -50.5,173.5 + parent: 2 + - uid: 37181 + components: + - type: Transform + pos: -51.5,173.5 + parent: 2 + - uid: 37184 + components: + - type: Transform + pos: -71.5,149.5 + parent: 2 + - uid: 37188 + components: + - type: Transform + pos: -45.5,173.5 + parent: 2 + - uid: 37193 + components: + - type: Transform + pos: -41.5,174.5 + parent: 2 + - uid: 37194 + components: + - type: Transform + pos: -41.5,173.5 + parent: 2 + - uid: 37195 + components: + - type: Transform + pos: -41.5,172.5 + parent: 2 + - uid: 37196 + components: + - type: Transform + pos: -41.5,171.5 + parent: 2 + - uid: 37200 + components: + - type: Transform + pos: -37.5,70.5 + parent: 2 + - uid: 37201 + components: + - type: Transform + pos: -36.5,171.5 + parent: 2 + - uid: 37202 + components: + - type: Transform + pos: -36.5,172.5 + parent: 2 + - uid: 37203 + components: + - type: Transform + pos: -36.5,173.5 + parent: 2 + - uid: 37204 + components: + - type: Transform + pos: -36.5,174.5 + parent: 2 + - uid: 37227 + components: + - type: Transform + pos: -48.5,171.5 + parent: 2 + - uid: 37325 + components: + - type: Transform + pos: -49.5,168.5 + parent: 2 + - uid: 37326 + components: + - type: Transform + pos: -49.5,170.5 + parent: 2 + - uid: 37363 + components: + - type: Transform + pos: -125.5,64.5 + parent: 2 + - uid: 37583 + components: + - type: Transform + pos: -64.5,60.5 + parent: 2 + - uid: 37584 + components: + - type: Transform + pos: -65.5,60.5 + parent: 2 + - uid: 37653 + components: + - type: Transform + pos: -104.5,65.5 + parent: 2 + - uid: 37694 + components: + - type: Transform + pos: -102.5,57.5 + parent: 2 + - uid: 37704 + components: + - type: Transform + pos: -102.5,56.5 + parent: 2 + - uid: 37715 + components: + - type: Transform + pos: 5.5,82.5 + parent: 2 + - uid: 37719 + components: + - type: Transform + pos: 7.5,82.5 + parent: 2 + - uid: 38368 + components: + - type: Transform + pos: -48.5,65.5 + parent: 2 + - uid: 38422 + components: + - type: Transform + pos: -73.5,43.5 + parent: 2 + - uid: 38442 + components: + - type: Transform + pos: -74.5,39.5 + parent: 2 + - uid: 38443 + components: + - type: Transform + pos: -73.5,39.5 + parent: 2 + - uid: 38803 + components: + - type: Transform + pos: 82.5,17.5 + parent: 2 + - uid: 39268 + components: + - type: Transform + pos: 80.5,56.5 + parent: 2 + - uid: 41268 + components: + - type: Transform + pos: -95.5,154.5 + parent: 2 + - uid: 41543 + components: + - type: Transform + pos: 56.5,47.5 + parent: 2 + - uid: 41699 + components: + - type: Transform + pos: -96.5,155.5 + parent: 2 + - uid: 41811 + components: + - type: Transform + pos: 56.5,49.5 + parent: 2 + - uid: 41846 + components: + - type: Transform + pos: 56.5,50.5 + parent: 2 + - uid: 41847 + components: + - type: Transform + pos: 57.5,52.5 + parent: 2 + - uid: 41883 + components: + - type: Transform + pos: 44.5,56.5 + parent: 2 + - uid: 42457 + components: + - type: Transform + pos: -96.5,154.5 + parent: 2 + - uid: 42458 + components: + - type: Transform + pos: -74.5,169.5 + parent: 2 + - uid: 42459 + components: + - type: Transform + pos: -74.5,168.5 + parent: 2 + - uid: 42460 + components: + - type: Transform + pos: -74.5,167.5 + parent: 2 + - uid: 42892 + components: + - type: Transform + pos: 45.5,59.5 + parent: 2 +- proto: WallReinforcedDiagonal + entities: + - uid: 4232 + components: + - type: Transform + pos: -68.5,135.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,125.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,125.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,126.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,135.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,134.5 + parent: 2 + - uid: 9153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,75.5 + parent: 2 +- proto: WallRock + entities: + - uid: 185 + components: + - type: Transform + pos: 64.5,26.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 82.5,23.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: 83.5,21.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 45.5,18.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 63.5,22.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: -88.5,103.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 67.5,26.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: -92.5,101.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: -94.5,93.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: -85.5,104.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: -89.5,102.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: -91.5,101.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: -90.5,102.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: -88.5,102.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: -91.5,102.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: -93.5,103.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: -87.5,103.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: 67.5,18.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: -95.5,93.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: -97.5,94.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: -146.5,110.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: -146.5,109.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + pos: 63.5,30.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: 63.5,21.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: 63.5,23.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: 64.5,25.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: 62.5,31.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: 62.5,30.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: 65.5,25.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: 92.5,63.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: 93.5,63.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: 93.5,62.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: -95.5,104.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + pos: 82.5,22.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + pos: -96.5,104.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + pos: -95.5,95.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + pos: -96.5,95.5 + parent: 2 + - uid: 3388 + components: + - type: Transform + pos: -95.5,94.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: -96.5,94.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: -97.5,93.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: -96.5,93.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + pos: -94.5,92.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + pos: 55.5,36.5 + parent: 2 + - uid: 3783 + components: + - type: Transform + pos: 64.5,21.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + pos: -62.5,123.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + pos: -97.5,105.5 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: -145.5,110.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: -99.5,105.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + pos: -100.5,105.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: 74.5,31.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + pos: -90.5,92.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + pos: 79.5,31.5 + parent: 2 + - uid: 5080 + components: + - type: Transform + pos: 43.5,19.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + pos: -94.5,103.5 + parent: 2 + - uid: 5118 + components: + - type: Transform + pos: -97.5,104.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + pos: -98.5,104.5 + parent: 2 + - uid: 5123 + components: + - type: Transform + pos: -98.5,105.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + pos: -86.5,104.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + pos: 82.5,19.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: 81.5,31.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + pos: 82.5,16.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + pos: 80.5,31.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + pos: 85.5,35.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + pos: 85.5,36.5 + parent: 2 + - uid: 5472 + components: + - type: Transform + pos: 86.5,36.5 + parent: 2 + - uid: 5480 + components: + - type: Transform + pos: 85.5,34.5 + parent: 2 + - uid: 5486 + components: + - type: Transform + pos: 79.5,24.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + pos: 78.5,24.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + pos: 77.5,24.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + pos: 76.5,24.5 + parent: 2 + - uid: 5494 + components: + - type: Transform + pos: 75.5,24.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: 75.5,23.5 + parent: 2 + - uid: 5496 + components: + - type: Transform + pos: 79.5,25.5 + parent: 2 + - uid: 5497 + components: + - type: Transform + pos: 78.5,25.5 + parent: 2 + - uid: 5498 + components: + - type: Transform + pos: 77.5,25.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: 76.5,25.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: 75.5,25.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + pos: 74.5,26.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: 68.5,26.5 + parent: 2 + - uid: 5510 + components: + - type: Transform + pos: 75.5,26.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + pos: 76.5,26.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + pos: 62.5,36.5 + parent: 2 + - uid: 5523 + components: + - type: Transform + pos: 62.5,35.5 + parent: 2 + - uid: 5525 + components: + - type: Transform + pos: 61.5,36.5 + parent: 2 + - uid: 5526 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 + - uid: 5527 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 + - uid: 5530 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 5533 + components: + - type: Transform + pos: 59.5,34.5 + parent: 2 + - uid: 5535 + components: + - type: Transform + pos: 48.5,39.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 5537 + components: + - type: Transform + pos: 43.5,38.5 + parent: 2 + - uid: 5538 + components: + - type: Transform + pos: 49.5,38.5 + parent: 2 + - uid: 5539 + components: + - type: Transform + pos: 49.5,40.5 + parent: 2 + - uid: 5540 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + pos: 48.5,38.5 + parent: 2 + - uid: 5542 + components: + - type: Transform + pos: 48.5,37.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + pos: 46.5,38.5 + parent: 2 + - uid: 5546 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 5547 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 5548 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + pos: 46.5,36.5 + parent: 2 + - uid: 5556 + components: + - type: Transform + pos: 80.5,16.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + pos: 81.5,16.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + pos: 82.5,18.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + pos: 82.5,15.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + pos: 83.5,13.5 + parent: 2 + - uid: 5569 + components: + - type: Transform + pos: 83.5,12.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + pos: 84.5,12.5 + parent: 2 + - uid: 5573 + components: + - type: Transform + pos: 83.5,11.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + pos: 67.5,25.5 + parent: 2 + - uid: 5598 + components: + - type: Transform + pos: 62.5,33.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: 61.5,33.5 + parent: 2 + - uid: 5702 + components: + - type: Transform + pos: -94.5,99.5 + parent: 2 + - uid: 5716 + components: + - type: Transform + pos: 94.5,62.5 + parent: 2 + - uid: 5718 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + pos: 62.5,32.5 + parent: 2 + - uid: 5728 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: 66.5,27.5 + parent: 2 + - uid: 5764 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 5765 + components: + - type: Transform + pos: 66.5,26.5 + parent: 2 + - uid: 5825 + components: + - type: Transform + pos: 92.5,42.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + pos: 92.5,43.5 + parent: 2 + - uid: 5833 + components: + - type: Transform + pos: 93.5,43.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + pos: 94.5,43.5 + parent: 2 + - uid: 5843 + components: + - type: Transform + pos: 96.5,44.5 + parent: 2 + - uid: 5846 + components: + - type: Transform + pos: 97.5,45.5 + parent: 2 + - uid: 5847 + components: + - type: Transform + pos: 98.5,45.5 + parent: 2 + - uid: 5853 + components: + - type: Transform + pos: 95.5,43.5 + parent: 2 + - uid: 5855 + components: + - type: Transform + pos: 97.5,44.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: 98.5,44.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: 99.5,45.5 + parent: 2 + - uid: 5860 + components: + - type: Transform + pos: 100.5,45.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: 101.5,45.5 + parent: 2 + - uid: 5984 + components: + - type: Transform + pos: 65.5,26.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: 93.5,45.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + pos: 92.5,45.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + pos: 93.5,26.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + pos: 93.5,27.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + pos: 94.5,25.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: 95.5,24.5 + parent: 2 + - uid: 6033 + components: + - type: Transform + pos: 96.5,23.5 + parent: 2 + - uid: 6034 + components: + - type: Transform + pos: 96.5,22.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + pos: 97.5,21.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + pos: 97.5,22.5 + parent: 2 + - uid: 6050 + components: + - type: Transform + pos: 92.5,44.5 + parent: 2 + - uid: 6052 + components: + - type: Transform + pos: 94.5,44.5 + parent: 2 + - uid: 6053 + components: + - type: Transform + pos: 93.5,44.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: -89.5,93.5 + parent: 2 + - uid: 6549 + components: + - type: Transform + pos: 83.5,22.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + pos: -87.5,97.5 + parent: 2 + - uid: 7607 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 7729 + components: + - type: Transform + pos: -63.5,121.5 + parent: 2 + - uid: 7734 + components: + - type: Transform + pos: -63.5,122.5 + parent: 2 + - uid: 7738 + components: + - type: Transform + pos: -62.5,122.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + pos: -63.5,123.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + pos: -61.5,123.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - uid: 7820 + components: + - type: Transform + pos: -62.5,124.5 + parent: 2 + - uid: 7830 + components: + - type: Transform + pos: -61.5,124.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + pos: -63.5,120.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + pos: -62.5,121.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + pos: -63.5,119.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + pos: -134.5,81.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + pos: 47.5,30.5 + parent: 2 + - uid: 8341 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + pos: 43.5,26.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + pos: 44.5,18.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 + - uid: 8421 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + pos: 74.5,24.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + pos: 74.5,23.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + pos: 68.5,25.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + pos: 44.5,17.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - uid: 8464 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + pos: 48.5,19.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: -123.5,86.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + pos: -123.5,87.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + pos: -122.5,86.5 + parent: 2 + - uid: 8492 + components: + - type: Transform + pos: -122.5,87.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + pos: -123.5,89.5 + parent: 2 + - uid: 8494 + components: + - type: Transform + pos: -123.5,88.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + pos: -122.5,89.5 + parent: 2 + - uid: 8511 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 8526 + components: + - type: Transform + pos: -122.5,88.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + pos: -120.5,89.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: -121.5,88.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + pos: -121.5,89.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + pos: 40.5,19.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 8654 + components: + - type: Transform + pos: 60.5,23.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + pos: 59.5,24.5 + parent: 2 + - uid: 8656 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 + - uid: 8657 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 + - uid: 8658 + components: + - type: Transform + pos: 63.5,25.5 + parent: 2 + - uid: 8661 + components: + - type: Transform + pos: 62.5,23.5 + parent: 2 + - uid: 8662 + components: + - type: Transform + pos: 62.5,22.5 + parent: 2 + - uid: 8663 + components: + - type: Transform + pos: 59.5,27.5 + parent: 2 + - uid: 8664 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 8666 + components: + - type: Transform + pos: 58.5,22.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 8689 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + pos: 48.5,30.5 + parent: 2 + - uid: 8692 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 8696 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 10133 + components: + - type: Transform + pos: -57.5,109.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + pos: -58.5,114.5 + parent: 2 + - uid: 10135 + components: + - type: Transform + pos: -58.5,110.5 + parent: 2 + - uid: 10277 + components: + - type: Transform + pos: -58.5,111.5 + parent: 2 + - uid: 10278 + components: + - type: Transform + pos: -58.5,112.5 + parent: 2 + - uid: 10306 + components: + - type: Transform + pos: -58.5,113.5 + parent: 2 + - uid: 10310 + components: + - type: Transform + pos: -84.5,102.5 + parent: 2 + - uid: 10312 + components: + - type: Transform + pos: -84.5,103.5 + parent: 2 + - uid: 10314 + components: + - type: Transform + pos: -86.5,102.5 + parent: 2 + - uid: 10315 + components: + - type: Transform + pos: -86.5,103.5 + parent: 2 + - uid: 10379 + components: + - type: Transform + pos: -85.5,102.5 + parent: 2 + - uid: 11395 + components: + - type: Transform + pos: -139.5,107.5 + parent: 2 + - uid: 12268 + components: + - type: Transform + pos: -90.5,91.5 + parent: 2 + - uid: 12548 + components: + - type: Transform + pos: -95.5,101.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + pos: 79.5,20.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + pos: -90.5,100.5 + parent: 2 + - uid: 13798 + components: + - type: Transform + pos: -59.5,116.5 + parent: 2 + - uid: 13938 + components: + - type: Transform + pos: -58.5,109.5 + parent: 2 + - uid: 14036 + components: + - type: Transform + pos: -57.5,110.5 + parent: 2 + - uid: 14141 + components: + - type: Transform + pos: -96.5,96.5 + parent: 2 + - uid: 14156 + components: + - type: Transform + pos: -85.5,103.5 + parent: 2 + - uid: 14861 + components: + - type: Transform + pos: -98.5,94.5 + parent: 2 + - uid: 15013 + components: + - type: Transform + pos: -98.5,96.5 + parent: 2 + - uid: 15015 + components: + - type: Transform + pos: -97.5,95.5 + parent: 2 + - uid: 15355 + components: + - type: Transform + pos: -136.5,87.5 + parent: 2 + - uid: 15589 + components: + - type: Transform + pos: -84.5,93.5 + parent: 2 + - uid: 17367 + components: + - type: Transform + pos: -99.5,94.5 + parent: 2 + - uid: 17406 + components: + - type: Transform + pos: -99.5,93.5 + parent: 2 + - uid: 17474 + components: + - type: Transform + pos: -80.5,110.5 + parent: 2 + - uid: 17479 + components: + - type: Transform + pos: -80.5,111.5 + parent: 2 + - uid: 17482 + components: + - type: Transform + pos: -79.5,110.5 + parent: 2 + - uid: 17485 + components: + - type: Transform + pos: -79.5,111.5 + parent: 2 + - uid: 17486 + components: + - type: Transform + pos: -78.5,110.5 + parent: 2 + - uid: 17487 + components: + - type: Transform + pos: -78.5,111.5 + parent: 2 + - uid: 17516 + components: + - type: Transform + pos: -79.5,112.5 + parent: 2 + - uid: 17517 + components: + - type: Transform + pos: -78.5,112.5 + parent: 2 + - uid: 17518 + components: + - type: Transform + pos: -77.5,112.5 + parent: 2 + - uid: 17525 + components: + - type: Transform + pos: -97.5,96.5 + parent: 2 + - uid: 17530 + components: + - type: Transform + pos: -77.5,111.5 + parent: 2 + - uid: 17537 + components: + - type: Transform + pos: -58.5,115.5 + parent: 2 + - uid: 17544 + components: + - type: Transform + pos: -60.5,116.5 + parent: 2 + - uid: 17545 + components: + - type: Transform + pos: -61.5,116.5 + parent: 2 + - uid: 17547 + components: + - type: Transform + pos: -59.5,117.5 + parent: 2 + - uid: 17548 + components: + - type: Transform + pos: -62.5,116.5 + parent: 2 + - uid: 17549 + components: + - type: Transform + pos: -60.5,117.5 + parent: 2 + - uid: 17551 + components: + - type: Transform + pos: -98.5,95.5 + parent: 2 + - uid: 17553 + components: + - type: Transform + pos: -70.5,114.5 + parent: 2 + - uid: 17555 + components: + - type: Transform + pos: -71.5,114.5 + parent: 2 + - uid: 17558 + components: + - type: Transform + pos: -72.5,114.5 + parent: 2 + - uid: 17559 + components: + - type: Transform + pos: -73.5,114.5 + parent: 2 + - uid: 17564 + components: + - type: Transform + pos: -77.5,110.5 + parent: 2 + - uid: 17573 + components: + - type: Transform + pos: -87.5,98.5 + parent: 2 + - uid: 17575 + components: + - type: Transform + pos: -139.5,87.5 + parent: 2 + - uid: 17608 + components: + - type: Transform + pos: -136.5,88.5 + parent: 2 + - uid: 17610 + components: + - type: Transform + pos: -136.5,89.5 + parent: 2 + - uid: 17629 + components: + - type: Transform + pos: -139.5,89.5 + parent: 2 + - uid: 17633 + components: + - type: Transform + pos: -139.5,88.5 + parent: 2 + - uid: 17637 + components: + - type: Transform + pos: -81.5,110.5 + parent: 2 + - uid: 17658 + components: + - type: Transform + pos: -55.5,93.5 + parent: 2 + - uid: 17689 + components: + - type: Transform + pos: -81.5,111.5 + parent: 2 + - uid: 17695 + components: + - type: Transform + pos: -130.5,80.5 + parent: 2 + - uid: 17731 + components: + - type: Transform + pos: -131.5,80.5 + parent: 2 + - uid: 17732 + components: + - type: Transform + pos: -131.5,79.5 + parent: 2 + - uid: 17742 + components: + - type: Transform + pos: -131.5,81.5 + parent: 2 + - uid: 17744 + components: + - type: Transform + pos: -114.5,110.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + pos: -115.5,110.5 + parent: 2 + - uid: 17771 + components: + - type: Transform + pos: -130.5,79.5 + parent: 2 + - uid: 17822 + components: + - type: Transform + pos: 79.5,19.5 + parent: 2 + - uid: 17832 + components: + - type: Transform + pos: -133.5,82.5 + parent: 2 + - uid: 17857 + components: + - type: Transform + pos: -133.5,81.5 + parent: 2 + - uid: 17868 + components: + - type: Transform + pos: 94.5,26.5 + parent: 2 + - uid: 17872 + components: + - type: Transform + pos: 94.5,27.5 + parent: 2 + - uid: 17878 + components: + - type: Transform + pos: -137.5,82.5 + parent: 2 + - uid: 17881 + components: + - type: Transform + pos: 93.5,28.5 + parent: 2 + - uid: 17886 + components: + - type: Transform + pos: 95.5,25.5 + parent: 2 + - uid: 17887 + components: + - type: Transform + pos: 96.5,24.5 + parent: 2 + - uid: 18064 + components: + - type: Transform + pos: -84.5,104.5 + parent: 2 + - uid: 18242 + components: + - type: Transform + pos: -82.5,111.5 + parent: 2 + - uid: 18318 + components: + - type: Transform + pos: -136.5,80.5 + parent: 2 + - uid: 18328 + components: + - type: Transform + pos: -137.5,80.5 + parent: 2 + - uid: 18334 + components: + - type: Transform + pos: -138.5,80.5 + parent: 2 + - uid: 18354 + components: + - type: Transform + pos: -120.5,111.5 + parent: 2 + - uid: 18532 + components: + - type: Transform + pos: -138.5,82.5 + parent: 2 + - uid: 18550 + components: + - type: Transform + pos: -137.5,81.5 + parent: 2 + - uid: 18611 + components: + - type: Transform + pos: -82.5,110.5 + parent: 2 + - uid: 18724 + components: + - type: Transform + pos: -139.5,82.5 + parent: 2 + - uid: 18735 + components: + - type: Transform + pos: -99.5,95.5 + parent: 2 + - uid: 18744 + components: + - type: Transform + pos: -99.5,92.5 + parent: 2 + - uid: 18778 + components: + - type: Transform + pos: -87.5,93.5 + parent: 2 + - uid: 18782 + components: + - type: Transform + pos: -85.5,93.5 + parent: 2 + - uid: 18783 + components: + - type: Transform + pos: -99.5,96.5 + parent: 2 + - uid: 18791 + components: + - type: Transform + pos: -87.5,102.5 + parent: 2 + - uid: 18911 + components: + - type: Transform + pos: -122.5,110.5 + parent: 2 + - uid: 18973 + components: + - type: Transform + pos: -138.5,81.5 + parent: 2 + - uid: 19014 + components: + - type: Transform + pos: -134.5,82.5 + parent: 2 + - uid: 19086 + components: + - type: Transform + pos: -148.5,109.5 + parent: 2 + - uid: 19309 + components: + - type: Transform + pos: -119.5,110.5 + parent: 2 + - uid: 19341 + components: + - type: Transform + pos: -118.5,110.5 + parent: 2 + - uid: 19344 + components: + - type: Transform + pos: -119.5,111.5 + parent: 2 + - uid: 19375 + components: + - type: Transform + pos: -132.5,81.5 + parent: 2 + - uid: 19376 + components: + - type: Transform + pos: -132.5,82.5 + parent: 2 + - uid: 19528 + components: + - type: Transform + pos: -118.5,111.5 + parent: 2 + - uid: 21335 + components: + - type: Transform + pos: -88.5,93.5 + parent: 2 + - uid: 21342 + components: + - type: Transform + pos: -95.5,100.5 + parent: 2 + - uid: 21592 + components: + - type: Transform + pos: -88.5,94.5 + parent: 2 + - uid: 22177 + components: + - type: Transform + pos: -96.5,101.5 + parent: 2 + - uid: 22255 + components: + - type: Transform + pos: -94.5,100.5 + parent: 2 + - uid: 24265 + components: + - type: Transform + pos: -90.5,101.5 + parent: 2 + - uid: 24266 + components: + - type: Transform + pos: -89.5,101.5 + parent: 2 + - uid: 24267 + components: + - type: Transform + pos: -89.5,103.5 + parent: 2 + - uid: 24279 + components: + - type: Transform + pos: -148.5,108.5 + parent: 2 + - uid: 24280 + components: + - type: Transform + pos: -147.5,109.5 + parent: 2 + - uid: 24281 + components: + - type: Transform + pos: -147.5,108.5 + parent: 2 + - uid: 24282 + components: + - type: Transform + pos: -116.5,105.5 + parent: 2 + - uid: 24283 + components: + - type: Transform + pos: -116.5,106.5 + parent: 2 + - uid: 24284 + components: + - type: Transform + pos: -116.5,107.5 + parent: 2 + - uid: 24288 + components: + - type: Transform + pos: -115.5,105.5 + parent: 2 + - uid: 24289 + components: + - type: Transform + pos: -115.5,106.5 + parent: 2 + - uid: 24290 + components: + - type: Transform + pos: -115.5,107.5 + parent: 2 + - uid: 24292 + components: + - type: Transform + pos: -115.5,108.5 + parent: 2 + - uid: 24293 + components: + - type: Transform + pos: -115.5,109.5 + parent: 2 + - uid: 24295 + components: + - type: Transform + pos: -140.5,106.5 + parent: 2 + - uid: 24296 + components: + - type: Transform + pos: -145.5,109.5 + parent: 2 + - uid: 24297 + components: + - type: Transform + pos: -114.5,105.5 + parent: 2 + - uid: 24300 + components: + - type: Transform + pos: -140.5,107.5 + parent: 2 + - uid: 24334 + components: + - type: Transform + pos: -144.5,109.5 + parent: 2 + - uid: 24367 + components: + - type: Transform + pos: -147.5,107.5 + parent: 2 + - uid: 24380 + components: + - type: Transform + pos: -143.5,109.5 + parent: 2 + - uid: 24391 + components: + - type: Transform + pos: -143.5,108.5 + parent: 2 + - uid: 24399 + components: + - type: Transform + pos: -142.5,109.5 + parent: 2 + - uid: 24402 + components: + - type: Transform + pos: -142.5,108.5 + parent: 2 + - uid: 24403 + components: + - type: Transform + pos: -142.5,110.5 + parent: 2 + - uid: 24405 + components: + - type: Transform + pos: -143.5,110.5 + parent: 2 + - uid: 24408 + components: + - type: Transform + pos: -144.5,110.5 + parent: 2 + - uid: 24418 + components: + - type: Transform + pos: -147.5,110.5 + parent: 2 + - uid: 24421 + components: + - type: Transform + pos: -147.5,111.5 + parent: 2 + - uid: 24426 + components: + - type: Transform + pos: -146.5,111.5 + parent: 2 + - uid: 24429 + components: + - type: Transform + pos: -145.5,111.5 + parent: 2 + - uid: 24660 + components: + - type: Transform + pos: -144.5,111.5 + parent: 2 + - uid: 24718 + components: + - type: Transform + pos: -143.5,111.5 + parent: 2 + - uid: 24778 + components: + - type: Transform + pos: -144.5,112.5 + parent: 2 + - uid: 24779 + components: + - type: Transform + pos: -145.5,112.5 + parent: 2 + - uid: 24801 + components: + - type: Transform + pos: -146.5,112.5 + parent: 2 + - uid: 24811 + components: + - type: Transform + pos: -146.5,108.5 + parent: 2 + - uid: 25177 + components: + - type: Transform + pos: -139.5,83.5 + parent: 2 + - uid: 25178 + components: + - type: Transform + pos: -139.5,84.5 + parent: 2 + - uid: 25179 + components: + - type: Transform + pos: -139.5,85.5 + parent: 2 + - uid: 25180 + components: + - type: Transform + pos: -139.5,86.5 + parent: 2 + - uid: 25182 + components: + - type: Transform + pos: -138.5,83.5 + parent: 2 + - uid: 25183 + components: + - type: Transform + pos: -138.5,84.5 + parent: 2 + - uid: 25184 + components: + - type: Transform + pos: -138.5,85.5 + parent: 2 + - uid: 25185 + components: + - type: Transform + pos: -138.5,86.5 + parent: 2 + - uid: 25187 + components: + - type: Transform + pos: -137.5,83.5 + parent: 2 + - uid: 25202 + components: + - type: Transform + pos: -134.5,83.5 + parent: 2 + - uid: 25207 + components: + - type: Transform + pos: -133.5,83.5 + parent: 2 + - uid: 25236 + components: + - type: Transform + pos: -130.5,85.5 + parent: 2 + - uid: 25239 + components: + - type: Transform + pos: -129.5,84.5 + parent: 2 + - uid: 25240 + components: + - type: Transform + pos: -129.5,85.5 + parent: 2 + - uid: 25243 + components: + - type: Transform + pos: -128.5,84.5 + parent: 2 + - uid: 25244 + components: + - type: Transform + pos: -128.5,85.5 + parent: 2 + - uid: 25247 + components: + - type: Transform + pos: -127.5,84.5 + parent: 2 + - uid: 25248 + components: + - type: Transform + pos: -127.5,85.5 + parent: 2 + - uid: 25251 + components: + - type: Transform + pos: -126.5,84.5 + parent: 2 + - uid: 25252 + components: + - type: Transform + pos: -126.5,85.5 + parent: 2 + - uid: 25253 + components: + - type: Transform + pos: -131.5,86.5 + parent: 2 + - uid: 25254 + components: + - type: Transform + pos: -134.5,84.5 + parent: 2 + - uid: 25255 + components: + - type: Transform + pos: -125.5,84.5 + parent: 2 + - uid: 25256 + components: + - type: Transform + pos: -125.5,85.5 + parent: 2 + - uid: 25258 + components: + - type: Transform + pos: -124.5,83.5 + parent: 2 + - uid: 25259 + components: + - type: Transform + pos: -124.5,84.5 + parent: 2 + - uid: 25260 + components: + - type: Transform + pos: -124.5,85.5 + parent: 2 + - uid: 25262 + components: + - type: Transform + pos: -123.5,83.5 + parent: 2 + - uid: 25263 + components: + - type: Transform + pos: -123.5,84.5 + parent: 2 + - uid: 25264 + components: + - type: Transform + pos: -123.5,85.5 + parent: 2 + - uid: 25269 + components: + - type: Transform + pos: -122.5,85.5 + parent: 2 + - uid: 25739 + components: + - type: Transform + pos: -131.5,88.5 + parent: 2 + - uid: 25740 + components: + - type: Transform + pos: -131.5,89.5 + parent: 2 + - uid: 25741 + components: + - type: Transform + pos: -131.5,87.5 + parent: 2 + - uid: 25742 + components: + - type: Transform + pos: -128.5,80.5 + parent: 2 + - uid: 25743 + components: + - type: Transform + pos: -135.5,84.5 + parent: 2 + - uid: 25744 + components: + - type: Transform + pos: -132.5,79.5 + parent: 2 + - uid: 25746 + components: + - type: Transform + pos: -135.5,88.5 + parent: 2 + - uid: 25748 + components: + - type: Transform + pos: -127.5,80.5 + parent: 2 + - uid: 25751 + components: + - type: Transform + pos: -132.5,89.5 + parent: 2 + - uid: 25752 + components: + - type: Transform + pos: -135.5,89.5 + parent: 2 + - uid: 25753 + components: + - type: Transform + pos: -134.5,89.5 + parent: 2 + - uid: 25754 + components: + - type: Transform + pos: -129.5,80.5 + parent: 2 + - uid: 25756 + components: + - type: Transform + pos: -126.5,80.5 + parent: 2 + - uid: 26035 + components: + - type: Transform + pos: -126.5,81.5 + parent: 2 + - uid: 26036 + components: + - type: Transform + pos: -125.5,81.5 + parent: 2 + - uid: 26038 + components: + - type: Transform + pos: -132.5,78.5 + parent: 2 + - uid: 26039 + components: + - type: Transform + pos: -129.5,79.5 + parent: 2 + - uid: 26042 + components: + - type: Transform + pos: -135.5,85.5 + parent: 2 + - uid: 26043 + components: + - type: Transform + pos: -135.5,86.5 + parent: 2 + - uid: 26047 + components: + - type: Transform + pos: -132.5,80.5 + parent: 2 + - uid: 26330 + components: + - type: Transform + pos: -133.5,80.5 + parent: 2 + - uid: 26340 + components: + - type: Transform + pos: -127.5,83.5 + parent: 2 + - uid: 26341 + components: + - type: Transform + pos: -125.5,83.5 + parent: 2 + - uid: 26342 + components: + - type: Transform + pos: -126.5,83.5 + parent: 2 + - uid: 27151 + components: + - type: Transform + pos: -86.5,93.5 + parent: 2 + - uid: 28662 + components: + - type: Transform + pos: -98.5,102.5 + parent: 2 + - uid: 28663 + components: + - type: Transform + pos: -98.5,103.5 + parent: 2 + - uid: 28861 + components: + - type: Transform + pos: -97.5,102.5 + parent: 2 + - uid: 28864 + components: + - type: Transform + pos: -97.5,103.5 + parent: 2 + - uid: 29106 + components: + - type: Transform + pos: -96.5,102.5 + parent: 2 + - uid: 29108 + components: + - type: Transform + pos: -96.5,103.5 + parent: 2 + - uid: 29352 + components: + - type: Transform + pos: -95.5,102.5 + parent: 2 + - uid: 29363 + components: + - type: Transform + pos: -95.5,103.5 + parent: 2 + - uid: 29397 + components: + - type: Transform + pos: -94.5,102.5 + parent: 2 + - uid: 29408 + components: + - type: Transform + pos: -92.5,102.5 + parent: 2 + - uid: 29409 + components: + - type: Transform + pos: -93.5,102.5 + parent: 2 + - uid: 29411 + components: + - type: Transform + pos: -93.5,101.5 + parent: 2 + - uid: 29412 + components: + - type: Transform + pos: -94.5,101.5 + parent: 2 + - uid: 30647 + components: + - type: Transform + pos: 79.5,16.5 + parent: 2 + - uid: 31636 + components: + - type: Transform + pos: 82.5,24.5 + parent: 2 + - uid: 32718 + components: + - type: Transform + pos: 81.5,24.5 + parent: 2 + - uid: 36164 + components: + - type: Transform + pos: 42.5,58.5 + parent: 2 + - uid: 36166 + components: + - type: Transform + pos: 43.5,58.5 + parent: 2 + - uid: 36817 + components: + - type: Transform + pos: 43.5,55.5 + parent: 2 + - uid: 36824 + components: + - type: Transform + pos: 43.5,56.5 + parent: 2 + - uid: 36828 + components: + - type: Transform + pos: 42.5,57.5 + parent: 2 + - uid: 36829 + components: + - type: Transform + pos: 41.5,58.5 + parent: 2 + - uid: 37915 + components: + - type: Transform + pos: -88.5,97.5 + parent: 2 +- proto: WallRockArtifactFragment + entities: + - uid: 5574 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 +- proto: WallRockBasalt + entities: + - uid: 189 + components: + - type: Transform + pos: -39.5,200.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: -36.5,205.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: 26.5,173.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: -21.5,96.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: -21.5,93.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: -39.5,199.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: -40.5,200.5 + parent: 2 + - uid: 1579 + components: + - type: Transform + pos: -38.5,199.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: -121.5,18.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: 27.5,22.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + pos: 32.5,22.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: 34.5,21.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: -69.5,142.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + pos: -69.5,141.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: 49.5,38.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: 48.5,37.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: 55.5,35.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: -123.5,20.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: -115.5,26.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: -139.5,14.5 + parent: 2 + - uid: 4097 + components: + - type: Transform + pos: -126.5,41.5 + parent: 2 + - uid: 4177 + components: + - type: Transform + pos: -115.5,27.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: -130.5,56.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: -130.5,54.5 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: -130.5,55.5 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: -146.5,9.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: -147.5,9.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: -140.5,15.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: -138.5,15.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: -144.5,10.5 + parent: 2 + - uid: 4938 + components: + - type: Transform + pos: -118.5,20.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: -39.5,201.5 + parent: 2 + - uid: 5170 + components: + - type: Transform + pos: -38.5,201.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + pos: -39.5,202.5 + parent: 2 + - uid: 5214 + components: + - type: Transform + pos: 49.5,40.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + pos: -38.5,202.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + pos: -38.5,200.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 5252 + components: + - type: Transform + pos: 48.5,38.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: 46.5,38.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + pos: 48.5,39.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + pos: 46.5,36.5 + parent: 2 + - uid: 5263 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 + - uid: 5264 + components: + - type: Transform + pos: 43.5,38.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: -38.5,203.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: -127.5,41.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + pos: 85.5,35.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + pos: -128.5,41.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + pos: 85.5,36.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + pos: 86.5,36.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: -37.5,204.5 + parent: 2 + - uid: 5706 + components: + - type: Transform + pos: -37.5,202.5 + parent: 2 + - uid: 5707 + components: + - type: Transform + pos: -37.5,203.5 + parent: 2 + - uid: 5911 + components: + - type: Transform + pos: -120.5,17.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: -122.5,19.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + pos: -133.5,15.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + pos: -134.5,15.5 + parent: 2 + - uid: 7517 + components: + - type: Transform + pos: -33.5,94.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: -32.5,94.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: -103.5,143.5 + parent: 2 + - uid: 8288 + components: + - type: Transform + pos: -74.5,141.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: -73.5,141.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + pos: -73.5,142.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + pos: -74.5,142.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + pos: -32.5,196.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + pos: -35.5,197.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 8460 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: -34.5,197.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + pos: -34.5,196.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: -32.5,194.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + pos: 40.5,20.5 + parent: 2 + - uid: 8503 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2 + - uid: 8508 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - uid: 8517 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 + - uid: 8521 + components: + - type: Transform + pos: -32.5,195.5 + parent: 2 + - uid: 8523 + components: + - type: Transform + pos: -33.5,194.5 + parent: 2 + - uid: 8528 + components: + - type: Transform + pos: -33.5,196.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + pos: -33.5,195.5 + parent: 2 + - uid: 8622 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 8674 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 10814 + components: + - type: Transform + pos: -15.5,102.5 + parent: 2 + - uid: 10815 + components: + - type: Transform + pos: -14.5,101.5 + parent: 2 + - uid: 10816 + components: + - type: Transform + pos: -15.5,101.5 + parent: 2 + - uid: 10817 + components: + - type: Transform + pos: -15.5,103.5 + parent: 2 + - uid: 10819 + components: + - type: Transform + pos: -14.5,102.5 + parent: 2 + - uid: 12041 + components: + - type: Transform + pos: -66.5,61.5 + parent: 2 + - uid: 12819 + components: + - type: Transform + pos: -121.5,16.5 + parent: 2 + - uid: 12820 + components: + - type: Transform + pos: -116.5,25.5 + parent: 2 + - uid: 12821 + components: + - type: Transform + pos: -123.5,23.5 + parent: 2 + - uid: 12822 + components: + - type: Transform + pos: -123.5,22.5 + parent: 2 + - uid: 12823 + components: + - type: Transform + pos: -120.5,20.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + pos: -121.5,20.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + pos: -123.5,21.5 + parent: 2 + - uid: 12828 + components: + - type: Transform + pos: -122.5,20.5 + parent: 2 + - uid: 12829 + components: + - type: Transform + pos: -116.5,26.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + pos: -123.5,18.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + pos: -118.5,19.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + pos: -120.5,25.5 + parent: 2 + - uid: 14153 + components: + - type: Transform + pos: -22.5,96.5 + parent: 2 + - uid: 14159 + components: + - type: Transform + pos: -95.5,142.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + pos: -102.5,143.5 + parent: 2 + - uid: 14167 + components: + - type: Transform + pos: -97.5,142.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + pos: -98.5,140.5 + parent: 2 + - uid: 14191 + components: + - type: Transform + pos: -60.5,179.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + pos: -63.5,179.5 + parent: 2 + - uid: 14194 + components: + - type: Transform + pos: -62.5,180.5 + parent: 2 + - uid: 14195 + components: + - type: Transform + pos: -62.5,179.5 + parent: 2 + - uid: 14198 + components: + - type: Transform + pos: -61.5,180.5 + parent: 2 + - uid: 14206 + components: + - type: Transform + pos: -98.5,141.5 + parent: 2 + - uid: 14215 + components: + - type: Transform + pos: -96.5,142.5 + parent: 2 + - uid: 14242 + components: + - type: Transform + pos: -26.5,174.5 + parent: 2 + - uid: 14248 + components: + - type: Transform + pos: -97.5,141.5 + parent: 2 + - uid: 14800 + components: + - type: Transform + pos: -45.5,53.5 + parent: 2 + - uid: 14855 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 14866 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 14924 + components: + - type: Transform + pos: -45.5,52.5 + parent: 2 + - uid: 14997 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 14998 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 15333 + components: + - type: Transform + pos: -96.5,141.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + pos: -35.5,54.5 + parent: 2 + - uid: 15572 + components: + - type: Transform + pos: -45.5,51.5 + parent: 2 + - uid: 15578 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + pos: 9.5,79.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + pos: 10.5,75.5 + parent: 2 + - uid: 15620 + components: + - type: Transform + pos: 10.5,76.5 + parent: 2 + - uid: 15621 + components: + - type: Transform + pos: 10.5,77.5 + parent: 2 + - uid: 15622 + components: + - type: Transform + pos: 10.5,78.5 + parent: 2 + - uid: 15623 + components: + - type: Transform + pos: 8.5,79.5 + parent: 2 + - uid: 15624 + components: + - type: Transform + pos: 11.5,77.5 + parent: 2 + - uid: 15628 + components: + - type: Transform + pos: 11.5,76.5 + parent: 2 + - uid: 15655 + components: + - type: Transform + pos: 7.5,83.5 + parent: 2 + - uid: 15656 + components: + - type: Transform + pos: 7.5,84.5 + parent: 2 + - uid: 15657 + components: + - type: Transform + pos: 8.5,83.5 + parent: 2 + - uid: 15658 + components: + - type: Transform + pos: 8.5,84.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + pos: 8.5,85.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + pos: 7.5,85.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + pos: 9.5,83.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + pos: 8.5,82.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: 9.5,84.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: 9.5,82.5 + parent: 2 + - uid: 15695 + components: + - type: Transform + pos: -41.5,55.5 + parent: 2 + - uid: 15696 + components: + - type: Transform + pos: -41.5,54.5 + parent: 2 + - uid: 15697 + components: + - type: Transform + pos: -42.5,55.5 + parent: 2 + - uid: 15698 + components: + - type: Transform + pos: -42.5,54.5 + parent: 2 + - uid: 15699 + components: + - type: Transform + pos: -35.5,53.5 + parent: 2 + - uid: 15700 + components: + - type: Transform + pos: -35.5,52.5 + parent: 2 + - uid: 15702 + components: + - type: Transform + pos: -36.5,52.5 + parent: 2 + - uid: 15708 + components: + - type: Transform + pos: -39.5,52.5 + parent: 2 + - uid: 15709 + components: + - type: Transform + pos: -40.5,53.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + pos: -40.5,52.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + pos: -41.5,53.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + pos: -41.5,52.5 + parent: 2 + - uid: 15713 + components: + - type: Transform + pos: -40.5,51.5 + parent: 2 + - uid: 15714 + components: + - type: Transform + pos: -40.5,50.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: -39.5,51.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + pos: -39.5,50.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + pos: -38.5,51.5 + parent: 2 + - uid: 15718 + components: + - type: Transform + pos: -38.5,50.5 + parent: 2 + - uid: 15719 + components: + - type: Transform + pos: -37.5,51.5 + parent: 2 + - uid: 15720 + components: + - type: Transform + pos: -37.5,50.5 + parent: 2 + - uid: 15721 + components: + - type: Transform + pos: -36.5,51.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + pos: -36.5,50.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + pos: -35.5,51.5 + parent: 2 + - uid: 15724 + components: + - type: Transform + pos: -35.5,50.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + pos: -34.5,50.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + pos: -34.5,49.5 + parent: 2 + - uid: 15727 + components: + - type: Transform + pos: -35.5,49.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + pos: -36.5,49.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + pos: -37.5,49.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + pos: -38.5,49.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + pos: -37.5,48.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + pos: -36.5,48.5 + parent: 2 + - uid: 15733 + components: + - type: Transform + pos: -35.5,48.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + pos: -34.5,48.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + pos: -39.5,49.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + pos: -35.5,47.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + pos: -34.5,47.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + pos: -33.5,47.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + pos: -34.5,46.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + pos: -33.5,46.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + pos: -33.5,45.5 + parent: 2 + - uid: 15742 + components: + - type: Transform + pos: -32.5,45.5 + parent: 2 + - uid: 15743 + components: + - type: Transform + pos: -33.5,44.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + pos: -32.5,44.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + pos: -32.5,43.5 + parent: 2 + - uid: 15746 + components: + - type: Transform + pos: -31.5,43.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + pos: -31.5,42.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + pos: -46.5,52.5 + parent: 2 + - uid: 15755 + components: + - type: Transform + pos: -46.5,53.5 + parent: 2 + - uid: 15756 + components: + - type: Transform + pos: -46.5,54.5 + parent: 2 + - uid: 15757 + components: + - type: Transform + pos: -46.5,55.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + pos: -47.5,53.5 + parent: 2 + - uid: 15759 + components: + - type: Transform + pos: -47.5,54.5 + parent: 2 + - uid: 15760 + components: + - type: Transform + pos: -47.5,55.5 + parent: 2 + - uid: 15761 + components: + - type: Transform + pos: -44.5,53.5 + parent: 2 + - uid: 15762 + components: + - type: Transform + pos: -44.5,52.5 + parent: 2 + - uid: 15763 + components: + - type: Transform + pos: -45.5,54.5 + parent: 2 + - uid: 15764 + components: + - type: Transform + pos: -47.5,52.5 + parent: 2 + - uid: 15765 + components: + - type: Transform + pos: -48.5,52.5 + parent: 2 + - uid: 15766 + components: + - type: Transform + pos: -48.5,53.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + pos: -48.5,54.5 + parent: 2 + - uid: 16339 + components: + - type: Transform + pos: -104.5,61.5 + parent: 2 + - uid: 16472 + components: + - type: Transform + pos: -69.5,63.5 + parent: 2 + - uid: 16501 + components: + - type: Transform + pos: -70.5,63.5 + parent: 2 + - uid: 16504 + components: + - type: Transform + pos: -68.5,62.5 + parent: 2 + - uid: 16505 + components: + - type: Transform + pos: -38.5,185.5 + parent: 2 + - uid: 16506 + components: + - type: Transform + pos: -36.5,185.5 + parent: 2 + - uid: 16507 + components: + - type: Transform + pos: -34.5,185.5 + parent: 2 + - uid: 17122 + components: + - type: Transform + pos: -123.5,17.5 + parent: 2 + - uid: 17124 + components: + - type: Transform + pos: -121.5,17.5 + parent: 2 + - uid: 17131 + components: + - type: Transform + pos: -122.5,17.5 + parent: 2 + - uid: 17136 + components: + - type: Transform + pos: -121.5,24.5 + parent: 2 + - uid: 17137 + components: + - type: Transform + pos: -117.5,25.5 + parent: 2 + - uid: 17140 + components: + - type: Transform + pos: -118.5,25.5 + parent: 2 + - uid: 17141 + components: + - type: Transform + pos: -120.5,24.5 + parent: 2 + - uid: 17142 + components: + - type: Transform + pos: -119.5,24.5 + parent: 2 + - uid: 17143 + components: + - type: Transform + pos: -118.5,24.5 + parent: 2 + - uid: 17149 + components: + - type: Transform + pos: -123.5,24.5 + parent: 2 + - uid: 17150 + components: + - type: Transform + pos: -119.5,25.5 + parent: 2 + - uid: 17151 + components: + - type: Transform + pos: -119.5,19.5 + parent: 2 + - uid: 17152 + components: + - type: Transform + pos: -119.5,20.5 + parent: 2 + - uid: 17153 + components: + - type: Transform + pos: -119.5,18.5 + parent: 2 + - uid: 17225 + components: + - type: Transform + pos: -121.5,19.5 + parent: 2 + - uid: 17285 + components: + - type: Transform + pos: -31.5,94.5 + parent: 2 + - uid: 17287 + components: + - type: Transform + pos: -120.5,18.5 + parent: 2 + - uid: 17288 + components: + - type: Transform + pos: -26.5,94.5 + parent: 2 + - uid: 17295 + components: + - type: Transform + pos: -122.5,24.5 + parent: 2 + - uid: 17298 + components: + - type: Transform + pos: -123.5,19.5 + parent: 2 + - uid: 17330 + components: + - type: Transform + pos: -59.5,180.5 + parent: 2 + - uid: 17349 + components: + - type: Transform + pos: -117.5,24.5 + parent: 2 + - uid: 17378 + components: + - type: Transform + pos: -123.5,41.5 + parent: 2 + - uid: 17399 + components: + - type: Transform + pos: -27.5,175.5 + parent: 2 + - uid: 17435 + components: + - type: Transform + pos: -30.5,94.5 + parent: 2 + - uid: 17478 + components: + - type: Transform + pos: -123.5,42.5 + parent: 2 + - uid: 17501 + components: + - type: Transform + pos: -27.5,173.5 + parent: 2 + - uid: 17520 + components: + - type: Transform + pos: -29.5,94.5 + parent: 2 + - uid: 17612 + components: + - type: Transform + pos: -28.5,94.5 + parent: 2 + - uid: 17680 + components: + - type: Transform + pos: -102.5,142.5 + parent: 2 + - uid: 17756 + components: + - type: Transform + pos: -107.5,141.5 + parent: 2 + - uid: 18035 + components: + - type: Transform + pos: -98.5,142.5 + parent: 2 + - uid: 18134 + components: + - type: Transform + pos: -100.5,142.5 + parent: 2 + - uid: 18204 + components: + - type: Transform + pos: -99.5,142.5 + parent: 2 + - uid: 18212 + components: + - type: Transform + pos: -71.5,141.5 + parent: 2 + - uid: 18214 + components: + - type: Transform + pos: -101.5,142.5 + parent: 2 + - uid: 18230 + components: + - type: Transform + pos: -88.5,141.5 + parent: 2 + - uid: 18287 + components: + - type: Transform + pos: -107.5,145.5 + parent: 2 + - uid: 18299 + components: + - type: Transform + pos: -106.5,145.5 + parent: 2 + - uid: 18319 + components: + - type: Transform + pos: -82.5,134.5 + parent: 2 + - uid: 18696 + components: + - type: Transform + pos: 29.5,168.5 + parent: 2 + - uid: 18866 + components: + - type: Transform + pos: -56.5,167.5 + parent: 2 + - uid: 18868 + components: + - type: Transform + pos: -57.5,166.5 + parent: 2 + - uid: 18889 + components: + - type: Transform + pos: -100.5,152.5 + parent: 2 + - uid: 18898 + components: + - type: Transform + pos: -57.5,167.5 + parent: 2 + - uid: 18963 + components: + - type: Transform + pos: -100.5,151.5 + parent: 2 + - uid: 19126 + components: + - type: Transform + pos: -26.5,173.5 + parent: 2 + - uid: 19275 + components: + - type: Transform + pos: 26.5,171.5 + parent: 2 + - uid: 19293 + components: + - type: Transform + pos: 26.5,172.5 + parent: 2 + - uid: 19302 + components: + - type: Transform + pos: 26.5,170.5 + parent: 2 + - uid: 20036 + components: + - type: Transform + pos: -66.5,62.5 + parent: 2 + - uid: 20629 + components: + - type: Transform + pos: -101.5,151.5 + parent: 2 + - uid: 21079 + components: + - type: Transform + pos: -59.5,181.5 + parent: 2 + - uid: 21081 + components: + - type: Transform + pos: -57.5,178.5 + parent: 2 + - uid: 21083 + components: + - type: Transform + pos: -64.5,176.5 + parent: 2 + - uid: 21084 + components: + - type: Transform + pos: -64.5,177.5 + parent: 2 + - uid: 21085 + components: + - type: Transform + pos: -63.5,176.5 + parent: 2 + - uid: 21087 + components: + - type: Transform + pos: -56.5,178.5 + parent: 2 + - uid: 21088 + components: + - type: Transform + pos: -55.5,178.5 + parent: 2 + - uid: 21089 + components: + - type: Transform + pos: -54.5,178.5 + parent: 2 + - uid: 21090 + components: + - type: Transform + pos: -53.5,178.5 + parent: 2 + - uid: 21091 + components: + - type: Transform + pos: -55.5,177.5 + parent: 2 + - uid: 21092 + components: + - type: Transform + pos: -56.5,177.5 + parent: 2 + - uid: 21093 + components: + - type: Transform + pos: -57.5,177.5 + parent: 2 + - uid: 21094 + components: + - type: Transform + pos: -58.5,177.5 + parent: 2 + - uid: 21095 + components: + - type: Transform + pos: -58.5,178.5 + parent: 2 + - uid: 21096 + components: + - type: Transform + pos: -59.5,178.5 + parent: 2 + - uid: 21098 + components: + - type: Transform + pos: -59.5,179.5 + parent: 2 + - uid: 21099 + components: + - type: Transform + pos: -61.5,181.5 + parent: 2 + - uid: 21100 + components: + - type: Transform + pos: -59.5,182.5 + parent: 2 + - uid: 21101 + components: + - type: Transform + pos: -59.5,183.5 + parent: 2 + - uid: 21102 + components: + - type: Transform + pos: -59.5,184.5 + parent: 2 + - uid: 21103 + components: + - type: Transform + pos: -58.5,185.5 + parent: 2 + - uid: 21104 + components: + - type: Transform + pos: -58.5,186.5 + parent: 2 + - uid: 21105 + components: + - type: Transform + pos: -59.5,185.5 + parent: 2 + - uid: 21106 + components: + - type: Transform + pos: -57.5,187.5 + parent: 2 + - uid: 21107 + components: + - type: Transform + pos: -60.5,184.5 + parent: 2 + - uid: 21109 + components: + - type: Transform + pos: -60.5,182.5 + parent: 2 + - uid: 21110 + components: + - type: Transform + pos: -61.5,183.5 + parent: 2 + - uid: 21111 + components: + - type: Transform + pos: -61.5,182.5 + parent: 2 + - uid: 21112 + components: + - type: Transform + pos: -60.5,181.5 + parent: 2 + - uid: 21113 + components: + - type: Transform + pos: -62.5,181.5 + parent: 2 + - uid: 21115 + components: + - type: Transform + pos: -64.5,179.5 + parent: 2 + - uid: 21116 + components: + - type: Transform + pos: -60.5,180.5 + parent: 2 + - uid: 21182 + components: + - type: Transform + pos: -55.5,174.5 + parent: 2 + - uid: 21183 + components: + - type: Transform + pos: -54.5,174.5 + parent: 2 + - uid: 21185 + components: + - type: Transform + pos: -54.5,175.5 + parent: 2 + - uid: 21186 + components: + - type: Transform + pos: -53.5,175.5 + parent: 2 + - uid: 21187 + components: + - type: Transform + pos: -52.5,175.5 + parent: 2 + - uid: 21188 + components: + - type: Transform + pos: -52.5,176.5 + parent: 2 + - uid: 21238 + components: + - type: Transform + pos: -56.5,163.5 + parent: 2 + - uid: 21239 + components: + - type: Transform + pos: -56.5,162.5 + parent: 2 + - uid: 21240 + components: + - type: Transform + pos: -55.5,162.5 + parent: 2 + - uid: 21246 + components: + - type: Transform + pos: -57.5,165.5 + parent: 2 + - uid: 21297 + components: + - type: Transform + pos: -53.5,174.5 + parent: 2 + - uid: 21469 + components: + - type: Transform + pos: -105.5,141.5 + parent: 2 + - uid: 21472 + components: + - type: Transform + pos: -105.5,139.5 + parent: 2 + - uid: 21473 + components: + - type: Transform + pos: -106.5,139.5 + parent: 2 + - uid: 21474 + components: + - type: Transform + pos: -106.5,140.5 + parent: 2 + - uid: 21475 + components: + - type: Transform + pos: -107.5,140.5 + parent: 2 + - uid: 21476 + components: + - type: Transform + pos: -107.5,139.5 + parent: 2 + - uid: 21477 + components: + - type: Transform + pos: -108.5,139.5 + parent: 2 + - uid: 21478 + components: + - type: Transform + pos: -108.5,138.5 + parent: 2 + - uid: 21479 + components: + - type: Transform + pos: -106.5,135.5 + parent: 2 + - uid: 21480 + components: + - type: Transform + pos: -107.5,135.5 + parent: 2 + - uid: 21481 + components: + - type: Transform + pos: -105.5,136.5 + parent: 2 + - uid: 21482 + components: + - type: Transform + pos: -104.5,136.5 + parent: 2 + - uid: 21483 + components: + - type: Transform + pos: -106.5,136.5 + parent: 2 + - uid: 21484 + components: + - type: Transform + pos: -105.5,137.5 + parent: 2 + - uid: 21485 + components: + - type: Transform + pos: -104.5,137.5 + parent: 2 + - uid: 21487 + components: + - type: Transform + pos: -105.5,138.5 + parent: 2 + - uid: 21488 + components: + - type: Transform + pos: -106.5,138.5 + parent: 2 + - uid: 21489 + components: + - type: Transform + pos: -106.5,137.5 + parent: 2 + - uid: 21490 + components: + - type: Transform + pos: -107.5,137.5 + parent: 2 + - uid: 21491 + components: + - type: Transform + pos: -107.5,136.5 + parent: 2 + - uid: 21492 + components: + - type: Transform + pos: -103.5,136.5 + parent: 2 + - uid: 21493 + components: + - type: Transform + pos: -103.5,137.5 + parent: 2 + - uid: 21494 + components: + - type: Transform + pos: -102.5,137.5 + parent: 2 + - uid: 21495 + components: + - type: Transform + pos: -102.5,138.5 + parent: 2 + - uid: 21496 + components: + - type: Transform + pos: -103.5,138.5 + parent: 2 + - uid: 21497 + components: + - type: Transform + pos: -101.5,138.5 + parent: 2 + - uid: 21498 + components: + - type: Transform + pos: -101.5,139.5 + parent: 2 + - uid: 21499 + components: + - type: Transform + pos: -102.5,139.5 + parent: 2 + - uid: 21500 + components: + - type: Transform + pos: -104.5,139.5 + parent: 2 + - uid: 21501 + components: + - type: Transform + pos: -103.5,140.5 + parent: 2 + - uid: 21502 + components: + - type: Transform + pos: -103.5,139.5 + parent: 2 + - uid: 21504 + components: + - type: Transform + pos: -101.5,141.5 + parent: 2 + - uid: 21505 + components: + - type: Transform + pos: -102.5,141.5 + parent: 2 + - uid: 21507 + components: + - type: Transform + pos: -101.5,140.5 + parent: 2 + - uid: 21508 + components: + - type: Transform + pos: -100.5,141.5 + parent: 2 + - uid: 21509 + components: + - type: Transform + pos: -100.5,140.5 + parent: 2 + - uid: 21510 + components: + - type: Transform + pos: -100.5,139.5 + parent: 2 + - uid: 21511 + components: + - type: Transform + pos: -99.5,141.5 + parent: 2 + - uid: 21512 + components: + - type: Transform + pos: -99.5,140.5 + parent: 2 + - uid: 21513 + components: + - type: Transform + pos: -99.5,139.5 + parent: 2 + - uid: 21514 + components: + - type: Transform + pos: -107.5,142.5 + parent: 2 + - uid: 21515 + components: + - type: Transform + pos: -106.5,141.5 + parent: 2 + - uid: 21516 + components: + - type: Transform + pos: -106.5,142.5 + parent: 2 + - uid: 21517 + components: + - type: Transform + pos: -106.5,143.5 + parent: 2 + - uid: 21518 + components: + - type: Transform + pos: -106.5,144.5 + parent: 2 + - uid: 21519 + components: + - type: Transform + pos: -105.5,142.5 + parent: 2 + - uid: 21521 + components: + - type: Transform + pos: -105.5,144.5 + parent: 2 + - uid: 21522 + components: + - type: Transform + pos: -105.5,145.5 + parent: 2 + - uid: 21523 + components: + - type: Transform + pos: -104.5,142.5 + parent: 2 + - uid: 21524 + components: + - type: Transform + pos: -104.5,143.5 + parent: 2 + - uid: 21525 + components: + - type: Transform + pos: -104.5,144.5 + parent: 2 + - uid: 21526 + components: + - type: Transform + pos: -104.5,145.5 + parent: 2 + - uid: 21527 + components: + - type: Transform + pos: -109.5,136.5 + parent: 2 + - uid: 21528 + components: + - type: Transform + pos: -108.5,135.5 + parent: 2 + - uid: 21529 + components: + - type: Transform + pos: -108.5,137.5 + parent: 2 + - uid: 21530 + components: + - type: Transform + pos: -108.5,136.5 + parent: 2 + - uid: 21531 + components: + - type: Transform + pos: -110.5,135.5 + parent: 2 + - uid: 21532 + components: + - type: Transform + pos: -109.5,135.5 + parent: 2 + - uid: 21533 + components: + - type: Transform + pos: -111.5,134.5 + parent: 2 + - uid: 21535 + components: + - type: Transform + pos: -89.5,141.5 + parent: 2 + - uid: 21536 + components: + - type: Transform + pos: -90.5,141.5 + parent: 2 + - uid: 21537 + components: + - type: Transform + pos: -89.5,140.5 + parent: 2 + - uid: 21538 + components: + - type: Transform + pos: -88.5,140.5 + parent: 2 + - uid: 22314 + components: + - type: Transform + pos: -37.5,185.5 + parent: 2 + - uid: 22315 + components: + - type: Transform + pos: -35.5,185.5 + parent: 2 + - uid: 22316 + components: + - type: Transform + pos: -33.5,185.5 + parent: 2 + - uid: 22319 + components: + - type: Transform + pos: -35.5,182.5 + parent: 2 + - uid: 22326 + components: + - type: Transform + pos: -36.5,182.5 + parent: 2 + - uid: 22673 + components: + - type: Transform + pos: -28.5,175.5 + parent: 2 + - uid: 22732 + components: + - type: Transform + pos: -67.5,62.5 + parent: 2 + - uid: 22735 + components: + - type: Transform + pos: 22.5,169.5 + parent: 2 + - uid: 23124 + components: + - type: Transform + pos: 29.5,169.5 + parent: 2 + - uid: 23146 + components: + - type: Transform + pos: -26.5,175.5 + parent: 2 + - uid: 23786 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 24774 + components: + - type: Transform + pos: -26.5,172.5 + parent: 2 + - uid: 24780 + components: + - type: Transform + pos: -27.5,174.5 + parent: 2 + - uid: 25096 + components: + - type: Transform + pos: -83.5,31.5 + parent: 2 + - uid: 25176 + components: + - type: Transform + pos: -83.5,28.5 + parent: 2 + - uid: 25234 + components: + - type: Transform + pos: -84.5,28.5 + parent: 2 + - uid: 25387 + components: + - type: Transform + pos: -82.5,27.5 + parent: 2 + - uid: 25424 + components: + - type: Transform + pos: -84.5,29.5 + parent: 2 + - uid: 25434 + components: + - type: Transform + pos: -83.5,29.5 + parent: 2 + - uid: 25694 + components: + - type: Transform + pos: -84.5,30.5 + parent: 2 + - uid: 25695 + components: + - type: Transform + pos: -82.5,30.5 + parent: 2 + - uid: 25769 + components: + - type: Transform + pos: -81.5,31.5 + parent: 2 + - uid: 25772 + components: + - type: Transform + pos: -83.5,30.5 + parent: 2 + - uid: 25819 + components: + - type: Transform + pos: -85.5,30.5 + parent: 2 + - uid: 26172 + components: + - type: Transform + pos: -32.5,188.5 + parent: 2 + - uid: 26173 + components: + - type: Transform + pos: -32.5,187.5 + parent: 2 + - uid: 26175 + components: + - type: Transform + pos: -33.5,189.5 + parent: 2 + - uid: 26176 + components: + - type: Transform + pos: -33.5,188.5 + parent: 2 + - uid: 26177 + components: + - type: Transform + pos: -34.5,187.5 + parent: 2 + - uid: 26178 + components: + - type: Transform + pos: -33.5,186.5 + parent: 2 + - uid: 26179 + components: + - type: Transform + pos: -34.5,186.5 + parent: 2 + - uid: 26181 + components: + - type: Transform + pos: -34.5,188.5 + parent: 2 + - uid: 26182 + components: + - type: Transform + pos: -34.5,189.5 + parent: 2 + - uid: 26183 + components: + - type: Transform + pos: -35.5,187.5 + parent: 2 + - uid: 26184 + components: + - type: Transform + pos: -35.5,186.5 + parent: 2 + - uid: 26185 + components: + - type: Transform + pos: -36.5,186.5 + parent: 2 + - uid: 26186 + components: + - type: Transform + pos: -37.5,186.5 + parent: 2 + - uid: 26209 + components: + - type: Transform + pos: -35.5,198.5 + parent: 2 + - uid: 26210 + components: + - type: Transform + pos: -35.5,199.5 + parent: 2 + - uid: 26211 + components: + - type: Transform + pos: -35.5,200.5 + parent: 2 + - uid: 26212 + components: + - type: Transform + pos: -35.5,201.5 + parent: 2 + - uid: 26213 + components: + - type: Transform + pos: -35.5,202.5 + parent: 2 + - uid: 26214 + components: + - type: Transform + pos: -35.5,203.5 + parent: 2 + - uid: 26215 + components: + - type: Transform + pos: -35.5,204.5 + parent: 2 + - uid: 26216 + components: + - type: Transform + pos: -36.5,197.5 + parent: 2 + - uid: 26217 + components: + - type: Transform + pos: -36.5,198.5 + parent: 2 + - uid: 26218 + components: + - type: Transform + pos: -36.5,199.5 + parent: 2 + - uid: 26219 + components: + - type: Transform + pos: -36.5,200.5 + parent: 2 + - uid: 26220 + components: + - type: Transform + pos: -36.5,201.5 + parent: 2 + - uid: 26221 + components: + - type: Transform + pos: -36.5,202.5 + parent: 2 + - uid: 26222 + components: + - type: Transform + pos: -37.5,199.5 + parent: 2 + - uid: 26223 + components: + - type: Transform + pos: -37.5,200.5 + parent: 2 + - uid: 26224 + components: + - type: Transform + pos: -37.5,201.5 + parent: 2 + - uid: 26320 + components: + - type: Transform + pos: -35.5,205.5 + parent: 2 + - uid: 26321 + components: + - type: Transform + pos: -35.5,206.5 + parent: 2 + - uid: 26323 + components: + - type: Transform + pos: -36.5,204.5 + parent: 2 + - uid: 26324 + components: + - type: Transform + pos: -36.5,203.5 + parent: 2 + - uid: 26367 + components: + - type: Transform + pos: -34.5,182.5 + parent: 2 + - uid: 26369 + components: + - type: Transform + pos: -33.5,182.5 + parent: 2 + - uid: 26510 + components: + - type: Transform + pos: -82.5,31.5 + parent: 2 + - uid: 26511 + components: + - type: Transform + pos: -84.5,31.5 + parent: 2 + - uid: 26571 + components: + - type: Transform + pos: 30.5,170.5 + parent: 2 + - uid: 26574 + components: + - type: Transform + pos: 29.5,170.5 + parent: 2 + - uid: 26576 + components: + - type: Transform + pos: 28.5,170.5 + parent: 2 + - uid: 26577 + components: + - type: Transform + pos: 27.5,169.5 + parent: 2 + - uid: 26578 + components: + - type: Transform + pos: 27.5,170.5 + parent: 2 + - uid: 26583 + components: + - type: Transform + pos: 24.5,168.5 + parent: 2 + - uid: 26589 + components: + - type: Transform + pos: 26.5,169.5 + parent: 2 + - uid: 26591 + components: + - type: Transform + pos: 24.5,171.5 + parent: 2 + - uid: 26592 + components: + - type: Transform + pos: 25.5,171.5 + parent: 2 + - uid: 26611 + components: + - type: Transform + pos: 27.5,171.5 + parent: 2 + - uid: 26612 + components: + - type: Transform + pos: 27.5,172.5 + parent: 2 + - uid: 26613 + components: + - type: Transform + pos: 28.5,171.5 + parent: 2 + - uid: 26614 + components: + - type: Transform + pos: 28.5,172.5 + parent: 2 + - uid: 26615 + components: + - type: Transform + pos: 29.5,171.5 + parent: 2 + - uid: 26616 + components: + - type: Transform + pos: 29.5,172.5 + parent: 2 + - uid: 26617 + components: + - type: Transform + pos: 30.5,171.5 + parent: 2 + - uid: 26620 + components: + - type: Transform + pos: 27.5,173.5 + parent: 2 + - uid: 26623 + components: + - type: Transform + pos: 26.5,174.5 + parent: 2 + - uid: 26625 + components: + - type: Transform + pos: 25.5,174.5 + parent: 2 + - uid: 26626 + components: + - type: Transform + pos: 28.5,173.5 + parent: 2 + - uid: 26627 + components: + - type: Transform + pos: 25.5,175.5 + parent: 2 + - uid: 26628 + components: + - type: Transform + pos: 25.5,181.5 + parent: 2 + - uid: 26629 + components: + - type: Transform + pos: 25.5,182.5 + parent: 2 + - uid: 26630 + components: + - type: Transform + pos: 25.5,183.5 + parent: 2 + - uid: 26631 + components: + - type: Transform + pos: 25.5,184.5 + parent: 2 + - uid: 26632 + components: + - type: Transform + pos: 29.5,183.5 + parent: 2 + - uid: 26633 + components: + - type: Transform + pos: 26.5,181.5 + parent: 2 + - uid: 26634 + components: + - type: Transform + pos: 26.5,182.5 + parent: 2 + - uid: 26635 + components: + - type: Transform + pos: 26.5,183.5 + parent: 2 + - uid: 26636 + components: + - type: Transform + pos: 26.5,184.5 + parent: 2 + - uid: 26638 + components: + - type: Transform + pos: 27.5,181.5 + parent: 2 + - uid: 26639 + components: + - type: Transform + pos: 27.5,182.5 + parent: 2 + - uid: 26641 + components: + - type: Transform + pos: 27.5,184.5 + parent: 2 + - uid: 26644 + components: + - type: Transform + pos: 28.5,182.5 + parent: 2 + - uid: 26645 + components: + - type: Transform + pos: 28.5,183.5 + parent: 2 + - uid: 26650 + components: + - type: Transform + pos: 29.5,182.5 + parent: 2 + - uid: 26651 + components: + - type: Transform + pos: 27.5,180.5 + parent: 2 + - uid: 26652 + components: + - type: Transform + pos: 26.5,180.5 + parent: 2 + - uid: 26654 + components: + - type: Transform + pos: 27.5,187.5 + parent: 2 + - uid: 26655 + components: + - type: Transform + pos: 27.5,188.5 + parent: 2 + - uid: 26656 + components: + - type: Transform + pos: 27.5,189.5 + parent: 2 + - uid: 26662 + components: + - type: Transform + pos: 27.5,195.5 + parent: 2 + - uid: 26663 + components: + - type: Transform + pos: 27.5,196.5 + parent: 2 + - uid: 26665 + components: + - type: Transform + pos: 26.5,187.5 + parent: 2 + - uid: 26666 + components: + - type: Transform + pos: 26.5,188.5 + parent: 2 + - uid: 26667 + components: + - type: Transform + pos: 26.5,189.5 + parent: 2 + - uid: 26672 + components: + - type: Transform + pos: 26.5,194.5 + parent: 2 + - uid: 26673 + components: + - type: Transform + pos: 26.5,195.5 + parent: 2 + - uid: 26674 + components: + - type: Transform + pos: 26.5,196.5 + parent: 2 + - uid: 26675 + components: + - type: Transform + pos: 28.5,189.5 + parent: 2 + - uid: 26676 + components: + - type: Transform + pos: 28.5,190.5 + parent: 2 + - uid: 26677 + components: + - type: Transform + pos: 28.5,191.5 + parent: 2 + - uid: 26679 + components: + - type: Transform + pos: 28.5,193.5 + parent: 2 + - uid: 26680 + components: + - type: Transform + pos: 28.5,194.5 + parent: 2 + - uid: 26681 + components: + - type: Transform + pos: 28.5,195.5 + parent: 2 + - uid: 26682 + components: + - type: Transform + pos: 29.5,189.5 + parent: 2 + - uid: 26683 + components: + - type: Transform + pos: 29.5,190.5 + parent: 2 + - uid: 26684 + components: + - type: Transform + pos: 29.5,191.5 + parent: 2 + - uid: 26685 + components: + - type: Transform + pos: 29.5,192.5 + parent: 2 + - uid: 26686 + components: + - type: Transform + pos: 29.5,193.5 + parent: 2 + - uid: 26687 + components: + - type: Transform + pos: 29.5,194.5 + parent: 2 + - uid: 26688 + components: + - type: Transform + pos: 29.5,195.5 + parent: 2 + - uid: 26689 + components: + - type: Transform + pos: 28.5,188.5 + parent: 2 + - uid: 26690 + components: + - type: Transform + pos: 28.5,187.5 + parent: 2 + - uid: 26691 + components: + - type: Transform + pos: 30.5,191.5 + parent: 2 + - uid: 26692 + components: + - type: Transform + pos: 30.5,192.5 + parent: 2 + - uid: 26693 + components: + - type: Transform + pos: 30.5,193.5 + parent: 2 + - uid: 26694 + components: + - type: Transform + pos: 30.5,194.5 + parent: 2 + - uid: 26695 + components: + - type: Transform + pos: 31.5,193.5 + parent: 2 + - uid: 26696 + components: + - type: Transform + pos: 31.5,192.5 + parent: 2 + - uid: 26697 + components: + - type: Transform + pos: 26.5,197.5 + parent: 2 + - uid: 26698 + components: + - type: Transform + pos: 26.5,198.5 + parent: 2 + - uid: 26699 + components: + - type: Transform + pos: 26.5,199.5 + parent: 2 + - uid: 26700 + components: + - type: Transform + pos: 26.5,200.5 + parent: 2 + - uid: 26701 + components: + - type: Transform + pos: 26.5,201.5 + parent: 2 + - uid: 26702 + components: + - type: Transform + pos: 27.5,198.5 + parent: 2 + - uid: 26703 + components: + - type: Transform + pos: 27.5,197.5 + parent: 2 + - uid: 26704 + components: + - type: Transform + pos: 27.5,196.5 + parent: 2 + - uid: 26705 + components: + - type: Transform + pos: 28.5,196.5 + parent: 2 + - uid: 26706 + components: + - type: Transform + pos: 26.5,202.5 + parent: 2 + - uid: 26707 + components: + - type: Transform + pos: 25.5,204.5 + parent: 2 + - uid: 26708 + components: + - type: Transform + pos: 24.5,204.5 + parent: 2 + - uid: 26709 + components: + - type: Transform + pos: 23.5,204.5 + parent: 2 + - uid: 26710 + components: + - type: Transform + pos: 22.5,204.5 + parent: 2 + - uid: 26711 + components: + - type: Transform + pos: 21.5,204.5 + parent: 2 + - uid: 26712 + components: + - type: Transform + pos: 20.5,204.5 + parent: 2 + - uid: 26713 + components: + - type: Transform + pos: 19.5,204.5 + parent: 2 + - uid: 26714 + components: + - type: Transform + pos: 24.5,205.5 + parent: 2 + - uid: 26715 + components: + - type: Transform + pos: 23.5,205.5 + parent: 2 + - uid: 26716 + components: + - type: Transform + pos: 22.5,205.5 + parent: 2 + - uid: 26717 + components: + - type: Transform + pos: 21.5,205.5 + parent: 2 + - uid: 26718 + components: + - type: Transform + pos: 20.5,205.5 + parent: 2 + - uid: 26719 + components: + - type: Transform + pos: 26.5,206.5 + parent: 2 + - uid: 26720 + components: + - type: Transform + pos: 25.5,206.5 + parent: 2 + - uid: 26721 + components: + - type: Transform + pos: 24.5,206.5 + parent: 2 + - uid: 26722 + components: + - type: Transform + pos: 23.5,206.5 + parent: 2 + - uid: 26723 + components: + - type: Transform + pos: 22.5,206.5 + parent: 2 + - uid: 26724 + components: + - type: Transform + pos: 25.5,205.5 + parent: 2 + - uid: 26725 + components: + - type: Transform + pos: 26.5,205.5 + parent: 2 + - uid: 26726 + components: + - type: Transform + pos: 27.5,205.5 + parent: 2 + - uid: 26727 + components: + - type: Transform + pos: 26.5,204.5 + parent: 2 + - uid: 26728 + components: + - type: Transform + pos: 26.5,203.5 + parent: 2 + - uid: 26729 + components: + - type: Transform + pos: 27.5,204.5 + parent: 2 + - uid: 26730 + components: + - type: Transform + pos: 28.5,205.5 + parent: 2 + - uid: 26731 + components: + - type: Transform + pos: 27.5,206.5 + parent: 2 + - uid: 26732 + components: + - type: Transform + pos: 28.5,206.5 + parent: 2 + - uid: 26733 + components: + - type: Transform + pos: 29.5,206.5 + parent: 2 + - uid: 26734 + components: + - type: Transform + pos: 27.5,207.5 + parent: 2 + - uid: 26735 + components: + - type: Transform + pos: 26.5,207.5 + parent: 2 + - uid: 26736 + components: + - type: Transform + pos: 25.5,207.5 + parent: 2 + - uid: 26737 + components: + - type: Transform + pos: 27.5,203.5 + parent: 2 + - uid: 26738 + components: + - type: Transform + pos: 27.5,201.5 + parent: 2 + - uid: 26739 + components: + - type: Transform + pos: 27.5,200.5 + parent: 2 + - uid: 26740 + components: + - type: Transform + pos: 27.5,202.5 + parent: 2 + - uid: 26741 + components: + - type: Transform + pos: 28.5,204.5 + parent: 2 + - uid: 26742 + components: + - type: Transform + pos: 28.5,202.5 + parent: 2 + - uid: 26743 + components: + - type: Transform + pos: 28.5,203.5 + parent: 2 + - uid: 26744 + components: + - type: Transform + pos: 29.5,205.5 + parent: 2 + - uid: 26745 + components: + - type: Transform + pos: 29.5,204.5 + parent: 2 + - uid: 26746 + components: + - type: Transform + pos: 10.5,207.5 + parent: 2 + - uid: 26747 + components: + - type: Transform + pos: 10.5,208.5 + parent: 2 + - uid: 26748 + components: + - type: Transform + pos: 10.5,209.5 + parent: 2 + - uid: 26749 + components: + - type: Transform + pos: 11.5,207.5 + parent: 2 + - uid: 26750 + components: + - type: Transform + pos: 11.5,208.5 + parent: 2 + - uid: 26752 + components: + - type: Transform + pos: 12.5,207.5 + parent: 2 + - uid: 26753 + components: + - type: Transform + pos: 12.5,208.5 + parent: 2 + - uid: 26754 + components: + - type: Transform + pos: 12.5,209.5 + parent: 2 + - uid: 26755 + components: + - type: Transform + pos: 13.5,207.5 + parent: 2 + - uid: 26756 + components: + - type: Transform + pos: 13.5,208.5 + parent: 2 + - uid: 26757 + components: + - type: Transform + pos: 13.5,209.5 + parent: 2 + - uid: 26758 + components: + - type: Transform + pos: 14.5,208.5 + parent: 2 + - uid: 26759 + components: + - type: Transform + pos: 14.5,209.5 + parent: 2 + - uid: 26760 + components: + - type: Transform + pos: 15.5,209.5 + parent: 2 + - uid: 26761 + components: + - type: Transform + pos: 15.5,208.5 + parent: 2 + - uid: 26762 + components: + - type: Transform + pos: 9.5,208.5 + parent: 2 + - uid: 26763 + components: + - type: Transform + pos: 9.5,209.5 + parent: 2 + - uid: 26764 + components: + - type: Transform + pos: 10.5,210.5 + parent: 2 + - uid: 26765 + components: + - type: Transform + pos: 11.5,210.5 + parent: 2 + - uid: 26766 + components: + - type: Transform + pos: 12.5,210.5 + parent: 2 + - uid: 26767 + components: + - type: Transform + pos: 13.5,210.5 + parent: 2 + - uid: 26768 + components: + - type: Transform + pos: 14.5,210.5 + parent: 2 + - uid: 26769 + components: + - type: Transform + pos: 13.5,211.5 + parent: 2 + - uid: 26770 + components: + - type: Transform + pos: 12.5,211.5 + parent: 2 + - uid: 27197 + components: + - type: Transform + pos: -144.5,13.5 + parent: 2 + - uid: 27280 + components: + - type: Transform + pos: -144.5,12.5 + parent: 2 + - uid: 27282 + components: + - type: Transform + pos: -130.5,36.5 + parent: 2 + - uid: 27284 + components: + - type: Transform + pos: -129.5,35.5 + parent: 2 + - uid: 27308 + components: + - type: Transform + pos: -141.5,15.5 + parent: 2 + - uid: 27318 + components: + - type: Transform + pos: -136.5,14.5 + parent: 2 + - uid: 27321 + components: + - type: Transform + pos: -143.5,13.5 + parent: 2 + - uid: 27322 + components: + - type: Transform + pos: -135.5,15.5 + parent: 2 + - uid: 27330 + components: + - type: Transform + pos: -139.5,11.5 + parent: 2 + - uid: 27697 + components: + - type: Transform + pos: -147.5,8.5 + parent: 2 + - uid: 27706 + components: + - type: Transform + pos: -145.5,12.5 + parent: 2 + - uid: 27884 + components: + - type: Transform + pos: -148.5,8.5 + parent: 2 + - uid: 27903 + components: + - type: Transform + pos: -143.5,10.5 + parent: 2 + - uid: 27940 + components: + - type: Transform + pos: -130.5,58.5 + parent: 2 + - uid: 27982 + components: + - type: Transform + pos: -146.5,8.5 + parent: 2 + - uid: 28071 + components: + - type: Transform + pos: -72.5,141.5 + parent: 2 + - uid: 28076 + components: + - type: Transform + pos: -71.5,142.5 + parent: 2 + - uid: 28104 + components: + - type: Transform + pos: -139.5,15.5 + parent: 2 + - uid: 28106 + components: + - type: Transform + pos: -138.5,14.5 + parent: 2 + - uid: 28109 + components: + - type: Transform + pos: -146.5,11.5 + parent: 2 + - uid: 28110 + components: + - type: Transform + pos: -137.5,13.5 + parent: 2 + - uid: 28157 + components: + - type: Transform + pos: -145.5,11.5 + parent: 2 + - uid: 28217 + components: + - type: Transform + pos: -101.5,39.5 + parent: 2 + - uid: 28218 + components: + - type: Transform + pos: -72.5,142.5 + parent: 2 + - uid: 28289 + components: + - type: Transform + pos: -103.5,53.5 + parent: 2 + - uid: 28345 + components: + - type: Transform + pos: -104.5,60.5 + parent: 2 + - uid: 28355 + components: + - type: Transform + pos: -103.5,54.5 + parent: 2 + - uid: 28356 + components: + - type: Transform + pos: -105.5,61.5 + parent: 2 + - uid: 28360 + components: + - type: Transform + pos: -104.5,53.5 + parent: 2 + - uid: 28362 + components: + - type: Transform + pos: -106.5,60.5 + parent: 2 + - uid: 28365 + components: + - type: Transform + pos: -103.5,55.5 + parent: 2 + - uid: 28402 + components: + - type: Transform + pos: -137.5,14.5 + parent: 2 + - uid: 28473 + components: + - type: Transform + pos: -139.5,12.5 + parent: 2 + - uid: 28596 + components: + - type: Transform + pos: -101.5,40.5 + parent: 2 + - uid: 28638 + components: + - type: Transform + pos: -101.5,43.5 + parent: 2 + - uid: 28641 + components: + - type: Transform + pos: -102.5,39.5 + parent: 2 + - uid: 28691 + components: + - type: Transform + pos: -131.5,17.5 + parent: 2 + - uid: 28692 + components: + - type: Transform + pos: -134.5,16.5 + parent: 2 + - uid: 28699 + components: + - type: Transform + pos: -133.5,16.5 + parent: 2 + - uid: 28700 + components: + - type: Transform + pos: -141.5,10.5 + parent: 2 + - uid: 28759 + components: + - type: Transform + pos: -137.5,15.5 + parent: 2 + - uid: 29333 + components: + - type: Transform + pos: -124.5,41.5 + parent: 2 + - uid: 29336 + components: + - type: Transform + pos: -125.5,41.5 + parent: 2 + - uid: 29355 + components: + - type: Transform + pos: -130.5,35.5 + parent: 2 + - uid: 29356 + components: + - type: Transform + pos: -131.5,35.5 + parent: 2 + - uid: 29357 + components: + - type: Transform + pos: -132.5,35.5 + parent: 2 + - uid: 29358 + components: + - type: Transform + pos: -133.5,35.5 + parent: 2 + - uid: 29359 + components: + - type: Transform + pos: -131.5,36.5 + parent: 2 + - uid: 29360 + components: + - type: Transform + pos: -132.5,36.5 + parent: 2 + - uid: 29361 + components: + - type: Transform + pos: -133.5,36.5 + parent: 2 + - uid: 29364 + components: + - type: Transform + pos: -134.5,36.5 + parent: 2 + - uid: 29423 + components: + - type: Transform + pos: -130.5,14.5 + parent: 2 + - uid: 29424 + components: + - type: Transform + pos: -130.5,15.5 + parent: 2 + - uid: 29427 + components: + - type: Transform + pos: -131.5,14.5 + parent: 2 + - uid: 29428 + components: + - type: Transform + pos: -131.5,15.5 + parent: 2 + - uid: 29431 + components: + - type: Transform + pos: -131.5,16.5 + parent: 2 + - uid: 29433 + components: + - type: Transform + pos: -126.5,30.5 + parent: 2 + - uid: 29434 + components: + - type: Transform + pos: -126.5,31.5 + parent: 2 + - uid: 29436 + components: + - type: Transform + pos: -125.5,32.5 + parent: 2 + - uid: 29437 + components: + - type: Transform + pos: -126.5,32.5 + parent: 2 + - uid: 29438 + components: + - type: Transform + pos: -126.5,33.5 + parent: 2 + - uid: 29439 + components: + - type: Transform + pos: -127.5,34.5 + parent: 2 + - uid: 29440 + components: + - type: Transform + pos: -126.5,34.5 + parent: 2 + - uid: 29441 + components: + - type: Transform + pos: -127.5,35.5 + parent: 2 + - uid: 29442 + components: + - type: Transform + pos: -128.5,35.5 + parent: 2 + - uid: 29597 + components: + - type: Transform + pos: -130.5,57.5 + parent: 2 + - uid: 29642 + components: + - type: Transform + pos: -136.5,15.5 + parent: 2 + - uid: 29643 + components: + - type: Transform + pos: -140.5,14.5 + parent: 2 + - uid: 29645 + components: + - type: Transform + pos: -142.5,14.5 + parent: 2 + - uid: 29646 + components: + - type: Transform + pos: -143.5,14.5 + parent: 2 + - uid: 29647 + components: + - type: Transform + pos: -142.5,13.5 + parent: 2 + - uid: 29648 + components: + - type: Transform + pos: -141.5,13.5 + parent: 2 + - uid: 29649 + components: + - type: Transform + pos: -140.5,13.5 + parent: 2 + - uid: 29650 + components: + - type: Transform + pos: -139.5,13.5 + parent: 2 + - uid: 29651 + components: + - type: Transform + pos: -138.5,13.5 + parent: 2 + - uid: 29652 + components: + - type: Transform + pos: -143.5,12.5 + parent: 2 + - uid: 29654 + components: + - type: Transform + pos: -141.5,12.5 + parent: 2 + - uid: 29655 + components: + - type: Transform + pos: -140.5,12.5 + parent: 2 + - uid: 29656 + components: + - type: Transform + pos: -144.5,11.5 + parent: 2 + - uid: 29658 + components: + - type: Transform + pos: -142.5,11.5 + parent: 2 + - uid: 29659 + components: + - type: Transform + pos: -141.5,11.5 + parent: 2 + - uid: 29660 + components: + - type: Transform + pos: -142.5,10.5 + parent: 2 + - uid: 29661 + components: + - type: Transform + pos: -145.5,9.5 + parent: 2 + - uid: 29662 + components: + - type: Transform + pos: -144.5,9.5 + parent: 2 + - uid: 29663 + components: + - type: Transform + pos: -146.5,10.5 + parent: 2 + - uid: 29664 + components: + - type: Transform + pos: -143.5,9.5 + parent: 2 + - uid: 29665 + components: + - type: Transform + pos: -138.5,12.5 + parent: 2 + - uid: 29666 + components: + - type: Transform + pos: -137.5,12.5 + parent: 2 + - uid: 29668 + components: + - type: Transform + pos: -135.5,13.5 + parent: 2 + - uid: 29669 + components: + - type: Transform + pos: -135.5,14.5 + parent: 2 + - uid: 29670 + components: + - type: Transform + pos: -134.5,14.5 + parent: 2 + - uid: 29671 + components: + - type: Transform + pos: -132.5,16.5 + parent: 2 + - uid: 29672 + components: + - type: Transform + pos: -132.5,17.5 + parent: 2 + - uid: 29673 + components: + - type: Transform + pos: -133.5,17.5 + parent: 2 + - uid: 30773 + components: + - type: Transform + pos: -100.5,30.5 + parent: 2 + - uid: 30774 + components: + - type: Transform + pos: -100.5,31.5 + parent: 2 + - uid: 30775 + components: + - type: Transform + pos: -100.5,32.5 + parent: 2 + - uid: 30777 + components: + - type: Transform + pos: -99.5,31.5 + parent: 2 + - uid: 30778 + components: + - type: Transform + pos: -99.5,32.5 + parent: 2 + - uid: 30779 + components: + - type: Transform + pos: -98.5,30.5 + parent: 2 + - uid: 30780 + components: + - type: Transform + pos: -98.5,31.5 + parent: 2 + - uid: 30781 + components: + - type: Transform + pos: -98.5,32.5 + parent: 2 + - uid: 30782 + components: + - type: Transform + pos: -97.5,30.5 + parent: 2 + - uid: 30783 + components: + - type: Transform + pos: -97.5,31.5 + parent: 2 + - uid: 30784 + components: + - type: Transform + pos: -97.5,32.5 + parent: 2 + - uid: 30785 + components: + - type: Transform + pos: -96.5,30.5 + parent: 2 + - uid: 30786 + components: + - type: Transform + pos: -96.5,31.5 + parent: 2 + - uid: 30789 + components: + - type: Transform + pos: -95.5,31.5 + parent: 2 + - uid: 30791 + components: + - type: Transform + pos: -94.5,31.5 + parent: 2 + - uid: 30793 + components: + - type: Transform + pos: -93.5,31.5 + parent: 2 + - uid: 30795 + components: + - type: Transform + pos: -92.5,31.5 + parent: 2 + - uid: 30797 + components: + - type: Transform + pos: -91.5,31.5 + parent: 2 + - uid: 30798 + components: + - type: Transform + pos: -91.5,32.5 + parent: 2 + - uid: 30799 + components: + - type: Transform + pos: -90.5,32.5 + parent: 2 + - uid: 30800 + components: + - type: Transform + pos: -89.5,32.5 + parent: 2 + - uid: 30801 + components: + - type: Transform + pos: -88.5,32.5 + parent: 2 + - uid: 30802 + components: + - type: Transform + pos: -89.5,33.5 + parent: 2 + - uid: 30803 + components: + - type: Transform + pos: -88.5,33.5 + parent: 2 + - uid: 30804 + components: + - type: Transform + pos: -100.5,29.5 + parent: 2 + - uid: 30805 + components: + - type: Transform + pos: -101.5,28.5 + parent: 2 + - uid: 30806 + components: + - type: Transform + pos: -99.5,29.5 + parent: 2 + - uid: 30807 + components: + - type: Transform + pos: -84.5,25.5 + parent: 2 + - uid: 30808 + components: + - type: Transform + pos: -84.5,26.5 + parent: 2 + - uid: 30809 + components: + - type: Transform + pos: -84.5,27.5 + parent: 2 + - uid: 30810 + components: + - type: Transform + pos: -85.5,25.5 + parent: 2 + - uid: 30811 + components: + - type: Transform + pos: -85.5,26.5 + parent: 2 + - uid: 30812 + components: + - type: Transform + pos: -85.5,27.5 + parent: 2 + - uid: 30813 + components: + - type: Transform + pos: -86.5,25.5 + parent: 2 + - uid: 30814 + components: + - type: Transform + pos: -86.5,26.5 + parent: 2 + - uid: 30815 + components: + - type: Transform + pos: -82.5,133.5 + parent: 2 + - uid: 30816 + components: + - type: Transform + pos: -85.5,23.5 + parent: 2 + - uid: 30817 + components: + - type: Transform + pos: -85.5,24.5 + parent: 2 + - uid: 30818 + components: + - type: Transform + pos: -86.5,23.5 + parent: 2 + - uid: 30819 + components: + - type: Transform + pos: -86.5,24.5 + parent: 2 + - uid: 30820 + components: + - type: Transform + pos: -87.5,23.5 + parent: 2 + - uid: 30821 + components: + - type: Transform + pos: -87.5,24.5 + parent: 2 + - uid: 30822 + components: + - type: Transform + pos: -88.5,23.5 + parent: 2 + - uid: 30823 + components: + - type: Transform + pos: -88.5,24.5 + parent: 2 + - uid: 30824 + components: + - type: Transform + pos: -87.5,25.5 + parent: 2 + - uid: 30825 + components: + - type: Transform + pos: -71.5,140.5 + parent: 2 + - uid: 30826 + components: + - type: Transform + pos: -83.5,133.5 + parent: 2 + - uid: 30828 + components: + - type: Transform + pos: -73.5,139.5 + parent: 2 + - uid: 30830 + components: + - type: Transform + pos: -72.5,139.5 + parent: 2 + - uid: 30831 + components: + - type: Transform + pos: -68.5,142.5 + parent: 2 + - uid: 30833 + components: + - type: Transform + pos: -73.5,140.5 + parent: 2 + - uid: 30834 + components: + - type: Transform + pos: -72.5,140.5 + parent: 2 + - uid: 30844 + components: + - type: Transform + pos: -70.5,142.5 + parent: 2 + - uid: 30845 + components: + - type: Transform + pos: -70.5,141.5 + parent: 2 + - uid: 30848 + components: + - type: Transform + pos: -83.5,26.5 + parent: 2 + - uid: 30849 + components: + - type: Transform + pos: -83.5,27.5 + parent: 2 + - uid: 30850 + components: + - type: Transform + pos: -82.5,26.5 + parent: 2 + - uid: 30853 + components: + - type: Transform + pos: -74.5,140.5 + parent: 2 + - uid: 30866 + components: + - type: Transform + pos: -86.5,22.5 + parent: 2 + - uid: 30892 + components: + - type: Transform + pos: -129.5,16.5 + parent: 2 + - uid: 30906 + components: + - type: Transform + pos: -130.5,17.5 + parent: 2 + - uid: 30907 + components: + - type: Transform + pos: -130.5,16.5 + parent: 2 + - uid: 31060 + components: + - type: Transform + pos: -64.5,59.5 + parent: 2 + - uid: 31063 + components: + - type: Transform + pos: -66.5,60.5 + parent: 2 + - uid: 32228 + components: + - type: Transform + pos: -83.5,134.5 + parent: 2 + - uid: 32229 + components: + - type: Transform + pos: -81.5,134.5 + parent: 2 + - uid: 32231 + components: + - type: Transform + pos: -81.5,135.5 + parent: 2 + - uid: 32233 + components: + - type: Transform + pos: -82.5,135.5 + parent: 2 + - uid: 32234 + components: + - type: Transform + pos: -82.5,136.5 + parent: 2 + - uid: 32235 + components: + - type: Transform + pos: -81.5,136.5 + parent: 2 + - uid: 32236 + components: + - type: Transform + pos: -80.5,136.5 + parent: 2 + - uid: 32237 + components: + - type: Transform + pos: -80.5,135.5 + parent: 2 + - uid: 33058 + components: + - type: Transform + pos: -85.5,131.5 + parent: 2 + - uid: 33059 + components: + - type: Transform + pos: -84.5,133.5 + parent: 2 + - uid: 33060 + components: + - type: Transform + pos: -84.5,132.5 + parent: 2 + - uid: 33061 + components: + - type: Transform + pos: -83.5,132.5 + parent: 2 + - uid: 33062 + components: + - type: Transform + pos: -85.5,132.5 + parent: 2 + - uid: 33063 + components: + - type: Transform + pos: -84.5,131.5 + parent: 2 + - uid: 33064 + components: + - type: Transform + pos: -85.5,130.5 + parent: 2 + - uid: 33065 + components: + - type: Transform + pos: -86.5,130.5 + parent: 2 + - uid: 34420 + components: + - type: Transform + pos: -65.5,59.5 + parent: 2 + - uid: 35421 + components: + - type: Transform + pos: -102.5,151.5 + parent: 2 + - uid: 35422 + components: + - type: Transform + pos: -101.5,152.5 + parent: 2 + - uid: 35511 + components: + - type: Transform + pos: -129.5,58.5 + parent: 2 + - uid: 35512 + components: + - type: Transform + pos: -129.5,59.5 + parent: 2 + - uid: 35513 + components: + - type: Transform + pos: -129.5,60.5 + parent: 2 + - uid: 35514 + components: + - type: Transform + pos: -129.5,61.5 + parent: 2 + - uid: 35515 + components: + - type: Transform + pos: -129.5,62.5 + parent: 2 + - uid: 35516 + components: + - type: Transform + pos: -129.5,63.5 + parent: 2 + - uid: 35517 + components: + - type: Transform + pos: -129.5,64.5 + parent: 2 + - uid: 36769 + components: + - type: Transform + pos: 21.5,169.5 + parent: 2 + - uid: 36823 + components: + - type: Transform + pos: 23.5,168.5 + parent: 2 + - uid: 36826 + components: + - type: Transform + pos: 25.5,168.5 + parent: 2 + - uid: 36863 + components: + - type: Transform + pos: -67.5,63.5 + parent: 2 + - uid: 37025 + components: + - type: Transform + pos: 23.5,169.5 + parent: 2 + - uid: 37042 + components: + - type: Transform + pos: -67.5,61.5 + parent: 2 + - uid: 37348 + components: + - type: Transform + pos: -33.5,178.5 + parent: 2 + - uid: 37541 + components: + - type: Transform + pos: 24.5,173.5 + parent: 2 + - uid: 37554 + components: + - type: Transform + pos: 25.5,169.5 + parent: 2 + - uid: 37555 + components: + - type: Transform + pos: 25.5,173.5 + parent: 2 + - uid: 37556 + components: + - type: Transform + pos: 24.5,169.5 + parent: 2 + - uid: 37557 + components: + - type: Transform + pos: 25.5,172.5 + parent: 2 + - uid: 37618 + components: + - type: Transform + pos: 24.5,172.5 + parent: 2 + - uid: 37823 + components: + - type: Transform + pos: 24.5,167.5 + parent: 2 + - uid: 38263 + components: + - type: Transform + pos: -0.5,58.5 + parent: 2 + - uid: 38791 + components: + - type: Transform + pos: 25.5,166.5 + parent: 2 + - uid: 38802 + components: + - type: Transform + pos: 25.5,170.5 + parent: 2 + - uid: 38807 + components: + - type: Transform + pos: 24.5,170.5 + parent: 2 + - uid: 38864 + components: + - type: Transform + pos: 28.5,167.5 + parent: 2 + - uid: 38865 + components: + - type: Transform + pos: 27.5,167.5 + parent: 2 + - uid: 38866 + components: + - type: Transform + pos: 28.5,168.5 + parent: 2 + - uid: 38867 + components: + - type: Transform + pos: 27.5,168.5 + parent: 2 + - uid: 38868 + components: + - type: Transform + pos: 26.5,168.5 + parent: 2 + - uid: 38869 + components: + - type: Transform + pos: 26.5,167.5 + parent: 2 + - uid: 38870 + components: + - type: Transform + pos: 26.5,166.5 + parent: 2 + - uid: 38871 + components: + - type: Transform + pos: 25.5,167.5 + parent: 2 + - uid: 38872 + components: + - type: Transform + pos: 23.5,167.5 + parent: 2 + - uid: 38873 + components: + - type: Transform + pos: 22.5,168.5 + parent: 2 +- proto: WallRockBasaltArtifactFragment + entities: + - uid: 3317 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 +- proto: WallRockBasaltGold + entities: + - uid: 2587 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 +- proto: WallRockBasaltPlasma + entities: + - uid: 2720 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: 48.5,36.5 + parent: 2 + - uid: 20628 + components: + - type: Transform + pos: -100.5,153.5 + parent: 2 + - uid: 21108 + components: + - type: Transform + pos: -60.5,183.5 + parent: 2 + - uid: 21184 + components: + - type: Transform + pos: -55.5,175.5 + parent: 2 + - uid: 21261 + components: + - type: Transform + pos: -92.5,177.5 + parent: 2 + - uid: 21263 + components: + - type: Transform + pos: -95.5,165.5 + parent: 2 + - uid: 21467 + components: + - type: Transform + pos: -105.5,140.5 + parent: 2 + - uid: 21468 + components: + - type: Transform + pos: -107.5,138.5 + parent: 2 + - uid: 21486 + components: + - type: Transform + pos: -104.5,138.5 + parent: 2 + - uid: 21503 + components: + - type: Transform + pos: -105.5,143.5 + parent: 2 + - uid: 21520 + components: + - type: Transform + pos: -102.5,140.5 + parent: 2 +- proto: WallRockBasaltQuartz + entities: + - uid: 5255 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 16500 + components: + - type: Transform + pos: -68.5,63.5 + parent: 2 + - uid: 17274 + components: + - type: Transform + pos: -75.5,68.5 + parent: 2 + - uid: 17275 + components: + - type: Transform + pos: -76.5,68.5 + parent: 2 + - uid: 17310 + components: + - type: Transform + pos: -75.5,67.5 + parent: 2 + - uid: 26171 + components: + - type: Transform + pos: -32.5,189.5 + parent: 2 + - uid: 26180 + components: + - type: Transform + pos: -33.5,187.5 + parent: 2 + - uid: 26317 + components: + - type: Transform + pos: -35.5,207.5 + parent: 2 + - uid: 26517 + components: + - type: Transform + pos: 28.5,197.5 + parent: 2 + - uid: 26575 + components: + - type: Transform + pos: 27.5,174.5 + parent: 2 + - uid: 26621 + components: + - type: Transform + pos: 28.5,169.5 + parent: 2 + - uid: 26640 + components: + - type: Transform + pos: 27.5,193.5 + parent: 2 + - uid: 26643 + components: + - type: Transform + pos: 27.5,194.5 + parent: 2 + - uid: 26648 + components: + - type: Transform + pos: 24.5,183.5 + parent: 2 + - uid: 26657 + components: + - type: Transform + pos: 28.5,192.5 + parent: 2 + - uid: 26660 + components: + - type: Transform + pos: 28.5,181.5 + parent: 2 + - uid: 26661 + components: + - type: Transform + pos: 27.5,183.5 + parent: 2 + - uid: 26678 + components: + - type: Transform + pos: 27.5,190.5 + parent: 2 + - uid: 26791 + components: + - type: Transform + pos: 11.5,209.5 + parent: 2 + - uid: 26794 + components: + - type: Transform + pos: 30.5,206.5 + parent: 2 + - uid: 26795 + components: + - type: Transform + pos: 21.5,206.5 + parent: 2 + - uid: 26796 + components: + - type: Transform + pos: 16.5,209.5 + parent: 2 +- proto: WallRockBasaltSilver + entities: + - uid: 2612 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 +- proto: WallRockBasaltTin + entities: + - uid: 2616 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 +- proto: WallRockBasaltUranium + entities: + - uid: 2919 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 2921 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - uid: 13542 + components: + - type: Transform + pos: -100.5,28.5 + parent: 2 + - uid: 19791 + components: + - type: Transform + pos: -131.5,55.5 + parent: 2 + - uid: 19805 + components: + - type: Transform + pos: -105.5,60.5 + parent: 2 + - uid: 29667 + components: + - type: Transform + pos: -136.5,13.5 + parent: 2 + - uid: 29915 + components: + - type: Transform + pos: -125.5,31.5 + parent: 2 + - uid: 30509 + components: + - type: Transform + pos: -132.5,15.5 + parent: 2 + - uid: 30608 + components: + - type: Transform + pos: -145.5,10.5 + parent: 2 + - uid: 30609 + components: + - type: Transform + pos: -143.5,11.5 + parent: 2 + - uid: 30640 + components: + - type: Transform + pos: -142.5,12.5 + parent: 2 + - uid: 30641 + components: + - type: Transform + pos: -142.5,15.5 + parent: 2 + - uid: 30684 + components: + - type: Transform + pos: -141.5,14.5 + parent: 2 + - uid: 30737 + components: + - type: Transform + pos: -140.5,11.5 + parent: 2 + - uid: 30788 + components: + - type: Transform + pos: -99.5,30.5 + parent: 2 + - uid: 30838 + components: + - type: Transform + pos: -87.5,22.5 + parent: 2 +- proto: WallRockGold + entities: + - uid: 805 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + pos: 74.5,25.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 + - uid: 19233 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 +- proto: WallRockPlasma + entities: + - uid: 5549 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 + - uid: 5553 + components: + - type: Transform + pos: 48.5,36.5 + parent: 2 + - uid: 5834 + components: + - type: Transform + pos: 94.5,45.5 + parent: 2 + - uid: 6199 + components: + - type: Transform + pos: 95.5,45.5 + parent: 2 + - uid: 19221 + components: + - type: Transform + pos: 86.5,35.5 + parent: 2 + - uid: 19225 + components: + - type: Transform + pos: 96.5,45.5 + parent: 2 + - uid: 19230 + components: + - type: Transform + pos: 95.5,44.5 + parent: 2 +- proto: WallRockQuartz + entities: + - uid: 5420 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 +- proto: WallRockSand + entities: + - uid: 740 + components: + - type: Transform + pos: -55.5,-7.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: -57.5,4.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: -56.5,5.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: -62.5,13.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: -62.5,15.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: -63.5,14.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: -63.5,15.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: -64.5,16.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: -41.5,5.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: -41.5,7.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: -61.5,-12.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: -44.5,3.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: -51.5,-10.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: -54.5,-10.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: -52.5,-11.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: -54.5,-11.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: -56.5,-9.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: -55.5,-8.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: -69.5,-11.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: -56.5,-12.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: -56.5,-13.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: -55.5,-6.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: -61.5,14.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: -54.5,-6.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: -61.5,13.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: -60.5,12.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: -61.5,16.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: -60.5,13.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: -60.5,-12.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: -57.5,17.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: -61.5,17.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: -50.5,15.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + pos: -60.5,17.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + pos: -50.5,13.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: -47.5,14.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: -45.5,13.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: -59.5,12.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: -61.5,12.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: -59.5,15.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: -60.5,16.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: -59.5,14.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: -53.5,-6.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: -56.5,17.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: -58.5,17.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - uid: 4948 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: -42.5,7.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: -42.5,5.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 5189 + components: + - type: Transform + pos: -44.5,7.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 + - uid: 5266 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 5274 + components: + - type: Transform + pos: -43.5,7.5 + parent: 2 + - uid: 5528 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: -62.5,-12.5 + parent: 2 + - uid: 5532 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: -62.5,-11.5 + parent: 2 + - uid: 5588 + components: + - type: Transform + pos: -45.5,7.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + pos: -45.5,2.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + pos: -62.5,16.5 + parent: 2 + - uid: 5709 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 5710 + components: + - type: Transform + pos: -28.5,-21.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 26316 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 26318 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 26322 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 26325 + components: + - type: Transform + pos: -60.5,-11.5 + parent: 2 + - uid: 26360 + components: + - type: Transform + pos: -56.5,4.5 + parent: 2 + - uid: 26361 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 2 + - uid: 26362 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 26363 + components: + - type: Transform + pos: -58.5,-15.5 + parent: 2 + - uid: 26365 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 26375 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 2 + - uid: 26381 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 + - uid: 26408 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - uid: 26411 + components: + - type: Transform + pos: -60.5,15.5 + parent: 2 + - uid: 26426 + components: + - type: Transform + pos: -61.5,15.5 + parent: 2 + - uid: 26444 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 26448 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 + - uid: 26493 + components: + - type: Transform + pos: -57.5,-9.5 + parent: 2 + - uid: 26497 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - uid: 26503 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 2 + - uid: 26504 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 2 + - uid: 26505 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 +- proto: WallRockSandGold + entities: + - uid: 778 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - uid: 26334 + components: + - type: Transform + pos: -60.5,14.5 + parent: 2 + - uid: 26446 + components: + - type: Transform + pos: -62.5,14.5 + parent: 2 +- proto: WallRockSandSilver + entities: + - uid: 744 + components: + - type: Transform + pos: -56.5,3.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: -61.5,-13.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + pos: -63.5,-12.5 + parent: 2 +- proto: WallRockSandTin + entities: + - uid: 739 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: -54.5,-8.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: -53.5,-8.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: -50.5,14.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: -59.5,17.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 26319 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - uid: 26364 + components: + - type: Transform + pos: -59.5,16.5 + parent: 2 + - uid: 26366 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 26372 + components: + - type: Transform + pos: -63.5,16.5 + parent: 2 + - uid: 26382 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 + - uid: 26389 + components: + - type: Transform + pos: -41.5,6.5 + parent: 2 + - uid: 26447 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 + - uid: 26472 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 +- proto: WallRockSilver + entities: + - uid: 5610 + components: + - type: Transform + pos: 66.5,25.5 + parent: 2 +- proto: WallRockSnow + entities: + - uid: 7866 + components: + - type: Transform + pos: 4.5,195.5 + parent: 2 + - uid: 9080 + components: + - type: Transform + pos: 6.5,195.5 + parent: 2 + - uid: 9081 + components: + - type: Transform + pos: 6.5,196.5 + parent: 2 + - uid: 9082 + components: + - type: Transform + pos: 5.5,195.5 + parent: 2 + - uid: 15821 + components: + - type: Transform + pos: -24.5,179.5 + parent: 2 + - uid: 16078 + components: + - type: Transform + pos: -27.5,187.5 + parent: 2 + - uid: 16079 + components: + - type: Transform + pos: -28.5,182.5 + parent: 2 + - uid: 16080 + components: + - type: Transform + pos: -27.5,180.5 + parent: 2 + - uid: 16081 + components: + - type: Transform + pos: -28.5,181.5 + parent: 2 + - uid: 17125 + components: + - type: Transform + pos: -25.5,179.5 + parent: 2 + - uid: 17126 + components: + - type: Transform + pos: -28.5,180.5 + parent: 2 + - uid: 17446 + components: + - type: Transform + pos: -28.5,183.5 + parent: 2 + - uid: 17447 + components: + - type: Transform + pos: -28.5,185.5 + parent: 2 + - uid: 17449 + components: + - type: Transform + pos: -28.5,186.5 + parent: 2 + - uid: 22535 + components: + - type: Transform + pos: -1.5,208.5 + parent: 2 + - uid: 22537 + components: + - type: Transform + pos: -0.5,207.5 + parent: 2 + - uid: 22538 + components: + - type: Transform + pos: 0.5,207.5 + parent: 2 + - uid: 22539 + components: + - type: Transform + pos: 4.5,203.5 + parent: 2 + - uid: 22541 + components: + - type: Transform + pos: 5.5,202.5 + parent: 2 + - uid: 22544 + components: + - type: Transform + pos: 6.5,200.5 + parent: 2 + - uid: 22545 + components: + - type: Transform + pos: 7.5,199.5 + parent: 2 + - uid: 22547 + components: + - type: Transform + pos: 6.5,198.5 + parent: 2 + - uid: 22557 + components: + - type: Transform + pos: 4.5,180.5 + parent: 2 + - uid: 22559 + components: + - type: Transform + pos: 3.5,179.5 + parent: 2 + - uid: 22561 + components: + - type: Transform + pos: 2.5,178.5 + parent: 2 + - uid: 22563 + components: + - type: Transform + pos: 1.5,177.5 + parent: 2 + - uid: 22565 + components: + - type: Transform + pos: 0.5,176.5 + parent: 2 + - uid: 22566 + components: + - type: Transform + pos: -0.5,176.5 + parent: 2 + - uid: 22575 + components: + - type: Transform + pos: -11.5,173.5 + parent: 2 + - uid: 22576 + components: + - type: Transform + pos: -14.5,174.5 + parent: 2 + - uid: 22577 + components: + - type: Transform + pos: -13.5,174.5 + parent: 2 + - uid: 22631 + components: + - type: Transform + pos: 6.5,201.5 + parent: 2 + - uid: 22982 + components: + - type: Transform + pos: -1.5,207.5 + parent: 2 + - uid: 23194 + components: + - type: Transform + pos: -22.5,179.5 + parent: 2 + - uid: 23473 + components: + - type: Transform + pos: -2.5,208.5 + parent: 2 + - uid: 23735 + components: + - type: Transform + pos: 1.5,176.5 + parent: 2 + - uid: 23757 + components: + - type: Transform + pos: 2.5,177.5 + parent: 2 + - uid: 23775 + components: + - type: Transform + pos: 3.5,178.5 + parent: 2 + - uid: 23854 + components: + - type: Transform + pos: 4.5,179.5 + parent: 2 + - uid: 24275 + components: + - type: Transform + pos: -28.5,184.5 + parent: 2 + - uid: 29515 + components: + - type: Transform + pos: -27.5,179.5 + parent: 2 + - uid: 30742 + components: + - type: Transform + pos: -26.5,179.5 + parent: 2 + - uid: 32136 + components: + - type: Transform + pos: -12.5,174.5 + parent: 2 + - uid: 34490 + components: + - type: Transform + pos: -28.5,187.5 + parent: 2 + - uid: 34491 + components: + - type: Transform + pos: -23.5,179.5 + parent: 2 + - uid: 34505 + components: + - type: Transform + pos: -27.5,188.5 + parent: 2 +- proto: WallRockTin + entities: + - uid: 13842 + components: + - type: Transform + pos: -57.5,111.5 + parent: 2 + - uid: 17654 + components: + - type: Transform + pos: -58.5,116.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 1549 + components: + - type: Transform + pos: -58.5,-16.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: -56.5,-15.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: -56.5,-16.5 + parent: 2 + - uid: 13388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 13386 + - uid: 13389 + components: + - type: Transform + pos: -4.5,1.5 + parent: 13386 + - uid: 13391 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 13386 + - uid: 13394 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 13386 + - uid: 13395 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 13386 + - uid: 13405 + components: + - type: Transform + pos: 2.5,2.5 + parent: 13386 + - uid: 13409 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 13386 + - uid: 13411 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 13386 + - uid: 13463 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 13386 + - uid: 13482 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 13386 + - uid: 13491 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 13386 + - uid: 13521 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 13386 + - uid: 13527 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 13386 + - uid: 13575 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 13386 + - uid: 13623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 13386 + - uid: 13628 + components: + - type: Transform + pos: 3.5,2.5 + parent: 13386 + - uid: 13703 + components: + - type: Transform + pos: -2.5,2.5 + parent: 13386 + - uid: 14769 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 13386 + - uid: 14776 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 13386 + - uid: 14777 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 13386 + - uid: 14778 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 13386 + - uid: 14783 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 13386 + - uid: 14784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 13386 + - uid: 14937 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 13386 + - uid: 15020 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 13386 + - uid: 15222 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 13386 + - uid: 15410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 13386 + - uid: 15487 + components: + - type: Transform + pos: -3.5,2.5 + parent: 13386 + - uid: 15673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 13386 + - uid: 15811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 13386 + - uid: 22090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 21114 + - uid: 22091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 21114 + - uid: 22092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 21114 + - uid: 22093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 21114 + - uid: 22094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 21114 + - uid: 22095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 21114 + - uid: 22097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 21114 + - uid: 22098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 21114 + - uid: 22099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 21114 + - uid: 22100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 21114 + - uid: 31029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 30902 + - uid: 31030 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 30902 + - uid: 31031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 30902 + - uid: 31032 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 30902 + - uid: 31033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 30902 + - uid: 31034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 30902 + - uid: 31035 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 30902 + - uid: 31036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 30902 + - uid: 31037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 30902 + - uid: 31038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 30902 + - uid: 31039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 30902 + - uid: 31040 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 30902 + - uid: 31041 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 30902 + - uid: 31042 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 30902 + - uid: 31043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 30902 + - uid: 31044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 30902 + - uid: 31046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 30902 + - uid: 31047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 30902 + - uid: 34564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 30902 + - uid: 34762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 21114 + - uid: 36723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 21114 + - uid: 36724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 21114 + - uid: 36729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 21114 + - uid: 37001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 36996 + - uid: 37002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 36996 + - uid: 37003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 36996 + - uid: 37004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 36996 + - uid: 37015 + components: + - type: Transform + pos: -2.5,0.5 + parent: 36996 + - uid: 37016 + components: + - type: Transform + pos: 3.5,0.5 + parent: 36996 + - uid: 37019 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 36996 + - uid: 37020 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 36996 + - uid: 37021 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 36996 + - uid: 37024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 36996 + - uid: 37029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 36996 + - uid: 37030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 36996 + - uid: 37031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 36996 + - uid: 37032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 36996 + - uid: 37034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 36996 + - uid: 37035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 36996 + - uid: 37036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 36996 + - uid: 37037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 36996 + - uid: 37038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 36996 + - uid: 37991 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 37842 + - uid: 37993 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 37842 + - uid: 37994 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 37842 + - uid: 37995 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 37842 + - uid: 37996 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 37842 + - uid: 37998 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 37842 + - uid: 38000 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 37842 + - uid: 38001 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 37842 + - uid: 38002 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 37842 + - uid: 38003 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 37842 + - uid: 38004 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 37842 + - uid: 38005 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 37842 + - uid: 38006 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 37842 +- proto: WallShuttleDiagonal + entities: + - uid: 1554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-14.5 + parent: 2 + - uid: 16131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 13386 + - uid: 16133 + components: + - type: Transform + pos: -4.5,2.5 + parent: 13386 + - uid: 16134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 13386 + - uid: 22102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 21114 + - uid: 22103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 21114 + - uid: 22104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 21114 + - uid: 22105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 21114 + - uid: 22106 + components: + - type: Transform + pos: 1.5,5.5 + parent: 21114 + - uid: 22107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 21114 + - uid: 31049 + components: + - type: Transform + pos: -1.5,2.5 + parent: 30902 + - uid: 31050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 30902 + - uid: 36997 + components: + - type: Transform + pos: -1.5,3.5 + parent: 36996 + - uid: 36998 + components: + - type: Transform + pos: -2.5,2.5 + parent: 36996 + - uid: 36999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 36996 + - uid: 37000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 36996 + - uid: 37006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 36996 + - uid: 37007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 36996 + - uid: 37013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 36996 + - uid: 37014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 36996 + - uid: 37017 + components: + - type: Transform + pos: -3.5,0.5 + parent: 36996 + - uid: 37018 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 36996 + - uid: 37022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 36996 + - uid: 37023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 36996 + - uid: 38010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 37842 + - uid: 38011 + components: + - type: Transform + pos: -2.5,1.5 + parent: 37842 + - uid: 38012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 37842 + - uid: 38013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 37842 + - uid: 38014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 37842 + - uid: 38015 + components: + - type: Transform + pos: -1.5,3.5 + parent: 37842 + - uid: 38016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 37842 + - uid: 38017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 37842 +- proto: WallSilver + entities: + - uid: 9996 + components: + - type: Transform + pos: -22.5,189.5 + parent: 2 + - uid: 17557 + components: + - type: Transform + pos: -4.5,193.5 + parent: 2 + - uid: 18122 + components: + - type: Transform + pos: -4.5,189.5 + parent: 2 + - uid: 18139 + components: + - type: Transform + pos: -4.5,192.5 + parent: 2 + - uid: 18211 + components: + - type: Transform + pos: -4.5,191.5 + parent: 2 + - uid: 18291 + components: + - type: Transform + pos: -5.5,187.5 + parent: 2 + - uid: 18762 + components: + - type: Transform + pos: -9.5,187.5 + parent: 2 + - uid: 19063 + components: + - type: Transform + pos: -4.5,190.5 + parent: 2 + - uid: 22356 + components: + - type: Transform + pos: -1.5,201.5 + parent: 2 + - uid: 22406 + components: + - type: Transform + pos: 2.5,201.5 + parent: 2 + - uid: 22407 + components: + - type: Transform + pos: -0.5,201.5 + parent: 2 + - uid: 22411 + components: + - type: Transform + pos: -1.5,200.5 + parent: 2 + - uid: 22491 + components: + - type: Transform + pos: 1.5,181.5 + parent: 2 + - uid: 22492 + components: + - type: Transform + pos: 2.5,181.5 + parent: 2 + - uid: 22493 + components: + - type: Transform + pos: 3.5,181.5 + parent: 2 + - uid: 22494 + components: + - type: Transform + pos: 4.5,181.5 + parent: 2 + - uid: 22495 + components: + - type: Transform + pos: 5.5,181.5 + parent: 2 + - uid: 22496 + components: + - type: Transform + pos: 6.5,181.5 + parent: 2 + - uid: 22498 + components: + - type: Transform + pos: 1.5,182.5 + parent: 2 + - uid: 22530 + components: + - type: Transform + pos: 1.5,186.5 + parent: 2 + - uid: 22531 + components: + - type: Transform + pos: 1.5,187.5 + parent: 2 + - uid: 22540 + components: + - type: Transform + pos: 3.5,187.5 + parent: 2 + - uid: 22542 + components: + - type: Transform + pos: 4.5,187.5 + parent: 2 + - uid: 22546 + components: + - type: Transform + pos: 5.5,187.5 + parent: 2 + - uid: 22549 + components: + - type: Transform + pos: 6.5,187.5 + parent: 2 + - uid: 22580 + components: + - type: Transform + pos: 3.5,205.5 + parent: 2 + - uid: 22582 + components: + - type: Transform + pos: 3.5,206.5 + parent: 2 + - uid: 22613 + components: + - type: Transform + pos: 2.5,206.5 + parent: 2 + - uid: 22648 + components: + - type: Transform + pos: -10.5,184.5 + parent: 2 + - uid: 22649 + components: + - type: Transform + pos: -10.5,185.5 + parent: 2 + - uid: 22650 + components: + - type: Transform + pos: -10.5,186.5 + parent: 2 + - uid: 22651 + components: + - type: Transform + pos: -10.5,187.5 + parent: 2 + - uid: 22658 + components: + - type: Transform + pos: -10.5,189.5 + parent: 2 + - uid: 22660 + components: + - type: Transform + pos: -13.5,184.5 + parent: 2 + - uid: 22661 + components: + - type: Transform + pos: -13.5,185.5 + parent: 2 + - uid: 22662 + components: + - type: Transform + pos: -13.5,186.5 + parent: 2 + - uid: 22663 + components: + - type: Transform + pos: -14.5,186.5 + parent: 2 + - uid: 22664 + components: + - type: Transform + pos: -15.5,186.5 + parent: 2 + - uid: 22665 + components: + - type: Transform + pos: -16.5,186.5 + parent: 2 + - uid: 22666 + components: + - type: Transform + pos: -17.5,186.5 + parent: 2 + - uid: 22667 + components: + - type: Transform + pos: -17.5,187.5 + parent: 2 + - uid: 22668 + components: + - type: Transform + pos: -17.5,188.5 + parent: 2 + - uid: 22669 + components: + - type: Transform + pos: -17.5,189.5 + parent: 2 + - uid: 22670 + components: + - type: Transform + pos: -17.5,190.5 + parent: 2 + - uid: 22671 + components: + - type: Transform + pos: -10.5,190.5 + parent: 2 + - uid: 22676 + components: + - type: Transform + pos: -4.5,194.5 + parent: 2 + - uid: 22677 + components: + - type: Transform + pos: -4.5,195.5 + parent: 2 + - uid: 22678 + components: + - type: Transform + pos: -5.5,195.5 + parent: 2 + - uid: 22679 + components: + - type: Transform + pos: -6.5,195.5 + parent: 2 + - uid: 22680 + components: + - type: Transform + pos: -9.5,195.5 + parent: 2 + - uid: 22681 + components: + - type: Transform + pos: -10.5,195.5 + parent: 2 + - uid: 22682 + components: + - type: Transform + pos: -10.5,194.5 + parent: 2 + - uid: 22683 + components: + - type: Transform + pos: -10.5,193.5 + parent: 2 + - uid: 22685 + components: + - type: Transform + pos: -10.5,191.5 + parent: 2 + - uid: 22691 + components: + - type: Transform + pos: -4.5,199.5 + parent: 2 + - uid: 22707 + components: + - type: Transform + pos: 6.5,184.5 + parent: 2 + - uid: 22710 + components: + - type: Transform + pos: 6.5,183.5 + parent: 2 + - uid: 22711 + components: + - type: Transform + pos: 6.5,182.5 + parent: 2 + - uid: 22718 + components: + - type: Transform + pos: 6.5,185.5 + parent: 2 + - uid: 22719 + components: + - type: Transform + pos: 6.5,186.5 + parent: 2 + - uid: 22769 + components: + - type: Transform + pos: -17.5,191.5 + parent: 2 + - uid: 22771 + components: + - type: Transform + pos: -11.5,195.5 + parent: 2 + - uid: 22772 + components: + - type: Transform + pos: -12.5,195.5 + parent: 2 + - uid: 22773 + components: + - type: Transform + pos: -13.5,195.5 + parent: 2 + - uid: 22774 + components: + - type: Transform + pos: -14.5,195.5 + parent: 2 + - uid: 22775 + components: + - type: Transform + pos: -19.5,195.5 + parent: 2 + - uid: 22776 + components: + - type: Transform + pos: -16.5,195.5 + parent: 2 + - uid: 22777 + components: + - type: Transform + pos: -17.5,195.5 + parent: 2 + - uid: 22792 + components: + - type: Transform + pos: -20.5,195.5 + parent: 2 + - uid: 22793 + components: + - type: Transform + pos: -20.5,196.5 + parent: 2 + - uid: 22794 + components: + - type: Transform + pos: -20.5,197.5 + parent: 2 + - uid: 22795 + components: + - type: Transform + pos: -20.5,198.5 + parent: 2 + - uid: 22796 + components: + - type: Transform + pos: -19.5,198.5 + parent: 2 + - uid: 22797 + components: + - type: Transform + pos: -18.5,198.5 + parent: 2 + - uid: 22798 + components: + - type: Transform + pos: -17.5,198.5 + parent: 2 + - uid: 22799 + components: + - type: Transform + pos: -16.5,198.5 + parent: 2 + - uid: 22800 + components: + - type: Transform + pos: -15.5,198.5 + parent: 2 + - uid: 22801 + components: + - type: Transform + pos: -14.5,198.5 + parent: 2 + - uid: 22802 + components: + - type: Transform + pos: -13.5,198.5 + parent: 2 + - uid: 22803 + components: + - type: Transform + pos: -21.5,195.5 + parent: 2 + - uid: 22804 + components: + - type: Transform + pos: -22.5,195.5 + parent: 2 + - uid: 22805 + components: + - type: Transform + pos: -23.5,195.5 + parent: 2 + - uid: 22806 + components: + - type: Transform + pos: -24.5,195.5 + parent: 2 + - uid: 22807 + components: + - type: Transform + pos: -25.5,195.5 + parent: 2 + - uid: 22808 + components: + - type: Transform + pos: -25.5,194.5 + parent: 2 + - uid: 22809 + components: + - type: Transform + pos: -25.5,193.5 + parent: 2 + - uid: 22810 + components: + - type: Transform + pos: -25.5,192.5 + parent: 2 + - uid: 22811 + components: + - type: Transform + pos: -25.5,191.5 + parent: 2 + - uid: 22812 + components: + - type: Transform + pos: -25.5,190.5 + parent: 2 + - uid: 22814 + components: + - type: Transform + pos: -24.5,189.5 + parent: 2 + - uid: 22815 + components: + - type: Transform + pos: -21.5,189.5 + parent: 2 + - uid: 22816 + components: + - type: Transform + pos: -21.5,190.5 + parent: 2 + - uid: 22859 + components: + - type: Transform + pos: -4.5,187.5 + parent: 2 + - uid: 22860 + components: + - type: Transform + pos: -4.5,188.5 + parent: 2 + - uid: 22890 + components: + - type: Transform + pos: -4.5,196.5 + parent: 2 + - uid: 22893 + components: + - type: Transform + pos: -4.5,200.5 + parent: 2 + - uid: 22894 + components: + - type: Transform + pos: -5.5,200.5 + parent: 2 + - uid: 22898 + components: + - type: Transform + pos: -9.5,200.5 + parent: 2 + - uid: 22899 + components: + - type: Transform + pos: -10.5,200.5 + parent: 2 + - uid: 22900 + components: + - type: Transform + pos: -10.5,199.5 + parent: 2 + - uid: 22901 + components: + - type: Transform + pos: -10.5,198.5 + parent: 2 + - uid: 22902 + components: + - type: Transform + pos: -13.5,199.5 + parent: 2 + - uid: 22924 + components: + - type: Transform + pos: -1.5,196.5 + parent: 2 + - uid: 22925 + components: + - type: Transform + pos: -1.5,195.5 + parent: 2 + - uid: 22926 + components: + - type: Transform + pos: -0.5,195.5 + parent: 2 + - uid: 22929 + components: + - type: Transform + pos: 2.5,195.5 + parent: 2 + - uid: 22930 + components: + - type: Transform + pos: 3.5,195.5 + parent: 2 + - uid: 22931 + components: + - type: Transform + pos: 3.5,196.5 + parent: 2 + - uid: 22932 + components: + - type: Transform + pos: 3.5,197.5 + parent: 2 + - uid: 22933 + components: + - type: Transform + pos: 3.5,198.5 + parent: 2 + - uid: 22934 + components: + - type: Transform + pos: 3.5,199.5 + parent: 2 + - uid: 22935 + components: + - type: Transform + pos: 3.5,200.5 + parent: 2 + - uid: 22936 + components: + - type: Transform + pos: 3.5,201.5 + parent: 2 + - uid: 22937 + components: + - type: Transform + pos: 3.5,202.5 + parent: 2 + - uid: 22938 + components: + - type: Transform + pos: 3.5,203.5 + parent: 2 + - uid: 22939 + components: + - type: Transform + pos: 3.5,204.5 + parent: 2 + - uid: 22940 + components: + - type: Transform + pos: 1.5,206.5 + parent: 2 + - uid: 22941 + components: + - type: Transform + pos: 0.5,206.5 + parent: 2 + - uid: 22942 + components: + - type: Transform + pos: -0.5,206.5 + parent: 2 + - uid: 22943 + components: + - type: Transform + pos: -1.5,206.5 + parent: 2 + - uid: 22946 + components: + - type: Transform + pos: -1.5,202.5 + parent: 2 + - uid: 22951 + components: + - type: Transform + pos: -1.5,205.5 + parent: 2 + - uid: 23371 + components: + - type: Transform + pos: -25.5,189.5 + parent: 2 + - uid: 23425 + components: + - type: Transform + pos: -2.5,202.5 + parent: 2 + - uid: 23426 + components: + - type: Transform + pos: -2.5,205.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 78 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 169 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: -29.5,1.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,173.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: -67.5,72.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + pos: 56.5,39.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + pos: 56.5,38.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: 56.5,42.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: 56.5,43.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + pos: 56.5,44.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: 55.5,44.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: 53.5,44.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: 60.5,40.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: 60.5,39.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + pos: 58.5,40.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + pos: 59.5,40.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + pos: 90.5,60.5 + parent: 2 + - uid: 3989 + components: + - type: Transform + pos: 89.5,60.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + pos: 88.5,60.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + pos: 87.5,60.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + pos: 86.5,60.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + pos: 86.5,59.5 + parent: 2 + - uid: 3994 + components: + - type: Transform + pos: 86.5,58.5 + parent: 2 + - uid: 3995 + components: + - type: Transform + pos: 86.5,57.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + pos: 86.5,56.5 + parent: 2 + - uid: 3997 + components: + - type: Transform + pos: 86.5,55.5 + parent: 2 + - uid: 3998 + components: + - type: Transform + pos: 86.5,54.5 + parent: 2 + - uid: 3999 + components: + - type: Transform + pos: 86.5,53.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: 86.5,52.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: 86.5,50.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: 86.5,49.5 + parent: 2 + - uid: 4004 + components: + - type: Transform + pos: 86.5,48.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: 86.5,47.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + pos: 86.5,46.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + pos: 86.5,44.5 + parent: 2 + - uid: 4009 + components: + - type: Transform + pos: 86.5,43.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + pos: 86.5,42.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + pos: 86.5,41.5 + parent: 2 + - uid: 4012 + components: + - type: Transform + pos: 85.5,41.5 + parent: 2 + - uid: 4024 + components: + - type: Transform + pos: 83.5,44.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: 85.5,49.5 + parent: 2 + - uid: 4027 + components: + - type: Transform + pos: 84.5,53.5 + parent: 2 + - uid: 4028 + components: + - type: Transform + pos: 85.5,57.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + pos: -79.5,79.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + pos: -67.5,69.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: -66.5,70.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + pos: -81.5,87.5 + parent: 2 + - uid: 5235 + components: + - type: Transform + pos: -49.5,68.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + pos: -67.5,70.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + pos: 83.5,46.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 + - uid: 6264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,204.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,203.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,203.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,203.5 + parent: 2 + - uid: 8450 + components: + - type: Transform + pos: -82.5,92.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + pos: -88.5,85.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + pos: -87.5,85.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + pos: -81.5,82.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + pos: -81.5,81.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + pos: -81.5,92.5 + parent: 2 + - uid: 8471 + components: + - type: Transform + pos: -81.5,85.5 + parent: 2 + - uid: 8472 + components: + - type: Transform + pos: -81.5,84.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + pos: -83.5,85.5 + parent: 2 + - uid: 8550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,204.5 + parent: 2 + - uid: 8551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,204.5 + parent: 2 + - uid: 8553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,204.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + pos: -81.5,91.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + pos: -68.5,108.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + pos: -81.5,90.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: -59.5,104.5 + parent: 2 + - uid: 8737 + components: + - type: Transform + pos: -81.5,86.5 + parent: 2 + - uid: 8874 + components: + - type: Transform + pos: -60.5,104.5 + parent: 2 + - uid: 9085 + components: + - type: Transform + pos: -6.5,173.5 + parent: 2 + - uid: 9087 + components: + - type: Transform + pos: -6.5,172.5 + parent: 2 + - uid: 9564 + components: + - type: Transform + pos: -33.5,70.5 + parent: 2 + - uid: 9603 + components: + - type: Transform + pos: -26.5,207.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + pos: -67.5,108.5 + parent: 2 + - uid: 10064 + components: + - type: Transform + pos: -69.5,108.5 + parent: 2 + - uid: 10076 + components: + - type: Transform + pos: -70.5,108.5 + parent: 2 + - uid: 10102 + components: + - type: Transform + pos: -61.5,107.5 + parent: 2 + - uid: 10112 + components: + - type: Transform + pos: -61.5,105.5 + parent: 2 + - uid: 10124 + components: + - type: Transform + pos: -55.5,74.5 + parent: 2 + - uid: 10187 + components: + - type: Transform + pos: -55.5,77.5 + parent: 2 + - uid: 10286 + components: + - type: Transform + pos: -61.5,112.5 + parent: 2 + - uid: 10421 + components: + - type: Transform + pos: -27.5,207.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + pos: -28.5,207.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: -27.5,206.5 + parent: 2 + - uid: 10470 + components: + - type: Transform + pos: -25.5,207.5 + parent: 2 + - uid: 10471 + components: + - type: Transform + pos: 19.5,177.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + pos: -7.5,83.5 + parent: 2 + - uid: 10648 + components: + - type: Transform + pos: -4.5,83.5 + parent: 2 + - uid: 10649 + components: + - type: Transform + pos: -3.5,83.5 + parent: 2 + - uid: 10650 + components: + - type: Transform + pos: -2.5,83.5 + parent: 2 + - uid: 10651 + components: + - type: Transform + pos: -1.5,83.5 + parent: 2 + - uid: 10652 + components: + - type: Transform + pos: -0.5,83.5 + parent: 2 + - uid: 10653 + components: + - type: Transform + pos: 0.5,83.5 + parent: 2 + - uid: 10654 + components: + - type: Transform + pos: 1.5,83.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + pos: 1.5,84.5 + parent: 2 + - uid: 10656 + components: + - type: Transform + pos: 1.5,85.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + pos: 1.5,86.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + pos: 1.5,87.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + pos: 0.5,87.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + pos: -0.5,87.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + pos: -1.5,87.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + pos: -2.5,87.5 + parent: 2 + - uid: 10663 + components: + - type: Transform + pos: -3.5,87.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + pos: -4.5,87.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + pos: -5.5,87.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + pos: -7.5,87.5 + parent: 2 + - uid: 10667 + components: + - type: Transform + pos: -8.5,87.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + pos: -8.5,86.5 + parent: 2 + - uid: 10732 + components: + - type: Transform + pos: -4.5,82.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + pos: 1.5,80.5 + parent: 2 + - uid: 10742 + components: + - type: Transform + pos: 1.5,81.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + pos: 1.5,82.5 + parent: 2 + - uid: 10825 + components: + - type: Transform + pos: -12.5,88.5 + parent: 2 + - uid: 10834 + components: + - type: Transform + pos: 19.5,178.5 + parent: 2 + - uid: 10956 + components: + - type: Transform + pos: -12.5,70.5 + parent: 2 + - uid: 10964 + components: + - type: Transform + pos: -4.5,70.5 + parent: 2 + - uid: 10966 + components: + - type: Transform + pos: -19.5,71.5 + parent: 2 + - uid: 10968 + components: + - type: Transform + pos: -20.5,72.5 + parent: 2 + - uid: 10970 + components: + - type: Transform + pos: -12.5,62.5 + parent: 2 + - uid: 10973 + components: + - type: Transform + pos: -24.5,72.5 + parent: 2 + - uid: 10974 + components: + - type: Transform + pos: -25.5,72.5 + parent: 2 + - uid: 10975 + components: + - type: Transform + pos: -26.5,72.5 + parent: 2 + - uid: 10976 + components: + - type: Transform + pos: -27.5,72.5 + parent: 2 + - uid: 10977 + components: + - type: Transform + pos: -25.5,73.5 + parent: 2 + - uid: 10978 + components: + - type: Transform + pos: -25.5,74.5 + parent: 2 + - uid: 10979 + components: + - type: Transform + pos: -25.5,75.5 + parent: 2 + - uid: 10980 + components: + - type: Transform + pos: -25.5,77.5 + parent: 2 + - uid: 10981 + components: + - type: Transform + pos: -25.5,78.5 + parent: 2 + - uid: 10982 + components: + - type: Transform + pos: -25.5,79.5 + parent: 2 + - uid: 10983 + components: + - type: Transform + pos: -25.5,80.5 + parent: 2 + - uid: 10984 + components: + - type: Transform + pos: -25.5,81.5 + parent: 2 + - uid: 10985 + components: + - type: Transform + pos: -25.5,82.5 + parent: 2 + - uid: 10986 + components: + - type: Transform + pos: -25.5,83.5 + parent: 2 + - uid: 10987 + components: + - type: Transform + pos: -25.5,84.5 + parent: 2 + - uid: 10988 + components: + - type: Transform + pos: -25.5,85.5 + parent: 2 + - uid: 10989 + components: + - type: Transform + pos: -25.5,86.5 + parent: 2 + - uid: 10990 + components: + - type: Transform + pos: -25.5,87.5 + parent: 2 + - uid: 10991 + components: + - type: Transform + pos: -25.5,88.5 + parent: 2 + - uid: 10992 + components: + - type: Transform + pos: -26.5,88.5 + parent: 2 + - uid: 10993 + components: + - type: Transform + pos: -26.5,84.5 + parent: 2 + - uid: 11005 + components: + - type: Transform + pos: -12.5,64.5 + parent: 2 + - uid: 11008 + components: + - type: Transform + pos: -12.5,61.5 + parent: 2 + - uid: 11013 + components: + - type: Transform + pos: -19.5,72.5 + parent: 2 + - uid: 11026 + components: + - type: Transform + pos: -3.5,70.5 + parent: 2 + - uid: 11034 + components: + - type: Transform + pos: -66.5,104.5 + parent: 2 + - uid: 11044 + components: + - type: Transform + pos: -29.5,64.5 + parent: 2 + - uid: 11053 + components: + - type: Transform + pos: -1.5,70.5 + parent: 2 + - uid: 11061 + components: + - type: Transform + pos: -52.5,68.5 + parent: 2 + - uid: 11062 + components: + - type: Transform + pos: -52.5,67.5 + parent: 2 + - uid: 11067 + components: + - type: Transform + pos: -34.5,58.5 + parent: 2 + - uid: 11069 + components: + - type: Transform + pos: -52.5,71.5 + parent: 2 + - uid: 11080 + components: + - type: Transform + pos: -18.5,172.5 + parent: 2 + - uid: 11086 + components: + - type: Transform + pos: -9.5,64.5 + parent: 2 + - uid: 11089 + components: + - type: Transform + pos: -34.5,59.5 + parent: 2 + - uid: 11095 + components: + - type: Transform + pos: -11.5,64.5 + parent: 2 + - uid: 11096 + components: + - type: Transform + pos: -22.5,64.5 + parent: 2 + - uid: 11100 + components: + - type: Transform + pos: -21.5,64.5 + parent: 2 + - uid: 11120 + components: + - type: Transform + pos: -12.5,65.5 + parent: 2 + - uid: 11124 + components: + - type: Transform + pos: -79.5,89.5 + parent: 2 + - uid: 11125 + components: + - type: Transform + pos: -18.5,64.5 + parent: 2 + - uid: 11132 + components: + - type: Transform + pos: -52.5,70.5 + parent: 2 + - uid: 11133 + components: + - type: Transform + pos: -52.5,69.5 + parent: 2 + - uid: 11140 + components: + - type: Transform + pos: -12.5,72.5 + parent: 2 + - uid: 11142 + components: + - type: Transform + pos: -12.5,71.5 + parent: 2 + - uid: 11152 + components: + - type: Transform + pos: -39.5,61.5 + parent: 2 + - uid: 11165 + components: + - type: Transform + pos: -28.5,72.5 + parent: 2 + - uid: 11166 + components: + - type: Transform + pos: -29.5,72.5 + parent: 2 + - uid: 11167 + components: + - type: Transform + pos: -30.5,72.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: -31.5,72.5 + parent: 2 + - uid: 11169 + components: + - type: Transform + pos: -32.5,72.5 + parent: 2 + - uid: 11170 + components: + - type: Transform + pos: -32.5,71.5 + parent: 2 + - uid: 11171 + components: + - type: Transform + pos: -32.5,70.5 + parent: 2 + - uid: 11172 + components: + - type: Transform + pos: -32.5,68.5 + parent: 2 + - uid: 11176 + components: + - type: Transform + pos: -1.5,68.5 + parent: 2 + - uid: 11177 + components: + - type: Transform + pos: -32.5,64.5 + parent: 2 + - uid: 11186 + components: + - type: Transform + pos: -34.5,61.5 + parent: 2 + - uid: 11187 + components: + - type: Transform + pos: -34.5,63.5 + parent: 2 + - uid: 11188 + components: + - type: Transform + pos: -34.5,64.5 + parent: 2 + - uid: 11189 + components: + - type: Transform + pos: -33.5,64.5 + parent: 2 + - uid: 11202 + components: + - type: Transform + pos: -10.5,64.5 + parent: 2 + - uid: 11226 + components: + - type: Transform + pos: -11.5,70.5 + parent: 2 + - uid: 11255 + components: + - type: Transform + pos: -34.5,73.5 + parent: 2 + - uid: 11256 + components: + - type: Transform + pos: -45.5,64.5 + parent: 2 + - uid: 11710 + components: + - type: Transform + pos: -23.5,64.5 + parent: 2 + - uid: 11712 + components: + - type: Transform + pos: -8.5,64.5 + parent: 2 + - uid: 11714 + components: + - type: Transform + pos: -44.5,70.5 + parent: 2 + - uid: 11715 + components: + - type: Transform + pos: -46.5,73.5 + parent: 2 + - uid: 11716 + components: + - type: Transform + pos: -46.5,72.5 + parent: 2 + - uid: 11717 + components: + - type: Transform + pos: -45.5,71.5 + parent: 2 + - uid: 11718 + components: + - type: Transform + pos: -36.5,70.5 + parent: 2 + - uid: 11719 + components: + - type: Transform + pos: -35.5,71.5 + parent: 2 + - uid: 11720 + components: + - type: Transform + pos: -34.5,72.5 + parent: 2 + - uid: 11721 + components: + - type: Transform + pos: -48.5,63.5 + parent: 2 + - uid: 11722 + components: + - type: Transform + pos: -48.5,64.5 + parent: 2 + - uid: 11723 + components: + - type: Transform + pos: -2.5,211.5 + parent: 2 + - uid: 11727 + components: + - type: Transform + pos: -19.5,64.5 + parent: 2 + - uid: 11739 + components: + - type: Transform + pos: -37.5,63.5 + parent: 2 + - uid: 11742 + components: + - type: Transform + pos: -34.5,57.5 + parent: 2 + - uid: 11754 + components: + - type: Transform + pos: -35.5,64.5 + parent: 2 + - uid: 11913 + components: + - type: Transform + pos: -29.5,207.5 + parent: 2 + - uid: 12039 + components: + - type: Transform + pos: -30.5,207.5 + parent: 2 + - uid: 12061 + components: + - type: Transform + pos: -7.5,63.5 + parent: 2 + - uid: 12076 + components: + - type: Transform + pos: -63.5,65.5 + parent: 2 + - uid: 12077 + components: + - type: Transform + pos: -63.5,66.5 + parent: 2 + - uid: 12078 + components: + - type: Transform + pos: -63.5,67.5 + parent: 2 + - uid: 12079 + components: + - type: Transform + pos: -63.5,68.5 + parent: 2 + - uid: 12090 + components: + - type: Transform + pos: -63.5,69.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + pos: -63.5,70.5 + parent: 2 + - uid: 12092 + components: + - type: Transform + pos: -63.5,71.5 + parent: 2 + - uid: 12093 + components: + - type: Transform + pos: -63.5,72.5 + parent: 2 + - uid: 12094 + components: + - type: Transform + pos: -62.5,72.5 + parent: 2 + - uid: 12095 + components: + - type: Transform + pos: -61.5,72.5 + parent: 2 + - uid: 12096 + components: + - type: Transform + pos: -57.5,72.5 + parent: 2 + - uid: 12097 + components: + - type: Transform + pos: -56.5,72.5 + parent: 2 + - uid: 12098 + components: + - type: Transform + pos: -55.5,72.5 + parent: 2 + - uid: 12099 + components: + - type: Transform + pos: -55.5,71.5 + parent: 2 + - uid: 12100 + components: + - type: Transform + pos: -55.5,70.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + pos: -51.5,62.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + pos: -55.5,67.5 + parent: 2 + - uid: 12103 + components: + - type: Transform + pos: -55.5,66.5 + parent: 2 + - uid: 12104 + components: + - type: Transform + pos: -55.5,65.5 + parent: 2 + - uid: 12105 + components: + - type: Transform + pos: -55.5,64.5 + parent: 2 + - uid: 12106 + components: + - type: Transform + pos: -55.5,63.5 + parent: 2 + - uid: 12107 + components: + - type: Transform + pos: -55.5,68.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + pos: -51.5,63.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + pos: -51.5,64.5 + parent: 2 + - uid: 12111 + components: + - type: Transform + pos: -51.5,65.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + pos: -52.5,65.5 + parent: 2 + - uid: 12113 + components: + - type: Transform + pos: -53.5,65.5 + parent: 2 + - uid: 12118 + components: + - type: Transform + pos: -7.5,64.5 + parent: 2 + - uid: 12119 + components: + - type: Transform + pos: -51.5,72.5 + parent: 2 + - uid: 12120 + components: + - type: Transform + pos: -52.5,72.5 + parent: 2 + - uid: 12121 + components: + - type: Transform + pos: -53.5,72.5 + parent: 2 + - uid: 12122 + components: + - type: Transform + pos: -54.5,72.5 + parent: 2 + - uid: 12157 + components: + - type: Transform + pos: -35.5,61.5 + parent: 2 + - uid: 12158 + components: + - type: Transform + pos: -36.5,61.5 + parent: 2 + - uid: 12159 + components: + - type: Transform + pos: -38.5,61.5 + parent: 2 + - uid: 12160 + components: + - type: Transform + pos: -37.5,61.5 + parent: 2 + - uid: 12191 + components: + - type: Transform + pos: -50.5,68.5 + parent: 2 + - uid: 12197 + components: + - type: Transform + pos: -48.5,70.5 + parent: 2 + - uid: 12198 + components: + - type: Transform + pos: -34.5,60.5 + parent: 2 + - uid: 12494 + components: + - type: Transform + pos: -6.5,171.5 + parent: 2 + - uid: 12495 + components: + - type: Transform + pos: -0.5,173.5 + parent: 2 + - uid: 12496 + components: + - type: Transform + pos: -6.5,167.5 + parent: 2 + - uid: 12497 + components: + - type: Transform + pos: -6.5,165.5 + parent: 2 + - uid: 12498 + components: + - type: Transform + pos: -0.5,208.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + pos: 0.5,208.5 + parent: 2 + - uid: 12500 + components: + - type: Transform + pos: 1.5,208.5 + parent: 2 + - uid: 12501 + components: + - type: Transform + pos: -0.5,209.5 + parent: 2 + - uid: 12502 + components: + - type: Transform + pos: -1.5,209.5 + parent: 2 + - uid: 12503 + components: + - type: Transform + pos: -2.5,209.5 + parent: 2 + - uid: 12504 + components: + - type: Transform + pos: -5.5,211.5 + parent: 2 + - uid: 12505 + components: + - type: Transform + pos: -6.5,211.5 + parent: 2 + - uid: 12506 + components: + - type: Transform + pos: -7.5,211.5 + parent: 2 + - uid: 12507 + components: + - type: Transform + pos: -8.5,211.5 + parent: 2 + - uid: 12508 + components: + - type: Transform + pos: -9.5,211.5 + parent: 2 + - uid: 12509 + components: + - type: Transform + pos: -10.5,211.5 + parent: 2 + - uid: 12510 + components: + - type: Transform + pos: -11.5,211.5 + parent: 2 + - uid: 12511 + components: + - type: Transform + pos: -12.5,211.5 + parent: 2 + - uid: 12513 + components: + - type: Transform + pos: -14.5,210.5 + parent: 2 + - uid: 12514 + components: + - type: Transform + pos: -15.5,210.5 + parent: 2 + - uid: 12516 + components: + - type: Transform + pos: -15.5,209.5 + parent: 2 + - uid: 12517 + components: + - type: Transform + pos: -16.5,209.5 + parent: 2 + - uid: 12518 + components: + - type: Transform + pos: -17.5,209.5 + parent: 2 + - uid: 12527 + components: + - type: Transform + pos: -22.5,198.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + pos: -22.5,197.5 + parent: 2 + - uid: 12529 + components: + - type: Transform + pos: -23.5,197.5 + parent: 2 + - uid: 12530 + components: + - type: Transform + pos: -24.5,197.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + pos: -25.5,197.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + pos: -26.5,197.5 + parent: 2 + - uid: 12533 + components: + - type: Transform + pos: -28.5,194.5 + parent: 2 + - uid: 12553 + components: + - type: Transform + pos: -18.5,175.5 + parent: 2 + - uid: 12554 + components: + - type: Transform + pos: -19.5,175.5 + parent: 2 + - uid: 12555 + components: + - type: Transform + pos: -17.5,175.5 + parent: 2 + - uid: 12556 + components: + - type: Transform + pos: -17.5,174.5 + parent: 2 + - uid: 12557 + components: + - type: Transform + pos: -16.5,174.5 + parent: 2 + - uid: 12558 + components: + - type: Transform + pos: -15.5,174.5 + parent: 2 + - uid: 12559 + components: + - type: Transform + pos: -15.5,173.5 + parent: 2 + - uid: 12560 + components: + - type: Transform + pos: -14.5,173.5 + parent: 2 + - uid: 12561 + components: + - type: Transform + pos: -13.5,173.5 + parent: 2 + - uid: 12562 + components: + - type: Transform + pos: -12.5,173.5 + parent: 2 + - uid: 12567 + components: + - type: Transform + pos: -7.5,172.5 + parent: 2 + - uid: 12569 + components: + - type: Transform + pos: -5.5,173.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + pos: -4.5,173.5 + parent: 2 + - uid: 12571 + components: + - type: Transform + pos: -3.5,173.5 + parent: 2 + - uid: 12572 + components: + - type: Transform + pos: -2.5,173.5 + parent: 2 + - uid: 12574 + components: + - type: Transform + pos: -0.5,175.5 + parent: 2 + - uid: 12575 + components: + - type: Transform + pos: 0.5,175.5 + parent: 2 + - uid: 12576 + components: + - type: Transform + pos: 1.5,175.5 + parent: 2 + - uid: 12577 + components: + - type: Transform + pos: 2.5,176.5 + parent: 2 + - uid: 12578 + components: + - type: Transform + pos: 3.5,177.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + pos: 4.5,178.5 + parent: 2 + - uid: 12580 + components: + - type: Transform + pos: 5.5,179.5 + parent: 2 + - uid: 12581 + components: + - type: Transform + pos: 5.5,180.5 + parent: 2 + - uid: 12582 + components: + - type: Transform + pos: 6.5,180.5 + parent: 2 + - uid: 12583 + components: + - type: Transform + pos: 7.5,181.5 + parent: 2 + - uid: 12608 + components: + - type: Transform + pos: 7.5,202.5 + parent: 2 + - uid: 12609 + components: + - type: Transform + pos: 6.5,202.5 + parent: 2 + - uid: 12610 + components: + - type: Transform + pos: 6.5,203.5 + parent: 2 + - uid: 12611 + components: + - type: Transform + pos: 5.5,203.5 + parent: 2 + - uid: 12612 + components: + - type: Transform + pos: 5.5,204.5 + parent: 2 + - uid: 12613 + components: + - type: Transform + pos: 4.5,204.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + pos: 4.5,205.5 + parent: 2 + - uid: 12615 + components: + - type: Transform + pos: 2.5,207.5 + parent: 2 + - uid: 12616 + components: + - type: Transform + pos: 1.5,207.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + pos: -30.5,197.5 + parent: 2 + - uid: 12626 + components: + - type: Transform + pos: -4.5,210.5 + parent: 2 + - uid: 12627 + components: + - type: Transform + pos: -5.5,210.5 + parent: 2 + - uid: 12628 + components: + - type: Transform + pos: -12.5,210.5 + parent: 2 + - uid: 12629 + components: + - type: Transform + pos: -13.5,210.5 + parent: 2 + - uid: 12636 + components: + - type: Transform + pos: -27.5,199.5 + parent: 2 + - uid: 12639 + components: + - type: Transform + pos: -27.5,202.5 + parent: 2 + - uid: 12640 + components: + - type: Transform + pos: -27.5,198.5 + parent: 2 + - uid: 12643 + components: + - type: Transform + pos: -22.5,178.5 + parent: 2 + - uid: 12644 + components: + - type: Transform + pos: -20.5,175.5 + parent: 2 + - uid: 12645 + components: + - type: Transform + pos: -21.5,175.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + pos: -22.5,175.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + pos: -22.5,177.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + pos: -22.5,176.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + pos: 58.5,42.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + pos: -1.5,69.5 + parent: 2 + - uid: 12964 + components: + - type: Transform + pos: -32.5,67.5 + parent: 2 + - uid: 12974 + components: + - type: Transform + pos: -32.5,65.5 + parent: 2 + - uid: 13053 + components: + - type: Transform + pos: -30.5,64.5 + parent: 2 + - uid: 13054 + components: + - type: Transform + pos: -1.5,67.5 + parent: 2 + - uid: 13057 + components: + - type: Transform + pos: -1.5,66.5 + parent: 2 + - uid: 13065 + components: + - type: Transform + pos: -0.5,70.5 + parent: 2 + - uid: 13067 + components: + - type: Transform + pos: 0.5,70.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + pos: 2.5,67.5 + parent: 2 + - uid: 13074 + components: + - type: Transform + pos: 2.5,68.5 + parent: 2 + - uid: 13075 + components: + - type: Transform + pos: 2.5,69.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + pos: 2.5,70.5 + parent: 2 + - uid: 13123 + components: + - type: Transform + pos: -60.5,108.5 + parent: 2 + - uid: 13206 + components: + - type: Transform + pos: -54.5,82.5 + parent: 2 + - uid: 13340 + components: + - type: Transform + pos: 3.5,70.5 + parent: 2 + - uid: 13341 + components: + - type: Transform + pos: 4.5,70.5 + parent: 2 + - uid: 13551 + components: + - type: Transform + pos: -57.5,92.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + pos: -60.5,96.5 + parent: 2 + - uid: 13557 + components: + - type: Transform + pos: -58.5,92.5 + parent: 2 + - uid: 13560 + components: + - type: Transform + pos: -60.5,92.5 + parent: 2 + - uid: 13561 + components: + - type: Transform + pos: -60.5,93.5 + parent: 2 + - uid: 13566 + components: + - type: Transform + pos: -60.5,95.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + pos: -48.5,71.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + pos: -48.5,72.5 + parent: 2 + - uid: 13673 + components: + - type: Transform + pos: -49.5,72.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + pos: -58.5,96.5 + parent: 2 + - uid: 13750 + components: + - type: Transform + pos: -59.5,96.5 + parent: 2 + - uid: 13751 + components: + - type: Transform + pos: -61.5,96.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + pos: -61.5,97.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + pos: -61.5,99.5 + parent: 2 + - uid: 13754 + components: + - type: Transform + pos: -61.5,100.5 + parent: 2 + - uid: 13755 + components: + - type: Transform + pos: -59.5,100.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + pos: -60.5,100.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: -62.5,100.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: -62.5,101.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + pos: -62.5,103.5 + parent: 2 + - uid: 13760 + components: + - type: Transform + pos: -62.5,104.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + pos: -61.5,104.5 + parent: 2 + - uid: 13786 + components: + - type: Transform + pos: -60.5,112.5 + parent: 2 + - uid: 13789 + components: + - type: Transform + pos: -61.5,108.5 + parent: 2 + - uid: 13794 + components: + - type: Transform + pos: -65.5,108.5 + parent: 2 + - uid: 13800 + components: + - type: Transform + pos: -61.5,110.5 + parent: 2 + - uid: 13827 + components: + - type: Transform + pos: -66.5,108.5 + parent: 2 + - uid: 13828 + components: + - type: Transform + pos: -66.5,107.5 + parent: 2 + - uid: 13829 + components: + - type: Transform + pos: -70.5,107.5 + parent: 2 + - uid: 13830 + components: + - type: Transform + pos: -70.5,106.5 + parent: 2 + - uid: 13831 + components: + - type: Transform + pos: -70.5,105.5 + parent: 2 + - uid: 13832 + components: + - type: Transform + pos: -70.5,104.5 + parent: 2 + - uid: 13834 + components: + - type: Transform + pos: -66.5,105.5 + parent: 2 + - uid: 13835 + components: + - type: Transform + pos: -67.5,104.5 + parent: 2 + - uid: 13836 + components: + - type: Transform + pos: -68.5,104.5 + parent: 2 + - uid: 13837 + components: + - type: Transform + pos: -69.5,104.5 + parent: 2 + - uid: 13838 + components: + - type: Transform + pos: -70.5,103.5 + parent: 2 + - uid: 13839 + components: + - type: Transform + pos: -70.5,102.5 + parent: 2 + - uid: 13840 + components: + - type: Transform + pos: -70.5,101.5 + parent: 2 + - uid: 13841 + components: + - type: Transform + pos: -70.5,100.5 + parent: 2 + - uid: 13843 + components: + - type: Transform + pos: -71.5,101.5 + parent: 2 + - uid: 13844 + components: + - type: Transform + pos: -72.5,101.5 + parent: 2 + - uid: 13845 + components: + - type: Transform + pos: -73.5,101.5 + parent: 2 + - uid: 13846 + components: + - type: Transform + pos: -74.5,101.5 + parent: 2 + - uid: 13847 + components: + - type: Transform + pos: -75.5,101.5 + parent: 2 + - uid: 13854 + components: + - type: Transform + pos: -74.5,100.5 + parent: 2 + - uid: 13855 + components: + - type: Transform + pos: -74.5,99.5 + parent: 2 + - uid: 13856 + components: + - type: Transform + pos: -74.5,98.5 + parent: 2 + - uid: 13857 + components: + - type: Transform + pos: -75.5,97.5 + parent: 2 + - uid: 13858 + components: + - type: Transform + pos: -74.5,97.5 + parent: 2 + - uid: 13859 + components: + - type: Transform + pos: -73.5,97.5 + parent: 2 + - uid: 13860 + components: + - type: Transform + pos: -72.5,97.5 + parent: 2 + - uid: 13861 + components: + - type: Transform + pos: -71.5,97.5 + parent: 2 + - uid: 13862 + components: + - type: Transform + pos: -70.5,97.5 + parent: 2 + - uid: 13863 + components: + - type: Transform + pos: -70.5,98.5 + parent: 2 + - uid: 13864 + components: + - type: Transform + pos: -69.5,97.5 + parent: 2 + - uid: 13865 + components: + - type: Transform + pos: -69.5,96.5 + parent: 2 + - uid: 13866 + components: + - type: Transform + pos: -69.5,93.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + pos: -68.5,93.5 + parent: 2 + - uid: 13868 + components: + - type: Transform + pos: -68.5,92.5 + parent: 2 + - uid: 13869 + components: + - type: Transform + pos: -70.5,93.5 + parent: 2 + - uid: 13870 + components: + - type: Transform + pos: -71.5,93.5 + parent: 2 + - uid: 13871 + components: + - type: Transform + pos: -72.5,93.5 + parent: 2 + - uid: 13873 + components: + - type: Transform + pos: -69.5,94.5 + parent: 2 + - uid: 13874 + components: + - type: Transform + pos: -72.5,92.5 + parent: 2 + - uid: 13875 + components: + - type: Transform + pos: -72.5,91.5 + parent: 2 + - uid: 13880 + components: + - type: Transform + pos: -76.5,90.5 + parent: 2 + - uid: 13883 + components: + - type: Transform + pos: -79.5,91.5 + parent: 2 + - uid: 13884 + components: + - type: Transform + pos: -79.5,92.5 + parent: 2 + - uid: 13885 + components: + - type: Transform + pos: -79.5,93.5 + parent: 2 + - uid: 13886 + components: + - type: Transform + pos: -79.5,94.5 + parent: 2 + - uid: 13888 + components: + - type: Transform + pos: -79.5,96.5 + parent: 2 + - uid: 13889 + components: + - type: Transform + pos: -79.5,97.5 + parent: 2 + - uid: 13892 + components: + - type: Transform + pos: -79.5,95.5 + parent: 2 + - uid: 13893 + components: + - type: Transform + pos: -80.5,97.5 + parent: 2 + - uid: 13894 + components: + - type: Transform + pos: -55.5,73.5 + parent: 2 + - uid: 13902 + components: + - type: Transform + pos: -81.5,94.5 + parent: 2 + - uid: 13903 + components: + - type: Transform + pos: -78.5,97.5 + parent: 2 + - uid: 13908 + components: + - type: Transform + pos: -61.5,92.5 + parent: 2 + - uid: 13909 + components: + - type: Transform + pos: -62.5,92.5 + parent: 2 + - uid: 13912 + components: + - type: Transform + pos: -62.5,80.5 + parent: 2 + - uid: 13939 + components: + - type: Transform + pos: -61.5,114.5 + parent: 2 + - uid: 13947 + components: + - type: Transform + pos: -60.5,114.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + pos: -59.5,88.5 + parent: 2 + - uid: 13953 + components: + - type: Transform + pos: -60.5,88.5 + parent: 2 + - uid: 13954 + components: + - type: Transform + pos: -61.5,88.5 + parent: 2 + - uid: 13955 + components: + - type: Transform + pos: -62.5,88.5 + parent: 2 + - uid: 13956 + components: + - type: Transform + pos: -63.5,88.5 + parent: 2 + - uid: 13957 + components: + - type: Transform + pos: -64.5,88.5 + parent: 2 + - uid: 13958 + components: + - type: Transform + pos: -65.5,88.5 + parent: 2 + - uid: 13959 + components: + - type: Transform + pos: -66.5,88.5 + parent: 2 + - uid: 13960 + components: + - type: Transform + pos: -67.5,88.5 + parent: 2 + - uid: 13961 + components: + - type: Transform + pos: -68.5,88.5 + parent: 2 + - uid: 13962 + components: + - type: Transform + pos: -68.5,89.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + pos: -68.5,90.5 + parent: 2 + - uid: 13964 + components: + - type: Transform + pos: -69.5,89.5 + parent: 2 + - uid: 13965 + components: + - type: Transform + pos: -71.5,89.5 + parent: 2 + - uid: 13966 + components: + - type: Transform + pos: -72.5,89.5 + parent: 2 + - uid: 13967 + components: + - type: Transform + pos: -72.5,90.5 + parent: 2 + - uid: 14003 + components: + - type: Transform + pos: -62.5,84.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + pos: -55.5,76.5 + parent: 2 + - uid: 14192 + components: + - type: Transform + pos: -67.5,68.5 + parent: 2 + - uid: 14228 + components: + - type: Transform + pos: -27.5,77.5 + parent: 2 + - uid: 14327 + components: + - type: Transform + pos: -81.5,97.5 + parent: 2 + - uid: 14337 + components: + - type: Transform + pos: -67.5,65.5 + parent: 2 + - uid: 14364 + components: + - type: Transform + pos: -77.5,90.5 + parent: 2 + - uid: 14396 + components: + - type: Transform + pos: -59.5,87.5 + parent: 2 + - uid: 14397 + components: + - type: Transform + pos: -59.5,86.5 + parent: 2 + - uid: 14400 + components: + - type: Transform + pos: -59.5,84.5 + parent: 2 + - uid: 14401 + components: + - type: Transform + pos: -59.5,80.5 + parent: 2 + - uid: 14402 + components: + - type: Transform + pos: -59.5,79.5 + parent: 2 + - uid: 14403 + components: + - type: Transform + pos: -59.5,78.5 + parent: 2 + - uid: 14404 + components: + - type: Transform + pos: -59.5,77.5 + parent: 2 + - uid: 14405 + components: + - type: Transform + pos: -59.5,76.5 + parent: 2 + - uid: 14406 + components: + - type: Transform + pos: -60.5,76.5 + parent: 2 + - uid: 14407 + components: + - type: Transform + pos: -61.5,76.5 + parent: 2 + - uid: 14408 + components: + - type: Transform + pos: -62.5,76.5 + parent: 2 + - uid: 14409 + components: + - type: Transform + pos: -63.5,76.5 + parent: 2 + - uid: 14410 + components: + - type: Transform + pos: -64.5,76.5 + parent: 2 + - uid: 14411 + components: + - type: Transform + pos: -65.5,76.5 + parent: 2 + - uid: 14412 + components: + - type: Transform + pos: -66.5,76.5 + parent: 2 + - uid: 14413 + components: + - type: Transform + pos: -67.5,76.5 + parent: 2 + - uid: 14414 + components: + - type: Transform + pos: -67.5,77.5 + parent: 2 + - uid: 14415 + components: + - type: Transform + pos: -67.5,78.5 + parent: 2 + - uid: 14416 + components: + - type: Transform + pos: -67.5,79.5 + parent: 2 + - uid: 14417 + components: + - type: Transform + pos: -67.5,80.5 + parent: 2 + - uid: 14419 + components: + - type: Transform + pos: -67.5,83.5 + parent: 2 + - uid: 14420 + components: + - type: Transform + pos: -67.5,84.5 + parent: 2 + - uid: 14421 + components: + - type: Transform + pos: -67.5,85.5 + parent: 2 + - uid: 14422 + components: + - type: Transform + pos: -67.5,86.5 + parent: 2 + - uid: 14423 + components: + - type: Transform + pos: -68.5,86.5 + parent: 2 + - uid: 14424 + components: + - type: Transform + pos: -68.5,80.5 + parent: 2 + - uid: 14425 + components: + - type: Transform + pos: -69.5,80.5 + parent: 2 + - uid: 14426 + components: + - type: Transform + pos: -70.5,80.5 + parent: 2 + - uid: 14427 + components: + - type: Transform + pos: -71.5,80.5 + parent: 2 + - uid: 14428 + components: + - type: Transform + pos: -71.5,81.5 + parent: 2 + - uid: 14429 + components: + - type: Transform + pos: -71.5,82.5 + parent: 2 + - uid: 14432 + components: + - type: Transform + pos: -70.5,84.5 + parent: 2 + - uid: 14433 + components: + - type: Transform + pos: -69.5,84.5 + parent: 2 + - uid: 14434 + components: + - type: Transform + pos: -68.5,84.5 + parent: 2 + - uid: 14482 + components: + - type: Transform + pos: -59.5,85.5 + parent: 2 + - uid: 14577 + components: + - type: Transform + pos: -79.5,80.5 + parent: 2 + - uid: 14578 + components: + - type: Transform + pos: -79.5,81.5 + parent: 2 + - uid: 14579 + components: + - type: Transform + pos: -79.5,82.5 + parent: 2 + - uid: 14580 + components: + - type: Transform + pos: -79.5,86.5 + parent: 2 + - uid: 14581 + components: + - type: Transform + pos: -79.5,85.5 + parent: 2 + - uid: 14582 + components: + - type: Transform + pos: -79.5,84.5 + parent: 2 + - uid: 14583 + components: + - type: Transform + pos: -79.5,83.5 + parent: 2 + - uid: 14585 + components: + - type: Transform + pos: -78.5,87.5 + parent: 2 + - uid: 14586 + components: + - type: Transform + pos: -77.5,87.5 + parent: 2 + - uid: 14587 + components: + - type: Transform + pos: -76.5,87.5 + parent: 2 + - uid: 14588 + components: + - type: Transform + pos: -75.5,87.5 + parent: 2 + - uid: 14589 + components: + - type: Transform + pos: -74.5,87.5 + parent: 2 + - uid: 14590 + components: + - type: Transform + pos: -73.5,87.5 + parent: 2 + - uid: 14591 + components: + - type: Transform + pos: -72.5,87.5 + parent: 2 + - uid: 14592 + components: + - type: Transform + pos: -71.5,87.5 + parent: 2 + - uid: 14593 + components: + - type: Transform + pos: -71.5,86.5 + parent: 2 + - uid: 14594 + components: + - type: Transform + pos: -71.5,85.5 + parent: 2 + - uid: 14595 + components: + - type: Transform + pos: -70.5,86.5 + parent: 2 + - uid: 14598 + components: + - type: Transform + pos: -79.5,77.5 + parent: 2 + - uid: 14599 + components: + - type: Transform + pos: -79.5,76.5 + parent: 2 + - uid: 14600 + components: + - type: Transform + pos: -79.5,75.5 + parent: 2 + - uid: 14601 + components: + - type: Transform + pos: -79.5,74.5 + parent: 2 + - uid: 14602 + components: + - type: Transform + pos: -79.5,73.5 + parent: 2 + - uid: 14603 + components: + - type: Transform + pos: -79.5,72.5 + parent: 2 + - uid: 14604 + components: + - type: Transform + pos: -78.5,72.5 + parent: 2 + - uid: 14605 + components: + - type: Transform + pos: -77.5,72.5 + parent: 2 + - uid: 14606 + components: + - type: Transform + pos: -76.5,72.5 + parent: 2 + - uid: 14607 + components: + - type: Transform + pos: -75.5,72.5 + parent: 2 + - uid: 14608 + components: + - type: Transform + pos: -74.5,72.5 + parent: 2 + - uid: 14609 + components: + - type: Transform + pos: -72.5,72.5 + parent: 2 + - uid: 14610 + components: + - type: Transform + pos: -73.5,72.5 + parent: 2 + - uid: 14611 + components: + - type: Transform + pos: -71.5,72.5 + parent: 2 + - uid: 14612 + components: + - type: Transform + pos: -71.5,73.5 + parent: 2 + - uid: 14614 + components: + - type: Transform + pos: -70.5,72.5 + parent: 2 + - uid: 14616 + components: + - type: Transform + pos: -71.5,75.5 + parent: 2 + - uid: 14617 + components: + - type: Transform + pos: -71.5,76.5 + parent: 2 + - uid: 14618 + components: + - type: Transform + pos: -72.5,76.5 + parent: 2 + - uid: 14624 + components: + - type: Transform + pos: -78.5,76.5 + parent: 2 + - uid: 14625 + components: + - type: Transform + pos: -68.5,76.5 + parent: 2 + - uid: 14626 + components: + - type: Transform + pos: -70.5,76.5 + parent: 2 + - uid: 14634 + components: + - type: Transform + pos: -71.5,83.5 + parent: 2 + - uid: 14636 + components: + - type: Transform + pos: -71.5,84.5 + parent: 2 + - uid: 14709 + components: + - type: Transform + pos: 86.5,45.5 + parent: 2 + - uid: 14761 + components: + - type: Transform + pos: -79.5,90.5 + parent: 2 + - uid: 14834 + components: + - type: Transform + pos: -74.5,90.5 + parent: 2 + - uid: 14836 + components: + - type: Transform + pos: -116.5,96.5 + parent: 2 + - uid: 14837 + components: + - type: Transform + pos: -120.5,92.5 + parent: 2 + - uid: 14849 + components: + - type: Transform + pos: -75.5,90.5 + parent: 2 + - uid: 14911 + components: + - type: Transform + pos: -54.5,80.5 + parent: 2 + - uid: 14912 + components: + - type: Transform + pos: -54.5,81.5 + parent: 2 + - uid: 14913 + components: + - type: Transform + pos: -54.5,79.5 + parent: 2 + - uid: 14915 + components: + - type: Transform + pos: -55.5,82.5 + parent: 2 + - uid: 14916 + components: + - type: Transform + pos: -55.5,83.5 + parent: 2 + - uid: 14917 + components: + - type: Transform + pos: -55.5,84.5 + parent: 2 + - uid: 14918 + components: + - type: Transform + pos: -55.5,85.5 + parent: 2 + - uid: 14919 + components: + - type: Transform + pos: -55.5,86.5 + parent: 2 + - uid: 14920 + components: + - type: Transform + pos: -55.5,87.5 + parent: 2 + - uid: 14921 + components: + - type: Transform + pos: -55.5,88.5 + parent: 2 + - uid: 14923 + components: + - type: Transform + pos: -54.5,88.5 + parent: 2 + - uid: 14950 + components: + - type: Transform + pos: -41.5,61.5 + parent: 2 + - uid: 14951 + components: + - type: Transform + pos: -42.5,61.5 + parent: 2 + - uid: 14952 + components: + - type: Transform + pos: -43.5,61.5 + parent: 2 + - uid: 14953 + components: + - type: Transform + pos: -43.5,60.5 + parent: 2 + - uid: 14954 + components: + - type: Transform + pos: -45.5,62.5 + parent: 2 + - uid: 14955 + components: + - type: Transform + pos: -45.5,63.5 + parent: 2 + - uid: 14956 + components: + - type: Transform + pos: -48.5,62.5 + parent: 2 + - uid: 15217 + components: + - type: Transform + pos: -60.5,110.5 + parent: 2 + - uid: 15385 + components: + - type: Transform + pos: -35.5,72.5 + parent: 2 + - uid: 15388 + components: + - type: Transform + pos: -44.5,71.5 + parent: 2 + - uid: 15389 + components: + - type: Transform + pos: -71.5,66.5 + parent: 2 + - uid: 15390 + components: + - type: Transform + pos: -71.5,65.5 + parent: 2 + - uid: 15391 + components: + - type: Transform + pos: -71.5,68.5 + parent: 2 + - uid: 15392 + components: + - type: Transform + pos: -71.5,69.5 + parent: 2 + - uid: 15393 + components: + - type: Transform + pos: -71.5,67.5 + parent: 2 + - uid: 15394 + components: + - type: Transform + pos: -72.5,69.5 + parent: 2 + - uid: 15401 + components: + - type: Transform + pos: -54.5,78.5 + parent: 2 + - uid: 15402 + components: + - type: Transform + pos: -55.5,78.5 + parent: 2 + - uid: 15425 + components: + - type: Transform + pos: 82.5,42.5 + parent: 2 + - uid: 15426 + components: + - type: Transform + pos: 83.5,42.5 + parent: 2 + - uid: 15475 + components: + - type: Transform + pos: 83.5,41.5 + parent: 2 + - uid: 15477 + components: + - type: Transform + pos: -35.5,65.5 + parent: 2 + - uid: 15478 + components: + - type: Transform + pos: -35.5,66.5 + parent: 2 + - uid: 15479 + components: + - type: Transform + pos: -35.5,67.5 + parent: 2 + - uid: 15480 + components: + - type: Transform + pos: -35.5,68.5 + parent: 2 + - uid: 15481 + components: + - type: Transform + pos: -34.5,68.5 + parent: 2 + - uid: 15683 + components: + - type: Transform + pos: -23.5,178.5 + parent: 2 + - uid: 15826 + components: + - type: Transform + pos: -45.5,72.5 + parent: 2 + - uid: 15831 + components: + - type: Transform + pos: -36.5,71.5 + parent: 2 + - uid: 15837 + components: + - type: Transform + pos: -40.5,175.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + pos: -38.5,175.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: -37.5,175.5 + parent: 2 + - uid: 15978 + components: + - type: Transform + pos: -126.5,90.5 + parent: 2 + - uid: 16082 + components: + - type: Transform + pos: -25.5,178.5 + parent: 2 + - uid: 16083 + components: + - type: Transform + pos: -27.5,178.5 + parent: 2 + - uid: 16481 + components: + - type: Transform + pos: -125.5,90.5 + parent: 2 + - uid: 16541 + components: + - type: Transform + pos: -29.5,180.5 + parent: 2 + - uid: 16895 + components: + - type: Transform + pos: -29.5,182.5 + parent: 2 + - uid: 16904 + components: + - type: Transform + pos: -29.5,185.5 + parent: 2 + - uid: 16905 + components: + - type: Transform + pos: -29.5,186.5 + parent: 2 + - uid: 17127 + components: + - type: Transform + pos: -26.5,178.5 + parent: 2 + - uid: 17195 + components: + - type: Transform + pos: -67.5,71.5 + parent: 2 + - uid: 17243 + components: + - type: Transform + pos: -24.5,178.5 + parent: 2 + - uid: 17360 + components: + - type: Transform + pos: -62.5,108.5 + parent: 2 + - uid: 17368 + components: + - type: Transform + pos: -29.5,184.5 + parent: 2 + - uid: 17369 + components: + - type: Transform + pos: -29.5,183.5 + parent: 2 + - uid: 17425 + components: + - type: Transform + pos: -29.5,179.5 + parent: 2 + - uid: 17433 + components: + - type: Transform + pos: -29.5,181.5 + parent: 2 + - uid: 17458 + components: + - type: Transform + pos: -29.5,187.5 + parent: 2 + - uid: 17842 + components: + - type: Transform + pos: -123.5,101.5 + parent: 2 + - uid: 17846 + components: + - type: Transform + pos: -121.5,101.5 + parent: 2 + - uid: 17915 + components: + - type: Transform + pos: -125.5,93.5 + parent: 2 + - uid: 17933 + components: + - type: Transform + pos: -124.5,93.5 + parent: 2 + - uid: 17938 + components: + - type: Transform + pos: -126.5,103.5 + parent: 2 + - uid: 17958 + components: + - type: Transform + pos: -126.5,94.5 + parent: 2 + - uid: 17962 + components: + - type: Transform + pos: -120.5,91.5 + parent: 2 + - uid: 18013 + components: + - type: Transform + pos: -120.5,101.5 + parent: 2 + - uid: 18017 + components: + - type: Transform + pos: -126.5,93.5 + parent: 2 + - uid: 18029 + components: + - type: Transform + pos: -126.5,95.5 + parent: 2 + - uid: 18120 + components: + - type: Transform + pos: -59.5,92.5 + parent: 2 + - uid: 18179 + components: + - type: Transform + pos: -126.5,100.5 + parent: 2 + - uid: 18188 + components: + - type: Transform + pos: -125.5,101.5 + parent: 2 + - uid: 18217 + components: + - type: Transform + pos: -6.5,168.5 + parent: 2 + - uid: 18234 + components: + - type: Transform + pos: -6.5,169.5 + parent: 2 + - uid: 18239 + components: + - type: Transform + pos: -27.5,200.5 + parent: 2 + - uid: 18261 + components: + - type: Transform + pos: -126.5,99.5 + parent: 2 + - uid: 18329 + components: + - type: Transform + pos: -18.5,204.5 + parent: 2 + - uid: 18348 + components: + - type: Transform + pos: -126.5,101.5 + parent: 2 + - uid: 18350 + components: + - type: Transform + pos: -12.5,206.5 + parent: 2 + - uid: 18355 + components: + - type: Transform + pos: -11.5,206.5 + parent: 2 + - uid: 18377 + components: + - type: Transform + pos: -12.5,203.5 + parent: 2 + - uid: 18389 + components: + - type: Transform + pos: -4.5,209.5 + parent: 2 + - uid: 18391 + components: + - type: Transform + pos: -22.5,202.5 + parent: 2 + - uid: 18393 + components: + - type: Transform + pos: -4.5,208.5 + parent: 2 + - uid: 18394 + components: + - type: Transform + pos: -4.5,207.5 + parent: 2 + - uid: 18395 + components: + - type: Transform + pos: -4.5,206.5 + parent: 2 + - uid: 18396 + components: + - type: Transform + pos: -5.5,206.5 + parent: 2 + - uid: 18397 + components: + - type: Transform + pos: -6.5,206.5 + parent: 2 + - uid: 18401 + components: + - type: Transform + pos: -13.5,209.5 + parent: 2 + - uid: 18405 + components: + - type: Transform + pos: -27.5,204.5 + parent: 2 + - uid: 18406 + components: + - type: Transform + pos: -27.5,197.5 + parent: 2 + - uid: 18424 + components: + - type: Transform + pos: -27.5,203.5 + parent: 2 + - uid: 18425 + components: + - type: Transform + pos: 1.5,209.5 + parent: 2 + - uid: 18430 + components: + - type: Transform + pos: 5.5,206.5 + parent: 2 + - uid: 18434 + components: + - type: Transform + pos: 3.5,207.5 + parent: 2 + - uid: 18436 + components: + - type: Transform + pos: 4.5,207.5 + parent: 2 + - uid: 18439 + components: + - type: Transform + pos: 4.5,206.5 + parent: 2 + - uid: 18452 + components: + - type: Transform + pos: -28.5,197.5 + parent: 2 + - uid: 18471 + components: + - type: Transform + pos: -124.5,101.5 + parent: 2 + - uid: 18488 + components: + - type: Transform + pos: -127.5,90.5 + parent: 2 + - uid: 18530 + components: + - type: Transform + pos: -27.5,194.5 + parent: 2 + - uid: 18555 + components: + - type: Transform + pos: -27.5,196.5 + parent: 2 + - uid: 18556 + components: + - type: Transform + pos: -27.5,195.5 + parent: 2 + - uid: 18601 + components: + - type: Transform + pos: -113.5,100.5 + parent: 2 + - uid: 18603 + components: + - type: Transform + pos: -126.5,91.5 + parent: 2 + - uid: 18662 + components: + - type: Transform + pos: -123.5,93.5 + parent: 2 + - uid: 18706 + components: + - type: Transform + pos: 3.5,168.5 + parent: 2 + - uid: 18707 + components: + - type: Transform + pos: 1.5,168.5 + parent: 2 + - uid: 18711 + components: + - type: Transform + pos: 0.5,168.5 + parent: 2 + - uid: 18758 + components: + - type: Transform + pos: -0.5,168.5 + parent: 2 + - uid: 18767 + components: + - type: Transform + pos: -1.5,168.5 + parent: 2 + - uid: 18780 + components: + - type: Transform + pos: -5.5,168.5 + parent: 2 + - uid: 18873 + components: + - type: Transform + pos: 19.5,175.5 + parent: 2 + - uid: 18879 + components: + - type: Transform + pos: 19.5,179.5 + parent: 2 + - uid: 18901 + components: + - type: Transform + pos: 18.5,179.5 + parent: 2 + - uid: 18913 + components: + - type: Transform + pos: 19.5,180.5 + parent: 2 + - uid: 18920 + components: + - type: Transform + pos: 19.5,181.5 + parent: 2 + - uid: 18928 + components: + - type: Transform + pos: 21.5,181.5 + parent: 2 + - uid: 18956 + components: + - type: Transform + pos: 21.5,182.5 + parent: 2 + - uid: 19012 + components: + - type: Transform + pos: 22.5,182.5 + parent: 2 + - uid: 19116 + components: + - type: Transform + pos: 20.5,202.5 + parent: 2 + - uid: 19119 + components: + - type: Transform + pos: 20.5,201.5 + parent: 2 + - uid: 19128 + components: + - type: Transform + pos: -28.5,196.5 + parent: 2 + - uid: 19134 + components: + - type: Transform + pos: 7.5,180.5 + parent: 2 + - uid: 19140 + components: + - type: Transform + pos: -1.5,173.5 + parent: 2 + - uid: 19144 + components: + - type: Transform + pos: -0.5,169.5 + parent: 2 + - uid: 19145 + components: + - type: Transform + pos: -0.5,170.5 + parent: 2 + - uid: 19146 + components: + - type: Transform + pos: -0.5,171.5 + parent: 2 + - uid: 19147 + components: + - type: Transform + pos: -0.5,172.5 + parent: 2 + - uid: 19148 + components: + - type: Transform + pos: 4.5,173.5 + parent: 2 + - uid: 19149 + components: + - type: Transform + pos: 3.5,173.5 + parent: 2 + - uid: 19153 + components: + - type: Transform + pos: 2.5,172.5 + parent: 2 + - uid: 19154 + components: + - type: Transform + pos: 0.5,173.5 + parent: 2 + - uid: 19156 + components: + - type: Transform + pos: 2.5,173.5 + parent: 2 + - uid: 19157 + components: + - type: Transform + pos: 2.5,171.5 + parent: 2 + - uid: 19158 + components: + - type: Transform + pos: 3.5,170.5 + parent: 2 + - uid: 19159 + components: + - type: Transform + pos: 2.5,170.5 + parent: 2 + - uid: 19161 + components: + - type: Transform + pos: 6.5,173.5 + parent: 2 + - uid: 19162 + components: + - type: Transform + pos: 7.5,178.5 + parent: 2 + - uid: 19163 + components: + - type: Transform + pos: 5.5,178.5 + parent: 2 + - uid: 19164 + components: + - type: Transform + pos: 13.5,173.5 + parent: 2 + - uid: 19179 + components: + - type: Transform + pos: 3.5,175.5 + parent: 2 + - uid: 19180 + components: + - type: Transform + pos: 3.5,176.5 + parent: 2 + - uid: 19206 + components: + - type: Transform + pos: 2.5,175.5 + parent: 2 + - uid: 19209 + components: + - type: Transform + pos: 4.5,177.5 + parent: 2 + - uid: 19229 + components: + - type: Transform + pos: -121.5,93.5 + parent: 2 + - uid: 19318 + components: + - type: Transform + pos: -99.5,149.5 + parent: 2 + - uid: 19537 + components: + - type: Transform + pos: -64.5,70.5 + parent: 2 + - uid: 19562 + components: + - type: Transform + pos: -120.5,93.5 + parent: 2 + - uid: 19964 + components: + - type: Transform + pos: -79.5,172.5 + parent: 2 + - uid: 19966 + components: + - type: Transform + pos: -80.5,171.5 + parent: 2 + - uid: 19976 + components: + - type: Transform + pos: -78.5,171.5 + parent: 2 + - uid: 20001 + components: + - type: Transform + pos: -28.5,195.5 + parent: 2 + - uid: 20473 + components: + - type: Transform + pos: -68.5,72.5 + parent: 2 + - uid: 20539 + components: + - type: Transform + pos: -60.5,170.5 + parent: 2 + - uid: 20542 + components: + - type: Transform + pos: -59.5,170.5 + parent: 2 + - uid: 20559 + components: + - type: Transform + pos: -61.5,170.5 + parent: 2 + - uid: 20575 + components: + - type: Transform + pos: -65.5,170.5 + parent: 2 + - uid: 20599 + components: + - type: Transform + pos: -65.5,171.5 + parent: 2 + - uid: 20600 + components: + - type: Transform + pos: -65.5,172.5 + parent: 2 + - uid: 20601 + components: + - type: Transform + pos: -65.5,173.5 + parent: 2 + - uid: 20602 + components: + - type: Transform + pos: -65.5,174.5 + parent: 2 + - uid: 20627 + components: + - type: Transform + pos: -57.5,170.5 + parent: 2 + - uid: 20632 + components: + - type: Transform + pos: -62.5,170.5 + parent: 2 + - uid: 20633 + components: + - type: Transform + pos: -63.5,170.5 + parent: 2 + - uid: 20634 + components: + - type: Transform + pos: -64.5,170.5 + parent: 2 + - uid: 20659 + components: + - type: Transform + pos: -61.5,165.5 + parent: 2 + - uid: 20663 + components: + - type: Transform + pos: -62.5,167.5 + parent: 2 + - uid: 20677 + components: + - type: Transform + pos: -59.5,154.5 + parent: 2 + - uid: 20678 + components: + - type: Transform + pos: -60.5,154.5 + parent: 2 + - uid: 20780 + components: + - type: Transform + pos: -102.5,147.5 + parent: 2 + - uid: 20840 + components: + - type: Transform + pos: -59.5,160.5 + parent: 2 + - uid: 22387 + components: + - type: Transform + pos: 83.5,43.5 + parent: 2 + - uid: 22395 + components: + - type: Transform + pos: -79.5,87.5 + parent: 2 + - uid: 23147 + components: + - type: Transform + pos: 0.5,64.5 + parent: 2 + - uid: 23206 + components: + - type: Transform + pos: -0.5,64.5 + parent: 2 + - uid: 23270 + components: + - type: Transform + pos: -7.5,61.5 + parent: 2 + - uid: 23365 + components: + - type: Transform + pos: -1.5,64.5 + parent: 2 + - uid: 23372 + components: + - type: Transform + pos: -13.5,72.5 + parent: 2 + - uid: 23373 + components: + - type: Transform + pos: -18.5,72.5 + parent: 2 + - uid: 23418 + components: + - type: Transform + pos: -67.5,81.5 + parent: 2 + - uid: 23932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,203.5 + parent: 2 + - uid: 23933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,204.5 + parent: 2 + - uid: 23941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,206.5 + parent: 2 + - uid: 24056 + components: + - type: Transform + pos: -7.5,62.5 + parent: 2 + - uid: 24217 + components: + - type: Transform + pos: 1.5,64.5 + parent: 2 + - uid: 24273 + components: + - type: Transform + pos: -28.5,188.5 + parent: 2 + - uid: 24277 + components: + - type: Transform + pos: -28.5,191.5 + parent: 2 + - uid: 25088 + components: + - type: Transform + pos: -117.5,96.5 + parent: 2 + - uid: 25139 + components: + - type: Transform + pos: -119.5,96.5 + parent: 2 + - uid: 25140 + components: + - type: Transform + pos: -118.5,96.5 + parent: 2 + - uid: 25142 + components: + - type: Transform + pos: -120.5,95.5 + parent: 2 + - uid: 25143 + components: + - type: Transform + pos: -120.5,100.5 + parent: 2 + - uid: 25144 + components: + - type: Transform + pos: -120.5,97.5 + parent: 2 + - uid: 25145 + components: + - type: Transform + pos: -120.5,99.5 + parent: 2 + - uid: 25147 + components: + - type: Transform + pos: -115.5,96.5 + parent: 2 + - uid: 25148 + components: + - type: Transform + pos: -113.5,98.5 + parent: 2 + - uid: 25152 + components: + - type: Transform + pos: -120.5,98.5 + parent: 2 + - uid: 25154 + components: + - type: Transform + pos: -120.5,96.5 + parent: 2 + - uid: 25155 + components: + - type: Transform + pos: -120.5,94.5 + parent: 2 + - uid: 25227 + components: + - type: Transform + pos: -29.5,188.5 + parent: 2 + - uid: 26512 + components: + - type: Transform + pos: -19.5,65.5 + parent: 2 + - uid: 26642 + components: + - type: Transform + pos: -22.5,172.5 + parent: 2 + - uid: 26646 + components: + - type: Transform + pos: -19.5,172.5 + parent: 2 + - uid: 26647 + components: + - type: Transform + pos: -20.5,172.5 + parent: 2 + - uid: 26649 + components: + - type: Transform + pos: -22.5,168.5 + parent: 2 + - uid: 26653 + components: + - type: Transform + pos: -21.5,168.5 + parent: 2 + - uid: 26664 + components: + - type: Transform + pos: -20.5,168.5 + parent: 2 + - uid: 26819 + components: + - type: Transform + pos: -19.5,168.5 + parent: 2 + - uid: 26831 + components: + - type: Transform + pos: -21.5,172.5 + parent: 2 + - uid: 26859 + components: + - type: Transform + pos: -117.5,101.5 + parent: 2 + - uid: 26860 + components: + - type: Transform + pos: -117.5,102.5 + parent: 2 + - uid: 26866 + components: + - type: Transform + pos: -115.5,97.5 + parent: 2 + - uid: 27443 + components: + - type: Transform + pos: -2.5,70.5 + parent: 2 + - uid: 27839 + components: + - type: Transform + pos: -102.5,146.5 + parent: 2 + - uid: 27851 + components: + - type: Transform + pos: -61.5,164.5 + parent: 2 + - uid: 27852 + components: + - type: Transform + pos: -61.5,163.5 + parent: 2 + - uid: 27853 + components: + - type: Transform + pos: -62.5,163.5 + parent: 2 + - uid: 27854 + components: + - type: Transform + pos: -63.5,163.5 + parent: 2 + - uid: 27867 + components: + - type: Transform + pos: -64.5,167.5 + parent: 2 + - uid: 27868 + components: + - type: Transform + pos: -65.5,167.5 + parent: 2 + - uid: 27927 + components: + - type: Transform + pos: -65.5,166.5 + parent: 2 + - uid: 27928 + components: + - type: Transform + pos: -65.5,164.5 + parent: 2 + - uid: 27930 + components: + - type: Transform + pos: -65.5,163.5 + parent: 2 + - uid: 28216 + components: + - type: Transform + pos: -19.5,170.5 + parent: 2 + - uid: 28745 + components: + - type: Transform + pos: -19.5,169.5 + parent: 2 + - uid: 32447 + components: + - type: Transform + pos: -21.5,170.5 + parent: 2 + - uid: 32448 + components: + - type: Transform + pos: -22.5,170.5 + parent: 2 + - uid: 32648 + components: + - type: Transform + pos: -79.5,170.5 + parent: 2 + - uid: 33206 + components: + - type: Transform + pos: -28.5,178.5 + parent: 2 + - uid: 33433 + components: + - type: Transform + pos: -79.5,101.5 + parent: 2 + - uid: 33434 + components: + - type: Transform + pos: -80.5,101.5 + parent: 2 + - uid: 33478 + components: + - type: Transform + pos: -81.5,101.5 + parent: 2 + - uid: 33479 + components: + - type: Transform + pos: -82.5,101.5 + parent: 2 + - uid: 33480 + components: + - type: Transform + pos: -82.5,98.5 + parent: 2 + - uid: 33481 + components: + - type: Transform + pos: -82.5,100.5 + parent: 2 + - uid: 33690 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 34457 + components: + - type: Transform + pos: -14.5,209.5 + parent: 2 + - uid: 34506 + components: + - type: Transform + pos: -28.5,189.5 + parent: 2 + - uid: 34507 + components: + - type: Transform + pos: -28.5,192.5 + parent: 2 + - uid: 34510 + components: + - type: Transform + pos: -28.5,193.5 + parent: 2 + - uid: 35933 + components: + - type: Transform + pos: -12.5,69.5 + parent: 2 + - uid: 36974 + components: + - type: Transform + pos: -78.5,90.5 + parent: 2 + - uid: 37389 + components: + - type: Transform + pos: -78.5,101.5 + parent: 2 + - uid: 37390 + components: + - type: Transform + pos: 85.5,44.5 + parent: 2 + - uid: 38041 + components: + - type: Transform + pos: -73.5,90.5 + parent: 2 + - uid: 38366 + components: + - type: Transform + pos: -28.5,179.5 + parent: 2 + - uid: 38559 + components: + - type: Transform + pos: -79.5,171.5 + parent: 2 +- proto: WallSolidDiagonal + entities: + - uid: 257 + components: + - type: Transform + pos: 31.5,64.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,58.5 + parent: 2 + - uid: 3928 + components: + - type: Transform + pos: 55.5,64.5 + parent: 2 + - uid: 4475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,65.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + pos: 77.5,65.5 + parent: 2 + - uid: 5199 + components: + - type: Transform + pos: 63.5,65.5 + parent: 2 + - uid: 5200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,67.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + pos: 54.5,59.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,59.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,11.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 12033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,58.5 + parent: 2 + - uid: 12214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,86.5 + parent: 2 + - uid: 12231 + components: + - type: Transform + pos: -42.5,86.5 + parent: 2 + - uid: 14355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,100.5 + parent: 2 + - uid: 14356 + components: + - type: Transform + pos: -83.5,98.5 + parent: 2 + - uid: 19977 + components: + - type: Transform + pos: -80.5,172.5 + parent: 2 + - uid: 19978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,172.5 + parent: 2 + - uid: 19979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,170.5 + parent: 2 + - uid: 19980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,170.5 + parent: 2 + - uid: 20422 + components: + - type: Transform + pos: -98.5,177.5 + parent: 2 + - uid: 20423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,173.5 + parent: 2 + - uid: 20425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,177.5 + parent: 2 + - uid: 21045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,76.5 + parent: 2 + - uid: 25817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,76.5 + parent: 2 + - uid: 31556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,64.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 462 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 20937 + components: + - type: Transform + pos: 25.5,191.5 + parent: 2 + - uid: 29552 + components: + - type: Transform + pos: -84.5,32.5 + parent: 2 + - uid: 36567 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 16090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 13386 +- proto: WallWood + entities: + - uid: 1741 + components: + - type: Transform + pos: -6.5,174.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: -6.5,175.5 + parent: 2 + - uid: 13853 + components: + - type: Transform + pos: -82.5,102.5 + parent: 2 + - uid: 13891 + components: + - type: Transform + pos: -71.5,103.5 + parent: 2 + - uid: 14255 + components: + - type: Transform + pos: -81.5,102.5 + parent: 2 + - uid: 14257 + components: + - type: Transform + pos: -82.5,103.5 + parent: 2 + - uid: 14258 + components: + - type: Transform + pos: -82.5,104.5 + parent: 2 + - uid: 14259 + components: + - type: Transform + pos: -82.5,105.5 + parent: 2 + - uid: 14260 + components: + - type: Transform + pos: -82.5,106.5 + parent: 2 + - uid: 14261 + components: + - type: Transform + pos: -82.5,107.5 + parent: 2 + - uid: 14262 + components: + - type: Transform + pos: -81.5,108.5 + parent: 2 + - uid: 14263 + components: + - type: Transform + pos: -80.5,108.5 + parent: 2 + - uid: 14264 + components: + - type: Transform + pos: -79.5,108.5 + parent: 2 + - uid: 14265 + components: + - type: Transform + pos: -78.5,108.5 + parent: 2 + - uid: 14266 + components: + - type: Transform + pos: -77.5,108.5 + parent: 2 + - uid: 14267 + components: + - type: Transform + pos: -76.5,108.5 + parent: 2 + - uid: 14268 + components: + - type: Transform + pos: -75.5,108.5 + parent: 2 + - uid: 14269 + components: + - type: Transform + pos: -74.5,108.5 + parent: 2 + - uid: 14270 + components: + - type: Transform + pos: -73.5,108.5 + parent: 2 + - uid: 14271 + components: + - type: Transform + pos: -72.5,108.5 + parent: 2 + - uid: 14272 + components: + - type: Transform + pos: -71.5,107.5 + parent: 2 + - uid: 14273 + components: + - type: Transform + pos: -71.5,106.5 + parent: 2 + - uid: 14274 + components: + - type: Transform + pos: -71.5,105.5 + parent: 2 + - uid: 14275 + components: + - type: Transform + pos: -71.5,104.5 + parent: 2 + - uid: 14277 + components: + - type: Transform + pos: -72.5,102.5 + parent: 2 + - uid: 14278 + components: + - type: Transform + pos: -73.5,102.5 + parent: 2 + - uid: 14279 + components: + - type: Transform + pos: -74.5,102.5 + parent: 2 + - uid: 14280 + components: + - type: Transform + pos: -75.5,102.5 + parent: 2 + - uid: 14281 + components: + - type: Transform + pos: -78.5,102.5 + parent: 2 + - uid: 14282 + components: + - type: Transform + pos: -79.5,102.5 + parent: 2 + - uid: 14283 + components: + - type: Transform + pos: -71.5,102.5 + parent: 2 + - uid: 14285 + components: + - type: Transform + pos: -81.5,107.5 + parent: 2 + - uid: 14286 + components: + - type: Transform + pos: -72.5,107.5 + parent: 2 + - uid: 14295 + components: + - type: Transform + pos: -80.5,102.5 + parent: 2 + - uid: 22481 + components: + - type: Transform + pos: -21.5,177.5 + parent: 2 + - uid: 22482 + components: + - type: Transform + pos: -16.5,176.5 + parent: 2 + - uid: 22483 + components: + - type: Transform + pos: -21.5,179.5 + parent: 2 + - uid: 22484 + components: + - type: Transform + pos: -21.5,178.5 + parent: 2 + - uid: 22485 + components: + - type: Transform + pos: -18.5,181.5 + parent: 2 + - uid: 22486 + components: + - type: Transform + pos: -16.5,177.5 + parent: 2 + - uid: 22592 + components: + - type: Transform + pos: -6.5,176.5 + parent: 2 + - uid: 22593 + components: + - type: Transform + pos: -5.5,176.5 + parent: 2 + - uid: 22595 + components: + - type: Transform + pos: -3.5,176.5 + parent: 2 + - uid: 22596 + components: + - type: Transform + pos: -2.5,176.5 + parent: 2 + - uid: 22597 + components: + - type: Transform + pos: -2.5,177.5 + parent: 2 + - uid: 22598 + components: + - type: Transform + pos: -2.5,178.5 + parent: 2 + - uid: 22599 + components: + - type: Transform + pos: -2.5,179.5 + parent: 2 + - uid: 22600 + components: + - type: Transform + pos: -2.5,181.5 + parent: 2 + - uid: 22601 + components: + - type: Transform + pos: -2.5,182.5 + parent: 2 + - uid: 22602 + components: + - type: Transform + pos: -3.5,182.5 + parent: 2 + - uid: 22603 + components: + - type: Transform + pos: -4.5,182.5 + parent: 2 + - uid: 22604 + components: + - type: Transform + pos: -5.5,182.5 + parent: 2 + - uid: 22605 + components: + - type: Transform + pos: -6.5,182.5 + parent: 2 + - uid: 22621 + components: + - type: Transform + pos: -2.5,175.5 + parent: 2 + - uid: 22622 + components: + - type: Transform + pos: -21.5,180.5 + parent: 2 + - uid: 22652 + components: + - type: Transform + pos: -20.5,176.5 + parent: 2 + - uid: 22653 + components: + - type: Transform + pos: -18.5,176.5 + parent: 2 + - uid: 22654 + components: + - type: Transform + pos: -21.5,176.5 + parent: 2 + - uid: 22994 + components: + - type: Transform + pos: -17.5,176.5 + parent: 2 + - uid: 23050 + components: + - type: Transform + pos: -16.5,180.5 + parent: 2 + - uid: 23052 + components: + - type: Transform + pos: -17.5,181.5 + parent: 2 + - uid: 23066 + components: + - type: Transform + pos: -21.5,181.5 + parent: 2 + - uid: 23069 + components: + - type: Transform + pos: -19.5,176.5 + parent: 2 + - uid: 23073 + components: + - type: Transform + pos: -16.5,181.5 + parent: 2 + - uid: 23510 + components: + - type: Transform + pos: -2.5,174.5 + parent: 2 + - uid: 23511 + components: + - type: Transform + pos: -3.5,174.5 + parent: 2 + - uid: 23512 + components: + - type: Transform + pos: -4.5,174.5 + parent: 2 + - uid: 23513 + components: + - type: Transform + pos: -5.5,174.5 + parent: 2 + - uid: 29611 + components: + - type: Transform + pos: -19.5,181.5 + parent: 2 + - uid: 30301 + components: + - type: Transform + pos: -19.5,180.5 + parent: 2 +- proto: WardrobeBlack + entities: + - uid: 14137 + components: + - type: Transform + pos: -75.5,100.5 + parent: 2 + - uid: 18114 + components: + - type: Transform + pos: -75.5,99.5 + parent: 2 + - uid: 18697 + components: + - type: Transform + pos: -75.5,98.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 18705 + components: + - type: Transform + pos: -79.5,98.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 18709 + components: + - type: Transform + pos: -80.5,98.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 18719 + components: + - type: Transform + pos: -78.5,98.5 + parent: 2 +- proto: WardrobeBlackFilled + entities: + - uid: 13787 + components: + - type: Transform + pos: -68.5,109.5 + parent: 2 +- proto: WardrobeBlueFilled + entities: + - uid: 15216 + components: + - type: Transform + pos: -70.5,112.5 + parent: 2 +- proto: WardrobeCargoFilled + entities: + - uid: 299 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 +- proto: WardrobeChapelFilled + entities: + - uid: 12140 + components: + - type: Transform + pos: -52.5,64.5 + parent: 2 +- proto: WardrobeGeneticsFilled + entities: + - uid: 23688 + components: + - type: Transform + pos: 12.5,183.5 + parent: 2 +- proto: WardrobeGreenFilled + entities: + - uid: 16479 + components: + - type: Transform + pos: -69.5,112.5 + parent: 2 +- proto: WardrobeGreyFilled + entities: + - uid: 3943 + components: + - type: Transform + pos: -68.5,105.5 + parent: 2 + - uid: 11705 + components: + - type: Transform + pos: -66.5,109.5 + parent: 2 +- proto: WardrobeMedicalDoctorFilled + entities: + - uid: 23361 + components: + - type: Transform + pos: 2.5,202.5 + parent: 2 + - uid: 23423 + components: + - type: Transform + pos: 2.5,203.5 + parent: 2 +- proto: WardrobeMixedFilled + entities: + - uid: 10305 + components: + - type: Transform + pos: -70.5,109.5 + parent: 2 + - uid: 10853 + components: + - type: Transform + pos: -67.5,109.5 + parent: 2 + - uid: 17354 + components: + - type: Transform + pos: -68.5,112.5 + parent: 2 +- proto: WardrobePinkFilled + entities: + - uid: 17350 + components: + - type: Transform + pos: -66.5,112.5 + parent: 2 +- proto: WardrobePrisonFilled + entities: + - uid: 4066 + components: + - type: Transform + pos: 82.5,48.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: 82.5,54.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: 60.5,54.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4151 + components: + - type: Transform + pos: 60.5,51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5331 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4152 + components: + - type: Transform + pos: 60.5,48.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19720 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6506 + components: + - type: Transform + pos: 55.5,30.5 + parent: 2 + - uid: 7149 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 + - uid: 16435 + components: + - type: Transform + pos: 82.5,51.5 + parent: 2 +- proto: WardrobeRoboticsFilled + entities: + - uid: 20893 + components: + - type: Transform + pos: -73.5,177.5 + parent: 2 +- proto: WardrobeSalvageFilled + entities: + - uid: 309 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 8585 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 +- proto: WardrobeVirologyFilled + entities: + - uid: 24152 + components: + - type: Transform + pos: 22.5,197.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 42462 + components: + - type: Transform + pos: 23.5,197.5 + parent: 2 +- proto: WardrobeWhite + entities: + - uid: 38386 + components: + - type: Transform + pos: -6.5,210.5 + parent: 2 +- proto: WardrobeWhiteFilled + entities: + - uid: 10304 + components: + - type: Transform + pos: -69.5,109.5 + parent: 2 +- proto: WardrobeYellowFilled + entities: + - uid: 14096 + components: + - type: Transform + pos: -67.5,112.5 + parent: 2 +- proto: WarningAir + entities: + - uid: 20573 + components: + - type: Transform + pos: -102.5,19.5 + parent: 2 + - uid: 28829 + components: + - type: Transform + pos: -106.5,48.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 12321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,17.5 + parent: 2 + - uid: 17650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,16.5 + parent: 2 + - uid: 25347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,14.5 + parent: 2 + - uid: 25355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,147.5 + parent: 2 + - uid: 32379 + components: + - type: Transform + pos: 11.5,179.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 12317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,17.5 + parent: 2 + - uid: 21749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,143.5 + parent: 2 + - uid: 25215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,16.5 + parent: 2 + - uid: 25346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,14.5 + parent: 2 + - uid: 32381 + components: + - type: Transform + pos: 13.5,179.5 + parent: 2 +- proto: WarningWaste + entities: + - uid: 30857 + components: + - type: Transform + pos: -55.5,13.5 + parent: 2 + - uid: 32380 + components: + - type: Transform + pos: 12.5,179.5 + parent: 2 + - uid: 32382 + components: + - type: Transform + pos: -66.5,148.5 + parent: 2 +- proto: WarpPointBombing + entities: + - uid: 228 + components: + - type: Transform + pos: 83.5,65.5 + parent: 2 + - type: WarpPoint + location: Brig - HoS + - uid: 16953 + components: + - type: Transform + pos: 0.5,0.5 + parent: 13386 + - type: WarpPoint + location: Brig - Shuttle + - uid: 36102 + components: + - type: Transform + pos: 3.5,1.5 + parent: 21114 + - type: WarpPoint + location: Command - Shuttle + - uid: 39148 + components: + - type: Transform + pos: -91.5,155.5 + parent: 2 + - type: WarpPoint + location: Sci - Servers + - uid: 39149 + components: + - type: Transform + pos: -110.5,33.5 + parent: 2 + - type: WarpPoint + location: Eng - storage + - uid: 39150 + components: + - type: Transform + pos: -40.5,81.5 + parent: 2 + - type: WarpPoint + location: Center - Gateways + - uid: 39151 + components: + - type: Transform + pos: -127.5,47.5 + parent: 2 + - type: WarpPoint + location: Eng - AME + - uid: 39152 + components: + - type: Transform + pos: -40.5,106.5 + parent: 2 + - type: WarpPoint + location: Center - Bridge + - uid: 39153 + components: + - type: Transform + pos: -76.5,104.5 + parent: 2 + - type: WarpPoint + location: Center - Bathhouse + - uid: 39154 + components: + - type: Transform + pos: -25.5,200.5 + parent: 2 + - type: WarpPoint + location: Med - Cryo + - uid: 39155 + components: + - type: Transform + pos: -11.5,77.5 + parent: 2 + - type: WarpPoint + location: Center - EVA + - uid: 39162 + components: + - type: Transform + pos: 61.5,59.5 + parent: 2 + - type: WarpPoint + location: Brig - Armory + - uid: 41501 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - type: WarpPoint + location: Cargo - QM + - uid: 42887 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 30902 + - type: WarpPoint + location: Med - Shuttle + - uid: 42888 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 37842 + - type: WarpPoint + location: Cargo - Taxi Shuttle +- proto: WaterCooler + entities: + - uid: 454 + components: + - type: Transform + pos: 74.5,59.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 14741 + components: + - type: Transform + pos: -72.5,73.5 + parent: 2 + - uid: 20942 + components: + - type: Transform + pos: -89.5,181.5 + parent: 2 + - uid: 22391 + components: + - type: Transform + pos: -9.5,199.5 + parent: 2 + - uid: 22569 + components: + - type: Transform + pos: -20.5,177.5 + parent: 2 + - uid: 23827 + components: + - type: Transform + pos: -61.5,75.5 + parent: 2 + - uid: 27816 + components: + - type: Transform + pos: -81.5,33.5 + parent: 2 + - uid: 29086 + components: + - type: Transform + pos: -112.5,44.5 + parent: 2 +- proto: WaterTank + entities: + - uid: 30895 + components: + - type: Transform + pos: -116.5,95.5 + parent: 2 + - uid: 38289 + components: + - type: Transform + pos: -74.5,91.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 4361 + components: + - type: Transform + pos: 58.5,43.5 + parent: 2 + - uid: 10761 + components: + - type: Transform + pos: 0.5,80.5 + parent: 2 + - uid: 13710 + components: + - type: Transform + pos: -16.5,173.5 + parent: 2 + - uid: 14304 + components: + - type: Transform + pos: -73.5,107.5 + parent: 2 + - uid: 15846 + components: + - type: Transform + pos: -54.5,77.5 + parent: 2 + - uid: 17220 + components: + - type: Transform + pos: -81.5,73.5 + parent: 2 + - uid: 19238 + components: + - type: Transform + pos: -72.5,65.5 + parent: 2 + - uid: 23196 + components: + - type: Transform + pos: 2.5,194.5 + parent: 2 + - uid: 23984 + components: + - type: Transform + pos: -26.5,206.5 + parent: 2 + - uid: 29878 + components: + - type: Transform + anchored: True + pos: -100.5,34.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 36800 + components: + - type: Transform + pos: -76.5,144.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 13367 + components: + - type: Transform + pos: -11.5,69.5 + parent: 2 + - uid: 15889 + components: + - type: Transform + pos: -2.5,59.5 + parent: 2 + - uid: 17465 + components: + - type: Transform + pos: 18.5,171.5 + parent: 2 + - uid: 19683 + components: + - type: Transform + pos: -98.5,147.5 + parent: 2 + - uid: 21338 + components: + - type: Transform + pos: -60.5,166.5 + parent: 2 + - uid: 30191 + components: + - type: Transform + pos: -66.5,69.5 + parent: 2 + - uid: 35940 + components: + - type: Transform + pos: -6.5,59.5 + parent: 2 + - uid: 35950 + components: + - type: Transform + pos: -6.5,69.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 14314 + components: + - type: Transform + pos: -74.5,107.5 + parent: 2 +- proto: WeakKudzu + entities: + - uid: 7751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,148.5 + parent: 2 + - uid: 7800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,147.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,147.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,148.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,148.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,147.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,147.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,148.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,148.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,147.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 4841 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,67.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + pos: 53.5,50.5 + parent: 2 + - uid: 10588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,79.5 + parent: 2 + - uid: 11747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,100.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,43.5 + parent: 2 + - uid: 16712 + components: + - type: Transform + pos: -2.5,1.5 + parent: 13386 + - uid: 20008 + components: + - type: Transform + pos: -41.5,79.5 + parent: 2 + - uid: 22419 + components: + - type: Transform + pos: -93.5,37.5 + parent: 2 + - uid: 23151 + components: + - type: Transform + pos: 70.5,69.5 + parent: 2 + - uid: 23312 + components: + - type: Transform + pos: 53.5,53.5 + parent: 2 + - uid: 25063 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 26403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,52.5 + parent: 2 + - uid: 36321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,153.5 + parent: 2 + - uid: 36677 + components: + - type: Transform + pos: -5.5,180.5 + parent: 2 + - uid: 36833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 37842 +- proto: WeaponDisabler + entities: + - uid: 5016 + components: + - type: Transform + pos: 99.42166,52.76584 + parent: 2 + - uid: 11631 + components: + - type: Transform + pos: -41.409542,84.50304 + parent: 2 + - uid: 15541 + components: + - type: Transform + parent: 6467 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15542 + components: + - type: Transform + parent: 6467 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17450 + components: + - type: Transform + pos: -95.4293,36.500168 + parent: 2 + - uid: 37071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.45848,60.607796 + parent: 2 + - uid: 37074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.28827,60.607796 + parent: 2 + - uid: 37123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.62869,60.607796 + parent: 2 +- proto: WeaponDisablerPractice + entities: + - uid: 28702 + components: + - type: Transform + pos: 54.488632,54.599472 + parent: 2 + - uid: 31488 + components: + - type: Transform + pos: 54.634857,54.397076 + parent: 2 + - uid: 35938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.241585,87.691795 + parent: 2 +- proto: WeaponFlareGun + entities: + - uid: 14238 + components: + - type: Transform + pos: -47.493874,98.66459 + parent: 2 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 4827 + components: + - type: Transform + pos: 53.487526,54.541885 + parent: 2 + - uid: 16135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.8272247,3.5609512 + parent: 13386 + - uid: 41337 + components: + - type: Transform + pos: 53.532516,54.373222 + parent: 2 +- proto: WeaponLaserGun + entities: + - uid: 5111 + components: + - type: Transform + pos: 57.43447,61.500374 + parent: 2 + - uid: 11616 + components: + - type: Transform + pos: 57.411232,61.147995 + parent: 2 +- proto: WeaponProtoKineticAccelerator + entities: + - uid: 1455 + components: + - type: Transform + pos: -53.548035,5.678314 + parent: 2 +- proto: WeaponRifleAk + entities: + - uid: 8593 + components: + - type: Transform + pos: 60.64942,60.59375 + parent: 2 +- proto: WeaponRifleFoam + entities: + - uid: 8336 + components: + - type: Transform + pos: 5.52166,70.744514 + parent: 2 + - uid: 8891 + components: + - type: Transform + pos: 5.52166,70.66398 + parent: 2 + - uid: 8902 + components: + - type: Transform + pos: 5.52166,70.58344 + parent: 2 + - uid: 8904 + components: + - type: Transform + pos: 5.52166,70.5029 + parent: 2 +- proto: WeaponShotgunEnforcer + entities: + - uid: 925 + components: + - type: Transform + pos: 62.616096,58.656624 + parent: 2 +- proto: WeaponShotgunKammerer + entities: + - uid: 12801 + components: + - type: Transform + pos: 62.543526,58.359512 + parent: 2 +- proto: WeaponShotgunSawnEmpty + entities: + - uid: 38035 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 1811 + components: + - type: Transform + pos: 88.57862,64.742065 + parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 7714 + components: + - type: Transform + pos: -69.5,126.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: -69.5,134.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: -56.5,136.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: -56.5,124.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + pos: -64.5,132.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + pos: -67.5,134.5 + parent: 2 + - uid: 7836 + components: + - type: Transform + pos: -67.5,126.5 + parent: 2 + - uid: 7855 + components: + - type: Transform + pos: -65.5,131.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: -65.5,129.5 + parent: 2 +- proto: WeaponWaterBlaster + entities: + - uid: 4715 + components: + - type: Transform + pos: 81.36902,63.645935 + parent: 2 +- proto: WeaponWaterPistol + entities: + - uid: 12895 + components: + - type: Transform + pos: 69.30601,55.621418 + parent: 2 + - uid: 13848 + components: + - type: Transform + pos: 80.545906,41.320927 + parent: 2 + - uid: 14188 + components: + - type: Transform + pos: 81.51324,41.545815 + parent: 2 + - uid: 14189 + components: + - type: Transform + pos: 81.40076,41.388393 + parent: 2 + - uid: 14190 + components: + - type: Transform + pos: 80.70338,41.51208 + parent: 2 +- proto: WeedSpray + entities: + - uid: 16497 + components: + - type: Transform + pos: -10.77765,65.62955 + parent: 2 + - uid: 19704 + components: + - type: Transform + pos: -79.23213,150.86443 + parent: 2 + - uid: 20510 + components: + - type: Transform + pos: -92.31157,167.58257 + parent: 2 +- proto: Welder + entities: + - uid: 17394 + components: + - type: Transform + parent: 17390 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19662 + components: + - type: Transform + pos: -106.55451,91.578865 + parent: 2 + - uid: 20482 + components: + - type: Transform + pos: -97.73932,170.50157 + parent: 2 +- proto: WelderIndustrial + entities: + - uid: 4101 + components: + - type: Transform + pos: -70.35846,149.53973 + parent: 2 + - uid: 25268 + components: + - type: Transform + parent: 25246 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WelderIndustrialAdvanced + entities: + - uid: 12292 + components: + - type: Transform + parent: 12288 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WelderMini + entities: + - uid: 3747 + components: + - type: Transform + pos: -84.05515,143.44208 + parent: 2 + - uid: 18224 + components: + - type: Transform + pos: -80.62125,42.55195 + parent: 2 + - uid: 25219 + components: + - type: Transform + pos: -130.29013,96.89704 + parent: 2 + - uid: 38278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.01047,180.98605 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 1179 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 6055 + components: + - type: Transform + pos: 85.5,43.5 + parent: 2 + - uid: 10885 + components: + - type: Transform + pos: -9.5,86.5 + parent: 2 + - uid: 15563 + components: + - type: Transform + pos: -38.5,63.5 + parent: 2 + - uid: 15847 + components: + - type: Transform + pos: -54.5,76.5 + parent: 2 + - uid: 17228 + components: + - type: Transform + pos: -76.5,71.5 + parent: 2 + - uid: 20919 + components: + - type: Transform + pos: -73.5,174.5 + parent: 2 + - uid: 22303 + components: + - type: Transform + anchored: True + pos: -99.5,34.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 24096 + components: + - type: Transform + pos: 14.5,202.5 + parent: 2 + - uid: 24180 + components: + - type: Transform + pos: 23.5,195.5 + parent: 2 + - uid: 26668 + components: + - type: Transform + pos: -18.5,174.5 + parent: 2 + - uid: 27869 + components: + - type: Transform + pos: -88.5,47.5 + parent: 2 + - uid: 36207 + components: + - type: Transform + pos: -51.5,71.5 + parent: 2 + - uid: 37291 + components: + - type: Transform + pos: -35.5,176.5 + parent: 2 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 17720 + components: + - type: Transform + pos: -108.5,96.5 + parent: 2 +- proto: WetFloorSign + entities: + - uid: 16542 + components: + - type: Transform + pos: 0.31672645,81.82936 + parent: 2 + - uid: 16544 + components: + - type: Transform + pos: 0.59792566,81.615715 + parent: 2 + - uid: 31492 + components: + - type: Transform + pos: 0.32797337,81.48078 + parent: 2 +- proto: WheatBushel + entities: + - uid: 8519 + components: + - type: Transform + pos: 57.591072,25.70927 + parent: 2 + - uid: 8707 + components: + - type: Transform + pos: 57.535515,25.83427 + parent: 2 + - uid: 21391 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27307 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28226 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WhoopieCushion + entities: + - uid: 19720 + components: + - type: Transform + parent: 4152 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Windoor + entities: + - uid: 10440 + components: + - type: Transform + pos: -16.5,80.5 + parent: 2 + - uid: 10544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,78.5 + parent: 2 + - uid: 10545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,78.5 + parent: 2 + - uid: 15553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,59.5 + parent: 2 + - uid: 17405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,41.5 + parent: 2 + - uid: 17944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,180.5 + parent: 2 + - uid: 17998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,42.5 + parent: 2 + - uid: 18171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,168.5 + parent: 2 + - uid: 18294 + components: + - type: Transform + pos: -83.5,174.5 + parent: 2 + - uid: 18545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,168.5 + parent: 2 + - uid: 20083 + components: + - type: Transform + pos: -75.5,174.5 + parent: 2 + - uid: 20969 + components: + - type: Transform + pos: -72.5,166.5 + parent: 2 + - uid: 20971 + components: + - type: Transform + pos: -71.5,166.5 + parent: 2 + - uid: 20972 + components: + - type: Transform + pos: -70.5,166.5 + parent: 2 + - uid: 20974 + components: + - type: Transform + pos: -69.5,166.5 + parent: 2 + - uid: 35934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,70.5 + parent: 2 + - uid: 35936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,70.5 + parent: 2 + - uid: 38018 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 37842 +- proto: WindoorBarLocked + entities: + - uid: 12937 + components: + - type: Transform + pos: -31.5,64.5 + parent: 2 + - uid: 35802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,63.5 + parent: 2 +- proto: WindoorCargoLocked + entities: + - uid: 38019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 37842 + - uid: 38020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 37842 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 11057 + components: + - type: Transform + pos: -8.5,70.5 + parent: 2 + - uid: 11111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,67.5 + parent: 2 + - uid: 11114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,68.5 + parent: 2 + - uid: 11121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,68.5 + parent: 2 + - uid: 12117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,67.5 + parent: 2 + - uid: 12134 + components: + - type: Transform + pos: -7.5,70.5 + parent: 2 +- proto: WindoorKitchenLocked + entities: + - uid: 19714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,66.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-2.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,53.5 + parent: 2 + - uid: 17727 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 27334 + components: + - type: Transform + pos: 71.5,50.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 2432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,59.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: 60.5,60.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: 61.5,60.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,64.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,60.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,59.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,61.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,58.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,58.5 + parent: 2 + - uid: 12919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,61.5 + parent: 2 + - uid: 29464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,50.5 + parent: 2 + - uid: 29736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,53.5 + parent: 2 + - uid: 38073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,58.5 + parent: 2 +- proto: WindoorSecureBrigLocked + entities: + - uid: 14495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,61.5 + parent: 2 + - uid: 17540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,38.5 + parent: 2 +- proto: WindoorSecureCargoLocked + entities: + - uid: 848 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-5.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 2 + - uid: 12786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-2.5 + parent: 2 + - uid: 12788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 2 + - uid: 38021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 37842 + - uid: 38022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 37842 + - uid: 38023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 37842 +- proto: WindoorSecureChapelLocked + entities: + - uid: 12152 + components: + - type: Transform + pos: -54.5,70.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 22831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,192.5 + parent: 2 + - uid: 22843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,193.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 7750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,130.5 + parent: 2 + - uid: 15040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,98.5 + parent: 2 + - uid: 15054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,98.5 + parent: 2 + - uid: 15056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,98.5 + parent: 2 + - uid: 19249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,100.5 + parent: 2 + - uid: 29192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,35.5 + parent: 2 + - uid: 29193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,35.5 + parent: 2 + - uid: 36725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 21114 + - uid: 36726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 21114 + - uid: 37097 + components: + - type: Transform + pos: 77.5,34.5 + parent: 2 + - uid: 37098 + components: + - type: Transform + pos: 78.5,34.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 22293 + components: + - type: Transform + pos: -81.5,49.5 + parent: 2 + - uid: 24066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,208.5 + parent: 2 + - uid: 24067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,209.5 + parent: 2 + - uid: 27786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,42.5 + parent: 2 + - uid: 27787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,41.5 + parent: 2 + - uid: 28123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,40.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 8868 + components: + - type: Transform + pos: 9.5,70.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,80.5 + parent: 2 +- proto: WindoorSecureKitchenLocked + entities: + - uid: 35798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,63.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 22753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,190.5 + parent: 2 + - uid: 22755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,190.5 + parent: 2 + - uid: 23608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,194.5 + parent: 2 + - uid: 31051 + components: + - type: Transform + pos: -0.5,1.5 + parent: 30902 + - uid: 31052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 30902 + - uid: 34557 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 30902 + - uid: 34565 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 30902 + - uid: 37532 + components: + - type: Transform + pos: -1.5,167.5 + parent: 2 + - uid: 37533 + components: + - type: Transform + pos: -0.5,167.5 + parent: 2 + - uid: 37534 + components: + - type: Transform + pos: 0.5,167.5 + parent: 2 + - uid: 37535 + components: + - type: Transform + pos: 1.5,167.5 + parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 1044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-15.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 2 +- proto: WindoorSecureScienceLocked + entities: + - uid: 20965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,166.5 + parent: 2 + - uid: 20966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,166.5 + parent: 2 + - uid: 20967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,166.5 + parent: 2 + - uid: 20968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,166.5 + parent: 2 + - uid: 26587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,164.5 + parent: 2 + - uid: 27681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,163.5 + parent: 2 + - uid: 27683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,162.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 240 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,42.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,50.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,50.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,50.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: 94.5,56.5 + parent: 2 + - uid: 4905 + components: + - type: Transform + pos: 95.5,56.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: 96.5,56.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,48.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,54.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,51.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 13386 + - uid: 13627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 13386 + - uid: 35598 + components: + - type: Transform + pos: -94.5,38.5 + parent: 2 + - uid: 39381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,74.5 + parent: 2 + - uid: 41915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,54.5 + parent: 2 + - uid: 41925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,51.5 + parent: 2 + - uid: 41974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,48.5 + parent: 2 +- proto: WindoorServiceLocked + entities: + - uid: 10704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,86.5 + parent: 2 + - uid: 10705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,85.5 + parent: 2 + - uid: 10706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,84.5 + parent: 2 + - uid: 14571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,82.5 + parent: 2 + - uid: 14572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,80.5 + parent: 2 + - uid: 14663 + components: + - type: Transform + pos: -75.5,81.5 + parent: 2 + - uid: 14669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,84.5 + parent: 2 + - uid: 16471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,60.5 + parent: 2 + - uid: 22884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,63.5 + parent: 2 +- proto: Window + entities: + - uid: 173 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 4939 + components: + - type: Transform + pos: 111.5,60.5 + parent: 2 + - uid: 5700 + components: + - type: Transform + pos: -16.5,179.5 + parent: 2 + - uid: 5748 + components: + - type: Transform + pos: -16.5,178.5 + parent: 2 + - uid: 10745 + components: + - type: Transform + pos: -5.5,83.5 + parent: 2 + - uid: 10750 + components: + - type: Transform + pos: -4.5,80.5 + parent: 2 + - uid: 10801 + components: + - type: Transform + pos: -4.5,76.5 + parent: 2 + - uid: 10802 + components: + - type: Transform + pos: -4.5,75.5 + parent: 2 + - uid: 11227 + components: + - type: Transform + pos: -6.5,70.5 + parent: 2 + - uid: 11948 + components: + - type: Transform + pos: -5.5,70.5 + parent: 2 + - uid: 14087 + components: + - type: Transform + pos: -76.5,76.5 + parent: 2 + - uid: 14430 + components: + - type: Transform + pos: -75.5,76.5 + parent: 2 + - uid: 14431 + components: + - type: Transform + pos: -74.5,76.5 + parent: 2 + - uid: 14460 + components: + - type: Transform + pos: -73.5,76.5 + parent: 2 + - uid: 14576 + components: + - type: Transform + pos: -77.5,76.5 + parent: 2 + - uid: 16508 + components: + - type: Transform + pos: -14.5,72.5 + parent: 2 + - uid: 16864 + components: + - type: Transform + pos: -17.5,72.5 + parent: 2 + - uid: 23031 + components: + - type: Transform + pos: -4.5,168.5 + parent: 2 + - uid: 23130 + components: + - type: Transform + pos: -2.5,168.5 + parent: 2 + - uid: 27808 + components: + - type: Transform + pos: 112.5,60.5 + parent: 2 + - uid: 28472 + components: + - type: Transform + pos: -116.5,101.5 + parent: 2 + - uid: 28492 + components: + - type: Transform + pos: -115.5,101.5 + parent: 2 + - uid: 28493 + components: + - type: Transform + pos: -114.5,101.5 + parent: 2 + - uid: 28813 + components: + - type: Transform + pos: 109.5,60.5 + parent: 2 + - uid: 28831 + components: + - type: Transform + pos: 108.5,60.5 + parent: 2 + - uid: 28832 + components: + - type: Transform + pos: 107.5,60.5 + parent: 2 + - uid: 36615 + components: + - type: Transform + pos: 105.5,60.5 + parent: 2 + - uid: 39318 + components: + - type: Transform + pos: 104.5,60.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 4098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,59.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,61.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,62.5 + parent: 2 + - uid: 11019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,69.5 + parent: 2 + - uid: 11752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,70.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,68.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,67.5 + parent: 2 + - uid: 14330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,106.5 + parent: 2 + - uid: 14331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,107.5 + parent: 2 + - uid: 14332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,107.5 + parent: 2 + - uid: 14333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,106.5 + parent: 2 + - uid: 14379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,107.5 + parent: 2 + - uid: 14380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,107.5 + parent: 2 + - uid: 14381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,107.5 + parent: 2 + - uid: 14382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,107.5 + parent: 2 + - uid: 14564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,81.5 + parent: 2 + - uid: 14570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,83.5 + parent: 2 + - uid: 17653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,168.5 + parent: 2 + - uid: 18432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,42.5 + parent: 2 + - uid: 19056 + components: + - type: Transform + pos: -80.5,41.5 + parent: 2 + - uid: 19816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,167.5 + parent: 2 + - uid: 20028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,168.5 + parent: 2 + - uid: 20077 + components: + - type: Transform + pos: -76.5,174.5 + parent: 2 + - uid: 20078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,174.5 + parent: 2 + - uid: 20079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,175.5 + parent: 2 + - uid: 20080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,175.5 + parent: 2 + - uid: 20081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,174.5 + parent: 2 + - uid: 20082 + components: + - type: Transform + pos: -82.5,174.5 + parent: 2 + - uid: 20084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,167.5 + parent: 2 + - uid: 20085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,168.5 + parent: 2 + - uid: 20086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,168.5 + parent: 2 + - uid: 28151 + components: + - type: Transform + pos: -88.5,47.5 + parent: 2 + - uid: 28161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,47.5 + parent: 2 + - uid: 28162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,47.5 + parent: 2 + - uid: 28163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,47.5 + parent: 2 + - uid: 29714 + components: + - type: Transform + pos: -19.5,67.5 + parent: 2 + - uid: 36011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,62.5 + parent: 2 + - uid: 36013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,62.5 + parent: 2 + - uid: 38281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,166.5 + parent: 2 + - uid: 39403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,84.5 + parent: 2 + - uid: 39404 + components: + - type: Transform + pos: -7.5,86.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 2962 + components: + - type: Transform + pos: 7.5,70.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + pos: 5.5,70.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + pos: 6.5,70.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,131.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,131.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + pos: -67.5,129.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,129.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,130.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,131.5 + parent: 2 + - uid: 7744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,131.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,129.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + pos: -68.5,129.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,131.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,69.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + pos: 8.5,70.5 + parent: 2 + - uid: 8781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,68.5 + parent: 2 + - uid: 8782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,67.5 + parent: 2 + - uid: 8783 + components: + - type: Transform + pos: 7.5,68.5 + parent: 2 + - uid: 8785 + components: + - type: Transform + pos: 8.5,67.5 + parent: 2 + - uid: 8786 + components: + - type: Transform + pos: 7.5,67.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + pos: 6.5,68.5 + parent: 2 + - uid: 8812 + components: + - type: Transform + pos: 7.5,69.5 + parent: 2 + - uid: 8813 + components: + - type: Transform + pos: 6.5,69.5 + parent: 2 + - uid: 8814 + components: + - type: Transform + pos: 5.5,68.5 + parent: 2 + - uid: 8820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,69.5 + parent: 2 + - uid: 8821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,68.5 + parent: 2 + - uid: 8822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,67.5 + parent: 2 + - uid: 8823 + components: + - type: Transform + pos: 6.5,66.5 + parent: 2 + - uid: 8826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,66.5 + parent: 2 + - uid: 8828 + components: + - type: Transform + pos: 3.5,68.5 + parent: 2 + - uid: 8829 + components: + - type: Transform + pos: 4.5,69.5 + parent: 2 + - uid: 8833 + components: + - type: Transform + pos: 4.5,67.5 + parent: 2 + - uid: 8834 + components: + - type: Transform + pos: 5.5,66.5 + parent: 2 + - uid: 8835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,65.5 + parent: 2 + - uid: 8836 + components: + - type: Transform + pos: 4.5,65.5 + parent: 2 + - uid: 8837 + components: + - type: Transform + pos: 5.5,65.5 + parent: 2 + - uid: 8838 + components: + - type: Transform + pos: 6.5,65.5 + parent: 2 + - uid: 9096 + components: + - type: Transform + pos: -66.5,129.5 + parent: 2 + - uid: 22609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,74.5 + parent: 2 + - uid: 22689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,74.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,61.5 + parent: 2 + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,60.5 + parent: 2 + - uid: 613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,59.5 + parent: 2 + - uid: 633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,61.5 + parent: 2 + - uid: 704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-6.5 + parent: 2 + - uid: 834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,59.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,61.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,60.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,59.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,61.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,188.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,51.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,60.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + pos: 88.5,64.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,60.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: -13.5,80.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + pos: 75.5,55.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + pos: 34.5,59.5 + parent: 2 + - uid: 7150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,41.5 + parent: 2 + - uid: 7274 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 + - uid: 7275 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 7276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,42.5 + parent: 2 + - uid: 7277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,43.5 + parent: 2 + - uid: 8310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,21.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,22.5 + parent: 2 + - uid: 8373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,60.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,58.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,25.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,26.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,60.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,58.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,58.5 + parent: 2 + - uid: 10540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,78.5 + parent: 2 + - uid: 10541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,78.5 + parent: 2 + - uid: 10542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,78.5 + parent: 2 + - uid: 10543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,78.5 + parent: 2 + - uid: 10590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,84.5 + parent: 2 + - uid: 10591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,84.5 + parent: 2 + - uid: 10592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,84.5 + parent: 2 + - uid: 10594 + components: + - type: Transform + pos: -9.5,80.5 + parent: 2 + - uid: 10595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,78.5 + parent: 2 + - uid: 10596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,78.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + pos: -72.5,81.5 + parent: 2 + - uid: 14658 + components: + - type: Transform + pos: -73.5,81.5 + parent: 2 + - uid: 14659 + components: + - type: Transform + pos: -76.5,81.5 + parent: 2 + - uid: 14660 + components: + - type: Transform + pos: -77.5,81.5 + parent: 2 + - uid: 14661 + components: + - type: Transform + pos: -78.5,81.5 + parent: 2 + - uid: 14662 + components: + - type: Transform + pos: -74.5,81.5 + parent: 2 + - uid: 14666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,84.5 + parent: 2 + - uid: 14667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,85.5 + parent: 2 + - uid: 14668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,86.5 + parent: 2 + - uid: 14930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,34.5 + parent: 2 + - uid: 17821 + components: + - type: Transform + pos: -95.5,41.5 + parent: 2 + - uid: 17937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,60.5 + parent: 2 + - uid: 18007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,58.5 + parent: 2 + - uid: 18683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,47.5 + parent: 2 + - uid: 19276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,84.5 + parent: 2 + - uid: 21414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,35.5 + parent: 2 + - uid: 21425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,47.5 + parent: 2 + - uid: 21426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,47.5 + parent: 2 + - uid: 21428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,47.5 + parent: 2 + - uid: 21429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,46.5 + parent: 2 + - uid: 21430 + components: + - type: Transform + pos: -79.5,46.5 + parent: 2 + - uid: 21431 + components: + - type: Transform + pos: -80.5,46.5 + parent: 2 + - uid: 21434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,46.5 + parent: 2 + - uid: 21854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,36.5 + parent: 2 + - uid: 21857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,35.5 + parent: 2 + - uid: 21858 + components: + - type: Transform + pos: -80.5,35.5 + parent: 2 + - uid: 21859 + components: + - type: Transform + pos: -79.5,35.5 + parent: 2 + - uid: 21860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,36.5 + parent: 2 + - uid: 21942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,36.5 + parent: 2 + - uid: 21943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,36.5 + parent: 2 + - uid: 22292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,49.5 + parent: 2 + - uid: 23091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,81.5 + parent: 2 + - uid: 23228 + components: + - type: Transform + pos: -75.5,163.5 + parent: 2 + - uid: 23508 + components: + - type: Transform + pos: -75.5,162.5 + parent: 2 + - uid: 23995 + components: + - type: Transform + pos: -75.5,164.5 + parent: 2 + - uid: 24068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,209.5 + parent: 2 + - uid: 24069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,209.5 + parent: 2 + - uid: 24070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,209.5 + parent: 2 + - uid: 25058 + components: + - type: Transform + pos: -75.5,165.5 + parent: 2 + - uid: 26160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,34.5 + parent: 2 + - uid: 28625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,66.5 + parent: 2 + - uid: 28626 + components: + - type: Transform + pos: 86.5,66.5 + parent: 2 + - uid: 28631 + components: + - type: Transform + pos: 87.5,65.5 + parent: 2 + - uid: 28633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,65.5 + parent: 2 + - uid: 28912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 96.5,50.5 + parent: 2 + - uid: 28914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 96.5,56.5 + parent: 2 + - uid: 28916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,50.5 + parent: 2 + - uid: 28917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,56.5 + parent: 2 + - uid: 29128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,35.5 + parent: 2 + - uid: 29129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,35.5 + parent: 2 + - uid: 29130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,35.5 + parent: 2 + - uid: 29131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,35.5 + parent: 2 + - uid: 29139 + components: + - type: Transform + pos: 77.5,35.5 + parent: 2 + - uid: 29140 + components: + - type: Transform + pos: 78.5,35.5 + parent: 2 + - uid: 31454 + components: + - type: Transform + pos: -53.5,70.5 + parent: 2 + - uid: 37053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 36996 + - uid: 37054 + components: + - type: Transform + pos: -0.5,0.5 + parent: 36996 + - uid: 37055 + components: + - type: Transform + pos: 1.5,0.5 + parent: 36996 + - uid: 37056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 36996 + - uid: 37091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,34.5 + parent: 2 + - uid: 37092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,34.5 + parent: 2 + - uid: 37093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,34.5 + parent: 2 + - uid: 37094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,34.5 + parent: 2 + - uid: 37527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,167.5 + parent: 2 + - uid: 37528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,167.5 + parent: 2 + - uid: 37529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,167.5 + parent: 2 + - uid: 37530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,167.5 + parent: 2 + - uid: 37531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,167.5 + parent: 2 + - uid: 38099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,81.5 + parent: 2 + - uid: 39170 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 + - uid: 39171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-2.5 + parent: 2 +- proto: Wirecutter + entities: + - uid: 4829 + components: + - type: Transform + pos: -49.53069,9.540436 + parent: 2 + - uid: 8579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.36228,23.252716 + parent: 2 + - uid: 15522 + components: + - type: Transform + pos: -37.426147,58.146378 + parent: 2 + - uid: 17674 + components: + - type: Transform + pos: -87.45816,101.66297 + parent: 2 + - uid: 24188 + components: + - type: Transform + pos: 23.476677,189.69386 + parent: 2 + - uid: 25321 + components: + - type: Transform + pos: -127.54105,94.80617 + parent: 2 + - uid: 36684 + components: + - type: Transform + pos: 56.4312,55.555073 + parent: 2 +- proto: WoodDoor + entities: + - uid: 15467 + components: + - type: Transform + pos: -63.5,61.5 + parent: 2 + - uid: 23572 + components: + - type: Transform + pos: -4.5,176.5 + parent: 2 + - uid: 25437 + components: + - type: Transform + pos: -63.5,63.5 + parent: 2 +- proto: WoodenBuckler + entities: + - uid: 15850 + components: + - type: Transform + pos: -54.65697,73.54395 + parent: 2 +- proto: WoodenSign + entities: + - uid: 7318 + components: + - type: Transform + pos: 68.49022,28.233894 + parent: 2 +- proto: Wrench + entities: + - uid: 951 + components: + - type: Transform + pos: -29.493166,-5.4584694 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: -17.126015,-5.4111032 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: -50.693993,9.677284 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: 56.260986,55.618904 + parent: 2 + - uid: 5482 + components: + - type: Transform + rot: -2.220446049250313E-16 rad + pos: -24.58217,191.73366 + parent: 2 + - uid: 8592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.50755,23.52996 + parent: 2 + - uid: 20171 + components: + - type: Transform + pos: -83.415,179.59505 + parent: 2 + - uid: 20173 + components: + - type: Transform + pos: -83.44874,178.62802 + parent: 2 + - uid: 24189 + components: + - type: Transform + pos: 23.600405,189.66014 + parent: 2 + - uid: 25214 + components: + - type: Transform + pos: -132.60162,91.596085 + parent: 2 + - uid: 25320 + components: + - type: Transform + pos: -127.61979,95.02936 + parent: 2 + - uid: 26407 + components: + - type: Transform + pos: 18.519924,195.56573 + parent: 2 + - uid: 38275 + components: + - type: Transform + pos: -72.68234,181.68918 parent: 2 - proto: Zipties entities: - - uid: 29330 + - uid: 15531 components: - type: Transform - pos: -51.5,7.5 + pos: -42.33674,60.705826 + parent: 2 + - uid: 15532 + components: + - type: Transform + pos: -42.5392,60.773293 + parent: 2 + - uid: 15533 + components: + - type: Transform + pos: -42.55045,60.323517 parent: 2 ... diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml index 621e0d8378..98e42f4572 100644 --- a/Resources/Maps/amber.yml +++ b/Resources/Maps/amber.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 254.1.0 + engineVersion: 260.2.0 forkId: "" forkVersion: "" - time: 04/28/2025 05:48:54 - entityCount: 23948 + time: 05/26/2025 05:39:00 + entityCount: 24811 maps: - 1 grids: @@ -16,6 +16,7 @@ tilemap: 46: Space 12: FloorArcadeBlue 68: FloorArcadeBlue2 + 19: FloorArcadeRed 48: FloorAsteroidSand 11: FloorAstroAsteroidSand 1: FloorAstroGrass @@ -47,12 +48,15 @@ tilemap: 69: FloorReinforced 13: FloorShowroom 5: FloorShuttleGrey + 16: FloorShuttleRed + 18: FloorShuttleWhite 9: FloorSteel 70: FloorSteelCheckerDark 56: FloorSteelCheckerLight 4: FloorSteelDamaged 33: FloorSteelDiagonal 26: FloorSteelMini + 17: FloorSteelMono 47: FloorSteelPavement 67: FloorSteelPavementVertical 27: FloorTechMaint @@ -88,7 +92,7 @@ entities: - type: MetaData name: grid - type: Transform - pos: -1.5,9.5 + pos: -0.5400696,8.931154 parent: 1 - type: BecomesStation id: Amber @@ -96,381 +100,387 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: CQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAACGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDwAAAAAADwAAAAABDwAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDwAAAAACDwAAAAADDwAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAACGgAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABDwAAAAAADwAAAAABDwAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAADGgAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA - version: 6 + tiles: CQAAAAADAAkAAAAAAQAJAAAAAAEACQAAAAAAAAkAAAAAAQAOAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAIADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAkAAAAAAwAJAAAAAAEACQAAAAACAAkAAAAAAwAJAAAAAAMADgAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAJAAAAAAEADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAACAAkAAAAAAgAbAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAEADwAAAAADAA8AAAAAAwAPAAAAAAMACQAAAAAAAAkAAAAAAgAJAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAABAA8AAAAAAQAPAAAAAAEADwAAAAACAAkAAAAAAgAJAAAAAAEACQAAAAACAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEADgAAAAAAAAkAAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAQAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAgAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAABAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAQAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAJAAAAAAMADgAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAMACQAAAAADAAkAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAADAAkAAAAAAQAJAAAAAAEAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMADgAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: CQAAAAAACQAAAAADCQAAAAACGwAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAACCQAAAAABCQAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAACHAAAAAABHAAAAAABDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA - version: 6 + tiles: CQAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAA4AAAAAAAAbAAAAAAAACQAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIQAAAAAAAAkAAAAAAQAJAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAABAAkAAAAAAAAOAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAcAAAAAAMAHAAAAAABABwAAAAAAgAcAAAAAAIAHAAAAAABABwAAAAAAQAOAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAMAHAAAAAABABwAAAAAAwAcAAAAAAEADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAAAJAAAAAAMADgAAAAAAABwAAAAAAQAcAAAAAAAAHAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAQAJAAAAAAMACQAAAAACAA4AAAAAAAAOAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAEADgAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAEACQAAAAABAAkAAAAAAwAJAAAAAAEACQAAAAACAA4AAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAwAOAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAAAJAAAAAAEADgAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAABAA4AAAAAAAAJAAAAAAIACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEADgAAAAAAAAkAAAAAAwAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAQAOAAAAAAAACQAAAAABAAkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAwAJAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAAAAAkAAAAAAgAJAAAAAAIACQAAAAABAAkAAAAAAwAOAAAAAAAACQAAAAADAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 -1,-3: ind: -1,-3 - tiles: IwAAAAABIwAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADIwAAAAADIwAAAAAAIwAAAAAAIwAAAAADIwAAAAABDgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAACQAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAADDgAAAAAAHAAAAAACHAAAAAADHAAAAAACIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABCQAAAAACCQAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAACIwAAAAADIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAABHAAAAAADIwAAAAABIwAAAAADIwAAAAACIwAAAAAAIwAAAAAAHAAAAAABHAAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAABHAAAAAACSQAAAAACSQAAAAADHAAAAAAAHAAAAAAASQAAAAACSQAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACKQAAAAAAKwAAAAADKwAAAAACKwAAAAAADgAAAAAACQAAAAADHAAAAAACDgAAAAAAHAAAAAACSQAAAAAASQAAAAACHAAAAAABHAAAAAAASQAAAAADSQAAAAABHAAAAAADDgAAAAAAKwAAAAAAKwAAAAAAKwAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACCQAAAAADCQAAAAACCQAAAAADGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAC - version: 6 + tiles: IwAAAAADACMAAAAAAgAjAAAAAAEAIwAAAAADACMAAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAEACQAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAAAJAAAAAAIACQAAAAADACMAAAAAAQAjAAAAAAAAIwAAAAADACMAAAAAAAAjAAAAAAIADgAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAMAHAAAAAAAABwAAAAAAQAOAAAAAAAACQAAAAACACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAABABwAAAAAAAAcAAAAAAEAHAAAAAADAA4AAAAAAAAcAAAAAAMAHAAAAAADABwAAAAAAgAjAAAAAAMAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAwAcAAAAAAAAHAAAAAADABwAAAAAAQAOAAAAAAAAHAAAAAABABwAAAAAAgAcAAAAAAIAIwAAAAABACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAAAcAAAAAAAAHAAAAAABABwAAAAAAAAcAAAAAAAAHAAAAAADACMAAAAAAAAjAAAAAAIAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAABAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAIAHAAAAAACABwAAAAAAgAcAAAAAAAAHAAAAAACABwAAAAAAQAjAAAAAAAAIwAAAAAAACMAAAAAAwAjAAAAAAAAIwAAAAADABwAAAAAAgAcAAAAAAEADgAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAABABwAAAAAAABJAAAAAAIASQAAAAADABwAAAAAAAAcAAAAAAMASQAAAAAAAEkAAAAAAwAcAAAAAAEAHAAAAAACABwAAAAAAAAcAAAAAAMAHAAAAAABABwAAAAAAwAcAAAAAAIADgAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAAAcAAAAAAIAHAAAAAACABwAAAAAAQAcAAAAAAEAHAAAAAACACkAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAMAHAAAAAACABwAAAAAAgAcAAAAAAIAHAAAAAAAABwAAAAAAwAcAAAAAAAAHAAAAAAAABwAAAAAAAApAAAAAAAAKwAAAAADACsAAAAAAgArAAAAAAAADgAAAAAAAAkAAAAAAAAcAAAAAAIADgAAAAAAABwAAAAAAQBJAAAAAAMASQAAAAACABwAAAAAAwAcAAAAAAAASQAAAAABAEkAAAAAAwAcAAAAAAEADgAAAAAAACsAAAAAAgArAAAAAAMAKwAAAAAAAA4AAAAAAAAJAAAAAAIADgAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAACABwAAAAAAwAcAAAAAAEAHAAAAAADABwAAAAAAQAcAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAABwAAAAAAQAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAADAA4AAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAcAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAACAAkAAAAAAQAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACEAAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAAkAAAAAAwAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAhAAAAAAMACQAAAAACAAkAAAAAAQAJAAAAAAIAGwAAAAAAABsAAAAAAAAbAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAIACQAAAAAAAA4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAOAAAAAAAAIQAAAAADAA== + version: 7 -1,-4: ind: -1,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAABAQAAAAADIwAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAACAQAAAAADIwAAAAACCQAAAAAACQAAAAACDgAAAAAAIwAAAAADIwAAAAADIwAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAABIwAAAAACCQAAAAACCQAAAAADCQAAAAACIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAAAQAAAAADAQAAAAAAAQAAAAACDgAAAAAAIwAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADIwAAAAACIwAAAAABIwAAAAACIwAAAAABIwAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAAA - version: 6 + tiles: LAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAMACQAAAAACAAkAAAAAAgAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAMADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAABAA4AAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAADAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAAAJAAAAAAEADgAAAAAAABwAAAAAAwAcAAAAAAIAHAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAEACQAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAwAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAwAJAAAAAAAACQAAAAABAAkAAAAAAAAcAAAAAAAAHAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAMADgAAAAAAABwAAAAAAwAcAAAAAAEAHAAAAAADABwAAAAAAwAcAAAAAAEAHAAAAAAAABwAAAAAAwAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAAABAAAAAAIAAQAAAAADAAEAAAAAAgABAAAAAAIAAQAAAAACACMAAAAAAAAcAAAAAAAAHAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAQAJAAAAAAEAAQAAAAACAAEAAAAAAQABAAAAAAIAAQAAAAABAAEAAAAAAgAjAAAAAAEACQAAAAAAAAkAAAAAAQAOAAAAAAAAIwAAAAABACMAAAAAAwAjAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAEACQAAAAADAAEAAAAAAwABAAAAAAEAAQAAAAAAAAEAAAAAAgABAAAAAAEAIwAAAAACAAkAAAAAAwAJAAAAAAMACQAAAAACACMAAAAAAgAjAAAAAAMAIwAAAAADAA4AAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAQAOAAAAAAAAAQAAAAAAAAEAAAAAAwABAAAAAAAADgAAAAAAACMAAAAAAgAOAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAwAJAAAAAAIAIwAAAAADACMAAAAAAwAjAAAAAAIAIwAAAAACACMAAAAAAwAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAADAA== + version: 7 -1,-5: ind: -1,-5 - tiles: LgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAADAA4AAAAAAAAbAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAgAJAAAAAAMADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAEACQAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAEADgAAAAAAABsAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAACABsAAAAAAAAbAAAAAAAAGwAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAAkAAAAAAQAJAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAIACQAAAAADAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: CQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAACwAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAACwAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACwAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACwAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACHAAAAAADHAAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABHAAAAAACHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAABCQAAAAACHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADLwAAAAADLwAAAAADLwAAAAADLwAAAAAALwAAAAADLwAAAAABLwAAAAABLwAAAAADLwAAAAAALwAAAAACLwAAAAADLwAAAAABLwAAAAABLwAAAAAALwAAAAABLwAAAAACAQAAAAACLwAAAAADLwAAAAACLwAAAAABAQAAAAABAQAAAAACAQAAAAADLwAAAAABLwAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAABAQAAAAACLwAAAAACLwAAAAACLwAAAAABAQAAAAACAQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAABLwAAAAACLwAAAAAALwAAAAACAQAAAAAAAQAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAACLwAAAAAALwAAAAAALwAAAAABAQAAAAAAAQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA - version: 6 + tiles: CQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAA4AAAAAAAALAAAAAAAACwAAAAAAAAsAAAAACQAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACQAAAAABAAkAAAAAAgAOAAAAAAAADgAAAAAAAAsAAAAAAAALAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAAADgAAAAAAAA4AAAAAAAALAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAAAAA4AAAAAAAALAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAALAAAAAAsADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAAAAQAAAAABAAEAAAAAAwAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAADAAEAAAAAAQABAAAAAAIADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAACQAAAAACAAkAAAAAAwABAAAAAAIAAQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAADAAkAAAAAAQAJAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAADAAkAAAAAAQAvAAAAAAAALwAAAAACAC8AAAAAAQAvAAAAAAAALwAAAAACAC8AAAAAAwAvAAAAAAMALwAAAAABAC8AAAAAAAAvAAAAAAEALwAAAAADAC8AAAAAAQAvAAAAAAMALwAAAAACAC8AAAAAAAAvAAAAAAMAAQAAAAADAC8AAAAAAQAvAAAAAAAALwAAAAACAAEAAAAAAQABAAAAAAAAAQAAAAACAC8AAAAAAgAvAAAAAAEADgAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAABAAkAAAAAAwAJAAAAAAAACQAAAAACAAEAAAAAAQAvAAAAAAEALwAAAAACAC8AAAAAAgABAAAAAAMAAQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAABAAAAAAIALwAAAAACAC8AAAAAAwAvAAAAAAAAAQAAAAABAAEAAAAAAwAOAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAAAQAAAAAAAC8AAAAAAQAvAAAAAAMALwAAAAAAAAEAAAAAAQABAAAAAAMADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: AQAAAAACLwAAAAAALwAAAAACLwAAAAACAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADAQAAAAACLwAAAAABLwAAAAADLwAAAAACAQAAAAAAAQAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAADCQAAAAACCQAAAAAADgAAAAAAMQAAAAACDgAAAAAAGwAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAMQAAAAAAMQAAAAACMQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAABDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: AQAAAAADAC8AAAAAAgAvAAAAAAIALwAAAAABAAEAAAAAAwABAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAAEAAAAAAQAvAAAAAAAALwAAAAACAC8AAAAAAwABAAAAAAMAAQAAAAAAAA4AAAAAAAAcAAAAAAEAHAAAAAAAABwAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAAkAAAAAAQAOAAAAAAAADgAAAAAAAC8AAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAgAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAEACQAAAAADAAkAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAADIAAAAAAAAyAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAAAHAAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAyAAAAAAAAMgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAEADgAAAAAAADEAAAAAAwAxAAAAAAEAMQAAAAADAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAACQAAAAABAAkAAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAABAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAgAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 -2,-1: ind: -2,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACQAAAAACCQAAAAADCQAAAAAACAAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAAADgAAAAAACQAAAAADCQAAAAADHAAAAAABHAAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAACQAAAAACCQAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAACQAAAAACCQAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAAACQAAAAACCQAAAAABCQAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAABHAAAAAABHAAAAAACHAAAAAACHAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAACQAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAADCQAAAAACDgAAAAAAHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAAACQAAAAAC - version: 6 + tiles: DgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAgAJAAAAAAAACQAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAABAAgAAAAAAAAJAAAAAAEACQAAAAABAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAAAIAAAAAAAACAAAAAAAAAkAAAAAAQAIAAAAAAAACAAAAAAAAAgAAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAQAOAAAAAAAACQAAAAACAAkAAAAAAwAeAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACAAAAAAAAAgAAAAAAAAJAAAAAAIACQAAAAADAAkAAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAMADgAAAAAAAAkAAAAAAAAJAAAAAAIAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAIAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAAACQAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAADAA4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAgAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAEADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAAAABwAAAAAAQAcAAAAAAEAIwAAAAACACMAAAAAAQAjAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAgAOAAAAAAAADgAAAAAAABwAAAAAAgAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAIAHAAAAAABAA4AAAAAAAAjAAAAAAEAIwAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAACAAkAAAAAAgAcAAAAAAAAHAAAAAACABwAAAAAAwAcAAAAAAIAHAAAAAAAABwAAAAAAwAOAAAAAAAAIwAAAAAAACMAAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAQAOAAAAAAAAHAAAAAACABwAAAAAAwAcAAAAAAEAHAAAAAADABwAAAAAAwAcAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAgAJAAAAAAMADgAAAAAAABwAAAAAAAAcAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAgAJAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAACABwAAAAAAgAcAAAAAAEAHAAAAAAAABwAAAAAAQAcAAAAAAIAHAAAAAADABwAAAAAAgAcAAAAAAAACQAAAAABAAkAAAAAAQAPAAAAAAMADwAAAAAAAA8AAAAAAAAPAAAAAAIACQAAAAAAAAkAAAAAAgAcAAAAAAEAHAAAAAACABwAAAAAAQAcAAAAAAAAHAAAAAADABwAAAAAAAAcAAAAAAMAHAAAAAAAAAkAAAAAAAAJAAAAAAMADwAAAAACAA8AAAAAAAAPAAAAAAMADwAAAAADAAkAAAAAAwAJAAAAAAIAHAAAAAAAABwAAAAAAgAcAAAAAAEAHAAAAAAAABwAAAAAAAAcAAAAAAMAHAAAAAABABwAAAAAAQAJAAAAAAIACQAAAAABAA8AAAAAAQAPAAAAAAIADwAAAAACAA8AAAAAAgAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAMACQAAAAACAAkAAAAAAQAJAAAAAAAACQAAAAAAAA== + version: 7 -2,-2: ind: -2,-2 - tiles: MwAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAADMwAAAAABMwAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAADMwAAAAADMwAAAAABMwAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAANwAAAAACNwAAAAAANwAAAAAANwAAAAABCQAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAADMwAAAAADMwAAAAAAMwAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAANwAAAAADNwAAAAACNwAAAAABNwAAAAABDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAACMwAAAAACCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAACCQAAAAADCQAAAAADCQAAAAADDgAAAAAAOAAAAAADOAAAAAAAOAAAAAACOAAAAAABOAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAAOAAAAAABOAAAAAABOAAAAAADOAAAAAAAOAAAAAACDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABOAAAAAACOAAAAAADOAAAAAAAOAAAAAABOAAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAADOAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACAAAAAAACQAAAAABCQAAAAAD - version: 6 + tiles: MwAAAAAAADMAAAAAAwAzAAAAAAMAMwAAAAADADMAAAAAAAAzAAAAAAIAMwAAAAABAAkAAAAAAwAJAAAAAAMACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADMAAAAAAQAzAAAAAAAAMwAAAAACADMAAAAAAwAzAAAAAAEAMwAAAAACADMAAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAwAOAAAAAAAANwAAAAACADcAAAAAAQA3AAAAAAEANwAAAAADAAkAAAAAAQAzAAAAAAIAMwAAAAACADMAAAAAAQAzAAAAAAMAMwAAAAADADMAAAAAAgAzAAAAAAEACQAAAAABAAkAAAAAAwAJAAAAAAMADgAAAAAAADcAAAAAAAA3AAAAAAAANwAAAAABADcAAAAAAQAOAAAAAAAAMwAAAAABADMAAAAAAgAzAAAAAAIAMwAAAAACADMAAAAAAwAzAAAAAAIAMwAAAAAAAAkAAAAAAwAJAAAAAAEACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADMAAAAAAgAzAAAAAAMAMwAAAAABADMAAAAAAQAzAAAAAAEAMwAAAAACADMAAAAAAwAJAAAAAAMACQAAAAABAAkAAAAAAAAJAAAAAAIAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAEAHAAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAADABwAAAAAAQAcAAAAAAAAHAAAAAACABwAAAAAAAAcAAAAAAAAHAAAAAABAAkAAAAAAwAJAAAAAAMACQAAAAACAA4AAAAAAAA4AAAAAAAAOAAAAAADADgAAAAAAwA4AAAAAAIAOAAAAAAAABwAAAAAAQAcAAAAAAEAHAAAAAAAABwAAAAAAwAcAAAAAAAAHAAAAAACAA4AAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAQAOAAAAAAAAOAAAAAABADgAAAAAAQA4AAAAAAIAOAAAAAADADgAAAAAAwAOAAAAAAAAHAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAMACQAAAAACADgAAAAAAgA4AAAAAAMAOAAAAAABADgAAAAAAQA4AAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAIAHAAAAAABABwAAAAAAQAcAAAAAAMADgAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAAAAA4AAAAAAAA4AAAAAAIAOAAAAAAAADgAAAAAAgA4AAAAAAEAOAAAAAADAA4AAAAAAAAcAAAAAAIAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAABAAkAAAAAAQAJAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAgAJAAAAAAMACQAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAAkAAAAAAwAJAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAgAAAAAAAAIAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAIADgAAAAAAAAkAAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAMACQAAAAADAAgAAAAAAAAJAAAAAAIACQAAAAACAA== + version: 7 -2,-3: ind: -2,-3 - tiles: DgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACIwAAAAACIwAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAAAHAAAAAADDgAAAAAAIwAAAAACIwAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAABDgAAAAAAHAAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACDgAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAABMwAAAAADMwAAAAAAMwAAAAACMwAAAAACMwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADHAAAAAADHAAAAAAAHAAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAACHAAAAAABHAAAAAAAHAAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAAAHAAAAAADHAAAAAAAHAAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAAHAAAAAABCQAAAAABHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAAHAAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAADMwAAAAADMwAAAAADCQAAAAABCQAAAAACCQAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAAB - version: 6 + tiles: DgAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAEAHAAAAAABABwAAAAAAwAcAAAAAAAAHAAAAAACABwAAAAAAAAcAAAAAAEAHAAAAAADABwAAAAAAAAjAAAAAAAAIwAAAAACAA4AAAAAAAAcAAAAAAEAHAAAAAADABwAAAAAAgAcAAAAAAAAHAAAAAACAA4AAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAQAcAAAAAAIAHAAAAAACABwAAAAAAQAOAAAAAAAAIwAAAAACACMAAAAAAgAOAAAAAAAAHAAAAAABABwAAAAAAwAcAAAAAAMAHAAAAAADABwAAAAAAAAOAAAAAAAAHAAAAAACABwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAAAHAAAAAADABwAAAAAAAAcAAAAAAIADgAAAAAAABwAAAAAAwAcAAAAAAMADgAAAAAAABwAAAAAAwAcAAAAAAEAHAAAAAABABwAAAAAAgAOAAAAAAAAHAAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAMAHAAAAAADAA4AAAAAAAAcAAAAAAEAHAAAAAAAABwAAAAAAQAcAAAAAAEADgAAAAAAABwAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAACAAkAAAAAAwAJAAAAAAEACQAAAAABAAkAAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAEACQAAAAACAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAwAJAAAAAAEACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAADAAkAAAAAAQAJAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAABAAkAAAAAAgAJAAAAAAIACQAAAAADAAkAAAAAAQAJAAAAAAEACQAAAAABAAkAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAEADgAAAAAAAA4AAAAAAAAcAAAAAAMAHAAAAAACABwAAAAAAgAcAAAAAAEADgAAAAAAADMAAAAAAwAzAAAAAAAAMwAAAAADADMAAAAAAAAzAAAAAAEADgAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAQAJAAAAAAMACQAAAAABAAkAAAAAAAAJAAAAAAIACQAAAAACADMAAAAAAAAzAAAAAAMAMwAAAAACADMAAAAAAAAzAAAAAAMADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAQAJAAAAAAAACQAAAAAAAAkAAAAAAgAcAAAAAAEAHAAAAAACABwAAAAAAgAzAAAAAAAAMwAAAAADADMAAAAAAwAzAAAAAAIAMwAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAQAJAAAAAAMAHAAAAAAAABwAAAAAAgAcAAAAAAEAMwAAAAAAADMAAAAAAgAzAAAAAAEAMwAAAAACADMAAAAAAwAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAABABwAAAAAAwAcAAAAAAMAHAAAAAACADMAAAAAAwAzAAAAAAAAMwAAAAACADMAAAAAAwAzAAAAAAIAMwAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAwAOAAAAAAAAHAAAAAABAAkAAAAAAgAcAAAAAAEAHAAAAAAAABwAAAAAAgAOAAAAAAAADgAAAAAAADMAAAAAAQAzAAAAAAEAMwAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAQAJAAAAAAIADgAAAAAAABwAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAwAJAAAAAAIAMwAAAAADADMAAAAAAQAzAAAAAAEAMwAAAAADADMAAAAAAgAzAAAAAAMAMwAAAAABAAkAAAAAAAAJAAAAAAAACQAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAABABwAAAAAAAAcAAAAAAIAHAAAAAACAA== + version: 7 -2,-4: ind: -2,-4 - tiles: DgAAAAAAHAAAAAABHAAAAAABOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAACHAAAAAABHAAAAAADOgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACOgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAABDgAAAAAAOQAAAAACDgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAACCQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAAADgAAAAAAOQAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACDgAAAAAADgAAAAAAIwAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAABHAAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIwAAAAACDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAAHAAAAAAAHAAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAADIwAAAAAAIwAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAABIwAAAAACIwAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAIwAAAAABIwAAAAAA - version: 6 + tiles: DgAAAAAAABwAAAAAAwAcAAAAAAAAOgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAABADoAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAMAHAAAAAAAABwAAAAAAgA6AAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAMAOgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAcAAAAAAMAHAAAAAADADoAAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAwAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAcAAAAAAEAHAAAAAADAAkAAAAAAQAJAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAAIwAAAAACACMAAAAAAwAjAAAAAAIADgAAAAAAADkAAAAAAgAOAAAAAAAAHAAAAAAAABwAAAAAAgAcAAAAAAMAHAAAAAADABwAAAAAAwAJAAAAAAIACQAAAAADAAkAAAAAAwAOAAAAAAAADgAAAAAAACMAAAAAAgAjAAAAAAEAIwAAAAADAA4AAAAAAAA5AAAAAAIADgAAAAAAABwAAAAAAgAcAAAAAAEAHAAAAAADABwAAAAAAQAcAAAAAAMACQAAAAADAAkAAAAAAQAJAAAAAAEADgAAAAAAAA4AAAAAAAAjAAAAAAMAIwAAAAABAA4AAAAAAAAOAAAAAAAAIwAAAAAAAA4AAAAAAAAcAAAAAAEAHAAAAAABABwAAAAAAAAcAAAAAAMAHAAAAAADAAkAAAAAAwAJAAAAAAEACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAACMAAAAAAgAOAAAAAAAAIwAAAAADACMAAAAAAwAOAAAAAAAAHAAAAAABABwAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAACAAkAAAAAAwAOAAAAAAAADgAAAAAAACMAAAAAAAAjAAAAAAIAIwAAAAABACMAAAAAAgAjAAAAAAIADgAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAACAAkAAAAAAgAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAIADgAAAAAAAA4AAAAAAAAjAAAAAAIAIwAAAAAAACMAAAAAAwAjAAAAAAEAIwAAAAACAA4AAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAAAJAAAAAAAACQAAAAAAABwAAAAAAgAcAAAAAAAAHAAAAAADAA4AAAAAAAAOAAAAAAAAIwAAAAABACMAAAAAAQAjAAAAAAAAIwAAAAAAACMAAAAAAgAOAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAMACQAAAAAAAAkAAAAAAgAOAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAEADgAAAAAAABwAAAAAAQAcAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAMADgAAAAAAABwAAAAAAQAcAAAAAAAAHAAAAAADABwAAAAAAwAcAAAAAAIAHAAAAAAAAA4AAAAAAAAjAAAAAAMAIwAAAAADAA== + version: 7 -2,-5: ind: -2,-5 - tiles: CQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: CQAAAAABAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAEADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 -2,0: ind: -2,0 - tiles: DgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAACLgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAABMwAAAAAAMwAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAAHAAAAAABIwAAAAABIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAADMwAAAAACMwAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAA - version: 6 + tiles: CQAAAAABAA4AAAAAAAAcAAAAAAMAHAAAAAACABwAAAAAAQAcAAAAAAIAHAAAAAACABwAAAAAAgAOAAAAAAAAHAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAgAOAAAAAAAAHAAAAAACABwAAAAAAwAcAAAAAAMAHAAAAAABABwAAAAAAgAcAAAAAAIAHAAAAAACABwAAAAAAQAcAAAAAAIADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAwAOAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAMAHAAAAAAAABwAAAAAAgAcAAAAAAIAHAAAAAACABwAAAAAAgAcAAAAAAMAHAAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAMADQAAAAAAAA4AAAAAAAAcAAAAAAEAHAAAAAAAABwAAAAAAAAOAAAAAAAAHAAAAAACABwAAAAAAwAcAAAAAAAAHAAAAAADABwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAACAA4AAAAAAAAcAAAAAAIADgAAAAAAABwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAEAAAAAAQABAAAAAAEACQAAAAACAAkAAAAAAgAOAAAAAAAAHAAAAAADABwAAAAAAAAcAAAAAAMAHAAAAAACAA4AAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAADAAkAAAAAAQAJAAAAAAMACQAAAAABAAkAAAAAAQAJAAAAAAEACQAAAAABAAkAAAAAAQAJAAAAAAMACQAAAAAAAAkAAAAAAwAOAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAIACQAAAAABAAkAAAAAAgAJAAAAAAIACQAAAAACAAkAAAAAAwAJAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAwAJAAAAAAMADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAgAOAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAQAJAAAAAAMAHAAAAAADABwAAAAAAgAJAAAAAAMACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAgAJAAAAAAEACQAAAAADABwAAAAAAgAcAAAAAAEACQAAAAAAAAkAAAAAAwAOAAAAAAAAHAAAAAABABwAAAAAAQAcAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAADAAkAAAAAAgAcAAAAAAAAHAAAAAAAAAkAAAAAAQAJAAAAAAAAHAAAAAACABwAAAAAAgAcAAAAAAIAHAAAAAACABwAAAAAAAAcAAAAAAEADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAADAAkAAAAAAAAJAAAAAAEAHAAAAAABABwAAAAAAgAJAAAAAAIACQAAAAAAABwAAAAAAwAcAAAAAAEAHAAAAAACABwAAAAAAwAcAAAAAAEAHAAAAAACAA4AAAAAAAAOAAAAAAAALwAAAAAAAC8AAAAAAwAvAAAAAAMACQAAAAAAABwAAAAAAAAcAAAAAAMACQAAAAACAAkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAAQAAAAABAAkAAAAAAAAcAAAAAAAAHAAAAAABAAkAAAAAAQAJAAAAAAMACQAAAAADAAkAAAAAAAAJAAAAAAEACQAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAADEAAAAAAgAOAAAAAAAADgAAAAAAAAEAAAAAAAAJAAAAAAIACQAAAAADAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAwAOAAAAAAAALAAAAAAAAA4AAAAAAAAxAAAAAAMADgAAAAAAAA4AAAAAAAABAAAAAAIACQAAAAADAAkAAAAAAwAJAAAAAAEACQAAAAACAAkAAAAAAwAJAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAAMQAAAAACAA4AAAAAAAAOAAAAAAAAAQAAAAACAA== + version: 7 -2,1: ind: -2,1 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAADMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAABAQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAACAQAAAAACAQAAAAAADgAAAAAADgAAAAAA - version: 6 + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAAAJAAAAAAIADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAQAAAAACAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAEAAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAAMQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADMAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAABAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAAAQAAAAACAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAAAQAAAAAAAAEAAAAAAQABAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAAQAAAAAAAAEAAAAAAQABAAAAAAIAAQAAAAABAAEAAAAAAwAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAABAAAAAAEAAQAAAAACAAEAAAAAAgAOAAAAAAAADgAAAAAAAA== + version: 7 -2,2: ind: -2,2 - tiles: LAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: LAAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAAAQAAAAADAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 -3,-1: ind: -3,-1 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAADLgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAAAHAAAAAADDgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAADCQAAAAACCQAAAAAACQAAAAADHAAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAACLgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAACCQAAAAADCQAAAAADCQAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAADLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAABCQAAAAACCQAAAAAACQAAAAABHAAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAACLAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAACHAAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAC - version: 6 + tiles: DgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAIACQAAAAACAAkAAAAAAgAJAAAAAAIACQAAAAABAA4AAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAIACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAAMwAAAAADADMAAAAAAwAOAAAAAAAAMwAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAAACQAAAAACAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAADMAAAAAAgAzAAAAAAAAMwAAAAAAADMAAAAAAgAJAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAMACQAAAAABAAkAAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAJAAAAAAEALgAAAAAAAA4AAAAAAAAzAAAAAAAAMwAAAAACADMAAAAAAwAzAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAABAAkAAAAAAQAJAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAAACQAAAAADAA4AAAAAAAAOAAAAAAAAMwAAAAADADMAAAAAAwAzAAAAAAMADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAOAAAAAAAAHAAAAAAAABwAAAAAAgAcAAAAAAEAHAAAAAACABwAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAACABwAAAAAAAAcAAAAAAAAHAAAAAABAAkAAAAAAgAOAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAEAHAAAAAABABwAAAAAAAAcAAAAAAIAHAAAAAADAAkAAAAAAQAJAAAAAAEACQAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAAAJAAAAAAIADgAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAAAABwAAAAAAwAcAAAAAAMAHAAAAAADAA4AAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAACABwAAAAAAAAcAAAAAAAAHAAAAAABABwAAAAAAwAcAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAMACQAAAAADAAkAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAgAOAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAMAHAAAAAABABwAAAAAAwAcAAAAAAIADgAAAAAAAA4AAAAAAAAcAAAAAAMADgAAAAAAABwAAAAAAgAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAA== + version: 7 -3,-2: ind: -3,-2 - tiles: CQAAAAACMwAAAAACMwAAAAACMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADMwAAAAAAMwAAAAADMwAAAAABCQAAAAADDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAABMwAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAABMwAAAAACMwAAAAAADgAAAAAACQAAAAACDgAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAADMwAAAAACMwAAAAAADgAAAAAACQAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAMwAAAAAAMwAAAAADMwAAAAAACQAAAAABDgAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAABMwAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAABDgAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABHAAAAAABHAAAAAAAHAAAAAACDgAAAAAAHAAAAAABDgAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABHAAAAAABHAAAAAABHAAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAA - version: 6 + tiles: CQAAAAABADMAAAAAAwAzAAAAAAIAMwAAAAACADMAAAAAAgAzAAAAAAEAMwAAAAADADMAAAAAAgAzAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABADMAAAAAAwAzAAAAAAEAMwAAAAACAAkAAAAAAAAOAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAMAMwAAAAADADMAAAAAAwAzAAAAAAEAMwAAAAABAAgAAAAAAAAIAAAAAAAACAAAAAAAAAkAAAAAAgAzAAAAAAMAMwAAAAABAA4AAAAAAAAJAAAAAAEADgAAAAAAADMAAAAAAAAzAAAAAAIAMwAAAAADADMAAAAAAAAzAAAAAAMAMwAAAAAAADMAAAAAAgAIAAAAAAAACAAAAAAAAAgAAAAAAAAJAAAAAAIAMwAAAAACADMAAAAAAgAOAAAAAAAACQAAAAACADMAAAAAAAAzAAAAAAMAMwAAAAABADMAAAAAAQAzAAAAAAAAMwAAAAADADMAAAAAAwAzAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABADMAAAAAAgAzAAAAAAMAMwAAAAACAAkAAAAAAgAOAAAAAAAAMwAAAAACADMAAAAAAgAzAAAAAAEAMwAAAAAAADMAAAAAAwAzAAAAAAEAMwAAAAACADMAAAAAAwAzAAAAAAMAMwAAAAABADMAAAAAAAAzAAAAAAIAMwAAAAADADMAAAAAAwAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAAA4AAAAAAAAOAAAAAAAAMwAAAAADADMAAAAAAAAzAAAAAAEAMwAAAAADADMAAAAAAQAzAAAAAAIAMwAAAAABADMAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAABABwAAAAAAAAcAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAwAOAAAAAAAADgAAAAAAABwAAAAAAQAOAAAAAAAAMwAAAAACADMAAAAAAwAzAAAAAAMAMwAAAAACAA4AAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAAACQAAAAACABwAAAAAAwAcAAAAAAAAHAAAAAAAABwAAAAAAgAcAAAAAAIADgAAAAAAADMAAAAAAgAzAAAAAAAAMwAAAAAAADMAAAAAAwAJAAAAAAMACQAAAAABAAkAAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAgAcAAAAAAAAHAAAAAAAABwAAAAAAwAOAAAAAAAAHAAAAAABAA4AAAAAAAAzAAAAAAMAMwAAAAAAADMAAAAAAwAzAAAAAAEADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAQAJAAAAAAAAHAAAAAACABwAAAAAAwAcAAAAAAIADgAAAAAAABwAAAAAAwAOAAAAAAAAHAAAAAACABwAAAAAAgAcAAAAAAIAHAAAAAACABwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAADABwAAAAAAgAcAAAAAAEAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAAMQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 -3,-3: ind: -3,-3 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABDgAAAAAAMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACHAAAAAABHAAAAAABHAAAAAABHAAAAAABDgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAACDgAAAAAACQAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAACMwAAAAAAMwAAAAAB - version: 6 + tiles: DgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAABABwAAAAAAgAcAAAAAAAAHAAAAAAAABwAAAAAAAAOAAAAAAAAMwAAAAADADMAAAAAAgAzAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAwAcAAAAAAMAHAAAAAABABwAAAAAAQAcAAAAAAEADgAAAAAAADMAAAAAAAAzAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAEAHAAAAAABABwAAAAAAwAcAAAAAAMAHAAAAAABAA4AAAAAAAAzAAAAAAIAMwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAgAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAAAABwAAAAAAwAcAAAAAAAAHAAAAAADABwAAAAAAQAOAAAAAAAAMwAAAAADADMAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAABAA4AAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAwAJAAAAAAMACQAAAAABAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAIACQAAAAADAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAADAAkAAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAEADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACQAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAMACQAAAAADAA4AAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAEADgAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAACAAkAAAAAAgAJAAAAAAIADgAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAIACQAAAAACAAkAAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAABAAkAAAAAAwAJAAAAAAIACQAAAAACAA4AAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAACAA4AAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAQAOAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAMACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAOAAAAAAAACQAAAAADAA4AAAAAAAAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAAMwAAAAABADMAAAAAAQAzAAAAAAIAMwAAAAAAADMAAAAAAQAzAAAAAAAAMwAAAAABADMAAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAzAAAAAAAAMwAAAAACADMAAAAAAwAzAAAAAAIAMwAAAAADADMAAAAAAgAzAAAAAAMAMwAAAAABADMAAAAAAgAzAAAAAAMAMwAAAAADADMAAAAAAAAzAAAAAAAAMwAAAAADAA== + version: 7 -3,-4: ind: -3,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAABHAAAAAABHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACHAAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAAAIwAAAAACIwAAAAADDgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAADIwAAAAADIwAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAACMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAACCQAAAAAB - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAMACQAAAAADAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAADAAkAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAgAJAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAMACQAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAADAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAEAHAAAAAACABwAAAAAAwAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAACABwAAAAAAwAcAAAAAAAAHAAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAjAAAAAAIAIwAAAAADACMAAAAAAQAOAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAIwAAAAADACMAAAAAAwAjAAAAAAIADgAAAAAAAAkAAAAAAQAJAAAAAAEACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACQAAAAAAAAkAAAAAAAADgAAAAAAACMAAAAAAgAjAAAAAAAAIwAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAAkAAAAAAQAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAcAAAAAAIAIwAAAAACACMAAAAAAQAJAAAAAAEACQAAAAACAAkAAAAAAwAJAAAAAAIADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAQAcAAAAAAEADgAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAADAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAABADEAAAAAAwAxAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAADAAkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAADAA== + version: 7 -3,-5: ind: -3,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAB - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAMACQAAAAACAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAQAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAMALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAACAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAJAAAAAAIACQAAAAADAAkAAAAAAQAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAEALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAMACQAAAAADAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAwAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAAAJAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAwAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAEALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAQAJAAAAAAIALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAEACQAAAAAAAA== + version: 7 -3,0: ind: -3,0 - tiles: CQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAADgAAAAAAGwAAAAAAHAAAAAABGwAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAAGwAAAAAAHAAAAAADGwAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAAGwAAAAAAHAAAAAADGwAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA - version: 6 + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACMAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAAADgAAAAAAABwAAAAAAgAcAAAAAAIADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAADAC4AAAAAAAAOAAAAAAAAIwAAAAADACMAAAAAAQAjAAAAAAAAIwAAAAACAA4AAAAAAAAcAAAAAAEAHAAAAAACABwAAAAAAwAcAAAAAAIAHAAAAAAAABwAAAAAAgAOAAAAAAAACQAAAAADAAkAAAAAAgAsAAAAAAAADgAAAAAAACMAAAAAAwAjAAAAAAMAIwAAAAACAA4AAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAQAcAAAAAAMAHAAAAAAAABwAAAAAAgAcAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAjAAAAAAAAIwAAAAABACMAAAAAAwAOAAAAAAAAHAAAAAACABwAAAAAAAAcAAAAAAAAHAAAAAADABwAAAAAAgAcAAAAAAEAHAAAAAABAA4AAAAAAAANAAAAAAAADQAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAAAHAAAAAABABwAAAAAAAAOAAAAAAAADgAAAAAAAA0AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAADABwAAAAAAgAcAAAAAAAAHAAAAAACABwAAAAAAgAcAAAAAAAADgAAAAAAAA4AAAAAAAANAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAIACQAAAAABAA4AAAAAAAAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAACAA4AAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAwAOAAAAAAAACQAAAAACAA4AAAAAAAAJAAAAAAAACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAOAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAbAAAAAAAACQAAAAAAAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAA4AAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAQAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAQAOAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAMACQAAAAADAAkAAAAAAAAJAAAAAAEACQAAAAABAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAAAJAAAAAAIACQAAAAADAAkAAAAAAQAJAAAAAAAACQAAAAABAAkAAAAAAgAOAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAABAAkAAAAAAAAJAAAAAAEAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAEACQAAAAABAAkAAAAAAQAJAAAAAAEACQAAAAAAAAkAAAAAAwAJAAAAAAMADgAAAAAAAA== + version: 7 -3,1: ind: -3,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAADDgAAAAAACQAAAAADDgAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAAADgAAAAAAMwAAAAABDgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA - version: 6 + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAOAAAAAAAACQAAAAADAAkAAAAAAQAJAAAAAAEACQAAAAABAAkAAAAAAQAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAACAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAzAAAAAAMAMwAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMwAAAAAAADMAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAACAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAQAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAAkAAAAAAQAOAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAA== + version: 7 -3,2: ind: -3,2 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -4,-1: - ind: -4,-1 - tiles: HAAAAAACDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAA - version: 6 - -4,-2: - ind: -4,-2 - tiles: LgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAADLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAACLgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA - version: 6 - -4,-3: - ind: -4,-3 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAABLAAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAC - version: 6 - -4,-4: - ind: -4,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAA - version: 6 - -5,-1: - ind: -5,-1 - tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAACOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -5,-2: - ind: -5,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA - version: 6 - -6,-4: - ind: -6,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAA - version: 6 - -5,-4: - ind: -5,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: GwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAADAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAAQAAAAAAAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAAQAAAAACAQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA - version: 6 - 0,-2: - ind: 0,-2 - tiles: IQAAAAABIQAAAAABDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDwAAAAADDwAAAAACDwAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACDwAAAAADMgAAAAAADwAAAAAACQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDwAAAAABDwAAAAABDwAAAAADCQAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAA - version: 6 - 0,-3: - ind: 0,-3 - tiles: CQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAAGwAAAAAADgAAAAAAAQAAAAACAQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAAIwAAAAADIwAAAAADIwAAAAABJAAAAAAAIwAAAAABIwAAAAABGwAAAAAADgAAAAAAGwAAAAAAAQAAAAAAAQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADDgAAAAAAIwAAAAABIwAAAAAAIwAAAAADDgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACDgAAAAAAIwAAAAADIwAAAAACHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACIwAAAAAAIwAAAAABHAAAAAACHAAAAAADGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAACIwAAAAABIwAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAADIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAACCQAAAAAACQAAAAABCAAAAAAADgAAAAAAIwAAAAADIwAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAADGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADDgAAAAAAIwAAAAADIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAIwAAAAACIwAAAAABIwAAAAABIQAAAAACIQAAAAACDgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAAIQAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAABIQAAAAABIQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAC - version: 6 - 0,-4: - ind: 0,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAACCQAAAAAACQAAAAACCQAAAAABDgAAAAAAMQAAAAADDgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAACIwAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAACCQAAAAADCQAAAAABCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAACCQAAAAAACQAAAAABCQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAADIwAAAAAAIwAAAAACIwAAAAAADgAAAAAAAQAAAAADAQAAAAAAAQAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAB - version: 6 - 0,-5: - ind: 0,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAA - version: 6 - 0,0: - ind: 0,0 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAACwAAAAAHLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACLgAAAAAALAAAAAAALAAAAAAACwAAAAAADgAAAAAADgAAAAAACwAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAAALwAAAAADLwAAAAABLwAAAAADLwAAAAAALwAAAAABLwAAAAABLwAAAAACLwAAAAABLwAAAAACLwAAAAACLwAAAAAALwAAAAACLwAAAAABLwAAAAAALwAAAAACLwAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAHAAAAAABHAAAAAAC - version: 6 - 0,1: - ind: 0,1 - tiles: CQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAADHAAAAAACHAAAAAABHAAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAA - version: 6 - 0,2: - ind: 0,2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 1,-1: - ind: 1,-1 - tiles: HgAAAAAADgAAAAAASgAAAAABHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAASgAAAAACSgAAAAACSgAAAAABSgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAAGwAAAAAAHAAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAABAwAAAAABGwAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAAAwAAAAADHAAAAAABHAAAAAABHAAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAACQAAAAADCQAAAAAA - version: 6 - 1,-2: - ind: 1,-2 - tiles: CQAAAAACCQAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAABDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAACCQAAAAABDwAAAAAACQAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAAHAAAAAABDgAAAAAAHAAAAAADCQAAAAADDwAAAAABCQAAAAADCQAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAACHAAAAAADDgAAAAAAHAAAAAABCQAAAAABCQAAAAAACQAAAAAAHAAAAAACDgAAAAAAHAAAAAADHAAAAAABHAAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAAC - version: 6 - 1,-3: - ind: 1,-3 - tiles: DgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAABIwAAAAACIwAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAIwAAAAADIwAAAAAAIwAAAAAAIwAAAAADDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAAIwAAAAACIwAAAAACIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAADDgAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAACHAAAAAACCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAA - version: 6 - 1,-4: - ind: 1,-4 - tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAIwAAAAADIwAAAAABDgAAAAAAMwAAAAADMwAAAAADDgAAAAAAQQAAAAACQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAAMwAAAAABMwAAAAABDgAAAAAAQQAAAAACQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAACMQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAADMwAAAAACDgAAAAAAGwAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAACIwAAAAAAIwAAAAADDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALAAAAAAA - version: 6 - 1,-5: - ind: 1,-5 - tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAQgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA - version: 6 - 1,0: - ind: 1,0 - tiles: DgAAAAAADgAAAAAAAwAAAAACAwAAAAADHAAAAAADHAAAAAABHAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAAwAAAAAAAwAAAAAAHAAAAAABHAAAAAACHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAACDgAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAABDgAAAAAACQAAAAACCQAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAACHAAAAAACHAAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAAAHAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACLwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABCQAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADHAAAAAACHAAAAAADHAAAAAACHAAAAAABHAAAAAADHAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAB - version: 6 - 1,1: - ind: 1,1 - tiles: HAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAACBAAAAAADCQAAAAADCQAAAAADCQAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAADCQAAAAADRwAAAAAARwAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAABAAAAAAACQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 1,2: - ind: 1,2 - tiles: DgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 2,-1: - ind: 2,-1 - tiles: CQAAAAAADgAAAAAAQAAAAAADQAAAAAAADwAAAAADQAAAAAABQAAAAAAAQAAAAAACQAAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAQAAAAAAAQAAAAAADDwAAAAAAQAAAAAABQAAAAAACDgAAAAAAQAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAQAAAAAAAQAAAAAADDwAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADAAAAAAACQAAAAABDgAAAAAAQAAAAAACQAAAAAADQAAAAAAAQAAAAAACQAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAAGwAAAAAADAAAAAAACQAAAAACDgAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAAAIwAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADAAAAAAACQAAAAACDgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAAAIwAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAIwAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAACCQAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAABCQAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAGwAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAACQAAAAABCAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA - version: 6 - 2,-2: - ind: 2,-2 - tiles: CQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAOQAAAAACOQAAAAAAOQAAAAABOQAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAABOQAAAAAAOQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAABOQAAAAACOQAAAAAAOQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAACQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAAAHAAAAAABHAAAAAABDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAABHAAAAAAAHAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADGgAAAAABLwAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABGgAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADGgAAAAABLwAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADGgAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABGgAAAAABLwAAAAACCQAAAAACDgAAAAAADgAAAAAAQAAAAAABQAAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADGgAAAAADDgAAAAAACQAAAAABDgAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAABQAAAAAACQAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAAGgAAAAACLwAAAAADCQAAAAACDgAAAAAAQAAAAAADQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAAQAAAAAAAQAAAAAACDwAAAAACQAAAAAACQAAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAD - version: 6 - 2,-3: - ind: 2,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAADDgAAAAAAHAAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAAAIQAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAAAwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAA - version: 6 - 2,-4: - ind: 2,-4 - tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAAAMQAAAAABDgAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA - version: 6 - 2,-5: - ind: 2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACLgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABRwAAAAABLAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAA - version: 6 - 2,0: - ind: 2,0 - tiles: CQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAACQAAAAACCQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAAIwAAAAACDgAAAAAAIwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAAIwAAAAACDgAAAAAAIwAAAAAAIwAAAAABDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAA - version: 6 - 2,1: - ind: 2,1 - tiles: CQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAACQAAAAACCQAAAAABBAAAAAABCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAABAAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAACRwAAAAABGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAABDgAAAAAADgAAAAAARwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 3,-1: - ind: 3,-1 - tiles: CQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA - version: 6 - 3,-2: - ind: 3,-2 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAABLwAAAAACLwAAAAADGgAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAADLwAAAAADLwAAAAACGgAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADGgAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAADLwAAAAADLwAAAAACGgAAAAABCQAAAAAACQAAAAABCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAABLwAAAAAALwAAAAABGgAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 3,-3: - ind: 3,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAASAAAAAACSAAAAAADSAAAAAABDgAAAAAAHAAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABLAAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAAASAAAAAADSAAAAAABSAAAAAABHAAAAAACHAAAAAAADgAAAAAAHAAAAAACSQAAAAACSQAAAAABLAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAACSAAAAAACSAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAADLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 3,-4: - ind: 3,-4 - tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAARgAAAAABRgAAAAADGwAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAABDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAAMwAAAAADDgAAAAAAMwAAAAADDgAAAAAAMwAAAAACDgAAAAAAGwAAAAAADgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA - version: 6 - 3,-5: - ind: 3,-5 - tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAARwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA - version: 6 - 3,0: - ind: 3,0 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 3,1: - ind: 3,1 - tiles: LgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 4,-1: - ind: 4,-1 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 5,-2: - ind: 5,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAAAQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAAQAAAAAABQAAAAAACQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAABQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAAHAAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAAMwAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAAADgAAAAAALAAAAAAALAAAAAAAQAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAAAQAAAAAABDgAAAAAAQAAAAAACQAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAA - version: 6 - 4,0: - ind: 4,0 - tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -5,-5: - ind: -5,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAA - version: 6 - 6,-2: - ind: 6,-2 - tiles: QAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADRwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 1,-6: - ind: 1,-6 - tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA - version: 6 - 4,-3: - ind: 4,-3 - tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAABDgAAAAAADgAAAAAARwAAAAACMwAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAACMwAAAAACMwAAAAADLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAALAAAAAAARwAAAAABRwAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABLgAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACHAAAAAADDgAAAAAAMwAAAAAALgAAAAAALgAAAAAARwAAAAACMwAAAAABMwAAAAAARwAAAAABMwAAAAABDgAAAAAADgAAAAAAMwAAAAACMwAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAADLgAAAAAALgAAAAAARwAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAADDgAAAAAAMwAAAAADMwAAAAACDgAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAADLAAAAAAALAAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAADLAAAAAAASQAAAAABHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAACHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 2,-6: - ind: 2,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAABSQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -1,-6: - ind: -1,-6 - tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAABAAAAAADCQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAABLgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAARwAAAAACCQAAAAACDgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABDgAAAAAABAAAAAACBAAAAAACDgAAAAAACQAAAAADDgAAAAAAHAAAAAADHAAAAAACRwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAARwAAAAABLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -4,2: - ind: -4,2 - tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -1,2: - ind: -1,2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 -4,0: ind: -4,0 - tiles: LgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADQAAAAAADQAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAQAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAHAAAAAADABwAAAAAAwAcAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAOAAAAAAAAHAAAAAACABwAAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAABwAAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAgAOAAAAAAAAHAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAAAHAAAAAADAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAABAAAAAABAA4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAA8AAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACMAAAAAAQA8AAAAAAIAIwAAAAADAAkAAAAAAwAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAIwAAAAACADwAAAAAAQAOAAAAAAAACQAAAAAAACMAAAAAAwAjAAAAAAEAIwAAAAAAACMAAAAAAwAJAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACMAAAAAAAA8AAAAAAEADgAAAAAAAAkAAAAAAQA8AAAAAAIAIwAAAAAAACMAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAA8AAAAAAEAIwAAAAADACMAAAAAAAAJAAAAAAAAIwAAAAAAADwAAAAAAgAjAAAAAAAADgAAAAAAAAQAAAAABAAOAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 + -4,-2: + ind: -4,-2 + tiles: LgAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAADAA4AAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAgAOAAAAAAAACQAAAAADAA4AAAAAAAAJAAAAAAAACQAAAAABACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAgAJAAAAAAEACQAAAAABAAkAAAAAAgAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAACAAkAAAAAAAAJAAAAAAMACQAAAAADAA4AAAAAAAAJAAAAAAMADgAAAAAAAAkAAAAAAgAJAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAMACQAAAAADAA4AAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAEADgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAwAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAEALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAABAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAwAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAABwAAAAAAgAcAAAAAAMAHAAAAAAAABwAAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAQAcAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAQAcAAAAAAAAHAAAAAADABwAAAAAAgAcAAAAAAAAHAAAAAADACwAAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAQAcAAAAAAIAHAAAAAACAA4AAAAAAAAcAAAAAAEAHAAAAAADABwAAAAAAgAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 + -4,-3: + ind: -4,-3 + tiles: LAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAwAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAQAcAAAAAAEALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAAAHAAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAADABwAAAAAAgAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAACQAAAAACACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIALAAAAAAAAA4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAACQAAAAACAC4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAAkAAAAAAgAsAAAAAAAADgAAAAAAAAkAAAAAAgAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAQAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAIALAAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAAAAA== + version: 7 + -4,-4: + ind: -4,-4 + tiles: LAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAgAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAEALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 + -6,-4: + ind: -6,-4 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAA== + version: 7 + -5,-4: + ind: -5,-4 + tiles: LAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: GwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAwAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAHgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAEAAAAAAwABAAAAAAEADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAABAAAAAAAAAQAAAAADAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAAAQAAAAACAAEAAAAAAwAOAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAABAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 + 0,-2: + ind: 0,-2 + tiles: IQAAAAACACEAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAMADwAAAAADAA8AAAAAAgAPAAAAAAMACQAAAAABABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAEACQAAAAABAA8AAAAAAgAyAAAAAAAADwAAAAACAAkAAAAAAQAeAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAQAPAAAAAAAADwAAAAADAA8AAAAAAwAJAAAAAAMAHgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAgAJAAAAAAEACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAEACQAAAAADAA4AAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAAkAAAAAAAAOAAAAAAAAHAAAAAACABwAAAAAAQAcAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAwAJAAAAAAMADgAAAAAAABwAAAAAAwAcAAAAAAMAHAAAAAADAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAABAA4AAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAgAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAACAAkAAAAAAwAOAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAMADgAAAAAAAA4AAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAIACQAAAAADAAkAAAAAAwAJAAAAAAMACQAAAAABAA4AAAAAAAAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAACAAkAAAAAAAAOAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAIACQAAAAABAAkAAAAAAQAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMADgAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAABAAkAAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAQAJAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 + 0,-3: + ind: 0,-3 + tiles: CQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAEACQAAAAACAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAwAJAAAAAAMADgAAAAAAAAkAAAAAAwAJAAAAAAEACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAIwAAAAADACMAAAAAAQAOAAAAAAAAGwAAAAAAAA4AAAAAAAABAAAAAAMAAQAAAAABAA4AAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAQAOAAAAAAAAIwAAAAACACMAAAAAAQAjAAAAAAAAJAAAAAAAACMAAAAAAwAjAAAAAAEAGwAAAAAAAA4AAAAAAAAbAAAAAAAAAQAAAAACAAEAAAAAAgAJAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAIADgAAAAAAACMAAAAAAgAjAAAAAAAAIwAAAAABAA4AAAAAAAAjAAAAAAIAIwAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAACAA4AAAAAAAAOAAAAAAAAIwAAAAABACMAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAQAJAAAAAAAADgAAAAAAACMAAAAAAwAjAAAAAAAAHAAAAAAAABwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACgAAAAAAAAoAAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAAAAAkAAAAAAgAjAAAAAAAAIwAAAAABABwAAAAAAAAcAAAAAAMAGwAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAAAAAkAAAAAAAAJAAAAAAIAIwAAAAABACMAAAAAAAAcAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAA/AAAAAAAAPwAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAMACQAAAAABACMAAAAAAQAjAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAIACAAAAAAAAA4AAAAAAAAjAAAAAAMAIwAAAAACABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAABAA4AAAAAAAAOAAAAAAAAIwAAAAAAACMAAAAAAgAbAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAABAAkAAAAAAQAOAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAEADgAAAAAAACMAAAAAAwAjAAAAAAAAIwAAAAADACEAAAAAAgAhAAAAAAMADgAAAAAAAA4AAAAAAAAbAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAACQAAAAADAAkAAAAAAQAJAAAAAAMACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAhAAAAAAAAIQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAkAAAAAAwAJAAAAAAEACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAAAAAkAAAAAAAAJAAAAAAMAIQAAAAACACEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAMACQAAAAAAAA== + version: 7 + 0,-4: + ind: 0,-4 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAIACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAMACQAAAAAAAAkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAgAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAIAHAAAAAACAA4AAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAgAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAgAcAAAAAAMAHAAAAAACAA4AAAAAAAAcAAAAAAAAHAAAAAACABwAAAAAAwAOAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAADAAkAAAAAAwAcAAAAAAEAHAAAAAABABwAAAAAAgAcAAAAAAMAHAAAAAABAAkAAAAAAgAJAAAAAAEACQAAAAADAA4AAAAAAAAxAAAAAAEADgAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAABABwAAAAAAgAcAAAAAAEADgAAAAAAABwAAAAAAwAcAAAAAAMAHAAAAAACAA4AAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAgAOAAAAAAAAMQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACMAAAAAAwAjAAAAAAMAIwAAAAACACMAAAAAAAABAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAEAAQAAAAACAAkAAAAAAgAJAAAAAAAACQAAAAADAA4AAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAjAAAAAAIAIwAAAAACACMAAAAAAQAjAAAAAAMAAQAAAAABAAEAAAAAAwABAAAAAAEAAQAAAAACAAEAAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAwAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAIwAAAAACACMAAAAAAAAjAAAAAAMAIwAAAAACAAEAAAAAAAABAAAAAAEAAQAAAAACAAEAAAAAAAABAAAAAAEACQAAAAACAAkAAAAAAAAJAAAAAAEAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAADACMAAAAAAwAOAAAAAAAAAQAAAAABAAEAAAAAAwABAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAMACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAADAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAQAJAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAIACQAAAAABAAkAAAAAAQAOAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAMACQAAAAACAAkAAAAAAgAJAAAAAAIACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAACAAkAAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAwAJAAAAAAAACQAAAAABAA== + version: 7 + 0,-5: + ind: 0,-5 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAEACQAAAAABAA4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAgAOAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAIADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAACAA4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAgAOAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAIADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAAkAAAAAAgAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAMADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAADAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAAACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 + 0,0: + ind: 0,0 + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAsAAAAAAAACwAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAQAuAAAAAAAALAAAAAAAACwAAAAAAAALAAAAAAAADgAAAAAAAA4AAAAAAAALAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAQAJAAAAAAEACQAAAAADAAkAAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAwAJAAAAAAAACQAAAAACAAkAAAAAAAAvAAAAAAEALwAAAAABAC8AAAAAAgAvAAAAAAIALwAAAAADAC8AAAAAAQAvAAAAAAAALwAAAAAAAC8AAAAAAwAvAAAAAAAALwAAAAABAC8AAAAAAwAvAAAAAAEALwAAAAABAC8AAAAAAgAvAAAAAAMACQAAAAABAAkAAAAAAwAJAAAAAAEACQAAAAADAAkAAAAAAgAJAAAAAAMACQAAAAABAAkAAAAAAgAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAEACQAAAAABAAkAAAAAAwAJAAAAAAMACQAAAAABAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAAkAAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAMADgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAIADgAAAAAAAA4AAAAAAAAcAAAAAAIADgAAAAAAAA4AAAAAAAAJAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAACAA4AAAAAAAAcAAAAAAIAHAAAAAAAAA== + version: 7 + 0,1: + ind: 0,1 + tiles: CQAAAAADAAkAAAAAAwAJAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAABABwAAAAAAQAcAAAAAAMAHAAAAAABAAkAAAAAAQAJAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAMACQAAAAABAAkAAAAAAgAJAAAAAAIACQAAAAABAAkAAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAIADgAAAAAAAAkAAAAAAAAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAIACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEADgAAAAAAAAkAAAAAAwAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAgAJAAAAAAEACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAACAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAACAAkAAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAACAAkAAAAAAgAJAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAADAAkAAAAAAQAJAAAAAAMACQAAAAACAAkAAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAAAOAAAAAAAAHAAAAAACABwAAAAAAQAcAAAAAAMAHAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAgAcAAAAAAEAHAAAAAABABwAAAAAAwAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAABwAAAAAAAAcAAAAAAEAHAAAAAACABwAAAAAAwAcAAAAAAIADgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA== + version: 7 + 0,2: + ind: 0,2 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: HgAAAAAAAA4AAAAAAABKAAAAAAMAHAAAAAADABwAAAAAAgAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAAAAA4AAAAAAAAOAAAAAAAASgAAAAADAEoAAAAAAQBKAAAAAAMASgAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAABAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAwAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAABAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAMAHAAAAAADAA4AAAAAAAAbAAAAAAAAHAAAAAACAAkAAAAAAwAJAAAAAAEADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAAAJAAAAAAIADgAAAAAAAA4AAAAAAAAcAAAAAAEAHAAAAAADABwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAEACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAgAOAAAAAAAAGwAAAAAAAAkAAAAAAwAJAAAAAAEACQAAAAABAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAEADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAQAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAAAOAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAJAAAAAAIACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAADAAAAAAAAAwAAAAADABsAAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAQAOAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAAAwAAAAABABwAAAAAAgAcAAAAAAMAHAAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAACABwAAAAAAQAcAAAAAAIAHAAAAAACAA4AAAAAAAAJAAAAAAIACQAAAAADAA== + version: 7 + 1,-2: + ind: 1,-2 + tiles: CQAAAAABAAkAAAAAAwAOAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAIACQAAAAADAAkAAAAAAQAJAAAAAAAACQAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAwAJAAAAAAEADgAAAAAAAAkAAAAAAwAJAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAMAHAAAAAACAAkAAAAAAwAJAAAAAAMACQAAAAACAAkAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAQAJAAAAAAEACQAAAAAAAA4AAAAAAAAJAAAAAAIADgAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAABABwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAACAAkAAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAQAOAAAAAAAAHAAAAAADABwAAAAAAAAcAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAgAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAABAA4AAAAAAAAcAAAAAAEADgAAAAAAABwAAAAAAQAJAAAAAAMADwAAAAADAAkAAAAAAQAcAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAAAOAAAAAAAAHAAAAAABAA4AAAAAAAAcAAAAAAMACQAAAAADAA8AAAAAAwAJAAAAAAIACQAAAAADABwAAAAAAQAcAAAAAAAAHAAAAAADABwAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAQAJAAAAAAAACQAAAAADABwAAAAAAgAOAAAAAAAAHAAAAAADAAkAAAAAAAAJAAAAAAIACQAAAAACABwAAAAAAQAOAAAAAAAAHAAAAAABABwAAAAAAwAcAAAAAAEACQAAAAABAAkAAAAAAQAJAAAAAAEACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAABAAkAAAAAAgAJAAAAAAMACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAEACQAAAAABAAkAAAAAAQAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAEACQAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAADAAkAAAAAAwAOAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAIACQAAAAABAAkAAAAAAwAJAAAAAAIACQAAAAADAAkAAAAAAQAJAAAAAAIACQAAAAACAAkAAAAAAgAJAAAAAAIACQAAAAAAAAkAAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAADABwAAAAAAwAcAAAAAAEADgAAAAAAAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAIAHAAAAAABAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAACQAAAAADAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAA== + version: 7 + 1,-3: + ind: 1,-3 + tiles: DgAAAAAAACMAAAAAAQAjAAAAAAAAIwAAAAADACMAAAAAAgAjAAAAAAIADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAjAAAAAAAAIwAAAAACACMAAAAAAAAjAAAAAAAAIwAAAAACAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAOAAAAAAAADgAAAAAAACMAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAMAIwAAAAADACMAAAAAAwAjAAAAAAEAIwAAAAAAAA4AAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACMAAAAAAwAjAAAAAAAAIwAAAAABACMAAAAAAwAjAAAAAAEAJAAAAAAAACQAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAjAAAAAAMAIwAAAAABACMAAAAAAgAjAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAIwAAAAACACQAAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAABACMAAAAAAgAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAjAAAAAAEAJAAAAAAAACQAAAAAAAAkAAAAAAAADgAAAAAAACQAAAAAAAAkAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAAkAAAAAAwAOAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAAIwAAAAAAACMAAAAAAgAjAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAEAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAMADgAAAAAAACMAAAAAAQAjAAAAAAIAIwAAAAADAA4AAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAAkAAAAAAAAJAAAAAAAACQAAAAACAA4AAAAAAAAjAAAAAAMAIwAAAAACACMAAAAAAAAjAAAAAAEAJAAAAAAAACQAAAAAAAAkAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAADAA4AAAAAAAAOAAAAAAAAIwAAAAADACMAAAAAAAAjAAAAAAEADgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAgAcAAAAAAAAHAAAAAAAABwAAAAAAQAcAAAAAAAAHAAAAAACAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAMAHAAAAAABABwAAAAAAwAcAAAAAAIAHAAAAAAAABwAAAAAAwAJAAAAAAEACQAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAACABwAAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAAAcAAAAAAIACQAAAAADAAkAAAAAAgAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAwAOAAAAAAAADgAAAAAAAA== + version: 7 + 1,-4: + ind: 1,-4 + tiles: DgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAIwAAAAADACMAAAAAAQAOAAAAAAAAMwAAAAAAADMAAAAAAQAOAAAAAAAAQQAAAAABAEEAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAEADgAAAAAAACMAAAAAAgAjAAAAAAEADgAAAAAAADMAAAAAAgAzAAAAAAAADgAAAAAAAEEAAAAAAQBBAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAABAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAMAMQAAAAAAADEAAAAAAQAOAAAAAAAAMQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAEAMQAAAAACADEAAAAAAgAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAIwAAAAACACMAAAAAAAAjAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAeAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAACMAAAAAAwAjAAAAAAMAIwAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAMwAAAAAAADMAAAAAAQAOAAAAAAAAGwAAAAAAAA4AAAAAAAAjAAAAAAIAIwAAAAACACMAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADMAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAjAAAAAAAAIwAAAAACACMAAAAAAgAjAAAAAAAAIwAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAIwAAAAAAACMAAAAAAwAjAAAAAAAAIwAAAAACACMAAAAAAQAOAAAAAAAAHgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAACMAAAAAAAAjAAAAAAMAIwAAAAABACMAAAAAAQAjAAAAAAEADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAA== + version: 7 + 1,-5: + ind: 1,-5 + tiles: DgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAABCAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAA== + version: 7 + 1,0: + ind: 1,0 + tiles: DgAAAAAAAA4AAAAAAAADAAAAAAIAAwAAAAADABwAAAAAAgAcAAAAAAMAHAAAAAACAA4AAAAAAAAcAAAAAAMAHAAAAAACABwAAAAAAAAcAAAAAAIAHAAAAAABAA4AAAAAAAAJAAAAAAMACQAAAAAAAA4AAAAAAAAOAAAAAAAAAwAAAAADAAMAAAAAAgAcAAAAAAMAHAAAAAACABwAAAAAAgAOAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAIAHAAAAAADAAkAAAAAAQAJAAAAAAAACQAAAAADAAkAAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAcAAAAAAMAHAAAAAADABwAAAAAAgAcAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAMAHAAAAAADABwAAAAAAQAJAAAAAAIACQAAAAACAAkAAAAAAwAJAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAEAHAAAAAADABwAAAAAAQAcAAAAAAMAHAAAAAABAA4AAAAAAAAcAAAAAAMAHAAAAAABABwAAAAAAgAcAAAAAAMAHAAAAAACAA4AAAAAAAAJAAAAAAIACQAAAAACABsAAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAACABwAAAAAAAAcAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAMACQAAAAADAAkAAAAAAgAJAAAAAAIACQAAAAACAAkAAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAAAJAAAAAAIADgAAAAAAAAkAAAAAAQAcAAAAAAAAHAAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAACAAkAAAAAAQAJAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAAACQAAAAADAAkAAAAAAQAJAAAAAAMACQAAAAAAAAkAAAAAAgAJAAAAAAIACQAAAAADAAkAAAAAAwAJAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAADAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAQAJAAAAAAEACQAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAAAcAAAAAAIADgAAAAAAAAkAAAAAAQAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAgAJAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAgAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAkAAAAAAQAvAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAABwAAAAAAgAcAAAAAAEAHAAAAAADABwAAAAAAwAcAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAAHAAAAAADABwAAAAAAwAcAAAAAAIADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAADgAAAAAAAAkAAAAAAgAcAAAAAAIAHAAAAAACABwAAAAAAAAcAAAAAAIAHAAAAAABABwAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEAHAAAAAADABwAAAAAAAAcAAAAAAAAHAAAAAABABwAAAAAAAAcAAAAAAEADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAACQAAAAACAA== + version: 7 + 1,1: + ind: 1,1 + tiles: HAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAQAJAAAAAAAACQAAAAACAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAIADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAMACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAwAOAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAABAAQAAAAABAAJAAAAAAMACQAAAAADAAkAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAABHAAAAAAIARwAAAAACAAkAAAAAAwAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAADgAAAAAAAA4AAAAAAAAEAAAAAAIACQAAAAADAAkAAAAAAwAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + 1,2: + ind: 1,2 + tiles: DgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + 2,-1: + ind: 2,-1 + tiles: CQAAAAACAA4AAAAAAABAAAAAAAIAQAAAAAAAAA8AAAAAAwBAAAAAAAMAQAAAAAAAAEAAAAAAAABAAAAAAAMADgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAAAOAAAAAAAAQAAAAAAAAEAAAAAAAQAPAAAAAAIAQAAAAAABAEAAAAAAAgAOAAAAAAAAQAAAAAACAA4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMADgAAAAAAAEAAAAAAAQBAAAAAAAAADwAAAAADAEAAAAAAAABAAAAAAAMAQAAAAAACAEAAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAMAAAAAAAACQAAAAADAA4AAAAAAABAAAAAAAIAQAAAAAAAAEAAAAAAAwBAAAAAAAEAQAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAgAcAAAAAAEADgAAAAAAAA4AAAAAAAAbAAAAAAAADAAAAAAAAAkAAAAAAgAOAAAAAAAAIwAAAAADACMAAAAAAAAjAAAAAAEAIwAAAAAAACMAAAAAAQAOAAAAAAAAHAAAAAADABwAAAAAAQAcAAAAAAEAHAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAAwAAAAAAAAJAAAAAAIADgAAAAAAACMAAAAAAgAjAAAAAAEAIwAAAAAAACMAAAAAAgAjAAAAAAIADgAAAAAAABwAAAAAAQAcAAAAAAAAHAAAAAACABwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAA4AAAAAAAAjAAAAAAEAIwAAAAABACMAAAAAAgAjAAAAAAAAIwAAAAABAA4AAAAAAAAcAAAAAAEAHAAAAAACABwAAAAAAwAcAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAACAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAgAJAAAAAAEACQAAAAABAA4AAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAAAcAAAAAAIAHAAAAAAAABwAAAAAAgAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAAACQAAAAABAAkAAAAAAgAOAAAAAAAAHAAAAAADABwAAAAAAgAcAAAAAAEAHAAAAAADABwAAAAAAQAcAAAAAAEAHAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAJAAAAAAEACAAAAAAAAA4AAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAACQAAAAABAAgAAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAAGwAAAAAAAAkAAAAAAAAIAAAAAAAADgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACAAAAAAAAA4AAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAACQAAAAADAAgAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + 2,-2: + ind: 2,-2 + tiles: CQAAAAABAAkAAAAAAgAJAAAAAAEACQAAAAADAAkAAAAAAQAJAAAAAAAACQAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAACAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAgAJAAAAAAIADgAAAAAAADkAAAAAAwA5AAAAAAIAOQAAAAADADkAAAAAAgAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAA5AAAAAAEAOQAAAAAAADkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAADAAkAAAAAAQAJAAAAAAAAOQAAAAAAADkAAAAAAwA5AAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAAA4AAAAAAAAJAAAAAAAARQAAAAAAAEUAAAAAAABFAAAAAAAACQAAAAAAABwAAAAAAwAcAAAAAAMAHAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAEUAAAAAAABFAAAAAAAARQAAAAAAAAkAAAAAAAAcAAAAAAEAHAAAAAABABwAAAAAAQAOAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAEACQAAAAABAAkAAAAAAQBFAAAAAAAARQAAAAAAAEUAAAAAAAAJAAAAAAAAHAAAAAABABwAAAAAAwAcAAAAAAIADgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAMAGgAAAAABAC8AAAAAAgAOAAAAAAAACQAAAAADAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAABoAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAwAJAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAIACQAAAAAAAAkAAAAAAgAaAAAAAAIALwAAAAABAAkAAAAAAwAJAAAAAAEACQAAAAABAAkAAAAAAQAJAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAEACQAAAAADAAkAAAAAAwAJAAAAAAEAGgAAAAADAAkAAAAAAwAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAMACQAAAAACAAkAAAAAAQAJAAAAAAMACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAABAAkAAAAAAgAJAAAAAAIACQAAAAAAABoAAAAAAgAvAAAAAAMACQAAAAABAA4AAAAAAAAOAAAAAAAAQAAAAAADAEAAAAAAAgBAAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAQAaAAAAAAIADgAAAAAAAAkAAAAAAgAOAAAAAAAAQAAAAAAAAEAAAAAAAQBAAAAAAAMAQAAAAAADAEAAAAAAAwBAAAAAAAMADgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAAAGgAAAAABAC8AAAAAAQAJAAAAAAMADgAAAAAAAEAAAAAAAQBAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAEAQAAAAAABAA4AAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAMACQAAAAAAAA4AAAAAAABAAAAAAAMAQAAAAAADAA8AAAAAAABAAAAAAAIAQAAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAADAA== + version: 7 + 2,-3: + ind: 2,-3 + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAADABwAAAAAAAAcAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAgAcAAAAAAAAHAAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAAAHAAAAAACABwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAhAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAABAAkAAAAAAwAJAAAAAAMACQAAAAAAAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAhAAAAAAIADgAAAAAAABwAAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAQAJAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAIADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAIQAAAAABAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACEAAAAAAwAhAAAAAAAAIQAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAAADgAAAAAAAA4AAAAAAAADAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAAkAAAAAAgAJAAAAAAEACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAOAAAAAAAACQAAAAAAAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAjAAAAAAEAIwAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAIwAAAAABACMAAAAAAQAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACMAAAAAAQAjAAAAAAEADgAAAAAAAA== + version: 7 + 2,-4: + ind: 2,-4 + tiles: DgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAA7AAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAARgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAAMQAAAAADADEAAAAAAgAOAAAAAAAADgAAAAAAADMAAAAAAgAzAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAzAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADMAAAAAAwAzAAAAAAIAMwAAAAACADMAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA== + version: 7 + 2,-5: + ind: 2,-5 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAEcAAAAAAgAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAEcAAAAAAgAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAEAHAAAAAACAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAABABwAAAAAAgAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAIADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAEcAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAAARwAAAAABACwAAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAQAcAAAAAAIADgAAAAAAAA== + version: 7 + 2,0: + ind: 2,0 + tiles: CQAAAAAAAAgAAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAAHgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIADgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAgAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAeAAAAAAAAHgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAACQAAAAAAAAkAAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAEADgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAADAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAACQAAAAACAAkAAAAAAwAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAMADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAjAAAAAAAAIwAAAAABAA4AAAAAAAAJAAAAAAAACQAAAAABAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACMAAAAAAAAjAAAAAAAADgAAAAAAACMAAAAAAgAOAAAAAAAAIwAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAgAOAAAAAAAAHgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAjAAAAAAIADgAAAAAAAA4AAAAAAAAjAAAAAAIADgAAAAAAACMAAAAAAAAjAAAAAAMADgAAAAAAAAkAAAAAAQAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAACQAAAAAAAAkAAAAAAAADgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAEACQAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAADAAkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAEADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + 2,1: + ind: 2,1 + tiles: CQAAAAABAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAEcAAAAAAAAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAJAAAAAAMACQAAAAABAAQAAAAAAwAJAAAAAAIADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAABAAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAQAAAAAAAAJAAAAAAEADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAABHAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAABHAAAAAAEAGwAAAAAAABsAAAAAAAAbAAAAAAAACQAAAAABAA4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAEcAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAbAAAAAAAACQAAAAADAA4AAAAAAAAOAAAAAAAARwAAAAACAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAARwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAABsAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + 3,-1: + ind: 3,-1 + tiles: CQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAABAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAHAAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAABwAAAAAAwAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAcAAAAAAMADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAbAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA== + version: 7 + 3,-2: + ind: 3,-2 + tiles: DgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAJAAAAAAIADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAAAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC8AAAAAAwAvAAAAAAIALwAAAAAAAC8AAAAAAAAaAAAAAAAACQAAAAACABsAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAOAAAAAAAAGgAAAAACAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALwAAAAABAC8AAAAAAAAvAAAAAAMALwAAAAACABoAAAAAAgAJAAAAAAMACQAAAAAAAAkAAAAAAwAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAACAAkAAAAAAgAaAAAAAAIACQAAAAACAAkAAAAAAwAJAAAAAAEADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAvAAAAAAIALwAAAAAAAC8AAAAAAQAvAAAAAAEAGgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAABAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADgAAAAAAABoAAAAAAQAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC8AAAAAAgAvAAAAAAMALwAAAAAAAC8AAAAAAQAaAAAAAAAACQAAAAADABsAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAEACQAAAAADAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAMAGwAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + 3,-3: + ind: 3,-3 + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAADABwAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAwAcAAAAAAIADgAAAAAAABwAAAAAAAAcAAAAAAEAHAAAAAABAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAADABwAAAAAAQAcAAAAAAMAHAAAAAACABwAAAAAAgAcAAAAAAMAHAAAAAACABwAAAAAAwAcAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAwAcAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAgAcAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + 3,-4: + ind: 3,-4 + tiles: DgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAEcAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAgAOAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAABwAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAbAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAzAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAAMwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABsAAAAAAAAOAAAAAAAARgAAAAAAAEYAAAAAAAAbAAAAAAAARgAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAACAA4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAADMAAAAAAgAzAAAAAAMAMwAAAAAAADMAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMwAAAAACADMAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAzAAAAAAIAMwAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAALgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADMAAAAAAQAOAAAAAAAAMwAAAAADAA4AAAAAAAAzAAAAAAIADgAAAAAAADMAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAADMAAAAAAQAzAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAAMwAAAAABADMAAAAAAQAzAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAADMAAAAAAwAzAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA== + version: 7 + 3,-5: + ind: 3,-5 + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAADMAAAAAAgAzAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAzAAAAAAEAMwAAAAACAA4AAAAAAABHAAAAAAIADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAAMwAAAAAAADMAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAABHAAAAAAEADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAARwAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAjAAAAAAEAIwAAAAABACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAADwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAABHAAAAAAEALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA== + version: 7 + 3,0: + ind: 3,0 + tiles: LAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAjAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAAIwAAAAADACMAAAAAAQAjAAAAAAEADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAAIwAAAAACACMAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAACMAAAAAAwAjAAAAAAEADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + 3,1: + ind: 3,1 + tiles: LgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + 4,-1: + ind: 4,-1 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + 5,-2: + ind: 5,-2 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAD0AAAAAAgAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAADAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAA9AAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAAPQAAAAACAD0AAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAQAAAAAACAA4AAAAAAABAAAAAAAIALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAA9AAAAAAEADgAAAAAAAEAAAAAAAABAAAAAAAIAQAAAAAADAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAARwAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAABAAAAAAAAADgAAAAAAAEcAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAAQAAAAAACAEAAAAAAAABAAAAAAAMALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAEAAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAARwAAAAABAA4AAAAAAAAcAAAAAAMARwAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAzAAAAAAAAMwAAAAACAA4AAAAAAAAzAAAAAAEADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAEAAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAABAAAAAAAEADgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAADMAAAAAAwAzAAAAAAEAMwAAAAADAA4AAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAABAAAAAAAAAQAAAAAABAA4AAAAAAABAAAAAAAAAQAAAAAADACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAEADgAAAAAAAA4AAAAAAAAcAAAAAAEADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAcAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAEADgAAAAAAAA4AAAAAAAAcAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAQAcAAAAAAAAHAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAEcAAAAAAgAOAAAAAAAADgAAAAAAABwAAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAwAOAAAAAAAADgAAAAAAABwAAAAAAgAcAAAAAAEALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 + 4,0: + ind: 4,0 + tiles: LgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + -5,-5: + ind: -5,-5 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAA== + version: 7 + 6,-2: + ind: 6,-2 + tiles: QAAAAAACAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAABAAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAEAAAAAAAgBHAAAAAAIALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAABAAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAQAAAAAACAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAEAAAAAAAwAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAABAAAAAAAAARwAAAAACAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAARwAAAAACACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAEcAAAAAAgAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + 1,-6: + ind: 1,-6 + tiles: LAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA== + version: 7 + 4,-3: + ind: 4,-3 + tiles: DgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAgAcAAAAAAAAHAAAAAADABwAAAAAAQAcAAAAAAIAHAAAAAACABwAAAAAAQAcAAAAAAMADgAAAAAAABwAAAAAAgAcAAAAAAIAHAAAAAACAC4AAAAAAAAOAAAAAAAAHAAAAAADAEkAAAAAAwBJAAAAAAIAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAABAA4AAAAAAAAcAAAAAAAASQAAAAAAAEkAAAAAAQAuAAAAAAAADgAAAAAAABwAAAAAAgBJAAAAAAIASQAAAAABABwAAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAQAOAAAAAAAAHAAAAAABABwAAAAAAgAOAAAAAAAAHAAAAAACAEkAAAAAAgAcAAAAAAIALgAAAAAAAA4AAAAAAAAcAAAAAAEASQAAAAADAEkAAAAAAwAcAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAEAHAAAAAADABwAAAAAAABJAAAAAAEASQAAAAAAAC4AAAAAAAAOAAAAAAAAHAAAAAACABwAAAAAAQAcAAAAAAAAHAAAAAABABwAAAAAAgAcAAAAAAIAHAAAAAACABwAAAAAAwAcAAAAAAEAHAAAAAACAA4AAAAAAAAcAAAAAAEAHAAAAAADABwAAAAAAwAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + 2,-6: + ind: 2,-6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA8AAAAAAABJAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADwAAAAADAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA8AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAEcAAAAAAgAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + -1,-6: + ind: -1,-6 + tiles: LgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAQAAAAAAgAJAAAAAAMACQAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAABABwAAAAAAQAcAAAAAAEAHAAAAAABAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAABHAAAAAAEALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAwAcAAAAAAEADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAEcAAAAAAQAOAAAAAAAALgAAAAAAAEcAAAAAAgAJAAAAAAIADgAAAAAAABwAAAAAAAAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAgAOAAAAAAAABAAAAAABAAQAAAAAAgAOAAAAAAAACQAAAAACAA4AAAAAAAAcAAAAAAMAHAAAAAACAEcAAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAABHAAAAAAIADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAuAAAAAAAARwAAAAACAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAEcAAAAAAgAOAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAABHAAAAAAEALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + -1,2: + ind: -1,2 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + -4,-1: + ind: -4,-1 + tiles: LAAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAIACQAAAAABAAkAAAAAAwAOAAAAAAAACQAAAAACAA4AAAAAAAAbAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAMADgAAAAAAAAkAAAAAAwAOAAAAAAAADgAAAAAAAAkAAAAAAwAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAwAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAgAcAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAwAOAAAAAAAAHAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAAADgAAAAAAABwAAAAAAgAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAADABwAAAAAAAAOAAAAAAAALgAAAAAAAA== + version: 7 4,-2: ind: 4,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA== + version: 7 0,-6: ind: 0,-6 - tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAARwAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAABCQAAAAADBAAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABBAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAAIwAAAAACPAAAAAAAIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAAAPAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAA - version: 6 + tiles: DgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAABwAAAAAAwAOAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAAADgAAAAAAAA4AAAAAAABHAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAcAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAEABAAAAAACAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAEcAAAAAAQAsAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEABAAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAARwAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAAHAAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAMACQAAAAACAEcAAAAAAgAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAQAOAAAAAAAADgAAAAAAAEcAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAkAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHQAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACQAAAAAAAAOAAAAAAAADgAAAAAAACQAAAAAAAAOAAAAAAAADgAAAAAAAB0AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAjAAAAAAMAPAAAAAAGACMAAAAAAAAjAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACQAAAAAAAAkAAAAAAAADgAAAAAAAA4AAAAAAAAdAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAACMAAAAAAwAjAAAAAAEAPAAAAAAGAA4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA== + version: 7 6,-3: ind: 6,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -4,1: - ind: -4,1 - tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA - version: 6 + tiles: DgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAABHAAAAAAIALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAQAAAAAACAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 5,-3: ind: 5,-3 - tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAACMwAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAPQAAAAADDgAAAAAAQAAAAAABDgAAAAAAQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAACDgAAAAAARwAAAAAAQAAAAAADDgAAAAAA - version: 6 + tiles: DgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAAbAAAAAAAAHAAAAAAAABwAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAOwAAAAAAADoAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAAbAAAAAAAAGwAAAAAAAEkAAAAAAgAcAAAAAAMADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAADMAAAAAAwAzAAAAAAMAMwAAAAAAADsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAA7AAAAAAAAGwAAAAAAABsAAAAAAABJAAAAAAAAHAAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAzAAAAAAEAMwAAAAAAADMAAAAAAAA6AAAAAAAAOgAAAAAAAA4AAAAAAAAOAAAAAAAAOwAAAAAAABsAAAAAAAAOAAAAAAAASQAAAAAAABwAAAAAAQAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAAMwAAAAABADMAAAAAAwAzAAAAAAMAOwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADsAAAAAAAAbAAAAAAAAGwAAAAAAABwAAAAAAgAcAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAADsAAAAAAAA6AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAAbAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAARwAAAAAAAA4AAAAAAABHAAAAAAEALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAAPQAAAAAAAEcAAAAAAgAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAD0AAAAAAgA9AAAAAAMADgAAAAAAAEcAAAAAAgBAAAAAAAAADgAAAAAAAA== + version: 7 -6,-5: ind: -6,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA== + version: 7 3,-6: ind: 3,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAPAAAAAAEADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAASQAAAAACAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAEkAAAAAAgAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAABHAAAAAAEADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 4,-4: ind: 4,-4 - tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAAHAAAAAADSgAAAAADSgAAAAACSgAAAAAASgAAAAADRwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACLgAAAAAASQAAAAADSQAAAAAAHAAAAAADHAAAAAAASgAAAAACSgAAAAAASgAAAAABSgAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADSQAAAAADSQAAAAABSQAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAABLAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: DgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAABHAAAAAAEAHAAAAAAAAEoAAAAAAgBKAAAAAAEASgAAAAADAEoAAAAAAgBHAAAAAAIADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAcAAAAAAEALgAAAAAAAEkAAAAAAQBJAAAAAAEAHAAAAAAAABwAAAAAAgBKAAAAAAAASgAAAAABAEoAAAAAAQBKAAAAAAEADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAAHAAAAAADAEkAAAAAAABJAAAAAAMASQAAAAADABwAAAAAAgAcAAAAAAIAHAAAAAADAA4AAAAAAABHAAAAAAIALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAAAHAAAAAADABwAAAAAAQAcAAAAAAEAHAAAAAAAABwAAAAAAAAcAAAAAAMAHAAAAAADABwAAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAABHAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAEcAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAEcAAAAAAgAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAEcAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAEcAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA== + version: 7 4,-5: ind: 4,-5 - tiles: PAAAAAABIwAAAAABDgAAAAAALAAAAAAAPAAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADRwAAAAABLAAAAAAALgAAAAAALAAAAAAALAAAAAAAIwAAAAAAPAAAAAAAIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACPAAAAAACPAAAAAADLAAAAAAALgAAAAAALAAAAAAAPAAAAAAGIwAAAAAAIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAEPAAAAAAAIwAAAAADRwAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAGDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAACPAAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAABIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAABHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABSgAAAAADDgAAAAAADgAAAAAASgAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAALAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAASgAAAAABDgAAAAAASgAAAAABSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: PAAAAAAAACMAAAAAAgAOAAAAAAAALAAAAAAAADwAAAAAAAAOAAAAAAAAIwAAAAAAACMAAAAAAwAjAAAAAAEADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAARwAAAAABAA4AAAAAAABHAAAAAAEADgAAAAAAAA4AAAAAAABHAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAAIwAAAAAAAEcAAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAAIwAAAAAAADwAAAAABAAjAAAAAAMADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACMAAAAAAAA8AAAAAAMAPAAAAAACACwAAAAAAAAuAAAAAAAALAAAAAAAADwAAAAABAAjAAAAAAAAIwAAAAABAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAADwAAAAAAAA8AAAAAAYAIwAAAAABAEcAAAAAAQAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAA8AAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAARwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAAIwAAAAAAADwAAAAABAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAEcAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAACMAAAAAAAAjAAAAAAMADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAABHAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAEcAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAABHAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAARwAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAARwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAcAAAAAAEAHAAAAAADABwAAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAIASgAAAAABAA4AAAAAAAAOAAAAAAAASgAAAAADAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAARwAAAAAAAA4AAAAAAAAsAAAAAAAAHAAAAAABAA4AAAAAAAAOAAAAAAAAHAAAAAADAEoAAAAAAwAOAAAAAAAASgAAAAABAEoAAAAAAQAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 4,-6: ind: 4,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADDgAAAAAAPAAAAAACIwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAACIwAAAAABDgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAFDgAAAAAADgAAAAAAIwAAAAABPAAAAAADDgAAAAAAIwAAAAACIwAAAAADDgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACMAAAAAAAAOAAAAAAAAPAAAAAAAACMAAAAAAgAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACMAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAABHAAAAAAEADgAAAAAAAA4AAAAAAABHAAAAAAEALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAA8AAAAAAMAIwAAAAADAA4AAAAAAAAdAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAPAAAAAACAA4AAAAAAAAOAAAAAAAAIwAAAAABADwAAAAAAgAOAAAAAAAAIwAAAAAAACMAAAAAAQAOAAAAAAAARwAAAAACAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 5,-1: ind: 5,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAARwAAAAAADgAAAAAARwAAAAACDgAAAAAARwAAAAAAHAAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAEcAAAAAAgAOAAAAAAAAHAAAAAADAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAACAA4AAAAAAABHAAAAAAAADgAAAAAAAEcAAAAAAgAOAAAAAAAARwAAAAACABwAAAAAAgAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAEcAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAgAOAAAAAAAARwAAAAAAAA4AAAAAAABHAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 5,-4: ind: 5,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAAHAAAAAACAA4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAcAAAAAAIADgAAAAAAABwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 -1,-7: ind: -1,-7 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAEcAAAAAAQAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 0,-7: ind: 0,-7 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAEcAAAAAAgAOAAAAAAAADgAAAAAAAEcAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAEcAAAAAAgAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAABHAAAAAAIALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 1,-7: ind: 1,-7 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 -3,-6: ind: -3,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAB - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAGwAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAABsAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAbAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAEACQAAAAACAA== + version: 7 -2,-6: ind: -2,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAACQAAAAACAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 -4,-5: ind: -4,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 -5,-3: ind: -5,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 -6,-3: ind: -6,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + -4,1: + ind: -4,1 + tiles: DgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAQAAAAABAAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAEAHAAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAEAHAAAAAABABwAAAAAAQAcAAAAAAIAGwAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAOAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 + 6,-4: + ind: 6,-4 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + -5,1: + ind: -5,1 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + version: 7 + -5,0: + ind: -5,0 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + -4,2: + ind: -4,2 + tiles: LgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 + -5,2: + ind: -5,2 + tiles: LgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Fixtures @@ -478,6 +488,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -486,6 +497,11 @@ entities: chunkCollection: version: 2 nodes: + - node: + color: '#DE3A3A96' + id: Arrows + decals: + 21542: -28.000698,5.244668 - node: zIndex: 1 angle: -3.141592653589793 rad @@ -500,40 +516,55 @@ entities: decals: 2143: -9.001826,-6.560205 - node: - zIndex: 1 - angle: 1.5707963267948966 rad + angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 4235: -52,-13 + 21348: -8,0 + 21349: -6,0 + 21350: -4,0 + 21351: -2,0 + 21352: 0,0 + 21353: 2,0 - node: - angle: -1.5707963267948966 rad + angle: -3.141592653589793 rad color: '#DE3A3A96' id: ArrowsGreyscale decals: - 20802: -34.78518,-0.9993839 + 21550: -30.03355,2.7805595 - node: color: '#DE3A3A96' id: ArrowsGreyscale decals: - 20801: -31.00098,-6.7472677 + 21549: -23.000975,1.2526054 - node: - angle: 1.5707963267948966 rad - color: '#DE3A3A96' - id: ArrowsGreyscale - decals: - 20803: -37.25066,-4.970881 - - node: - zIndex: 1 color: '#DE3A3A96' id: Bot decals: - 14553: -23,4 - 14554: -21,5 - 14555: -21,4 - 14556: -21,3 - 14557: -21,2 - 14559: -23,2 + 21640: -25,-8 + 21641: -27,-9 + 21642: -28,-9 + 21817: -30,-8 + 21818: -30,-6 + 21822: -30,-4 + 21825: -25,-4 + 21828: -31,-4 + 21880: -42,3 + 21881: -42,4 + 21882: -42,5 + 21883: -41,5 + 21884: -40,5 + 21885: -39,5 + 21886: -38,5 + 21887: -37,5 + 21888: -36,5 + 21889: -36,1 + 21890: -39,1 + 21892: -40,3 + 21893: -39,3 + 21894: -38,3 + 21895: -37,3 + 21896: -41,1 - node: cleanable: True zIndex: 1 @@ -578,8 +609,8 @@ entities: 20698: 34,-30 20699: 35,-30 20721: 11,17 - 20886: -37,-6 - 20887: -37,-7 + 21639: -31,5 + 21958: -16,-3 - node: zIndex: 1 color: '#FFFFFFFF' @@ -612,14 +643,11 @@ entities: decals: 18583: 18,0 - node: - zIndex: 1 color: '#DE3A3A96' id: BotGreyscale decals: - 20363: -25,6 - 20364: -25,7 - 20365: -22,2 - 20366: -23,6 + 21571: -30,1 + 21572: -30,0 - node: color: '#FBB2FFFF' id: BotGreyscale @@ -677,6 +705,13 @@ entities: decals: 18584: 21,3 18585: 20,3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 21398: -51,1 + 21438: 80,-42 + 21852: -36,4 - node: zIndex: 1 color: '#FFFFFFFF' @@ -685,6 +720,13 @@ entities: 4120: -2,-41 12339: -6,-37 20088: -4,-42 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 21396: -53,1 + 21435: 78,-42 + 21853: -41,4 - node: zIndex: 1 color: '#FFFFFFFF' @@ -698,7 +740,9 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 20868: -38,-7 + 21399: -51,-7 + 21436: 80,-44 + 21854: -36,2 - node: zIndex: 1 color: '#FFFFFFFF' @@ -709,7 +753,8 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 20869: -40,-7 + 21437: 78,-44 + 21855: -41,2 - node: zIndex: 1 color: '#FFFFFFFF' @@ -733,6 +778,18 @@ entities: id: BrickTileDarkInnerNe decals: 15001: -6,-41 + 21440: 78,-44 + 21615: -32,7 + 21811: -29,-8 + 21878: -41,2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 21439: 80,-44 + 21616: -29,7 + 21810: -26,-8 + 21876: -36,2 - node: zIndex: 1 color: '#FFFFFFFF' @@ -743,33 +800,72 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 20813: -38,0 + 21441: 78,-42 + 21617: -32,14 + 21877: -41,4 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 20871: -40,-3 + 21442: 80,-42 + 21618: -29,14 + 21619: -30,8 + 21620: -30,8 + 21879: -36,4 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: 15002: -6,-40 15003: -6,-39 - 20806: -38,-6 - 20807: -38,-5 - 20808: -38,-4 - 20809: -38,-3 - 20810: -38,-2 - 20811: -38,-1 - 20855: -35,4 - 20856: -35,3 - 20857: -35,2 + 21400: -51,0 + 21401: -51,-1 + 21402: -51,-4 + 21403: -51,-5 + 21404: -51,-6 + 21443: 78,-43 + 21450: 80,-43 + 21510: 77,-42 + 21511: 77,-43 + 21512: 77,-44 + 21599: -32,11 + 21600: -32,10 + 21601: -32,9 + 21602: -32,8 + 21603: -32,12 + 21604: -32,13 + 21805: -29,-7 + 21806: -29,-6 + 21860: -36,3 + 21874: -41,3 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkLineE decals: 12341: -6,-38 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 21397: -52,1 + 21444: 79,-44 + 21449: 79,-42 + 21501: 78,-45 + 21502: 79,-45 + 21503: 80,-45 + 21607: -31,7 + 21608: -30,7 + 21803: -28,-8 + 21804: -27,-8 + 21861: -40,4 + 21862: -39,4 + 21863: -38,4 + 21864: -37,4 + 21865: -37,2 + 21866: -38,2 + 21867: -39,2 + 21868: -40,2 - node: zIndex: 1 color: '#FFFFFFFF' @@ -798,8 +894,21 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 20812: -37,0 - 20870: -39,-7 + 21446: 79,-42 + 21447: 79,-44 + 21504: 78,-41 + 21505: 79,-41 + 21506: 80,-41 + 21605: -31,14 + 21606: -30,14 + 21856: -40,2 + 21857: -39,2 + 21858: -38,2 + 21859: -37,2 + 21869: -40,4 + 21870: -39,4 + 21871: -38,4 + 21872: -37,4 - node: zIndex: 1 color: '#FFFFFFFF' @@ -813,12 +922,25 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 20858: -33,4 - 20859: -33,3 - 20860: -33,2 - 20864: -40,-4 - 20865: -40,-5 - 20866: -40,-6 + 21383: -53,-5 + 21384: -53,-4 + 21385: -53,-3 + 21386: -53,-2 + 21445: 80,-43 + 21448: 78,-43 + 21507: 81,-42 + 21508: 81,-43 + 21509: 81,-44 + 21609: -29,8 + 21610: -29,9 + 21611: -29,10 + 21612: -29,11 + 21613: -29,12 + 21614: -29,13 + 21807: -26,-7 + 21809: -26,-6 + 21873: -41,3 + 21875: -36,3 - node: zIndex: 1 color: '#FFFFFFFF' @@ -840,13 +962,34 @@ entities: id: BrickTileDarkLineW decals: 17968: 33,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 21973: -18,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 21972: -21,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 21971: -18,-4 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 21970: -21,-4 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 20849: -43,4 - 20850: -43,3 - 20851: -43,2 + 21411: -50,11 + 21412: -50,10 + 21414: -55,13 + 21979: -18,-3 - node: zIndex: 1 color: '#FFFFFFFF' @@ -854,6 +997,18 @@ entities: decals: 18565: 27,2 18566: 27,1 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 21977: -20,-2 + 21978: -19,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 21975: -20,-4 + 21976: -19,-4 - node: zIndex: 1 color: '#FFFFFFFF' @@ -867,9 +1022,10 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 20852: -43,4 - 20853: -43,3 - 20854: -43,2 + 21406: -53,11 + 21407: -53,12 + 21413: -53,13 + 21974: -21,-3 - node: zIndex: 1 color: '#3EB38896' @@ -905,7 +1061,6 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 9418: -31,3 17182: 17,-19 17183: 17,-18 - node: @@ -926,19 +1081,6 @@ entities: id: BrickTileWhiteCornerNe decals: 12370: -20,-47 - 15787: -37,-15 - - node: - zIndex: 1 - color: '#52B4E996' - id: BrickTileWhiteCornerNe - decals: - 14936: -38,18 - - node: - zIndex: 1 - color: '#606C5B93' - id: BrickTileWhiteCornerNe - decals: - 14941: -34,17 - node: zIndex: 1 color: '#A4610693' @@ -952,6 +1094,11 @@ entities: decals: 12171: 53,-52 12176: 40,-53 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 21902: -34,-4 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe @@ -971,18 +1118,6 @@ entities: id: BrickTileWhiteCornerNw decals: 11357: -25,-45 - - node: - zIndex: 1 - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 15788: -39,-15 - - node: - zIndex: 1 - color: '#606C5B93' - id: BrickTileWhiteCornerNw - decals: - 14940: -35,17 - node: zIndex: 1 color: '#A4610693' @@ -998,6 +1133,11 @@ entities: 12160: 57,-51 12173: 37,-53 12177: 30,-53 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 21721: -46,-2 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw @@ -1018,12 +1158,6 @@ entities: id: BrickTileWhiteCornerSe decals: 11353: -20,-49 - - node: - zIndex: 1 - color: '#334E6DC8' - id: BrickTileWhiteCornerSe - decals: - 15786: -37,-16 - node: zIndex: 1 color: '#52B4E996' @@ -1041,6 +1175,11 @@ entities: id: BrickTileWhiteCornerSe decals: 12163: 59,-57 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 21903: -34,-2 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe @@ -1061,12 +1200,6 @@ entities: id: BrickTileWhiteCornerSw decals: 11354: -25,-49 - - node: - zIndex: 1 - color: '#606C5B93' - id: BrickTileWhiteCornerSw - decals: - 14939: -35,16 - node: zIndex: 1 color: '#A4610693' @@ -1078,6 +1211,11 @@ entities: id: BrickTileWhiteCornerSw decals: 12165: 57,-57 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 21718: -46,-4 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw @@ -1129,7 +1267,6 @@ entities: color: '#334E6DC8' id: BrickTileWhiteEndW decals: - 15785: -40,-16 17766: -32,-51 - node: zIndex: 1 @@ -1148,6 +1285,7 @@ entities: id: BrickTileWhiteInnerNe decals: 11365: -24,-47 + 21496: 69,-45 - node: zIndex: 1 color: '#A4610693' @@ -1155,11 +1293,11 @@ entities: decals: 15140: -9,-93 - node: - zIndex: 1 color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 9411: -29,-2 + 21915: -39,-4 + 21916: -34,-6 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe @@ -1172,11 +1310,11 @@ entities: decals: 17223: 10,-17 - node: - zIndex: 1 color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 15789: -39,-16 + 21493: 69,-45 + 21494: 74,-45 - node: zIndex: 1 color: '#A4610693' @@ -1184,11 +1322,10 @@ entities: decals: 15163: 11,-93 - node: - zIndex: 1 color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 9410: -23,-2 + 21917: -32,-6 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw @@ -1202,11 +1339,15 @@ entities: decals: 17225: 8,-17 - node: - zIndex: 1 + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 21492: 69,-41 + - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 9409: -29,0 + 21914: -39,-2 - node: zIndex: 1 color: '#EFB34196' @@ -1214,6 +1355,12 @@ entities: decals: 2247: -12,-14 2257: -14,-11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 21489: 69,-41 + 21490: 74,-41 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw @@ -1227,6 +1374,11 @@ entities: decals: 11355: -20,-48 11364: -24,-46 + 21454: 66,-42 + 21455: 66,-43 + 21456: 66,-44 + 21484: 69,-44 + 21485: 69,-42 - node: zIndex: 1 color: '#52B4E996' @@ -1262,16 +1414,8 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 12093: -29,9 - 12094: -29,10 - 12095: -29,11 - 12096: -29,12 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 15021: -29,-1 + 21897: -39,-3 + 21901: -34,-5 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1305,13 +1449,17 @@ entities: 11361: -21,-47 11362: -22,-47 11363: -23,-47 + 21457: 67,-45 + 21458: 68,-45 + 21477: 70,-45 + 21478: 71,-45 + 21479: 72,-45 + 21480: 73,-45 - node: zIndex: 1 color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 15792: -39,-15 - 15793: -38,-15 17769: -31,-51 - node: zIndex: 1 @@ -1333,15 +1481,15 @@ entities: 12174: 38,-53 12175: 39,-53 - node: - zIndex: 1 color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 9401: -28,-2 - 9402: -27,-2 - 9403: -26,-2 - 9404: -25,-2 - 9405: -24,-2 + 21720: -43,-2 + 21905: -33,-6 + 21906: -35,-4 + 21907: -36,-4 + 21908: -37,-4 + 21909: -38,-4 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -1384,13 +1532,17 @@ entities: 11367: -22,-49 11368: -23,-49 11370: -24,-49 + 21459: 67,-41 + 21460: 68,-41 + 21461: 70,-41 + 21462: 71,-41 + 21463: 72,-41 + 21464: 73,-41 - node: zIndex: 1 color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 15790: -39,-16 - 15791: -38,-16 17768: -31,-51 - node: zIndex: 1 @@ -1427,15 +1579,14 @@ entities: 11454: 40,-38 12164: 58,-57 - node: - zIndex: 1 color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 9396: -28,0 - 9397: -27,0 - 9398: -26,0 - 9399: -25,0 - 9400: -24,0 + 21719: -43,-4 + 21910: -38,-2 + 21911: -37,-2 + 21912: -36,-2 + 21913: -35,-2 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -1480,6 +1631,12 @@ entities: 11442: 29,-36 11443: 29,-35 11444: 29,-34 + 21451: 69,-43 + 21452: 69,-44 + 21453: 69,-42 + 21481: 74,-44 + 21482: 74,-43 + 21483: 74,-42 - node: zIndex: 1 color: '#334E6DC8' @@ -1492,7 +1649,6 @@ entities: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 14937: -39,17 17574: 20,0 - node: zIndex: 1 @@ -1513,14 +1669,11 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 12091: -31,10 - 12092: -31,11 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 15022: -23,-1 + 21722: -46,-3 + 21898: -32,-3 + 21899: -32,-4 + 21900: -32,-5 + 21904: -32,-2 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -1562,6 +1715,11 @@ entities: decals: 15119: 20.484497,-53.96156 15120: 19.36936,-53.899017 + - node: + color: '#FFFFFFFF' + id: BushDOne + decals: + 22044: -21.041206,-12.823776 - node: zIndex: 1 color: '#FFFFFFFF' @@ -1570,6 +1728,11 @@ entities: 15623: -1.8747854,-52.058655 15624: -5.9705667,-52.45476 18315: -11.886084,12.918579 + - node: + color: '#FFFFFFFF' + id: BushDThree + decals: + 22043: -20.509693,-12.6986885 - node: zIndex: 1 color: '#FFFFFFFF' @@ -1653,6 +1816,12 @@ entities: id: Bushi1 decals: 15637: 3.8748503,-53.025635 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 22024: -13.867736,6.8505135 + 22051: -23.125574,-15.805014 - node: zIndex: 1 color: '#FFFFFFFF' @@ -1672,6 +1841,7 @@ entities: id: Bushi3 decals: 12158: -1.7835784,-39.817196 + 22023: -19.712698,3.896554 - node: zIndex: 1 color: '#FFFFFFFF' @@ -1687,6 +1857,7 @@ entities: id: Bushi4 decals: 12159: -2.3776236,-40.025677 + 22022: -20.212946,4.1258793 - node: zIndex: 1 color: '#FFFFFFFF' @@ -1749,6 +1920,28 @@ entities: id: Bushn1 decals: 15641: 6.0217485,-51.38908 + - node: + color: '#3EB38896' + id: CheckerNESW + decals: + 21928: -11,-7 + 21929: -11,-9 + 21930: -14,-5 + 21931: -13,-5 + 21932: -12,-5 + 21933: -12,-4 + 21934: -13,-4 + 21935: -14,-4 + 21936: -14,-3 + 21937: -13,-3 + 21938: -12,-3 + 21939: -12,-2 + 21940: -13,-2 + 21941: -14,-2 + 21942: -11,-3 + 21943: -11,-4 + 21944: -15,-4 + 21945: -15,-3 - node: zIndex: 1 color: '#3EB38896' @@ -1761,15 +1954,6 @@ entities: 2078: -9,-9 2081: -10,-8 2082: -10,-9 - 2083: -11,-9 - 2085: -11,-7 - 2086: -12,-7 - 2087: -13,-7 - 2088: -14,-7 - 2089: -14,-8 - 2090: -14,-9 - 2091: -13,-9 - 2093: -12,-9 2141: -10,-7 2142: -9,-7 14234: -10,-6 @@ -1818,6 +2002,24 @@ entities: 12897: -17,-51 12898: -16,-51 12899: -15,-51 + 22058: 55,-37 + 22059: 56,-37 + 22060: 57,-37 + 22061: 57,-39 + 22062: 56,-39 + 22063: 55,-39 + 22064: 53,-40 + 22065: 52,-40 + 22066: 51,-40 + 22067: 51,-39 + 22068: 52,-39 + 22069: 53,-39 + 22070: 53,-37 + 22071: 52,-37 + 22072: 51,-37 + 22074: 52,-36 + 22075: 53,-36 + 23646: 51,-36 - node: zIndex: 1 color: '#334E6DC8' @@ -1927,6 +2129,23 @@ entities: decals: 14300: -22,-37 14301: -14,-39 + - node: + color: '#D4D4D428' + id: CheckerNWSE + decals: + 21586: -26,9 + 21587: -26,10 + 21588: -26,11 + 21589: -25,11 + 21590: -25,10 + 21591: -25,9 + 21592: -24,9 + 21593: -24,10 + 21594: -24,11 + 21595: -23,11 + 21596: -22,11 + 21597: -22,10 + 21598: -23,10 - node: zIndex: 1 color: '#D4D4D428' @@ -1968,62 +2187,34 @@ entities: color: '#D4D4D496' id: CheckerNWSE decals: - 20888: -47,3 - 20889: -46,3 - 20890: -45,3 - 20891: -39,3 - 20892: -37,3 - 20893: -37,2 - 20894: -38,2 - 20895: -38,3 - 20896: -39,2 - 20897: -39,1 - 20898: -38,1 - 20899: -37,1 - 20900: -42,-2 - 20901: -41,-2 - 20902: -41,-1 - 20903: -41,0 - 20904: -41,1 - 20905: -42,1 - 20906: -42,0 - 20907: -42,-1 + 21576: -38,13 + 21577: -37,13 + 21578: -36,13 + 21579: -35,13 + 21580: -34,13 + 21581: -34,12 + 21582: -35,12 + 21583: -36,12 + 21584: -37,12 + 21585: -38,12 - node: color: '#DE3A3A96' id: CheckerNWSE decals: - 11193: -23,-4 - 11194: -22,-4 - 11195: -22,-5 - 11196: -23,-5 - 11198: -22,-6 - 11199: -20,-6 - 11200: -21,-6 - 11201: -20,-5 - 11202: -21,-5 - 11203: -21,-4 - 11204: -20,-4 - 11209: -21,-2 - 11210: -21,-1 - 11211: -20,-1 - 11212: -19,-1 - 11213: -19,-2 - 11214: -20,-2 - 11215: -18,-2 - 11216: -18,-1 - 11217: -22,-1 - 11218: -22,-2 - 20754: -22,-7 - 20755: -21,-7 - 20756: -20,-7 - 20757: -20,-8 - 20758: -21,-8 - 20759: -22,-8 - 20760: -23,-7 - 20761: -23,-8 - 20962: -33,-9 - 20963: -32,-9 - 20964: -30,-9 + 21727: -46,-6 + 21728: -44,-6 + 21729: -46,-9 + 21730: -45,-9 + 21731: -46,-8 + 21732: -46,-7 + 21733: -45,-6 + 21734: -45,-7 + 21735: -45,-8 + 21736: -44,-8 + 21737: -44,-7 + 21738: -43,-7 + 21739: -43,-8 + 21740: -43,-9 - node: zIndex: 1 color: '#FFFFFF93' @@ -2067,17 +2258,21 @@ entities: decals: 3265: 0.0099077225,-26.03567 - node: - zIndex: 1 color: '#DE3A3A96' id: Delivery decals: - 9349: -30,1 - 14560: -23,3 - 14562: -25,5 - 14563: -25,3 - 14564: -26,8 - 14565: -26,14 - 14566: -26,1 + 21723: -45,-5 + 21724: -44,-5 + 21725: -44,-1 + 21726: -45,-1 + 21826: -29,-4 + 21827: -26,-4 + 21829: -37,-1 + 21830: -38,-1 + 21831: -40,-1 + 21832: -40,1 + 21833: -38,1 + 21834: -37,1 - node: color: '#FFFFFFFF' id: Delivery @@ -2099,9 +2294,6 @@ entities: 9933: 5,24 9935: 3,18 10360: -7,11 - 11947: -18,-6 - 11948: -17,-6 - 11949: -16,-6 16323: -23,-40 16324: -24,-40 16325: -25,-40 @@ -2117,8 +2309,13 @@ entities: 19429: -35,-67 19430: -34,-67 19431: -33,-67 - 21357: -21,-10 - 21358: -21,-11 + 21959: -16,-4 + 23723: -16,-6 + 23724: -17,-6 + 23725: -18,-6 + 23727: -16,0 + 23728: -17,0 + 23729: -18,0 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2138,11 +2335,6 @@ entities: 18350: 33,16 18351: 32,16 18352: 31,16 - - node: - color: '#DE3A3A96' - id: DeliveryGreyscale - decals: - 20090: -23,5 - node: cleanable: True zIndex: 1 @@ -2172,9 +2364,6 @@ entities: color: '#FFFFFF7F' id: Dirt decals: - 20356: 1,-12 - 20357: 1,-9 - 20358: -1,-8 1162: 21,-55 1163: 20,-55 1164: 21,-54 @@ -2193,24 +2382,10 @@ entities: 11503: 26,-40 11775: -27,-22 11777: -29,-22 - 11866: -32,14 - 11867: -30,19 11950: 26,-18 12310: 57,-55 12312: 43,-63 12313: 50,-61 - 13343: 73,-44 - 13344: 74,-45 - 13345: 73,-47 - 13346: 77,-47 - 13347: 79,-47 - 13348: 78,-46 - 13349: 79,-45 - 13350: 76,-43 - 13351: 68,-41 - 13352: 67,-42 - 13353: 67,-44 - 13354: 67,-45 13470: 85,-22 13471: 84,-22 13472: 84,-23 @@ -2237,19 +2412,9 @@ entities: 14467: 34,-23 14468: 48,-27 14514: 34,15 - 14527: -28,4 - 14539: -25,2 - 14765: -28,17 - 14809: -31,17 - 14810: -30,17 - 14811: -30,18 - 14812: -30,16 - 14813: -31,16 - 14814: -28,19 14815: -14,21 14816: -7,21 14817: 21,12 - 14898: -34,19 14942: 40,11 14966: 39,5 14967: 37,9 @@ -2339,6 +2504,9 @@ entities: 20150: 8,-11 20202: 8,4 20203: 10,6 + 20356: 1,-12 + 20357: 1,-9 + 20358: -1,-8 20367: 15,-39 20368: 16,-39 20369: 16,-38 @@ -2392,76 +2560,156 @@ entities: 20572: 34,-23 20573: 33,-23 20613: 35,-43 - 20965: -34,-8 - 20966: -35,-8 - 20967: -36,-9 - 20968: -36,-10 - 20969: -32,-7 - 20970: -30,-7 - 20971: -30,-9 - 20973: -35,-4 - 20974: -40,-7 - 20975: -40,-5 - 20976: -45,-5 - 20977: -45,-7 - 20978: -42,-9 - 20979: -42,-10 - 20980: -42,-2 - 20981: -41,-1 - 20982: -37,0 - 20983: -37,1 - 20984: -37,3 - 20985: -42,6 - 20986: -41,6 - 20987: -44,6 - 20988: -47,4 - 20989: -47,3 - 20990: -50,2 - 20991: -50,1 - 20992: -51,3 - 20993: -50,3 - 20994: -50,4 - 20995: -50,5 - 20996: -46,2 - 20997: -43,2 - 20998: -44,0 - 20999: -45,0 - 21000: -47,0 - 21001: -37,-7 - 21002: -37,-6 - 21003: -37,-5 - 21005: -29,-5 - 21006: -29,-4 - 21007: -28,-7 - 21008: -28,-8 - 21009: -24,-8 - 21010: -26,-10 - 21011: -28,-11 - 21012: -25,-12 - 21013: -22,-10 - 21014: -23,-11 - 21015: -20,-10 21016: -18,-12 21017: -16,-10 - 21018: -16,-8 - 21359: -33,-9 + 22099: -53,10 + 22100: -54,12 + 22101: -54,13 + 22102: -53,13 + 22103: -50,13 + 22104: -50,12 + 22105: -51,13 + 22106: -52,13 + 22107: -53,12 + 22108: -53,11 + 22109: -52,10 + 22110: -51,10 + 22111: -50,10 + 22112: -50,11 + 22113: -56,11 + 22114: -56,12 + 22115: -56,13 + 22116: -57,13 + 22117: -57,12 + 22118: -57,11 + 22119: -57,10 + 22120: -56,10 + 22121: -49,12 + 22122: -49,14 + 22123: -50,15 + 22124: -53,18 + 22125: -54,18 + 22126: -54,19 + 22127: -53,20 + 22128: -55,20 + 22129: -55,22 + 22130: -54,23 + 22131: -55,23 + 22132: -52,23 + 22133: -51,23 + 22134: -47,22 + 22135: -47,21 + 22136: -47,20 + 22137: -45,22 + 22138: -44,22 + 22139: -43,22 + 22140: -41,20 + 22141: -39,20 + 22142: -39,19 + 22143: -37,20 + 22144: -36,20 + 22145: -36,22 + 22146: -34,26 + 22147: -34,27 + 22148: -33,26 + 22149: -33,27 + 22150: -33,28 + 22151: -32,28 + 22152: -34,28 + 22153: -32,27 + 22154: -33,20 + 22155: -34,20 + 22156: -30,18 + 22157: -31,18 + 22158: -31,17 + 22159: -28,19 + 22160: -27,19 + 22161: -27,22 + 22162: -27,23 + 22163: -26,23 + 22164: -25,13 + 22165: -24,13 + 22166: -24,14 + 22167: -24,15 + 22168: -25,16 + 22169: -25,16 + 22170: -39,11 + 22171: -35,16 + 22172: -39,15 + 22327: -22,-7 + 22328: -23,-7 + 22329: -23,-5 + 22330: -23,-3 + 22331: -23,-1 + 22332: -20,-3 + 22333: -16,-5 + 22334: -19,-5 + 22335: -21,-1 + 22336: -17,-1 + 22337: -17,-3 + 22338: -18,-3 + 22719: -33,3 + 22720: -34,3 + 22721: -32,3 + 22722: -33,4 + 22723: -33,5 + 23234: 66,-43 + 23235: 66,-41 + 23236: 80,-44 + 23237: 80,-43 + 23238: 80,-42 + 23300: 88,-44 + 23301: 87,-44 + 23302: 86,-44 + 23303: 93,-44 + 23304: 93,-43 + 23305: 88,-42 + 23306: 88,-43 + 23459: 85,-37 + 23460: 85,-37 + 23461: 89,-36 + 23462: 92,-34 + 23463: 94,-35 + 23464: 96,-36 + 23465: 97,-36 + 23466: 96,-51 + 23467: 95,-52 + 23468: 93,-55 + 23469: 90,-55 + 23470: 87,-56 + 23471: 84,-58 + 23472: 81,-60 + 23473: 79,-60 + 23474: 84,-58 + 23475: 78,-56 + 23476: 78,-52 + 23477: 80,-48 + 23478: 84,-49 + 23479: 89,-51 + - node: + cleanable: True + zIndex: 6 + color: '#FFFFFF7F' + id: Dirt + decals: + 23647: 52,-43 + 23648: 49,-43 + 23649: 49,-46 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 21983: -34,19 + 21984: -34,20 + 22009: -33,20 + 22026: -32,20 - node: cleanable: True zIndex: 5 color: '#FFFFFF7F' id: DirtHeavy decals: - 20314: -3,-12 - 20316: -2,-11 - 20317: -3,-11 - 20318: -2,-9 - 20319: -1,-9 - 20320: 0,-10 - 20321: -1,-11 - 20352: -5,-11 - 20353: -5,-9 - 20354: -2,-12 - 20355: -2,-8 3283: 17,7 3284: 18,8 3285: 19,8 @@ -2524,9 +2772,6 @@ entities: 4926: 0,11 4927: -3,10 4928: -5,10 - 5157: -14,-9 - 5158: -13,-9 - 5159: -11,-9 5187: 2,-17 5188: 3,-17 5191: 2,-20 @@ -2666,35 +2911,9 @@ entities: 7077: 50,-49 7078: 50,-49 7087: 50,-45 - 7121: 51,-41 - 7122: 50,-41 - 7123: 50,-42 - 7124: 50,-43 - 7125: 50,-43 - 7126: 50,-42 - 7127: 50,-41 - 7128: 50,-40 - 7129: 54,-39 - 7130: 55,-39 - 7131: 56,-39 - 7132: 56,-39 - 7133: 56,-40 - 7134: 56,-41 - 7135: 55,-43 - 7136: 56,-43 - 7138: 55,-40 - 7139: 55,-40 - 7140: 50,-38 - 7141: 50,-37 7142: 50,-36 - 7143: 51,-36 - 7144: 51,-36 7145: 52,-36 7146: 52,-37 - 7147: 51,-37 - 7148: 50,-37 - 7149: 50,-38 - 7150: 51,-39 7161: 45,-33 7162: 46,-33 7163: 45,-34 @@ -2744,7 +2963,6 @@ entities: 7249: 49,-32 7250: 49,-31 7251: 49,-33 - 7252: 50,-37 7253: 43,-38 7254: 43,-38 7255: 45,-37 @@ -2897,7 +3115,6 @@ entities: 7729: 10,10 7730: 9,10 7731: 10,12 - 7733: -15,2 7734: -17,-8 7736: -18,-12 7737: -17,-14 @@ -3235,16 +3452,7 @@ entities: 8537: 48,-60 8539: 48,-57 8545: 50,-45 - 8548: 50,-42 - 8549: 50,-42 - 8550: 50,-41 - 8551: 51,-36 8552: 50,-36 - 8553: 55,-39 - 8554: 56,-39 - 8555: 56,-40 - 8556: 56,-41 - 8557: 56,-43 8558: 46,-37 8559: 45,-37 8560: 45,-33 @@ -3254,15 +3462,7 @@ entities: 8657: -23,22 8658: -23,22 8659: -23,22 - 8662: -32,19 - 8693: -26,6 - 8699: -15,1 - 8700: -15,0 - 8711: -15,-5 - 8712: -15,-4 - 8714: -15,-2 8715: -16,-2 - 8717: -16,-4 8723: -11,-5 8724: -11,-4 8725: -11,-3 @@ -3290,34 +3490,14 @@ entities: 8762: 3,-8 8763: 3,-9 8868: -11,10 - 9034: -66,-14 - 9035: -66,-13 - 9036: -66,-12 9054: -21,-24 9055: -21,-19 9056: -24,-21 9100: -29,-36 9101: -30,-36 9185: 47,-19 - 9419: -26,0 - 9420: -26,-2 - 9421: -24,-2 - 9424: -23,-2 - 9491: -27,11 - 9492: -26,10 - 9547: -17,5 - 9548: -17,5 - 9549: -16,6 - 9550: -16,3 9551: -16,1 - 9572: -17,1 - 9573: -17,3 - 9574: -17,4 - 9575: -16,0 - 9576: -15,0 - 9577: -15,-1 9578: -16,-1 - 9579: -17,-3 10071: 2,14 10075: 4,19 10077: 4,16 @@ -3403,34 +3583,8 @@ entities: 11547: 0,10 11548: -15,9 11549: -15,10 - 11550: -21,3 - 11551: -21,4 - 11553: -23,3 - 11554: -23,4 - 11559: -24,-2 - 11560: -25,-2 - 11561: -27,-2 - 11562: -21,-2 - 11563: -20,-1 - 11564: -19,-2 - 11565: -21,-4 - 11566: -23,-4 - 11567: -23,-5 - 11568: -23,-5 - 11569: -22,-5 - 11570: -21,-5 - 11571: -20,-4 11618: -21,11 - 11619: -23,9 - 11620: -23,10 11621: -22,10 - 11622: -22,11 - 11623: -23,11 - 11624: -23,12 - 11625: -22,12 - 11626: -25,6 - 11627: -24,3 - 11628: -24,4 11629: -9,-22 11630: -8,-22 11631: -8,-23 @@ -3450,8 +3604,6 @@ entities: 11649: -2,-21 11650: -5,-21 11651: -6,-21 - 11702: -11,-7 - 11703: -14,-8 11704: -10,-8 11705: -9,-12 11706: -9,-11 @@ -3463,23 +3615,6 @@ entities: 11840: 15,11 11841: 15,12 11842: 15,13 - 11868: -31,17 - 11869: -31,18 - 11871: -30,18 - 11872: -30,17 - 11873: -30,15 - 11874: -30,14 - 11875: -31,14 - 11876: -33,14 - 11877: -34,14 - 11878: -34,13 - 11879: -34,11 - 11880: -34,10 - 11881: -34,9 - 11882: -34,7 - 11883: -34,6 - 11884: -34,5 - 11886: -34,4 11918: -15,23 11919: -9,21 11920: -9,22 @@ -3616,12 +3751,6 @@ entities: 12545: -14,13 12546: -16,11 12547: -15,8 - 12548: -16,5 - 12549: -15,3 - 12550: -17,1 - 12551: -15,-2 - 12552: -17,-4 - 12553: -16,-7 12554: -17,-9 12556: -12,-16 12559: -9,-14 @@ -3694,17 +3823,12 @@ entities: 12864: 86,-28 12865: 88,-30 12866: 89,-32 - 12867: 90,-35 - 12868: 91,-36 12869: 94,-36 - 12870: 95,-36 12871: 92,-37 12872: 95,-34 12873: 93,-33 12874: 94,-32 12875: 91,-32 - 12876: 91,-34 - 12877: 90,-35 12878: 92,-19 12879: 90,-18 12880: 88,-16 @@ -3729,94 +3853,8 @@ entities: 12944: 16,-29 12946: 62,-78 12947: 62,-79 - 13355: 67,-42 - 13356: 68,-41 - 13357: 67,-42 - 13358: 67,-44 - 13359: 68,-44 - 13360: 68,-45 - 13361: 71,-43 - 13362: 71,-43 - 13363: 71,-42 - 13364: 71,-41 - 13365: 72,-41 - 13366: 72,-42 - 13367: 73,-42 - 13368: 73,-41 - 13369: 74,-41 - 13370: 74,-41 - 13371: 74,-42 - 13372: 74,-46 - 13373: 74,-45 - 13374: 73,-45 - 13375: 73,-46 - 13376: 71,-45 - 13377: 70,-45 - 13378: 74,-46 - 13379: 73,-47 - 13380: 74,-47 - 13381: 75,-47 - 13382: 75,-47 - 13383: 76,-47 - 13384: 77,-47 - 13385: 78,-47 - 13386: 79,-47 - 13387: 79,-46 - 13388: 78,-46 - 13389: 77,-46 - 13390: 76,-45 - 13391: 77,-45 - 13392: 78,-45 - 13393: 79,-45 - 13394: 78,-43 - 13395: 77,-43 - 13396: 77,-43 - 13397: 77,-42 - 13398: 76,-42 - 13399: 76,-41 - 13400: 77,-41 - 13401: 78,-41 - 13402: 84,-41 - 13403: 84,-40 - 13404: 83,-40 - 13405: 75,-46 - 13406: 75,-45 - 13407: 74,-45 - 13408: 74,-44 - 13409: 74,-44 - 13410: 73,-44 - 13411: 68,-45 - 13412: 68,-44 - 13413: 67,-44 - 13414: 67,-43 - 13415: 67,-43 - 13416: 64,-43 - 13417: 63,-43 - 13418: 58,-43 - 13419: 58,-42 - 13420: 58,-41 - 13421: 58,-41 - 13422: 58,-40 - 13423: 59,-39 - 13424: 60,-39 - 13425: 61,-39 - 13426: 64,-39 - 13427: 65,-39 - 13428: 65,-40 - 13429: 65,-40 - 13430: 65,-43 - 13431: 65,-43 - 13432: 63,-43 - 13712: -24,-10 13714: -18,-11 13715: -17,-5 - 13716: -18,-5 - 13717: -16,0 - 13718: -19,-2 - 13719: -21,-2 - 13720: -20,-1 - 13721: -21,-1 - 13722: -23,-2 13780: -14,17 13783: 4,13 13915: -24,-53 @@ -3854,43 +3892,6 @@ entities: 14515: 34,12 14517: 29,-15 14518: 29,-14 - 14528: -28,3 - 14530: -28,6 - 14540: -26,4 - 14541: -25,5 - 14542: -26,5 - 14543: -27,4 - 14544: -26,3 - 14545: -25,3 - 14546: -27,2 - 14547: -27,6 - 14548: -27,7 - 14638: -40,-4 - 14639: -39,-4 - 14646: -38,-5 - 14726: -26,-5 - 14729: -23,-5 - 14743: -28,-2 - 14744: -30,-1 - 14745: -30,0 - 14746: -34,5 - 14747: -34,7 - 14748: -34,8 - 14749: -34,9 - 14750: -36,9 - 14751: -37,9 - 14752: -35,9 - 14753: -34,4 - 14754: -34,4 - 14756: -27,4 - 14757: -27,5 - 14758: -28,5 - 14759: -28,7 - 14760: -27,9 - 14761: -26,15 - 14762: -25,15 - 14763: -23,16 - 14764: -23,17 14822: 25,5 14823: 26,6 14824: 16,10 @@ -3900,26 +3901,6 @@ entities: 14848: -31,-54 14849: -33,-50 14894: 8,-15 - 14899: -33,19 - 14900: -34,18 - 14901: -33,18 - 14902: -32,19 - 14903: -33,20 - 14904: -34,20 - 14906: -34,15 - 14907: -33,16 - 14908: -34,15 - 14923: -39,17 - 14924: -39,18 - 14925: -38,18 - 14926: -37,18 - 14927: -37,17 - 14928: -34,17 - 14931: -33,16 - 14932: -33,17 - 14933: -33,18 - 14934: -34,18 - 14935: -35,18 14943: 42,8 14944: 41,8 14945: 41,6 @@ -3946,9 +3927,6 @@ entities: 15005: -6,-39 15006: -6,-38 15007: -6,-40 - 15023: -29,-1 - 15024: -23,-1 - 15025: -37,17 15190: 6,-95 15191: 7,-94 15192: 7,-93 @@ -4324,34 +4302,18 @@ entities: 16731: -35,-16 16732: -35,-18 16733: -35,-18 - 16734: -37,-16 - 16735: -37,-16 - 16736: -40,-16 - 16737: -40,-15 - 16738: -38,-15 - 16739: -36,-15 16740: -35,-16 16741: -37,-13 - 16742: -38,-13 - 16743: -38,-13 16744: -34,-15 16745: -34,-14 - 16746: -35,-13 - 16747: -35,-13 16748: -33,-12 16749: -33,-12 - 16752: -33,-8 - 16763: -30,-2 - 16764: -31,-2 - 16765: -31,-1 - 16766: -31,0 16767: -31,-17 16768: -28,-17 16769: -26,-17 16770: -23,-17 16771: -22,-16 16773: -26,-16 - 16774: -26,-15 16775: -25,-16 16776: -29,-16 16777: -29,-17 @@ -4409,7 +4371,6 @@ entities: 16834: -49,-41 16835: -48,-41 16836: -49,-42 - 16993: -31,0 16997: -22,-21 16999: -32,-26 17000: -30,-33 @@ -4751,7 +4712,6 @@ entities: 18137: -15,10 18138: -17,10 18139: -13,7 - 18140: -15,6 18141: -15,7 18142: -9,10 18143: -10,10 @@ -5166,15 +5126,6 @@ entities: 19725: -13,-42 19728: -13,-41 19729: -13,-40 - 20091: -35,5 - 20092: -35,6 - 20093: -35,7 - 20094: -34,8 - 20095: -33,6 - 20096: -33,5 - 20097: -33,4 - 20100: -34,-1 - 20102: -34,1 20204: -1,-13 20205: -1,-14 20206: 2,-11 @@ -5227,6 +5178,17 @@ entities: 20269: -6,-15 20270: -6,-14 20271: -6,-13 + 20314: -3,-12 + 20316: -2,-11 + 20317: -3,-11 + 20318: -2,-9 + 20319: -1,-9 + 20320: 0,-10 + 20321: -1,-11 + 20352: -5,-11 + 20353: -5,-9 + 20354: -2,-12 + 20355: -2,-8 20416: 12,-39 20546: 16,15 20547: 14,16 @@ -5262,176 +5224,689 @@ entities: 20705: 29,-32 20706: 33,-32 20707: 33,-31 - 21019: -27,-10 - 21020: -30,-11 - 21021: -31,-9 - 21023: -35,-10 - 21024: -35,-9 - 21025: -36,-10 21026: -35,-11 - 21027: -39,-11 - 21028: -38,-10 - 21029: -40,-9 - 21030: -40,-9 - 21031: -39,-7 - 21032: -39,-6 - 21033: -41,-6 - 21034: -44,-6 - 21035: -42,-9 - 21036: -43,-9 - 21037: -44,-8 - 21038: -45,-6 - 21039: -44,-5 - 21040: -43,-5 - 21041: -42,-4 - 21042: -39,-6 - 21043: -39,-5 - 21044: -39,-2 - 21045: -42,-1 - 21046: -41,1 - 21047: -44,0 - 21048: -44,-1 - 21049: -45,0 - 21050: -48,1 - 21051: -47,3 - 21052: -48,4 - 21053: -50,1 - 21054: -50,3 - 21055: -51,3 - 21056: -50,5 - 21057: -48,6 - 21058: -47,6 - 21059: -47,7 - 21060: -44,7 - 21061: -44,6 - 21062: -47,3 - 21063: -44,3 - 21064: -42,2 - 21065: -41,5 - 21066: -40,6 - 21067: -38,5 - 21068: -41,4 - 21069: -38,3 - 21070: -40,1 - 21071: -40,-1 - 21072: -39,-2 - 21073: -36,-1 - 21074: -34,-2 - 21075: -34,-4 - 21076: -33,-4 - 21077: -33,-1 - 21078: -34,0 - 21079: -35,2 - 21080: -33,2 - 21081: -34,2 - 21082: -34,3 - 21083: -35,4 - 21084: -38,-1 - 21085: -38,-3 - 21086: -38,-6 - 21087: -40,-8 - 21088: -38,-11 - 21089: -38,-9 - 21090: -40,-9 - 21091: -35,-10 - 21092: -36,-11 - 21094: -33,-9 - 21095: -29,-9 - 21096: -32,-7 - 21097: -30,-7 - 21098: -31,-6 - 21099: -31,-5 - 21100: -29,-5 - 21101: -31,-4 - 21102: -34,-4 - 21103: -33,-6 - 21104: -35,-6 - 21105: -27,-8 - 21106: -26,-7 - 21107: -25,-6 - 21108: -26,-4 - 21109: -27,-3 - 21110: -25,-7 - 21111: -23,-7 - 21112: -23,-8 - 21113: -21,-7 - 21114: -21,-5 - 21115: -21,-4 - 21116: -21,-8 - 21117: -21,-8 - 21118: -20,-7 - 21119: -21,-1 - 21120: -24,-2 - 21121: -27,-2 - 21122: -25,-3 - 21123: -25,-3 - 21124: -26,-3 - 21125: -25,-8 - 21126: -26,-9 - 21127: -26,-9 - 21128: -28,-10 - 21129: -24,-10 - 21130: -25,-11 - 21131: -26,-12 - 21132: -23,-11 - 21133: -21,-10 - 21134: -19,-10 - 21135: -20,-11 - 21136: -18,-10 21137: -18,-12 - 21384: -50,1 - 21385: -50,5 - 21386: -48,2 - 21387: -48,1 - 21388: -44,1 - 21389: -44,5 - 21390: -48,5 - 21391: -43,-7 - 21392: -42,-7 - 21393: -42,-8 - 21394: -27,-5 - 21395: -27,-7 - 21396: -26,-8 - 21397: -26,-9 - 21398: -26,-10 + 22173: -41,9 + 22174: -40,8 + 22175: -39,9 + 22176: -41,11 + 22177: -41,13 + 22178: -41,15 + 22179: -41,16 + 22180: -41,14 + 22181: -37,11 + 22182: -34,13 + 22183: -38,13 + 22184: -36,12 + 22185: -34,12 + 22186: -34,13 + 22187: -37,13 + 22188: -37,9 + 22189: -37,9 + 22190: -37,8 + 22191: -35,8 + 22192: -35,9 + 22193: -36,9 + 22194: -37,14 + 22195: -37,15 + 22196: -36,16 + 22197: -36,16 + 22198: -38,16 + 22199: -38,14 + 22200: -32,14 + 22201: -33,12 + 22202: -33,8 + 22203: -32,5 + 22204: -31,7 + 22205: -32,6 + 22206: -29,6 + 22207: -29,8 + 22208: -28,9 + 22209: -28,11 + 22210: -29,14 + 22211: -30,15 + 22212: -31,14 + 22213: -30,12 + 22214: -31,11 + 22215: -30,9 + 22216: -27,16 + 22217: -25,16 + 22218: -25,14 + 22219: -26,15 + 22220: -26,15 + 22221: -26,10 + 22222: -25,10 + 22223: -23,10 + 22224: -23,11 + 22225: -25,11 + 22226: -27,10 + 22227: -27,11 + 22228: -24,8 + 22229: -26,7 + 22230: -25,6 + 22231: -23,7 + 22232: -25,7 + 22233: -25,5 + 22234: -23,5 + 22235: -23,2 + 22236: -23,3 + 22237: -26,3 + 22238: -28,0 + 22239: -27,0 + 22240: -25,0 + 22241: -23,1 + 22242: -25,1 + 22243: -28,1 + 22244: -30,1 + 22245: -29,0 + 22246: -30,1 + 22247: -29,2 + 22248: -29,3 + 22249: -31,3 + 22250: -28,4 + 22251: -30,4 + 22252: -28,-2 + 22253: -30,-2 + 22254: -31,-3 + 22255: -30,-4 + 22256: -29,-4 + 22257: -28,-2 + 22258: -26,-2 + 22259: -26,-4 + 22260: -25,-4 + 22261: -25,-2 + 22262: -29,-4 + 22263: -31,-3 + 22264: -32,-3 + 22265: -32,-6 + 22266: -32,-6 + 22267: -34,-6 + 22268: -34,-4 + 22269: -36,-4 + 22270: -41,-3 + 22271: -41,-2 + 22272: -36,-2 + 22273: -44,-2 + 22274: -45,-2 + 22275: -45,-4 + 22276: -43,-4 + 22277: -45,-5 + 22278: -44,-7 + 22279: -47,-8 + 22280: -46,-9 + 22281: -45,-7 + 22282: -43,-8 + 22283: -43,-9 + 22284: -43,-7 + 22285: -45,-6 + 22286: -41,-8 + 22287: -41,-9 + 22288: -41,-10 + 22289: -40,-9 + 22290: -41,-7 + 22291: -40,-6 + 22294: -39,-10 + 22295: -38,-11 + 22296: -35,-11 + 22297: -36,-11 + 22298: -36,-9 + 22299: -36,-7 + 22300: -39,-7 + 22301: -38,-10 + 22303: -34,-7 + 22304: -33,-7 + 22305: -33,-5 + 22306: -34,-6 + 22307: -30,-6 + 22308: -30,-8 + 22309: -29,-7 + 22310: -29,-6 + 22311: -28,-8 + 22312: -27,-8 + 22313: -27,-8 + 22314: -26,-9 + 22315: -27,-9 + 22316: -25,-9 + 22317: -25,-7 + 22318: -25,-6 + 22319: -28,-6 + 22320: -27,-7 + 22325: -26,-4 + 22326: -26,-4 + 22339: -22,-1 + 22340: -23,-3 + 22341: -22,-4 + 22342: -21,-5 + 22343: -17,-4 + 22344: -16,-2 + 22345: -18,-1 + 22346: -21,-1 + 22347: -23,0 + 22348: -23,2 + 22349: -18,0 + 22350: -18,0 + 22351: -15,1 + 22352: -18,2 + 22353: -15,2 + 22354: -18,3 + 22355: -18,3 + 22356: -18,4 + 22357: -19,6 + 22358: -21,6 + 22359: -20,8 + 22360: -21,8 + 22361: -21,7 + 22362: -20,8 + 22363: -21,5 + 22364: -19,11 + 22365: -17,10 + 22366: -19,8 + 22367: -18,7 + 22368: -18,11 + 22369: -19,14 + 22370: -19,15 + 22371: -20,15 + 22372: -20,17 + 22373: -20,18 + 22374: -23,19 + 22375: -21,19 + 22376: -20,19 + 22377: -27,19 + 22378: -28,19 + 22379: -29,21 + 22380: -29,23 + 22381: -30,24 + 22382: -30,25 + 22383: -32,25 + 22384: -33,26 + 22385: -34,26 + 22386: -34,27 + 22387: -35,26 + 22388: -36,26 + 22389: -36,25 + 22390: -36,24 + 22391: -34,22 + 22392: -32,22 + 22393: -36,22 + 22394: -37,21 + 22395: -40,21 + 22396: -39,23 + 22397: -41,22 + 22398: -40,21 + 22399: -41,23 + 22400: -39,20 + 22401: -40,19 + 22402: -41,19 + 22403: -43,20 + 22404: -44,20 + 22405: -45,20 + 22406: -45,22 + 22407: -43,23 + 22408: -43,24 + 22409: -43,22 + 22410: -41,22 + 22411: -42,21 + 22412: -44,21 + 22413: -40,22 + 22414: -41,20 + 22415: -38,20 + 22416: -46,21 + 22417: -47,21 + 22418: -47,22 + 22419: -49,22 + 22420: -49,23 + 22421: -49,21 + 22422: -51,23 + 22423: -52,23 + 22424: -53,23 + 22425: -52,24 + 22426: -51,24 + 22427: -53,22 + 22428: -52,22 + 22429: -55,22 + 22430: -55,21 + 22431: -55,20 + 22432: -55,18 + 22433: -53,20 + 22434: -52,20 + 22435: -53,19 + 22436: -52,19 + 22437: -53,17 + 22438: -53,17 + 22439: -53,17 + 22440: -54,17 + 22441: -54,18 + 22442: -53,18 + 22443: -53,16 + 22444: -53,15 + 22445: -54,15 + 22446: -56,15 + 22447: -54,15 + 22448: -52,15 + 22449: -50,15 + 22450: -48,15 + 22451: -47,15 + 22452: -47,14 + 22453: -46,14 + 22454: -46,15 + 22455: -48,15 + 22456: -49,16 + 22457: -50,17 + 22458: -50,18 + 22459: -49,18 + 22460: -49,12 + 22461: -51,12 + 22462: -52,13 + 22463: -53,12 + 22464: -52,11 + 22465: -51,10 + 22466: -54,10 + 22467: -54,12 + 22468: -54,13 + 22469: -54,13 + 22470: -54,11 + 22471: -49,10 + 22472: -49,11 + 22473: -49,9 + 22474: -47,10 + 22475: -46,11 + 22476: -47,11 + 22477: -48,11 + 22478: -47,8 + 22479: -48,8 + 22480: -49,8 + 22481: -50,7 + 22482: -51,7 + 22483: -51,8 + 22484: -52,8 + 22485: -54,8 + 22486: -54,7 + 22487: -54,7 + 22488: -52,8 + 22489: -55,8 + 22490: -55,8 + 22491: -55,7 + 22492: -55,5 + 22493: -55,4 + 22494: -54,3 + 22495: -54,4 + 22496: -53,5 + 22497: -53,4 + 22498: -52,5 + 22499: -52,3 + 22500: -51,3 + 22501: -51,5 + 22502: -50,4 + 22503: -50,2 + 22504: -51,0 + 22505: -53,1 + 22506: -52,-1 + 22507: -53,-2 + 22508: -53,-3 + 22509: -53,-6 + 22510: -52,-7 + 22511: -52,-8 + 22512: -52,-7 + 22513: -52,-4 + 22514: -51,-5 + 22515: -51,-6 + 22516: -51,-3 + 22517: -51,-1 + 22518: -52,2 + 22519: -52,0 + 22520: -53,-2 + 22521: -54,1 + 22522: -55,1 + 22523: -56,1 + 22524: -56,2 + 22525: -56,-1 + 22526: -56,-2 + 22527: -56,-3 + 22528: -56,-4 + 22529: -55,-4 + 22530: -55,-3 + 22531: -55,-2 + 22532: -55,-1 + 22533: -56,-3 + 22534: -51,-3 + 22535: -53,-6 + 22536: -52,-6 + 22537: -54,-7 + 22538: -55,-7 + 22539: -56,-8 + 22540: -56,-8 + 22541: -54,-7 + 22542: -53,-8 + 22543: -52,-8 + 22544: -53,-9 + 22545: -54,-9 + 22546: -54,-10 + 22547: -53,-9 + 22548: -51,-9 + 22549: -51,-10 + 22550: -52,-10 + 22551: -54,-10 + 22552: -55,-10 + 22553: -56,-11 + 22554: -56,-11 + 22555: -56,-13 + 22556: -53,-12 + 22557: -54,-10 + 22558: -57,-10 + 22559: -57,-14 + 22560: -55,-13 + 22561: -54,-14 + 22562: -53,-14 + 22563: -53,-14 + 22564: -54,-15 + 22565: -53,-15 + 22566: -52,-14 + 22567: -51,-13 + 22568: -51,-14 + 22569: -50,-15 + 22570: -50,-14 + 22571: -52,-12 + 22572: -52,-14 + 22573: -50,-15 + 22574: -55,-14 + 22575: -57,-14 + 22576: -59,-14 + 22577: -59,-14 + 22578: -59,-16 + 22579: -60,-15 + 22580: -60,-13 + 22581: -59,-13 + 22582: -59,-12 + 22583: -58,-14 + 22584: -57,-15 + 22585: -56,-17 + 22586: -56,-18 + 22587: -57,-18 + 22588: -57,-20 + 22589: -56,-20 + 22590: -54,-20 + 22591: -53,-20 + 22592: -53,-19 + 22593: -54,-18 + 22594: -55,-18 + 22595: -54,-19 + 22596: -56,-19 + 22597: -56,-19 + 22598: -55,-17 + 22599: -56,-16 + 22600: -55,-15 + 22601: -54,-16 + 22602: -50,-14 + 22603: -49,-14 + 22604: -46,-14 + 22605: -45,-14 + 22606: -43,-14 + 22607: -43,-15 + 22608: -43,-15 + 22609: -43,-13 + 22610: -43,-12 + 22611: -43,-11 + 22612: -41,-14 + 22613: -40,-14 + 22614: -42,-15 + 22615: -41,-16 + 22616: -41,-17 + 22617: -40,-17 + 22618: -39,-17 + 22619: -39,-16 + 22620: -39,-17 + 22621: -39,-20 + 22622: -40,-20 + 22623: -40,-19 + 22624: -40,-20 + 22625: -40,-21 + 22626: -39,-21 + 22627: -38,-21 + 22628: -38,-19 + 22629: -37,-20 + 22630: -36,-19 + 22631: -37,-19 + 22632: -36,-19 + 22633: -33,-16 + 22634: -34,-16 + 22635: -36,-16 + 22636: -38,-16 + 22637: -39,-14 + 22638: -38,-14 + 22639: -37,-14 + 22640: -38,-13 + 22641: -39,-14 + 22642: -34,-15 + 22643: -34,-14 + 22644: -35,-13 + 22645: -35,-14 + 22646: -35,-15 + 22647: -33,-15 + 22648: -32,-15 + 22649: -32,-13 + 22650: -32,-13 + 22651: -33,-13 + 22652: -33,-15 + 22653: -33,-15 + 22654: -34,-16 + 22655: -32,-16 + 22656: -30,-16 + 22657: -29,-16 + 22658: -29,-16 + 22659: -29,-15 + 22660: -29,-14 + 22661: -30,-15 + 22662: -27,-16 + 22663: -27,-16 + 22666: -25,-14 + 22667: -24,-14 + 22668: -25,-13 + 22669: -23,-13 + 22671: -22,-14 + 22672: -21,-14 + 22673: -20,-15 + 22674: -21,-17 + 22675: -23,-17 + 22676: -25,-17 + 22677: -27,-17 + 22678: -21,-18 + 22679: -20,-18 + 22680: -27,-17 + 22681: -28,-17 + 22683: -24,-14 + 22684: -24,-13 + 22685: -26,-9 + 22686: -28,-9 + 22687: -27,-7 + 22688: -30,-6 + 22689: -33,-7 + 22690: -34,-7 + 22691: -36,-7 + 22692: -37,-7 + 22693: -40,-7 + 22694: -40,-6 + 22695: -41,-6 + 22696: -34,-6 + 22697: -34,-4 + 22698: -39,-2 + 22699: -33,-2 + 22700: -33,-3 + 22701: -33,-5 + 22702: -32,1 + 22703: -34,1 + 22704: -34,0 + 22705: -33,0 + 22706: -32,0 + 22707: -42,4 + 22708: -41,5 + 22709: -37,4 + 22710: -39,3 + 22711: -40,3 + 22712: -37,2 + 22713: -32,3 + 22714: -32,3 + 22715: -33,3 + 22716: -34,3 + 22717: -33,4 + 22718: -33,4 + 22805: -40,25 + 22806: -39,26 + 22807: -38,27 + 22808: -39,30 + 22809: -39,31 + 22810: -37,30 + 22811: -38,29 + 22812: -40,30 + 22813: -42,29 + 22814: -44,29 + 23190: 53,-39 + 23191: 51,-40 + 23192: 51,-39 + 23194: 52,-36 + 23195: 53,-36 + 23196: 55,-39 + 23197: 57,-39 + 23198: 57,-37 + 23199: 55,-37 + 23200: 56,-38 + 23201: 50,-38 + 23202: 49,-37 + 23203: 49,-36 + 23204: 49,-39 + 23205: 49,-40 + 23206: 48,-39 + 23207: 48,-37 + 23208: 48,-36 + 23209: 49,-38 + 23210: 65,-38 + 23211: 68,-38 + 23212: 73,-38 + 23213: 78,-38 + 23214: 77,-43 + 23215: 77,-45 + 23216: 78,-45 + 23217: 80,-45 + 23218: 81,-44 + 23219: 81,-42 + 23220: 78,-41 + 23221: 75,-41 + 23222: 74,-43 + 23223: 73,-45 + 23224: 70,-45 + 23225: 67,-45 + 23226: 67,-42 + 23227: 66,-41 + 23228: 69,-41 + 23229: 69,-44 + 23230: 70,-41 + 23231: 73,-41 + 23232: 71,-43 + 23233: 70,-43 + 23307: 88,-43 + 23308: 87,-43 + 23310: 87,-44 + 23311: 90,-44 + 23312: 91,-45 + 23313: 93,-44 + 23314: 93,-42 + 23315: 96,-42 + 23316: 95,-44 + 23317: 95,-45 + 23318: 95,-46 + 23319: 96,-44 + 23320: 96,-42 + 23321: 96,-41 + 23322: 95,-40 + 23323: 94,-40 + 23324: 92,-40 + 23325: 90,-40 + 23326: 88,-40 + 23327: 88,-44 + 23328: 89,-45 + 23329: 89,-46 + 23330: 92,-46 + 23331: 94,-46 + 23332: 92,-44 + 23333: 94,-42 + 23334: 92,-41 + 23335: 89,-43 + 23336: 90,-43 + 23337: 84,-44 + 23338: 83,-44 + 23339: 83,-42 + 23340: 84,-42 + 23341: 75,-45 + 23342: 69,-43 + 23343: 70,-43 + 23344: 81,-45 + 23345: 77,-45 + 23346: 77,-41 + 23347: 81,-41 + 23348: 83,-44 + 23422: 76,-55 + 23423: 78,-50 + 23424: 80,-47 + 23425: 81,-45 + 23426: 79,-49 + 23427: 76,-55 + 23428: 78,-58 + 23429: 77,-60 + 23430: 82,-59 + 23431: 77,-64 + 23432: 81,-60 + 23433: 80,-60 + 23434: 86,-56 + 23435: 82,-60 + 23436: 86,-57 + 23437: 88,-54 + 23438: 88,-54 + 23439: 85,-49 + 23440: 85,-47 + 23441: 84,-47 + 23442: 86,-48 + 23443: 88,-52 + 23444: 90,-53 + 23445: 95,-52 + 23446: 96,-51 + 23447: 96,-36 + 23448: 96,-35 + 23449: 93,-36 + 23450: 92,-34 + 23451: 90,-34 + 23452: 88,-36 + 23453: 89,-36 + 23454: 88,-34 + 23455: 86,-34 + 23456: 86,-36 + 23457: 96,-35 + 23458: 96,-37 + - node: + cleanable: True + zIndex: 6 + color: '#FFFFFF7F' + id: DirtHeavy + decals: + 23650: 49,-44 + 23651: 49,-43 + 23652: 49,-42 + 23653: 51,-42 + 23654: 52,-42 + 23655: 53,-43 + 23656: 51,-43 + 23657: 53,-42 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 21990: -34,19 - node: cleanable: True zIndex: 5 color: '#FFFFFF7F' id: DirtHeavyMonotile decals: - 20322: -4,-11 - 20323: -4,-10 - 20324: -4,-9 - 20325: -1,-9 - 20326: 0,-8 - 20328: 1,-9 - 20329: 0,-10 - 20330: 0,-11 - 20331: -2,-11 - 20332: -2,-13 - 20333: 0,-10 - 20334: -2,-10 - 20335: -5,-12 - 20336: -2,-13 - 20337: 1,-14 - 20338: -4,-14 - 20339: -5,-14 - 20340: -5,-15 - 20341: 1,-15 - 20342: 3,-15 - 20343: 5,-15 - 20344: 4,-12 - 20345: 4,-8 - 20346: 2,-8 - 20347: 2,-10 - 20348: 1,-11 - 20349: -3,-8 - 20350: -2,-6 - 20351: -4,-6 - 21360: -34,-9 1158: 19,-55 - 1597: -17,6 3214: 39,-29 3216: 38,-30 3217: 37,-30 @@ -5487,12 +5962,6 @@ entities: 5432: -20,-44 5433: -21,-44 5434: -22,-44 - 6550: -16,7 - 6551: -17,7 - 6552: -15,6 - 6553: -15,5 - 6554: -15,3 - 6555: -15,3 7323: 53,-19 7537: 25,-1 7540: 23,2 @@ -5546,15 +6015,6 @@ entities: 8505: 0,-40 8506: 1,-40 9188: 49,-25 - 9447: -26,-2 - 9448: -27,-2 - 9449: -26,0 - 9452: -26,6 - 9453: -26,7 - 9454: -27,7 - 9459: -30,3 - 9460: -31,2 - 9461: -30,2 10056: 15,-22 10057: 14,-22 10058: 14,-23 @@ -5604,16 +6064,6 @@ entities: 14509: 33,-3 14510: 31,8 14511: 34,13 - 14865: -25,-14 - 14912: -31,15 - 14913: -30,16 - 14914: -30,19 - 14915: -31,20 - 14916: -32,20 - 14917: -33,20 - 14918: -34,20 - 14919: -33,18 - 14920: -32,19 15038: 38,-37 15040: 21,-26 15041: 21,-27 @@ -5756,6 +6206,35 @@ entities: 19727: -13,-41 20114: -1,-14 20115: -1,-13 + 20322: -4,-11 + 20323: -4,-10 + 20324: -4,-9 + 20325: -1,-9 + 20326: 0,-8 + 20328: 1,-9 + 20329: 0,-10 + 20330: 0,-11 + 20331: -2,-11 + 20332: -2,-13 + 20333: 0,-10 + 20334: -2,-10 + 20335: -5,-12 + 20336: -2,-13 + 20337: 1,-14 + 20338: -4,-14 + 20339: -5,-14 + 20340: -5,-15 + 20341: 1,-15 + 20342: 3,-15 + 20343: 5,-15 + 20344: 4,-12 + 20345: 4,-8 + 20346: 2,-8 + 20347: 2,-10 + 20348: 1,-11 + 20349: -3,-8 + 20350: -2,-6 + 20351: -4,-6 20544: 19,13 20545: 19,12 20574: 33,-23 @@ -5772,23 +6251,96 @@ entities: 20689: 32,-26 20690: 38,-26 20691: 35,-23 - 21138: -21,-11 - 21139: -24,-11 - 21140: -28,-11 - 21141: -30,-11 - 21143: -31,-9 - 21144: -31,-7 - 21145: -31,-6 - 21146: -34,-8 + 23239: 78,-43 + 23240: 78,-42 + 23241: 78,-44 + 23242: 79,-44 + - node: + cleanable: True + zIndex: 6 + color: '#FFFFFF7F' + id: DirtHeavyMonotile + decals: + 23658: 49,-43 + 23659: 49,-42 + 23660: 50,-42 + 23661: 52,-42 + 23662: 53,-43 + 23663: 52,-43 + 23664: 49,-44 + 23665: 49,-46 + 23666: 47,-52 + 23667: 46,-52 + 23668: 46,-51 + 23669: 44,-51 + 23670: 43,-52 + 23671: 43,-52 + 23672: 42,-52 + 23673: 44,-54 + 23674: 44,-55 + 23675: 48,-59 + 23676: 48,-58 + 23677: 46,-58 + 23678: 42,-58 + 23679: -38,12 + 23680: -49,8 + 23681: -50,6 + 23682: -52,2 + 23683: -53,-1 + 23684: -52,-6 + 23685: -54,-11 + 23686: -52,-17 + 23687: -55,-5 + 23688: -55,-4 + 23689: -56,-5 + 23690: -56,-3 + 23691: -55,-1 + 23692: -55,-1 + 23693: -56,0 + 23694: -55,1 + 23695: -54,1 + 23696: -43,-7 + 23697: -38,-8 + 23698: -30,-3 + 23699: -20,-3 + 23700: -19,-3 + 23701: -18,-3 + 23702: -18,-4 + 23703: -19,-4 + 23704: -20,-4 + 23705: -21,-4 + 23706: -21,-3 + 23707: -21,-2 + 23708: -20,-2 + 23709: -19,-2 + 23710: -18,-2 + 23711: -18,-8 + 23712: -19,-8 + 23713: -19,-7 + 23714: -19,1 + 23715: -19,2 + 23716: -19,-1 + 23717: -20,-1 + 23718: -26,-14 + 23719: -26,-15 + 23720: -23,-14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 21992: -34,20 + 22006: -33,20 + 22007: -32,20 + 22010: -33,19 + 22011: -32,20 - node: cleanable: True zIndex: 5 color: '#FFFFFF7F' id: DirtLight decals: - 1355: -26,6 1595: -17,10 - 1596: -17,8 3976: 8,-55 3978: 7,-54 3979: 8,-56 @@ -5833,11 +6385,7 @@ entities: 4388: -18,-14 4389: -17,-12 4391: -17,-8 - 4393: -15,-4 4394: -16,-2 - 4396: -15,3 - 4397: -16,5 - 4398: -16,7 4399: -15,9 4400: -15,11 4403: -8,11 @@ -5985,20 +6533,13 @@ entities: 4917: 2,11 4918: 1,10 4919: 0,10 - 5061: -17,6 - 5063: -15,4 - 5071: -15,-2 5075: -16,-5 - 5081: -16,-9 5082: -17,-10 5083: -18,-11 5088: -10,-13 5089: -10,-12 5090: -9,-12 5137: -9,-22 - 5160: -13,-7 - 5161: -12,-7 - 5162: -11,-7 5163: -10,-9 5164: -9,-8 5165: -8,-8 @@ -6209,10 +6750,6 @@ entities: 6452: -25,-20 6485: -16,-5 6488: -16,1 - 6556: -15,6 - 6557: -17,7 - 6559: -16,5 - 6562: -15,6 6563: -16,10 6564: -16,11 6565: -13,10 @@ -6314,20 +6851,7 @@ entities: 8214: 29,-23 9021: -17,-9 9023: -17,-11 - 9024: -18,-10 9026: -17,-5 - 9027: -15,-2 - 9028: -15,-1 - 9037: -67,-13 - 9038: -69,-15 - 9039: -70,-12 - 9040: -69,-11 - 9041: -55,-13 - 9042: -52,-13 - 9043: -54,-12 - 9044: -53,-13 - 9045: -64,-10 - 9046: -62,-14 9047: -21,-19 9048: -20,-25 9049: -19,-25 @@ -6336,14 +6860,8 @@ entities: 9052: -21,-19 9109: -29,-35 9110: -30,-35 - 9462: -31,4 - 9463: -30,4 - 9464: -31,3 - 9511: -26,11 9527: -17,-1 - 9528: -17,-2 9532: -17,-5 - 9533: -17,-4 9534: -17,-1 9537: -16,1 9542: -17,-11 @@ -6503,44 +7021,7 @@ entities: 12931: 10,-32 12932: 13,-29 12933: 12,-29 - 13433: 72,-43 - 13434: 72,-42 - 13435: 71,-42 - 13436: 74,-43 - 13437: 74,-44 - 13438: 75,-45 - 13439: 76,-45 - 13440: 77,-45 - 13441: 78,-46 - 13442: 76,-46 - 13443: 74,-47 - 13444: 76,-47 - 13445: 78,-46 - 13446: 78,-45 - 13447: 74,-46 - 13448: 73,-46 - 13449: 73,-47 - 13450: 73,-45 - 13451: 73,-45 - 13452: 70,-45 - 13453: 70,-45 - 13454: 70,-43 - 13455: 72,-42 - 13456: 77,-42 - 13457: 76,-41 - 13458: 77,-41 - 13459: 78,-43 - 13460: 84,-41 - 13461: 84,-40 - 13462: 83,-40 - 13463: 83,-41 - 13464: 91,-36 - 13465: 91,-36 - 13466: 91,-35 - 13467: 91,-34 - 13468: 89,-34 13469: 87,-34 - 13738: -24,-9 13781: -15,16 13916: -24,-52 13917: -23,-51 @@ -6597,24 +7078,6 @@ entities: 14477: -22,-28 14512: 33,13 14513: 34,14 - 14531: -27,6 - 14532: -28,7 - 14533: -28,2 - 14536: -27,5 - 14537: -25,5 - 14538: -25,6 - 14686: -26,-5 - 14687: -26,-6 - 14694: -37,-3 - 14695: -36,-3 - 14696: -35,-3 - 14704: -40,-2 - 14705: -40,-1 - 14706: -41,-1 - 14707: -41,-2 - 14708: -40,-4 - 14710: -42,1 - 14711: -42,2 14953: 35,7 14954: 35,8 14955: 37,8 @@ -6922,10 +7385,7 @@ entities: 16968: -45,-24 16969: -45,-24 16970: -44,-25 - 16971: -37,-16 - 16972: -39,-16 16973: -34,-14 - 16974: -34,-12 16975: -33,-12 17253: 15,-9 17510: 21,5 @@ -7168,12 +7628,6 @@ entities: 19426: 24,16 19427: 27,16 19428: 28,16 - 20103: -40,-1 - 20104: -35,5 - 20105: -35,13 - 20106: -37,9 - 20107: -34,3 - 20108: -34,3 20120: -1,-10 20121: -2,-10 20124: 0,-14 @@ -7301,82 +7755,401 @@ entities: 20717: 32,-31 20718: 29,-27 20719: 34,-32 - 21147: -35,-9 - 21149: -29,-10 - 21150: -32,-9 - 21151: -31,-7 - 21152: -30,-6 - 21153: -34,-4 - 21154: -38,-6 - 21155: -41,-6 - 21156: -44,-5 - 21157: -44,-8 - 21158: -44,-8 - 21159: -42,-9 - 21160: -40,-10 - 21161: -40,-10 - 21162: -38,-10 - 21163: -38,-11 - 21164: -38,-6 - 21165: -38,-3 - 21166: -40,0 - 21167: -42,-2 - 21168: -42,-1 - 21169: -42,1 - 21170: -47,0 - 21171: -48,0 - 21172: -48,2 - 21173: -48,3 - 21174: -48,4 - 21175: -44,4 - 21176: -44,2 - 21177: -46,2 - 21178: -50,1 - 21179: -50,2 - 21180: -51,3 - 21181: -51,3 - 21182: -50,4 - 21183: -50,5 - 21184: -47,6 - 21185: -48,6 - 21186: -47,7 - 21187: -45,6 - 21188: -44,6 - 21189: -42,6 - 21190: -39,6 - 21191: -39,5 - 21192: -38,5 - 21193: -38,6 - 21194: -39,3 - 21195: -37,3 - 21196: -38,2 - 21197: -38,2 - 21198: -37,-1 - 21199: -33,-1 - 21200: -33,0 - 21201: -33,0 - 21202: -33,-2 - 21203: -33,-5 - 21204: -32,-4 - 21205: -30,-4 - 21206: -30,-6 - 21207: -31,-6 - 21208: -34,-6 - 21209: -35,-6 - 21210: -28,-7 - 21211: -28,-8 - 21212: -31,-9 - 21373: -44,4 - 21374: -48,3 - 21375: -40,4 - 21376: -44,6 - 21377: -45,6 - 21378: -47,6 - 21379: -50,5 - 21380: -50,4 - 21381: -51,3 - 21382: -50,3 - 21383: -50,2 + 22724: -29,1 + 22725: -29,2 + 22726: -25,1 + 22727: -24,2 + 22728: -22,6 + 22729: -26,6 + 22730: -24,7 + 22731: -26,6 + 22732: -28,6 + 22733: -32,7 + 22734: -32,9 + 22735: -32,10 + 22736: -33,11 + 22737: -30,8 + 22738: -29,11 + 22739: -34,12 + 22740: -36,13 + 22741: -38,13 + 22742: -33,12 + 22743: -36,9 + 22744: -40,9 + 22745: -38,11 + 22746: -36,14 + 22747: -37,15 + 22748: -41,16 + 22749: -41,16 + 22750: -41,12 + 22751: -42,11 + 22752: -47,14 + 22753: -47,13 + 22754: -47,14 + 22755: -45,14 + 22756: -47,11 + 22757: -49,11 + 22758: -49,12 + 22759: -50,13 + 22760: -53,12 + 22761: -53,13 + 22762: -54,11 + 22763: -55,11 + 22764: -56,12 + 22765: -57,11 + 22766: -56,10 + 22767: -53,14 + 22768: -53,16 + 22769: -55,15 + 22770: -51,15 + 22771: -54,18 + 22772: -52,21 + 22773: -55,21 + 22774: -52,24 + 22775: -55,20 + 22776: -47,22 + 22777: -48,19 + 22778: -50,17 + 22779: -48,18 + 22780: -47,19 + 22781: -50,22 + 22782: -46,22 + 22783: -46,20 + 22784: -42,22 + 22785: -43,22 + 22786: -39,22 + 22787: -38,20 + 22788: -40,21 + 22789: -39,23 + 22790: -42,22 + 22791: -39,25 + 22792: -39,27 + 22793: -38,27 + 22794: -39,28 + 22795: -39,30 + 22796: -40,30 + 22797: -40,30 + 22798: -44,29 + 22799: -44,29 + 22800: -39,30 + 22801: -39,31 + 22802: -39,29 + 22803: -38,27 + 22804: -40,25 + 22815: -36,22 + 22816: -35,24 + 22817: -36,26 + 22818: -34,26 + 22819: -33,27 + 22820: -33,26 + 22821: -32,22 + 22822: -35,22 + 22823: -32,22 + 22824: -34,20 + 22825: -34,19 + 22826: -33,19 + 22827: -31,17 + 22828: -31,17 + 22829: -31,19 + 22830: -27,20 + 22831: -27,19 + 22832: -29,20 + 22833: -31,20 + 22834: -30,22 + 22835: -29,24 + 22836: -29,23 + 22837: -30,24 + 22838: -30,20 + 22839: -28,19 + 22840: -26,19 + 22841: -24,19 + 22842: -22,19 + 22843: -22,19 + 22844: -20,16 + 22845: -20,15 + 22846: -19,11 + 22847: -24,14 + 22848: -24,15 + 22849: -26,15 + 22850: -26,14 + 22851: -22,11 + 22852: -24,11 + 22853: -26,10 + 22854: -22,10 + 22855: -25,8 + 22856: -25,6 + 22857: -23,6 + 22858: -26,5 + 22859: -21,5 + 22860: -22,5 + 22861: -22,5 + 22862: -18,7 + 22863: -20,7 + 22864: -17,6 + 22865: -16,6 + 22866: -13,7 + 22867: -14,10 + 22868: -16,10 + 22869: -17,8 + 22870: -17,6 + 22871: -18,10 + 22872: -19,10 + 22873: -16,8 + 22874: -17,8 + 22875: -17,9 + 22876: -17,4 + 22877: -17,2 + 22878: -19,2 + 22879: -19,3 + 22880: -18,2 + 22881: -18,1 + 22882: -16,1 + 22883: -17,-2 + 22884: -17,-4 + 22885: -18,-5 + 22886: -20,-5 + 22887: -22,-4 + 22888: -22,-3 + 22889: -22,-2 + 22890: -19,-1 + 22891: -18,-1 + 22892: -23,0 + 22893: -17,-5 + 22894: -18,-8 + 22895: -17,-10 + 22896: -18,-11 + 22897: -18,-13 + 22898: -12,-4 + 22899: -14,-5 + 22900: -14,-3 + 22901: -12,-3 + 22902: -13,-4 + 22903: -14,-5 + 22904: -11,-3 + 22905: -13,-2 + 22906: -13,-4 + 22907: -12,-4 + 22908: -11,-3 + 22909: -10,-4 + 22910: -9,-5 + 22911: -10,-8 + 22912: -11,-9 + 22913: -11,-8 + 22914: -11,-7 + 22915: -13,-9 + 22916: -10,-9 + 22917: -9,-11 + 22918: -11,-12 + 22919: -14,-12 + 22920: -21,-15 + 22921: -22,-15 + 22923: -26,-16 + 22924: -28,-15 + 22925: -29,-14 + 22926: -30,-15 + 22927: -35,-18 + 22928: -34,-20 + 22929: -37,-19 + 22930: -39,-19 + 22931: -39,-21 + 22932: -36,-21 + 22933: -36,-21 + 22934: -36,-21 + 22935: -34,-20 + 22936: -30,-20 + 22937: -32,-20 + 22938: -37,-18 + 22939: -38,-17 + 22940: -38,-16 + 22941: -35,-16 + 22942: -40,-16 + 22943: -39,-13 + 22944: -43,-14 + 22945: -45,-14 + 22946: -47,-14 + 22947: -52,-14 + 22948: -52,-14 + 22949: -53,-16 + 22950: -57,-16 + 22951: -57,-16 + 22952: -59,-15 + 22953: -58,-13 + 22954: -56,-15 + 22955: -54,-20 + 22956: -57,-20 + 22957: -53,-19 + 22958: -56,-17 + 22959: -55,-16 + 22960: -54,-13 + 22961: -57,-11 + 22962: -53,-11 + 22963: -56,-11 + 22964: -51,-9 + 22965: -52,-7 + 22966: -53,-6 + 22967: -55,-7 + 22968: -52,-4 + 22969: -53,-4 + 22970: -53,-3 + 22971: -52,1 + 22972: -51,-1 + 22973: -51,-3 + 22974: -54,-5 + 22975: -55,-2 + 22976: -56,-2 + 22977: -56,-3 + 22978: -52,0 + 22979: -54,1 + 22980: -54,2 + 22981: -55,2 + 22982: -56,2 + 22983: -55,1 + 22984: -53,3 + 22985: -55,4 + 22986: -52,4 + 22987: -53,2 + 22988: -50,3 + 22989: -51,4 + 22990: -51,4 + 22991: -55,5 + 22992: -53,7 + 22993: -51,7 + 22994: -51,9 + 22995: -48,7 + 22996: -45,9 + 22997: -47,8 + 22998: -49,10 + 22999: -47,10 + 23000: -46,11 + 23001: -50,10 + 23002: -53,10 + 23003: -55,10 + 23004: -56,11 + 23005: -56,10 + 23006: -56,9 + 23007: -57,11 + 23008: -56,14 + 23009: -55,12 + 23010: -53,13 + 23011: -53,11 + 23012: -54,14 + 23013: -53,15 + 23014: -56,16 + 23015: -50,15 + 23016: -54,18 + 23017: -54,19 + 23018: -52,23 + 23019: -54,25 + 23020: -52,24 + 23021: -47,23 + 23022: -48,21 + 23023: -49,21 + 23024: -49,17 + 23025: -49,16 + 23026: -47,15 + 23027: -49,14 + 23028: -46,15 + 23029: -50,17 + 23030: -48,18 + 23031: -46,14 + 23032: -47,21 + 23033: -44,22 + 23034: -43,20 + 23035: -43,22 + 23036: -39,21 + 23037: -36,16 + 23038: -39,17 + 23039: -42,16 + 23040: -42,13 + 23041: -39,11 + 23042: -34,13 + 23043: -40,9 + 23044: -31,10 + 23045: -32,9 + 23046: -28,7 + 23047: -26,13 + 23048: -29,14 + 23049: -32,12 + 23050: -27,14 + 23051: -32,13 + 23052: -32,11 + 23053: -27,8 + 23054: -24,6 + 23055: -33,3 + 23056: -36,0 + 23057: -40,3 + 23058: -37,3 + 23059: -44,-3 + 23060: -44,-4 + 23061: -44,-8 + 23062: -46,-9 + 23063: -46,-8 + 23064: -43,-8 + 23065: -45,-8 + 23066: -46,-8 + 23067: -46,-9 + 23068: -46,-8 + 23069: -45,-9 + 23070: -45,-4 + 23071: -46,-4 + 23072: -43,-2 + 23073: -40,-3 + 23074: -35,-3 + 23243: 77,-41 + 23244: 79,-41 + 23245: 81,-41 + 23246: 81,-44 + 23247: 79,-45 + 23248: 77,-43 + 23249: 74,-43 + 23250: 74,-44 + 23251: 74,-41 + 23252: 71,-41 + 23253: 67,-41 + 23254: 67,-43 + 23255: 68,-45 + 23256: 68,-42 + 23257: 65,-44 + 23258: 67,-45 + 23259: 70,-45 + 23260: 70,-44 + 23261: 70,-43 + 23262: 72,-43 + 23263: 86,-44 + 23266: 87,-43 + 23267: 87,-44 + 23268: 89,-42 + 23269: 88,-41 + 23270: 90,-41 + 23271: 93,-41 + 23272: 94,-40 + 23273: 90,-40 + 23274: 89,-40 + 23275: 90,-39 + 23276: 92,-39 + 23277: 94,-40 + 23278: 93,-43 + 23279: 93,-45 + 23280: 92,-46 + 23281: 90,-46 + 23282: 88,-46 + 23283: 89,-47 + 23284: 93,-47 + 23285: 94,-45 + 23286: 95,-44 + 23287: 95,-42 + 23288: 94,-42 + 23289: 93,-44 + 23290: 92,-45 + 23291: 89,-45 + 23292: 89,-43 + 23293: 88,-41 + 23294: 93,-41 + 23295: 92,-44 + 23296: 95,-45 + 23297: 96,-42 + 23298: 95,-42 + 23299: 95,-43 - node: cleanable: True zIndex: 5 @@ -7455,15 +8228,11 @@ entities: 4904: 6,10 4905: 7,10 4906: 8,11 - 5024: -26,6 - 5058: -16,5 - 5060: -16,4 5100: -8,-11 5101: -8,-12 5110: -9,-18 5154: -9,-9 5155: -9,-8 - 5156: -14,-8 5214: 12,-18 5215: 12,-19 5218: 11,-18 @@ -7597,19 +8366,11 @@ entities: 6400: 2,-48 6401: 1,-48 6402: -23,-54 - 6519: -26,6 6531: -16,10 6532: -16,9 - 6533: -17,8 6534: -16,8 6535: -15,8 6536: -15,7 - 6537: -17,7 - 6542: -16,4 - 6543: -16,5 - 6545: -17,6 - 6546: -15,5 - 6547: -15,4 6780: 14,10 6781: 15,10 6783: 14,11 @@ -7640,22 +8401,6 @@ entities: 9206: 49,-19 9207: 48,-19 9208: 48,-18 - 9465: -30,3 - 9466: -31,2 - 9467: -26,11 - 9468: -27,11 - 9469: -27,10 - 9470: -27,9 - 9471: -26,9 - 9472: -26,10 - 9473: -25,10 - 9474: -25,11 - 9475: -27,12 - 9485: -27,12 - 9486: -28,12 - 9488: -27,9 - 9489: -26,9 - 9490: -26,10 10061: 23,-7 10062: 20,-5 10064: 16,-4 @@ -7748,14 +8493,6 @@ entities: 11500: 26,-38 11501: 26,-39 11502: 27,-39 - 11591: -30,0 - 11592: -30,0 - 11593: -30,2 - 11594: -30,4 - 11595: -31,4 - 11596: -26,6 - 11597: -26,7 - 11598: -25,9 11657: -5,-21 11658: -6,-21 11659: -8,-25 @@ -7785,19 +8522,6 @@ entities: 11700: -10,-9 11701: -9,-7 11853: 29,-5 - 11887: -34,4 - 11888: -34,6 - 11889: -33,7 - 11890: -33,6 - 11891: -33,8 - 11892: -33,9 - 11893: -33,11 - 11894: -34,13 - 11895: -34,14 - 11896: -33,14 - 11897: -33,13 - 11898: -32,13 - 11899: -31,17 11902: -29,19 11903: -27,19 11904: -24,19 @@ -7951,34 +8675,12 @@ entities: 14520: 29,-13 14524: 32,-8 14525: 32,-9 - 14549: -27,5 - 14550: -27,4 - 14551: -26,4 - 14766: -28,17 - 14767: -24,17 - 14768: -24,16 - 14769: -26,16 - 14770: -26,15 - 14771: -25,10 - 14772: -27,9 - 14773: -27,3 - 14774: -28,9 - 14775: -30,11 - 14782: -39,-4 - 14783: -39,-3 - 14784: -39,-2 - 14785: -41,-2 - 14791: -40,-2 14800: -20,16 14801: -20,19 14802: -22,19 14803: -20,18 - 14804: -27,17 14805: -26,19 - 14807: -31,18 - 14808: -30,16 14870: -18,-16 - 14871: -17,-3 14872: -8,-21 14873: -5,-22 14974: 33,3 @@ -8186,8 +8888,6 @@ entities: 18177: 8,25 18178: 4,24 18179: 4,23 - 18180: -18,-10 - 18181: -18,-9 18183: -18,-12 18184: -18,-14 18185: -18,-16 @@ -8510,90 +9210,11 @@ entities: 20681: 19,-27 20682: 19,-26 20683: 19,-25 - 21213: -35,-6 - 21214: -32,-5 - 21216: -34,-3 - 21217: -34,-1 - 21218: -35,-1 - 21219: -35,-3 - 21220: -30,-5 - 21221: -31,-6 - 21222: -30,-7 - 21223: -27,-10 - 21224: -31,-11 21225: -35,-11 - 21227: -35,-8 - 21228: -28,-11 - 21229: -26,-11 - 21230: -22,-10 - 21231: -20,-11 - 21232: -24,-8 - 21233: -24,-7 - 21234: -22,-7 - 21235: -20,-8 - 21236: -21,-8 - 21237: -21,-7 - 21238: -20,-6 - 21239: -21,-6 - 21240: -22,-6 - 21241: -22,-5 - 21242: -24,-7 - 21243: -22,-7 - 21244: -23,-7 - 21245: -23,-8 - 21246: -26,-7 - 21247: -26,-6 - 21248: -26,-5 - 21249: -25,-4 - 21250: -30,-1 - 21251: -33,-1 - 21252: -33,0 - 21253: -35,2 - 21254: -35,3 - 21255: -35,4 - 21256: -33,4 - 21257: -33,2 - 21258: -33,6 - 21259: -34,7 - 21260: -33,7 - 21261: -34,6 - 21262: -39,5 - 21263: -37,5 - 21264: -37,6 - 21265: -39,6 - 21266: -41,6 - 21267: -42,6 - 21268: -41,4 - 21269: -38,-1 - 21270: -37,-1 - 21271: -37,-2 - 21272: -37,-3 - 21273: -37,-4 - 21274: -37,-6 - 21275: -38,-2 - 21276: -39,-3 - 21277: -42,-5 - 21278: -42,-6 - 21279: -44,-6 - 21280: -44,-7 - 21281: -48,-8 - 21282: -47,-7 - 21283: -47,-6 - 21284: -47,-5 - 21285: -48,-7 - 21286: -49,-8 - 21287: -51,-9 - 21288: -52,-10 - 21289: -50,-9 - 21290: -48,-8 21291: -47,-19 21292: -48,-20 21293: -49,-20 21294: -48,-19 - 21295: -51,-17 - 21296: -52,-16 - 21297: -50,-16 - 21298: -49,-17 21299: -43,-22 21300: -37,-21 21301: -35,-21 @@ -8601,18 +9222,8 @@ entities: 21303: -33,-18 21304: -34,-17 21305: -34,-16 - 21306: -34,-13 - 21307: -34,-13 - 21308: -35,-14 - 21309: -28,-14 - 21310: -28,-14 - 21311: -26,-15 - 21312: -26,-14 - 21313: -25,-14 - 21314: -23,-14 21315: -26,-16 21316: -27,-17 - 21317: -26,-14 21318: -24,-17 21319: -21,-17 21320: -20,-18 @@ -8623,24 +9234,210 @@ entities: 21325: -18,-20 21326: -17,-19 21327: -16,-17 - 21361: -33,-10 - 21362: -32,-10 - 21363: -31,-10 - 21364: -31,-9 - 21365: -34,-9 - 21366: -34,-10 - 21367: -40,-5 - 21368: -40,2 - 21369: -41,3 - 21370: -43,3 - 21371: -42,3 - 21372: -42,4 + 23075: -45,-4 + 23076: -38,-3 + 23077: -40,-2 + 23078: -42,-3 + 23079: -35,-3 + 23081: -37,-10 + 23082: -32,-7 + 23083: -34,-9 + 23084: -33,-16 + 23085: -32,-16 + 23086: -35,-17 + 23087: -38,-19 + 23088: -40,-18 + 23089: -39,-16 + 23090: -43,-13 + 23091: -48,-13 + 23092: -54,-12 + 23093: -55,-8 + 23094: -54,-4 + 23095: -51,-1 + 23096: -51,2 + 23097: -54,7 + 23098: -52,11 + 23099: -48,13 + 23100: -46,13 + 23101: -48,17 + 23102: -52,19 + 23103: -54,20 + 23104: -47,23 + 23105: -49,24 + 23106: -46,23 + 23107: -40,22 + 23108: -41,22 + 23109: -36,22 + 23110: -39,26 + 23111: -38,26 + 23112: -36,21 + 23113: -36,21 + 23114: -33,24 + 23115: -33,27 + 23116: -34,23 + 23117: -30,21 + 23118: -25,20 + 23119: -22,19 + 23120: -19,21 + 23121: -17,19 + 23122: -17,17 + 23123: -20,15 + 23124: -18,14 + 23125: -12,14 + 23126: -14,11 + 23127: -16,7 + 23128: -18,2 + 23129: -17,-3 + 23130: -18,-7 + 23131: -18,-12 + 23132: -19,-15 + 23133: -19,-16 + 23134: -22,-16 + 23136: -28,-15 + 23137: -32,-17 + 23138: -28,-15 + 23139: -30,-16 + 23140: -29,-15 + 23141: -23,-18 + 23142: -20,-19 + 23143: -18,-20 + 23144: -16,-10 + 23145: -14,-7 + 23146: -19,-1 + 23147: -24,-3 + 23148: -26,-4 + 23149: -25,-1 + 23150: -25,-3 + 23151: -25,-3 + 23152: -26,-3 + 23153: -26,-2 + 23154: -29,-3 + 23155: -29,-3 + 23156: -31,-2 + 23157: -30,-2 + 23158: -28,-2 + 23159: -28,-2 + 23160: -31,-2 + 23161: -32,-2 + 23162: -30,-6 + 23163: -30,-8 + 23164: -29,-9 + 23165: -28,-9 + 23166: -26,-9 + 23167: -25,-9 + 23168: -25,-8 + 23169: -25,-6 + 23170: -33,-6 + 23171: -34,-4 + 23172: -36,-5 + 23173: -40,-4 + 23174: -40,-2 + 23175: -31,6 + 23176: -31,8 + 23177: -31,9 + 23178: -30,9 + 23179: -30,10 + 23180: -31,10 + 23181: -31,11 + 23182: -30,11 + 23183: -30,13 + 23184: -31,13 + 23185: -30,8 + 23186: -32,9 + 23187: -26,10 + 23188: -8,10 + 23189: -16,5 + 23349: 81,-43 + 23350: 81,-44 + 23351: 79,-45 + 23352: 75,-45 + 23353: 74,-45 + 23354: 71,-45 + 23355: 68,-45 + 23356: 67,-45 + 23357: 66,-43 + 23358: 67,-41 + 23359: 69,-42 + 23360: 69,-44 + 23361: 69,-41 + 23362: 72,-41 + 23363: 74,-41 + 23364: 74,-44 + 23365: 74,-45 + 23366: 75,-43 + 23368: 86,-43 + 23369: 88,-42 + 23370: 87,-44 + 23371: 86,-42 + 23372: 86,-42 + 23373: 88,-44 + 23374: 91,-45 + 23375: 93,-43 + 23376: 94,-42 + 23377: 95,-43 + 23378: 95,-45 + 23379: 96,-43 + 23380: 95,-41 + 23381: 94,-42 + 23382: 94,-44 + 23383: 94,-40 + 23384: 91,-40 + 23385: 89,-41 + 23386: 90,-46 + 23387: 92,-46 + 23388: 90,-53 + 23389: 90,-52 + 23390: 91,-52 + 23391: 88,-52 + 23392: 88,-54 + 23393: 87,-56 + 23394: 88,-55 + 23395: 86,-55 + 23396: 86,-56 + 23397: 91,-55 + 23398: 92,-54 + 23399: 93,-53 + 23400: 95,-53 + 23401: 96,-52 + 23402: 89,-51 + 23403: 87,-52 + 23404: 85,-51 + 23405: 84,-50 + 23406: 86,-56 + 23407: 85,-57 + 23408: 86,-55 + 23409: 85,-57 + 23410: 81,-60 + 23411: 82,-59 + 23412: 75,-65 + 23413: 79,-62 + 23414: 76,-64 + 23415: 76,-59 + 23416: 76,-58 + 23417: 76,-54 + 23418: 77,-54 + 23419: 79,-49 + 23420: 80,-47 + 23421: 79,-48 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 22004: -33,19 + 22005: -33,20 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 22094: -24.035429,-15.22077 - node: zIndex: 1 color: '#FFFFFFFF' id: FlowersBROne decals: - 20065: -22.965364,-15.975813 + 22012: -13.939735,8.862175 + 22031: -24.39704,-15.919676 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8669,12 +9466,13 @@ entities: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 20064: -24.143032,-15.975813 + 22030: -21.781158,-12.948862 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 12157: -1.8669538,-39.98398 + 22091: -27.80079,-14.917586 - node: color: '#FFFFFFFF' id: Flowersbr2 @@ -8692,6 +9490,12 @@ entities: id: Flowersbr2 decals: 18330: -11.69503,12.177545 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 22088: -27.17579,-14.698836 + 22092: -27.878916,-14.105087 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8721,6 +9525,7 @@ entities: id: Flowerspv2 decals: 324: -3.7796192,-40.04319 + 22027: -27,-13 - node: zIndex: 3 color: '#FFFFFFFF' @@ -8733,12 +9538,15 @@ entities: decals: 12156: -1.8773756,-39.973557 20060: -24.111767,-18.029324 + 22089: -27.17579,-13.698836 - node: zIndex: 1 color: '#FFFFFFFF' id: Flowerspv3 decals: 17792: 33.142105,-0.5791509 + 22014: -19.119297,3.9451323 + 22029: -23.073465,-15.064915 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8759,6 +9567,7 @@ entities: decals: 20063: -23.486456,-18.060593 20067: -18.984224,-16.788877 + 22028: -24.8556,-15.190002 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -8802,7 +9611,7 @@ entities: decals: 17790: 33.142105,-1.0273786 17791: 33.152527,-3.977344 - 20068: -23.694893,-15.934117 + 22013: -12.887131,8.47649 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8824,6 +9633,13 @@ entities: 15922: 12.004576,-11.999812 15924: 12.970793,-8.954393 15927: 11.821117,-10.006225 + 22090: -27.503916,-14.886336 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 22032: -19.86354,-12.959287 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale @@ -8841,6 +9657,8 @@ entities: 20936: -24,-44 20937: -26,-48 20938: -31,-50 + 22056: 50,-38 + 22057: 54,-38 - node: zIndex: 1 color: '#334E6DC8' @@ -8854,6 +9672,7 @@ entities: decals: 15061: -15,-57 15062: -15,-56 + 22025: -34,20 - node: color: '#43990996' id: FullTileOverlayGreyscale @@ -8946,33 +9765,55 @@ entities: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 11228: -28,13 - 11229: -27,13 - 11230: -26,13 - 11231: -25,13 11345: -21,-56 - 20750: -24,-7 - 20751: -24,-8 - 20752: -28,-8 - 20753: -28,-7 - 20764: -28,-5 - 20836: -33,-6 - 20837: -34,-6 - 20838: -35,-6 - 20839: -33,-4 - 20840: -32,-4 - 20841: -31,-4 - 20842: -30,-4 - 20843: -29,-4 - 20844: -33,0 - 20845: -33,-1 - 20846: -33,-2 - 20847: -33,-3 - 20848: -35,0 - 20957: -34,-8 - 20958: -35,-8 - 21349: -26,-9 - 21350: -24,-5 + 21574: -26,4 + 21575: -29,-1 + 21711: -47,-4 + 21712: -47,-3 + 21713: -47,-2 + 21714: -47,-1 + 21715: -46,-1 + 21716: -43,-1 + 21717: -43,-5 + 21753: -35,-11 + 21754: -40,-6 + 21755: -41,-6 + 21762: -42,-8 + 21763: -35,-7 + 21764: -31,-7 + 21765: -27,-4 + 21766: -27,-3 + 21767: -27,-2 + 21768: -33,-1 + 21769: -42,-4 + 21770: -42,-2 + 21819: -24,-2 + 21820: -24,-3 + 21821: -24,-4 + 21835: -40,0 + 21836: -38,0 + 21837: -37,0 + 21838: -41,3 + 21839: -41,2 + 21840: -40,2 + 21841: -39,2 + 21842: -38,2 + 21843: -37,2 + 21844: -36,2 + 21845: -36,3 + 21846: -36,4 + 21847: -37,4 + 21848: -38,4 + 21849: -39,4 + 21850: -40,4 + 21851: -41,4 + - node: + zIndex: 1 + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 21705: -47,-5 + 21706: -46,-5 - node: color: '#EFB34196' id: FullTileOverlayGreyscale @@ -9076,8 +9917,9 @@ entities: decals: 19737: -38.78265,-31.040363 20051: -24.028393,-17.987627 - 20052: -23.027897,-15.881998 20059: -18.994646,-15.75691 + 22017: -12.92351,8.535685 + 22040: -24.991083,-15.919676 - node: zIndex: 1 color: '#FFFFFFFF' @@ -9118,8 +9960,10 @@ entities: decals: 15677: 4.112058,-53.992317 19739: -38.45957,-29.93543 - 20055: -23.767847,-15.923693 20056: -22.746506,-17.99805 + 22015: -19.11408,3.955556 + 22016: -13.934429,8.806705 + 22042: -20.363789,-12.917591 - node: zIndex: 1 color: '#FFFFFFFF' @@ -9140,8 +9984,8 @@ entities: 15675: 4.257964,-52.251526 15676: 6.0400977,-51.21956 19749: -37.69688,-30.591555 - 20057: -24.122189,-15.871573 20058: -18.984224,-16.298954 + 22041: -21.041206,-12.8342 - node: zIndex: 1 color: '#FFFFFFFF' @@ -9155,6 +9999,11 @@ entities: 15674: 7.8534985,-53.022892 15739: -10.963169,12.20098 19740: -37.21937,-30.863157 + 22033: -24.39704,-15.805014 + 22038: -19.832275,-12.938438 + 22082: -23.987202,-15.511336 + 22084: -27.08204,-14.214461 + 22085: -27.95704,-14.261337 - node: zIndex: 1 color: '#FFFFFFFF' @@ -9180,6 +10029,8 @@ entities: 15678: 5.248039,-53.76299 15679: 7.009329,-51.344646 15735: -16.135044,15.48223 + 22086: -27.222666,-13.651961 + 22098: -23.879179,-15.111395 - node: zIndex: 1 color: '#FFFFFFFF' @@ -9218,6 +10069,15 @@ entities: id: Grasse1 decals: 15732: -16.18192,12.216605 + 22018: -13.8823185,6.9720993 + 22019: -12.881823,6.9720993 + 22020: -13.257009,8.765011 + 22021: -20.040503,3.9704046 + 22034: -24.866022,-15.117035 + 22050: -23.584135,-15.857133 + 22078: -27.862202,-14.933212 + 22079: -27.065327,-14.823837 + 22087: -27.691416,-13.933211 - node: zIndex: 1 color: '#FFFFFFFF' @@ -9228,6 +10088,7 @@ entities: 17964: 33.159508,-1.8261949 18310: -10.091294,12.147211 18311: -17.063503,16.796272 + 23722: -12.952391,7.8344154 - node: zIndex: 2 color: '#FFFFFFFF' @@ -9240,6 +10101,9 @@ entities: decals: 15736: -17.02567,15.935354 15748: -16.510044,14.154105 + 22035: -23.073465,-15.117035 + 22036: -27.033764,-12.948862 + 22049: -23.0422,-15.8988285 - node: zIndex: 1 color: '#FFFFFFFF' @@ -9249,6 +10113,7 @@ entities: 17798: 33.17337,-3.8209858 18312: -15.927523,16.295923 18324: -11.686554,16.324785 + 23721: -13.727379,7.9486465 - node: color: '#FFFFFFFF' id: Grasse3 @@ -9259,6 +10124,7 @@ entities: 15737: -11.744419,13.66973 17804: 33.12126,-4.1337028 17805: 33.11084,-0.29601222 + 22037: -21.833267,-12.938438 - node: zIndex: 1 color: '#FFFFFFFF' @@ -9276,6 +10142,9 @@ entities: decals: 10905: -10,-27 10906: -9,-27 + 21474: 78,-45 + 21475: 79,-45 + 21476: 80,-45 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -9306,6 +10175,11 @@ entities: id: HalfTileOverlayGreyscale decals: 19354: 22,22 + - node: + color: '#8D1C9996' + id: HalfTileOverlayGreyscale + decals: + 21395: -52,1 - node: zIndex: 1 color: '#8D1C9996' @@ -9354,19 +10228,24 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 20944: -26,-10 + 21558: -23,3 + 21559: -24,3 + 21560: -25,3 + 21756: -41,-7 + 21757: -40,-7 + 21758: -39,-7 + 21759: -38,-7 + 21760: -37,-7 + 21761: -36,-7 + 21797: -28,-8 + 21798: -27,-8 - node: zIndex: 1 color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 14572: -26,17 - 14573: -25,17 - 14574: -24,17 - 14577: -27,17 - 14578: -28,17 - 14579: -23,17 - 14580: -22,17 + 21994: -44,-4 + 21995: -45,-4 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale @@ -9383,6 +10262,9 @@ entities: 10901: -8,-23 10902: -10,-25 10903: -9,-25 + 21465: 78,-41 + 21466: 79,-41 + 21467: 80,-41 - node: zIndex: 1 color: '#334E6DC8' @@ -9457,17 +10339,17 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 20749: -26,-8 + 21552: -28,0 + 21553: -27,0 + 21554: -26,0 + 21570: -25,0 - node: zIndex: 1 color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 14581: -28,15 - 14582: -27,15 - 14583: -26,15 - 14584: -25,15 - 14585: -24,15 + 21996: -44,-2 + 21997: -45,-2 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -9478,6 +10360,9 @@ entities: id: HalfTileOverlayGreyscale270 decals: 10904: -8,-26 + 21471: 81,-42 + 21472: 81,-43 + 21473: 81,-44 - node: color: '#43990996' id: HalfTileOverlayGreyscale270 @@ -9519,6 +10404,14 @@ entities: 16321: -36,-24 16322: -36,-23 18573: 20,1 + - node: + color: '#8D1C9996' + id: HalfTileOverlayGreyscale270 + decals: + 21371: -53,-5 + 21372: -53,-4 + 21373: -53,-3 + 21374: -53,-2 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -9551,19 +10444,15 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 20742: -27,-5 - 20814: -35,-2 - 20815: -35,-3 - 20816: -35,-4 - 20818: -32,-7 - 20835: -32,-6 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 9328: -27,11 - 9335: -27,10 + 21741: -41,-9 + 21742: -41,-10 + 21743: -41,-11 + 21750: -38,-9 + 21751: -38,-10 + 21752: -38,-11 + 21799: -26,-7 + 21800: -26,-6 + 21813: -27,-6 - node: color: '#FA750096' id: HalfTileOverlayGreyscale270 @@ -9579,6 +10468,13 @@ entities: 16085: -32,-37 16086: -32,-36 16087: -32,-35 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 21468: 77,-42 + 21469: 77,-43 + 21470: 77,-44 - node: color: '#43990996' id: HalfTileOverlayGreyscale90 @@ -9626,6 +10522,11 @@ entities: 20914: 13,19 20915: 13,20 20916: 10,25 + 21390: -51,0 + 21391: -51,-1 + 21392: -51,-4 + 21393: -51,-5 + 21394: -51,-6 - node: zIndex: 1 color: '#A4610696' @@ -9657,16 +10558,19 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 20741: -25,-5 - 20819: -30,-6 - 20820: -30,-7 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 9329: -26,10 - 9330: -26,11 + 21744: -39,-9 + 21745: -39,-10 + 21746: -39,-11 + 21747: -36,-9 + 21748: -36,-10 + 21749: -36,-11 + 21795: -29,-6 + 21796: -29,-7 + 21812: -28,-6 + 21814: -25,-6 + 21816: -25,-7 + 22096: -22,2 + 22097: -22,1 - node: color: '#FA750096' id: HalfTileOverlayGreyscale90 @@ -9695,29 +10599,17 @@ entities: decals: 1411: -13,-45 - node: - angle: -1.5707963267948966 rad + angle: -3.141592653589793 rad color: '#DE3A3A96' id: LoadingAreaGreyscale decals: - 20798: -37,-1 + 21545: -30,5 - node: color: '#DE3A3A96' id: LoadingAreaGreyscale decals: - 20800: -31,-9 - - node: - zIndex: 1 - angle: 1.5707963267948966 rad - color: '#DE3A3A96' - id: LoadingAreaGreyscale - decals: - 21348: -35,-5 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: MiniTileWhiteInnerSw - decals: - 12373: -23,0 + 21544: -28,3 + 21546: -23,-1 - node: cleanable: True color: '#4B709CFF' @@ -9857,28 +10749,13 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 10862: -18,-5 - 10864: -18,-7 - 20736: -27,-3 - 20737: -27,-4 - 20939: -18,-10 - 20940: -18,-9 - 20941: -18,-8 - 20942: -19,-10 - 20943: -20,-10 - 20949: -27,-10 - 20950: -28,-10 - 20951: -29,-10 + 21801: -26,-8 - node: zIndex: 1 color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 9332: -26,10 - 9337: -25,11 - 9591: -18,-4 - 9592: -17,-4 - 9593: -17,-3 + 22001: -44,-3 - node: zIndex: 1 color: '#334E6DC8' @@ -9897,6 +10774,18 @@ entities: 18520: -33,-48 18521: -33,-49 18522: -33,-50 + - node: + color: '#3EB38896' + id: QuarterTileOverlayGreyscale180 + decals: + 21946: -16,-9 + 21947: -16,-8 + 21948: -16,-7 + 21950: -16,-5 + 21953: -16,-2 + 21954: -16,-1 + 21956: -16,1 + 21957: -15,1 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -10003,20 +10892,16 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 10304: 33,4 - 20743: -25,-6 - 20744: -25,-7 - 20745: -25,-8 - node: zIndex: 1 color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 9331: -27,11 - 12087: -28,10 14968: 33,3 14969: 33,2 14970: 33,1 14971: 33,5 + 22002: -45,-3 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale180 @@ -10179,21 +11064,12 @@ entities: 10301: 31,11 10302: 31,12 10303: 31,13 - 10861: -17,0 - 20746: -27,-6 - 20747: -27,-7 - 20748: -27,-8 - node: zIndex: 1 color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 9595: -17,1 - 9596: -17,2 - 9597: -17,3 - 9598: -17,4 - 9599: -17,5 - 9600: -17,6 + 22000: -45,-4 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale270 @@ -10303,18 +11179,17 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 20730: -25,-3 - 20731: -25,-4 - 20945: -25,-10 - 20946: -24,-10 - 20947: -23,-10 - 20948: -22,-10 + 21802: -29,-8 + - node: + zIndex: 1 + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 21998: -44,-2 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 2376: -16,-8 - 2378: -16,-9 2379: -16,-10 2380: -16,-11 2381: -16,-12 @@ -10323,23 +11198,11 @@ entities: 2386: -16,-19 2387: -16,-20 2388: -16,-21 - 2422: -15,-5 - 2423: -15,-4 - 2425: -15,-2 - 2427: -15,0 - 2428: -15,1 - 2429: -15,2 - 2430: -15,3 - 2431: -15,4 - 2432: -15,5 - 10866: -16,-7 - node: zIndex: 1 color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 9031: -15,-1 - 9032: -15,-3 17695: -16,-18 - node: color: '#FA750096' @@ -10360,6 +11223,12 @@ entities: 19525: -34,-41 19526: -35,-41 19527: -36,-41 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Remains + decals: + 21354: -54.898952,23.04161 - node: cleanable: True zIndex: 3 @@ -10421,7 +11290,6 @@ entities: color: '#FFFFFFFF' id: Rock07 decals: - 20071: -23.017473,-15.923693 20072: -22.902834,-18.029324 - node: zIndex: 1 @@ -10485,6 +11353,12 @@ entities: 17667: -32.25,-28.46875 17668: -37.25,-33.46875 17671: -37.25,-27.46875 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 21535: -27.02755,10.499338 - node: zIndex: 1 angle: 1.5707963267948966 rad @@ -10500,6 +11374,11 @@ entities: 16267: -45,-35 16270: -46,-36 18575: 18,3 + - node: + color: '#8D1C9996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 21387: -53,1 - node: zIndex: 1 color: '#A4610696' @@ -10524,6 +11403,11 @@ entities: decals: 16188: -26,-31 16281: -42,-39 + - node: + color: '#8D1C9996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 21389: -51,-7 - node: zIndex: 1 color: '#A4610696' @@ -10567,6 +11451,11 @@ entities: 16268: -43,-35 16269: -42,-36 18582: 22,3 + - node: + color: '#8D1C9996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 21388: -51,1 - node: zIndex: 1 color: '#A4610696' @@ -10579,6 +11468,11 @@ entities: decals: 11243: 27,-27 11251: 30,-25 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 22095: -22,3 - node: cleanable: True zIndex: 5 @@ -10591,11 +11485,17 @@ entities: color: '#FFFFFFFF' id: WarnBox decals: - 4261: -51,-13 10998: -4,-21 11062: -2,-21 - 15784: -40,-15 15896: 24,-11 + - node: + color: '#FFFFFFFF' + id: WarnBoxGreyscale + decals: + 21433: 86,-45 + 21434: 86,-41 + 21517: 79,-43 + 22052: 58,-38 - node: zIndex: 1 color: '#D381C996' @@ -10626,17 +11526,29 @@ entities: id: WarnCornerGreyscaleSE decals: 9806: 35,-27 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleSE + decals: + 21925: -32,-7 - node: zIndex: 1 color: '#D381C996' id: WarnCornerGreyscaleSW decals: 9799: 33,-27 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleSW + decals: + 21926: -34,-7 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 10285: -70,-15 + 21416: 88,-41 + 21526: 77,-45 + 21529: 66,-45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -10647,7 +11559,8 @@ entities: color: '#FFFFFFFF' id: WarnCornerNW decals: - 10286: -66,-15 + 21417: 94,-41 + 21524: 81,-45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -10658,7 +11571,9 @@ entities: color: '#FFFFFFFF' id: WarnCornerSE decals: - 10287: -70,-11 + 21415: 88,-45 + 21525: 77,-41 + 21528: 66,-41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -10669,7 +11584,8 @@ entities: color: '#FFFFFFFF' id: WarnCornerSW decals: - 10288: -66,-11 + 21418: 94,-45 + 21527: 81,-41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -10763,6 +11679,7 @@ entities: 10959: -4,-19 10962: -3,-19 10963: -2,-19 + 21432: 87,-41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -10786,6 +11703,7 @@ entities: 10958: -3,-19 10960: -4,-19 10961: -2,-19 + 21431: 95,-41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -10799,6 +11717,7 @@ entities: 10925: -13,-20 10926: -13,-18 10927: -11,-18 + 21429: 87,-45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -10812,6 +11731,7 @@ entities: decals: 10928: -11,-18 10947: -9,-18 + 21430: 95,-45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -10856,6 +11776,16 @@ entities: 10954: -3,-18 10955: -2,-18 20041: -47,-58 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 21530: 95,-43 + - node: + color: '#334E6DC8' + id: WarnFullGreyscale + decals: + 21488: 70,-43 - node: zIndex: 1 color: '#D381C996' @@ -10867,15 +11797,22 @@ entities: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 20795: -36,-5 - 20796: -36,-1 - 20797: -31,-8 + 21540: -28,4 + 21541: -30,4 + 21547: -23,0 - node: color: '#FFFFFFFF' id: WarnLineE decals: 10922: -13,-21 10923: -13,-19 + 21419: 87,-46 + 21420: 87,-40 + 21426: 88,-42 + 21427: 88,-43 + 21428: 88,-44 + 21531: -27,10 + 21532: -27,11 - node: zIndex: 1 color: '#FFFFFFFF' @@ -10893,17 +11830,18 @@ entities: 15692: -30,-62 15693: -30,-63 15694: -30,-64 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleE + decals: + 21486: 69,-43 + 22054: 53,-38 - node: zIndex: 1 color: '#D381C996' id: WarnLineGreyscaleE decals: 9809: 35,-26 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - decals: - 20793: -37,-5 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -10913,9 +11851,6 @@ entities: 15943: -46,-46 15944: -46,-47 20722: 10,17 - 21354: -38,-9 - 21355: -38,-10 - 21356: -38,-11 - node: cleanable: True zIndex: 1 @@ -10934,6 +11869,13 @@ entities: id: WarnLineGreyscaleN decals: 9804: 34,-25 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 21551: -30,3 + 21566: -26,3 + 21927: -29,-2 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -10972,7 +11914,11 @@ entities: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 20792: -31,-7 + 21538: -28,5 + 21548: -23,1 + 21567: -29,0 + 21573: -26,5 + 21924: -33,-7 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS @@ -11003,6 +11949,13 @@ entities: 20303: -3,-9 20304: -2,-9 20305: -1,-9 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleW + decals: + 21487: 71,-43 + 22053: 55,-38 + 22055: 51,-38 - node: zIndex: 1 color: '#D381C996' @@ -11013,7 +11966,10 @@ entities: color: '#DE3A3A96' id: WarnLineGreyscaleW decals: - 20794: -35,-1 + 21919: -30,-7 + 21920: -41,-2 + 21921: -41,-4 + 21923: -41,-8 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW @@ -11023,9 +11979,6 @@ entities: 15939: -46,-45 15940: -46,-47 20724: 12,17 - 21351: -36,-9 - 21352: -36,-10 - 21353: -36,-11 - node: cleanable: True zIndex: 1 @@ -11039,9 +11992,6 @@ entities: decals: 10916: -10,-18 10924: -12,-18 - 20872: -40,-8 - 20873: -39,-8 - 20874: -38,-8 - node: zIndex: 1 color: '#FFFFFFFF' @@ -11063,13 +12013,23 @@ entities: id: WarnLineS decals: 2106: -10,0 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 21421: 95,-46 + 21422: 95,-40 + 21423: 94,-42 + 21424: 94,-43 + 21425: 94,-44 + 21533: -27,10 + 21534: -27,11 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnLineS decals: 2335: 3,-23 - 4262: -62,-16 13016: -9,-21 13017: -9,-19 15857: -1,-20 @@ -11086,18 +12046,12 @@ entities: 9930: 6,26 10917: -10,-22 10921: -12,-22 - 20875: -40,-8 - 20876: -39,-8 - 20877: -38,-8 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnLineW decals: 2338: 4,-22 - 4263: -64,-10 - 4264: -62,-10 - 4265: -61,-10 15164: -2,-96 15165: -1,-96 15897: 24,-10 @@ -11374,19 +12328,8 @@ entities: 6314: -15,-35 6315: -19,-36 6316: -21,-35 - 7094: 52,-43 - 7109: 50,-41 - 7110: 51,-39 - 7111: 50,-38 - 7112: 50,-37 - 7113: 51,-37 - 7114: 51,-36 7115: 50,-36 7116: 52,-36 - 7117: 55,-39 - 7118: 56,-39 - 7119: 56,-41 - 7120: 56,-40 7475: 48,11 7476: 47,11 7477: 47,12 @@ -11613,6 +12556,31 @@ entities: 20169: 8,-12 20170: 7,-12 20171: 6,-12 + 23480: 78,-52 + 23481: 84,-49 + 23482: 86,-57 + 23483: 87,-56 + 23484: 82,-59 + 23485: 80,-61 + 23486: 78,-61 + 23487: 83,-58 + 23488: 78,-56 + 23489: 76,-58 + 23490: 75,-58 + 23538: 77,-41 + 23539: 81,-41 + 23571: -41,-2 + 23572: -36,-4 + 23573: -36,-5 + 23574: -38,-5 + 23575: -30,-7 + 23576: -38,1 + 23577: -36,2 + 23578: -40,3 + 23579: -39,5 + 23580: -42,4 + 23581: -36,8 + 23582: -39,11 - node: cleanable: True zIndex: 4 @@ -11662,12 +12630,6 @@ entities: 13247: 49,-46 13248: 48,-45 13249: 48,-43 - 13250: 50,-42 - 13251: 50,-43 - 13252: 56,-43 - 13253: 54,-43 - 13254: 56,-43 - 13255: 56,-42 13256: 49,-52 13257: 45,-52 13258: 44,-52 @@ -11676,65 +12638,6 @@ entities: 13261: 44,-53 13262: 47,-54 13263: 46,-54 - 13264: 74,-46 - 13265: 75,-47 - 13266: 76,-46 - 13267: 76,-46 - 13268: 77,-45 - 13269: 76,-45 - 13270: 72,-43 - 13271: 72,-42 - 13272: 71,-42 - 13273: 71,-41 - 13274: 68,-41 - 13275: 67,-42 - 13276: 67,-44 - 13277: 68,-44 - 13278: 68,-46 - 13279: 67,-45 - 13280: 67,-44 - 13281: 65,-43 - 13282: 65,-42 - 13283: 65,-41 - 13284: 65,-39 - 13285: 65,-39 - 13286: 64,-39 - 13287: 64,-40 - 13289: 59,-40 - 13291: 59,-43 - 13292: 58,-43 - 13293: 58,-42 - 13294: 58,-41 - 13295: 58,-40 - 13296: 59,-39 - 13297: 60,-43 - 13298: 59,-43 - 13299: 60,-44 - 13300: 56,-42 - 13301: 64,-43 - 13302: 63,-43 - 13303: 65,-43 - 13304: 72,-42 - 13305: 72,-41 - 13306: 73,-42 - 13307: 77,-42 - 13308: 78,-41 - 13309: 77,-41 - 13310: 76,-41 - 13311: 77,-43 - 13312: 78,-43 - 13313: 79,-42 - 13314: 79,-42 - 13315: 79,-43 - 13316: 79,-46 - 13317: 79,-46 - 13318: 79,-46 - 13319: 78,-46 - 13320: 76,-46 - 13321: 78,-45 - 13322: 84,-41 - 13323: 84,-40 - 13324: 83,-40 15684: -6,-95 15685: -7,-95 16367: 29,-39 @@ -11781,6 +12684,81 @@ entities: 20193: 8,5 20194: 9,5 20195: 10,6 + 23491: 76,-56 + 23492: 76,-54 + 23493: 77,-54 + 23494: 77,-55 + 23495: 78,-52 + 23496: 78,-50 + 23497: 80,-48 + 23498: 84,-50 + 23499: 84,-48 + 23500: 86,-51 + 23501: 88,-52 + 23502: 88,-52 + 23503: 88,-54 + 23504: 91,-55 + 23505: 92,-55 + 23506: 93,-53 + 23507: 90,-53 + 23508: 90,-52 + 23509: 95,-53 + 23510: 96,-51 + 23511: 96,-50 + 23512: 89,-54 + 23513: 87,-56 + 23514: 83,-57 + 23515: 85,-56 + 23516: 83,-58 + 23517: 82,-60 + 23518: 80,-61 + 23519: 80,-60 + 23520: 88,-47 + 23521: 89,-47 + 23522: 93,-47 + 23523: 94,-47 + 23524: 92,-46 + 23525: 87,-46 + 23526: 87,-40 + 23555: 77,-38 + 23556: 74,-38 + 23557: 68,-38 + 23558: 64,-38 + 23559: 61,-38 + 23560: 57,-39 + 23561: 53,-40 + 23562: 51,-40 + 23564: 51,-36 + 23565: 56,-39 + 23566: 51,-37 + 23567: 49,-39 + 23568: 49,-37 + 23569: 49,-36 + 23583: -31,10 + 23584: -28,11 + 23585: -25,15 + 23586: -25,14 + 23587: -26,14 + 23588: -24,13 + 23589: -20,15 + 23590: -20,17 + 23591: -20,19 + 23592: -24,21 + 23593: -25,19 + 23594: -29,20 + 23595: -34,22 + 23596: -38,23 + 23597: -42,23 + 23598: -43,22 + 23599: -44,21 + 23600: -48,21 + 23601: -48,19 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 21987: -34,20 - node: cleanable: True zIndex: 4 @@ -11788,10 +12766,6 @@ entities: id: burnt3 decals: 1670: 44,-53 - 7102: 53,-42 - 7104: 50,-43 - 7105: 50,-42 - 7106: 51,-41 13172: 61,-79 13173: 62,-79 13174: 62,-80 @@ -11834,12 +12808,8 @@ entities: 13524: 84,-24 13525: 86,-24 13526: 86,-24 - 13527: 77,-46 - 13528: 84,-41 - 13529: 91,-34 13530: 91,-33 13531: 93,-33 - 13532: 94,-34 13533: 95,-33 13534: 95,-32 13535: 94,-32 @@ -11908,6 +12878,58 @@ entities: 20199: 9,4 20200: 8,4 20201: 10,4 + 23527: 89,-39 + 23528: 92,-39 + 23529: 94,-39 + 23530: 91,-47 + 23540: 81,-45 + 23541: 75,-45 + 23542: 75,-44 + 23543: 66,-45 + 23544: 66,-41 + 23570: -46,-7 + 23602: -47,19 + 23603: -48,21 + 23604: -53,20 + 23605: -54,22 + 23606: -53,21 + 23607: -53,18 + 23608: -49,15 + 23609: -51,11 + 23610: -49,6 + 23611: -52,2 + 23612: -54,-2 + 23613: -52,-7 + 23614: -52,-10 + 23615: -55,-16 + 23616: -55,-16 + 23617: -54,-14 + 23618: -58,-14 + 23619: -59,-14 + 23620: -53,-14 + 23621: -54,-15 + 23622: -56,-14 + 23623: -56,-13 + 23624: -57,-13 + 23625: -53,-15 + 23626: -56,-20 + 23627: -54,-20 + 23628: -51,-13 + 23629: -47,-14 + 23630: -42,-14 + 23631: -42,-15 + 23632: -42,-12 + 23633: -40,-14 + 23634: -36,-17 + 23635: -37,-21 + 23636: -37,-20 + 23637: -34,-19 + 23638: -34,-15 + 23639: -33,-15 + 23640: -32,-15 + 23641: -32,-13 + 23642: -32,-14 + 23643: -23,-13 - node: cleanable: True zIndex: 4 @@ -11932,11 +12954,6 @@ entities: 13042: 92,-32 13043: 93,-33 13044: 91,-33 - 13045: 91,-34 - 13046: 90,-34 - 13047: 90,-35 - 13048: 91,-35 - 13049: 91,-36 13095: 67,-62 13096: 65,-63 13097: 65,-62 @@ -12033,24 +13050,6 @@ entities: 13223: 58,-57 13224: 51,-56 13225: 51,-55 - 13325: 76,-45 - 13326: 77,-45 - 13327: 75,-47 - 13328: 75,-46 - 13329: 74,-45 - 13330: 73,-45 - 13331: 73,-44 - 13332: 72,-44 - 13333: 72,-43 - 13334: 71,-42 - 13335: 71,-41 - 13336: 73,-41 - 13337: 74,-41 - 13338: 74,-42 - 13339: 76,-41 - 13340: 77,-41 - 13341: 78,-41 - 13342: 76,-42 13485: 85,-22 13486: 84,-22 13487: 84,-23 @@ -12282,13 +13281,6 @@ entities: 19812: 94,-18 19813: 94,-17 19814: 94,-16 - 19815: 79,-47 - 19816: 77,-46 - 19817: 79,-55 - 19818: 79,-55 - 19819: 80,-54 - 19820: 80,-52 - 19821: 80,-50 19822: 75,-59 19823: 74,-58 19824: 75,-57 @@ -12473,6 +13465,31 @@ entities: 20189: 9,4 20190: 10,4 20191: 10,5 + 23531: 96,-42 + 23532: 96,-41 + 23533: 96,-45 + 23534: 93,-44 + 23535: 89,-42 + 23536: 84,-44 + 23537: 77,-45 + 23545: 66,-41 + 23546: 70,-38 + 23547: 66,-38 + 23548: 64,-38 + 23549: 61,-38 + 23550: 63,-38 + 23551: 67,-38 + 23552: 73,-38 + 23553: 77,-38 + 23554: 79,-39 + 23644: -24,-13 + 23645: -20,-18 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 22008: -33,19 - node: cleanable: True zIndex: 5 @@ -12480,6 +13497,11 @@ entities: id: carp decals: 19314: 45,22 + - node: + color: '#FFFFFFFF' + id: cat + decals: + 21980: -30.243628,17.31938 - node: cleanable: True color: '#52B4E9FF' @@ -12507,6 +13529,11 @@ entities: id: face decals: 19308: 37,8 + - node: + color: '#FFFFFFFF' + id: heart + decals: + 21981: -30.821753,17.66313 - node: cleanable: True zIndex: 5 @@ -12573,12 +13600,6 @@ entities: id: splatter decals: 1153: 20.002747,-53.965397 - - node: - cleanable: True - color: '#B02E26C7' - id: splatter - decals: - 1391: 53.607197,-41.451954 - node: cleanable: True zIndex: 3 @@ -12595,65 +13616,80 @@ entities: decals: 15118: 19.952984,-53.45079 - node: + angle: 1.5707963267948966 rad color: '#FFFFFF4C' id: syndlogo1 decals: - 9318: -28,11 + 21710: -45,-5 - node: + zIndex: 1 + angle: 1.5707963267948966 rad color: '#FFFFFF4C' id: syndlogo10 decals: - 9315: -27,9 + 21697: -43,-4 - node: + angle: 1.5707963267948966 rad color: '#FFFFFF4C' id: syndlogo11 decals: - 9316: -26,9 + 21671: -43,-3 - node: + angle: 1.5707963267948966 rad color: '#FFFFFF4C' id: syndlogo12 decals: - 9317: -25,9 + 21670: -43,-2 - node: + zIndex: 1 + angle: 1.5707963267948966 rad color: '#FFFFFF4C' id: syndlogo2 decals: - 9325: -27,11 + 21700: -45,-4 - node: + zIndex: 1 + angle: 1.5707963267948966 rad color: '#FFFFFF4C' id: syndlogo3 decals: - 9322: -26,11 + 21698: -45,-3 - node: + angle: 1.5707963267948966 rad color: '#FFFFFF4C' id: syndlogo4 decals: - 9323: -25,11 + 21681: -45,-2 - node: + angle: 1.5707963267948966 rad color: '#FFFFFF4C' id: syndlogo5 decals: - 12088: -28,10 + 21709: -44,-5 - node: + angle: 1.5707963267948966 rad color: '#FFFFFF4C' id: syndlogo6 decals: - 9334: -27,10 + 21677: -44,-4 - node: + angle: 1.5707963267948966 rad color: '#FFFFFF4C' id: syndlogo7 decals: - 9320: -26,10 + 21678: -44,-3 - node: + angle: 1.5707963267948966 rad color: '#FFFFFF4C' id: syndlogo8 decals: - 9321: -25,10 + 21679: -44,-2 - node: + angle: 1.5707963267948966 rad color: '#FFFFFF4C' id: syndlogo9 decals: - 9326: -28,9 + 21703: -43,-5 - node: cleanable: True angle: 1.5707963267948966 rad @@ -12708,31 +13744,31 @@ entities: -4,-5: 0: 7645 -5,-4: - 0: 52431 - 1: 256 + 0: 56799 -4,-3: 0: 53727 -5,-3: - 0: 53246 + 0: 52428 + 1: 256 -4,-2: - 0: 45533 + 0: 53725 -5,-2: - 0: 56797 + 0: 64750 -4,-1: - 0: 15291 + 0: 7679 -5,-1: - 0: 65437 + 0: 65535 -4,0: - 0: 13243 + 0: 13241 2: 2048 -3,-4: 0: 65501 -3,-3: 0: 64767 -3,-2: - 0: 64767 + 0: 56575 -3,-1: - 0: 53247 + 0: 52735 -3,0: 0: 15 2: 13056 @@ -12961,20 +13997,20 @@ entities: -1,-17: 0: 1 -5,0: - 0: 43688 + 0: 52972 -4,1: 0: 62259 2: 128 -5,1: - 0: 43690 + 0: 65535 -4,2: 0: 65535 -5,2: - 0: 59563 + 0: 61167 -4,3: 0: 65535 -5,3: - 0: 43946 + 0: 48058 -4,4: 0: 21759 -3,1: @@ -13061,51 +14097,49 @@ entities: 0,6: 0: 36863 -8,-4: - 0: 15 - 1: 1792 - 2: 28672 + 0: 7647 -9,-4: - 0: 26239 - -8,-3: - 0: 32752 + 0: 61167 -9,-3: - 0: 65524 + 0: 55736 + -8,-3: + 1: 1064 + 0: 4096 -8,-2: - 0: 63346 + 0: 56828 -9,-2: - 0: 65030 + 0: 64761 -8,-1: - 0: 60943 + 0: 36863 -9,-1: - 0: 65262 + 0: 36863 -8,0: - 0: 26190 + 0: 56541 -7,-4: - 0: 12151 + 0: 61439 -7,-3: - 0: 20479 + 0: 61440 + 1: 64 -7,-2: - 0: 65279 + 0: 53247 -7,-1: - 0: 65518 + 0: 4095 -7,-5: 0: 61576 -7,0: - 0: 65359 + 0: 57343 -6,-4: - 0: 271 - 1: 3072 - 2: 49152 + 0: 65535 -6,-3: - 0: 4081 - -6,-2: - 0: 64767 + 0: 28672 -6,-1: - 0: 65422 + 0: 61439 -6,-5: 0: 64511 + -6,-2: + 0: 57446 -6,0: - 0: 60931 + 0: 30578 -8,-8: 0: 65535 -8,-9: @@ -13123,7 +14157,7 @@ entities: -9,-6: 0: 62071 -9,-5: - 0: 61423 + 0: 53247 -7,-8: 0: 65535 -7,-7: @@ -13228,56 +14262,59 @@ entities: -6,-18: 1: 40960 -9,0: - 0: 61006 - -8,1: - 0: 6 - 1: 25600 + 0: 53724 -9,1: - 0: 52302 + 0: 34969 + -8,1: + 0: 65508 -8,2: - 1: 2 - 0: 61056 - -9,2: - 0: 60668 - -8,3: - 0: 26396 - -9,3: - 0: 20207 - -8,4: - 0: 59238 - -7,1: 0: 65535 + -9,2: + 0: 63675 + -8,3: + 0: 65535 + -9,3: + 0: 32767 + -7,1: + 0: 56789 -7,2: - 0: 65524 + 0: 65489 -7,3: - 0: 62719 + 0: 65521 -7,4: - 0: 28927 - -6,2: - 0: 61224 - -6,3: - 0: 7182 + 0: 28943 -6,1: - 0: 3822 + 0: 49136 + -6,2: + 0: 30480 + -6,3: + 0: 4368 + 1: 17472 -6,4: - 0: 61567 - -9,4: - 0: 36590 + 0: 63233 + 1: 4 + -8,4: + 0: 18016 -8,5: - 0: 65327 + 0: 62925 + -9,4: + 0: 49271 -9,5: - 0: 62990 + 0: 65437 -8,6: - 0: 7 - 1: 1792 + 0: 29013 -9,6: - 1: 52288 + 0: 65497 -8,7: + 0: 1 + 2: 768 1: 4224 + -9,7: + 0: 12 + 1: 55296 + 2: 9728 -8,8: 1: 18163 - -9,7: - 1: 64716 -7,5: 0: 26159 -7,6: @@ -13327,59 +14364,49 @@ entities: -4,10: 1: 50 -12,-4: - 1: 3712 - 2: 57344 + 2: 1 + 1: 14 + 0: 3840 + -12,-5: + 2: 4401 + 1: 58048 -13,-4: - 0: 48896 - 2: 7 - 1: 8 + 0: 32627 -12,-3: - 0: 1 - 1: 12974 - -13,-3: - 0: 11 - 2: 59136 - 1: 6144 + 2: 1 + 0: 49152 + 1: 8 -12,-2: - 2: 9009 - 1: 2 - 0: 34952 - -13,-2: - 2: 140 - 1: 2114 - -12,-1: - 1: 19 - 0: 45056 - -13,-1: - 1: 24607 - -12,0: - 0: 65307 - -11,-4: - 1: 1841 - 2: 61440 - -11,-3: - 1: 15 - 0: 30208 - -11,-2: - 0: 65399 - -11,-1: - 0: 56591 - -11,-5: - 1: 8048 - -11,0: - 0: 65501 - -10,-4: - 0: 59647 - 2: 4096 - -10,-3: 1: 1 - 0: 30528 + 0: 60620 + -13,-2: + 1: 2048 + 0: 13105 + -12,-1: + 0: 61166 + -11,-4: + 0: 61420 + -11,-2: + 0: 14783 + -11,-1: + 0: 16319 + -11,-5: + 1: 4976 + 0: 32768 + -11,-3: + 0: 43682 + -11,0: + 0: 55729 + -10,-4: + 0: 60975 + -10,-3: + 0: 65520 -10,-2: - 0: 65527 + 0: 49663 -10,-1: - 0: 65535 - -10,0: - 0: 65535 + 0: 57343 + -10,-5: + 0: 15103 -12,-8: 0: 64991 -12,-9: @@ -13395,12 +14422,9 @@ entities: 0: 52701 -13,-6: 0: 3838 - -12,-5: - 2: 305 - 1: 4800 -13,-5: - 2: 60552 - 1: 4672 + 2: 34952 + 1: 1600 -11,-8: 0: 65535 -11,-7: @@ -13415,9 +14439,6 @@ entities: 0: 61695 -10,-6: 0: 61695 - -10,-5: - 0: 3087 - 1: 256 -10,-9: 0: 65287 -12,-12: @@ -13492,153 +14513,164 @@ entities: 1: 1024 -9,-21: 0: 64170 - -12,1: - 0: 47903 -13,0: - 0: 58432 - 1: 17 + 1: 8 + 0: 28979 + -12,0: + 1: 4352 + 0: 52416 + -12,1: + 1: 1536 -12,2: - 1: 3840 + 0: 30215 + -13,1: + 0: 62583 -13,2: - 1: 24098 - 2: 8192 - -12,3: - 2: 3840 - 1: 61440 + 0: 65423 -13,3: - 2: 43008 - 1: 21026 + 0: 63743 + -12,3: + 0: 30240 -12,4: - 2: 3855 - 1: 61440 + 0: 15234 -11,1: - 0: 56799 + 0: 12364 + 7: 128 -11,2: - 1: 4048 + 0: 53691 -11,3: - 1: 34560 - 2: 2048 - -10,1: - 0: 36863 - -10,2: - 1: 290 - 0: 32960 - -10,3: - 2: 49408 - 1: 4096 - 0: 140 + 0: 53725 -11,4: - 1: 15 + 0: 33245 + -10,0: + 0: 65520 + -10,1: + 0: 175 + 7: 16 + 8: 64 + -10,2: + 0: 60091 + -10,3: + 0: 65278 -10,4: - 1: 8471 - 2: 3816 + 0: 12526 -13,4: - 2: 43016 - 1: 21026 + 0: 64860 -12,5: - 2: 8207 - 1: 53760 + 0: 3067 -13,5: - 2: 8200 - 1: 53794 + 0: 63937 -12,6: - 2: 21872 - 1: 8706 + 1: 32910 -12,7: - 2: 85 - 1: 61986 - -12,8: - 1: 127 + 1: 34358 + 2: 2248 -13,7: - 1: 61986 - 2: 85 + 1: 1204 + 2: 57408 -11,5: - 1: 61952 - -11,7: - 1: 61440 - -11,8: - 1: 15 + 0: 45051 -11,6: - 1: 2 + 1: 12800 + 0: 34946 + -11,7: + 0: 240 + 1: 28672 -10,5: - 1: 5760 - 0: 57344 - -10,7: - 1: 61440 - -10,8: - 1: 15 + 0: 62459 -10,6: - 1: 6 - -13,8: - 1: 127 - -16,-4: - 0: 65327 - -16,-5: - 0: 61440 - 1: 145 - -16,-3: - 0: 65327 - -17,-4: - 0: 62578 - -16,-2: + 0: 30521 + -10,7: + 0: 10098 + -11,8: + 1: 32456 + -10,8: + 1: 248 + -12,9: + 1: 4040 + -13,9: + 1: 61428 + -11,9: + 1: 19 + -16,2: + 2: 337 + 1: 17572 + -17,2: + 2: 3855 1: 240 - -16,-1: - 1: 35071 - -17,-1: - 1: 255 - -15,-1: - 1: 9215 - -16,0: - 1: 34952 - -15,-4: - 0: 24576 - 1: 12 - -15,-3: - 1: 60416 - -15,-2: - 1: 55720 - -15,-5: - 1: 59561 + -16,3: + 2: 337 + 1: 17444 + -17,3: + 2: 3855 + 1: 240 + -16,1: + 1: 16384 + -16,4: + 1: 17572 + 2: 337 + -15,2: + 1: 52 + 0: 34816 -15,0: - 1: 8995 - -14,-4: - 0: 65280 - 1: 14 - -14,-3: - 0: 15 - 1: 43776 - -14,-2: - 1: 32682 - -14,-1: - 1: 19671 - -14,-5: - 1: 43695 - -14,0: 1: 17476 + -15,3: + 0: 136 + 1: 16384 + -15,4: + 1: 52468 + -15,-1: + 1: 34952 + -14,0: + 0: 51705 + -15,1: + 1: 2176 + -14,2: + 0: 57167 + -14,3: + 0: 62717 + -14,-1: + 2: 13107 + 0: 34952 + -14,1: + 0: 58094 + -14,4: + 0: 61160 + -13,-1: + 0: 13107 -16,-8: 1: 10098 -16,-7: - 1: 8995 + 1: 58147 -16,-6: - 1: 4083 - -17,-6: - 1: 36848 - -17,-5: - 1: 72 + 1: 11235 + -16,-5: + 1: 13091 + 2: 32768 + -16,-4: + 1: 8995 -16,-9: 1: 12848 -15,-8: 0: 32631 - -15,-6: - 1: 14196 -15,-7: - 1: 10240 + 1: 6144 + -15,-6: + 1: 6004 + -15,-4: + 0: 65534 + -15,-5: + 0: 2248 -14,-8: 0: 30711 -14,-7: 0: 7 -14,-6: 0: 4095 + -14,-5: + 0: 24575 + -14,-4: + 0: 65535 -16,-12: 1: 16369 -16,-13: @@ -13719,42 +14751,6 @@ entities: 0: 4096 -13,-15: 0: 22387 - -20,-4: - 1: 52428 - -20,-5: - 1: 52424 - -20,-3: - 1: 52428 - -20,-2: - 1: 2252 - -19,-4: - 1: 29184 - -19,-3: - 1: 31744 - -19,-2: - 1: 29596 - -19,-1: - 1: 206 - -18,-2: - 1: 39188 - -18,-1: - 1: 255 - -18,-4: - 0: 25792 - -18,-3: - 0: 196 - -17,-3: - 0: 628 - -17,-2: - 1: 34928 - -19,-5: - 1: 31891 - -19,-6: - 1: 32448 - -18,-6: - 1: 40944 - -18,-5: - 1: 1113 -21,-16: 1: 52460 -21,-17: @@ -14403,13 +15399,13 @@ entities: 1: 5456 12,-12: 0: 13107 - 1: 32768 + 1: 34816 12,-11: - 0: 56785 + 0: 8115 12,-10: - 0: 64989 + 0: 49083 12,-9: - 0: 16157 + 0: 16155 8,-15: 1: 1634 9,-14: @@ -14580,55 +15576,57 @@ entities: 13,-6: 0: 65523 13,-9: - 1: 16388 - 0: 257 + 1: 17408 + 0: 259 + 2: 128 14,-7: 0: 12336 14,-6: 1: 8224 13,-12: - 1: 64512 + 1: 7168 13,-11: - 0: 65520 + 0: 33552 + 1: 4 13,-10: - 0: 4607 - 1: 49152 + 0: 49075 13,-13: 0: 13075 1: 2176 - 14,-12: - 1: 36864 - 0: 238 14,-11: - 0: 4368 - 2: 19656 - 1: 32768 + 0: 28672 + 2: 34816 14,-10: - 0: 17 - 2: 2188 - 1: 64 + 0: 14129 + 2: 8 + 14,-9: + 1: 16 + 2: 8 + 14,-12: + 0: 238 14,-13: 0: 58606 15,-11: - 2: 401 - 1: 4710 + 1: 16657 + 2: 12288 15,-10: - 2: 48 - 1: 3784 + 1: 61489 + 2: 4038 + 15,-9: + 1: 1 15,-12: - 1: 8712 + 1: 61672 + 2: 3584 15,-13: - 1: 52832 + 2: 33824 + 1: 19008 16,-12: - 1: 8435 - 2: 35328 - 16,-11: - 2: 10937 - 1: 36864 - 0: 1024 + 2: 289 + 1: 4178 + 0: 49152 16,-10: - 2: 383 - 1: 2176 + 1: 61584 + 2: 3872 12,-17: 0: 34880 1: 162 @@ -14801,8 +15799,8 @@ entities: 21,-4: 2: 31612 21,-9: - 2: 36352 - 1: 231 + 2: 36356 + 1: 10 22,-8: 2: 57339 1: 4 @@ -14816,8 +15814,8 @@ entities: 1: 1 2: 65534 22,-9: - 2: 40908 - 1: 16434 + 2: 56673 + 1: 540 22,-4: 2: 15031 1: 8 @@ -14834,8 +15832,9 @@ entities: 1: 12288 0: 1024 23,-9: - 2: 60943 - 0: 144 + 2: 59973 + 1: 1176 + 0: 258 23,-4: 2: 4 1: 336 @@ -14873,7 +15872,7 @@ entities: 1: 3 24,-9: 2: 12545 - 0: 16 + 0: 530 4,-24: 1: 13107 4,-25: @@ -14893,40 +15892,51 @@ entities: 2: 1 8,-21: 1: 4352 + 16,-11: + 0: 52428 17,-12: - 2: 53248 - 1: 11980 + 0: 61440 + 1: 154 + 2: 100 17,-11: - 2: 40129 - 1: 24588 + 0: 62451 17,-10: - 1: 199 + 1: 57456 + 2: 3840 17,-13: - 1: 17476 + 2: 16384 + 1: 1092 18,-12: - 2: 61426 - 1: 4096 + 1: 116 + 0: 61440 + 2: 136 18,-11: - 2: 30591 + 0: 64732 18,-10: - 1: 112 + 2: 3840 + 1: 57584 18,-13: - 1: 51336 + 2: 32768 + 1: 2184 19,-12: - 2: 65520 + 1: 245 + 0: 57344 + 2: 8 19,-11: - 2: 32766 - 1: 32768 - 19,-13: - 1: 4096 + 0: 61422 19,-10: - 2: 2 + 1: 4112 + 2: 256 + 0: 3784 + 19,-13: + 1: 17065 + 2: 35910 20,-12: - 2: 4352 - 1: 8940 + 2: 49 + 0: 12288 + 1: 202 20,-11: - 2: 32784 - 1: 14790 + 0: 15291 11,-23: 2: 49152 11,-22: @@ -14988,54 +15998,23 @@ entities: 2: 57284 0,-22: 2: 29439 - -16,8: - 1: 204 - -16,7: - 1: 51336 - -15,8: - 1: 31 - -15,7: - 1: 61713 - -14,8: - 1: 127 - -14,7: - 1: 61986 - 2: 85 -3,9: 1: 18 - -16,2: - 1: 52360 - -16,3: - 1: 52364 - -16,4: - 1: 52364 - -16,1: - 1: 34952 - -15,1: - 1: 65315 - -15,2: - 1: 61713 - 2: 2048 - -15,3: - 1: 61713 - 2: 2056 - -15,4: - 1: 61713 - 2: 2056 - -14,1: - 1: 65348 - -14,2: - 2: 36608 - 1: 28672 - -14,3: - 2: 36623 - 1: 28672 - -14,4: - 2: 36623 - 1: 28672 - -13,1: - 1: 28944 - 0: 68 + -16,-3: + 1: 9187 + -15,-3: + 0: 2062 + 1: 8960 + -15,-2: + 1: 32772 + -14,-3: + 0: 53215 + -14,-2: + 0: 35065 + 2: 12288 + -13,-3: + 0: 13059 + 1: 128 0,-21: 2: 2 0,-25: @@ -15061,51 +16040,44 @@ entities: 2,-25: 2: 24576 1: 3329 + 24,-13: + 1: 4096 + 2: 257 + 24,-12: + 1: 34882 + 0: 4096 + 23,-12: + 0: 65392 + 24,-11: + 0: 4369 + 1: 34816 + 23,-11: + 0: 65262 + 23,-10: + 0: 127 24,-10: 2: 4096 - 23,-10: - 1: 52851 - 2: 12288 - -16,5: - 1: 52364 - -16,6: - 1: 34956 - -15,5: - 1: 46353 - 2: 16392 - -15,6: - 1: 4373 - -14,5: - 2: 8207 - 1: 53760 - -14,6: - 2: 21872 - 1: 8706 - -13,6: - 2: 21872 - 1: 8706 + 1: 584 20,-13: - 1: 12850 - 2: 257 - 20,-10: - 1: 35879 - 2: 8 + 1: 12560 21,-12: - 1: 52851 + 2: 19 + 0: 51200 21,-11: - 1: 264 - 2: 4096 + 0: 52701 + 21,-13: + 2: 29032 + 1: 2708 21,-10: - 2: 33 - 1: 29124 + 1: 20496 + 2: 8704 + 0: 8 22,-12: - 1: 4096 + 0: 65520 22,-11: - 1: 52851 + 0: 62451 22,-10: - 1: 52792 - 23,-11: - 1: 4096 + 0: 255 16,-21: 2: 48058 16,-14: @@ -15121,27 +16093,34 @@ entities: 17,-14: 1: 17612 18,-16: - 2: 62463 - 1: 3072 + 2: 64511 + 1: 1024 18,-15: 2: 45055 1: 20480 18,-14: - 1: 35226 + 1: 35090 + 2: 136 18,-17: 2: 63482 19,-16: - 1: 4352 + 2: 27475 + 1: 37920 19,-15: - 2: 273 - 0: 4096 - 1: 25088 + 2: 14111 + 1: 16416 19,-14: - 1: 2671 - 2: 128 - 20,-14: - 1: 12816 - 2: 256 + 2: 9015 + 1: 21568 + 19,-17: + 2: 4096 + 1: 256 + 20,-16: + 1: 8448 + 2: 4096 + 20,-15: + 2: 36071 + 1: 24 17,-20: 2: 34989 1: 22032 @@ -15168,8 +16147,6 @@ entities: 19,-18: 1: 4097 2: 34 - 19,-17: - 1: 256 16,-22: 1: 3168 2: 32768 @@ -15183,6 +16160,30 @@ entities: 1: 256 22,-3: 2: 37 + 21,-15: + 1: 37904 + 2: 25344 + 20,-14: + 1: 8 + 21,-14: + 2: 2255 + 1: 33824 + 22,-15: + 1: 4096 + 22,-14: + 2: 49553 + 1: 3076 + 22,-13: + 2: 533 + 1: 1408 + 23,-14: + 2: 45344 + 1: 16960 + 23,-13: + 1: 3924 + 2: 2 + 24,-14: + 1: 4096 -1,-26: 1: 24576 0,-26: @@ -15197,6 +16198,89 @@ entities: 1: 768 -20,-12: 1: 36848 + -17,4: + 2: 3855 + 1: 240 + -16,5: + 2: 337 + 1: 17572 + -17,5: + 2: 3855 + 1: 240 + -16,6: + 2: 337 + 1: 17444 + -17,6: + 2: 3855 + 1: 240 + -16,7: + 1: 1204 + 2: 57408 + -17,7: + 1: 1200 + 2: 57408 + -16,8: + 2: 43690 + 1: 17476 + -15,5: + 1: 35900 + -15,7: + 1: 1200 + 2: 57408 + -15,8: + 2: 43690 + 1: 17476 + -15,6: + 1: 8 + -14,7: + 1: 1204 + 2: 57408 + -14,5: + 0: 61166 + -14,6: + 1: 17440 + 0: 8 + -14,8: + 2: 43690 + 1: 17476 + -13,6: + 0: 3 + 1: 17536 + -13,8: + 2: 43690 + 1: 17476 + -18,4: + 1: 26615 + -18,5: + 1: 26615 + -18,6: + 1: 10231 + -18,7: + 1: 11131 + 2: 128 + -18,3: + 1: 26615 + -18,8: + 1: 12850 + -17,8: + 2: 43690 + 1: 17476 + -18,2: + 1: 26615 + -18,0: + 1: 25088 + -18,1: + 1: 26214 + -16,9: + 1: 61428 + -17,9: + 1: 61412 + -15,9: + 1: 61428 + -14,9: + 1: 61428 + -18,9: + 1: 32626 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -15303,10 +16387,41 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap + - type: ImplicitRoof - proto: AcousticGuitarInstrument entities: - uid: 10313 @@ -15314,141 +16429,6 @@ entities: - type: Transform pos: -9.451197,-24.49092 parent: 2 - - uid: 12113 - components: - - type: Transform - pos: -58.50044,23.5087 - parent: 2 -- proto: ActionToggleBlock - entities: - - uid: 5100 - components: - - type: Transform - parent: 8291 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 8291 - - uid: 22750 - components: - - type: Transform - parent: 3686 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 3686 - - uid: 23312 - components: - - type: Transform - parent: 23311 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 23311 - - uid: 23314 - components: - - type: Transform - parent: 23313 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 23313 -- proto: ActionToggleLight - entities: - - uid: 121 - components: - - type: Transform - parent: 88 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 88 - - uid: 494 - components: - - type: Transform - parent: 492 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 492 - - uid: 3732 - components: - - type: Transform - parent: 3731 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 3731 - - uid: 3807 - components: - - type: Transform - parent: 5765 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5765 - - uid: 4147 - components: - - type: Transform - parent: 4105 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 4105 - - uid: 5704 - components: - - type: Transform - parent: 16762 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 16762 - - uid: 5978 - components: - - type: Transform - parent: 5977 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5977 - - uid: 6113 - components: - - type: Transform - parent: 6098 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6098 - - uid: 7271 - components: - - type: Transform - parent: 1259 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 1259 - - uid: 9205 - components: - - type: Transform - parent: 212 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 212 - - uid: 10092 - components: - - type: Transform - parent: 10091 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 10091 - - uid: 13295 - components: - - type: Transform - parent: 15782 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 15782 - - uid: 19899 - components: - - type: Transform - parent: 19898 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 19898 - - uid: 20759 - components: - - type: Transform - parent: 15576 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 15576 - proto: AirAlarm entities: - uid: 29 @@ -15492,17 +16472,6 @@ entities: - 13168 - 14030 - 1809 - - uid: 81 - components: - - type: Transform - pos: -12.5,-5.5 - parent: 2 - - type: DeviceList - devices: - - 7482 - - 13609 - - 15394 - - 15393 - uid: 103 components: - type: MetaData @@ -15524,6 +16493,59 @@ entities: devices: - 14078 - 17441 + - uid: 1413 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 1953 + - 24089 + - 24119 + - uid: 1931 + components: + - type: MetaData + name: Genpop Entrance + - type: Transform + pos: -23.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 24036 + - 24104 + - 24081 + - 19647 + - 19643 + - 19645 + - 19644 + - 19642 + - 19646 + - uid: 2196 + components: + - type: MetaData + name: Atmos Locker Room + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 810 + - 2208 + - 23806 + - 24826 + - 24827 + - uid: 2237 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 23807 + - 1569 + - 7482 - uid: 2395 components: - type: Transform @@ -15568,17 +16590,6 @@ entities: - 11142 - 11143 - 11140 - - uid: 2670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-4.5 - parent: 2 - - type: DeviceList - devices: - - 23797 - - 23796 - - 23917 - uid: 3489 components: - type: MetaData @@ -15631,15 +16642,6 @@ entities: devices: - 1188 - 2752 - - uid: 6203 - components: - - type: Transform - pos: -30.5,5.5 - parent: 2 - - type: DeviceList - devices: - - 14619 - - 14622 - uid: 6547 components: - type: MetaData @@ -15711,21 +16713,21 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,7.5 + pos: -13.5,4.5 parent: 2 - type: DeviceList devices: - 5467 - 5390 - - 15180 - - 14385 - - 1258 - 11990 - 8445 - 23733 - - 19001 - - 14382 - - 14368 + - 23812 + - 23811 + - 23810 + - 24318 + - 24315 + - 24317 - uid: 8983 components: - type: Transform @@ -15754,15 +16756,6 @@ entities: - 21800 - 21801 - 21856 - - uid: 9278 - components: - - type: Transform - pos: -38.5,-13.5 - parent: 2 - - type: DeviceList - devices: - - 588 - - 23056 - uid: 9309 components: - type: Transform @@ -15819,14 +16812,11 @@ entities: - 14706 - 19008 - 19006 - - 15672 - 14711 - 14712 - 14710 - 15301 - 15302 - - 11591 - - 11574 - uid: 10105 components: - type: MetaData @@ -15841,20 +16831,6 @@ entities: - 21855 - 21854 - 21853 - - uid: 11625 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-8.5 - parent: 2 - - type: DeviceList - devices: - - 23789 - - 23798 - - 23788 - - 9141 - - 8468 - - 226 - uid: 11632 components: - type: Transform @@ -15883,16 +16859,6 @@ entities: - 8446 - 8436 - 6558 - - uid: 13089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,15.5 - parent: 2 - - type: DeviceList - devices: - - 2849 - - 15018 - uid: 13549 components: - type: Transform @@ -16128,13 +17094,11 @@ entities: - type: DeviceList devices: - 1585 - - 1569 - 15395 - 15396 - 15394 - 15393 - 23143 - - 23142 - uid: 13800 components: - type: Transform @@ -16267,22 +17231,6 @@ entities: - 12170 - 12169 - 14275 - - uid: 14595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 - parent: 2 - - type: DeviceList - devices: - - 14576 - - 14588 - - 14597 - - 14589 - - 14574 - - 89 - - 14878 - - 621 - uid: 14733 components: - type: Transform @@ -16355,8 +17303,7 @@ entities: devices: - 23143 - 1585 - - 1569 - - 23142 + - 23817 - 15394 - 15393 - 15396 @@ -16560,19 +17507,18 @@ entities: devices: - 14130 - 14144 - - uid: 16446 + - uid: 17162 components: - type: Transform - pos: -53.5,-10.5 + pos: 90.5,-41.5 parent: 2 - type: DeviceList devices: - - 16421 - - 16456 - - 16412 - - 16413 - - 13013 - - 16422 + - 18821 + - 18813 + - 18783 + - 18784 + - 18822 - uid: 17348 components: - type: Transform @@ -16666,71 +17612,28 @@ entities: - 15165 - 15164 - 17582 - - uid: 17615 + - uid: 18894 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-11.5 + pos: 69.5,-45.5 parent: 2 - type: DeviceList devices: - - 11574 - - 11591 - - 1192 - - 20477 - - 23787 - - 23753 - - 23759 - - 23755 - - 23800 - - 23799 - - uid: 18900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,7.5 - parent: 2 - - type: DeviceList - devices: - - 14621 - - 14620 - - 11185 - - 14675 - - 3201 - - 14468 - - uid: 19009 + - 18900 + - 18901 + - 18899 + - uid: 18902 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,2.5 + pos: 82.5,-43.5 parent: 2 - type: DeviceList devices: - - 14382 - - 14368 - - 19001 - - 14443 - - 8993 - - 11333 - - 19008 - - 19006 - - 15672 - - uid: 19627 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 2 - - type: DeviceList - devices: - - 11617 - - 2211 - - 12299 - - 1176 - - 20477 - - 1192 - - 23823 - - 23825 - - 23826 + - 18827 + - 18889 + - 18826 - uid: 20239 components: - type: MetaData @@ -16922,6 +17825,8 @@ entities: - 23581 - uid: 23739 components: + - type: MetaData + name: Atrium Air Alarm - type: Transform rot: 3.141592653589793 rad pos: -20.5,28.5 @@ -16930,45 +17835,162 @@ entities: devices: - 23735 - 23734 - - uid: 23916 + - uid: 24035 components: - type: MetaData - name: Perma Air Alarm + name: Sec/Atmos Hall - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-1.5 + pos: -19.5,0.5 parent: 2 - type: DeviceList devices: - - 2211 - - 11617 - - 1176 - - 12299 - - 23853 - - 23912 - - 23852 - - 23846 - - 23854 - - 23915 - - 23840 - - 23877 - - 23914 - - 23876 - - 23911 - - 23913 - - 23910 - - 23904 - - 23907 - - 23807 - - 23806 - - 23906 - - 23905 - - 23909 - - 23902 - - 23809 - - 23808 - - 23903 - - 23908 + - 24034 + - 24032 + - 24033 + - 23971 + - 23972 + - 19643 + - 19647 + - 23810 + - 23811 + - 23812 + - 19008 + - 19006 + - 959 + - 24826 + - 24827 + - uid: 24059 + components: + - type: MetaData + name: Warden + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 1633 + - 24073 + - 24061 + - 24060 + - 1657 + - 24107 + - uid: 24130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 19645 + - 19646 + - 19642 + - 19644 + - 24164 + - 24165 + - 24171 + - 24172 + - 24197 + - 24186 + - 24213 + - 24214 + - 24187 + - 24198 + - 24199 + - 24188 + - 24215 + - 24189 + - 24200 + - 24216 + - 24190 + - 24191 + - 24217 + - uid: 24238 + components: + - type: MetaData + name: Sec Main + - type: Transform + pos: -34.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 23993 + - 24002 + - 24233 + - 24228 + - 24229 + - 24234 + - 2524 + - 24095 + - uid: 24254 + components: + - type: MetaData + name: Armory + - type: Transform + pos: -38.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 24253 + - 24252 + - 24251 + - uid: 24290 + components: + - type: MetaData + name: Sec Lockers + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 24287 + - 24285 + - 24284 + - uid: 24291 + components: + - type: MetaData + name: Sec Backrooms + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 24273 + - 24288 + - 24269 + - 24286 + - 24272 + - 24274 + - uid: 24292 + components: + - type: MetaData + name: HoS' Air Alarm + - type: Transform + pos: -43.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 23335 + - 24275 + - 24289 + - uid: 24601 + components: + - type: MetaData + name: West Atrium Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 24629 + - 24627 + - 24617 + - 24628 + - 24467 + - 327 - proto: AirAlarmFreezer entities: - uid: 22282 @@ -16987,10 +18009,15 @@ entities: - type: Transform pos: -15.5,23.5 parent: 2 - - uid: 1949 + - uid: 2211 components: - type: Transform - pos: -11.5,-1.5 + pos: -11.5,-6.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: -34.5,-12.5 parent: 2 - uid: 7156 components: @@ -17002,11 +18029,6 @@ entities: - type: Transform pos: 35.5,7.5 parent: 2 - - uid: 8516 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 2 - uid: 14315 components: - type: Transform @@ -17042,6 +18064,16 @@ entities: - type: Transform pos: 8.5,-4.5 parent: 2 + - uid: 23809 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 24729 + components: + - type: Transform + pos: -42.5,20.5 + parent: 2 - proto: Airlock entities: - uid: 5908 @@ -17054,11 +18086,6 @@ entities: - type: Transform pos: 18.5,-45.5 parent: 2 - - uid: 9103 - components: - - type: Transform - pos: -48.5,3.5 - parent: 2 - uid: 11833 components: - type: Transform @@ -17074,43 +18101,45 @@ entities: - type: Transform pos: 11.5,-89.5 parent: 2 - - uid: 15168 + - uid: 16974 components: - type: Transform - pos: -47.5,1.5 + pos: -39.5,13.5 + parent: 2 + - uid: 16980 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 + - uid: 16981 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - uid: 16982 + components: + - type: Transform + pos: -36.5,10.5 parent: 2 - uid: 19243 components: - type: Transform pos: 7.5,-91.5 parent: 2 - - uid: 20422 - components: - - type: Transform - pos: -43.5,1.5 - parent: 2 - - uid: 20521 - components: - - type: Transform - pos: -43.5,5.5 - parent: 2 - - uid: 20770 - components: - - type: Transform - pos: -47.5,5.5 - parent: 2 - proto: AirlockArmoryGlassLocked entities: - - uid: 5379 + - uid: 10999 components: - type: Transform - pos: -23.5,-4.5 + rot: 1.5707963267948966 rad + pos: -30.5,-6.5 parent: 2 - - uid: 10065 +- proto: AirlockArmoryLocked + entities: + - uid: 11880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-8.5 + pos: -23.5,-8.5 parent: 2 - proto: AirlockAssemblyCargoGlass entities: @@ -17126,30 +18155,6 @@ entities: - type: Transform pos: 1.5,-85.5 parent: 2 -- proto: AirlockAssemblyMedicalGlass - entities: - - uid: 2365 - components: - - type: Transform - pos: 79.5,-43.5 - parent: 2 -- proto: AirlockAssemblySecurityGlass - entities: - - uid: 7786 - components: - - type: Transform - pos: 73.5,-47.5 - parent: 2 - - uid: 8926 - components: - - type: Transform - pos: 67.5,-45.5 - parent: 2 - - uid: 17919 - components: - - type: Transform - pos: 66.5,-41.5 - parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: - uid: 1582 @@ -17189,6 +18194,16 @@ entities: parent: 2 - proto: AirlockAtmosphericsLocked entities: + - uid: 1820 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 - uid: 6672 components: - type: Transform @@ -17218,6 +18233,40 @@ entities: - type: Transform pos: 3.5,-44.5 parent: 2 +- proto: AirlockBrigGlassLocked + entities: + - uid: 380 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 +- proto: AirlockBrigLocked + entities: + - uid: 335 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 11674 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 - proto: AirlockCaptainLocked entities: - uid: 9827 @@ -17387,36 +18436,21 @@ entities: - type: Transform pos: -20.5,-49.5 parent: 2 - - uid: 2755 + - uid: 793 components: - type: Transform - pos: -35.5,-15.5 + pos: 50.5,-37.5 parent: 2 - - uid: 5142 + - uid: 2126 components: - type: Transform - pos: -35.5,-14.5 + pos: 76.5,-41.5 parent: 2 - uid: 5300 components: - type: Transform pos: -30.5,-49.5 parent: 2 - - uid: 6962 - components: - - type: Transform - pos: -64.5,-12.5 - parent: 2 - - uid: 6985 - components: - - type: Transform - pos: -62.5,-14.5 - parent: 2 - - uid: 8586 - components: - - type: Transform - pos: -62.5,-10.5 - parent: 2 - uid: 9390 components: - type: Transform @@ -17427,6 +18461,16 @@ entities: - type: Transform pos: -23.5,-43.5 parent: 2 + - uid: 16587 + components: + - type: Transform + pos: 54.5,-37.5 + parent: 2 + - uid: 17619 + components: + - type: Transform + pos: 70.5,-42.5 + parent: 2 - proto: AirlockDetectiveLocked entities: - uid: 669 @@ -17447,6 +18491,11 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-14.5 parent: 2 + - uid: 5020 + components: + - type: Transform + pos: -38.5,28.5 + parent: 2 - uid: 9257 components: - type: Transform @@ -17525,11 +18574,6 @@ entities: - type: Transform pos: 1.5,-24.5 parent: 2 - - uid: 6699 - components: - - type: Transform - pos: -30.5,21.5 - parent: 2 - uid: 6939 components: - type: Transform @@ -17560,6 +18604,11 @@ entities: - type: Transform pos: 9.5,-20.5 parent: 2 + - uid: 10796 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 - uid: 11394 components: - type: Transform @@ -17570,6 +18619,11 @@ entities: - type: Transform pos: -6.5,-20.5 parent: 2 + - uid: 12490 + components: + - type: Transform + pos: -47.5,15.5 + parent: 2 - uid: 12754 components: - type: Transform @@ -17580,10 +18634,10 @@ entities: - type: Transform pos: -8.5,-88.5 parent: 2 - - uid: 15014 + - uid: 14551 components: - type: Transform - pos: -19.5,14.5 + pos: -39.5,24.5 parent: 2 - proto: AirlockEVAGlassLocked entities: @@ -17674,11 +18728,11 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-74.5 parent: 2 - - uid: 21932 + - uid: 16353 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,12.5 + pos: -53.5,-16.5 parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: @@ -17852,52 +18906,52 @@ entities: - InputB - proto: AirlockExternalGlassCommandLocked entities: - - uid: 97 + - uid: 16561 components: - type: Transform - pos: -38.5,-12.5 + pos: 58.5,-40.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5124: + 16847: - - DoorStatus - DoorBolt - - uid: 498 + - uid: 16847 components: - type: Transform - pos: -49.5,-13.5 + pos: 56.5,-39.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 617: + 16561: - - DoorStatus - DoorBolt - - uid: 617 + - uid: 24735 components: - type: Transform - pos: -47.5,-11.5 + pos: 79.5,-39.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 498: + 24736: - - DoorStatus - DoorBolt - - uid: 5124 + - uid: 24736 components: - type: Transform - pos: -36.5,-13.5 + pos: 77.5,-37.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 97: + 24735: - - DoorStatus - DoorBolt - proto: AirlockExternalGlassEngineeringLocked @@ -17928,6 +18982,30 @@ entities: 73: - - DoorStatus - DoorBolt + - uid: 5064 + components: + - type: Transform + pos: -40.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5076: + - - DoorStatus + - DoorBolt + - uid: 5076 + components: + - type: Transform + pos: -43.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5064: + - - DoorStatus + - DoorBolt - uid: 8794 components: - type: Transform @@ -17952,19 +19030,6 @@ entities: 8794: - - DoorStatus - DoorBolt - - uid: 8924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,23.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 17960: - - - DoorStatus - - DoorBolt - uid: 16736 components: - type: Transform @@ -17991,18 +19056,6 @@ entities: 16736: - - DoorStatus - DoorBolt - - uid: 17960 - components: - - type: Transform - pos: -32.5,23.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 8924: - - - DoorStatus - - DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 294 @@ -18172,19 +19225,11 @@ entities: 21929: - - DoorStatus - DoorBolt - - uid: 11974 + - uid: 13100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,9.5 + pos: -53.5,1.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 22090: - - - DoorStatus - - DoorBolt - uid: 13406 components: - type: Transform @@ -18233,6 +19278,12 @@ entities: 13550: - - DoorStatus - DoorBolt + - uid: 16239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,0.5 + parent: 2 - uid: 19896 components: - type: Transform @@ -18287,18 +19338,6 @@ entities: 938: - - DoorStatus - DoorBolt - - uid: 22090 - components: - - type: Transform - pos: -37.5,9.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 11974: - - - DoorStatus - - DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 12786 @@ -18381,6 +19420,12 @@ entities: invokeCounter: 3 - proto: AirlockExternalGlassShuttleEscape entities: + - uid: 16270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-18.5 + parent: 2 - uid: 17705 components: - type: Transform @@ -18389,12 +19434,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - uid: 22077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,12.5 - parent: 2 - uid: 22093 components: - type: Transform @@ -18583,6 +19622,13 @@ entities: - InputA - type: DeviceLinkSink invokeCounter: 1 +- proto: AirlockFreezer + entities: + - uid: 814 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 - proto: AirlockFreezerLocked entities: - uid: 2608 @@ -18602,6 +19648,24 @@ entities: - type: Transform pos: 49.5,-57.5 parent: 2 + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-5.5 + parent: 2 + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-5.5 + parent: 2 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 2 - uid: 110 components: - type: Transform @@ -18617,16 +19681,38 @@ entities: - type: Transform pos: 32.5,-15.5 parent: 2 + - uid: 804 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 - uid: 882 components: - type: Transform pos: 16.5,-34.5 parent: 2 + - uid: 909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 2 - uid: 970 components: - type: Transform pos: 9.5,-54.5 parent: 2 + - uid: 974 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 2 - uid: 1015 components: - type: Transform @@ -18635,17 +19721,18 @@ entities: - uid: 1018 components: - type: Transform - pos: -17.5,-1.5 + rot: 3.141592653589793 rad + pos: -23.5,-3.5 parent: 2 - uid: 1023 components: - type: Transform pos: 10.5,-54.5 parent: 2 - - uid: 1144 + - uid: 1220 components: - type: Transform - pos: -14.5,4.5 + pos: -20.5,-17.5 parent: 2 - uid: 2202 components: @@ -18667,6 +19754,11 @@ entities: - type: Transform pos: 31.5,16.5 parent: 2 + - uid: 2720 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 - uid: 3024 components: - type: Transform @@ -18767,12 +19859,6 @@ entities: - type: Transform pos: -8.5,-54.5 parent: 2 - - uid: 7699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-9.5 - parent: 2 - uid: 8677 components: - type: Transform @@ -18857,32 +19943,33 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-21.5 parent: 2 - - uid: 11623 - components: - - type: Transform - pos: -16.5,4.5 - parent: 2 - uid: 14539 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-38.5 parent: 2 - - uid: 15351 + - uid: 15880 components: - type: Transform - pos: -17.5,-0.5 - parent: 2 - - uid: 15392 - components: - - type: Transform - pos: -15.5,4.5 + rot: -1.5707963267948966 rad + pos: -52.5,21.5 parent: 2 - uid: 16220 components: - type: Transform pos: 54.5,-54.5 parent: 2 + - uid: 16275 + components: + - type: Transform + pos: -49.5,23.5 + parent: 2 + - uid: 16295 + components: + - type: Transform + pos: -52.5,16.5 + parent: 2 - uid: 16994 components: - type: Transform @@ -18908,12 +19995,6 @@ entities: - type: Transform pos: 31.5,-15.5 parent: 2 - - uid: 20790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-10.5 - parent: 2 - uid: 21434 components: - type: Transform @@ -18966,12 +20047,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-21.5 parent: 2 - - uid: 22528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-21.5 - parent: 2 - uid: 22529 components: - type: Transform @@ -19026,6 +20101,26 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-40.5 parent: 2 + - uid: 23854 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 23855 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 23856 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 24468 + components: + - type: Transform + pos: -24.5,-21.5 + parent: 2 - proto: AirlockGlassShuttle entities: - uid: 3910 @@ -19081,10 +20176,10 @@ entities: parent: 2 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 7950 + - uid: 11051 components: - type: Transform - pos: -23.5,10.5 + pos: -43.5,0.5 parent: 2 - proto: AirlockHydroponicsLocked entities: @@ -19170,178 +20265,6 @@ entities: - type: Transform pos: -9.5,-55.5 parent: 2 -- proto: AirlockMaintCommonLocked - entities: - - uid: 346 - components: - - type: Transform - pos: 17.5,-7.5 - parent: 2 - - uid: 347 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 2 - - uid: 2398 - components: - - type: Transform - pos: -20.5,-27.5 - parent: 2 - - uid: 2633 - components: - - type: Transform - pos: -33.5,-11.5 - parent: 2 - - uid: 2643 - components: - - type: Transform - pos: -26.5,-12.5 - parent: 2 - - uid: 2654 - components: - - type: Transform - pos: -10.5,21.5 - parent: 2 - - uid: 2761 - components: - - type: Transform - pos: -24.5,-16.5 - parent: 2 - - uid: 3286 - components: - - type: Transform - pos: -11.5,-35.5 - parent: 2 - - uid: 3288 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 2 - - uid: 3497 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 2 - - uid: 5444 - components: - - type: Transform - pos: 39.5,16.5 - parent: 2 - - uid: 5485 - components: - - type: Transform - pos: -13.5,19.5 - parent: 2 - - uid: 5685 - components: - - type: Transform - pos: 18.5,10.5 - parent: 2 - - uid: 5965 - components: - - type: Transform - pos: 17.5,-51.5 - parent: 2 - - uid: 6575 - components: - - type: Transform - pos: 16.5,4.5 - parent: 2 - - uid: 6917 - components: - - type: Transform - pos: 21.5,8.5 - parent: 2 - - uid: 8360 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 2 - - uid: 10143 - components: - - type: Transform - pos: -17.5,11.5 - parent: 2 - - uid: 10974 - components: - - type: Transform - pos: -40.5,-20.5 - parent: 2 - - uid: 11221 - components: - - type: Transform - pos: 5.5,-42.5 - parent: 2 - - uid: 13217 - components: - - type: Transform - pos: 18.5,-57.5 - parent: 2 - - uid: 13337 - components: - - type: Transform - pos: 29.5,22.5 - parent: 2 - - uid: 13338 - components: - - type: Transform - pos: 29.5,21.5 - parent: 2 - - uid: 13662 - components: - - type: Transform - pos: 35.5,13.5 - parent: 2 - - uid: 13726 - components: - - type: Transform - pos: 4.5,-46.5 - parent: 2 - - uid: 13807 - components: - - type: Transform - pos: 21.5,-57.5 - parent: 2 - - uid: 13809 - components: - - type: Transform - pos: 24.5,-57.5 - parent: 2 - - uid: 16011 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 2 - - uid: 16200 - components: - - type: Transform - pos: -19.5,24.5 - parent: 2 - - uid: 17975 - components: - - type: Transform - pos: 30.5,18.5 - parent: 2 - - uid: 18979 - components: - - type: Transform - pos: 34.5,6.5 - parent: 2 - - uid: 20394 - components: - - type: Transform - pos: 12.5,-57.5 - parent: 2 - - uid: 21405 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 2 - - uid: 21406 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 2 - proto: AirlockMaintDetectiveLocked entities: - uid: 7373 @@ -19390,6 +20313,16 @@ entities: - type: Transform pos: 46.5,-12.5 parent: 2 + - uid: 346 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 - uid: 432 components: - type: Transform @@ -19400,20 +20333,55 @@ entities: - type: Transform pos: 46.5,-40.5 parent: 2 + - uid: 648 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 - uid: 2261 components: - type: Transform pos: 23.5,-18.5 parent: 2 + - uid: 2398 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: -32.5,21.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 + - uid: 3286 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 2 - uid: 3289 components: - type: Transform pos: 45.5,-14.5 parent: 2 - - uid: 4922 + - uid: 3497 components: - type: Transform - pos: 49.5,-36.5 + pos: -12.5,-25.5 parent: 2 - uid: 5023 components: @@ -19425,16 +20393,51 @@ entities: - type: Transform pos: 47.5,-32.5 parent: 2 + - uid: 5444 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 5485 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 - uid: 5693 components: - type: Transform pos: 26.5,-55.5 parent: 2 + - uid: 5965 + components: + - type: Transform + pos: 17.5,-51.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 - uid: 8358 components: - type: Transform pos: 32.5,-54.5 parent: 2 + - uid: 8360 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 - uid: 9046 components: - type: Transform @@ -19455,11 +20458,56 @@ entities: - type: Transform pos: 29.5,-3.5 parent: 2 + - uid: 10974 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 2 + - uid: 13217 + components: + - type: Transform + pos: 18.5,-57.5 + parent: 2 + - uid: 13337 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 - uid: 13374 components: - type: Transform pos: 28.5,-14.5 parent: 2 + - uid: 13662 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - uid: 13807 + components: + - type: Transform + pos: 21.5,-57.5 + parent: 2 + - uid: 13809 + components: + - type: Transform + pos: 24.5,-57.5 + parent: 2 - uid: 14170 components: - type: Transform @@ -19470,6 +20518,41 @@ entities: - type: Transform pos: 48.5,-27.5 parent: 2 + - uid: 16011 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 16200 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 16358 + components: + - type: Transform + pos: -26.5,21.5 + parent: 2 + - uid: 16366 + components: + - type: Transform + pos: -48.5,-13.5 + parent: 2 + - uid: 16367 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 16488 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 16504 + components: + - type: Transform + pos: -53.5,-6.5 + parent: 2 - uid: 16954 components: - type: Transform @@ -19480,6 +20563,41 @@ entities: - type: Transform pos: -35.5,-48.5 parent: 2 + - uid: 17781 + components: + - type: Transform + pos: 50.5,-41.5 + parent: 2 + - uid: 17975 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 18979 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 19652 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - uid: 20394 + components: + - type: Transform + pos: 12.5,-57.5 + parent: 2 + - uid: 21405 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 21406 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 2 - uid: 22285 components: - type: Transform @@ -19536,15 +20654,15 @@ entities: parent: 2 - proto: AirlockMaintSecLocked entities: - - uid: 2378 + - uid: 11061 components: - type: Transform - pos: -20.5,16.5 + pos: -32.5,-11.5 parent: 2 - - uid: 13088 + - uid: 11965 components: - type: Transform - pos: -33.5,5.5 + pos: -42.5,-9.5 parent: 2 - proto: AirlockMaintServiceLocked entities: @@ -19823,22 +20941,29 @@ entities: parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 676 + - uid: 11075 components: - type: Transform - pos: -27.5,-4.5 + rot: 3.141592653589793 rad + pos: -34.5,-6.5 parent: 2 -- proto: AirlockSecurityLawyerGlassLocked - entities: - - uid: 170 + - uid: 11343 components: - type: Transform - pos: -21.5,-0.5 + rot: -1.5707963267948966 rad + pos: -41.5,-1.5 parent: 2 - - uid: 14812 + - uid: 11368 components: - type: Transform - pos: -21.5,-1.5 + rot: -1.5707963267948966 rad + pos: -41.5,-3.5 + parent: 2 + - uid: 11957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-7.5 parent: 2 - proto: AirlockSecurityLawyerLocked entities: @@ -19849,36 +20974,16 @@ entities: parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 199 + - uid: 414 components: - type: Transform - pos: -25.5,1.5 - parent: 2 - - uid: 200 - components: - - type: Transform - pos: -25.5,8.5 - parent: 2 - - uid: 272 - components: - - type: Transform - pos: -29.5,1.5 - parent: 2 - - uid: 714 - components: - - type: Transform - pos: -33.5,1.5 + pos: -32.5,-7.5 parent: 2 - uid: 1145 components: - type: Transform pos: 63.5,-77.5 parent: 2 - - uid: 14485 - components: - - type: Transform - pos: -25.5,14.5 - parent: 2 - proto: AirlockServiceGlassLocked entities: - uid: 3745 @@ -19963,14 +21068,6 @@ entities: parent: 2 - proto: AirSensor entities: - - uid: 89 - components: - - type: Transform - pos: -22.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14595 - uid: 151 components: - type: Transform @@ -19979,14 +21076,6 @@ entities: - type: DeviceNetwork deviceLists: - 7632 - - uid: 226 - components: - - type: Transform - pos: -29.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11625 - uid: 634 components: - type: Transform @@ -20021,14 +21110,14 @@ entities: - type: DeviceNetwork deviceLists: - 13665 - - uid: 1258 + - uid: 1657 components: - type: Transform - pos: -15.5,7.5 + pos: -21.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8606 + - 24059 - uid: 1723 components: - type: Transform @@ -20047,6 +21136,14 @@ entities: - 14795 - 15139 - 58 + - uid: 2524 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24238 - uid: 2591 components: - type: Transform @@ -20109,14 +21206,6 @@ entities: - type: DeviceNetwork deviceLists: - 14915 - - uid: 8993 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19009 - uid: 9311 components: - type: Transform @@ -20166,14 +21255,6 @@ entities: deviceLists: - 2583 - 14795 - - uid: 11185 - components: - - type: Transform - pos: -25.5,3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18900 - uid: 11990 components: - type: Transform @@ -20182,14 +21263,6 @@ entities: - type: DeviceNetwork deviceLists: - 8606 - - uid: 13013 - components: - - type: Transform - pos: -60.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16446 - uid: 13168 components: - type: Transform @@ -20329,14 +21402,6 @@ entities: deviceLists: - 15331 - 15937 - - uid: 14597 - components: - - type: Transform - pos: -28.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14595 - uid: 14650 components: - type: Transform @@ -20345,14 +21410,6 @@ entities: - type: DeviceNetwork deviceLists: - 10102 - - uid: 14675 - components: - - type: Transform - pos: -20.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18900 - uid: 14712 components: - type: Transform @@ -20497,30 +21554,6 @@ entities: - type: DeviceNetwork deviceLists: - 12518 - - uid: 16412 - components: - - type: Transform - pos: -60.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16446 - - uid: 16413 - components: - - type: Transform - pos: -63.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16446 - - uid: 16422 - components: - - type: Transform - pos: -69.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16446 - uid: 17346 components: - type: Transform @@ -20561,6 +21594,30 @@ entities: - type: DeviceNetwork deviceLists: - 17576 + - uid: 18822 + components: + - type: Transform + pos: 94.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17162 + - uid: 18889 + components: + - type: Transform + pos: 81.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18902 + - uid: 18901 + components: + - type: Transform + pos: 69.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18894 - uid: 19045 components: - type: Transform @@ -20752,15 +21809,6 @@ entities: - type: DeviceNetwork deviceLists: - 7178 - - uid: 23142 - components: - - type: Transform - pos: -10.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13796 - - 14984 - uid: 23143 components: - type: Transform @@ -20778,110 +21826,160 @@ entities: - type: DeviceNetwork deviceLists: - 23444 - - uid: 23788 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11625 - - uid: 23799 - components: - - type: Transform - pos: -25.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17615 - - uid: 23800 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17615 - uid: 23806 components: - type: Transform - pos: -43.5,-0.5 + pos: -13.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 + - 2196 - uid: 23807 components: - type: Transform - pos: -47.5,-0.5 + pos: -9.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 - - uid: 23808 + - 2237 + - uid: 24034 components: - type: Transform - pos: -47.5,7.5 + pos: -21.5,-2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 - - uid: 23809 + - 24035 + - 24109 + - uid: 24036 components: - type: Transform - pos: -43.5,7.5 + pos: -25.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 - - uid: 23826 + - 1931 + - uid: 24107 components: - type: Transform - pos: -32.5,-4.5 + pos: -29.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 19627 - - uid: 23912 + - 24059 + - uid: 24119 components: - type: Transform - pos: -43.5,-6.5 + pos: -24.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 - - uid: 23913 + - 1413 + - uid: 24213 components: - type: Transform - pos: -45.5,3.5 + pos: -35.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 - - uid: 23914 + - 24130 + - uid: 24214 components: - type: Transform - pos: -38.5,5.5 + pos: -38.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 - - uid: 23915 + - 24130 + - uid: 24215 components: - type: Transform - pos: -38.5,-1.5 + pos: -40.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 - - uid: 23917 + - 24130 + - uid: 24216 components: - type: Transform - pos: -20.5,-6.5 + pos: -41.5,15.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2670 + - 24130 + - uid: 24217 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24130 + - uid: 24234 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24238 + - uid: 24253 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24254 + - uid: 24286 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24291 + - uid: 24287 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24290 + - uid: 24288 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24291 + - uid: 24289 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24292 + - uid: 24317 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8606 + - 16078 + - uid: 24629 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24601 - proto: AltarConvertMaint entities: - uid: 9055 @@ -20931,12 +22029,6 @@ entities: parent: 2 - proto: APCBasic entities: - - uid: 291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-12.5 - parent: 2 - uid: 351 components: - type: MetaData @@ -20945,12 +22037,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-53.5 parent: 2 - - uid: 1283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,7.5 - parent: 2 - uid: 1342 components: - type: MetaData @@ -20986,12 +22072,6 @@ entities: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 1815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-2.5 - parent: 2 - uid: 1873 components: - type: MetaData @@ -21030,14 +22110,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-19.5 parent: 2 - - uid: 2366 - components: - - type: MetaData - name: HoS's Office APC - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,9.5 - parent: 2 - uid: 2422 components: - type: MetaData @@ -21053,12 +22125,36 @@ entities: - type: Transform pos: -13.5,-22.5 parent: 2 + - uid: 2500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,21.5 + parent: 2 + - uid: 2641 + components: + - type: MetaData + name: West Atrium APC + - type: Transform + pos: -25.5,-11.5 + parent: 2 - uid: 2692 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-49.5 parent: 2 + - uid: 2786 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,12.5 + parent: 2 - uid: 3661 components: - type: MetaData @@ -21073,6 +22169,12 @@ entities: - type: Transform pos: -8.5,20.5 parent: 2 + - uid: 4839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,25.5 + parent: 2 - uid: 5086 components: - type: MetaData @@ -21121,13 +22223,6 @@ entities: - type: Transform pos: 16.5,-20.5 parent: 2 - - uid: 6910 - components: - - type: MetaData - name: Warden's Office APC - - type: Transform - pos: -22.5,-2.5 - parent: 2 - uid: 7149 components: - type: MetaData @@ -21244,11 +22339,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-47.5 parent: 2 - - uid: 11213 - components: - - type: Transform - pos: -30.5,1.5 - parent: 2 - uid: 11350 components: - type: MetaData @@ -21422,23 +22512,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-55.5 parent: 2 - - uid: 16488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-14.5 - parent: 2 - - uid: 16489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-11.5 - parent: 2 - - uid: 16490 - components: - - type: Transform - pos: -66.5,-11.5 - parent: 2 - uid: 16624 components: - type: MetaData @@ -21447,12 +22520,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-70.5 parent: 2 - - uid: 16870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,7.5 - parent: 2 - uid: 17056 components: - type: MetaData @@ -21466,6 +22533,12 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-35.5 parent: 2 + - uid: 17119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-43.5 + parent: 2 - uid: 17540 components: - type: Transform @@ -21484,21 +22557,10 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-14.5 parent: 2 - - uid: 17971 + - uid: 17966 components: - - type: MetaData - name: Solars North West APC - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,21.5 - parent: 2 - - uid: 18028 - components: - - type: MetaData - name: Hall Outside Security APC - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 + pos: 70.5,-39.5 parent: 2 - uid: 18631 components: @@ -21511,12 +22573,6 @@ entities: - type: Transform pos: 47.5,-29.5 parent: 2 - - uid: 19052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,4.5 - parent: 2 - uid: 19151 components: - type: Transform @@ -21529,6 +22585,16 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-71.5 parent: 2 + - uid: 20098 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 20101 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 - uid: 20201 components: - type: Transform @@ -21547,12 +22613,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-37.5 parent: 2 - - uid: 20471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-5.5 - parent: 2 - uid: 20578 components: - type: MetaData @@ -21561,6 +22621,43 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-29.5 parent: 2 + - uid: 20776 + components: + - type: MetaData + name: HoS' APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,3.5 + parent: 2 + - uid: 20777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-4.5 + parent: 2 + - uid: 20778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,2.5 + parent: 2 + - uid: 20779 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 20780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 2 + - uid: 20781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 2 - uid: 21006 components: - type: Transform @@ -21596,13 +22693,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-34.5 parent: 2 - - uid: 22714 - components: - - type: MetaData - name: Security North APC - - type: Transform - pos: -25.5,18.5 - parent: 2 - uid: 23157 components: - type: Transform @@ -21625,6 +22715,18 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,14.5 parent: 2 + - uid: 24307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 2 + - uid: 24499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-36.5 + parent: 2 - proto: APCElectronics entities: - uid: 2246 @@ -21632,11 +22734,6 @@ entities: - type: Transform pos: -4.6457157,-23.489979 parent: 2 - - uid: 16601 - components: - - type: Transform - pos: -61.489456,-11.332669 - parent: 2 - proto: APECircuitboard entities: - uid: 4404 @@ -21691,10 +22788,10 @@ entities: parent: 2 - proto: ArtistCircuitBoard entities: - - uid: 16462 + - uid: 17097 components: - type: Transform - pos: -63.543224,-15.3914385 + pos: 67.38669,-41.3021 parent: 2 - proto: Ashtray entities: @@ -21747,10 +22844,10 @@ entities: parent: 2 - proto: AsimovCircuitBoard entities: - - uid: 16464 + - uid: 16752 components: - type: Transform - pos: -63.477634,-16.392134 + pos: 67.41116,-43.260357 parent: 2 - proto: AsteroidRock entities: @@ -21865,6 +22962,12 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-18.5 parent: 2 + - uid: 16368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-18.5 + parent: 2 - uid: 18670 components: - type: Transform @@ -21883,12 +22986,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,28.5 parent: 2 - - uid: 21943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,12.5 - parent: 2 - uid: 21945 components: - type: Transform @@ -21912,16 +23009,6 @@ entities: - type: Transform pos: 0.5,-88.5 parent: 2 - - uid: 192 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 2 - - uid: 203 - components: - - type: Transform - pos: -48.5,-16.5 - parent: 2 - uid: 232 components: - type: Transform @@ -21937,10 +23024,15 @@ entities: - type: Transform pos: 68.5,-70.5 parent: 2 - - uid: 279 + - uid: 287 components: - type: Transform - pos: -21.5,-12.5 + pos: -48.5,-16.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: 62.5,-37.5 parent: 2 - uid: 586 components: @@ -22007,26 +23099,6 @@ entities: - type: Transform pos: 21.5,28.5 parent: 2 - - uid: 1171 - components: - - type: Transform - pos: 78.5,-41.5 - parent: 2 - - uid: 1173 - components: - - type: Transform - pos: 78.5,-40.5 - parent: 2 - - uid: 1185 - components: - - type: Transform - pos: 78.5,-42.5 - parent: 2 - - uid: 1365 - components: - - type: Transform - pos: 59.5,-41.5 - parent: 2 - uid: 1772 components: - type: Transform @@ -22042,61 +23114,11 @@ entities: - type: Transform pos: 44.5,-72.5 parent: 2 - - uid: 2129 - components: - - type: Transform - pos: -38.5,18.5 - parent: 2 - - uid: 2140 - components: - - type: Transform - pos: 68.5,-40.5 - parent: 2 - - uid: 2180 - components: - - type: Transform - pos: 58.5,-41.5 - parent: 2 - uid: 2204 components: - type: Transform pos: 77.5,-74.5 parent: 2 - - uid: 2355 - components: - - type: Transform - pos: 58.5,-40.5 - parent: 2 - - uid: 2363 - components: - - type: Transform - pos: 60.5,-43.5 - parent: 2 - - uid: 2455 - components: - - type: Transform - pos: -51.5,-15.5 - parent: 2 - - uid: 2467 - components: - - type: Transform - pos: -49.5,-16.5 - parent: 2 - - uid: 2779 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 2 - - uid: 2987 - components: - - type: Transform - pos: -50.5,-15.5 - parent: 2 - - uid: 3124 - components: - - type: Transform - pos: 58.5,-42.5 - parent: 2 - uid: 3222 components: - type: Transform @@ -22107,11 +23129,6 @@ entities: - type: Transform pos: 57.5,0.5 parent: 2 - - uid: 3408 - components: - - type: Transform - pos: 70.5,-45.5 - parent: 2 - uid: 3465 components: - type: Transform @@ -22237,11 +23254,6 @@ entities: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 5449 - components: - - type: Transform - pos: 67.5,-43.5 - parent: 2 - uid: 5666 components: - type: Transform @@ -22427,6 +23439,16 @@ entities: - type: Transform pos: 4.5,-90.5 parent: 2 + - uid: 6961 + components: + - type: Transform + pos: 63.5,-37.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: 78.5,-50.5 + parent: 2 - uid: 7027 components: - type: Transform @@ -22862,11 +23884,6 @@ entities: - type: Transform pos: 10.5,-86.5 parent: 2 - - uid: 7651 - components: - - type: Transform - pos: 85.5,-38.5 - parent: 2 - uid: 7668 components: - type: Transform @@ -23352,21 +24369,256 @@ entities: - type: Transform pos: -11.5,-94.5 parent: 2 - - uid: 8465 + - uid: 8432 components: - type: Transform - pos: -47.5,-5.5 + pos: 70.5,-49.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: 70.5,-47.5 parent: 2 - uid: 8657 components: - type: Transform pos: 4.5,-11.5 parent: 2 + - uid: 8672 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + pos: -44.5,29.5 + parent: 2 + - uid: 8729 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 8733 + components: + - type: Transform + pos: -45.5,29.5 + parent: 2 + - uid: 8746 + components: + - type: Transform + pos: -48.5,31.5 + parent: 2 + - uid: 8763 + components: + - type: Transform + pos: -49.5,29.5 + parent: 2 + - uid: 8777 + components: + - type: Transform + pos: -48.5,32.5 + parent: 2 + - uid: 8784 + components: + - type: Transform + pos: -48.5,33.5 + parent: 2 + - uid: 8785 + components: + - type: Transform + pos: -48.5,34.5 + parent: 2 + - uid: 8857 + components: + - type: Transform + pos: -48.5,35.5 + parent: 2 + - uid: 8864 + components: + - type: Transform + pos: -50.5,35.5 + parent: 2 + - uid: 8876 + components: + - type: Transform + pos: -50.5,34.5 + parent: 2 + - uid: 8883 + components: + - type: Transform + pos: -50.5,33.5 + parent: 2 + - uid: 8888 + components: + - type: Transform + pos: -50.5,32.5 + parent: 2 + - uid: 8924 + components: + - type: Transform + pos: -50.5,31.5 + parent: 2 + - uid: 8926 + components: + - type: Transform + pos: 70.5,-48.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + pos: -49.5,31.5 + parent: 2 + - uid: 8930 + components: + - type: Transform + pos: -52.5,31.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + pos: -52.5,32.5 + parent: 2 + - uid: 8951 + components: + - type: Transform + pos: -52.5,33.5 + parent: 2 + - uid: 8952 + components: + - type: Transform + pos: -52.5,34.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + pos: -52.5,35.5 + parent: 2 + - uid: 8954 + components: + - type: Transform + pos: -54.5,35.5 + parent: 2 + - uid: 8955 + components: + - type: Transform + pos: -54.5,34.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + pos: -54.5,33.5 + parent: 2 + - uid: 8958 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 8959 + components: + - type: Transform + pos: -54.5,31.5 + parent: 2 + - uid: 8969 + components: + - type: Transform + pos: -53.5,31.5 + parent: 2 + - uid: 8970 + components: + - type: Transform + pos: -57.5,29.5 + parent: 2 + - uid: 8973 + components: + - type: Transform + pos: -53.5,29.5 + parent: 2 + - uid: 8980 + components: + - type: Transform + pos: -56.5,31.5 + parent: 2 + - uid: 8993 + components: + - type: Transform + pos: -56.5,32.5 + parent: 2 + - uid: 8994 + components: + - type: Transform + pos: -56.5,33.5 + parent: 2 + - uid: 8995 + components: + - type: Transform + pos: -56.5,34.5 + parent: 2 + - uid: 8999 + components: + - type: Transform + pos: -56.5,35.5 + parent: 2 + - uid: 9000 + components: + - type: Transform + pos: -58.5,35.5 + parent: 2 + - uid: 9004 + components: + - type: Transform + pos: -58.5,34.5 + parent: 2 + - uid: 9005 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 + - uid: 9006 + components: + - type: Transform + pos: -58.5,32.5 + parent: 2 + - uid: 9010 + components: + - type: Transform + pos: -58.5,31.5 + parent: 2 + - uid: 9016 + components: + - type: Transform + pos: -57.5,31.5 + parent: 2 + - uid: 9017 + components: + - type: Transform + pos: -61.5,29.5 + parent: 2 + - uid: 9018 + components: + - type: Transform + pos: -61.5,31.5 + parent: 2 + - uid: 9019 + components: + - type: Transform + pos: -60.5,31.5 + parent: 2 + - uid: 9076 + components: + - type: Transform + pos: -60.5,32.5 + parent: 2 - uid: 9102 components: - type: Transform pos: 50.5,1.5 parent: 2 + - uid: 9103 + components: + - type: Transform + pos: -60.5,33.5 + parent: 2 - uid: 9104 components: - type: Transform @@ -23377,16 +24629,126 @@ entities: - type: Transform pos: 50.5,3.5 parent: 2 + - uid: 9108 + components: + - type: Transform + pos: 84.5,-47.5 + parent: 2 + - uid: 9112 + components: + - type: Transform + pos: -60.5,34.5 + parent: 2 + - uid: 9122 + components: + - type: Transform + pos: -60.5,35.5 + parent: 2 + - uid: 9125 + components: + - type: Transform + pos: -62.5,35.5 + parent: 2 + - uid: 9133 + components: + - type: Transform + pos: -62.5,34.5 + parent: 2 + - uid: 9134 + components: + - type: Transform + pos: -62.5,33.5 + parent: 2 + - uid: 9138 + components: + - type: Transform + pos: -62.5,32.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + pos: -62.5,31.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + pos: -64.5,31.5 + parent: 2 + - uid: 9180 + components: + - type: Transform + pos: -64.5,32.5 + parent: 2 + - uid: 9202 + components: + - type: Transform + pos: -64.5,33.5 + parent: 2 + - uid: 9369 + components: + - type: Transform + pos: -64.5,34.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + pos: -64.5,35.5 + parent: 2 + - uid: 9464 + components: + - type: Transform + pos: -66.5,35.5 + parent: 2 + - uid: 9465 + components: + - type: Transform + pos: -66.5,34.5 + parent: 2 + - uid: 9466 + components: + - type: Transform + pos: -66.5,33.5 + parent: 2 + - uid: 9503 + components: + - type: Transform + pos: -66.5,32.5 + parent: 2 + - uid: 9513 + components: + - type: Transform + pos: -66.5,31.5 + parent: 2 + - uid: 9518 + components: + - type: Transform + pos: -65.5,29.5 + parent: 2 - uid: 9654 components: - type: Transform pos: 69.5,-78.5 parent: 2 + - uid: 9807 + components: + - type: Transform + pos: -65.5,31.5 + parent: 2 + - uid: 9812 + components: + - type: Transform + pos: -68.5,29.5 + parent: 2 - uid: 9835 components: - type: Transform pos: 61.5,6.5 parent: 2 + - uid: 9850 + components: + - type: Transform + pos: -61.5,13.5 + parent: 2 - uid: 9851 components: - type: Transform @@ -23397,10 +24759,45 @@ entities: - type: Transform pos: 61.5,4.5 parent: 2 + - uid: 9859 + components: + - type: Transform + pos: -67.5,26.5 + parent: 2 + - uid: 9874 + components: + - type: Transform + pos: -66.5,26.5 + parent: 2 + - uid: 9895 + components: + - type: Transform + pos: -65.5,26.5 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: -64.5,26.5 + parent: 2 + - uid: 10025 + components: + - type: Transform + pos: -63.5,26.5 + parent: 2 + - uid: 10045 + components: + - type: Transform + pos: 84.5,-46.5 + parent: 2 + - uid: 10053 + components: + - type: Transform + pos: 85.5,-48.5 + parent: 2 - uid: 10103 components: - type: Transform - pos: -29.5,-12.5 + pos: -63.5,24.5 parent: 2 - uid: 10112 components: @@ -23412,21 +24809,51 @@ entities: - type: Transform pos: 70.5,-82.5 parent: 2 + - uid: 10133 + components: + - type: Transform + pos: -64.5,24.5 + parent: 2 - uid: 10225 components: - type: Transform pos: 71.5,-82.5 parent: 2 + - uid: 10432 + components: + - type: Transform + pos: -65.5,24.5 + parent: 2 + - uid: 10436 + components: + - type: Transform + pos: -66.5,24.5 + parent: 2 - uid: 10441 components: - type: Transform pos: 69.5,4.5 parent: 2 + - uid: 10469 + components: + - type: Transform + pos: -67.5,24.5 + parent: 2 - uid: 10526 components: - type: Transform pos: -54.5,-37.5 parent: 2 + - uid: 10529 + components: + - type: Transform + pos: -63.5,25.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + pos: -61.5,25.5 + parent: 2 - uid: 10720 components: - type: Transform @@ -23437,6 +24864,16 @@ entities: - type: Transform pos: 70.5,2.5 parent: 2 + - uid: 10766 + components: + - type: Transform + pos: -61.5,21.5 + parent: 2 + - uid: 10769 + components: + - type: Transform + pos: 85.5,-47.5 + parent: 2 - uid: 10782 components: - type: Transform @@ -23502,6 +24939,16 @@ entities: - type: Transform pos: 44.5,-70.5 parent: 2 + - uid: 11272 + components: + - type: Transform + pos: 75.5,-53.5 + parent: 2 + - uid: 11310 + components: + - type: Transform + pos: -61.5,18.5 + parent: 2 - uid: 11342 components: - type: Transform @@ -23512,21 +24959,51 @@ entities: - type: Transform pos: 74.5,-79.5 parent: 2 + - uid: 11617 + components: + - type: Transform + pos: -61.5,17.5 + parent: 2 - uid: 11643 components: - type: Transform pos: 50.5,-73.5 parent: 2 + - uid: 11847 + components: + - type: Transform + pos: 75.5,-49.5 + parent: 2 - uid: 11872 components: - type: Transform pos: 44.5,-74.5 parent: 2 + - uid: 11925 + components: + - type: Transform + pos: -63.5,20.5 + parent: 2 + - uid: 11926 + components: + - type: Transform + pos: -64.5,20.5 + parent: 2 - uid: 11958 components: - type: Transform pos: 1.5,2.5 parent: 2 + - uid: 12025 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 12150 + components: + - type: Transform + pos: -66.5,20.5 + parent: 2 - uid: 12486 components: - type: Transform @@ -23542,15 +25019,60 @@ entities: - type: Transform pos: 21.5,27.5 parent: 2 + - uid: 12536 + components: + - type: Transform + pos: -67.5,20.5 + parent: 2 - uid: 12539 components: - type: Transform pos: 22.5,28.5 parent: 2 - - uid: 12599 + - uid: 12545 components: - type: Transform - pos: -46.5,-5.5 + pos: -67.5,22.5 + parent: 2 + - uid: 12689 + components: + - type: Transform + pos: -66.5,22.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + pos: -65.5,22.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + pos: -64.5,22.5 + parent: 2 + - uid: 12889 + components: + - type: Transform + pos: -63.5,22.5 + parent: 2 + - uid: 12983 + components: + - type: Transform + pos: -63.5,21.5 + parent: 2 + - uid: 12985 + components: + - type: Transform + pos: -63.5,18.5 + parent: 2 + - uid: 12987 + components: + - type: Transform + pos: -64.5,18.5 + parent: 2 + - uid: 13010 + components: + - type: Transform + pos: -65.5,18.5 parent: 2 - uid: 13121 components: @@ -23562,6 +25084,46 @@ entities: - type: Transform pos: -48.5,-19.5 parent: 2 + - uid: 13279 + components: + - type: Transform + pos: 76.5,-53.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + pos: -66.5,18.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + pos: -67.5,18.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + pos: -67.5,16.5 + parent: 2 + - uid: 13742 + components: + - type: Transform + pos: -66.5,16.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + pos: -65.5,16.5 + parent: 2 + - uid: 14016 + components: + - type: Transform + pos: -64.5,16.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: -63.5,16.5 + parent: 2 - uid: 14228 components: - type: Transform @@ -23597,6 +25159,11 @@ entities: - type: Transform pos: 69.5,8.5 parent: 2 + - uid: 14366 + components: + - type: Transform + pos: -63.5,17.5 + parent: 2 - uid: 14397 components: - type: Transform @@ -23632,26 +25199,116 @@ entities: - type: Transform pos: 84.5,-17.5 parent: 2 + - uid: 14562 + components: + - type: Transform + pos: -61.5,9.5 + parent: 2 + - uid: 14563 + components: + - type: Transform + pos: -63.5,10.5 + parent: 2 + - uid: 14564 + components: + - type: Transform + pos: -64.5,10.5 + parent: 2 + - uid: 14565 + components: + - type: Transform + pos: -65.5,10.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + pos: -66.5,10.5 + parent: 2 + - uid: 14567 + components: + - type: Transform + pos: -67.5,10.5 + parent: 2 + - uid: 14570 + components: + - type: Transform + pos: -67.5,8.5 + parent: 2 - uid: 14581 components: - type: Transform pos: 86.5,-12.5 parent: 2 + - uid: 14583 + components: + - type: Transform + pos: -66.5,8.5 + parent: 2 - uid: 14598 components: - type: Transform pos: 88.5,-12.5 parent: 2 + - uid: 14614 + components: + - type: Transform + pos: -65.5,8.5 + parent: 2 + - uid: 14615 + components: + - type: Transform + pos: -64.5,8.5 + parent: 2 + - uid: 14616 + components: + - type: Transform + pos: -63.5,8.5 + parent: 2 + - uid: 14617 + components: + - type: Transform + pos: -63.5,12.5 + parent: 2 + - uid: 14666 + components: + - type: Transform + pos: -65.5,12.5 + parent: 2 + - uid: 14774 + components: + - type: Transform + pos: -66.5,12.5 + parent: 2 - uid: 14788 components: - type: Transform pos: 87.5,-11.5 parent: 2 + - uid: 14821 + components: + - type: Transform + pos: -67.5,12.5 + parent: 2 + - uid: 15035 + components: + - type: Transform + pos: -64.5,12.5 + parent: 2 + - uid: 15044 + components: + - type: Transform + pos: -67.5,14.5 + parent: 2 - uid: 15069 components: - type: Transform pos: 75.5,-78.5 parent: 2 + - uid: 15121 + components: + - type: Transform + pos: -66.5,14.5 + parent: 2 - uid: 15322 components: - type: Transform @@ -23662,21 +25319,16 @@ entities: - type: Transform pos: 67.5,7.5 parent: 2 - - uid: 15635 - components: - - type: Transform - pos: 60.5,-41.5 - parent: 2 - - uid: 15636 - components: - - type: Transform - pos: 64.5,-37.5 - parent: 2 - uid: 15641 components: - type: Transform pos: 71.5,7.5 parent: 2 + - uid: 15676 + components: + - type: Transform + pos: -65.5,14.5 + parent: 2 - uid: 15725 components: - type: Transform @@ -23687,11 +25339,31 @@ entities: - type: Transform pos: 75.5,-76.5 parent: 2 + - uid: 15747 + components: + - type: Transform + pos: -64.5,14.5 + parent: 2 - uid: 15776 components: - type: Transform pos: 58.5,2.5 parent: 2 + - uid: 15823 + components: + - type: Transform + pos: -63.5,14.5 + parent: 2 + - uid: 15864 + components: + - type: Transform + pos: 70.5,-46.5 + parent: 2 + - uid: 15886 + components: + - type: Transform + pos: -63.5,13.5 + parent: 2 - uid: 15931 components: - type: Transform @@ -23702,6 +25374,21 @@ entities: - type: Transform pos: -12.5,5.5 parent: 2 + - uid: 16147 + components: + - type: Transform + pos: 75.5,-55.5 + parent: 2 + - uid: 16149 + components: + - type: Transform + pos: 61.5,-45.5 + parent: 2 + - uid: 16192 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 - uid: 16215 components: - type: Transform @@ -23712,70 +25399,145 @@ entities: - type: Transform pos: 67.5,-1.5 parent: 2 - - uid: 16841 + - uid: 16251 components: - type: Transform - pos: -46.5,-11.5 + pos: -47.5,-11.5 parent: 2 - - uid: 16842 + - uid: 16252 components: - type: Transform - pos: -46.5,-12.5 + pos: -47.5,-16.5 parent: 2 - - uid: 16843 + - uid: 16255 components: - type: Transform - pos: -45.5,-12.5 + pos: -47.5,-15.5 parent: 2 - - uid: 16844 + - uid: 16300 components: - type: Transform - pos: -44.5,-12.5 + pos: -60.5,-16.5 parent: 2 - - uid: 16845 + - uid: 16467 components: - type: Transform - pos: -43.5,-12.5 + pos: -54.5,-4.5 parent: 2 - - uid: 16846 + - uid: 16468 components: - type: Transform - pos: -42.5,-12.5 + pos: -54.5,-3.5 parent: 2 - - uid: 16847 + - uid: 16469 components: - type: Transform - pos: -41.5,-12.5 + pos: -54.5,-2.5 parent: 2 - - uid: 16848 + - uid: 16470 components: - type: Transform - pos: -40.5,-12.5 + pos: -54.5,-1.5 + parent: 2 + - uid: 16471 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 + - uid: 16472 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 16473 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - uid: 16474 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 + - uid: 16476 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 + - uid: 16477 + components: + - type: Transform + pos: -55.5,-0.5 + parent: 2 + - uid: 16545 + components: + - type: Transform + pos: 76.5,-54.5 + parent: 2 + - uid: 16554 + components: + - type: Transform + pos: 75.5,-54.5 + parent: 2 + - uid: 16566 + components: + - type: Transform + pos: 77.5,-53.5 + parent: 2 + - uid: 16577 + components: + - type: Transform + pos: 77.5,-54.5 + parent: 2 + - uid: 16607 + components: + - type: Transform + pos: 74.5,-46.5 + parent: 2 + - uid: 16608 + components: + - type: Transform + pos: 63.5,-48.5 + parent: 2 + - uid: 16614 + components: + - type: Transform + pos: 77.5,-56.5 + parent: 2 + - uid: 16641 + components: + - type: Transform + pos: 77.5,-55.5 + parent: 2 + - uid: 16642 + components: + - type: Transform + pos: 69.5,-46.5 + parent: 2 + - uid: 16665 + components: + - type: Transform + pos: 61.5,-50.5 + parent: 2 + - uid: 16672 + components: + - type: Transform + pos: 62.5,-49.5 + parent: 2 + - uid: 16722 + components: + - type: Transform + pos: 80.5,-47.5 parent: 2 - uid: 16849 components: - type: Transform - pos: -39.5,-12.5 + pos: 77.5,-51.5 parent: 2 - uid: 16871 components: - type: Transform - pos: -50.5,-9.5 - parent: 2 - - uid: 16872 - components: - - type: Transform - pos: -49.5,-8.5 - parent: 2 - - uid: 16873 - components: - - type: Transform - pos: -48.5,-7.5 - parent: 2 - - uid: 16874 - components: - - type: Transform - pos: -47.5,-6.5 + pos: 76.5,-56.5 parent: 2 - uid: 16933 components: @@ -23787,40 +25549,15 @@ entities: - type: Transform pos: -76.5,-57.5 parent: 2 - - uid: 17007 - components: - - type: Transform - pos: 68.5,-43.5 - parent: 2 - - uid: 17008 - components: - - type: Transform - pos: 67.5,-44.5 - parent: 2 - - uid: 17017 - components: - - type: Transform - pos: 59.5,-40.5 - parent: 2 - uid: 17018 components: - type: Transform - pos: 58.5,-39.5 - parent: 2 - - uid: 17019 - components: - - type: Transform - pos: 59.5,-39.5 + pos: 84.5,-49.5 parent: 2 - uid: 17075 components: - type: Transform - pos: -49.5,-15.5 - parent: 2 - - uid: 17080 - components: - - type: Transform - pos: -49.5,-17.5 + pos: 84.5,-48.5 parent: 2 - uid: 17081 components: @@ -23847,45 +25584,25 @@ entities: - type: Transform pos: -46.5,-18.5 parent: 2 - - uid: 17093 + - uid: 17089 components: - type: Transform - pos: -47.5,-7.5 - parent: 2 - - uid: 17097 - components: - - type: Transform - pos: -48.5,-6.5 - parent: 2 - - uid: 17098 - components: - - type: Transform - pos: -49.5,-7.5 - parent: 2 - - uid: 17099 - components: - - type: Transform - pos: -48.5,-8.5 - parent: 2 - - uid: 17100 - components: - - type: Transform - pos: -49.5,-9.5 + pos: 86.5,-48.5 parent: 2 - uid: 17101 components: - type: Transform - pos: -50.5,-8.5 + pos: 78.5,-55.5 parent: 2 - uid: 17102 components: - type: Transform - pos: -51.5,-9.5 + pos: 79.5,-48.5 parent: 2 - - uid: 17119 + - uid: 17109 components: - type: Transform - pos: 59.5,-38.5 + pos: 79.5,-47.5 parent: 2 - uid: 17125 components: @@ -23937,15 +25654,15 @@ entities: - type: Transform pos: 65.5,-1.5 parent: 2 - - uid: 17158 + - uid: 17168 components: - type: Transform - pos: 60.5,-38.5 + pos: 65.5,-46.5 parent: 2 - uid: 17169 components: - type: Transform - pos: 61.5,-38.5 + pos: 63.5,-45.5 parent: 2 - uid: 17171 components: @@ -23957,6 +25674,11 @@ entities: - type: Transform pos: 65.5,8.5 parent: 2 + - uid: 17186 + components: + - type: Transform + pos: 75.5,-46.5 + parent: 2 - uid: 17189 components: - type: Transform @@ -23967,20 +25689,35 @@ entities: - type: Transform pos: 71.5,-2.5 parent: 2 + - uid: 17197 + components: + - type: Transform + pos: 64.5,-47.5 + parent: 2 + - uid: 17245 + components: + - type: Transform + pos: 75.5,-48.5 + parent: 2 + - uid: 17273 + components: + - type: Transform + pos: 78.5,-51.5 + parent: 2 - uid: 17274 components: - type: Transform pos: 91.5,-20.5 parent: 2 - - uid: 17280 + - uid: 17286 components: - type: Transform - pos: 76.5,-44.5 + pos: 78.5,-49.5 parent: 2 - - uid: 17294 + - uid: 17298 components: - type: Transform - pos: 73.5,-46.5 + pos: 76.5,-55.5 parent: 2 - uid: 17303 components: @@ -23992,25 +25729,45 @@ entities: - type: Transform pos: 69.5,-2.5 parent: 2 + - uid: 17405 + components: + - type: Transform + pos: 80.5,-46.5 + parent: 2 + - uid: 17443 + components: + - type: Transform + pos: 62.5,-45.5 + parent: 2 + - uid: 17456 + components: + - type: Transform + pos: 76.5,-46.5 + parent: 2 - uid: 17577 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 17609 + - uid: 17615 components: - type: Transform - pos: 75.5,-44.5 + pos: 75.5,-47.5 + parent: 2 + - uid: 17618 + components: + - type: Transform + pos: 79.5,-49.5 parent: 2 - uid: 17641 components: - type: Transform pos: 57.5,8.5 parent: 2 - - uid: 17651 + - uid: 17685 components: - type: Transform - pos: -36.5,18.5 + pos: 77.5,-52.5 parent: 2 - uid: 17714 components: @@ -24022,6 +25779,11 @@ entities: - type: Transform pos: 83.5,-20.5 parent: 2 + - uid: 17731 + components: + - type: Transform + pos: 64.5,-45.5 + parent: 2 - uid: 17739 components: - type: Transform @@ -24057,21 +25819,11 @@ entities: - type: Transform pos: 63.5,-3.5 parent: 2 - - uid: 17789 - components: - - type: Transform - pos: 74.5,-45.5 - parent: 2 - uid: 17790 components: - type: Transform pos: 62.5,0.5 parent: 2 - - uid: 17791 - components: - - type: Transform - pos: 74.5,-44.5 - parent: 2 - uid: 17828 components: - type: Transform @@ -24082,61 +25834,11 @@ entities: - type: Transform pos: 60.5,-71.5 parent: 2 - - uid: 17854 - components: - - type: Transform - pos: -37.5,15.5 - parent: 2 - - uid: 17895 - components: - - type: Transform - pos: 72.5,-45.5 - parent: 2 - - uid: 17906 - components: - - type: Transform - pos: 72.5,-46.5 - parent: 2 - uid: 17908 components: - type: Transform pos: 44.5,-69.5 parent: 2 - - uid: 17910 - components: - - type: Transform - pos: 78.5,-43.5 - parent: 2 - - uid: 17913 - components: - - type: Transform - pos: 75.5,-43.5 - parent: 2 - - uid: 17917 - components: - - type: Transform - pos: 59.5,-42.5 - parent: 2 - - uid: 17918 - components: - - type: Transform - pos: 63.5,-39.5 - parent: 2 - - uid: 17922 - components: - - type: Transform - pos: 65.5,-45.5 - parent: 2 - - uid: 17923 - components: - - type: Transform - pos: 70.5,-44.5 - parent: 2 - - uid: 17925 - components: - - type: Transform - pos: 66.5,-39.5 - parent: 2 - uid: 17964 components: - type: Transform @@ -24182,56 +25884,6 @@ entities: - type: Transform pos: 71.5,-0.5 parent: 2 - - uid: 18162 - components: - - type: Transform - pos: -45.5,28.5 - parent: 2 - - uid: 18167 - components: - - type: Transform - pos: -45.5,25.5 - parent: 2 - - uid: 18173 - components: - - type: Transform - pos: -47.5,28.5 - parent: 2 - - uid: 18178 - components: - - type: Transform - pos: -47.5,26.5 - parent: 2 - - uid: 18180 - components: - - type: Transform - pos: -46.5,23.5 - parent: 2 - - uid: 18181 - components: - - type: Transform - pos: -47.5,25.5 - parent: 2 - - uid: 18182 - components: - - type: Transform - pos: -47.5,27.5 - parent: 2 - - uid: 18183 - components: - - type: Transform - pos: -46.5,25.5 - parent: 2 - - uid: 18185 - components: - - type: Transform - pos: -47.5,29.5 - parent: 2 - - uid: 18186 - components: - - type: Transform - pos: -45.5,26.5 - parent: 2 - uid: 18265 components: - type: Transform @@ -24242,20 +25894,125 @@ entities: - type: Transform pos: 66.5,4.5 parent: 2 - - uid: 18338 - components: - - type: Transform - pos: -48.5,20.5 - parent: 2 - uid: 18348 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 18461 + - uid: 18377 components: - type: Transform - pos: -45.5,29.5 + pos: 85.5,-33.5 + parent: 2 + - uid: 18378 + components: + - type: Transform + pos: 86.5,-33.5 + parent: 2 + - uid: 18379 + components: + - type: Transform + pos: 87.5,-33.5 + parent: 2 + - uid: 18380 + components: + - type: Transform + pos: 88.5,-33.5 + parent: 2 + - uid: 18381 + components: + - type: Transform + pos: 89.5,-34.5 + parent: 2 + - uid: 18383 + components: + - type: Transform + pos: 88.5,-35.5 + parent: 2 + - uid: 18385 + components: + - type: Transform + pos: 86.5,-35.5 + parent: 2 + - uid: 18387 + components: + - type: Transform + pos: 85.5,-36.5 + parent: 2 + - uid: 18389 + components: + - type: Transform + pos: 86.5,-36.5 + parent: 2 + - uid: 18390 + components: + - type: Transform + pos: 85.5,-37.5 + parent: 2 + - uid: 18391 + components: + - type: Transform + pos: 94.5,-35.5 + parent: 2 + - uid: 18392 + components: + - type: Transform + pos: 94.5,-34.5 + parent: 2 + - uid: 18393 + components: + - type: Transform + pos: 93.5,-33.5 + parent: 2 + - uid: 18394 + components: + - type: Transform + pos: 96.5,-33.5 + parent: 2 + - uid: 18395 + components: + - type: Transform + pos: 95.5,-33.5 + parent: 2 + - uid: 18396 + components: + - type: Transform + pos: 96.5,-35.5 + parent: 2 + - uid: 18397 + components: + - type: Transform + pos: 96.5,-36.5 + parent: 2 + - uid: 18417 + components: + - type: Transform + pos: 90.5,-32.5 + parent: 2 + - uid: 18419 + components: + - type: Transform + pos: 90.5,-33.5 + parent: 2 + - uid: 18420 + components: + - type: Transform + pos: 90.5,-34.5 + parent: 2 + - uid: 18421 + components: + - type: Transform + pos: 91.5,-33.5 + parent: 2 + - uid: 18428 + components: + - type: Transform + pos: 92.5,-35.5 + parent: 2 + - uid: 18436 + components: + - type: Transform + pos: 65.5,-38.5 parent: 2 - uid: 18479 components: @@ -24282,16 +26039,6 @@ entities: - type: Transform pos: 30.5,-79.5 parent: 2 - - uid: 18538 - components: - - type: Transform - pos: 74.5,-43.5 - parent: 2 - - uid: 18585 - components: - - type: Transform - pos: -45.5,27.5 - parent: 2 - uid: 18594 components: - type: Transform @@ -24302,71 +26049,6 @@ entities: - type: Transform pos: 65.5,-0.5 parent: 2 - - uid: 18613 - components: - - type: Transform - pos: -50.5,23.5 - parent: 2 - - uid: 18624 - components: - - type: Transform - pos: -54.5,23.5 - parent: 2 - - uid: 18625 - components: - - type: Transform - pos: -57.5,23.5 - parent: 2 - - uid: 18626 - components: - - type: Transform - pos: -54.5,25.5 - parent: 2 - - uid: 18627 - components: - - type: Transform - pos: -55.5,25.5 - parent: 2 - - uid: 18628 - components: - - type: Transform - pos: -55.5,26.5 - parent: 2 - - uid: 18642 - components: - - type: Transform - pos: 65.5,-41.5 - parent: 2 - - uid: 18652 - components: - - type: Transform - pos: 79.5,-42.5 - parent: 2 - - uid: 18657 - components: - - type: Transform - pos: 76.5,-46.5 - parent: 2 - - uid: 18658 - components: - - type: Transform - pos: 79.5,-43.5 - parent: 2 - - uid: 18659 - components: - - type: Transform - pos: 77.5,-43.5 - parent: 2 - - uid: 18661 - components: - - type: Transform - pos: 76.5,-42.5 - parent: 2 - - uid: 18769 - components: - - type: Transform - pos: 73.5,-40.5 - parent: 2 - uid: 18773 components: - type: Transform @@ -24377,41 +26059,6 @@ entities: - type: Transform pos: 87.5,-13.5 parent: 2 - - uid: 18804 - components: - - type: Transform - pos: 72.5,-40.5 - parent: 2 - - uid: 18807 - components: - - type: Transform - pos: 70.5,-41.5 - parent: 2 - - uid: 18811 - components: - - type: Transform - pos: 71.5,-41.5 - parent: 2 - - uid: 18813 - components: - - type: Transform - pos: -55.5,27.5 - parent: 2 - - uid: 18821 - components: - - type: Transform - pos: 70.5,-42.5 - parent: 2 - - uid: 18822 - components: - - type: Transform - pos: 71.5,-42.5 - parent: 2 - - uid: 18823 - components: - - type: Transform - pos: 59.5,-37.5 - parent: 2 - uid: 18824 components: - type: Transform @@ -24420,392 +26067,312 @@ entities: - uid: 18942 components: - type: Transform - pos: -55.5,28.5 + pos: 85.5,-50.5 parent: 2 - - uid: 18983 + - uid: 18998 components: - type: Transform - pos: -55.5,29.5 + pos: 86.5,-50.5 + parent: 2 + - uid: 19000 + components: + - type: Transform + pos: 87.5,-51.5 + parent: 2 + - uid: 19001 + components: + - type: Transform + pos: 88.5,-50.5 + parent: 2 + - uid: 19002 + components: + - type: Transform + pos: 88.5,-51.5 + parent: 2 + - uid: 19003 + components: + - type: Transform + pos: 88.5,-53.5 + parent: 2 + - uid: 19005 + components: + - type: Transform + pos: 87.5,-53.5 + parent: 2 + - uid: 19010 + components: + - type: Transform + pos: 88.5,-54.5 + parent: 2 + - uid: 19016 + components: + - type: Transform + pos: 90.5,-52.5 + parent: 2 + - uid: 19017 + components: + - type: Transform + pos: 90.5,-51.5 + parent: 2 + - uid: 19023 + components: + - type: Transform + pos: 91.5,-52.5 + parent: 2 + - uid: 19031 + components: + - type: Transform + pos: 91.5,-51.5 + parent: 2 + - uid: 19033 + components: + - type: Transform + pos: 92.5,-52.5 + parent: 2 + - uid: 19034 + components: + - type: Transform + pos: 92.5,-51.5 + parent: 2 + - uid: 19035 + components: + - type: Transform + pos: 93.5,-52.5 + parent: 2 + - uid: 19036 + components: + - type: Transform + pos: 93.5,-51.5 + parent: 2 + - uid: 19037 + components: + - type: Transform + pos: 92.5,-53.5 + parent: 2 + - uid: 19038 + components: + - type: Transform + pos: 91.5,-54.5 parent: 2 - uid: 19041 components: - type: Transform - pos: 77.5,-39.5 + pos: 93.5,-54.5 parent: 2 - uid: 19042 components: - type: Transform pos: 69.5,-66.5 parent: 2 + - uid: 19043 + components: + - type: Transform + pos: 79.5,-61.5 + parent: 2 + - uid: 19044 + components: + - type: Transform + pos: 95.5,-52.5 + parent: 2 + - uid: 19047 + components: + - type: Transform + pos: 96.5,-51.5 + parent: 2 + - uid: 19048 + components: + - type: Transform + pos: 96.5,-49.5 + parent: 2 + - uid: 19049 + components: + - type: Transform + pos: 89.5,-49.5 + parent: 2 + - uid: 19052 + components: + - type: Transform + pos: 84.5,-55.5 + parent: 2 + - uid: 19054 + components: + - type: Transform + pos: 78.5,-62.5 + parent: 2 - uid: 19055 components: - type: Transform - pos: 73.5,-44.5 + pos: 76.5,-64.5 parent: 2 - - uid: 19070 + - uid: 19056 components: - type: Transform - pos: -53.5,29.5 - parent: 2 - - uid: 19071 - components: - - type: Transform - pos: -53.5,28.5 + pos: 84.5,-57.5 parent: 2 - uid: 19072 components: - type: Transform - pos: -53.5,27.5 + pos: 77.5,-63.5 parent: 2 - uid: 19073 components: - type: Transform - pos: -53.5,26.5 + pos: 80.5,-60.5 parent: 2 - uid: 19074 components: - type: Transform - pos: -53.5,25.5 + pos: 85.5,-55.5 parent: 2 - uid: 19075 components: - type: Transform - pos: -51.5,25.5 + pos: 86.5,-54.5 parent: 2 - uid: 19076 components: - type: Transform - pos: -51.5,26.5 + pos: 87.5,-54.5 parent: 2 - uid: 19077 components: - type: Transform - pos: -51.5,27.5 + pos: 83.5,-56.5 parent: 2 - uid: 19078 components: - type: Transform - pos: -51.5,28.5 + pos: 76.5,-63.5 parent: 2 - uid: 19079 components: - type: Transform - pos: -51.5,29.5 + pos: 76.5,-62.5 parent: 2 - uid: 19080 components: - type: Transform - pos: -49.5,29.5 + pos: 83.5,-58.5 parent: 2 - uid: 19081 components: - type: Transform - pos: -49.5,28.5 + pos: 83.5,-57.5 parent: 2 - uid: 19082 components: - type: Transform - pos: -49.5,27.5 + pos: 85.5,-57.5 parent: 2 - uid: 19083 components: - type: Transform - pos: -49.5,26.5 + pos: 78.5,-57.5 parent: 2 - uid: 19084 components: - type: Transform - pos: -49.5,25.5 - parent: 2 - - uid: 19085 - components: - - type: Transform - pos: -50.5,25.5 - parent: 2 - - uid: 19086 - components: - - type: Transform - pos: -50.5,19.5 - parent: 2 - - uid: 19087 - components: - - type: Transform - pos: -52.5,20.5 - parent: 2 - - uid: 19088 - components: - - type: Transform - pos: -53.5,20.5 - parent: 2 - - uid: 19089 - components: - - type: Transform - pos: -54.5,20.5 - parent: 2 - - uid: 19091 - components: - - type: Transform - pos: -56.5,20.5 + pos: 77.5,-57.5 parent: 2 - uid: 19092 components: - type: Transform - pos: -55.5,20.5 + pos: 82.5,-57.5 parent: 2 - uid: 19093 components: - type: Transform - pos: -56.5,18.5 + pos: 82.5,-58.5 parent: 2 - uid: 19095 components: - type: Transform - pos: -55.5,18.5 + pos: 82.5,-59.5 parent: 2 - uid: 19096 components: - type: Transform - pos: -54.5,18.5 + pos: 81.5,-59.5 parent: 2 - uid: 19099 components: - type: Transform - pos: -53.5,18.5 + pos: 81.5,-58.5 parent: 2 - uid: 19100 components: - type: Transform - pos: -52.5,18.5 + pos: 80.5,-59.5 parent: 2 - uid: 19101 components: - type: Transform - pos: -52.5,19.5 + pos: 79.5,-59.5 parent: 2 - uid: 19103 components: - type: Transform - pos: -47.5,20.5 + pos: 78.5,-59.5 parent: 2 - uid: 19104 components: - type: Transform - pos: -46.5,20.5 + pos: 77.5,-59.5 parent: 2 - uid: 19105 components: - type: Transform - pos: -45.5,20.5 + pos: 77.5,-60.5 parent: 2 - uid: 19106 components: - type: Transform - pos: -44.5,20.5 + pos: 78.5,-60.5 parent: 2 - uid: 19107 components: - type: Transform - pos: -44.5,18.5 + pos: 77.5,-61.5 parent: 2 - uid: 19108 components: - type: Transform - pos: -45.5,18.5 + pos: 76.5,-61.5 parent: 2 - uid: 19109 components: - type: Transform - pos: -46.5,18.5 + pos: 75.5,-61.5 parent: 2 - uid: 19110 components: - type: Transform - pos: -47.5,18.5 + pos: 86.5,-55.5 parent: 2 - uid: 19111 components: - type: Transform - pos: -48.5,18.5 + pos: 86.5,-56.5 parent: 2 - uid: 19112 components: - type: Transform - pos: -48.5,19.5 + pos: 85.5,-56.5 parent: 2 - uid: 19113 components: - type: Transform - pos: -52.5,14.5 + pos: 87.5,-55.5 parent: 2 - uid: 19114 components: - type: Transform - pos: -44.5,16.5 + pos: 88.5,-55.5 parent: 2 - uid: 19115 components: - type: Transform - pos: -45.5,16.5 - parent: 2 - - uid: 19116 - components: - - type: Transform - pos: -46.5,16.5 - parent: 2 - - uid: 19117 - components: - - type: Transform - pos: -47.5,16.5 - parent: 2 - - uid: 19118 - components: - - type: Transform - pos: -48.5,16.5 - parent: 2 - - uid: 19119 - components: - - type: Transform - pos: -48.5,15.5 - parent: 2 - - uid: 19120 - components: - - type: Transform - pos: -48.5,14.5 - parent: 2 - - uid: 19121 - components: - - type: Transform - pos: -47.5,14.5 - parent: 2 - - uid: 19122 - components: - - type: Transform - pos: -46.5,14.5 - parent: 2 - - uid: 19123 - components: - - type: Transform - pos: -45.5,14.5 - parent: 2 - - uid: 19124 - components: - - type: Transform - pos: -44.5,14.5 - parent: 2 - - uid: 19136 - components: - - type: Transform - pos: -50.5,11.5 - parent: 2 - - uid: 19137 - components: - - type: Transform - pos: -52.5,10.5 - parent: 2 - - uid: 19138 - components: - - type: Transform - pos: -53.5,10.5 - parent: 2 - - uid: 19139 - components: - - type: Transform - pos: -54.5,10.5 - parent: 2 - - uid: 19140 - components: - - type: Transform - pos: -55.5,10.5 - parent: 2 - - uid: 19141 - components: - - type: Transform - pos: -56.5,10.5 - parent: 2 - - uid: 19152 - components: - - type: Transform - pos: -56.5,12.5 - parent: 2 - - uid: 19165 - components: - - type: Transform - pos: -55.5,12.5 - parent: 2 - - uid: 19166 - components: - - type: Transform - pos: -54.5,12.5 - parent: 2 - - uid: 19167 - components: - - type: Transform - pos: -53.5,12.5 - parent: 2 - - uid: 19168 - components: - - type: Transform - pos: -52.5,12.5 - parent: 2 - - uid: 19169 - components: - - type: Transform - pos: -52.5,11.5 - parent: 2 - - uid: 19170 - components: - - type: Transform - pos: -53.5,14.5 - parent: 2 - - uid: 19171 - components: - - type: Transform - pos: -54.5,14.5 - parent: 2 - - uid: 19172 - components: - - type: Transform - pos: -55.5,14.5 - parent: 2 - - uid: 19173 - components: - - type: Transform - pos: -56.5,14.5 - parent: 2 - - uid: 19174 - components: - - type: Transform - pos: -56.5,16.5 - parent: 2 - - uid: 19175 - components: - - type: Transform - pos: -55.5,16.5 - parent: 2 - - uid: 19176 - components: - - type: Transform - pos: -53.5,16.5 - parent: 2 - - uid: 19177 - components: - - type: Transform - pos: -52.5,16.5 - parent: 2 - - uid: 19178 - components: - - type: Transform - pos: -54.5,16.5 - parent: 2 - - uid: 19179 - components: - - type: Transform - pos: -52.5,15.5 - parent: 2 - - uid: 19180 - components: - - type: Transform - pos: -50.5,15.5 + pos: 81.5,-46.5 parent: 2 - uid: 19256 components: @@ -25317,11 +26884,6 @@ entities: - type: Transform pos: 67.5,-74.5 parent: 2 - - uid: 19400 - components: - - type: Transform - pos: 74.5,-40.5 - parent: 2 - uid: 19401 components: - type: Transform @@ -26007,266 +27569,86 @@ entities: - type: Transform pos: 64.5,-58.5 parent: 2 - - uid: 19543 - components: - - type: Transform - pos: 72.5,-43.5 - parent: 2 - - uid: 19548 - components: - - type: Transform - pos: 77.5,-44.5 - parent: 2 - - uid: 19560 - components: - - type: Transform - pos: 65.5,-39.5 - parent: 2 - - uid: 19561 - components: - - type: Transform - pos: 65.5,-38.5 - parent: 2 - - uid: 19562 - components: - - type: Transform - pos: 67.5,-41.5 - parent: 2 - uid: 19563 components: - type: Transform - pos: 67.5,-39.5 - parent: 2 - - uid: 19564 - components: - - type: Transform - pos: 80.5,-42.5 + pos: 64.5,-37.5 parent: 2 - uid: 19565 components: - type: Transform - pos: 68.5,-44.5 + pos: 65.5,-37.5 parent: 2 - uid: 19566 components: - type: Transform - pos: 79.5,-40.5 + pos: 66.5,-37.5 parent: 2 - uid: 19567 components: - type: Transform - pos: 78.5,-46.5 + pos: 67.5,-37.5 parent: 2 - uid: 19568 components: - type: Transform - pos: 77.5,-45.5 + pos: 68.5,-37.5 parent: 2 - uid: 19569 components: - type: Transform - pos: 79.5,-44.5 + pos: 69.5,-37.5 parent: 2 - uid: 19571 components: - type: Transform - pos: 73.5,-47.5 + pos: 70.5,-37.5 parent: 2 - uid: 19572 components: - type: Transform - pos: 75.5,-45.5 + pos: 71.5,-37.5 parent: 2 - uid: 19573 components: - type: Transform - pos: 71.5,-44.5 + pos: 72.5,-37.5 parent: 2 - - uid: 19597 + - uid: 19580 components: - type: Transform - pos: 73.5,-43.5 + pos: 73.5,-37.5 parent: 2 - - uid: 19598 + - uid: 19581 components: - type: Transform - pos: 74.5,-46.5 + pos: 74.5,-37.5 parent: 2 - - uid: 19599 + - uid: 19582 components: - type: Transform - pos: 73.5,-45.5 + pos: 75.5,-37.5 parent: 2 - - uid: 19603 + - uid: 19583 components: - type: Transform - pos: 64.5,-43.5 + pos: 76.5,-37.5 parent: 2 - - uid: 19604 + - uid: 19590 components: - type: Transform - pos: 63.5,-42.5 + pos: 59.5,-35.5 + parent: 2 + - uid: 19592 + components: + - type: Transform + pos: 55.5,-34.5 parent: 2 - uid: 19605 components: - type: Transform pos: 19.5,-69.5 parent: 2 - - uid: 19609 - components: - - type: Transform - pos: 66.5,-38.5 - parent: 2 - - uid: 19610 - components: - - type: Transform - pos: 73.5,-41.5 - parent: 2 - - uid: 19611 - components: - - type: Transform - pos: 64.5,-42.5 - parent: 2 - - uid: 19612 - components: - - type: Transform - pos: 64.5,-38.5 - parent: 2 - - uid: 19613 - components: - - type: Transform - pos: 59.5,-43.5 - parent: 2 - - uid: 19614 - components: - - type: Transform - pos: 60.5,-42.5 - parent: 2 - - uid: 19615 - components: - - type: Transform - pos: 65.5,-40.5 - parent: 2 - - uid: 19616 - components: - - type: Transform - pos: 73.5,-42.5 - parent: 2 - - uid: 19619 - components: - - type: Transform - pos: 72.5,-41.5 - parent: 2 - - uid: 19620 - components: - - type: Transform - pos: 74.5,-42.5 - parent: 2 - - uid: 19621 - components: - - type: Transform - pos: 74.5,-41.5 - parent: 2 - - uid: 19623 - components: - - type: Transform - pos: 71.5,-45.5 - parent: 2 - - uid: 19635 - components: - - type: Transform - pos: 67.5,-42.5 - parent: 2 - - uid: 19641 - components: - - type: Transform - pos: 85.5,-33.5 - parent: 2 - - uid: 19642 - components: - - type: Transform - pos: 86.5,-33.5 - parent: 2 - - uid: 19643 - components: - - type: Transform - pos: 87.5,-33.5 - parent: 2 - - uid: 19644 - components: - - type: Transform - pos: 88.5,-33.5 - parent: 2 - - uid: 19645 - components: - - type: Transform - pos: 90.5,-33.5 - parent: 2 - - uid: 19646 - components: - - type: Transform - pos: 89.5,-33.5 - parent: 2 - - uid: 19647 - components: - - type: Transform - pos: 92.5,-35.5 - parent: 2 - - uid: 19648 - components: - - type: Transform - pos: 91.5,-35.5 - parent: 2 - - uid: 19649 - components: - - type: Transform - pos: 90.5,-35.5 - parent: 2 - - uid: 19650 - components: - - type: Transform - pos: 91.5,-34.5 - parent: 2 - - uid: 19651 - components: - - type: Transform - pos: 90.5,-34.5 - parent: 2 - - uid: 19652 - components: - - type: Transform - pos: 92.5,-36.5 - parent: 2 - - uid: 19653 - components: - - type: Transform - pos: 93.5,-36.5 - parent: 2 - - uid: 19654 - components: - - type: Transform - pos: 96.5,-36.5 - parent: 2 - - uid: 19655 - components: - - type: Transform - pos: 96.5,-35.5 - parent: 2 - - uid: 19656 - components: - - type: Transform - pos: 95.5,-35.5 - parent: 2 - - uid: 19657 - components: - - type: Transform - pos: 94.5,-35.5 - parent: 2 - - uid: 19658 - components: - - type: Transform - pos: 93.5,-35.5 - parent: 2 - uid: 19659 components: - type: Transform @@ -26277,11 +27659,6 @@ entities: - type: Transform pos: 93.5,-32.5 parent: 2 - - uid: 19661 - components: - - type: Transform - pos: 93.5,-33.5 - parent: 2 - uid: 19662 components: - type: Transform @@ -26292,11 +27669,6 @@ entities: - type: Transform pos: 94.5,-32.5 parent: 2 - - uid: 19664 - components: - - type: Transform - pos: 94.5,-33.5 - parent: 2 - uid: 19665 components: - type: Transform @@ -26307,11 +27679,6 @@ entities: - type: Transform pos: 95.5,-32.5 parent: 2 - - uid: 19667 - components: - - type: Transform - pos: 95.5,-33.5 - parent: 2 - uid: 19668 components: - type: Transform @@ -26322,11 +27689,6 @@ entities: - type: Transform pos: 96.5,-32.5 parent: 2 - - uid: 19670 - components: - - type: Transform - pos: 96.5,-33.5 - parent: 2 - uid: 19671 components: - type: Transform @@ -26347,11 +27709,6 @@ entities: - type: Transform pos: 91.5,-32.5 parent: 2 - - uid: 19675 - components: - - type: Transform - pos: 91.5,-33.5 - parent: 2 - uid: 19676 components: - type: Transform @@ -26797,11 +28154,6 @@ entities: - type: Transform pos: 83.5,-16.5 parent: 2 - - uid: 19773 - components: - - type: Transform - pos: -46.5,-4.5 - parent: 2 - uid: 19775 components: - type: Transform @@ -27012,36 +28364,6 @@ entities: - type: Transform pos: 89.5,-12.5 parent: 2 - - uid: 19820 - components: - - type: Transform - pos: 71.5,-40.5 - parent: 2 - - uid: 19821 - components: - - type: Transform - pos: 76.5,-41.5 - parent: 2 - - uid: 19822 - components: - - type: Transform - pos: 77.5,-41.5 - parent: 2 - - uid: 19824 - components: - - type: Transform - pos: 64.5,-39.5 - parent: 2 - - uid: 19825 - components: - - type: Transform - pos: 65.5,-42.5 - parent: 2 - - uid: 19826 - components: - - type: Transform - pos: 72.5,-42.5 - parent: 2 - uid: 19828 components: - type: Transform @@ -27057,11 +28379,6 @@ entities: - type: Transform pos: 85.5,-12.5 parent: 2 - - uid: 19831 - components: - - type: Transform - pos: 83.5,-40.5 - parent: 2 - uid: 19832 components: - type: Transform @@ -27087,36 +28404,11 @@ entities: - type: Transform pos: 86.5,-11.5 parent: 2 - - uid: 19837 - components: - - type: Transform - pos: 79.5,-41.5 - parent: 2 - uid: 19838 components: - type: Transform pos: 88.5,-11.5 parent: 2 - - uid: 19840 - components: - - type: Transform - pos: 84.5,-39.5 - parent: 2 - - uid: 19841 - components: - - type: Transform - pos: 77.5,-42.5 - parent: 2 - - uid: 19842 - components: - - type: Transform - pos: 76.5,-45.5 - parent: 2 - - uid: 19843 - components: - - type: Transform - pos: 84.5,-40.5 - parent: 2 - uid: 19846 components: - type: Transform @@ -27157,16 +28449,6 @@ entities: - type: Transform pos: 45.5,-65.5 parent: 2 - - uid: 19854 - components: - - type: Transform - pos: 80.5,-45.5 - parent: 2 - - uid: 19856 - components: - - type: Transform - pos: 80.5,-44.5 - parent: 2 - uid: 19857 components: - type: Transform @@ -27187,26 +28469,11 @@ entities: - type: Transform pos: 87.5,-28.5 parent: 2 - - uid: 19863 - components: - - type: Transform - pos: 78.5,-45.5 - parent: 2 - uid: 19864 components: - type: Transform pos: 90.5,-20.5 parent: 2 - - uid: 19865 - components: - - type: Transform - pos: 76.5,-40.5 - parent: 2 - - uid: 19884 - components: - - type: Transform - pos: -46.5,-6.5 - parent: 2 - uid: 19911 components: - type: Transform @@ -27227,11 +28494,6 @@ entities: - type: Transform pos: 37.5,-74.5 parent: 2 - - uid: 19915 - components: - - type: Transform - pos: 83.5,-39.5 - parent: 2 - uid: 19923 components: - type: Transform @@ -27242,36 +28504,6 @@ entities: - type: Transform pos: 39.5,-73.5 parent: 2 - - uid: 19944 - components: - - type: Transform - pos: 79.5,-46.5 - parent: 2 - - uid: 19949 - components: - - type: Transform - pos: 77.5,-40.5 - parent: 2 - - uid: 19951 - components: - - type: Transform - pos: 75.5,-46.5 - parent: 2 - - uid: 19960 - components: - - type: Transform - pos: 77.5,-46.5 - parent: 2 - - uid: 19967 - components: - - type: Transform - pos: 79.5,-45.5 - parent: 2 - - uid: 19968 - components: - - type: Transform - pos: 78.5,-44.5 - parent: 2 - uid: 19979 components: - type: Transform @@ -27282,11 +28514,6 @@ entities: - type: Transform pos: 5.5,-96.5 parent: 2 - - uid: 20083 - components: - - type: Transform - pos: 67.5,-45.5 - parent: 2 - uid: 20124 components: - type: Transform @@ -27302,41 +28529,6 @@ entities: - type: Transform pos: 89.5,-20.5 parent: 2 - - uid: 20563 - components: - - type: Transform - pos: -20.5,-12.5 - parent: 2 - - uid: 20589 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 2 - - uid: 20686 - components: - - type: Transform - pos: -38.5,17.5 - parent: 2 - - uid: 20687 - components: - - type: Transform - pos: -37.5,18.5 - parent: 2 - - uid: 20690 - components: - - type: Transform - pos: -36.5,17.5 - parent: 2 - - uid: 20691 - components: - - type: Transform - pos: -37.5,17.5 - parent: 2 - - uid: 20692 - components: - - type: Transform - pos: -36.5,16.5 - parent: 2 - uid: 20733 components: - type: Transform @@ -27777,21 +28969,6 @@ entities: - type: Transform pos: -54.5,-35.5 parent: 2 - - uid: 22014 - components: - - type: Transform - pos: -40.5,14.5 - parent: 2 - - uid: 22051 - components: - - type: Transform - pos: -36.5,15.5 - parent: 2 - - uid: 22087 - components: - - type: Transform - pos: -39.5,14.5 - parent: 2 - uid: 22411 components: - type: Transform @@ -27962,26 +29139,6 @@ entities: - type: Transform pos: 75.5,-68.5 parent: 2 - - uid: 22836 - components: - - type: Transform - pos: 79.5,-54.5 - parent: 2 - - uid: 22837 - components: - - type: Transform - pos: 80.5,-53.5 - parent: 2 - - uid: 22838 - components: - - type: Transform - pos: 80.5,-51.5 - parent: 2 - - uid: 22839 - components: - - type: Transform - pos: 80.5,-49.5 - parent: 2 - uid: 22840 components: - type: Transform @@ -28397,6 +29554,86 @@ entities: - type: Transform pos: 7.5,-7.5 parent: 2 + - uid: 23703 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 + - uid: 23947 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - uid: 24454 + components: + - type: Transform + pos: -34.5,31.5 + parent: 2 + - uid: 24457 + components: + - type: Transform + pos: -31.5,30.5 + parent: 2 + - uid: 24458 + components: + - type: Transform + pos: -30.5,30.5 + parent: 2 + - uid: 24750 + components: + - type: Transform + pos: 63.5,-38.5 + parent: 2 + - uid: 24756 + components: + - type: Transform + pos: 59.5,-40.5 + parent: 2 + - uid: 24757 + components: + - type: Transform + pos: 61.5,-40.5 + parent: 2 + - uid: 24758 + components: + - type: Transform + pos: 62.5,-39.5 + parent: 2 + - uid: 24759 + components: + - type: Transform + pos: 59.5,-41.5 + parent: 2 + - uid: 24764 + components: + - type: Transform + pos: 61.5,-37.5 + parent: 2 + - uid: 24765 + components: + - type: Transform + pos: 60.5,-37.5 + parent: 2 + - uid: 24773 + components: + - type: Transform + pos: 62.5,-38.5 + parent: 2 + - uid: 24774 + components: + - type: Transform + pos: 59.5,-39.5 + parent: 2 + - uid: 24775 + components: + - type: Transform + pos: 60.5,-40.5 + parent: 2 + - uid: 24777 + components: + - type: Transform + pos: 61.5,-39.5 + parent: 2 - proto: AtmosFixFreezerMarker entities: - uid: 7764 @@ -28521,13 +29758,6 @@ entities: - type: Transform pos: 13.477564,-30.347912 parent: 2 -- proto: BanjoInstrument - entities: - - uid: 23928 - components: - - type: Transform - pos: -21.420506,-7.1571426 - parent: 2 - proto: BannerCargo entities: - uid: 12757 @@ -28544,11 +29774,6 @@ entities: parent: 2 - proto: Barricade entities: - - uid: 2835 - components: - - type: Transform - pos: -24.5,-13.5 - parent: 2 - uid: 6854 components: - type: Transform @@ -28559,16 +29784,35 @@ entities: - type: Transform pos: 42.5,-27.5 parent: 2 - - uid: 11293 - components: - - type: Transform - pos: -35.5,-17.5 - parent: 2 - uid: 14193 components: - type: Transform pos: -39.5,-44.5 parent: 2 + - uid: 16277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,19.5 + parent: 2 + - uid: 16437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,10.5 + parent: 2 + - uid: 16457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,13.5 + parent: 2 + - uid: 16462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,27.5 + parent: 2 - uid: 17809 components: - type: Transform @@ -28592,10 +29836,22 @@ entities: - type: Transform pos: -39.5,-45.5 parent: 2 - - uid: 20702 + - uid: 16458 components: - type: Transform - pos: -31.5,18.5 + rot: -1.5707963267948966 rad + pos: -52.5,16.5 + parent: 2 + - uid: 16460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,23.5 + parent: 2 + - uid: 24181 + components: + - type: Transform + pos: -29.5,19.5 parent: 2 - proto: BarricadeDirectional entities: @@ -28661,26 +29917,21 @@ entities: - type: Transform pos: -8.110996,-30.369019 parent: 2 + - uid: 10490 + components: + - type: Transform + pos: -25.949974,13.827489 + parent: 2 - uid: 12591 components: - type: Transform pos: 44.06748,10.642064 parent: 2 - - uid: 18509 - components: - - type: Transform - pos: 77.597916,-42.372047 - parent: 2 - uid: 18977 components: - type: Transform pos: -25.650852,22.879078 parent: 2 - - uid: 20577 - components: - - type: Transform - pos: -41.089443,-3.3901587 - parent: 2 - proto: Bed entities: - uid: 799 @@ -28693,11 +29944,6 @@ entities: - type: Transform pos: 38.5,-1.5 parent: 2 - - uid: 1897 - components: - - type: Transform - pos: -44.5,7.5 - parent: 2 - uid: 2559 components: - type: Transform @@ -28748,6 +29994,16 @@ entities: - type: Transform pos: -7.5,19.5 parent: 2 + - uid: 11884 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 11932 + components: + - type: Transform + pos: -44.5,3.5 + parent: 2 - uid: 12870 components: - type: Transform @@ -28758,11 +30014,6 @@ entities: - type: Transform pos: -52.5,-21.5 parent: 2 - - uid: 13722 - components: - - type: Transform - pos: -46.5,7.5 - parent: 2 - uid: 13733 components: - type: Transform @@ -28788,25 +30039,35 @@ entities: - type: Transform pos: 24.5,-59.5 parent: 2 - - uid: 15342 + - uid: 16501 components: - type: Transform - pos: -22.5,12.5 + pos: -45.5,10.5 + parent: 2 + - uid: 17736 + components: + - type: Transform + pos: -39.5,8.5 parent: 2 - uid: 18411 components: - type: Transform pos: 35.5,26.5 parent: 2 + - uid: 18618 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 - uid: 18843 components: - type: Transform pos: 64.5,-82.5 parent: 2 - - uid: 18921 + - uid: 19007 components: - type: Transform - pos: -46.5,-0.5 + pos: -40.5,17.5 parent: 2 - uid: 23331 components: @@ -28877,11 +30138,11 @@ entities: parent: 2 - proto: BedsheetHOS entities: - - uid: 15335 + - uid: 11291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,12.5 + rot: -1.5707963267948966 rad + pos: -44.5,3.5 parent: 2 - proto: BedsheetMedical entities: @@ -28919,10 +30180,10 @@ entities: parent: 2 - proto: BedsheetRed entities: - - uid: 7521 + - uid: 16651 components: - type: Transform - pos: -30.5,11.5 + pos: -45.5,10.5 parent: 2 - proto: BedsheetSpawner entities: @@ -28931,11 +30192,6 @@ entities: - type: Transform pos: 7.5,-45.5 parent: 2 - - uid: 650 - components: - - type: Transform - pos: -46.5,7.5 - parent: 2 - uid: 822 components: - type: Transform @@ -28961,10 +30217,10 @@ entities: - type: Transform pos: 39.5,0.5 parent: 2 - - uid: 11838 + - uid: 11907 components: - type: Transform - pos: -44.5,7.5 + pos: -21.5,-6.5 parent: 2 - uid: 11963 components: @@ -28976,11 +30232,6 @@ entities: - type: Transform pos: 7.5,-41.5 parent: 2 - - uid: 17060 - components: - - type: Transform - pos: -46.5,-0.5 - parent: 2 - uid: 17711 components: - type: Transform @@ -28991,6 +30242,21 @@ entities: - type: Transform pos: 38.5,25.5 parent: 2 + - uid: 19009 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 19561 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 19562 + components: + - type: Transform + pos: -40.5,17.5 + parent: 2 - proto: BikeHorn entities: - uid: 6177 @@ -29019,10 +30285,10 @@ entities: parent: 2 - proto: Biogenerator entities: - - uid: 2645 + - uid: 1945 components: - type: Transform - pos: -42.5,-3.5 + pos: -27.5,16.5 parent: 2 - uid: 22709 components: @@ -29103,6 +30369,11 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-7.5 parent: 2 + - uid: 10652 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 - uid: 12822 components: - type: Transform @@ -29123,6 +30394,24 @@ entities: - type: Transform pos: 11.5,5.5 parent: 2 + - uid: 15663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-10.5 + parent: 2 + - uid: 15916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-16.5 + parent: 2 + - uid: 16039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-16.5 + parent: 2 - uid: 18130 components: - type: Transform @@ -29167,6 +30456,11 @@ entities: - type: Transform pos: 37.41686,-27.151522 parent: 2 + - uid: 11164 + components: + - type: Transform + pos: -45.659554,-5.2517347 + parent: 2 - uid: 16321 components: - type: Transform @@ -29334,42 +30628,47 @@ entities: - type: Transform pos: 15.5,-35.5 parent: 2 - - uid: 16885 + - uid: 10018 components: - type: Transform - pos: -40.5,7.5 + pos: -38.5,16.5 parent: 2 - - uid: 16886 + - uid: 10136 components: - type: Transform - pos: -41.5,7.5 + pos: -38.5,17.5 parent: 2 - - uid: 19131 + - uid: 10314 components: - type: Transform - pos: -36.5,4.5 + pos: -33.5,17.5 parent: 2 - - uid: 19132 + - uid: 10317 components: - type: Transform - pos: -37.5,4.5 + pos: -33.5,16.5 parent: 2 - - uid: 19133 + - uid: 10409 components: - type: Transform - pos: -38.5,4.5 + pos: -33.5,15.5 parent: 2 - - uid: 20479 + - uid: 10413 components: - type: Transform - pos: -36.5,7.5 + pos: -34.5,15.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + pos: -35.5,15.5 parent: 2 - proto: BookSpaceLaw entities: - - uid: 497 + - uid: 11943 components: - type: Transform - pos: -27.30025,13.51906 + pos: -46.478004,-4.3206606 parent: 2 - proto: BoozeDispenser entities: @@ -29402,26 +30701,26 @@ entities: - type: Transform pos: 21.5,-18.5 parent: 2 - - uid: 16585 + - uid: 16848 components: - type: Transform - pos: -63.5,-11.5 + pos: 86.5,-44.5 parent: 2 - - uid: 16586 + - uid: 17080 components: - type: Transform - pos: -63.5,-13.5 + pos: 86.5,-40.5 + parent: 2 + - uid: 17636 + components: + - type: Transform + pos: -40.5,9.5 parent: 2 - uid: 18547 components: - type: Transform pos: 27.5,-24.5 parent: 2 - - uid: 20529 - components: - - type: Transform - pos: -43.5,-1.5 - parent: 2 - proto: BorgModuleGardening entities: - uid: 15620 @@ -29448,11 +30747,6 @@ entities: parent: 2 - proto: BoxBodyBag entities: - - uid: 448 - components: - - type: Transform - pos: -28.647797,12.72903 - parent: 2 - uid: 14107 components: - type: Transform @@ -29465,6 +30759,11 @@ entities: - type: Transform pos: 21.537186,-52.375385 parent: 2 + - uid: 24221 + components: + - type: Transform + pos: -30.725948,17.807482 + parent: 2 - proto: BoxEnvelope entities: - uid: 11463 @@ -29472,13 +30771,6 @@ entities: - type: Transform pos: 15.719751,14.547237 parent: 2 -- proto: BoxEvidenceMarkers - entities: - - uid: 462 - components: - - type: Transform - pos: -27.699253,13.781265 - parent: 2 - proto: BoxFlare entities: - uid: 21970 @@ -29493,10 +30785,10 @@ entities: parent: 2 - proto: BoxFlashbang entities: - - uid: 3955 + - uid: 11933 components: - type: Transform - pos: -27.031143,15.570824 + pos: -46.510376,-3.3572736 parent: 2 - proto: BoxFolderBlack entities: @@ -29554,6 +30846,11 @@ entities: - type: Transform pos: -50.387123,-43.41601 parent: 2 + - uid: 24548 + components: + - type: Transform + pos: 51.482468,-39.306274 + parent: 2 - proto: BoxFolderRed entities: - uid: 861 @@ -29580,10 +30877,10 @@ entities: parent: 2 - proto: BoxHandcuff entities: - - uid: 92 + - uid: 11942 components: - type: Transform - pos: -26.883673,15.703636 + pos: -46.385307,-3.5761762 parent: 2 - proto: BoxInflatable entities: @@ -29604,11 +30901,6 @@ entities: parent: 2 - proto: BoxingBell entities: - - uid: 411 - components: - - type: Transform - pos: 53.5,-37.5 - parent: 2 - uid: 1003 components: - type: Transform @@ -29628,6 +30920,13 @@ entities: - type: Transform pos: 46.489723,11.467377 parent: 2 +- proto: BoxLightbulbColorfulMixed + entities: + - uid: 2638 + components: + - type: Transform + pos: -23.65985,21.907179 + parent: 2 - proto: BoxLightMixed entities: - uid: 268 @@ -29660,12 +30959,19 @@ entities: - type: Transform pos: 25.037739,-0.26073742 parent: 2 -- proto: BoxMagazinePistol +- proto: BoxLighttubeColorfulMixed entities: - - uid: 15575 + - uid: 1283 components: - type: Transform - pos: -27.217897,6.6993713 + pos: -23.409725,21.646582 + parent: 2 +- proto: BoxMagazinePistol + entities: + - uid: 156 + components: + - type: Transform + pos: -26.85373,-6.388644 parent: 2 - proto: BoxMouthSwab entities: @@ -29681,10 +30987,15 @@ entities: parent: 2 - proto: BoxMRE entities: - - uid: 12054 + - uid: 12213 components: - type: Transform - pos: -34.59536,0.72473717 + pos: -29.344463,1.3928251 + parent: 2 + - uid: 24202 + components: + - type: Transform + pos: -30.304073,17.838732 parent: 2 - proto: BoxPerformer entities: @@ -29712,10 +31023,10 @@ entities: - type: Transform pos: 26.481653,-0.31531549 parent: 2 - - uid: 10195 + - uid: 12179 components: - type: Transform - pos: -34.42861,0.5996504 + pos: -29.498426,1.7268639 parent: 2 - proto: BoxWarmLightbulb entities: @@ -29780,15 +31091,6 @@ entities: - type: Transform pos: -44.51362,-29.417643 parent: 2 -- proto: Brutepack1 - entities: - - uid: 2253 - components: - - type: Transform - pos: 51.635765,-37.337482 - parent: 2 - - type: Stack - count: 6 - proto: Bucket entities: - uid: 1216 @@ -29858,29 +31160,17 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-33.5 parent: 2 - - uid: 594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,12.5 - parent: 2 - uid: 654 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-35.5 parent: 2 - - uid: 668 + - uid: 1694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,1.5 - parent: 2 - - uid: 3694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-5.5 + rot: 1.5707963267948966 rad + pos: -23.5,-7.5 parent: 2 - uid: 5481 components: @@ -29922,6 +31212,12 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-54.5 parent: 2 + - uid: 12324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,0.5 + parent: 2 - uid: 15432 components: - type: Transform @@ -29951,6 +31247,17 @@ entities: - type: Transform pos: -1.5,-42.5 parent: 2 + - uid: 19648 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 20773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,2.5 + parent: 2 - uid: 21222 components: - type: Transform @@ -29975,18 +31282,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-35.5 parent: 2 - - uid: 22711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,9.5 - parent: 2 - - uid: 22718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,14.5 - parent: 2 - uid: 22774 components: - type: Transform @@ -30015,18 +31310,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-7.5 parent: 2 - - uid: 23933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-5.5 - parent: 2 - - uid: 23948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-5.5 - parent: 2 - proto: ButtonFrameExit entities: - uid: 1561 @@ -30104,11 +31387,6 @@ entities: parent: 2 - proto: ButtonFrameJanitor entities: - - uid: 407 - components: - - type: Transform - pos: -18.5,0.5 - parent: 2 - uid: 16116 components: - type: Transform @@ -30139,13 +31417,14 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-38.5 parent: 2 -- proto: CableApcExtension - entities: - - uid: 3 + - uid: 24051 components: - type: Transform - pos: -15.5,5.5 + rot: -1.5707963267948966 rad + pos: -23.5,-7.5 parent: 2 +- proto: CableApcExtension + entities: - uid: 17 components: - type: Transform @@ -30161,11 +31440,6 @@ entities: - type: Transform pos: -18.5,32.5 parent: 2 - - uid: 85 - components: - - type: Transform - pos: -38.5,4.5 - parent: 2 - uid: 87 components: - type: Transform @@ -30196,21 +31470,11 @@ entities: - type: Transform pos: -14.5,-49.5 parent: 2 - - uid: 139 - components: - - type: Transform - pos: -33.5,9.5 - parent: 2 - uid: 162 components: - type: Transform pos: 25.5,-14.5 parent: 2 - - uid: 179 - components: - - type: Transform - pos: -43.5,0.5 - parent: 2 - uid: 180 components: - type: Transform @@ -30246,15 +31510,10 @@ entities: - type: Transform pos: -63.5,-60.5 parent: 2 - - uid: 224 + - uid: 223 components: - type: Transform - pos: -24.5,-7.5 - parent: 2 - - uid: 225 - components: - - type: Transform - pos: -51.5,-2.5 + pos: -37.5,-15.5 parent: 2 - uid: 329 components: @@ -30266,51 +31525,11 @@ entities: - type: Transform pos: 5.5,17.5 parent: 2 - - uid: 352 - components: - - type: Transform - pos: -44.5,10.5 - parent: 2 - - uid: 364 - components: - - type: Transform - pos: -47.5,10.5 - parent: 2 - - uid: 379 - components: - - type: Transform - pos: -43.5,7.5 - parent: 2 - uid: 382 components: - type: Transform pos: 4.5,11.5 parent: 2 - - uid: 385 - components: - - type: Transform - pos: -48.5,10.5 - parent: 2 - - uid: 386 - components: - - type: Transform - pos: -43.5,9.5 - parent: 2 - - uid: 388 - components: - - type: Transform - pos: -43.5,10.5 - parent: 2 - - uid: 398 - components: - - type: Transform - pos: -38.5,-7.5 - parent: 2 - - uid: 412 - components: - - type: Transform - pos: -24.5,-11.5 - parent: 2 - uid: 421 components: - type: Transform @@ -30326,16 +31545,6 @@ entities: - type: Transform pos: 4.5,17.5 parent: 2 - - uid: 437 - components: - - type: Transform - pos: -20.5,-4.5 - parent: 2 - - uid: 439 - components: - - type: Transform - pos: -23.5,-3.5 - parent: 2 - uid: 445 components: - type: Transform @@ -30391,11 +31600,6 @@ entities: - type: Transform pos: 4.5,18.5 parent: 2 - - uid: 547 - components: - - type: Transform - pos: -25.5,12.5 - parent: 2 - uid: 561 components: - type: Transform @@ -30466,96 +31670,31 @@ entities: - type: Transform pos: 21.5,24.5 parent: 2 - - uid: 615 - components: - - type: Transform - pos: -15.5,0.5 - parent: 2 - - uid: 630 - components: - - type: Transform - pos: -25.5,17.5 - parent: 2 - uid: 636 components: - type: Transform pos: -7.5,-4.5 parent: 2 - - uid: 651 - components: - - type: Transform - pos: -50.5,-3.5 - parent: 2 - uid: 653 components: - type: Transform pos: -20.5,33.5 parent: 2 - - uid: 656 - components: - - type: Transform - pos: -50.5,8.5 - parent: 2 - uid: 659 components: - type: Transform pos: -8.5,0.5 parent: 2 - - uid: 663 - components: - - type: Transform - pos: -15.5,1.5 - parent: 2 - - uid: 667 - components: - - type: Transform - pos: -32.5,13.5 - parent: 2 - - uid: 670 - components: - - type: Transform - pos: -51.5,7.5 - parent: 2 - - uid: 671 - components: - - type: Transform - pos: -53.5,3.5 - parent: 2 - - uid: 673 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 2 - - uid: 680 - components: - - type: Transform - pos: -40.5,-0.5 - parent: 2 - uid: 681 components: - type: Transform pos: 20.5,22.5 parent: 2 - - uid: 683 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 2 - uid: 688 components: - type: Transform pos: 14.5,-17.5 parent: 2 - - uid: 690 - components: - - type: Transform - pos: -32.5,-10.5 - parent: 2 - - uid: 699 - components: - - type: Transform - pos: -20.5,-6.5 - parent: 2 - uid: 744 components: - type: Transform @@ -30591,11 +31730,6 @@ entities: - type: Transform pos: 11.5,-17.5 parent: 2 - - uid: 796 - components: - - type: Transform - pos: -37.5,23.5 - parent: 2 - uid: 827 components: - type: Transform @@ -30631,11 +31765,6 @@ entities: - type: Transform pos: -21.5,-41.5 parent: 2 - - uid: 909 - components: - - type: Transform - pos: -25.5,6.5 - parent: 2 - uid: 915 components: - type: Transform @@ -30644,12 +31773,7 @@ entities: - uid: 924 components: - type: Transform - pos: -33.5,23.5 - parent: 2 - - uid: 925 - components: - - type: Transform - pos: -32.5,9.5 + pos: -28.5,-12.5 parent: 2 - uid: 926 components: @@ -30721,11 +31845,6 @@ entities: - type: Transform pos: -8.5,16.5 parent: 2 - - uid: 959 - components: - - type: Transform - pos: -33.5,16.5 - parent: 2 - uid: 963 components: - type: Transform @@ -30751,11 +31870,6 @@ entities: - type: Transform pos: -6.5,16.5 parent: 2 - - uid: 974 - components: - - type: Transform - pos: -33.5,15.5 - parent: 2 - uid: 1017 components: - type: Transform @@ -30791,16 +31905,6 @@ entities: - type: Transform pos: -7.5,17.5 parent: 2 - - uid: 1080 - components: - - type: Transform - pos: -48.5,-3.5 - parent: 2 - - uid: 1081 - components: - - type: Transform - pos: -47.5,-1.5 - parent: 2 - uid: 1090 components: - type: Transform @@ -30811,25 +31915,40 @@ entities: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 1172 - components: - - type: Transform - pos: -36.5,23.5 - parent: 2 - uid: 1175 components: - type: Transform pos: 19.5,14.5 parent: 2 - - uid: 1182 + - uid: 1196 components: - type: Transform - pos: -23.5,7.5 + pos: -20.5,-15.5 parent: 2 - - uid: 1238 + - uid: 1205 components: - type: Transform - pos: -25.5,3.5 + pos: -21.5,20.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -35.5,-15.5 parent: 2 - uid: 1262 components: @@ -30861,11 +31980,6 @@ entities: - type: Transform pos: -8.5,20.5 parent: 2 - - uid: 1299 - components: - - type: Transform - pos: -18.5,14.5 - parent: 2 - uid: 1306 components: - type: Transform @@ -31001,11 +32115,6 @@ entities: - type: Transform pos: 15.5,23.5 parent: 2 - - uid: 1517 - components: - - type: Transform - pos: -20.5,16.5 - parent: 2 - uid: 1520 components: - type: Transform @@ -31016,21 +32125,11 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 - - uid: 1527 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 2 - uid: 1528 components: - type: Transform pos: 8.5,15.5 parent: 2 - - uid: 1535 - components: - - type: Transform - pos: -32.5,8.5 - parent: 2 - uid: 1536 components: - type: Transform @@ -31041,11 +32140,6 @@ entities: - type: Transform pos: 19.5,22.5 parent: 2 - - uid: 1539 - components: - - type: Transform - pos: -47.5,6.5 - parent: 2 - uid: 1541 components: - type: Transform @@ -31186,21 +32280,11 @@ entities: - type: Transform pos: 3.5,7.5 parent: 2 - - uid: 1820 - components: - - type: Transform - pos: -33.5,17.5 - parent: 2 - uid: 1827 components: - type: Transform pos: -35.5,-58.5 parent: 2 - - uid: 1830 - components: - - type: Transform - pos: -23.5,-16.5 - parent: 2 - uid: 1835 components: - type: Transform @@ -31259,7 +32343,7 @@ entities: - uid: 1881 components: - type: Transform - pos: -34.5,-9.5 + pos: -38.5,-14.5 parent: 2 - uid: 1883 components: @@ -31276,6 +32360,11 @@ entities: - type: Transform pos: -3.5,-6.5 parent: 2 + - uid: 1905 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 2 - uid: 1907 components: - type: Transform @@ -31286,6 +32375,11 @@ entities: - type: Transform pos: 19.5,10.5 parent: 2 + - uid: 1960 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 - uid: 2032 components: - type: Transform @@ -31351,6 +32445,11 @@ entities: - type: Transform pos: 2.5,-0.5 parent: 2 + - uid: 2091 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 - uid: 2102 components: - type: Transform @@ -31361,16 +32460,6 @@ entities: - type: Transform pos: -0.5,-0.5 parent: 2 - - uid: 2105 - components: - - type: Transform - pos: -35.5,17.5 - parent: 2 - - uid: 2106 - components: - - type: Transform - pos: -30.5,19.5 - parent: 2 - uid: 2109 components: - type: Transform @@ -31421,6 +32510,11 @@ entities: - type: Transform pos: -11.5,-21.5 parent: 2 + - uid: 2162 + components: + - type: Transform + pos: -51.5,4.5 + parent: 2 - uid: 2167 components: - type: Transform @@ -31431,11 +32525,6 @@ entities: - type: Transform pos: 35.5,20.5 parent: 2 - - uid: 2183 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 2 - uid: 2188 components: - type: Transform @@ -31456,10 +32545,10 @@ entities: - type: Transform pos: -38.5,-57.5 parent: 2 - - uid: 2208 + - uid: 2207 components: - type: Transform - pos: -21.5,-3.5 + pos: -12.5,-2.5 parent: 2 - uid: 2218 components: @@ -31481,6 +32570,11 @@ entities: - type: Transform pos: 33.5,21.5 parent: 2 + - uid: 2251 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 - uid: 2254 components: - type: Transform @@ -31531,26 +32625,6 @@ entities: - type: Transform pos: 47.5,-29.5 parent: 2 - - uid: 2372 - components: - - type: Transform - pos: -25.5,14.5 - parent: 2 - - uid: 2373 - components: - - type: Transform - pos: -25.5,13.5 - parent: 2 - - uid: 2379 - components: - - type: Transform - pos: -22.5,4.5 - parent: 2 - - uid: 2388 - components: - - type: Transform - pos: -39.5,3.5 - parent: 2 - uid: 2401 components: - type: Transform @@ -31591,11 +32665,6 @@ entities: - type: Transform pos: -21.5,32.5 parent: 2 - - uid: 2448 - components: - - type: Transform - pos: -19.5,14.5 - parent: 2 - uid: 2460 components: - type: Transform @@ -31696,11 +32765,6 @@ entities: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 2500 - components: - - type: Transform - pos: -34.5,-7.5 - parent: 2 - uid: 2502 components: - type: Transform @@ -31741,46 +32805,51 @@ entities: - type: Transform pos: -28.5,-62.5 parent: 2 - - uid: 2566 - components: - - type: Transform - pos: -46.5,3.5 - parent: 2 - uid: 2568 components: - type: Transform pos: -12.5,-62.5 parent: 2 - - uid: 2595 + - uid: 2614 components: - type: Transform - pos: -45.5,3.5 + pos: -57.5,-10.5 parent: 2 - - uid: 2612 + - uid: 2615 components: - type: Transform - pos: -21.5,4.5 + pos: -30.5,23.5 parent: 2 - - uid: 2629 + - uid: 2632 components: - type: Transform - pos: -34.5,-10.5 + pos: -29.5,22.5 parent: 2 - - uid: 2636 + - uid: 2643 components: - type: Transform - pos: -32.5,11.5 + pos: -25.5,-14.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: -25.5,-11.5 parent: 2 - uid: 2649 components: - type: Transform pos: 24.5,-3.5 parent: 2 - - uid: 2652 - components: - - type: Transform - pos: -21.5,-15.5 - parent: 2 - uid: 2689 components: - type: Transform @@ -31801,125 +32870,160 @@ entities: - type: Transform pos: 1.5,-6.5 parent: 2 + - uid: 2705 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 - uid: 2730 components: - type: Transform pos: 21.5,14.5 parent: 2 - - uid: 2741 - components: - - type: Transform - pos: -25.5,-10.5 - parent: 2 - - uid: 2782 - components: - - type: Transform - pos: -19.5,-8.5 - parent: 2 - - uid: 2783 - components: - - type: Transform - pos: -21.5,-7.5 - parent: 2 - - uid: 2784 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 2 - - uid: 2785 - components: - - type: Transform - pos: -31.5,-10.5 - parent: 2 - - uid: 2786 - components: - - type: Transform - pos: -29.5,-10.5 - parent: 2 - uid: 2787 components: - type: Transform - pos: -30.5,-10.5 + pos: -57.5,-11.5 parent: 2 - - uid: 2788 + - uid: 2790 components: - type: Transform - pos: -26.5,-12.5 + pos: -51.5,-13.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: -53.5,-13.5 parent: 2 - uid: 2795 components: - type: Transform - pos: -20.5,-3.5 + pos: -54.5,-13.5 parent: 2 - uid: 2796 components: - type: Transform - pos: -22.5,-0.5 + pos: -55.5,-13.5 parent: 2 - uid: 2797 components: - type: Transform - pos: -23.5,-0.5 + pos: -56.5,-13.5 parent: 2 - uid: 2798 components: - type: Transform - pos: -24.5,-0.5 + pos: -57.5,-13.5 parent: 2 - uid: 2799 components: - type: Transform - pos: -25.5,-0.5 - parent: 2 - - uid: 2800 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 2 - - uid: 2801 - components: - - type: Transform - pos: -27.5,-0.5 - parent: 2 - - uid: 2802 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 2 - - uid: 2803 - components: - - type: Transform - pos: -29.5,-0.5 - parent: 2 - - uid: 2804 - components: - - type: Transform - pos: -26.5,-11.5 - parent: 2 - - uid: 2807 - components: - - type: Transform - pos: -29.5,0.5 + pos: -57.5,-12.5 parent: 2 - uid: 2808 components: - type: Transform - pos: -29.5,1.5 + pos: -50.5,-13.5 parent: 2 - uid: 2809 components: - type: Transform - pos: -29.5,2.5 + pos: -49.5,-13.5 parent: 2 - uid: 2810 components: - type: Transform - pos: -29.5,3.5 + pos: -48.5,-13.5 parent: 2 - uid: 2811 components: - type: Transform - pos: -22.5,-3.5 + pos: -47.5,-13.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: -55.5,-15.5 parent: 2 - uid: 2823 components: @@ -31929,27 +33033,52 @@ entities: - uid: 2824 components: - type: Transform - pos: -26.5,-13.5 + pos: -55.5,-16.5 parent: 2 - uid: 2826 components: - type: Transform - pos: -33.5,-11.5 + pos: -55.5,-17.5 parent: 2 - uid: 2827 components: - type: Transform pos: -11.5,-62.5 parent: 2 + - uid: 2829 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 2 - uid: 2831 components: - type: Transform pos: -8.5,11.5 parent: 2 + - uid: 2832 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 2 - uid: 2833 components: - type: Transform - pos: -20.5,14.5 + pos: -53.5,-18.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: -53.5,-10.5 parent: 2 - uid: 2838 components: @@ -31961,10 +33090,15 @@ entities: - type: Transform pos: -9.5,11.5 parent: 2 + - uid: 2842 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 - uid: 2843 components: - type: Transform - pos: -25.5,10.5 + pos: -53.5,-8.5 parent: 2 - uid: 2844 components: @@ -31976,35 +33110,45 @@ entities: - type: Transform pos: -11.5,11.5 parent: 2 + - uid: 2849 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 2 - uid: 2850 components: - type: Transform - pos: -26.5,10.5 + pos: -51.5,-8.5 parent: 2 - uid: 2851 components: - type: Transform - pos: -27.5,10.5 + pos: -51.5,-7.5 parent: 2 - uid: 2852 components: - type: Transform - pos: -28.5,10.5 + pos: -51.5,-6.5 parent: 2 - uid: 2853 components: - type: Transform - pos: -29.5,10.5 + pos: -51.5,-5.5 parent: 2 - uid: 2854 components: - type: Transform - pos: -25.5,11.5 + pos: -51.5,-4.5 parent: 2 - uid: 2857 components: - type: Transform - pos: -15.5,7.5 + pos: -51.5,-3.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + pos: -55.5,-2.5 parent: 2 - uid: 2861 components: @@ -32016,6 +33160,11 @@ entities: - type: Transform pos: 48.5,-32.5 parent: 2 + - uid: 2865 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 - uid: 2866 components: - type: Transform @@ -32024,28 +33173,83 @@ entities: - uid: 2867 components: - type: Transform - pos: -15.5,6.5 + pos: -55.5,-0.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: -55.5,1.5 parent: 2 - uid: 2874 components: - type: Transform - pos: -20.5,-0.5 + pos: -54.5,1.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: -53.5,1.5 parent: 2 - uid: 2877 components: - type: Transform pos: 18.5,-7.5 parent: 2 + - uid: 2880 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 2 - uid: 2889 components: - type: Transform pos: -19.5,27.5 parent: 2 + - uid: 2890 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 - uid: 2892 components: - type: Transform pos: -29.5,-60.5 parent: 2 + - uid: 2896 + components: + - type: Transform + pos: -48.5,12.5 + parent: 2 - uid: 2904 components: - type: Transform @@ -32081,16 +33285,46 @@ entities: - type: Transform pos: -8.5,9.5 parent: 2 + - uid: 2950 + components: + - type: Transform + pos: -48.5,11.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + pos: -48.5,10.5 + parent: 2 - uid: 2954 components: - type: Transform pos: -2.5,-6.5 parent: 2 + - uid: 2964 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: -48.5,8.5 + parent: 2 - uid: 2974 components: - type: Transform pos: -3.5,-12.5 parent: 2 + - uid: 2986 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 - uid: 2989 components: - type: Transform @@ -32101,11 +33335,21 @@ entities: - type: Transform pos: -17.5,29.5 parent: 2 + - uid: 2996 + components: + - type: Transform + pos: -48.5,5.5 + parent: 2 - uid: 2997 components: - type: Transform pos: 58.5,-49.5 parent: 2 + - uid: 2998 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 - uid: 2999 components: - type: Transform @@ -32121,10 +33365,45 @@ entities: - type: Transform pos: -20.5,22.5 parent: 2 + - uid: 3006 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: -54.5,5.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 + - uid: 3021 + components: + - type: Transform + pos: -54.5,7.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: -54.5,8.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 - uid: 3036 components: - type: Transform - pos: -32.5,10.5 + pos: -49.5,7.5 parent: 2 - uid: 3038 components: @@ -32146,11 +33425,41 @@ entities: - type: Transform pos: -7.5,22.5 parent: 2 + - uid: 3069 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + pos: -53.5,8.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: -52.5,8.5 + parent: 2 - uid: 3077 components: - type: Transform pos: 1.5,-35.5 parent: 2 + - uid: 3095 + components: + - type: Transform + pos: -51.5,8.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: -50.5,8.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: -53.5,9.5 + parent: 2 - uid: 3104 components: - type: Transform @@ -32161,30 +33470,175 @@ entities: - type: Transform pos: 31.5,-62.5 parent: 2 + - uid: 3114 + components: + - type: Transform + pos: -53.5,10.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 3119 + components: + - type: Transform + pos: -53.5,12.5 + parent: 2 + - uid: 3120 + components: + - type: Transform + pos: -53.5,13.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: -53.5,14.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: -53.5,15.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: -52.5,15.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + pos: -50.5,15.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 3198 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 - uid: 3200 components: - type: Transform pos: 31.5,-57.5 parent: 2 + - uid: 3201 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 3204 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 3206 + components: + - type: Transform + pos: -47.5,15.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: -46.5,15.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: -45.5,15.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: -52.5,23.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: -52.5,22.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: -52.5,21.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: -52.5,20.5 + parent: 2 - uid: 3278 components: - type: Transform - pos: -24.5,7.5 + pos: -52.5,19.5 parent: 2 - uid: 3280 components: - type: Transform - pos: -25.5,5.5 + pos: -52.5,18.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: -52.5,17.5 parent: 2 - uid: 3296 components: - type: Transform pos: 1.5,-36.5 parent: 2 + - uid: 3322 + components: + - type: Transform + pos: -52.5,16.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: -49.5,16.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: -48.5,19.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: -49.5,19.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: -47.5,19.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: -47.5,20.5 + parent: 2 - uid: 3390 components: - type: Transform - pos: -21.5,16.5 + pos: -47.5,21.5 parent: 2 - uid: 3400 components: @@ -32351,11 +33805,6 @@ entities: - type: Transform pos: 24.5,-54.5 parent: 2 - - uid: 4047 - components: - - type: Transform - pos: -16.5,-1.5 - parent: 2 - uid: 4052 components: - type: Transform @@ -32391,11 +33840,6 @@ entities: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 4362 - components: - - type: Transform - pos: -17.5,-1.5 - parent: 2 - uid: 4421 components: - type: Transform @@ -32446,6 +33890,16 @@ entities: - type: Transform pos: 10.5,-17.5 parent: 2 + - uid: 4696 + components: + - type: Transform + pos: -33.5,21.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + pos: -33.5,22.5 + parent: 2 - uid: 4727 components: - type: Transform @@ -32454,7 +33908,17 @@ entities: - uid: 4741 components: - type: Transform - pos: -29.5,-14.5 + pos: -33.5,23.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: -32.5,23.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: -31.5,23.5 parent: 2 - uid: 4790 components: @@ -32491,6 +33955,11 @@ entities: - type: Transform pos: -27.5,-62.5 parent: 2 + - uid: 4854 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 - uid: 4968 components: - type: Transform @@ -32521,11 +33990,6 @@ entities: - type: Transform pos: 36.5,7.5 parent: 2 - - uid: 5173 - components: - - type: Transform - pos: -46.5,-4.5 - parent: 2 - uid: 5205 components: - type: Transform @@ -32566,36 +34030,16 @@ entities: - type: Transform pos: -9.5,14.5 parent: 2 + - uid: 5281 + components: + - type: Transform + pos: 56.5,-38.5 + parent: 2 - uid: 5291 components: - type: Transform pos: -29.5,-43.5 parent: 2 - - uid: 5320 - components: - - type: Transform - pos: -34.5,23.5 - parent: 2 - - uid: 5333 - components: - - type: Transform - pos: -47.5,-0.5 - parent: 2 - - uid: 5359 - components: - - type: Transform - pos: -29.5,25.5 - parent: 2 - - uid: 5360 - components: - - type: Transform - pos: -31.5,25.5 - parent: 2 - - uid: 5361 - components: - - type: Transform - pos: -30.5,25.5 - parent: 2 - uid: 5364 components: - type: Transform @@ -32661,11 +34105,6 @@ entities: - type: Transform pos: 5.5,11.5 parent: 2 - - uid: 5466 - components: - - type: Transform - pos: -31.5,6.5 - parent: 2 - uid: 5468 components: - type: Transform @@ -32701,11 +34140,6 @@ entities: - type: Transform pos: 45.5,-5.5 parent: 2 - - uid: 5484 - components: - - type: Transform - pos: -29.5,5.5 - parent: 2 - uid: 5496 components: - type: Transform @@ -32721,11 +34155,6 @@ entities: - type: Transform pos: 57.5,-55.5 parent: 2 - - uid: 5535 - components: - - type: Transform - pos: -47.5,-3.5 - parent: 2 - uid: 5550 components: - type: Transform @@ -32821,11 +34250,6 @@ entities: - type: Transform pos: 10.5,1.5 parent: 2 - - uid: 5768 - components: - - type: Transform - pos: -31.5,7.5 - parent: 2 - uid: 5802 components: - type: Transform @@ -32836,11 +34260,6 @@ entities: - type: Transform pos: -7.5,-48.5 parent: 2 - - uid: 5810 - components: - - type: Transform - pos: -31.5,8.5 - parent: 2 - uid: 5824 components: - type: Transform @@ -32891,11 +34310,6 @@ entities: - type: Transform pos: 27.5,3.5 parent: 2 - - uid: 6073 - components: - - type: Transform - pos: -35.5,23.5 - parent: 2 - uid: 6097 components: - type: Transform @@ -32971,11 +34385,6 @@ entities: - type: Transform pos: -53.5,-22.5 parent: 2 - - uid: 6526 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 2 - uid: 6542 components: - type: Transform @@ -33016,21 +34425,6 @@ entities: - type: Transform pos: 2.5,28.5 parent: 2 - - uid: 6582 - components: - - type: Transform - pos: -24.5,-16.5 - parent: 2 - - uid: 6595 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 2 - - uid: 6596 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 2 - uid: 6619 components: - type: Transform @@ -33041,6 +34435,11 @@ entities: - type: Transform pos: 31.5,-63.5 parent: 2 + - uid: 6643 + components: + - type: Transform + pos: -37.5,25.5 + parent: 2 - uid: 6664 components: - type: Transform @@ -33096,16 +34495,41 @@ entities: - type: Transform pos: 26.5,-6.5 parent: 2 + - uid: 6885 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + pos: -38.5,26.5 + parent: 2 - uid: 6889 components: - type: Transform pos: 35.5,6.5 parent: 2 + - uid: 6892 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 - uid: 6901 components: - type: Transform pos: 15.5,19.5 parent: 2 + - uid: 6910 + components: + - type: Transform + pos: -38.5,28.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + pos: -38.5,29.5 + parent: 2 - uid: 6914 components: - type: Transform @@ -33114,12 +34538,12 @@ entities: - uid: 6938 components: - type: Transform - pos: -21.5,-8.5 + pos: -38.5,30.5 parent: 2 - uid: 6941 components: - type: Transform - pos: -33.5,-6.5 + pos: -38.5,31.5 parent: 2 - uid: 6947 components: @@ -33129,7 +34553,42 @@ entities: - uid: 6955 components: - type: Transform - pos: -30.5,24.5 + pos: -38.5,32.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: -40.5,29.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + pos: -43.5,29.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: -44.5,29.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + pos: -45.5,29.5 parent: 2 - uid: 6986 components: @@ -33146,11 +34605,6 @@ entities: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 7009 - components: - - type: Transform - pos: -30.5,1.5 - parent: 2 - uid: 7023 components: - type: Transform @@ -33166,11 +34620,6 @@ entities: - type: Transform pos: -10.5,-21.5 parent: 2 - - uid: 7038 - components: - - type: Transform - pos: -33.5,-10.5 - parent: 2 - uid: 7040 components: - type: Transform @@ -33246,16 +34695,6 @@ entities: - type: Transform pos: -57.5,-55.5 parent: 2 - - uid: 7183 - components: - - type: Transform - pos: -19.5,16.5 - parent: 2 - - uid: 7193 - components: - - type: Transform - pos: -21.5,12.5 - parent: 2 - uid: 7214 components: - type: Transform @@ -33326,31 +34765,11 @@ entities: - type: Transform pos: 30.5,-64.5 parent: 2 - - uid: 7289 - components: - - type: Transform - pos: -31.5,21.5 - parent: 2 - uid: 7290 components: - type: Transform pos: 31.5,-60.5 parent: 2 - - uid: 7291 - components: - - type: Transform - pos: -30.5,16.5 - parent: 2 - - uid: 7302 - components: - - type: Transform - pos: -30.5,18.5 - parent: 2 - - uid: 7303 - components: - - type: Transform - pos: -30.5,17.5 - parent: 2 - uid: 7328 components: - type: Transform @@ -33416,11 +34835,6 @@ entities: - type: Transform pos: 17.5,8.5 parent: 2 - - uid: 7625 - components: - - type: Transform - pos: -31.5,20.5 - parent: 2 - uid: 7636 components: - type: Transform @@ -33466,36 +34880,11 @@ entities: - type: Transform pos: 43.5,-37.5 parent: 2 - - uid: 7781 - components: - - type: Transform - pos: -52.5,7.5 - parent: 2 - - uid: 7821 - components: - - type: Transform - pos: -21.5,3.5 - parent: 2 - - uid: 7822 - components: - - type: Transform - pos: -21.5,5.5 - parent: 2 - - uid: 7834 - components: - - type: Transform - pos: -49.5,-3.5 - parent: 2 - uid: 7840 components: - type: Transform pos: -50.5,-51.5 parent: 2 - - uid: 7842 - components: - - type: Transform - pos: -50.5,7.5 - parent: 2 - uid: 7861 components: - type: Transform @@ -33551,16 +34940,6 @@ entities: - type: Transform pos: 40.5,-6.5 parent: 2 - - uid: 7999 - components: - - type: Transform - pos: -52.5,-1.5 - parent: 2 - - uid: 8002 - components: - - type: Transform - pos: -50.5,9.5 - parent: 2 - uid: 8030 components: - type: Transform @@ -33586,11 +34965,6 @@ entities: - type: Transform pos: 0.5,11.5 parent: 2 - - uid: 8146 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 2 - uid: 8163 components: - type: Transform @@ -33626,11 +35000,6 @@ entities: - type: Transform pos: -8.5,-18.5 parent: 2 - - uid: 8263 - components: - - type: Transform - pos: -17.5,-1.5 - parent: 2 - uid: 8275 components: - type: Transform @@ -33671,11 +35040,6 @@ entities: - type: Transform pos: -48.5,-53.5 parent: 2 - - uid: 8359 - components: - - type: Transform - pos: -65.5,-16.5 - parent: 2 - uid: 8375 components: - type: Transform @@ -33691,36 +35055,11 @@ entities: - type: Transform pos: 5.5,28.5 parent: 2 - - uid: 8411 - components: - - type: Transform - pos: -51.5,-12.5 - parent: 2 - - uid: 8464 - components: - - type: Transform - pos: -43.5,8.5 - parent: 2 - - uid: 8480 - components: - - type: Transform - pos: -48.5,-12.5 - parent: 2 - - uid: 8488 - components: - - type: Transform - pos: -46.5,10.5 - parent: 2 - uid: 8495 components: - type: Transform pos: 4.5,-17.5 parent: 2 - - uid: 8499 - components: - - type: Transform - pos: -19.5,4.5 - parent: 2 - uid: 8540 components: - type: Transform @@ -33881,46 +35220,16 @@ entities: - type: Transform pos: -25.5,-52.5 parent: 2 - - uid: 8994 - components: - - type: Transform - pos: -31.5,23.5 - parent: 2 - - uid: 8995 - components: - - type: Transform - pos: -30.5,23.5 - parent: 2 - - uid: 9000 - components: - - type: Transform - pos: -20.5,4.5 - parent: 2 - uid: 9002 components: - type: Transform pos: -1.5,23.5 parent: 2 - - uid: 9004 - components: - - type: Transform - pos: -28.5,20.5 - parent: 2 - - uid: 9005 - components: - - type: Transform - pos: -30.5,20.5 - parent: 2 - uid: 9008 components: - type: Transform pos: 27.5,24.5 parent: 2 - - uid: 9010 - components: - - type: Transform - pos: -29.5,20.5 - parent: 2 - uid: 9012 components: - type: Transform @@ -33931,11 +35240,6 @@ entities: - type: Transform pos: 3.5,26.5 parent: 2 - - uid: 9016 - components: - - type: Transform - pos: -27.5,20.5 - parent: 2 - uid: 9062 components: - type: Transform @@ -34031,21 +35335,11 @@ entities: - type: Transform pos: 48.5,2.5 parent: 2 - - uid: 9122 - components: - - type: Transform - pos: -32.5,14.5 - parent: 2 - uid: 9124 components: - type: Transform pos: 44.5,-3.5 parent: 2 - - uid: 9138 - components: - - type: Transform - pos: -43.5,4.5 - parent: 2 - uid: 9208 components: - type: Transform @@ -34096,36 +35390,16 @@ entities: - type: Transform pos: 15.5,-17.5 parent: 2 - - uid: 9574 - components: - - type: Transform - pos: -50.5,-12.5 - parent: 2 - uid: 9598 components: - type: Transform pos: 8.5,-12.5 parent: 2 - - uid: 9637 - components: - - type: Transform - pos: -49.5,-12.5 - parent: 2 - - uid: 9643 - components: - - type: Transform - pos: -47.5,-2.5 - parent: 2 - uid: 9653 components: - type: Transform pos: 35.5,25.5 parent: 2 - - uid: 9660 - components: - - type: Transform - pos: -49.5,10.5 - parent: 2 - uid: 9667 components: - type: Transform @@ -34141,11 +35415,6 @@ entities: - type: Transform pos: -24.5,-49.5 parent: 2 - - uid: 9719 - components: - - type: Transform - pos: -69.5,-15.5 - parent: 2 - uid: 9724 components: - type: Transform @@ -34301,11 +35570,6 @@ entities: - type: Transform pos: -13.5,-47.5 parent: 2 - - uid: 9812 - components: - - type: Transform - pos: -69.5,-9.5 - parent: 2 - uid: 9819 components: - type: Transform @@ -34411,11 +35675,6 @@ entities: - type: Transform pos: 30.5,-52.5 parent: 2 - - uid: 9862 - components: - - type: Transform - pos: -42.5,10.5 - parent: 2 - uid: 9867 components: - type: Transform @@ -34426,11 +35685,6 @@ entities: - type: Transform pos: 29.5,-53.5 parent: 2 - - uid: 9874 - components: - - type: Transform - pos: -65.5,-9.5 - parent: 2 - uid: 9878 components: - type: Transform @@ -34511,11 +35765,6 @@ entities: - type: Transform pos: -23.5,-53.5 parent: 2 - - uid: 9968 - components: - - type: Transform - pos: -43.5,6.5 - parent: 2 - uid: 9972 components: - type: Transform @@ -34591,11 +35840,6 @@ entities: - type: Transform pos: 32.5,2.5 parent: 2 - - uid: 10133 - components: - - type: Transform - pos: -44.5,3.5 - parent: 2 - uid: 10138 components: - type: Transform @@ -34661,16 +35905,6 @@ entities: - type: Transform pos: -52.5,-50.5 parent: 2 - - uid: 10198 - components: - - type: Transform - pos: -53.5,4.5 - parent: 2 - - uid: 10199 - components: - - type: Transform - pos: -40.5,0.5 - parent: 2 - uid: 10206 components: - type: Transform @@ -34691,11 +35925,6 @@ entities: - type: Transform pos: 29.5,11.5 parent: 2 - - uid: 10213 - components: - - type: Transform - pos: -40.5,1.5 - parent: 2 - uid: 10215 components: - type: Transform @@ -34716,11 +35945,6 @@ entities: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 10239 - components: - - type: Transform - pos: -49.5,-8.5 - parent: 2 - uid: 10248 components: - type: Transform @@ -34736,11 +35960,6 @@ entities: - type: Transform pos: 4.5,-22.5 parent: 2 - - uid: 10314 - components: - - type: Transform - pos: -30.5,-14.5 - parent: 2 - uid: 10315 components: - type: Transform @@ -35066,26 +36285,11 @@ entities: - type: Transform pos: -49.5,-50.5 parent: 2 - - uid: 10419 - components: - - type: Transform - pos: -51.5,-3.5 - parent: 2 - uid: 10443 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 10447 - components: - - type: Transform - pos: -70.5,-15.5 - parent: 2 - - uid: 10448 - components: - - type: Transform - pos: -70.5,-9.5 - parent: 2 - uid: 10473 components: - type: Transform @@ -35096,11 +36300,6 @@ entities: - type: Transform pos: -39.5,-54.5 parent: 2 - - uid: 10506 - components: - - type: Transform - pos: -53.5,6.5 - parent: 2 - uid: 10509 components: - type: Transform @@ -35116,11 +36315,6 @@ entities: - type: Transform pos: 23.5,-16.5 parent: 2 - - uid: 10566 - components: - - type: Transform - pos: -31.5,22.5 - parent: 2 - uid: 10570 components: - type: Transform @@ -35141,41 +36335,16 @@ entities: - type: Transform pos: -4.5,-8.5 parent: 2 - - uid: 10626 - components: - - type: Transform - pos: -19.5,-3.5 - parent: 2 - - uid: 10656 - components: - - type: Transform - pos: -50.5,10.5 - parent: 2 - - uid: 10668 - components: - - type: Transform - pos: -41.5,10.5 - parent: 2 - uid: 10675 components: - type: Transform pos: 2.5,-3.5 parent: 2 - - uid: 10676 - components: - - type: Transform - pos: -41.5,9.5 - parent: 2 - uid: 10677 components: - type: Transform pos: 9.5,-14.5 parent: 2 - - uid: 10682 - components: - - type: Transform - pos: -53.5,1.5 - parent: 2 - uid: 10712 components: - type: Transform @@ -35241,11 +36410,6 @@ entities: - type: Transform pos: 60.5,-54.5 parent: 2 - - uid: 10881 - components: - - type: Transform - pos: -53.5,-0.5 - parent: 2 - uid: 10886 components: - type: Transform @@ -35261,16 +36425,6 @@ entities: - type: Transform pos: 57.5,-61.5 parent: 2 - - uid: 10915 - components: - - type: Transform - pos: -53.5,5.5 - parent: 2 - - uid: 10923 - components: - - type: Transform - pos: -43.5,3.5 - parent: 2 - uid: 10937 components: - type: Transform @@ -35296,16 +36450,6 @@ entities: - type: Transform pos: 6.5,1.5 parent: 2 - - uid: 10966 - components: - - type: Transform - pos: -40.5,3.5 - parent: 2 - - uid: 10993 - components: - - type: Transform - pos: -38.5,-3.5 - parent: 2 - uid: 11036 components: - type: Transform @@ -35321,36 +36465,16 @@ entities: - type: Transform pos: 30.5,-65.5 parent: 2 - - uid: 11121 - components: - - type: Transform - pos: -48.5,-8.5 - parent: 2 - uid: 11163 components: - type: Transform pos: 24.5,11.5 parent: 2 - - uid: 11164 - components: - - type: Transform - pos: -25.5,7.5 - parent: 2 - - uid: 11166 - components: - - type: Transform - pos: -21.5,11.5 - parent: 2 - uid: 11172 components: - type: Transform pos: 16.5,29.5 parent: 2 - - uid: 11182 - components: - - type: Transform - pos: -49.5,3.5 - parent: 2 - uid: 11184 components: - type: Transform @@ -35386,11 +36510,6 @@ entities: - type: Transform pos: 16.5,-7.5 parent: 2 - - uid: 11224 - components: - - type: Transform - pos: -40.5,-1.5 - parent: 2 - uid: 11227 components: - type: Transform @@ -35401,11 +36520,6 @@ entities: - type: Transform pos: 16.5,-5.5 parent: 2 - - uid: 11242 - components: - - type: Transform - pos: -15.5,8.5 - parent: 2 - uid: 11250 components: - type: Transform @@ -35431,11 +36545,6 @@ entities: - type: Transform pos: 52.5,-52.5 parent: 2 - - uid: 11432 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 2 - uid: 11444 components: - type: Transform @@ -35661,11 +36770,6 @@ entities: - type: Transform pos: 13.5,21.5 parent: 2 - - uid: 11556 - components: - - type: Transform - pos: -53.5,0.5 - parent: 2 - uid: 11571 components: - type: Transform @@ -35701,21 +36805,6 @@ entities: - type: Transform pos: 45.5,-10.5 parent: 2 - - uid: 11618 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 2 - - uid: 11631 - components: - - type: Transform - pos: -24.5,-8.5 - parent: 2 - - uid: 11654 - components: - - type: Transform - pos: -52.5,-2.5 - parent: 2 - uid: 11703 components: - type: Transform @@ -36106,11 +37195,6 @@ entities: - type: Transform pos: -8.5,-11.5 parent: 2 - - uid: 11827 - components: - - type: Transform - pos: -21.5,10.5 - parent: 2 - uid: 11829 components: - type: Transform @@ -36261,16 +37345,6 @@ entities: - type: Transform pos: -13.5,-7.5 parent: 2 - - uid: 11925 - components: - - type: Transform - pos: -14.5,-7.5 - parent: 2 - - uid: 11926 - components: - - type: Transform - pos: -14.5,-8.5 - parent: 2 - uid: 11947 components: - type: Transform @@ -36296,21 +37370,11 @@ entities: - type: Transform pos: -0.5,-3.5 parent: 2 - - uid: 12004 - components: - - type: Transform - pos: -41.5,3.5 - parent: 2 - uid: 12008 components: - type: Transform pos: 9.5,-10.5 parent: 2 - - uid: 12010 - components: - - type: Transform - pos: -39.5,-1.5 - parent: 2 - uid: 12014 components: - type: Transform @@ -36331,16 +37395,6 @@ entities: - type: Transform pos: -4.5,-13.5 parent: 2 - - uid: 12025 - components: - - type: Transform - pos: -46.5,-3.5 - parent: 2 - - uid: 12067 - components: - - type: Transform - pos: -53.5,-1.5 - parent: 2 - uid: 12077 components: - type: Transform @@ -36471,26 +37525,11 @@ entities: - type: Transform pos: -11.5,24.5 parent: 2 - - uid: 12152 - components: - - type: Transform - pos: -38.5,3.5 - parent: 2 - - uid: 12213 - components: - - type: Transform - pos: -40.5,2.5 - parent: 2 - uid: 12230 components: - type: Transform pos: 48.5,-13.5 parent: 2 - - uid: 12256 - components: - - type: Transform - pos: -52.5,6.5 - parent: 2 - uid: 12257 components: - type: Transform @@ -36531,11 +37570,6 @@ entities: - type: Transform pos: 47.5,-13.5 parent: 2 - - uid: 12370 - components: - - type: Transform - pos: -25.5,4.5 - parent: 2 - uid: 12389 components: - type: Transform @@ -36576,21 +37610,11 @@ entities: - type: Transform pos: -7.5,-0.5 parent: 2 - - uid: 12614 - components: - - type: Transform - pos: -22.5,16.5 - parent: 2 - uid: 12632 components: - type: Transform pos: -10.5,-54.5 parent: 2 - - uid: 12654 - components: - - type: Transform - pos: -43.5,-0.5 - parent: 2 - uid: 12759 components: - type: Transform @@ -36661,31 +37685,11 @@ entities: - type: Transform pos: -10.5,-63.5 parent: 2 - - uid: 12851 - components: - - type: Transform - pos: -34.5,7.5 - parent: 2 - uid: 12854 components: - type: Transform pos: -19.5,-47.5 parent: 2 - - uid: 12880 - components: - - type: Transform - pos: -43.5,2.5 - parent: 2 - - uid: 12883 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 2 - - uid: 12897 - components: - - type: Transform - pos: -27.5,-4.5 - parent: 2 - uid: 12955 components: - type: Transform @@ -36731,11 +37735,6 @@ entities: - type: Transform pos: -23.5,-35.5 parent: 2 - - uid: 12964 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 2 - uid: 12965 components: - type: Transform @@ -36751,26 +37750,11 @@ entities: - type: Transform pos: -1.5,25.5 parent: 2 - - uid: 12972 - components: - - type: Transform - pos: -33.5,14.5 - parent: 2 - uid: 12979 components: - type: Transform pos: 16.5,-4.5 parent: 2 - - uid: 13010 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 2 - - uid: 13028 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 2 - uid: 13067 components: - type: Transform @@ -36971,11 +37955,6 @@ entities: - type: Transform pos: 3.5,9.5 parent: 2 - - uid: 13616 - components: - - type: Transform - pos: -18.5,16.5 - parent: 2 - uid: 13647 components: - type: Transform @@ -37001,21 +37980,6 @@ entities: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 13700 - components: - - type: Transform - pos: -65.5,-8.5 - parent: 2 - - uid: 13701 - components: - - type: Transform - pos: -65.5,-15.5 - parent: 2 - - uid: 13702 - components: - - type: Transform - pos: -65.5,-17.5 - parent: 2 - uid: 13707 components: - type: Transform @@ -37061,11 +38025,6 @@ entities: - type: Transform pos: 27.5,-14.5 parent: 2 - - uid: 13785 - components: - - type: Transform - pos: -65.5,-7.5 - parent: 2 - uid: 14145 components: - type: Transform @@ -37076,11 +38035,6 @@ entities: - type: Transform pos: 45.5,-6.5 parent: 2 - - uid: 14216 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 2 - uid: 14248 components: - type: Transform @@ -37121,46 +38075,11 @@ entities: - type: Transform pos: -12.5,14.5 parent: 2 - - uid: 14439 - components: - - type: Transform - pos: -21.5,-0.5 - parent: 2 - uid: 14442 components: - type: Transform pos: -12.5,11.5 parent: 2 - - uid: 14470 - components: - - type: Transform - pos: -29.5,4.5 - parent: 2 - - uid: 14487 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 2 - - uid: 14498 - components: - - type: Transform - pos: -42.5,-7.5 - parent: 2 - - uid: 14508 - components: - - type: Transform - pos: -18.5,15.5 - parent: 2 - - uid: 14518 - components: - - type: Transform - pos: -38.5,-2.5 - parent: 2 - - uid: 14523 - components: - - type: Transform - pos: -36.5,-2.5 - parent: 2 - uid: 14529 components: - type: Transform @@ -37176,41 +38095,11 @@ entities: - type: Transform pos: -7.5,-13.5 parent: 2 - - uid: 14590 - components: - - type: Transform - pos: -33.5,2.5 - parent: 2 - - uid: 14593 - components: - - type: Transform - pos: -38.5,-8.5 - parent: 2 - - uid: 14614 - components: - - type: Transform - pos: -28.5,4.5 - parent: 2 - - uid: 14615 - components: - - type: Transform - pos: -28.5,2.5 - parent: 2 - - uid: 14645 - components: - - type: Transform - pos: -38.5,-9.5 - parent: 2 - uid: 14780 components: - type: Transform pos: 5.5,23.5 parent: 2 - - uid: 14804 - components: - - type: Transform - pos: -25.5,15.5 - parent: 2 - uid: 14824 components: - type: Transform @@ -37221,16 +38110,6 @@ entities: - type: Transform pos: -0.5,13.5 parent: 2 - - uid: 14834 - components: - - type: Transform - pos: -23.5,16.5 - parent: 2 - - uid: 14837 - components: - - type: Transform - pos: -24.5,16.5 - parent: 2 - uid: 14842 components: - type: Transform @@ -37246,26 +38125,11 @@ entities: - type: Transform pos: -9.5,-13.5 parent: 2 - - uid: 14922 - components: - - type: Transform - pos: -28.5,-4.5 - parent: 2 - uid: 14954 components: - type: Transform pos: 46.5,-39.5 parent: 2 - - uid: 15013 - components: - - type: Transform - pos: -25.5,16.5 - parent: 2 - - uid: 15032 - components: - - type: Transform - pos: -21.5,9.5 - parent: 2 - uid: 15036 components: - type: Transform @@ -37401,31 +38265,11 @@ entities: - type: Transform pos: -4.5,-22.5 parent: 2 - - uid: 15372 - components: - - type: Transform - pos: -42.5,-8.5 - parent: 2 - uid: 15374 components: - type: Transform pos: 38.5,-14.5 parent: 2 - - uid: 15390 - components: - - type: Transform - pos: -44.5,-5.5 - parent: 2 - - uid: 15460 - components: - - type: Transform - pos: -33.5,1.5 - parent: 2 - - uid: 15470 - components: - - type: Transform - pos: -33.5,0.5 - parent: 2 - uid: 15487 components: - type: Transform @@ -37886,16 +38730,6 @@ entities: - type: Transform pos: 33.5,-37.5 parent: 2 - - uid: 15675 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 2 - - uid: 15679 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - uid: 15689 components: - type: Transform @@ -38006,21 +38840,6 @@ entities: - type: Transform pos: -14.5,-50.5 parent: 2 - - uid: 15864 - components: - - type: Transform - pos: -43.5,-5.5 - parent: 2 - - uid: 15893 - components: - - type: Transform - pos: -35.5,-2.5 - parent: 2 - - uid: 15919 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 2 - uid: 15984 components: - type: Transform @@ -38036,16 +38855,6 @@ entities: - type: Transform pos: 41.5,22.5 parent: 2 - - uid: 16031 - components: - - type: Transform - pos: -15.5,11.5 - parent: 2 - - uid: 16033 - components: - - type: Transform - pos: -33.5,3.5 - parent: 2 - uid: 16044 components: - type: Transform @@ -38061,16 +38870,6 @@ entities: - type: Transform pos: -13.5,15.5 parent: 2 - - uid: 16065 - components: - - type: Transform - pos: -15.5,10.5 - parent: 2 - - uid: 16066 - components: - - type: Transform - pos: -25.5,18.5 - parent: 2 - uid: 16067 components: - type: Transform @@ -38081,11 +38880,6 @@ entities: - type: Transform pos: -13.5,16.5 parent: 2 - - uid: 16073 - components: - - type: Transform - pos: -15.5,9.5 - parent: 2 - uid: 16074 components: - type: Transform @@ -38116,11 +38910,6 @@ entities: - type: Transform pos: 19.5,-56.5 parent: 2 - - uid: 16087 - components: - - type: Transform - pos: -14.5,11.5 - parent: 2 - uid: 16104 components: - type: Transform @@ -38141,11 +38930,6 @@ entities: - type: Transform pos: 29.5,-31.5 parent: 2 - - uid: 16112 - components: - - type: Transform - pos: -32.5,12.5 - parent: 2 - uid: 16114 components: - type: Transform @@ -38166,31 +38950,6 @@ entities: - type: Transform pos: 62.5,-54.5 parent: 2 - - uid: 16244 - components: - - type: Transform - pos: -33.5,4.5 - parent: 2 - - uid: 16255 - components: - - type: Transform - pos: -19.5,-10.5 - parent: 2 - - uid: 16259 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 2 - - uid: 16261 - components: - - type: Transform - pos: -26.5,-14.5 - parent: 2 - - uid: 16264 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 2 - uid: 16325 components: - type: Transform @@ -38366,201 +39125,6 @@ entities: - type: Transform pos: -33.5,-48.5 parent: 2 - - uid: 16539 - components: - - type: Transform - pos: -66.5,-11.5 - parent: 2 - - uid: 16540 - components: - - type: Transform - pos: -66.5,-12.5 - parent: 2 - - uid: 16541 - components: - - type: Transform - pos: -65.5,-12.5 - parent: 2 - - uid: 16542 - components: - - type: Transform - pos: -65.5,-11.5 - parent: 2 - - uid: 16543 - components: - - type: Transform - pos: -65.5,-10.5 - parent: 2 - - uid: 16544 - components: - - type: Transform - pos: -66.5,-10.5 - parent: 2 - - uid: 16545 - components: - - type: Transform - pos: -67.5,-10.5 - parent: 2 - - uid: 16546 - components: - - type: Transform - pos: -68.5,-10.5 - parent: 2 - - uid: 16547 - components: - - type: Transform - pos: -69.5,-10.5 - parent: 2 - - uid: 16548 - components: - - type: Transform - pos: -69.5,-11.5 - parent: 2 - - uid: 16549 - components: - - type: Transform - pos: -69.5,-12.5 - parent: 2 - - uid: 16550 - components: - - type: Transform - pos: -69.5,-13.5 - parent: 2 - - uid: 16551 - components: - - type: Transform - pos: -69.5,-14.5 - parent: 2 - - uid: 16552 - components: - - type: Transform - pos: -68.5,-14.5 - parent: 2 - - uid: 16553 - components: - - type: Transform - pos: -67.5,-14.5 - parent: 2 - - uid: 16554 - components: - - type: Transform - pos: -66.5,-14.5 - parent: 2 - - uid: 16555 - components: - - type: Transform - pos: -65.5,-14.5 - parent: 2 - - uid: 16556 - components: - - type: Transform - pos: -65.5,-13.5 - parent: 2 - - uid: 16557 - components: - - type: Transform - pos: -63.5,-14.5 - parent: 2 - - uid: 16558 - components: - - type: Transform - pos: -63.5,-15.5 - parent: 2 - - uid: 16559 - components: - - type: Transform - pos: -62.5,-15.5 - parent: 2 - - uid: 16560 - components: - - type: Transform - pos: -61.5,-15.5 - parent: 2 - - uid: 16561 - components: - - type: Transform - pos: -63.5,-13.5 - parent: 2 - - uid: 16562 - components: - - type: Transform - pos: -63.5,-12.5 - parent: 2 - - uid: 16563 - components: - - type: Transform - pos: -62.5,-12.5 - parent: 2 - - uid: 16564 - components: - - type: Transform - pos: -61.5,-12.5 - parent: 2 - - uid: 16565 - components: - - type: Transform - pos: -62.5,-11.5 - parent: 2 - - uid: 16566 - components: - - type: Transform - pos: -62.5,-10.5 - parent: 2 - - uid: 16567 - components: - - type: Transform - pos: -62.5,-9.5 - parent: 2 - - uid: 16568 - components: - - type: Transform - pos: -61.5,-9.5 - parent: 2 - - uid: 16569 - components: - - type: Transform - pos: -60.5,-12.5 - parent: 2 - - uid: 16570 - components: - - type: Transform - pos: -59.5,-12.5 - parent: 2 - - uid: 16572 - components: - - type: Transform - pos: -56.5,-11.5 - parent: 2 - - uid: 16573 - components: - - type: Transform - pos: -56.5,-12.5 - parent: 2 - - uid: 16574 - components: - - type: Transform - pos: -55.5,-12.5 - parent: 2 - - uid: 16575 - components: - - type: Transform - pos: -54.5,-12.5 - parent: 2 - - uid: 16576 - components: - - type: Transform - pos: -53.5,-12.5 - parent: 2 - - uid: 16577 - components: - - type: Transform - pos: -52.5,-12.5 - parent: 2 - - uid: 16578 - components: - - type: Transform - pos: -55.5,-11.5 - parent: 2 - uid: 16579 components: - type: Transform @@ -38701,11 +39265,6 @@ entities: - type: Transform pos: 33.5,-31.5 parent: 2 - - uid: 16672 - components: - - type: Transform - pos: -46.5,-5.5 - parent: 2 - uid: 16675 components: - type: Transform @@ -38761,11 +39320,6 @@ entities: - type: Transform pos: -36.5,-62.5 parent: 2 - - uid: 16715 - components: - - type: Transform - pos: -20.5,-7.5 - parent: 2 - uid: 16716 components: - type: Transform @@ -39061,11 +39615,6 @@ entities: - type: Transform pos: -60.5,-60.5 parent: 2 - - uid: 16879 - components: - - type: Transform - pos: -37.5,-2.5 - parent: 2 - uid: 16880 components: - type: Transform @@ -39146,26 +39695,11 @@ entities: - type: Transform pos: -45.5,-43.5 parent: 2 - - uid: 17089 - components: - - type: Transform - pos: -48.5,-7.5 - parent: 2 - - uid: 17091 - components: - - type: Transform - pos: -47.5,2.5 - parent: 2 - uid: 17092 components: - type: Transform pos: 35.5,27.5 parent: 2 - - uid: 17095 - components: - - type: Transform - pos: -40.5,4.5 - parent: 2 - uid: 17103 components: - type: Transform @@ -39986,11 +40520,6 @@ entities: - type: Transform pos: -51.5,-30.5 parent: 2 - - uid: 17956 - components: - - type: Transform - pos: -38.5,-4.5 - parent: 2 - uid: 17957 components: - type: Transform @@ -40006,11 +40535,6 @@ entities: - type: Transform pos: -26.5,20.5 parent: 2 - - uid: 17977 - components: - - type: Transform - pos: -32.5,23.5 - parent: 2 - uid: 17986 components: - type: Transform @@ -40091,45 +40615,15 @@ entities: - type: Transform pos: -54.5,-32.5 parent: 2 - - uid: 18029 - components: - - type: Transform - pos: -13.5,-0.5 - parent: 2 - - uid: 18030 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 2 - - uid: 18031 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 2 - - uid: 18032 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 2 - - uid: 18033 - components: - - type: Transform - pos: -15.5,-3.5 - parent: 2 - uid: 18034 components: - type: Transform - pos: -15.5,-4.5 + pos: 95.5,-43.5 parent: 2 - uid: 18035 components: - type: Transform - pos: -15.5,-2.5 - parent: 2 - - uid: 18036 - components: - - type: Transform - pos: -16.5,-4.5 + pos: 95.5,-44.5 parent: 2 - uid: 18037 components: @@ -40201,6 +40695,11 @@ entities: - type: Transform pos: -31.5,-23.5 parent: 2 + - uid: 18061 + components: + - type: Transform + pos: 70.5,-39.5 + parent: 2 - uid: 18064 components: - type: Transform @@ -40219,13 +40718,18 @@ entities: - uid: 18070 components: - type: Transform - pos: -26.5,-4.5 + pos: 70.5,-40.5 parent: 2 - uid: 18081 components: - type: Transform pos: 44.5,11.5 parent: 2 + - uid: 18082 + components: + - type: Transform + pos: 69.5,-40.5 + parent: 2 - uid: 18085 components: - type: Transform @@ -40236,25 +40740,415 @@ entities: - type: Transform pos: 46.5,8.5 parent: 2 + - uid: 18088 + components: + - type: Transform + pos: 69.5,-44.5 + parent: 2 + - uid: 18089 + components: + - type: Transform + pos: 70.5,-44.5 + parent: 2 - uid: 18090 components: - type: Transform - pos: -34.5,17.5 + pos: 71.5,-44.5 parent: 2 - uid: 18092 components: - type: Transform pos: 16.5,-43.5 parent: 2 + - uid: 18104 + components: + - type: Transform + pos: 72.5,-44.5 + parent: 2 + - uid: 18114 + components: + - type: Transform + pos: 73.5,-44.5 + parent: 2 + - uid: 18117 + components: + - type: Transform + pos: 74.5,-44.5 + parent: 2 + - uid: 18118 + components: + - type: Transform + pos: 74.5,-43.5 + parent: 2 + - uid: 18122 + components: + - type: Transform + pos: 74.5,-42.5 + parent: 2 + - uid: 18125 + components: + - type: Transform + pos: 74.5,-41.5 + parent: 2 + - uid: 18136 + components: + - type: Transform + pos: 74.5,-40.5 + parent: 2 + - uid: 18141 + components: + - type: Transform + pos: 73.5,-40.5 + parent: 2 + - uid: 18142 + components: + - type: Transform + pos: 72.5,-40.5 + parent: 2 + - uid: 18143 + components: + - type: Transform + pos: 71.5,-40.5 + parent: 2 + - uid: 18145 + components: + - type: Transform + pos: 75.5,-41.5 + parent: 2 + - uid: 18146 + components: + - type: Transform + pos: 76.5,-41.5 + parent: 2 + - uid: 18150 + components: + - type: Transform + pos: 77.5,-41.5 + parent: 2 + - uid: 18159 + components: + - type: Transform + pos: 78.5,-41.5 + parent: 2 + - uid: 18162 + components: + - type: Transform + pos: 78.5,-42.5 + parent: 2 + - uid: 18167 + components: + - type: Transform + pos: 78.5,-43.5 + parent: 2 + - uid: 18169 + components: + - type: Transform + pos: 68.5,-40.5 + parent: 2 + - uid: 18173 + components: + - type: Transform + pos: 68.5,-44.5 + parent: 2 + - uid: 18175 + components: + - type: Transform + pos: 66.5,-40.5 + parent: 2 + - uid: 18178 + components: + - type: Transform + pos: 77.5,-45.5 + parent: 2 + - uid: 18180 + components: + - type: Transform + pos: 78.5,-45.5 + parent: 2 + - uid: 18181 + components: + - type: Transform + pos: 79.5,-45.5 + parent: 2 + - uid: 18182 + components: + - type: Transform + pos: 66.5,-44.5 + parent: 2 + - uid: 18185 + components: + - type: Transform + pos: 68.5,-45.5 + parent: 2 + - uid: 18186 + components: + - type: Transform + pos: 67.5,-45.5 + parent: 2 + - uid: 18187 + components: + - type: Transform + pos: 66.5,-45.5 + parent: 2 + - uid: 18189 + components: + - type: Transform + pos: 65.5,-44.5 + parent: 2 + - uid: 18202 + components: + - type: Transform + pos: 65.5,-43.5 + parent: 2 + - uid: 18203 + components: + - type: Transform + pos: 65.5,-42.5 + parent: 2 + - uid: 18205 + components: + - type: Transform + pos: 65.5,-41.5 + parent: 2 + - uid: 18206 + components: + - type: Transform + pos: 65.5,-40.5 + parent: 2 + - uid: 18207 + components: + - type: Transform + pos: 66.5,-39.5 + parent: 2 + - uid: 18209 + components: + - type: Transform + pos: 67.5,-39.5 + parent: 2 + - uid: 18213 + components: + - type: Transform + pos: 68.5,-39.5 + parent: 2 + - uid: 18214 + components: + - type: Transform + pos: 71.5,-39.5 + parent: 2 + - uid: 18215 + components: + - type: Transform + pos: 73.5,-39.5 + parent: 2 + - uid: 18216 + components: + - type: Transform + pos: 74.5,-39.5 + parent: 2 + - uid: 18217 + components: + - type: Transform + pos: 74.5,-45.5 + parent: 2 + - uid: 18218 + components: + - type: Transform + pos: 73.5,-45.5 + parent: 2 + - uid: 18219 + components: + - type: Transform + pos: 71.5,-45.5 + parent: 2 + - uid: 18225 + components: + - type: Transform + pos: 78.5,-44.5 + parent: 2 + - uid: 18226 + components: + - type: Transform + pos: 90.5,-43.5 + parent: 2 + - uid: 18227 + components: + - type: Transform + pos: 90.5,-42.5 + parent: 2 + - uid: 18228 + components: + - type: Transform + pos: 89.5,-42.5 + parent: 2 + - uid: 18229 + components: + - type: Transform + pos: 88.5,-42.5 + parent: 2 + - uid: 18230 + components: + - type: Transform + pos: 87.5,-41.5 + parent: 2 + - uid: 18231 + components: + - type: Transform + pos: 88.5,-44.5 + parent: 2 + - uid: 18232 + components: + - type: Transform + pos: 89.5,-44.5 + parent: 2 + - uid: 18233 + components: + - type: Transform + pos: 90.5,-44.5 + parent: 2 + - uid: 18235 + components: + - type: Transform + pos: 91.5,-44.5 + parent: 2 + - uid: 18237 + components: + - type: Transform + pos: 92.5,-44.5 + parent: 2 + - uid: 18238 + components: + - type: Transform + pos: 93.5,-44.5 + parent: 2 + - uid: 18240 + components: + - type: Transform + pos: 94.5,-44.5 + parent: 2 + - uid: 18246 + components: + - type: Transform + pos: 87.5,-44.5 + parent: 2 + - uid: 18251 + components: + - type: Transform + pos: 87.5,-43.5 + parent: 2 + - uid: 18252 + components: + - type: Transform + pos: 94.5,-40.5 + parent: 2 + - uid: 18253 + components: + - type: Transform + pos: 93.5,-40.5 + parent: 2 + - uid: 18254 + components: + - type: Transform + pos: 92.5,-40.5 + parent: 2 + - uid: 18255 + components: + - type: Transform + pos: 91.5,-40.5 + parent: 2 + - uid: 18256 + components: + - type: Transform + pos: 90.5,-40.5 + parent: 2 + - uid: 18257 + components: + - type: Transform + pos: 89.5,-40.5 + parent: 2 + - uid: 18259 + components: + - type: Transform + pos: 88.5,-40.5 + parent: 2 + - uid: 18260 + components: + - type: Transform + pos: 87.5,-40.5 + parent: 2 + - uid: 18261 + components: + - type: Transform + pos: 87.5,-42.5 + parent: 2 + - uid: 18263 + components: + - type: Transform + pos: 86.5,-42.5 + parent: 2 + - uid: 18268 + components: + - type: Transform + pos: 85.5,-42.5 + parent: 2 + - uid: 18271 + components: + - type: Transform + pos: 84.5,-42.5 + parent: 2 + - uid: 18273 + components: + - type: Transform + pos: 83.5,-42.5 + parent: 2 + - uid: 18277 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 2 + - uid: 18280 + components: + - type: Transform + pos: 81.5,-42.5 + parent: 2 + - uid: 18293 + components: + - type: Transform + pos: 81.5,-41.5 + parent: 2 + - uid: 18294 + components: + - type: Transform + pos: 81.5,-40.5 + parent: 2 + - uid: 18295 + components: + - type: Transform + pos: 81.5,-43.5 + parent: 2 + - uid: 18300 + components: + - type: Transform + pos: 81.5,-44.5 + parent: 2 - uid: 18342 components: - type: Transform pos: 38.5,18.5 parent: 2 - - uid: 18344 + - uid: 18346 components: - type: Transform - pos: -25.5,-4.5 + pos: 95.5,-42.5 + parent: 2 + - uid: 18347 + components: + - type: Transform + pos: 95.5,-41.5 + parent: 2 + - uid: 18349 + components: + - type: Transform + pos: 95.5,-40.5 parent: 2 - uid: 18401 components: @@ -40641,71 +41535,11 @@ entities: - type: Transform pos: 51.5,-60.5 parent: 2 - - uid: 18709 - components: - - type: Transform - pos: 49.5,-36.5 - parent: 2 - - uid: 18710 - components: - - type: Transform - pos: 50.5,-36.5 - parent: 2 - - uid: 18711 - components: - - type: Transform - pos: 51.5,-36.5 - parent: 2 - uid: 18712 components: - type: Transform pos: 15.5,-44.5 parent: 2 - - uid: 18713 - components: - - type: Transform - pos: 51.5,-37.5 - parent: 2 - - uid: 18714 - components: - - type: Transform - pos: 51.5,-38.5 - parent: 2 - - uid: 18715 - components: - - type: Transform - pos: 51.5,-39.5 - parent: 2 - - uid: 18716 - components: - - type: Transform - pos: 52.5,-39.5 - parent: 2 - - uid: 18717 - components: - - type: Transform - pos: 53.5,-39.5 - parent: 2 - - uid: 18718 - components: - - type: Transform - pos: 54.5,-39.5 - parent: 2 - - uid: 18719 - components: - - type: Transform - pos: 55.5,-39.5 - parent: 2 - - uid: 18722 - components: - - type: Transform - pos: 56.5,-39.5 - parent: 2 - - uid: 18723 - components: - - type: Transform - pos: 57.5,-39.5 - parent: 2 - uid: 18745 components: - type: Transform @@ -40826,11 +41660,6 @@ entities: - type: Transform pos: -27.5,-21.5 parent: 2 - - uid: 18922 - components: - - type: Transform - pos: -24.5,-10.5 - parent: 2 - uid: 18924 components: - type: Transform @@ -40871,16 +41700,6 @@ entities: - type: Transform pos: 3.5,-30.5 parent: 2 - - uid: 18936 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 2 - - uid: 18937 - components: - - type: Transform - pos: -45.5,10.5 - parent: 2 - uid: 18941 components: - type: Transform @@ -40916,61 +41735,6 @@ entities: - type: Transform pos: -34.5,-15.5 parent: 2 - - uid: 18990 - components: - - type: Transform - pos: -35.5,-15.5 - parent: 2 - - uid: 18991 - components: - - type: Transform - pos: -36.5,-15.5 - parent: 2 - - uid: 18992 - components: - - type: Transform - pos: -37.5,-15.5 - parent: 2 - - uid: 18993 - components: - - type: Transform - pos: -38.5,-15.5 - parent: 2 - - uid: 18994 - components: - - type: Transform - pos: -36.5,-14.5 - parent: 2 - - uid: 18995 - components: - - type: Transform - pos: -36.5,-13.5 - parent: 2 - - uid: 18997 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 2 - - uid: 18998 - components: - - type: Transform - pos: -37.5,-12.5 - parent: 2 - - uid: 19002 - components: - - type: Transform - pos: -39.5,-15.5 - parent: 2 - - uid: 19003 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 2 - - uid: 19010 - components: - - type: Transform - pos: -40.5,-14.5 - parent: 2 - uid: 19012 components: - type: Transform @@ -40991,16 +41755,6 @@ entities: - type: Transform pos: 36.5,-39.5 parent: 2 - - uid: 19016 - components: - - type: Transform - pos: -39.5,-13.5 - parent: 2 - - uid: 19017 - components: - - type: Transform - pos: -39.5,-14.5 - parent: 2 - uid: 19018 components: - type: Transform @@ -41036,16 +41790,6 @@ entities: - type: Transform pos: 49.5,2.5 parent: 2 - - uid: 19125 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 2 - - uid: 19134 - components: - - type: Transform - pos: -38.5,5.5 - parent: 2 - uid: 19153 components: - type: Transform @@ -41156,25 +41900,155 @@ entities: - type: Transform pos: -34.5,-19.5 parent: 2 - - uid: 19553 - components: - - type: Transform - pos: -33.5,-14.5 - parent: 2 - uid: 19555 components: - type: Transform pos: 32.5,20.5 parent: 2 - - uid: 19556 + - uid: 19597 components: - type: Transform - pos: -33.5,-13.5 + pos: 57.5,-38.5 parent: 2 - - uid: 19558 + - uid: 19653 components: - type: Transform - pos: -33.5,-12.5 + pos: -29.5,21.5 + parent: 2 + - uid: 19654 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 19655 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - uid: 19656 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 19657 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 + - uid: 19658 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 19661 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 19664 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 19667 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 19670 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 19675 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - uid: 19759 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 19766 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 19767 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 19772 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 19773 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 19774 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 19776 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - uid: 19777 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 19820 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 19821 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 19841 + components: + - type: Transform + pos: -34.5,23.5 + parent: 2 + - uid: 19842 + components: + - type: Transform + pos: -35.5,23.5 + parent: 2 + - uid: 19843 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 + - uid: 19854 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - uid: 19856 + components: + - type: Transform + pos: -38.5,23.5 + parent: 2 + - uid: 19863 + components: + - type: Transform + pos: -39.5,23.5 + parent: 2 + - uid: 19865 + components: + - type: Transform + pos: -39.5,22.5 parent: 2 - uid: 19877 components: @@ -41186,80 +42060,170 @@ entities: - type: Transform pos: 48.5,-52.5 parent: 2 - - uid: 19980 + - uid: 19884 components: - type: Transform - pos: -39.5,-5.5 + pos: -39.5,21.5 parent: 2 - - uid: 19990 + - uid: 19908 components: - type: Transform - pos: -30.5,-4.5 + pos: -40.5,21.5 parent: 2 - - uid: 20001 + - uid: 19915 components: - type: Transform - pos: -47.5,0.5 + pos: -41.5,21.5 parent: 2 - - uid: 20104 + - uid: 19920 components: - type: Transform - pos: -70.5,-12.5 + pos: -42.5,21.5 + parent: 2 + - uid: 19942 + components: + - type: Transform + pos: -43.5,21.5 + parent: 2 + - uid: 19944 + components: + - type: Transform + pos: -35.5,22.5 + parent: 2 + - uid: 19949 + components: + - type: Transform + pos: -35.5,21.5 + parent: 2 + - uid: 19951 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - uid: 19954 + components: + - type: Transform + pos: -31.5,24.5 + parent: 2 + - uid: 19960 + components: + - type: Transform + pos: -31.5,25.5 + parent: 2 + - uid: 19967 + components: + - type: Transform + pos: -31.5,26.5 + parent: 2 + - uid: 19968 + components: + - type: Transform + pos: -31.5,27.5 + parent: 2 + - uid: 19970 + components: + - type: Transform + pos: -32.5,27.5 parent: 2 - uid: 20105 components: - type: Transform - pos: -71.5,-12.5 + pos: -28.5,4.5 parent: 2 - uid: 20106 components: - type: Transform - pos: -72.5,-12.5 + pos: -28.5,3.5 parent: 2 - uid: 20107 components: - type: Transform - pos: -68.5,-17.5 + pos: -28.5,2.5 parent: 2 - uid: 20108 components: - type: Transform - pos: -68.5,-16.5 + pos: -28.5,1.5 parent: 2 - uid: 20109 components: - type: Transform - pos: -68.5,-15.5 + pos: -27.5,1.5 parent: 2 - uid: 20110 components: - type: Transform - pos: -68.5,-9.5 + pos: -26.5,1.5 parent: 2 - uid: 20111 components: - type: Transform - pos: -68.5,-8.5 + pos: -25.5,1.5 parent: 2 - uid: 20112 components: - type: Transform - pos: -68.5,-7.5 + pos: -24.5,1.5 parent: 2 - uid: 20113 components: - type: Transform - pos: -71.5,-9.5 + pos: -23.5,1.5 parent: 2 - uid: 20114 components: - type: Transform - pos: -71.5,-15.5 + pos: -22.5,1.5 parent: 2 - - uid: 20121 + - uid: 20115 components: - type: Transform - pos: -21.5,-14.5 + pos: -21.5,1.5 + parent: 2 + - uid: 20116 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 20117 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 20118 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 20119 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 20120 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 20125 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 20129 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - uid: 20130 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 20131 + components: + - type: Transform + pos: -32.5,15.5 parent: 2 - uid: 20134 components: @@ -41271,6 +42235,11 @@ entities: - type: Transform pos: -27.5,-17.5 parent: 2 + - uid: 20136 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 - uid: 20139 components: - type: Transform @@ -41296,11 +42265,6 @@ entities: - type: Transform pos: 18.5,-39.5 parent: 2 - - uid: 20146 - components: - - type: Transform - pos: -43.5,1.5 - parent: 2 - uid: 20155 components: - type: Transform @@ -41486,65 +42450,315 @@ entities: - type: Transform pos: 33.5,25.5 parent: 2 + - uid: 20422 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - uid: 20423 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 20424 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 20425 + components: + - type: Transform + pos: -34.5,13.5 + parent: 2 + - uid: 20426 + components: + - type: Transform + pos: -33.5,13.5 + parent: 2 + - uid: 20427 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 20428 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 20430 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 - uid: 20431 components: - type: Transform - pos: -21.5,-16.5 + pos: -39.5,13.5 + parent: 2 + - uid: 20432 + components: + - type: Transform + pos: -38.5,13.5 parent: 2 - uid: 20433 components: - type: Transform - pos: -33.5,7.5 + pos: -37.5,13.5 parent: 2 - uid: 20435 components: - type: Transform - pos: -29.5,-4.5 + pos: -40.5,15.5 parent: 2 - uid: 20436 components: - type: Transform - pos: -38.5,-0.5 + pos: -39.5,15.5 + parent: 2 + - uid: 20437 + components: + - type: Transform + pos: -38.5,15.5 + parent: 2 + - uid: 20438 + components: + - type: Transform + pos: -37.5,15.5 parent: 2 - uid: 20443 components: - type: Transform - pos: -40.5,-5.5 + pos: -37.5,14.5 + parent: 2 + - uid: 20444 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 20445 + components: + - type: Transform + pos: -36.5,16.5 + parent: 2 + - uid: 20446 + components: + - type: Transform + pos: -35.5,16.5 parent: 2 - uid: 20447 components: - type: Transform - pos: -38.5,-5.5 + pos: -34.5,16.5 + parent: 2 + - uid: 20448 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - uid: 20449 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 20450 + components: + - type: Transform + pos: -39.5,9.5 parent: 2 - uid: 20451 components: - type: Transform - pos: -47.5,5.5 + pos: -38.5,11.5 + parent: 2 + - uid: 20452 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 20453 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 20454 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 20455 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 20456 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 20457 + components: + - type: Transform + pos: -26.5,14.5 + parent: 2 + - uid: 20458 + components: + - type: Transform + pos: -27.5,14.5 + parent: 2 + - uid: 20459 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 20460 + components: + - type: Transform + pos: -29.5,14.5 + parent: 2 + - uid: 20461 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 20462 + components: + - type: Transform + pos: -31.5,14.5 + parent: 2 + - uid: 20463 + components: + - type: Transform + pos: -25.5,14.5 + parent: 2 + - uid: 20464 + components: + - type: Transform + pos: -32.5,12.5 parent: 2 - uid: 20465 components: - type: Transform - pos: -42.5,3.5 + pos: -32.5,11.5 parent: 2 - uid: 20466 components: - type: Transform - pos: -47.5,3.5 + pos: -32.5,10.5 parent: 2 - uid: 20467 components: - type: Transform - pos: -34.5,-6.5 + pos: -32.5,9.5 + parent: 2 + - uid: 20468 + components: + - type: Transform + pos: -32.5,8.5 + parent: 2 + - uid: 20469 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - uid: 20470 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - uid: 20471 + components: + - type: Transform + pos: -32.5,5.5 parent: 2 - uid: 20472 components: - type: Transform - pos: -28.5,-10.5 + pos: -32.5,4.5 + parent: 2 + - uid: 20473 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 20474 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 20475 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - uid: 20476 + components: + - type: Transform + pos: -29.5,7.5 + parent: 2 + - uid: 20477 + components: + - type: Transform + pos: -28.5,7.5 parent: 2 - uid: 20478 components: - type: Transform - pos: -38.5,6.5 + pos: -27.5,7.5 + parent: 2 + - uid: 20479 + components: + - type: Transform + pos: -27.5,8.5 + parent: 2 + - uid: 20480 + components: + - type: Transform + pos: -27.5,9.5 + parent: 2 + - uid: 20481 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 20485 + components: + - type: Transform + pos: -27.5,11.5 + parent: 2 + - uid: 20486 + components: + - type: Transform + pos: -27.5,12.5 + parent: 2 + - uid: 20487 + components: + - type: Transform + pos: -27.5,13.5 + parent: 2 + - uid: 20488 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 20489 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 20490 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 20491 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 20497 + components: + - type: Transform + pos: -22.5,10.5 parent: 2 - uid: 20501 components: @@ -41556,41 +42770,11 @@ entities: - type: Transform pos: 16.5,25.5 parent: 2 - - uid: 20507 - components: - - type: Transform - pos: -43.5,5.5 - parent: 2 - - uid: 20509 - components: - - type: Transform - pos: -47.5,1.5 - parent: 2 - - uid: 20511 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 2 - - uid: 20512 - components: - - type: Transform - pos: -47.5,-6.5 - parent: 2 - uid: 20513 components: - type: Transform pos: 16.5,30.5 parent: 2 - - uid: 20515 - components: - - type: Transform - pos: -47.5,-7.5 - parent: 2 - - uid: 20519 - components: - - type: Transform - pos: -46.5,-6.5 - parent: 2 - uid: 20524 components: - type: Transform @@ -41656,46 +42840,11 @@ entities: - type: Transform pos: -29.5,-39.5 parent: 2 - - uid: 20548 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 2 - uid: 20555 components: - type: Transform pos: -28.5,-38.5 parent: 2 - - uid: 20558 - components: - - type: Transform - pos: -41.5,-5.5 - parent: 2 - - uid: 20559 - components: - - type: Transform - pos: -32.5,7.5 - parent: 2 - - uid: 20562 - components: - - type: Transform - pos: -42.5,-6.5 - parent: 2 - - uid: 20595 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 2 - - uid: 20597 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - uid: 20605 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 2 - uid: 20621 components: - type: Transform @@ -41941,11 +43090,6 @@ entities: - type: Transform pos: 23.5,24.5 parent: 2 - - uid: 20792 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 2 - uid: 20795 components: - type: Transform @@ -42921,11 +44065,6 @@ entities: - type: Transform pos: 10.5,-79.5 parent: 2 - - uid: 21179 - components: - - type: Transform - pos: -38.5,1.5 - parent: 2 - uid: 21210 components: - type: Transform @@ -42951,11 +44090,6 @@ entities: - type: Transform pos: 17.5,7.5 parent: 2 - - uid: 21311 - components: - - type: Transform - pos: -38.5,-6.5 - parent: 2 - uid: 21326 components: - type: Transform @@ -43071,11 +44205,6 @@ entities: - type: Transform pos: 25.5,23.5 parent: 2 - - uid: 21374 - components: - - type: Transform - pos: -34.5,12.5 - parent: 2 - uid: 21382 components: - type: Transform @@ -43156,16 +44285,6 @@ entities: - type: Transform pos: 22.5,23.5 parent: 2 - - uid: 21486 - components: - - type: Transform - pos: -35.5,12.5 - parent: 2 - - uid: 21487 - components: - - type: Transform - pos: -36.5,12.5 - parent: 2 - uid: 21490 components: - type: Transform @@ -43316,11 +44435,6 @@ entities: - type: Transform pos: 28.5,3.5 parent: 2 - - uid: 21802 - components: - - type: Transform - pos: -34.5,9.5 - parent: 2 - uid: 21806 components: - type: Transform @@ -43396,11 +44510,6 @@ entities: - type: Transform pos: 28.5,-3.5 parent: 2 - - uid: 21846 - components: - - type: Transform - pos: -33.5,12.5 - parent: 2 - uid: 21864 components: - type: Transform @@ -43421,6 +44530,11 @@ entities: - type: Transform pos: 16.5,31.5 parent: 2 + - uid: 21932 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 - uid: 21935 components: - type: Transform @@ -43456,6 +44570,21 @@ entities: - type: Transform pos: 41.5,19.5 parent: 2 + - uid: 21962 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - uid: 21963 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 2 + - uid: 21967 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 2 - uid: 21972 components: - type: Transform @@ -43469,7 +44598,12 @@ entities: - uid: 21978 components: - type: Transform - pos: -35.5,9.5 + pos: -44.5,-3.5 + parent: 2 + - uid: 21980 + components: + - type: Transform + pos: -44.5,-2.5 parent: 2 - uid: 21981 components: @@ -43479,7 +44613,7 @@ entities: - uid: 21985 components: - type: Transform - pos: -36.5,9.5 + pos: -44.5,0.5 parent: 2 - uid: 21986 components: @@ -43506,26 +44640,66 @@ entities: - type: Transform pos: 25.5,11.5 parent: 2 + - uid: 21995 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 21996 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 2 - uid: 22000 components: - type: Transform pos: 16.5,26.5 parent: 2 + - uid: 22009 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 2 + - uid: 22014 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 2 - uid: 22023 components: - type: Transform pos: 16.5,27.5 parent: 2 + - uid: 22030 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 - uid: 22033 components: - type: Transform pos: 16.5,33.5 parent: 2 + - uid: 22037 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 22039 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 - uid: 22044 components: - type: Transform pos: 16.5,28.5 parent: 2 + - uid: 22051 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 2 - uid: 22061 components: - type: Transform @@ -43536,6 +44710,11 @@ entities: - type: Transform pos: 30.5,-4.5 parent: 2 + - uid: 22077 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 - uid: 22083 components: - type: Transform @@ -43546,16 +44725,91 @@ entities: - type: Transform pos: 15.5,21.5 parent: 2 + - uid: 22085 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 2 + - uid: 22086 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 + - uid: 22087 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 + - uid: 22088 + components: + - type: Transform + pos: -45.5,-6.5 + parent: 2 + - uid: 22090 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 2 + - uid: 22095 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 + - uid: 22103 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 22104 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 22109 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 22110 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 22112 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 22121 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 22128 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 2 - uid: 22129 components: - type: Transform pos: 26.5,27.5 parent: 2 + - uid: 22133 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 2 - uid: 22145 components: - type: Transform pos: 9.5,3.5 parent: 2 + - uid: 22160 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 - uid: 22170 components: - type: Transform @@ -43576,6 +44830,16 @@ entities: - type: Transform pos: 4.5,-6.5 parent: 2 + - uid: 22209 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 22227 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 - uid: 22278 components: - type: Transform @@ -43591,6 +44855,11 @@ entities: - type: Transform pos: 26.5,4.5 parent: 2 + - uid: 22319 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 - uid: 22335 components: - type: Transform @@ -43626,6 +44895,11 @@ entities: - type: Transform pos: 21.5,18.5 parent: 2 + - uid: 22358 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 - uid: 22461 components: - type: Transform @@ -43651,6 +44925,16 @@ entities: - type: Transform pos: 32.5,14.5 parent: 2 + - uid: 22516 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 22528 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 - uid: 22541 components: - type: Transform @@ -43671,30 +44955,95 @@ entities: - type: Transform pos: -13.5,-24.5 parent: 2 + - uid: 22572 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 22574 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 22603 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 22604 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 - uid: 22605 components: - type: Transform - pos: -42.5,-5.5 + pos: -24.5,-6.5 + parent: 2 + - uid: 22606 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 22607 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 22608 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 22609 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - uid: 22610 + components: + - type: Transform + pos: -29.5,-6.5 parent: 2 - uid: 22611 components: - type: Transform - pos: -25.5,-5.5 + pos: -25.5,-7.5 + parent: 2 + - uid: 22612 + components: + - type: Transform + pos: -25.5,-8.5 parent: 2 - uid: 22614 components: - type: Transform - pos: -25.5,-3.5 + pos: -24.5,-8.5 parent: 2 - uid: 22616 components: - type: Transform - pos: -38.5,0.5 + pos: -23.5,-8.5 parent: 2 - uid: 22617 components: - type: Transform - pos: -48.5,3.5 + pos: -22.5,-8.5 + parent: 2 + - uid: 22618 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 22619 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 22620 + components: + - type: Transform + pos: -21.5,-6.5 parent: 2 - uid: 22631 components: @@ -43716,36 +45065,161 @@ entities: - type: Transform pos: 28.5,14.5 parent: 2 + - uid: 22638 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 - uid: 22639 components: - type: Transform - pos: -38.5,2.5 + pos: -22.5,-5.5 + parent: 2 + - uid: 22673 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - uid: 22699 + components: + - type: Transform + pos: -25.5,-4.5 parent: 2 - uid: 22700 components: - type: Transform - pos: -31.5,-0.5 + pos: -25.5,-3.5 parent: 2 - uid: 22701 components: - type: Transform - pos: -30.5,-0.5 + pos: -25.5,-2.5 + parent: 2 + - uid: 22710 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 22711 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 22712 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 22713 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 22714 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 22715 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - uid: 22716 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - uid: 22717 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 22718 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 22719 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 22720 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 22721 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 22722 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 22723 + components: + - type: Transform + pos: -32.5,-3.5 parent: 2 - uid: 22724 components: - type: Transform - pos: -40.5,5.5 + pos: -32.5,-4.5 + parent: 2 + - uid: 22725 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - uid: 22726 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 22727 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 22728 + components: + - type: Transform + pos: -36.5,-2.5 parent: 2 - uid: 22729 components: - type: Transform - pos: -40.5,6.5 + pos: -37.5,-2.5 + parent: 2 + - uid: 22730 + components: + - type: Transform + pos: -38.5,-2.5 parent: 2 - uid: 22735 components: - type: Transform pos: 7.5,23.5 parent: 2 + - uid: 22738 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 22750 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 22757 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 - uid: 22788 components: - type: Transform @@ -43841,6 +45315,76 @@ entities: - type: Transform pos: 41.5,8.5 parent: 2 + - uid: 22817 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 22836 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 22837 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 22838 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 22839 + components: + - type: Transform + pos: -39.5,2.5 + parent: 2 + - uid: 22889 + components: + - type: Transform + pos: -40.5,2.5 + parent: 2 + - uid: 22890 + components: + - type: Transform + pos: -40.5,3.5 + parent: 2 + - uid: 22891 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 + - uid: 22892 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 22905 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 22906 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 22968 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 22976 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 + - uid: 22977 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 - uid: 22990 components: - type: Transform @@ -43871,6 +45415,21 @@ entities: - type: Transform pos: -15.5,-38.5 parent: 2 + - uid: 23010 + components: + - type: Transform + pos: -35.5,3.5 + parent: 2 + - uid: 23018 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 23019 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 - uid: 23022 components: - type: Transform @@ -43891,6 +45450,11 @@ entities: - type: Transform pos: -5.5,-39.5 parent: 2 + - uid: 23028 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 - uid: 23029 components: - type: Transform @@ -43931,6 +45495,21 @@ entities: - type: Transform pos: 8.5,4.5 parent: 2 + - uid: 23056 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - uid: 23122 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 23142 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 - uid: 23146 components: - type: Transform @@ -44016,16 +45595,131 @@ entities: - type: Transform pos: 38.5,14.5 parent: 2 - - uid: 23344 + - uid: 23210 components: - type: Transform - pos: -47.5,4.5 + pos: -30.5,-5.5 + parent: 2 + - uid: 23211 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 23212 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 23213 + components: + - type: Transform + pos: -43.5,3.5 + parent: 2 + - uid: 23214 + components: + - type: Transform + pos: -44.5,3.5 + parent: 2 + - uid: 23215 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 + - uid: 23216 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 23217 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - uid: 23218 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 23219 + components: + - type: Transform + pos: -46.5,1.5 + parent: 2 + - uid: 23220 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - uid: 23221 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 23222 + components: + - type: Transform + pos: -44.5,2.5 + parent: 2 + - uid: 23223 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 2 + - uid: 23224 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 23225 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 2 + - uid: 23226 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - uid: 23306 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - uid: 23307 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 23308 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 23309 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 23310 + components: + - type: Transform + pos: -42.5,-2.5 parent: 2 - uid: 23384 components: - type: Transform pos: 10.5,-7.5 parent: 2 + - uid: 23420 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 23456 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 - uid: 23502 components: - type: Transform @@ -44036,6 +45730,11 @@ entities: - type: Transform pos: 12.5,4.5 parent: 2 + - uid: 23520 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 2 - uid: 23545 components: - type: Transform @@ -44131,6 +45830,36 @@ entities: - type: Transform pos: 14.5,14.5 parent: 2 + - uid: 23609 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 23617 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 + - uid: 23651 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 2 + - uid: 23653 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 23656 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 23657 + components: + - type: Transform + pos: -44.5,-13.5 + parent: 2 - uid: 23677 components: - type: Transform @@ -44161,30 +45890,460 @@ entities: - type: Transform pos: 21.5,-47.5 parent: 2 + - uid: 23685 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 - uid: 23694 components: - type: Transform pos: -26.5,-24.5 parent: 2 - - uid: 23740 + - uid: 23813 components: - type: Transform - pos: -49.5,-9.5 + pos: -14.5,-1.5 parent: 2 - - uid: 23936 + - uid: 23814 components: - type: Transform - pos: -42.5,-9.5 + pos: -13.5,-1.5 parent: 2 - - uid: 23944 + - uid: 23815 components: - type: Transform - pos: -28.5,-6.5 + pos: -14.5,-7.5 parent: 2 - - uid: 23945 + - uid: 23816 components: - type: Transform - pos: -29.5,-6.5 + pos: -14.5,-8.5 + parent: 2 + - uid: 24379 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 24380 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 24381 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 24382 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 24383 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 24384 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 24385 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 24386 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 24387 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 24388 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 24389 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 24390 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 24391 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 24392 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 24393 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 24394 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 24395 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 24396 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 24397 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 24398 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 24399 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 24400 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 24401 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 24402 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 24403 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 24404 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 24405 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - uid: 24406 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 + - uid: 24407 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 24408 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 24462 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - uid: 24463 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 24464 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 24465 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 24524 + components: + - type: Transform + pos: 54.5,-36.5 + parent: 2 + - uid: 24525 + components: + - type: Transform + pos: 53.5,-36.5 + parent: 2 + - uid: 24526 + components: + - type: Transform + pos: 52.5,-36.5 + parent: 2 + - uid: 24527 + components: + - type: Transform + pos: 52.5,-37.5 + parent: 2 + - uid: 24528 + components: + - type: Transform + pos: 52.5,-38.5 + parent: 2 + - uid: 24529 + components: + - type: Transform + pos: 52.5,-39.5 + parent: 2 + - uid: 24530 + components: + - type: Transform + pos: 55.5,-36.5 + parent: 2 + - uid: 24531 + components: + - type: Transform + pos: 56.5,-36.5 + parent: 2 + - uid: 24532 + components: + - type: Transform + pos: 57.5,-36.5 + parent: 2 + - uid: 24533 + components: + - type: Transform + pos: 58.5,-36.5 + parent: 2 + - uid: 24534 + components: + - type: Transform + pos: 59.5,-36.5 + parent: 2 + - uid: 24535 + components: + - type: Transform + pos: 59.5,-37.5 + parent: 2 + - uid: 24536 + components: + - type: Transform + pos: 59.5,-38.5 + parent: 2 + - uid: 24537 + components: + - type: Transform + pos: 58.5,-38.5 + parent: 2 + - uid: 24564 + components: + - type: Transform + pos: 87.5,-45.5 + parent: 2 + - uid: 24565 + components: + - type: Transform + pos: 87.5,-46.5 + parent: 2 + - uid: 24566 + components: + - type: Transform + pos: 87.5,-47.5 + parent: 2 + - uid: 24567 + components: + - type: Transform + pos: 87.5,-48.5 + parent: 2 + - uid: 24568 + components: + - type: Transform + pos: 87.5,-39.5 + parent: 2 + - uid: 24569 + components: + - type: Transform + pos: 87.5,-38.5 + parent: 2 + - uid: 24570 + components: + - type: Transform + pos: 87.5,-37.5 + parent: 2 + - uid: 24571 + components: + - type: Transform + pos: 87.5,-36.5 + parent: 2 + - uid: 24572 + components: + - type: Transform + pos: 95.5,-39.5 + parent: 2 + - uid: 24573 + components: + - type: Transform + pos: 95.5,-38.5 + parent: 2 + - uid: 24574 + components: + - type: Transform + pos: 95.5,-37.5 + parent: 2 + - uid: 24575 + components: + - type: Transform + pos: 95.5,-36.5 + parent: 2 + - uid: 24576 + components: + - type: Transform + pos: 95.5,-45.5 + parent: 2 + - uid: 24577 + components: + - type: Transform + pos: 95.5,-46.5 + parent: 2 + - uid: 24578 + components: + - type: Transform + pos: 95.5,-47.5 + parent: 2 + - uid: 24579 + components: + - type: Transform + pos: 95.5,-48.5 + parent: 2 + - uid: 24580 + components: + - type: Transform + pos: 96.5,-43.5 + parent: 2 + - uid: 24581 + components: + - type: Transform + pos: 97.5,-43.5 + parent: 2 + - uid: 24582 + components: + - type: Transform + pos: 98.5,-43.5 + parent: 2 + - uid: 24715 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 24716 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 2 + - uid: 24717 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 24718 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 2 + - uid: 24753 + components: + - type: Transform + pos: 57.5,-40.5 + parent: 2 + - uid: 24754 + components: + - type: Transform + pos: 58.5,-40.5 + parent: 2 + - uid: 24770 + components: + - type: Transform + pos: 56.5,-39.5 + parent: 2 + - uid: 24771 + components: + - type: Transform + pos: 56.5,-40.5 + parent: 2 + - uid: 24772 + components: + - type: Transform + pos: 59.5,-40.5 + parent: 2 + - uid: 24785 + components: + - type: Transform + pos: 79.5,-39.5 + parent: 2 + - uid: 24786 + components: + - type: Transform + pos: 78.5,-37.5 + parent: 2 + - uid: 24787 + components: + - type: Transform + pos: 79.5,-37.5 + parent: 2 + - uid: 24789 + components: + - type: Transform + pos: 79.5,-40.5 + parent: 2 + - uid: 24790 + components: + - type: Transform + pos: 80.5,-40.5 + parent: 2 + - uid: 24791 + components: + - type: Transform + pos: 78.5,-39.5 + parent: 2 + - uid: 24792 + components: + - type: Transform + pos: 77.5,-38.5 + parent: 2 + - uid: 24793 + components: + - type: Transform + pos: 80.5,-37.5 + parent: 2 + - uid: 24794 + components: + - type: Transform + pos: 78.5,-38.5 parent: 2 - proto: CableApcStack entities: @@ -44196,29 +46355,22 @@ entities: - uid: 3392 components: - type: Transform - pos: -16.35442,-25.386759 + pos: -16.237741,-25.463318 parent: 2 - uid: 4347 components: - type: Transform pos: 38.445034,-24.375977 parent: 2 - - uid: 8452 - components: - - type: Transform - pos: -55.347515,-13.502788 - parent: 2 - uid: 13026 components: - type: Transform pos: -4.0583553,-23.375748 parent: 2 -- proto: CablecuffsBroken - entities: - - uid: 2226 + - uid: 17019 components: - type: Transform - pos: 52.73436,-36.2627 + pos: 83.46048,-43.40174 parent: 2 - proto: CableHV entities: @@ -44227,11 +46379,6 @@ entities: - type: Transform pos: -11.5,25.5 parent: 2 - - uid: 32 - components: - - type: Transform - pos: -34.5,23.5 - parent: 2 - uid: 40 components: - type: Transform @@ -44292,6 +46439,11 @@ entities: - type: Transform pos: 17.5,-33.5 parent: 2 + - uid: 408 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 - uid: 425 components: - type: Transform @@ -44332,11 +46484,6 @@ entities: - type: Transform pos: -13.5,21.5 parent: 2 - - uid: 691 - components: - - type: Transform - pos: -33.5,5.5 - parent: 2 - uid: 767 components: - type: Transform @@ -44347,185 +46494,20 @@ entities: - type: Transform pos: 19.5,-33.5 parent: 2 - - uid: 800 - components: - - type: Transform - pos: -56.5,20.5 - parent: 2 - - uid: 803 - components: - - type: Transform - pos: -56.5,14.5 - parent: 2 - - uid: 804 - components: - - type: Transform - pos: -30.5,21.5 - parent: 2 - - uid: 805 - components: - - type: Transform - pos: -54.5,20.5 - parent: 2 - - uid: 811 - components: - - type: Transform - pos: -33.5,4.5 - parent: 2 - - uid: 837 - components: - - type: Transform - pos: -52.5,12.5 - parent: 2 - - uid: 843 - components: - - type: Transform - pos: -45.5,28.5 - parent: 2 - - uid: 905 - components: - - type: Transform - pos: -27.5,20.5 - parent: 2 - - uid: 910 - components: - - type: Transform - pos: -55.5,20.5 - parent: 2 - - uid: 912 - components: - - type: Transform - pos: -52.5,10.5 - parent: 2 - - uid: 919 - components: - - type: Transform - pos: -53.5,10.5 - parent: 2 - - uid: 923 - components: - - type: Transform - pos: -55.5,14.5 - parent: 2 - uid: 949 components: - type: Transform pos: 26.5,16.5 parent: 2 - - uid: 1071 - components: - - type: Transform - pos: -55.5,29.5 - parent: 2 - - uid: 1072 - components: - - type: Transform - pos: -55.5,25.5 - parent: 2 - uid: 1074 components: - type: Transform pos: -26.5,20.5 parent: 2 - - uid: 1075 - components: - - type: Transform - pos: -29.5,20.5 - parent: 2 - - uid: 1087 - components: - - type: Transform - pos: -28.5,20.5 - parent: 2 - - uid: 1096 - components: - - type: Transform - pos: -30.5,22.5 - parent: 2 - - uid: 1165 - components: - - type: Transform - pos: -55.5,26.5 - parent: 2 - - uid: 1166 - components: - - type: Transform - pos: -55.5,28.5 - parent: 2 - - uid: 1194 - components: - - type: Transform - pos: -51.5,25.5 - parent: 2 - - uid: 1195 - components: - - type: Transform - pos: -51.5,26.5 - parent: 2 - - uid: 1205 - components: - - type: Transform - pos: -45.5,14.5 - parent: 2 - - uid: 1206 - components: - - type: Transform - pos: -46.5,14.5 - parent: 2 - - uid: 1209 - components: - - type: Transform - pos: -48.5,14.5 - parent: 2 - uid: 1210 components: - type: Transform - pos: -47.5,14.5 - parent: 2 - - uid: 1211 - components: - - type: Transform - pos: -49.5,28.5 - parent: 2 - - uid: 1212 - components: - - type: Transform - pos: -47.5,27.5 - parent: 2 - - uid: 1213 - components: - - type: Transform - pos: -49.5,26.5 - parent: 2 - - uid: 1214 - components: - - type: Transform - pos: -47.5,25.5 - parent: 2 - - uid: 1217 - components: - - type: Transform - pos: -51.5,28.5 - parent: 2 - - uid: 1218 - components: - - type: Transform - pos: -44.5,14.5 - parent: 2 - - uid: 1219 - components: - - type: Transform - pos: -51.5,27.5 - parent: 2 - - uid: 1220 - components: - - type: Transform - pos: -49.5,29.5 - parent: 2 - - uid: 1229 - components: - - type: Transform - pos: -51.5,29.5 + pos: -4.5,-9.5 parent: 2 - uid: 1230 components: @@ -44617,41 +46599,16 @@ entities: - type: Transform pos: -21.5,-19.5 parent: 2 - - uid: 1633 - components: - - type: Transform - pos: -32.5,9.5 - parent: 2 - uid: 1652 components: - type: Transform pos: -33.5,-15.5 parent: 2 - - uid: 1655 - components: - - type: Transform - pos: -35.5,-15.5 - parent: 2 - - uid: 1662 - components: - - type: Transform - pos: -36.5,-14.5 - parent: 2 - - uid: 1666 - components: - - type: Transform - pos: -36.5,-13.5 - parent: 2 - uid: 1669 components: - type: Transform pos: -34.5,-15.5 parent: 2 - - uid: 1671 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 2 - uid: 1686 components: - type: Transform @@ -44662,16 +46619,6 @@ entities: - type: Transform pos: 0.5,-27.5 parent: 2 - - uid: 1700 - components: - - type: Transform - pos: -37.5,-12.5 - parent: 2 - - uid: 1708 - components: - - type: Transform - pos: -36.5,-15.5 - parent: 2 - uid: 1736 components: - type: Transform @@ -44707,11 +46654,6 @@ entities: - type: Transform pos: -43.5,-48.5 parent: 2 - - uid: 1905 - components: - - type: Transform - pos: -45.5,27.5 - parent: 2 - uid: 1921 components: - type: Transform @@ -44772,6 +46714,11 @@ entities: - type: Transform pos: 7.5,-23.5 parent: 2 + - uid: 2179 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 - uid: 2184 components: - type: Transform @@ -44827,11 +46774,6 @@ entities: - type: Transform pos: -2.5,-20.5 parent: 2 - - uid: 2264 - components: - - type: Transform - pos: -55.5,23.5 - parent: 2 - uid: 2272 components: - type: Transform @@ -44847,16 +46789,6 @@ entities: - type: Transform pos: -8.5,-25.5 parent: 2 - - uid: 2380 - components: - - type: Transform - pos: -18.5,18.5 - parent: 2 - - uid: 2449 - components: - - type: Transform - pos: -54.5,16.5 - parent: 2 - uid: 2491 components: - type: Transform @@ -44892,6 +46824,11 @@ entities: - type: Transform pos: -7.5,-18.5 parent: 2 + - uid: 2603 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 - uid: 2621 components: - type: Transform @@ -44912,46 +46849,16 @@ entities: - type: Transform pos: 43.5,-31.5 parent: 2 - - uid: 2628 - components: - - type: Transform - pos: -33.5,1.5 - parent: 2 - - uid: 2630 - components: - - type: Transform - pos: -33.5,3.5 - parent: 2 - - uid: 2631 - components: - - type: Transform - pos: -33.5,2.5 - parent: 2 - - uid: 2634 - components: - - type: Transform - pos: -56.5,23.5 - parent: 2 - uid: 2635 components: - type: Transform pos: -25.5,20.5 parent: 2 - - uid: 2651 - components: - - type: Transform - pos: -20.5,14.5 - parent: 2 - uid: 2666 components: - type: Transform pos: 42.5,-31.5 parent: 2 - - uid: 2668 - components: - - type: Transform - pos: -45.5,25.5 - parent: 2 - uid: 2677 components: - type: Transform @@ -44972,46 +46879,6 @@ entities: - type: Transform pos: -7.5,-53.5 parent: 2 - - uid: 2706 - components: - - type: Transform - pos: -32.5,8.5 - parent: 2 - - uid: 2707 - components: - - type: Transform - pos: -33.5,6.5 - parent: 2 - - uid: 2708 - components: - - type: Transform - pos: -33.5,7.5 - parent: 2 - - uid: 2731 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 2 - - uid: 2732 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - - uid: 2733 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 2 - - uid: 2734 - components: - - type: Transform - pos: -56.5,16.5 - parent: 2 - - uid: 2735 - components: - - type: Transform - pos: -55.5,16.5 - parent: 2 - uid: 2738 components: - type: Transform @@ -45062,36 +46929,11 @@ entities: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 2819 - components: - - type: Transform - pos: -18.5,19.5 - parent: 2 - - uid: 2886 - components: - - type: Transform - pos: -57.5,23.5 - parent: 2 - - uid: 2887 - components: - - type: Transform - pos: -53.5,20.5 - parent: 2 - - uid: 2888 - components: - - type: Transform - pos: -45.5,29.5 - parent: 2 - uid: 2982 components: - type: Transform pos: -9.5,-21.5 parent: 2 - - uid: 3006 - components: - - type: Transform - pos: -56.5,18.5 - parent: 2 - uid: 3015 components: - type: Transform @@ -45122,11 +46964,6 @@ entities: - type: Transform pos: -15.5,20.5 parent: 2 - - uid: 3095 - components: - - type: Transform - pos: -18.5,14.5 - parent: 2 - uid: 3109 components: - type: Transform @@ -45172,11 +47009,21 @@ entities: - type: Transform pos: -8.5,-42.5 parent: 2 + - uid: 3402 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 - uid: 3407 components: - type: Transform pos: -13.5,15.5 parent: 2 + - uid: 3449 + components: + - type: Transform + pos: -40.5,21.5 + parent: 2 - uid: 3476 components: - type: Transform @@ -45187,11 +47034,36 @@ entities: - type: Transform pos: 29.5,-55.5 parent: 2 + - uid: 3528 + components: + - type: Transform + pos: -41.5,21.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: -43.5,21.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: -44.5,21.5 + parent: 2 - uid: 3560 components: - type: Transform pos: 26.5,-55.5 parent: 2 + - uid: 3561 + components: + - type: Transform + pos: -45.5,21.5 + parent: 2 - uid: 3565 components: - type: Transform @@ -45202,11 +47074,31 @@ entities: - type: Transform pos: 21.5,9.5 parent: 2 + - uid: 3570 + components: + - type: Transform + pos: -46.5,21.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: -47.5,21.5 + parent: 2 - uid: 3622 components: - type: Transform pos: 28.5,-55.5 parent: 2 + - uid: 3640 + components: + - type: Transform + pos: -47.5,20.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: -47.5,19.5 + parent: 2 - uid: 3660 components: - type: Transform @@ -45217,11 +47109,56 @@ entities: - type: Transform pos: 30.5,-54.5 parent: 2 + - uid: 3686 + components: + - type: Transform + pos: -48.5,19.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: -49.5,19.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + pos: -49.5,16.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: -47.5,15.5 + parent: 2 - uid: 3890 components: - type: Transform pos: 3.5,-34.5 parent: 2 + - uid: 3900 + components: + - type: Transform + pos: -46.5,15.5 + parent: 2 - uid: 3907 components: - type: Transform @@ -45232,6 +47169,26 @@ entities: - type: Transform pos: -16.5,-27.5 parent: 2 + - uid: 3929 + components: + - type: Transform + pos: -46.5,16.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 - uid: 3966 components: - type: Transform @@ -45412,6 +47369,11 @@ entities: - type: Transform pos: 3.5,-17.5 parent: 2 + - uid: 4247 + components: + - type: Transform + pos: -38.5,23.5 + parent: 2 - uid: 4303 components: - type: Transform @@ -45442,6 +47404,21 @@ entities: - type: Transform pos: 2.5,-17.5 parent: 2 + - uid: 4352 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: -35.5,23.5 + parent: 2 - uid: 4394 components: - type: Transform @@ -45467,16 +47444,66 @@ entities: - type: Transform pos: 5.5,-25.5 parent: 2 + - uid: 4436 + components: + - type: Transform + pos: -34.5,23.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + pos: -33.5,23.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + pos: -32.5,23.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + pos: -31.5,23.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 - uid: 4473 components: - type: Transform pos: 3.5,-27.5 parent: 2 + - uid: 4494 + components: + - type: Transform + pos: -30.5,23.5 + parent: 2 - uid: 4503 components: - type: Transform pos: 4.5,-25.5 parent: 2 + - uid: 4507 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 - uid: 4792 components: - type: Transform @@ -45487,6 +47514,41 @@ entities: - type: Transform pos: 6.5,-25.5 parent: 2 + - uid: 4879 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: -38.5,29.5 + parent: 2 + - uid: 4920 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + pos: -40.5,29.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: -43.5,29.5 + parent: 2 - uid: 4991 components: - type: Transform @@ -45537,51 +47599,86 @@ entities: - type: Transform pos: 4.5,-44.5 parent: 2 - - uid: 5450 - components: - - type: Transform - pos: -36.5,23.5 - parent: 2 - - uid: 5455 - components: - - type: Transform - pos: -37.5,23.5 - parent: 2 - - uid: 5461 - components: - - type: Transform - pos: -54.5,18.5 - parent: 2 - - uid: 5462 - components: - - type: Transform - pos: -55.5,18.5 - parent: 2 - - uid: 5463 - components: - - type: Transform - pos: -53.5,18.5 - parent: 2 - uid: 5530 components: - type: Transform pos: -3.5,-18.5 parent: 2 + - uid: 5556 + components: + - type: Transform + pos: -57.5,29.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + pos: -54.5,31.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + pos: -54.5,33.5 + parent: 2 + - uid: 5574 + components: + - type: Transform + pos: -54.5,34.5 + parent: 2 + - uid: 5584 + components: + - type: Transform + pos: -54.5,35.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: -52.5,35.5 + parent: 2 - uid: 5598 components: - type: Transform - pos: -49.5,25.5 + pos: -52.5,34.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: -52.5,33.5 + parent: 2 + - uid: 5610 + components: + - type: Transform + pos: -52.5,32.5 parent: 2 - uid: 5613 components: - type: Transform - pos: -47.5,26.5 + pos: -52.5,31.5 parent: 2 - uid: 5617 components: - type: Transform pos: -44.5,-48.5 parent: 2 + - uid: 5619 + components: + - type: Transform + pos: -56.5,31.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + pos: -56.5,32.5 + parent: 2 + - uid: 5638 + components: + - type: Transform + pos: -56.5,33.5 + parent: 2 - uid: 5639 components: - type: Transform @@ -45590,13 +47687,68 @@ entities: - uid: 5654 components: - type: Transform - pos: -35.5,23.5 + pos: -56.5,34.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + pos: -56.5,35.5 + parent: 2 + - uid: 5677 + components: + - type: Transform + pos: -58.5,35.5 + parent: 2 + - uid: 5680 + components: + - type: Transform + pos: -58.5,34.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 + - uid: 5695 + components: + - type: Transform + pos: -58.5,32.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + pos: -58.5,31.5 + parent: 2 + - uid: 5730 + components: + - type: Transform + pos: -60.5,31.5 parent: 2 - uid: 5757 components: - type: Transform pos: -29.5,-19.5 parent: 2 + - uid: 5768 + components: + - type: Transform + pos: -60.5,32.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + pos: -60.5,33.5 + parent: 2 + - uid: 5810 + components: + - type: Transform + pos: -60.5,34.5 + parent: 2 + - uid: 5842 + components: + - type: Transform + pos: -60.5,35.5 + parent: 2 - uid: 5850 components: - type: Transform @@ -45617,10 +47769,30 @@ entities: - type: Transform pos: 25.5,-55.5 parent: 2 + - uid: 5855 + components: + - type: Transform + pos: -62.5,35.5 + parent: 2 + - uid: 5861 + components: + - type: Transform + pos: -62.5,34.5 + parent: 2 + - uid: 5866 + components: + - type: Transform + pos: -62.5,33.5 + parent: 2 - uid: 5870 components: - type: Transform - pos: -33.5,0.5 + pos: -62.5,32.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + pos: -62.5,31.5 parent: 2 - uid: 5879 components: @@ -45632,6 +47804,11 @@ entities: - type: Transform pos: -12.5,-56.5 parent: 2 + - uid: 5881 + components: + - type: Transform + pos: -64.5,31.5 + parent: 2 - uid: 5887 components: - type: Transform @@ -45652,6 +47829,41 @@ entities: - type: Transform pos: 24.5,-33.5 parent: 2 + - uid: 5921 + components: + - type: Transform + pos: -64.5,32.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + pos: -64.5,33.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: -64.5,34.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + pos: -64.5,35.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + pos: -66.5,35.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + pos: -66.5,34.5 + parent: 2 + - uid: 5937 + components: + - type: Transform + pos: -66.5,33.5 + parent: 2 - uid: 5949 components: - type: Transform @@ -45667,11 +47879,26 @@ entities: - type: Transform pos: 24.5,-34.5 parent: 2 + - uid: 5956 + components: + - type: Transform + pos: -66.5,32.5 + parent: 2 - uid: 5964 components: - type: Transform pos: 22.5,6.5 parent: 2 + - uid: 5966 + components: + - type: Transform + pos: -66.5,31.5 + parent: 2 + - uid: 5968 + components: + - type: Transform + pos: -63.5,26.5 + parent: 2 - uid: 6006 components: - type: Transform @@ -45680,7 +47907,22 @@ entities: - uid: 6026 components: - type: Transform - pos: -30.5,17.5 + pos: -64.5,26.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + pos: -65.5,26.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + pos: -66.5,26.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + pos: -67.5,26.5 parent: 2 - uid: 6038 components: @@ -45692,6 +47934,11 @@ entities: - type: Transform pos: 35.5,6.5 parent: 2 + - uid: 6055 + components: + - type: Transform + pos: -67.5,24.5 + parent: 2 - uid: 6056 components: - type: Transform @@ -45702,6 +47949,11 @@ entities: - type: Transform pos: 34.5,6.5 parent: 2 + - uid: 6073 + components: + - type: Transform + pos: -66.5,24.5 + parent: 2 - uid: 6084 components: - type: Transform @@ -45712,6 +47964,46 @@ entities: - type: Transform pos: 5.5,-17.5 parent: 2 + - uid: 6110 + components: + - type: Transform + pos: -65.5,24.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + pos: -64.5,24.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + pos: -63.5,24.5 + parent: 2 + - uid: 6125 + components: + - type: Transform + pos: -63.5,22.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + pos: -64.5,22.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + pos: -65.5,22.5 + parent: 2 + - uid: 6129 + components: + - type: Transform + pos: -66.5,22.5 + parent: 2 + - uid: 6146 + components: + - type: Transform + pos: -67.5,22.5 + parent: 2 - uid: 6151 components: - type: Transform @@ -45722,6 +48014,31 @@ entities: - type: Transform pos: 25.5,-18.5 parent: 2 + - uid: 6172 + components: + - type: Transform + pos: -67.5,20.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + pos: -66.5,20.5 + parent: 2 + - uid: 6196 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 6203 + components: + - type: Transform + pos: -64.5,20.5 + parent: 2 + - uid: 6205 + components: + - type: Transform + pos: -63.5,20.5 + parent: 2 - uid: 6208 components: - type: Transform @@ -45732,6 +48049,21 @@ entities: - type: Transform pos: -27.5,-15.5 parent: 2 + - uid: 6245 + components: + - type: Transform + pos: -63.5,18.5 + parent: 2 + - uid: 6250 + components: + - type: Transform + pos: -64.5,18.5 + parent: 2 + - uid: 6253 + components: + - type: Transform + pos: -65.5,18.5 + parent: 2 - uid: 6258 components: - type: Transform @@ -45752,6 +48084,11 @@ entities: - type: Transform pos: 16.5,-18.5 parent: 2 + - uid: 6277 + components: + - type: Transform + pos: -66.5,18.5 + parent: 2 - uid: 6280 components: - type: Transform @@ -45767,11 +48104,21 @@ entities: - type: Transform pos: 31.5,-13.5 parent: 2 + - uid: 6285 + components: + - type: Transform + pos: -67.5,18.5 + parent: 2 - uid: 6289 components: - type: Transform pos: 10.5,-17.5 parent: 2 + - uid: 6296 + components: + - type: Transform + pos: -67.5,16.5 + parent: 2 - uid: 6304 components: - type: Transform @@ -45792,6 +48139,26 @@ entities: - type: Transform pos: 23.5,-10.5 parent: 2 + - uid: 6324 + components: + - type: Transform + pos: -66.5,16.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: -65.5,16.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + pos: -64.5,16.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + pos: -63.5,16.5 + parent: 2 - uid: 6341 components: - type: Transform @@ -45802,6 +48169,11 @@ entities: - type: Transform pos: 23.5,-19.5 parent: 2 + - uid: 6358 + components: + - type: Transform + pos: -63.5,14.5 + parent: 2 - uid: 6372 components: - type: Transform @@ -45817,6 +48189,11 @@ entities: - type: Transform pos: 26.5,-10.5 parent: 2 + - uid: 6395 + components: + - type: Transform + pos: -64.5,14.5 + parent: 2 - uid: 6398 components: - type: Transform @@ -45832,6 +48209,16 @@ entities: - type: Transform pos: 23.5,-17.5 parent: 2 + - uid: 6422 + components: + - type: Transform + pos: -65.5,14.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + pos: -66.5,14.5 + parent: 2 - uid: 6447 components: - type: Transform @@ -45852,11 +48239,51 @@ entities: - type: Transform pos: 27.5,-10.5 parent: 2 + - uid: 6472 + components: + - type: Transform + pos: -67.5,14.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: -67.5,12.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + pos: -66.5,12.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + pos: -65.5,12.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + pos: -64.5,12.5 + parent: 2 - uid: 6504 components: - type: Transform pos: 40.5,6.5 parent: 2 + - uid: 6510 + components: + - type: Transform + pos: -63.5,12.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: -63.5,10.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + pos: -64.5,10.5 + parent: 2 - uid: 6529 components: - type: Transform @@ -45867,11 +48294,21 @@ entities: - type: Transform pos: 13.5,-13.5 parent: 2 + - uid: 6571 + components: + - type: Transform + pos: -65.5,10.5 + parent: 2 - uid: 6581 components: - type: Transform pos: -25.5,-15.5 parent: 2 + - uid: 6582 + components: + - type: Transform + pos: -66.5,10.5 + parent: 2 - uid: 6586 components: - type: Transform @@ -45882,6 +48319,56 @@ entities: - type: Transform pos: 9.5,-17.5 parent: 2 + - uid: 6595 + components: + - type: Transform + pos: -67.5,10.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + pos: -67.5,8.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + pos: -66.5,8.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + pos: -65.5,8.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + pos: -64.5,8.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + pos: -63.5,8.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: -61.5,9.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: -61.5,13.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: -61.5,17.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + pos: -61.5,25.5 + parent: 2 - uid: 6649 components: - type: Transform @@ -45892,10 +48379,30 @@ entities: - type: Transform pos: -18.5,-16.5 parent: 2 + - uid: 6651 + components: + - type: Transform + pos: -61.5,29.5 + parent: 2 + - uid: 6652 + components: + - type: Transform + pos: -65.5,29.5 + parent: 2 - uid: 6659 components: - type: Transform - pos: -30.5,18.5 + pos: -68.5,29.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + pos: -49.5,29.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: -45.5,29.5 parent: 2 - uid: 6703 components: @@ -45907,56 +48414,66 @@ entities: - type: Transform pos: 39.5,6.5 parent: 2 + - uid: 6714 + components: + - type: Transform + pos: -44.5,29.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: -50.5,31.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + pos: -50.5,32.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + pos: -50.5,33.5 + parent: 2 - uid: 6751 components: - type: Transform - pos: -55.5,27.5 + pos: -48.5,33.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: -48.5,32.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + pos: -48.5,31.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + pos: -48.5,34.5 parent: 2 - uid: 6777 components: - type: Transform pos: 24.5,-39.5 parent: 2 + - uid: 6871 + components: + - type: Transform + pos: -48.5,35.5 + parent: 2 - uid: 6879 components: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 6886 - components: - - type: Transform - pos: -21.5,14.5 - parent: 2 - - uid: 6959 - components: - - type: Transform - pos: -30.5,19.5 - parent: 2 - - uid: 6964 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - uid: 6973 - components: - - type: Transform - pos: -38.5,-12.5 - parent: 2 - uid: 6990 components: - type: Transform pos: 21.5,-33.5 parent: 2 - - uid: 7001 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 2 - - uid: 7007 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 2 - uid: 7011 components: - type: Transform @@ -45992,31 +48509,16 @@ entities: - type: Transform pos: -11.5,-21.5 parent: 2 - - uid: 7061 + - uid: 7090 components: - type: Transform - pos: -42.5,23.5 + pos: -67.5,29.5 parent: 2 - uid: 7096 components: - type: Transform pos: -10.5,-21.5 parent: 2 - - uid: 7108 - components: - - type: Transform - pos: -45.5,16.5 - parent: 2 - - uid: 7114 - components: - - type: Transform - pos: -44.5,16.5 - parent: 2 - - uid: 7133 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 2 - uid: 7141 components: - type: Transform @@ -46052,11 +48554,6 @@ entities: - type: Transform pos: 14.5,-13.5 parent: 2 - - uid: 7245 - components: - - type: Transform - pos: -32.5,-4.5 - parent: 2 - uid: 7325 components: - type: Transform @@ -46067,10 +48564,10 @@ entities: - type: Transform pos: 20.5,-13.5 parent: 2 - - uid: 7420 + - uid: 7480 components: - type: Transform - pos: -31.5,-4.5 + pos: 96.5,-44.5 parent: 2 - uid: 7500 components: @@ -46102,26 +48599,11 @@ entities: - type: Transform pos: 18.5,-13.5 parent: 2 - - uid: 7732 - components: - - type: Transform - pos: -47.5,16.5 - parent: 2 - uid: 7734 components: - type: Transform pos: 17.5,-13.5 parent: 2 - - uid: 7745 - components: - - type: Transform - pos: -48.5,18.5 - parent: 2 - - uid: 7746 - components: - - type: Transform - pos: -48.5,16.5 - parent: 2 - uid: 7763 components: - type: Transform @@ -46142,21 +48624,11 @@ entities: - type: Transform pos: -2.5,11.5 parent: 2 - - uid: 7984 - components: - - type: Transform - pos: -46.5,16.5 - parent: 2 - uid: 8034 components: - type: Transform pos: 21.5,6.5 parent: 2 - - uid: 8048 - components: - - type: Transform - pos: -47.5,28.5 - parent: 2 - uid: 8121 components: - type: Transform @@ -46182,46 +48654,21 @@ entities: - type: Transform pos: -20.5,-16.5 parent: 2 - - uid: 8311 - components: - - type: Transform - pos: -44.5,18.5 - parent: 2 - uid: 8326 components: - type: Transform pos: 33.5,6.5 parent: 2 - - uid: 8330 + - uid: 8327 components: - type: Transform - pos: -53.5,25.5 - parent: 2 - - uid: 8352 - components: - - type: Transform - pos: -49.5,27.5 + pos: 91.5,-44.5 parent: 2 - uid: 8366 components: - type: Transform pos: -17.5,20.5 parent: 2 - - uid: 8397 - components: - - type: Transform - pos: -45.5,18.5 - parent: 2 - - uid: 8423 - components: - - type: Transform - pos: -46.5,18.5 - parent: 2 - - uid: 8424 - components: - - type: Transform - pos: -47.5,18.5 - parent: 2 - uid: 8433 components: - type: Transform @@ -46252,11 +48699,6 @@ entities: - type: Transform pos: 65.5,8.5 parent: 2 - - uid: 8474 - components: - - type: Transform - pos: -19.5,14.5 - parent: 2 - uid: 8475 components: - type: Transform @@ -46307,11 +48749,6 @@ entities: - type: Transform pos: 29.5,6.5 parent: 2 - - uid: 8709 - components: - - type: Transform - pos: -18.5,16.5 - parent: 2 - uid: 8712 components: - type: Transform @@ -46542,11 +48979,6 @@ entities: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 8930 - components: - - type: Transform - pos: -47.5,29.5 - parent: 2 - uid: 8933 components: - type: Transform @@ -46562,26 +48994,6 @@ entities: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 8948 - components: - - type: Transform - pos: -54.5,12.5 - parent: 2 - - uid: 8951 - components: - - type: Transform - pos: -31.5,24.5 - parent: 2 - - uid: 8957 - components: - - type: Transform - pos: -31.5,23.5 - parent: 2 - - uid: 8958 - components: - - type: Transform - pos: -32.5,23.5 - parent: 2 - uid: 8964 components: - type: Transform @@ -46747,6 +49159,11 @@ entities: - type: Transform pos: 65.5,-0.5 parent: 2 + - uid: 9109 + components: + - type: Transform + pos: 93.5,-44.5 + parent: 2 - uid: 9121 components: - type: Transform @@ -47047,16 +49464,16 @@ entities: - type: Transform pos: -8.5,-48.5 parent: 2 + - uid: 9286 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 - uid: 9351 components: - type: Transform pos: 7.5,-17.5 parent: 2 - - uid: 9354 - components: - - type: Transform - pos: -50.5,-11.5 - parent: 2 - uid: 9496 components: - type: Transform @@ -47082,6 +49499,16 @@ entities: - type: Transform pos: 25.5,12.5 parent: 2 + - uid: 9531 + components: + - type: Transform + pos: 92.5,-44.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + pos: 90.5,-44.5 + parent: 2 - uid: 9615 components: - type: Transform @@ -47172,6 +49599,11 @@ entities: - type: Transform pos: 22.5,10.5 parent: 2 + - uid: 9983 + components: + - type: Transform + pos: 96.5,-42.5 + parent: 2 - uid: 10068 components: - type: Transform @@ -47227,6 +49659,11 @@ entities: - type: Transform pos: 27.5,-18.5 parent: 2 + - uid: 10197 + components: + - type: Transform + pos: 95.5,-42.5 + parent: 2 - uid: 10204 components: - type: Transform @@ -47252,6 +49689,11 @@ entities: - type: Transform pos: 26.5,-18.5 parent: 2 + - uid: 10240 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 - uid: 10253 components: - type: Transform @@ -47262,6 +49704,11 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 2 + - uid: 10262 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 - uid: 10264 components: - type: Transform @@ -47297,21 +49744,6 @@ entities: - type: Transform pos: 30.5,-14.5 parent: 2 - - uid: 10271 - components: - - type: Transform - pos: -32.5,10.5 - parent: 2 - - uid: 10272 - components: - - type: Transform - pos: -32.5,12.5 - parent: 2 - - uid: 10273 - components: - - type: Transform - pos: -32.5,11.5 - parent: 2 - uid: 10274 components: - type: Transform @@ -47447,6 +49879,11 @@ entities: - type: Transform pos: 17.5,-56.5 parent: 2 + - uid: 10703 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 - uid: 10716 components: - type: Transform @@ -47557,16 +49994,6 @@ entities: - type: Transform pos: -49.5,-55.5 parent: 2 - - uid: 11415 - components: - - type: Transform - pos: -33.5,-14.5 - parent: 2 - - uid: 11417 - components: - - type: Transform - pos: -33.5,-13.5 - parent: 2 - uid: 11418 components: - type: Transform @@ -47592,11 +50019,6 @@ entities: - type: Transform pos: 13.5,-15.5 parent: 2 - - uid: 11989 - components: - - type: Transform - pos: -32.5,7.5 - parent: 2 - uid: 11996 components: - type: Transform @@ -47727,11 +50149,6 @@ entities: - type: Transform pos: 44.5,14.5 parent: 2 - - uid: 12560 - components: - - type: Transform - pos: -33.5,-12.5 - parent: 2 - uid: 12669 components: - type: Transform @@ -47752,11 +50169,6 @@ entities: - type: Transform pos: 25.5,6.5 parent: 2 - - uid: 12985 - components: - - type: Transform - pos: -18.5,17.5 - parent: 2 - uid: 12997 components: - type: Transform @@ -47772,11 +50184,6 @@ entities: - type: Transform pos: 31.5,-14.5 parent: 2 - - uid: 13092 - components: - - type: Transform - pos: -18.5,15.5 - parent: 2 - uid: 13118 components: - type: Transform @@ -47882,16 +50289,61 @@ entities: - type: Transform pos: -23.5,-25.5 parent: 2 + - uid: 14601 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 + - uid: 14602 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 14610 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 + - uid: 14613 + components: + - type: Transform + pos: -38.5,28.5 + parent: 2 + - uid: 14618 + components: + - type: Transform + pos: -40.5,26.5 + parent: 2 + - uid: 14619 + components: + - type: Transform + pos: -40.5,25.5 + parent: 2 + - uid: 14620 + components: + - type: Transform + pos: -39.5,25.5 + parent: 2 + - uid: 14621 + components: + - type: Transform + pos: -39.5,24.5 + parent: 2 + - uid: 14622 + components: + - type: Transform + pos: -39.5,23.5 + parent: 2 + - uid: 14626 + components: + - type: Transform + pos: -39.5,22.5 + parent: 2 - uid: 14784 components: - type: Transform pos: 31.5,-15.5 parent: 2 - - uid: 14786 - components: - - type: Transform - pos: -33.5,-11.5 - parent: 2 - uid: 14789 components: - type: Transform @@ -47957,11 +50409,6 @@ entities: - type: Transform pos: -36.5,-41.5 parent: 2 - - uid: 15175 - components: - - type: Transform - pos: -30.5,-8.5 - parent: 2 - uid: 15189 components: - type: Transform @@ -48092,11 +50539,6 @@ entities: - type: Transform pos: -16.5,-16.5 parent: 2 - - uid: 15943 - components: - - type: Transform - pos: -63.5,-8.5 - parent: 2 - uid: 16063 components: - type: Transform @@ -48117,181 +50559,56 @@ entities: - type: Transform pos: -58.5,-59.5 parent: 2 - - uid: 16269 - components: - - type: Transform - pos: -62.5,-8.5 - parent: 2 - - uid: 16270 - components: - - type: Transform - pos: -62.5,-10.5 - parent: 2 - - uid: 16272 - components: - - type: Transform - pos: -61.5,-8.5 - parent: 2 - - uid: 16274 - components: - - type: Transform - pos: -62.5,-10.5 - parent: 2 - - uid: 16277 - components: - - type: Transform - pos: -62.5,-9.5 - parent: 2 - - uid: 16278 - components: - - type: Transform - pos: -62.5,-11.5 - parent: 2 - - uid: 16279 - components: - - type: Transform - pos: -62.5,-12.5 - parent: 2 - - uid: 16280 - components: - - type: Transform - pos: -61.5,-12.5 - parent: 2 - - uid: 16281 - components: - - type: Transform - pos: -60.5,-12.5 - parent: 2 - - uid: 16282 - components: - - type: Transform - pos: -59.5,-12.5 - parent: 2 - - uid: 16283 - components: - - type: Transform - pos: -58.5,-12.5 - parent: 2 - - uid: 16284 - components: - - type: Transform - pos: -57.5,-12.5 - parent: 2 - - uid: 16285 - components: - - type: Transform - pos: -56.5,-12.5 - parent: 2 - - uid: 16286 - components: - - type: Transform - pos: -55.5,-12.5 - parent: 2 - - uid: 16287 - components: - - type: Transform - pos: -54.5,-12.5 - parent: 2 - - uid: 16288 - components: - - type: Transform - pos: -53.5,-12.5 - parent: 2 - - uid: 16289 - components: - - type: Transform - pos: -51.5,-12.5 - parent: 2 - - uid: 16290 - components: - - type: Transform - pos: -50.5,-12.5 - parent: 2 - - uid: 16291 - components: - - type: Transform - pos: -49.5,-12.5 - parent: 2 - - uid: 16292 - components: - - type: Transform - pos: -48.5,-12.5 - parent: 2 - - uid: 16293 - components: - - type: Transform - pos: -47.5,-12.5 - parent: 2 - - uid: 16294 - components: - - type: Transform - pos: -46.5,-12.5 - parent: 2 - - uid: 16295 - components: - - type: Transform - pos: -45.5,-12.5 - parent: 2 - - uid: 16296 - components: - - type: Transform - pos: -44.5,-12.5 - parent: 2 - - uid: 16297 - components: - - type: Transform - pos: -52.5,-12.5 - parent: 2 - - uid: 16298 - components: - - type: Transform - pos: -43.5,-12.5 - parent: 2 - - uid: 16299 - components: - - type: Transform - pos: -42.5,-12.5 - parent: 2 - - uid: 16300 - components: - - type: Transform - pos: -40.5,-12.5 - parent: 2 - - uid: 16301 - components: - - type: Transform - pos: -39.5,-12.5 - parent: 2 - - uid: 16303 - components: - - type: Transform - pos: -41.5,-12.5 - parent: 2 - uid: 16329 components: - type: Transform pos: -58.5,-60.5 parent: 2 + - uid: 16590 + components: + - type: Transform + pos: 94.5,-42.5 + parent: 2 - uid: 16639 components: - type: Transform pos: -16.5,-14.5 parent: 2 - - uid: 16684 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 2 - uid: 16687 components: - type: Transform pos: 36.5,13.5 parent: 2 + - uid: 16870 + components: + - type: Transform + pos: 96.5,-41.5 + parent: 2 + - uid: 16902 + components: + - type: Transform + pos: 94.5,-43.5 + parent: 2 - uid: 16922 components: - type: Transform pos: 20.5,-33.5 parent: 2 + - uid: 17093 + components: + - type: Transform + pos: 94.5,-44.5 + parent: 2 + - uid: 17163 + components: + - type: Transform + pos: 88.5,-44.5 + parent: 2 + - uid: 17166 + components: + - type: Transform + pos: 89.5,-44.5 + parent: 2 - uid: 17174 components: - type: Transform @@ -48322,20 +50639,10 @@ entities: - type: Transform pos: 57.5,4.5 parent: 2 - - uid: 17764 + - uid: 17804 components: - type: Transform - pos: -45.5,26.5 - parent: 2 - - uid: 17768 - components: - - type: Transform - pos: -55.5,10.5 - parent: 2 - - uid: 17770 - components: - - type: Transform - pos: -56.5,10.5 + pos: 96.5,-43.5 parent: 2 - uid: 17805 components: @@ -48407,40 +50714,245 @@ entities: - type: Transform pos: -72.5,-58.5 parent: 2 + - uid: 17853 + components: + - type: Transform + pos: 88.5,-43.5 + parent: 2 + - uid: 17854 + components: + - type: Transform + pos: 88.5,-42.5 + parent: 2 + - uid: 17858 + components: + - type: Transform + pos: 87.5,-42.5 + parent: 2 + - uid: 17860 + components: + - type: Transform + pos: 86.5,-42.5 + parent: 2 + - uid: 17861 + components: + - type: Transform + pos: 85.5,-42.5 + parent: 2 + - uid: 17862 + components: + - type: Transform + pos: 84.5,-42.5 + parent: 2 + - uid: 17865 + components: + - type: Transform + pos: 83.5,-42.5 + parent: 2 + - uid: 17866 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 2 + - uid: 17869 + components: + - type: Transform + pos: 81.5,-42.5 + parent: 2 - uid: 17871 components: - type: Transform - pos: -32.5,-9.5 + pos: 80.5,-42.5 parent: 2 - uid: 17884 components: - type: Transform - pos: -30.5,16.5 + pos: 79.5,-42.5 parent: 2 - uid: 17887 components: - type: Transform pos: -72.5,-57.5 parent: 2 + - uid: 17889 + components: + - type: Transform + pos: 79.5,-41.5 + parent: 2 + - uid: 17891 + components: + - type: Transform + pos: 79.5,-40.5 + parent: 2 + - uid: 17892 + components: + - type: Transform + pos: 79.5,-39.5 + parent: 2 + - uid: 17893 + components: + - type: Transform + pos: 79.5,-38.5 + parent: 2 + - uid: 17895 + components: + - type: Transform + pos: 79.5,-37.5 + parent: 2 + - uid: 17896 + components: + - type: Transform + pos: 78.5,-37.5 + parent: 2 + - uid: 17897 + components: + - type: Transform + pos: 77.5,-37.5 + parent: 2 + - uid: 17898 + components: + - type: Transform + pos: 76.5,-37.5 + parent: 2 - uid: 17899 components: - type: Transform pos: -72.5,-56.5 parent: 2 + - uid: 17900 + components: + - type: Transform + pos: 75.5,-37.5 + parent: 2 - uid: 17902 components: - type: Transform - pos: -30.5,20.5 + pos: 74.5,-37.5 + parent: 2 + - uid: 17903 + components: + - type: Transform + pos: 73.5,-37.5 + parent: 2 + - uid: 17904 + components: + - type: Transform + pos: 72.5,-37.5 + parent: 2 + - uid: 17905 + components: + - type: Transform + pos: 71.5,-37.5 + parent: 2 + - uid: 17906 + components: + - type: Transform + pos: 70.5,-37.5 + parent: 2 + - uid: 17910 + components: + - type: Transform + pos: 69.5,-37.5 + parent: 2 + - uid: 17913 + components: + - type: Transform + pos: 68.5,-37.5 + parent: 2 + - uid: 17914 + components: + - type: Transform + pos: 67.5,-37.5 + parent: 2 + - uid: 17915 + components: + - type: Transform + pos: 66.5,-37.5 + parent: 2 + - uid: 17916 + components: + - type: Transform + pos: 65.5,-37.5 + parent: 2 + - uid: 17917 + components: + - type: Transform + pos: 64.5,-37.5 + parent: 2 + - uid: 17918 + components: + - type: Transform + pos: 63.5,-37.5 + parent: 2 + - uid: 17919 + components: + - type: Transform + pos: 62.5,-37.5 + parent: 2 + - uid: 17920 + components: + - type: Transform + pos: 61.5,-37.5 + parent: 2 + - uid: 17921 + components: + - type: Transform + pos: 60.5,-37.5 + parent: 2 + - uid: 17922 + components: + - type: Transform + pos: 57.5,-37.5 + parent: 2 + - uid: 17923 + components: + - type: Transform + pos: 58.5,-37.5 + parent: 2 + - uid: 17925 + components: + - type: Transform + pos: 56.5,-37.5 + parent: 2 + - uid: 17928 + components: + - type: Transform + pos: 55.5,-37.5 + parent: 2 + - uid: 17929 + components: + - type: Transform + pos: 54.5,-37.5 parent: 2 - uid: 17931 components: - type: Transform - pos: -53.5,12.5 + pos: 53.5,-37.5 parent: 2 - uid: 17932 components: - type: Transform - pos: -54.5,10.5 + pos: 52.5,-37.5 + parent: 2 + - uid: 17933 + components: + - type: Transform + pos: 51.5,-37.5 + parent: 2 + - uid: 17934 + components: + - type: Transform + pos: 50.5,-37.5 + parent: 2 + - uid: 17935 + components: + - type: Transform + pos: 49.5,-37.5 + parent: 2 + - uid: 17936 + components: + - type: Transform + pos: 59.5,-37.5 parent: 2 - uid: 17937 components: @@ -48467,21 +50979,6 @@ entities: - type: Transform pos: 67.5,-3.5 parent: 2 - - uid: 17978 - components: - - type: Transform - pos: -28.5,23.5 - parent: 2 - - uid: 17981 - components: - - type: Transform - pos: -28.5,22.5 - parent: 2 - - uid: 18021 - components: - - type: Transform - pos: -30.5,15.5 - parent: 2 - uid: 18128 components: - type: Transform @@ -48502,71 +50999,11 @@ entities: - type: Transform pos: 57.5,-0.5 parent: 2 - - uid: 18159 - components: - - type: Transform - pos: -33.5,23.5 - parent: 2 - uid: 18188 components: - type: Transform pos: -70.5,-56.5 parent: 2 - - uid: 18213 - components: - - type: Transform - pos: -45.5,20.5 - parent: 2 - - uid: 18214 - components: - - type: Transform - pos: -47.5,20.5 - parent: 2 - - uid: 18215 - components: - - type: Transform - pos: -53.5,28.5 - parent: 2 - - uid: 18216 - components: - - type: Transform - pos: -53.5,29.5 - parent: 2 - - uid: 18217 - components: - - type: Transform - pos: -44.5,20.5 - parent: 2 - - uid: 18218 - components: - - type: Transform - pos: -48.5,20.5 - parent: 2 - - uid: 18219 - components: - - type: Transform - pos: -52.5,20.5 - parent: 2 - - uid: 18226 - components: - - type: Transform - pos: -46.5,20.5 - parent: 2 - - uid: 18237 - components: - - type: Transform - pos: -53.5,27.5 - parent: 2 - - uid: 18240 - components: - - type: Transform - pos: -52.5,18.5 - parent: 2 - - uid: 18242 - components: - - type: Transform - pos: -53.5,26.5 - parent: 2 - uid: 18266 components: - type: Transform @@ -48582,36 +51019,6 @@ entities: - type: Transform pos: -70.5,-59.5 parent: 2 - - uid: 18350 - components: - - type: Transform - pos: -30.5,24.5 - parent: 2 - - uid: 18352 - components: - - type: Transform - pos: -29.5,22.5 - parent: 2 - - uid: 18362 - components: - - type: Transform - pos: -56.5,12.5 - parent: 2 - - uid: 18365 - components: - - type: Transform - pos: -29.5,24.5 - parent: 2 - - uid: 18377 - components: - - type: Transform - pos: -55.5,12.5 - parent: 2 - - uid: 18381 - components: - - type: Transform - pos: -29.5,23.5 - parent: 2 - uid: 18597 components: - type: Transform @@ -48657,11 +51064,6 @@ entities: - type: Transform pos: -68.5,-59.5 parent: 2 - - uid: 18720 - components: - - type: Transform - pos: -50.5,15.5 - parent: 2 - uid: 18726 components: - type: Transform @@ -48677,16 +51079,6 @@ entities: - type: Transform pos: -68.5,-58.5 parent: 2 - - uid: 18904 - components: - - type: Transform - pos: -30.5,14.5 - parent: 2 - - uid: 18905 - components: - - type: Transform - pos: -31.5,14.5 - parent: 2 - uid: 18918 components: - type: Transform @@ -48722,11 +51114,6 @@ entities: - type: Transform pos: -66.5,-59.5 parent: 2 - - uid: 19759 - components: - - type: Transform - pos: -31.5,-9.5 - parent: 2 - uid: 20154 components: - type: Transform @@ -48752,21 +51139,6 @@ entities: - type: Transform pos: -76.5,-50.5 parent: 2 - - uid: 20429 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 2 - - uid: 20528 - components: - - type: Transform - pos: -33.5,-9.5 - parent: 2 - - uid: 20545 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 2 - uid: 20564 components: - type: Transform @@ -48867,11 +51239,6 @@ entities: - type: Transform pos: -16.5,-55.5 parent: 2 - - uid: 20768 - components: - - type: Transform - pos: -32.5,14.5 - parent: 2 - uid: 20807 components: - type: Transform @@ -49017,11 +51384,6 @@ entities: - type: Transform pos: -66.5,-52.5 parent: 2 - - uid: 21181 - components: - - type: Transform - pos: -33.5,-10.5 - parent: 2 - uid: 21183 components: - type: Transform @@ -49117,11 +51479,6 @@ entities: - type: Transform pos: 23.5,-33.5 parent: 2 - - uid: 21793 - components: - - type: Transform - pos: -32.5,13.5 - parent: 2 - uid: 21795 components: - type: Transform @@ -49657,32 +52014,162 @@ entities: - type: Transform pos: -67.5,-54.5 parent: 2 - - uid: 23703 - components: - - type: Transform - pos: -50.5,23.5 - parent: 2 - uid: 23708 components: - type: Transform pos: 58.5,2.5 parent: 2 - - uid: 23712 - components: - - type: Transform - pos: 62.5,2.5 - parent: 2 - uid: 23715 components: - type: Transform pos: 66.5,2.5 parent: 2 + - uid: 23741 + components: + - type: Transform + pos: -37.5,27.5 + parent: 2 + - uid: 24414 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 24415 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 24416 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 24417 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 24418 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 24419 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 24420 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 24421 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 24422 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 24423 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 24424 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 24425 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 24426 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 24427 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 24428 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 24429 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 24430 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 24431 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 24432 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 24433 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 24434 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 24435 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 24436 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 24437 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 24438 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 24439 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 - proto: CableHVStack entities: - uid: 3391 components: - type: Transform - pos: -16.573278,-25.136585 + pos: -16.487865,-25.192295 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: -39.500957,30.60585 parent: 2 - uid: 9575 components: @@ -49694,28 +52181,11 @@ entities: - type: Transform pos: -13.366984,-10.436457 parent: 2 - - uid: 10756 - components: - - type: Transform - pos: -55.592247,-13.290644 - parent: 2 - uid: 16893 components: - type: Transform pos: -58.51258,-58.38839 parent: 2 - - uid: 18184 - components: - - type: Transform - pos: -29.499138,22.607857 - parent: 2 -- proto: CableHVStack10 - entities: - - uid: 648 - components: - - type: Transform - pos: -51.483383,15.526428 - parent: 2 - proto: CableMV entities: - uid: 8 @@ -49738,11 +52208,6 @@ entities: - type: Transform pos: 41.5,-1.5 parent: 2 - - uid: 64 - components: - - type: Transform - pos: -28.5,6.5 - parent: 2 - uid: 68 components: - type: Transform @@ -49763,16 +52228,6 @@ entities: - type: Transform pos: -20.5,-51.5 parent: 2 - - uid: 148 - components: - - type: Transform - pos: -43.5,4.5 - parent: 2 - - uid: 172 - components: - - type: Transform - pos: -25.5,11.5 - parent: 2 - uid: 174 components: - type: Transform @@ -49793,11 +52248,6 @@ entities: - type: Transform pos: -0.5,25.5 parent: 2 - - uid: 229 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 2 - uid: 239 components: - type: Transform @@ -49808,26 +52258,11 @@ entities: - type: Transform pos: 3.5,25.5 parent: 2 - - uid: 254 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 2 - - uid: 258 - components: - - type: Transform - pos: -26.5,-12.5 - parent: 2 - uid: 261 components: - type: Transform pos: 4.5,20.5 parent: 2 - - uid: 269 - components: - - type: Transform - pos: -19.5,14.5 - parent: 2 - uid: 274 components: - type: Transform @@ -49843,36 +52278,16 @@ entities: - type: Transform pos: -4.5,24.5 parent: 2 - - uid: 288 - components: - - type: Transform - pos: -26.5,-11.5 - parent: 2 - - uid: 315 - components: - - type: Transform - pos: -24.5,-11.5 - parent: 2 - uid: 316 components: - type: Transform pos: -11.5,24.5 parent: 2 - - uid: 317 - components: - - type: Transform - pos: -25.5,-11.5 - parent: 2 - uid: 321 components: - type: Transform pos: -11.5,23.5 parent: 2 - - uid: 335 - components: - - type: Transform - pos: -25.5,12.5 - parent: 2 - uid: 343 components: - type: Transform @@ -49891,37 +52306,17 @@ entities: - uid: 393 components: - type: Transform - pos: -28.5,-15.5 + pos: -37.5,-12.5 parent: 2 - uid: 403 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 413 + - uid: 407 components: - type: Transform - pos: -47.5,8.5 - parent: 2 - - uid: 422 - components: - - type: Transform - pos: -45.5,-6.5 - parent: 2 - - uid: 426 - components: - - type: Transform - pos: -28.5,0.5 - parent: 2 - - uid: 428 - components: - - type: Transform - pos: -24.5,11.5 - parent: 2 - - uid: 438 - components: - - type: Transform - pos: -47.5,3.5 + pos: -39.5,-15.5 parent: 2 - uid: 458 components: @@ -50003,16 +52398,6 @@ entities: - type: Transform pos: -0.5,27.5 parent: 2 - - uid: 551 - components: - - type: Transform - pos: -27.5,14.5 - parent: 2 - - uid: 552 - components: - - type: Transform - pos: -26.5,14.5 - parent: 2 - uid: 563 components: - type: Transform @@ -50023,15 +52408,25 @@ entities: - type: Transform pos: -22.5,20.5 parent: 2 + - uid: 630 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 - uid: 649 components: - type: Transform pos: 31.5,-7.5 parent: 2 - - uid: 661 + - uid: 656 components: - type: Transform - pos: -25.5,14.5 + pos: -38.5,-14.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: -38.5,-15.5 parent: 2 - uid: 723 components: @@ -50053,11 +52448,6 @@ entities: - type: Transform pos: 22.5,-21.5 parent: 2 - - uid: 911 - components: - - type: Transform - pos: -31.5,21.5 - parent: 2 - uid: 937 components: - type: Transform @@ -50068,6 +52458,11 @@ entities: - type: Transform pos: 26.5,16.5 parent: 2 + - uid: 1030 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 - uid: 1033 components: - type: Transform @@ -50093,16 +52488,6 @@ entities: - type: Transform pos: 41.5,6.5 parent: 2 - - uid: 1240 - components: - - type: Transform - pos: -24.5,7.5 - parent: 2 - - uid: 1272 - components: - - type: Transform - pos: -23.5,7.5 - parent: 2 - uid: 1278 components: - type: Transform @@ -50128,11 +52513,6 @@ entities: - type: Transform pos: -12.5,-21.5 parent: 2 - - uid: 1300 - components: - - type: Transform - pos: -29.5,0.5 - parent: 2 - uid: 1309 components: - type: Transform @@ -50208,11 +52588,6 @@ entities: - type: Transform pos: 0.5,25.5 parent: 2 - - uid: 1490 - components: - - type: Transform - pos: -26.5,0.5 - parent: 2 - uid: 1502 components: - type: Transform @@ -50308,11 +52683,6 @@ entities: - type: Transform pos: -7.5,-22.5 parent: 2 - - uid: 2181 - components: - - type: Transform - pos: -23.5,-4.5 - parent: 2 - uid: 2200 components: - type: Transform @@ -50388,26 +52758,6 @@ entities: - type: Transform pos: -8.5,-13.5 parent: 2 - - uid: 2362 - components: - - type: Transform - pos: -24.5,4.5 - parent: 2 - - uid: 2364 - components: - - type: Transform - pos: -20.5,4.5 - parent: 2 - - uid: 2368 - components: - - type: Transform - pos: -18.5,14.5 - parent: 2 - - uid: 2369 - components: - - type: Transform - pos: -20.5,16.5 - parent: 2 - uid: 2374 components: - type: Transform @@ -50528,151 +52878,236 @@ entities: - type: Transform pos: 23.5,-21.5 parent: 2 - - uid: 2625 + - uid: 2611 components: - type: Transform - pos: -18.5,9.5 + pos: -36.5,-12.5 parent: 2 - - uid: 2639 + - uid: 2647 components: - type: Transform - pos: -23.5,4.5 + pos: -37.5,-15.5 parent: 2 - - uid: 2641 + - uid: 2648 components: - type: Transform - pos: -24.5,14.5 + pos: -36.5,-15.5 parent: 2 - - uid: 2646 + - uid: 2650 components: - type: Transform - pos: -37.5,-9.5 + pos: -35.5,-15.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: -25.5,-11.5 parent: 2 - uid: 2683 components: - type: Transform pos: -8.5,-36.5 parent: 2 - - uid: 2697 - components: - - type: Transform - pos: -33.5,2.5 - parent: 2 - - uid: 2699 - components: - - type: Transform - pos: -33.5,0.5 - parent: 2 - uid: 2702 components: - type: Transform pos: 45.5,-19.5 parent: 2 - - uid: 2705 + - uid: 2739 components: - type: Transform - pos: -35.5,-2.5 + pos: -43.5,-13.5 parent: 2 - - uid: 2709 + - uid: 2740 components: - type: Transform - pos: -38.5,-0.5 + pos: -44.5,-13.5 parent: 2 - - uid: 2711 + - uid: 2741 components: - type: Transform - pos: -38.5,0.5 + pos: -45.5,-13.5 parent: 2 - - uid: 2712 + - uid: 2744 components: - type: Transform - pos: -32.5,7.5 + pos: -46.5,-13.5 parent: 2 - - uid: 2713 + - uid: 2754 components: - type: Transform - pos: -25.5,-2.5 + pos: -47.5,-13.5 parent: 2 - - uid: 2714 + - uid: 2755 components: - type: Transform - pos: -25.5,-0.5 + pos: -48.5,-13.5 parent: 2 - - uid: 2715 + - uid: 2757 components: - type: Transform - pos: -25.5,-1.5 + pos: -49.5,-13.5 parent: 2 - - uid: 2716 + - uid: 2758 components: - type: Transform - pos: -25.5,0.5 + pos: -50.5,-13.5 parent: 2 - - uid: 2717 + - uid: 2761 components: - type: Transform - pos: -25.5,1.5 - parent: 2 - - uid: 2718 - components: - - type: Transform - pos: -25.5,3.5 - parent: 2 - - uid: 2719 - components: - - type: Transform - pos: -25.5,4.5 - parent: 2 - - uid: 2720 - components: - - type: Transform - pos: -25.5,2.5 - parent: 2 - - uid: 2721 - components: - - type: Transform - pos: -25.5,5.5 - parent: 2 - - uid: 2722 - components: - - type: Transform - pos: -25.5,6.5 - parent: 2 - - uid: 2723 - components: - - type: Transform - pos: -25.5,7.5 - parent: 2 - - uid: 2724 - components: - - type: Transform - pos: -25.5,8.5 - parent: 2 - - uid: 2725 - components: - - type: Transform - pos: -25.5,9.5 - parent: 2 - - uid: 2726 - components: - - type: Transform - pos: -25.5,10.5 - parent: 2 - - uid: 2727 - components: - - type: Transform - pos: -25.5,13.5 + pos: -51.5,-13.5 parent: 2 - uid: 2765 components: - type: Transform pos: 45.5,-17.5 parent: 2 + - uid: 2767 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: -56.5,-13.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + pos: -57.5,-11.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: -47.5,15.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 - uid: 2792 components: - type: Transform pos: 45.5,-16.5 parent: 2 + - uid: 2802 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: -48.5,12.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 - uid: 2828 components: - type: Transform @@ -50688,86 +53123,31 @@ entities: - type: Transform pos: -10.5,11.5 parent: 2 - - uid: 2842 - components: - - type: Transform - pos: -27.5,0.5 - parent: 2 - uid: 2855 components: - type: Transform pos: 30.5,-14.5 parent: 2 - - uid: 2865 - components: - - type: Transform - pos: -27.5,9.5 - parent: 2 - - uid: 2872 - components: - - type: Transform - pos: -26.5,8.5 - parent: 2 - - uid: 2873 - components: - - type: Transform - pos: -24.5,8.5 - parent: 2 - - uid: 2875 - components: - - type: Transform - pos: -38.5,-3.5 - parent: 2 - uid: 2882 components: - type: Transform pos: -19.5,23.5 parent: 2 - - uid: 2890 - components: - - type: Transform - pos: -38.5,-2.5 - parent: 2 - uid: 2948 components: - type: Transform pos: -10.5,10.5 parent: 2 - - uid: 2950 - components: - - type: Transform - pos: -23.5,16.5 - parent: 2 - - uid: 2964 - components: - - type: Transform - pos: -38.5,-6.5 - parent: 2 - uid: 2976 components: - type: Transform pos: -24.5,20.5 parent: 2 - - uid: 2986 - components: - - type: Transform - pos: -38.5,-4.5 - parent: 2 - uid: 2991 components: - type: Transform pos: 22.5,-13.5 parent: 2 - - uid: 2996 - components: - - type: Transform - pos: -38.5,-5.5 - parent: 2 - - uid: 3028 - components: - - type: Transform - pos: -25.5,16.5 - parent: 2 - uid: 3034 components: - type: Transform @@ -50833,11 +53213,6 @@ entities: - type: Transform pos: 21.5,-40.5 parent: 2 - - uid: 3357 - components: - - type: Transform - pos: -22.5,4.5 - parent: 2 - uid: 3373 components: - type: Transform @@ -50853,11 +53228,6 @@ entities: - type: Transform pos: 18.5,-3.5 parent: 2 - - uid: 3402 - components: - - type: Transform - pos: -32.5,13.5 - parent: 2 - uid: 3403 components: - type: Transform @@ -50988,6 +53358,16 @@ entities: - type: Transform pos: -14.5,-48.5 parent: 2 + - uid: 4047 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: -34.5,23.5 + parent: 2 - uid: 4062 components: - type: Transform @@ -51013,16 +53393,26 @@ entities: - type: Transform pos: 17.5,-56.5 parent: 2 + - uid: 4158 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 - uid: 4168 components: - type: Transform - pos: -22.5,-4.5 + pos: -35.5,23.5 parent: 2 - uid: 4176 components: - type: Transform pos: 41.5,-3.5 parent: 2 + - uid: 4184 + components: + - type: Transform + pos: -38.5,23.5 + parent: 2 - uid: 4187 components: - type: Transform @@ -51063,11 +53453,46 @@ entities: - type: Transform pos: 38.5,-31.5 parent: 2 + - uid: 4452 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 - uid: 4539 components: - type: Transform pos: 24.5,-35.5 parent: 2 + - uid: 4549 + components: + - type: Transform + pos: -33.5,23.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + pos: -32.5,23.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + pos: -31.5,23.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + pos: -30.5,23.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 - uid: 4579 components: - type: Transform @@ -51088,6 +53513,11 @@ entities: - type: Transform pos: 24.5,-33.5 parent: 2 + - uid: 4602 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 - uid: 4606 components: - type: Transform @@ -51126,13 +53556,28 @@ entities: - uid: 4636 components: - type: Transform - pos: -24.5,16.5 + pos: -29.5,20.5 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: -27.5,20.5 parent: 2 - uid: 4657 components: - type: Transform pos: 31.5,-14.5 parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -33.5,22.5 + parent: 2 - uid: 4669 components: - type: Transform @@ -51143,6 +53588,16 @@ entities: - type: Transform pos: 31.5,-12.5 parent: 2 + - uid: 4682 + components: + - type: Transform + pos: -33.5,21.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 - uid: 4769 components: - type: Transform @@ -51158,6 +53613,11 @@ entities: - type: Transform pos: 16.5,-33.5 parent: 2 + - uid: 4832 + components: + - type: Transform + pos: -37.5,25.5 + parent: 2 - uid: 4834 components: - type: Transform @@ -51263,26 +53723,11 @@ entities: - type: Transform pos: -2.5,25.5 parent: 2 - - uid: 6027 - components: - - type: Transform - pos: -32.5,8.5 - parent: 2 - - uid: 6030 - components: - - type: Transform - pos: -33.5,1.5 - parent: 2 - uid: 6072 components: - type: Transform pos: 2.5,11.5 parent: 2 - - uid: 6128 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 2 - uid: 6169 components: - type: Transform @@ -51308,11 +53753,6 @@ entities: - type: Transform pos: 43.5,2.5 parent: 2 - - uid: 6245 - components: - - type: Transform - pos: -47.5,2.5 - parent: 2 - uid: 6252 components: - type: Transform @@ -51323,21 +53763,11 @@ entities: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 6296 - components: - - type: Transform - pos: -40.5,3.5 - parent: 2 - uid: 6320 components: - type: Transform pos: 23.5,-6.5 parent: 2 - - uid: 6327 - components: - - type: Transform - pos: -42.5,3.5 - parent: 2 - uid: 6333 components: - type: Transform @@ -51348,31 +53778,11 @@ entities: - type: Transform pos: 18.5,-21.5 parent: 2 - - uid: 6358 - components: - - type: Transform - pos: -47.5,1.5 - parent: 2 - - uid: 6395 - components: - - type: Transform - pos: -41.5,3.5 - parent: 2 - uid: 6415 components: - type: Transform pos: 14.5,-60.5 parent: 2 - - uid: 6472 - components: - - type: Transform - pos: -38.5,1.5 - parent: 2 - - uid: 6480 - components: - - type: Transform - pos: -18.5,16.5 - parent: 2 - uid: 6511 components: - type: Transform @@ -51403,11 +53813,6 @@ entities: - type: Transform pos: -7.5,-21.5 parent: 2 - - uid: 6752 - components: - - type: Transform - pos: -22.5,-3.5 - parent: 2 - uid: 6857 components: - type: Transform @@ -51488,11 +53893,6 @@ entities: - type: Transform pos: 40.5,-5.5 parent: 2 - - uid: 7113 - components: - - type: Transform - pos: -33.5,7.5 - parent: 2 - uid: 7122 components: - type: Transform @@ -51538,11 +53938,6 @@ entities: - type: Transform pos: 40.5,6.5 parent: 2 - - uid: 7234 - components: - - type: Transform - pos: -21.5,16.5 - parent: 2 - uid: 7259 components: - type: Transform @@ -51708,11 +54103,6 @@ entities: - type: Transform pos: 16.5,-8.5 parent: 2 - - uid: 7949 - components: - - type: Transform - pos: -21.5,4.5 - parent: 2 - uid: 7956 components: - type: Transform @@ -51743,11 +54133,6 @@ entities: - type: Transform pos: 45.5,-10.5 parent: 2 - - uid: 8264 - components: - - type: Transform - pos: -15.5,3.5 - parent: 2 - uid: 8274 components: - type: Transform @@ -51863,11 +54248,6 @@ entities: - type: Transform pos: 43.5,8.5 parent: 2 - - uid: 8683 - components: - - type: Transform - pos: -20.5,14.5 - parent: 2 - uid: 8706 components: - type: Transform @@ -51883,16 +54263,6 @@ entities: - type: Transform pos: -4.5,-22.5 parent: 2 - - uid: 8876 - components: - - type: Transform - pos: -45.5,-7.5 - parent: 2 - - uid: 8883 - components: - - type: Transform - pos: -47.5,6.5 - parent: 2 - uid: 8898 components: - type: Transform @@ -51908,16 +54278,6 @@ entities: - type: Transform pos: 44.5,2.5 parent: 2 - - uid: 8970 - components: - - type: Transform - pos: -47.5,7.5 - parent: 2 - - uid: 8999 - components: - - type: Transform - pos: -19.5,16.5 - parent: 2 - uid: 9015 components: - type: Transform @@ -52038,31 +54398,11 @@ entities: - type: Transform pos: 9.5,-17.5 parent: 2 - - uid: 9535 - components: - - type: Transform - pos: -29.5,22.5 - parent: 2 - uid: 9544 components: - type: Transform pos: 13.5,-17.5 parent: 2 - - uid: 9557 - components: - - type: Transform - pos: -33.5,6.5 - parent: 2 - - uid: 9559 - components: - - type: Transform - pos: -28.5,22.5 - parent: 2 - - uid: 9565 - components: - - type: Transform - pos: -26.5,-14.5 - parent: 2 - uid: 9568 components: - type: Transform @@ -52078,11 +54418,6 @@ entities: - type: Transform pos: 4.5,-17.5 parent: 2 - - uid: 9642 - components: - - type: Transform - pos: -26.5,-13.5 - parent: 2 - uid: 9658 components: - type: Transform @@ -52343,11 +54678,6 @@ entities: - type: Transform pos: 36.5,-54.5 parent: 2 - - uid: 9963 - components: - - type: Transform - pos: -45.5,3.5 - parent: 2 - uid: 9998 components: - type: Transform @@ -52358,11 +54688,6 @@ entities: - type: Transform pos: 10.5,-17.5 parent: 2 - - uid: 10025 - components: - - type: Transform - pos: -46.5,-1.5 - parent: 2 - uid: 10057 components: - type: Transform @@ -52403,11 +54728,6 @@ entities: - type: Transform pos: 37.5,6.5 parent: 2 - - uid: 10212 - components: - - type: Transform - pos: -47.5,-0.5 - parent: 2 - uid: 10242 components: - type: Transform @@ -52553,11 +54873,6 @@ entities: - type: Transform pos: -55.5,-59.5 parent: 2 - - uid: 10413 - components: - - type: Transform - pos: -38.5,2.5 - parent: 2 - uid: 10424 components: - type: Transform @@ -52573,16 +54888,6 @@ entities: - type: Transform pos: 6.5,-17.5 parent: 2 - - uid: 10444 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 2 - - uid: 10488 - components: - - type: Transform - pos: -33.5,5.5 - parent: 2 - uid: 10500 components: - type: Transform @@ -52593,16 +54898,16 @@ entities: - type: Transform pos: 16.5,-13.5 parent: 2 - - uid: 10615 - components: - - type: Transform - pos: -32.5,14.5 - parent: 2 - uid: 10738 components: - type: Transform pos: 1.5,-22.5 parent: 2 + - uid: 10901 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 - uid: 10907 components: - type: Transform @@ -52678,11 +54983,6 @@ entities: - type: Transform pos: 11.5,-48.5 parent: 2 - - uid: 11016 - components: - - type: Transform - pos: -30.5,1.5 - parent: 2 - uid: 11064 components: - type: Transform @@ -52728,11 +55028,6 @@ entities: - type: Transform pos: 41.5,19.5 parent: 2 - - uid: 11301 - components: - - type: Transform - pos: -26.5,6.5 - parent: 2 - uid: 11357 components: - type: Transform @@ -52908,11 +55203,6 @@ entities: - type: Transform pos: 40.5,-26.5 parent: 2 - - uid: 11427 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 2 - uid: 11491 components: - type: Transform @@ -53143,26 +55433,11 @@ entities: - type: Transform pos: -7.5,-13.5 parent: 2 - - uid: 11884 - components: - - type: Transform - pos: -33.5,4.5 - parent: 2 - uid: 11928 components: - type: Transform pos: -2.5,-22.5 parent: 2 - - uid: 11933 - components: - - type: Transform - pos: -33.5,3.5 - parent: 2 - - uid: 11943 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - uid: 11972 components: - type: Transform @@ -53178,11 +55453,6 @@ entities: - type: Transform pos: 24.5,11.5 parent: 2 - - uid: 11988 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 2 - uid: 12002 components: - type: Transform @@ -53203,26 +55473,11 @@ entities: - type: Transform pos: -6.5,-22.5 parent: 2 - - uid: 12151 - components: - - type: Transform - pos: -47.5,0.5 - parent: 2 - - uid: 12178 - components: - - type: Transform - pos: -38.5,3.5 - parent: 2 - uid: 12206 components: - type: Transform pos: 46.5,-13.5 parent: 2 - - uid: 12244 - components: - - type: Transform - pos: -18.5,15.5 - parent: 2 - uid: 12260 components: - type: Transform @@ -53283,16 +55538,6 @@ entities: - type: Transform pos: -10.5,-21.5 parent: 2 - - uid: 12557 - components: - - type: Transform - pos: -22.5,11.5 - parent: 2 - - uid: 12575 - components: - - type: Transform - pos: -21.5,11.5 - parent: 2 - uid: 12577 components: - type: Transform @@ -53303,15 +55548,20 @@ entities: - type: Transform pos: -13.5,13.5 parent: 2 + - uid: 12593 + components: + - type: Transform + pos: -38.5,15.5 + parent: 2 - uid: 12595 components: - type: Transform pos: -33.5,-51.5 parent: 2 - - uid: 12649 + - uid: 12599 components: - type: Transform - pos: -30.5,18.5 + pos: -40.5,15.5 parent: 2 - uid: 12749 components: @@ -53328,41 +55578,11 @@ entities: - type: Transform pos: 28.5,-6.5 parent: 2 - - uid: 12893 - components: - - type: Transform - pos: -43.5,6.5 - parent: 2 - - uid: 12976 - components: - - type: Transform - pos: -18.5,8.5 - parent: 2 - - uid: 12987 - components: - - type: Transform - pos: -19.5,8.5 - parent: 2 - uid: 13033 components: - type: Transform pos: -48.5,-25.5 parent: 2 - - uid: 13034 - components: - - type: Transform - pos: -36.5,-10.5 - parent: 2 - - uid: 13048 - components: - - type: Transform - pos: -19.5,4.5 - parent: 2 - - uid: 13087 - components: - - type: Transform - pos: -30.5,0.5 - parent: 2 - uid: 13178 components: - type: Transform @@ -53443,11 +55663,6 @@ entities: - type: Transform pos: 41.5,-5.5 parent: 2 - - uid: 14080 - components: - - type: Transform - pos: -42.5,-5.5 - parent: 2 - uid: 14278 components: - type: Transform @@ -53458,35 +55673,215 @@ entities: - type: Transform pos: 39.5,16.5 parent: 2 + - uid: 14384 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 14385 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 14395 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 2 + - uid: 14403 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 + - uid: 14408 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 14409 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 2 + - uid: 14414 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 14425 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 - uid: 14426 components: - type: Transform - pos: -38.5,-7.5 - parent: 2 - - uid: 14452 - components: - - type: Transform - pos: -24.5,1.5 - parent: 2 - - uid: 14453 - components: - - type: Transform - pos: -26.5,1.5 + pos: -42.5,-7.5 parent: 2 - uid: 14457 components: - type: Transform - pos: -38.5,-8.5 + pos: -44.5,15.5 + parent: 2 + - uid: 14458 + components: + - type: Transform + pos: -43.5,15.5 + parent: 2 + - uid: 14459 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 14460 + components: + - type: Transform + pos: -43.5,18.5 + parent: 2 + - uid: 14462 + components: + - type: Transform + pos: -44.5,18.5 + parent: 2 + - uid: 14463 + components: + - type: Transform + pos: -44.5,17.5 + parent: 2 + - uid: 14464 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 14465 + components: + - type: Transform + pos: -43.5,14.5 parent: 2 - uid: 14466 components: - type: Transform - pos: -25.5,15.5 + pos: -43.5,13.5 + parent: 2 + - uid: 14467 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 + - uid: 14468 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 14470 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 14471 + components: + - type: Transform + pos: -43.5,9.5 + parent: 2 + - uid: 14473 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 + - uid: 14487 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 + - uid: 14493 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 + - uid: 14504 + components: + - type: Transform + pos: -37.5,13.5 parent: 2 - uid: 14506 components: - type: Transform - pos: -40.5,-5.5 + pos: -36.5,13.5 + parent: 2 + - uid: 14507 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 14508 + components: + - type: Transform + pos: -34.5,13.5 + parent: 2 + - uid: 14512 + components: + - type: Transform + pos: -33.5,13.5 + parent: 2 + - uid: 14518 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - uid: 14523 + components: + - type: Transform + pos: -31.5,13.5 + parent: 2 + - uid: 14527 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 14528 + components: + - type: Transform + pos: -29.5,13.5 + parent: 2 + - uid: 14530 + components: + - type: Transform + pos: -28.5,13.5 + parent: 2 + - uid: 14531 + components: + - type: Transform + pos: -28.5,12.5 + parent: 2 + - uid: 14532 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 14540 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 14542 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 14547 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - uid: 14548 + components: + - type: Transform + pos: -28.5,7.5 + parent: 2 + - uid: 14555 + components: + - type: Transform + pos: -40.5,25.5 parent: 2 - uid: 14584 components: @@ -53498,10 +55893,20 @@ entities: - type: Transform pos: -12.5,11.5 parent: 2 - - uid: 14633 + - uid: 14594 components: - type: Transform - pos: -36.5,-8.5 + pos: -39.5,25.5 + parent: 2 + - uid: 14599 + components: + - type: Transform + pos: -39.5,24.5 + parent: 2 + - uid: 14600 + components: + - type: Transform + pos: -39.5,23.5 parent: 2 - uid: 14797 components: @@ -53513,30 +55918,30 @@ entities: - type: Transform pos: -0.5,13.5 parent: 2 - - uid: 14860 + - uid: 14932 components: - type: Transform - pos: -20.5,8.5 + pos: -41.5,15.5 parent: 2 - - uid: 15030 + - uid: 14936 components: - type: Transform - pos: -23.5,11.5 + pos: -37.5,15.5 parent: 2 - - uid: 15031 + - uid: 14938 components: - type: Transform - pos: -21.5,9.5 + pos: -37.5,14.5 parent: 2 - - uid: 15134 + - uid: 14942 components: - type: Transform - pos: -36.5,-9.5 + pos: -42.5,9.5 parent: 2 - - uid: 15204 + - uid: 14953 components: - type: Transform - pos: -35.5,-1.5 + pos: -42.5,8.5 parent: 2 - uid: 15264 components: @@ -53678,6 +56083,16 @@ entities: - type: Transform pos: 39.5,6.5 parent: 2 + - uid: 15740 + components: + - type: Transform + pos: -43.5,7.5 + parent: 2 + - uid: 15742 + components: + - type: Transform + pos: -42.5,7.5 + parent: 2 - uid: 15755 components: - type: Transform @@ -53698,16 +56113,6 @@ entities: - type: Transform pos: -56.5,-59.5 parent: 2 - - uid: 15838 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 2 - - uid: 15843 - components: - - type: Transform - pos: -31.5,-15.5 - parent: 2 - uid: 15887 components: - type: Transform @@ -53783,6 +56188,11 @@ entities: - type: Transform pos: 29.5,-25.5 parent: 2 + - uid: 16087 + components: + - type: Transform + pos: -45.5,15.5 + parent: 2 - uid: 16100 components: - type: Transform @@ -53796,7 +56206,12 @@ entities: - uid: 16122 components: - type: Transform - pos: -21.5,10.5 + pos: -46.5,15.5 + parent: 2 + - uid: 16125 + components: + - type: Transform + pos: -46.5,16.5 parent: 2 - uid: 16189 components: @@ -53893,241 +56308,6 @@ entities: - type: Transform pos: -38.5,-36.5 parent: 2 - - uid: 16491 - components: - - type: Transform - pos: -63.5,-8.5 - parent: 2 - - uid: 16492 - components: - - type: Transform - pos: -63.5,-9.5 - parent: 2 - - uid: 16493 - components: - - type: Transform - pos: -62.5,-9.5 - parent: 2 - - uid: 16494 - components: - - type: Transform - pos: -62.5,-10.5 - parent: 2 - - uid: 16495 - components: - - type: Transform - pos: -62.5,-11.5 - parent: 2 - - uid: 16496 - components: - - type: Transform - pos: -62.5,-12.5 - parent: 2 - - uid: 16497 - components: - - type: Transform - pos: -62.5,-13.5 - parent: 2 - - uid: 16498 - components: - - type: Transform - pos: -62.5,-14.5 - parent: 2 - - uid: 16499 - components: - - type: Transform - pos: -62.5,-15.5 - parent: 2 - - uid: 16500 - components: - - type: Transform - pos: -63.5,-15.5 - parent: 2 - - uid: 16501 - components: - - type: Transform - pos: -63.5,-16.5 - parent: 2 - - uid: 16502 - components: - - type: Transform - pos: -63.5,-17.5 - parent: 2 - - uid: 16503 - components: - - type: Transform - pos: -61.5,-15.5 - parent: 2 - - uid: 16504 - components: - - type: Transform - pos: -60.5,-15.5 - parent: 2 - - uid: 16505 - components: - - type: Transform - pos: -60.5,-16.5 - parent: 2 - - uid: 16506 - components: - - type: Transform - pos: -60.5,-17.5 - parent: 2 - - uid: 16507 - components: - - type: Transform - pos: -63.5,-7.5 - parent: 2 - - uid: 16508 - components: - - type: Transform - pos: -61.5,-9.5 - parent: 2 - - uid: 16509 - components: - - type: Transform - pos: -60.5,-9.5 - parent: 2 - - uid: 16510 - components: - - type: Transform - pos: -60.5,-8.5 - parent: 2 - - uid: 16511 - components: - - type: Transform - pos: -60.5,-7.5 - parent: 2 - - uid: 16512 - components: - - type: Transform - pos: -61.5,-12.5 - parent: 2 - - uid: 16513 - components: - - type: Transform - pos: -60.5,-12.5 - parent: 2 - - uid: 16514 - components: - - type: Transform - pos: -59.5,-12.5 - parent: 2 - - uid: 16515 - components: - - type: Transform - pos: -58.5,-12.5 - parent: 2 - - uid: 16516 - components: - - type: Transform - pos: -57.5,-12.5 - parent: 2 - - uid: 16517 - components: - - type: Transform - pos: -56.5,-12.5 - parent: 2 - - uid: 16518 - components: - - type: Transform - pos: -55.5,-12.5 - parent: 2 - - uid: 16519 - components: - - type: Transform - pos: -54.5,-12.5 - parent: 2 - - uid: 16520 - components: - - type: Transform - pos: -53.5,-12.5 - parent: 2 - - uid: 16521 - components: - - type: Transform - pos: -52.5,-12.5 - parent: 2 - - uid: 16522 - components: - - type: Transform - pos: -52.5,-11.5 - parent: 2 - - uid: 16523 - components: - - type: Transform - pos: -52.5,-10.5 - parent: 2 - - uid: 16524 - components: - - type: Transform - pos: -52.5,-13.5 - parent: 2 - - uid: 16525 - components: - - type: Transform - pos: -52.5,-14.5 - parent: 2 - - uid: 16526 - components: - - type: Transform - pos: -55.5,-13.5 - parent: 2 - - uid: 16527 - components: - - type: Transform - pos: -55.5,-14.5 - parent: 2 - - uid: 16528 - components: - - type: Transform - pos: -55.5,-11.5 - parent: 2 - - uid: 16529 - components: - - type: Transform - pos: -55.5,-10.5 - parent: 2 - - uid: 16532 - components: - - type: Transform - pos: -63.5,-14.5 - parent: 2 - - uid: 16533 - components: - - type: Transform - pos: -63.5,-12.5 - parent: 2 - - uid: 16534 - components: - - type: Transform - pos: -64.5,-12.5 - parent: 2 - - uid: 16535 - components: - - type: Transform - pos: -65.5,-12.5 - parent: 2 - - uid: 16536 - components: - - type: Transform - pos: -66.5,-12.5 - parent: 2 - - uid: 16537 - components: - - type: Transform - pos: -66.5,-11.5 - parent: 2 - - uid: 16538 - components: - - type: Transform - pos: -56.5,-11.5 - parent: 2 - - uid: 16642 - components: - - type: Transform - pos: -46.5,3.5 - parent: 2 - uid: 16654 components: - type: Transform @@ -54253,11 +56433,6 @@ entities: - type: Transform pos: -34.5,-70.5 parent: 2 - - uid: 16790 - components: - - type: Transform - pos: -41.5,-5.5 - parent: 2 - uid: 16798 components: - type: Transform @@ -54318,21 +56493,6 @@ entities: - type: Transform pos: -45.5,-45.5 parent: 2 - - uid: 16877 - components: - - type: Transform - pos: -39.5,-5.5 - parent: 2 - - uid: 16878 - components: - - type: Transform - pos: -34.5,7.5 - parent: 2 - - uid: 16883 - components: - - type: Transform - pos: -39.5,-9.5 - parent: 2 - uid: 16884 components: - type: Transform @@ -54473,11 +56633,6 @@ entities: - type: Transform pos: 27.5,-31.5 parent: 2 - - uid: 17186 - components: - - type: Transform - pos: -22.5,16.5 - parent: 2 - uid: 17248 components: - type: Transform @@ -54493,21 +56648,6 @@ entities: - type: Transform pos: 27.5,-32.5 parent: 2 - - uid: 17456 - components: - - type: Transform - pos: -47.5,5.5 - parent: 2 - - uid: 17458 - components: - - type: Transform - pos: -47.5,4.5 - parent: 2 - - uid: 17487 - components: - - type: Transform - pos: -27.5,-15.5 - parent: 2 - uid: 17541 components: - type: Transform @@ -54623,90 +56763,175 @@ entities: - type: Transform pos: 25.5,22.5 parent: 2 - - uid: 17869 + - uid: 17969 components: - type: Transform - pos: -44.5,-5.5 + pos: 96.5,-44.5 parent: 2 - - uid: 17905 + - uid: 17971 components: - type: Transform - pos: -46.5,8.5 + pos: 95.5,-44.5 + parent: 2 + - uid: 17977 + components: + - type: Transform + pos: 94.5,-44.5 + parent: 2 + - uid: 17978 + components: + - type: Transform + pos: 94.5,-43.5 + parent: 2 + - uid: 17979 + components: + - type: Transform + pos: 94.5,-42.5 + parent: 2 + - uid: 17981 + components: + - type: Transform + pos: 94.5,-41.5 + parent: 2 + - uid: 18005 + components: + - type: Transform + pos: 94.5,-40.5 + parent: 2 + - uid: 18006 + components: + - type: Transform + pos: 93.5,-40.5 + parent: 2 + - uid: 18008 + components: + - type: Transform + pos: 92.5,-40.5 + parent: 2 + - uid: 18009 + components: + - type: Transform + pos: 91.5,-40.5 + parent: 2 + - uid: 18010 + components: + - type: Transform + pos: 90.5,-40.5 + parent: 2 + - uid: 18011 + components: + - type: Transform + pos: 89.5,-40.5 parent: 2 - uid: 18012 components: - type: Transform - pos: -14.5,11.5 + pos: 88.5,-40.5 parent: 2 - uid: 18013 components: - type: Transform - pos: -15.5,11.5 + pos: 87.5,-40.5 parent: 2 - uid: 18014 components: - type: Transform - pos: -15.5,10.5 + pos: 87.5,-41.5 parent: 2 - uid: 18015 components: - type: Transform - pos: -15.5,9.5 + pos: 87.5,-42.5 parent: 2 - uid: 18016 components: - type: Transform - pos: -15.5,8.5 + pos: 88.5,-42.5 parent: 2 - uid: 18017 components: - type: Transform - pos: -15.5,7.5 + pos: 89.5,-42.5 parent: 2 - uid: 18018 components: - type: Transform - pos: -15.5,6.5 + pos: 90.5,-42.5 parent: 2 - uid: 18019 components: - type: Transform - pos: -15.5,5.5 + pos: 90.5,-43.5 parent: 2 - uid: 18020 components: - type: Transform - pos: -15.5,4.5 + pos: 86.5,-42.5 + parent: 2 + - uid: 18021 + components: + - type: Transform + pos: 85.5,-42.5 parent: 2 - uid: 18022 components: - type: Transform - pos: -15.5,2.5 + pos: 84.5,-42.5 parent: 2 - uid: 18023 components: - type: Transform - pos: -15.5,1.5 + pos: 83.5,-42.5 parent: 2 - uid: 18024 components: - type: Transform - pos: -15.5,0.5 + pos: 82.5,-42.5 parent: 2 - uid: 18025 components: - type: Transform - pos: -15.5,-0.5 + pos: 81.5,-42.5 parent: 2 - uid: 18026 components: - type: Transform - pos: -14.5,-0.5 + pos: 80.5,-42.5 parent: 2 - uid: 18027 components: - type: Transform - pos: -13.5,-0.5 + pos: 79.5,-42.5 + parent: 2 + - uid: 18028 + components: + - type: Transform + pos: 78.5,-42.5 + parent: 2 + - uid: 18029 + components: + - type: Transform + pos: 77.5,-42.5 + parent: 2 + - uid: 18030 + components: + - type: Transform + pos: 77.5,-41.5 + parent: 2 + - uid: 18031 + components: + - type: Transform + pos: 76.5,-41.5 + parent: 2 + - uid: 18033 + components: + - type: Transform + pos: 75.5,-41.5 + parent: 2 + - uid: 18036 + components: + - type: Transform + pos: 74.5,-41.5 parent: 2 - uid: 18052 components: @@ -54723,6 +56948,21 @@ entities: - type: Transform pos: -30.5,-19.5 parent: 2 + - uid: 18057 + components: + - type: Transform + pos: 71.5,-40.5 + parent: 2 + - uid: 18059 + components: + - type: Transform + pos: 70.5,-40.5 + parent: 2 + - uid: 18060 + components: + - type: Transform + pos: 70.5,-39.5 + parent: 2 - uid: 18077 components: - type: Transform @@ -54778,15 +57018,45 @@ entities: - type: Transform pos: -34.5,-27.5 parent: 2 + - uid: 18301 + components: + - type: Transform + pos: 73.5,-41.5 + parent: 2 - uid: 18303 components: - type: Transform pos: -34.5,-24.5 parent: 2 - - uid: 18372 + - uid: 18306 components: - type: Transform - pos: -30.5,21.5 + pos: 72.5,-41.5 + parent: 2 + - uid: 18323 + components: + - type: Transform + pos: 71.5,-41.5 + parent: 2 + - uid: 18338 + components: + - type: Transform + pos: 71.5,-43.5 + parent: 2 + - uid: 18343 + components: + - type: Transform + pos: 72.5,-43.5 + parent: 2 + - uid: 18344 + components: + - type: Transform + pos: 73.5,-43.5 + parent: 2 + - uid: 18345 + components: + - type: Transform + pos: 73.5,-42.5 parent: 2 - uid: 18373 components: @@ -54798,36 +57068,11 @@ entities: - type: Transform pos: -26.5,20.5 parent: 2 - - uid: 18379 - components: - - type: Transform - pos: -28.5,20.5 - parent: 2 - - uid: 18380 - components: - - type: Transform - pos: -27.5,20.5 - parent: 2 - - uid: 18385 - components: - - type: Transform - pos: -29.5,20.5 - parent: 2 - uid: 18386 components: - type: Transform pos: -32.5,-24.5 parent: 2 - - uid: 18420 - components: - - type: Transform - pos: -30.5,20.5 - parent: 2 - - uid: 18421 - components: - - type: Transform - pos: -30.5,22.5 - parent: 2 - uid: 18456 components: - type: Transform @@ -54943,26 +57188,6 @@ entities: - type: Transform pos: 42.5,-53.5 parent: 2 - - uid: 18894 - components: - - type: Transform - pos: -21.5,14.5 - parent: 2 - - uid: 18901 - components: - - type: Transform - pos: -27.5,6.5 - parent: 2 - - uid: 18916 - components: - - type: Transform - pos: -33.5,-18.5 - parent: 2 - - uid: 18923 - components: - - type: Transform - pos: -33.5,-17.5 - parent: 2 - uid: 18944 components: - type: Transform @@ -55028,60 +57253,105 @@ entities: - type: Transform pos: -12.5,24.5 parent: 2 - - uid: 19053 - components: - - type: Transform - pos: -18.5,7.5 - parent: 2 - - uid: 19128 - components: - - type: Transform - pos: -44.5,3.5 - parent: 2 - uid: 19220 components: - type: Transform pos: -1.5,-58.5 parent: 2 - - uid: 19582 + - uid: 19760 components: - type: Transform - pos: -18.5,6.5 + pos: -18.5,19.5 + parent: 2 + - uid: 19761 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 19765 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - uid: 19822 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 19823 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 19824 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 19825 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 19826 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 19831 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 19837 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - uid: 19840 + components: + - type: Transform + pos: -22.5,13.5 parent: 2 - uid: 19973 components: - type: Transform pos: 38.5,6.5 parent: 2 - - uid: 19992 + - uid: 20099 components: - type: Transform - pos: -18.5,5.5 + pos: -32.5,14.5 parent: 2 - - uid: 19993 + - uid: 20100 components: - type: Transform - pos: -18.5,4.5 + pos: -32.5,15.5 parent: 2 - - uid: 19994 + - uid: 20102 components: - type: Transform - pos: -18.5,3.5 + pos: -28.5,6.5 parent: 2 - - uid: 19995 + - uid: 20103 components: - type: Transform - pos: -18.5,2.5 + pos: -28.5,5.5 parent: 2 - - uid: 19996 + - uid: 20104 components: - type: Transform - pos: -18.5,1.5 + pos: -28.5,4.5 parent: 2 - - uid: 20125 + - uid: 20121 components: - type: Transform - pos: -45.5,-4.5 + pos: -27.5,11.5 + parent: 2 + - uid: 20146 + components: + - type: Transform + pos: -26.5,11.5 parent: 2 - uid: 20202 components: @@ -55103,6 +57373,86 @@ entities: - type: Transform pos: -35.5,-23.5 parent: 2 + - uid: 20225 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 + - uid: 20228 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 20229 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 20230 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 20231 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 20236 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 20242 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - uid: 20250 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 20256 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 20257 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - uid: 20293 + components: + - type: Transform + pos: -25.5,12.5 + parent: 2 + - uid: 20294 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 20295 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 20297 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 20298 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 20299 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 - uid: 20303 components: - type: Transform @@ -55123,6 +57473,11 @@ entities: - type: Transform pos: -34.5,-31.5 parent: 2 + - uid: 20390 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 - uid: 20397 components: - type: Transform @@ -55163,40 +57518,30 @@ entities: - type: Transform pos: -30.5,-32.5 parent: 2 + - uid: 20417 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 - uid: 20418 components: - type: Transform pos: -28.5,-32.5 parent: 2 + - uid: 20419 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 20420 + components: + - type: Transform + pos: -26.5,7.5 + parent: 2 - uid: 20421 components: - type: Transform - pos: -33.5,-15.5 - parent: 2 - - uid: 20423 - components: - - type: Transform - pos: -35.5,-3.5 - parent: 2 - - uid: 20425 - components: - - type: Transform - pos: -24.5,-4.5 - parent: 2 - - uid: 20428 - components: - - type: Transform - pos: -36.5,-2.5 - parent: 2 - - uid: 20434 - components: - - type: Transform - pos: -32.5,-15.5 - parent: 2 - - uid: 20437 - components: - - type: Transform - pos: -43.5,5.5 + pos: -27.5,6.5 parent: 2 - uid: 20439 components: @@ -55218,16 +57563,6 @@ entities: - type: Transform pos: -28.5,-35.5 parent: 2 - - uid: 20452 - components: - - type: Transform - pos: -43.5,-5.5 - parent: 2 - - uid: 20473 - components: - - type: Transform - pos: -39.5,3.5 - parent: 2 - uid: 20482 components: - type: Transform @@ -55243,36 +57578,11 @@ entities: - type: Transform pos: -27.5,-37.5 parent: 2 - - uid: 20520 - components: - - type: Transform - pos: -38.5,-9.5 - parent: 2 - uid: 20523 components: - type: Transform pos: -26.5,-37.5 parent: 2 - - uid: 20526 - components: - - type: Transform - pos: -39.5,-10.5 - parent: 2 - - uid: 20553 - components: - - type: Transform - pos: -45.5,-5.5 - parent: 2 - - uid: 20554 - components: - - type: Transform - pos: -43.5,8.5 - parent: 2 - - uid: 20560 - components: - - type: Transform - pos: -43.5,7.5 - parent: 2 - uid: 20582 components: - type: Transform @@ -55293,21 +57603,6 @@ entities: - type: Transform pos: -38.5,-27.5 parent: 2 - - uid: 20592 - components: - - type: Transform - pos: -44.5,8.5 - parent: 2 - - uid: 20593 - components: - - type: Transform - pos: -29.5,-15.5 - parent: 2 - - uid: 20594 - components: - - type: Transform - pos: -37.5,-2.5 - parent: 2 - uid: 20599 components: - type: Transform @@ -55328,16 +57623,6 @@ entities: - type: Transform pos: -40.5,-29.5 parent: 2 - - uid: 20607 - components: - - type: Transform - pos: -25.5,-4.5 - parent: 2 - - uid: 20610 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 2 - uid: 20613 components: - type: Transform @@ -55348,11 +57633,6 @@ entities: - type: Transform pos: -42.5,-29.5 parent: 2 - - uid: 20618 - components: - - type: Transform - pos: -43.5,3.5 - parent: 2 - uid: 20625 components: - type: Transform @@ -55383,55 +57663,45 @@ entities: - type: Transform pos: 30.5,22.5 parent: 2 - - uid: 20722 + - uid: 20782 components: - type: Transform - pos: -30.5,14.5 + pos: -43.5,-7.5 parent: 2 - - uid: 20758 + - uid: 20783 components: - type: Transform - pos: -30.5,16.5 + pos: -44.5,-7.5 parent: 2 - - uid: 20769 + - uid: 20790 components: - type: Transform - pos: -31.5,14.5 + pos: -44.5,-6.5 parent: 2 - - uid: 20772 + - uid: 20791 components: - type: Transform - pos: -30.5,17.5 + pos: -44.5,-5.5 parent: 2 - - uid: 20773 + - uid: 20792 components: - type: Transform - pos: -30.5,19.5 + pos: -44.5,-4.5 parent: 2 - - uid: 20776 + - uid: 20793 components: - type: Transform - pos: -30.5,15.5 + pos: -43.5,-4.5 parent: 2 - - uid: 20777 + - uid: 20799 components: - type: Transform - pos: -32.5,12.5 + pos: -43.5,3.5 parent: 2 - - uid: 20778 + - uid: 20816 components: - type: Transform - pos: -32.5,11.5 - parent: 2 - - uid: 20779 - components: - - type: Transform - pos: -32.5,10.5 - parent: 2 - - uid: 20780 - components: - - type: Transform - pos: -32.5,9.5 + pos: -42.5,-4.5 parent: 2 - uid: 20837 components: @@ -55728,16 +57998,96 @@ entities: - type: Transform pos: 10.5,-55.5 parent: 2 + - uid: 21117 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 21119 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 21120 + components: + - type: Transform + pos: -43.5,2.5 + parent: 2 + - uid: 21142 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 + - uid: 21159 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - uid: 21174 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 21177 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 21178 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 + - uid: 21179 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 2 + - uid: 21180 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - uid: 21181 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 - uid: 21225 components: - type: Transform pos: 20.5,-21.5 parent: 2 + - uid: 21271 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 2 - uid: 21272 components: - type: Transform pos: 13.5,-34.5 parent: 2 + - uid: 21273 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 21274 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - uid: 21275 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 21276 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 2 - uid: 21303 components: - type: Transform @@ -55748,11 +58098,96 @@ entities: - type: Transform pos: 45.5,-5.5 parent: 2 + - uid: 21309 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 21311 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 21317 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - uid: 21320 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 21362 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 - uid: 21368 components: - type: Transform pos: 25.5,13.5 parent: 2 + - uid: 21374 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 21420 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 21451 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 21452 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 21486 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - uid: 21487 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 21619 + components: + - type: Transform + pos: -37.5,1.5 + parent: 2 + - uid: 21674 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 21734 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 2 + - uid: 21735 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 2 + - uid: 21736 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 21756 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 - uid: 21764 components: - type: Transform @@ -55813,11 +58248,51 @@ entities: - type: Transform pos: 23.5,-0.5 parent: 2 + - uid: 21793 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 21794 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 21802 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 21811 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 - uid: 21812 components: - type: Transform pos: 36.5,11.5 parent: 2 + - uid: 21838 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 21846 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 + - uid: 21850 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 21851 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 - uid: 21857 components: - type: Transform @@ -55828,21 +58303,86 @@ entities: - type: Transform pos: 37.5,14.5 parent: 2 + - uid: 21859 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 - uid: 21862 components: - type: Transform pos: 38.5,14.5 parent: 2 + - uid: 21871 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 21876 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 2 + - uid: 21888 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 21890 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - uid: 21892 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - uid: 21893 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 21898 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 - uid: 21908 components: - type: Transform pos: 25.5,23.5 parent: 2 + - uid: 21910 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 21925 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 21930 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 21943 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 - uid: 21955 components: - type: Transform pos: 43.5,14.5 parent: 2 + - uid: 21960 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 - uid: 21983 components: - type: Transform @@ -55888,11 +58428,6 @@ entities: - type: Transform pos: 25.5,16.5 parent: 2 - - uid: 22227 - components: - - type: Transform - pos: -25.5,-3.5 - parent: 2 - uid: 22291 components: - type: Transform @@ -56018,16 +58553,6 @@ entities: - type: Transform pos: -29.5,-17.5 parent: 2 - - uid: 22604 - components: - - type: Transform - pos: -30.5,-15.5 - parent: 2 - - uid: 22607 - components: - - type: Transform - pos: -47.5,-1.5 - parent: 2 - uid: 22624 components: - type: Transform @@ -56073,21 +58598,6 @@ entities: - type: Transform pos: -10.5,-38.5 parent: 2 - - uid: 22715 - components: - - type: Transform - pos: -25.5,17.5 - parent: 2 - - uid: 22716 - components: - - type: Transform - pos: -25.5,18.5 - parent: 2 - - uid: 22738 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 2 - uid: 23002 components: - type: Transform @@ -56318,23 +58828,188 @@ entities: - type: Transform pos: 14.5,14.5 parent: 2 + - uid: 24365 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 24366 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 24367 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 24368 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 24369 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 24370 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 24371 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 24372 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 24373 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 24374 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 24375 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 24376 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 24377 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 24378 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 24501 + components: + - type: Transform + pos: 42.5,-31.5 + parent: 2 + - uid: 24502 + components: + - type: Transform + pos: 43.5,-31.5 + parent: 2 + - uid: 24504 + components: + - type: Transform + pos: 43.5,-32.5 + parent: 2 + - uid: 24505 + components: + - type: Transform + pos: 43.5,-33.5 + parent: 2 + - uid: 24506 + components: + - type: Transform + pos: 43.5,-34.5 + parent: 2 + - uid: 24507 + components: + - type: Transform + pos: 43.5,-35.5 + parent: 2 + - uid: 24508 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 2 + - uid: 24509 + components: + - type: Transform + pos: 43.5,-37.5 + parent: 2 + - uid: 24511 + components: + - type: Transform + pos: 44.5,-37.5 + parent: 2 + - uid: 24512 + components: + - type: Transform + pos: 45.5,-37.5 + parent: 2 + - uid: 24513 + components: + - type: Transform + pos: 46.5,-37.5 + parent: 2 + - uid: 24514 + components: + - type: Transform + pos: 47.5,-37.5 + parent: 2 + - uid: 24515 + components: + - type: Transform + pos: 48.5,-37.5 + parent: 2 + - uid: 24516 + components: + - type: Transform + pos: 49.5,-37.5 + parent: 2 + - uid: 24517 + components: + - type: Transform + pos: 50.5,-37.5 + parent: 2 + - uid: 24518 + components: + - type: Transform + pos: 51.5,-37.5 + parent: 2 + - uid: 24519 + components: + - type: Transform + pos: 52.5,-37.5 + parent: 2 + - uid: 24520 + components: + - type: Transform + pos: 52.5,-36.5 + parent: 2 + - uid: 24521 + components: + - type: Transform + pos: 53.5,-36.5 + parent: 2 + - uid: 24522 + components: + - type: Transform + pos: 54.5,-36.5 + parent: 2 - proto: CableMVStack entities: - uid: 3393 components: - type: Transform - pos: -16.489902,-25.261671 + pos: -16.373226,-25.359077 parent: 2 - uid: 9856 components: - type: Transform pos: -13.565001,-10.30104 parent: 2 - - uid: 10791 - components: - - type: Transform - pos: -55.47804,-13.404876 - parent: 2 - proto: CableTerminal entities: - uid: 2770 @@ -56364,17 +59039,10 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-10.5 parent: 2 - - uid: 8954 + - uid: 14559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,24.5 - parent: 2 - - uid: 15475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-9.5 + pos: -40.5,27.5 parent: 2 - uid: 15795 components: @@ -56382,6 +59050,12 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-58.5 parent: 2 + - uid: 16557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,-42.5 + parent: 2 - uid: 21261 components: - type: Transform @@ -56459,10 +59133,10 @@ entities: parent: 2 - proto: CannabisSeeds entities: - - uid: 19127 + - uid: 19639 components: - type: Transform - pos: -49.504105,5.517416 + pos: -31.550144,3.5408516 parent: 2 - uid: 19901 components: @@ -56491,6 +59165,13 @@ entities: - type: Transform pos: 22.549095,-30.46535 parent: 2 +- proto: CaptainIDCard + entities: + - uid: 1190 + components: + - type: Transform + pos: -24.66221,-51.1225 + parent: 2 - proto: CarbonDioxideCanister entities: - uid: 1457 @@ -56498,11 +59179,6 @@ entities: - type: Transform pos: -3.5,6.5 parent: 2 - - uid: 1940 - components: - - type: Transform - pos: -12.5,-4.5 - parent: 2 - uid: 4581 components: - type: Transform @@ -56513,6 +59189,11 @@ entities: - type: Transform pos: -5.5,-10.5 parent: 2 + - uid: 23805 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 - proto: CargoMailTeleporter entities: - uid: 17592 @@ -56520,6 +59201,68 @@ entities: - type: Transform pos: 19.5,15.5 parent: 2 +- proto: CargoPallet + entities: + - uid: 16415 + components: + - type: Transform + pos: -54.5,-11.5 + parent: 2 + - uid: 16416 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - uid: 16417 + components: + - type: Transform + pos: -54.5,-15.5 + parent: 2 + - uid: 16418 + components: + - type: Transform + pos: -54.5,-14.5 + parent: 2 + - uid: 16419 + components: + - type: Transform + pos: -57.5,-15.5 + parent: 2 + - uid: 16421 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 + - uid: 16422 + components: + - type: Transform + pos: -57.5,-11.5 + parent: 2 + - uid: 16423 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 2 + - uid: 16424 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 2 + - uid: 16425 + components: + - type: Transform + pos: -51.5,-12.5 + parent: 2 + - uid: 16426 + components: + - type: Transform + pos: -51.5,-15.5 + parent: 2 + - uid: 16427 + components: + - type: Transform + pos: -51.5,-14.5 + parent: 2 - proto: Carpet entities: - uid: 752 @@ -56627,6 +59370,26 @@ entities: - type: Transform pos: 65.5,-76.5 parent: 2 + - uid: 20589 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 20592 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 + - uid: 20593 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 20594 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 - uid: 21873 components: - type: Transform @@ -56789,35 +59552,25 @@ entities: - type: Transform pos: 5.5,-34.5 parent: 2 - - uid: 14813 + - uid: 20580 components: - type: Transform - pos: -21.5,11.5 + pos: -44.5,2.5 parent: 2 - - uid: 14819 + - uid: 20581 components: - type: Transform - pos: -22.5,12.5 + pos: -43.5,2.5 parent: 2 - - uid: 14820 + - uid: 20583 components: - type: Transform - pos: -22.5,11.5 + pos: -43.5,1.5 parent: 2 - - uid: 14879 + - uid: 20585 components: - type: Transform - pos: -21.5,12.5 - parent: 2 - - uid: 15304 - components: - - type: Transform - pos: -22.5,10.5 - parent: 2 - - uid: 15329 - components: - - type: Transform - pos: -21.5,10.5 + pos: -44.5,1.5 parent: 2 - proto: CarpetBlue entities: @@ -57176,6 +59929,21 @@ entities: - type: Transform pos: -30.5,-53.5 parent: 2 + - uid: 1409 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 - uid: 3188 components: - type: Transform @@ -57630,6 +60398,28 @@ entities: - type: Transform pos: -6.5,-26.5 parent: 2 +- proto: CarpetPink + entities: + - uid: 16669 + components: + - type: Transform + pos: -45.5,10.5 + parent: 2 + - uid: 16907 + components: + - type: Transform + pos: -45.5,11.5 + parent: 2 + - uid: 16934 + components: + - type: Transform + pos: -46.5,10.5 + parent: 2 + - uid: 16973 + components: + - type: Transform + pos: -46.5,11.5 + parent: 2 - proto: CarpetPurple entities: - uid: 747 @@ -57883,18 +60673,6 @@ entities: - type: Transform pos: 59.5,-53.5 parent: 2 - - uid: 400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 2 - - uid: 401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 2 - uid: 464 components: - type: Transform @@ -57978,12 +60756,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,20.5 parent: 2 - - uid: 802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,23.5 - parent: 2 - uid: 806 components: - type: Transform @@ -57994,23 +60766,11 @@ entities: - type: Transform pos: -10.5,24.5 parent: 2 - - uid: 810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,23.5 - parent: 2 - uid: 823 components: - type: Transform pos: -9.5,24.5 parent: 2 - - uid: 838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,23.5 - parent: 2 - uid: 864 components: - type: Transform @@ -58088,18 +60848,6 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-46.5 parent: 2 - - uid: 1030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,23.5 - parent: 2 - - uid: 1050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,25.5 - parent: 2 - uid: 1055 components: - type: Transform @@ -58142,95 +60890,25 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-3.5 parent: 2 - - uid: 1167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,24.5 - parent: 2 - - uid: 1174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,13.5 - parent: 2 - - uid: 1190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,17.5 - parent: 2 - - uid: 1191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,12.5 - parent: 2 - - uid: 1196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,23.5 - parent: 2 - - uid: 1197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,23.5 - parent: 2 - - uid: 1198 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,22.5 - parent: 2 - - uid: 1199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,24.5 - parent: 2 - - uid: 1200 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,11.5 - parent: 2 - - uid: 1201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,23.5 - parent: 2 - uid: 1202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,23.5 + pos: -48.5,29.5 parent: 2 - uid: 1203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,23.5 + pos: -11.5,-6.5 parent: 2 - - uid: 1204 + - uid: 1211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,16.5 + pos: -12.5,-7.5 parent: 2 - - uid: 1207 + - uid: 1219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,14.5 - parent: 2 - - uid: 1208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,15.5 + pos: -46.5,29.5 parent: 2 - uid: 1236 components: @@ -58367,21 +61045,28 @@ entities: rot: 3.141592653589793 rad pos: -21.5,22.5 parent: 2 - - uid: 1558 - components: - - type: Transform - pos: -11.5,-1.5 - parent: 2 - uid: 1567 components: - type: Transform pos: 1.5,-27.5 parent: 2 - - uid: 1584 + - uid: 1662 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,21.5 + rot: 1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-10.5 parent: 2 - uid: 1698 components: @@ -58438,6 +61123,11 @@ entities: rot: 3.141592653589793 rad pos: -19.5,22.5 parent: 2 + - uid: 1830 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 - uid: 1841 components: - type: Transform @@ -58459,46 +61149,46 @@ entities: - type: Transform pos: 27.5,-9.5 parent: 2 - - uid: 1939 + - uid: 1896 components: - type: Transform - pos: -11.5,-4.5 + pos: -12.5,-8.5 parent: 2 - - uid: 1941 + - uid: 1930 components: - type: Transform - pos: -12.5,-2.5 + pos: -11.5,-7.5 parent: 2 - - uid: 1942 + - uid: 1946 components: - type: Transform - pos: -12.5,-3.5 + pos: -13.5,-8.5 parent: 2 - - uid: 1943 + - uid: 1954 components: - type: Transform - pos: -12.5,-4.5 + pos: -47.5,29.5 parent: 2 - - uid: 1944 + - uid: 1955 components: - type: Transform - pos: -11.5,-2.5 + pos: -44.5,29.5 parent: 2 - - uid: 1945 + - uid: 1956 components: - type: Transform - pos: -11.5,-3.5 - parent: 2 - - uid: 1947 - components: - - type: Transform - pos: -12.5,-1.5 + pos: -45.5,29.5 parent: 2 - uid: 2046 components: - type: Transform pos: -51.5,-54.5 parent: 2 + - uid: 2047 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 - uid: 2060 components: - type: Transform @@ -58543,6 +61233,16 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-31.5 parent: 2 + - uid: 2209 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 - uid: 2222 components: - type: Transform @@ -58559,6 +61259,11 @@ entities: - type: Transform pos: 37.5,14.5 parent: 2 + - uid: 2238 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 - uid: 2269 components: - type: Transform @@ -58581,16 +61286,10 @@ entities: - type: Transform pos: 23.5,-17.5 parent: 2 - - uid: 2323 + - uid: 2404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,12.5 - parent: 2 - - uid: 2376 - components: - - type: Transform - pos: -18.5,11.5 + pos: 61.5,-40.5 parent: 2 - uid: 2406 components: @@ -58623,12 +61322,6 @@ entities: - type: Transform pos: 26.5,-44.5 parent: 2 - - uid: 2655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,23.5 - parent: 2 - uid: 2657 components: - type: Transform @@ -58641,68 +61334,56 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,22.5 parent: 2 - - uid: 2662 + - uid: 2725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,23.5 + pos: -32.5,-13.5 parent: 2 - - uid: 2664 + - uid: 2726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,23.5 + pos: -32.5,-12.5 parent: 2 - - uid: 2665 + - uid: 2727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,23.5 + pos: -35.5,-15.5 parent: 2 - - uid: 2669 + - uid: 2731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,23.5 + pos: -36.5,-15.5 parent: 2 - - uid: 2740 + - uid: 2732 components: - type: Transform - pos: -32.5,11.5 + pos: -39.5,-15.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + pos: -42.5,-11.5 parent: 2 - uid: 2768 components: - type: Transform pos: -2.5,-21.5 parent: 2 - - uid: 2829 - components: - - type: Transform - pos: -18.5,18.5 - parent: 2 - - uid: 2832 - components: - - type: Transform - pos: -18.5,16.5 - parent: 2 - - uid: 2883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,23.5 - parent: 2 - - uid: 2884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,23.5 - parent: 2 - - uid: 2885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,23.5 - parent: 2 - uid: 2908 components: - type: Transform @@ -58779,12 +61460,6 @@ entities: - type: Transform pos: 3.5,-22.5 parent: 2 - - uid: 2998 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,23.5 - parent: 2 - uid: 3001 components: - type: Transform @@ -58807,11 +61482,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,24.5 parent: 2 - - uid: 3074 - components: - - type: Transform - pos: -18.5,17.5 - parent: 2 - uid: 3078 components: - type: Transform @@ -58855,11 +61525,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-34.5 parent: 2 - - uid: 3277 - components: - - type: Transform - pos: -18.5,13.5 - parent: 2 - uid: 3337 components: - type: Transform @@ -59275,29 +61940,11 @@ entities: - type: Transform pos: 5.5,28.5 parent: 2 - - uid: 5380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,21.5 - parent: 2 - uid: 5404 components: - type: Transform pos: -51.5,-55.5 parent: 2 - - uid: 5452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,15.5 - parent: 2 - - uid: 5454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,15.5 - parent: 2 - uid: 5489 components: - type: Transform @@ -59313,23 +61960,6 @@ entities: - type: Transform pos: -46.5,-48.5 parent: 2 - - uid: 5584 - components: - - type: Transform - pos: -30.5,23.5 - parent: 2 - - uid: 5602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,22.5 - parent: 2 - - uid: 5637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,24.5 - parent: 2 - uid: 5640 components: - type: Transform @@ -59386,6 +62016,11 @@ entities: - type: Transform pos: 16.5,-17.5 parent: 2 + - uid: 5892 + components: + - type: Transform + pos: 78.5,-37.5 + parent: 2 - uid: 6040 components: - type: Transform @@ -59407,11 +62042,10 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,2.5 parent: 2 - - uid: 6205 + - uid: 6179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,15.5 + pos: 79.5,-37.5 parent: 2 - uid: 6331 components: @@ -59480,24 +62114,6 @@ entities: - type: Transform pos: 18.5,-13.5 parent: 2 - - uid: 6742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,25.5 - parent: 2 - - uid: 6755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,19.5 - parent: 2 - - uid: 6756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,20.5 - parent: 2 - uid: 6776 components: - type: Transform @@ -59516,12 +62132,6 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-36.5 parent: 2 - - uid: 6892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,19.5 - parent: 2 - uid: 6940 components: - type: Transform @@ -59544,12 +62154,6 @@ entities: - type: Transform pos: 15.5,-63.5 parent: 2 - - uid: 7127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,19.5 - parent: 2 - uid: 7135 components: - type: Transform @@ -59590,11 +62194,6 @@ entities: - type: Transform pos: -2.5,-20.5 parent: 2 - - uid: 7226 - components: - - type: Transform - pos: -18.5,15.5 - parent: 2 - uid: 7279 components: - type: Transform @@ -59612,11 +62211,6 @@ entities: - type: Transform pos: 11.5,-17.5 parent: 2 - - uid: 7466 - components: - - type: Transform - pos: -18.5,19.5 - parent: 2 - uid: 7467 components: - type: Transform @@ -59784,11 +62378,6 @@ entities: - type: Transform pos: -46.5,-52.5 parent: 2 - - uid: 8053 - components: - - type: Transform - pos: -29.5,23.5 - parent: 2 - uid: 8116 components: - type: Transform @@ -59964,48 +62553,6 @@ entities: - type: Transform pos: 30.5,-54.5 parent: 2 - - uid: 8309 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,25.5 - parent: 2 - - uid: 8313 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,11.5 - parent: 2 - - uid: 8322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,20.5 - parent: 2 - - uid: 8328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,11.5 - parent: 2 - - uid: 8349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,15.5 - parent: 2 - - uid: 8367 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,18.5 - parent: 2 - - uid: 8383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,19.5 - parent: 2 - uid: 8394 components: - type: Transform @@ -60058,12 +62605,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,0.5 parent: 2 - - uid: 8439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,19.5 - parent: 2 - uid: 8440 components: - type: Transform @@ -60087,11 +62628,6 @@ entities: - type: Transform pos: -53.5,-54.5 parent: 2 - - uid: 8511 - components: - - type: Transform - pos: -33.5,-13.5 - parent: 2 - uid: 8560 components: - type: Transform @@ -60247,12 +62783,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,2.5 parent: 2 - - uid: 8928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,20.5 - parent: 2 - uid: 8931 components: - type: Transform @@ -60343,12 +62873,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,20.5 parent: 2 - - uid: 8959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,20.5 - parent: 2 - uid: 8968 components: - type: Transform @@ -60379,12 +62903,6 @@ entities: - type: Transform pos: 51.5,2.5 parent: 2 - - uid: 9133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 2 - uid: 9153 components: - type: Transform @@ -60577,11 +63095,6 @@ entities: - type: Transform pos: 48.5,-31.5 parent: 2 - - uid: 10174 - components: - - type: Transform - pos: -29.5,22.5 - parent: 2 - uid: 10178 components: - type: Transform @@ -60592,11 +63105,6 @@ entities: - type: Transform pos: 8.5,-17.5 parent: 2 - - uid: 10436 - components: - - type: Transform - pos: -31.5,22.5 - parent: 2 - uid: 10450 components: - type: Transform @@ -60622,26 +63130,11 @@ entities: - type: Transform pos: 12.5,-17.5 parent: 2 - - uid: 10714 - components: - - type: Transform - pos: -30.5,22.5 - parent: 2 - uid: 10768 components: - type: Transform pos: -43.5,-48.5 parent: 2 - - uid: 10783 - components: - - type: Transform - pos: -33.5,23.5 - parent: 2 - - uid: 10785 - components: - - type: Transform - pos: -34.5,23.5 - parent: 2 - uid: 10884 components: - type: Transform @@ -60658,22 +63151,15 @@ entities: - type: Transform pos: 4.5,-42.5 parent: 2 - - uid: 11051 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,9.5 - parent: 2 - uid: 11060 components: - type: Transform pos: 21.5,-13.5 parent: 2 - - uid: 11130 + - uid: 11078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,12.5 + pos: 79.5,-38.5 parent: 2 - uid: 11153 components: @@ -60701,12 +63187,6 @@ entities: - type: Transform pos: -38.5,-57.5 parent: 2 - - uid: 11280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-11.5 - parent: 2 - uid: 11288 components: - type: Transform @@ -60717,29 +63197,11 @@ entities: - type: Transform pos: 23.5,-16.5 parent: 2 - - uid: 11313 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-12.5 - parent: 2 - - uid: 11315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-11.5 - parent: 2 - uid: 11317 components: - type: Transform pos: -53.5,-59.5 parent: 2 - - uid: 11318 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-13.5 - parent: 2 - uid: 11563 components: - type: Transform @@ -60750,12 +63212,6 @@ entities: - type: Transform pos: -41.5,-57.5 parent: 2 - - uid: 11635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-13.5 - parent: 2 - uid: 11713 components: - type: Transform @@ -60812,11 +63268,6 @@ entities: - type: Transform pos: -10.5,-54.5 parent: 2 - - uid: 12328 - components: - - type: Transform - pos: -18.5,12.5 - parent: 2 - uid: 12431 components: - type: Transform @@ -60905,11 +63356,6 @@ entities: - type: Transform pos: -6.5,-88.5 parent: 2 - - uid: 12845 - components: - - type: Transform - pos: -32.5,10.5 - parent: 2 - uid: 13156 components: - type: Transform @@ -60946,12 +63392,6 @@ entities: - type: Transform pos: -11.5,-55.5 parent: 2 - - uid: 13234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-0.5 - parent: 2 - uid: 13271 components: - type: Transform @@ -60972,11 +63412,6 @@ entities: - type: Transform pos: -37.5,-20.5 parent: 2 - - uid: 13799 - components: - - type: Transform - pos: -26.5,-13.5 - parent: 2 - uid: 13852 components: - type: Transform @@ -60987,18 +63422,17 @@ entities: - type: Transform pos: -49.5,-49.5 parent: 2 + - uid: 14209 + components: + - type: Transform + pos: 93.5,-40.5 + parent: 2 - uid: 14218 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,20.5 parent: 2 - - uid: 14219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,20.5 - parent: 2 - uid: 14221 components: - type: Transform @@ -61136,18 +63570,6 @@ entities: - type: Transform pos: 25.5,-14.5 parent: 2 - - uid: 15347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 2 - - uid: 15676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,20.5 - parent: 2 - uid: 15678 components: - type: Transform @@ -61198,158 +63620,44 @@ entities: - type: Transform pos: 9.5,2.5 parent: 2 - - uid: 16082 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,7.5 - parent: 2 - uid: 16107 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,22.5 parent: 2 - - uid: 16141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,7.5 - parent: 2 - - uid: 16151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,6.5 - parent: 2 - uid: 16198 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,20.5 parent: 2 - - uid: 16239 + - uid: 16559 components: - type: Transform - pos: -26.5,-14.5 - parent: 2 - - uid: 16591 - components: - - type: Transform - pos: -62.5,-9.5 - parent: 2 - - uid: 16592 - components: - - type: Transform - pos: -62.5,-11.5 - parent: 2 - - uid: 16593 - components: - - type: Transform - pos: -63.5,-12.5 - parent: 2 - - uid: 16594 - components: - - type: Transform - pos: -62.5,-12.5 - parent: 2 - - uid: 16595 - components: - - type: Transform - pos: -61.5,-12.5 - parent: 2 - - uid: 16596 - components: - - type: Transform - pos: -60.5,-12.5 - parent: 2 - - uid: 16597 - components: - - type: Transform - pos: -62.5,-13.5 - parent: 2 - - uid: 16598 - components: - - type: Transform - pos: -62.5,-15.5 - parent: 2 - - uid: 16599 - components: - - type: Transform - pos: -58.5,-12.5 - parent: 2 - - uid: 16600 - components: - - type: Transform - pos: -57.5,-12.5 - parent: 2 - - uid: 16605 - components: - - type: Transform - pos: -55.5,-12.5 - parent: 2 - - uid: 16607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-13.5 - parent: 2 - - uid: 16610 - components: - - type: Transform - pos: -46.5,-12.5 - parent: 2 - - uid: 16611 - components: - - type: Transform - pos: -45.5,-12.5 - parent: 2 - - uid: 16612 - components: - - type: Transform - pos: -43.5,-12.5 - parent: 2 - - uid: 16613 - components: - - type: Transform - pos: -42.5,-12.5 - parent: 2 - - uid: 16614 - components: - - type: Transform - pos: -41.5,-12.5 - parent: 2 - - uid: 16615 - components: - - type: Transform - pos: -40.5,-12.5 - parent: 2 - - uid: 16616 - components: - - type: Transform - pos: -39.5,-12.5 - parent: 2 - - uid: 16618 - components: - - type: Transform - pos: -44.5,-12.5 + pos: 76.5,-37.5 parent: 2 - uid: 16710 components: - type: Transform pos: 3.5,-96.5 parent: 2 - - uid: 16752 - components: - - type: Transform - pos: -30.5,18.5 - parent: 2 - uid: 16763 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-59.5 parent: 2 + - uid: 16873 + components: + - type: Transform + pos: 89.5,-44.5 + parent: 2 + - uid: 16885 + components: + - type: Transform + pos: 89.5,-42.5 + parent: 2 - uid: 16888 components: - type: Transform @@ -61450,10 +63758,10 @@ entities: - type: Transform pos: 0.5,2.5 parent: 2 - - uid: 17065 + - uid: 17131 components: - type: Transform - pos: -30.5,19.5 + pos: 90.5,-42.5 parent: 2 - uid: 17253 components: @@ -61471,11 +63779,26 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-93.5 parent: 2 + - uid: 17280 + components: + - type: Transform + pos: 89.5,-40.5 + parent: 2 + - uid: 17290 + components: + - type: Transform + pos: 90.5,-44.5 + parent: 2 - uid: 17423 components: - type: Transform pos: 16.5,-12.5 parent: 2 + - uid: 17452 + components: + - type: Transform + pos: 92.5,-40.5 + parent: 2 - uid: 17485 components: - type: Transform @@ -61487,6 +63810,16 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-95.5 parent: 2 + - uid: 17715 + components: + - type: Transform + pos: 91.5,-44.5 + parent: 2 + - uid: 17726 + components: + - type: Transform + pos: 90.5,-40.5 + parent: 2 - uid: 17737 components: - type: Transform @@ -61510,11 +63843,10 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-32.5 parent: 2 - - uid: 17766 + - uid: 17767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,22.5 + pos: 91.5,-40.5 parent: 2 - uid: 17774 components: @@ -61534,33 +63866,25 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,2.5 parent: 2 - - uid: 17853 + - uid: 17816 components: - type: Transform - pos: -30.5,17.5 + pos: 92.5,-44.5 parent: 2 - - uid: 17858 + - uid: 17838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,12.5 + pos: 93.5,-44.5 parent: 2 - - uid: 17861 + - uid: 17958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,8.5 + pos: 84.5,-42.5 parent: 2 - - uid: 17862 + - uid: 17959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,9.5 - parent: 2 - - uid: 18347 - components: - - type: Transform - pos: -35.5,23.5 + pos: 83.5,-42.5 parent: 2 - uid: 18505 components: @@ -61817,6 +64141,161 @@ entities: - type: Transform pos: 53.5,-54.5 parent: 2 + - uid: 19972 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 19980 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - uid: 19990 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 + - uid: 19991 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 19992 + components: + - type: Transform + pos: -30.5,23.5 + parent: 2 + - uid: 19993 + components: + - type: Transform + pos: -31.5,23.5 + parent: 2 + - uid: 19994 + components: + - type: Transform + pos: -32.5,23.5 + parent: 2 + - uid: 19995 + components: + - type: Transform + pos: -34.5,23.5 + parent: 2 + - uid: 19996 + components: + - type: Transform + pos: -35.5,23.5 + parent: 2 + - uid: 19997 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 + - uid: 19998 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - uid: 19999 + components: + - type: Transform + pos: -41.5,21.5 + parent: 2 + - uid: 20000 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 20001 + components: + - type: Transform + pos: -43.5,21.5 + parent: 2 + - uid: 20002 + components: + - type: Transform + pos: -49.5,16.5 + parent: 2 + - uid: 20003 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 20004 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 20007 + components: + - type: Transform + pos: -47.5,19.5 + parent: 2 + - uid: 20008 + components: + - type: Transform + pos: -47.5,20.5 + parent: 2 + - uid: 20009 + components: + - type: Transform + pos: -47.5,21.5 + parent: 2 + - uid: 20010 + components: + - type: Transform + pos: -39.5,23.5 + parent: 2 + - uid: 20011 + components: + - type: Transform + pos: -38.5,23.5 + parent: 2 + - uid: 20012 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 20013 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 + - uid: 20014 + components: + - type: Transform + pos: -23.5,20.5 + parent: 2 + - uid: 20015 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 20016 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 20017 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - uid: 20051 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 20053 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 20056 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 - uid: 20082 components: - type: Transform @@ -61895,16 +64374,74 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-91.5 parent: 2 - - uid: 20499 + - uid: 20550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,12.5 + pos: -44.5,-13.5 parent: 2 - - uid: 20657 + - uid: 20551 components: - type: Transform - pos: -30.5,16.5 + pos: -45.5,-13.5 + parent: 2 + - uid: 20552 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - uid: 20567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-2.5 + parent: 2 + - uid: 20569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 2 + - uid: 20570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 2 + - uid: 20571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 2 + - uid: 20572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 2 + - uid: 20573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 2 + - uid: 20575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-2.5 + parent: 2 + - uid: 20576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-3.5 + parent: 2 + - uid: 20577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-4.5 parent: 2 - uid: 20830 components: @@ -61932,21 +64469,6 @@ entities: - type: Transform pos: -31.5,-15.5 parent: 2 - - uid: 21119 - components: - - type: Transform - pos: -28.5,-15.5 - parent: 2 - - uid: 21120 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 2 - - uid: 21142 - components: - - type: Transform - pos: -27.5,-15.5 - parent: 2 - uid: 21161 components: - type: Transform @@ -61997,21 +64519,11 @@ entities: - type: Transform pos: -39.5,-20.5 parent: 2 - - uid: 21174 - components: - - type: Transform - pos: -34.5,-14.5 - parent: 2 - uid: 21175 components: - type: Transform pos: -34.5,-15.5 parent: 2 - - uid: 21177 - components: - - type: Transform - pos: -33.5,-14.5 - parent: 2 - uid: 21197 components: - type: Transform @@ -62087,12 +64599,6 @@ entities: - type: Transform pos: 26.5,-3.5 parent: 2 - - uid: 21362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,14.5 - parent: 2 - uid: 21400 components: - type: Transform @@ -62272,12 +64778,6 @@ entities: - type: Transform pos: 41.5,5.5 parent: 2 - - uid: 21756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,9.5 - parent: 2 - uid: 21822 components: - type: Transform @@ -62306,18 +64806,6 @@ entities: - type: Transform pos: 12.5,-1.5 parent: 2 - - uid: 21850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,13.5 - parent: 2 - - uid: 21893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,14.5 - parent: 2 - uid: 21941 components: - type: Transform @@ -62330,12 +64818,6 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,-53.5 parent: 2 - - uid: 22088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,15.5 - parent: 2 - uid: 22414 components: - type: Transform @@ -62478,6 +64960,475 @@ entities: - type: Transform pos: 4.5,-12.5 parent: 2 + - uid: 23742 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 23743 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 23744 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 + - uid: 23745 + components: + - type: Transform + pos: -38.5,29.5 + parent: 2 + - uid: 23746 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 + - uid: 23747 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 23748 + components: + - type: Transform + pos: -39.5,26.5 + parent: 2 + - uid: 23749 + components: + - type: Transform + pos: -39.5,25.5 + parent: 2 + - uid: 24196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,20.5 + parent: 2 + - uid: 24523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-37.5 + parent: 2 + - uid: 24556 + components: + - type: Transform + pos: -49.5,29.5 + parent: 2 + - uid: 24634 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 24635 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 24637 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 24638 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 + - uid: 24639 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - uid: 24647 + components: + - type: Transform + pos: -50.5,29.5 + parent: 2 + - uid: 24648 + components: + - type: Transform + pos: -51.5,29.5 + parent: 2 + - uid: 24649 + components: + - type: Transform + pos: -52.5,29.5 + parent: 2 + - uid: 24650 + components: + - type: Transform + pos: -53.5,29.5 + parent: 2 + - uid: 24651 + components: + - type: Transform + pos: -54.5,29.5 + parent: 2 + - uid: 24652 + components: + - type: Transform + pos: -55.5,29.5 + parent: 2 + - uid: 24653 + components: + - type: Transform + pos: -56.5,29.5 + parent: 2 + - uid: 24654 + components: + - type: Transform + pos: -57.5,29.5 + parent: 2 + - uid: 24655 + components: + - type: Transform + pos: -58.5,29.5 + parent: 2 + - uid: 24656 + components: + - type: Transform + pos: -59.5,29.5 + parent: 2 + - uid: 24657 + components: + - type: Transform + pos: -60.5,29.5 + parent: 2 + - uid: 24658 + components: + - type: Transform + pos: -61.5,29.5 + parent: 2 + - uid: 24659 + components: + - type: Transform + pos: -62.5,29.5 + parent: 2 + - uid: 24660 + components: + - type: Transform + pos: -63.5,29.5 + parent: 2 + - uid: 24661 + components: + - type: Transform + pos: -64.5,29.5 + parent: 2 + - uid: 24662 + components: + - type: Transform + pos: -65.5,29.5 + parent: 2 + - uid: 24663 + components: + - type: Transform + pos: -65.5,30.5 + parent: 2 + - uid: 24664 + components: + - type: Transform + pos: -61.5,30.5 + parent: 2 + - uid: 24665 + components: + - type: Transform + pos: -53.5,30.5 + parent: 2 + - uid: 24666 + components: + - type: Transform + pos: -57.5,30.5 + parent: 2 + - uid: 24667 + components: + - type: Transform + pos: -49.5,30.5 + parent: 2 + - uid: 24668 + components: + - type: Transform + pos: -63.5,21.5 + parent: 2 + - uid: 24669 + components: + - type: Transform + pos: -61.5,28.5 + parent: 2 + - uid: 24670 + components: + - type: Transform + pos: -61.5,27.5 + parent: 2 + - uid: 24671 + components: + - type: Transform + pos: -61.5,26.5 + parent: 2 + - uid: 24672 + components: + - type: Transform + pos: -61.5,25.5 + parent: 2 + - uid: 24673 + components: + - type: Transform + pos: -61.5,24.5 + parent: 2 + - uid: 24674 + components: + - type: Transform + pos: -61.5,23.5 + parent: 2 + - uid: 24675 + components: + - type: Transform + pos: -61.5,22.5 + parent: 2 + - uid: 24676 + components: + - type: Transform + pos: -61.5,19.5 + parent: 2 + - uid: 24677 + components: + - type: Transform + pos: -61.5,20.5 + parent: 2 + - uid: 24678 + components: + - type: Transform + pos: -61.5,18.5 + parent: 2 + - uid: 24679 + components: + - type: Transform + pos: -61.5,17.5 + parent: 2 + - uid: 24680 + components: + - type: Transform + pos: -61.5,16.5 + parent: 2 + - uid: 24681 + components: + - type: Transform + pos: -61.5,15.5 + parent: 2 + - uid: 24682 + components: + - type: Transform + pos: -61.5,14.5 + parent: 2 + - uid: 24683 + components: + - type: Transform + pos: -61.5,13.5 + parent: 2 + - uid: 24684 + components: + - type: Transform + pos: -61.5,12.5 + parent: 2 + - uid: 24685 + components: + - type: Transform + pos: -61.5,11.5 + parent: 2 + - uid: 24686 + components: + - type: Transform + pos: -61.5,21.5 + parent: 2 + - uid: 24687 + components: + - type: Transform + pos: -61.5,9.5 + parent: 2 + - uid: 24688 + components: + - type: Transform + pos: -61.5,10.5 + parent: 2 + - uid: 24689 + components: + - type: Transform + pos: -62.5,9.5 + parent: 2 + - uid: 24690 + components: + - type: Transform + pos: -62.5,13.5 + parent: 2 + - uid: 24691 + components: + - type: Transform + pos: -62.5,17.5 + parent: 2 + - uid: 24692 + components: + - type: Transform + pos: -62.5,21.5 + parent: 2 + - uid: 24693 + components: + - type: Transform + pos: -62.5,25.5 + parent: 2 + - uid: 24694 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - uid: 24695 + components: + - type: Transform + pos: -63.5,13.5 + parent: 2 + - uid: 24696 + components: + - type: Transform + pos: -63.5,17.5 + parent: 2 + - uid: 24697 + components: + - type: Transform + pos: -65.5,31.5 + parent: 2 + - uid: 24698 + components: + - type: Transform + pos: -63.5,25.5 + parent: 2 + - uid: 24699 + components: + - type: Transform + pos: -61.5,31.5 + parent: 2 + - uid: 24700 + components: + - type: Transform + pos: -57.5,31.5 + parent: 2 + - uid: 24701 + components: + - type: Transform + pos: -53.5,31.5 + parent: 2 + - uid: 24702 + components: + - type: Transform + pos: -49.5,31.5 + parent: 2 + - uid: 24737 + components: + - type: Transform + pos: 75.5,-37.5 + parent: 2 + - uid: 24738 + components: + - type: Transform + pos: 74.5,-37.5 + parent: 2 + - uid: 24739 + components: + - type: Transform + pos: 73.5,-37.5 + parent: 2 + - uid: 24740 + components: + - type: Transform + pos: 72.5,-37.5 + parent: 2 + - uid: 24741 + components: + - type: Transform + pos: 71.5,-37.5 + parent: 2 + - uid: 24742 + components: + - type: Transform + pos: 70.5,-37.5 + parent: 2 + - uid: 24743 + components: + - type: Transform + pos: 69.5,-37.5 + parent: 2 + - uid: 24744 + components: + - type: Transform + pos: 68.5,-37.5 + parent: 2 + - uid: 24745 + components: + - type: Transform + pos: 67.5,-37.5 + parent: 2 + - uid: 24746 + components: + - type: Transform + pos: 66.5,-37.5 + parent: 2 + - uid: 24747 + components: + - type: Transform + pos: 65.5,-37.5 + parent: 2 + - uid: 24748 + components: + - type: Transform + pos: 64.5,-37.5 + parent: 2 + - uid: 24749 + components: + - type: Transform + pos: 63.5,-37.5 + parent: 2 + - uid: 24751 + components: + - type: Transform + pos: 62.5,-38.5 + parent: 2 + - uid: 24755 + components: + - type: Transform + pos: 63.5,-38.5 + parent: 2 + - uid: 24762 + components: + - type: Transform + pos: 59.5,-40.5 + parent: 2 + - uid: 24763 + components: + - type: Transform + pos: 62.5,-39.5 + parent: 2 + - uid: 24767 + components: + - type: Transform + pos: 61.5,-39.5 + parent: 2 + - uid: 24779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-40.5 + parent: 2 + - uid: 24781 + components: + - type: Transform + pos: 60.5,-40.5 + parent: 2 + - uid: 24783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-40.5 + parent: 2 - proto: Chair entities: - uid: 7 @@ -62497,34 +65448,55 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-16.5 parent: 2 - - uid: 313 + - uid: 315 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 412 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,2.5 + pos: -18.5,8.5 parent: 2 - - uid: 353 + - uid: 459 components: - type: Transform - pos: -30.5,4.5 + rot: 3.141592653589793 rad + pos: -25.5,7.5 parent: 2 - - uid: 493 + - uid: 610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,2.5 + rot: 3.141592653589793 rad + pos: -23.5,7.5 parent: 2 - - uid: 500 + - uid: 677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,0.5 + rot: 3.141592653589793 rad + pos: -17.5,8.5 parent: 2 - - uid: 585 + - uid: 689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-40.5 + rot: 3.141592653589793 rad + pos: -24.5,7.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: -25.5,9.5 parent: 2 - uid: 1135 components: @@ -62532,30 +65504,29 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-54.5 parent: 2 + - uid: 1154 + components: + - type: Transform + pos: -24.5,9.5 + parent: 2 - uid: 1296 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,11.5 parent: 2 - - uid: 1743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-39.5 - parent: 2 - - uid: 1955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-0.5 - parent: 2 - uid: 2044 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-60.5 parent: 2 + - uid: 2388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,19.5 + parent: 2 - uid: 2535 components: - type: Transform @@ -62567,11 +65538,11 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,1.5 parent: 2 - - uid: 2757 + - uid: 2625 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-10.5 + pos: -40.5,19.5 parent: 2 - uid: 2992 components: @@ -62632,28 +65603,11 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-29.5 parent: 2 - - uid: 4662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,5.5 - parent: 2 - - uid: 4696 - components: - - type: Transform - pos: -41.5,1.5 - parent: 2 - uid: 4768 components: - type: Transform pos: 6.5,-18.5 parent: 2 - - uid: 5229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-0.5 - parent: 2 - uid: 5336 components: - type: Transform @@ -62664,23 +65618,6 @@ entities: - type: Transform pos: 0.5,12.5 parent: 2 - - uid: 5809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-38.5 - parent: 2 - - uid: 5820 - components: - - type: Transform - pos: 53.5,-38.5 - parent: 2 - - uid: 5827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-39.5 - parent: 2 - uid: 5868 components: - type: Transform @@ -62735,27 +65672,11 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-49.5 parent: 2 - - uid: 6110 + - uid: 6666 components: - type: Transform - pos: -27.5,7.5 - parent: 2 - - uid: 6293 - components: - - type: Transform - pos: 54.5,-38.5 - parent: 2 - - uid: 6644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,1.5 - parent: 2 - - uid: 6651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,1.5 + rot: 1.5707963267948966 rad + pos: -20.5,-13.5 parent: 2 - uid: 6710 components: @@ -62791,17 +65712,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-40.5 parent: 2 - - uid: 7640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,1.5 - parent: 2 - - uid: 8042 - components: - - type: Transform - pos: -40.5,1.5 - parent: 2 - uid: 8197 components: - type: Transform @@ -62831,11 +65741,6 @@ entities: - type: Transform pos: 48.5,-20.5 parent: 2 - - uid: 8667 - components: - - type: Transform - pos: -12.5,9.5 - parent: 2 - uid: 8837 components: - type: Transform @@ -62951,6 +65856,12 @@ entities: - type: Transform pos: -26.5,-30.5 parent: 2 + - uid: 9884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,17.5 + parent: 2 - uid: 10116 components: - type: Transform @@ -62962,6 +65873,12 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-29.5 parent: 2 + - uid: 10271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,17.5 + parent: 2 - uid: 10681 components: - type: Transform @@ -63004,6 +65921,30 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-29.5 parent: 2 + - uid: 11631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,1.5 + parent: 2 + - uid: 11634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,1.5 + parent: 2 + - uid: 11838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 2 + - uid: 11842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 2 - uid: 11967 components: - type: Transform @@ -63016,18 +65957,6 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,15.5 parent: 2 - - uid: 12477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-9.5 - parent: 2 - - uid: 12522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-9.5 - parent: 2 - uid: 12664 components: - type: Transform @@ -63055,23 +65984,21 @@ entities: - type: Transform pos: -42.5,-20.5 parent: 2 - - uid: 14500 + - uid: 13102 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-10.5 + pos: -50.5,13.5 parent: 2 - - uid: 14592 + - uid: 13642 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-10.5 + pos: -49.5,11.5 parent: 2 - - uid: 14594 + - uid: 14051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-8.5 + pos: -51.5,13.5 parent: 2 - uid: 15109 components: @@ -63084,12 +66011,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-40.5 parent: 2 - - uid: 15310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,7.5 - parent: 2 - uid: 15463 components: - type: Transform @@ -63123,6 +66044,30 @@ entities: - type: Transform pos: 39.5,21.5 parent: 2 + - uid: 16463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,12.5 + parent: 2 + - uid: 16464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,11.5 + parent: 2 + - uid: 16482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,11.5 + parent: 2 + - uid: 16505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,10.5 + parent: 2 - uid: 17643 components: - type: Transform @@ -63175,29 +66120,94 @@ entities: - type: Transform pos: 9.5,-87.5 parent: 2 - - uid: 20236 + - uid: 19613 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,-10.5 + pos: -30.5,11.5 parent: 2 - - uid: 20446 + - uid: 19614 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-10.5 + pos: -29.5,11.5 parent: 2 - - uid: 20456 + - uid: 19615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-8.5 + pos: -30.5,13.5 parent: 2 - - uid: 21159 + - uid: 19616 + components: + - type: Transform + pos: -29.5,13.5 + parent: 2 + - uid: 19617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,8.5 + parent: 2 + - uid: 19618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,8.5 + parent: 2 + - uid: 19619 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 19620 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 19625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 2 + - uid: 19627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,11.5 + parent: 2 + - uid: 19629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,11.5 + parent: 2 + - uid: 19650 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-15.5 + pos: -21.5,10.5 + parent: 2 + - uid: 19651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,11.5 + parent: 2 + - uid: 20546 + components: + - type: Transform + pos: -54.5,-17.5 + parent: 2 + - uid: 20547 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 2 + - uid: 20548 + components: + - type: Transform + pos: -52.5,-17.5 parent: 2 - uid: 21813 components: @@ -63223,12 +66233,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-40.5 parent: 2 - - uid: 22574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-15.5 - parent: 2 - uid: 22704 components: - type: Transform @@ -63247,6 +66251,56 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-40.5 parent: 2 + - uid: 23834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-4.5 + parent: 2 + - uid: 23835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-4.5 + parent: 2 + - uid: 23836 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 23837 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 23842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,6.5 + parent: 2 + - uid: 23843 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 23844 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 23845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,2.5 + parent: 2 + - uid: 24461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-14.5 + parent: 2 - proto: ChairFolding entities: - uid: 981 @@ -63255,6 +66309,16 @@ entities: rot: 3.141592653589793 rad pos: 0.5,22.5 parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -52.43766,8.527678 + parent: 2 + - uid: 1737 + components: + - type: Transform + pos: -51.46843,8.50683 + parent: 2 - uid: 4299 components: - type: Transform @@ -63353,6 +66417,12 @@ entities: rot: 3.141592653589793 rad pos: 20.469517,17.597729 parent: 2 + - uid: 24409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.510586,27.561695 + parent: 2 - proto: ChairFoldingSpawnFolded entities: - uid: 18834 @@ -63366,6 +66436,12 @@ entities: - type: Transform pos: 93.99321,-18.341042 parent: 2 + - uid: 24410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.44272,28.749195 + parent: 2 - proto: ChairOfficeDark entities: - uid: 145 @@ -63385,12 +66461,6 @@ entities: - type: Transform pos: 46.413918,-32.460354 parent: 2 - - uid: 463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.467375,12.56866 - parent: 2 - uid: 858 components: - type: Transform @@ -63558,12 +66628,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.522947,0.75847006 parent: 2 - - uid: 9358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.466059,-3.4152722 - parent: 2 - uid: 9793 components: - type: Transform @@ -63599,11 +66663,23 @@ entities: rot: -1.5707963267948966 rad pos: -49.474953,-45.30314 parent: 2 - - uid: 11550 + - uid: 11629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.438198,-11.359901 + rot: -1.5707963267948966 rad + pos: -45.512108,-1.3086004 + parent: 2 + - uid: 11988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.50945,-5.3734727 + parent: 2 + - uid: 12019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.490097,-5.3630486 parent: 2 - uid: 12035 components: @@ -63670,6 +66746,12 @@ entities: rot: 3.141592653589793 rad pos: -1.4385903,-21.32861 parent: 2 + - uid: 14593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.44775,26.690552 + parent: 2 - uid: 15792 components: - type: Transform @@ -63688,18 +66770,17 @@ entities: rot: 1.5707963267948966 rad pos: -38.466614,-53.402744 parent: 2 - - uid: 19135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.46532,-7.235692 - parent: 2 - uid: 21761 components: - type: Transform rot: 3.141592653589793 rad pos: 21.511818,3.5986362 parent: 2 + - uid: 24549 + components: + - type: Transform + pos: 52.50381,-38.388973 + parent: 2 - proto: ChairPilotSeat entities: - uid: 405 @@ -63800,6 +66881,12 @@ entities: rot: 3.141592653589793 rad pos: 13.5153,-32.39743 parent: 2 + - uid: 23846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.496523,7.6106415 + parent: 2 - proto: ChemDispenser entities: - uid: 10460 @@ -63814,12 +66901,11 @@ entities: parent: 2 - proto: ChemistryBottleEZNutrient entities: - - uid: 13366 + - uid: 10535 components: - type: Transform - parent: 13091 - - type: Physics - canCollide: False + pos: -25.399324,13.778531 + parent: 2 - uid: 17701 components: - type: Transform @@ -63827,12 +66913,11 @@ entities: parent: 2 - proto: ChemistryBottleRobustHarvest entities: - - uid: 13642 + - uid: 10538 components: - type: Transform - parent: 13091 - - type: Physics - canCollide: False + pos: -25.59511,13.619424 + parent: 2 - proto: ChemistryEmptyBottle01 entities: - uid: 1331 @@ -63874,11 +66959,11 @@ entities: rot: -1.5707963267948966 rad pos: 11.503945,-30.39604 parent: 2 - - uid: 12554 + - uid: 23847 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.468615,8.584222 + pos: -14.496523,3.6078615 parent: 2 - proto: ChurchBell entities: @@ -63987,6 +67072,24 @@ entities: rot: 3.141592653589793 rad pos: 27.779593,-28.603773 parent: 2 + - uid: 24411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.333342,28.48357 + parent: 2 + - uid: 24412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.614594,28.217945 + parent: 2 + - uid: 24413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.583344,28.749195 + parent: 2 - proto: CigarGold entities: - uid: 5608 @@ -64024,11 +67127,6 @@ entities: parent: 5611 - type: Physics canCollide: False - - uid: 5714 - components: - - type: Transform - pos: 52.710236,-39.433784 - parent: 2 - proto: CigCartonBlack entities: - uid: 8519 @@ -64072,10 +67170,10 @@ entities: - type: Transform pos: 26.5,-43.5 parent: 2 - - uid: 14051 + - uid: 20598 components: - type: Transform - pos: -24.5,12.5 + pos: -42.5,-4.5 parent: 2 - proto: ClosetChefFilled entities: @@ -64091,11 +67189,21 @@ entities: - type: Transform pos: -6.5,-59.5 parent: 2 + - uid: 2323 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 - uid: 2332 components: - type: Transform pos: 24.5,10.5 parent: 2 + - uid: 2367 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 - uid: 2532 components: - type: Transform @@ -64216,11 +67324,6 @@ entities: - type: Transform pos: 11.5,-59.5 parent: 2 - - uid: 15721 - components: - - type: Transform - pos: -23.5,-11.5 - parent: 2 - uid: 16306 components: - type: Transform @@ -64246,6 +67349,21 @@ entities: - type: Transform pos: 61.5,-52.5 parent: 2 + - uid: 20528 + components: + - type: Transform + pos: -53.5,-19.5 + parent: 2 + - uid: 20529 + components: + - type: Transform + pos: -54.5,-19.5 + parent: 2 + - uid: 20553 + components: + - type: Transform + pos: -35.5,-17.5 + parent: 2 - uid: 21615 components: - type: Transform @@ -64261,11 +67379,6 @@ entities: - type: Transform pos: 23.5,10.5 parent: 2 - - uid: 22037 - components: - - type: Transform - pos: -36.5,11.5 - parent: 2 - uid: 22047 components: - type: Transform @@ -64276,18 +67389,23 @@ entities: - type: Transform pos: 36.5,15.5 parent: 2 - - uid: 22603 + - uid: 24294 components: - type: Transform - pos: -24.5,-11.5 + pos: -31.5,-8.5 + parent: 2 + - uid: 24631 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - uid: 24632 + components: + - type: Transform + pos: -31.5,-13.5 parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: - - uid: 2790 - components: - - type: Transform - pos: -34.5,-12.5 - parent: 2 - uid: 2973 components: - type: Transform @@ -64313,11 +67431,6 @@ entities: - type: Transform pos: 44.5,-19.5 parent: 2 - - uid: 11269 - components: - - type: Transform - pos: -36.5,13.5 - parent: 2 - uid: 11562 components: - type: Transform @@ -64333,6 +67446,11 @@ entities: - type: Transform pos: 61.5,-54.5 parent: 2 + - uid: 20527 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 2 - uid: 21614 components: - type: Transform @@ -64345,10 +67463,15 @@ entities: - type: Transform pos: -6.5,-60.5 parent: 2 - - uid: 2758 + - uid: 2352 components: - type: Transform - pos: -34.5,-13.5 + pos: -21.5,18.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: -36.5,-17.5 parent: 2 - uid: 3039 components: @@ -64375,11 +67498,6 @@ entities: - type: Transform pos: 25.5,10.5 parent: 2 - - uid: 12324 - components: - - type: Transform - pos: -34.5,11.5 - parent: 2 - uid: 12744 components: - type: Transform @@ -64413,16 +67531,6 @@ entities: - type: Transform pos: 11.5,-73.5 parent: 2 - - uid: 13728 - components: - - type: Transform - pos: -38.5,-19.5 - parent: 2 - - uid: 14512 - components: - - type: Transform - pos: -25.5,-11.5 - parent: 2 - uid: 14798 components: - type: Transform @@ -64453,6 +67561,11 @@ entities: - type: Transform pos: 43.5,-50.5 parent: 2 + - uid: 20545 + components: + - type: Transform + pos: -55.5,-19.5 + parent: 2 - uid: 20817 components: - type: Transform @@ -64468,6 +67581,11 @@ entities: - type: Transform pos: -58.5,-52.5 parent: 2 + - uid: 24452 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 - proto: ClosetJanitorFilled entities: - uid: 9635 @@ -64491,10 +67609,10 @@ entities: parent: 2 - proto: ClosetL3SecurityFilled entities: - - uid: 17618 + - uid: 23319 components: - type: Transform - pos: -27.5,9.5 + pos: -43.5,-4.5 parent: 2 - proto: ClosetL3VirologyFilled entities: @@ -64510,11 +67628,6 @@ entities: parent: 2 - proto: ClosetMaintenance entities: - - uid: 3103 - components: - - type: Transform - pos: -29.5,15.5 - parent: 2 - uid: 7316 components: - type: Transform @@ -64532,29 +67645,6 @@ entities: - type: Transform pos: 39.5,5.5 parent: 2 - - uid: 2301 - components: - - type: Transform - pos: 51.5,-35.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 5348 components: - type: Transform @@ -64616,11 +67706,6 @@ entities: - type: Transform pos: -32.5,-17.5 parent: 2 - - uid: 11167 - components: - - type: Transform - pos: -29.5,14.5 - parent: 2 - uid: 14345 components: - type: Transform @@ -64631,15 +67716,10 @@ entities: - type: Transform pos: -36.5,-45.5 parent: 2 - - uid: 15336 + - uid: 16495 components: - type: Transform - pos: -26.5,19.5 - parent: 2 - - uid: 16081 - components: - - type: Transform - pos: -27.5,-14.5 + pos: -56.5,10.5 parent: 2 - uid: 16910 components: @@ -64666,15 +67746,45 @@ entities: - type: Transform pos: 38.5,-61.5 parent: 2 + - uid: 20067 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 20068 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 20069 + components: + - type: Transform + pos: -49.5,13.5 + parent: 2 + - uid: 20070 + components: + - type: Transform + pos: -51.5,22.5 + parent: 2 + - uid: 20556 + components: + - type: Transform + pos: -46.5,22.5 + parent: 2 - uid: 21805 components: - type: Transform pos: 40.5,22.5 parent: 2 - - uid: 23934 + - uid: 24441 components: - type: Transform - pos: -27.5,-13.5 + pos: -27.5,18.5 + parent: 2 + - uid: 24633 + components: + - type: Transform + pos: -39.5,-16.5 parent: 2 - proto: ClosetRadiationSuitFilled entities: @@ -64700,29 +67810,6 @@ entities: parent: 2 - proto: ClosetSteelBase entities: - - uid: 2309 - components: - - type: Transform - pos: 50.5,-35.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11559 components: - type: Transform @@ -64733,6 +67820,11 @@ entities: - type: Transform pos: -59.5,-31.5 parent: 2 + - uid: 20079 + components: + - type: Transform + pos: -47.5,22.5 + parent: 2 - proto: ClosetToolFilled entities: - uid: 8408 @@ -64768,13 +67860,6 @@ entities: priority: 0 component: Armor title: null -- proto: ClothingBackpackDuffel - entities: - - uid: 1038 - components: - - type: Transform - pos: 52.586926,-35.256138 - parent: 2 - proto: ClothingBackpackDuffelAtmospherics entities: - uid: 2267 @@ -64895,39 +67980,31 @@ entities: parent: 2 - proto: ClothingBeltPlant entities: - - uid: 13091 + - uid: 10503 components: - type: Transform - pos: -41.53722,-7.3473916 + pos: -25.296412,13.637726 parent: 2 - type: Storage storedItems: - 13137: + 10506: position: 0,0 _rotation: South - 13276: + 10524: position: 1,0 _rotation: South - 13343: + 10527: position: 2,0 _rotation: South - 13366: - position: 3,0 - _rotation: South - 13642: - position: 4,0 - _rotation: South - type: ContainerContainer containers: storagebase: !type:Container showEnts: False occludes: True ents: - - 13137 - - 13276 - - 13343 - - 13366 - - 13642 + - 10506 + - 10524 + - 10527 - proto: ClothingBeltPlantFilled entities: - uid: 3461 @@ -64937,10 +68014,10 @@ entities: parent: 2 - proto: ClothingBeltSecurityFilled entities: - - uid: 1489 + - uid: 12113 components: - type: Transform - pos: -23.511723,15.622659 + pos: -38.49636,-6.378804 parent: 2 - proto: ClothingBeltUtility entities: @@ -64989,26 +68066,31 @@ entities: - type: Transform pos: 45.643505,-32.712418 parent: 2 -- proto: ClothingHandsGlovesBoxingGreen - entities: - - uid: 3354 + - uid: 24484 components: - type: Transform - pos: 53.148388,-40.7539 + pos: 51.327164,-42.348145 + parent: 2 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 24485 + components: + - type: Transform + pos: 51.60855,-42.49408 parent: 2 - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 2285 + - uid: 24486 components: - type: Transform - pos: 51.41836,-41.410606 + pos: 51.389694,-42.59832 parent: 2 - proto: ClothingHandsGlovesBoxingYellow entities: - - uid: 3329 + - uid: 24487 components: - type: Transform - pos: 55.644142,-41.512356 + pos: 51.650238,-42.223057 parent: 2 - proto: ClothingHandsGlovesColorYellow entities: @@ -65048,13 +68130,6 @@ entities: - type: Transform pos: 6.9404736,-45.65364 parent: 2 -- proto: ClothingHeadHatAnimalCat - entities: - - uid: 6055 - components: - - type: Transform - pos: -16.499865,8.60507 - parent: 2 - proto: ClothingHeadHatAnimalCatBlack entities: - uid: 8601 @@ -65062,6 +68137,11 @@ entities: - type: Transform pos: 44.30121,-2.3817148 parent: 2 + - uid: 24108 + components: + - type: Transform + pos: 19.469938,-11.4519415 + parent: 2 - proto: ClothingHeadHatBeret entities: - uid: 3009 @@ -65097,6 +68177,11 @@ entities: - type: Transform pos: 17.86101,15.533201 parent: 2 + - uid: 24114 + components: + - type: Transform + pos: 18.449106,-11.402117 + parent: 2 - proto: ClothingHeadHatCargosoft entities: - uid: 8997 @@ -65152,7 +68237,7 @@ entities: - uid: 18623 components: - type: Transform - pos: -15.4590845,13.626832 + pos: -15.495352,12.5843525 parent: 2 - proto: ClothingHeadHatMimesoft entities: @@ -65182,13 +68267,6 @@ entities: - type: Transform pos: 25.671356,-58.306297 parent: 2 -- proto: ClothingHeadHatRichard - entities: - - uid: 5281 - components: - - type: Transform - pos: 56.495144,-40.47507 - parent: 2 - proto: ClothingHeadHatSantahat entities: - uid: 809 @@ -65210,12 +68288,12 @@ entities: - type: Transform pos: 47.35316,-9.274309 parent: 2 -- proto: ClothingHeadHatWarden +- proto: ClothingHeadHatTophat entities: - - uid: 14570 + - uid: 24110 components: - type: Transform - pos: -19.192179,-7.615655 + pos: 19.525446,-8.325864 parent: 2 - proto: ClothingHeadHatWeldingMaskPainted entities: @@ -65240,20 +68318,20 @@ entities: parent: 2 - proto: ClothingHeadHelmetRiot entities: - - uid: 2599 + - uid: 12569 components: - type: Transform - pos: -20.614132,6.803402 + pos: -40.314,1.5935211 parent: 2 - - uid: 14105 + - uid: 20682 components: - type: Transform - pos: -20.591784,6.61318 + pos: -40.353367,1.7451324 parent: 2 - - uid: 23309 + - uid: 20686 components: - type: Transform - pos: -20.58104,6.4969034 + pos: -40.280415,1.5366535 parent: 2 - proto: ClothingMaskBreath entities: @@ -65403,73 +68481,54 @@ entities: parent: 2 - proto: ClothingOuterArmorBulletproof entities: - - uid: 245 + - uid: 38 components: - type: Transform - pos: -21.188942,6.61409 + pos: -38.693848,1.6182833 parent: 2 - - uid: 416 + - uid: 12491 components: - type: Transform - pos: -21.173317,6.52034 + pos: -38.381348,1.5870333 parent: 2 - - uid: 23307 + - uid: 12514 components: - type: Transform - pos: -21.286655,6.6918373 + pos: -38.693848,1.6182833 + parent: 2 + - uid: 12549 + components: + - type: Transform + pos: -38.381348,1.5870333 parent: 2 - proto: ClothingOuterArmorReflective entities: - - uid: 627 + - uid: 20 components: - type: Transform - pos: -20.224054,6.715275 + pos: -38.678223,1.5245333 + parent: 2 + - uid: 12567 + components: + - type: Transform + pos: -38.396973,1.4307833 parent: 2 - proto: ClothingOuterArmorRiot entities: - - uid: 6250 + - uid: 12568 components: - type: Transform - pos: -20.871235,6.678402 + pos: -40.704624,1.5778961 parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null - - uid: 6885 + - uid: 20680 components: - type: Transform - pos: -20.888659,6.503805 + pos: -40.666023,1.6617413 parent: 2 - - uid: 23308 + - uid: 20681 components: - type: Transform - pos: -20.888659,6.610859 + pos: -40.572227,1.5470781 parent: 2 - proto: ClothingOuterCoatLabChem entities: @@ -65515,48 +68574,34 @@ entities: parent: 2 - proto: ClothingOuterHardsuitSecurity entities: - - uid: 19589 + - uid: 20660 components: - type: Transform - pos: -22.740864,4.6130686 - parent: 2 - - uid: 19998 + parent: 20657 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20662 components: - type: Transform - pos: -22.725239,4.683381 - parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]25%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]40%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]40%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]40%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]60%[/color]. - priority: 0 - component: Armor - title: null - - uid: 23317 + parent: 20657 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20666 components: - type: Transform - pos: -22.725239,4.511506 - parent: 2 + parent: 20664 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20667 + components: + - type: Transform + parent: 20664 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterWinterBar entities: - uid: 7386 @@ -65599,6 +68644,13 @@ entities: - type: Transform pos: 28.62983,-48.427315 parent: 2 +- proto: ClothingOuterWinterSec + entities: + - uid: 20677 + components: + - type: Transform + pos: -35.31549,-8.419664 + parent: 2 - proto: ClothingOuterWinterViro entities: - uid: 4654 @@ -65606,6 +68658,13 @@ entities: - type: Transform pos: -11.400722,-26.44824 parent: 2 +- proto: ClothingOuterWinterWardenUnarmored + entities: + - uid: 12515 + components: + - type: Transform + pos: -25.42223,-4.4220543 + parent: 2 - proto: ClothingShoesBootsLaceup entities: - uid: 3770 @@ -65625,6 +68684,13 @@ entities: - type: Transform pos: 0.5441561,-55.410812 parent: 2 +- proto: ClothingShoesBootsWinterSecFilled + entities: + - uid: 20678 + components: + - type: Transform + pos: -35.727757,-8.679638 + parent: 2 - proto: ClothingShoeSlippersDuck entities: - uid: 11860 @@ -65658,6 +68724,13 @@ entities: - type: Transform pos: 38.429108,-59.892277 parent: 2 +- proto: ClothingUniformJumpskirtBlueElegantDress + entities: + - uid: 24111 + components: + - type: Transform + pos: 18.486399,-8.595786 + parent: 2 - proto: ClothingUniformJumpskirtYellowTurtleneckDress entities: - uid: 13909 @@ -65665,6 +68738,13 @@ entities: - type: Transform pos: 19.424847,-58.377728 parent: 2 +- proto: ClothingUniformJumpsuitColorBlack + entities: + - uid: 24116 + components: + - type: Transform + pos: 19.536427,-8.752947 + parent: 2 - proto: ClothingUniformJumpsuitReporter entities: - uid: 3942 @@ -65989,11 +69069,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-11.5 parent: 2 - - uid: 8763 - components: - - type: Transform - pos: 20.5,-8.5 - parent: 2 - uid: 9077 components: - type: Transform @@ -66006,12 +69081,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-16.5 parent: 2 - - uid: 10136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,6.5 - parent: 2 - uid: 10149 components: - type: Transform @@ -66057,6 +69126,18 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-26.5 parent: 2 + - uid: 11333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,2.5 + parent: 2 + - uid: 12699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,24.5 + parent: 2 - uid: 12719 components: - type: Transform @@ -66079,6 +69160,12 @@ entities: - type: Transform pos: 3.5,-51.5 parent: 2 + - uid: 14820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,24.5 + parent: 2 - uid: 14955 components: - type: Transform @@ -66102,21 +69189,22 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-45.5 parent: 2 - - uid: 16882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,6.5 - parent: 2 - uid: 19259 components: - type: Transform pos: -9.5,-58.5 parent: 2 - - uid: 20480 + - uid: 19556 components: - type: Transform - pos: -41.5,6.5 + rot: 1.5707963267948966 rad + pos: 51.5,-35.5 + parent: 2 + - uid: 19558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-35.5 parent: 2 - uid: 20842 components: @@ -66124,12 +69212,28 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-62.5 parent: 2 -- proto: CommandmentCircuitBoard - entities: - - uid: 16471 + - uid: 24014 components: - type: Transform - pos: -60.976395,-16.360863 + rot: 3.141592653589793 rad + pos: 18.5,-11.5 + parent: 2 + - uid: 24058 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 24063 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 +- proto: CommandmentCircuitBoard + entities: + - uid: 7801 + components: + - type: Transform + pos: 67.87616,-43.24812 parent: 2 - proto: CommsComputerCircuitboard entities: @@ -66140,6 +69244,12 @@ entities: parent: 2 - proto: ComputerAlert entities: + - uid: 1142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-44.5 + parent: 2 - uid: 1850 components: - type: Transform @@ -66152,12 +69262,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-55.5 parent: 2 - - uid: 14699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-11.5 - parent: 2 - proto: ComputerAnalysisConsole entities: - uid: 4548 @@ -66173,6 +69277,12 @@ entities: - ArtifactAnalyzerReceiver - proto: ComputerAtmosMonitoring entities: + - uid: 1133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-43.5 + parent: 2 - uid: 2340 components: - type: Transform @@ -66234,16 +69344,23 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-46.5 parent: 2 - - uid: 16455 + - uid: 14818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,25.5 + parent: 2 + - uid: 16033 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,-12.5 + pos: -59.5,-13.5 parent: 2 - - uid: 20680 + - uid: 16410 components: - type: Transform - pos: -34.5,18.5 + rot: 3.141592653589793 rad + pos: -52.5,7.5 parent: 2 - proto: ComputerCargoBounty entities: @@ -66308,11 +69425,11 @@ entities: parent: 2 - proto: ComputerCargoOrdersSecurity entities: - - uid: 10609 + - uid: 11553 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,12.5 + pos: -46.5,-2.5 parent: 2 - proto: ComputerCargoOrdersService entities: @@ -66349,6 +69466,12 @@ entities: - type: Transform pos: -27.5,-24.5 parent: 2 + - uid: 11989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 2 - uid: 13079 components: - type: Transform @@ -66367,25 +69490,13 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,3.5 parent: 2 - - uid: 20606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 2 - proto: ComputerCriminalRecords entities: - - uid: 625 + - uid: 150 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,2.5 - parent: 2 - - uid: 3695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-4.5 + pos: -29.5,0.5 parent: 2 - uid: 7278 components: @@ -66399,6 +69510,18 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-55.5 parent: 2 + - uid: 11591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-1.5 + parent: 2 + - uid: 12004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 2 - proto: ComputerFrame entities: - uid: 7187 @@ -66407,11 +69530,22 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-88.5 parent: 2 - - uid: 18761 + - uid: 14819 components: - type: Transform rot: 3.141592653589793 rad - pos: 74.5,-46.5 + pos: -33.5,25.5 + parent: 2 + - uid: 16408 + components: + - type: Transform + pos: -51.5,5.5 + parent: 2 + - uid: 16409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,7.5 parent: 2 - proto: ComputerFundingAllocation entities: @@ -66468,18 +69602,6 @@ entities: - type: Transform pos: -3.5,-20.5 parent: 2 - - uid: 8518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-11.5 - parent: 2 - - uid: 8955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,23.5 - parent: 2 - uid: 9721 components: - type: Transform @@ -66491,12 +69613,24 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-18.5 parent: 2 + - uid: 14595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,27.5 + parent: 2 - uid: 15885 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 + - uid: 17939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,-41.5 + parent: 2 - proto: ComputerRadar entities: - uid: 5026 @@ -66558,6 +69692,13 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,23.5 parent: 2 +- proto: ComputerSalvageJobBoard + entities: + - uid: 17659 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 - proto: ComputerShuttleCargo entities: - uid: 5376 @@ -66584,10 +69725,11 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,1.5 parent: 2 - - uid: 8953 + - uid: 14596 components: - type: Transform - pos: -29.5,24.5 + rot: -1.5707963267948966 rad + pos: -37.5,26.5 parent: 2 - uid: 16430 components: @@ -66597,25 +69739,42 @@ entities: parent: 2 - proto: ComputerStationRecords entities: + - uid: 1949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-39.5 + parent: 2 - uid: 9730 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-56.5 parent: 2 + - uid: 12010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: + - uid: 1272 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 - uid: 9722 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-53.5 parent: 2 - - uid: 13090 + - uid: 12006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-3.5 + rot: -1.5707963267948966 rad + pos: -24.5,-5.5 parent: 2 - proto: ComputerTechnologyDiskTerminal entities: @@ -66633,11 +69792,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-42.5 parent: 2 - - uid: 6146 - components: - - type: Transform - pos: -37.5,3.5 - parent: 2 - uid: 7593 components: - type: Transform @@ -66666,6 +69820,11 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,4.5 parent: 2 + - uid: 19621 + components: + - type: Transform + pos: -34.5,14.5 + parent: 2 - proto: ComputerTelevisionCircuitboard entities: - uid: 18914 @@ -66810,6 +69969,59 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-92.5 parent: 2 + - uid: 15372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-11.5 + parent: 2 + - uid: 15392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-10.5 + parent: 2 + - uid: 15461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-12.5 + parent: 2 + - uid: 15469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-15.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 + - uid: 15899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-9.5 + parent: 2 + - uid: 15914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-11.5 + parent: 2 + - uid: 15919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-9.5 + parent: 2 + - uid: 16258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-14.5 + parent: 2 - uid: 18127 components: - type: Transform @@ -66836,10 +70048,10 @@ entities: parent: 2 - proto: CorporateCircuitBoard entities: - - uid: 16463 + - uid: 16726 components: - type: Transform - pos: -61.414112,-16.256622 + pos: 67.61919,-41.510166 parent: 2 - proto: CrateArtifactContainer entities: @@ -66881,10 +70093,10 @@ entities: parent: 2 - proto: CrateContrabandStorageSecure entities: - - uid: 10432 + - uid: 12051 components: - type: Transform - pos: -21.5,-5.5 + pos: -24.5,-7.5 parent: 2 - proto: CrateEmergencyInternalsLarge entities: @@ -66902,11 +70114,6 @@ entities: parent: 2 - proto: CrateEmptySpawner entities: - - uid: 14 - components: - - type: Transform - pos: 77.5,-40.5 - parent: 2 - uid: 994 components: - type: Transform @@ -66982,11 +70189,6 @@ entities: - type: Transform pos: 34.5,25.5 parent: 2 - - uid: 18760 - components: - - type: Transform - pos: 67.5,-42.5 - parent: 2 - uid: 18805 components: - type: Transform @@ -67095,6 +70297,11 @@ entities: - type: Transform pos: 25.5,19.5 parent: 2 + - uid: 24642 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 - proto: CrateEngineeringSolar entities: - uid: 4024 @@ -67131,10 +70338,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 5322 + - uid: 7007 components: - type: Transform - pos: -31.5,22.5 + pos: -38.5,25.5 parent: 2 - uid: 20713 components: @@ -67148,6 +70355,11 @@ entities: parent: 2 - proto: CrateFilledSpawner entities: + - uid: 1785 + components: + - type: Transform + pos: -55.5,-7.5 + parent: 2 - uid: 6111 components: - type: Transform @@ -67163,6 +70375,21 @@ entities: - type: Transform pos: 5.5,-58.5 parent: 2 + - uid: 16428 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 + - uid: 16429 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - uid: 16434 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 2 - uid: 17448 components: - type: Transform @@ -67203,6 +70430,11 @@ entities: - type: Transform pos: 83.5,-16.5 parent: 2 + - uid: 24224 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 - proto: CrateFreezer entities: - uid: 2597 @@ -67308,17 +70540,17 @@ entities: - type: Transform pos: -42.5,-39.5 parent: 2 - - uid: 20481 + - uid: 19635 components: - type: Transform - pos: -39.5,-2.5 + pos: -28.5,15.5 parent: 2 - proto: CrateLockBoxSecurity entities: - - uid: 23690 + - uid: 11150 components: - type: Transform - pos: -24.5,4.5 + pos: -34.5,-1.5 parent: 2 - proto: CrateLockBoxService entities: @@ -67329,16 +70561,16 @@ entities: parent: 2 - proto: CrateMaterialPlasma entities: - - uid: 6438 - components: - - type: Transform - pos: -60.5,-9.5 - parent: 2 - uid: 9490 components: - type: Transform pos: 39.5,-36.5 parent: 2 + - uid: 18032 + components: + - type: Transform + pos: 95.5,-43.5 + parent: 2 - proto: CrateMaterialSilo entities: - uid: 939 @@ -67392,14 +70624,11 @@ entities: parent: 2 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 4184 + - uid: 148 components: - type: Transform - anchored: True - pos: -22.5,2.5 + pos: -29.5,-7.5 parent: 2 - - type: Physics - bodyType: Static - proto: CrateServiceBoozeDispenser entities: - uid: 2764 @@ -67471,17 +70700,17 @@ entities: - 0 - proto: CrateTechBoardRandom entities: - - uid: 12128 + - uid: 1218 components: - type: Transform - pos: -34.5,17.5 + pos: -40.5,23.5 parent: 2 - proto: CrateTrashCart entities: - - uid: 5921 + - uid: 16496 components: - type: Transform - pos: -36.5,-5.5 + pos: -50.5,-9.5 parent: 2 - uid: 22407 components: @@ -67513,6 +70742,11 @@ entities: - 0 - 0 - 0 + - uid: 12152 + components: + - type: Transform + pos: -30.5,5.5 + parent: 2 - uid: 13309 components: - type: Transform @@ -67532,10 +70766,10 @@ entities: - type: Transform pos: 7.546462,-31.401642 parent: 2 - - uid: 4602 + - uid: 19634 components: - type: Transform - pos: -40.56964,0.6151676 + pos: -30.600847,12.583185 parent: 2 - proto: CrayonMime entities: @@ -67551,6 +70785,13 @@ entities: - type: Transform pos: 19.23948,-53.370228 parent: 2 +- proto: CrayonWhite + entities: + - uid: 24270 + components: + - type: Transform + pos: -29.720528,17.366255 + parent: 2 - proto: Crematorium entities: - uid: 7059 @@ -67584,6 +70825,13 @@ entities: - type: Transform pos: -55.5,-21.5 parent: 2 +- proto: Crowbar + entities: + - uid: 9936 + components: + - type: Transform + pos: 83.473915,-41.499165 + parent: 2 - proto: CrowbarGreen entities: - uid: 8024 @@ -67600,17 +70848,15 @@ entities: parent: 2 - proto: CryogenicSleepUnit entities: - - uid: 38 + - uid: 16983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-0.5 + pos: -34.5,9.5 parent: 2 - - uid: 9520 + - uid: 17255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,0.5 + pos: -34.5,8.5 parent: 2 - proto: CryogenicSleepUnitSpawner entities: @@ -67823,12 +71069,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-40.5 parent: 2 - - uid: 14818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,12.5 - parent: 2 - uid: 17653 components: - type: Transform @@ -67900,31 +71140,24 @@ entities: parent: 2 - proto: DefaultStationBeaconAICore entities: - - uid: 5150 + - uid: 17963 components: - type: Transform - pos: -66.5,-12.5 - parent: 2 -- proto: DefaultStationBeaconAIPower - entities: - - uid: 10751 - components: - - type: Transform - pos: -61.5,-9.5 + pos: 90.5,-42.5 parent: 2 - proto: DefaultStationBeaconAISatellite entities: - - uid: 4927 + - uid: 17962 components: - type: Transform - pos: -52.5,-12.5 + pos: 79.5,-42.5 parent: 2 - proto: DefaultStationBeaconAIUpload entities: - - uid: 10750 + - uid: 16540 components: - type: Transform - pos: -61.5,-15.5 + pos: 70.5,-42.5 parent: 2 - proto: DefaultStationBeaconAME entities: @@ -67942,10 +71175,10 @@ entities: parent: 2 - proto: DefaultStationBeaconArmory entities: - - uid: 558 + - uid: 11804 components: - type: Transform - pos: -21.5,4.5 + pos: -38.5,3.5 parent: 2 - proto: DefaultStationBeaconArrivals entities: @@ -67991,10 +71224,10 @@ entities: parent: 2 - proto: DefaultStationBeaconBrigMed entities: - - uid: 10754 + - uid: 24809 components: - type: Transform - pos: -29.5,11.5 + pos: -44.5,-7.5 parent: 2 - proto: DefaultStationBeaconCaptainsQuarters entities: @@ -68106,11 +71339,6 @@ entities: - type: Transform pos: 61.5,-53.5 parent: 2 - - uid: 22039 - components: - - type: Transform - pos: -36.5,12.5 - parent: 2 - proto: DefaultStationBeaconEvac entities: - uid: 8793 @@ -68134,10 +71362,10 @@ entities: parent: 2 - proto: DefaultStationBeaconHOSRoom entities: - - uid: 2880 + - uid: 24810 components: - type: Transform - pos: -21.5,11.5 + pos: -44.5,2.5 parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: @@ -68188,6 +71416,13 @@ entities: - type: Transform pos: -47.5,-44.5 parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 24811 + components: + - type: Transform + pos: -31.5,13.5 + parent: 2 - proto: DefaultStationBeaconPowerBank entities: - uid: 11424 @@ -68246,10 +71481,10 @@ entities: parent: 2 - proto: DefaultStationBeaconSecurity entities: - - uid: 19161 + - uid: 24813 components: - type: Transform - pos: -25.5,-0.5 + pos: -34.5,-2.5 parent: 2 - proto: DefaultStationBeaconServerRoom entities: @@ -68260,10 +71495,10 @@ entities: parent: 2 - proto: DefaultStationBeaconSolars entities: - - uid: 5574 + - uid: 6687 components: - type: Transform - pos: -30.5,23.5 + pos: -39.5,26.5 parent: 2 - uid: 15769 components: @@ -68319,19 +71554,13 @@ entities: parent: 2 - proto: DefaultStationBeaconWardensOffice entities: - - uid: 19160 + - uid: 24812 components: - type: Transform - pos: -20.5,-4.5 + pos: -26.5,-6.5 parent: 2 - proto: DefibrillatorCabinetFilled entities: - - uid: 453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,9.5 - parent: 2 - uid: 5482 components: - type: Transform @@ -68366,6 +71595,12 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-23.5 parent: 2 + - uid: 20586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-8.5 + parent: 2 - uid: 21976 components: - type: Transform @@ -68378,15 +71613,15 @@ entities: parent: 2 - proto: DeployableBarrier entities: - - uid: 1413 + - uid: 24815 components: - type: Transform - pos: -30.5,-0.5 + pos: -31.5,-5.5 parent: 2 - - uid: 2047 + - uid: 24816 components: - type: Transform - pos: -30.5,-1.5 + pos: -31.5,-4.5 parent: 2 - proto: DeskBell entities: @@ -68395,11 +71630,6 @@ entities: - type: Transform pos: 4.357331,15.490134 parent: 2 - - uid: 2381 - components: - - type: Transform - pos: -19.59333,-2.3409834 - parent: 2 - uid: 2415 components: - type: Transform @@ -68415,6 +71645,11 @@ entities: - type: Transform pos: -21.404652,-38.42122 parent: 2 + - uid: 12024 + components: + - type: Transform + pos: -24.34783,-4.4816127 + parent: 2 - uid: 20291 components: - type: Transform @@ -68425,6 +71660,11 @@ entities: - type: Transform pos: -14.384096,-14.383596 parent: 2 + - uid: 24825 + components: + - type: Transform + pos: -14.417165,-2.3140416 + parent: 2 - proto: DiceBag entities: - uid: 11294 @@ -68439,16 +71679,6 @@ entities: - type: Transform pos: 24.710743,0.20568168 parent: 2 - - uid: 5405 - components: - - type: Transform - pos: -23.289038,22.108608 - parent: 2 - - uid: 5438 - components: - - type: Transform - pos: -23.729557,22.108608 - parent: 2 - proto: DiseaseDiagnoser entities: - uid: 12945 @@ -68458,11 +71688,6 @@ entities: parent: 2 - proto: DiseaseSwab entities: - - uid: 716 - components: - - type: Transform - pos: -41.408195,-6.823576 - parent: 2 - uid: 17702 components: - type: Transform @@ -68473,11 +71698,6 @@ entities: - type: Transform pos: 48.60238,-59.469746 parent: 2 - - uid: 20581 - components: - - type: Transform - pos: -41.637478,-6.792304 - parent: 2 - proto: DisposalBend entities: - uid: 286 @@ -68578,12 +71798,6 @@ entities: - type: Transform pos: -7.5,-41.5 parent: 2 - - uid: 5235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,2.5 - parent: 2 - uid: 5448 components: - type: Transform @@ -68606,11 +71820,6 @@ entities: - type: Transform pos: 35.5,-18.5 parent: 2 - - uid: 6647 - components: - - type: Transform - pos: -39.5,-12.5 - parent: 2 - uid: 6824 components: - type: Transform @@ -68704,12 +71913,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-38.5 parent: 2 - - uid: 12179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 2 - uid: 12218 components: - type: Transform @@ -68804,29 +72007,16 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-28.5 parent: 2 - - uid: 16238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 2 - uid: 17010 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-46.5 parent: 2 - - uid: 17096 + - uid: 17191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-10.5 - parent: 2 - - uid: 17462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,11.5 + pos: 79.5,-37.5 parent: 2 - uid: 17511 components: @@ -68861,18 +72051,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-30.5 parent: 2 - - uid: 18649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-3.5 - parent: 2 - - uid: 18650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-3.5 - parent: 2 - uid: 20284 components: - type: Transform @@ -68982,8 +72160,60 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-38.5 parent: 2 + - uid: 23872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,7.5 + parent: 2 + - uid: 23878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,11.5 + parent: 2 + - uid: 23915 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 23921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-2.5 + parent: 2 + - uid: 23933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 2 + - uid: 23934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 2 + - uid: 23935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-10.5 + parent: 2 + - uid: 24471 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 - proto: DisposalJunction entities: + - uid: 1300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-19.5 + parent: 2 - uid: 2526 components: - type: Transform @@ -69080,11 +72310,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-48.5 parent: 2 - - uid: 9859 - components: - - type: Transform - pos: -16.5,-10.5 - parent: 2 - uid: 10307 components: - type: Transform @@ -69108,12 +72333,6 @@ entities: - type: Transform pos: 48.5,-37.5 parent: 2 - - uid: 11150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,11.5 - parent: 2 - uid: 11830 components: - type: Transform @@ -69137,17 +72356,39 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-31.5 parent: 2 - - uid: 20299 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 2 - uid: 22284 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-42.5 parent: 2 + - uid: 23833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 2 + - uid: 23860 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 23877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,11.5 + parent: 2 + - uid: 23892 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 24311 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 - proto: DisposalJunctionFlipped entities: - uid: 3248 @@ -69258,13 +72499,6 @@ entities: - type: Transform pos: 32.5,15.5 parent: 2 -- proto: DisposalMachineFrame - entities: - - uid: 18765 - components: - - type: Transform - pos: 79.5,-46.5 - parent: 2 - proto: DisposalPipe entities: - uid: 13 @@ -69313,10 +72547,21 @@ entities: - type: Transform pos: 27.5,4.5 parent: 2 - - uid: 550 + - uid: 452 components: - type: Transform - pos: -39.5,-13.5 + pos: -16.5,-10.5 + parent: 2 + - uid: 692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: -16.5,-9.5 parent: 2 - uid: 819 components: @@ -69347,6 +72592,18 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 + - uid: 1038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-37.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 2 - uid: 1250 components: - type: Transform @@ -69377,6 +72634,12 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-41.5 parent: 2 + - uid: 1804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 2 - uid: 1846 components: - type: Transform @@ -69400,11 +72663,27 @@ entities: - type: Transform pos: -7.5,-54.5 parent: 2 + - uid: 2074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-37.5 + parent: 2 - uid: 2081 components: - type: Transform pos: 10.5,-56.5 parent: 2 + - uid: 2268 + components: + - type: Transform + pos: 79.5,-40.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: 79.5,-38.5 + parent: 2 - uid: 2429 components: - type: Transform @@ -69417,6 +72696,18 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-16.5 parent: 2 + - uid: 2459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-37.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-37.5 + parent: 2 - uid: 2560 components: - type: Transform @@ -69593,12 +72884,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,6.5 parent: 2 - - uid: 3322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 2 - uid: 3380 components: - type: Transform @@ -69610,6 +72895,12 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-46.5 parent: 2 + - uid: 3408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-37.5 + parent: 2 - uid: 3454 components: - type: Transform @@ -69651,6 +72942,11 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,19.5 parent: 2 + - uid: 3625 + components: + - type: Transform + pos: 79.5,-39.5 + parent: 2 - uid: 3688 components: - type: Transform @@ -69781,12 +73077,6 @@ entities: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 4382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-4.5 - parent: 2 - uid: 4385 components: - type: Transform @@ -70077,18 +73367,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-25.5 parent: 2 - - uid: 5237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,1.5 - parent: 2 - - uid: 5238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,0.5 - parent: 2 - uid: 5239 components: - type: Transform @@ -70113,53 +73391,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,17.5 parent: 2 - - uid: 5251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-2.5 - parent: 2 - - uid: 5257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,4.5 - parent: 2 - - uid: 5258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,5.5 - parent: 2 - - uid: 5259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,6.5 - parent: 2 - - uid: 5260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,7.5 - parent: 2 - - uid: 5261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,8.5 - parent: 2 - - uid: 5262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 2 - - uid: 5265 - components: - - type: Transform - pos: -15.5,10.5 - parent: 2 - uid: 5282 components: - type: Transform @@ -70218,12 +73449,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-41.5 parent: 2 - - uid: 5619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-1.5 - parent: 2 - uid: 5670 components: - type: Transform @@ -70236,6 +73461,29 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,12.5 parent: 2 + - uid: 5699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-37.5 + parent: 2 + - uid: 5809 + components: + - type: Transform + pos: 79.5,-41.5 + parent: 2 + - uid: 5898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-37.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-37.5 + parent: 2 - uid: 6148 components: - type: Transform @@ -70277,12 +73525,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,19.5 parent: 2 - - uid: 6277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 2 - uid: 6279 components: - type: Transform @@ -70294,6 +73536,12 @@ entities: - type: Transform pos: 35.5,-19.5 parent: 2 + - uid: 6294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-37.5 + parent: 2 - uid: 6299 components: - type: Transform @@ -70306,12 +73554,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-33.5 parent: 2 - - uid: 6340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 2 - uid: 6417 components: - type: Transform @@ -70768,12 +74010,6 @@ entities: - type: Transform pos: 32.5,9.5 parent: 2 - - uid: 8785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 - parent: 2 - uid: 8892 components: - type: Transform @@ -70796,12 +74032,6 @@ entities: - type: Transform pos: -7.5,-53.5 parent: 2 - - uid: 9206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-0.5 - parent: 2 - uid: 9339 components: - type: Transform @@ -70904,17 +74134,17 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-54.5 parent: 2 + - uid: 10005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-37.5 + parent: 2 - uid: 10063 components: - type: Transform pos: 24.5,-36.5 parent: 2 - - uid: 10144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-10.5 - parent: 2 - uid: 10179 components: - type: Transform @@ -71153,12 +74383,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,13.5 parent: 2 - - uid: 11467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 2 - uid: 11576 components: - type: Transform @@ -71350,12 +74574,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-11.5 parent: 2 - - uid: 12214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-9.5 - parent: 2 - uid: 12215 components: - type: Transform @@ -72206,65 +75424,53 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-45.5 parent: 2 - - uid: 16352 + - uid: 16539 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-12.5 + pos: 63.5,-37.5 parent: 2 - - uid: 16353 + - uid: 16543 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-12.5 + pos: 64.5,-37.5 parent: 2 - - uid: 16354 + - uid: 16544 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-12.5 + pos: 70.5,-37.5 parent: 2 - - uid: 16355 + - uid: 16548 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-12.5 + pos: 62.5,-37.5 parent: 2 - - uid: 16356 + - uid: 16551 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-12.5 + pos: 69.5,-37.5 parent: 2 - - uid: 16357 + - uid: 16556 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-12.5 + pos: 71.5,-37.5 parent: 2 - - uid: 16358 + - uid: 16567 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-12.5 + pos: 59.5,-37.5 parent: 2 - - uid: 16359 + - uid: 16573 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-12.5 - parent: 2 - - uid: 16360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-12.5 - parent: 2 - - uid: 16361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-12.5 + pos: 60.5,-37.5 parent: 2 - uid: 16898 components: @@ -72369,53 +75575,17 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-21.5 parent: 2 - - uid: 18006 + - uid: 17683 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-0.5 + pos: 65.5,-37.5 parent: 2 - - uid: 18008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,0.5 - parent: 2 - - uid: 18009 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,1.5 - parent: 2 - - uid: 18010 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,2.5 - parent: 2 - - uid: 18011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,3.5 - parent: 2 - - uid: 18057 + - uid: 17850 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 2 - - uid: 18059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 2 - - uid: 18060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 + pos: 66.5,-37.5 parent: 2 - uid: 18062 components: @@ -72545,12 +75715,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-19.5 parent: 2 - - uid: 18618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 2 - uid: 18619 components: - type: Transform @@ -72623,36 +75787,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-15.5 parent: 2 - - uid: 20293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 2 - - uid: 20294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 2 - - uid: 20295 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 2 - - uid: 20297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 2 - - uid: 20298 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 2 - uid: 20300 components: - type: Transform @@ -73050,18 +76184,6 @@ entities: - type: Transform pos: 10.5,-62.5 parent: 2 - - uid: 20506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-10.5 - parent: 2 - - uid: 20550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-10.5 - parent: 2 - uid: 20619 components: - type: Transform @@ -73151,35 +76273,366 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-41.5 parent: 2 - - uid: 23324 + - uid: 23862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-10.5 + pos: -16.5,-2.5 parent: 2 - - uid: 23329 + - uid: 23864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-10.5 + pos: -16.5,-0.5 parent: 2 - - uid: 23333 + - uid: 23865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-10.5 + pos: -16.5,0.5 parent: 2 - - uid: 23335 + - uid: 23866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-10.5 + pos: -16.5,1.5 parent: 2 - - uid: 23336 + - uid: 23867 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 23868 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 23869 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 23870 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 23871 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 23873 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 23874 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 23875 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 23876 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-10.5 + pos: -15.5,11.5 + parent: 2 + - uid: 23879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - uid: 23880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 23881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 2 + - uid: 23882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 23883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + - uid: 23884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - uid: 23885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + - uid: 23886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 2 + - uid: 23887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 + - uid: 23888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - uid: 23889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 2 + - uid: 23890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-1.5 + parent: 2 + - uid: 23891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 2 + - uid: 23894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 + - uid: 23895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 2 + - uid: 23896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 2 + - uid: 23897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-3.5 + parent: 2 + - uid: 23898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 2 + - uid: 23899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 2 + - uid: 23900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-3.5 + parent: 2 + - uid: 23901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-3.5 + parent: 2 + - uid: 23902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-3.5 + parent: 2 + - uid: 23903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-3.5 + parent: 2 + - uid: 23904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-3.5 + parent: 2 + - uid: 23905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-3.5 + parent: 2 + - uid: 23906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-3.5 + parent: 2 + - uid: 23907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-2.5 + parent: 2 + - uid: 23908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-2.5 + parent: 2 + - uid: 23909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-2.5 + parent: 2 + - uid: 23910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 2 + - uid: 23911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 2 + - uid: 23913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 2 + - uid: 23914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-2.5 + parent: 2 + - uid: 23917 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 23918 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 23919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-2.5 + parent: 2 + - uid: 23920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-2.5 + parent: 2 + - uid: 23925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-9.5 + parent: 2 + - uid: 23926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-8.5 + parent: 2 + - uid: 23927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-7.5 + parent: 2 + - uid: 23928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 2 + - uid: 23929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 2 + - uid: 23930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 2 + - uid: 23931 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 23932 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 24312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,7.5 + parent: 2 + - uid: 24469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-16.5 + parent: 2 + - uid: 24470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 2 + - uid: 24472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 2 + - uid: 24473 + components: + - type: Transform + pos: -20.5,-17.5 parent: 2 - proto: DisposalRouter entities: @@ -73201,14 +76654,6 @@ entities: - type: DisposalRouter tags: - Trash - - uid: 7201 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 2 - - type: DisposalRouter - tags: - - Security - uid: 7869 components: - type: Transform @@ -73270,6 +76715,14 @@ entities: - type: DisposalRouter tags: - Cargo + - uid: 23863 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - type: DisposalRouter + tags: + - Security - proto: DisposalRouterFlipped entities: - uid: 2684 @@ -73383,14 +76836,6 @@ entities: parent: 2 - type: DisposalTagger tag: Trash - - uid: 8300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 2 - - type: DisposalTagger - tag: Trash - uid: 8617 components: - type: Transform @@ -73469,11 +76914,34 @@ entities: parent: 2 - type: DisposalTagger tag: Trash - - uid: 20505 + - uid: 23893 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-10.5 + pos: -21.5,-3.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 24112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 24310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,7.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 24475 + components: + - type: Transform + pos: -20.5,-18.5 parent: 2 - type: DisposalTagger tag: Trash @@ -73485,11 +76953,11 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,3.5 parent: 2 - - uid: 689 + - uid: 585 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-14.5 + pos: 79.5,-42.5 parent: 2 - uid: 737 components: @@ -73503,6 +76971,12 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-41.5 parent: 2 + - uid: 2722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 2 - uid: 3050 components: - type: Transform @@ -73570,12 +77044,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-22.5 parent: 2 - - uid: 5234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,2.5 - parent: 2 - uid: 5681 components: - type: Transform @@ -73657,12 +77125,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-45.5 parent: 2 - - uid: 9134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-11.5 - parent: 2 - uid: 9790 components: - type: Transform @@ -73745,23 +77207,17 @@ entities: - type: Transform pos: -35.5,-24.5 parent: 2 - - uid: 16029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 2 - uid: 16126 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,15.5 parent: 2 - - uid: 16531 + - uid: 16564 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-12.5 + pos: 58.5,-37.5 parent: 2 - uid: 16653 components: @@ -73822,11 +77278,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-34.5 parent: 2 - - uid: 18669 - components: - - type: Transform - pos: -22.5,0.5 - parent: 2 - uid: 18854 components: - type: Transform @@ -73874,13 +77325,42 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-43.5 parent: 2 -- proto: DisposalUnit - entities: - - uid: 201 + - uid: 23861 components: - type: Transform - pos: -24.5,2.5 + rot: 1.5707963267948966 rad + pos: -30.5,-1.5 parent: 2 + - uid: 23922 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 23923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-10.5 + parent: 2 + - uid: 23924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-4.5 + parent: 2 + - uid: 24113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 2 + - uid: 24313 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 +- proto: DisposalUnit + entities: - uid: 815 components: - type: Transform @@ -73891,11 +77371,31 @@ entities: - type: Transform pos: -14.5,17.5 parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 - uid: 1394 components: - type: Transform pos: -1.5,16.5 parent: 2 + - uid: 1815 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + pos: 79.5,-42.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 - uid: 2871 components: - type: Transform @@ -73941,16 +77441,16 @@ entities: - type: Transform pos: -31.5,-51.5 parent: 2 - - uid: 4538 - components: - - type: Transform - pos: -39.5,-14.5 - parent: 2 - uid: 4731 components: - type: Transform pos: 29.5,-53.5 parent: 2 + - uid: 4972 + components: + - type: Transform + pos: 58.5,-37.5 + parent: 2 - uid: 5000 components: - type: Transform @@ -73961,11 +77461,6 @@ entities: - type: Transform pos: 25.5,5.5 parent: 2 - - uid: 5531 - components: - - type: Transform - pos: -50.5,-12.5 - parent: 2 - uid: 5834 components: - type: Transform @@ -74031,6 +77526,16 @@ entities: - type: Transform pos: 11.5,22.5 parent: 2 + - uid: 12132 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 12151 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 - uid: 12613 components: - type: Transform @@ -74096,11 +77601,6 @@ entities: - type: Transform pos: -35.5,-43.5 parent: 2 - - uid: 16237 - components: - - type: Transform - pos: -26.5,-2.5 - parent: 2 - uid: 16903 components: - type: Transform @@ -74116,11 +77616,6 @@ entities: - type: Transform pos: 8.5,-63.5 parent: 2 - - uid: 21178 - components: - - type: Transform - pos: -27.5,-11.5 - parent: 2 - uid: 21367 components: - type: Transform @@ -74136,6 +77631,11 @@ entities: - type: Transform pos: -26.5,-38.5 parent: 2 + - uid: 23838 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 - proto: DisposalYJunction entities: - uid: 4786 @@ -74156,12 +77656,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-19.5 parent: 2 - - uid: 12720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 2 - uid: 14723 components: - type: Transform @@ -74180,6 +77674,12 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-31.5 parent: 2 + - uid: 23916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 2 - proto: DogBed entities: - uid: 7547 @@ -74202,6 +77702,11 @@ entities: - type: Transform pos: -37.5,-38.5 parent: 2 + - uid: 12522 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 - uid: 13041 components: - type: Transform @@ -74217,11 +77722,6 @@ entities: - type: Transform pos: -47.5,-24.5 parent: 2 - - uid: 17838 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 2 - proto: DoorElectronics entities: - uid: 10846 @@ -74278,10 +77778,10 @@ entities: parent: 2 - proto: DresserHeadOfSecurityFilled entities: - - uid: 814 + - uid: 11146 components: - type: Transform - pos: -21.5,12.5 + pos: -45.5,3.5 parent: 2 - proto: DresserQuarterMasterFilled entities: @@ -74299,10 +77799,10 @@ entities: parent: 2 - proto: DresserWardenFilled entities: - - uid: 3145 + - uid: 11887 components: - type: Transform - pos: -22.5,-3.5 + pos: -22.5,-6.5 parent: 2 - proto: DrinkBeerBottleFull entities: @@ -74476,10 +77976,10 @@ entities: parent: 2 - proto: DrinkJuiceOrangeCarton entities: - - uid: 2551 + - uid: 11322 components: - type: Transform - pos: -20.543522,10.757981 + pos: -45.731575,2.8472967 parent: 2 - proto: DrinkLemonadeGlass entities: @@ -74558,32 +78058,29 @@ entities: - type: Transform pos: 18.653496,8.469813 parent: 2 +- proto: DrinkMugHeart + entities: + - uid: 24118 + components: + - type: Transform + pos: 20.716234,-10.450943 + parent: 2 - proto: DrinkMugMetal entities: - - uid: 205 + - uid: 10470 components: - type: Transform - pos: -40.672844,-3.2145777 + pos: -30.710035,15.736787 parent: 2 - - uid: 10317 + - uid: 10484 components: - type: Transform - pos: -40.28724,-3.2250013 + pos: -30.526487,15.540961 parent: 2 - - uid: 13014 + - uid: 10488 components: - type: Transform - pos: -40.516518,-3.4334793 - parent: 2 - - uid: 21451 - components: - - type: Transform - pos: 21.160868,-6.4974823 - parent: 2 - - uid: 21452 - components: - - type: Transform - pos: 21.004618,-6.2318573 + pos: -30.355173,15.736787 parent: 2 - proto: DrinkMugRainbow entities: @@ -74592,13 +78089,6 @@ entities: - type: Transform pos: 38.63713,-59.378235 parent: 2 -- proto: DrinkMugRed - entities: - - uid: 13344 - components: - - type: Transform - pos: -27.239447,0.50863326 - parent: 2 - proto: DrinkRoyRogersGlass entities: - uid: 4 @@ -74619,6 +78109,11 @@ entities: rot: -1.5707963267948966 rad pos: 45.393734,11.449828 parent: 2 + - uid: 11329 + components: + - type: Transform + pos: -45.584732,2.492363 + parent: 2 - uid: 18819 components: - type: Transform @@ -74629,11 +78124,6 @@ entities: - type: Transform pos: -6.7736864,17.657902 parent: 2 - - uid: 23213 - components: - - type: Transform - pos: -20.434305,10.842014 - parent: 2 - proto: DrinkShotGlass entities: - uid: 6 @@ -74641,16 +78131,6 @@ entities: - type: Transform pos: 0.40104163,24.025158 parent: 2 - - uid: 1766 - components: - - type: Transform - pos: 52.977722,-39.23201 - parent: 2 - - uid: 1806 - components: - - type: Transform - pos: 53.98864,-39.388367 - parent: 2 - uid: 3041 components: - type: Transform @@ -74688,32 +78168,57 @@ entities: parent: 2 - proto: DrinkTeacup entities: - - uid: 359 + - uid: 1364 components: - type: Transform - pos: 19.428297,-9.307767 + pos: 19.92359,-6.225089 parent: 2 - - uid: 9369 + - uid: 24055 components: - type: Transform - pos: 20.50759,-10.36513 + pos: 18.582558,-10.375413 parent: 2 - - uid: 12889 + - uid: 24056 components: - type: Transform - pos: 19.365797,-10.370267 + pos: 18.660683,-9.359788 parent: 2 - - uid: 22638 + - uid: 24078 components: - type: Transform - pos: 20.50759,-9.255755 + pos: 20.332558,-9.328538 + parent: 2 + - uid: 24079 + components: + - type: Transform + pos: 20.332558,-10.422288 + parent: 2 + - uid: 24084 + components: + - type: Transform + pos: 19.89234,-6.553214 + parent: 2 + - uid: 24085 + components: + - type: Transform + pos: 19.907965,-6.381339 + parent: 2 + - uid: 24087 + components: + - type: Transform + pos: 19.457558,-10.391038 + parent: 2 + - uid: 24088 + components: + - type: Transform + pos: 19.457558,-9.328538 parent: 2 - proto: DrinkTeapot entities: - - uid: 12536 + - uid: 1388 components: - type: Transform - pos: 20.03884,-9.787005 + pos: 19.426308,-9.812913 parent: 2 - proto: DrinkTonicWaterCan entities: @@ -74731,10 +78236,27 @@ entities: parent: 2 - proto: DrinkVodkaBottleFull entities: - - uid: 2377 + - uid: 11328 components: - type: Transform - pos: -20.329561,10.8367405 + pos: -45.35224,2.9207315 + parent: 2 +- proto: DrinkWaterBottleFull + entities: + - uid: 24152 + components: + - type: Transform + pos: -30.569698,17.354357 + parent: 2 + - uid: 24218 + components: + - type: Transform + pos: -30.835323,17.338732 + parent: 2 + - uid: 24219 + components: + - type: Transform + pos: -30.694698,17.401232 parent: 2 - proto: DrinkWaterCup entities: @@ -74748,6 +78270,17 @@ entities: - type: Transform pos: -0.67200494,12.711606 parent: 2 + - uid: 16489 + components: + - type: Transform + pos: -50.947662,12.045385 + parent: 2 + - uid: 16490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.4616,11.653734 + parent: 2 - proto: DrinkWaterJug entities: - uid: 13184 @@ -74797,26 +78330,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 1154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-1.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 1721 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-10.5 - parent: 2 - - uid: 2189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-6.5 - parent: 2 - uid: 4915 components: - type: Transform @@ -74833,14 +78346,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 5680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,16.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 6481 components: - type: Transform @@ -74923,12 +78428,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 12124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-11.5 - parent: 2 - uid: 12129 components: - type: Transform @@ -74937,11 +78436,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 12245 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 2 - uid: 12379 components: - type: Transform @@ -74955,12 +78449,6 @@ entities: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 14438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,5.5 - parent: 2 - type: Battery startingCharge: 30000 - uid: 16691 @@ -75054,21 +78542,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 16720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,10.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16722 - components: - - type: Transform - pos: -27.5,0.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 16727 components: - type: Transform @@ -75147,28 +78620,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 16755 - components: - - type: Transform - pos: -51.5,-11.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16757 - components: - - type: Transform - pos: -67.5,-14.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-10.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 16769 components: - type: Transform @@ -75208,18 +78659,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 18254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,11.5 - parent: 2 - - uid: 18346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 2 - uid: 18371 components: - type: Transform @@ -75234,6 +78673,78 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-17.5 parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 18903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-41.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 18904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-43.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 18905 + components: + - type: Transform + pos: 91.5,-44.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 18916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,-40.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 18921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-43.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 18922 + components: + - type: Transform + pos: 86.5,-40.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 18923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,-42.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 18935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-43.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 18936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-42.5 + parent: 2 + - type: Battery + startingCharge: 30000 - uid: 19286 components: - type: Transform @@ -75241,30 +78752,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 20504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,2.5 - parent: 2 - - uid: 20522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,3.5 - parent: 2 - - uid: 20525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-2.5 - parent: 2 - - uid: 20547 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,2.5 - parent: 2 - uid: 21379 components: - type: Transform @@ -75340,6 +78827,8 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-15.5 parent: 2 + - type: Battery + startingCharge: 30000 - uid: 22193 components: - type: Transform @@ -75465,14 +78954,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 22209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-15.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 22288 components: - type: Transform @@ -75481,36 +78962,167 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 22608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-5.5 - parent: 2 - - uid: 22612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,10.5 - parent: 2 - - uid: 23328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-1.5 - parent: 2 - uid: 23507 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-23.5 parent: 2 + - type: Battery + startingCharge: 30000 - uid: 23508 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-19.5 parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-18.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-7.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-4.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-3.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23755 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23758 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23759 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,2.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,2.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,10.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,11.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23764 + components: + - type: Transform + pos: -28.5,15.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,5.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23830 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 23831 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 24714 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - type: Battery + startingCharge: 30000 - proto: EmergencyMedipen entities: - uid: 9502 @@ -75533,11 +79145,6 @@ entities: parent: 2 - proto: EmergencyRollerBed entities: - - uid: 1880 - components: - - type: Transform - pos: 52.441402,-37.397106 - parent: 2 - uid: 14763 components: - type: Transform @@ -75548,32 +79155,6 @@ entities: - type: Transform pos: -35.5,-28.5 parent: 2 - - uid: 18764 - components: - - type: Transform - pos: 75.49805,-44.26112 - parent: 2 -- proto: EvidenceMarkerOne - entities: - - uid: 1842 - components: - - type: Transform - pos: 53.401356,-41.193207 - parent: 2 -- proto: EvidenceMarkerThree - entities: - - uid: 2203 - components: - - type: Transform - pos: 50.5562,-39.54623 - parent: 2 -- proto: EvidenceMarkerTwo - entities: - - uid: 2170 - components: - - type: Transform - pos: 52.380016,-39.285633 - parent: 2 - proto: ExosuitFabricator entities: - uid: 8462 @@ -75615,11 +79196,6 @@ entities: - type: Transform pos: -18.5,-13.5 parent: 2 - - uid: 5429 - components: - - type: Transform - pos: -22.5,15.5 - parent: 2 - uid: 5833 components: - type: Transform @@ -75642,21 +79218,11 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-13.5 parent: 2 - - uid: 12024 - components: - - type: Transform - pos: -31.5,-7.5 - parent: 2 - uid: 13802 components: - type: Transform pos: -40.5,-35.5 parent: 2 - - uid: 17619 - components: - - type: Transform - pos: -23.5,-2.5 - parent: 2 - uid: 17620 components: - type: Transform @@ -75755,12 +79321,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-46.5 parent: 2 - - uid: 22722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,3.5 - parent: 2 - uid: 22734 components: - type: Transform @@ -75779,6 +79339,22 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,25.5 parent: 2 + - uid: 24305 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - uid: 24306 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 24824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 2 - proto: FaxMachineBase entities: - uid: 36 @@ -75788,13 +79364,6 @@ entities: parent: 2 - type: FaxMachine name: Janitor - - uid: 626 - components: - - type: Transform - pos: -27.5,4.5 - parent: 2 - - type: FaxMachine - name: Security - uid: 1670 components: - type: Transform @@ -75879,6 +79448,20 @@ entities: parent: 2 - type: FaxMachine name: Bridge + - uid: 12245 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - type: FaxMachine + name: Security + - uid: 12256 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - type: FaxMachine + name: Warden - proto: FaxMachineCaptain entities: - uid: 4161 @@ -75930,6 +79513,11 @@ entities: - type: Transform pos: -40.5,-55.5 parent: 2 + - uid: 12067 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 - uid: 14148 components: - type: Transform @@ -75945,6 +79533,11 @@ entities: - type: Transform pos: -26.5,-51.5 parent: 2 + - uid: 24481 + components: + - type: Transform + pos: 53.5,-39.5 + parent: 2 - proto: filingCabinetRandom entities: - uid: 6355 @@ -75957,6 +79550,11 @@ entities: - type: Transform pos: -16.21824,-46.39948 parent: 2 + - uid: 12328 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 - proto: filingCabinetTallRandom entities: - uid: 8664 @@ -76196,7 +79794,6 @@ entities: - 15324 - 4559 - 2011 - - 15672 - 19006 - 19008 - 15301 @@ -76349,9 +79946,10 @@ entities: devices: - 5390 - 5467 - - 14382 - - 14368 - - 19001 + - 23812 + - 23811 + - 23810 + - 24317 - uid: 16314 components: - type: Transform @@ -76417,31 +80015,6 @@ entities: - 15275 - 18878 - 18879 - - uid: 19007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 2 - - type: DeviceList - devices: - - 14382 - - 14368 - - 19001 - - 19008 - - 19006 - - 15672 - - uid: 20476 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 2 - - type: DeviceList - devices: - - 11574 - - 11591 - - 1192 - - 20477 - uid: 21082 components: - type: Transform @@ -76532,12 +80105,30 @@ entities: - 4961 - 5024 - 4976 -- proto: FireAxeCabinetFilled - entities: - - uid: 2521 + - uid: 24109 components: - type: Transform - pos: -10.5,-0.5 + rot: 3.141592653589793 rad + pos: -19.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 24034 + - 19643 + - 19647 + - 23810 + - 23811 + - 23812 + - 19008 + - 19006 + - 959 +- proto: FireAxeCabinetFilled + entities: + - uid: 1897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 parent: 2 - uid: 9848 components: @@ -76558,27 +80149,6 @@ entities: parent: 2 - proto: FirelockEdge entities: - - uid: 1176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19627 - - 23916 - - uid: 1192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20476 - - 17615 - - 19627 - uid: 1548 components: - type: Transform @@ -76606,16 +80176,6 @@ entities: deviceLists: - 13846 - 58 - - uid: 2211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19627 - - 23916 - uid: 2516 components: - type: Transform @@ -76675,32 +80235,12 @@ entities: - 17348 - 17349 - 17351 - - uid: 11617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19627 - - 23916 - uid: 12211 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,27.5 parent: 2 - - uid: 12299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19627 - - 23916 - uid: 13068 components: - type: Transform @@ -76779,16 +80319,65 @@ entities: - 15424 - 13654 - 13342 - - uid: 20477 + - uid: 19642 components: - type: Transform - pos: -30.5,-6.5 + pos: -29.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 20476 - - 17615 - - 19627 + - 1931 + - 24130 + - uid: 19643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1931 + - 24035 + - 24109 + - uid: 19644 + components: + - type: Transform + pos: -27.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1931 + - 24130 + - uid: 19645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1931 + - 24130 + - uid: 19646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1931 + - 24130 + - uid: 19647 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1931 + - 24035 + - 24109 - proto: FirelockGlass entities: - uid: 115 @@ -76810,11 +80399,28 @@ entities: - 22029 - 22432 - 22439 + - uid: 327 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24601 - uid: 431 components: - type: Transform pos: 41.5,-57.5 parent: 2 + - uid: 959 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24035 + - 24109 - uid: 1284 components: - type: Transform @@ -76957,6 +80563,11 @@ entities: - 3820 - 15421 - 15272 + - uid: 3005 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 - uid: 3985 components: - type: Transform @@ -77303,26 +80914,6 @@ entities: deviceLists: - 3687 - 14943 - - uid: 11574 - components: - - type: Transform - pos: -20.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20476 - - 17615 - - 10102 - - uid: 11591 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20476 - - 17615 - - 10102 - uid: 12056 components: - type: Transform @@ -77402,11 +80993,6 @@ entities: - type: Transform pos: -3.5,24.5 parent: 2 - - uid: 13120 - components: - - type: Transform - pos: -24.5,20.5 - parent: 2 - uid: 13236 components: - type: Transform @@ -77454,28 +81040,6 @@ entities: deviceLists: - 13657 - 14371 - - uid: 14368 - components: - - type: Transform - pos: -15.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19007 - - 19009 - - 16078 - - 8606 - - uid: 14382 - components: - - type: Transform - pos: -14.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19007 - - 19009 - - 16078 - - 8606 - uid: 14931 components: - type: Transform @@ -77586,16 +81150,6 @@ entities: - 16062 - 3315 - 2276 - - uid: 15035 - components: - - type: Transform - pos: -35.5,-19.5 - parent: 2 - - uid: 15044 - components: - - type: Transform - pos: -35.5,-20.5 - parent: 2 - uid: 15143 components: - type: Transform @@ -78079,7 +81633,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 81 - 13796 - 3816 - 14984 @@ -78090,7 +81643,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 81 - 13796 - 3816 - 14984 @@ -78195,17 +81747,6 @@ entities: - 14004 - 14047 - 6790 - - uid: 15672 - components: - - type: Transform - pos: -17.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19007 - - 19009 - - 15391 - - 10102 - uid: 15860 components: - type: Transform @@ -78292,6 +81833,36 @@ entities: - 16317 - 15163 - 58 + - uid: 16413 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 + - uid: 16414 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 16432 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 16433 + components: + - type: Transform + pos: -45.5,21.5 + parent: 2 + - uid: 16448 + components: + - type: Transform + pos: -51.5,2.5 + parent: 2 + - uid: 16449 + components: + - type: Transform + pos: -52.5,2.5 + parent: 2 - uid: 16950 components: - type: Transform @@ -78366,17 +81937,6 @@ entities: deviceLists: - 17349 - 17348 - - uid: 19001 - components: - - type: Transform - pos: -16.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19007 - - 19009 - - 16078 - - 8606 - uid: 19006 components: - type: Transform @@ -78384,10 +81944,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 19007 - - 19009 - 15391 - 10102 + - 24035 + - 24109 - uid: 19008 components: - type: Transform @@ -78395,10 +81955,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 19007 - - 19009 - 15391 - 10102 + - 24035 + - 24109 - uid: 20277 components: - type: Transform @@ -78505,6 +82065,72 @@ entities: - 22029 - 22438 - 22439 + - uid: 23810 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24035 + - 24109 + - 16078 + - 8606 + - uid: 23811 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24035 + - 24109 + - 16078 + - 8606 + - uid: 23812 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24035 + - 24109 + - 16078 + - 8606 + - uid: 24447 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 2 + - uid: 24467 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24601 + - uid: 24826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24035 + - 2196 + - uid: 24827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24035 + - 2196 - proto: Fireplace entities: - uid: 6141 @@ -78529,11 +82155,6 @@ entities: - type: Transform pos: -29.552534,-21.321272 parent: 2 - - uid: 13100 - components: - - type: Transform - pos: -38.657784,-14.248901 - parent: 2 - uid: 15075 components: - type: Transform @@ -78544,89 +82165,28 @@ entities: - type: Transform pos: 2.6579933,-57.47214 parent: 2 - - uid: 16761 - components: - - type: Transform - pos: -52.476463,-13.445257 - parent: 2 - uid: 16762 components: - type: Transform pos: -11.40432,-23.46709 parent: 2 - - type: HandheldLight - toggleActionEntity: 5704 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 5704 - - type: ActionsContainer - uid: 19898 components: - type: Transform pos: 45.4472,-50.26539 parent: 2 - - type: HandheldLight - toggleActionEntity: 19899 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 19899 - - type: ActionsContainer - proto: FlashlightSeclite entities: - - uid: 492 - components: - - type: Transform - pos: -23.535683,15.622428 - parent: 2 - - type: HandheldLight - toggleActionEntity: 494 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 494 - - type: ActionsContainer - uid: 15576 components: - type: Transform pos: 64.553955,-73.50326 parent: 2 - - type: HandheldLight - toggleActionEntity: 20759 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 20759 - - type: ActionsContainer + - uid: 23317 + components: + - type: Transform + pos: -46.475735,-3.9433765 + parent: 2 - proto: FlippoLighter entities: - uid: 20241 @@ -78641,20 +82201,6 @@ entities: - type: Transform pos: -9.483673,-93.49975 parent: 2 - - type: HandheldLight - toggleActionEntity: 121 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 121 - - type: ActionsContainer - proto: FloorDrain entities: - uid: 1143 @@ -78664,13 +82210,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 2243 - components: - - type: Transform - pos: -49.5,3.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 2688 components: - type: Transform @@ -78738,6 +82277,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 19638 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: FloorTileItemBar entities: - uid: 7398 @@ -78756,6 +82302,78 @@ entities: parent: 2 - type: Stack count: 30 +- proto: FloorWaterEntity + entities: + - uid: 10815 + components: + - type: Transform + pos: 90.5,-46.5 + parent: 2 + - uid: 14514 + components: + - type: Transform + pos: 89.5,-46.5 + parent: 2 + - uid: 16602 + components: + - type: Transform + pos: 90.5,-38.5 + parent: 2 + - uid: 16603 + components: + - type: Transform + pos: 91.5,-46.5 + parent: 2 + - uid: 16604 + components: + - type: Transform + pos: 94.5,-46.5 + parent: 2 + - uid: 16606 + components: + - type: Transform + pos: 93.5,-46.5 + parent: 2 + - uid: 16761 + components: + - type: Transform + pos: 92.5,-38.5 + parent: 2 + - uid: 16786 + components: + - type: Transform + pos: 91.5,-38.5 + parent: 2 + - uid: 16790 + components: + - type: Transform + pos: 89.5,-38.5 + parent: 2 + - uid: 17008 + components: + - type: Transform + pos: 92.5,-46.5 + parent: 2 + - uid: 17017 + components: + - type: Transform + pos: 94.5,-38.5 + parent: 2 + - uid: 17098 + components: + - type: Transform + pos: 93.5,-38.5 + parent: 2 + - uid: 17099 + components: + - type: Transform + pos: 88.5,-38.5 + parent: 2 + - uid: 17135 + components: + - type: Transform + pos: 88.5,-46.5 + parent: 2 - proto: FloraRockSolid entities: - uid: 19552 @@ -78770,6 +82388,12 @@ entities: parent: 2 - proto: FloraTree entities: + - uid: 313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.943093,7.5910387 + parent: 2 - uid: 4145 components: - type: Transform @@ -78853,11 +82477,6 @@ entities: parent: 2 - proto: FolderSpawner entities: - - uid: 1181 - components: - - type: Transform - pos: -27.58403,0.63008094 - parent: 2 - uid: 1382 components: - type: Transform @@ -78923,11 +82542,6 @@ entities: - type: Transform pos: 28.405712,10.798362 parent: 2 - - uid: 16142 - components: - - type: Transform - pos: -27.376095,3.9398522 - parent: 2 - proto: FoodBakedCookieOatmeal entities: - uid: 19237 @@ -78983,10 +82597,10 @@ entities: parent: 2 - proto: FoodBoxDonut entities: - - uid: 22620 + - uid: 12214 components: - type: Transform - pos: -27.472397,-6.8758383 + pos: -36.509846,-4.371452 parent: 2 - proto: FoodBoxPizzaFilled entities: @@ -79038,22 +82652,27 @@ entities: parent: 2 - proto: FoodCondimentPacketAstrotame entities: - - uid: 6714 + - uid: 24057 components: - type: Transform - pos: 20.47634,-9.86513 + pos: 21.68034,-6.248911 + parent: 2 + - uid: 24641 + components: + - type: Transform + pos: 21.747694,-6.4297676 parent: 2 - proto: FoodCondimentPacketSugar entities: - - uid: 6652 - components: - - type: Transform - pos: 20.585714,-9.67763 - parent: 2 - uid: 7791 components: - type: Transform - pos: 19.398214,-9.818255 + pos: 21.33659,-6.217661 + parent: 2 + - uid: 24636 + components: + - type: Transform + pos: 21.419569,-6.3672676 parent: 2 - proto: FoodContainerEgg entities: @@ -79149,6 +82768,18 @@ entities: - type: Transform pos: 6.639681,-27.390116 parent: 2 +- proto: FoodPlatePlastic + entities: + - uid: 19603 + components: + - type: Transform + pos: -29.404778,12.830984 + parent: 2 + - uid: 19604 + components: + - type: Transform + pos: -30.495243,9.725929 + parent: 2 - proto: FoodPlateSmallPlastic entities: - uid: 6443 @@ -79168,7 +82799,7 @@ entities: - uid: 600 components: - type: Transform - pos: -10.466447,17.588402 + pos: -18.77708,4.4004307 parent: 2 - uid: 5316 components: @@ -79182,10 +82813,10 @@ entities: - type: Transform pos: -8.667622,-35.44696 parent: 2 - - uid: 20488 + - uid: 19602 components: - type: Transform - pos: -36.375584,-2.5167723 + pos: -29.951923,12.518267 parent: 2 - proto: FoodShakerSalt entities: @@ -79194,10 +82825,10 @@ entities: - type: Transform pos: -8.459184,-35.530354 parent: 2 - - uid: 20490 + - uid: 19599 components: - type: Transform - pos: -36.64655,-2.5167723 + pos: -30.139519,12.674625 parent: 2 - proto: FoodSnackSus entities: @@ -79208,11 +82839,6 @@ entities: parent: 2 - proto: FoodTinBeansTrash entities: - - uid: 20051 - components: - - type: Transform - pos: 72.542496,-40.466583 - parent: 2 - uid: 20054 components: - type: Transform @@ -79237,11 +82863,6 @@ entities: - type: Transform pos: -0.63953733,-29.354218 parent: 2 - - uid: 20052 - components: - - type: Transform - pos: 76.46632,-46.470753 - parent: 2 - uid: 21603 components: - type: Transform @@ -79276,6 +82897,11 @@ entities: - type: Transform pos: 14.2359705,-6.420357 parent: 2 + - uid: 16494 + components: + - type: Transform + pos: -50.400505,12.657339 + parent: 2 - proto: FoodTinPeachesTrash entities: - uid: 13161 @@ -79283,6 +82909,11 @@ entities: - type: Transform pos: -0.35320318,-29.193445 parent: 2 + - uid: 16493 + components: + - type: Transform + pos: -50.841026,12.779732 + parent: 2 - uid: 20055 components: - type: Transform @@ -79297,15 +82928,15 @@ entities: parent: 2 - proto: ForkPlastic entities: - - uid: 2091 + - uid: 19609 components: - type: Transform - pos: -36.55324,-2.1406279 + pos: -30.95242,15.614166 parent: 2 - - uid: 10779 + - uid: 19610 components: - type: Transform - pos: -36.334385,-2.1093564 + pos: -30.99932,15.535988 parent: 2 - uid: 21675 components: @@ -79322,17 +82953,17 @@ entities: parent: 2 - proto: GameMasterCircuitBoard entities: - - uid: 16465 + - uid: 16757 components: - type: Transform - pos: -63.581856,-16.131536 + pos: 67.912865,-41.277626 parent: 2 - proto: GasAnalyzer entities: - uid: 2089 components: - type: Transform - pos: -13.562385,-8.409812 + pos: -12.508708,-1.3879147 parent: 2 - proto: GasFilter entities: @@ -79354,32 +82985,24 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1588 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1597 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 2 - - uid: 1599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 - parent: 2 - - uid: 1600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,0.5 - parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4512 components: - type: Transform @@ -79429,6 +83052,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 16444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,18.5 + parent: 2 - uid: 23455 components: - type: Transform @@ -79446,11 +83075,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16423 - components: - - type: Transform - pos: -53.5,-12.5 - parent: 2 - proto: GasOutletInjector entities: - uid: 501 @@ -79564,56 +83188,16 @@ entities: - type: Transform pos: 6.5,2.5 parent: 2 - - uid: 16419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-13.5 - parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16425 - components: - - type: Transform - pos: -53.5,-11.5 - parent: 2 - - uid: 16426 - components: - - type: Transform - pos: -55.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16444 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16445 + color: '#990000FF' + - uid: 17575 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,-12.5 + pos: 76.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-15.5 - parent: 2 + color: '#990000FF' - uid: 18174 components: - type: Transform @@ -79645,14 +83229,6 @@ entities: color: '#990000FF' - proto: GasPipeBend entities: - - uid: 645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1543 components: - type: Transform @@ -79674,7 +83250,7 @@ entities: pos: -9.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1650 components: - type: Transform @@ -79781,29 +83357,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2762 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3108 components: - type: Transform @@ -79857,13 +83410,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4439 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4551 components: - type: Transform @@ -79872,13 +83418,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4572 - components: - - type: Transform - pos: -33.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4687 components: - type: Transform @@ -79901,13 +83440,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4879 - components: - - type: Transform - pos: -34.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5007 components: - type: Transform @@ -79916,22 +83448,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5388 + - uid: 5163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,11.5 + pos: -3.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#947507FF' - uid: 5473 components: - type: Transform @@ -80015,13 +83538,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7552 - components: - - type: Transform - pos: -22.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7574 components: - type: Transform @@ -80185,6 +83701,8 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10211 components: - type: Transform @@ -80224,14 +83742,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10775 components: - type: Transform @@ -80240,6 +83750,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10872 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10976 components: - type: Transform @@ -80558,38 +84075,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14672 components: - type: Transform @@ -80629,14 +84114,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14894 components: - type: Transform @@ -80652,14 +84129,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15006 components: - type: Transform @@ -80776,35 +84245,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16427 + - uid: 16445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-12.5 + pos: -53.5,18.5 parent: 2 - uid: 17291 components: @@ -80869,6 +84313,98 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 18224 + components: + - type: Transform + pos: 78.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18544 + components: + - type: Transform + pos: 79.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18714 + components: + - type: Transform + pos: 74.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19553 + components: + - type: Transform + pos: 43.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19981 components: - type: Transform @@ -81197,13 +84733,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 23456 - components: - - type: Transform - pos: -3.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 23457 components: - type: Transform @@ -81280,24 +84809,192 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 23828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23851 + - uid: 23829 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-7.5 + pos: 16.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 23984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24101 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24160 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24230 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24250 + components: + - type: Transform + pos: -39.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24614 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeFourway entities: + - uid: 1558 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1566 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1655 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4331 components: - type: Transform @@ -81319,13 +85016,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6913 - components: - - type: Transform - pos: -24.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8004 components: - type: Transform @@ -81417,13 +85107,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14451 - components: - - type: Transform - pos: -26.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14461 components: - type: Transform @@ -81431,27 +85114,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14557 - components: - - type: Transform - pos: -24.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14558 - components: - - type: Transform - pos: -26.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14626 - components: - - type: Transform - pos: -24.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15091 components: - type: Transform @@ -81473,13 +85135,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16433 - components: - - type: Transform - pos: -62.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 17336 components: - type: Transform @@ -81487,41 +85142,76 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 23766 + - uid: 18668 components: - type: Transform - pos: -24.5,-9.5 + pos: 79.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23976 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23988 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23998 + components: + - type: Transform + pos: -44.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 23767 + - uid: 24090 components: - type: Transform - pos: -26.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23805 - components: - - type: Transform - pos: -26.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23841 - components: - - type: Transform - pos: -43.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23878 - components: - - type: Transform - pos: -44.5,4.5 + pos: -25.5,5.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 24138 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24205 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24247 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24248 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24255 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeSensor entities: - uid: 10164 @@ -81556,20 +85246,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 9725 - components: - - type: MetaData - name: gas pipe sensor (AI Satellite) - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-12.5 - parent: 2 - - type: Label - currentLabel: AI Satellite - - type: AtmosPipeColor - color: '#03FCD3FF' - - type: NameModifier - baseName: gas pipe sensor - proto: GasPipeSensorTEGCold entities: - uid: 21319 @@ -81612,11 +85288,11 @@ entities: - uid: 43 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-14.5 + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 70 components: - type: Transform @@ -81639,14 +85315,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 128 components: - type: Transform @@ -81655,14 +85323,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 241 components: - type: Transform @@ -81684,22 +85344,6 @@ entities: - type: Transform pos: 8.5,3.5 parent: 2 - - uid: 372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 424 components: - type: Transform @@ -81731,6 +85375,22 @@ entities: - type: Transform pos: 10.5,2.5 parent: 2 + - uid: 552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 557 components: - type: Transform @@ -81738,6 +85398,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 625 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 633 components: - type: Transform @@ -81762,14 +85429,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 700 components: - type: Transform @@ -81785,6 +85444,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 733 components: - type: Transform @@ -81882,19 +85549,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1086 + - uid: 1157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-1.5 + pos: -15.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -81912,13 +85570,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1566 + - uid: 1383 components: - type: Transform - pos: -9.5,-2.5 + rot: 3.141592653589793 rad + pos: -25.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 1441 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1523 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1552 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1570 components: - type: Transform @@ -81933,25 +85613,35 @@ entities: pos: -9.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1583 components: - type: Transform pos: 8.5,2.5 parent: 2 + - uid: 1584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1596 components: - type: Transform pos: -9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1602 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1603 components: - type: Transform @@ -81959,7 +85649,7 @@ entities: pos: -8.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1606 components: - type: Transform @@ -81971,18 +85661,24 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1609 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1611 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1613 components: - type: Transform @@ -82000,12 +85696,16 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1618 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1627 components: - type: Transform @@ -82067,14 +85767,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1776 components: - type: Transform @@ -82158,14 +85850,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1887 components: - type: Transform @@ -82462,14 +86146,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2092 components: - type: Transform @@ -82562,14 +86238,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2147 components: - type: Transform @@ -82594,11 +86262,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2212 + - uid: 2187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,3.5 + rot: -1.5707963267948966 rad + pos: -16.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2264 + components: + - type: Transform + pos: -21.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -82609,54 +86284,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2385 + - uid: 2289 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,2.5 + pos: -29.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2386 components: - type: Transform @@ -82671,14 +86314,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2399 components: - type: Transform @@ -82687,14 +86322,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2435 components: - type: Transform @@ -82727,14 +86354,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2494 components: - type: Transform @@ -82751,14 +86370,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2530 components: - type: Transform @@ -82791,14 +86402,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2623 components: - type: Transform @@ -82807,27 +86410,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2637 + - uid: 2629 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,10.5 + pos: -10.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2638 + - uid: 2631 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,3.5 + pos: -9.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -83291,14 +86886,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4437 components: - type: Transform @@ -83306,30 +86893,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4452 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4459 components: - type: Transform @@ -83346,14 +86909,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4467 components: - type: Transform @@ -83362,22 +86917,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4521 components: - type: Transform @@ -83519,6 +87058,8 @@ entities: rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4850 components: - type: Transform @@ -83571,14 +87112,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4987 components: - type: Transform @@ -83662,14 +87195,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5172 components: - type: Transform @@ -83801,22 +87326,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6157 components: - type: Transform @@ -84035,14 +87544,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 6583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6590 components: - type: Transform @@ -84374,13 +87875,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 6806 - components: - - type: Transform - pos: 35.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6808 components: - type: Transform @@ -84490,14 +87984,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7103 components: - type: Transform @@ -84607,14 +88093,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7857 components: - type: Transform @@ -84852,14 +88330,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8598 components: - type: Transform @@ -85033,14 +88503,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8745 components: - type: Transform @@ -85142,21 +88604,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 9283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9286 - components: - - type: Transform - pos: -34.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9294 components: - type: Transform @@ -85488,14 +88935,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10122 components: - type: Transform @@ -85542,22 +88981,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10455 components: - type: Transform @@ -85590,14 +89013,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10538 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10539 components: - type: Transform @@ -85765,14 +89180,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 10654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10670 components: - type: Transform @@ -85841,6 +89248,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10853 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10895 components: - type: Transform @@ -85849,20 +89263,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10900 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10901 - components: - - type: Transform - pos: -34.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10943 components: - type: Transform @@ -85918,14 +89318,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11062 components: - type: Transform @@ -85994,14 +89386,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11206 components: - type: Transform @@ -86046,14 +89430,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11340 components: - type: Transform @@ -86310,14 +89686,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11893 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11902 components: - type: Transform @@ -86380,14 +89748,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12028 components: - type: Transform @@ -86892,6 +90252,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 12654 + components: + - type: Transform + anchored: False + rot: -0.5235987755982988 rad + pos: -54.09825,22.399958 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12663 components: - type: Transform @@ -86948,14 +90318,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12713 components: - type: Transform @@ -87114,22 +90476,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13052 components: - type: Transform @@ -88364,14 +91710,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 13610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 13622 components: - type: Transform @@ -89145,13 +92483,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14016 - components: - - type: Transform - pos: -17.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14022 components: - type: Transform @@ -89931,49 +93262,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14361 - components: - - type: Transform - pos: -16.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14362 - components: - - type: Transform - pos: -16.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14363 - components: - - type: Transform - pos: -16.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14364 - components: - - type: Transform - pos: -16.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14367 - components: - - type: Transform - pos: -14.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14370 components: - type: Transform @@ -89982,27 +93270,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14380 - components: - - type: Transform - pos: -16.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14383 - components: - - type: Transform - pos: -14.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14384 - components: - - type: Transform - pos: -14.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14387 components: - type: Transform @@ -90173,22 +93440,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14446 components: - type: Transform @@ -90196,86 +93447,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14465 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14467 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14472 components: - type: Transform @@ -90283,14 +93454,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14474 components: - type: Transform @@ -90306,14 +93469,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14493 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14505 components: - type: Transform @@ -90342,43 +93497,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14527 - components: - - type: Transform - pos: -24.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14528 - components: - - type: Transform - pos: -24.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14530 - components: - - type: Transform - pos: -26.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14533 components: - type: Transform @@ -90386,14 +93504,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14544 components: - type: Transform @@ -90408,27 +93518,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14548 - components: - - type: Transform - pos: -26.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14549 - components: - - type: Transform - pos: -26.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14550 - components: - - type: Transform - pos: -26.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14552 components: - type: Transform @@ -90436,98 +93525,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14553 - components: - - type: Transform - pos: -24.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14555 - components: - - type: Transform - pos: -24.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14556 - components: - - type: Transform - pos: -24.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14559 - components: - - type: Transform - pos: -24.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14571 components: - type: Transform @@ -90542,38 +93539,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14578 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,12.5 + anchored: False + pos: -54.453114,23.195366 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 14591 components: - type: Transform @@ -90581,14 +93555,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14604 components: - type: Transform @@ -90626,45 +93592,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14610 - components: - - type: Transform - pos: -17.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14623 components: - type: Transform @@ -90749,14 +93676,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14643 components: - type: Transform @@ -91233,22 +94152,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14862 components: - type: Transform @@ -91342,14 +94245,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14944 components: - type: Transform @@ -91522,14 +94417,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15077 components: - type: Transform @@ -91740,14 +94627,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15129 components: - type: Transform @@ -91772,14 +94651,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15159 components: - type: Transform @@ -91940,20 +94811,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 2 - - uid: 15567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,6.5 - parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 15577 @@ -92028,14 +94885,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15824 components: - type: Transform @@ -92114,196 +94963,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16408 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-14.5 - parent: 2 - uid: 16643 components: - type: Transform @@ -92899,14 +95558,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 17748 components: - type: Transform @@ -92945,6 +95596,190 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 18183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 18551 components: - type: Transform @@ -92952,14 +95787,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 18552 + components: + - type: Transform + pos: 79.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18561 + components: + - type: Transform + pos: 79.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 18580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-9.5 + pos: 79.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 18581 components: - type: Transform @@ -92976,6 +95824,380 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 18585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18823 + components: + - type: Transform + pos: 79.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18825 + components: + - type: Transform + pos: 79.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 18851 components: - type: Transform @@ -92990,6 +96212,15 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18939 + components: + - type: Transform + pos: 78.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 18969 components: - type: Transform @@ -92998,14 +96229,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 19023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 19024 components: - type: Transform @@ -93022,6 +96245,193 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 19168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19175 + components: + - type: Transform + pos: 43.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19176 + components: + - type: Transform + pos: 43.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19177 + components: + - type: Transform + pos: 43.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19178 + components: + - type: Transform + pos: 43.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19179 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19982 components: - type: Transform @@ -93076,14 +96486,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 20518 components: - type: Transform @@ -93092,22 +96494,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 20828 components: - type: Transform @@ -94348,41 +97734,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23218 - components: - - type: Transform - pos: -34.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23219 - components: - - type: Transform - pos: -34.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23220 - components: - - type: Transform - pos: -34.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23221 - components: - - type: Transform - pos: -34.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23222 - components: - - type: Transform - pos: -34.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23347 components: - type: Transform @@ -94882,892 +98233,1683 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 23742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23761 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23762 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23777 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23778 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-4.5 + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 23819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-4.5 + rot: 1.5707963267948966 rad + pos: 12.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 23820 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-8.5 + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 23821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-7.5 + rot: 1.5707963267948966 rad + pos: 14.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 23822 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-6.5 + rot: 1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23823 + components: + - type: Transform + pos: 16.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 23824 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23825 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23826 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23827 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23828 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23936 components: - type: Transform rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23962 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23964 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23965 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23966 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23967 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23987 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: -33.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23827 + - uid: 23989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23995 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-9.5 + pos: -40.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23829 + color: '#0055CCFF' + - uid: 23996 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-8.5 + rot: -1.5707963267948966 rad + pos: -41.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23830 + color: '#0055CCFF' + - uid: 23997 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-7.5 + rot: -1.5707963267948966 rad + pos: -42.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23831 + color: '#0055CCFF' + - uid: 23999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-6.5 + rot: -1.5707963267948966 rad + pos: -43.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 23833 + - uid: 24000 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-4.5 + rot: -1.5707963267948966 rad + pos: -42.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 23834 + - uid: 24001 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-3.5 + rot: -1.5707963267948966 rad + pos: -41.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 23836 + - uid: 24003 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-1.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 23837 + - uid: 24005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24027 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24028 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24029 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24030 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24145 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24146 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24147 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24175 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24176 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24207 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24208 + components: + - type: Transform + pos: -40.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24209 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24210 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24212 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24231 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24239 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23838 + color: '#0055CCFF' + - uid: 24240 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23842 + color: '#0055CCFF' + - uid: 24241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-4.5 + rot: 3.141592653589793 rad + pos: -39.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23843 + - uid: 24242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24276 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24277 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24278 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24279 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24280 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24281 components: - type: Transform - rot: 1.5707963267948966 rad pos: -39.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23844 + - uid: 24282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-4.5 + pos: -39.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23845 + - uid: 24283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-4.5 + pos: -39.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23847 + - uid: 24606 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-5.5 + pos: -18.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23848 + color: '#0055CCFF' + - uid: 24607 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,-5.5 + pos: -19.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23850 + color: '#0055CCFF' + - uid: 24608 components: - type: Transform - pos: -42.5,-6.5 + rot: 1.5707963267948966 rad + pos: -20.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 23855 + - uid: 24609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24615 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24616 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23859 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23862 - components: - - type: Transform - pos: -39.5,1.5 + pos: -25.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 23863 - components: - - type: Transform - pos: -39.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23864 - components: - - type: Transform - pos: -39.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23868 + - uid: 24619 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,4.5 + pos: -20.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23869 + color: '#0055CCFF' + - uid: 24620 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,4.5 + pos: -22.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23870 + color: '#0055CCFF' + - uid: 24621 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,4.5 + pos: -23.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23871 + color: '#0055CCFF' + - uid: 24622 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,2.5 + pos: -24.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23872 + - uid: 24623 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,2.5 + pos: -25.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23873 + - uid: 24624 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,2.5 + pos: -27.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23874 + - uid: 24625 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,2.5 + pos: -26.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23881 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23887 - components: - - type: Transform - pos: -46.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23888 - components: - - type: Transform - pos: -46.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23889 - components: - - type: Transform - pos: -46.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23891 - components: - - type: Transform - pos: -43.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23892 - components: - - type: Transform - pos: -43.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23893 - components: - - type: Transform - pos: -47.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23894 - components: - - type: Transform - pos: -44.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23896 - components: - - type: Transform - pos: -47.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23897 - components: - - type: Transform - pos: -47.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23898 - components: - - type: Transform - pos: -46.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23899 - components: - - type: Transform - pos: -44.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23900 - components: - - type: Transform - pos: -44.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23901 - components: - - type: Transform - pos: -44.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 129 @@ -95794,14 +99936,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1308 components: - type: Transform @@ -95818,6 +99952,36 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1535 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1539 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1605 components: - type: Transform @@ -95830,14 +99994,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-1.5 parent: 2 - - uid: 1715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 1778 components: - type: Transform @@ -95846,14 +100002,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2028 components: - type: Transform @@ -96105,14 +100253,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4759 components: - type: Transform @@ -96212,14 +100352,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6584 components: - type: Transform @@ -96297,14 +100429,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7751 components: - type: Transform @@ -96313,14 +100437,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7930 components: - type: Transform @@ -96369,22 +100485,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8595 components: - type: Transform @@ -96517,14 +100617,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 9634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9683 components: - type: Transform @@ -96616,11 +100708,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10769 + - uid: 10852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-16.5 + rot: 1.5707963267948966 rad + pos: 35.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -96716,14 +100808,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11621 components: - type: Transform @@ -96888,14 +100972,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12904 components: - type: Transform @@ -97348,38 +101424,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14603 components: - type: Transform @@ -97404,14 +101448,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14655 components: - type: Transform @@ -97420,13 +101456,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14666 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14674 components: - type: Transform @@ -97553,14 +101582,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15197 components: - type: Transform @@ -97584,14 +101605,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15935 components: - type: Transform @@ -97607,14 +101620,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 16243 components: - type: Transform @@ -97623,13 +101628,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16431 - components: - - type: Transform - pos: -60.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 16917 components: - type: Transform @@ -97732,6 +101730,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 18661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19570 components: - type: Transform @@ -97902,14 +101932,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23405 components: - type: Transform @@ -97934,125 +101956,201 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23760 + - uid: 23912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24018 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24022 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24080 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24133 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24168 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-9.5 + pos: -26.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 23763 + - uid: 24173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-7.5 + rot: -1.5707963267948966 rad + pos: -38.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23776 + - uid: 24174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24227 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-9.5 + pos: -31.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 23816 + - uid: 24236 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-4.5 + pos: -38.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23832 + - uid: 24237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-5.5 + pos: -40.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 23835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23839 + - uid: 24618 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-4.5 + pos: -21.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23849 - components: - - type: Transform - pos: -42.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - proto: GasPort entities: - uid: 122 @@ -98183,17 +102281,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16447 + - uid: 16441 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-13.5 + pos: -54.5,17.5 parent: 2 - - uid: 16448 + - uid: 16442 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,-13.5 + pos: -53.5,17.5 parent: 2 - uid: 23480 components: @@ -98408,20 +102506,22 @@ entities: parent: 2 - proto: GasValve entities: - - uid: 5538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11098 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 23403 components: - type: Transform @@ -98444,16 +102544,6 @@ entities: color: '#03FCD3FF' - proto: GasVentPump entities: - - uid: 621 - components: - - type: Transform - pos: -20.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14595 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 646 components: - type: Transform @@ -98476,6 +102566,17 @@ entities: - 15421 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2196 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1004 components: - type: Transform @@ -98521,6 +102622,28 @@ entities: - 14984 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24059 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1413 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2034 components: - type: Transform @@ -98552,17 +102675,6 @@ entities: - 22510 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18900 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3378 components: - type: Transform @@ -98743,7 +102855,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 81 + - 2237 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7862 @@ -98768,17 +102880,6 @@ entities: - 9393 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11625 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9161 components: - type: Transform @@ -99213,28 +103314,6 @@ entities: - 14915 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8606 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19009 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14524 components: - type: Transform @@ -99246,50 +103325,6 @@ entities: - 15331 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14595 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14595 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18900 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6203 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14651 components: - type: Transform @@ -99365,16 +103400,6 @@ entities: - 2583 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15018 - components: - - type: Transform - pos: -26.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13089 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15119 components: - type: Transform @@ -99485,17 +103510,6 @@ entities: - 12518 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16446 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 17344 components: - type: Transform @@ -99582,6 +103596,50 @@ entities: - 13655 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 18813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17162 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17162 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18902 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18894 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19984 components: - type: Transform @@ -99785,17 +103843,6 @@ entities: - 13600 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 9278 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23060 components: - type: Transform @@ -100030,143 +104077,239 @@ entities: - type: DeviceNetwork deviceLists: - 23739 - - uid: 23759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17615 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17615 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23796 + - uid: 23972 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-7.5 + pos: -16.5,-4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2670 + - 24035 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23798 + - uid: 23993 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24238 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24033 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24035 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24059 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24104 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-4.5 + pos: -28.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11625 + - 1931 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23825 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19627 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23840 + - uid: 24164 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-0.5 + pos: -32.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 + - 24130 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23916 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23877 - components: - - type: Transform - pos: -37.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23916 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23906 + - uid: 24186 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,0.5 + pos: -36.5,9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 + - 24130 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23907 + - uid: 24187 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,0.5 + pos: -38.5,9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 + - 24130 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23908 - components: - - type: Transform - pos: -46.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23916 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23909 - components: - - type: Transform - pos: -43.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23916 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23911 + - uid: 24188 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,3.5 + pos: -40.5,12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 + - 24130 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24130 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24190 + components: + - type: Transform + pos: -36.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24130 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24191 + components: + - type: Transform + pos: -38.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24130 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24238 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24238 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24254 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24291 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24291 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24275 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24292 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24290 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8606 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24627 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24601 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24628 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24601 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentPumpFreezer @@ -100205,17 +104348,6 @@ entities: - 14085 - type: AtmosPipeColor color: '#990000FF' - - uid: 588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 9278 - - type: AtmosPipeColor - color: '#990000FF' - uid: 765 components: - type: Transform @@ -100260,15 +104392,14 @@ entities: - uid: 1569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-3.5 + rot: 3.141592653589793 rad + pos: -10.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13796 - - 14984 + - 2237 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2176 components: - type: Transform @@ -100280,6 +104411,17 @@ entities: - 11632 - type: AtmosPipeColor color: '#990000FF' + - uid: 2208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2196 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2752 components: - type: Transform @@ -100291,16 +104433,6 @@ entities: - 5565 - type: AtmosPipeColor color: '#990000FF' - - uid: 2849 - components: - - type: Transform - pos: -24.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13089 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3122 components: - type: Transform @@ -100504,17 +104636,6 @@ entities: - 15421 - type: AtmosPipeColor color: '#990000FF' - - uid: 9141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11625 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9456 components: - type: Transform @@ -100589,17 +104710,6 @@ entities: - 5030 - type: AtmosPipeColor color: '#990000FF' - - uid: 11333 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19009 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11369 components: - type: Transform @@ -100802,16 +104912,6 @@ entities: - 13600 - type: AtmosPipeColor color: '#990000FF' - - uid: 13609 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 81 - - type: AtmosPipeColor - color: '#990000FF' - uid: 13614 components: - type: Transform @@ -100992,61 +105092,6 @@ entities: - 15331 - type: AtmosPipeColor color: '#990000FF' - - uid: 14468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18900 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14595 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14595 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6203 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18900 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14706 components: - type: Transform @@ -101101,17 +105146,6 @@ entities: - 15862 - type: AtmosPipeColor color: '#990000FF' - - uid: 14878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14595 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14886 components: - type: Transform @@ -101198,17 +105232,6 @@ entities: - 22510 - type: AtmosPipeColor color: '#990000FF' - - uid: 15180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8606 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15269 components: - type: Transform @@ -101346,14 +105369,6 @@ entities: - 12518 - type: AtmosPipeColor color: '#990000FF' - - uid: 16456 - components: - - type: Transform - pos: -52.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16446 - uid: 17117 components: - type: Transform @@ -101427,6 +105442,49 @@ entities: - 13655 - type: AtmosPipeColor color: '#990000FF' + - uid: 18783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17162 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18784 + components: + - type: Transform + pos: 87.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17162 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18902 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18894 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19969 components: - type: Transform @@ -101668,6 +105726,16 @@ entities: - 17445 - type: AtmosPipeColor color: '#990000FF' + - uid: 23335 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24292 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23372 components: - type: Transform @@ -101733,152 +105801,250 @@ entities: - type: DeviceNetwork deviceLists: - 23739 - - uid: 23753 + - uid: 23817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14984 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24035 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24002 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-11.5 + pos: -40.5,-2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17615 + - 24238 - type: AtmosPipeColor color: '#990000FF' - - uid: 23755 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17615 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23789 + - uid: 24032 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-6.5 + pos: -21.5,-4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11625 + - 24035 - type: AtmosPipeColor color: '#990000FF' - - uid: 23797 + - uid: 24061 components: - type: Transform - pos: -20.5,-5.5 + pos: -22.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2670 + - 24059 - type: AtmosPipeColor color: '#990000FF' - - uid: 23823 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19627 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23916 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23916 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23854 + - uid: 24073 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-2.5 + pos: -24.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 + - 24059 - type: AtmosPipeColor color: '#990000FF' - - uid: 23876 - components: - - type: Transform - pos: -39.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23916 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23902 - components: - - type: Transform - pos: -44.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23916 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23903 - components: - - type: Transform - pos: -47.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23916 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23916 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23916 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23910 + - uid: 24081 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,3.5 + pos: -22.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23916 + - 1931 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24089 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1413 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24238 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24130 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24171 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24130 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24172 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24130 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24130 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24130 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24130 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24200 + components: + - type: Transform + pos: -40.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24130 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24228 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24238 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24254 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24291 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24291 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24290 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8606 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24617 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24601 - type: AtmosPipeColor color: '#990000FF' - proto: GasVentScrubberFreezer @@ -101940,15 +106106,6 @@ entities: - type: Transform pos: -25.504946,23.170948 parent: 2 -- proto: Gauze1 - entities: - - uid: 2070 - components: - - type: Transform - pos: 50.513363,-40.420025 - parent: 2 - - type: Stack - count: 4 - proto: GeigerCounter entities: - uid: 16335 @@ -101970,15 +106127,10 @@ entities: - type: Transform pos: 63.5,-62.5 parent: 2 - - uid: 6732 + - uid: 6976 components: - type: Transform - pos: 72.5,-46.5 - parent: 2 - - uid: 6906 - components: - - type: Transform - pos: 65.5,-45.5 + pos: 77.5,-51.5 parent: 2 - uid: 7672 components: @@ -101990,16 +106142,6 @@ entities: - type: Transform pos: -0.5,-88.5 parent: 2 - - uid: 8329 - components: - - type: Transform - pos: 72.5,-45.5 - parent: 2 - - uid: 8432 - components: - - type: Transform - pos: 78.5,-43.5 - parent: 2 - uid: 10052 components: - type: Transform @@ -102111,12 +106253,6 @@ entities: - type: Transform pos: 66.5,-67.5 parent: 2 - - uid: 17850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-54.5 - parent: 2 - uid: 17874 components: - type: Transform @@ -102186,6 +106322,21 @@ entities: - type: Transform pos: 36.5,25.5 parent: 2 + - uid: 19053 + components: + - type: Transform + pos: 78.5,-57.5 + parent: 2 + - uid: 19089 + components: + - type: Transform + pos: 78.5,-59.5 + parent: 2 + - uid: 19091 + components: + - type: Transform + pos: 83.5,-57.5 + parent: 2 - uid: 19214 components: - type: Transform @@ -102216,16 +106367,6 @@ entities: - type: Transform pos: -10.5,-89.5 parent: 2 - - uid: 19587 - components: - - type: Transform - pos: 66.5,-38.5 - parent: 2 - - uid: 19636 - components: - - type: Transform - pos: 66.5,-39.5 - parent: 2 - uid: 19845 components: - type: Transform @@ -102236,12 +106377,6 @@ entities: - type: Transform pos: 69.5,-66.5 parent: 2 - - uid: 19908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-51.5 - parent: 2 - uid: 19917 components: - type: Transform @@ -102257,22 +106392,6 @@ entities: - type: Transform pos: 5.5,-90.5 parent: 2 - - uid: 20666 - components: - - type: Transform - pos: -33.5,20.5 - parent: 2 - - uid: 22817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-49.5 - parent: 2 - - uid: 22905 - components: - - type: Transform - pos: 85.5,-38.5 - parent: 2 - uid: 22943 components: - type: Transform @@ -102343,6 +106462,11 @@ entities: - type: Transform pos: -19.5,-62.5 parent: 2 + - uid: 89 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 - uid: 90 components: - type: Transform @@ -102353,6 +106477,11 @@ entities: - type: Transform pos: 6.5,-11.5 parent: 2 + - uid: 97 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 - uid: 99 components: - type: Transform @@ -102363,6 +106492,11 @@ entities: - type: Transform pos: 8.5,-11.5 parent: 2 + - uid: 104 + components: + - type: Transform + pos: 77.5,-45.5 + parent: 2 - uid: 120 components: - type: Transform @@ -102373,21 +106507,16 @@ entities: - type: Transform pos: -48.5,-17.5 parent: 2 - - uid: 161 + - uid: 170 components: - type: Transform - pos: -49.5,-16.5 + pos: -27.5,-4.5 parent: 2 - uid: 171 components: - type: Transform pos: 1.5,14.5 parent: 2 - - uid: 220 - components: - - type: Transform - pos: -50.5,-9.5 - parent: 2 - uid: 227 components: - type: Transform @@ -102398,10 +106527,15 @@ entities: - type: Transform pos: 72.5,-72.5 parent: 2 - - uid: 250 + - uid: 253 components: - type: Transform - pos: -31.5,-12.5 + pos: -26.5,6.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: -26.5,7.5 parent: 2 - uid: 264 components: @@ -102448,61 +106582,16 @@ entities: - type: Transform pos: -44.5,-33.5 parent: 2 - - uid: 330 - components: - - type: Transform - pos: -46.5,10.5 - parent: 2 - - uid: 331 - components: - - type: Transform - pos: -48.5,10.5 - parent: 2 - - uid: 332 - components: - - type: Transform - pos: -50.5,10.5 - parent: 2 - uid: 336 components: - type: Transform pos: 60.5,-75.5 parent: 2 - - uid: 360 - components: - - type: Transform - pos: -26.5,8.5 - parent: 2 - - uid: 361 - components: - - type: Transform - pos: -24.5,8.5 - parent: 2 - uid: 375 components: - type: Transform pos: -29.5,-39.5 parent: 2 - - uid: 387 - components: - - type: Transform - pos: -47.5,10.5 - parent: 2 - - uid: 391 - components: - - type: Transform - pos: -49.5,10.5 - parent: 2 - - uid: 402 - components: - - type: Transform - pos: -46.5,-6.5 - parent: 2 - - uid: 408 - components: - - type: Transform - pos: -46.5,-4.5 - parent: 2 - uid: 410 components: - type: Transform @@ -102518,16 +106607,41 @@ entities: - type: Transform pos: -14.5,-19.5 parent: 2 + - uid: 494 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 - uid: 513 components: - type: Transform pos: 51.5,-10.5 parent: 2 + - uid: 594 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 - uid: 601 components: - type: Transform pos: -5.5,9.5 parent: 2 + - uid: 615 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 - uid: 664 components: - type: Transform @@ -102538,20 +106652,15 @@ entities: - type: Transform pos: -26.5,-20.5 parent: 2 - - uid: 674 + - uid: 690 components: - type: Transform - pos: -51.5,6.5 + pos: -24.5,8.5 parent: 2 - - uid: 675 + - uid: 691 components: - type: Transform - pos: -52.5,-1.5 - parent: 2 - - uid: 678 - components: - - type: Transform - pos: -24.5,-8.5 + pos: -23.5,-11.5 parent: 2 - uid: 693 components: @@ -102563,11 +106672,6 @@ entities: - type: Transform pos: -47.5,-18.5 parent: 2 - - uid: 711 - components: - - type: Transform - pos: -43.5,8.5 - parent: 2 - uid: 729 components: - type: Transform @@ -102578,10 +106682,10 @@ entities: - type: Transform pos: -4.5,9.5 parent: 2 - - uid: 754 + - uid: 753 components: - type: Transform - pos: -59.5,11.5 + pos: -26.5,5.5 parent: 2 - uid: 755 components: @@ -102593,21 +106697,6 @@ entities: - type: Transform pos: -17.5,40.5 parent: 2 - - uid: 782 - components: - - type: Transform - pos: -57.5,6.5 - parent: 2 - - uid: 784 - components: - - type: Transform - pos: -59.5,7.5 - parent: 2 - - uid: 785 - components: - - type: Transform - pos: -59.5,6.5 - parent: 2 - uid: 792 components: - type: Transform @@ -102648,6 +106737,11 @@ entities: - type: Transform pos: 9.5,28.5 parent: 2 + - uid: 980 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 - uid: 988 components: - type: Transform @@ -102663,11 +106757,6 @@ entities: - type: Transform pos: -3.5,22.5 parent: 2 - - uid: 991 - components: - - type: Transform - pos: -50.5,-3.5 - parent: 2 - uid: 1008 components: - type: Transform @@ -102696,12 +106785,7 @@ entities: - uid: 1120 components: - type: Transform - pos: -46.5,31.5 - parent: 2 - - uid: 1121 - components: - - type: Transform - pos: -50.5,31.5 + pos: -22.5,-5.5 parent: 2 - uid: 1149 components: @@ -102713,46 +106797,16 @@ entities: - type: Transform pos: -59.5,-49.5 parent: 2 - - uid: 1156 - components: - - type: Transform - pos: -31.5,7.5 - parent: 2 - - uid: 1157 - components: - - type: Transform - pos: -31.5,8.5 - parent: 2 - - uid: 1159 - components: - - type: Transform - pos: -29.5,5.5 - parent: 2 - uid: 1164 components: - type: Transform pos: -59.5,-48.5 parent: 2 - - uid: 1169 - components: - - type: Transform - pos: -52.5,32.5 - parent: 2 - - uid: 1170 - components: - - type: Transform - pos: -48.5,32.5 - parent: 2 - uid: 1225 components: - type: Transform pos: 77.5,-3.5 parent: 2 - - uid: 1227 - components: - - type: Transform - pos: 59.5,-37.5 - parent: 2 - uid: 1257 components: - type: Transform @@ -102808,16 +106862,6 @@ entities: - type: Transform pos: 1.5,28.5 parent: 2 - - uid: 1364 - components: - - type: Transform - pos: -59.5,23.5 - parent: 2 - - uid: 1388 - components: - - type: Transform - pos: -59.5,19.5 - parent: 2 - uid: 1395 components: - type: Transform @@ -102828,36 +106872,21 @@ entities: - type: Transform pos: -21.5,-62.5 parent: 2 - - uid: 1524 - components: - - type: Transform - pos: -14.5,-8.5 - parent: 2 - uid: 1549 components: - type: Transform pos: -27.5,-65.5 parent: 2 - - uid: 1552 + - uid: 1599 components: - type: Transform - pos: -59.5,15.5 - parent: 2 - - uid: 1628 - components: - - type: Transform - pos: -55.5,-4.5 + pos: -14.5,-8.5 parent: 2 - uid: 1630 components: - type: Transform pos: -9.5,-23.5 parent: 2 - - uid: 1632 - components: - - type: Transform - pos: -53.5,-4.5 - parent: 2 - uid: 1641 components: - type: Transform @@ -102933,6 +106962,11 @@ entities: - type: Transform pos: 7.5,4.5 parent: 2 + - uid: 2016 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 - uid: 2062 components: - type: Transform @@ -102943,11 +106977,6 @@ entities: - type: Transform pos: -20.5,-68.5 parent: 2 - - uid: 2126 - components: - - type: Transform - pos: 60.5,-37.5 - parent: 2 - uid: 2131 components: - type: Transform @@ -102958,16 +106987,6 @@ entities: - type: Transform pos: -14.5,-18.5 parent: 2 - - uid: 2154 - components: - - type: Transform - pos: 77.5,-43.5 - parent: 2 - - uid: 2209 - components: - - type: Transform - pos: -53.5,-1.5 - parent: 2 - uid: 2214 components: - type: Transform @@ -102983,21 +107002,16 @@ entities: - type: Transform pos: -25.5,-62.5 parent: 2 - - uid: 2268 + - uid: 2301 components: - type: Transform - pos: 64.5,-37.5 + pos: 72.5,-43.5 parent: 2 - uid: 2333 components: - type: Transform pos: -22.5,-67.5 parent: 2 - - uid: 2336 - components: - - type: Transform - pos: 53.5,-36.5 - parent: 2 - uid: 2383 components: - type: Transform @@ -103018,10 +107032,10 @@ entities: - type: Transform pos: -21.5,-63.5 parent: 2 - - uid: 2507 + - uid: 2455 components: - type: Transform - pos: -50.5,-15.5 + pos: -14.5,-1.5 parent: 2 - uid: 2527 components: @@ -103043,10 +107057,10 @@ entities: - type: Transform pos: -13.5,-62.5 parent: 2 - - uid: 2647 + - uid: 2595 components: - type: Transform - pos: -29.5,-14.5 + pos: -38.5,32.5 parent: 2 - uid: 2659 components: @@ -103068,11 +107082,6 @@ entities: - type: Transform pos: -13.5,-64.5 parent: 2 - - uid: 2836 - components: - - type: Transform - pos: -47.5,-6.5 - parent: 2 - uid: 2858 components: - type: Transform @@ -103118,16 +107127,6 @@ entities: - type: Transform pos: 47.5,-55.5 parent: 2 - - uid: 3069 - components: - - type: Transform - pos: -54.5,-3.5 - parent: 2 - - uid: 3075 - components: - - type: Transform - pos: -14.5,-7.5 - parent: 2 - uid: 3146 components: - type: Transform @@ -103148,46 +107147,16 @@ entities: - type: Transform pos: -31.5,-71.5 parent: 2 - - uid: 3198 - components: - - type: Transform - pos: -45.5,10.5 - parent: 2 - uid: 3199 components: - type: Transform pos: -9.5,-96.5 parent: 2 - - uid: 3204 - components: - - type: Transform - pos: -42.5,10.5 - parent: 2 - - uid: 3206 - components: - - type: Transform - pos: -41.5,10.5 - parent: 2 - - uid: 3214 - components: - - type: Transform - pos: -44.5,10.5 - parent: 2 - - uid: 3217 - components: - - type: Transform - pos: -54.5,-4.5 - parent: 2 - uid: 3249 components: - type: Transform pos: -55.5,-26.5 parent: 2 - - uid: 3281 - components: - - type: Transform - pos: -50.5,9.5 - parent: 2 - uid: 3312 components: - type: Transform @@ -103203,11 +107172,6 @@ entities: - type: Transform pos: -5.5,21.5 parent: 2 - - uid: 3528 - components: - - type: Transform - pos: -43.5,10.5 - parent: 2 - uid: 3583 components: - type: Transform @@ -103293,11 +107257,6 @@ entities: - type: Transform pos: 40.5,-66.5 parent: 2 - - uid: 3900 - components: - - type: Transform - pos: -28.5,4.5 - parent: 2 - uid: 3954 components: - type: Transform @@ -103583,6 +107542,11 @@ entities: - type: Transform pos: -25.5,-45.5 parent: 2 + - uid: 4364 + components: + - type: Transform + pos: 73.5,-43.5 + parent: 2 - uid: 4381 components: - type: Transform @@ -103693,11 +107657,6 @@ entities: - type: Transform pos: -17.5,-67.5 parent: 2 - - uid: 4832 - components: - - type: Transform - pos: -49.5,-8.5 - parent: 2 - uid: 4835 components: - type: Transform @@ -103758,21 +107717,26 @@ entities: - type: Transform pos: -15.5,-62.5 parent: 2 - - uid: 4909 + - uid: 4922 components: - type: Transform - pos: -50.5,8.5 + pos: 59.5,-37.5 parent: 2 - - uid: 4920 + - uid: 4923 components: - type: Transform - pos: -58.5,7.5 + pos: 59.5,-38.5 parent: 2 - uid: 4924 components: - type: Transform pos: -15.5,-67.5 parent: 2 + - uid: 4935 + components: + - type: Transform + pos: 59.5,-36.5 + parent: 2 - uid: 4952 components: - type: Transform @@ -103783,11 +107747,6 @@ entities: - type: Transform pos: -31.5,-73.5 parent: 2 - - uid: 4954 - components: - - type: Transform - pos: -41.5,9.5 - parent: 2 - uid: 4956 components: - type: Transform @@ -103828,16 +107787,6 @@ entities: - type: Transform pos: -17.5,-62.5 parent: 2 - - uid: 5078 - components: - - type: Transform - pos: -41.5,-17.5 - parent: 2 - - uid: 5079 - components: - - type: Transform - pos: -42.5,-17.5 - parent: 2 - uid: 5083 components: - type: Transform @@ -103883,16 +107832,6 @@ entities: - type: Transform pos: -24.5,-63.5 parent: 2 - - uid: 5140 - components: - - type: Transform - pos: -53.5,5.5 - parent: 2 - - uid: 5144 - components: - - type: Transform - pos: -51.5,-2.5 - parent: 2 - uid: 5170 components: - type: Transform @@ -103918,16 +107857,6 @@ entities: - type: Transform pos: -33.5,-38.5 parent: 2 - - uid: 5264 - components: - - type: Transform - pos: -60.5,-7.5 - parent: 2 - - uid: 5369 - components: - - type: Transform - pos: -31.5,6.5 - parent: 2 - uid: 5399 components: - type: Transform @@ -103958,6 +107887,11 @@ entities: - type: Transform pos: -27.5,26.5 parent: 2 + - uid: 5449 + components: + - type: Transform + pos: 58.5,-38.5 + parent: 2 - uid: 5453 components: - type: Transform @@ -103968,11 +107902,6 @@ entities: - type: Transform pos: -31.5,-45.5 parent: 2 - - uid: 5464 - components: - - type: Transform - pos: 63.5,-43.5 - parent: 2 - uid: 5477 components: - type: Transform @@ -104058,11 +107987,6 @@ entities: - type: Transform pos: 32.5,-55.5 parent: 2 - - uid: 5649 - components: - - type: Transform - pos: 64.5,-43.5 - parent: 2 - uid: 5650 components: - type: Transform @@ -104128,11 +108052,6 @@ entities: - type: Transform pos: -59.5,-63.5 parent: 2 - - uid: 5929 - components: - - type: Transform - pos: -60.5,-17.5 - parent: 2 - uid: 6050 components: - type: Transform @@ -104148,16 +108067,6 @@ entities: - type: Transform pos: -33.5,-81.5 parent: 2 - - uid: 6127 - components: - - type: Transform - pos: -63.5,-7.5 - parent: 2 - - uid: 6129 - components: - - type: Transform - pos: -63.5,-17.5 - parent: 2 - uid: 6171 components: - type: Transform @@ -104213,11 +108122,6 @@ entities: - type: Transform pos: 0.5,-83.5 parent: 2 - - uid: 6492 - components: - - type: Transform - pos: -18.5,9.5 - parent: 2 - uid: 6506 components: - type: Transform @@ -104248,26 +108152,6 @@ entities: - type: Transform pos: -34.5,-38.5 parent: 2 - - uid: 6645 - components: - - type: Transform - pos: -40.5,-14.5 - parent: 2 - - uid: 6646 - components: - - type: Transform - pos: -39.5,-13.5 - parent: 2 - - uid: 6648 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 2 - - uid: 6666 - components: - - type: Transform - pos: -21.5,-14.5 - parent: 2 - uid: 6669 components: - type: Transform @@ -104328,21 +108212,16 @@ entities: - type: Transform pos: 10.5,1.5 parent: 2 - - uid: 6977 + - uid: 6978 components: - type: Transform - pos: -28.5,2.5 + pos: 77.5,-53.5 parent: 2 - uid: 6996 components: - type: Transform pos: -42.5,-33.5 parent: 2 - - uid: 7016 - components: - - type: Transform - pos: 78.5,-47.5 - parent: 2 - uid: 7051 components: - type: Transform @@ -104358,6 +108237,11 @@ entities: - type: Transform pos: -14.5,41.5 parent: 2 + - uid: 7127 + components: + - type: Transform + pos: -62.5,-23.5 + parent: 2 - uid: 7128 components: - type: Transform @@ -104368,6 +108252,11 @@ entities: - type: Transform pos: -62.5,-31.5 parent: 2 + - uid: 7130 + components: + - type: Transform + pos: -62.5,-17.5 + parent: 2 - uid: 7131 components: - type: Transform @@ -104378,6 +108267,11 @@ entities: - type: Transform pos: -62.5,-27.5 parent: 2 + - uid: 7133 + components: + - type: Transform + pos: -62.5,-20.5 + parent: 2 - uid: 7140 components: - type: Transform @@ -104403,6 +108297,11 @@ entities: - type: Transform pos: -55.5,-63.5 parent: 2 + - uid: 7302 + components: + - type: Transform + pos: -62.5,-24.5 + parent: 2 - uid: 7336 components: - type: Transform @@ -104413,36 +108312,146 @@ entities: - type: Transform pos: 43.5,-70.5 parent: 2 + - uid: 7412 + components: + - type: Transform + pos: 61.5,-45.5 + parent: 2 - uid: 7436 components: - type: Transform pos: 3.5,-12.5 parent: 2 - - uid: 7451 + - uid: 7552 components: - type: Transform - pos: -46.5,-1.5 + pos: -62.5,-14.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + pos: -62.5,-11.5 parent: 2 - uid: 7589 components: - type: Transform pos: -5.5,-57.5 parent: 2 + - uid: 7594 + components: + - type: Transform + pos: -62.5,-9.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + pos: -63.5,-17.5 + parent: 2 - uid: 7615 components: - type: Transform pos: 32.5,-33.5 parent: 2 + - uid: 7625 + components: + - type: Transform + pos: -63.5,-16.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + pos: -62.5,-15.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + pos: -62.5,-19.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + pos: -62.5,-21.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + pos: -70.5,4.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + pos: -70.5,5.5 + parent: 2 + - uid: 7697 + components: + - type: Transform + pos: -70.5,6.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + pos: -70.5,7.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: -70.5,9.5 + parent: 2 - uid: 7704 components: - type: Transform - pos: -33.5,-6.5 + pos: -70.5,10.5 parent: 2 - uid: 7720 components: - type: Transform pos: 33.5,-35.5 parent: 2 + - uid: 7729 + components: + - type: Transform + pos: -70.5,12.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + pos: -70.5,13.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + pos: -70.5,14.5 + parent: 2 + - uid: 7732 + components: + - type: Transform + pos: -70.5,16.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + pos: -70.5,17.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: -70.5,19.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + pos: -70.5,20.5 + parent: 2 - uid: 7752 components: - type: Transform @@ -104451,37 +108460,52 @@ entities: - uid: 7784 components: - type: Transform - pos: 77.5,-47.5 + pos: -70.5,22.5 parent: 2 - uid: 7787 components: - type: Transform - pos: -62.5,-23.5 + pos: -70.5,23.5 parent: 2 - uid: 7798 components: - type: Transform - pos: 81.5,-52.5 + pos: -70.5,24.5 parent: 2 - - uid: 7800 + - uid: 7821 components: - type: Transform - pos: 76.5,-43.5 + pos: -70.5,25.5 parent: 2 - - uid: 7801 + - uid: 7822 components: - type: Transform - pos: 75.5,-42.5 + pos: -70.5,26.5 parent: 2 - uid: 7824 components: - type: Transform pos: 46.5,-63.5 parent: 2 - - uid: 7825 + - uid: 7827 components: - type: Transform - pos: -51.5,-3.5 + pos: -70.5,28.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: -70.5,29.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + pos: -70.5,30.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: -70.5,32.5 parent: 2 - uid: 7881 components: @@ -104493,10 +108517,30 @@ entities: - type: Transform pos: 17.5,-10.5 parent: 2 + - uid: 7929 + components: + - type: Transform + pos: -70.5,34.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + pos: -70.5,35.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + pos: -70.5,36.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: -70.5,37.5 + parent: 2 - uid: 7963 components: - type: Transform - pos: -18.5,8.5 + pos: -69.5,38.5 parent: 2 - uid: 7969 components: @@ -104508,11 +108552,51 @@ entities: - type: Transform pos: 44.5,-63.5 parent: 2 + - uid: 7976 + components: + - type: Transform + pos: -68.5,38.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: -67.5,38.5 + parent: 2 - uid: 7988 components: - type: Transform pos: 41.5,-59.5 parent: 2 + - uid: 7998 + components: + - type: Transform + pos: -65.5,38.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + pos: -64.5,38.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + pos: -63.5,38.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: -61.5,38.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + pos: -60.5,38.5 + parent: 2 + - uid: 8048 + components: + - type: Transform + pos: -58.5,38.5 + parent: 2 - uid: 8057 components: - type: Transform @@ -104638,6 +108722,16 @@ entities: - type: Transform pos: -12.5,-76.5 parent: 2 + - uid: 8146 + components: + - type: Transform + pos: -55.5,38.5 + parent: 2 + - uid: 8198 + components: + - type: Transform + pos: -54.5,38.5 + parent: 2 - uid: 8212 components: - type: Transform @@ -104683,11 +108777,6 @@ entities: - type: Transform pos: -16.5,-68.5 parent: 2 - - uid: 8230 - components: - - type: Transform - pos: 75.5,-41.5 - parent: 2 - uid: 8231 components: - type: Transform @@ -104713,6 +108802,11 @@ entities: - type: Transform pos: -12.5,-78.5 parent: 2 + - uid: 8240 + components: + - type: Transform + pos: -53.5,38.5 + parent: 2 - uid: 8241 components: - type: Transform @@ -104726,33 +108820,138 @@ entities: - uid: 8245 components: - type: Transform - pos: -43.5,-17.5 + pos: -52.5,38.5 + parent: 2 + - uid: 8262 + components: + - type: Transform + pos: -51.5,38.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + pos: -50.5,38.5 + parent: 2 + - uid: 8264 + components: + - type: Transform + pos: -49.5,38.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + pos: -48.5,38.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + pos: -57.5,38.5 + parent: 2 + - uid: 8300 + components: + - type: Transform + pos: -46.5,38.5 + parent: 2 + - uid: 8301 + components: + - type: Transform + pos: -45.5,38.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: -44.5,36.5 parent: 2 - uid: 8306 components: - type: Transform pos: -27.5,35.5 parent: 2 - - uid: 8327 + - uid: 8309 components: - type: Transform - pos: 74.5,-47.5 + pos: -44.5,37.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + pos: -43.5,36.5 + parent: 2 + - uid: 8313 + components: + - type: Transform + pos: -42.5,35.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: -41.5,34.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + pos: -40.5,33.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + pos: 74.5,-46.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + pos: -38.5,33.5 parent: 2 - uid: 8346 components: - type: Transform pos: -12.5,-85.5 parent: 2 + - uid: 8347 + components: + - type: Transform + pos: -36.5,33.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: -31.5,32.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + pos: -29.5,34.5 + parent: 2 - uid: 8354 components: - type: Transform pos: 44.5,-1.5 parent: 2 + - uid: 8367 + components: + - type: Transform + pos: -71.5,12.5 + parent: 2 - uid: 8372 components: - type: Transform pos: 42.5,-19.5 parent: 2 + - uid: 8380 + components: + - type: Transform + pos: -56.5,6.5 + parent: 2 + - uid: 8381 + components: + - type: Transform + pos: -58.5,9.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: -59.5,9.5 + parent: 2 - uid: 8395 components: - type: Transform @@ -104763,6 +108962,16 @@ entities: - type: Transform pos: 8.5,-50.5 parent: 2 + - uid: 8397 + components: + - type: Transform + pos: -57.5,15.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + pos: 70.5,-48.5 + parent: 2 - uid: 8403 components: - type: Transform @@ -104773,31 +108982,161 @@ entities: - type: Transform pos: -4.5,15.5 parent: 2 + - uid: 8411 + components: + - type: Transform + pos: -56.5,20.5 + parent: 2 - uid: 8415 components: - type: Transform pos: -5.5,-50.5 parent: 2 + - uid: 8423 + components: + - type: Transform + pos: -57.5,18.5 + parent: 2 - uid: 8438 components: - type: Transform pos: 65.5,11.5 parent: 2 + - uid: 8453 + components: + - type: Transform + pos: -58.5,21.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + pos: -71.5,14.5 + parent: 2 - uid: 8456 components: - type: Transform - pos: -39.5,-10.5 + pos: -71.5,9.5 + parent: 2 + - uid: 8464 + components: + - type: Transform + pos: -71.5,17.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + pos: -71.5,18.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + pos: -71.5,22.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + pos: -71.5,20.5 + parent: 2 + - uid: 8473 + components: + - type: Transform + pos: -71.5,25.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + pos: -71.5,38.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: -71.5,28.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + pos: -71.5,30.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + pos: -71.5,39.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + pos: -69.5,39.5 parent: 2 - uid: 8485 components: - type: Transform pos: 12.5,-67.5 parent: 2 + - uid: 8486 + components: + - type: Transform + pos: -69.5,37.5 + parent: 2 + - uid: 8488 + components: + - type: Transform + pos: -71.5,37.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: -53.5,37.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + pos: -66.5,39.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: -60.5,39.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + pos: -62.5,39.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: -53.5,39.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: -54.5,39.5 + parent: 2 + - uid: 8508 + components: + - type: Transform + pos: -49.5,39.5 + parent: 2 + - uid: 8511 + components: + - type: Transform + pos: -55.5,37.5 + parent: 2 - uid: 8513 components: - type: Transform pos: 33.5,22.5 parent: 2 + - uid: 8516 + components: + - type: Transform + pos: -65.5,37.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: -60.5,37.5 + parent: 2 - uid: 8549 components: - type: Transform @@ -104813,6 +109152,31 @@ entities: - type: Transform pos: -19.5,-57.5 parent: 2 + - uid: 8573 + components: + - type: Transform + pos: -69.5,23.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + pos: -69.5,18.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + pos: -69.5,12.5 + parent: 2 + - uid: 8667 + components: + - type: Transform + pos: -69.5,8.5 + parent: 2 + - uid: 8671 + components: + - type: Transform + pos: -69.5,5.5 + parent: 2 - uid: 8697 components: - type: Transform @@ -104871,12 +109235,7 @@ entities: - uid: 8925 components: - type: Transform - pos: 68.5,-45.5 - parent: 2 - - uid: 9006 - components: - - type: Transform - pos: -19.5,8.5 + pos: 75.5,-48.5 parent: 2 - uid: 9085 components: @@ -104913,6 +109272,11 @@ entities: - type: Transform pos: 2.5,-21.5 parent: 2 + - uid: 9255 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 - uid: 9263 components: - type: Transform @@ -104923,15 +109287,25 @@ entities: - type: Transform pos: -25.5,-18.5 parent: 2 + - uid: 9278 + components: + - type: Transform + pos: -25.5,12.5 + parent: 2 - uid: 9282 components: - type: Transform pos: 18.5,-60.5 parent: 2 + - uid: 9285 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 - uid: 9291 components: - type: Transform - pos: -47.5,-1.5 + pos: -22.5,13.5 parent: 2 - uid: 9295 components: @@ -104953,6 +109327,16 @@ entities: - type: Transform pos: 12.5,-71.5 parent: 2 + - uid: 9354 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - uid: 9358 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 - uid: 9419 components: - type: Transform @@ -104973,16 +109357,61 @@ entities: - type: Transform pos: 19.5,-45.5 parent: 2 + - uid: 9520 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 9522 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 9532 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 9535 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 9537 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 - uid: 9554 components: - type: Transform pos: 49.5,-88.5 parent: 2 + - uid: 9557 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 9559 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 - uid: 9561 components: - type: Transform pos: -16.5,29.5 parent: 2 + - uid: 9565 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 - uid: 9587 components: - type: Transform @@ -105043,16 +109472,6 @@ entities: - type: Transform pos: 2.5,9.5 parent: 2 - - uid: 9645 - components: - - type: Transform - pos: -52.5,-2.5 - parent: 2 - - uid: 9668 - components: - - type: Transform - pos: -53.5,1.5 - parent: 2 - uid: 9682 components: - type: Transform @@ -105063,21 +109482,6 @@ entities: - type: Transform pos: 11.5,4.5 parent: 2 - - uid: 9691 - components: - - type: Transform - pos: -51.5,7.5 - parent: 2 - - uid: 9813 - components: - - type: Transform - pos: 80.5,-48.5 - parent: 2 - - uid: 9889 - components: - - type: Transform - pos: -49.5,32.5 - parent: 2 - uid: 9924 components: - type: Transform @@ -105088,25 +109492,15 @@ entities: - type: Transform pos: -49.5,-40.5 parent: 2 - - uid: 9936 - components: - - type: Transform - pos: 80.5,-42.5 - parent: 2 - - uid: 9983 - components: - - type: Transform - pos: 80.5,-50.5 - parent: 2 - uid: 9987 components: - type: Transform pos: -24.5,-57.5 parent: 2 - - uid: 10005 + - uid: 10003 components: - type: Transform - pos: 57.5,-39.5 + pos: 73.5,-45.5 parent: 2 - uid: 10015 components: @@ -105118,10 +109512,10 @@ entities: - type: Transform pos: 7.5,6.5 parent: 2 - - uid: 10020 + - uid: 10017 components: - type: Transform - pos: 81.5,-51.5 + pos: 71.5,-43.5 parent: 2 - uid: 10028 components: @@ -105248,11 +109642,6 @@ entities: - type: Transform pos: -35.5,-51.5 parent: 2 - - uid: 10449 - components: - - type: Transform - pos: 81.5,-48.5 - parent: 2 - uid: 10468 components: - type: Transform @@ -105268,11 +109657,6 @@ entities: - type: Transform pos: 64.5,-59.5 parent: 2 - - uid: 10503 - components: - - type: Transform - pos: -53.5,0.5 - parent: 2 - uid: 10559 components: - type: Transform @@ -105373,31 +109757,31 @@ entities: - type: Transform pos: -59.5,-53.5 parent: 2 - - uid: 10674 - components: - - type: Transform - pos: -53.5,3.5 - parent: 2 - uid: 10696 components: - type: Transform pos: -57.5,-22.5 parent: 2 + - uid: 10714 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 - uid: 10717 components: - type: Transform - pos: -45.5,32.5 - parent: 2 - - uid: 10721 - components: - - type: Transform - pos: -43.5,32.5 + pos: -47.5,-1.5 parent: 2 - uid: 10724 components: - type: Transform pos: 71.5,12.5 parent: 2 + - uid: 10726 + components: + - type: Transform + pos: 88.5,-50.5 + parent: 2 - uid: 10733 components: - type: Transform @@ -105413,41 +109797,61 @@ entities: - type: Transform pos: -54.5,-63.5 parent: 2 - - uid: 10765 + - uid: 10754 components: - type: Transform - pos: -48.5,-8.5 + pos: -46.5,4.5 + parent: 2 + - uid: 10756 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - uid: 10764 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 10785 + components: + - type: Transform + pos: -46.5,1.5 parent: 2 - uid: 10786 components: - type: Transform pos: 59.5,-7.5 parent: 2 + - uid: 10787 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 10791 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 + - uid: 10797 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 - uid: 10800 components: - type: Transform - pos: -34.5,14.5 + pos: -46.5,-8.5 parent: 2 - uid: 10806 components: - type: Transform pos: 64.5,-60.5 parent: 2 - - uid: 10808 - components: - - type: Transform - pos: -50.5,7.5 - parent: 2 - uid: 10811 components: - type: Transform pos: 76.5,-56.5 parent: 2 - - uid: 10815 - components: - - type: Transform - pos: 59.5,-43.5 - parent: 2 - uid: 10832 components: - type: Transform @@ -105488,11 +109892,26 @@ entities: - type: Transform pos: 95.5,-16.5 parent: 2 + - uid: 10857 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 - uid: 10861 components: - type: Transform pos: 75.5,-77.5 parent: 2 + - uid: 10865 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 10866 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 - uid: 10868 components: - type: Transform @@ -105513,11 +109932,6 @@ entities: - type: Transform pos: 58.5,-78.5 parent: 2 - - uid: 10883 - components: - - type: Transform - pos: 85.5,-40.5 - parent: 2 - uid: 10889 components: - type: Transform @@ -105548,15 +109962,25 @@ entities: - type: Transform pos: 13.5,-23.5 parent: 2 + - uid: 10923 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 - uid: 10958 components: - type: Transform pos: -9.5,-68.5 parent: 2 + - uid: 10973 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 - uid: 10975 components: - type: Transform - pos: 81.5,-39.5 + pos: 66.5,-45.5 parent: 2 - uid: 10994 components: @@ -105566,32 +109990,32 @@ entities: - uid: 11006 components: - type: Transform - pos: -37.5,13.5 + pos: -45.5,-9.5 parent: 2 - uid: 11011 components: - type: Transform - pos: 80.5,-39.5 + pos: 65.5,-44.5 parent: 2 - - uid: 11061 + - uid: 11016 components: - type: Transform - pos: -53.5,4.5 + pos: -44.5,-9.5 parent: 2 - - uid: 11075 + - uid: 11055 components: - type: Transform - pos: -52.5,7.5 + pos: -45.5,0.5 parent: 2 - uid: 11110 components: - type: Transform - pos: -49.5,-3.5 + pos: -36.5,-5.5 parent: 2 - uid: 11113 components: - type: Transform - pos: 84.5,-36.5 + pos: 87.5,-55.5 parent: 2 - uid: 11168 components: @@ -105611,7 +110035,7 @@ entities: - uid: 11200 components: - type: Transform - pos: 91.5,-37.5 + pos: 71.5,-41.5 parent: 2 - uid: 11254 components: @@ -105623,20 +110047,15 @@ entities: - type: Transform pos: -28.5,-39.5 parent: 2 - - uid: 11272 + - uid: 11283 components: - type: Transform - pos: 71.5,-45.5 - parent: 2 - - uid: 11299 - components: - - type: Transform - pos: 70.5,-45.5 + pos: -39.5,-4.5 parent: 2 - uid: 11320 components: - type: Transform - pos: 88.5,-38.5 + pos: 67.5,-39.5 parent: 2 - uid: 11345 components: @@ -105663,10 +110082,10 @@ entities: - type: Transform pos: 32.5,-35.5 parent: 2 - - uid: 11420 + - uid: 11415 components: - type: Transform - pos: -20.5,8.5 + pos: -41.5,-2.5 parent: 2 - uid: 11525 components: @@ -105676,7 +110095,7 @@ entities: - uid: 11543 components: - type: Transform - pos: 84.5,-41.5 + pos: 62.5,-45.5 parent: 2 - uid: 11552 components: @@ -105691,23 +110110,13 @@ entities: - uid: 11589 components: - type: Transform - pos: 89.5,-37.5 + pos: 64.5,-45.5 parent: 2 - uid: 11672 components: - type: Transform pos: 27.5,-59.5 parent: 2 - - uid: 11806 - components: - - type: Transform - pos: -19.5,-8.5 - parent: 2 - - uid: 11822 - components: - - type: Transform - pos: 81.5,-45.5 - parent: 2 - uid: 11839 components: - type: Transform @@ -105718,21 +110127,11 @@ entities: - type: Transform pos: 65.5,-84.5 parent: 2 - - uid: 11847 - components: - - type: Transform - pos: 90.5,-41.5 - parent: 2 - uid: 11864 components: - type: Transform pos: 71.5,-57.5 parent: 2 - - uid: 11874 - components: - - type: Transform - pos: 81.5,-44.5 - parent: 2 - uid: 11899 components: - type: Transform @@ -105743,6 +110142,11 @@ entities: - type: Transform pos: 37.5,-8.5 parent: 2 + - uid: 11960 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 2 - uid: 12003 components: - type: Transform @@ -105813,11 +110217,6 @@ entities: - type: Transform pos: 75.5,-1.5 parent: 2 - - uid: 12382 - components: - - type: Transform - pos: -31.5,13.5 - parent: 2 - uid: 12434 components: - type: Transform @@ -105873,11 +110272,31 @@ entities: - type: Transform pos: 10.5,3.5 parent: 2 + - uid: 12557 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 12560 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 - uid: 12562 components: - type: Transform pos: 13.5,6.5 parent: 2 + - uid: 12575 + components: + - type: Transform + pos: -42.5,7.5 + parent: 2 + - uid: 12576 + components: + - type: Transform + pos: -43.5,7.5 + parent: 2 - uid: 12588 components: - type: Transform @@ -105903,6 +110322,16 @@ entities: - type: Transform pos: -42.5,-19.5 parent: 2 + - uid: 12608 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 - uid: 12651 components: - type: Transform @@ -105918,6 +110347,11 @@ entities: - type: Transform pos: -46.5,-27.5 parent: 2 + - uid: 12701 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 - uid: 12702 components: - type: Transform @@ -105953,6 +110387,21 @@ entities: - type: Transform pos: -5.5,-68.5 parent: 2 + - uid: 12845 + components: + - type: Transform + pos: -33.5,29.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + pos: -31.5,29.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + pos: -32.5,24.5 + parent: 2 - uid: 12885 components: - type: Transform @@ -105978,6 +110427,16 @@ entities: - type: Transform pos: -60.5,-29.5 parent: 2 + - uid: 12894 + components: + - type: Transform + pos: -30.5,24.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + pos: -30.5,25.5 + parent: 2 - uid: 12899 components: - type: Transform @@ -106028,21 +110487,46 @@ entities: - type: Transform pos: 49.5,-53.5 parent: 2 + - uid: 13028 + components: + - type: Transform + pos: -55.5,20.5 + parent: 2 - uid: 13032 components: - type: Transform pos: 58.5,-7.5 parent: 2 + - uid: 13034 + components: + - type: Transform + pos: -55.5,18.5 + parent: 2 - uid: 13039 components: - type: Transform pos: 34.5,27.5 parent: 2 + - uid: 13046 + components: + - type: Transform + pos: -55.5,19.5 + parent: 2 - uid: 13085 components: - type: Transform pos: 75.5,-3.5 parent: 2 + - uid: 13088 + components: + - type: Transform + pos: -56.5,8.5 + parent: 2 + - uid: 13089 + components: + - type: Transform + pos: -57.5,11.5 + parent: 2 - uid: 13103 components: - type: Transform @@ -106188,21 +110672,6 @@ entities: - type: Transform pos: 8.5,-41.5 parent: 2 - - uid: 13749 - components: - - type: Transform - pos: -18.5,3.5 - parent: 2 - - uid: 13753 - components: - - type: Transform - pos: -72.5,-6.5 - parent: 2 - - uid: 13754 - components: - - type: Transform - pos: -72.5,-7.5 - parent: 2 - uid: 13775 components: - type: Transform @@ -106233,6 +110702,11 @@ entities: - type: Transform pos: -52.5,-29.5 parent: 2 + - uid: 13861 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 - uid: 13865 components: - type: Transform @@ -106278,6 +110752,11 @@ entities: - type: Transform pos: -39.5,-45.5 parent: 2 + - uid: 14191 + components: + - type: Transform + pos: -43.5,18.5 + parent: 2 - uid: 14208 components: - type: Transform @@ -106288,6 +110767,11 @@ entities: - type: Transform pos: 76.5,11.5 parent: 2 + - uid: 14216 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 - uid: 14223 components: - type: Transform @@ -106316,28 +110800,13 @@ entities: - uid: 14233 components: - type: Transform - pos: -47.5,32.5 - parent: 2 - - uid: 14235 - components: - - type: Transform - pos: -37.5,32.5 + pos: -43.5,16.5 parent: 2 - uid: 14244 components: - type: Transform pos: -28.5,33.5 parent: 2 - - uid: 14253 - components: - - type: Transform - pos: -51.5,33.5 - parent: 2 - - uid: 14260 - components: - - type: Transform - pos: -41.5,32.5 - parent: 2 - uid: 14299 components: - type: Transform @@ -106363,15 +110832,10 @@ entities: - type: Transform pos: -20.5,32.5 parent: 2 - - uid: 14309 - components: - - type: Transform - pos: -60.5,20.5 - parent: 2 - uid: 14310 components: - type: Transform - pos: -60.5,9.5 + pos: -43.5,10.5 parent: 2 - uid: 14311 components: @@ -106383,11 +110847,6 @@ entities: - type: Transform pos: -10.5,29.5 parent: 2 - - uid: 14316 - components: - - type: Transform - pos: -60.5,28.5 - parent: 2 - uid: 14317 components: - type: Transform @@ -106401,88 +110860,88 @@ entities: - uid: 14322 components: - type: Transform - pos: -60.5,30.5 + pos: -43.5,8.5 parent: 2 - uid: 14328 components: - type: Transform - pos: -60.5,25.5 + pos: -43.5,13.5 parent: 2 - uid: 14331 components: - type: Transform pos: -4.5,23.5 parent: 2 + - uid: 14357 + components: + - type: Transform + pos: -43.5,14.5 + parent: 2 - uid: 14358 components: - type: Transform pos: -8.5,16.5 parent: 2 - - uid: 14360 + - uid: 14361 components: - type: Transform - pos: -24.5,14.5 + pos: -44.5,17.5 + parent: 2 + - uid: 14362 + components: + - type: Transform + pos: -44.5,18.5 parent: 2 - uid: 14375 components: - type: Transform pos: -13.5,37.5 parent: 2 - - uid: 14376 - components: - - type: Transform - pos: -60.5,22.5 - parent: 2 - uid: 14377 components: - type: Transform pos: -7.5,16.5 parent: 2 - - uid: 14395 - components: - - type: Transform - pos: -26.5,14.5 - parent: 2 - uid: 14402 components: - type: Transform pos: -3.5,15.5 parent: 2 - - uid: 14403 - components: - - type: Transform - pos: -23.5,11.5 - parent: 2 - - uid: 14408 - components: - - type: Transform - pos: -23.5,-3.5 - parent: 2 - - uid: 14430 - components: - - type: Transform - pos: -60.5,21.5 - parent: 2 - uid: 14437 components: - type: Transform pos: 79.5,-15.5 parent: 2 + - uid: 14453 + components: + - type: Transform + pos: -57.5,13.5 + parent: 2 - uid: 14454 components: - type: Transform - pos: -26.5,1.5 - parent: 2 - - uid: 14455 - components: - - type: Transform - pos: -24.5,1.5 + pos: -57.5,12.5 parent: 2 - uid: 14476 components: - type: Transform pos: 64.5,-58.5 parent: 2 + - uid: 14491 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 + - uid: 14652 + components: + - type: Transform + pos: -34.5,27.5 + parent: 2 + - uid: 14726 + components: + - type: Transform + pos: 68.5,-45.5 + parent: 2 - uid: 14753 components: - type: Transform @@ -106503,11 +110962,51 @@ entities: - type: Transform pos: -50.5,-34.5 parent: 2 + - uid: 14803 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 + - uid: 14804 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - uid: 14806 + components: + - type: Transform + pos: -30.5,30.5 + parent: 2 + - uid: 14814 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 14815 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 14834 + components: + - type: Transform + pos: -52.5,25.5 + parent: 2 - uid: 14858 components: - type: Transform pos: -6.5,-22.5 parent: 2 + - uid: 14860 + components: + - type: Transform + pos: -55.5,22.5 + parent: 2 + - uid: 14902 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 - uid: 14910 components: - type: Transform @@ -106528,6 +111027,11 @@ entities: - type: Transform pos: -62.5,-33.5 parent: 2 + - uid: 14918 + components: + - type: Transform + pos: -55.5,17.5 + parent: 2 - uid: 14919 components: - type: Transform @@ -106551,7 +111055,7 @@ entities: - uid: 14925 components: - type: Transform - pos: -62.5,-22.5 + pos: -44.5,15.5 parent: 2 - uid: 14926 components: @@ -106618,15 +111122,25 @@ entities: - type: Transform pos: -4.5,-54.5 parent: 2 - - uid: 15025 + - uid: 15014 components: - type: Transform - pos: -60.5,23.5 + pos: -48.5,24.5 parent: 2 - - uid: 15026 + - uid: 15016 components: - type: Transform - pos: -61.5,24.5 + pos: -57.5,10.5 + parent: 2 + - uid: 15018 + components: + - type: Transform + pos: -51.5,25.5 + parent: 2 + - uid: 15022 + components: + - type: Transform + pos: -50.5,25.5 parent: 2 - uid: 15049 components: @@ -106643,6 +111157,21 @@ entities: - type: Transform pos: 75.5,-62.5 parent: 2 + - uid: 15180 + components: + - type: Transform + pos: -45.5,7.5 + parent: 2 + - uid: 15191 + components: + - type: Transform + pos: -48.5,5.5 + parent: 2 + - uid: 15238 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 - uid: 15247 components: - type: Transform @@ -106668,15 +111197,10 @@ entities: - type: Transform pos: 57.5,11.5 parent: 2 - - uid: 15317 + - uid: 15351 components: - type: Transform - pos: -51.5,32.5 - parent: 2 - - uid: 15334 - components: - - type: Transform - pos: -27.5,14.5 + pos: -59.5,-20.5 parent: 2 - uid: 15359 components: @@ -106703,15 +111227,10 @@ entities: - type: Transform pos: 35.5,20.5 parent: 2 - - uid: 15469 + - uid: 15480 components: - type: Transform - pos: -45.5,33.5 - parent: 2 - - uid: 15471 - components: - - type: Transform - pos: -48.5,-7.5 + pos: -53.5,-0.5 parent: 2 - uid: 15614 components: @@ -106748,10 +111267,15 @@ entities: - type: Transform pos: 12.5,-75.5 parent: 2 - - uid: 15710 + - uid: 15714 components: - type: Transform - pos: -49.5,33.5 + pos: -55.5,4.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: -54.5,16.5 parent: 2 - uid: 15723 components: @@ -106763,35 +111287,65 @@ entities: - type: Transform pos: -15.5,-45.5 parent: 2 - - uid: 15740 - components: - - type: Transform - pos: -51.5,-9.5 - parent: 2 - uid: 15741 components: - type: Transform pos: 51.5,20.5 parent: 2 + - uid: 15768 + components: + - type: Transform + pos: 65.5,-46.5 + parent: 2 - uid: 15787 components: - type: Transform pos: -53.5,-63.5 parent: 2 - - uid: 15861 + - uid: 15945 components: - type: Transform - pos: -40.5,32.5 + pos: -60.5,-14.5 parent: 2 - - uid: 16039 + - uid: 15948 components: - type: Transform - pos: -36.5,32.5 + pos: -60.5,-14.5 parent: 2 - - uid: 16040 + - uid: 15985 components: - type: Transform - pos: -35.5,32.5 + pos: -60.5,-13.5 + parent: 2 + - uid: 15996 + components: + - type: Transform + pos: -60.5,-12.5 + parent: 2 + - uid: 16006 + components: + - type: Transform + pos: -54.5,-16.5 + parent: 2 + - uid: 16028 + components: + - type: Transform + pos: -60.5,-11.5 + parent: 2 + - uid: 16029 + components: + - type: Transform + pos: -59.5,-11.5 + parent: 2 + - uid: 16031 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 2 + - uid: 16032 + components: + - type: Transform + pos: -60.5,-15.5 parent: 2 - uid: 16048 components: @@ -106828,16 +111382,16 @@ entities: - type: Transform pos: 3.5,-84.5 parent: 2 - - uid: 16125 - components: - - type: Transform - pos: -46.5,33.5 - parent: 2 - uid: 16132 components: - type: Transform pos: 72.5,11.5 parent: 2 + - uid: 16150 + components: + - type: Transform + pos: 65.5,-40.5 + parent: 2 - uid: 16152 components: - type: Transform @@ -106878,45 +111432,145 @@ entities: - type: Transform pos: 75.5,6.5 parent: 2 - - uid: 16252 + - uid: 16250 components: - type: Transform - pos: -36.5,-10.5 + pos: -48.5,-16.5 + parent: 2 + - uid: 16253 + components: + - type: Transform + pos: -47.5,-16.5 + parent: 2 + - uid: 16257 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - uid: 16259 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 16261 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 2 + - uid: 16263 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 2 + - uid: 16264 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 2 + - uid: 16268 + components: + - type: Transform + pos: -53.5,-4.5 + parent: 2 + - uid: 16269 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - uid: 16289 + components: + - type: Transform + pos: -53.5,21.5 + parent: 2 + - uid: 16290 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 16301 + components: + - type: Transform + pos: -53.5,6.5 parent: 2 - uid: 16328 components: - type: Transform pos: -56.5,-61.5 parent: 2 - - uid: 16366 + - uid: 16361 components: - type: Transform - pos: -52.5,-14.5 + pos: -53.5,16.5 parent: 2 - - uid: 16367 + - uid: 16405 components: - type: Transform - pos: -55.5,-14.5 + pos: -51.5,6.5 parent: 2 - - uid: 16368 + - uid: 16406 components: - type: Transform - pos: -55.5,-10.5 + pos: -50.5,6.5 parent: 2 - - uid: 16369 + - uid: 16522 components: - type: Transform - pos: -52.5,-10.5 + pos: 65.5,-43.5 parent: 2 - - uid: 16608 + - uid: 16523 components: - type: Transform - pos: -49.5,-12.5 + pos: 65.5,-42.5 parent: 2 - - uid: 16609 + - uid: 16525 components: - type: Transform - pos: -47.5,-12.5 + pos: 65.5,-41.5 + parent: 2 + - uid: 16546 + components: + - type: Transform + pos: 86.5,-56.5 + parent: 2 + - uid: 16547 + components: + - type: Transform + pos: 85.5,-56.5 + parent: 2 + - uid: 16570 + components: + - type: Transform + pos: 72.5,-41.5 + parent: 2 + - uid: 16575 + components: + - type: Transform + pos: 73.5,-41.5 + parent: 2 + - uid: 16595 + components: + - type: Transform + pos: 71.5,-45.5 + parent: 2 + - uid: 16611 + components: + - type: Transform + pos: 68.5,-39.5 + parent: 2 + - uid: 16615 + components: + - type: Transform + pos: 75.5,-46.5 + parent: 2 + - uid: 16618 + components: + - type: Transform + pos: 75.5,-47.5 + parent: 2 + - uid: 16636 + components: + - type: Transform + pos: 69.5,-46.5 parent: 2 - uid: 16640 components: @@ -106928,6 +111582,11 @@ entities: - type: Transform pos: 75.5,-78.5 parent: 2 + - uid: 16684 + components: + - type: Transform + pos: 70.5,-47.5 + parent: 2 - uid: 16690 components: - type: Transform @@ -106938,11 +111597,21 @@ entities: - type: Transform pos: -61.5,-60.5 parent: 2 + - uid: 16715 + components: + - type: Transform + pos: 70.5,-46.5 + parent: 2 - uid: 16719 components: - type: Transform pos: -61.5,-58.5 parent: 2 + - uid: 16720 + components: + - type: Transform + pos: 76.5,-46.5 + parent: 2 - uid: 16721 components: - type: Transform @@ -106968,16 +111637,36 @@ entities: - type: Transform pos: -9.5,15.5 parent: 2 + - uid: 16834 + components: + - type: Transform + pos: 58.5,-36.5 + parent: 2 + - uid: 16846 + components: + - type: Transform + pos: 73.5,-42.5 + parent: 2 + - uid: 16877 + components: + - type: Transform + pos: 67.5,-45.5 + parent: 2 + - uid: 16881 + components: + - type: Transform + pos: 66.5,-39.5 + parent: 2 + - uid: 16883 + components: + - type: Transform + pos: 80.5,-47.5 + parent: 2 - uid: 16896 components: - type: Transform pos: -60.5,-60.5 parent: 2 - - uid: 16902 - components: - - type: Transform - pos: -49.5,-9.5 - parent: 2 - uid: 16916 components: - type: Transform @@ -107038,6 +111727,11 @@ entities: - type: Transform pos: 60.5,11.5 parent: 2 + - uid: 17007 + components: + - type: Transform + pos: 80.5,-46.5 + parent: 2 - uid: 17028 components: - type: Transform @@ -107068,11 +111762,6 @@ entities: - type: Transform pos: 59.5,11.5 parent: 2 - - uid: 17061 - components: - - type: Transform - pos: -46.5,-3.5 - parent: 2 - uid: 17063 components: - type: Transform @@ -107083,26 +111772,11 @@ entities: - type: Transform pos: 66.5,11.5 parent: 2 - - uid: 17131 - components: - - type: Transform - pos: -47.5,-3.5 - parent: 2 - - uid: 17135 - components: - - type: Transform - pos: -18.5,4.5 - parent: 2 - uid: 17196 components: - type: Transform pos: 87.5,-12.5 parent: 2 - - uid: 17197 - components: - - type: Transform - pos: -60.5,17.5 - parent: 2 - uid: 17199 components: - type: Transform @@ -107111,7 +111785,7 @@ entities: - uid: 17242 components: - type: Transform - pos: -60.5,11.5 + pos: 79.5,-48.5 parent: 2 - uid: 17270 components: @@ -107121,37 +111795,52 @@ entities: - uid: 17276 components: - type: Transform - pos: -60.5,7.5 + pos: 74.5,-39.5 parent: 2 - uid: 17277 components: - type: Transform pos: 86.5,-13.5 parent: 2 + - uid: 17282 + components: + - type: Transform + pos: 78.5,-45.5 + parent: 2 - uid: 17288 components: - type: Transform - pos: 92.5,-40.5 + pos: 78.5,-50.5 parent: 2 - uid: 17289 components: - type: Transform - pos: 91.5,-41.5 + pos: 71.5,-39.5 parent: 2 - - uid: 17290 + - uid: 17294 components: - type: Transform - pos: -18.5,2.5 + pos: 79.5,-45.5 parent: 2 - uid: 17309 components: - type: Transform pos: 57.5,12.5 parent: 2 + - uid: 17324 + components: + - type: Transform + pos: 77.5,-52.5 + parent: 2 - uid: 17420 components: - type: Transform - pos: -36.5,15.5 + pos: 78.5,-49.5 + parent: 2 + - uid: 17487 + components: + - type: Transform + pos: 74.5,-45.5 parent: 2 - uid: 17710 components: @@ -107173,16 +111862,21 @@ entities: - type: Transform pos: 81.5,-24.5 parent: 2 + - uid: 17733 + components: + - type: Transform + pos: 76.5,-54.5 + parent: 2 + - uid: 17750 + components: + - type: Transform + pos: 73.5,-39.5 + parent: 2 - uid: 17758 components: - type: Transform pos: 53.5,11.5 parent: 2 - - uid: 17762 - components: - - type: Transform - pos: -60.5,18.5 - parent: 2 - uid: 17765 components: - type: Transform @@ -107208,11 +111902,6 @@ entities: - type: Transform pos: -27.5,32.5 parent: 2 - - uid: 17781 - components: - - type: Transform - pos: -57.5,32.5 - parent: 2 - uid: 17782 components: - type: Transform @@ -107233,216 +111922,36 @@ entities: - type: Transform pos: -14.5,25.5 parent: 2 - - uid: 17792 - components: - - type: Transform - pos: -61.5,20.5 - parent: 2 - - uid: 17796 - components: - - type: Transform - pos: -54.5,6.5 - parent: 2 - - uid: 17797 - components: - - type: Transform - pos: -53.5,6.5 - parent: 2 - - uid: 17799 - components: - - type: Transform - pos: -56.5,6.5 - parent: 2 - uid: 17802 components: - type: Transform pos: -27.5,37.5 parent: 2 - - uid: 17889 - components: - - type: Transform - pos: -60.5,15.5 - parent: 2 - uid: 17890 components: - type: Transform pos: -14.5,40.5 parent: 2 - - uid: 17891 - components: - - type: Transform - pos: -61.5,14.5 - parent: 2 - - uid: 17892 - components: - - type: Transform - pos: -76.5,-15.5 - parent: 2 - - uid: 17893 - components: - - type: Transform - pos: -60.5,16.5 - parent: 2 - uid: 17894 components: - type: Transform pos: -13.5,39.5 parent: 2 - - uid: 17896 - components: - - type: Transform - pos: -76.5,-9.5 - parent: 2 - - uid: 17897 - components: - - type: Transform - pos: -61.5,19.5 - parent: 2 - - uid: 17898 - components: - - type: Transform - pos: -55.5,-3.5 - parent: 2 - - uid: 17900 - components: - - type: Transform - pos: -62.5,-3.5 - parent: 2 - uid: 17901 components: - type: Transform pos: -14.5,38.5 parent: 2 - - uid: 17903 - components: - - type: Transform - pos: -76.5,-13.5 - parent: 2 - - uid: 17904 - components: - - type: Transform - pos: -57.5,-3.5 - parent: 2 - - uid: 17914 - components: - - type: Transform - pos: -60.5,2.5 - parent: 2 - - uid: 17915 - components: - - type: Transform - pos: -60.5,4.5 - parent: 2 - uid: 17926 components: - type: Transform pos: -16.5,39.5 parent: 2 - - uid: 17928 - components: - - type: Transform - pos: 86.5,-45.5 - parent: 2 - - uid: 17929 - components: - - type: Transform - pos: -60.5,1.5 - parent: 2 - - uid: 17934 - components: - - type: Transform - pos: -62.5,-21.5 - parent: 2 - - uid: 17935 - components: - - type: Transform - pos: -64.5,-21.5 - parent: 2 - - uid: 17936 - components: - - type: Transform - pos: -63.5,-21.5 - parent: 2 - - uid: 17939 - components: - - type: Transform - pos: -61.5,-21.5 - parent: 2 - - uid: 17940 - components: - - type: Transform - pos: -73.5,-21.5 - parent: 2 - - uid: 17941 - components: - - type: Transform - pos: -65.5,-21.5 - parent: 2 - - uid: 17950 - components: - - type: Transform - pos: -44.5,8.5 - parent: 2 - - uid: 17954 - components: - - type: Transform - pos: -60.5,-0.5 - parent: 2 - - uid: 17958 - components: - - type: Transform - pos: -60.5,5.5 - parent: 2 - - uid: 17959 - components: - - type: Transform - pos: -58.5,4.5 - parent: 2 - - uid: 17961 - components: - - type: Transform - pos: -75.5,-6.5 - parent: 2 - - uid: 17962 - components: - - type: Transform - pos: -71.5,-22.5 - parent: 2 - - uid: 17963 - components: - - type: Transform - pos: -59.5,4.5 - parent: 2 - - uid: 17965 - components: - - type: Transform - pos: -59.5,-22.5 - parent: 2 - - uid: 17966 - components: - - type: Transform - pos: -75.5,-18.5 - parent: 2 - uid: 17968 components: - type: Transform pos: 75.5,5.5 parent: 2 - - uid: 18104 - components: - - type: Transform - pos: -75.5,-20.5 - parent: 2 - - uid: 18117 - components: - - type: Transform - pos: -73.5,-4.5 - parent: 2 - - uid: 18118 - components: - - type: Transform - pos: -68.5,-4.5 - parent: 2 - uid: 18119 components: - type: Transform @@ -107463,11 +111972,6 @@ entities: - type: Transform pos: 84.5,-24.5 parent: 2 - - uid: 18125 - components: - - type: Transform - pos: -71.5,-4.5 - parent: 2 - uid: 18126 components: - type: Transform @@ -107478,11 +111982,6 @@ entities: - type: Transform pos: 61.5,12.5 parent: 2 - - uid: 18136 - components: - - type: Transform - pos: -59.5,-3.5 - parent: 2 - uid: 18137 components: - type: Transform @@ -107493,146 +111992,26 @@ entities: - type: Transform pos: 62.5,12.5 parent: 2 - - uid: 18146 - components: - - type: Transform - pos: -61.5,10.5 - parent: 2 - uid: 18147 components: - type: Transform pos: -11.5,27.5 parent: 2 - - uid: 18175 - components: - - type: Transform - pos: -64.5,-20.5 - parent: 2 - - uid: 18189 - components: - - type: Transform - pos: -60.5,-3.5 - parent: 2 - - uid: 18202 - components: - - type: Transform - pos: -59.5,31.5 - parent: 2 - - uid: 18203 - components: - - type: Transform - pos: -31.5,25.5 - parent: 2 - uid: 18204 components: - type: Transform pos: -11.5,32.5 parent: 2 - - uid: 18205 - components: - - type: Transform - pos: -30.5,25.5 - parent: 2 - - uid: 18206 - components: - - type: Transform - pos: -58.5,32.5 - parent: 2 - - uid: 18207 - components: - - type: Transform - pos: -29.5,25.5 - parent: 2 - - uid: 18209 - components: - - type: Transform - pos: -39.5,32.5 - parent: 2 - - uid: 18221 - components: - - type: Transform - pos: -54.5,31.5 - parent: 2 - - uid: 18224 - components: - - type: Transform - pos: -59.5,32.5 - parent: 2 - - uid: 18232 - components: - - type: Transform - pos: -61.5,-3.5 - parent: 2 - - uid: 18238 - components: - - type: Transform - pos: -54.5,33.5 - parent: 2 - - uid: 18241 - components: - - type: Transform - pos: -55.5,33.5 - parent: 2 - - uid: 18246 - components: - - type: Transform - pos: -60.5,32.5 - parent: 2 - - uid: 18253 - components: - - type: Transform - pos: -53.5,33.5 - parent: 2 - - uid: 18255 - components: - - type: Transform - pos: -76.5,-11.5 - parent: 2 - - uid: 18256 - components: - - type: Transform - pos: -63.5,-3.5 - parent: 2 - - uid: 18257 - components: - - type: Transform - pos: -55.5,32.5 - parent: 2 - - uid: 18259 - components: - - type: Transform - pos: -43.5,33.5 - parent: 2 - - uid: 18263 - components: - - type: Transform - pos: -53.5,32.5 - parent: 2 - uid: 18264 components: - type: Transform pos: -11.5,34.5 parent: 2 - - uid: 18268 - components: - - type: Transform - pos: -60.5,31.5 - parent: 2 - - uid: 18271 - components: - - type: Transform - pos: -59.5,33.5 - parent: 2 - uid: 18272 components: - type: Transform pos: 76.5,-3.5 parent: 2 - - uid: 18273 - components: - - type: Transform - pos: -76.5,-10.5 - parent: 2 - uid: 18274 components: - type: Transform @@ -107643,16 +112022,6 @@ entities: - type: Transform pos: 57.5,-6.5 parent: 2 - - uid: 18277 - components: - - type: Transform - pos: -76.5,-16.5 - parent: 2 - - uid: 18280 - components: - - type: Transform - pos: -76.5,-6.5 - parent: 2 - uid: 18281 components: - type: Transform @@ -107698,21 +112067,6 @@ entities: - type: Transform pos: 66.5,10.5 parent: 2 - - uid: 18293 - components: - - type: Transform - pos: -76.5,-12.5 - parent: 2 - - uid: 18294 - components: - - type: Transform - pos: -59.5,-21.5 - parent: 2 - - uid: 18295 - components: - - type: Transform - pos: -60.5,-21.5 - parent: 2 - uid: 18296 components: - type: Transform @@ -107733,16 +112087,6 @@ entities: - type: Transform pos: 62.5,-5.5 parent: 2 - - uid: 18300 - components: - - type: Transform - pos: -67.5,-21.5 - parent: 2 - - uid: 18301 - components: - - type: Transform - pos: -76.5,-7.5 - parent: 2 - uid: 18302 components: - type: Transform @@ -107758,11 +112102,6 @@ entities: - type: Transform pos: 77.5,10.5 parent: 2 - - uid: 18306 - components: - - type: Transform - pos: -68.5,-21.5 - parent: 2 - uid: 18308 components: - type: Transform @@ -107813,11 +112152,6 @@ entities: - type: Transform pos: 63.5,-7.5 parent: 2 - - uid: 18323 - components: - - type: Transform - pos: -76.5,-8.5 - parent: 2 - uid: 18324 components: - type: Transform @@ -107883,40 +112217,25 @@ entities: - type: Transform pos: 65.5,10.5 parent: 2 - - uid: 18345 - components: - - type: Transform - pos: -61.5,12.5 - parent: 2 - - uid: 18349 - components: - - type: Transform - pos: -75.5,-5.5 - parent: 2 - - uid: 18367 - components: - - type: Transform - pos: -69.5,-3.5 - parent: 2 - uid: 18368 components: - type: Transform - pos: -60.5,27.5 + pos: 97.5,-33.5 + parent: 2 + - uid: 18372 + components: + - type: Transform + pos: 96.5,-36.5 parent: 2 - uid: 18375 components: - type: Transform - pos: -60.5,13.5 + pos: 85.5,-37.5 parent: 2 - uid: 18376 components: - type: Transform - pos: -60.5,8.5 - parent: 2 - - uid: 18400 - components: - - type: Transform - pos: -59.5,-2.5 + pos: 86.5,-36.5 parent: 2 - uid: 18408 components: @@ -107933,11 +112252,6 @@ entities: - type: Transform pos: 84.5,-15.5 parent: 2 - - uid: 18428 - components: - - type: Transform - pos: -68.5,-2.5 - parent: 2 - uid: 18429 components: - type: Transform @@ -107946,22 +112260,12 @@ entities: - uid: 18430 components: - type: Transform - pos: -64.5,-2.5 + pos: 92.5,-33.5 parent: 2 - uid: 18432 components: - type: Transform - pos: -77.5,-8.5 - parent: 2 - - uid: 18436 - components: - - type: Transform - pos: -56.5,-3.5 - parent: 2 - - uid: 18438 - components: - - type: Transform - pos: -75.5,-8.5 + pos: 65.5,-38.5 parent: 2 - uid: 18451 components: @@ -107973,26 +112277,11 @@ entities: - type: Transform pos: 92.5,-32.5 parent: 2 - - uid: 18453 - components: - - type: Transform - pos: 92.5,-33.5 - parent: 2 - uid: 18463 components: - type: Transform pos: 90.5,-14.5 parent: 2 - - uid: 18468 - components: - - type: Transform - pos: -75.5,-16.5 - parent: 2 - - uid: 18469 - components: - - type: Transform - pos: -59.5,-4.5 - parent: 2 - uid: 18471 components: - type: Transform @@ -108008,11 +112297,6 @@ entities: - type: Transform pos: 84.5,-10.5 parent: 2 - - uid: 18485 - components: - - type: Transform - pos: 92.5,-34.5 - parent: 2 - uid: 18495 components: - type: Transform @@ -108043,21 +112327,6 @@ entities: - type: Transform pos: 95.5,-19.5 parent: 2 - - uid: 18503 - components: - - type: Transform - pos: 97.5,-36.5 - parent: 2 - - uid: 18506 - components: - - type: Transform - pos: -69.5,-21.5 - parent: 2 - - uid: 18511 - components: - - type: Transform - pos: -68.5,-22.5 - parent: 2 - uid: 18517 components: - type: Transform @@ -108068,26 +112337,6 @@ entities: - type: Transform pos: 97.5,-31.5 parent: 2 - - uid: 18533 - components: - - type: Transform - pos: 92.5,-39.5 - parent: 2 - - uid: 18534 - components: - - type: Transform - pos: 88.5,-43.5 - parent: 2 - - uid: 18536 - components: - - type: Transform - pos: 94.5,-37.5 - parent: 2 - - uid: 18537 - components: - - type: Transform - pos: 83.5,-47.5 - parent: 2 - uid: 18606 components: - type: Transform @@ -108113,6 +112362,11 @@ entities: - type: Transform pos: 78.5,-4.5 parent: 2 + - uid: 18715 + components: + - type: Transform + pos: 76.5,-43.5 + parent: 2 - uid: 18770 components: - type: Transform @@ -108138,21 +112392,6 @@ entities: - type: Transform pos: 87.5,-11.5 parent: 2 - - uid: 18782 - components: - - type: Transform - pos: 95.5,-36.5 - parent: 2 - - uid: 18783 - components: - - type: Transform - pos: 95.5,-37.5 - parent: 2 - - uid: 18784 - components: - - type: Transform - pos: 94.5,-36.5 - parent: 2 - uid: 18785 components: - type: Transform @@ -108173,46 +112412,6 @@ entities: - type: Transform pos: 77.5,-55.5 parent: 2 - - uid: 18789 - components: - - type: Transform - pos: 94.5,-38.5 - parent: 2 - - uid: 18790 - components: - - type: Transform - pos: 80.5,-52.5 - parent: 2 - - uid: 18791 - components: - - type: Transform - pos: 80.5,-54.5 - parent: 2 - - uid: 18793 - components: - - type: Transform - pos: 78.5,-54.5 - parent: 2 - - uid: 18801 - components: - - type: Transform - pos: 95.5,-34.5 - parent: 2 - - uid: 18825 - components: - - type: Transform - pos: -58.5,0.5 - parent: 2 - - uid: 18826 - components: - - type: Transform - pos: -77.5,-16.5 - parent: 2 - - uid: 18827 - components: - - type: Transform - pos: -60.5,0.5 - parent: 2 - uid: 18830 components: - type: Transform @@ -108223,111 +112422,51 @@ entities: - type: Transform pos: -58.5,-21.5 parent: 2 - - uid: 18841 - components: - - type: Transform - pos: -59.5,0.5 - parent: 2 - uid: 18849 components: - type: Transform pos: 54.5,-45.5 parent: 2 - - uid: 18864 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 2 - - uid: 18899 - components: - - type: Transform - pos: -28.5,6.5 - parent: 2 - uid: 18964 components: - type: Transform pos: -59.5,-50.5 parent: 2 - - uid: 19031 + - uid: 18992 components: - type: Transform - pos: -76.5,-17.5 + pos: 96.5,-50.5 parent: 2 - - uid: 19033 + - uid: 18993 components: - type: Transform - pos: -66.5,-3.5 + pos: 96.5,-49.5 parent: 2 - - uid: 19034 + - uid: 18994 components: - type: Transform - pos: -65.5,-3.5 + pos: 92.5,-54.5 parent: 2 - - uid: 19035 + - uid: 18995 components: - type: Transform - pos: -64.5,-3.5 - parent: 2 - - uid: 19036 - components: - - type: Transform - pos: -75.5,-4.5 - parent: 2 - - uid: 19037 - components: - - type: Transform - pos: -59.5,2.5 - parent: 2 - - uid: 19038 - components: - - type: Transform - pos: 93.5,-38.5 + pos: 93.5,-54.5 parent: 2 - uid: 19039 components: - type: Transform - pos: 87.5,-44.5 + pos: 85.5,-47.5 parent: 2 - uid: 19040 components: - type: Transform pos: 86.5,-15.5 parent: 2 - - uid: 19043 - components: - - type: Transform - pos: -75.5,-12.5 - parent: 2 - - uid: 19044 - components: - - type: Transform - pos: -76.5,-18.5 - parent: 2 - - uid: 19047 - components: - - type: Transform - pos: -60.5,-1.5 - parent: 2 - - uid: 19048 - components: - - type: Transform - pos: 86.5,-34.5 - parent: 2 - - uid: 19049 - components: - - type: Transform - pos: 86.5,-35.5 - parent: 2 - uid: 19050 components: - type: Transform pos: 38.5,-77.5 parent: 2 - - uid: 19056 - components: - - type: Transform - pos: 86.5,-38.5 - parent: 2 - uid: 19057 components: - type: Transform @@ -108383,11 +112522,56 @@ entities: - type: Transform pos: 58.5,-75.5 parent: 2 + - uid: 19068 + components: + - type: Transform + pos: 77.5,-57.5 + parent: 2 + - uid: 19070 + components: + - type: Transform + pos: 86.5,-54.5 + parent: 2 + - uid: 19085 + components: + - type: Transform + pos: 83.5,-58.5 + parent: 2 + - uid: 19086 + components: + - type: Transform + pos: 78.5,-60.5 + parent: 2 + - uid: 19087 + components: + - type: Transform + pos: 76.5,-62.5 + parent: 2 + - uid: 19088 + components: + - type: Transform + pos: 77.5,-60.5 + parent: 2 - uid: 19097 components: - type: Transform pos: 6.5,-54.5 parent: 2 + - uid: 19123 + components: + - type: Transform + pos: 86.5,-48.5 + parent: 2 + - uid: 19124 + components: + - type: Transform + pos: 84.5,-48.5 + parent: 2 + - uid: 19125 + components: + - type: Transform + pos: 84.5,-47.5 + parent: 2 - uid: 19142 components: - type: Transform @@ -108423,166 +112607,16 @@ entities: - type: Transform pos: -5.5,-78.5 parent: 2 - - uid: 19290 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 2 - - uid: 19544 - components: - - type: Transform - pos: 81.5,-50.5 - parent: 2 - uid: 19545 components: - type: Transform pos: 77.5,-13.5 parent: 2 - - uid: 19583 - components: - - type: Transform - pos: -73.5,-3.5 - parent: 2 - - uid: 19584 - components: - - type: Transform - pos: -77.5,-12.5 - parent: 2 - - uid: 19585 - components: - - type: Transform - pos: -74.5,-4.5 - parent: 2 - - uid: 19586 - components: - - type: Transform - pos: -58.5,2.5 - parent: 2 - uid: 19591 components: - type: Transform pos: 76.5,-12.5 parent: 2 - - uid: 19592 - components: - - type: Transform - pos: 82.5,-47.5 - parent: 2 - - uid: 19602 - components: - - type: Transform - pos: -18.5,7.5 - parent: 2 - - uid: 19606 - components: - - type: Transform - pos: -18.5,5.5 - parent: 2 - - uid: 19607 - components: - - type: Transform - pos: -18.5,1.5 - parent: 2 - - uid: 19625 - components: - - type: Transform - pos: -18.5,6.5 - parent: 2 - - uid: 19629 - components: - - type: Transform - pos: -71.5,-2.5 - parent: 2 - - uid: 19630 - components: - - type: Transform - pos: -58.5,-3.5 - parent: 2 - - uid: 19631 - components: - - type: Transform - pos: -71.5,-3.5 - parent: 2 - - uid: 19632 - components: - - type: Transform - pos: -72.5,-3.5 - parent: 2 - - uid: 19633 - components: - - type: Transform - pos: -74.5,-20.5 - parent: 2 - - uid: 19634 - components: - - type: Transform - pos: -71.5,-21.5 - parent: 2 - - uid: 19637 - components: - - type: Transform - pos: -64.5,-4.5 - parent: 2 - - uid: 19638 - components: - - type: Transform - pos: -70.5,-21.5 - parent: 2 - - uid: 19639 - components: - - type: Transform - pos: -71.5,-20.5 - parent: 2 - - uid: 19640 - components: - - type: Transform - pos: -59.5,-20.5 - parent: 2 - - uid: 19760 - components: - - type: Transform - pos: -72.5,-21.5 - parent: 2 - - uid: 19761 - components: - - type: Transform - pos: -73.5,-20.5 - parent: 2 - - uid: 19765 - components: - - type: Transform - pos: -68.5,-20.5 - parent: 2 - - uid: 19766 - components: - - type: Transform - pos: -64.5,-22.5 - parent: 2 - - uid: 19767 - components: - - type: Transform - pos: -68.5,-3.5 - parent: 2 - - uid: 19772 - components: - - type: Transform - pos: -60.5,-2.5 - parent: 2 - - uid: 19774 - components: - - type: Transform - pos: -70.5,-3.5 - parent: 2 - - uid: 19776 - components: - - type: Transform - pos: -60.5,3.5 - parent: 2 - - uid: 19777 - components: - - type: Transform - pos: -75.5,-19.5 - parent: 2 - uid: 19861 components: - type: Transform @@ -108718,51 +112752,11 @@ entities: - type: Transform pos: 14.5,-68.5 parent: 2 - - uid: 19970 - components: - - type: Transform - pos: 93.5,-39.5 - parent: 2 - uid: 19975 components: - type: Transform pos: -4.5,-66.5 parent: 2 - - uid: 20007 - components: - - type: Transform - pos: 89.5,-43.5 - parent: 2 - - uid: 20008 - components: - - type: Transform - pos: 86.5,-44.5 - parent: 2 - - uid: 20009 - components: - - type: Transform - pos: 85.5,-45.5 - parent: 2 - - uid: 20010 - components: - - type: Transform - pos: 83.5,-46.5 - parent: 2 - - uid: 20068 - components: - - type: Transform - pos: 64.5,-47.5 - parent: 2 - - uid: 20069 - components: - - type: Transform - pos: 65.5,-46.5 - parent: 2 - - uid: 20070 - components: - - type: Transform - pos: 66.5,-46.5 - parent: 2 - uid: 20071 components: - type: Transform @@ -108798,31 +112792,6 @@ entities: - type: Transform pos: 87.5,-14.5 parent: 2 - - uid: 20116 - components: - - type: Transform - pos: -72.5,-9.5 - parent: 2 - - uid: 20117 - components: - - type: Transform - pos: -73.5,-12.5 - parent: 2 - - uid: 20118 - components: - - type: Transform - pos: -72.5,-17.5 - parent: 2 - - uid: 20119 - components: - - type: Transform - pos: -69.5,-17.5 - parent: 2 - - uid: 20120 - components: - - type: Transform - pos: -65.5,-18.5 - parent: 2 - uid: 20132 components: - type: Transform @@ -108908,126 +112877,21 @@ entities: - type: Transform pos: -3.5,-59.5 parent: 2 - - uid: 20229 - components: - - type: Transform - pos: -30.5,-14.5 - parent: 2 - uid: 20237 components: - type: Transform pos: 9.5,-10.5 parent: 2 - - uid: 20390 - components: - - type: Transform - pos: -36.5,19.5 - parent: 2 - - uid: 20419 - components: - - type: Transform - pos: -35.5,-1.5 - parent: 2 - - uid: 20432 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 2 - - uid: 20445 - components: - - type: Transform - pos: -47.5,8.5 - parent: 2 - - uid: 20453 - components: - - type: Transform - pos: -31.5,-0.5 - parent: 2 - - uid: 20459 - components: - - type: Transform - pos: -27.5,-3.5 - parent: 2 - - uid: 20468 - components: - - type: Transform - pos: -35.5,-3.5 - parent: 2 - - uid: 20469 - components: - - type: Transform - pos: -34.5,-6.5 - parent: 2 - uid: 20484 components: - type: Transform pos: -25.5,-57.5 parent: 2 - - uid: 20551 - components: - - type: Transform - pos: -47.5,-5.5 - parent: 2 - - uid: 20567 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 2 - - uid: 20576 - components: - - type: Transform - pos: -45.5,-4.5 - parent: 2 - - uid: 20585 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 2 - - uid: 20591 - components: - - type: Transform - pos: -45.5,-5.5 - parent: 2 - - uid: 20611 - components: - - type: Transform - pos: -45.5,-7.5 - parent: 2 - - uid: 20664 - components: - - type: Transform - pos: -35.5,17.5 - parent: 2 - - uid: 20667 - components: - - type: Transform - pos: -32.5,15.5 - parent: 2 - - uid: 20677 - components: - - type: Transform - pos: -31.5,16.5 - parent: 2 - - uid: 20678 - components: - - type: Transform - pos: -31.5,17.5 - parent: 2 - - uid: 20679 - components: - - type: Transform - pos: -31.5,18.5 - parent: 2 - uid: 20735 components: - type: Transform pos: 97.5,-23.5 parent: 2 - - uid: 20781 - components: - - type: Transform - pos: -46.5,8.5 - parent: 2 - uid: 20818 components: - type: Transform @@ -109488,21 +113352,6 @@ entities: - type: Transform pos: -47.5,-17.5 parent: 2 - - uid: 21734 - components: - - type: Transform - pos: -49.5,-15.5 - parent: 2 - - uid: 21794 - components: - - type: Transform - pos: -45.5,-6.5 - parent: 2 - - uid: 21811 - components: - - type: Transform - pos: -37.5,11.5 - parent: 2 - uid: 21882 components: - type: Transform @@ -109563,11 +113412,6 @@ entities: - type: Transform pos: -57.5,-55.5 parent: 2 - - uid: 21980 - components: - - type: Transform - pos: -31.5,15.5 - parent: 2 - uid: 21989 components: - type: Transform @@ -109578,16 +113422,6 @@ entities: - type: Transform pos: 15.5,28.5 parent: 2 - - uid: 22030 - components: - - type: Transform - pos: -35.5,13.5 - parent: 2 - - uid: 22095 - components: - - type: Transform - pos: -35.5,11.5 - parent: 2 - uid: 22126 components: - type: Transform @@ -109608,16 +113442,6 @@ entities: - type: Transform pos: 14.5,17.5 parent: 2 - - uid: 22725 - components: - - type: Transform - pos: -46.5,-5.5 - parent: 2 - - uid: 22728 - components: - - type: Transform - pos: -53.5,-0.5 - parent: 2 - uid: 22834 components: - type: Transform @@ -109663,20 +113487,20 @@ entities: - type: Transform pos: 46.5,26.5 parent: 2 - - uid: 23935 + - uid: 24732 components: - type: Transform - pos: -41.5,33.5 + pos: 78.5,-39.5 parent: 2 - - uid: 23937 + - uid: 24733 components: - type: Transform - pos: -41.5,31.5 + pos: 77.5,-38.5 parent: 2 - - uid: 23943 + - uid: 24734 components: - type: Transform - pos: -28.5,-6.5 + pos: 80.5,-37.5 parent: 2 - proto: GrilleBroken entities: @@ -109726,12 +113550,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-67.5 parent: 2 - - uid: 3184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-3.5 - parent: 2 - uid: 3418 components: - type: Transform @@ -109767,12 +113585,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-67.5 parent: 2 - - uid: 5457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,29.5 - parent: 2 - uid: 5518 components: - type: Transform @@ -109795,17 +113607,6 @@ entities: rot: 3.141592653589793 rad pos: 61.5,-81.5 parent: 2 - - uid: 6043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-38.5 - parent: 2 - - uid: 6059 - components: - - type: Transform - pos: 80.5,-41.5 - parent: 2 - uid: 6143 components: - type: Transform @@ -109830,17 +113631,79 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,29.5 parent: 2 + - uid: 7640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-23.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + pos: -62.5,-18.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-16.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-12.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,3.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,4.5 + parent: 2 + - uid: 7706 + components: + - type: Transform + pos: -65.5,39.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: -70.5,15.5 + parent: 2 - uid: 7753 components: - type: Transform pos: -8.5,27.5 parent: 2 + - uid: 7781 + components: + - type: Transform + pos: -70.5,31.5 + parent: 2 - uid: 7785 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-69.5 parent: 2 + - uid: 7825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,38.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,8.5 + parent: 2 - uid: 8055 components: - type: Transform @@ -109944,10 +113807,11 @@ entities: - type: Transform pos: -12.5,-87.5 parent: 2 - - uid: 8301 + - uid: 8330 components: - type: Transform - pos: -60.5,24.5 + rot: -1.5707963267948966 rad + pos: -47.5,38.5 parent: 2 - uid: 8336 components: @@ -109955,6 +113819,11 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-95.5 parent: 2 + - uid: 8359 + components: + - type: Transform + pos: -41.5,35.5 + parent: 2 - uid: 8361 components: - type: Transform @@ -109966,6 +113835,28 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,33.5 parent: 2 + - uid: 8424 + components: + - type: Transform + pos: -57.5,19.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,16.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,23.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + pos: -54.5,25.5 + parent: 2 - uid: 10781 components: - type: Transform @@ -109982,12 +113873,6 @@ entities: - type: Transform pos: 77.5,-70.5 parent: 2 - - uid: 11214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,5.5 - parent: 2 - uid: 12330 components: - type: Transform @@ -109999,17 +113884,33 @@ entities: - type: Transform pos: 58.5,-77.5 parent: 2 - - uid: 13890 + - uid: 14645 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 + - uid: 14675 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,6.5 + pos: -31.5,24.5 parent: 2 - - uid: 14726 + - uid: 14807 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-53.5 + pos: -33.5,31.5 + parent: 2 + - uid: 14809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,30.5 + parent: 2 + - uid: 14817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,26.5 parent: 2 - uid: 14935 components: @@ -110028,12 +113929,28 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,-63.5 parent: 2 + - uid: 15371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-10.5 + parent: 2 + - uid: 15567 + components: + - type: Transform + pos: -56.5,-15.5 + parent: 2 - uid: 15709 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-4.5 parent: 2 + - uid: 15861 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 - uid: 16204 components: - type: Transform @@ -110062,10 +113979,23 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,11.5 parent: 2 - - uid: 16900 + - uid: 16284 components: - type: Transform - pos: -49.5,-7.5 + rot: -1.5707963267948966 rad + pos: -54.5,21.5 + parent: 2 + - uid: 16352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-16.5 + parent: 2 + - uid: 16613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-45.5 parent: 2 - uid: 16941 components: @@ -110073,12 +114003,6 @@ entities: rot: 3.141592653589793 rad pos: -56.5,-63.5 parent: 2 - - uid: 17130 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,10.5 - parent: 2 - uid: 17183 components: - type: Transform @@ -110090,12 +114014,6 @@ entities: - type: Transform pos: -28.5,29.5 parent: 2 - - uid: 17683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-8.5 - parent: 2 - uid: 17716 components: - type: Transform @@ -110137,63 +114055,6 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,-74.5 parent: 2 - - uid: 18227 - components: - - type: Transform - pos: -56.5,32.5 - parent: 2 - - uid: 18229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,32.5 - parent: 2 - - uid: 18230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,32.5 - parent: 2 - - uid: 18231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,32.5 - parent: 2 - - uid: 18233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,6.5 - parent: 2 - - uid: 18235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,32.5 - parent: 2 - - uid: 18251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,12.5 - parent: 2 - - uid: 18252 - components: - - type: Transform - pos: -61.5,11.5 - parent: 2 - - uid: 18260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,32.5 - parent: 2 - - uid: 18261 - components: - - type: Transform - pos: -61.5,33.5 - parent: 2 - uid: 18278 components: - type: Transform @@ -110246,6 +114107,16 @@ entities: rot: 3.141592653589793 rad pos: 76.5,8.5 parent: 2 + - uid: 18366 + components: + - type: Transform + pos: 93.5,-33.5 + parent: 2 + - uid: 18367 + components: + - type: Transform + pos: 94.5,-35.5 + parent: 2 - uid: 18369 components: - type: Transform @@ -110281,12 +114152,6 @@ entities: rot: 3.141592653589793 rad pos: 97.5,-29.5 parent: 2 - - uid: 18541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-36.5 - parent: 2 - uid: 18792 components: - type: Transform @@ -110299,6 +114164,78 @@ entities: rot: -1.5707963267948966 rad pos: 97.5,-30.5 parent: 2 + - uid: 19071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-57.5 + parent: 2 + - uid: 19116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-50.5 + parent: 2 + - uid: 19117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-51.5 + parent: 2 + - uid: 19118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-58.5 + parent: 2 + - uid: 19119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-59.5 + parent: 2 + - uid: 19120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-63.5 + parent: 2 + - uid: 19121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,-55.5 + parent: 2 + - uid: 19122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-54.5 + parent: 2 + - uid: 19126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-46.5 + parent: 2 + - uid: 19127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-49.5 + parent: 2 + - uid: 19128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-49.5 + parent: 2 + - uid: 19130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-52.5 + parent: 2 - uid: 19150 components: - type: Transform @@ -110372,34 +114309,6 @@ entities: - type: Transform pos: 97.5,-32.5 parent: 2 - - uid: 19942 - components: - - type: Transform - pos: 96.5,-34.5 - parent: 2 - - uid: 20053 - components: - - type: Transform - pos: 71.5,-44.5 - parent: 2 - - uid: 20056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-40.5 - parent: 2 - - uid: 20057 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-42.5 - parent: 2 - - uid: 20058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-33.5 - parent: 2 - uid: 20059 components: - type: Transform @@ -110429,56 +114338,23 @@ entities: rot: 1.5707963267948966 rad pos: 96.5,-28.5 parent: 2 - - uid: 20064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-43.5 - parent: 2 - - uid: 20065 - components: - - type: Transform - pos: 82.5,-46.5 - parent: 2 - uid: 20066 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-48.5 parent: 2 - - uid: 20067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-39.5 - parent: 2 - uid: 20078 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-53.5 parent: 2 - - uid: 20079 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-48.5 - parent: 2 - uid: 20080 components: - type: Transform pos: 75.5,-52.5 parent: 2 - - uid: 20081 - components: - - type: Transform - pos: 77.5,-54.5 - parent: 2 - - uid: 20601 - components: - - type: Transform - pos: -40.5,-17.5 - parent: 2 - uid: 20740 components: - type: Transform @@ -110547,17 +114423,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-46.5 parent: 2 - - uid: 21735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-16.5 - parent: 2 - - uid: 21736 - components: - - type: Transform - pos: -48.5,-16.5 - parent: 2 - uid: 22826 components: - type: Transform @@ -110629,16 +114494,6 @@ entities: - type: Transform pos: 72.5,-54.5 parent: 2 - - uid: 751 - components: - - type: Transform - pos: -60.5,14.5 - parent: 2 - - uid: 753 - components: - - type: Transform - pos: -58.5,6.5 - parent: 2 - uid: 2868 components: - type: Transform @@ -110719,26 +114574,6 @@ entities: - type: Transform pos: -2.5,-86.5 parent: 2 - - uid: 6260 - components: - - type: Transform - pos: 83.5,-42.5 - parent: 2 - - uid: 6961 - components: - - type: Transform - pos: 87.5,-38.5 - parent: 2 - - uid: 6978 - components: - - type: Transform - pos: 85.5,-46.5 - parent: 2 - - uid: 7130 - components: - - type: Transform - pos: -67.5,-22.5 - parent: 2 - uid: 7244 components: - type: Transform @@ -110749,15 +114584,40 @@ entities: - type: Transform pos: 92.5,-29.5 parent: 2 - - uid: 7412 + - uid: 7834 components: - type: Transform - pos: 84.5,-46.5 + pos: -56.5,38.5 parent: 2 - - uid: 7652 + - uid: 7844 components: - type: Transform - pos: 83.5,-37.5 + pos: -70.5,21.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + pos: -57.5,39.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + pos: -70.5,38.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + pos: -70.5,33.5 + parent: 2 + - uid: 8042 + components: + - type: Transform + pos: -70.5,18.5 + parent: 2 + - uid: 8053 + components: + - type: Transform + pos: -70.5,11.5 parent: 2 - uid: 8056 components: @@ -110784,11 +114644,6 @@ entities: - type: Transform pos: 28.5,-70.5 parent: 2 - - uid: 8217 - components: - - type: Transform - pos: 85.5,-35.5 - parent: 2 - uid: 8223 components: - type: Transform @@ -110804,11 +114659,6 @@ entities: - type: Transform pos: -13.5,-70.5 parent: 2 - - uid: 8401 - components: - - type: Transform - pos: 91.5,-40.5 - parent: 2 - uid: 8642 components: - type: Transform @@ -110829,11 +114679,6 @@ entities: - type: Transform pos: -62.5,-40.5 parent: 2 - - uid: 10686 - components: - - type: Transform - pos: -53.5,2.5 - parent: 2 - uid: 10739 components: - type: Transform @@ -110844,55 +114689,30 @@ entities: - type: Transform pos: 92.5,-28.5 parent: 2 - - uid: 12006 - components: - - type: Transform - pos: -53.5,2.5 - parent: 2 - uid: 12222 components: - type: Transform pos: 39.5,-77.5 parent: 2 - - uid: 12894 + - uid: 13899 components: - type: Transform - pos: -66.5,-21.5 + pos: -43.5,15.5 parent: 2 - - uid: 14462 + - uid: 14316 components: - type: Transform - pos: -76.5,-14.5 + pos: -43.5,9.5 parent: 2 - - uid: 14918 + - uid: 14360 components: - type: Transform - pos: -77.5,-11.5 + pos: -43.5,11.5 parent: 2 - - uid: 14921 + - uid: 16616 components: - type: Transform - pos: -63.5,-22.5 - parent: 2 - - uid: 14936 - components: - - type: Transform - pos: -61.5,-2.5 - parent: 2 - - uid: 17157 - components: - - type: Transform - pos: -60.5,19.5 - parent: 2 - - uid: 17191 - components: - - type: Transform - pos: -60.5,6.5 - parent: 2 - - uid: 17296 - components: - - type: Transform - pos: -67.5,-3.5 + pos: 64.5,-47.5 parent: 2 - uid: 17305 components: @@ -110919,21 +114739,6 @@ entities: - type: Transform pos: 65.5,12.5 parent: 2 - - uid: 17750 - components: - - type: Transform - pos: -60.5,26.5 - parent: 2 - - uid: 17755 - components: - - type: Transform - pos: -58.5,31.5 - parent: 2 - - uid: 17756 - components: - - type: Transform - pos: -60.5,33.5 - parent: 2 - uid: 18133 components: - type: Transform @@ -110954,16 +114759,6 @@ entities: - type: Transform pos: 59.5,-5.5 parent: 2 - - uid: 18143 - components: - - type: Transform - pos: -44.5,32.5 - parent: 2 - - uid: 18145 - components: - - type: Transform - pos: -38.5,32.5 - parent: 2 - uid: 18176 components: - type: Transform @@ -111009,21 +114804,46 @@ entities: - type: Transform pos: 54.5,11.5 parent: 2 - - uid: 18601 + - uid: 19141 components: - type: Transform - pos: -54.5,32.5 + pos: 84.5,-57.5 + parent: 2 + - uid: 19152 + components: + - type: Transform + pos: 85.5,-48.5 + parent: 2 + - uid: 19160 + components: + - type: Transform + pos: 93.5,-51.5 + parent: 2 + - uid: 19161 + components: + - type: Transform + pos: 77.5,-61.5 + parent: 2 + - uid: 19165 + components: + - type: Transform + pos: 77.5,-59.5 + parent: 2 + - uid: 19166 + components: + - type: Transform + pos: 79.5,-49.5 + parent: 2 + - uid: 19167 + components: + - type: Transform + pos: 81.5,-46.5 parent: 2 - uid: 19183 components: - type: Transform pos: 10.5,-96.5 parent: 2 - - uid: 19920 - components: - - type: Transform - pos: 89.5,-42.5 - parent: 2 - uid: 19921 components: - type: Transform @@ -111129,11 +114949,6 @@ entities: - type: Transform pos: 73.5,-80.5 parent: 2 - - uid: 22906 - components: - - type: Transform - pos: 82.5,-43.5 - parent: 2 - uid: 22918 components: - type: Transform @@ -111159,73 +114974,27 @@ entities: - type: Transform pos: -12.5,-86.5 parent: 2 - - uid: 23938 - components: - - type: Transform - pos: -42.5,33.5 - parent: 2 - - uid: 23939 - components: - - type: Transform - pos: -42.5,31.5 - parent: 2 - proto: GunSafeDisabler entities: - - uid: 2207 + - uid: 20618 components: + - type: MetaData + name: disabler safe (5) - type: Transform - anchored: True - pos: -21.5,2.5 + pos: -41.5,3.5 parent: 2 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21962 - - 21619 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null + - type: Label + currentLabel: 5 + - type: NameModifier + baseName: disabler safe - proto: GunSafeLaserCarbine entities: - - uid: 19954 + - uid: 20614 components: + - type: MetaData + name: laser safe (3) - type: Transform - anchored: True - pos: -20.5,4.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: GunSafePistolMk58 - entities: - - uid: 8729 - components: - - type: Transform - anchored: True - pos: -20.5,5.5 + pos: -37.5,5.5 parent: 2 - type: EntityStorage air: @@ -111245,30 +115014,91 @@ entities: - 0 - 0 - 0 - - type: Physics - bodyType: Static -- proto: GunSafeRifleLecter + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 114 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Label + currentLabel: 3 + - type: NameModifier + baseName: laser safe +- proto: GunSafePistolMk58 entities: - - uid: 19580 - components: - - type: Transform - anchored: True - pos: -20.5,3.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: GunSafeShotgunKammerer - entities: - - uid: 3956 + - uid: 20656 components: - type: MetaData - desc: A standard-issue Nanotrasen storage unit, contains 2 kammerer shotguns. + name: mk58 safe (4) - type: Transform - anchored: True - pos: -20.5,2.5 + pos: -41.5,4.5 parent: 2 - - type: Physics - bodyType: Static + - type: Label + currentLabel: 4 + - type: NameModifier + baseName: mk58 safe +- proto: GunSafeRifleLecter + entities: + - uid: 20676 + components: + - type: MetaData + name: lecter safe (2) + - type: Transform + pos: -35.5,5.5 + parent: 2 + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: lecter safe +- proto: GunSafeShotgunKammerer + entities: + - uid: 20615 + components: + - type: MetaData + name: kammerer safe (2) + - type: Transform + pos: -38.5,5.5 + parent: 2 + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: kammerer safe +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 20611 + components: + - type: MetaData + name: drozd safe (2) + - type: Transform + pos: -36.5,5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: drozd safe - proto: GyroscopeUnanchored entities: - uid: 21926 @@ -111285,18 +115115,13 @@ entities: - type: Transform pos: -18.202019,-50.432945 parent: 2 - - uid: 14807 + - uid: 11330 components: - type: Transform - pos: -21.216204,10.476481 + pos: -45.511314,2.284298 parent: 2 - proto: HandheldHealthAnalyzer entities: - - uid: 452 - components: - - type: Transform - pos: -28.477646,12.341827 - parent: 2 - uid: 4368 components: - type: Transform @@ -111314,6 +115139,11 @@ entities: - type: Transform pos: 18.62692,3.6997924 parent: 2 + - uid: 12573 + components: + - type: Transform + pos: -45.356728,-5.5768757 + parent: 2 - uid: 13069 components: - type: Transform @@ -111373,10 +115203,10 @@ entities: parent: 2 - proto: HarmonicaInstrument entities: - - uid: 20257 + - uid: 19624 components: - type: Transform - pos: -41.42886,0.6378641 + pos: -29.543543,9.591145 parent: 2 - proto: HeatExchanger entities: @@ -111422,38 +115252,38 @@ entities: color: '#03FCD3FF' - proto: HighSecArmoryLocked entities: - - uid: 11942 + - uid: 10654 components: - type: Transform - pos: -23.5,3.5 + pos: -37.5,0.5 parent: 2 - - uid: 19624 + - uid: 10656 components: - type: Transform - pos: -23.5,5.5 + pos: -36.5,0.5 parent: 2 - proto: HighSecCommandLocked entities: + - uid: 1842 + components: + - type: Transform + pos: 85.5,-42.5 + parent: 2 - uid: 4965 components: - type: Transform pos: -30.5,-61.5 parent: 2 - - uid: 6253 - components: - - type: Transform - pos: -56.5,-12.5 - parent: 2 - - uid: 8573 - components: - - type: Transform - pos: -59.5,-12.5 - parent: 2 - uid: 9590 components: - type: Transform pos: 28.5,-10.5 parent: 2 + - uid: 17065 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 2 - proto: HolofanProjector entities: - uid: 13003 @@ -111469,28 +115299,21 @@ entities: - uid: 16646 components: - type: Transform - pos: -13.111154,-8.26818 + pos: -12.070991,-1.2483382 parent: 2 -- proto: HolopadAiBackupPower +- proto: HolopadAiCore entities: - - uid: 15 + - uid: 17960 components: - type: Transform - pos: -63.5,-9.5 - parent: 2 -- proto: HolopadAiMain - entities: - - uid: 6738 - components: - - type: Transform - pos: -51.5,-12.5 + pos: 87.5,-42.5 parent: 2 - proto: HolopadAiUpload entities: - - uid: 20709 + - uid: 17057 components: - type: Transform - pos: -62.5,-16.5 + pos: 68.5,-42.5 parent: 2 - proto: HolopadCargoBayLongRange entities: @@ -111564,10 +115387,10 @@ entities: parent: 2 - proto: HolopadCommandHos entities: - - uid: 9940 + - uid: 24271 components: - type: Transform - pos: -22.5,11.5 + pos: -44.5,2.5 parent: 2 - proto: HolopadCommandMeetingRoom entities: @@ -111604,6 +115427,13 @@ entities: - type: Transform pos: -12.5,-19.5 parent: 2 +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 23808 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 - proto: HolopadEngineeringAtmosMain entities: - uid: 12662 @@ -111777,19 +115607,19 @@ entities: - type: Transform pos: 34.5,-25.5 parent: 2 -- proto: HolopadSecurityBreakroom +- proto: HolopadSecurityArmory entities: - - uid: 20799 + - uid: 11806 components: - type: Transform - pos: -25.5,4.5 + pos: -37.5,3.5 parent: 2 - proto: HolopadSecurityBrigMed entities: - - uid: 20816 + - uid: 23334 components: - type: Transform - pos: -28.5,10.5 + pos: -44.5,-7.5 parent: 2 - proto: HolopadSecurityDetective entities: @@ -111798,6 +115628,20 @@ entities: - type: Transform pos: 36.5,2.5 parent: 2 +- proto: HolopadSecurityFront + entities: + - uid: 12603 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 +- proto: HolopadSecurityInterrogation + entities: + - uid: 11654 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 - proto: HolopadSecurityLawyer entities: - uid: 13893 @@ -111807,24 +115651,24 @@ entities: parent: 2 - proto: HolopadSecurityLockerRoom entities: - - uid: 20250 + - uid: 23419 components: - type: Transform - pos: -25.5,16.5 + pos: -38.5,-7.5 parent: 2 - proto: HolopadSecurityPerma entities: - - uid: 23929 + - uid: 699 components: - type: Transform - pos: -38.5,-8.5 + pos: -22.5,10.5 parent: 2 - proto: HolopadSecurityWarden entities: - - uid: 20514 + - uid: 23344 components: - type: Transform - pos: -20.5,-4.5 + pos: -25.5,-8.5 parent: 2 - proto: HolopadServiceBar entities: @@ -111882,24 +115726,19 @@ entities: - type: Transform pos: 14.5,-52.5 parent: 2 -- proto: HoloprojectorSecurity - entities: - - uid: 14409 - components: - - type: Transform - pos: -27.478722,15.819984 - parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 3027 + - uid: 9637 components: - type: Transform - pos: -49.5,2.5 + rot: -1.5707963267948966 rad + pos: -33.5,3.5 parent: 2 - - uid: 5436 + - uid: 9642 components: - type: Transform - pos: -49.5,4.5 + rot: -1.5707963267948966 rad + pos: -31.5,3.5 parent: 2 - uid: 12844 components: @@ -111982,6 +115821,11 @@ entities: - type: Transform pos: 17.5,-2.5 parent: 2 + - uid: 20560 + components: + - type: Transform + pos: -36.5,24.5 + parent: 2 - proto: HydroponicsToolClippers entities: - uid: 3432 @@ -111989,17 +115833,17 @@ entities: - type: Transform pos: -17.829746,-39.424503 parent: 2 + - uid: 10527 + components: + - type: Transform + parent: 10503 + - type: Physics + canCollide: False - uid: 10577 components: - type: Transform pos: 7.500762,-57.955555 parent: 2 - - uid: 13137 - components: - - type: Transform - parent: 13091 - - type: Physics - canCollide: False - uid: 17266 components: - type: Transform @@ -112024,22 +115868,27 @@ entities: - type: Transform pos: -18.932138,-39.314594 parent: 2 + - uid: 10506 + components: + - type: Transform + parent: 10503 + - type: Physics + canCollide: False - uid: 11710 components: - type: Transform pos: 7.455774,-57.62218 parent: 2 - - uid: 13276 - components: - - type: Transform - parent: 13091 - - type: Physics - canCollide: False - uid: 17265 components: - type: Transform pos: 42.540768,-61.447887 parent: 2 + - uid: 24496 + components: + - type: Transform + pos: -25.419449,-12.373899 + parent: 2 - proto: HydroponicsToolScythe entities: - uid: 3431 @@ -112059,10 +115908,10 @@ entities: - type: Transform pos: -18.8175,-39.314594 parent: 2 - - uid: 13343 + - uid: 10524 components: - type: Transform - parent: 13091 + parent: 10503 - type: Physics canCollide: False - uid: 15746 @@ -112077,11 +115926,10 @@ entities: parent: 2 - proto: hydroponicsTray entities: - - uid: 491 + - uid: 621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-8.5 + pos: -23.5,15.5 parent: 2 - uid: 715 components: @@ -112089,6 +115937,26 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-37.5 parent: 2 + - uid: 811 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 - uid: 2503 components: - type: Transform @@ -112177,18 +116045,6 @@ entities: - type: Transform pos: 44.5,-62.5 parent: 2 - - uid: 12992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-5.5 - parent: 2 - - uid: 14414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-7.5 - parent: 2 - uid: 17161 components: - type: Transform @@ -112199,18 +116055,6 @@ entities: - type: Transform pos: 47.5,-62.5 parent: 2 - - uid: 20424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-6.5 - parent: 2 - - uid: 20430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-4.5 - parent: 2 - proto: IDComputerCircuitboard entities: - uid: 9345 @@ -112218,6 +116062,13 @@ entities: - type: Transform pos: 10.56266,-14.37939 parent: 2 +- proto: InflatableWall + entities: + - uid: 24293 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 - proto: IngotGold entities: - uid: 8246 @@ -112246,37 +116097,36 @@ entities: parent: 2 - proto: IntercomAll entities: - - uid: 16472 + - uid: 11805 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-13.5 + pos: 91.5,-43.5 parent: 2 - - uid: 16473 + - uid: 16872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-12.5 + pos: 91.5,-41.5 parent: 2 - - uid: 16474 + - uid: 17157 components: - type: Transform - pos: -67.5,-11.5 + rot: -1.5707963267948966 rad + pos: 92.5,-42.5 parent: 2 - proto: IntercomCommon entities: - - uid: 10537 + - uid: 19637 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,0.5 + pos: -33.5,10.5 parent: 2 -- proto: IntercomElectronics - entities: - - uid: 16476 + - uid: 24129 components: - type: Transform - pos: -61.65887,-11.452108 + rot: -1.5707963267948966 rad + pos: -22.5,9.5 parent: 2 - proto: IntercomEngineering entities: @@ -112292,6 +116142,12 @@ entities: rot: 3.141592653589793 rad pos: -11.5,1.5 parent: 2 + - uid: 24823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 2 - proto: IntercomMedical entities: - uid: 21749 @@ -112309,11 +116165,17 @@ entities: parent: 2 - proto: IntercomSecurity entities: - - uid: 502 + - uid: 12582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-2.5 + rot: 3.141592653589793 rad + pos: -20.5,-5.5 + parent: 2 + - uid: 12601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-4.5 parent: 2 - proto: IntercomSupply entities: @@ -112333,14 +116195,6 @@ entities: parent: 2 - proto: JanitorServiceLight entities: - - uid: 16099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - uid: 16102 components: - type: Transform @@ -112370,6 +116224,12 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-33.5 parent: 2 + - uid: 24050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 2 - proto: JetpackMiniFilled entities: - uid: 12739 @@ -112384,16 +116244,20 @@ entities: parent: 2 - proto: JetpackSecurityFilled entities: - - uid: 23318 + - uid: 106 components: - type: Transform - pos: -22.334614,4.6755686 - parent: 2 - - uid: 23319 + parent: 20664 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20607 components: - type: Transform - pos: -22.311176,4.589631 - parent: 2 + parent: 20657 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Jug entities: - uid: 12111 @@ -112432,23 +116296,23 @@ entities: - type: Transform pos: -6.5,-30.5 parent: 2 + - uid: 10452 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 - uid: 18794 components: - type: Transform pos: 44.5,-75.5 parent: 2 - - uid: 20571 + - uid: 24106 components: - type: Transform - pos: -36.5,-1.5 + pos: 18.5,-6.5 parent: 2 - proto: KitchenReagentGrinder entities: - - uid: 150 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 2 - uid: 2586 components: - type: Transform @@ -112464,10 +116328,15 @@ entities: - type: Transform pos: -29.5,-36.5 parent: 2 - - uid: 7200 + - uid: 10451 components: - type: Transform - pos: 21.5,-6.5 + pos: -26.5,13.5 + parent: 2 + - uid: 24075 + components: + - type: Transform + pos: 19.5,-6.5 parent: 2 - proto: KitchenSpike entities: @@ -112478,20 +116347,20 @@ entities: parent: 2 - proto: KnifePlastic entities: - - uid: 698 - components: - - type: Transform - pos: -36.48029,-2.0989318 - parent: 2 - uid: 5739 components: - type: Transform pos: -26.93114,-48.32984 parent: 2 - - uid: 17282 + - uid: 19606 components: - type: Transform - pos: -36.41776,-2.182323 + pos: -30.092619,15.567259 + parent: 2 + - uid: 19607 + components: + - type: Transform + pos: -29.998821,15.582893 parent: 2 - proto: KoboldCubeWrapped entities: @@ -112507,22 +116376,6 @@ entities: - type: Transform pos: 19.631758,-58.97455 parent: 2 - - type: HandheldLight - toggleActionEntity: 13295 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 13295 - - type: Physics - canCollide: True - - type: ActionsContainer - proto: LampBanana entities: - uid: 5214 @@ -112537,112 +116390,32 @@ entities: - type: Transform pos: 46.70643,-33.07726 parent: 2 - - type: HandheldLight - toggleActionEntity: 9205 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 9205 - - type: Physics - canCollide: True - - type: ActionsContainer - uid: 3731 components: - type: Transform pos: 20.4856,-35.072044 parent: 2 - - type: HandheldLight - toggleActionEntity: 3732 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 3732 - - type: Physics - canCollide: True - - type: ActionsContainer - uid: 4105 components: - type: Transform pos: 21.482328,-44.174335 parent: 2 - - type: HandheldLight - toggleActionEntity: 4147 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 4147 - - type: Physics - canCollide: True - - type: ActionsContainer - uid: 6098 components: - type: Transform pos: -36.48969,-53.059856 parent: 2 - - type: HandheldLight - toggleActionEntity: 6113 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 6113 - - type: Physics - canCollide: True - - type: ActionsContainer - uid: 10091 components: - type: Transform pos: 28.348837,11.900307 parent: 2 - - type: HandheldLight - toggleActionEntity: 10092 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 10092 - - type: Physics - canCollide: True - - type: ActionsContainer - proto: LampInterrogator entities: - - uid: 373 + - uid: 11635 components: - type: Transform - pos: -30.54271,3.8887415 + pos: -32.517487,1.9459085 parent: 2 - proto: Lantern entities: @@ -112651,20 +116424,6 @@ entities: - type: Transform pos: -25.306932,23.640022 parent: 2 - - type: HandheldLight - toggleActionEntity: 7271 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 7271 - - type: ActionsContainer - uid: 3105 components: - type: Transform @@ -112675,39 +116434,11 @@ entities: - type: Transform pos: 36.56211,-3.2625933 parent: 2 - - type: HandheldLight - toggleActionEntity: 3807 - - type: ContainerContainer - containers: - actions: !type:Container - showEnts: False - occludes: True - ents: - - 3807 - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: ActionsContainer - uid: 5977 components: - type: Transform pos: 18.047396,-41.177155 parent: 2 - - type: HandheldLight - toggleActionEntity: 5978 - - type: ContainerContainer - containers: - actions: !type:Container - showEnts: False - occludes: True - ents: - - 5978 - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: ActionsContainer - proto: LauncherCreamPie entities: - uid: 14215 @@ -112720,22 +116451,22 @@ entities: - uid: 982 components: - type: Transform - pos: 19.739239,-6.3760834 + pos: 20.494286,-6.373911 parent: 2 - uid: 20629 components: - type: Transform - pos: 19.754864,-6.1260834 + pos: 20.400536,-6.202036 parent: 2 - uid: 22026 components: - type: Transform - pos: 19.739239,-6.2979584 + pos: 20.72866,-6.217661 parent: 2 - uid: 22138 components: - type: Transform - pos: 19.770489,-6.2042084 + pos: 20.713036,-6.389536 parent: 2 - proto: LGBTQHandyFlag entities: @@ -112746,70 +116477,64 @@ entities: parent: 2 - proto: LightBulbCrystalBlue entities: - - uid: 9513 + - uid: 18242 components: - type: Transform - pos: -23.288647,21.539906 - parent: 2 + parent: 18241 + - type: Physics + canCollide: False + - uid: 18352 + components: + - type: Transform + parent: 18350 + - type: Physics + canCollide: False + - uid: 18354 + components: + - type: Transform + parent: 18353 + - type: Physics + canCollide: False + - uid: 18356 + components: + - type: Transform + parent: 18355 + - type: Physics + canCollide: False - proto: LightBulbCrystalCyan entities: - - uid: 9503 - components: - - type: Transform - pos: -23.507505,21.644144 - parent: 2 - uid: 12390 components: - type: Transform parent: 12365 - type: Physics canCollide: False -- proto: LightBulbCrystalGreen - entities: - - uid: 9466 - components: - - type: Transform - pos: -23.736786,21.508635 - parent: 2 -- proto: LightBulbCrystalOrange - entities: - - uid: 2179 - components: - - type: Transform - pos: -23.299068,21.82135 - parent: 2 - proto: LightBulbCrystalPink entities: - - uid: 9464 - components: - - type: Transform - pos: -23.736786,21.831776 - parent: 2 - uid: 12221 components: - type: Transform parent: 12207 - type: Physics canCollide: False -- proto: LightBulbCrystalRed - entities: - - uid: 9465 + - uid: 23799 components: - type: Transform - pos: -23.497084,21.946438 - parent: 2 + parent: 23798 + - type: Physics + canCollide: False - proto: Lighter entities: - - uid: 5674 - components: - - type: Transform - pos: 52.797794,-38.31231 - parent: 2 - uid: 6181 components: - type: Transform pos: 36.20289,-3.421843 parent: 2 + - uid: 24223 + components: + - type: Transform + pos: -30.366573,17.260607 + parent: 2 - proto: LightReplacerEmpty entities: - uid: 9366 @@ -112819,35 +116544,49 @@ entities: parent: 2 - proto: LockableButtonArmory entities: - - uid: 5956 + - uid: 1671 components: - - type: MetaData - name: Shutters - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-5.5 + rot: 1.5707963267948966 rad + pos: -23.5,-7.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2359: + 1700: - - Pressed - Toggle - 3570: - - - Pressed - - DoorBolt - 15932: - - - Pressed - - DoorBolt - 14572: - - - Pressed - - DoorBolt - 16028: - - - Pressed - - DoorBolt - 23932: + 2243: - - Pressed - Toggle - 23931: + 24817: + - - Pressed + - Toggle + 24818: + - - Pressed + - Toggle + 24821: + - - Pressed + - Toggle + 24819: + - - Pressed + - Toggle + 24820: + - - Pressed + - Toggle + 24822: + - - Pressed + - Toggle + - uid: 12054 + components: + - type: MetaData + name: Blast Door + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10652: - - Pressed - Toggle - proto: LockableButtonAtmospherics @@ -112900,6 +116639,50 @@ entities: 16090: - - Pressed - Toggle +- proto: LockableButtonBrig + entities: + - uid: 19649 + components: + - type: MetaData + name: Visitation Shutters + - type: Transform + pos: -26.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10686: + - - Pressed + - Toggle + 10682: + - - Pressed + - Toggle + 24120: + - - Pressed + - Toggle + 24121: + - - Pressed + - Toggle + 24122: + - - Pressed + - Toggle + 24128: + - - Pressed + - Toggle + 24127: + - - Pressed + - Toggle + 24126: + - - Pressed + - Toggle + 24123: + - - Pressed + - Toggle + 24124: + - - Pressed + - Toggle + 24125: + - - Pressed + - Toggle - proto: LockableButtonCaptain entities: - uid: 195 @@ -113230,15 +117013,33 @@ entities: - Toggle - proto: LockableButtonHeadOfSecurity entities: - - uid: 14821 + - uid: 20774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,12.5 + rot: -1.5707963267948966 rad + pos: -42.5,2.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 7960: + 20772: + - - Pressed + - Toggle + 20771: + - - Pressed + - Toggle + 20770: + - - Pressed + - Toggle + 20769: + - - Pressed + - Toggle + 20758: + - - Pressed + - Toggle + 20731: + - - Pressed + - Toggle + 20768: - - Pressed - Toggle - proto: LockableButtonHydroponics @@ -113533,103 +117334,6 @@ entities: 17616: - - Pressed - Toggle -- proto: LockableButtonSecurity - entities: - - uid: 345 - components: - - type: MetaData - name: Shutters - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,14.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 21876: - - - Pressed - - Toggle - 22133: - - - Pressed - - Toggle - 710: - - - Pressed - - Toggle - - uid: 18828 - components: - - type: MetaData - name: Shutters - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 23946: - - - Pressed - - Toggle - 23922: - - - Pressed - - Toggle - - uid: 22713 - components: - - type: MetaData - name: Shutters - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,9.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 10652: - - - Pressed - - Toggle - 2582: - - - Pressed - - Toggle - - uid: 22723 - components: - - type: MetaData - name: Shutters - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,1.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 813: - - - Pressed - - Toggle - 304: - - - Pressed - - Toggle - 22721: - - - Pressed - - Toggle - 22720: - - - Pressed - - Toggle - 22719: - - - Pressed - - Toggle - - uid: 23930 - components: - - type: MetaData - name: Perma Visitation Shutters - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 18938: - - - Pressed - - Toggle - 476: - - - Pressed - - Toggle - 18561: - - - Pressed - - Toggle - proto: LockableButtonTheatre entities: - uid: 5329 @@ -113645,9 +117349,6 @@ entities: - - Pressed - Toggle 14012: - - - Pressed - - Toggle - 14774: - - Pressed - Toggle 20173: @@ -113664,20 +117365,20 @@ entities: - Toggle - proto: LockerAtmosphericsFilledHardsuit entities: - - uid: 1929 + - uid: 1204 components: - type: Transform - pos: -10.5,-6.5 + pos: -11.5,-4.5 parent: 2 - - uid: 1930 + - uid: 1212 components: - type: Transform - pos: -11.5,-6.5 + pos: -12.5,-4.5 parent: 2 - - uid: 2163 + - uid: 1941 components: - type: Transform - pos: -10.5,-8.5 + pos: -13.5,-4.5 parent: 2 - proto: LockerBoozeFilled entities: @@ -113789,13 +117490,6 @@ entities: - type: Transform pos: -5.5,-17.5 parent: 2 -- proto: LockerEvidence - entities: - - uid: 466 - components: - - type: Transform - pos: -27.5,11.5 - parent: 2 - proto: LockerFreezer entities: - uid: 7085 @@ -113819,10 +117513,10 @@ entities: parent: 2 - proto: LockerHeadOfSecurityFilled entities: - - uid: 15263 + - uid: 695 components: - type: Transform - pos: -20.5,12.5 + pos: -43.5,3.5 parent: 2 - proto: LockerMedicalFilled entities: @@ -113889,59 +117583,59 @@ entities: parent: 2 - proto: LockerPrisoner entities: - - uid: 21180 + - uid: 11427 components: - type: Transform - pos: -32.5,-3.5 + pos: -24.5,3.5 parent: 2 - proto: LockerPrisoner2 entities: - - uid: 14486 + - uid: 11502 components: - type: Transform - pos: -31.5,-3.5 + pos: -23.5,3.5 parent: 2 - proto: LockerPrisoner3 entities: - - uid: 20426 + - uid: 11506 components: - type: Transform - pos: -30.5,-3.5 + pos: -22.5,3.5 parent: 2 - proto: LockerPrisoner4 entities: - - uid: 20460 + - uid: 11550 components: - type: Transform - pos: -29.5,-3.5 + pos: -21.5,3.5 parent: 2 - proto: LockerPrisoner5 entities: - - uid: 20771 + - uid: 11501 components: - type: Transform - pos: -28.5,-3.5 + pos: -27.5,0.5 parent: 2 - proto: LockerPrisoner6 - entities: - - uid: 20546 - components: - - type: Transform - pos: -34.5,-5.5 - parent: 2 -- proto: LockerPrisoner7 - entities: - - uid: 20596 - components: - - type: Transform - pos: -33.5,-5.5 - parent: 2 -- proto: LockerPrisoner8 entities: - uid: 11473 components: - type: Transform - pos: -32.5,-5.5 + pos: -26.5,0.5 + parent: 2 +- proto: LockerPrisoner7 + entities: + - uid: 11467 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 +- proto: LockerPrisoner8 + entities: + - uid: 11556 + components: + - type: Transform + pos: -24.5,0.5 parent: 2 - proto: LockerQuarterMasterFilled entities: @@ -113998,30 +117692,50 @@ entities: parent: 2 - proto: LockerSecurityFilled entities: - - uid: 2251 + - uid: 11166 components: - type: Transform - pos: -25.5,17.5 + pos: -40.5,-8.5 parent: 2 - - uid: 12657 + - uid: 11182 components: - type: Transform - pos: -24.5,17.5 + pos: -38.5,-8.5 parent: 2 - - uid: 13150 + - uid: 11185 components: - type: Transform - pos: -27.5,17.5 + pos: -37.5,-8.5 parent: 2 - - uid: 14849 + - uid: 11242 components: - type: Transform - pos: -26.5,17.5 + pos: -40.5,-9.5 parent: 2 - - uid: 17715 + - uid: 11244 components: - type: Transform - pos: -23.5,17.5 + pos: -40.5,-10.5 + parent: 2 + - uid: 11258 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - uid: 11269 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 11271 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - uid: 11280 + components: + - type: Transform + pos: -37.5,-10.5 parent: 2 - proto: LockerWallMedicalFilled entities: @@ -114031,12 +117745,12 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,2.5 parent: 2 -- proto: LockerWardenFilledHardsuit +- proto: LockerWardenFilled entities: - - uid: 677 + - uid: 11890 components: - type: Transform - pos: -19.5,-6.5 + pos: -26.5,-8.5 parent: 2 - proto: LockerWeldingSuppliesFilled entities: @@ -114050,11 +117764,6 @@ entities: - type: Transform pos: 12.5,-65.5 parent: 2 - - uid: 15373 - components: - - type: Transform - pos: -25.5,19.5 - parent: 2 - proto: LogicGateOr entities: - uid: 13412 @@ -114323,10 +118032,10 @@ entities: - type: Transform pos: 33.5,-53.5 parent: 2 - - uid: 20682 + - uid: 16450 components: - type: Transform - pos: -33.5,18.5 + pos: -51.5,18.5 parent: 2 - uid: 21185 components: @@ -114350,6 +118059,16 @@ entities: - type: Transform pos: 57.5,-60.5 parent: 2 + - uid: 24451 + components: + - type: Transform + pos: -47.5,18.5 + parent: 2 + - uid: 24456 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 - proto: LootSpawnerIndustrialFluff entities: - uid: 394 @@ -114402,6 +118121,11 @@ entities: - type: Transform pos: -6.5,-61.5 parent: 2 + - uid: 15315 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 - uid: 19249 components: - type: Transform @@ -114444,6 +118168,11 @@ entities: - type: Transform pos: 57.5,-59.5 parent: 2 + - uid: 24455 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 - proto: LootSpawnerMaterialsHighValue entities: - uid: 7599 @@ -114483,11 +118212,6 @@ entities: - type: Transform pos: 75.5,-56.5 parent: 2 - - uid: 23685 - components: - - type: Transform - pos: 67.5,-43.5 - parent: 2 - uid: 23686 components: - type: Transform @@ -114535,27 +118259,17 @@ entities: - type: Transform pos: 53.5,-51.5 parent: 2 - - uid: 20130 + - uid: 24630 components: - type: Transform - pos: 73.5,-40.5 + pos: -40.5,-16.5 parent: 2 - proto: LootSpawnerMedicalMinor entities: - - uid: 454 + - uid: 11577 components: - type: Transform - pos: -28.5,9.5 - parent: 2 - - uid: 10501 - components: - - type: Transform - pos: 74.5,-40.5 - parent: 2 - - uid: 10853 - components: - - type: Transform - pos: 74.5,-41.5 + pos: -44.5,-8.5 parent: 2 - uid: 12198 components: @@ -114591,11 +118305,6 @@ entities: - type: Transform pos: -0.5,-25.5 parent: 2 - - uid: 23122 - components: - - type: Transform - pos: -22.5,19.5 - parent: 2 - uid: 23688 components: - type: Transform @@ -114611,13 +118320,18 @@ entities: - type: Transform pos: 46.5,-56.5 parent: 2 -- proto: LootSpawnerRoboticsBorgModule - entities: - - uid: 6743 + - uid: 24364 components: - type: Transform - pos: -52.5,-13.5 + pos: -31.5,20.5 parent: 2 + - uid: 24727 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 +- proto: LootSpawnerRoboticsBorgModule + entities: - uid: 22763 components: - type: Transform @@ -114665,6 +118379,16 @@ entities: - type: Transform pos: 35.5,-27.5 parent: 2 + - uid: 24552 + components: + - type: Transform + pos: 51.5,-38.5 + parent: 2 + - uid: 24553 + components: + - type: Transform + pos: 49.5,-39.5 + parent: 2 - proto: LootSpawnerScienceMinor entities: - uid: 11845 @@ -114712,6 +118436,28 @@ entities: - type: Transform pos: 20.5,-23.5 parent: 2 + - uid: 24554 + components: + - type: Transform + pos: 55.5,-38.5 + parent: 2 + - uid: 24555 + components: + - type: Transform + pos: 55.5,-36.5 + parent: 2 +- proto: LootSpawnerSecurity + entities: + - uid: 12370 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 12452 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 - proto: LootSpawnerSecurityBasic entities: - uid: 18172 @@ -114724,10 +118470,20 @@ entities: - type: Transform pos: 63.5,-81.5 parent: 2 - - uid: 22717 + - uid: 23705 components: - type: Transform - pos: -19.5,18.5 + pos: -46.5,18.5 + parent: 2 + - uid: 24296 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 24298 + components: + - type: Transform + pos: -40.5,-12.5 parent: 2 - proto: LuxuryPen entities: @@ -114832,16 +118588,6 @@ entities: - type: Transform pos: -41.5,-43.5 parent: 2 - - uid: 16187 - components: - - type: Transform - pos: -66.5,-15.5 - parent: 2 - - uid: 20662 - components: - - type: Transform - pos: -32.5,16.5 - parent: 2 - uid: 21160 components: - type: Transform @@ -114859,11 +118605,6 @@ entities: - type: Transform pos: 44.5,-44.5 parent: 2 - - uid: 8672 - components: - - type: Transform - pos: -36.5,16.5 - parent: 2 - uid: 11547 components: - type: Transform @@ -114879,6 +118620,21 @@ entities: - type: Transform pos: 51.5,-48.5 parent: 2 + - uid: 14810 + components: + - type: Transform + pos: -34.5,31.5 + parent: 2 + - uid: 16299 + components: + - type: Transform + pos: -60.5,-16.5 + parent: 2 + - uid: 16407 + components: + - type: Transform + pos: -52.5,5.5 + parent: 2 - uid: 17269 components: - type: Transform @@ -114894,26 +118650,6 @@ entities: - type: Transform pos: 74.5,-66.5 parent: 2 - - uid: 17916 - components: - - type: Transform - pos: 75.5,-46.5 - parent: 2 - - uid: 18504 - components: - - type: Transform - pos: 78.5,-44.5 - parent: 2 - - uid: 19395 - components: - - type: Transform - pos: 76.5,-40.5 - parent: 2 - - uid: 20583 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 2 - uid: 22858 components: - type: Transform @@ -114928,15 +118664,15 @@ entities: parent: 2 - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 6884 + - uid: 11315 components: - type: Transform - pos: -20.910439,10.684546 + pos: -45.560265,1.886858 parent: 2 - - uid: 14802 + - uid: 11318 components: - type: Transform - pos: -20.798544,10.503175 + pos: -45.36448,2.0459661 parent: 2 - proto: MailingUnit entities: @@ -114988,17 +118724,6 @@ entities: - type: Configuration config: tag: Mail Room - - uid: 12608 - components: - - type: Transform - pos: -22.5,0.5 - parent: 2 - - type: MailingUnit - tag: Security - target: Security - - type: Configuration - config: - tag: Security - uid: 14844 components: - type: Transform @@ -115048,6 +118773,16 @@ entities: - type: Configuration config: tag: Chemistry + - uid: 23320 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - type: MailingUnit + tag: Security + - type: Configuration + config: + tag: Security - proto: MaintenanceFluffSpawner entities: - uid: 913 @@ -115065,6 +118800,11 @@ entities: - type: Transform pos: 31.5,25.5 parent: 2 + - uid: 2212 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 - uid: 2533 components: - type: Transform @@ -115075,11 +118815,6 @@ entities: - type: Transform pos: -35.5,-64.5 parent: 2 - - uid: 3336 - components: - - type: Transform - pos: -16.5,9.5 - parent: 2 - uid: 4428 components: - type: Transform @@ -115105,11 +118840,6 @@ entities: - type: Transform pos: 46.5,-34.5 parent: 2 - - uid: 5822 - components: - - type: Transform - pos: 56.5,-39.5 - parent: 2 - uid: 7296 components: - type: Transform @@ -115145,16 +118875,6 @@ entities: - type: Transform pos: -56.5,-54.5 parent: 2 - - uid: 10524 - components: - - type: Transform - pos: -61.5,31.5 - parent: 2 - - uid: 10527 - components: - - type: Transform - pos: -76.5,-5.5 - parent: 2 - uid: 10599 components: - type: Transform @@ -115205,6 +118925,16 @@ entities: - type: Transform pos: 6.5,-88.5 parent: 2 + - uid: 16455 + components: + - type: Transform + pos: -54.5,23.5 + parent: 2 + - uid: 16466 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 - uid: 16866 components: - type: Transform @@ -115245,16 +118975,21 @@ entities: - type: Transform pos: 25.5,-50.5 parent: 2 - - uid: 20131 - components: - - type: Transform - pos: 73.5,-44.5 - parent: 2 - uid: 20253 components: - type: Transform pos: -24.5,-51.5 parent: 2 + - uid: 20557 + components: + - type: Transform + pos: -42.5,24.5 + parent: 2 + - uid: 20563 + components: + - type: Transform + pos: -19.5,14.5 + parent: 2 - uid: 21122 components: - type: Transform @@ -115280,11 +119015,6 @@ entities: - type: Transform pos: -1.5,-87.5 parent: 2 - - uid: 22968 - components: - - type: Transform - pos: -70.5,-22.5 - parent: 2 - uid: 22969 components: - type: Transform @@ -115320,16 +119050,6 @@ entities: - type: Transform pos: 62.5,-75.5 parent: 2 - - uid: 22976 - components: - - type: Transform - pos: 77.5,-44.5 - parent: 2 - - uid: 22977 - components: - - type: Transform - pos: 72.5,-41.5 - parent: 2 - uid: 22978 components: - type: Transform @@ -115360,6 +119080,41 @@ entities: - type: Transform pos: 39.5,21.5 parent: 2 + - uid: 23794 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 + - uid: 23852 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 23853 + components: + - type: Transform + pos: -18.5,9.5 + parent: 2 + - uid: 24442 + components: + - type: Transform + pos: -56.5,-19.5 + parent: 2 + - uid: 24443 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 2 + - uid: 24445 + components: + - type: Transform + pos: -51.5,-15.5 + parent: 2 + - uid: 24446 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 - proto: MaintenanceInsulsSpawner entities: - uid: 1739 @@ -115389,11 +119144,6 @@ entities: parent: 2 - proto: MaintenancePlantSpawner entities: - - uid: 510 - components: - - type: Transform - pos: -36.5,-17.5 - parent: 2 - uid: 631 components: - type: Transform @@ -115434,16 +119184,36 @@ entities: - type: Transform pos: 48.5,12.5 parent: 2 - - uid: 16907 + - uid: 20057 components: - type: Transform - pos: -27.5,-16.5 + pos: -49.5,21.5 + parent: 2 + - uid: 20058 + components: + - type: Transform + pos: -45.5,8.5 + parent: 2 + - uid: 20064 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 20065 + components: + - type: Transform + pos: -41.5,-15.5 parent: 2 - uid: 20149 components: - type: Transform pos: 44.5,-61.5 parent: 2 + - uid: 20554 + components: + - type: Transform + pos: -36.5,24.5 + parent: 2 - uid: 20617 components: - type: Transform @@ -115461,11 +119231,6 @@ entities: - type: Transform pos: 34.5,26.5 parent: 2 - - uid: 1657 - components: - - type: Transform - pos: -23.5,-13.5 - parent: 2 - uid: 3267 components: - type: Transform @@ -115481,6 +119246,11 @@ entities: - type: Transform pos: 12.5,-64.5 parent: 2 + - uid: 6647 + components: + - type: Transform + pos: -29.5,27.5 + parent: 2 - uid: 6783 components: - type: Transform @@ -115501,11 +119271,6 @@ entities: - type: Transform pos: -48.5,-49.5 parent: 2 - - uid: 10009 - components: - - type: Transform - pos: -37.5,-17.5 - parent: 2 - uid: 14189 components: - type: Transform @@ -115516,10 +119281,25 @@ entities: - type: Transform pos: -11.5,-24.5 parent: 2 - - uid: 20689 + - uid: 16451 components: - type: Transform - pos: -34.5,16.5 + pos: -51.5,17.5 + parent: 2 + - uid: 16456 + components: + - type: Transform + pos: -52.5,23.5 + parent: 2 + - uid: 20526 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 + - uid: 20566 + components: + - type: Transform + pos: -19.5,13.5 parent: 2 - uid: 21597 components: @@ -115541,6 +119321,11 @@ entities: - type: Transform pos: 42.5,15.5 parent: 2 + - uid: 22739 + components: + - type: Transform + pos: -55.5,8.5 + parent: 2 - uid: 22992 components: - type: Transform @@ -115556,18 +119341,23 @@ entities: - type: Transform pos: -53.5,-49.5 parent: 2 + - uid: 23795 + components: + - type: Transform + pos: -56.5,11.5 + parent: 2 + - uid: 23796 + components: + - type: Transform + pos: -55.5,15.5 + parent: 2 + - uid: 24444 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 2 - proto: MaintenanceWeaponSpawner entities: - - uid: 2241 - components: - - type: Transform - pos: 53.5,-41.5 - parent: 2 - - uid: 12262 - components: - - type: Transform - pos: -39.5,-17.5 - parent: 2 - uid: 12371 components: - type: Transform @@ -115590,6 +119380,11 @@ entities: - type: Transform pos: 27.331453,-28.38487 parent: 2 + - uid: 24466 + components: + - type: Transform + pos: -39.644432,19.790949 + parent: 2 - proto: MatchstickSpent entities: - uid: 18660 @@ -115655,13 +119450,6 @@ entities: - type: Transform pos: 94.58233,-27.361334 parent: 2 -- proto: MaterialCloth10 - entities: - - uid: 2650 - components: - - type: Transform - pos: -23.528334,19.663761 - parent: 2 - proto: MaterialDiamond1 entities: - uid: 1919 @@ -115736,6 +119524,11 @@ entities: - type: Transform pos: 30.5,25.5 parent: 2 + - uid: 24220 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 - proto: MechEquipmentGrabberSmall entities: - uid: 11151 @@ -115745,10 +119538,10 @@ entities: parent: 2 - proto: MedicalBed entities: - - uid: 441 + - uid: 1166 components: - type: Transform - pos: -30.5,11.5 + pos: -45.5,-8.5 parent: 2 - uid: 10655 components: @@ -115796,11 +119589,6 @@ entities: - type: Transform pos: 21.462214,14.656416 parent: 2 - - uid: 449 - components: - - type: Transform - pos: -28.597748,11.966526 - parent: 2 - uid: 12346 components: - type: Transform @@ -115827,16 +119615,16 @@ entities: parent: 2 - proto: MedkitFilled entities: - - uid: 446 - components: - - type: Transform - pos: -28.466112,11.67361 - parent: 2 - uid: 9844 components: - type: Transform pos: -18.531181,-50.325314 parent: 2 + - uid: 10881 + components: + - type: Transform + pos: -45.503227,-6.314973 + parent: 2 - uid: 12347 components: - type: Transform @@ -115867,10 +119655,15 @@ entities: - uid: 1962 components: - type: Transform - pos: -12.464999,-8.361995 + pos: -11.410941,-1.3765159 parent: 2 - proto: MedkitOxygenFilled entities: + - uid: 12337 + components: + - type: Transform + pos: -45.381424,-6.4595532 + parent: 2 - uid: 14893 components: - type: Transform @@ -115982,11 +119775,6 @@ entities: parent: 2 - proto: Morgue entities: - - uid: 442 - components: - - type: Transform - pos: -29.5,12.5 - parent: 2 - uid: 4377 components: - type: Transform @@ -116058,6 +119846,11 @@ entities: parent: 2 - type: TimedSpawner chance: 0.2 + - uid: 2721 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 - uid: 9136 components: - type: Transform @@ -116065,13 +119858,6 @@ entities: parent: 2 - type: TimedSpawner intervalSeconds: 720 - - uid: 17636 - components: - - type: Transform - pos: -33.5,-18.5 - parent: 2 - - type: TimedSpawner - chance: 0.2 - uid: 22786 components: - type: Transform @@ -116131,15 +119917,15 @@ entities: - type: Transform pos: -7.5,6.5 parent: 2 - - uid: 1935 + - uid: 1944 components: - type: Transform - pos: -12.5,-2.5 + pos: -12.5,-6.5 parent: 2 - - uid: 1936 + - uid: 2699 components: - type: Transform - pos: -11.5,-2.5 + pos: -34.5,-14.5 parent: 2 - uid: 3530 components: @@ -116191,20 +119977,15 @@ entities: - type: Transform pos: -5.5,-8.5 parent: 2 - - uid: 13615 - components: - - type: Transform - pos: -34.5,-18.5 - parent: 2 - uid: 14307 components: - type: Transform pos: 25.5,-53.5 parent: 2 - - uid: 16418 + - uid: 16439 components: - type: Transform - pos: -53.5,-13.5 + pos: -54.5,17.5 parent: 2 - uid: 18859 components: @@ -116226,19 +120007,29 @@ entities: - type: Transform pos: -37.5,-43.5 parent: 2 -- proto: NitrogenTankFilled - entities: - - uid: 5347 + - uid: 23797 components: - type: Transform - pos: -33.312702,22.556707 + pos: -13.5,-6.5 + parent: 2 + - uid: 24730 + components: + - type: Transform + pos: -43.5,22.5 + parent: 2 +- proto: NitrogenTankFilled + entities: + - uid: 14590 + components: + - type: Transform + pos: -37.35199,29.609798 parent: 2 - proto: NitrousOxideCanister entities: - - uid: 1948 + - uid: 23804 components: - type: Transform - pos: -12.5,-1.5 + pos: -12.5,-8.5 parent: 2 - proto: NitrousOxideTankFilled entities: @@ -116282,10 +120073,10 @@ entities: parent: 2 - proto: NTDefaultCircuitBoard entities: - - uid: 16466 + - uid: 8217 components: - type: Transform - pos: -61.330738,-16.517221 + pos: 68.4268,-43.24812 parent: 2 - proto: NuclearBombKeg entities: @@ -116312,10 +120103,10 @@ entities: parent: 2 - proto: NutimovCircuitBoard entities: - - uid: 16467 + - uid: 7800 components: - type: Transform - pos: -63.45679,-15.860515 + pos: 68.20655,-41.522404 parent: 2 - proto: OperatingTable entities: @@ -116341,6 +120132,11 @@ entities: - type: Transform pos: 10.530537,28.604168 parent: 2 + - uid: 16402 + components: + - type: Transform + pos: -54.471886,-0.41327286 + parent: 2 - proto: OreBox entities: - uid: 17331 @@ -116348,11 +120144,6 @@ entities: - type: Transform pos: 14.5,21.5 parent: 2 - - uid: 22474 - components: - - type: Transform - pos: 14.5,22.5 - parent: 2 - proto: OreProcessor entities: - uid: 1360 @@ -116360,6 +120151,13 @@ entities: - type: Transform pos: 12.5,21.5 parent: 2 +- proto: OreProcessorMachineCircuitboard + entities: + - uid: 16400 + components: + - type: Transform + pos: -55.42229,-4.489262 + parent: 2 - proto: OxygenCanister entities: - uid: 787 @@ -116377,15 +120175,10 @@ entities: - type: Transform pos: 49.5,-32.5 parent: 2 - - uid: 1937 + - uid: 2697 components: - type: Transform - pos: -12.5,-3.5 - parent: 2 - - uid: 1938 - components: - - type: Transform - pos: -11.5,-3.5 + pos: -34.5,-13.5 parent: 2 - uid: 3891 components: @@ -116427,20 +120220,15 @@ entities: - type: Transform pos: -52.5,-37.5 parent: 2 - - uid: 13752 - components: - - type: Transform - pos: -34.5,-17.5 - parent: 2 - uid: 14270 components: - type: Transform pos: 25.5,-52.5 parent: 2 - - uid: 16424 + - uid: 16438 components: - type: Transform - pos: -54.5,-13.5 + pos: -53.5,17.5 parent: 2 - uid: 19209 components: @@ -116462,12 +120250,27 @@ entities: - type: Transform pos: -5.5,-9.5 parent: 2 -- proto: OxygenTankFilled - entities: - - uid: 5326 + - uid: 23800 components: - type: Transform - pos: -33.531563,22.608828 + pos: -13.5,-7.5 + parent: 2 + - uid: 23801 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 24728 + components: + - type: Transform + pos: -44.5,22.5 + parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 14589 + components: + - type: Transform + pos: -37.560013,29.658756 parent: 2 - proto: PaintingSkeletonBoof entities: @@ -116485,10 +120288,10 @@ entities: parent: 2 - proto: PaladinCircuitBoard entities: - - uid: 16468 + - uid: 8200 components: - type: Transform - pos: -60.569942,-16.475525 + pos: 68.09642,-43.50514 parent: 2 - proto: PanFluteInstrument entities: @@ -116497,6 +120300,11 @@ entities: - type: Transform pos: -1.4995854,-37.49171 parent: 2 + - uid: 24557 + components: + - type: Transform + pos: -26.49535,-16.557594 + parent: 2 - proto: Paper entities: - uid: 1063 @@ -116659,10 +120467,10 @@ entities: - type: Transform pos: -23.5,-18.5 parent: 2 - - uid: 19247 + - uid: 19640 components: - type: Transform - pos: -41.5,5.5 + pos: -35.5,17.5 parent: 2 - proto: PaperBin20 entities: @@ -116738,6 +120546,11 @@ entities: parent: 2 - proto: PaperOffice entities: + - uid: 2636 + components: + - type: Transform + pos: -43.39573,20.536367 + parent: 2 - uid: 7554 components: - type: Transform @@ -116748,11 +120561,48 @@ entities: - type: Transform pos: -18.265701,-44.49553 parent: 2 + - uid: 16357 + components: + - type: Transform + pos: -54.63094,23.648548 + parent: 2 + - uid: 16431 + components: + - type: Transform + pos: -54.795742,23.219845 + parent: 2 + - uid: 16435 + components: + - type: Transform + pos: -54.012596,22.889389 + parent: 2 + - uid: 16436 + components: + - type: Transform + pos: -53.85352,23.746128 + parent: 2 + - uid: 16461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.183098,23.363968 + parent: 2 - uid: 19069 components: - type: Transform pos: -15.32967,-40.3367 parent: 2 + - uid: 24359 + components: + - type: Transform + pos: -43.823025,20.598911 + parent: 2 + - uid: 24449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.635433,20.265345 + parent: 2 - proto: ParchisBoard entities: - uid: 10986 @@ -116762,11 +120612,6 @@ entities: parent: 2 - proto: PartRodMetal entities: - - uid: 1954 - components: - - type: Transform - pos: -13.49223,-6.4066033 - parent: 2 - uid: 2547 components: - type: Transform @@ -116797,28 +120642,6 @@ entities: - type: Transform pos: -57.479538,-58.35758 parent: 2 -- proto: PartRodMetal1 - entities: - - uid: 795 - components: - - type: Transform - pos: 72.72414,-41.933956 - parent: 2 - - uid: 3949 - components: - - type: Transform - pos: 74.13109,-42.63757 - parent: 2 - - uid: 4897 - components: - - type: Transform - pos: 74.50627,-45.326935 - parent: 2 - - uid: 18766 - components: - - type: Transform - pos: 72.56781,-43.388092 - parent: 2 - proto: PeaSeeds entities: - uid: 6178 @@ -116900,10 +120723,10 @@ entities: - type: Transform pos: -49.959827,-43.384743 parent: 2 - - uid: 21117 + - uid: 19641 components: - type: Transform - pos: -41.23758,5.588052 + pos: -35.300114,17.626389 parent: 2 - uid: 21266 components: @@ -116912,16 +120735,16 @@ entities: parent: 2 - proto: PersonalAI entities: + - uid: 1229 + components: + - type: Transform + pos: -19.454544,-13.531628 + parent: 2 - uid: 3727 components: - type: Transform pos: 15.482977,-30.443178 parent: 2 - - uid: 5423 - components: - - type: Transform - pos: -19.486761,17.56054 - parent: 2 - uid: 15781 components: - type: Transform @@ -116932,10 +120755,10 @@ entities: - type: Transform pos: -10.523058,-39.276688 parent: 2 - - uid: 16192 + - uid: 17965 components: - type: Transform - pos: -20.46611,-15.44072 + pos: 68.63681,-43.41416 parent: 2 - uid: 22272 components: @@ -116964,6 +120787,11 @@ entities: parent: 2 - proto: Pickaxe entities: + - uid: 16403 + components: + - type: Transform + pos: -54.52695,-1.386281 + parent: 2 - uid: 21915 components: - type: Transform @@ -116993,7 +120821,7 @@ entities: - uid: 2489 components: - type: Transform - pos: -12.902718,-8.497505 + pos: -11.904242,-1.4982758 parent: 2 - proto: PillCanisterRandom entities: @@ -117055,10 +120883,10 @@ entities: - type: Transform pos: 45.729847,-60.59313 parent: 2 - - uid: 20491 + - uid: 19636 components: - type: Transform - pos: -41.432434,-6.246771 + pos: -25.86341,13.500397 parent: 2 - proto: PlaqueAtmos entities: @@ -117074,16 +120902,16 @@ entities: - type: Transform pos: 0.5,6.5 parent: 2 - - uid: 1946 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 2 - uid: 23471 components: - type: Transform pos: -5.5,-11.5 parent: 2 + - uid: 23802 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 - proto: PlasticFlapsAirtightClear entities: - uid: 3596 @@ -117135,17 +120963,10 @@ entities: parent: 2 - proto: PlayerStationAi entities: - - uid: 16136 + - uid: 16537 components: - type: Transform - pos: -67.5,-12.5 - parent: 2 -- proto: PlushieArachind - entities: - - uid: 21888 - components: - - type: Transform - pos: 19.521072,-8.539616 + pos: 91.5,-42.5 parent: 2 - proto: PlushieAtmosian entities: @@ -117154,6 +120975,13 @@ entities: - type: Transform pos: 13.541924,-10.43575 parent: 2 +- proto: PlushieCarp + entities: + - uid: 24448 + components: + - type: Transform + pos: -32.490696,19.75554 + parent: 2 - proto: PlushieDiona entities: - uid: 8572 @@ -117236,30 +121064,30 @@ entities: - type: Transform pos: 15.497364,-55.417336 parent: 2 + - uid: 16502 + components: + - type: Transform + pos: -45.514957,10.417316 + parent: 2 - proto: PortableFlasher entities: - - uid: 23323 + - uid: 12657 components: - type: Transform - anchored: False - pos: -24.5,7.5 + pos: -39.5,3.5 parent: 2 - - type: TriggerOnProximity - enabled: False - - type: Physics - bodyType: Dynamic - - uid: 23520 + - uid: 12670 components: - type: Transform - anchored: False - pos: -24.5,6.5 + pos: -36.5,3.5 parent: 2 - - type: TriggerOnProximity - enabled: False - - type: Physics - bodyType: Dynamic - proto: PortableGeneratorJrPacman entities: + - uid: 1948 + components: + - type: Transform + pos: -51.5,20.5 + parent: 2 - uid: 5702 components: - type: Transform @@ -117290,11 +121118,6 @@ entities: - type: Transform pos: -39.5,-41.5 parent: 2 - - uid: 14191 - components: - - type: Transform - pos: -29.5,17.5 - parent: 2 - uid: 17555 components: - type: Transform @@ -117320,18 +121143,28 @@ entities: - type: Transform pos: 23.5,14.5 parent: 2 -- proto: PortableGeneratorPacman - entities: - - uid: 5501 + - uid: 24299 components: - type: Transform - pos: -61.5,-8.5 + pos: -50.5,-6.5 parent: 2 + - uid: 24304 + components: + - type: Transform + pos: -35.5,27.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: - uid: 11336 components: - type: Transform pos: -1.5,-23.5 parent: 2 + - uid: 16755 + components: + - type: Transform + pos: 96.5,-43.5 + parent: 2 - proto: PortableGeneratorSuperPacman entities: - uid: 11898 @@ -117366,6 +121199,11 @@ entities: - type: Transform pos: 29.5,-6.5 parent: 2 + - uid: 24295 + components: + - type: Transform + pos: -33.5,20.5 + parent: 2 - proto: PosterContrabandGreyTide entities: - uid: 9075 @@ -117501,16 +121339,6 @@ entities: - type: Transform pos: 13.5,13.5 parent: 2 - - uid: 1186 - components: - - type: Transform - pos: -26.5,0.5 - parent: 2 - - uid: 1187 - components: - - type: Transform - pos: -24.5,9.5 - parent: 2 - uid: 1224 components: - type: Transform @@ -117596,11 +121424,6 @@ entities: - type: Transform pos: 39.5,-18.5 parent: 2 - - uid: 8980 - components: - - type: Transform - pos: -14.5,-4.5 - parent: 2 - uid: 9353 components: - type: Transform @@ -117671,11 +121494,6 @@ entities: - type: Transform pos: 3.5,-50.5 parent: 2 - - uid: 16589 - components: - - type: Transform - pos: -60.5,-13.5 - parent: 2 - uid: 16989 components: - type: Transform @@ -117721,6 +121539,26 @@ entities: - type: Transform pos: 31.5,14.5 parent: 2 + - uid: 23318 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 2 + - uid: 23323 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 23328 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 23839 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 - proto: PottedPlantRandomPlastic entities: - uid: 743 @@ -117773,6 +121611,16 @@ entities: - type: Transform pos: -47.5,-26.5 parent: 2 + - uid: 23329 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 23333 + components: + - type: Transform + pos: -33.5,14.5 + parent: 2 - proto: PottedPlantRD entities: - uid: 4397 @@ -117801,6 +121649,16 @@ entities: parent: 2 - proto: PowerCellRecharger entities: + - uid: 1173 + components: + - type: Transform + pos: 75.5,-42.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: 96.5,-40.5 + parent: 2 - uid: 1542 components: - type: Transform @@ -117895,10 +121753,15 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 - - uid: 23306 + - uid: 23315 components: - type: Transform - pos: -20.5,-2.5 + pos: -43.5,-5.5 + parent: 2 + - uid: 23316 + components: + - type: Transform + pos: -46.5,-4.5 parent: 2 - uid: 23691 components: @@ -117906,6 +121769,11 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-39.5 parent: 2 + - uid: 24016 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 - proto: PowerDrill entities: - uid: 4425 @@ -117920,17 +121788,6 @@ entities: - type: Transform pos: -18.5,20.5 parent: 2 - - uid: 829 - components: - - type: Transform - pos: -28.5,20.5 - parent: 2 - - uid: 973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,13.5 - parent: 2 - uid: 1279 components: - type: Transform @@ -117948,11 +121805,10 @@ entities: - type: Transform pos: -42.5,-48.5 parent: 2 - - uid: 2394 + - uid: 1939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,12.5 + pos: -37.5,-18.5 parent: 2 - uid: 3010 components: @@ -117995,11 +121851,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,11.5 parent: 2 - - uid: 7058 - components: - - type: Transform - pos: -20.5,14.5 - parent: 2 - uid: 7102 components: - type: Transform @@ -118071,22 +121922,11 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-52.5 parent: 2 - - uid: 12150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-14.5 - parent: 2 - uid: 13016 components: - type: Transform pos: 28.5,19.5 parent: 2 - - uid: 13107 - components: - - type: Transform - pos: -36.5,13.5 - parent: 2 - uid: 14407 components: - type: Transform @@ -118099,18 +121939,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-41.5 parent: 2 - - uid: 17162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-42.5 - parent: 2 - - uid: 17163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-42.5 - parent: 2 - uid: 17172 components: - type: Transform @@ -118122,12 +121950,63 @@ entities: - type: Transform pos: 23.5,-33.5 parent: 2 + - uid: 18361 + components: + - type: Transform + pos: 84.5,-41.5 + parent: 2 - uid: 18962 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,26.5 parent: 2 + - uid: 20511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,18.5 + parent: 2 + - uid: 20512 + components: + - type: Transform + pos: -45.5,15.5 + parent: 2 + - uid: 20514 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 20515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,3.5 + parent: 2 + - uid: 20519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-13.5 + parent: 2 + - uid: 20520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-13.5 + parent: 2 + - uid: 20521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-17.5 + parent: 2 + - uid: 20522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 - uid: 21443 components: - type: Transform @@ -118150,82 +122029,75 @@ entities: - type: Transform pos: 50.5,21.5 parent: 2 -- proto: Poweredlight - entities: - - uid: 173 - components: - - type: Transform - pos: -21.5,6.5 - parent: 2 - - uid: 215 - components: - - type: Transform - pos: -45.5,4.5 - parent: 2 - - uid: 228 + - uid: 24100 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-10.5 + pos: 25.5,-14.5 parent: 2 + - uid: 24323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,20.5 + parent: 2 + - uid: 24542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-36.5 + parent: 2 + - uid: 24646 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 24760 + components: + - type: Transform + pos: 57.5,-40.5 + parent: 2 + - uid: 24784 + components: + - type: Transform + pos: 79.5,-37.5 + parent: 2 +- proto: Poweredlight + entities: - uid: 292 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-45.5 parent: 2 - - uid: 672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-2.5 - parent: 2 - uid: 1026 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-7.5 parent: 2 - - uid: 1043 - components: - - type: Transform - pos: -22.5,17.5 - parent: 2 - uid: 1263 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-74.5 parent: 2 - - uid: 1664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-7.5 - parent: 2 - - uid: 1694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,1.5 - parent: 2 - - uid: 1707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-6.5 - parent: 2 - - uid: 1785 - components: - - type: Transform - pos: -27.5,-9.5 - parent: 2 - uid: 1808 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,18.5 parent: 2 + - uid: 1936 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 - uid: 2057 components: - type: Transform @@ -118243,11 +122115,6 @@ entities: - type: Transform pos: 14.5,12.5 parent: 2 - - uid: 2302 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 2 - uid: 2588 components: - type: Transform @@ -118282,11 +122149,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 - - uid: 3875 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 2 - uid: 3957 components: - type: Transform @@ -118415,46 +122277,12 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-44.5 parent: 2 - - uid: 7832 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 2 - - uid: 7844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,2.5 - parent: 2 - - uid: 8298 - components: - - type: Transform - pos: -42.5,-3.5 - parent: 2 - uid: 8420 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,23.5 parent: 2 - - uid: 8478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,3.5 - parent: 2 - - uid: 8497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-1.5 - parent: 2 - - uid: 8508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,12.5 - parent: 2 - uid: 9439 components: - type: Transform @@ -118479,34 +122307,12 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-0.5 parent: 2 - - uid: 10416 - components: - - type: Transform - pos: -29.5,-3.5 - parent: 2 - uid: 10581 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-44.5 parent: 2 - - uid: 10653 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 2 - - uid: 10749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-13.5 - parent: 2 - - uid: 10857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 2 - uid: 10942 components: - type: Transform @@ -118632,12 +122438,6 @@ entities: - type: Transform pos: -17.5,-50.5 parent: 2 - - uid: 11716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,6.5 - parent: 2 - uid: 11770 components: - type: Transform @@ -118813,12 +122613,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-6.5 parent: 2 - - uid: 15315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-9.5 - parent: 2 - uid: 15667 components: - type: Transform @@ -118836,82 +122630,12 @@ entities: - type: Transform pos: 19.5,15.5 parent: 2 - - uid: 16249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-7.5 - parent: 2 - - uid: 16478 - components: - - type: Transform - pos: -61.5,-11.5 - parent: 2 - - uid: 16479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-13.5 - parent: 2 - - uid: 16481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-14.5 - parent: 2 - - uid: 16482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-10.5 - parent: 2 - - uid: 16483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-10.5 - parent: 2 - - uid: 16484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-14.5 - parent: 2 - - uid: 16487 - components: - - type: Transform - pos: -54.5,-11.5 - parent: 2 - - uid: 16651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-11.5 - parent: 2 - - uid: 16726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-5.5 - parent: 2 - uid: 16935 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,13.5 parent: 2 - - uid: 17324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,14.5 - parent: 2 - - uid: 17443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-1.5 - parent: 2 - uid: 17486 components: - type: Transform @@ -118990,6 +122714,46 @@ entities: rot: 3.141592653589793 rad pos: 20.5,21.5 parent: 2 + - uid: 18083 + components: + - type: Transform + pos: 69.5,-40.5 + parent: 2 + - uid: 18084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-44.5 + parent: 2 + - uid: 18087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-44.5 + parent: 2 + - uid: 18362 + components: + - type: Transform + pos: 80.5,-40.5 + parent: 2 + - uid: 18363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,-44.5 + parent: 2 + - uid: 18364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-42.5 + parent: 2 + - uid: 18365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-40.5 + parent: 2 - uid: 18403 components: - type: Transform @@ -119019,24 +122783,12 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-19.5 parent: 2 - - uid: 18903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,6.5 - parent: 2 - uid: 18963 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,21.5 parent: 2 - - uid: 19005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-4.5 - parent: 2 - uid: 19154 components: - type: Transform @@ -119054,6 +122806,45 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-23.5 parent: 2 + - uid: 20498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,11.5 + parent: 2 + - uid: 20499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,8.5 + parent: 2 + - uid: 20504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,8.5 + parent: 2 + - uid: 20505 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 20506 + components: + - type: Transform + pos: -25.5,16.5 + parent: 2 + - uid: 20507 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 20508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,12.5 + parent: 2 - uid: 20602 components: - type: Transform @@ -119205,12 +122996,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-37.5 parent: 2 - - uid: 21898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-1.5 - parent: 2 - uid: 21964 components: - type: Transform @@ -119270,12 +123055,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-33.5 parent: 2 - - uid: 22712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,16.5 - parent: 2 - uid: 22732 components: - type: Transform @@ -119333,29 +123112,6 @@ entities: rot: 1.5707963267948966 rad pos: 65.5,-61.5 parent: 2 - - uid: 22889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-46.5 - parent: 2 - - uid: 22890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-40.5 - parent: 2 - - uid: 22891 - components: - - type: Transform - pos: 84.5,-39.5 - parent: 2 - - uid: 22892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 94.5,-33.5 - parent: 2 - uid: 22893 components: - type: Transform @@ -119379,24 +123135,6 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,-31.5 parent: 2 - - uid: 23018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,8.5 - parent: 2 - - uid: 23019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 2 - - uid: 23028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,2.5 - parent: 2 - uid: 23055 components: - type: Transform @@ -119445,6 +123183,156 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,13.5 parent: 2 + - uid: 23766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,0.5 + parent: 2 + - uid: 23767 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 23768 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 23769 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 23770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-4.5 + parent: 2 + - uid: 23771 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 23772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-3.5 + parent: 2 + - uid: 23773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-7.5 + parent: 2 + - uid: 23774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-8.5 + parent: 2 + - uid: 23775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 2 + - uid: 23776 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 23777 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - uid: 23778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,1.5 + parent: 2 + - uid: 23779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-10.5 + parent: 2 + - uid: 23780 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 23782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-4.5 + parent: 2 + - uid: 23783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-10.5 + parent: 2 + - uid: 23784 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 23785 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - uid: 23786 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 2 + - uid: 23832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-4.5 + parent: 2 + - uid: 24640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 2 + - uid: 24703 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 24706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,6.5 + parent: 2 + - uid: 24708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 2 + - uid: 24709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,3.5 + parent: 2 + - uid: 24711 + components: + - type: Transform + pos: -14.5,17.5 + parent: 2 - proto: PoweredlightEmpty entities: - uid: 21609 @@ -119461,12 +123349,6 @@ entities: parent: 2 - proto: PoweredlightLED entities: - - uid: 8479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,10.5 - parent: 2 - uid: 8859 components: - type: Transform @@ -119542,8 +123424,20 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,2.5 parent: 2 + - uid: 23781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-7.5 + parent: 2 - proto: PoweredLightPostSmall entities: + - uid: 1940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 2 - uid: 17113 components: - type: Transform @@ -119584,6 +123478,12 @@ entities: - type: Transform pos: 28.5,-81.5 parent: 2 + - uid: 24474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 2 - proto: PoweredlightSodium entities: - uid: 1665 @@ -119592,11 +123492,11 @@ entities: rot: 3.141592653589793 rad pos: 25.5,24.5 parent: 2 - - uid: 5587 + - uid: 8683 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,22.5 + pos: -44.5,28.5 parent: 2 - uid: 9079 components: @@ -119604,11 +123504,6 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,1.5 parent: 2 - - uid: 9807 - components: - - type: Transform - pos: -64.5,-19.5 - parent: 2 - uid: 10902 components: - type: Transform @@ -119621,28 +123516,11 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-95.5 parent: 2 - - uid: 13660 - components: - - type: Transform - pos: -71.5,-18.5 - parent: 2 - - uid: 15863 + - uid: 16404 components: - type: Transform rot: -1.5707963267948966 rad - pos: -73.5,-8.5 - parent: 2 - - uid: 15938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-16.5 - parent: 2 - - uid: 15948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-6.5 + pos: -54.5,-2.5 parent: 2 - uid: 17302 components: @@ -119662,18 +123540,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-95.5 parent: 2 - - uid: 20115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-5.5 - parent: 2 - - uid: 21275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-13.5 - parent: 2 - uid: 21594 components: - type: Transform @@ -119697,14 +123563,14 @@ entities: - type: Transform pos: -36.5,-82.5 parent: 2 -- proto: PoweredSmallLight - entities: - - uid: 223 + - uid: 24795 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,3.5 + pos: 59.5,-39.5 parent: 2 +- proto: PoweredSmallLight + entities: - uid: 233 components: - type: Transform @@ -119723,23 +123589,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,1.5 parent: 2 - - uid: 833 - components: - - type: Transform - pos: -50.5,3.5 - parent: 2 - - uid: 834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-0.5 - parent: 2 - - uid: 962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,6.5 - parent: 2 - uid: 2205 components: - type: Transform @@ -119757,12 +123606,6 @@ entities: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 3190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-19.5 - parent: 2 - uid: 3362 components: - type: Transform @@ -119794,11 +123637,6 @@ entities: - type: PointLight softness: 1.5 energy: 0.5 - - uid: 4247 - components: - - type: Transform - pos: -18.5,-15.5 - parent: 2 - uid: 4508 components: - type: Transform @@ -119938,12 +123776,6 @@ entities: - type: Transform pos: 9.5,-6.5 parent: 2 - - uid: 10018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,22.5 - parent: 2 - uid: 10606 components: - type: Transform @@ -120014,18 +123846,6 @@ entities: - type: Transform pos: 24.5,8.5 parent: 2 - - uid: 11724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,1.5 - parent: 2 - - uid: 11782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,6.5 - parent: 2 - uid: 11863 components: - type: Transform @@ -120062,23 +123882,11 @@ entities: - type: Transform pos: -13.5,-40.5 parent: 2 - - uid: 12354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,0.5 - parent: 2 - uid: 12672 components: - type: Transform pos: 5.5,-6.5 parent: 2 - - uid: 12694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,5.5 - parent: 2 - uid: 12716 components: - type: Transform @@ -120171,42 +123979,12 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-39.5 parent: 2 - - uid: 15703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,3.5 - parent: 2 - - type: PointLight - energy: 0.5 - - uid: 15747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-4.5 - parent: 2 - uid: 16327 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-58.5 parent: 2 - - uid: 16480 - components: - - type: Transform - pos: -61.5,-15.5 - parent: 2 - - uid: 16485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-9.5 - parent: 2 - - uid: 16571 - components: - - type: Transform - pos: -58.5,-12.5 - parent: 2 - uid: 16701 components: - type: Transform @@ -120219,11 +123997,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-26.5 parent: 2 - - uid: 16934 - components: - - type: Transform - pos: -11.5,-1.5 - parent: 2 - uid: 16939 components: - type: Transform @@ -120283,6 +124056,29 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,12.5 parent: 2 + - uid: 18357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-43.5 + parent: 2 + - uid: 18358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-41.5 + parent: 2 + - uid: 18359 + components: + - type: Transform + pos: 96.5,-40.5 + parent: 2 + - uid: 18360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,-44.5 + parent: 2 - uid: 19284 components: - type: Transform @@ -120307,11 +124103,17 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-68.5 parent: 2 - - uid: 21273 + - uid: 20516 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-15.5 + pos: -55.5,-19.5 + parent: 2 + - uid: 20517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-19.5 parent: 2 - uid: 21282 components: @@ -120342,11 +124144,6 @@ entities: rot: 1.5707963267948966 rad pos: -63.5,-59.5 parent: 2 - - uid: 22358 - components: - - type: Transform - pos: -23.5,-15.5 - parent: 2 - uid: 22374 components: - type: Transform @@ -120410,6 +124207,116 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-15.5 parent: 2 + - uid: 23787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,0.5 + parent: 2 + - uid: 23788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,3.5 + parent: 2 + - uid: 23789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,8.5 + parent: 2 + - uid: 23790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,8.5 + parent: 2 + - uid: 23791 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - uid: 23792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,15.5 + parent: 2 + - uid: 24543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-36.5 + parent: 2 + - uid: 24544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-38.5 + parent: 2 + - uid: 24545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-36.5 + parent: 2 + - uid: 24547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-38.5 + parent: 2 + - uid: 24644 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 24645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,29.5 + parent: 2 + - uid: 24704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - uid: 24705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 2 + - uid: 24707 + components: + - type: Transform + pos: -17.5,11.5 + parent: 2 + - uid: 24710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 24712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 2 + - uid: 24713 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 2 + - uid: 24726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-15.5 + parent: 2 - proto: PoweredSmallLightEmpty entities: - uid: 9504 @@ -120450,6 +124357,68 @@ entities: powerLoad: 60 - type: DamageOnInteract isDamageActive: False + - uid: 18241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-46.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 18242 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 18350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-46.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 18352 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 18353 + components: + - type: Transform + pos: 93.5,-38.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 18354 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 18355 + components: + - type: Transform + pos: 89.5,-38.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 18356 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False - uid: 23674 components: - type: Transform @@ -120462,6 +124431,21 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,24.5 parent: 2 + - uid: 23798 + components: + - type: Transform + pos: -46.5,11.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23799 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False - proto: PoweredStrobeLightEmpty entities: - uid: 14006 @@ -120495,21 +124479,6 @@ entities: powerLoad: 0 - type: DamageOnInteract isDamageActive: False - - uid: 14774 - components: - - type: Transform - pos: -2.5,-37.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 15121 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - proto: PoweredWarmSmallLight entities: - uid: 481 @@ -120646,11 +124615,6 @@ entities: - type: Transform pos: 13.5,-44.5 parent: 2 - - uid: 12132 - components: - - type: Transform - pos: -38.5,6.5 - parent: 2 - uid: 12194 components: - type: Transform @@ -120691,12 +124655,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-37.5 parent: 2 - - uid: 13795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,11.5 - parent: 2 - uid: 13863 components: - type: Transform @@ -120773,6 +124731,11 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-53.5 parent: 2 + - uid: 20509 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 - uid: 20763 components: - type: Transform @@ -120892,6 +124855,18 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-25.5 parent: 2 + - uid: 24308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 2 + - uid: 24309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,2.5 + parent: 2 - proto: PrefilledSyringe entities: - uid: 6049 @@ -120927,6 +124902,31 @@ entities: - type: Transform pos: 44.5,-39.5 parent: 2 + - uid: 24356 + components: + - type: Transform + pos: -32.5,20.5 + parent: 2 + - uid: 24360 + components: + - type: Transform + pos: -32.5,19.5 + parent: 2 + - uid: 24361 + components: + - type: Transform + pos: -33.5,20.5 + parent: 2 + - uid: 24362 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 + - uid: 24363 + components: + - type: Transform + pos: -31.5,20.5 + parent: 2 - proto: Rack entities: - uid: 124 @@ -120940,25 +124940,15 @@ entities: - type: Transform pos: 46.5,-36.5 parent: 2 - - uid: 295 + - uid: 359 components: - type: Transform - pos: -19.5,17.5 + pos: -44.5,20.5 parent: 2 - - uid: 469 + - uid: 449 components: - type: Transform - pos: -24.5,13.5 - parent: 2 - - uid: 610 - components: - - type: Transform - pos: -19.5,18.5 - parent: 2 - - uid: 770 - components: - - type: Transform - pos: -37.5,-17.5 + pos: -45.5,-6.5 parent: 2 - uid: 824 components: @@ -120970,22 +124960,22 @@ entities: - type: Transform pos: 12.5,17.5 parent: 2 + - uid: 1462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,1.5 + parent: 2 - uid: 1799 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-4.5 parent: 2 - - uid: 1837 + - uid: 1957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-41.5 - parent: 2 - - uid: 1951 - components: - - type: Transform - pos: -13.5,-6.5 + pos: -39.5,-18.5 parent: 2 - uid: 1961 components: @@ -121005,22 +124995,10 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-46.5 parent: 2 - - uid: 2312 + - uid: 2393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-35.5 - parent: 2 - - uid: 2367 - components: - - type: Transform - pos: -23.5,15.5 - parent: 2 - - uid: 2681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-41.5 + pos: -33.5,-8.5 parent: 2 - uid: 2862 components: @@ -121039,18 +125017,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-32.5 parent: 2 - - uid: 3349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,8.5 - parent: 2 - - uid: 3360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,9.5 - parent: 2 - uid: 3455 components: - type: Transform @@ -121074,12 +125040,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-36.5 parent: 2 - - uid: 3558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-6.5 - parent: 2 - uid: 3715 components: - type: Transform @@ -121155,11 +125115,6 @@ entities: - type: Transform pos: 12.5,-64.5 parent: 2 - - uid: 5340 - components: - - type: Transform - pos: -33.5,22.5 - parent: 2 - uid: 5499 components: - type: Transform @@ -121230,6 +125185,11 @@ entities: - type: Transform pos: 41.5,-36.5 parent: 2 + - uid: 7001 + components: + - type: Transform + pos: -39.5,30.5 + parent: 2 - uid: 7162 components: - type: Transform @@ -121394,16 +125354,16 @@ entities: - type: Transform pos: -39.5,-19.5 parent: 2 + - uid: 10883 + components: + - type: Transform + pos: 83.5,-43.5 + parent: 2 - uid: 10988 components: - type: Transform pos: 12.5,18.5 parent: 2 - - uid: 11066 - components: - - type: Transform - pos: -23.5,19.5 - parent: 2 - uid: 11079 components: - type: Transform @@ -121438,10 +125398,10 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-38.5 parent: 2 - - uid: 12154 + - uid: 12178 components: - type: Transform - pos: -34.5,0.5 + pos: -29.5,1.5 parent: 2 - uid: 12238 components: @@ -121458,11 +125418,6 @@ entities: - type: Transform pos: 19.5,-58.5 parent: 2 - - uid: 12545 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 2 - uid: 12675 components: - type: Transform @@ -121473,11 +125428,6 @@ entities: - type: Transform pos: 2.5,-93.5 parent: 2 - - uid: 12936 - components: - - type: Transform - pos: -23.5,-13.5 - parent: 2 - uid: 12949 components: - type: Transform @@ -121518,11 +125468,6 @@ entities: - type: Transform pos: 25.5,-58.5 parent: 2 - - uid: 14126 - components: - - type: Transform - pos: -22.5,4.5 - parent: 2 - uid: 14188 components: - type: Transform @@ -121539,6 +125484,12 @@ entities: - type: Transform pos: -13.5,-21.5 parent: 2 + - uid: 14588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,29.5 + parent: 2 - uid: 15215 components: - type: Transform @@ -121576,12 +125527,6 @@ entities: - type: Transform pos: -40.5,-50.5 parent: 2 - - uid: 15917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-8.5 - parent: 2 - uid: 15925 components: - type: Transform @@ -121599,22 +125544,47 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-58.5 parent: 2 - - uid: 16450 + - uid: 16411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-13.5 + pos: -54.5,-0.5 + parent: 2 + - uid: 16412 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - uid: 16446 + components: + - type: Transform + pos: -51.5,17.5 + parent: 2 + - uid: 16447 + components: + - type: Transform + pos: -51.5,18.5 + parent: 2 + - uid: 16465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,13.5 + parent: 2 + - uid: 16500 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 16569 + components: + - type: Transform + pos: 83.5,-41.5 parent: 2 - uid: 16708 components: - type: Transform pos: 9.5,-95.5 parent: 2 - - uid: 16759 - components: - - type: Transform - pos: -52.5,-13.5 - parent: 2 - uid: 16931 components: - type: Transform @@ -121645,11 +125615,6 @@ entities: - type: Transform pos: -8.5,12.5 parent: 2 - - uid: 18540 - components: - - type: Transform - pos: -29.5,22.5 - parent: 2 - uid: 18589 components: - type: Transform @@ -121696,10 +125661,38 @@ entities: - type: Transform pos: 44.5,-50.5 parent: 2 - - uid: 20688 + - uid: 20434 components: - type: Transform - pos: -34.5,16.5 + rot: 3.141592653589793 rad + pos: -41.5,16.5 + parent: 2 + - uid: 20525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,13.5 + parent: 2 + - uid: 20561 + components: + - type: Transform + pos: -19.5,14.5 + parent: 2 + - uid: 20562 + components: + - type: Transform + pos: -19.5,13.5 + parent: 2 + - uid: 20610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,1.5 + parent: 2 + - uid: 20679 + components: + - type: Transform + pos: -40.5,1.5 parent: 2 - uid: 20712 components: @@ -121797,6 +125790,96 @@ entities: - type: Transform pos: 2.5,-13.5 parent: 2 + - uid: 23689 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 23690 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 23698 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - uid: 23700 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 23707 + components: + - type: Transform + pos: -55.5,8.5 + parent: 2 + - uid: 23709 + components: + - type: Transform + pos: -55.5,15.5 + parent: 2 + - uid: 23712 + components: + - type: Transform + pos: -46.5,18.5 + parent: 2 + - uid: 23717 + components: + - type: Transform + pos: -47.5,18.5 + parent: 2 + - uid: 23740 + components: + - type: Transform + pos: -42.5,24.5 + parent: 2 + - uid: 23793 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 + - uid: 23850 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 24297 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 + - uid: 24337 + components: + - type: Transform + pos: -56.5,-19.5 + parent: 2 + - uid: 24450 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 + - uid: 24453 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 24482 + components: + - type: Transform + pos: 53.5,-41.5 + parent: 2 + - uid: 24488 + components: + - type: Transform + pos: 51.5,-42.5 + parent: 2 + - uid: 24541 + components: + - type: Transform + pos: 49.5,-39.5 + parent: 2 - proto: RadioHandheld entities: - uid: 3964 @@ -121821,15 +125904,15 @@ entities: parent: 2 - proto: RadioHandheldSecurity entities: - - uid: 2640 + - uid: 12477 components: - type: Transform - pos: -27.435629,15.58273 + pos: -38.002132,-6.439286 parent: 2 - - uid: 14806 + - uid: 12483 components: - type: Transform - pos: -27.685753,15.697392 + pos: -37.745163,-6.2924166 parent: 2 - proto: RagItem entities: @@ -121841,7 +125924,7 @@ entities: - uid: 20693 components: - type: Transform - pos: 20.540554,-6.34948 + pos: 19.22141,-6.327036 parent: 2 - proto: Railing entities: @@ -121857,61 +125940,111 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,13.5 parent: 2 + - uid: 437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,7.5 + parent: 2 + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,9.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,8.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 88.5,-38.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 89.5,-38.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: 94.5,-38.5 + parent: 2 - uid: 1396 components: - type: Transform pos: -10.5,12.5 parent: 2 - - uid: 2291 + - uid: 1745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-46.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-46.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,-46.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-46.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-46.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-46.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + pos: 91.5,-38.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,-46.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 2713 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-42.5 + pos: -26.5,-12.5 parent: 2 - - uid: 2292 + - uid: 3309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-40.5 + pos: 90.5,-38.5 parent: 2 - - uid: 2404 + - uid: 3329 components: - type: Transform - pos: 53.5,-39.5 - parent: 2 - - uid: 2538 - components: - - type: Transform - pos: 54.5,-39.5 - parent: 2 - - uid: 2580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-40.5 - parent: 2 - - uid: 2585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-41.5 - parent: 2 - - uid: 3266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-42.5 - parent: 2 - - uid: 3293 - components: - - type: Transform - pos: 52.5,-39.5 - parent: 2 - - uid: 3303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-41.5 + pos: 92.5,-38.5 parent: 2 - uid: 3538 components: @@ -122367,6 +126500,23 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-16.5 parent: 2 + - uid: 16397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-0.5 + parent: 2 + - uid: 16398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-4.5 + parent: 2 + - uid: 16844 + components: + - type: Transform + pos: 93.5,-38.5 + parent: 2 - uid: 18054 components: - type: Transform @@ -122378,6 +126528,11 @@ entities: - type: Transform pos: -1.5,-39.5 parent: 2 + - uid: 20558 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 - uid: 21425 components: - type: Transform @@ -122407,13 +126562,61 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-17.5 parent: 2 + - uid: 24316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,4.5 + parent: 2 + - uid: 24460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-14.5 + parent: 2 + - uid: 24498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 24500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 - proto: RailingCorner entities: + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,9.5 + parent: 2 - uid: 1546 components: - type: Transform pos: -15.5,12.5 parent: 2 + - uid: 1628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 - uid: 3011 components: - type: Transform @@ -122425,6 +126628,12 @@ entities: - type: Transform pos: -22.5,-15.5 parent: 2 + - uid: 7291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-14.5 + parent: 2 - uid: 7376 components: - type: Transform @@ -122460,26 +126669,42 @@ entities: - type: Transform pos: -9.5,12.5 parent: 2 + - uid: 20559 + components: + - type: Transform + pos: -36.5,24.5 + parent: 2 - uid: 22590 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-38.5 parent: 2 -- proto: RailingCornerSmall - entities: - - uid: 3290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-39.5 - parent: 2 - - uid: 3291 + - uid: 24314 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,-39.5 + pos: -18.5,4.5 parent: 2 + - uid: 24503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-14.5 + parent: 2 + - uid: 24510 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 2 + - uid: 24761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-40.5 + parent: 2 +- proto: RailingCornerSmall + entities: - uid: 7089 components: - type: Transform @@ -122701,92 +126926,182 @@ entities: - type: Transform pos: 47.5,8.5 parent: 2 - - uid: 1193 + - uid: 2888 components: - type: Transform - pos: 51.5,-40.5 - parent: 2 - - uid: 2459 - components: - - type: Transform - pos: 55.5,-40.5 - parent: 2 - - uid: 10216 - components: - - type: Transform - pos: -53.5,2.5 + pos: -55.5,-3.5 parent: 2 - proto: RandomCableHVSpawner entities: - - uid: 2965 + - uid: 6875 components: - type: Transform - pos: -41.5,23.5 + pos: -61.5,26.5 parent: 2 - - uid: 7929 + - uid: 7038 components: - type: Transform - pos: -43.5,23.5 + pos: -61.5,24.5 parent: 2 - - uid: 8334 + - uid: 7057 components: - type: Transform - pos: -52.5,11.5 + pos: -62.5,25.5 parent: 2 - - uid: 17767 + - uid: 7058 components: - type: Transform - pos: -53.5,16.5 + pos: -61.5,28.5 parent: 2 - - uid: 17769 + - uid: 7061 components: - type: Transform - pos: -49.5,15.5 + pos: -61.5,30.5 parent: 2 - - uid: 17813 + - uid: 7068 components: - type: Transform - pos: -54.5,14.5 + pos: -62.5,29.5 parent: 2 - - uid: 18082 + - uid: 7074 components: - type: Transform - pos: -53.5,14.5 + pos: -60.5,29.5 parent: 2 - - uid: 18083 + - uid: 7075 components: - type: Transform - pos: -52.5,16.5 + pos: -64.5,29.5 parent: 2 - - uid: 18084 + - uid: 7076 components: - type: Transform - pos: -52.5,14.5 + pos: -65.5,30.5 parent: 2 - - uid: 18087 + - uid: 7087 components: - type: Transform - pos: -50.5,16.5 + pos: -66.5,29.5 parent: 2 - - uid: 18088 + - uid: 7108 components: - type: Transform - pos: -50.5,14.5 + pos: -58.5,29.5 parent: 2 - - uid: 18089 + - uid: 7113 components: - type: Transform - pos: -51.5,15.5 + pos: -57.5,30.5 parent: 2 - - uid: 18150 + - uid: 7114 components: - type: Transform - pos: -38.5,23.5 + pos: -56.5,29.5 parent: 2 - - uid: 18721 + - uid: 7183 components: - type: Transform - pos: -52.5,15.5 + pos: -53.5,31.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + pos: -57.5,31.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + pos: -61.5,31.5 + parent: 2 + - uid: 7200 + components: + - type: Transform + pos: -65.5,31.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + pos: -50.5,29.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + pos: -49.5,30.5 + parent: 2 + - uid: 7229 + components: + - type: Transform + pos: -48.5,29.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: -49.5,31.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + pos: -46.5,29.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + pos: -63.5,13.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: -63.5,21.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: -63.5,17.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + pos: -62.5,17.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: -61.5,18.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + pos: -61.5,16.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: -62.5,13.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: -61.5,14.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: -61.5,12.5 + parent: 2 + - uid: 7481 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + pos: -62.5,9.5 + parent: 2 + - uid: 7521 + components: + - type: Transform + pos: -61.5,10.5 parent: 2 - uid: 18982 components: @@ -122798,26 +127113,11 @@ entities: - type: Transform pos: -71.5,-56.5 parent: 2 - - uid: 20508 - components: - - type: Transform - pos: -48.5,15.5 - parent: 2 - uid: 20549 components: - type: Transform pos: -76.5,-54.5 parent: 2 - - uid: 20565 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 2 - - uid: 20568 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 2 - uid: 20749 components: - type: Transform @@ -122828,11 +127128,6 @@ entities: - type: Transform pos: -66.5,-54.5 parent: 2 - - uid: 21320 - components: - - type: Transform - pos: -49.5,23.5 - parent: 2 - uid: 21377 components: - type: Transform @@ -122843,21 +127138,6 @@ entities: - type: Transform pos: -65.5,-54.5 parent: 2 - - uid: 23419 - components: - - type: Transform - pos: -46.5,25.5 - parent: 2 - - uid: 23420 - components: - - type: Transform - pos: -50.5,24.5 - parent: 2 - - uid: 23700 - components: - - type: Transform - pos: -50.5,22.5 - parent: 2 - uid: 23702 components: - type: Transform @@ -122868,26 +127148,11 @@ entities: - type: Transform pos: 57.5,2.5 parent: 2 - - uid: 23705 - components: - - type: Transform - pos: -51.5,23.5 - parent: 2 - uid: 23706 components: - type: Transform pos: 59.5,2.5 parent: 2 - - uid: 23707 - components: - - type: Transform - pos: 61.5,2.5 - parent: 2 - - uid: 23709 - components: - - type: Transform - pos: 63.5,2.5 - parent: 2 - uid: 23710 components: - type: Transform @@ -122913,11 +127178,6 @@ entities: - type: Transform pos: 70.5,2.5 parent: 2 - - uid: 23717 - components: - - type: Transform - pos: 62.5,3.5 - parent: 2 - uid: 23718 components: - type: Transform @@ -122942,11 +127202,6 @@ entities: parent: 2 - proto: RandomDrinkBottle entities: - - uid: 1844 - components: - - type: Transform - pos: 54.5,-39.5 - parent: 2 - uid: 4234 components: - type: Transform @@ -122962,11 +127217,6 @@ entities: - type: Transform pos: 49.5,11.5 parent: 2 - - uid: 12051 - components: - - type: Transform - pos: -46.5,7.5 - parent: 2 - uid: 13721 components: - type: Transform @@ -122982,6 +127232,11 @@ entities: - type: Transform pos: 46.5,-74.5 parent: 2 + - uid: 20429 + components: + - type: Transform + pos: -41.5,16.5 + parent: 2 - uid: 21404 components: - type: Transform @@ -122989,6 +127244,11 @@ entities: parent: 2 - proto: RandomDrinkGlass entities: + - uid: 2191 + components: + - type: Transform + pos: 52.5,-35.5 + parent: 2 - uid: 3864 components: - type: Transform @@ -123046,6 +127306,11 @@ entities: - type: Transform pos: -19.5,-40.5 parent: 2 + - uid: 24540 + components: + - type: Transform + pos: 52.5,-35.5 + parent: 2 - proto: RandomFoodBakedSingle entities: - uid: 7905 @@ -123096,6 +127361,11 @@ entities: - type: Transform pos: 7.5,-33.5 parent: 2 + - uid: 2381 + components: + - type: Transform + pos: -44.5,20.5 + parent: 2 - uid: 3777 components: - type: Transform @@ -123106,11 +127376,6 @@ entities: - type: Transform pos: 42.5,3.5 parent: 2 - - uid: 20703 - components: - - type: Transform - pos: -29.5,16.5 - parent: 2 - uid: 21623 components: - type: Transform @@ -123195,6 +127460,11 @@ entities: - type: Transform pos: 41.5,10.5 parent: 2 + - uid: 1600 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 - uid: 2149 components: - type: Transform @@ -123225,11 +127495,6 @@ entities: - type: Transform pos: 24.5,9.5 parent: 2 - - uid: 7057 - components: - - type: Transform - pos: -42.5,-0.5 - parent: 2 - uid: 7975 components: - type: Transform @@ -123305,21 +127570,6 @@ entities: - type: Transform pos: 47.5,-39.5 parent: 2 - - uid: 16148 - components: - - type: Transform - pos: 55.5,-37.5 - parent: 2 - - uid: 16149 - components: - - type: Transform - pos: 49.5,-39.5 - parent: 2 - - uid: 16150 - components: - - type: Transform - pos: 49.5,-41.5 - parent: 2 - uid: 16155 components: - type: Transform @@ -123515,38 +127765,113 @@ entities: - type: Transform pos: 21.5,11.5 parent: 2 - - uid: 23918 + - uid: 24341 components: - type: Transform - pos: -42.5,5.5 + pos: -36.5,18.5 parent: 2 - - uid: 23919 + - uid: 24342 components: - type: Transform - pos: -35.5,1.5 + pos: -33.5,7.5 parent: 2 - - uid: 23920 + - uid: 24343 components: - type: Transform - pos: -35.5,6.5 + pos: -21.5,12.5 parent: 2 - - uid: 23923 + - uid: 24344 components: - type: Transform - pos: -44.5,-8.5 + pos: -26.5,18.5 parent: 2 - - uid: 23926 + - uid: 24345 components: - type: Transform - pos: -40.5,-6.5 + pos: -37.5,22.5 + parent: 2 + - uid: 24346 + components: + - type: Transform + pos: -49.5,20.5 + parent: 2 + - uid: 24347 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 + - uid: 24348 + components: + - type: Transform + pos: -54.5,9.5 + parent: 2 + - uid: 24349 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 24350 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 + - uid: 24351 + components: + - type: Transform + pos: -54.5,-8.5 + parent: 2 + - uid: 24352 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 24353 + components: + - type: Transform + pos: -57.5,-16.5 + parent: 2 + - uid: 24354 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 24355 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 24357 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 24358 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 24476 + components: + - type: Transform + pos: 53.5,-40.5 + parent: 2 + - uid: 24477 + components: + - type: Transform + pos: 51.5,-40.5 + parent: 2 + - uid: 24478 + components: + - type: Transform + pos: 52.5,-40.5 + parent: 2 + - uid: 24497 + components: + - type: Transform + pos: 53.5,-42.5 parent: 2 - proto: RandomPosterContraband entities: - - uid: 104 - components: - - type: Transform - pos: 52.5,-43.5 - parent: 2 - uid: 5583 components: - type: Transform @@ -123557,46 +127882,16 @@ entities: - type: Transform pos: 19.5,-51.5 parent: 2 - - uid: 10662 - components: - - type: Transform - pos: -37.5,-18.5 - parent: 2 - - uid: 12227 - components: - - type: Transform - pos: 54.5,-43.5 - parent: 2 - - uid: 12565 - components: - - type: Transform - pos: 57.5,-41.5 - parent: 2 - uid: 15739 components: - type: Transform pos: -31.5,-18.5 parent: 2 - - uid: 16147 - components: - - type: Transform - pos: 54.5,-37.5 - parent: 2 - uid: 16158 components: - type: Transform pos: 46.5,-7.5 parent: 2 - - uid: 20598 - components: - - type: Transform - pos: -45.5,0.5 - parent: 2 - - uid: 21274 - components: - - type: Transform - pos: -45.5,7.5 - parent: 2 - uid: 22651 components: - type: Transform @@ -123617,38 +127912,18 @@ entities: - type: Transform pos: -44.5,-56.5 parent: 2 - - uid: 23921 + - uid: 24339 components: - type: Transform - pos: -38.5,7.5 + pos: -37.5,9.5 parent: 2 - - uid: 23924 + - uid: 24340 components: - type: Transform - pos: -44.5,-3.5 + pos: -41.5,14.5 parent: 2 - proto: RandomPosterLegit entities: - - uid: 1540 - components: - - type: Transform - pos: -22.5,-11.5 - parent: 2 - - uid: 2791 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 2 - - uid: 2793 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 2 - - uid: 2859 - components: - - type: Transform - pos: -28.5,5.5 - parent: 2 - uid: 3356 components: - type: Transform @@ -123704,11 +127979,6 @@ entities: - type: Transform pos: 34.5,9.5 parent: 2 - - uid: 9614 - components: - - type: Transform - pos: -31.5,11.5 - parent: 2 - uid: 10479 components: - type: Transform @@ -123764,11 +128034,6 @@ entities: - type: Transform pos: -28.5,-52.5 parent: 2 - - uid: 14507 - components: - - type: Transform - pos: -23.5,13.5 - parent: 2 - uid: 15128 components: - type: Transform @@ -123804,11 +128069,6 @@ entities: - type: Transform pos: -0.5,9.5 parent: 2 - - uid: 16134 - components: - - type: Transform - pos: -17.5,12.5 - parent: 2 - uid: 16135 components: - type: Transform @@ -123824,16 +128084,6 @@ entities: - type: Transform pos: 40.5,2.5 parent: 2 - - uid: 16263 - components: - - type: Transform - pos: -18.5,-8.5 - parent: 2 - - uid: 16974 - components: - - type: Transform - pos: -13.5,-4.5 - parent: 2 - uid: 17024 components: - type: Transform @@ -123854,26 +128104,11 @@ entities: - type: Transform pos: 7.5,21.5 parent: 2 - - uid: 19129 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 2 - uid: 20227 components: - type: Transform pos: -4.5,13.5 parent: 2 - - uid: 20228 - components: - - type: Transform - pos: -17.5,2.5 - parent: 2 - - uid: 20230 - components: - - type: Transform - pos: -19.5,0.5 - parent: 2 - uid: 20251 components: - type: Transform @@ -123884,16 +128119,6 @@ entities: - type: Transform pos: -27.5,-51.5 parent: 2 - - uid: 20557 - components: - - type: Transform - pos: -27.5,18.5 - parent: 2 - - uid: 20586 - components: - - type: Transform - pos: -22.5,18.5 - parent: 2 - uid: 21260 components: - type: Transform @@ -123949,11 +128174,6 @@ entities: - type: Transform pos: 20.5,23.5 parent: 2 - - uid: 22673 - components: - - type: Transform - pos: -17.5,9.5 - parent: 2 - uid: 22676 components: - type: Transform @@ -124019,25 +128239,70 @@ entities: - type: Transform pos: 12.5,-15.5 parent: 2 - - uid: 22699 + - uid: 24326 components: - type: Transform - pos: -31.5,0.5 + pos: -20.5,8.5 parent: 2 - - uid: 22726 + - uid: 24327 components: - type: Transform - pos: -29.5,-2.5 + pos: -22.5,4.5 parent: 2 - - uid: 22727 + - uid: 24328 components: - type: Transform - pos: -23.5,6.5 + pos: -24.5,-0.5 parent: 2 - - uid: 23925 + - uid: 24329 components: - type: Transform - pos: -35.5,-7.5 + pos: -26.5,-4.5 + parent: 2 + - uid: 24330 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 24331 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 24332 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 24333 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 24334 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 24335 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 24336 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 + - uid: 24338 + components: + - type: Transform + pos: -28.5,16.5 + parent: 2 + - uid: 24440 + components: + - type: Transform + pos: -30.5,2.5 parent: 2 - proto: RandomSmokables entities: @@ -124046,6 +128311,11 @@ entities: - type: Transform pos: 27.675076,-28.617666 parent: 2 + - uid: 1929 + components: + - type: Transform + pos: -39.363045,19.707558 + parent: 2 - uid: 3412 components: - type: Transform @@ -124076,11 +128346,6 @@ entities: - type: Transform pos: -19.602623,-40.284576 parent: 2 - - uid: 22516 - components: - - type: Transform - pos: -30.295214,3.7242641 - parent: 2 - uid: 22751 components: - type: Transform @@ -124111,18 +128376,23 @@ entities: - type: Transform pos: 48.336163,-60.439056 parent: 2 -- proto: RandomSnacks - entities: - - uid: 5878 + - uid: 24319 components: - type: Transform - pos: -38.5,6.5 + pos: -17.680635,9.668823 parent: 2 +- proto: RandomSnacks + entities: - uid: 12935 components: - type: Transform pos: -59.5,-29.5 parent: 2 + - uid: 20081 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 - proto: RandomSoap entities: - uid: 14422 @@ -124192,26 +128462,11 @@ entities: - type: Transform pos: -36.5,-19.5 parent: 2 - - uid: 9518 - components: - - type: Transform - pos: -32.5,-16.5 - parent: 2 - - uid: 9537 - components: - - type: Transform - pos: -29.5,18.5 - parent: 2 - uid: 9999 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 10051 - components: - - type: Transform - pos: -19.5,19.5 - parent: 2 - uid: 10064 components: - type: Transform @@ -124357,11 +128612,31 @@ entities: - type: Transform pos: -23.5,-47.5 parent: 2 + - uid: 15918 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 - uid: 15987 components: - type: Transform pos: 46.5,7.5 parent: 2 + - uid: 16354 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 16491 + components: + - type: Transform + pos: -51.5,12.5 + parent: 2 + - uid: 16492 + components: + - type: Transform + pos: -50.5,11.5 + parent: 2 - uid: 16658 components: - type: Transform @@ -124387,11 +128662,6 @@ entities: - type: Transform pos: 28.5,-76.5 parent: 2 - - uid: 18512 - components: - - type: Transform - pos: 91.5,-34.5 - parent: 2 - uid: 18932 components: - type: Transform @@ -124407,40 +128677,40 @@ entities: - type: Transform pos: -2.5,-27.5 parent: 2 - - uid: 20011 + - uid: 19134 components: - type: Transform - pos: 71.5,-42.5 + pos: 92.5,-35.5 parent: 2 - - uid: 20012 + - uid: 19135 components: - type: Transform - pos: 75.5,-45.5 + pos: 91.5,-52.5 parent: 2 - - uid: 20013 + - uid: 19136 components: - type: Transform - pos: 68.5,-43.5 + pos: 87.5,-54.5 parent: 2 - - uid: 20014 + - uid: 19137 components: - type: Transform - pos: 59.5,-41.5 + pos: 82.5,-58.5 parent: 2 - - uid: 20015 + - uid: 19138 components: - type: Transform - pos: 77.5,-41.5 + pos: 74.5,-60.5 parent: 2 - - uid: 20016 + - uid: 19139 components: - type: Transform - pos: 64.5,-39.5 + pos: 75.5,-54.5 parent: 2 - - uid: 20017 + - uid: 19140 components: - type: Transform - pos: 84.5,-39.5 + pos: 79.5,-47.5 parent: 2 - uid: 20018 components: @@ -124752,22 +129022,17 @@ entities: - type: Transform pos: -0.5,-97.5 parent: 2 - - uid: 23941 - components: - - type: Transform - pos: -39.5,-0.5 - parent: 2 - - uid: 23942 - components: - - type: Transform - pos: -45.5,2.5 - parent: 2 - proto: RandomSpawner100 entities: - - uid: 23940 + - uid: 1934 components: - type: Transform - pos: -36.5,-6.5 + pos: 51.5,-41.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: 52.5,-42.5 parent: 2 - proto: RandomVending entities: @@ -124793,30 +129058,45 @@ entities: - type: Transform pos: 48.5,-15.5 parent: 2 + - uid: 23851 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 - proto: RandomVendingDrinks entities: + - uid: 2380 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 - uid: 6102 components: - type: Transform pos: 34.5,14.5 parent: 2 - - uid: 6184 + - uid: 12244 components: - type: Transform - pos: -45.5,4.5 + pos: -33.5,-1.5 + parent: 2 + - uid: 23848 + components: + - type: Transform + pos: -18.5,2.5 parent: 2 - proto: RandomVendingSnacks entities: - - uid: 2604 - components: - - type: Transform - pos: -16.5,7.5 - parent: 2 - uid: 12607 components: - type: Transform pos: 44.5,-25.5 parent: 2 + - uid: 23849 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 - proto: RCD entities: - uid: 2579 @@ -124852,10 +129132,10 @@ entities: - type: Transform pos: -4.4759436,-30.393612 parent: 2 - - uid: 20485 + - uid: 19564 components: - type: Transform - pos: -39.499985,-3.2793717 + pos: -29.42041,15.723618 parent: 2 - proto: ReagentContainerSugar entities: @@ -124864,10 +129144,10 @@ entities: - type: Transform pos: -4.6426926,-30.331068 parent: 2 - - uid: 20489 + - uid: 19598 components: - type: Transform - pos: -39.708424,-3.362763 + pos: -29.670536,15.582893 parent: 2 - proto: Recycler entities: @@ -124890,10 +129170,15 @@ entities: - type: Transform pos: -5.5,-86.5 parent: 2 - - uid: 2158 + - uid: 2382 components: - type: Transform - pos: 75.5,-43.5 + pos: 96.5,-34.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: 93.5,-35.5 parent: 2 - uid: 9082 components: @@ -124936,6 +129221,21 @@ entities: - type: Transform pos: 5.5,-97.5 parent: 2 + - uid: 18937 + components: + - type: Transform + pos: 89.5,-49.5 + parent: 2 + - uid: 18940 + components: + - type: Transform + pos: 91.5,-54.5 + parent: 2 + - uid: 18991 + components: + - type: Transform + pos: 96.5,-51.5 + parent: 2 - uid: 19155 components: - type: Transform @@ -124952,16 +129252,6 @@ entities: - type: Transform pos: 25.5,-69.5 parent: 2 - - uid: 20676 - components: - - type: Transform - pos: -37.5,15.5 - parent: 2 - - uid: 22085 - components: - - type: Transform - pos: -39.5,14.5 - parent: 2 - uid: 22804 components: - type: Transform @@ -124973,6 +129263,11 @@ entities: rot: 3.141592653589793 rad pos: 97.5,-27.5 parent: 2 + - uid: 24588 + components: + - type: Transform + pos: 97.5,-35.5 + parent: 2 - proto: ReinforcedPlasmaWindow entities: - uid: 11 @@ -125227,11 +129522,6 @@ entities: - type: Transform pos: -31.5,-71.5 parent: 2 - - uid: 28 - components: - - type: Transform - pos: -29.5,5.5 - parent: 2 - uid: 62 components: - type: Transform @@ -125252,6 +129542,11 @@ entities: - type: Transform pos: -5.5,9.5 parent: 2 + - uid: 139 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 - uid: 168 components: - type: Transform @@ -125267,61 +129562,106 @@ entities: - type: Transform pos: -35.5,-68.5 parent: 2 + - uid: 184 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 - uid: 196 components: - type: Transform pos: 38.5,26.5 parent: 2 + - uid: 214 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 - uid: 244 components: - type: Transform pos: -27.5,-39.5 parent: 2 - - uid: 247 - components: - - type: Transform - pos: -35.5,-3.5 - parent: 2 - - uid: 251 - components: - - type: Transform - pos: -45.5,-7.5 - parent: 2 - - uid: 252 - components: - - type: Transform - pos: -27.5,-3.5 - parent: 2 - uid: 280 components: - type: Transform pos: -27.5,-20.5 parent: 2 - - uid: 293 - components: - - type: Transform - pos: -24.5,8.5 - parent: 2 - uid: 296 components: - type: Transform pos: -31.5,-76.5 parent: 2 - - uid: 367 + - uid: 318 components: - type: Transform - pos: -26.5,8.5 + pos: -17.5,13.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: -45.5,-9.5 parent: 2 - uid: 383 components: - type: Transform pos: 16.5,17.5 parent: 2 + - uid: 385 + components: + - type: Transform + pos: -26.5,7.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 - uid: 435 components: - type: Transform pos: 52.5,-11.5 parent: 2 + - uid: 450 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 - uid: 482 components: - type: Transform @@ -125330,7 +129670,7 @@ entities: - uid: 499 components: - type: Transform - pos: -46.5,-1.5 + pos: -23.5,-11.5 parent: 2 - uid: 515 components: @@ -125377,10 +129717,20 @@ entities: - type: Transform pos: 53.5,-50.5 parent: 2 - - uid: 695 + - uid: 650 components: - type: Transform - pos: -45.5,-4.5 + pos: -22.5,14.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: -27.5,-0.5 parent: 2 - uid: 703 components: @@ -125392,6 +129742,11 @@ entities: - type: Transform pos: -4.5,19.5 parent: 2 + - uid: 710 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 - uid: 712 components: - type: Transform @@ -125417,11 +129772,36 @@ entities: - type: Transform pos: -7.5,9.5 parent: 2 + - uid: 758 + components: + - type: Transform + pos: -25.5,12.5 + parent: 2 - uid: 763 components: - type: Transform pos: -2.5,9.5 parent: 2 + - uid: 770 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 - uid: 855 components: - type: Transform @@ -125432,6 +129812,21 @@ entities: - type: Transform pos: 1.5,14.5 parent: 2 + - uid: 906 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 - uid: 972 components: - type: Transform @@ -125442,16 +129837,16 @@ entities: - type: Transform pos: -3.5,20.5 parent: 2 + - uid: 991 + components: + - type: Transform + pos: -22.5,13.5 + parent: 2 - uid: 1013 components: - type: Transform pos: 50.5,-10.5 parent: 2 - - uid: 1036 - components: - - type: Transform - pos: -31.5,6.5 - parent: 2 - uid: 1039 components: - type: Transform @@ -125462,6 +129857,21 @@ entities: - type: Transform pos: 7.5,28.5 parent: 2 + - uid: 1080 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 - uid: 1098 components: - type: Transform @@ -125477,31 +129887,26 @@ entities: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 1119 + - uid: 1105 components: - type: Transform - pos: -24.5,-8.5 + pos: -20.5,15.5 parent: 2 - uid: 1141 components: - type: Transform pos: -55.5,-55.5 parent: 2 - - uid: 1142 + - uid: 1144 components: - type: Transform - pos: 60.5,-37.5 + pos: -23.5,12.5 parent: 2 - uid: 1160 components: - type: Transform pos: 8.5,9.5 parent: 2 - - uid: 1161 - components: - - type: Transform - pos: -31.5,7.5 - parent: 2 - uid: 1189 components: - type: Transform @@ -125627,6 +130032,11 @@ entities: - type: Transform pos: 3.5,1.5 parent: 2 + - uid: 1591 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 - uid: 1594 components: - type: Transform @@ -125687,11 +130097,6 @@ entities: - type: Transform pos: -21.5,-32.5 parent: 2 - - uid: 1891 - components: - - type: Transform - pos: -35.5,13.5 - parent: 2 - uid: 1900 components: - type: Transform @@ -125712,26 +130117,66 @@ entities: - type: Transform pos: -21.5,-33.5 parent: 2 - - uid: 2042 + - uid: 2041 components: - type: Transform - pos: -45.5,-5.5 + pos: -14.5,-7.5 parent: 2 - uid: 2065 components: - type: Transform pos: -3.5,-59.5 parent: 2 + - uid: 2154 + components: + - type: Transform + pos: 58.5,-36.5 + parent: 2 - uid: 2178 components: - type: Transform pos: -6.5,-22.5 parent: 2 + - uid: 2203 + components: + - type: Transform + pos: 65.5,-41.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: 65.5,-43.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: 72.5,-43.5 + parent: 2 - uid: 2329 components: - type: Transform pos: 34.5,27.5 parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 73.5,-42.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: 73.5,-41.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: 65.5,-40.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 - uid: 2397 components: - type: Transform @@ -125747,6 +130192,16 @@ entities: - type: Transform pos: -9.5,-23.5 parent: 2 + - uid: 2585 + components: + - type: Transform + pos: 65.5,-42.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: -38.5,32.5 + parent: 2 - uid: 2600 components: - type: Transform @@ -125762,11 +130217,6 @@ entities: - type: Transform pos: -22.5,30.5 parent: 2 - - uid: 2736 - components: - - type: Transform - pos: -44.5,8.5 - parent: 2 - uid: 2747 components: - type: Transform @@ -125802,11 +130252,6 @@ entities: - type: Transform pos: -30.5,-79.5 parent: 2 - - uid: 3029 - components: - - type: Transform - pos: -31.5,-0.5 - parent: 2 - uid: 3051 components: - type: Transform @@ -125827,11 +130272,6 @@ entities: - type: Transform pos: 72.5,-67.5 parent: 2 - - uid: 3119 - components: - - type: Transform - pos: -45.5,-6.5 - parent: 2 - uid: 3121 components: - type: Transform @@ -125857,11 +130297,6 @@ entities: - type: Transform pos: -17.5,31.5 parent: 2 - - uid: 3221 - components: - - type: Transform - pos: -34.5,-6.5 - parent: 2 - uid: 3262 components: - type: Transform @@ -125877,6 +130312,11 @@ entities: - type: Transform pos: -44.5,-33.5 parent: 2 + - uid: 3354 + components: + - type: Transform + pos: 73.5,-43.5 + parent: 2 - uid: 3387 components: - type: Transform @@ -125892,6 +130332,11 @@ entities: - type: Transform pos: -27.5,-43.5 parent: 2 + - uid: 3524 + components: + - type: Transform + pos: 72.5,-41.5 + parent: 2 - uid: 3562 components: - type: Transform @@ -125912,11 +130357,6 @@ entities: - type: Transform pos: 40.5,-66.5 parent: 2 - - uid: 3705 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 2 - uid: 3725 components: - type: Transform @@ -125947,11 +130387,6 @@ entities: - type: Transform pos: 12.5,-75.5 parent: 2 - - uid: 3940 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 2 - uid: 3959 components: - type: Transform @@ -126027,11 +130462,6 @@ entities: - type: Transform pos: 30.5,-41.5 parent: 2 - - uid: 4494 - components: - - type: Transform - pos: -35.5,11.5 - parent: 2 - uid: 4577 components: - type: Transform @@ -126087,11 +130517,6 @@ entities: - type: Transform pos: 60.5,-79.5 parent: 2 - - uid: 4839 - components: - - type: Transform - pos: -60.5,-17.5 - parent: 2 - uid: 4847 components: - type: Transform @@ -126197,11 +130622,6 @@ entities: - type: Transform pos: 45.5,-87.5 parent: 2 - - uid: 5194 - components: - - type: Transform - pos: -63.5,-7.5 - parent: 2 - uid: 5208 components: - type: Transform @@ -126227,21 +130647,6 @@ entities: - type: Transform pos: -31.5,-72.5 parent: 2 - - uid: 5325 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 2 - - uid: 5355 - components: - - type: Transform - pos: -30.5,25.5 - parent: 2 - - uid: 5368 - components: - - type: Transform - pos: -31.5,8.5 - parent: 2 - uid: 5415 components: - type: Transform @@ -126252,40 +130657,25 @@ entities: - type: Transform pos: 7.5,14.5 parent: 2 - - uid: 5445 - components: - - type: Transform - pos: -28.5,6.5 - parent: 2 - uid: 5458 components: - type: Transform - pos: 76.5,-43.5 + pos: 59.5,-38.5 parent: 2 - - uid: 5478 + - uid: 5464 components: - type: Transform - pos: -31.5,25.5 + pos: 59.5,-37.5 parent: 2 - uid: 5508 components: - type: Transform pos: 46.5,23.5 parent: 2 - - uid: 5554 + - uid: 5546 components: - type: Transform - pos: 53.5,-36.5 - parent: 2 - - uid: 5557 - components: - - type: Transform - pos: -52.5,-10.5 - parent: 2 - - uid: 5559 - components: - - type: Transform - pos: -55.5,-10.5 + pos: 58.5,-38.5 parent: 2 - uid: 5566 components: @@ -126307,11 +130697,6 @@ entities: - type: Transform pos: 69.5,-59.5 parent: 2 - - uid: 5642 - components: - - type: Transform - pos: 75.5,-41.5 - parent: 2 - uid: 5647 components: - type: Transform @@ -126332,21 +130717,11 @@ entities: - type: Transform pos: 32.5,-53.5 parent: 2 - - uid: 5689 - components: - - type: Transform - pos: -21.5,-14.5 - parent: 2 - uid: 5692 components: - type: Transform pos: 32.5,-55.5 parent: 2 - - uid: 5699 - components: - - type: Transform - pos: 75.5,-42.5 - parent: 2 - uid: 5706 components: - type: Transform @@ -126357,11 +130732,6 @@ entities: - type: Transform pos: -25.5,-46.5 parent: 2 - - uid: 5808 - components: - - type: Transform - pos: -36.5,-10.5 - parent: 2 - uid: 5837 components: - type: Transform @@ -126407,6 +130777,11 @@ entities: - type: Transform pos: 27.5,9.5 parent: 2 + - uid: 6043 + components: + - type: Transform + pos: 73.5,-39.5 + parent: 2 - uid: 6083 components: - type: Transform @@ -126437,16 +130812,36 @@ entities: - type: Transform pos: -33.5,-81.5 parent: 2 + - uid: 6223 + components: + - type: Transform + pos: 66.5,-45.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + pos: 65.5,-44.5 + parent: 2 - uid: 6265 components: - type: Transform pos: 41.5,-60.5 parent: 2 + - uid: 6293 + components: + - type: Transform + pos: 68.5,-39.5 + parent: 2 - uid: 6348 components: - type: Transform pos: 7.5,-54.5 parent: 2 + - uid: 6373 + components: + - type: Transform + pos: 77.5,-45.5 + parent: 2 - uid: 6381 components: - type: Transform @@ -126492,11 +130887,6 @@ entities: - type: Transform pos: 0.5,-83.5 parent: 2 - - uid: 6475 - components: - - type: Transform - pos: -46.5,8.5 - parent: 2 - uid: 6485 components: - type: Transform @@ -126527,11 +130917,6 @@ entities: - type: Transform pos: -15.5,-57.5 parent: 2 - - uid: 6510 - components: - - type: Transform - pos: -43.5,8.5 - parent: 2 - uid: 6519 components: - type: Transform @@ -126552,6 +130937,16 @@ entities: - type: Transform pos: -10.5,-60.5 parent: 2 + - uid: 6555 + components: + - type: Transform + pos: 66.5,-39.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + pos: 67.5,-45.5 + parent: 2 - uid: 6621 components: - type: Transform @@ -126577,21 +130972,6 @@ entities: - type: Transform pos: 41.5,-59.5 parent: 2 - - uid: 6637 - components: - - type: Transform - pos: -39.5,-13.5 - parent: 2 - - uid: 6638 - components: - - type: Transform - pos: -40.5,-14.5 - parent: 2 - - uid: 6643 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 2 - uid: 6658 components: - type: Transform @@ -126607,6 +130987,11 @@ entities: - type: Transform pos: 32.5,-33.5 parent: 2 + - uid: 6806 + components: + - type: Transform + pos: 76.5,-43.5 + parent: 2 - uid: 6825 components: - type: Transform @@ -126617,21 +131002,26 @@ entities: - type: Transform pos: 33.5,22.5 parent: 2 - - uid: 6871 - components: - - type: Transform - pos: -24.5,1.5 - parent: 2 - uid: 6881 components: - type: Transform pos: -7.5,-23.5 parent: 2 + - uid: 6906 + components: + - type: Transform + pos: 67.5,-39.5 + parent: 2 - uid: 6926 components: - type: Transform pos: 46.5,-84.5 parent: 2 + - uid: 6944 + components: + - type: Transform + pos: 71.5,-39.5 + parent: 2 - uid: 6945 components: - type: Transform @@ -126642,16 +131032,6 @@ entities: - type: Transform pos: 45.5,-1.5 parent: 2 - - uid: 6976 - components: - - type: Transform - pos: 63.5,-43.5 - parent: 2 - - uid: 6983 - components: - - type: Transform - pos: -26.5,1.5 - parent: 2 - uid: 7039 components: - type: Transform @@ -126717,11 +131097,6 @@ entities: - type: Transform pos: 45.5,6.5 parent: 2 - - uid: 7480 - components: - - type: Transform - pos: 74.5,-47.5 - parent: 2 - uid: 7539 components: - type: Transform @@ -126757,51 +131132,11 @@ entities: - type: Transform pos: 6.5,-59.5 parent: 2 - - uid: 7646 - components: - - type: Transform - pos: -36.5,19.5 - parent: 2 - - uid: 7678 - components: - - type: Transform - pos: -26.5,14.5 - parent: 2 - - uid: 7694 - components: - - type: Transform - pos: -47.5,8.5 - parent: 2 - - uid: 7729 - components: - - type: Transform - pos: -14.5,-7.5 - parent: 2 - - uid: 7730 - components: - - type: Transform - pos: -14.5,-8.5 - parent: 2 - - uid: 7750 - components: - - type: Transform - pos: -19.5,-8.5 - parent: 2 - uid: 7828 components: - type: Transform pos: -9.5,14.5 parent: 2 - - uid: 7829 - components: - - type: Transform - pos: -31.5,17.5 - parent: 2 - - uid: 7951 - components: - - type: Transform - pos: -23.5,11.5 - parent: 2 - uid: 8243 components: - type: Transform @@ -126902,11 +131237,6 @@ entities: - type: Transform pos: 55.5,-25.5 parent: 2 - - uid: 8671 - components: - - type: Transform - pos: -35.5,17.5 - parent: 2 - uid: 8682 components: - type: Transform @@ -126962,11 +131292,6 @@ entities: - type: Transform pos: 45.5,4.5 parent: 2 - - uid: 8857 - components: - - type: Transform - pos: -32.5,15.5 - parent: 2 - uid: 8890 components: - type: Transform @@ -126982,20 +131307,10 @@ entities: - type: Transform pos: 31.5,-59.5 parent: 2 - - uid: 9019 + - uid: 9206 components: - type: Transform - pos: -29.5,25.5 - parent: 2 - - uid: 9108 - components: - - type: Transform - pos: 68.5,-45.5 - parent: 2 - - uid: 9125 - components: - - type: Transform - pos: -31.5,16.5 + pos: -46.5,4.5 parent: 2 - uid: 9254 components: @@ -127122,6 +131437,16 @@ entities: - type: Transform pos: 2.5,-18.5 parent: 2 + - uid: 10212 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 10214 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 - uid: 10251 components: - type: Transform @@ -127157,21 +131482,56 @@ entities: - type: Transform pos: -27.5,-23.5 parent: 2 + - uid: 10721 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 10749 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - uid: 10750 + components: + - type: Transform + pos: -46.5,1.5 + parent: 2 + - uid: 10751 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 + - uid: 10752 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 10779 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - uid: 10783 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 - uid: 10793 components: - type: Transform pos: 64.5,-60.5 parent: 2 + - uid: 10808 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 2 - uid: 10814 components: - type: Transform pos: 71.5,-57.5 parent: 2 - - uid: 10817 - components: - - type: Transform - pos: 77.5,-47.5 - parent: 2 - uid: 10818 components: - type: Transform @@ -127187,15 +131547,15 @@ entities: - type: Transform pos: 63.5,-82.5 parent: 2 - - uid: 10852 + - uid: 10900 components: - type: Transform - pos: 85.5,-40.5 + pos: -47.5,-0.5 parent: 2 - - uid: 10872 + - uid: 10915 components: - type: Transform - pos: 72.5,-39.5 + pos: -46.5,3.5 parent: 2 - uid: 10969 components: @@ -127207,11 +131567,26 @@ entities: - type: Transform pos: -25.5,-18.5 parent: 2 + - uid: 11002 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 11003 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 - uid: 11077 components: - type: Transform pos: 34.5,3.5 parent: 2 + - uid: 11080 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 - uid: 11128 components: - type: Transform @@ -127237,6 +131612,11 @@ entities: - type: Transform pos: 2.5,-23.5 parent: 2 + - uid: 11285 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 - uid: 11327 components: - type: Transform @@ -127247,6 +131627,11 @@ entities: - type: Transform pos: 26.5,-27.5 parent: 2 + - uid: 11339 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 - uid: 11391 components: - type: Transform @@ -127262,6 +131647,11 @@ entities: - type: Transform pos: 25.5,-29.5 parent: 2 + - uid: 11401 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 - uid: 11428 components: - type: Transform @@ -127307,10 +131697,10 @@ entities: - type: Transform pos: 8.5,1.5 parent: 2 - - uid: 11804 + - uid: 11953 components: - type: Transform - pos: -24.5,14.5 + pos: -41.5,-6.5 parent: 2 - uid: 12018 components: @@ -127437,16 +131827,6 @@ entities: - type: Transform pos: 12.5,-74.5 parent: 2 - - uid: 12609 - components: - - type: Transform - pos: 57.5,-39.5 - parent: 2 - - uid: 12615 - components: - - type: Transform - pos: -23.5,-3.5 - parent: 2 - uid: 12645 components: - type: Transform @@ -127507,11 +131887,6 @@ entities: - type: Transform pos: 7.5,-75.5 parent: 2 - - uid: 12861 - components: - - type: Transform - pos: -30.5,-14.5 - parent: 2 - uid: 12864 components: - type: Transform @@ -127547,6 +131922,11 @@ entities: - type: Transform pos: -59.5,-27.5 parent: 2 + - uid: 12882 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 - uid: 12884 components: - type: Transform @@ -127577,6 +131957,31 @@ entities: - type: Transform pos: 49.5,-53.5 parent: 2 + - uid: 13047 + components: + - type: Transform + pos: -55.5,18.5 + parent: 2 + - uid: 13048 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 2 + - uid: 13087 + components: + - type: Transform + pos: -55.5,19.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 + - uid: 13107 + components: + - type: Transform + pos: -48.5,5.5 + parent: 2 - uid: 13116 components: - type: Transform @@ -127672,6 +132077,11 @@ entities: - type: Transform pos: -50.5,-33.5 parent: 2 + - uid: 13610 + components: + - type: Transform + pos: -45.5,7.5 + parent: 2 - uid: 13767 components: - type: Transform @@ -127752,6 +132162,16 @@ entities: - type: Transform pos: 7.5,28.5 parent: 2 + - uid: 14443 + components: + - type: Transform + pos: -52.5,25.5 + parent: 2 + - uid: 14445 + components: + - type: Transform + pos: -51.5,25.5 + parent: 2 - uid: 14502 components: - type: Transform @@ -127762,10 +132182,60 @@ entities: - type: Transform pos: -2.5,-54.5 parent: 2 - - uid: 14809 + - uid: 14633 components: - type: Transform - pos: -27.5,14.5 + pos: -30.5,25.5 + parent: 2 + - uid: 14699 + components: + - type: Transform + pos: -30.5,24.5 + parent: 2 + - uid: 14786 + components: + - type: Transform + pos: -31.5,29.5 + parent: 2 + - uid: 14801 + components: + - type: Transform + pos: -33.5,29.5 + parent: 2 + - uid: 14802 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 + - uid: 14812 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 14813 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 14828 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 14849 + components: + - type: Transform + pos: -48.5,24.5 + parent: 2 + - uid: 14879 + components: + - type: Transform + pos: -55.5,20.5 + parent: 2 + - uid: 14922 + components: + - type: Transform + pos: -50.5,25.5 parent: 2 - uid: 14996 components: @@ -127792,6 +132262,51 @@ entities: - type: Transform pos: -64.5,-58.5 parent: 2 + - uid: 15263 + components: + - type: Transform + pos: -57.5,12.5 + parent: 2 + - uid: 15304 + components: + - type: Transform + pos: -57.5,10.5 + parent: 2 + - uid: 15308 + components: + - type: Transform + pos: -57.5,11.5 + parent: 2 + - uid: 15310 + components: + - type: Transform + pos: -55.5,17.5 + parent: 2 + - uid: 15314 + components: + - type: Transform + pos: -57.5,13.5 + parent: 2 + - uid: 15317 + components: + - type: Transform + pos: -55.5,22.5 + parent: 2 + - uid: 15320 + components: + - type: Transform + pos: -56.5,8.5 + parent: 2 + - uid: 15329 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 15334 + components: + - type: Transform + pos: -55.5,4.5 + parent: 2 - uid: 15454 components: - type: Transform @@ -127802,30 +132317,70 @@ entities: - type: Transform pos: -5.5,-73.5 parent: 2 + - uid: 15704 + components: + - type: Transform + pos: -53.5,16.5 + parent: 2 - uid: 15780 components: - type: Transform pos: 35.5,20.5 parent: 2 - - uid: 15901 + - uid: 15866 components: - type: Transform - pos: -60.5,-7.5 + pos: -54.5,16.5 parent: 2 - - uid: 15918 + - uid: 15891 components: - type: Transform - pos: -63.5,-17.5 + pos: -49.5,-0.5 parent: 2 - - uid: 15922 + - uid: 15895 components: - type: Transform - pos: -55.5,-14.5 + pos: -49.5,-3.5 parent: 2 - - uid: 15923 + - uid: 15898 components: - type: Transform - pos: -52.5,-14.5 + pos: -59.5,-15.5 + parent: 2 + - uid: 15924 + components: + - type: Transform + pos: -60.5,-15.5 + parent: 2 + - uid: 15938 + components: + - type: Transform + pos: -59.5,-11.5 + parent: 2 + - uid: 15939 + components: + - type: Transform + pos: -60.5,-11.5 + parent: 2 + - uid: 15941 + components: + - type: Transform + pos: -60.5,-14.5 + parent: 2 + - uid: 15942 + components: + - type: Transform + pos: -60.5,-13.5 + parent: 2 + - uid: 15943 + components: + - type: Transform + pos: -60.5,-12.5 + parent: 2 + - uid: 16005 + components: + - type: Transform + pos: -54.5,-16.5 parent: 2 - uid: 16021 components: @@ -127847,6 +132402,26 @@ entities: - type: Transform pos: 2.5,-54.5 parent: 2 + - uid: 16134 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - uid: 16136 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 16141 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - uid: 16142 + components: + - type: Transform + pos: -53.5,-4.5 + parent: 2 - uid: 16202 components: - type: Transform @@ -127857,15 +132432,65 @@ entities: - type: Transform pos: 54.5,-53.5 parent: 2 - - uid: 16362 + - uid: 16291 components: - type: Transform - pos: -47.5,-12.5 + pos: -53.5,6.5 parent: 2 - - uid: 16604 + - uid: 16292 components: - type: Transform - pos: -49.5,-12.5 + pos: -51.5,6.5 + parent: 2 + - uid: 16293 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 16356 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 + - uid: 16565 + components: + - type: Transform + pos: 78.5,-45.5 + parent: 2 + - uid: 16571 + components: + - type: Transform + pos: 79.5,-45.5 + parent: 2 + - uid: 16578 + components: + - type: Transform + pos: 74.5,-45.5 + parent: 2 + - uid: 16583 + components: + - type: Transform + pos: 71.5,-45.5 + parent: 2 + - uid: 16584 + components: + - type: Transform + pos: 73.5,-45.5 + parent: 2 + - uid: 16589 + components: + - type: Transform + pos: 74.5,-39.5 + parent: 2 + - uid: 16601 + components: + - type: Transform + pos: 71.5,-43.5 + parent: 2 + - uid: 16610 + components: + - type: Transform + pos: 71.5,-41.5 parent: 2 - uid: 16664 components: @@ -127877,10 +132502,10 @@ entities: - type: Transform pos: 57.5,-61.5 parent: 2 - - uid: 16834 + - uid: 16845 components: - type: Transform - pos: 73.5,-39.5 + pos: 68.5,-45.5 parent: 2 - uid: 16909 components: @@ -127917,6 +132542,11 @@ entities: - type: Transform pos: 80.5,-15.5 parent: 2 + - uid: 17797 + components: + - type: Transform + pos: 59.5,-36.5 + parent: 2 - uid: 17821 components: - type: Transform @@ -127947,16 +132577,6 @@ entities: - type: Transform pos: 83.5,-14.5 parent: 2 - - uid: 17866 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 2 - - uid: 17920 - components: - - type: Transform - pos: -35.5,-1.5 - parent: 2 - uid: 17946 components: - type: Transform @@ -127987,11 +132607,6 @@ entities: - type: Transform pos: 84.5,-15.5 parent: 2 - - uid: 18444 - components: - - type: Transform - pos: 92.5,-33.5 - parent: 2 - uid: 18445 components: - type: Transform @@ -128027,15 +132642,15 @@ entities: - type: Transform pos: 97.5,-24.5 parent: 2 - - uid: 18647 + - uid: 18997 components: - type: Transform - pos: 97.5,-36.5 + pos: 92.5,-54.5 parent: 2 - - uid: 18940 + - uid: 18999 components: - type: Transform - pos: -28.5,-6.5 + pos: 96.5,-50.5 parent: 2 - uid: 19195 components: @@ -128067,51 +132682,21 @@ entities: - type: Transform pos: 7.5,-66.5 parent: 2 - - uid: 19282 + - uid: 19586 components: - type: Transform - pos: -33.5,-6.5 + pos: 78.5,-39.5 parent: 2 - - uid: 19361 + - uid: 19589 components: - type: Transform - pos: 78.5,-47.5 + pos: 77.5,-38.5 parent: 2 - uid: 20168 components: - type: Transform pos: 8.5,-71.5 parent: 2 - - uid: 20417 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 2 - - uid: 20458 - components: - - type: Transform - pos: -39.5,-10.5 - parent: 2 - - uid: 20474 - components: - - type: Transform - pos: -47.5,-1.5 - parent: 2 - - uid: 20791 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 2 - - uid: 21674 - components: - - type: Transform - pos: -31.5,15.5 - parent: 2 - - uid: 21838 - components: - - type: Transform - pos: -37.5,11.5 - parent: 2 - uid: 21867 components: - type: Transform @@ -128162,11 +132747,6 @@ entities: - type: Transform pos: 34.5,23.5 parent: 2 - - uid: 21930 - components: - - type: Transform - pos: -37.5,13.5 - parent: 2 - uid: 21931 components: - type: Transform @@ -128242,6 +132822,11 @@ entities: - type: Transform pos: 46.5,26.5 parent: 2 + - uid: 24731 + components: + - type: Transform + pos: 80.5,-37.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 4210 @@ -128338,78 +132923,46 @@ entities: parent: 2 - proto: RiotBulletShield entities: - - uid: 8291 + - uid: 20687 components: - type: Transform - pos: -21.73,6.5 + pos: -38.67536,1.5551949 parent: 2 - - type: Blocking - blockingToggleActionEntity: 5100 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 5100 - - uid: 23311 + - uid: 20689 components: - type: Transform - pos: -21.509254,6.5594025 + pos: -38.435658,1.4718037 parent: 2 - - type: Blocking - blockingToggleActionEntity: 23312 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 23312 - proto: RiotLaserShield entities: - - uid: 632 + - uid: 3 components: - type: Transform - pos: -21.73,6.63 + pos: -38.694805,1.4338875 parent: 2 - - uid: 23310 + - uid: 12495 components: - type: Transform - pos: -21.509254,6.6375275 + pos: -38.413555,1.3557625 parent: 2 - proto: RiotShield entities: - - uid: 3686 + - uid: 20691 components: - type: Transform - pos: -21.71,6.432082 + pos: -40.515644,1.5179176 parent: 2 - - type: Blocking - blockingToggleActionEntity: 22750 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 22750 - - uid: 23313 + - uid: 20698 components: - type: Transform - pos: -21.478004,6.457841 + pos: -40.59902,1.5179176 parent: 2 - - type: Blocking - blockingToggleActionEntity: 23314 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 23314 - proto: RobocopCircuitBoard entities: - - uid: 16469 + - uid: 16792 components: - type: Transform - pos: -60.705425,-16.225351 + pos: 67.54577,-43.51738 parent: 2 - proto: RollingPin entities: @@ -128528,13 +133081,6 @@ entities: - type: Transform pos: 47.57202,-7.418854 parent: 2 -- proto: ScrapMedkit - entities: - - uid: 2197 - components: - - type: Transform - pos: 50.46125,-38.7522 - parent: 2 - proto: Screen entities: - uid: 4007 @@ -128563,11 +133109,6 @@ entities: - type: Transform pos: -50.5,-28.5 parent: 2 - - uid: 11210 - components: - - type: Transform - pos: -40.5,-2.5 - parent: 2 - uid: 11314 components: - type: Transform @@ -128593,11 +133134,6 @@ entities: - type: Transform pos: 20.5,8.5 parent: 2 - - uid: 13206 - components: - - type: Transform - pos: -23.5,1.5 - parent: 2 - uid: 15423 components: - type: Transform @@ -128618,11 +133154,6 @@ entities: - type: Transform pos: -13.5,-56.5 parent: 2 - - uid: 17933 - components: - - type: Transform - pos: -45.5,5.5 - parent: 2 - uid: 22035 components: - type: Transform @@ -128692,31 +133223,85 @@ entities: - type: Transform pos: -18.5,-14.5 parent: 2 - - uid: 23947 + - uid: 24320 components: - type: Transform - pos: -32.5,-7.5 + pos: -30.5,16.5 + parent: 2 + - uid: 24321 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 24322 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 + - uid: 24324 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 24325 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 24719 + components: + - type: Transform + pos: 69.5,-39.5 + parent: 2 + - uid: 24720 + components: + - type: Transform + pos: 80.5,-39.5 + parent: 2 + - uid: 24721 + components: + - type: Transform + pos: 80.5,-45.5 + parent: 2 + - uid: 24722 + components: + - type: Transform + pos: 87.5,-38.5 + parent: 2 + - uid: 24723 + components: + - type: Transform + pos: 87.5,-46.5 + parent: 2 + - uid: 24724 + components: + - type: Transform + pos: 95.5,-38.5 + parent: 2 + - uid: 24725 + components: + - type: Transform + pos: 95.5,-46.5 parent: 2 - proto: SecurityTechFab entities: - - uid: 23315 + - uid: 10674 components: - type: Transform - pos: -22.5,6.5 - parent: 2 -- proto: SecurityWhistle - entities: - - uid: 505 - components: - - type: Transform - pos: -26.50823,15.627335 + pos: -38.5,3.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: SeedExtractor entities: - - uid: 4570 + - uid: 298 components: - type: Transform - pos: -43.5,-3.5 + pos: -25.5,16.5 parent: 2 - uid: 17167 components: @@ -128730,11 +133315,6 @@ entities: parent: 2 - proto: ShardGlass entities: - - uid: 793 - components: - - type: Transform - pos: 74.42811,-44.107338 - parent: 2 - uid: 890 components: - type: Transform @@ -128750,32 +133330,12 @@ entities: - type: Transform pos: 46.676933,-85.600525 parent: 2 - - uid: 2335 - components: - - type: Transform - pos: 60.55196,-38.45997 - parent: 2 - - uid: 3625 - components: - - type: Transform - pos: 72.48965,-42.496845 - parent: 2 - - uid: 3948 - components: - - type: Transform - pos: 73.42761,-43.54445 - parent: 2 - uid: 4985 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.361195,8.747754 parent: 2 - - uid: 5593 - components: - - type: Transform - pos: 61.517246,-42.477592 - parent: 2 - uid: 7375 components: - type: Transform @@ -128786,11 +133346,6 @@ entities: - type: Transform pos: 49.49901,9.514517 parent: 2 - - uid: 7797 - components: - - type: Transform - pos: 64.549995,-40.491837 - parent: 2 - uid: 10841 components: - type: Transform @@ -128802,16 +133357,27 @@ entities: rot: -1.5707963267948966 rad pos: 67.56429,-82.79552 parent: 2 + - uid: 16288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.413,22.399826 + parent: 2 + - uid: 16296 + components: + - type: Transform + pos: -54.710087,22.558933 + parent: 2 + - uid: 16440 + components: + - type: Transform + pos: -53.755627,22.926107 + parent: 2 - uid: 17852 components: - type: Transform pos: 91.39489,-17.309563 parent: 2 - - uid: 17921 - components: - - type: Transform - pos: 78.379555,-41.57462 - parent: 2 - uid: 18165 components: - type: Transform @@ -128832,11 +133398,6 @@ entities: - type: Transform pos: 91.51726,-15.608327 parent: 2 - - uid: 18767 - components: - - type: Transform - pos: 74.521904,-42.653206 - parent: 2 - uid: 18814 components: - type: Transform @@ -128867,11 +133428,6 @@ entities: - type: Transform pos: 44.80114,-71.483185 parent: 2 - - uid: 19823 - components: - - type: Transform - pos: 82.53264,-42.46055 - parent: 2 - uid: 22870 components: - type: Transform @@ -128918,6 +133474,30 @@ entities: rot: 1.5707963267948966 rad pos: 73.5562,-79.53928 parent: 2 + - uid: 19129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.55148,-34.588486 + parent: 2 + - uid: 19131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.43388,-61.47434 + parent: 2 + - uid: 19132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.44205,-53.431152 + parent: 2 + - uid: 19133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.45669,-51.570484 + parent: 2 - uid: 19964 components: - type: Transform @@ -128934,12 +133514,6 @@ entities: - type: Transform pos: 91.4445,-27.518276 parent: 2 - - uid: 20731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 92.446754,-36.460396 - parent: 2 - uid: 20897 components: - type: Transform @@ -128954,11 +133528,6 @@ entities: parent: 2 - proto: SheetGlass entities: - - uid: 686 - components: - - type: Transform - pos: -49.460587,25.496906 - parent: 2 - uid: 2250 components: - type: Transform @@ -128989,18 +133558,6 @@ entities: - type: Transform pos: -57.49946,-58.450542 parent: 2 -- proto: SheetGlass1 - entities: - - uid: 20098 - components: - - type: Transform - pos: 59.489506,-40.541508 - parent: 2 - - uid: 20129 - components: - - type: Transform - pos: 63.470222,-39.49492 - parent: 2 - proto: SheetGlass10 entities: - uid: 12500 @@ -129033,6 +133590,13 @@ entities: rot: -1.5707963267948966 rad pos: 22.31672,19.486847 parent: 2 +- proto: SheetPGlass + entities: + - uid: 5557 + components: + - type: Transform + pos: -49.493877,32.44378 + parent: 2 - proto: SheetPlasma entities: - uid: 11897 @@ -129059,11 +133623,6 @@ entities: - type: Transform pos: 9.476572,22.589748 parent: 2 - - uid: 16602 - components: - - type: Transform - pos: -60.509804,-11.395213 - parent: 2 - proto: SheetPlastic entities: - uid: 76 @@ -129081,11 +133640,6 @@ entities: - type: Transform pos: -37.47171,-24.411203 parent: 2 - - uid: 15461 - components: - - type: Transform - pos: -27.718145,6.9078503 - parent: 2 - proto: SheetPlastic10 entities: - uid: 3997 @@ -129105,16 +133659,6 @@ entities: - type: Transform pos: -0.5086639,-4.382394 parent: 2 - - uid: 1952 - components: - - type: Transform - pos: -13.572921,-6.4220476 - parent: 2 - - uid: 1953 - components: - - type: Transform - pos: -13.416594,-6.4324713 - parent: 2 - uid: 2256 components: - type: Transform @@ -129150,15 +133694,10 @@ entities: - type: Transform pos: 2.4604461,-55.406693 parent: 2 - - uid: 14425 + - uid: 20703 components: - type: Transform - pos: -27.716429,6.6061916 - parent: 2 - - uid: 16603 - components: - - type: Transform - pos: -60.99963,-11.384789 + pos: -35.532333,1.5311966 parent: 2 - uid: 22546 components: @@ -129204,10 +133743,10 @@ entities: parent: 2 - proto: ShotGunCabinetFilled entities: - - uid: 9543 + - uid: 20587 components: - type: Transform - pos: -27.5,8.5 + pos: -38.5,-0.5 parent: 2 - proto: ShuttersNormal entities: @@ -129243,37 +133782,17 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-46.5 parent: 2 - - uid: 304 - components: - - type: Transform - pos: -24.5,1.5 - parent: 2 - - uid: 476 + - uid: 1700 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-7.5 + pos: -22.5,-5.5 parent: 2 - - uid: 710 + - uid: 2243 components: - type: Transform - pos: -27.5,14.5 - parent: 2 - - uid: 813 - components: - - type: Transform - pos: -26.5,1.5 - parent: 2 - - uid: 2359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-3.5 - parent: 2 - - uid: 2582 - components: - - type: Transform - pos: -26.5,8.5 + rot: 3.141592653589793 rad + pos: -21.5,-5.5 parent: 2 - uid: 2759 components: @@ -129356,17 +133875,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-51.5 parent: 2 - - uid: 7960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,11.5 - parent: 2 - - uid: 10652 - components: - - type: Transform - pos: -24.5,8.5 - parent: 2 - uid: 10771 components: - type: Transform @@ -129521,18 +134029,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-32.5 parent: 2 - - uid: 18561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-7.5 - parent: 2 - - uid: 18938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-7.5 - parent: 2 - uid: 19574 components: - type: Transform @@ -129565,6 +134061,46 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-35.5 parent: 2 + - uid: 20731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,4.5 + parent: 2 + - uid: 20758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,4.5 + parent: 2 + - uid: 20768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,4.5 + parent: 2 + - uid: 20769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,3.5 + parent: 2 + - uid: 20770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,1.5 + parent: 2 + - uid: 20771 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 20772 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 - uid: 21229 components: - type: Transform @@ -129690,40 +134226,12 @@ entities: - type: Transform pos: -27.5,-39.5 parent: 2 - - uid: 21876 - components: - - type: Transform - pos: -24.5,14.5 - parent: 2 - uid: 21880 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-45.5 parent: 2 - - uid: 22133 - components: - - type: Transform - pos: -26.5,14.5 - parent: 2 - - uid: 22719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,6.5 - parent: 2 - - uid: 22720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,4.5 - parent: 2 - - uid: 22721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,2.5 - parent: 2 - uid: 22769 components: - type: Transform @@ -129773,28 +134281,107 @@ entities: - type: Transform pos: -24.5,-57.5 parent: 2 - - uid: 23922 + - uid: 24120 components: - type: Transform - pos: -24.5,-8.5 + rot: -1.5707963267948966 rad + pos: -26.5,5.5 parent: 2 - - uid: 23931 + - uid: 24121 components: - type: Transform - pos: -21.5,-8.5 + rot: -1.5707963267948966 rad + pos: -26.5,6.5 parent: 2 - - uid: 23932 + - uid: 24122 components: - type: Transform - pos: -19.5,-8.5 + rot: -1.5707963267948966 rad + pos: -26.5,7.5 parent: 2 - - uid: 23946 + - uid: 24123 components: - type: Transform - pos: -26.5,-8.5 + rot: 3.141592653589793 rad + pos: -25.5,12.5 + parent: 2 + - uid: 24124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 2 + - uid: 24125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,12.5 + parent: 2 + - uid: 24126 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 24127 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - uid: 24128 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 24817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 2 + - uid: 24818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-4.5 + parent: 2 + - uid: 24819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-4.5 + parent: 2 + - uid: 24820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-4.5 + parent: 2 + - uid: 24821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-4.5 + parent: 2 + - uid: 24822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-5.5 parent: 2 - proto: ShuttersWindowOpen entities: + - uid: 10682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,11.5 + parent: 2 + - uid: 10686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,10.5 + parent: 2 - uid: 15630 components: - type: Transform @@ -129819,42 +134406,21 @@ entities: parent: 2 - proto: SignAi entities: - - uid: 7090 + - uid: 17961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-11.5 - parent: 2 - - uid: 16414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-13.5 - parent: 2 - - uid: 21309 - components: - - type: Transform - pos: -35.5,-13.5 + pos: 82.5,-41.5 parent: 2 - proto: SignAiUpload entities: - - uid: 16477 + - uid: 16874 components: - type: Transform - pos: -61.5,-14.5 + rot: -1.5707963267948966 rad + pos: 76.5,-42.5 parent: 2 - proto: SignalButton entities: - - uid: 1247 - components: - - type: Transform - pos: -18.5,0.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16099: - - - Pressed - - Toggle - uid: 3255 components: - type: Transform @@ -130072,6 +134638,19 @@ entities: 3779: - - Pressed - Toggle + - uid: 24054 + components: + - type: MetaData + name: Janitor Light + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 24050: + - - Pressed + - Toggle - proto: SignAnomaly entities: - uid: 4573 @@ -130093,14 +134672,6 @@ entities: - type: Transform pos: 50.5,-14.5 parent: 2 -- proto: SignArmory - entities: - - uid: 19999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,4.5 - parent: 2 - proto: SignAtmos entities: - uid: 1831 @@ -130118,10 +134689,10 @@ entities: parent: 2 - proto: SignCans entities: - - uid: 4450 + - uid: 2637 components: - type: Transform - pos: -11.5,-0.5 + pos: -11.5,-5.5 parent: 2 - proto: SignCansScience entities: @@ -130165,11 +134736,11 @@ entities: - type: Transform pos: 12.5,-50.5 parent: 2 - - uid: 11907 + - uid: 10906 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,1.5 + rot: 1.5707963267948966 rad + pos: -35.5,10.5 parent: 2 - proto: SignCryogenicsMed entities: @@ -130204,6 +134775,11 @@ entities: parent: 2 - proto: SignDirectionalBridge entities: + - uid: 1208 + components: + - type: Transform + pos: -14.50144,-5.7094235 + parent: 2 - uid: 8742 components: - type: Transform @@ -130215,11 +134791,6 @@ entities: - type: Transform pos: -21.5,-30.5 parent: 2 - - uid: 16981 - components: - - type: Transform - pos: -13.5,-2.3 - parent: 2 - uid: 17069 components: - type: Transform @@ -130246,17 +134817,17 @@ entities: parent: 2 - proto: SignDirectionalEng entities: + - uid: 1207 + components: + - type: Transform + pos: -14.503758,-5.1075974 + parent: 2 - uid: 4277 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-29.65 parent: 2 - - uid: 16982 - components: - - type: Transform - pos: -13.5,-2.1 - parent: 2 - uid: 22265 components: - type: Transform @@ -130271,12 +134842,6 @@ entities: parent: 2 - proto: SignDirectionalEscapePod entities: - - uid: 13742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,21.5 - parent: 2 - uid: 13763 components: - type: Transform @@ -130290,17 +134855,17 @@ entities: - type: Transform pos: 29.5,9.5 parent: 2 + - uid: 2106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.498774,0.6482439 + parent: 2 - uid: 16972 components: - type: Transform pos: -21.5,-30.72 parent: 2 - - uid: 16980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.3 - parent: 2 - uid: 17012 components: - type: Transform @@ -130321,6 +134886,11 @@ entities: parent: 2 - proto: SignDirectionalFood entities: + - uid: 1206 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 - uid: 9489 components: - type: Transform @@ -130332,11 +134902,6 @@ entities: - type: Transform pos: -21.5,-31.15 parent: 2 - - uid: 16983 - components: - - type: Transform - pos: -13.5,-2.71 - parent: 2 - proto: SignDirectionalJanitor entities: - uid: 22504 @@ -130355,10 +134920,10 @@ entities: parent: 2 - proto: SignDirectionalMed entities: - - uid: 4854 + - uid: 1209 components: - type: Transform - pos: -13.5,-2.5 + pos: -14.50141,-5.3055983 parent: 2 - uid: 17013 components: @@ -130437,6 +135002,12 @@ entities: parent: 2 - proto: SignDirectionalSolar entities: + - uid: 6884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,24.5 + parent: 2 - uid: 7925 components: - type: Transform @@ -130462,11 +135033,11 @@ entities: parent: 2 - proto: SignDirectionalSupply entities: - - uid: 16973 + - uid: 2129 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-1.5 + pos: -14.498774,0.44130993 parent: 2 - uid: 16975 components: @@ -130489,12 +135060,6 @@ entities: parent: 2 - proto: SignElectricalMed entities: - - uid: 1088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,6.5 - parent: 2 - uid: 1748 components: - type: Transform @@ -130518,53 +135083,18 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-21.5 parent: 2 - - uid: 7976 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,10.5 - parent: 2 - - uid: 9532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-3.5 - parent: 2 - uid: 10067 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,15.5 parent: 2 - - uid: 10214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,10.5 - parent: 2 - - uid: 10219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,10.5 - parent: 2 - - uid: 10452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-1.5 - parent: 2 - uid: 11388 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-32.5 parent: 2 - - uid: 11789 - components: - - type: Transform - pos: -46.5,-6.5 - parent: 2 - uid: 12892 components: - type: Transform @@ -130592,23 +135122,6 @@ entities: - type: Transform pos: 90.5,-12.5 parent: 2 - - uid: 20002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,21.5 - parent: 2 - - uid: 20003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,24.5 - parent: 2 - - uid: 23741 - components: - - type: Transform - pos: -49.5,-9.5 - parent: 2 - proto: SignEngine entities: - uid: 3936 @@ -130616,12 +135129,6 @@ entities: - type: Transform pos: -5.5,-16.5 parent: 2 - - uid: 16590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-10.5 - parent: 2 - proto: SignEngineering entities: - uid: 47 @@ -130631,11 +135138,6 @@ entities: parent: 2 - proto: SignEscapePods entities: - - uid: 10703 - components: - - type: Transform - pos: -35.5,10.5 - parent: 2 - uid: 11251 components: - type: Transform @@ -130664,11 +135166,15 @@ entities: parent: 2 - proto: SignGenpop entities: - - uid: 10764 + - uid: 12374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 + pos: -23.5,-0.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + pos: -29.5,-0.5 parent: 2 - proto: SignGravity entities: @@ -130679,10 +135185,11 @@ entities: parent: 2 - proto: SignInterrogation entities: - - uid: 354 + - uid: 10877 components: - type: Transform - pos: -28.5,1.5 + rot: 1.5707963267948966 rad + pos: -33.5,-0.5 parent: 2 - proto: SignJanitor entities: @@ -130780,6 +135287,11 @@ entities: parent: 2 - proto: SignNosmoking entities: + - uid: 2105 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 - uid: 17076 components: - type: Transform @@ -130872,6 +135384,13 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-62.5 parent: 2 +- proto: SignSecurity + entities: + - uid: 12382 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 - proto: SignServer entities: - uid: 5592 @@ -130935,6 +135454,12 @@ entities: rot: 3.141592653589793 rad pos: -20.5,29.5 parent: 2 + - uid: 9543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 2 - uid: 9836 components: - type: Transform @@ -130953,16 +135478,11 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,-39.5 parent: 2 - - uid: 18889 + - uid: 24105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,3.5 - parent: 2 - - uid: 20630 - components: - - type: Transform - pos: 18.5,-6.5 + rot: -1.5707963267948966 rad + pos: 21.5,-7.5 parent: 2 - proto: SinkWide entities: @@ -131043,13 +135563,6 @@ entities: - type: Transform pos: -2.5,-18.5 parent: 2 - - uid: 8444 - components: - - type: MetaData - name: Solars - North West SMES - - type: Transform - pos: -30.5,24.5 - parent: 2 - uid: 8838 components: - type: MetaData @@ -131064,13 +135577,6 @@ entities: - type: Transform pos: -55.5,-58.5 parent: 2 - - uid: 15942 - components: - - type: MetaData - name: AI Satellite SMES - - type: Transform - pos: -62.5,-8.5 - parent: 2 - uid: 16111 components: - type: MetaData @@ -131078,6 +135584,11 @@ entities: - type: Transform pos: -3.5,-18.5 parent: 2 + - uid: 16598 + components: + - type: Transform + pos: 96.5,-42.5 + parent: 2 - proto: SMESBasic entities: - uid: 6269 @@ -131094,6 +135605,11 @@ entities: - type: Transform pos: -10.5,-56.5 parent: 2 + - uid: 14592 + components: + - type: Transform + pos: -40.5,26.5 + parent: 2 - proto: SMESMachineCircuitboard entities: - uid: 573 @@ -131111,6 +135627,13 @@ entities: - type: Transform pos: 6.5098057,-16.3717 parent: 2 +- proto: SmokingPipe + entities: + - uid: 1238 + components: + - type: Transform + pos: -39.550636,19.624166 + parent: 2 - proto: SnowBattlemap entities: - uid: 6008 @@ -131137,23 +135660,11 @@ entities: - type: Transform pos: 59.5,0.5 parent: 2 - - uid: 553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,25.5 - parent: 2 - uid: 572 components: - type: Transform pos: -72.5,-49.5 parent: 2 - - uid: 577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,14.5 - parent: 2 - uid: 596 components: - type: Transform @@ -131165,18 +135676,6 @@ entities: - type: Transform pos: -72.5,-48.5 parent: 2 - - uid: 694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,27.5 - parent: 2 - - uid: 758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,16.5 - parent: 2 - uid: 764 components: - type: Transform @@ -131198,33 +135697,16 @@ entities: - type: Transform pos: -70.5,-48.5 parent: 2 - - uid: 832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,16.5 - parent: 2 - uid: 840 components: - type: Transform pos: -64.5,-50.5 parent: 2 - - uid: 847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,29.5 - parent: 2 - uid: 957 components: - type: Transform pos: 61.5,-0.5 parent: 2 - - uid: 960 - components: - - type: Transform - pos: -53.5,29.5 - parent: 2 - uid: 961 components: - type: Transform @@ -131235,21 +135717,11 @@ entities: - type: Transform pos: -62.5,-51.5 parent: 2 - - uid: 995 - components: - - type: Transform - pos: -55.5,25.5 - parent: 2 - uid: 997 components: - type: Transform pos: 63.5,-2.5 parent: 2 - - uid: 998 - components: - - type: Transform - pos: -53.5,18.5 - parent: 2 - uid: 1002 components: - type: Transform @@ -131260,15 +135732,10 @@ entities: - type: Transform pos: 57.5,-3.5 parent: 2 - - uid: 1573 + - uid: 2640 components: - type: Transform - pos: -56.5,16.5 - parent: 2 - - uid: 4925 - components: - - type: Transform - pos: -47.5,28.5 + pos: -63.5,18.5 parent: 2 - uid: 5067 components: @@ -131276,6 +135743,16 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,6.5 parent: 2 + - uid: 5078 + components: + - type: Transform + pos: -67.5,22.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + pos: -66.5,22.5 + parent: 2 - uid: 5089 components: - type: Transform @@ -131294,6 +135771,11 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,8.5 parent: 2 + - uid: 5100 + components: + - type: Transform + pos: -65.5,22.5 + parent: 2 - uid: 5104 components: - type: Transform @@ -131336,30 +135818,170 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,7.5 parent: 2 + - uid: 5118 + components: + - type: Transform + pos: -64.5,22.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: -63.5,22.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: -67.5,20.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: -66.5,20.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: -64.5,20.5 + parent: 2 - uid: 5147 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,8.5 parent: 2 + - uid: 5150 + components: + - type: Transform + pos: -63.5,20.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: -64.5,18.5 + parent: 2 - uid: 5166 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,8.5 parent: 2 + - uid: 5173 + components: + - type: Transform + pos: -65.5,18.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + pos: -66.5,18.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + pos: -67.5,18.5 + parent: 2 - uid: 5191 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,5.5 parent: 2 + - uid: 5193 + components: + - type: Transform + pos: -67.5,16.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + pos: -66.5,16.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: -65.5,16.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + pos: -64.5,16.5 + parent: 2 + - uid: 5235 + components: + - type: Transform + pos: -63.5,16.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + pos: -63.5,24.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + pos: -63.5,14.5 + parent: 2 + - uid: 5246 + components: + - type: Transform + pos: -64.5,14.5 + parent: 2 + - uid: 5251 + components: + - type: Transform + pos: -65.5,14.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + pos: -66.5,14.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: -67.5,14.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: -67.5,12.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + pos: -66.5,12.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + pos: -65.5,12.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + pos: -64.5,12.5 + parent: 2 - uid: 5263 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,7.5 parent: 2 + - uid: 5264 + components: + - type: Transform + pos: -63.5,12.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + pos: -63.5,10.5 + parent: 2 - uid: 5266 components: - type: Transform @@ -131390,11 +136012,301 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,5.5 parent: 2 + - uid: 5273 + components: + - type: Transform + pos: -64.5,10.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + pos: -65.5,10.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + pos: -66.5,10.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + pos: -67.5,10.5 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: -66.5,8.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + pos: -67.5,8.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: -65.5,8.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: -64.5,8.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + pos: -63.5,8.5 + parent: 2 + - uid: 5340 + components: + - type: Transform + pos: -64.5,24.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: -65.5,24.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + pos: -66.5,24.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + pos: -67.5,24.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + pos: -67.5,26.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + pos: -66.5,26.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + pos: -65.5,26.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + pos: -64.5,26.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: -63.5,26.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + pos: -58.5,31.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + pos: -64.5,31.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + pos: -64.5,32.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + pos: -64.5,33.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + pos: -64.5,34.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + pos: -64.5,35.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + pos: -66.5,35.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + pos: -66.5,34.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + pos: -66.5,33.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + pos: -66.5,32.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + pos: -66.5,31.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: -62.5,31.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: -62.5,32.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + pos: -62.5,33.5 + parent: 2 + - uid: 5436 + components: + - type: Transform + pos: -62.5,34.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + pos: -62.5,35.5 + parent: 2 + - uid: 5445 + components: + - type: Transform + pos: -60.5,35.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + pos: -60.5,34.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + pos: -60.5,33.5 + parent: 2 + - uid: 5454 + components: + - type: Transform + pos: -60.5,32.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + pos: -60.5,31.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + pos: -52.5,31.5 + parent: 2 + - uid: 5457 + components: + - type: Transform + pos: -52.5,32.5 + parent: 2 + - uid: 5461 + components: + - type: Transform + pos: -52.5,33.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: -52.5,34.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + pos: -52.5,35.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: -54.5,35.5 + parent: 2 + - uid: 5478 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 5484 + components: + - type: Transform + pos: -54.5,33.5 + parent: 2 - uid: 5486 components: - type: Transform pos: 65.5,4.5 parent: 2 + - uid: 5487 + components: + - type: Transform + pos: -54.5,31.5 + parent: 2 + - uid: 5491 + components: + - type: Transform + pos: -54.5,34.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + pos: -56.5,31.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: -56.5,32.5 + parent: 2 + - uid: 5514 + components: + - type: Transform + pos: -56.5,33.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + pos: -56.5,34.5 + parent: 2 + - uid: 5527 + components: + - type: Transform + pos: -56.5,35.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: -58.5,32.5 + parent: 2 + - uid: 5535 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 + - uid: 5538 + components: + - type: Transform + pos: -58.5,34.5 + parent: 2 + - uid: 5540 + components: + - type: Transform + pos: -58.5,35.5 + parent: 2 - uid: 5815 components: - type: Transform @@ -131513,12 +136425,6 @@ entities: - type: Transform pos: -64.5,-49.5 parent: 2 - - uid: 10469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,14.5 - parent: 2 - uid: 10471 components: - type: Transform @@ -131569,131 +136475,6 @@ entities: - type: Transform pos: -68.5,-57.5 parent: 2 - - uid: 10787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,27.5 - parent: 2 - - uid: 10794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,27.5 - parent: 2 - - uid: 10795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,26.5 - parent: 2 - - uid: 10796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,25.5 - parent: 2 - - uid: 10797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,29.5 - parent: 2 - - uid: 10906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,20.5 - parent: 2 - - uid: 10973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,28.5 - parent: 2 - - uid: 11002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,26.5 - parent: 2 - - uid: 11003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,20.5 - parent: 2 - - uid: 11046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,18.5 - parent: 2 - - uid: 11207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,20.5 - parent: 2 - - uid: 11258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,20.5 - parent: 2 - - uid: 11283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,12.5 - parent: 2 - - uid: 11285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,12.5 - parent: 2 - - uid: 11308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,10.5 - parent: 2 - - uid: 11328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,12.5 - parent: 2 - - uid: 11329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,10.5 - parent: 2 - - uid: 11343 - components: - - type: Transform - pos: -47.5,27.5 - parent: 2 - - uid: 11401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,10.5 - parent: 2 - - uid: 11501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,26.5 - parent: 2 - - uid: 11506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,20.5 - parent: 2 - uid: 11906 components: - type: Transform @@ -131727,11 +136508,6 @@ entities: - type: Transform pos: 65.5,-3.5 parent: 2 - - uid: 12224 - components: - - type: Transform - pos: -55.5,12.5 - parent: 2 - uid: 12298 components: - type: Transform @@ -131760,12 +136536,6 @@ entities: - type: Transform pos: -66.5,-58.5 parent: 2 - - uid: 12362 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,25.5 - parent: 2 - uid: 12551 components: - type: Transform @@ -131865,12 +136635,6 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-2.5 parent: 2 - - uid: 16905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,28.5 - parent: 2 - uid: 16957 components: - type: Transform @@ -131986,12 +136750,6 @@ entities: rot: -1.5707963267948966 rad pos: 71.5,7.5 parent: 2 - - uid: 17804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,28.5 - parent: 2 - uid: 17806 components: - type: Transform @@ -132032,198 +136790,12 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,0.5 parent: 2 - - uid: 17979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,14.5 - parent: 2 - - uid: 18122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,29.5 - parent: 2 - - uid: 18141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,14.5 - parent: 2 - - uid: 18142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,14.5 - parent: 2 - uid: 18156 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-0.5 parent: 2 - - uid: 18187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,16.5 - parent: 2 - - uid: 18343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,20.5 - parent: 2 - - uid: 18353 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,16.5 - parent: 2 - - uid: 18354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,20.5 - parent: 2 - - uid: 18355 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,18.5 - parent: 2 - - uid: 18356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,20.5 - parent: 2 - - uid: 18357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,29.5 - parent: 2 - - uid: 18358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,18.5 - parent: 2 - - uid: 18359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,20.5 - parent: 2 - - uid: 18360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,27.5 - parent: 2 - - uid: 18361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,25.5 - parent: 2 - - uid: 18363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,26.5 - parent: 2 - - uid: 18364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,16.5 - parent: 2 - - uid: 18366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,16.5 - parent: 2 - - uid: 18378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,28.5 - parent: 2 - - uid: 18383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,18.5 - parent: 2 - - uid: 18387 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,18.5 - parent: 2 - - uid: 18390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,18.5 - parent: 2 - - uid: 18391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,18.5 - parent: 2 - - uid: 18392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,18.5 - parent: 2 - - uid: 18393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,27.5 - parent: 2 - - uid: 18394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,12.5 - parent: 2 - - uid: 18395 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,10.5 - parent: 2 - - uid: 18396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,10.5 - parent: 2 - - uid: 18397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,14.5 - parent: 2 - - uid: 18417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,18.5 - parent: 2 - - uid: 18419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,20.5 - parent: 2 - uid: 18596 components: - type: Transform @@ -132286,36 +136858,6 @@ entities: - type: Transform pos: 59.5,-2.5 parent: 2 - - uid: 23224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,14.5 - parent: 2 - - uid: 23225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,16.5 - parent: 2 - - uid: 23226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,28.5 - parent: 2 - - uid: 23689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,29.5 - parent: 2 - - uid: 23698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,26.5 - parent: 2 - uid: 23699 components: - type: Transform @@ -132323,10 +136865,10 @@ entities: parent: 2 - proto: SolarTracker entities: - - uid: 11502 + - uid: 7303 components: - type: Transform - pos: -57.5,23.5 + pos: -68.5,29.5 parent: 2 - uid: 16918 components: @@ -132338,18 +136880,6 @@ entities: - type: Transform pos: 73.5,2.5 parent: 2 -- proto: SpaceCash - entities: - - uid: 1745 - components: - - type: Transform - pos: 54.144966,-39.211163 - parent: 2 - - uid: 1755 - components: - - type: Transform - pos: 54.21792,-39.461334 - parent: 2 - proto: SpaceCash10 entities: - uid: 59 @@ -132372,21 +136902,6 @@ entities: - type: Transform pos: 0.50525975,23.691593 parent: 2 - - uid: 2728 - components: - - type: Transform - pos: 51.58796,-38.67062 - parent: 2 - - uid: 2742 - components: - - type: Transform - pos: 54.34298,-39.325825 - parent: 2 - - uid: 2909 - components: - - type: Transform - pos: 52.32676,-40.19101 - parent: 2 - uid: 3836 components: - type: Transform @@ -132511,11 +137026,6 @@ entities: parent: 2 - proto: SpawnMobBee entities: - - uid: 3449 - components: - - type: Transform - pos: -22.5,-17.5 - parent: 2 - uid: 17321 components: - type: Transform @@ -132543,11 +137053,6 @@ entities: - type: Transform pos: -18.5,30.5 parent: 2 - - uid: 3376 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 2 - uid: 17326 components: - type: Transform @@ -132558,6 +137063,16 @@ entities: - type: Transform pos: -10.5,17.5 parent: 2 + - uid: 24539 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 24546 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 - proto: SpawnMobCatException entities: - uid: 13082 @@ -132595,17 +137110,17 @@ entities: parent: 2 - proto: SpawnMobKangarooWillow entities: - - uid: 20136 + - uid: 24489 components: - type: Transform - pos: 51.5,-37.5 + pos: 48.5,-21.5 parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 20575 + - uid: 12554 components: - type: Transform - pos: -19.5,-7.5 + pos: -21.5,-8.5 parent: 2 - proto: SpawnMobMedibot entities: @@ -132666,13 +137181,6 @@ entities: - type: Transform pos: 6.5,-53.5 parent: 2 -- proto: SpawnMobShiva - entities: - - uid: 18902 - components: - - type: Transform - pos: -26.5,11.5 - parent: 2 - proto: SpawnMobSmile entities: - uid: 6794 @@ -132689,20 +137197,20 @@ entities: parent: 2 - proto: SpawnPointAtmos entities: - - uid: 1931 + - uid: 1573 components: - type: Transform - pos: -11.5,-7.5 + pos: -12.5,-3.5 parent: 2 - - uid: 2162 + - uid: 1715 components: - type: Transform - pos: -12.5,-7.5 + pos: -11.5,-3.5 parent: 2 - - uid: 17255 + - uid: 1935 components: - type: Transform - pos: -10.5,-7.5 + pos: -13.5,-3.5 parent: 2 - proto: SpawnPointBartender entities: @@ -132733,10 +137241,10 @@ entities: - type: Transform pos: 34.5,-26.5 parent: 2 - - uid: 15858 + - uid: 17060 components: - type: Transform - pos: -65.5,-12.5 + pos: 88.5,-42.5 parent: 2 - proto: SpawnPointBotanist entities: @@ -132877,10 +137385,10 @@ entities: parent: 2 - proto: SpawnPointHeadOfSecurity entities: - - uid: 14817 + - uid: 11130 components: - type: Transform - pos: -21.5,11.5 + pos: -44.5,2.5 parent: 2 - proto: SpawnPointJanitor entities: @@ -133283,47 +137791,67 @@ entities: parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 1359 + - uid: 16512 components: - type: Transform - pos: -25.5,10.5 + pos: -38.5,-2.5 parent: 2 - - uid: 4655 + - uid: 16513 components: - type: Transform - pos: -25.5,12.5 + pos: -37.5,-2.5 parent: 2 - - uid: 23316 + - uid: 16514 components: - type: Transform - pos: -25.5,11.5 + pos: -33.5,-2.5 + parent: 2 + - uid: 16515 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 16516 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 16517 + components: + - type: Transform + pos: -32.5,-5.5 parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 12452 + - uid: 16506 components: - type: Transform - pos: -26.5,16.5 + pos: -36.5,-8.5 parent: 2 - - uid: 12650 + - uid: 16507 components: - type: Transform - pos: -23.5,16.5 + pos: -36.5,-9.5 parent: 2 - - uid: 13019 + - uid: 16508 components: - type: Transform - pos: -27.5,16.5 + pos: -36.5,-10.5 parent: 2 - - uid: 15016 + - uid: 16509 components: - type: Transform - pos: -24.5,16.5 + pos: -39.5,-10.5 parent: 2 - - uid: 15022 + - uid: 16510 components: - type: Transform - pos: -25.5,16.5 + pos: -39.5,-9.5 + parent: 2 + - uid: 16511 + components: + - type: Transform + pos: -39.5,-8.5 parent: 2 - proto: SpawnPointServiceWorker entities: @@ -133383,10 +137911,10 @@ entities: parent: 2 - proto: SpawnPointWarden entities: - - uid: 18061 + - uid: 11893 components: - type: Transform - pos: -21.5,-4.5 + pos: -21.5,-7.5 parent: 2 - proto: SpawnVendingMachineRestockFoodDrink entities: @@ -133402,15 +137930,15 @@ entities: parent: 2 - proto: SpoonPlastic entities: - - uid: 2352 + - uid: 19611 components: - type: Transform - pos: -36.64704,-2.11978 + pos: -29.93629,15.551624 parent: 2 - - uid: 10528 + - uid: 19612 components: - type: Transform - pos: -36.48029,-2.1510515 + pos: -30.95242,15.473444 parent: 2 - proto: SprayBottle entities: @@ -133424,6 +137952,11 @@ entities: - type: Transform pos: -16.797985,-39.285175 parent: 2 + - uid: 24302 + components: + - type: Transform + pos: -33.337715,19.599659 + parent: 2 - proto: SprayBottleSpaceCleaner entities: - uid: 3279 @@ -133461,6 +137994,13 @@ entities: - type: Transform pos: 24.392906,0.38563025 parent: 2 +- proto: SprayBottleWater + entities: + - uid: 24493 + components: + - type: Transform + pos: -25.638199,-12.452024 + parent: 2 - proto: SprayPainter entities: - uid: 3987 @@ -133480,18 +138020,6 @@ entities: - type: Transform pos: 10.5,13.5 parent: 2 - - uid: 697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-6.5 - parent: 2 - - uid: 709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-6.5 - parent: 2 - uid: 2124 components: - type: Transform @@ -133542,47 +138070,12 @@ entities: - type: Transform pos: -16.5,-53.5 parent: 2 - - uid: 11971 - components: - - type: Transform - pos: -16.5,1.5 - parent: 2 - uid: 14117 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-45.5 parent: 2 - - uid: 14366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-6.5 - parent: 2 - - uid: 18999 - components: - - type: Transform - pos: -15.5,1.5 - parent: 2 - - uid: 19000 - components: - - type: Transform - pos: -14.5,1.5 - parent: 2 -- proto: StairStageDark - entities: - - uid: 4972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-42.5 - parent: 2 - - uid: 5546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-42.5 - parent: 2 - proto: StairStageWood entities: - uid: 3515 @@ -133608,11 +138101,6 @@ entities: parent: 2 - proto: StasisBed entities: - - uid: 417 - components: - - type: Transform - pos: -30.5,10.5 - parent: 2 - uid: 6573 components: - type: Transform @@ -133620,11 +138108,11 @@ entities: parent: 2 - proto: StationAiUploadComputer entities: - - uid: 16411 + - uid: 1643 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-15.5 + pos: 72.5,-42.5 parent: 2 - proto: StationAnchor entities: @@ -133635,13 +138123,19 @@ entities: parent: 2 - proto: StationEfficiencyCircuitBoard entities: - - uid: 16470 + - uid: 8230 components: - type: Transform - pos: -63.581856,-15.599916 + pos: 68.47575,-41.265385 parent: 2 - proto: StationMap entities: + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,3.5 + parent: 2 - uid: 1684 components: - type: Transform @@ -133683,11 +138177,6 @@ entities: - type: Transform pos: -21.5,-28.5 parent: 2 - - uid: 16669 - components: - - type: Transform - pos: -13.5,1.5 - parent: 2 - uid: 16674 components: - type: Transform @@ -133703,6 +138192,12 @@ entities: - type: Transform pos: 46.5,-26.5 parent: 2 + - uid: 16841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-45.5 + parent: 2 - uid: 21872 components: - type: Transform @@ -133714,13 +138209,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,11.5 parent: 2 -- proto: StationMapAssembly - entities: - - uid: 18763 - components: - - type: Transform - pos: 71.5,-39.5 - parent: 2 - proto: StationMapBroken entities: - uid: 1347 @@ -133746,18 +138234,6 @@ entities: parent: 2 - proto: SteelBench entities: - - uid: 211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 2 - - uid: 2644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-6.5 - parent: 2 - uid: 6290 components: - type: Transform @@ -133769,47 +138245,29 @@ entities: - type: Transform pos: 20.5,-4.5 parent: 2 - - uid: 8381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 2 - - uid: 8888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 2 - uid: 8961 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-13.5 parent: 2 - - uid: 9285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-5.5 - parent: 2 - uid: 9591 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,0.5 parent: 2 - - uid: 13004 + - uid: 11167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-1.5 + rot: -1.5707963267948966 rad + pos: -35.5,-9.5 parent: 2 - - uid: 18114 + - uid: 11210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-3.5 + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 parent: 2 - uid: 18897 components: @@ -133817,18 +138275,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-12.5 parent: 2 - - uid: 20455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-5.5 - parent: 2 - - uid: 20457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-6.5 - parent: 2 - uid: 21837 components: - type: Transform @@ -133836,6 +138282,12 @@ entities: parent: 2 - proto: Stool entities: + - uid: 1938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.46414,-13.287964 + parent: 2 - uid: 3803 components: - type: Transform @@ -134059,6 +138511,13 @@ entities: - type: Transform pos: 3.5,-4.5 parent: 2 + - uid: 16454 + components: + - type: Transform + pos: -53.5,20.5 + parent: 2 + - type: Pullable + prevFixedRotation: True - uid: 22787 components: - type: Transform @@ -134078,15 +138537,15 @@ entities: parent: 2 - proto: Stunbaton entities: - - uid: 3561 + - uid: 12354 components: - type: Transform - pos: -27.45285,0.5785465 + pos: -37.44668,-6.581174 parent: 2 - - uid: 5118 + - uid: 12362 components: - type: Transform - pos: -27.657381,0.62545776 + pos: -37.642464,-6.544457 parent: 2 - proto: SubstationBasic entities: @@ -134118,20 +138577,6 @@ entities: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 5514 - components: - - type: MetaData - name: AI Satellite Substation - - type: Transform - pos: -63.5,-8.5 - parent: 2 - - uid: 5695 - components: - - type: MetaData - name: Security Substation - - type: Transform - pos: -21.5,14.5 - parent: 2 - uid: 6274 components: - type: MetaData @@ -134153,12 +138598,10 @@ entities: - type: Transform pos: 44.5,3.5 parent: 2 - - uid: 8952 + - uid: 10765 components: - - type: MetaData - name: Solars North West Substation - type: Transform - pos: -28.5,22.5 + pos: -36.5,-12.5 parent: 2 - uid: 12610 components: @@ -134186,6 +138629,11 @@ entities: - type: Transform pos: 23.5,-6.5 parent: 2 + - uid: 14597 + components: + - type: Transform + pos: -40.5,25.5 + parent: 2 - uid: 15804 components: - type: MetaData @@ -134193,6 +138641,16 @@ entities: - type: Transform pos: -55.5,-60.5 parent: 2 + - uid: 15858 + components: + - type: Transform + pos: -46.5,16.5 + parent: 2 + - uid: 16905 + components: + - type: Transform + pos: 96.5,-44.5 + parent: 2 - uid: 22092 components: - type: MetaData @@ -134225,11 +138683,6 @@ entities: - type: Transform pos: -5.2493916,-23.498138 parent: 2 - - uid: 16606 - components: - - type: Transform - pos: -61.353973,-11.489028 - parent: 2 - proto: SuitStorageCaptain entities: - uid: 15645 @@ -134258,10 +138711,10 @@ entities: - type: Transform pos: 1.5,-21.5 parent: 2 - - uid: 5341 + - uid: 2581 components: - type: Transform - pos: -34.5,22.5 + pos: -37.5,30.5 parent: 2 - uid: 9547 components: @@ -134285,10 +138738,15 @@ entities: parent: 2 - proto: SuitStorageEVA entities: - - uid: 429 + - uid: 24780 components: - type: Transform - pos: -37.5,-14.5 + pos: 55.5,-40.5 + parent: 2 + - uid: 24788 + components: + - type: Transform + pos: 78.5,-38.5 parent: 2 - proto: SuitStorageEVAAlternate entities: @@ -134389,11 +138847,6 @@ entities: - 0 - 0 - 0 - - uid: 10484 - components: - - type: Transform - pos: -54.5,-11.5 - parent: 2 - uid: 22571 components: - type: Transform @@ -134439,39 +138892,29 @@ entities: - type: Transform pos: -6.5,-77.5 parent: 2 + - uid: 20530 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 1737 + - uid: 121 components: - type: Transform - pos: -34.5,2.5 + pos: -21.5,2.5 parent: 2 - - uid: 2210 + - uid: 3732 components: - type: Transform - pos: -32.5,4.5 - parent: 2 - - uid: 20462 - components: - - type: Transform - pos: -32.5,2.5 - parent: 2 - - uid: 20463 - components: - - type: Transform - pos: -34.5,4.5 - parent: 2 - - uid: 20470 - components: - - type: Transform - pos: -32.5,3.5 + pos: -21.5,1.5 parent: 2 - proto: SuitStorageHOS entities: - - uid: 12593 + - uid: 11293 components: - type: Transform - pos: -22.5,9.5 + pos: -42.5,1.5 parent: 2 - proto: SuitStorageRD entities: @@ -134480,6 +138923,91 @@ entities: - type: Transform pos: 26.5,-35.5 parent: 2 +- proto: SuitStorageSec + entities: + - uid: 20657 + components: + - type: MetaData + name: suit storage unit (3) + - type: Transform + pos: -39.5,5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 20660 + - 20662 + - 20607 + - type: Label + currentLabel: 3 + - type: NameModifier + baseName: suit storage unit + - uid: 20664 + components: + - type: MetaData + name: suit storage unit (3) + - type: Transform + pos: -40.5,5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 20667 + - 20666 + - 106 + - type: Label + currentLabel: 3 + - type: NameModifier + baseName: suit storage unit +- proto: SuitStorageWarden + entities: + - uid: 11895 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 - proto: SurveillanceCameraCommand entities: - uid: 2990 @@ -134507,13 +139035,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Vault - Outside South - - uid: 5064 - components: - - type: Transform - pos: -54.5,-9.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Outside North East - uid: 5663 components: - type: Transform @@ -134545,80 +139066,6 @@ entities: parent: 2 - type: SurveillanceCamera id: HoP's Office - - uid: 10451 - components: - - type: Transform - pos: -53.5,-13.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Foyer - - uid: 11004 - components: - - type: Transform - pos: -62.5,-16.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Upload - - uid: 14164 - components: - - type: Transform - pos: -60.5,-13.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Lobby - - uid: 14165 - components: - - type: Transform - pos: -65.5,-14.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Core South East - - uid: 17245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-8.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Power - - uid: 17969 - components: - - type: Transform - pos: -57.5,-12.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Secure Hall - - uid: 20100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-13.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Outside West - - uid: 20101 - components: - - type: Transform - pos: -68.5,-5.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Outside North - - uid: 20102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-19.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Outside South - - uid: 20103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-10.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Core North West - uid: 21154 components: - type: Transform @@ -134627,14 +139074,6 @@ entities: parent: 2 - type: SurveillanceCamera id: EVA - - uid: 21276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-15.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Outside South East - uid: 22148 components: - type: Transform @@ -134643,16 +139082,115 @@ entities: parent: 2 - type: SurveillanceCamera id: Conference Room -- proto: SurveillanceCameraEngineering - entities: - - uid: 5456 + - uid: 24558 + components: + - type: MetaData + name: AI - Boards + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-41.5 + parent: 2 + - uid: 24559 + components: + - type: Transform + pos: 75.5,-44.5 + parent: 2 + - type: SurveillanceCamera + id: AI - Upload + - uid: 24560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-40.5 + parent: 2 + - type: SurveillanceCamera + id: AI - Foyer + - uid: 24561 + components: + - type: Transform + pos: 83.5,-43.5 + parent: 2 + - type: SurveillanceCamera + id: AI - Hall + - uid: 24562 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,24.5 + pos: 89.5,-43.5 parent: 2 - type: SurveillanceCamera - id: Solars - North West + id: AI - Core West + - uid: 24563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,-39.5 + parent: 2 + - type: SurveillanceCamera + id: AI - Core East + - uid: 24583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,-44.5 + parent: 2 + - type: SurveillanceCamera + id: AI - Outside East + - uid: 24584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,-49.5 + parent: 2 + - type: SurveillanceCamera + id: AI - Outside South East + - uid: 24585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,-49.5 + parent: 2 + - type: SurveillanceCamera + id: AI Outside South West + - uid: 24586 + components: + - type: Transform + pos: 87.5,-35.5 + parent: 2 + - type: SurveillanceCamera + id: AI - Outside North West + - uid: 24587 + components: + - type: Transform + pos: 95.5,-35.5 + parent: 2 + - type: SurveillanceCamera + id: AI - Outside North East + - uid: 24776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-36.5 + parent: 2 + - type: SurveillanceCamera + id: AI - Station Side Chute + - uid: 24778 + components: + - type: Transform + pos: 52.5,-39.5 + parent: 2 + - type: SurveillanceCamera + id: AI - Station Side Breakroom + - uid: 24782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-41.5 + parent: 2 + - type: SurveillanceCamera + id: AI - Station Side Airlock +- proto: SurveillanceCameraEngineering + entities: - uid: 7872 components: - type: Transform @@ -134661,6 +139199,14 @@ entities: parent: 2 - type: SurveillanceCamera id: Telecoms + - uid: 8709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,30.5 + parent: 2 + - type: SurveillanceCamera + id: Solars - North West - uid: 15661 components: - type: Transform @@ -134709,13 +139255,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Solars - South West - West Side - - uid: 22739 - components: - - type: Transform - pos: -10.5,-4.5 - parent: 2 - - type: SurveillanceCamera - id: Atmos - West - uid: 23499 components: - type: Transform @@ -134810,14 +139349,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Arrivals West Arm - Outside - - uid: 12629 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-9.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - South Security - uid: 17484 components: - type: Transform @@ -134826,14 +139357,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Garden - - uid: 18005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,1.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - Outside Security - uid: 18056 components: - type: Transform @@ -134842,13 +139365,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Canteen - Stage - - uid: 18169 - components: - - type: Transform - pos: -11.5,10.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - North West Garden - uid: 20398 components: - type: Transform @@ -134986,13 +139502,60 @@ entities: parent: 2 - type: SurveillanceCamera id: Docking Arm - North Gate - - uid: 22757 + - uid: 24480 components: - type: Transform - pos: -31.5,-10.5 + rot: -1.5707963267948966 rad + pos: -12.5,-39.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside Perma + id: Cafeteria - West + - uid: 24589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 2 + - type: SurveillanceCamera + id: Library - North Exit + - uid: 24602 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - type: SurveillanceCamera + id: Genpop Visitation + - uid: 24603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,5.5 + parent: 2 + - type: SurveillanceCamera + id: Hall - Outside Genpop + - uid: 24604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-0.5 + parent: 2 + - type: SurveillanceCamera + id: Hall - Outside Atmos/Sec + - uid: 24605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-14.5 + parent: 2 + - type: SurveillanceCamera + id: West Atrium - East + - uid: 24643 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - type: SurveillanceCamera + id: West Atrium - West - proto: SurveillanceCameraMedical entities: - uid: 11147 @@ -135003,14 +139566,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Clinic - - uid: 21317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-21.5 - parent: 2 - - type: SurveillanceCamera - id: Surgery - uid: 21324 components: - type: Transform @@ -135064,14 +139619,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Front Desk - - uid: 22160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-22.5 - parent: 2 - - type: SurveillanceCamera - id: Break Room - uid: 22161 components: - type: Transform @@ -135110,11 +139657,6 @@ entities: - type: Transform pos: -10.5,-53.5 parent: 2 - - uid: 16582 - components: - - type: Transform - pos: -66.5,-9.5 - parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - uid: 7888 @@ -135221,21 +139763,20 @@ entities: id: Artifact Scanner - proto: SurveillanceCameraSecurity entities: - - uid: 395 + - uid: 672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,1.5 + pos: -38.5,-3.5 parent: 2 - type: SurveillanceCamera - id: Perma - Center - - uid: 396 + id: Main West + - uid: 2189 components: - type: Transform - pos: -32.5,-5.5 + pos: -38.5,-10.5 parent: 2 - type: SurveillanceCamera - id: GenPop Lockers + id: Lockers - uid: 7830 components: - type: Transform @@ -135243,115 +139784,89 @@ entities: parent: 2 - type: SurveillanceCamera id: Detective's Office - - uid: 10540 + - uid: 24483 + components: + - type: MetaData + name: Brigmed + - type: Transform + pos: -43.5,-7.5 + parent: 2 + - uid: 24590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-11.5 + pos: -42.5,-4.5 parent: 2 - type: SurveillanceCamera - id: Perma - Outside South - - uid: 12576 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-0.5 - parent: 2 - - type: SurveillanceCamera - id: Entrance - - uid: 13861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,4.5 - parent: 2 - - type: SurveillanceCamera - id: Perma - Emergency Exit - - uid: 16786 - components: - - type: Transform - pos: -40.5,9.5 - parent: 2 - - type: SurveillanceCamera - id: Perma - Outside Northeast - - uid: 18225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,6.5 - parent: 2 - - type: SurveillanceCamera - id: Perma - Library - - uid: 18228 + id: Backroom + - uid: 24591 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-5.5 - parent: 2 - - type: SurveillanceCamera - id: South Entrance - - uid: 19581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,4.5 - parent: 2 - - type: SurveillanceCamera - id: Outside Armory - - uid: 19997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,4.5 + pos: -35.5,4.5 parent: 2 - type: SurveillanceCamera id: Armory - - uid: 20099 - components: - - type: Transform - pos: -23.5,15.5 - parent: 2 - - type: SurveillanceCamera - id: Locker Room - - uid: 20438 + - uid: 24592 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-0.5 + pos: -30.5,-1.5 parent: 2 - type: SurveillanceCamera - id: Perma - Outside Southwest - - uid: 20510 + id: Main East + - uid: 24593 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-6.5 + pos: -24.5,-6.5 parent: 2 - type: SurveillanceCamera - id: Perma - Botany - - uid: 22319 + id: Warden + - uid: 24594 components: - type: Transform - pos: -49.5,7.5 + rot: 3.141592653589793 rad + pos: -26.5,2.5 parent: 2 - type: SurveillanceCamera - id: Perma - Outside Northwest - - uid: 22606 + id: Genpop - Lockers + - uid: 24597 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - type: SurveillanceCamera + id: Genpop - Gates + - uid: 24598 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,2.5 + pos: -38.5,14.5 parent: 2 - type: SurveillanceCamera - id: Perma - Beds - - uid: 23010 + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Genpop - Dorms + - uid: 24599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,15.5 + parent: 2 + - type: SurveillanceCamera + id: Genpop - Kitchen + - uid: 24600 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-9.5 + pos: -25.5,9.5 parent: 2 - type: SurveillanceCamera - id: Perma - Interview + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Genpop - Visitation - proto: SurveillanceCameraService entities: - uid: 11307 @@ -135502,6 +140017,11 @@ entities: - type: Transform pos: 13.5,-59.5 parent: 2 + - uid: 211 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 - uid: 270 components: - type: Transform @@ -135512,40 +140032,30 @@ entities: - type: Transform pos: -11.5,-23.5 parent: 2 - - uid: 380 + - uid: 402 components: - type: Transform - pos: -30.5,3.5 - parent: 2 - - uid: 389 - components: - - type: Transform - pos: -27.5,0.5 + pos: -25.5,13.5 parent: 2 - uid: 404 components: - type: Transform pos: -11.5,-13.5 parent: 2 - - uid: 467 + - uid: 446 components: - type: Transform - pos: -27.5,13.5 + pos: -29.5,15.5 parent: 2 - - uid: 468 + - uid: 551 components: - type: Transform pos: -26.5,13.5 parent: 2 - - uid: 511 + - uid: 673 components: - type: Transform - pos: -27.5,3.5 - parent: 2 - - uid: 512 - components: - - type: Transform - pos: -27.5,4.5 + pos: -30.5,15.5 parent: 2 - uid: 722 components: @@ -135562,6 +140072,11 @@ entities: - type: Transform pos: -33.5,-37.5 parent: 2 + - uid: 912 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 - uid: 1091 components: - type: Transform @@ -135572,6 +140087,11 @@ entities: - type: Transform pos: -56.5,-54.5 parent: 2 + - uid: 1299 + components: + - type: Transform + pos: -23.5,21.5 + parent: 2 - uid: 1503 components: - type: Transform @@ -135602,36 +140122,31 @@ entities: - type: Transform pos: 25.5,-17.5 parent: 2 - - uid: 1956 + - uid: 1891 components: - type: Transform - pos: -13.5,-8.5 + pos: -12.5,-1.5 parent: 2 - - uid: 1957 + - uid: 1947 components: - type: Transform - pos: -12.5,-8.5 + pos: 19.5,-6.5 parent: 2 - - uid: 2041 + - uid: 1951 components: - type: Transform - pos: -40.5,0.5 + pos: 51.5,-38.5 parent: 2 - - uid: 2191 + - uid: 1952 components: - type: Transform - pos: -20.5,6.5 + pos: 51.5,-39.5 parent: 2 - uid: 2358 components: - type: Transform pos: 18.5,15.5 parent: 2 - - uid: 2581 - components: - - type: Transform - pos: -23.5,0.5 - parent: 2 - uid: 2924 components: - type: Transform @@ -135847,11 +140362,6 @@ entities: - type: Transform pos: -27.5,-48.5 parent: 2 - - uid: 5610 - components: - - type: Transform - pos: -23.5,21.5 - parent: 2 - uid: 5943 components: - type: Transform @@ -135977,10 +140487,10 @@ entities: - type: Transform pos: 23.5,5.5 parent: 2 - - uid: 9884 + - uid: 9963 components: - type: Transform - pos: -27.5,-7.5 + pos: -35.5,17.5 parent: 2 - uid: 10191 components: @@ -135992,15 +140502,25 @@ entities: - type: Transform pos: -43.5,-39.5 parent: 2 - - uid: 10421 - components: - - type: Transform - pos: -41.5,0.5 - parent: 2 - uid: 10439 components: - type: Transform - pos: -26.5,15.5 + pos: -30.5,12.5 + parent: 2 + - uid: 10444 + components: + - type: Transform + pos: -29.5,12.5 + parent: 2 + - uid: 10447 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 10448 + components: + - type: Transform + pos: -29.5,9.5 parent: 2 - uid: 10489 components: @@ -136022,11 +140542,6 @@ entities: - type: Transform pos: -29.5,-36.5 parent: 2 - - uid: 11244 - components: - - type: Transform - pos: -27.5,15.5 - parent: 2 - uid: 11338 components: - type: Transform @@ -136117,11 +140632,6 @@ entities: - type: Transform pos: -53.5,-28.5 parent: 2 - - uid: 12983 - components: - - type: Transform - pos: -27.5,6.5 - parent: 2 - uid: 13061 components: - type: Transform @@ -136132,11 +140642,6 @@ entities: - type: Transform pos: 21.5,14.5 parent: 2 - - uid: 13194 - components: - - type: Transform - pos: -21.5,6.5 - parent: 2 - uid: 13384 components: - type: Transform @@ -136232,35 +140737,30 @@ entities: - type: Transform pos: 7.5,-57.5 parent: 2 - - uid: 16409 + - uid: 16242 components: - type: Transform - pos: -63.5,-15.5 + pos: -19.5,-13.5 parent: 2 - - uid: 16416 + - uid: 16483 components: - type: Transform - pos: -63.5,-16.5 + pos: -51.5,12.5 parent: 2 - - uid: 16459 + - uid: 16484 components: - type: Transform - pos: -60.5,-16.5 + pos: -51.5,11.5 parent: 2 - - uid: 16460 + - uid: 16485 components: - type: Transform - pos: -61.5,-16.5 + pos: -50.5,12.5 parent: 2 - - uid: 16587 + - uid: 16487 components: - type: Transform - pos: -60.5,-11.5 - parent: 2 - - uid: 16588 - components: - - type: Transform - pos: -61.5,-11.5 + pos: -50.5,11.5 parent: 2 - uid: 17003 components: @@ -136317,10 +140817,10 @@ entities: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 19291 + - uid: 19630 components: - type: Transform - pos: -27.5,-6.5 + pos: -34.5,14.5 parent: 2 - uid: 19882 components: @@ -136352,21 +140852,11 @@ entities: - type: Transform pos: -7.5,-6.5 parent: 2 - - uid: 20681 - components: - - type: Transform - pos: -33.5,18.5 - parent: 2 - uid: 21398 components: - type: Transform pos: 18.5,-15.5 parent: 2 - - uid: 21420 - components: - - type: Transform - pos: -20.5,-15.5 - parent: 2 - uid: 21445 components: - type: Transform @@ -136397,6 +140887,31 @@ entities: - type: Transform pos: 21.5,-27.5 parent: 2 + - uid: 24074 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 24459 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - uid: 24490 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 24550 + components: + - type: Transform + pos: 55.5,-38.5 + parent: 2 + - uid: 24551 + components: + - type: Transform + pos: 55.5,-36.5 + parent: 2 - proto: TableCarpet entities: - uid: 26 @@ -136404,24 +140919,6 @@ entities: - type: Transform pos: -0.5,23.5 parent: 2 - - uid: 1744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-39.5 - parent: 2 - - uid: 1839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-39.5 - parent: 2 - - uid: 1840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-39.5 - parent: 2 - uid: 6780 components: - type: Transform @@ -136449,11 +140946,6 @@ entities: - type: Transform pos: 4.5,15.5 parent: 2 - - uid: 420 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 2 - uid: 749 components: - type: Transform @@ -136519,11 +141011,6 @@ entities: - type: Transform pos: -27.5,-33.5 parent: 2 - - uid: 4754 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 2 - uid: 6371 components: - type: Transform @@ -136544,11 +141031,6 @@ entities: - type: Transform pos: -29.5,-33.5 parent: 2 - - uid: 11322 - components: - - type: Transform - pos: -19.5,-2.5 - parent: 2 - uid: 11331 components: - type: Transform @@ -136574,11 +141056,6 @@ entities: - type: Transform pos: 16.5,13.5 parent: 2 - - uid: 20498 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 2 - proto: TableCounterWood entities: - uid: 3545 @@ -136859,6 +141336,16 @@ entities: parent: 2 - proto: TableFancyWhite entities: + - uid: 1258 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 - uid: 3644 components: - type: Transform @@ -136881,15 +141368,17 @@ entities: - type: Transform pos: 19.5,-9.5 parent: 2 - - uid: 9140 + - uid: 24052 components: - type: Transform - pos: 20.5,-9.5 + rot: 1.5707963267948966 rad + pos: 18.5,-10.5 parent: 2 - - uid: 9180 + - uid: 24053 components: - type: Transform - pos: 20.5,-10.5 + rot: 1.5707963267948966 rad + pos: 18.5,-9.5 parent: 2 - proto: TableFrame entities: @@ -136903,20 +141392,22 @@ entities: - type: Transform pos: 46.5,7.5 parent: 2 + - uid: 14827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,23.5 + parent: 2 - uid: 15766 components: - type: Transform pos: 42.5,21.5 parent: 2 - - uid: 18808 + - uid: 16459 components: - type: Transform - pos: 77.5,-42.5 - parent: 2 - - uid: 18809 - components: - - type: Transform - pos: 78.5,-42.5 + rot: -1.5707963267948966 rad + pos: -54.5,23.5 parent: 2 - uid: 19593 components: @@ -136969,6 +141460,11 @@ entities: - type: Transform pos: 22.5,-59.5 parent: 2 + - uid: 14582 + components: + - type: Transform + pos: -51.5,24.5 + parent: 2 - proto: TablePlasmaGlass entities: - uid: 6734 @@ -136983,25 +141479,20 @@ entities: - type: Transform pos: 20.5,-15.5 parent: 2 - - uid: 176 + - uid: 217 components: - type: Transform - pos: -41.5,-6.5 + pos: -28.5,-4.5 parent: 2 - - uid: 443 + - uid: 247 components: - type: Transform - pos: -28.5,12.5 + pos: -29.5,-4.5 parent: 2 - - uid: 444 + - uid: 678 components: - type: Transform - pos: -28.5,11.5 - parent: 2 - - uid: 450 - components: - - type: Transform - pos: -28.5,9.5 + pos: -25.5,-4.5 parent: 2 - uid: 836 components: @@ -137023,6 +141514,21 @@ entities: - type: Transform pos: 2.5,20.5 parent: 2 + - uid: 1096 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: 67.5,-41.5 + parent: 2 - uid: 1362 components: - type: Transform @@ -137033,6 +141539,11 @@ entities: - type: Transform pos: -0.5,16.5 parent: 2 + - uid: 1743 + components: + - type: Transform + pos: 68.5,-41.5 + parent: 2 - uid: 1906 components: - type: Transform @@ -137058,31 +141569,41 @@ entities: - type: Transform pos: -28.5,-59.5 parent: 2 + - uid: 2163 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 68.5,-43.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 75.5,-40.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 75.5,-42.5 + parent: 2 - uid: 2543 components: - type: Transform pos: -30.5,-63.5 parent: 2 - - uid: 2754 + - uid: 2616 components: - type: Transform - pos: -38.5,-14.5 + pos: -14.5,-3.5 parent: 2 - uid: 3843 components: - type: Transform pos: -0.5,20.5 parent: 2 - - uid: 4158 - components: - - type: Transform - pos: -40.5,-3.5 - parent: 2 - - uid: 4650 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 2 - uid: 4874 components: - type: Transform @@ -137108,6 +141629,11 @@ entities: - type: Transform pos: 9.5,18.5 parent: 2 + - uid: 5882 + components: + - type: Transform + pos: 67.5,-43.5 + parent: 2 - uid: 7540 components: - type: Transform @@ -137128,6 +141654,66 @@ entities: - type: Transform pos: 22.5,2.5 parent: 2 + - uid: 10449 + components: + - type: Transform + pos: 96.5,-40.5 + parent: 2 + - uid: 11018 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - uid: 11121 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 2 + - uid: 11207 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 11618 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 11619 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 11623 + components: + - type: Transform + pos: -46.5,-4.5 + parent: 2 + - uid: 11827 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - uid: 12124 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 12128 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 + - uid: 12262 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 12299 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 - uid: 14290 components: - type: Transform @@ -137138,10 +141724,15 @@ entities: - type: Transform pos: 9.5,22.5 parent: 2 - - uid: 16887 + - uid: 16065 components: - type: Transform - pos: -41.5,-7.5 + pos: -59.5,-14.5 + parent: 2 + - uid: 16066 + components: + - type: Transform + pos: -59.5,-12.5 parent: 2 - uid: 18466 components: @@ -137153,25 +141744,10 @@ entities: - type: Transform pos: 87.5,-28.5 parent: 2 - - uid: 19126 + - uid: 20596 components: - type: Transform - pos: -37.5,3.5 - parent: 2 - - uid: 20497 - components: - - type: Transform - pos: -39.5,-3.5 - parent: 2 - - uid: 20566 - components: - - type: Transform - pos: -36.5,-1.5 - parent: 2 - - uid: 20580 - components: - - type: Transform - pos: -36.5,-2.5 + pos: -35.5,1.5 parent: 2 - uid: 20675 components: @@ -137195,21 +141771,6 @@ entities: - type: Transform pos: 3.5,-86.5 parent: 2 - - uid: 10045 - components: - - type: Transform - pos: 74.5,-40.5 - parent: 2 - - uid: 10197 - components: - - type: Transform - pos: 73.5,-40.5 - parent: 2 - - uid: 10726 - components: - - type: Transform - pos: 74.5,-41.5 - parent: 2 - uid: 12824 components: - type: Transform @@ -137229,6 +141790,18 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,4.5 parent: 2 + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,9.5 + parent: 2 + - uid: 497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,9.5 + parent: 2 - uid: 556 components: - type: Transform @@ -137673,6 +142246,18 @@ entities: - type: Transform pos: 11.5,-25.5 parent: 2 + - uid: 11301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,1.5 + parent: 2 + - uid: 11308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,2.5 + parent: 2 - uid: 12459 components: - type: Transform @@ -137690,11 +142275,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-22.5 parent: 2 - - uid: 13373 - components: - - type: Transform - pos: -12.5,8.5 - parent: 2 - uid: 13855 components: - type: Transform @@ -137705,18 +142285,6 @@ entities: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 14814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,10.5 - parent: 2 - - uid: 14815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,10.5 - parent: 2 - uid: 15040 components: - type: Transform @@ -137756,27 +142324,17 @@ entities: - type: Transform pos: 96.5,-31.5 parent: 2 - - uid: 18832 - components: - - type: Transform - pos: 96.5,-35.5 - parent: 2 - uid: 19004 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,3.5 parent: 2 - - uid: 20487 - components: - - type: Transform - pos: -41.5,5.5 - parent: 2 - - uid: 20527 + - uid: 19560 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,6.5 + pos: 52.5,-35.5 parent: 2 - uid: 22303 components: @@ -137795,6 +142353,16 @@ entities: - type: Transform pos: -3.5,-44.5 parent: 2 + - uid: 23840 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 23841 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 - proto: TargetClown entities: - uid: 18803 @@ -137802,36 +142370,12 @@ entities: - type: Transform pos: 82.5,-14.5 parent: 2 -- proto: TargetStrange - entities: - - uid: 20656 - components: - - type: Transform - pos: -34.5,20.5 - parent: 2 - proto: TeaPlantSeeds entities: - uid: 12627 components: - type: Transform - pos: 19.270489,-6.2979584 - parent: 2 -- proto: TearGasGrenade - entities: - - uid: 23210 - components: - - type: Transform - pos: -24.68567,13.724779 - parent: 2 - - uid: 23211 - components: - - type: Transform - pos: -24.331327,13.724779 - parent: 2 - - uid: 23212 - components: - - type: Transform - pos: -24.508497,13.651812 + pos: 21.07561,-6.389536 parent: 2 - proto: TegCenter entities: @@ -137929,18 +142473,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-28.5 parent: 2 - - uid: 5638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-12.5 - parent: 2 - - uid: 5677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-12.5 - parent: 2 - uid: 7601 components: - type: Transform @@ -137952,6 +142484,18 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-78.5 parent: 2 + - uid: 16244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-15.5 + parent: 2 + - uid: 16254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-11.5 + parent: 2 - uid: 19098 components: - type: Transform @@ -138012,11 +142556,6 @@ entities: - type: Transform pos: 8.5,-27.5 parent: 2 - - uid: 7068 - components: - - type: Transform - pos: -28.5,2.5 - parent: 2 - uid: 9883 components: - type: Transform @@ -138067,10 +142606,15 @@ entities: - type: Transform pos: -47.5,-42.5 parent: 2 - - uid: 14542 + - uid: 14253 components: - type: Transform - pos: -28.5,4.5 + pos: -44.5,15.5 + parent: 2 + - uid: 14498 + components: + - type: Transform + pos: -42.5,15.5 parent: 2 - uid: 22593 components: @@ -138079,6 +142623,18 @@ entities: parent: 2 - proto: ToiletDirtyWater entities: + - uid: 905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,3.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,3.5 + parent: 2 - uid: 2278 components: - type: Transform @@ -138091,17 +142647,6 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-42.5 parent: 2 - - uid: 14504 - components: - - type: Transform - pos: -49.5,5.5 - parent: 2 - - uid: 15117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,1.5 - parent: 2 - proto: ToiletEmpty entities: - uid: 3714 @@ -138211,11 +142756,6 @@ entities: - type: Transform pos: 40.515865,5.6471686 parent: 2 - - uid: 13143 - components: - - type: Transform - pos: -26.966915,13.769235 - parent: 2 - proto: ToolboxGoldFilled entities: - uid: 1911 @@ -138230,11 +142770,6 @@ entities: - type: Transform pos: 27.628296,-16.512726 parent: 2 - - uid: 2789 - components: - - type: Transform - pos: -38.45977,-14.446957 - parent: 2 - uid: 3369 components: - type: Transform @@ -138260,11 +142795,6 @@ entities: - type: Transform pos: 3.5118675,-57.430447 parent: 2 - - uid: 16275 - components: - - type: Transform - pos: -60.524765,-8.3371105 - parent: 2 - uid: 17532 components: - type: Transform @@ -138275,22 +142805,22 @@ entities: - type: Transform pos: 50.48773,-54.36774 parent: 2 - - uid: 21851 - components: - - type: Transform - pos: -27.514086,-7.313642 - parent: 2 - uid: 22862 components: - type: Transform pos: 93.54507,-19.615318 parent: 2 -- proto: Tourniquet - entities: - - uid: 9076 + - uid: 24814 components: - type: Transform - pos: -28.580025,9.723599 + pos: -35.453438,1.7514868 + parent: 2 +- proto: Tourniquet + entities: + - uid: 11574 + components: + - type: Transform + pos: -43.47097,-5.4080935 parent: 2 - proto: TowelColorNT entities: @@ -138299,13 +142829,6 @@ entities: - type: Transform pos: -22.515173,-56.227436 parent: 2 -- proto: ToyAi - entities: - - uid: 17109 - components: - - type: Transform - pos: -48.46802,-6.421814 - parent: 2 - proto: ToyFigurineCaptain entities: - uid: 11174 @@ -138350,10 +142873,10 @@ entities: parent: 2 - proto: ToyFigurineHeadOfSecurity entities: - - uid: 12652 + - uid: 23312 components: - type: Transform - pos: -20.808966,10.972251 + pos: -43.525604,2.660677 parent: 2 - proto: ToyFigurineLibrarian entities: @@ -138376,6 +142899,11 @@ entities: - type: Transform pos: 19.24643,-48.965763 parent: 2 + - uid: 24117 + components: + - type: Transform + pos: 20.553272,-8.568783 + parent: 2 - proto: ToyFigurineParamedic entities: - uid: 3805 @@ -138399,10 +142927,10 @@ entities: parent: 2 - proto: ToyFigurineSecurity entities: - - uid: 2675 + - uid: 23313 components: - type: Transform - pos: -27.642632,4.10057 + pos: -36.55325,-4.402304 parent: 2 - proto: ToyFigurineThief entities: @@ -138413,10 +142941,10 @@ entities: parent: 2 - proto: ToyFigurineWarden entities: - - uid: 6285 + - uid: 23311 components: - type: Transform - pos: -21.495405,-5.259852 + pos: -26.369354,-6.341769 parent: 2 - proto: ToyFigurineWizardFake entities: @@ -138425,6 +142953,13 @@ entities: - type: Transform pos: 18.704494,-48.621777 parent: 2 +- proto: ToyIan + entities: + - uid: 24222 + components: + - type: Transform + pos: -29.397823,17.463732 + parent: 2 - proto: ToyMouse entities: - uid: 13064 @@ -138491,6 +143026,13 @@ entities: - type: Transform pos: 30.5,25.5 parent: 2 +- proto: TrashBag + entities: + - uid: 24300 + components: + - type: Transform + pos: -33.66584,19.584034 + parent: 2 - proto: trayScanner entities: - uid: 4066 @@ -138532,24 +143074,23 @@ entities: parent: 2 - proto: TurnstileGenpopEnter entities: - - uid: 16235 + - uid: 293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-0.5 + rot: 3.141592653589793 rad + pos: -29.5,4.5 parent: 2 - proto: TurnstileGenpopLeave entities: - - uid: 2778 + - uid: 995 components: - type: Transform - pos: -30.5,-7.5 + pos: -22.5,0.5 parent: 2 - - uid: 12483 + - uid: 999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-4.5 + pos: -27.5,4.5 parent: 2 - proto: TwoWayLever entities: @@ -138827,10 +143368,10 @@ entities: - type: Transform pos: 85.5,-11.5 parent: 2 - - uid: 18759 + - uid: 16401 components: - type: Transform - pos: 76.5,-42.5 + pos: -54.5,-4.5 parent: 2 - uid: 19193 components: @@ -138844,11 +143385,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-86.5 parent: 2 - - uid: 20698 - components: - - type: Transform - pos: -20.5,-12.5 - parent: 2 - uid: 22904 components: - type: Transform @@ -138861,19 +143397,35 @@ entities: - type: Transform pos: -17.5,-48.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: UniformShortsRed entities: - - uid: 2293 + - uid: 24494 components: - type: Transform - pos: 52.36283,-35.34389 + pos: 53.625904,-41.41897 + parent: 2 + - uid: 24495 + components: + - type: Transform + pos: 53.698856,-41.544052 parent: 2 - proto: UniformShortsRedWithTop entities: - - uid: 2298 + - uid: 24491 components: - type: Transform - pos: 52.654644,-35.375164 + pos: 53.281982,-41.304302 + parent: 2 + - uid: 24492 + components: + - type: Transform + pos: 53.438313,-41.450237 parent: 2 - proto: Urn entities: @@ -138910,10 +143462,10 @@ entities: parent: 2 - proto: VendingMachineAtmosDrobe entities: - - uid: 1934 + - uid: 1942 components: - type: Transform - pos: -12.5,-6.5 + pos: -13.5,-1.5 parent: 2 - proto: VendingMachineBooze entities: @@ -138978,11 +143530,6 @@ entities: parent: 2 - proto: VendingMachineCigs entities: - - uid: 3372 - components: - - type: Transform - pos: -46.5,4.5 - parent: 2 - uid: 4386 components: - type: Transform @@ -139072,10 +143619,10 @@ entities: parent: 2 - proto: VendingMachineDonut entities: - - uid: 15472 + - uid: 12224 components: - type: Transform - pos: -30.5,0.5 + pos: -35.5,-1.5 parent: 2 - proto: VendingMachineEngiDrobe entities: @@ -139098,10 +143645,10 @@ entities: - type: Transform pos: 21.5,-46.5 parent: 2 - - uid: 20486 + - uid: 19623 components: - type: Transform - pos: -44.5,4.5 + pos: -37.5,17.5 parent: 2 - proto: VendingMachineGeneDrobe entities: @@ -139204,17 +143751,17 @@ entities: parent: 2 - proto: VendingMachineSec entities: - - uid: 19546 + - uid: 11066 components: - type: Transform - pos: -22.5,17.5 + pos: -39.5,-5.5 parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 2818 + - uid: 11188 components: - type: Transform - pos: -21.5,17.5 + pos: -40.5,-5.5 parent: 2 - proto: VendingMachineSeeds entities: @@ -139225,10 +143772,10 @@ entities: parent: 2 - proto: VendingMachineSeedsUnlocked entities: - - uid: 4557 + - uid: 498 components: - type: Transform - pos: -42.5,-9.5 + pos: -26.5,16.5 parent: 2 - uid: 17187 components: @@ -139244,10 +143791,10 @@ entities: parent: 2 - proto: VendingMachineSustenance entities: - - uid: 11895 + - uid: 20083 components: - type: Transform - pos: -36.5,-3.5 + pos: -27.5,9.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: @@ -139258,10 +143805,10 @@ entities: parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 1960 + - uid: 79 components: - type: Transform - pos: -11.5,-8.5 + pos: 14.5,22.5 parent: 2 - uid: 2055 components: @@ -139273,15 +143820,10 @@ entities: - type: Transform pos: -4.5,-55.5 parent: 2 - - uid: 20464 + - uid: 20630 components: - type: Transform - pos: -34.5,3.5 - parent: 2 - - uid: 21410 - components: - - type: Transform - pos: 15.5,25.5 + pos: -41.5,5.5 parent: 2 - proto: VendingMachineTheater entities: @@ -139309,13 +143851,6 @@ entities: - type: Transform pos: -53.5,-31.5 parent: 2 -- proto: VendingMachineWallMedical - entities: - - uid: 447 - components: - - type: Transform - pos: -30.5,12.5 - parent: 2 - proto: VendingMachineWinter entities: - uid: 9445 @@ -139359,27 +143894,32 @@ entities: - uid: 12 components: - type: Transform - pos: -21.5,-2.5 + pos: -31.5,-9.5 parent: 2 - - uid: 20 + - uid: 14 components: - type: Transform - pos: -14.5,24.5 + pos: 87.5,-47.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: -25.5,-11.5 parent: 2 - uid: 60 components: - type: Transform pos: -18.5,24.5 parent: 2 - - uid: 93 + - uid: 64 components: - type: Transform - pos: -11.5,26.5 - parent: 2 - - uid: 106 - components: - - type: Transform - pos: -12.5,24.5 + pos: -24.5,4.5 parent: 2 - uid: 125 components: @@ -139389,7 +143929,7 @@ entities: - uid: 126 components: - type: Transform - pos: 0.5,15.5 + pos: 48.5,1.5 parent: 2 - uid: 138 components: @@ -139406,40 +143946,90 @@ entities: - type: Transform pos: 1.5,13.5 parent: 2 + - uid: 153 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 2 - uid: 155 components: - type: Transform pos: 47.5,-63.5 parent: 2 - - uid: 156 + - uid: 161 components: - type: Transform - pos: 9.5,15.5 + pos: -34.5,-9.5 parent: 2 - - uid: 185 + - uid: 172 components: - type: Transform - pos: -30.5,-78.5 + pos: -33.5,-10.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -20.5,11.5 parent: 2 - uid: 207 components: - type: Transform - pos: -22.5,1.5 + pos: -19.5,3.5 parent: 2 - uid: 209 components: - type: Transform pos: -25.5,-35.5 parent: 2 - - uid: 214 + - uid: 220 components: - type: Transform - pos: -23.5,1.5 + pos: -19.5,-8.5 parent: 2 - - uid: 217 + - uid: 225 components: - type: Transform - pos: -35.5,10.5 + pos: -19.5,1.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: -38.5,-0.5 parent: 2 - uid: 235 components: @@ -139456,130 +144046,280 @@ entities: - type: Transform pos: 55.5,-56.5 parent: 2 + - uid: 245 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: -21.5,17.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: -22.5,17.5 + parent: 2 - uid: 275 components: - type: Transform pos: -28.5,-20.5 parent: 2 - - uid: 287 + - uid: 279 components: - type: Transform - pos: -31.5,2.5 + pos: -41.5,30.5 parent: 2 - - uid: 298 + - uid: 288 components: - type: Transform - pos: -24.5,18.5 + pos: -40.5,-4.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: -40.5,7.5 parent: 2 - uid: 314 components: - type: Transform pos: -4.5,-87.5 parent: 2 - - uid: 318 + - uid: 330 components: - type: Transform - pos: -35.5,-2.5 + pos: -21.5,8.5 parent: 2 - - uid: 327 + - uid: 331 components: - type: Transform - pos: -70.5,-14.5 + pos: -20.5,10.5 parent: 2 - - uid: 333 + - uid: 332 components: - type: Transform - pos: -36.5,8.5 + pos: -31.5,-11.5 parent: 2 - - uid: 338 + - uid: 337 components: - type: Transform - pos: 13.5,-3.5 + pos: -38.5,-4.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: -19.5,0.5 parent: 2 - uid: 366 components: - type: Transform pos: -8.5,-86.5 parent: 2 + - uid: 367 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 - uid: 370 components: - type: Transform - pos: -69.5,-9.5 + pos: -30.5,-8.5 parent: 2 - - uid: 392 + - uid: 372 components: - type: Transform - pos: 50.5,-14.5 + pos: -28.5,-8.5 parent: 2 - - uid: 397 + - uid: 377 components: - type: Transform - pos: -35.5,8.5 + pos: -42.5,5.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: -43.5,6.5 parent: 2 - uid: 406 components: - type: Transform pos: -54.5,-51.5 parent: 2 - - uid: 414 - components: - - type: Transform - pos: -26.5,18.5 - parent: 2 - uid: 415 components: - type: Transform - pos: -27.5,18.5 + pos: -19.5,2.5 parent: 2 - uid: 418 components: - type: Transform pos: 48.5,-63.5 parent: 2 - - uid: 433 + - uid: 428 components: - type: Transform - pos: -22.5,-5.5 + pos: -37.5,-5.5 parent: 2 - uid: 434 components: - type: Transform pos: 13.5,1.5 parent: 2 - - uid: 436 + - uid: 439 components: - type: Transform - pos: -17.5,7.5 + pos: -34.5,-7.5 parent: 2 - - uid: 440 + - uid: 441 components: - type: Transform - pos: -20.5,13.5 + pos: -22.5,-9.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: -29.5,16.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: -25.5,18.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: -26.5,9.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: -40.5,-0.5 parent: 2 - uid: 478 components: - type: Transform pos: 56.5,-47.5 parent: 2 + - uid: 489 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 - uid: 490 components: - type: Transform - pos: -50.5,6.5 + pos: -19.5,10.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: -42.5,18.5 parent: 2 - uid: 496 components: - type: Transform pos: -11.5,7.5 parent: 2 - - uid: 503 + - uid: 500 components: - type: Transform - pos: -35.5,7.5 + pos: -21.5,12.5 parent: 2 - - uid: 520 + - uid: 502 components: - type: Transform - pos: -29.5,13.5 + pos: -26.5,18.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: -46.5,-5.5 parent: 2 - uid: 527 components: @@ -139591,26 +144331,51 @@ entities: - type: Transform pos: 60.5,-46.5 parent: 2 - - uid: 534 - components: - - type: Transform - pos: 25.5,-38.5 - parent: 2 - uid: 545 components: - type: Transform pos: 42.5,-50.5 parent: 2 + - uid: 547 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: -30.5,3.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 - uid: 554 components: - type: Transform pos: 41.5,-62.5 parent: 2 + - uid: 555 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 - uid: 581 components: - type: Transform pos: 47.5,-44.5 parent: 2 + - uid: 588 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 - uid: 589 components: - type: Transform @@ -139631,30 +144396,135 @@ entities: - type: Transform pos: 37.5,-64.5 parent: 2 + - uid: 626 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 - uid: 657 components: - type: Transform pos: 47.5,-49.5 parent: 2 + - uid: 668 + components: + - type: Transform + pos: -27.5,17.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: -25.5,17.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: -40.5,0.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: -23.5,17.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: -30.5,4.5 + parent: 2 - uid: 687 components: - type: Transform - pos: -37.5,10.5 + pos: -31.5,2.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: -28.5,4.5 parent: 2 - uid: 739 components: - type: Transform pos: 8.5,27.5 parent: 2 + - uid: 751 + components: + - type: Transform + pos: -38.5,18.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: 87.5,-34.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: -22.5,9.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: -41.5,7.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 - uid: 820 components: - type: Transform pos: -12.5,26.5 parent: 2 - - uid: 826 + - uid: 829 components: - type: Transform - pos: -38.5,-10.5 + pos: -43.5,4.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: -42.5,2.5 parent: 2 - uid: 839 components: @@ -139666,155 +144536,100 @@ entities: - type: Transform pos: -20.5,28.5 parent: 2 - - uid: 845 + - uid: 843 components: - type: Transform - pos: -3.5,26.5 - parent: 2 - - uid: 869 - components: - - type: Transform - pos: 9.5,14.5 - parent: 2 - - uid: 879 - components: - - type: Transform - pos: -0.5,15.5 + pos: -30.5,-0.5 parent: 2 - uid: 892 components: - type: Transform pos: 7.5,29.5 parent: 2 - - uid: 894 - components: - - type: Transform - pos: -72.5,-11.5 - parent: 2 - uid: 895 components: - type: Transform pos: 1.5,29.5 parent: 2 - - uid: 906 - components: - - type: Transform - pos: -22.5,14.5 - parent: 2 - uid: 918 components: - type: Transform pos: -18.5,23.5 parent: 2 - - uid: 945 + - uid: 925 components: - type: Transform - pos: -37.5,8.5 + pos: -34.5,-8.5 parent: 2 - uid: 947 components: - type: Transform pos: 24.5,23.5 parent: 2 + - uid: 960 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 - uid: 971 components: - type: Transform pos: -2.5,26.5 parent: 2 - - uid: 980 + - uid: 973 components: - type: Transform - pos: -23.5,-5.5 + pos: -25.5,-0.5 parent: 2 - uid: 987 components: - type: Transform pos: 9.5,29.5 parent: 2 - - uid: 993 - components: - - type: Transform - pos: -1.5,13.5 - parent: 2 - - uid: 999 - components: - - type: Transform - pos: -70.5,-15.5 - parent: 2 - - uid: 1000 - components: - - type: Transform - pos: -72.5,-12.5 - parent: 2 - - uid: 1001 - components: - - type: Transform - pos: -70.5,-16.5 - parent: 2 - - uid: 1007 - components: - - type: Transform - pos: 0.5,13.5 - parent: 2 - uid: 1010 components: - type: Transform pos: 7.5,15.5 parent: 2 - - uid: 1020 - components: - - type: Transform - pos: -71.5,-16.5 - parent: 2 - uid: 1037 components: - type: Transform pos: 24.5,19.5 parent: 2 - - uid: 1044 + - uid: 1043 components: - type: Transform - pos: -1.5,27.5 + pos: -34.5,-5.5 parent: 2 - - uid: 1082 + - uid: 1070 components: - type: Transform - pos: -28.5,-57.5 + pos: 86.5,-38.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: -43.5,-8.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: -21.5,4.5 parent: 2 - uid: 1083 components: - type: Transform pos: 56.5,-46.5 parent: 2 - - uid: 1084 - components: - - type: Transform - pos: -71.5,-10.5 - parent: 2 - - uid: 1085 - components: - - type: Transform - pos: -70.5,-13.5 - parent: 2 - - uid: 1101 - components: - - type: Transform - pos: -31.5,5.5 - parent: 2 - uid: 1102 components: - type: Transform - pos: -72.5,-16.5 - parent: 2 - - uid: 1105 - components: - - type: Transform - pos: -68.5,-9.5 - parent: 2 - - uid: 1107 - components: - - type: Transform - pos: -73.5,-11.5 + pos: -19.5,-6.5 parent: 2 - uid: 1109 components: @@ -139824,37 +144639,17 @@ entities: - uid: 1114 components: - type: Transform - pos: -71.5,-8.5 - parent: 2 - - uid: 1115 - components: - - type: Transform - pos: 7.5,1.5 + pos: -24.5,-11.5 parent: 2 - uid: 1122 components: - type: Transform pos: 41.5,-50.5 parent: 2 - - uid: 1128 + - uid: 1130 components: - type: Transform - pos: -70.5,-8.5 - parent: 2 - - uid: 1132 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 2 - - uid: 1133 - components: - - type: Transform - pos: 54.5,-43.5 - parent: 2 - - uid: 1137 - components: - - type: Transform - pos: -13.5,3.5 + pos: -20.5,17.5 parent: 2 - uid: 1146 components: @@ -139881,10 +144676,35 @@ entities: - type: Transform pos: -58.5,-54.5 parent: 2 - - uid: 1162 + - uid: 1156 components: - type: Transform - pos: 53.5,-43.5 + pos: -20.5,-11.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: -26.5,-4.5 parent: 2 - uid: 1178 components: @@ -139896,26 +144716,61 @@ entities: - type: Transform pos: 43.5,-43.5 parent: 2 + - uid: 1181 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: 80.5,-45.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: -26.5,12.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -43.5,30.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -42.5,30.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: -42.5,28.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: -40.5,30.5 + parent: 2 - uid: 1231 components: - type: Transform - pos: 56.5,-43.5 - parent: 2 - - uid: 1241 - components: - - type: Transform - pos: 4.5,-5.5 + pos: 57.5,-35.5 parent: 2 - uid: 1252 components: - type: Transform pos: -5.5,20.5 parent: 2 - - uid: 1255 - components: - - type: Transform - pos: -3.5,21.5 - parent: 2 - uid: 1294 components: - type: Transform @@ -139941,11 +144796,6 @@ entities: - type: Transform pos: 11.5,29.5 parent: 2 - - uid: 1383 - components: - - type: Transform - pos: -35.5,15.5 - parent: 2 - uid: 1391 components: - type: Transform @@ -139961,16 +144811,6 @@ entities: - type: Transform pos: 19.5,20.5 parent: 2 - - uid: 1409 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 2 - - uid: 1419 - components: - - type: Transform - pos: -71.5,-13.5 - parent: 2 - uid: 1420 components: - type: Transform @@ -139991,11 +144831,6 @@ entities: - type: Transform pos: -4.5,7.5 parent: 2 - - uid: 1424 - components: - - type: Transform - pos: -4.5,6.5 - parent: 2 - uid: 1425 components: - type: Transform @@ -140006,21 +144841,6 @@ entities: - type: Transform pos: -2.5,7.5 parent: 2 - - uid: 1427 - components: - - type: Transform - pos: -2.5,6.5 - parent: 2 - - uid: 1430 - components: - - type: Transform - pos: -0.5,6.5 - parent: 2 - - uid: 1431 - components: - - type: Transform - pos: -0.5,5.5 - parent: 2 - uid: 1433 components: - type: Transform @@ -140036,26 +144856,6 @@ entities: - type: Transform pos: 1.5,3.5 parent: 2 - - uid: 1438 - components: - - type: Transform - pos: -0.5,3.5 - parent: 2 - - uid: 1441 - components: - - type: Transform - pos: -71.5,-9.5 - parent: 2 - - uid: 1443 - components: - - type: Transform - pos: -6.5,3.5 - parent: 2 - - uid: 1446 - components: - - type: Transform - pos: -8.5,3.5 - parent: 2 - uid: 1448 components: - type: Transform @@ -140066,21 +144866,6 @@ entities: - type: Transform pos: 27.5,17.5 parent: 2 - - uid: 1462 - components: - - type: Transform - pos: -31.5,10.5 - parent: 2 - - uid: 1483 - components: - - type: Transform - pos: -28.5,-49.5 - parent: 2 - - uid: 1488 - components: - - type: Transform - pos: -11.5,8.5 - parent: 2 - uid: 1491 components: - type: Transform @@ -140096,31 +144881,16 @@ entities: - type: Transform pos: 45.5,-91.5 parent: 2 - - uid: 1523 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 2 - uid: 1534 components: - type: Transform pos: -4.5,13.5 parent: 2 - - uid: 1560 - components: - - type: Transform - pos: -11.5,1.5 - parent: 2 - uid: 1564 components: - type: Transform pos: -10.5,1.5 parent: 2 - - uid: 1589 - components: - - type: Transform - pos: -4.5,5.5 - parent: 2 - uid: 1614 components: - type: Transform @@ -140136,11 +144906,6 @@ entities: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 1668 - components: - - type: Transform - pos: 5.5,6.5 - parent: 2 - uid: 1680 components: - type: Transform @@ -140151,25 +144916,15 @@ entities: - type: Transform pos: 5.5,3.5 parent: 2 - - uid: 1691 - components: - - type: Transform - pos: -11.5,9.5 - parent: 2 - - uid: 1725 - components: - - type: Transform - pos: 14.5,29.5 - parent: 2 - uid: 1735 components: - type: Transform pos: 44.5,-15.5 parent: 2 - - uid: 1804 + - uid: 1744 components: - type: Transform - pos: -45.5,-3.5 + pos: 54.5,-42.5 parent: 2 - uid: 1813 components: @@ -140181,10 +144936,25 @@ entities: - type: Transform pos: -27.5,-64.5 parent: 2 - - uid: 1843 + - uid: 1837 components: - type: Transform - pos: -29.5,-65.5 + pos: 83.5,-45.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: 81.5,-39.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + pos: 91.5,-36.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: 92.5,-47.5 parent: 2 - uid: 1858 components: @@ -140206,16 +144976,16 @@ entities: - type: Transform pos: 26.5,-47.5 parent: 2 - - uid: 1874 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 2 - uid: 1876 components: - type: Transform pos: 10.5,-20.5 parent: 2 + - uid: 1880 + components: + - type: Transform + pos: 97.5,-39.5 + parent: 2 - uid: 1892 components: - type: Transform @@ -140226,11 +144996,6 @@ entities: - type: Transform pos: 40.5,-68.5 parent: 2 - - uid: 1896 - components: - - type: Transform - pos: -38.5,7.5 - parent: 2 - uid: 1901 components: - type: Transform @@ -140241,51 +145006,21 @@ entities: - type: Transform pos: 53.5,-27.5 parent: 2 - - uid: 1923 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 2 - - uid: 1926 - components: - - type: Transform - pos: -27.5,-62.5 - parent: 2 - uid: 1950 components: - type: Transform pos: -28.5,-64.5 parent: 2 - - uid: 1959 - components: - - type: Transform - pos: -39.5,7.5 - parent: 2 - - uid: 1967 - components: - - type: Transform - pos: -48.5,7.5 - parent: 2 - - uid: 2016 - components: - - type: Transform - pos: -35.5,5.5 - parent: 2 - - uid: 2029 - components: - - type: Transform - pos: -27.5,-58.5 - parent: 2 - - uid: 2030 - components: - - type: Transform - pos: 49.5,18.5 - parent: 2 - uid: 2069 components: - type: Transform pos: 37.5,-65.5 parent: 2 + - uid: 2070 + components: + - type: Transform + pos: 88.5,-36.5 + parent: 2 - uid: 2076 components: - type: Transform @@ -140301,11 +145036,26 @@ entities: - type: Transform pos: -20.5,26.5 parent: 2 + - uid: 2146 + components: + - type: Transform + pos: 91.5,-43.5 + parent: 2 - uid: 2153 components: - type: Transform pos: 40.5,-67.5 parent: 2 + - uid: 2158 + components: + - type: Transform + pos: 90.5,-47.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + pos: 85.5,-43.5 + parent: 2 - uid: 2193 components: - type: Transform @@ -140321,15 +145071,20 @@ entities: - type: Transform pos: -2.5,-24.5 parent: 2 - - uid: 2196 + - uid: 2197 components: - type: Transform - pos: -21.5,9.5 + pos: 83.5,-39.5 parent: 2 - uid: 2221 components: - type: Transform - pos: -21.5,8.5 + pos: -36.5,31.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + pos: 95.5,-36.5 parent: 2 - uid: 2232 components: @@ -140341,21 +145096,16 @@ entities: - type: Transform pos: -28.5,-53.5 parent: 2 - - uid: 2237 - components: - - type: Transform - pos: -49.5,6.5 - parent: 2 - - uid: 2238 - components: - - type: Transform - pos: -67.5,-8.5 - parent: 2 - uid: 2239 components: - type: Transform pos: 43.5,16.5 parent: 2 + - uid: 2253 + components: + - type: Transform + pos: 97.5,-43.5 + parent: 2 - uid: 2257 components: - type: Transform @@ -140371,30 +145121,25 @@ entities: - type: Transform pos: 41.5,-51.5 parent: 2 - - uid: 2280 + - uid: 2285 components: - type: Transform - pos: -65.5,-8.5 + pos: 88.5,-47.5 parent: 2 - - uid: 2289 + - uid: 2293 components: - type: Transform - pos: -71.5,-15.5 + pos: 70.5,-43.5 parent: 2 - - uid: 2295 + - uid: 2302 components: - type: Transform - pos: -71.5,-14.5 + pos: -18.5,-8.5 parent: 2 - - uid: 2296 + - uid: 2312 components: - type: Transform - pos: -72.5,-14.5 - parent: 2 - - uid: 2297 - components: - - type: Transform - pos: -59.5,-17.5 + pos: 70.5,-39.5 parent: 2 - uid: 2315 components: @@ -140406,30 +145151,35 @@ entities: - type: Transform pos: 54.5,-50.5 parent: 2 - - uid: 2317 + - uid: 2335 components: - type: Transform - pos: 9.5,-5.5 + pos: 88.5,-48.5 parent: 2 - - uid: 2351 + - uid: 2336 components: - type: Transform - pos: 33.5,27.5 + pos: 84.5,-40.5 parent: 2 - - uid: 2356 + - uid: 2355 components: - type: Transform - pos: 66.5,-43.5 + pos: 76.5,-42.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: -34.5,19.5 parent: 2 - uid: 2389 components: - type: Transform pos: 36.5,27.5 parent: 2 - - uid: 2450 + - uid: 2402 components: - type: Transform - pos: -22.5,-57.5 + pos: -14.5,-0.5 parent: 2 - uid: 2452 components: @@ -140441,10 +145191,10 @@ entities: - type: Transform pos: -25.5,-21.5 parent: 2 - - uid: 2488 + - uid: 2490 components: - type: Transform - pos: -25.5,-24.5 + pos: -35.5,19.5 parent: 2 - uid: 2492 components: @@ -140479,97 +145229,67 @@ entities: - uid: 2572 components: - type: Transform - pos: -37.5,14.5 + pos: -39.5,31.5 parent: 2 - uid: 2574 components: - type: Transform pos: -3.5,-27.5 parent: 2 + - uid: 2580 + components: + - type: Transform + pos: 96.5,-47.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: -40.5,28.5 + parent: 2 - uid: 2609 components: - type: Transform pos: -4.5,-29.5 parent: 2 - - uid: 2614 + - uid: 2612 components: - type: Transform - pos: -30.5,9.5 + pos: -37.5,31.5 parent: 2 - - uid: 2615 + - uid: 2681 components: - type: Transform - pos: -23.5,7.5 + pos: 76.5,-40.5 parent: 2 - - uid: 2616 + - uid: 2728 components: - type: Transform - pos: -30.5,13.5 - parent: 2 - - uid: 2624 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 2 - - uid: 2632 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 2 - - uid: 2648 - components: - - type: Transform - pos: -31.5,-14.5 - parent: 2 - - uid: 2653 - components: - - type: Transform - pos: -28.5,5.5 - parent: 2 - - uid: 2673 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 2 - - uid: 2676 - components: - - type: Transform - pos: -35.5,-18.5 - parent: 2 - - uid: 2678 - components: - - type: Transform - pos: -38.5,-11.5 - parent: 2 - - uid: 2685 - components: - - type: Transform - pos: -38.5,-16.5 + pos: 97.5,-42.5 parent: 2 - uid: 2737 components: - type: Transform pos: 53.5,-64.5 parent: 2 - - uid: 2739 + - uid: 2742 components: - type: Transform - pos: -50.5,5.5 + pos: 82.5,-45.5 parent: 2 - uid: 2748 components: - type: Transform pos: -6.5,-23.5 parent: 2 - - uid: 2767 + - uid: 2762 components: - type: Transform - pos: -49.5,0.5 + pos: 87.5,-48.5 parent: 2 - - uid: 2780 + - uid: 2763 components: - type: Transform - pos: -28.5,-7.5 + pos: 65.5,-45.5 parent: 2 - uid: 2781 components: @@ -140581,6 +145301,11 @@ entities: - type: Transform pos: 3.5,-20.5 parent: 2 + - uid: 2800 + components: + - type: Transform + pos: -45.5,19.5 + parent: 2 - uid: 2806 components: - type: Transform @@ -140611,11 +145336,6 @@ entities: - type: Transform pos: 40.5,-51.5 parent: 2 - - uid: 2834 - components: - - type: Transform - pos: -19.5,10.5 - parent: 2 - uid: 2879 components: - type: Transform @@ -140636,6 +145356,11 @@ entities: - type: Transform pos: -9.5,-70.5 parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 75.5,-45.5 + parent: 2 - uid: 2915 components: - type: Transform @@ -140661,31 +145386,6 @@ entities: - type: Transform pos: 37.5,-47.5 parent: 2 - - uid: 2936 - components: - - type: Transform - pos: -5.5,-29.5 - parent: 2 - - uid: 2953 - components: - - type: Transform - pos: -65.5,-9.5 - parent: 2 - - uid: 3005 - components: - - type: Transform - pos: -38.5,-18.5 - parent: 2 - - uid: 3008 - components: - - type: Transform - pos: -31.5,0.5 - parent: 2 - - uid: 3013 - components: - - type: Transform - pos: -36.5,22.5 - parent: 2 - uid: 3017 components: - type: Transform @@ -140721,25 +145421,10 @@ entities: - type: Transform pos: -10.5,-46.5 parent: 2 - - uid: 3100 + - uid: 3124 components: - type: Transform - pos: 4.5,-20.5 - parent: 2 - - uid: 3114 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 2 - - uid: 3116 - components: - - type: Transform - pos: -17.5,-2.5 - parent: 2 - - uid: 3120 - components: - - type: Transform - pos: -18.5,-2.5 + pos: 94.5,-37.5 parent: 2 - uid: 3128 components: @@ -140781,41 +145466,16 @@ entities: - type: Transform pos: -10.5,-48.5 parent: 2 - - uid: 3177 - components: - - type: Transform - pos: -64.5,-7.5 - parent: 2 - - uid: 3185 - components: - - type: Transform - pos: -35.5,4.5 - parent: 2 - - uid: 3208 - components: - - type: Transform - pos: -31.5,21.5 - parent: 2 - uid: 3212 components: - type: Transform pos: -9.5,20.5 parent: 2 - - uid: 3219 - components: - - type: Transform - pos: -49.5,-11.5 - parent: 2 - uid: 3223 components: - type: Transform pos: -5.5,-33.5 parent: 2 - - uid: 3228 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 2 - uid: 3229 components: - type: Transform @@ -140826,25 +145486,30 @@ entities: - type: Transform pos: -4.5,-72.5 parent: 2 - - uid: 3294 + - uid: 3266 components: - type: Transform - pos: -9.5,-51.5 + pos: 90.5,-48.5 parent: 2 - - uid: 3300 + - uid: 3290 components: - type: Transform - pos: 31.5,-47.5 + pos: 97.5,-40.5 parent: 2 - - uid: 3304 + - uid: 3291 components: - type: Transform - pos: 41.5,-16.5 + pos: 97.5,-38.5 parent: 2 - - uid: 3314 + - uid: 3293 components: - type: Transform - pos: -31.5,-63.5 + pos: 92.5,-36.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: 97.5,-41.5 parent: 2 - uid: 3323 components: @@ -140856,21 +145521,11 @@ entities: - type: Transform pos: -31.5,-69.5 parent: 2 - - uid: 3353 - components: - - type: Transform - pos: -64.5,-18.5 - parent: 2 - uid: 3386 components: - type: Transform pos: -13.5,-57.5 parent: 2 - - uid: 3389 - components: - - type: Transform - pos: -9.5,13.5 - parent: 2 - uid: 3409 components: - type: Transform @@ -140906,16 +145561,6 @@ entities: - type: Transform pos: 48.5,22.5 parent: 2 - - uid: 3524 - components: - - type: Transform - pos: 55.5,-43.5 - parent: 2 - - uid: 3535 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 2 - uid: 3536 components: - type: Transform @@ -140926,26 +145571,6 @@ entities: - type: Transform pos: 40.5,-63.5 parent: 2 - - uid: 3552 - components: - - type: Transform - pos: -18.5,0.5 - parent: 2 - - uid: 3559 - components: - - type: Transform - pos: -35.5,3.5 - parent: 2 - - uid: 3568 - components: - - type: Transform - pos: 25.5,-37.5 - parent: 2 - - uid: 3573 - components: - - type: Transform - pos: -36.5,24.5 - parent: 2 - uid: 3582 components: - type: Transform @@ -140956,21 +145581,6 @@ entities: - type: Transform pos: -13.5,-22.5 parent: 2 - - uid: 3640 - components: - - type: Transform - pos: -34.5,1.5 - parent: 2 - - uid: 3641 - components: - - type: Transform - pos: -37.5,7.5 - parent: 2 - - uid: 3663 - components: - - type: Transform - pos: 40.5,-18.5 - parent: 2 - uid: 3666 components: - type: Transform @@ -140981,11 +145591,6 @@ entities: - type: Transform pos: 47.5,-2.5 parent: 2 - - uid: 3716 - components: - - type: Transform - pos: -68.5,-16.5 - parent: 2 - uid: 3754 components: - type: Transform @@ -140996,21 +145601,11 @@ entities: - type: Transform pos: 50.5,-47.5 parent: 2 - - uid: 3760 - components: - - type: Transform - pos: 44.5,7.5 - parent: 2 - uid: 3782 components: - type: Transform pos: 51.5,9.5 parent: 2 - - uid: 3792 - components: - - type: Transform - pos: 16.5,-61.5 - parent: 2 - uid: 3797 components: - type: Transform @@ -141031,11 +145626,6 @@ entities: - type: Transform pos: -37.5,-70.5 parent: 2 - - uid: 3838 - components: - - type: Transform - pos: -31.5,-11.5 - parent: 2 - uid: 3845 components: - type: Transform @@ -141046,11 +145636,6 @@ entities: - type: Transform pos: 4.5,-58.5 parent: 2 - - uid: 3862 - components: - - type: Transform - pos: -13.5,-71.5 - parent: 2 - uid: 3863 components: - type: Transform @@ -141061,11 +145646,6 @@ entities: - type: Transform pos: 12.5,-69.5 parent: 2 - - uid: 3929 - components: - - type: Transform - pos: -35.5,6.5 - parent: 2 - uid: 3946 components: - type: Transform @@ -141076,6 +145656,16 @@ entities: - type: Transform pos: -46.5,-21.5 parent: 2 + - uid: 3948 + components: + - type: Transform + pos: 90.5,-41.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 2 - uid: 3958 components: - type: Transform @@ -141091,46 +145681,16 @@ entities: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 4017 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 2 - uid: 4018 components: - type: Transform pos: 2.5,-37.5 parent: 2 - - uid: 4046 - components: - - type: Transform - pos: -54.5,-61.5 - parent: 2 - - uid: 4049 - components: - - type: Transform - pos: -63.5,-14.5 - parent: 2 - - uid: 4051 - components: - - type: Transform - pos: -38.5,-31.5 - parent: 2 - - uid: 4061 - components: - - type: Transform - pos: -60.5,-35.5 - parent: 2 - uid: 4112 components: - type: Transform pos: 8.5,-59.5 parent: 2 - - uid: 4164 - components: - - type: Transform - pos: -30.5,-16.5 - parent: 2 - uid: 4178 components: - type: Transform @@ -141151,21 +145711,11 @@ entities: - type: Transform pos: 43.5,-73.5 parent: 2 - - uid: 4212 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 2 - uid: 4223 components: - type: Transform pos: -5.5,-59.5 parent: 2 - - uid: 4256 - components: - - type: Transform - pos: -25.5,-39.5 - parent: 2 - uid: 4267 components: - type: Transform @@ -141191,21 +145741,11 @@ entities: - type: Transform pos: 13.5,-64.5 parent: 2 - - uid: 4352 - components: - - type: Transform - pos: -13.5,-4.5 - parent: 2 - uid: 4353 components: - type: Transform pos: 30.5,-62.5 parent: 2 - - uid: 4364 - components: - - type: Transform - pos: 50.5,-43.5 - parent: 2 - uid: 4383 components: - type: Transform @@ -141221,11 +145761,6 @@ entities: - type: Transform pos: 42.5,-33.5 parent: 2 - - uid: 4442 - components: - - type: Transform - pos: -31.5,-49.5 - parent: 2 - uid: 4447 components: - type: Transform @@ -141239,17 +145774,17 @@ entities: - uid: 4478 components: - type: Transform - pos: 57.5,-43.5 + pos: 97.5,-46.5 parent: 2 - - uid: 4507 + - uid: 4488 components: - type: Transform - pos: -17.5,3.5 + pos: 72.5,-39.5 parent: 2 - - uid: 4510 + - uid: 4491 components: - type: Transform - pos: -40.5,-16.5 + pos: 85.5,-45.5 parent: 2 - uid: 4523 components: @@ -141286,16 +145821,6 @@ entities: - type: Transform pos: 38.5,-47.5 parent: 2 - - uid: 4549 - components: - - type: Transform - pos: -36.5,-18.5 - parent: 2 - - uid: 4550 - components: - - type: Transform - pos: -37.5,-18.5 - parent: 2 - uid: 4553 components: - type: Transform @@ -141316,11 +145841,6 @@ entities: - type: Transform pos: 30.5,-47.5 parent: 2 - - uid: 4594 - components: - - type: Transform - pos: -32.5,-26.5 - parent: 2 - uid: 4599 components: - type: Transform @@ -141361,10 +145881,10 @@ entities: - type: Transform pos: 37.5,-58.5 parent: 2 - - uid: 4666 + - uid: 4662 components: - type: Transform - pos: -27.5,-8.5 + pos: -43.5,23.5 parent: 2 - uid: 4684 components: @@ -141406,26 +145926,11 @@ entities: - type: Transform pos: 51.5,18.5 parent: 2 - - uid: 4737 - components: - - type: Transform - pos: 31.5,-32.5 - parent: 2 - - uid: 4765 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 2 - uid: 4788 components: - type: Transform pos: 31.5,-36.5 parent: 2 - - uid: 4795 - components: - - type: Transform - pos: 22.5,-7.5 - parent: 2 - uid: 4846 components: - type: Transform @@ -141434,33 +145939,38 @@ entities: - uid: 4849 components: - type: Transform - pos: 58.5,-37.5 + pos: 86.5,-37.5 parent: 2 - uid: 4852 components: - type: Transform - pos: 82.5,-38.5 + pos: 93.5,-47.5 parent: 2 - uid: 4853 components: - type: Transform pos: -15.5,-68.5 parent: 2 + - uid: 4867 + components: + - type: Transform + pos: 95.5,-38.5 + parent: 2 - uid: 4875 components: - type: Transform pos: -35.5,-74.5 parent: 2 + - uid: 4877 + components: + - type: Transform + pos: -40.5,31.5 + parent: 2 - uid: 4881 components: - type: Transform pos: -37.5,-66.5 parent: 2 - - uid: 4884 - components: - - type: Transform - pos: -28.5,35.5 - parent: 2 - uid: 4888 components: - type: Transform @@ -141471,6 +145981,11 @@ entities: - type: Transform pos: 6.5,-22.5 parent: 2 + - uid: 4897 + components: + - type: Transform + pos: 57.5,-39.5 + parent: 2 - uid: 4899 components: - type: Transform @@ -141506,21 +146021,11 @@ entities: - type: Transform pos: -5.5,26.5 parent: 2 - - uid: 4945 - components: - - type: Transform - pos: -27.5,-63.5 - parent: 2 - uid: 4960 components: - type: Transform pos: -30.5,-43.5 parent: 2 - - uid: 4966 - components: - - type: Transform - pos: -35.5,-66.5 - parent: 2 - uid: 4984 components: - type: Transform @@ -141529,7 +146034,7 @@ entities: - uid: 4992 components: - type: Transform - pos: -39.5,8.5 + pos: -39.5,28.5 parent: 2 - uid: 4998 components: @@ -141541,26 +146046,11 @@ entities: - type: Transform pos: 18.5,29.5 parent: 2 - - uid: 5009 - components: - - type: Transform - pos: -37.5,-74.5 - parent: 2 - - uid: 5020 - components: - - type: Transform - pos: -18.5,-8.5 - parent: 2 - uid: 5021 components: - type: Transform pos: -8.5,26.5 parent: 2 - - uid: 5029 - components: - - type: Transform - pos: -53.5,-38.5 - parent: 2 - uid: 5032 components: - type: Transform @@ -141576,11 +146066,6 @@ entities: - type: Transform pos: -9.5,26.5 parent: 2 - - uid: 5076 - components: - - type: Transform - pos: -72.5,-13.5 - parent: 2 - uid: 5088 components: - type: Transform @@ -141606,21 +146091,11 @@ entities: - type: Transform pos: -9.5,18.5 parent: 2 - - uid: 5102 - components: - - type: Transform - pos: -9.5,16.5 - parent: 2 - uid: 5108 components: - type: Transform pos: -49.5,-59.5 parent: 2 - - uid: 5129 - components: - - type: Transform - pos: -37.5,-11.5 - parent: 2 - uid: 5136 components: - type: Transform @@ -141636,11 +146111,6 @@ entities: - type: Transform pos: 8.5,-69.5 parent: 2 - - uid: 5154 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 2 - uid: 5174 components: - type: Transform @@ -141656,26 +146126,11 @@ entities: - type: Transform pos: -31.5,-74.5 parent: 2 - - uid: 5186 - components: - - type: Transform - pos: -64.5,-9.5 - parent: 2 - uid: 5188 components: - type: Transform pos: 6.5,-24.5 parent: 2 - - uid: 5190 - components: - - type: Transform - pos: -59.5,-14.5 - parent: 2 - - uid: 5193 - components: - - type: Transform - pos: -57.5,-13.5 - parent: 2 - uid: 5199 components: - type: Transform @@ -141686,16 +146141,6 @@ entities: - type: Transform pos: 13.5,-0.5 parent: 2 - - uid: 5246 - components: - - type: Transform - pos: -67.5,-7.5 - parent: 2 - - uid: 5247 - components: - - type: Transform - pos: -10.5,-22.5 - parent: 2 - uid: 5274 components: - type: Transform @@ -141721,46 +146166,6 @@ entities: - type: Transform pos: 43.5,-77.5 parent: 2 - - uid: 5317 - components: - - type: Transform - pos: -16.5,24.5 - parent: 2 - - uid: 5324 - components: - - type: Transform - pos: 4.5,29.5 - parent: 2 - - uid: 5327 - components: - - type: Transform - pos: 4.5,28.5 - parent: 2 - - uid: 5334 - components: - - type: Transform - pos: -18.5,27.5 - parent: 2 - - uid: 5337 - components: - - type: Transform - pos: -28.5,21.5 - parent: 2 - - uid: 5338 - components: - - type: Transform - pos: -32.5,21.5 - parent: 2 - - uid: 5339 - components: - - type: Transform - pos: -29.5,21.5 - parent: 2 - - uid: 5342 - components: - - type: Transform - pos: -3.5,16.5 - parent: 2 - uid: 5343 components: - type: Transform @@ -141776,101 +146181,26 @@ entities: - type: Transform pos: 80.5,-24.5 parent: 2 - - uid: 5349 - components: - - type: Transform - pos: -8.5,25.5 - parent: 2 - - uid: 5350 - components: - - type: Transform - pos: -32.5,1.5 - parent: 2 - - uid: 5353 - components: - - type: Transform - pos: -28.5,16.5 - parent: 2 - uid: 5357 components: - type: Transform pos: -6.5,26.5 parent: 2 - - uid: 5367 - components: - - type: Transform - pos: -31.5,12.5 - parent: 2 - uid: 5381 components: - type: Transform - pos: 75.5,-38.5 - parent: 2 - - uid: 5382 - components: - - type: Transform - pos: -18.5,-4.5 - parent: 2 - - uid: 5384 - components: - - type: Transform - pos: -7.5,20.5 - parent: 2 - - uid: 5387 - components: - - type: Transform - pos: -63.5,-39.5 - parent: 2 - - uid: 5411 - components: - - type: Transform - pos: -24.5,23.5 - parent: 2 - - uid: 5412 - components: - - type: Transform - pos: -19.5,0.5 - parent: 2 - - uid: 5414 - components: - - type: Transform - pos: -72.5,-8.5 + pos: 54.5,-35.5 parent: 2 - uid: 5426 components: - type: Transform pos: 50.5,22.5 parent: 2 - - uid: 5435 - components: - - type: Transform - pos: -20.5,-8.5 - parent: 2 - - uid: 5460 - components: - - type: Transform - pos: -10.5,31.5 - parent: 2 - - uid: 5487 - components: - - type: Transform - pos: -57.5,-11.5 - parent: 2 - uid: 5490 components: - type: Transform pos: 48.5,26.5 parent: 2 - - uid: 5491 - components: - - type: Transform - pos: -53.5,-10.5 - parent: 2 - - uid: 5492 - components: - - type: Transform - pos: -51.5,-10.5 - parent: 2 - uid: 5495 components: - type: Transform @@ -141881,11 +146211,6 @@ entities: - type: Transform pos: 60.5,-49.5 parent: 2 - - uid: 5510 - components: - - type: Transform - pos: 25.5,-41.5 - parent: 2 - uid: 5515 components: - type: Transform @@ -141896,21 +146221,6 @@ entities: - type: Transform pos: -29.5,-49.5 parent: 2 - - uid: 5521 - components: - - type: Transform - pos: -60.5,-14.5 - parent: 2 - - uid: 5527 - components: - - type: Transform - pos: -35.5,2.5 - parent: 2 - - uid: 5529 - components: - - type: Transform - pos: 25.5,-46.5 - parent: 2 - uid: 5532 components: - type: Transform @@ -141921,16 +146231,6 @@ entities: - type: Transform pos: -1.5,-54.5 parent: 2 - - uid: 5540 - components: - - type: Transform - pos: -56.5,-10.5 - parent: 2 - - uid: 5544 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 2 - uid: 5545 components: - type: Transform @@ -141941,26 +146241,16 @@ entities: - type: Transform pos: 27.5,-36.5 parent: 2 - - uid: 5556 + - uid: 5554 components: - type: Transform - pos: -47.5,-13.5 - parent: 2 - - uid: 5558 - components: - - type: Transform - pos: -28.5,-8.5 + pos: 58.5,-39.5 parent: 2 - uid: 5560 components: - type: Transform pos: 30.5,-32.5 parent: 2 - - uid: 5562 - components: - - type: Transform - pos: -47.5,-14.5 - parent: 2 - uid: 5573 components: - type: Transform @@ -141971,16 +146261,16 @@ entities: - type: Transform pos: -40.5,-58.5 parent: 2 - - uid: 5579 - components: - - type: Transform - pos: -31.5,-46.5 - parent: 2 - uid: 5581 components: - type: Transform pos: 59.5,-57.5 parent: 2 + - uid: 5593 + components: + - type: Transform + pos: 84.5,-44.5 + parent: 2 - uid: 5614 components: - type: Transform @@ -141996,6 +146286,16 @@ entities: - type: Transform pos: 22.5,20.5 parent: 2 + - uid: 5642 + components: + - type: Transform + pos: 92.5,-37.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: 95.5,-48.5 + parent: 2 - uid: 5652 components: - type: Transform @@ -142006,10 +146306,10 @@ entities: - type: Transform pos: -13.5,38.5 parent: 2 - - uid: 5669 + - uid: 5674 components: - type: Transform - pos: -17.5,13.5 + pos: 94.5,-47.5 parent: 2 - uid: 5683 components: @@ -142026,26 +146326,16 @@ entities: - type: Transform pos: 47.5,-71.5 parent: 2 - - uid: 5724 + - uid: 5714 components: - type: Transform - pos: -22.5,-13.5 - parent: 2 - - uid: 5730 - components: - - type: Transform - pos: -32.5,-12.5 + pos: 98.5,-41.5 parent: 2 - uid: 5731 components: - type: Transform pos: 63.5,-63.5 parent: 2 - - uid: 5732 - components: - - type: Transform - pos: 43.5,-19.5 - parent: 2 - uid: 5741 components: - type: Transform @@ -142061,11 +146351,6 @@ entities: - type: Transform pos: 13.5,-63.5 parent: 2 - - uid: 5771 - components: - - type: Transform - pos: 13.5,-61.5 - parent: 2 - uid: 5775 components: - type: Transform @@ -142076,11 +146361,6 @@ entities: - type: Transform pos: 12.5,-66.5 parent: 2 - - uid: 5811 - components: - - type: Transform - pos: 24.5,20.5 - parent: 2 - uid: 5814 components: - type: Transform @@ -142091,21 +146371,31 @@ entities: - type: Transform pos: 52.5,-32.5 parent: 2 + - uid: 5820 + components: + - type: Transform + pos: 93.5,-36.5 + parent: 2 + - uid: 5822 + components: + - type: Transform + pos: 94.5,-36.5 + parent: 2 - uid: 5825 components: - type: Transform pos: 51.5,12.5 parent: 2 + - uid: 5827 + components: + - type: Transform + pos: 96.5,-46.5 + parent: 2 - uid: 5838 components: - type: Transform pos: 42.5,17.5 parent: 2 - - uid: 5839 - components: - - type: Transform - pos: 32.5,-47.5 - parent: 2 - uid: 5843 components: - type: Transform @@ -142116,36 +146406,11 @@ entities: - type: Transform pos: 13.5,14.5 parent: 2 - - uid: 5861 - components: - - type: Transform - pos: -28.5,18.5 - parent: 2 - uid: 5900 components: - type: Transform pos: 53.5,-34.5 parent: 2 - - uid: 5927 - components: - - type: Transform - pos: -70.5,-9.5 - parent: 2 - - uid: 5930 - components: - - type: Transform - pos: -62.5,-7.5 - parent: 2 - - uid: 5939 - components: - - type: Transform - pos: 41.5,-13.5 - parent: 2 - - uid: 5942 - components: - - type: Transform - pos: 52.5,-10.5 - parent: 2 - uid: 6035 components: - type: Transform @@ -142156,46 +146421,26 @@ entities: - type: Transform pos: 41.5,-15.5 parent: 2 - - uid: 6125 + - uid: 6099 components: - type: Transform - pos: -61.5,-17.5 + pos: 89.5,-36.5 parent: 2 - uid: 6136 components: - type: Transform pos: 46.5,13.5 parent: 2 - - uid: 6165 - components: - - type: Transform - pos: -31.5,-67.5 - parent: 2 - uid: 6188 components: - type: Transform pos: -31.5,-83.5 parent: 2 - - uid: 6190 - components: - - type: Transform - pos: 29.5,-47.5 - parent: 2 - - uid: 6196 - components: - - type: Transform - pos: -44.5,-1.5 - parent: 2 - uid: 6217 components: - type: Transform pos: 40.5,-16.5 parent: 2 - - uid: 6224 - components: - - type: Transform - pos: -31.5,-68.5 - parent: 2 - uid: 6233 components: - type: Transform @@ -142221,21 +146466,11 @@ entities: - type: Transform pos: 15.5,-61.5 parent: 2 - - uid: 6380 - components: - - type: Transform - pos: 43.5,0.5 - parent: 2 - uid: 6384 components: - type: Transform pos: -1.5,-85.5 parent: 2 - - uid: 6406 - components: - - type: Transform - pos: -10.5,-65.5 - parent: 2 - uid: 6418 components: - type: Transform @@ -142251,36 +146486,11 @@ entities: - type: Transform pos: -10.5,-87.5 parent: 2 - - uid: 6482 - components: - - type: Transform - pos: -25.5,-43.5 - parent: 2 - - uid: 6488 - components: - - type: Transform - pos: -14.5,-57.5 - parent: 2 - - uid: 6524 - components: - - type: Transform - pos: -70.5,-11.5 - parent: 2 - uid: 6544 components: - type: Transform pos: 15.5,-64.5 parent: 2 - - uid: 6555 - components: - - type: Transform - pos: 75.5,-47.5 - parent: 2 - - uid: 6588 - components: - - type: Transform - pos: -57.5,-39.5 - parent: 2 - uid: 6617 components: - type: Transform @@ -142311,15 +146521,10 @@ entities: - type: Transform pos: 40.5,-17.5 parent: 2 - - uid: 6679 + - uid: 6732 components: - type: Transform - pos: -48.5,8.5 - parent: 2 - - uid: 6712 - components: - - type: Transform - pos: -38.5,-28.5 + pos: 82.5,-39.5 parent: 2 - uid: 6733 components: @@ -142341,11 +146546,6 @@ entities: - type: Transform pos: 60.5,-48.5 parent: 2 - - uid: 6803 - components: - - type: Transform - pos: 39.5,-32.5 - parent: 2 - uid: 6823 components: - type: Transform @@ -142356,11 +146556,6 @@ entities: - type: Transform pos: 54.5,-51.5 parent: 2 - - uid: 6875 - components: - - type: Transform - pos: -66.5,-11.5 - parent: 2 - uid: 6880 components: - type: Transform @@ -142431,26 +146626,21 @@ entities: - type: Transform pos: 11.5,-12.5 parent: 2 - - uid: 7076 - components: - - type: Transform - pos: -59.5,-10.5 - parent: 2 - uid: 7082 components: - type: Transform pos: 49.5,-10.5 parent: 2 + - uid: 7086 + components: + - type: Transform + pos: 85.5,-34.5 + parent: 2 - uid: 7105 components: - type: Transform pos: 8.5,-5.5 parent: 2 - - uid: 7165 - components: - - type: Transform - pos: -27.5,-55.5 - parent: 2 - uid: 7169 components: - type: Transform @@ -142476,21 +146666,16 @@ entities: - type: Transform pos: -10.5,26.5 parent: 2 - - uid: 7240 + - uid: 7300 components: - type: Transform - pos: -25.5,-33.5 + pos: 98.5,-45.5 parent: 2 - uid: 7312 components: - type: Transform pos: 40.5,-65.5 parent: 2 - - uid: 7314 - components: - - type: Transform - pos: 42.5,5.5 - parent: 2 - uid: 7337 components: - type: Transform @@ -142511,81 +146696,51 @@ entities: - type: Transform pos: 28.5,-49.5 parent: 2 - - uid: 7419 - components: - - type: Transform - pos: 26.5,-50.5 - parent: 2 - uid: 7422 components: - type: Transform pos: 27.5,-52.5 parent: 2 - - uid: 7423 - components: - - type: Transform - pos: 28.5,-52.5 - parent: 2 - uid: 7450 components: - type: Transform pos: 50.5,-62.5 parent: 2 - - uid: 7453 - components: - - type: Transform - pos: -19.5,7.5 - parent: 2 - - uid: 7481 - components: - - type: Transform - pos: -20.5,1.5 - parent: 2 - - uid: 7516 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 2 - uid: 7520 components: - type: Transform pos: -10.5,-57.5 parent: 2 - - uid: 7671 + - uid: 7651 components: - type: Transform - pos: 18.5,-16.5 - parent: 2 - - uid: 7693 - components: - - type: Transform - pos: -24.5,-14.5 - parent: 2 - - uid: 7698 - components: - - type: Transform - pos: -35.5,1.5 - parent: 2 - - uid: 7702 - components: - - type: Transform - pos: -31.5,-7.5 - parent: 2 - - uid: 7706 - components: - - type: Transform - pos: -23.5,-8.5 + pos: 50.5,-39.5 parent: 2 - uid: 7710 components: - type: Transform pos: 7.5,3.5 parent: 2 + - uid: 7749 + components: + - type: Transform + pos: 97.5,-34.5 + parent: 2 - uid: 7761 components: - type: Transform pos: 11.5,-10.5 parent: 2 + - uid: 7786 + components: + - type: Transform + pos: 93.5,-34.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + pos: 89.5,-35.5 + parent: 2 - uid: 7841 components: - type: Transform @@ -142596,21 +146751,6 @@ entities: - type: Transform pos: 37.5,-59.5 parent: 2 - - uid: 7998 - components: - - type: Transform - pos: -45.5,-8.5 - parent: 2 - - uid: 8000 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 2 - - uid: 8001 - components: - - type: Transform - pos: -48.5,-0.5 - parent: 2 - uid: 8017 components: - type: Transform @@ -142676,31 +146816,6 @@ entities: - type: Transform pos: 33.5,20.5 parent: 2 - - uid: 8455 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 2 - - uid: 8467 - components: - - type: Transform - pos: -23.5,18.5 - parent: 2 - - uid: 8473 - components: - - type: Transform - pos: -20.5,7.5 - parent: 2 - - uid: 8476 - components: - - type: Transform - pos: -18.5,-12.5 - parent: 2 - - uid: 8491 - components: - - type: Transform - pos: -32.5,5.5 - parent: 2 - uid: 8507 components: - type: Transform @@ -142716,11 +146831,6 @@ entities: - type: Transform pos: -0.5,14.5 parent: 2 - - uid: 8571 - components: - - type: Transform - pos: 44.5,26.5 - parent: 2 - uid: 8594 components: - type: Transform @@ -142731,11 +146841,6 @@ entities: - type: Transform pos: 57.5,-23.5 parent: 2 - - uid: 8715 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 2 - uid: 8718 components: - type: Transform @@ -142761,21 +146866,6 @@ entities: - type: Transform pos: 53.5,-15.5 parent: 2 - - uid: 8768 - components: - - type: Transform - pos: 47.5,0.5 - parent: 2 - - uid: 8771 - components: - - type: Transform - pos: 47.5,1.5 - parent: 2 - - uid: 8774 - components: - - type: Transform - pos: 47.5,4.5 - parent: 2 - uid: 8779 components: - type: Transform @@ -142786,11 +146876,6 @@ entities: - type: Transform pos: 43.5,1.5 parent: 2 - - uid: 8784 - components: - - type: Transform - pos: -51.5,2.5 - parent: 2 - uid: 8796 components: - type: Transform @@ -142806,11 +146891,6 @@ entities: - type: Transform pos: 43.5,3.5 parent: 2 - - uid: 8864 - components: - - type: Transform - pos: -35.5,19.5 - parent: 2 - uid: 8893 components: - type: Transform @@ -142826,11 +146906,6 @@ entities: - type: Transform pos: 43.5,-0.5 parent: 2 - - uid: 8969 - components: - - type: Transform - pos: -27.5,22.5 - parent: 2 - uid: 8998 components: - type: Transform @@ -142841,21 +146916,6 @@ entities: - type: Transform pos: -28.5,24.5 parent: 2 - - uid: 9018 - components: - - type: Transform - pos: -32.5,25.5 - parent: 2 - - uid: 9109 - components: - - type: Transform - pos: 79.5,-47.5 - parent: 2 - - uid: 9112 - components: - - type: Transform - pos: -32.5,24.5 - parent: 2 - uid: 9260 components: - type: Transform @@ -142866,11 +146926,6 @@ entities: - type: Transform pos: 6.5,-72.5 parent: 2 - - uid: 9276 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 2 - uid: 9298 components: - type: Transform @@ -142886,35 +146941,20 @@ entities: - type: Transform pos: -45.5,-58.5 parent: 2 - - uid: 9389 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 2 - - uid: 9401 - components: - - type: Transform - pos: -19.5,-14.5 - parent: 2 - uid: 9423 components: - type: Transform pos: 11.5,3.5 parent: 2 - - uid: 9495 - components: - - type: Transform - pos: 15.5,4.5 - parent: 2 - uid: 9566 components: - type: Transform pos: 49.5,-82.5 parent: 2 - - uid: 9586 + - uid: 9597 components: - type: Transform - pos: 57.5,-38.5 + pos: 89.5,-55.5 parent: 2 - uid: 9602 components: @@ -142941,36 +146981,51 @@ entities: - type: Transform pos: -13.5,-0.5 parent: 2 - - uid: 9839 + - uid: 9691 components: - type: Transform - pos: -12.5,23.5 + pos: -30.5,-12.5 parent: 2 - - uid: 9850 + - uid: 9715 components: - type: Transform - pos: -13.5,-1.5 + pos: -27.5,-12.5 + parent: 2 + - uid: 9813 + components: + - type: Transform + pos: 89.5,-53.5 + parent: 2 + - uid: 9862 + components: + - type: Transform + pos: -33.5,18.5 parent: 2 - uid: 9866 components: - type: Transform pos: -12.5,-57.5 parent: 2 - - uid: 9895 + - uid: 9889 components: - type: Transform - pos: -13.5,-3.5 + pos: -42.5,19.5 + parent: 2 + - uid: 9938 + components: + - type: Transform + pos: -41.5,19.5 + parent: 2 + - uid: 9940 + components: + - type: Transform + pos: -37.5,18.5 parent: 2 - uid: 9946 components: - type: Transform pos: -27.5,-50.5 parent: 2 - - uid: 10003 - components: - - type: Transform - pos: 57.5,-40.5 - parent: 2 - uid: 10007 components: - type: Transform @@ -142981,6 +147036,16 @@ entities: - type: Transform pos: -31.5,-18.5 parent: 2 + - uid: 10020 + components: + - type: Transform + pos: 92.5,-43.5 + parent: 2 + - uid: 10065 + components: + - type: Transform + pos: -35.5,18.5 + parent: 2 - uid: 10081 components: - type: Transform @@ -142989,7 +147054,7 @@ entities: - uid: 10108 components: - type: Transform - pos: -40.5,-10.5 + pos: -36.5,19.5 parent: 2 - uid: 10113 components: @@ -143001,40 +147066,60 @@ entities: - type: Transform pos: 11.5,-3.5 parent: 2 + - uid: 10120 + components: + - type: Transform + pos: -36.5,18.5 + parent: 2 - uid: 10130 components: - type: Transform - pos: -31.5,-1.5 + pos: -37.5,19.5 parent: 2 - - uid: 10145 + - uid: 10144 components: - type: Transform - pos: -50.5,2.5 + pos: -39.5,18.5 parent: 2 - - uid: 10148 + - uid: 10195 components: - type: Transform - pos: -32.5,-33.5 + pos: -41.5,18.5 parent: 2 - - uid: 10182 + - uid: 10198 components: - type: Transform - pos: -48.5,6.5 + pos: -42.5,17.5 + parent: 2 + - uid: 10199 + components: + - type: Transform + pos: -42.5,16.5 parent: 2 - uid: 10200 components: - type: Transform pos: 3.5,-5.5 parent: 2 + - uid: 10219 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 - uid: 10231 components: - type: Transform pos: -26.5,-33.5 parent: 2 - - uid: 10384 + - uid: 10239 components: - type: Transform - pos: -58.5,-61.5 + pos: -42.5,10.5 + parent: 2 + - uid: 10272 + components: + - type: Transform + pos: -28.5,17.5 parent: 2 - uid: 10423 components: @@ -143046,35 +147131,70 @@ entities: - type: Transform pos: 27.5,-5.5 parent: 2 + - uid: 10429 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 - uid: 10456 components: - type: Transform pos: 27.5,-11.5 parent: 2 - - uid: 10470 + - uid: 10501 components: - type: Transform - pos: -27.5,-5.5 + pos: 89.5,-52.5 parent: 2 - - uid: 10529 + - uid: 10528 components: - type: Transform - pos: -18.5,-14.5 + pos: -34.5,6.5 parent: 2 - uid: 10534 components: - type: Transform pos: -14.5,-16.5 parent: 2 + - uid: 10537 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - uid: 10540 + components: + - type: Transform + pos: -35.5,6.5 + parent: 2 + - uid: 10552 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 - uid: 10555 components: - type: Transform pos: 11.5,1.5 parent: 2 - - uid: 10635 + - uid: 10566 components: - type: Transform - pos: -33.5,-21.5 + pos: -37.5,6.5 + parent: 2 + - uid: 10626 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 + - uid: 10628 + components: + - type: Transform + pos: -41.5,6.5 + parent: 2 + - uid: 10676 + components: + - type: Transform + pos: -34.5,1.5 parent: 2 - uid: 10713 components: @@ -143101,20 +147221,40 @@ entities: - type: Transform pos: -28.5,26.5 parent: 2 + - uid: 10795 + components: + - type: Transform + pos: -43.5,19.5 + parent: 2 + - uid: 10817 + components: + - type: Transform + pos: 97.5,-44.5 + parent: 2 - uid: 10870 components: - type: Transform pos: 64.5,-83.5 parent: 2 + - uid: 10896 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 - uid: 10985 components: - type: Transform - pos: 85.5,-39.5 + pos: 54.5,-36.5 parent: 2 - - uid: 11035 + - uid: 10993 components: - type: Transform - pos: -31.5,-39.5 + pos: -42.5,0.5 + parent: 2 + - uid: 11004 + components: + - type: Transform + pos: -41.5,2.5 parent: 2 - uid: 11043 components: @@ -143126,20 +147266,25 @@ entities: - type: Transform pos: -46.5,-25.5 parent: 2 - - uid: 11146 - components: - - type: Transform - pos: -45.5,8.5 - parent: 2 - uid: 11169 components: - type: Transform pos: -9.5,-86.5 parent: 2 - - uid: 11216 + - uid: 11213 components: - type: Transform - pos: 26.5,30.5 + pos: -40.5,-11.5 + parent: 2 + - uid: 11214 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 11241 + components: + - type: Transform + pos: 94.5,-48.5 parent: 2 - uid: 11264 components: @@ -143156,26 +147301,21 @@ entities: - type: Transform pos: -7.5,-27.5 parent: 2 + - uid: 11299 + components: + - type: Transform + pos: 86.5,-34.5 + parent: 2 - uid: 11311 components: - type: Transform pos: -25.5,-38.5 parent: 2 - - uid: 11323 - components: - - type: Transform - pos: -18.5,26.5 - parent: 2 - uid: 11324 components: - type: Transform pos: -18.5,25.5 parent: 2 - - uid: 11330 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 2 - uid: 11348 components: - type: Transform @@ -143191,26 +147331,26 @@ entities: - type: Transform pos: 63.5,-67.5 parent: 2 - - uid: 11578 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 2 - uid: 11579 components: - type: Transform pos: 15.5,-20.5 parent: 2 + - uid: 11822 + components: + - type: Transform + pos: 98.5,-40.5 + parent: 2 + - uid: 11874 + components: + - type: Transform + pos: 93.5,-48.5 + parent: 2 - uid: 11908 components: - type: Transform pos: -32.5,-29.5 parent: 2 - - uid: 11976 - components: - - type: Transform - pos: -45.5,-1.5 - parent: 2 - uid: 12016 components: - type: Transform @@ -143221,21 +147361,16 @@ entities: - type: Transform pos: 45.5,14.5 parent: 2 - - uid: 12133 - components: - - type: Transform - pos: -39.5,-39.5 - parent: 2 - - uid: 12217 - components: - - type: Transform - pos: -36.5,-31.5 - parent: 2 - uid: 12226 components: - type: Transform pos: -32.5,-21.5 parent: 2 + - uid: 12227 + components: + - type: Transform + pos: 70.5,-41.5 + parent: 2 - uid: 12243 components: - type: Transform @@ -143246,21 +147381,11 @@ entities: - type: Transform pos: -14.5,-22.5 parent: 2 - - uid: 12337 - components: - - type: Transform - pos: -8.5,20.5 - parent: 2 - uid: 12359 components: - type: Transform pos: 51.5,-30.5 parent: 2 - - uid: 12374 - components: - - type: Transform - pos: -17.5,16.5 - parent: 2 - uid: 12448 components: - type: Transform @@ -143271,26 +147396,6 @@ entities: - type: Transform pos: -54.5,-20.5 parent: 2 - - uid: 12490 - components: - - type: Transform - pos: 12.5,9.5 - parent: 2 - - uid: 12491 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 12495 - components: - - type: Transform - pos: 13.5,5.5 - parent: 2 - - uid: 12499 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 2 - uid: 12501 components: - type: Transform @@ -143321,20 +147426,15 @@ entities: - type: Transform pos: -53.5,-35.5 parent: 2 - - uid: 12549 - components: - - type: Transform - pos: -52.5,-35.5 - parent: 2 - uid: 12559 components: - type: Transform pos: -51.5,-20.5 parent: 2 - - uid: 12567 + - uid: 12565 components: - type: Transform - pos: -47.5,-20.5 + pos: 96.5,-37.5 parent: 2 - uid: 12572 components: @@ -143344,17 +147444,42 @@ entities: - uid: 12611 components: - type: Transform - pos: -54.5,-24.5 + pos: 49.5,-3.5 + parent: 2 + - uid: 12615 + components: + - type: Transform + pos: -44.5,11.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + pos: 51.5,8.5 parent: 2 - uid: 12620 components: - type: Transform pos: -51.5,-24.5 parent: 2 - - uid: 12626 + - uid: 12621 components: - type: Transform - pos: -50.5,-32.5 + pos: 45.5,18.5 + parent: 2 + - uid: 12622 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 12628 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 12629 + components: + - type: Transform + pos: 43.5,22.5 parent: 2 - uid: 12630 components: @@ -143364,22 +147489,82 @@ entities: - uid: 12633 components: - type: Transform - pos: -50.5,-25.5 + pos: 44.5,24.5 parent: 2 - - uid: 12670 + - uid: 12637 components: - type: Transform - pos: -17.5,4.5 + pos: 44.5,25.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + pos: -41.5,9.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 + - uid: 12653 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 + - uid: 12655 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 12656 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 12690 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 12691 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 12693 + components: + - type: Transform + pos: 49.5,22.5 parent: 2 - uid: 12696 components: - type: Transform pos: -53.5,-32.5 parent: 2 - - uid: 12701 + - uid: 12700 components: - type: Transform - pos: -23.5,2.5 + pos: 48.5,6.5 + parent: 2 + - uid: 12722 + components: + - type: Transform + pos: 48.5,7.5 + parent: 2 + - uid: 12724 + components: + - type: Transform + pos: 44.5,0.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + pos: 33.5,23.5 parent: 2 - uid: 12730 components: @@ -143391,11 +147576,41 @@ entities: - type: Transform pos: 8.5,-86.5 parent: 2 + - uid: 12734 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 + - uid: 12735 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 - uid: 12736 components: - type: Transform pos: 7.5,-97.5 parent: 2 + - uid: 12751 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 12771 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 12772 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 12773 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 2 - uid: 12774 components: - type: Transform @@ -143406,11 +147621,26 @@ entities: - type: Transform pos: -5.5,-64.5 parent: 2 + - uid: 12780 + components: + - type: Transform + pos: 53.5,-14.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + pos: 42.5,-26.5 + parent: 2 - uid: 12787 components: - type: Transform pos: 8.5,-64.5 parent: 2 + - uid: 12790 + components: + - type: Transform + pos: 37.5,-23.5 + parent: 2 - uid: 12791 components: - type: Transform @@ -143421,10 +147651,40 @@ entities: - type: Transform pos: 6.5,-68.5 parent: 2 - - uid: 12804 + - uid: 12799 components: - type: Transform - pos: -34.5,7.5 + pos: 40.5,-19.5 + parent: 2 + - uid: 12807 + components: + - type: Transform + pos: 40.5,-27.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - uid: 12810 + components: + - type: Transform + pos: 49.5,-7.5 + parent: 2 + - uid: 12811 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + pos: 25.5,-40.5 parent: 2 - uid: 12826 components: @@ -143436,45 +147696,250 @@ entities: - type: Transform pos: 14.5,-90.5 parent: 2 + - uid: 12846 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + pos: 29.5,-51.5 + parent: 2 - uid: 12852 components: - type: Transform pos: -5.5,-54.5 parent: 2 + - uid: 12853 + components: + - type: Transform + pos: 29.5,-50.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 - uid: 12873 components: - type: Transform pos: -57.5,-27.5 parent: 2 - - uid: 12881 + - uid: 12883 components: - type: Transform - pos: -50.5,4.5 + pos: -29.5,28.5 + parent: 2 + - uid: 12893 + components: + - type: Transform + pos: -30.5,28.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 2 + - uid: 12921 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + pos: -34.5,29.5 + parent: 2 + - uid: 12964 + components: + - type: Transform + pos: -34.5,28.5 + parent: 2 + - uid: 12972 + components: + - type: Transform + pos: -35.5,28.5 + parent: 2 + - uid: 12976 + components: + - type: Transform + pos: -36.5,28.5 parent: 2 - uid: 12981 components: - type: Transform - pos: -21.5,15.5 + pos: -37.5,28.5 + parent: 2 + - uid: 12982 + components: + - type: Transform + pos: 33.5,-47.5 parent: 2 - uid: 12990 components: - type: Transform - pos: -42.5,-2.5 + pos: -41.5,27.5 + parent: 2 + - uid: 12992 + components: + - type: Transform + pos: -41.5,24.5 + parent: 2 + - uid: 13004 + components: + - type: Transform + pos: -41.5,25.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 + - uid: 13019 + components: + - type: Transform + pos: -43.5,25.5 parent: 2 - uid: 13025 components: - type: Transform pos: -46.5,-23.5 parent: 2 - - uid: 13102 + - uid: 13027 components: - type: Transform - pos: -22.5,18.5 + pos: 25.5,-32.5 + parent: 2 + - uid: 13057 + components: + - type: Transform + pos: 42.5,-32.5 + parent: 2 + - uid: 13090 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 2 + - uid: 13091 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 13120 + components: + - type: Transform + pos: 40.5,-30.5 + parent: 2 + - uid: 13124 + components: + - type: Transform + pos: 39.5,-30.5 + parent: 2 + - uid: 13137 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 13141 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + pos: -55.5,3.5 + parent: 2 + - uid: 13153 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 13167 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 13194 + components: + - type: Transform + pos: -54.5,3.5 parent: 2 - uid: 13204 components: - type: Transform - pos: 17.5,-16.5 + pos: -40.5,-18.5 + parent: 2 + - uid: 13206 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 13209 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 + - uid: 13211 + components: + - type: Transform + pos: -46.5,-19.5 + parent: 2 + - uid: 13219 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 13221 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 13223 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 13224 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 13225 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 13229 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 + - uid: 13234 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 2 + - uid: 13250 + components: + - type: Transform + pos: -21.5,32.5 + parent: 2 + - uid: 13257 + components: + - type: Transform + pos: -21.5,28.5 + parent: 2 + - uid: 13281 + components: + - type: Transform + pos: -28.5,25.5 parent: 2 - uid: 13283 components: @@ -143486,30 +147951,320 @@ entities: - type: Transform pos: -5.5,-66.5 parent: 2 + - uid: 13287 + components: + - type: Transform + pos: -28.5,28.5 + parent: 2 + - uid: 13289 + components: + - type: Transform + pos: -28.5,27.5 + parent: 2 - uid: 13339 components: - type: Transform - pos: -20.5,15.5 + pos: -11.5,36.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + pos: -48.5,3.5 + parent: 2 + - uid: 13360 + components: + - type: Transform + pos: -19.5,40.5 + parent: 2 + - uid: 13364 + components: + - type: Transform + pos: -20.5,40.5 + parent: 2 + - uid: 13373 + components: + - type: Transform + pos: -16.5,40.5 parent: 2 - uid: 13386 components: - type: Transform pos: -6.5,-80.5 parent: 2 + - uid: 13392 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 13395 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 13397 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 13404 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 13407 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 13408 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 13469 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 13540 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 13616 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 13660 + components: + - type: Transform + pos: -47.5,7.5 + parent: 2 + - uid: 13663 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 13667 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 + - uid: 13668 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 13669 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 - uid: 13670 components: - type: Transform pos: 26.5,-60.5 parent: 2 + - uid: 13671 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 13674 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 + - uid: 13700 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 13701 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 13702 + components: + - type: Transform + pos: -53.5,2.5 + parent: 2 + - uid: 13704 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 13712 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 13722 + components: + - type: Transform + pos: -0.5,27.5 + parent: 2 + - uid: 13724 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 13725 + components: + - type: Transform + pos: 1.5,27.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 13738 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 2 + - uid: 13749 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - uid: 13754 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 13764 + components: + - type: Transform + pos: -44.5,-12.5 + parent: 2 + - uid: 13765 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 13773 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 13779 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - uid: 13783 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 13785 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 2 + - uid: 13787 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 13795 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 13799 + components: + - type: Transform + pos: -43.5,-10.5 + parent: 2 + - uid: 13813 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 - uid: 13859 components: - type: Transform pos: 18.5,-17.5 parent: 2 + - uid: 13866 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 13880 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 13882 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 13883 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 - uid: 13886 components: - type: Transform - pos: -50.5,-42.5 + pos: 24.5,24.5 + parent: 2 + - uid: 13887 + components: + - type: Transform + pos: 28.5,30.5 parent: 2 - uid: 13888 components: @@ -143521,15 +148276,80 @@ entities: - type: Transform pos: -51.5,-44.5 parent: 2 + - uid: 13890 + components: + - type: Transform + pos: -47.5,17.5 + parent: 2 + - uid: 13892 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 13897 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 13900 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 13901 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 13903 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 13904 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 13906 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 13907 + components: + - type: Transform + pos: -46.5,17.5 + parent: 2 + - uid: 13908 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 - uid: 13911 components: - type: Transform - pos: -46.5,-47.5 + pos: 9.5,-13.5 + parent: 2 + - uid: 13912 + components: + - type: Transform + pos: 11.5,-13.5 parent: 2 - uid: 13913 components: - type: Transform - pos: -44.5,-47.5 + pos: 12.5,-15.5 + parent: 2 + - uid: 13914 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 13917 + components: + - type: Transform + pos: 13.5,-20.5 parent: 2 - uid: 13920 components: @@ -143541,35 +148361,255 @@ entities: - type: Transform pos: -43.5,-46.5 parent: 2 + - uid: 13975 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 - uid: 14018 components: - type: Transform - pos: -28.5,-11.5 + pos: 16.5,-20.5 parent: 2 - uid: 14057 components: - type: Transform - pos: -28.5,-14.5 + pos: -44.5,9.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + pos: -44.5,7.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 14098 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 14100 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 14151 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 14164 + components: + - type: Transform + pos: -44.5,19.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 14179 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 14181 + components: + - type: Transform + pos: 5.5,-7.5 parent: 2 - uid: 14211 components: - type: Transform pos: -22.5,23.5 parent: 2 + - uid: 14247 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 14260 + components: + - type: Transform + pos: -44.5,13.5 + parent: 2 + - uid: 14263 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 - uid: 14302 components: - type: Transform - pos: -28.5,-52.5 + pos: -14.5,-10.5 + parent: 2 + - uid: 14309 + components: + - type: Transform + pos: -14.5,-17.5 parent: 2 - uid: 14335 components: - type: Transform pos: -2.5,15.5 parent: 2 - - uid: 14460 + - uid: 14363 components: - type: Transform - pos: -22.5,-11.5 + pos: -10.5,-47.5 + parent: 2 + - uid: 14364 + components: + - type: Transform + pos: -13.5,-53.5 + parent: 2 + - uid: 14365 + components: + - type: Transform + pos: -9.5,-49.5 + parent: 2 + - uid: 14367 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 14368 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 14376 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - uid: 14379 + components: + - type: Transform + pos: -9.5,-53.5 + parent: 2 + - uid: 14380 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 + - uid: 14382 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 14383 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 14399 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 14413 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 + - uid: 14430 + components: + - type: Transform + pos: -56.5,9.5 + parent: 2 + - uid: 14438 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 14439 + components: + - type: Transform + pos: -56.5,14.5 + parent: 2 + - uid: 14444 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 14447 + components: + - type: Transform + pos: -56.5,7.5 + parent: 2 + - uid: 14448 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 2 + - uid: 14449 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 14452 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - uid: 14455 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 14456 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 14477 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 2 + - uid: 14479 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 + - uid: 14485 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 14486 + components: + - type: Transform + pos: 23.5,-27.5 parent: 2 - uid: 14492 components: @@ -143581,45 +148621,160 @@ entities: - type: Transform pos: 6.5,-69.5 parent: 2 + - uid: 14496 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 2 - uid: 14499 components: - type: Transform pos: -5.5,-79.5 parent: 2 + - uid: 14500 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 2 + - uid: 14509 + components: + - type: Transform + pos: -4.5,-69.5 + parent: 2 + - uid: 14510 + components: + - type: Transform + pos: -13.5,-75.5 + parent: 2 - uid: 14515 components: - type: Transform pos: 46.5,-42.5 parent: 2 + - uid: 14517 + components: + - type: Transform + pos: -13.5,-73.5 + parent: 2 + - uid: 14543 + components: + - type: Transform + pos: -3.5,-66.5 + parent: 2 - uid: 14546 components: - type: Transform pos: -10.5,-52.5 parent: 2 - - uid: 14801 + - uid: 14549 components: - type: Transform - pos: -19.5,1.5 + pos: -37.5,24.5 parent: 2 - - uid: 14810 + - uid: 14553 components: - type: Transform - pos: -19.5,9.5 + pos: -5.5,-60.5 parent: 2 - - uid: 14826 + - uid: 14554 components: - type: Transform - pos: -17.5,2.5 + pos: -36.5,25.5 parent: 2 - - uid: 14827 + - uid: 14556 components: - type: Transform - pos: -31.5,9.5 + pos: -36.5,27.5 + parent: 2 + - uid: 14557 + components: + - type: Transform + pos: -36.5,26.5 + parent: 2 + - uid: 14558 + components: + - type: Transform + pos: -40.5,24.5 + parent: 2 + - uid: 14560 + components: + - type: Transform + pos: -42.5,25.5 + parent: 2 + - uid: 14561 + components: + - type: Transform + pos: -36.5,30.5 + parent: 2 + - uid: 14572 + components: + - type: Transform + pos: -41.5,28.5 + parent: 2 + - uid: 14642 + components: + - type: Transform + pos: -30.5,29.5 + parent: 2 + - uid: 14715 + components: + - type: Transform + pos: -5.5,-61.5 + parent: 2 + - uid: 14744 + components: + - type: Transform + pos: -9.5,-66.5 + parent: 2 + - uid: 14792 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 2 + - uid: 14816 + components: + - type: Transform + pos: -13.5,-55.5 + parent: 2 + - uid: 14825 + components: + - type: Transform + pos: -13.5,-69.5 + parent: 2 + - uid: 14837 + components: + - type: Transform + pos: -49.5,-5.5 parent: 2 - uid: 14852 components: - type: Transform - pos: -0.5,-24.5 + pos: -10.5,-66.5 + parent: 2 + - uid: 14877 + components: + - type: Transform + pos: -54.5,24.5 + parent: 2 + - uid: 14878 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 14906 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 14908 + components: + - type: Transform + pos: 17.5,-60.5 + parent: 2 + - uid: 14909 + components: + - type: Transform + pos: -49.5,-6.5 parent: 2 - uid: 14916 components: @@ -143629,47 +148784,22 @@ entities: - uid: 14917 components: - type: Transform - pos: -59.5,-9.5 + pos: -56.5,15.5 parent: 2 - - uid: 14932 + - uid: 14921 components: - type: Transform - pos: -72.5,-10.5 - parent: 2 - - uid: 14938 - components: - - type: Transform - pos: -73.5,-13.5 - parent: 2 - - uid: 14942 - components: - - type: Transform - pos: -71.5,-17.5 - parent: 2 - - uid: 14953 - components: - - type: Transform - pos: -70.5,-10.5 - parent: 2 - - uid: 14957 - components: - - type: Transform - pos: -61.5,-10.5 + pos: -47.5,12.5 parent: 2 - uid: 14974 components: - type: Transform pos: 7.5,-61.5 parent: 2 - - uid: 15008 - components: - - type: Transform - pos: -59.5,-54.5 - parent: 2 - uid: 15015 components: - type: Transform - pos: 13.5,8.5 + pos: 8.5,-61.5 parent: 2 - uid: 15023 components: @@ -143679,13 +148809,33 @@ entities: - uid: 15024 components: - type: Transform - pos: -22.5,8.5 + pos: -9.5,-27.5 + parent: 2 + - uid: 15026 + components: + - type: Transform + pos: -47.5,24.5 parent: 2 - uid: 15028 components: - type: Transform pos: 20.5,20.5 parent: 2 + - uid: 15030 + components: + - type: Transform + pos: -46.5,23.5 + parent: 2 + - uid: 15031 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 15032 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 - uid: 15033 components: - type: Transform @@ -143694,7 +148844,7 @@ entities: - uid: 15034 components: - type: Transform - pos: 74.5,-39.5 + pos: 54.5,-39.5 parent: 2 - uid: 15042 components: @@ -143706,10 +148856,40 @@ entities: - type: Transform pos: 8.5,-95.5 parent: 2 + - uid: 15076 + components: + - type: Transform + pos: -55.5,23.5 + parent: 2 + - uid: 15117 + components: + - type: Transform + pos: -53.5,24.5 + parent: 2 + - uid: 15127 + components: + - type: Transform + pos: -55.5,24.5 + parent: 2 + - uid: 15134 + components: + - type: Transform + pos: -53.5,25.5 + parent: 2 + - uid: 15135 + components: + - type: Transform + pos: -49.5,24.5 + parent: 2 + - uid: 15141 + components: + - type: Transform + pos: -49.5,25.5 + parent: 2 - uid: 15142 components: - type: Transform - pos: -11.5,6.5 + pos: -30.5,-33.5 parent: 2 - uid: 15144 components: @@ -143721,10 +148901,15 @@ entities: - type: Transform pos: 1.5,15.5 parent: 2 - - uid: 15238 + - uid: 15175 components: - type: Transform - pos: -21.5,7.5 + pos: -55.5,21.5 + parent: 2 + - uid: 15204 + components: + - type: Transform + pos: -58.5,-20.5 parent: 2 - uid: 15240 components: @@ -143736,6 +148921,11 @@ entities: - type: Transform pos: -0.5,-85.5 parent: 2 + - uid: 15253 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 - uid: 15265 components: - type: Transform @@ -143744,7 +148934,7 @@ entities: - uid: 15283 components: - type: Transform - pos: -29.5,-68.5 + pos: -31.5,-70.5 parent: 2 - uid: 15286 components: @@ -143754,12 +148944,12 @@ entities: - uid: 15289 components: - type: Transform - pos: -31.5,-66.5 + pos: -31.5,-65.5 parent: 2 - uid: 15307 components: - type: Transform - pos: 4.5,-59.5 + pos: -36.5,-74.5 parent: 2 - uid: 15309 components: @@ -143771,11 +148961,6 @@ entities: - type: Transform pos: 8.5,15.5 parent: 2 - - uid: 15314 - components: - - type: Transform - pos: -50.5,0.5 - parent: 2 - uid: 15316 components: - type: Transform @@ -143786,26 +148971,46 @@ entities: - type: Transform pos: -10.5,34.5 parent: 2 + - uid: 15335 + components: + - type: Transform + pos: -48.5,-14.5 + parent: 2 + - uid: 15336 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 15342 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 15347 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 - uid: 15352 components: - type: Transform pos: 57.5,-77.5 parent: 2 - - uid: 15371 + - uid: 15373 components: - type: Transform - pos: -17.5,12.5 - parent: 2 - - uid: 15375 - components: - - type: Transform - pos: -17.5,-68.5 + pos: -57.5,21.5 parent: 2 - uid: 15389 components: - type: Transform pos: -4.5,-86.5 parent: 2 + - uid: 15390 + components: + - type: Transform + pos: -57.5,14.5 + parent: 2 - uid: 15444 components: - type: Transform @@ -143824,7 +149029,7 @@ entities: - uid: 15448 components: - type: Transform - pos: -9.5,-71.5 + pos: -26.5,-39.5 parent: 2 - uid: 15449 components: @@ -143844,33 +149049,58 @@ entities: - uid: 15456 components: - type: Transform - pos: 36.5,23.5 + pos: -27.5,-52.5 + parent: 2 + - uid: 15460 + components: + - type: Transform + pos: -51.5,-17.5 parent: 2 - uid: 15462 components: - type: Transform pos: -10.5,-58.5 parent: 2 + - uid: 15466 + components: + - type: Transform + pos: -28.5,-51.5 + parent: 2 - uid: 15467 components: - type: Transform pos: -3.5,19.5 parent: 2 + - uid: 15470 + components: + - type: Transform + pos: -27.5,-51.5 + parent: 2 + - uid: 15471 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - uid: 15472 + components: + - type: Transform + pos: -58.5,-16.5 + parent: 2 - uid: 15476 components: - type: Transform - pos: -67.5,-9.5 + pos: -27.5,-54.5 + parent: 2 + - uid: 15478 + components: + - type: Transform + pos: -27.5,-56.5 parent: 2 - uid: 15479 components: - type: Transform pos: -10.5,-88.5 parent: 2 - - uid: 15480 - components: - - type: Transform - pos: -65.5,-16.5 - parent: 2 - uid: 15481 components: - type: Transform @@ -143886,11 +149116,31 @@ entities: - type: Transform pos: 16.5,-81.5 parent: 2 + - uid: 15568 + components: + - type: Transform + pos: -27.5,-57.5 + parent: 2 - uid: 15572 components: - type: Transform pos: -4.5,-27.5 parent: 2 + - uid: 15575 + components: + - type: Transform + pos: -42.5,-15.5 + parent: 2 + - uid: 15635 + components: + - type: Transform + pos: 87.5,-46.5 + parent: 2 + - uid: 15636 + components: + - type: Transform + pos: 86.5,-47.5 + parent: 2 - uid: 15644 components: - type: Transform @@ -143901,225 +149151,180 @@ entities: - type: Transform pos: 8.5,-60.5 parent: 2 - - uid: 15650 - components: - - type: Transform - pos: -17.5,15.5 - parent: 2 - - uid: 15663 - components: - - type: Transform - pos: -68.5,-15.5 - parent: 2 - uid: 15665 components: - type: Transform - pos: -17.5,9.5 + pos: -42.5,-16.5 parent: 2 - - uid: 15704 + - uid: 15672 components: - type: Transform - pos: -56.5,-11.5 + pos: -41.5,-16.5 + parent: 2 + - uid: 15675 + components: + - type: Transform + pos: -27.5,-59.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - uid: 15703 + components: + - type: Transform + pos: -45.5,13.5 parent: 2 - uid: 15708 components: - type: Transform - pos: -10.5,27.5 + pos: -32.5,-38.5 parent: 2 - - uid: 15714 + - uid: 15721 components: - type: Transform - pos: -66.5,-7.5 - parent: 2 - - uid: 15715 - components: - - type: Transform - pos: -20.5,0.5 + pos: -44.5,6.5 parent: 2 - uid: 15726 components: - type: Transform pos: -21.5,23.5 parent: 2 - - uid: 15730 - components: - - type: Transform - pos: -1.5,-33.5 - parent: 2 - - uid: 15732 - components: - - type: Transform - pos: -64.5,-8.5 - parent: 2 - - uid: 15742 - components: - - type: Transform - pos: -19.5,15.5 - parent: 2 - uid: 15743 components: - type: Transform pos: -5.5,23.5 parent: 2 - - uid: 15768 - components: - - type: Transform - pos: 76.5,-47.5 - parent: 2 - uid: 15786 components: - type: Transform - pos: -54.5,-55.5 + pos: -37.5,-58.5 parent: 2 - uid: 15788 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 15823 + - uid: 15812 components: - type: Transform - pos: -59.5,-13.5 + pos: -45.5,18.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + pos: -37.5,-59.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + pos: -45.5,12.5 parent: 2 - uid: 15844 components: - type: Transform - pos: -68.5,-11.5 + pos: -47.5,14.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + pos: -31.5,-57.5 parent: 2 - uid: 15865 components: - type: Transform pos: 64.5,-61.5 parent: 2 - - uid: 15866 - components: - - type: Transform - pos: -68.5,-18.5 - parent: 2 - - uid: 15877 - components: - - type: Transform - pos: -67.5,-15.5 - parent: 2 - uid: 15878 components: - type: Transform pos: 59.5,-70.5 parent: 2 - - uid: 15880 - components: - - type: Transform - pos: -28.5,13.5 - parent: 2 - - uid: 15882 - components: - - type: Transform - pos: -52.5,-39.5 - parent: 2 - - uid: 15883 - components: - - type: Transform - pos: -67.5,-11.5 - parent: 2 - uid: 15884 components: - type: Transform - pos: -31.5,3.5 + pos: -44.5,23.5 parent: 2 - - uid: 15886 + - uid: 15893 components: - type: Transform - pos: -68.5,-7.5 + pos: -21.5,-68.5 parent: 2 - - uid: 15891 + - uid: 15901 components: - type: Transform - pos: -28.5,8.5 - parent: 2 - - uid: 15895 - components: - - type: Transform - pos: -56.5,-14.5 - parent: 2 - - uid: 15898 - components: - - type: Transform - pos: -23.5,8.5 - parent: 2 - - uid: 15899 - components: - - type: Transform - pos: -67.5,-17.5 + pos: -49.5,1.5 parent: 2 - uid: 15902 components: - type: Transform - pos: -61.5,-14.5 + pos: -51.5,-16.5 parent: 2 - uid: 15904 components: - type: Transform - pos: -3.5,-29.5 + pos: -20.5,-45.5 parent: 2 - uid: 15905 components: - type: Transform - pos: -59.5,-7.5 + pos: -18.5,-45.5 parent: 2 - uid: 15906 components: - type: Transform - pos: -31.5,4.5 + pos: -23.5,-57.5 parent: 2 - uid: 15909 components: - type: Transform - pos: -28.5,15.5 + pos: -20.5,-57.5 parent: 2 - uid: 15913 components: - type: Transform - pos: -25.5,18.5 - parent: 2 - - uid: 15914 - components: - - type: Transform - pos: -54.5,-14.5 + pos: -44.5,-14.5 parent: 2 - uid: 15915 components: - type: Transform pos: 13.5,-86.5 parent: 2 - - uid: 15916 + - uid: 15917 components: - type: Transform - pos: -51.5,-14.5 + pos: -43.5,-15.5 parent: 2 - uid: 15921 components: - type: Transform - pos: -17.5,6.5 + pos: -49.5,-9.5 parent: 2 - - uid: 15924 + - uid: 15922 components: - type: Transform - pos: -67.5,-16.5 + pos: -49.5,-7.5 + parent: 2 + - uid: 15923 + components: + - type: Transform + pos: -50.5,-10.5 parent: 2 - uid: 15928 components: - type: Transform pos: 12.5,-76.5 parent: 2 - - uid: 15941 + - uid: 15932 components: - type: Transform - pos: -68.5,-13.5 - parent: 2 - - uid: 15945 - components: - - type: Transform - pos: -34.5,24.5 + pos: -22.5,-44.5 parent: 2 - uid: 15949 components: @@ -144136,11 +149341,6 @@ entities: - type: Transform pos: 8.5,-65.5 parent: 2 - - uid: 15952 - components: - - type: Transform - pos: 17.5,-23.5 - parent: 2 - uid: 15953 components: - type: Transform @@ -144159,7 +149359,7 @@ entities: - uid: 15956 components: - type: Transform - pos: -8.5,6.5 + pos: -54.5,-56.5 parent: 2 - uid: 15957 components: @@ -144171,10 +149371,15 @@ entities: - type: Transform pos: -2.5,5.5 parent: 2 + - uid: 15959 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 2 - uid: 15960 components: - type: Transform - pos: 19.5,-32.5 + pos: -62.5,-58.5 parent: 2 - uid: 15961 components: @@ -144199,13 +149404,18 @@ entities: - uid: 15966 components: - type: Transform - pos: 41.5,-30.5 + pos: -64.5,-60.5 parent: 2 - uid: 15967 components: - type: Transform pos: -6.5,4.5 parent: 2 + - uid: 15971 + components: + - type: Transform + pos: -64.5,-59.5 + parent: 2 - uid: 15972 components: - type: Transform @@ -144244,7 +149454,7 @@ entities: - uid: 15979 components: - type: Transform - pos: -9.5,1.5 + pos: -47.5,-58.5 parent: 2 - uid: 15980 components: @@ -144266,11 +149476,6 @@ entities: - type: Transform pos: -8.5,-79.5 parent: 2 - - uid: 15985 - components: - - type: Transform - pos: -32.5,22.5 - parent: 2 - uid: 15986 components: - type: Transform @@ -144294,12 +149499,12 @@ entities: - uid: 15991 components: - type: Transform - pos: -3.5,-24.5 + pos: -47.5,-47.5 parent: 2 - uid: 15993 components: - type: Transform - pos: -10.5,-23.5 + pos: -43.5,-45.5 parent: 2 - uid: 15994 components: @@ -144309,18 +149514,18 @@ entities: - uid: 15995 components: - type: Transform - pos: 25.5,-45.5 - parent: 2 - - uid: 15996 - components: - - type: Transform - pos: -35.5,16.5 + pos: -43.5,-44.5 parent: 2 - uid: 15997 components: - type: Transform pos: -5.5,-27.5 parent: 2 + - uid: 15998 + components: + - type: Transform + pos: -36.5,-39.5 + parent: 2 - uid: 15999 components: - type: Transform @@ -144329,7 +149534,7 @@ entities: - uid: 16002 components: - type: Transform - pos: -10.5,-27.5 + pos: -36.5,-38.5 parent: 2 - uid: 16003 components: @@ -144341,25 +149546,15 @@ entities: - type: Transform pos: 28.5,-5.5 parent: 2 - - uid: 16005 - components: - - type: Transform - pos: -35.5,24.5 - parent: 2 - - uid: 16006 - components: - - type: Transform - pos: -17.5,5.5 - parent: 2 - uid: 16017 components: - type: Transform - pos: -28.5,32.5 + pos: -46.5,-41.5 parent: 2 - - uid: 16032 + - uid: 16040 components: - type: Transform - pos: -29.5,9.5 + pos: -46.5,-40.5 parent: 2 - uid: 16055 components: @@ -144369,17 +149564,32 @@ entities: - uid: 16072 components: - type: Transform - pos: 22.5,-27.5 + pos: -32.5,-30.5 + parent: 2 + - uid: 16073 + components: + - type: Transform + pos: -57.5,-9.5 parent: 2 - uid: 16080 components: - type: Transform pos: -12.5,-52.5 parent: 2 + - uid: 16081 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 16082 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 - uid: 16083 components: - type: Transform - pos: -13.5,-52.5 + pos: -37.5,-31.5 parent: 2 - uid: 16088 components: @@ -144411,15 +149621,25 @@ entities: - type: Transform pos: 0.5,-38.5 parent: 2 + - uid: 16148 + components: + - type: Transform + pos: 89.5,-37.5 + parent: 2 + - uid: 16151 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 - uid: 16153 components: - type: Transform pos: -4.5,-61.5 parent: 2 - - uid: 16170 + - uid: 16187 components: - type: Transform - pos: -3.5,-72.5 + pos: -53.5,0.5 parent: 2 - uid: 16201 components: @@ -144434,7 +149654,7 @@ entities: - uid: 16211 components: - type: Transform - pos: -22.5,7.5 + pos: -53.5,-5.5 parent: 2 - uid: 16219 components: @@ -144466,95 +149686,400 @@ entities: - type: Transform pos: 8.5,-66.5 parent: 2 + - uid: 16235 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 - uid: 16236 components: - type: Transform pos: -16.5,23.5 parent: 2 + - uid: 16237 + components: + - type: Transform + pos: -56.5,1.5 + parent: 2 + - uid: 16238 + components: + - type: Transform + pos: -53.5,-36.5 + parent: 2 - uid: 16245 components: - type: Transform pos: 26.5,-29.5 parent: 2 - - uid: 16250 + - uid: 16249 components: - type: Transform - pos: -42.5,8.5 - parent: 2 - - uid: 16253 - components: - - type: Transform - pos: -44.5,-8.5 - parent: 2 - - uid: 16257 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 2 - - uid: 16268 - components: - - type: Transform - pos: -66.5,-16.5 + pos: -56.5,3.5 parent: 2 - uid: 16273 components: - type: Transform - pos: -59.5,-8.5 + pos: -55.5,-5.5 + parent: 2 + - uid: 16274 + components: + - type: Transform + pos: -54.5,-5.5 parent: 2 - uid: 16276 components: - type: Transform pos: -3.5,-68.5 parent: 2 + - uid: 16278 + components: + - type: Transform + pos: -51.5,-18.5 + parent: 2 + - uid: 16279 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 16281 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 2 + - uid: 16283 + components: + - type: Transform + pos: -51.5,-19.5 + parent: 2 + - uid: 16287 + components: + - type: Transform + pos: -51.5,-39.5 + parent: 2 + - uid: 16294 + components: + - type: Transform + pos: -49.5,-39.5 + parent: 2 + - uid: 16297 + components: + - type: Transform + pos: -55.5,-8.5 + parent: 2 + - uid: 16303 + components: + - type: Transform + pos: -57.5,-17.5 + parent: 2 - uid: 16308 components: - type: Transform - pos: -27.5,23.5 + pos: -52.5,-46.5 parent: 2 - uid: 16313 components: - type: Transform - pos: -9.5,23.5 + pos: -50.5,-46.5 + parent: 2 + - uid: 16323 + components: + - type: Transform + pos: -62.5,-39.5 + parent: 2 + - uid: 16355 + components: + - type: Transform + pos: -54.5,-8.5 + parent: 2 + - uid: 16362 + components: + - type: Transform + pos: -54.5,-7.5 parent: 2 - uid: 16364 components: - type: Transform - pos: -47.5,-10.5 + pos: -49.5,-8.5 parent: 2 - uid: 16365 components: - type: Transform pos: -10.5,23.5 parent: 2 - - uid: 16451 + - uid: 16369 components: - type: Transform - pos: -17.5,17.5 + pos: -63.5,-35.5 + parent: 2 + - uid: 16399 + components: + - type: Transform + pos: -56.5,-5.5 parent: 2 - uid: 16452 components: - type: Transform - pos: 12.5,29.5 + pos: -50.5,-35.5 parent: 2 - uid: 16453 components: - type: Transform - pos: -10.5,28.5 + pos: -49.5,-35.5 parent: 2 - - uid: 16454 + - uid: 16479 components: - type: Transform - pos: -59.5,-6.5 + pos: -57.5,-32.5 parent: 2 - - uid: 16641 + - uid: 16497 components: - type: Transform - pos: -17.5,10.5 + pos: -56.5,-6.5 parent: 2 - - uid: 16665 + - uid: 16498 components: - type: Transform - pos: -17.5,18.5 + pos: -56.5,-7.5 + parent: 2 + - uid: 16499 + components: + - type: Transform + pos: -50.5,2.5 + parent: 2 + - uid: 16518 + components: + - type: Transform + pos: 91.5,-48.5 + parent: 2 + - uid: 16519 + components: + - type: Transform + pos: 93.5,-37.5 + parent: 2 + - uid: 16520 + components: + - type: Transform + pos: 70.5,-45.5 + parent: 2 + - uid: 16521 + components: + - type: Transform + pos: 72.5,-45.5 + parent: 2 + - uid: 16524 + components: + - type: Transform + pos: 91.5,-47.5 + parent: 2 + - uid: 16526 + components: + - type: Transform + pos: 85.5,-46.5 + parent: 2 + - uid: 16527 + components: + - type: Transform + pos: 98.5,-42.5 + parent: 2 + - uid: 16528 + components: + - type: Transform + pos: 96.5,-45.5 + parent: 2 + - uid: 16529 + components: + - type: Transform + pos: 95.5,-46.5 + parent: 2 + - uid: 16531 + components: + - type: Transform + pos: 81.5,-45.5 + parent: 2 + - uid: 16532 + components: + - type: Transform + pos: 82.5,-41.5 + parent: 2 + - uid: 16533 + components: + - type: Transform + pos: 96.5,-39.5 + parent: 2 + - uid: 16534 + components: + - type: Transform + pos: 85.5,-41.5 + parent: 2 + - uid: 16535 + components: + - type: Transform + pos: 65.5,-39.5 + parent: 2 + - uid: 16536 + components: + - type: Transform + pos: 85.5,-38.5 + parent: 2 + - uid: 16538 + components: + - type: Transform + pos: 90.5,-36.5 + parent: 2 + - uid: 16541 + components: + - type: Transform + pos: 84.5,-45.5 + parent: 2 + - uid: 16542 + components: + - type: Transform + pos: 80.5,-39.5 + parent: 2 + - uid: 16549 + components: + - type: Transform + pos: 69.5,-39.5 + parent: 2 + - uid: 16550 + components: + - type: Transform + pos: 84.5,-39.5 + parent: 2 + - uid: 16552 + components: + - type: Transform + pos: 82.5,-44.5 + parent: 2 + - uid: 16553 + components: + - type: Transform + pos: 76.5,-45.5 + parent: 2 + - uid: 16555 + components: + - type: Transform + pos: 92.5,-41.5 + parent: 2 + - uid: 16558 + components: + - type: Transform + pos: 95.5,-47.5 + parent: 2 + - uid: 16560 + components: + - type: Transform + pos: 87.5,-36.5 + parent: 2 + - uid: 16562 + components: + - type: Transform + pos: 55.5,-35.5 + parent: 2 + - uid: 16563 + components: + - type: Transform + pos: 50.5,-36.5 + parent: 2 + - uid: 16568 + components: + - type: Transform + pos: 53.5,-42.5 + parent: 2 + - uid: 16572 + components: + - type: Transform + pos: 83.5,-44.5 + parent: 2 + - uid: 16574 + components: + - type: Transform + pos: 87.5,-37.5 + parent: 2 + - uid: 16576 + components: + - type: Transform + pos: 54.5,-41.5 + parent: 2 + - uid: 16582 + components: + - type: Transform + pos: 58.5,-35.5 + parent: 2 + - uid: 16585 + components: + - type: Transform + pos: 54.5,-38.5 + parent: 2 + - uid: 16586 + components: + - type: Transform + pos: 54.5,-40.5 + parent: 2 + - uid: 16588 + components: + - type: Transform + pos: 56.5,-35.5 + parent: 2 + - uid: 16591 + components: + - type: Transform + pos: 92.5,-48.5 + parent: 2 + - uid: 16592 + components: + - type: Transform + pos: 86.5,-45.5 + parent: 2 + - uid: 16593 + components: + - type: Transform + pos: 92.5,-42.5 + parent: 2 + - uid: 16594 + components: + - type: Transform + pos: 98.5,-43.5 + parent: 2 + - uid: 16596 + components: + - type: Transform + pos: 98.5,-44.5 + parent: 2 + - uid: 16597 + components: + - type: Transform + pos: 85.5,-39.5 + parent: 2 + - uid: 16599 + components: + - type: Transform + pos: 90.5,-43.5 + parent: 2 + - uid: 16600 + components: + - type: Transform + pos: 76.5,-39.5 + parent: 2 + - uid: 16605 + components: + - type: Transform + pos: 91.5,-37.5 + parent: 2 + - uid: 16609 + components: + - type: Transform + pos: 95.5,-37.5 + parent: 2 + - uid: 16612 + components: + - type: Transform + pos: 85.5,-44.5 + parent: 2 + - uid: 16655 + components: + - type: Transform + pos: -49.5,-25.5 parent: 2 - uid: 16673 components: @@ -144574,7 +150099,7 @@ entities: - uid: 16724 components: - type: Transform - pos: 49.5,-6.5 + pos: -50.5,-24.5 parent: 2 - uid: 16731 components: @@ -144601,21 +150126,26 @@ entities: - type: Transform pos: 56.5,-67.5 parent: 2 + - uid: 16759 + components: + - type: Transform + pos: 50.5,-40.5 + parent: 2 - uid: 16783 components: - type: Transform pos: 25.5,-36.5 parent: 2 - - uid: 16792 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 2 - uid: 16818 components: - type: Transform pos: 57.5,-66.5 parent: 2 + - uid: 16827 + components: + - type: Transform + pos: -51.5,-28.5 + parent: 2 - uid: 16835 components: - type: Transform @@ -144626,16 +150156,51 @@ entities: - type: Transform pos: 49.5,-8.5 parent: 2 - - uid: 16894 + - uid: 16842 components: - type: Transform - pos: 48.5,-2.5 + pos: 76.5,-44.5 + parent: 2 + - uid: 16843 + components: + - type: Transform + pos: 89.5,-48.5 + parent: 2 + - uid: 16878 + components: + - type: Transform + pos: 50.5,-38.5 + parent: 2 + - uid: 16879 + components: + - type: Transform + pos: 96.5,-38.5 + parent: 2 + - uid: 16886 + components: + - type: Transform + pos: 69.5,-45.5 + parent: 2 + - uid: 16887 + components: + - type: Transform + pos: 89.5,-47.5 parent: 2 - uid: 16895 components: - type: Transform pos: 49.5,-9.5 parent: 2 + - uid: 16899 + components: + - type: Transform + pos: -58.5,-24.5 + parent: 2 + - uid: 16900 + components: + - type: Transform + pos: 85.5,-40.5 + parent: 2 - uid: 16913 components: - type: Transform @@ -144651,15 +150216,20 @@ entities: - type: Transform pos: 14.5,-89.5 parent: 2 + - uid: 16947 + components: + - type: Transform + pos: -57.5,-20.5 + parent: 2 - uid: 16948 components: - type: Transform pos: 43.5,7.5 parent: 2 - - uid: 16964 + - uid: 16949 components: - type: Transform - pos: 42.5,6.5 + pos: -56.5,-20.5 parent: 2 - uid: 16965 components: @@ -144686,11 +150256,6 @@ entities: - type: Transform pos: 60.5,-55.5 parent: 2 - - uid: 16999 - components: - - type: Transform - pos: 51.5,13.5 - parent: 2 - uid: 17000 components: - type: Transform @@ -144711,15 +150276,10 @@ entities: - type: Transform pos: 49.5,8.5 parent: 2 - - uid: 17057 + - uid: 17061 components: - type: Transform - pos: -20.5,17.5 - parent: 2 - - uid: 17062 - components: - - type: Transform - pos: 44.5,6.5 + pos: 91.5,-41.5 parent: 2 - uid: 17073 components: @@ -144731,26 +150291,36 @@ entities: - type: Transform pos: 26.5,-49.5 parent: 2 - - uid: 17120 + - uid: 17091 components: - type: Transform - pos: 26.5,-52.5 + pos: 89.5,-50.5 + parent: 2 + - uid: 17095 + components: + - type: Transform + pos: 91.5,-51.5 + parent: 2 + - uid: 17096 + components: + - type: Transform + pos: 89.5,-54.5 parent: 2 - uid: 17124 components: - type: Transform pos: 27.5,20.5 parent: 2 + - uid: 17130 + components: + - type: Transform + pos: 87.5,-38.5 + parent: 2 - uid: 17143 components: - type: Transform pos: 5.5,-24.5 parent: 2 - - uid: 17144 - components: - - type: Transform - pos: 4.5,-24.5 - parent: 2 - uid: 17149 components: - type: Transform @@ -144761,26 +150331,16 @@ entities: - type: Transform pos: 43.5,-26.5 parent: 2 - - uid: 17166 + - uid: 17158 components: - type: Transform - pos: -49.5,-14.5 - parent: 2 - - uid: 17168 - components: - - type: Transform - pos: -34.5,8.5 + pos: 86.5,-39.5 parent: 2 - uid: 17198 components: - type: Transform pos: -58.5,-49.5 parent: 2 - - uid: 17273 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 2 - uid: 17275 components: - type: Transform @@ -144789,37 +150349,27 @@ entities: - uid: 17284 components: - type: Transform - pos: 49.5,-34.5 - parent: 2 - - uid: 17286 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 2 - - uid: 17298 - components: - - type: Transform - pos: 53.5,-35.5 + pos: 83.5,-40.5 parent: 2 - uid: 17393 components: - type: Transform pos: 21.5,20.5 parent: 2 - - uid: 17405 + - uid: 17458 components: - type: Transform - pos: 56.5,-37.5 + pos: 51.5,-43.5 parent: 2 - uid: 17459 components: - type: Transform pos: 50.5,13.5 parent: 2 - - uid: 17527 + - uid: 17462 components: - type: Transform - pos: 48.5,3.5 + pos: 98.5,-39.5 parent: 2 - uid: 17528 components: @@ -144831,15 +150381,20 @@ entities: - type: Transform pos: 43.5,-1.5 parent: 2 + - uid: 17609 + components: + - type: Transform + pos: 75.5,-39.5 + parent: 2 + - uid: 17651 + components: + - type: Transform + pos: 88.5,-37.5 + parent: 2 - uid: 17655 components: - type: Transform - pos: -35.5,18.5 - parent: 2 - - uid: 17685 - components: - - type: Transform - pos: -23.5,-12.5 + pos: 54.5,-34.5 parent: 2 - uid: 17706 components: @@ -144851,36 +150406,16 @@ entities: - type: Transform pos: 43.5,-18.5 parent: 2 - - uid: 17726 - components: - - type: Transform - pos: -21.5,13.5 - parent: 2 - - uid: 17728 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 2 - uid: 17730 components: - type: Transform pos: 86.5,-25.5 parent: 2 - - uid: 17731 - components: - - type: Transform - pos: 54.5,-37.5 - parent: 2 - uid: 17732 components: - type: Transform pos: 85.5,-26.5 parent: 2 - - uid: 17733 - components: - - type: Transform - pos: -17.5,14.5 - parent: 2 - uid: 17734 components: - type: Transform @@ -144891,26 +150426,81 @@ entities: - type: Transform pos: 86.5,-32.5 parent: 2 - - uid: 17736 - components: - - type: Transform - pos: -13.5,-2.5 - parent: 2 - uid: 17751 components: - type: Transform - pos: 57.5,-41.5 + pos: 52.5,-43.5 + parent: 2 + - uid: 17755 + components: + - type: Transform + pos: 86.5,-46.5 + parent: 2 + - uid: 17756 + components: + - type: Transform + pos: 55.5,-39.5 parent: 2 - uid: 17761 components: - type: Transform - pos: 58.5,-43.5 + pos: 82.5,-43.5 + parent: 2 + - uid: 17762 + components: + - type: Transform + pos: 97.5,-45.5 + parent: 2 + - uid: 17764 + components: + - type: Transform + pos: 90.5,-37.5 + parent: 2 + - uid: 17766 + components: + - type: Transform + pos: 53.5,-43.5 + parent: 2 + - uid: 17768 + components: + - type: Transform + pos: 51.5,-40.5 + parent: 2 + - uid: 17770 + components: + - type: Transform + pos: 50.5,-43.5 + parent: 2 + - uid: 17789 + components: + - type: Transform + pos: 50.5,-42.5 + parent: 2 + - uid: 17791 + components: + - type: Transform + pos: 50.5,-35.5 + parent: 2 + - uid: 17796 + components: + - type: Transform + pos: 52.5,-40.5 + parent: 2 + - uid: 17799 + components: + - type: Transform + pos: 53.5,-40.5 parent: 2 - uid: 17800 components: - type: Transform pos: 5.5,-5.5 parent: 2 + - uid: 17813 + components: + - type: Transform + pos: 89.5,-51.5 + parent: 2 - uid: 17817 components: - type: Transform @@ -144921,11 +150511,6 @@ entities: - type: Transform pos: -28.5,31.5 parent: 2 - - uid: 17848 - components: - - type: Transform - pos: -14.5,-5.5 - parent: 2 - uid: 17849 components: - type: Transform @@ -144936,22 +150521,11 @@ entities: - type: Transform pos: 89.5,-11.5 parent: 2 - - uid: 17865 - components: - - type: Transform - pos: -38.5,10.5 - parent: 2 - uid: 17924 components: - type: Transform pos: 43.5,-25.5 parent: 2 - - uid: 17952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,0.5 - parent: 2 - uid: 17972 components: - type: Transform @@ -144977,10 +150551,10 @@ entities: - type: Transform pos: -31.5,-64.5 parent: 2 - - uid: 18179 + - uid: 18184 components: - type: Transform - pos: 40.5,-23.5 + pos: 79.5,-36.5 parent: 2 - uid: 18190 components: @@ -145037,6 +150611,11 @@ entities: - type: Transform pos: -40.5,-21.5 parent: 2 + - uid: 18221 + components: + - type: Transform + pos: 77.5,-39.5 + parent: 2 - uid: 18222 components: - type: Transform @@ -145047,50 +150626,25 @@ entities: - type: Transform pos: -24.5,39.5 parent: 2 - - uid: 18234 - components: - - type: Transform - pos: -23.5,40.5 - parent: 2 - uid: 18243 components: - type: Transform pos: -22.5,40.5 parent: 2 - - uid: 18258 - components: - - type: Transform - pos: -12.5,37.5 - parent: 2 - - uid: 18262 - components: - - type: Transform - pos: -18.5,40.5 - parent: 2 - uid: 18267 components: - type: Transform pos: -27.5,36.5 parent: 2 - - uid: 18270 - components: - - type: Transform - pos: -58.5,-39.5 - parent: 2 - uid: 18351 components: - type: Transform pos: -10.5,-45.5 parent: 2 - - uid: 18389 + - uid: 18400 components: - type: Transform - pos: 76.5,-39.5 - parent: 2 - - uid: 18399 - components: - - type: Transform - pos: -36.5,-70.5 + pos: 90.5,-54.5 parent: 2 - uid: 18409 components: @@ -145102,11 +150656,6 @@ entities: - type: Transform pos: -36.5,-66.5 parent: 2 - - uid: 18426 - components: - - type: Transform - pos: -46.5,-24.5 - parent: 2 - uid: 18427 components: - type: Transform @@ -145122,21 +150671,11 @@ entities: - type: Transform pos: 54.5,-56.5 parent: 2 - - uid: 18439 - components: - - type: Transform - pos: 52.5,-14.5 - parent: 2 - uid: 18442 components: - type: Transform pos: 40.5,-64.5 parent: 2 - - uid: 18447 - components: - - type: Transform - pos: 51.5,-43.5 - parent: 2 - uid: 18449 components: - type: Transform @@ -145182,76 +150721,41 @@ entities: - type: Transform pos: -28.5,-65.5 parent: 2 - - uid: 18523 - components: - - type: Transform - pos: 97.5,-35.5 - parent: 2 - - uid: 18552 - components: - - type: Transform - pos: -37.5,-13.5 - parent: 2 - - uid: 18605 - components: - - type: Transform - pos: -28.5,34.5 - parent: 2 - uid: 18725 components: - type: Transform pos: -35.5,-81.5 parent: 2 - - uid: 18847 - components: - - type: Transform - pos: 42.5,-34.5 - parent: 2 - - uid: 18848 - components: - - type: Transform - pos: -31.5,-59.5 - parent: 2 - uid: 18877 components: - type: Transform pos: 26.5,-59.5 parent: 2 - - uid: 18935 + - uid: 18938 components: - type: Transform - pos: -34.5,5.5 - parent: 2 - - uid: 18939 - components: - - type: Transform - pos: -27.5,-12.5 - parent: 2 - - uid: 18967 - components: - - type: Transform - pos: -25.5,-20.5 + pos: 80.5,-38.5 parent: 2 - uid: 18970 components: - type: Transform pos: 53.5,-62.5 parent: 2 + - uid: 18983 + components: + - type: Transform + pos: 92.5,-51.5 + parent: 2 + - uid: 18990 + components: + - type: Transform + pos: 95.5,-51.5 + parent: 2 - uid: 19051 components: - type: Transform pos: 50.5,-75.5 parent: 2 - - uid: 19054 - components: - - type: Transform - pos: -23.5,4.5 - parent: 2 - - uid: 19068 - components: - - type: Transform - pos: -19.5,2.5 - parent: 2 - uid: 19147 components: - type: Transform @@ -145262,21 +150766,11 @@ entities: - type: Transform pos: -28.5,-50.5 parent: 2 - - uid: 19156 - components: - - type: Transform - pos: -52.5,-20.5 - parent: 2 - uid: 19157 components: - type: Transform pos: 43.5,-76.5 parent: 2 - - uid: 19222 - components: - - type: Transform - pos: -36.5,-60.5 - parent: 2 - uid: 19226 components: - type: Transform @@ -145287,11 +150781,6 @@ entities: - type: Transform pos: 4.5,-15.5 parent: 2 - - uid: 19229 - components: - - type: Transform - pos: 4.5,-55.5 - parent: 2 - uid: 19231 components: - type: Transform @@ -145312,21 +150801,6 @@ entities: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 19254 - components: - - type: Transform - pos: -55.5,-61.5 - parent: 2 - - uid: 19257 - components: - - type: Transform - pos: 80.5,-46.5 - parent: 2 - - uid: 19260 - components: - - type: Transform - pos: 72.5,-47.5 - parent: 2 - uid: 19262 components: - type: Transform @@ -145337,11 +150811,6 @@ entities: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 19265 - components: - - type: Transform - pos: 44.5,15.5 - parent: 2 - uid: 19266 components: - type: Transform @@ -145367,21 +150836,26 @@ entities: - type: Transform pos: 27.5,-69.5 parent: 2 - - uid: 19559 + - uid: 19584 components: - type: Transform - pos: -51.5,-61.5 + pos: 78.5,-36.5 + parent: 2 + - uid: 19585 + components: + - type: Transform + pos: 80.5,-36.5 + parent: 2 + - uid: 19587 + components: + - type: Transform + pos: 77.5,-36.5 parent: 2 - uid: 19588 components: - type: Transform pos: 53.5,-63.5 parent: 2 - - uid: 19590 - components: - - type: Transform - pos: -48.5,0.5 - parent: 2 - uid: 19600 components: - type: Transform @@ -145392,11 +150866,6 @@ entities: - type: Transform pos: 13.5,2.5 parent: 2 - - uid: 19844 - components: - - type: Transform - pos: 20.5,23.5 - parent: 2 - uid: 19892 components: - type: Transform @@ -145407,11 +150876,6 @@ entities: - type: Transform pos: 53.5,-33.5 parent: 2 - - uid: 19894 - components: - - type: Transform - pos: -43.5,-58.5 - parent: 2 - uid: 19905 components: - type: Transform @@ -145437,11 +150901,6 @@ entities: - type: Transform pos: 37.5,-76.5 parent: 2 - - uid: 19916 - components: - - type: Transform - pos: -55.5,-57.5 - parent: 2 - uid: 19919 components: - type: Transform @@ -145457,36 +150916,11 @@ entities: - type: Transform pos: -56.5,-21.5 parent: 2 - - uid: 19991 - components: - - type: Transform - pos: -35.5,-5.5 - parent: 2 - - uid: 20000 - components: - - type: Transform - pos: -35.5,-6.5 - parent: 2 - - uid: 20004 - components: - - type: Transform - pos: -50.5,1.5 - parent: 2 - - uid: 20006 - components: - - type: Transform - pos: -56.5,-22.5 - parent: 2 - uid: 20142 components: - type: Transform pos: 36.5,-50.5 parent: 2 - - uid: 20153 - components: - - type: Transform - pos: -50.5,-60.5 - parent: 2 - uid: 20160 components: - type: Transform @@ -145512,51 +150946,11 @@ entities: - type: Transform pos: -62.5,-60.5 parent: 2 - - uid: 20175 - components: - - type: Transform - pos: -25.5,-34.5 - parent: 2 - - uid: 20178 - components: - - type: Transform - pos: -40.5,-39.5 - parent: 2 - uid: 20181 components: - type: Transform pos: 7.5,-72.5 parent: 2 - - uid: 20193 - components: - - type: Transform - pos: -35.5,-21.5 - parent: 2 - - uid: 20195 - components: - - type: Transform - pos: -59.5,-60.5 - parent: 2 - - uid: 20221 - components: - - type: Transform - pos: -31.5,-21.5 - parent: 2 - - uid: 20225 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 2 - - uid: 20231 - components: - - type: Transform - pos: -51.5,4.5 - parent: 2 - - uid: 20242 - components: - - type: Transform - pos: -41.5,8.5 - parent: 2 - uid: 20279 components: - type: Transform @@ -145567,141 +150961,26 @@ entities: - type: Transform pos: -36.5,-59.5 parent: 2 - - uid: 20320 - components: - - type: Transform - pos: -50.5,-39.5 - parent: 2 - - uid: 20420 - components: - - type: Transform - pos: -34.5,6.5 - parent: 2 - - uid: 20427 - components: - - type: Transform - pos: -40.5,8.5 - parent: 2 - - uid: 20449 - components: - - type: Transform - pos: -44.5,-3.5 - parent: 2 - - uid: 20450 - components: - - type: Transform - pos: -44.5,-9.5 - parent: 2 - - uid: 20454 - components: - - type: Transform - pos: -19.5,-11.5 - parent: 2 - - uid: 20475 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 2 - - uid: 20516 - components: - - type: Transform - pos: -43.5,-9.5 - parent: 2 - uid: 20541 components: - type: Transform pos: -46.5,-20.5 parent: 2 - - uid: 20556 - components: - - type: Transform - pos: -39.5,-18.5 - parent: 2 - - uid: 20561 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 2 - - uid: 20569 - components: - - type: Transform - pos: -43.5,-10.5 - parent: 2 - - uid: 20572 - components: - - type: Transform - pos: -32.5,-14.5 - parent: 2 - - uid: 20573 - components: - - type: Transform - pos: -43.5,-2.5 - parent: 2 - - uid: 20587 - components: - - type: Transform - pos: -20.5,-11.5 - parent: 2 - - uid: 20608 - components: - - type: Transform - pos: -25.5,-12.5 - parent: 2 - - uid: 20609 - components: - - type: Transform - pos: -41.5,-10.5 - parent: 2 - - uid: 20614 - components: - - type: Transform - pos: -36.5,-7.5 - parent: 2 - - uid: 20634 - components: - - type: Transform - pos: -53.5,-37.5 - parent: 2 - uid: 20663 components: - type: Transform pos: -52.5,-27.5 parent: 2 - - uid: 20670 - components: - - type: Transform - pos: -52.5,-32.5 - parent: 2 - uid: 20767 components: - type: Transform pos: -52.5,-26.5 parent: 2 - - uid: 20782 - components: - - type: Transform - pos: -29.5,-11.5 - parent: 2 - - uid: 21223 - components: - - type: Transform - pos: -56.5,-32.5 - parent: 2 - - uid: 21271 - components: - - type: Transform - pos: -35.5,20.5 - parent: 2 - uid: 21297 components: - type: Transform pos: -56.5,-27.5 parent: 2 - - uid: 21312 - components: - - type: Transform - pos: -51.5,-42.5 - parent: 2 - uid: 21314 components: - type: Transform @@ -145712,31 +150991,11 @@ entities: - type: Transform pos: -43.5,-43.5 parent: 2 - - uid: 21395 - components: - - type: Transform - pos: -43.5,-47.5 - parent: 2 - - uid: 21426 - components: - - type: Transform - pos: -48.5,-47.5 - parent: 2 - - uid: 21458 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 2 - uid: 21738 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 21760 - components: - - type: Transform - pos: 17.5,17.5 - parent: 2 - uid: 21784 components: - type: Transform @@ -145747,41 +151006,16 @@ entities: - type: Transform pos: 48.5,25.5 parent: 2 - - uid: 21807 - components: - - type: Transform - pos: -40.5,-42.5 - parent: 2 - uid: 21852 components: - type: Transform pos: -31.5,-26.5 parent: 2 - - uid: 21859 - components: - - type: Transform - pos: -30.5,-2.5 - parent: 2 - - uid: 21860 - components: - - type: Transform - pos: 48.5,18.5 - parent: 2 - uid: 21868 components: - type: Transform pos: 11.5,-11.5 parent: 2 - - uid: 21870 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - - uid: 21871 - components: - - type: Transform - pos: -30.5,1.5 - parent: 2 - uid: 21877 components: - type: Transform @@ -145792,81 +151026,21 @@ entities: - type: Transform pos: -62.5,-38.5 parent: 2 - - uid: 21879 - components: - - type: Transform - pos: -62.5,-35.5 - parent: 2 - uid: 21881 components: - type: Transform pos: -11.5,-52.5 parent: 2 - - uid: 21886 - components: - - type: Transform - pos: -62.5,-57.5 - parent: 2 - - uid: 21890 - components: - - type: Transform - pos: -42.5,-10.5 - parent: 2 - - uid: 21891 - components: - - type: Transform - pos: -54.5,-57.5 - parent: 2 - - uid: 21892 - components: - - type: Transform - pos: -58.5,-14.5 - parent: 2 - uid: 21897 components: - type: Transform pos: 41.5,23.5 parent: 2 - - uid: 21910 - components: - - type: Transform - pos: -71.5,-7.5 - parent: 2 - uid: 21914 components: - type: Transform pos: 42.5,-30.5 parent: 2 - - uid: 21925 - components: - - type: Transform - pos: -66.5,-17.5 - parent: 2 - - uid: 21960 - components: - - type: Transform - pos: -64.5,-11.5 - parent: 2 - - uid: 21963 - components: - - type: Transform - pos: -64.5,-13.5 - parent: 2 - - uid: 21967 - components: - - type: Transform - pos: -53.5,-14.5 - parent: 2 - - uid: 21995 - components: - - type: Transform - pos: -48.5,-14.5 - parent: 2 - - uid: 21996 - components: - - type: Transform - pos: -65.5,-17.5 - parent: 2 - uid: 22002 components: - type: Transform @@ -145887,21 +151061,11 @@ entities: - type: Transform pos: 18.5,-32.5 parent: 2 - - uid: 22017 - components: - - type: Transform - pos: 24.5,-32.5 - parent: 2 - uid: 22021 components: - type: Transform pos: 27.5,-23.5 parent: 2 - - uid: 22027 - components: - - type: Transform - pos: 14.5,13.5 - parent: 2 - uid: 22031 components: - type: Transform @@ -145932,11 +151096,6 @@ entities: - type: Transform pos: 43.5,18.5 parent: 2 - - uid: 22086 - components: - - type: Transform - pos: -34.5,10.5 - parent: 2 - uid: 22089 components: - type: Transform @@ -145962,36 +151121,11 @@ entities: - type: Transform pos: 76.5,-74.5 parent: 2 - - uid: 22103 - components: - - type: Transform - pos: -62.5,-17.5 - parent: 2 - - uid: 22104 - components: - - type: Transform - pos: -59.5,-16.5 - parent: 2 - uid: 22105 components: - type: Transform pos: 26.5,-11.5 parent: 2 - - uid: 22109 - components: - - type: Transform - pos: -58.5,-17.5 - parent: 2 - - uid: 22110 - components: - - type: Transform - pos: -59.5,-18.5 - parent: 2 - - uid: 22112 - components: - - type: Transform - pos: -36.5,14.5 - parent: 2 - uid: 22115 components: - type: Transform @@ -146012,11 +151146,6 @@ entities: - type: Transform pos: 60.5,-57.5 parent: 2 - - uid: 22121 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 2 - uid: 22125 components: - type: Transform @@ -146057,26 +151186,6 @@ entities: - type: Transform pos: 85.5,-32.5 parent: 2 - - uid: 22609 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 2 - - uid: 22610 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 2 - - uid: 22618 - components: - - type: Transform - pos: -44.5,-2.5 - parent: 2 - - uid: 22619 - components: - - type: Transform - pos: -51.5,3.5 - parent: 2 - uid: 22636 components: - type: Transform @@ -146132,11 +151241,6 @@ entities: - type: Transform pos: 52.5,-34.5 parent: 2 - - uid: 23609 - components: - - type: Transform - pos: 83.5,-38.5 - parent: 2 - uid: 23610 components: - type: Transform @@ -146172,21 +151276,11 @@ entities: - type: Transform pos: 60.5,-45.5 parent: 2 - - uid: 23617 - components: - - type: Transform - pos: 94.5,-34.5 - parent: 2 - uid: 23618 components: - type: Transform pos: 39.5,-78.5 parent: 2 - - uid: 23619 - components: - - type: Transform - pos: 22.5,16.5 - parent: 2 - uid: 23620 components: - type: Transform @@ -146212,11 +151306,6 @@ entities: - type: Transform pos: 36.5,26.5 parent: 2 - - uid: 23626 - components: - - type: Transform - pos: 36.5,20.5 - parent: 2 - uid: 23627 components: - type: Transform @@ -146232,11 +151321,6 @@ entities: - type: Transform pos: 23.5,20.5 parent: 2 - - uid: 23630 - components: - - type: Transform - pos: 48.5,23.5 - parent: 2 - uid: 23631 components: - type: Transform @@ -146247,11 +151331,6 @@ entities: - type: Transform pos: 28.5,26.5 parent: 2 - - uid: 23633 - components: - - type: Transform - pos: 18.5,16.5 - parent: 2 - uid: 23634 components: - type: Transform @@ -146282,87 +151361,147 @@ entities: - type: Transform pos: 43.5,13.5 parent: 2 - - uid: 23640 - components: - - type: Transform - pos: 22.5,15.5 - parent: 2 - - uid: 23641 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 2 - - uid: 23642 - components: - - type: Transform - pos: 9.5,7.5 - parent: 2 - uid: 23643 components: - type: Transform pos: 10.5,7.5 parent: 2 - - uid: 23644 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 2 - uid: 23645 components: - type: Transform pos: 11.5,-7.5 parent: 2 + - uid: 24752 + components: + - type: Transform + pos: 56.5,-41.5 + parent: 2 + - uid: 24766 + components: + - type: Transform + pos: 57.5,-41.5 + parent: 2 + - uid: 24768 + components: + - type: Transform + pos: 55.5,-41.5 + parent: 2 + - uid: 24769 + components: + - type: Transform + pos: 58.5,-41.5 + parent: 2 - proto: WallReinforcedRust entities: - - uid: 3099 + - uid: 4945 components: - type: Transform - pos: -22.5,-14.5 + pos: -47.5,-20.5 parent: 2 - - uid: 5855 + - uid: 4966 components: - type: Transform - pos: -19.5,4.5 + pos: -50.5,-42.5 parent: 2 - - uid: 5864 + - uid: 4974 components: - type: Transform - pos: -27.5,-68.5 + pos: -25.5,-24.5 parent: 2 - - uid: 5866 + - uid: 5009 components: - type: Transform - pos: -60.5,-10.5 + pos: -49.5,-2.5 parent: 2 - - uid: 5881 + - uid: 5247 components: - type: Transform - pos: -33.5,24.5 + pos: 48.5,23.5 parent: 2 - - uid: 5882 + - uid: 5317 components: - type: Transform - pos: 57.5,-42.5 + pos: -31.5,-66.5 parent: 2 - - uid: 5886 + - uid: 5327 components: - type: Transform - pos: 44.5,25.5 + pos: 28.5,-6.5 parent: 2 - - uid: 5888 + - uid: 5331 components: - type: Transform - pos: 30.5,26.5 + pos: -31.5,-38.5 parent: 2 - - uid: 5892 + - uid: 5334 components: - type: Transform - pos: 57.5,-37.5 + pos: -51.5,-61.5 parent: 2 - - uid: 5898 + - uid: 5387 components: - type: Transform - pos: 65.5,-43.5 + pos: 41.5,-13.5 + parent: 2 + - uid: 5411 + components: + - type: Transform + pos: -40.5,-42.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + pos: -43.5,24.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + pos: 13.5,-61.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: -50.5,-25.5 + parent: 2 + - uid: 5512 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - uid: 5539 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 5548 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + pos: -18.5,40.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 5811 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + pos: -46.5,2.5 parent: 2 - uid: 5901 components: @@ -146372,27 +151511,12 @@ entities: - uid: 5907 components: - type: Transform - pos: 29.5,-50.5 + pos: 4.5,-59.5 parent: 2 - - uid: 5909 + - uid: 5915 components: - type: Transform - pos: 25.5,20.5 - parent: 2 - - uid: 5922 - components: - - type: Transform - pos: -28.5,14.5 - parent: 2 - - uid: 5931 - components: - - type: Transform - pos: -40.5,-13.5 - parent: 2 - - uid: 5937 - components: - - type: Transform - pos: -38.5,14.5 + pos: -35.5,0.5 parent: 2 - uid: 5947 components: @@ -146404,41 +151528,16 @@ entities: - type: Transform pos: 54.5,-23.5 parent: 2 - - uid: 5957 + - uid: 5975 components: - type: Transform - pos: -43.5,-44.5 - parent: 2 - - uid: 5966 - components: - - type: Transform - pos: -28.5,7.5 - parent: 2 - - uid: 5968 - components: - - type: Transform - pos: -34.5,21.5 - parent: 2 - - uid: 5970 - components: - - type: Transform - pos: -59.5,-35.5 + pos: -47.5,-14.5 parent: 2 - uid: 6028 components: - type: Transform pos: 60.5,-78.5 parent: 2 - - uid: 6036 - components: - - type: Transform - pos: -54.5,-10.5 - parent: 2 - - uid: 6053 - components: - - type: Transform - pos: -21.5,-68.5 - parent: 2 - uid: 6060 components: - type: Transform @@ -146447,77 +151546,57 @@ entities: - uid: 6085 components: - type: Transform - pos: 21.5,-32.5 - parent: 2 - - uid: 6099 - components: - - type: Transform - pos: 66.5,-37.5 - parent: 2 - - uid: 6108 - components: - - type: Transform - pos: -13.5,-53.5 + pos: 16.5,-16.5 parent: 2 - uid: 6109 components: - type: Transform pos: 47.5,-42.5 parent: 2 - - uid: 6116 + - uid: 6112 components: - type: Transform - pos: -30.5,5.5 + pos: -25.5,-37.5 parent: 2 - uid: 6122 components: - type: Transform - pos: -5.5,-60.5 + pos: -40.5,-39.5 parent: 2 - uid: 6145 components: - type: Transform - pos: -29.5,-20.5 + pos: -1.5,27.5 parent: 2 - - uid: 6149 + - uid: 6160 components: - type: Transform - pos: -53.5,-36.5 - parent: 2 - - uid: 6159 - components: - - type: Transform - pos: -9.5,-72.5 + pos: 4.5,29.5 parent: 2 - uid: 6161 components: - type: Transform pos: 54.5,-57.5 parent: 2 - - uid: 6179 + - uid: 6165 components: - type: Transform - pos: 66.5,-45.5 + pos: -19.5,11.5 parent: 2 - uid: 6186 components: - type: Transform - pos: -20.5,40.5 + pos: -28.5,16.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: -53.5,-38.5 parent: 2 - uid: 6193 components: - type: Transform - pos: 2.5,-35.5 - parent: 2 - - uid: 6207 - components: - - type: Transform - pos: 25.5,-44.5 - parent: 2 - - uid: 6223 - components: - - type: Transform - pos: 93.5,-34.5 + pos: -29.5,-68.5 parent: 2 - uid: 6225 components: @@ -146529,81 +151608,41 @@ entities: - type: Transform pos: -30.5,-81.5 parent: 2 - - uid: 6238 - components: - - type: Transform - pos: 27.5,-32.5 - parent: 2 - uid: 6240 components: - type: Transform - pos: 26.5,25.5 + pos: 7.5,-64.5 parent: 2 - uid: 6254 components: - type: Transform - pos: -27.5,-57.5 - parent: 2 - - uid: 6257 - components: - - type: Transform - pos: 22.5,-8.5 + pos: -63.5,-39.5 parent: 2 - uid: 6261 components: - type: Transform - pos: -31.5,-38.5 + pos: -39.5,32.5 parent: 2 - - uid: 6288 + - uid: 6295 components: - type: Transform - pos: -10.5,30.5 - parent: 2 - - uid: 6292 - components: - - type: Transform - pos: -8.5,4.5 + pos: -33.5,6.5 parent: 2 - uid: 6297 components: - type: Transform pos: 44.5,-79.5 parent: 2 - - uid: 6306 - components: - - type: Transform - pos: -16.5,40.5 - parent: 2 - - uid: 6307 - components: - - type: Transform - pos: 45.5,18.5 - parent: 2 - uid: 6321 components: - type: Transform pos: 6.5,-75.5 parent: 2 - - uid: 6324 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 2 - uid: 6325 components: - type: Transform pos: 9.5,-76.5 parent: 2 - - uid: 6339 - components: - - type: Transform - pos: -23.5,9.5 - parent: 2 - - uid: 6352 - components: - - type: Transform - pos: -52.5,-28.5 - parent: 2 - uid: 6353 components: - type: Transform @@ -146614,80 +151653,55 @@ entities: - type: Transform pos: 9.5,-80.5 parent: 2 - - uid: 6360 - components: - - type: Transform - pos: 25.5,-42.5 - parent: 2 - uid: 6369 components: - type: Transform - pos: -19.5,-45.5 - parent: 2 - - uid: 6373 - components: - - type: Transform - pos: 55.5,-37.5 + pos: -26.5,37.5 parent: 2 - uid: 6374 components: - type: Transform - pos: 48.5,7.5 + pos: -25.5,-43.5 parent: 2 - uid: 6376 components: - type: Transform pos: 13.5,-89.5 parent: 2 - - uid: 6379 - components: - - type: Transform - pos: -5.5,17.5 - parent: 2 - - uid: 6389 - components: - - type: Transform - pos: -54.5,-39.5 - parent: 2 - uid: 6397 components: - type: Transform - pos: -26.5,-26.5 + pos: -37.5,7.5 parent: 2 - uid: 6400 components: - type: Transform pos: 67.5,-66.5 parent: 2 - - uid: 6407 + - uid: 6406 components: - type: Transform - pos: -13.5,-56.5 - parent: 2 - - uid: 6422 - components: - - type: Transform - pos: -64.5,-16.5 + pos: -37.5,-74.5 parent: 2 - uid: 6427 components: - type: Transform - pos: 42.5,7.5 + pos: -8.5,6.5 parent: 2 - uid: 6428 components: - type: Transform - pos: 12.5,-3.5 + pos: 27.5,-32.5 parent: 2 - uid: 6430 components: - type: Transform - pos: -9.5,-66.5 + pos: -36.5,-60.5 parent: 2 - uid: 6433 components: - type: Transform - pos: 26.5,26.5 + pos: -28.5,-57.5 parent: 2 - uid: 6437 components: @@ -146699,11 +151713,6 @@ entities: - type: Transform pos: 85.5,-24.5 parent: 2 - - uid: 6446 - components: - - type: Transform - pos: 37.5,-23.5 - parent: 2 - uid: 6464 components: - type: Transform @@ -146712,42 +151721,22 @@ entities: - uid: 6476 components: - type: Transform - pos: -9.5,-54.5 + pos: -54.5,-39.5 parent: 2 - - uid: 6493 + - uid: 6482 components: - type: Transform - pos: 25.5,17.5 + pos: -8.5,25.5 parent: 2 - - uid: 6496 + - uid: 6507 components: - type: Transform - pos: -22.5,15.5 + pos: -53.5,-37.5 parent: 2 - - uid: 6556 + - uid: 6572 components: - type: Transform - pos: -18.5,-45.5 - parent: 2 - - uid: 6604 - components: - - type: Transform - pos: 40.5,-19.5 - parent: 2 - - uid: 6616 - components: - - type: Transform - pos: -58.5,-13.5 - parent: 2 - - uid: 6618 - components: - - type: Transform - pos: 19.5,16.5 - parent: 2 - - uid: 6620 - components: - - type: Transform - pos: 1.5,27.5 + pos: -31.5,-68.5 parent: 2 - uid: 6623 components: @@ -146759,65 +151748,35 @@ entities: - type: Transform pos: 56.5,-45.5 parent: 2 - - uid: 6628 - components: - - type: Transform - pos: -8.5,-27.5 - parent: 2 - - uid: 6629 - components: - - type: Transform - pos: -11.5,36.5 - parent: 2 - - uid: 6632 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 2 - - uid: 6640 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 2 - - uid: 6641 - components: - - type: Transform - pos: -29.5,8.5 - parent: 2 - uid: 6670 components: - type: Transform - pos: 17.5,-19.5 + pos: 14.5,29.5 parent: 2 - - uid: 6680 + - uid: 6684 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - uid: 6685 components: - type: Transform pos: 6.5,-23.5 parent: 2 - - uid: 6687 + - uid: 6712 components: - type: Transform - pos: -22.5,13.5 - parent: 2 - - uid: 6713 - components: - - type: Transform - pos: -9.5,-53.5 + pos: -41.5,-17.5 parent: 2 - uid: 6716 components: - type: Transform - pos: -2.5,3.5 + pos: -19.5,-68.5 parent: 2 - uid: 6739 components: - type: Transform - pos: -50.5,-46.5 - parent: 2 - - uid: 6741 - components: - - type: Transform - pos: -31.5,-33.5 + pos: 9.5,15.5 parent: 2 - uid: 6781 components: @@ -146829,15 +151788,10 @@ entities: - type: Transform pos: 30.5,-66.5 parent: 2 - - uid: 6850 - components: - - type: Transform - pos: -56.5,-26.5 - parent: 2 - uid: 6882 components: - type: Transform - pos: -31.5,-17.5 + pos: -57.5,-19.5 parent: 2 - uid: 6899 components: @@ -146852,68 +151806,28 @@ entities: - uid: 6905 components: - type: Transform - pos: -10.5,-64.5 - parent: 2 - - uid: 6908 - components: - - type: Transform - pos: 25.5,-43.5 + pos: -44.5,8.5 parent: 2 - uid: 6923 components: - type: Transform - pos: -62.5,-58.5 + pos: -10.5,-27.5 parent: 2 - uid: 6925 components: - type: Transform - pos: 5.5,-7.5 - parent: 2 - - uid: 6927 - components: - - type: Transform - pos: -57.5,-32.5 + pos: -19.5,9.5 parent: 2 - uid: 6933 components: - type: Transform - pos: -19.5,-68.5 - parent: 2 - - uid: 6934 - components: - - type: Transform - pos: -46.5,-42.5 - parent: 2 - - uid: 6944 - components: - - type: Transform - pos: 71.5,-39.5 - parent: 2 - - uid: 6968 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 2 - - uid: 6970 - components: - - type: Transform - pos: 11.5,-8.5 + pos: -10.5,-64.5 parent: 2 - uid: 6974 components: - type: Transform pos: 91.5,-12.5 parent: 2 - - uid: 6982 - components: - - type: Transform - pos: 17.5,-60.5 - parent: 2 - - uid: 6988 - components: - - type: Transform - pos: -21.5,32.5 - parent: 2 - uid: 6993 components: - type: Transform @@ -146934,50 +151848,20 @@ entities: - type: Transform pos: 48.5,-62.5 parent: 2 - - uid: 7021 - components: - - type: Transform - pos: -32.5,-30.5 - parent: 2 - uid: 7026 components: - type: Transform pos: 63.5,-55.5 parent: 2 - - uid: 7060 + - uid: 7077 components: - type: Transform - pos: 39.5,-30.5 + pos: 44.5,7.5 parent: 2 - - uid: 7075 + - uid: 7098 components: - type: Transform - pos: -61.5,-7.5 - parent: 2 - - uid: 7086 - components: - - type: Transform - pos: 75.5,-39.5 - parent: 2 - - uid: 7087 - components: - - type: Transform - pos: -68.5,-12.5 - parent: 2 - - uid: 7092 - components: - - type: Transform - pos: 22.5,-9.5 - parent: 2 - - uid: 7106 - components: - - type: Transform - pos: -2.5,16.5 - parent: 2 - - uid: 7107 - components: - - type: Transform - pos: -50.5,-24.5 + pos: -38.5,24.5 parent: 2 - uid: 7118 components: @@ -146992,128 +151876,78 @@ entities: - uid: 7164 components: - type: Transform - pos: -3.5,-66.5 + pos: -9.5,-54.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: 49.5,-6.5 parent: 2 - uid: 7167 components: - type: Transform - pos: -57.5,-20.5 + pos: -53.5,-47.5 parent: 2 - - uid: 7168 + - uid: 7174 components: - type: Transform - pos: 7.5,27.5 - parent: 2 - - uid: 7175 - components: - - type: Transform - pos: -51.5,-35.5 - parent: 2 - - uid: 7184 - components: - - type: Transform - pos: -19.5,5.5 - parent: 2 - - uid: 7210 - components: - - type: Transform - pos: 13.5,29.5 + pos: -10.5,-59.5 parent: 2 - uid: 7216 components: - type: Transform - pos: 18.5,20.5 + pos: 47.5,1.5 + parent: 2 + - uid: 7217 + components: + - type: Transform + pos: -42.5,14.5 parent: 2 - uid: 7218 components: - type: Transform pos: 44.5,-47.5 parent: 2 - - uid: 7222 - components: - - type: Transform - pos: -27.5,-54.5 - parent: 2 - uid: 7228 components: - type: Transform - pos: -9.5,17.5 - parent: 2 - - uid: 7229 - components: - - type: Transform - pos: -64.5,-10.5 + pos: -58.5,-39.5 parent: 2 - uid: 7230 components: - type: Transform - pos: 10.5,-5.5 + pos: -35.5,-0.5 parent: 2 - uid: 7233 components: - type: Transform - pos: 5.5,-11.5 + pos: -52.5,-39.5 parent: 2 - - uid: 7286 + - uid: 7241 components: - type: Transform - pos: 42.5,-32.5 + pos: -50.5,-32.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + pos: -9.5,23.5 parent: 2 - uid: 7293 components: - type: Transform pos: 58.5,-67.5 parent: 2 - - uid: 7294 - components: - - type: Transform - pos: -35.5,21.5 - parent: 2 - - uid: 7298 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 2 - - uid: 7300 - components: - - type: Transform - pos: 52.5,-43.5 - parent: 2 - uid: 7308 components: - type: Transform pos: 42.5,-62.5 parent: 2 - - uid: 7315 - components: - - type: Transform - pos: -31.5,-20.5 - parent: 2 - uid: 7318 components: - type: Transform pos: 11.5,-76.5 parent: 2 - - uid: 7320 - components: - - type: Transform - pos: -30.5,-20.5 - parent: 2 - - uid: 7326 - components: - - type: Transform - pos: -66.5,-13.5 - parent: 2 - - uid: 7330 - components: - - type: Transform - pos: -6.5,13.5 - parent: 2 - - uid: 7352 - components: - - type: Transform - pos: -3.5,17.5 - parent: 2 - uid: 7359 components: - type: Transform @@ -147129,145 +151963,55 @@ entities: - type: Transform pos: 43.5,-78.5 parent: 2 - - uid: 7404 - components: - - type: Transform - pos: -58.5,-11.5 - parent: 2 - uid: 7430 components: - type: Transform - pos: 5.5,-13.5 - parent: 2 - - uid: 7456 - components: - - type: Transform - pos: -14.5,-17.5 - parent: 2 - - uid: 7461 - components: - - type: Transform - pos: -20.5,18.5 - parent: 2 - - uid: 7505 - components: - - type: Transform - pos: -36.5,-11.5 + pos: -10.5,-23.5 parent: 2 - uid: 7507 components: - type: Transform - pos: 13.5,-20.5 + pos: -14.5,-21.5 + parent: 2 + - uid: 7516 + components: + - type: Transform + pos: -13.5,-71.5 parent: 2 - uid: 7518 components: - type: Transform - pos: -0.5,27.5 - parent: 2 - - uid: 7529 - components: - - type: Transform - pos: 26.5,-5.5 + pos: -0.5,6.5 parent: 2 - uid: 7531 components: - type: Transform pos: 43.5,-42.5 parent: 2 - - uid: 7546 - components: - - type: Transform - pos: -35.5,-70.5 - parent: 2 - - uid: 7572 - components: - - type: Transform - pos: -27.5,-51.5 - parent: 2 - - uid: 7588 - components: - - type: Transform - pos: -10.5,-59.5 - parent: 2 - uid: 7605 components: - type: Transform pos: 12.5,-68.5 parent: 2 - - uid: 7612 + - uid: 7611 components: - type: Transform - pos: -40.5,-19.5 + pos: 5.5,-20.5 parent: 2 - uid: 7618 components: - type: Transform - pos: -5.5,13.5 - parent: 2 - - uid: 7628 - components: - - type: Transform - pos: -69.5,-16.5 - parent: 2 - - uid: 7631 - components: - - type: Transform - pos: -39.5,-21.5 - parent: 2 - - uid: 7634 - components: - - type: Transform - pos: -38.5,-17.5 - parent: 2 - - uid: 7637 - components: - - type: Transform - pos: -37.5,-16.5 - parent: 2 - - uid: 7638 - components: - - type: Transform - pos: -66.5,-8.5 + pos: -46.5,-24.5 parent: 2 - uid: 7639 components: - type: Transform pos: 86.5,-24.5 parent: 2 - - uid: 7641 - components: - - type: Transform - pos: 42.5,-26.5 - parent: 2 - - uid: 7642 - components: - - type: Transform - pos: -31.5,-62.5 - parent: 2 - - uid: 7643 - components: - - type: Transform - pos: 11.5,-9.5 - parent: 2 - - uid: 7649 - components: - - type: Transform - pos: -50.5,-10.5 - parent: 2 - uid: 7659 components: - type: Transform - pos: -13.5,0.5 - parent: 2 - - uid: 7661 - components: - - type: Transform - pos: 25.5,-11.5 - parent: 2 - - uid: 7667 - components: - - type: Transform - pos: 18.5,-31.5 + pos: 5.5,6.5 parent: 2 - uid: 7673 components: @@ -147277,62 +152021,37 @@ entities: - uid: 7700 components: - type: Transform - pos: 29.5,-51.5 - parent: 2 - - uid: 7701 - components: - - type: Transform - pos: 23.5,-27.5 + pos: 36.5,23.5 parent: 2 - uid: 7707 components: - type: Transform - pos: 47.5,18.5 + pos: -20.5,2.5 parent: 2 - uid: 7717 components: - type: Transform - pos: 23.5,-5.5 + pos: 15.5,4.5 parent: 2 - uid: 7723 components: - type: Transform - pos: 14.5,-2.5 + pos: -9.5,-72.5 parent: 2 - uid: 7724 components: - type: Transform - pos: 10.5,29.5 - parent: 2 - - uid: 7731 - components: - - type: Transform - pos: -35.5,22.5 + pos: -43.5,-14.5 parent: 2 - uid: 7744 components: - type: Transform pos: 37.5,-60.5 parent: 2 - - uid: 7748 - components: - - type: Transform - pos: -63.5,-10.5 - parent: 2 - - uid: 7749 - components: - - type: Transform - pos: 53.5,-37.5 - parent: 2 - uid: 7758 components: - type: Transform - pos: 40.5,-28.5 - parent: 2 - - uid: 7759 - components: - - type: Transform - pos: -9.5,-27.5 + pos: -1.5,-24.5 parent: 2 - uid: 7788 components: @@ -147342,117 +152061,37 @@ entities: - uid: 7796 components: - type: Transform - pos: -37.5,-28.5 + pos: -56.5,16.5 parent: 2 - uid: 7799 components: - type: Transform - pos: -31.5,-70.5 - parent: 2 - - uid: 7820 - components: - - type: Transform - pos: -47.5,-47.5 - parent: 2 - - uid: 7823 - components: - - type: Transform - pos: 25.5,-40.5 - parent: 2 - - uid: 7831 - components: - - type: Transform - pos: 41.5,-33.5 + pos: -10.5,-65.5 parent: 2 - uid: 7943 components: - type: Transform pos: 51.5,-32.5 parent: 2 - - uid: 7996 - components: - - type: Transform - pos: -28.5,17.5 - parent: 2 - - uid: 8022 - components: - - type: Transform - pos: -2.5,4.5 - parent: 2 - - uid: 8028 - components: - - type: Transform - pos: -63.5,-35.5 - parent: 2 - uid: 8039 components: - type: Transform pos: 56.5,-58.5 parent: 2 - - uid: 8041 - components: - - type: Transform - pos: -19.5,-12.5 - parent: 2 - - uid: 8047 - components: - - type: Transform - pos: -49.5,-25.5 - parent: 2 - - uid: 8049 - components: - - type: Transform - pos: 49.5,22.5 - parent: 2 - uid: 8051 components: - type: Transform - pos: 29.5,-48.5 - parent: 2 - - uid: 8054 - components: - - type: Transform - pos: -6.5,20.5 - parent: 2 - - uid: 8089 - components: - - type: Transform - pos: -51.5,-32.5 - parent: 2 - - uid: 8105 - components: - - type: Transform - pos: 45.5,13.5 + pos: -59.5,-10.5 parent: 2 - uid: 8111 components: - type: Transform - pos: 44.5,-14.5 + pos: 31.5,-47.5 parent: 2 - uid: 8144 components: - type: Transform - pos: -0.5,-54.5 - parent: 2 - - uid: 8175 - components: - - type: Transform - pos: -53.5,-47.5 - parent: 2 - - uid: 8196 - components: - - type: Transform - pos: 42.5,22.5 - parent: 2 - - uid: 8198 - components: - - type: Transform - pos: -35.5,-11.5 - parent: 2 - - uid: 8200 - components: - - type: Transform - pos: 84.5,-38.5 + pos: -14.5,-4.5 parent: 2 - uid: 8204 components: @@ -147462,143 +152101,58 @@ entities: - uid: 8209 components: - type: Transform - pos: 39.5,23.5 + pos: 0.5,15.5 parent: 2 - uid: 8211 components: - type: Transform - pos: 16.5,-20.5 - parent: 2 - - uid: 8235 - components: - - type: Transform - pos: 18.5,26.5 + pos: -22.5,-57.5 parent: 2 - uid: 8237 components: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 8240 - components: - - type: Transform - pos: -68.5,-8.5 - parent: 2 - uid: 8257 components: - type: Transform pos: 8.5,-96.5 parent: 2 - - uid: 8262 + - uid: 8278 components: - type: Transform - pos: -21.5,18.5 + pos: -35.5,-66.5 parent: 2 - - uid: 8271 + - uid: 8319 components: - type: Transform - pos: 32.5,-32.5 - parent: 2 - - uid: 8273 - components: - - type: Transform - pos: -28.5,25.5 - parent: 2 - - uid: 8276 - components: - - type: Transform - pos: -10.5,35.5 - parent: 2 - - uid: 8290 - components: - - type: Transform - pos: -35.5,-59.5 - parent: 2 - - uid: 8302 - components: - - type: Transform - pos: -64.5,-15.5 - parent: 2 - - uid: 8318 - components: - - type: Transform - pos: -22.5,-44.5 + pos: -8.5,3.5 parent: 2 - uid: 8342 components: - type: Transform pos: 8.5,-75.5 parent: 2 - - uid: 8347 + - uid: 8364 components: - type: Transform - pos: -21.5,0.5 + pos: -5.5,-29.5 parent: 2 - - uid: 8376 + - uid: 8393 components: - type: Transform - pos: -1.5,15.5 - parent: 2 - - uid: 8380 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 2 - - uid: 8386 - components: - - type: Transform - pos: -8.5,23.5 - parent: 2 - - uid: 8388 - components: - - type: Transform - pos: -19.5,40.5 - parent: 2 - - uid: 8392 - components: - - type: Transform - pos: 3.5,-7.5 + pos: -10.5,-22.5 parent: 2 - uid: 8399 components: - type: Transform - pos: -43.5,-45.5 - parent: 2 - - uid: 8400 - components: - - type: Transform - pos: 22.5,-6.5 + pos: -9.5,17.5 parent: 2 - uid: 8404 components: - type: Transform pos: 43.5,-41.5 parent: 2 - - uid: 8412 - components: - - type: Transform - pos: -2.5,27.5 - parent: 2 - - uid: 8463 - components: - - type: Transform - pos: -21.5,28.5 - parent: 2 - - uid: 8477 - components: - - type: Transform - pos: 97.5,-34.5 - parent: 2 - - uid: 8486 - components: - - type: Transform - pos: -19.5,3.5 - parent: 2 - - uid: 8492 - components: - - type: Transform - pos: -13.5,24.5 - parent: 2 - uid: 8526 components: - type: Transform @@ -147622,37 +152176,47 @@ entities: - uid: 8555 components: - type: Transform - pos: -31.5,-65.5 + pos: -41.5,0.5 parent: 2 - uid: 8559 components: - type: Transform - pos: 14.5,-0.5 + pos: -35.5,-78.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: -31.5,-21.5 parent: 2 - uid: 8577 components: - type: Transform - pos: -9.5,-49.5 + pos: -44.5,10.5 parent: 2 - uid: 8623 components: - type: Transform - pos: -26.5,-39.5 + pos: 15.5,26.5 parent: 2 - uid: 8624 components: - type: Transform - pos: -5.5,-69.5 + pos: -28.5,35.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: -45.5,16.5 parent: 2 - uid: 8703 components: - type: Transform - pos: 13.5,0.5 + pos: -46.5,-47.5 parent: 2 - uid: 8725 components: - type: Transform - pos: -52.5,-46.5 + pos: -12.5,37.5 parent: 2 - uid: 8737 components: @@ -147662,7 +152226,7 @@ entities: - uid: 8748 components: - type: Transform - pos: -27.5,-52.5 + pos: -6.5,3.5 parent: 2 - uid: 8750 components: @@ -147674,40 +152238,55 @@ entities: - type: Transform pos: 50.5,-74.5 parent: 2 + - uid: 8767 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 8768 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 - uid: 8770 components: - type: Transform pos: 32.5,-68.5 parent: 2 + - uid: 8771 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 - uid: 8772 components: - type: Transform pos: -8.5,-80.5 parent: 2 - - uid: 8777 + - uid: 8774 components: - type: Transform - pos: -18.5,-13.5 + pos: 22.5,16.5 parent: 2 - uid: 8787 components: - type: Transform - pos: -4.5,4.5 + pos: -54.5,-57.5 parent: 2 - uid: 8853 components: - type: Transform - pos: 14.5,-15.5 + pos: -25.5,-20.5 parent: 2 - uid: 8861 components: - type: Transform - pos: -24.5,24.5 + pos: -54.5,-49.5 parent: 2 - uid: 8873 components: - type: Transform - pos: -51.5,-28.5 + pos: -40.5,18.5 parent: 2 - uid: 8878 components: @@ -147722,22 +152301,27 @@ entities: - uid: 8880 components: - type: Transform - pos: 23.5,-32.5 + pos: 36.5,-28.5 parent: 2 - uid: 8882 components: - type: Transform - pos: 24.5,24.5 + pos: 48.5,18.5 + parent: 2 + - uid: 8886 + components: + - type: Transform + pos: -49.5,0.5 parent: 2 - uid: 8887 components: - type: Transform - pos: -5.5,16.5 + pos: -26.5,3.5 parent: 2 - uid: 8894 components: - type: Transform - pos: 44.5,24.5 + pos: -26.5,4.5 parent: 2 - uid: 8896 components: @@ -147747,32 +152331,27 @@ entities: - uid: 8904 components: - type: Transform - pos: 25.5,-32.5 + pos: -21.5,0.5 + parent: 2 + - uid: 8909 + components: + - type: Transform + pos: -21.5,9.5 parent: 2 - uid: 8913 components: - type: Transform - pos: -26.5,-43.5 + pos: -60.5,-35.5 parent: 2 - - uid: 8973 + - uid: 9045 components: - type: Transform - pos: -48.5,-10.5 - parent: 2 - - uid: 9017 - components: - - type: Transform - pos: -17.5,0.5 + pos: 24.5,18.5 parent: 2 - uid: 9148 components: - type: Transform - pos: 22.5,-32.5 - parent: 2 - - uid: 9202 - components: - - type: Transform - pos: -34.5,-11.5 + pos: -3.5,-29.5 parent: 2 - uid: 9215 components: @@ -147787,12 +152366,17 @@ entities: - uid: 9262 components: - type: Transform - pos: -51.5,-39.5 + pos: 18.5,-16.5 parent: 2 - uid: 9271 components: - type: Transform - pos: 40.5,-27.5 + pos: -26.5,17.5 + parent: 2 + - uid: 9276 + components: + - type: Transform + pos: 45.5,13.5 parent: 2 - uid: 9279 components: @@ -147807,42 +152391,67 @@ entities: - uid: 9281 components: - type: Transform - pos: 33.5,23.5 + pos: 4.5,28.5 + parent: 2 + - uid: 9283 + components: + - type: Transform + pos: -59.5,-54.5 + parent: 2 + - uid: 9287 + components: + - type: Transform + pos: -20.5,9.5 parent: 2 - uid: 9313 components: - type: Transform pos: 42.5,-40.5 parent: 2 + - uid: 9323 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 - uid: 9333 components: - type: Transform - pos: -36.5,-38.5 + pos: -62.5,-35.5 + parent: 2 + - uid: 9389 + components: + - type: Transform + pos: -14.5,-5.5 parent: 2 - uid: 9399 components: - type: Transform - pos: -13.5,-55.5 + pos: 29.5,26.5 + parent: 2 + - uid: 9407 + components: + - type: Transform + pos: -27.5,-9.5 parent: 2 - uid: 9420 components: - type: Transform - pos: 7.5,-64.5 + pos: 7.5,1.5 parent: 2 - uid: 9430 components: - type: Transform pos: 6.5,-73.5 parent: 2 + - uid: 9495 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 2 - uid: 9507 components: - type: Transform - pos: -15.5,24.5 - parent: 2 - - uid: 9522 - components: - - type: Transform - pos: -36.5,10.5 + pos: 12.5,9.5 parent: 2 - uid: 9542 components: @@ -147852,127 +152461,117 @@ entities: - uid: 9549 components: - type: Transform - pos: 19.5,11.5 + pos: -30.5,1.5 parent: 2 - uid: 9555 components: - type: Transform - pos: 49.5,-3.5 + pos: -11.5,8.5 parent: 2 - uid: 9556 components: - type: Transform - pos: 48.5,6.5 + pos: -11.5,-45.5 parent: 2 - uid: 9562 components: - type: Transform - pos: -13.5,1.5 + pos: -54.5,-61.5 parent: 2 - uid: 9571 components: - type: Transform - pos: 40.5,-25.5 - parent: 2 - - uid: 9597 - components: - - type: Transform - pos: 80.5,-47.5 + pos: -51.5,-32.5 parent: 2 - uid: 9600 components: - type: Transform - pos: -36.5,-39.5 + pos: -49.5,-10.5 parent: 2 - uid: 9613 components: - type: Transform - pos: 44.5,13.5 + pos: 39.5,-16.5 parent: 2 - uid: 9617 components: - type: Transform - pos: -54.5,-49.5 + pos: 17.5,-16.5 parent: 2 - uid: 9656 components: - type: Transform - pos: -13.5,-73.5 + pos: 33.5,27.5 parent: 2 - - uid: 9661 + - uid: 9668 components: - type: Transform - pos: -33.5,21.5 - parent: 2 - - uid: 9677 - components: - - type: Transform - pos: -64.5,-6.5 + pos: 20.5,23.5 parent: 2 - uid: 9678 components: - type: Transform - pos: 18.5,18.5 + pos: -54.5,-55.5 + parent: 2 + - uid: 9687 + components: + - type: Transform + pos: 4.5,-55.5 parent: 2 - uid: 9701 components: - type: Transform - pos: -28.5,27.5 + pos: -33.5,-21.5 parent: 2 - uid: 9708 components: - type: Transform - pos: -56.5,-20.5 + pos: -58.5,-50.5 parent: 2 - - uid: 9715 + - uid: 9719 components: - type: Transform - pos: -58.5,-7.5 - parent: 2 - - uid: 9718 - components: - - type: Transform - pos: -31.5,11.5 + pos: -27.5,-55.5 parent: 2 - uid: 9799 components: - type: Transform - pos: 14.5,14.5 + pos: -31.5,-20.5 + parent: 2 + - uid: 9839 + components: + - type: Transform + pos: 14.5,4.5 parent: 2 - uid: 9852 components: - type: Transform - pos: -14.5,-21.5 + pos: -2.5,6.5 parent: 2 - uid: 9858 components: - type: Transform - pos: 1.5,-38.5 + pos: 41.5,-30.5 parent: 2 - uid: 9894 components: - type: Transform pos: 39.5,-47.5 parent: 2 - - uid: 9896 - components: - - type: Transform - pos: -67.5,-13.5 - parent: 2 - uid: 9897 components: - type: Transform - pos: 9.5,27.5 + pos: -31.5,-49.5 parent: 2 - uid: 9898 components: - type: Transform - pos: -64.5,-60.5 + pos: -19.5,12.5 parent: 2 - uid: 9899 components: - type: Transform - pos: -20.5,-45.5 + pos: -18.5,28.5 parent: 2 - uid: 9922 components: @@ -147982,27 +152581,17 @@ entities: - uid: 9933 components: - type: Transform - pos: -51.5,-45.5 - parent: 2 - - uid: 9938 - components: - - type: Transform - pos: -69.5,-15.5 + pos: 29.5,-48.5 parent: 2 - uid: 9944 components: - type: Transform - pos: 24.5,-23.5 + pos: -27.5,-63.5 parent: 2 - uid: 9971 components: - type: Transform - pos: -4.5,-69.5 - parent: 2 - - uid: 9992 - components: - - type: Transform - pos: -56.5,-13.5 + pos: -36.5,-70.5 parent: 2 - uid: 9996 components: @@ -148019,85 +152608,115 @@ entities: - type: Transform pos: 14.5,-65.5 parent: 2 - - uid: 10011 + - uid: 10009 components: - type: Transform - pos: -18.5,10.5 - parent: 2 - - uid: 10017 - components: - - type: Transform - pos: 66.5,-44.5 + pos: -42.5,13.5 parent: 2 - uid: 10023 components: - type: Transform - pos: -31.5,-57.5 + pos: -58.5,-10.5 parent: 2 - - uid: 10053 + - uid: 10051 components: - type: Transform - pos: 80.5,-43.5 + pos: 50.5,-14.5 parent: 2 - uid: 10055 components: - type: Transform - pos: 6.5,-21.5 + pos: -31.5,-33.5 + parent: 2 + - uid: 10059 + components: + - type: Transform + pos: 52.5,-10.5 parent: 2 - uid: 10061 components: - type: Transform - pos: -28.5,-17.5 + pos: -30.5,-65.5 parent: 2 - uid: 10096 components: - type: Transform - pos: 14.5,-16.5 + pos: 12.5,29.5 parent: 2 - uid: 10121 components: - type: Transform - pos: 0.5,27.5 + pos: -42.5,4.5 + parent: 2 + - uid: 10148 + components: + - type: Transform + pos: -9.5,-56.5 parent: 2 - uid: 10173 components: - type: Transform pos: 53.5,-32.5 parent: 2 + - uid: 10174 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 - uid: 10175 components: - type: Transform pos: 51.5,-72.5 parent: 2 + - uid: 10182 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 10187 + components: + - type: Transform + pos: -56.5,0.5 + parent: 2 - uid: 10188 components: - type: Transform - pos: -13.5,-75.5 + pos: -3.5,21.5 parent: 2 - uid: 10193 components: - type: Transform pos: 36.5,-51.5 parent: 2 + - uid: 10213 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 10216 + components: + - type: Transform + pos: -51.5,-35.5 + parent: 2 - uid: 10218 components: - type: Transform - pos: 29.5,26.5 + pos: 44.5,15.5 parent: 2 - uid: 10228 components: - type: Transform - pos: -58.5,-50.5 + pos: -37.5,25.5 parent: 2 - uid: 10230 components: - type: Transform - pos: 23.5,-29.5 + pos: 27.5,19.5 parent: 2 - uid: 10241 components: - type: Transform - pos: -40.5,-18.5 + pos: -52.5,-61.5 parent: 2 - uid: 10252 components: @@ -148109,125 +152728,140 @@ entities: - type: Transform pos: 90.5,-12.5 parent: 2 + - uid: 10273 + components: + - type: Transform + pos: -59.5,-35.5 + parent: 2 + - uid: 10384 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 - uid: 10389 components: - type: Transform - pos: -35.5,-78.5 - parent: 2 - - uid: 10409 - components: - - type: Transform - pos: -18.5,-5.5 + pos: -23.5,40.5 parent: 2 - uid: 10410 components: - type: Transform - pos: -31.5,-16.5 + pos: -41.5,-9.5 parent: 2 - uid: 10412 components: - type: Transform - pos: 28.5,-6.5 + pos: -3.5,-72.5 parent: 2 - uid: 10417 components: - type: Transform - pos: -1.5,-29.5 + pos: -30.5,-78.5 parent: 2 - - uid: 10420 + - uid: 10419 components: - type: Transform - pos: -58.5,-15.5 + pos: -27.5,-68.5 parent: 2 - uid: 10422 components: - type: Transform - pos: 18.5,-23.5 + pos: 47.5,4.5 parent: 2 - uid: 10425 components: - type: Transform pos: 42.5,-63.5 parent: 2 - - uid: 10429 - components: - - type: Transform - pos: -19.5,6.5 - parent: 2 - uid: 10430 components: - type: Transform pos: 13.5,-65.5 parent: 2 + - uid: 10467 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 - uid: 10483 components: - type: Transform - pos: 49.5,-7.5 + pos: 32.5,-47.5 parent: 2 - uid: 10494 components: - type: Transform - pos: -27.5,-59.5 + pos: 24.5,20.5 parent: 2 - uid: 10498 components: - type: Transform - pos: 17.5,-25.5 + pos: -48.5,2.5 parent: 2 - uid: 10531 components: - type: Transform - pos: 22.5,-29.5 - parent: 2 - - uid: 10535 - components: - - type: Transform - pos: -27.5,21.5 + pos: -25.5,-39.5 parent: 2 - uid: 10536 components: - type: Transform - pos: -26.5,37.5 + pos: -50.5,-39.5 parent: 2 - uid: 10541 components: - type: Transform - pos: 25.5,-34.5 + pos: -52.5,-32.5 parent: 2 - uid: 10550 components: - type: Transform pos: 16.5,-83.5 parent: 2 - - uid: 10552 - components: - - type: Transform - pos: -68.5,-6.5 - parent: 2 - uid: 10557 components: - type: Transform - pos: -32.5,-38.5 + pos: 36.5,20.5 parent: 2 - uid: 10571 components: - type: Transform pos: 38.5,-67.5 parent: 2 + - uid: 10609 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 2 - uid: 10610 components: - type: Transform - pos: -25.5,-17.5 + pos: 26.5,-50.5 + parent: 2 + - uid: 10611 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 10612 + components: + - type: Transform + pos: -10.5,28.5 + parent: 2 + - uid: 10615 + components: + - type: Transform + pos: -51.5,-10.5 + parent: 2 + - uid: 10618 + components: + - type: Transform + pos: -5.5,13.5 parent: 2 - uid: 10627 components: - type: Transform - pos: 42.5,18.5 - parent: 2 - - uid: 10628 - components: - - type: Transform - pos: -19.5,11.5 + pos: -13.5,-56.5 parent: 2 - uid: 10629 components: @@ -148237,27 +152871,37 @@ entities: - uid: 10630 components: - type: Transform - pos: 28.5,-9.5 + pos: -39.5,-12.5 + parent: 2 + - uid: 10635 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + pos: -49.5,-16.5 parent: 2 - uid: 10679 components: - type: Transform - pos: -37.5,-58.5 + pos: 52.5,-14.5 parent: 2 - uid: 10691 components: - type: Transform - pos: 39.5,-16.5 + pos: -35.5,-70.5 parent: 2 - uid: 10693 components: - type: Transform - pos: 42.5,-1.5 + pos: 42.5,6.5 parent: 2 - uid: 10694 components: - type: Transform - pos: -31.5,-58.5 + pos: 25.5,-37.5 parent: 2 - uid: 10695 components: @@ -148272,17 +152916,17 @@ entities: - uid: 10704 components: - type: Transform - pos: -5.5,-61.5 + pos: 12.5,-7.5 parent: 2 - uid: 10705 components: - type: Transform - pos: -52.5,-61.5 + pos: -33.5,4.5 parent: 2 - uid: 10706 components: - type: Transform - pos: -30.5,-65.5 + pos: -41.5,-8.5 parent: 2 - uid: 10708 components: @@ -148297,7 +152941,7 @@ entities: - uid: 10711 components: - type: Transform - pos: -27.5,-49.5 + pos: 13.5,-7.5 parent: 2 - uid: 10715 components: @@ -148307,12 +152951,7 @@ entities: - uid: 10748 components: - type: Transform - pos: -1.5,-30.5 - parent: 2 - - uid: 10766 - components: - - type: Transform - pos: -13.5,-5.5 + pos: -27.5,-58.5 parent: 2 - uid: 10767 components: @@ -148322,47 +152961,52 @@ entities: - uid: 10777 components: - type: Transform - pos: -0.5,-37.5 + pos: -9.5,-51.5 parent: 2 - uid: 10780 components: - type: Transform - pos: -0.5,9.5 + pos: 26.5,-52.5 parent: 2 - uid: 10788 components: - type: Transform - pos: 20.5,11.5 + pos: 26.5,30.5 parent: 2 - uid: 10789 components: - type: Transform - pos: 19.5,23.5 + pos: -31.5,-46.5 + parent: 2 + - uid: 10794 + components: + - type: Transform + pos: 40.5,-23.5 parent: 2 - uid: 10820 components: - type: Transform - pos: -43.5,-42.5 + pos: -0.5,5.5 parent: 2 - uid: 10822 components: - type: Transform - pos: -49.5,-35.5 + pos: -9.5,1.5 parent: 2 - uid: 10826 components: - type: Transform - pos: 33.5,-47.5 + pos: -45.5,23.5 parent: 2 - uid: 10830 components: - type: Transform - pos: -3.5,-26.5 + pos: -4.5,6.5 parent: 2 - uid: 10843 components: - type: Transform - pos: -12.5,25.5 + pos: 11.5,9.5 parent: 2 - uid: 10850 components: @@ -148372,22 +153016,7 @@ entities: - uid: 10858 components: - type: Transform - pos: 43.5,4.5 - parent: 2 - - uid: 10865 - components: - - type: Transform - pos: -65.5,-15.5 - parent: 2 - - uid: 10866 - components: - - type: Transform - pos: -19.5,13.5 - parent: 2 - - uid: 10877 - components: - - type: Transform - pos: -71.5,-11.5 + pos: -55.5,-61.5 parent: 2 - uid: 10879 components: @@ -148397,7 +153026,7 @@ entities: - uid: 10880 components: - type: Transform - pos: 36.5,-28.5 + pos: -20.5,0.5 parent: 2 - uid: 10885 components: @@ -148409,75 +153038,70 @@ entities: - type: Transform pos: 43.5,-69.5 parent: 2 - - uid: 10896 - components: - - type: Transform - pos: -39.5,-16.5 - parent: 2 - uid: 10914 components: - type: Transform - pos: 45.5,15.5 + pos: 22.5,-27.5 parent: 2 - uid: 10925 components: - type: Transform - pos: 21.5,13.5 + pos: -44.5,12.5 parent: 2 - uid: 10968 components: - type: Transform pos: 4.5,-86.5 parent: 2 + - uid: 10970 + components: + - type: Transform + pos: 28.5,-52.5 + parent: 2 - uid: 10971 components: - type: Transform - pos: -8.5,5.5 + pos: -14.5,-57.5 parent: 2 - uid: 10978 components: - type: Transform - pos: -27.5,-56.5 - parent: 2 - - uid: 10999 - components: - - type: Transform - pos: -65.5,-7.5 + pos: -1.5,-33.5 parent: 2 - uid: 11017 components: - type: Transform - pos: 15.5,30.5 - parent: 2 - - uid: 11018 - components: - - type: Transform - pos: -59.5,-15.5 + pos: 13.5,8.5 parent: 2 - uid: 11021 components: - type: Transform - pos: 51.5,8.5 + pos: -29.5,-65.5 parent: 2 - uid: 11022 components: - type: Transform - pos: -62.5,-39.5 + pos: -30.5,-4.5 parent: 2 - uid: 11023 components: - type: Transform - pos: 43.5,22.5 + pos: 43.5,-19.5 parent: 2 - uid: 11033 components: - type: Transform - pos: 18.5,25.5 + pos: -31.5,-39.5 + parent: 2 + - uid: 11035 + components: + - type: Transform + pos: 17.5,17.5 parent: 2 - uid: 11038 components: - type: Transform - pos: -13.5,-69.5 + pos: -39.5,-39.5 parent: 2 - uid: 11039 components: @@ -148487,52 +153111,42 @@ entities: - uid: 11040 components: - type: Transform - pos: 22.5,-5.5 + pos: -17.5,-68.5 parent: 2 - uid: 11042 components: - type: Transform - pos: 7.5,-20.5 + pos: -0.5,-24.5 parent: 2 - uid: 11047 components: - type: Transform - pos: -20.5,25.5 + pos: -56.5,21.5 parent: 2 - uid: 11059 components: - type: Transform - pos: -37.5,-59.5 + pos: -47.5,23.5 parent: 2 - uid: 11074 components: - type: Transform - pos: -61.5,-35.5 + pos: -51.5,-45.5 parent: 2 - uid: 11076 components: - type: Transform - pos: -10.5,-66.5 - parent: 2 - - uid: 11078 - components: - - type: Transform - pos: 65.5,-37.5 - parent: 2 - - uid: 11080 - components: - - type: Transform - pos: -30.5,12.5 + pos: -43.5,-42.5 parent: 2 - uid: 11082 components: - type: Transform - pos: -28.5,-16.5 + pos: -10.5,31.5 parent: 2 - uid: 11106 components: - type: Transform - pos: -1.5,-24.5 + pos: -11.5,6.5 parent: 2 - uid: 11109 components: @@ -148542,12 +153156,17 @@ entities: - uid: 11122 components: - type: Transform - pos: -28.5,28.5 + pos: 23.5,-29.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: 25.5,-38.5 parent: 2 - uid: 11165 components: - type: Transform - pos: 31.5,-23.5 + pos: -8.5,20.5 parent: 2 - uid: 11187 components: @@ -148557,7 +153176,7 @@ entities: - uid: 11198 components: - type: Transform - pos: 43.5,-17.5 + pos: -20.5,3.5 parent: 2 - uid: 11199 components: @@ -148567,47 +153186,57 @@ entities: - uid: 11202 components: - type: Transform - pos: 53.5,-14.5 + pos: 22.5,-28.5 + parent: 2 + - uid: 11205 + components: + - type: Transform + pos: 25.5,-34.5 parent: 2 - uid: 11209 components: - type: Transform pos: 61.5,-70.5 parent: 2 + - uid: 11212 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 2 + - uid: 11216 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 11224 + components: + - type: Transform + pos: -48.5,-47.5 + parent: 2 - uid: 11239 components: - type: Transform - pos: 44.5,0.5 - parent: 2 - - uid: 11241 - components: - - type: Transform - pos: 81.5,-47.5 + pos: -55.5,-57.5 parent: 2 - uid: 11252 components: - type: Transform - pos: -23.5,-57.5 + pos: -3.5,16.5 parent: 2 - uid: 11253 components: - type: Transform - pos: 40.5,-26.5 + pos: -42.5,6.5 parent: 2 - uid: 11261 components: - type: Transform - pos: -18.5,28.5 + pos: -9.5,-71.5 parent: 2 - uid: 11266 components: - type: Transform - pos: 20.5,16.5 - parent: 2 - - uid: 11271 - components: - - type: Transform - pos: -58.5,-9.5 + pos: -9.5,13.5 parent: 2 - uid: 11286 components: @@ -148617,27 +153246,22 @@ entities: - uid: 11287 components: - type: Transform - pos: 13.5,9.5 - parent: 2 - - uid: 11291 - components: - - type: Transform - pos: -31.5,1.5 + pos: -31.5,5.5 parent: 2 - uid: 11292 components: - type: Transform - pos: -25.5,-37.5 + pos: -28.5,-49.5 parent: 2 - uid: 11297 components: - type: Transform - pos: -36.5,-74.5 + pos: 51.5,13.5 parent: 2 - - uid: 11310 + - uid: 11323 components: - type: Transform - pos: -23.5,-14.5 + pos: -46.5,-42.5 parent: 2 - uid: 11332 components: @@ -148647,47 +153271,47 @@ entities: - uid: 11347 components: - type: Transform - pos: 18.5,11.5 - parent: 2 - - uid: 11368 - components: - - type: Transform - pos: -23.5,6.5 + pos: -31.5,18.5 parent: 2 - uid: 11389 components: - type: Transform - pos: 16.5,-60.5 + pos: 23.5,-5.5 parent: 2 - uid: 11396 components: - type: Transform - pos: -46.5,-40.5 + pos: -44.5,-47.5 parent: 2 - uid: 11399 components: - type: Transform - pos: 4.5,27.5 + pos: -41.5,26.5 parent: 2 - uid: 11402 components: - type: Transform - pos: -20.5,-57.5 + pos: -25.5,-34.5 + parent: 2 + - uid: 11435 + components: + - type: Transform + pos: 13.5,4.5 parent: 2 - uid: 11439 components: - type: Transform - pos: 48.5,1.5 + pos: -30.5,-16.5 parent: 2 - uid: 11455 components: - type: Transform - pos: -28.5,-51.5 + pos: -34.5,18.5 parent: 2 - uid: 11498 components: - type: Transform - pos: -10.5,-25.5 + pos: 22.5,-6.5 parent: 2 - uid: 11503 components: @@ -148697,32 +153321,27 @@ entities: - uid: 11523 components: - type: Transform - pos: 8.5,-61.5 - parent: 2 - - uid: 11553 - components: - - type: Transform - pos: -21.5,1.5 + pos: -47.5,-5.5 parent: 2 - uid: 11554 components: - type: Transform - pos: 13.5,-6.5 + pos: -7.5,20.5 parent: 2 - uid: 11572 components: - type: Transform - pos: -46.5,-19.5 + pos: -56.5,-32.5 parent: 2 - uid: 11575 components: - type: Transform - pos: 48.5,-3.5 + pos: -45.5,17.5 parent: 2 - - uid: 11577 + - uid: 11578 components: - type: Transform - pos: -71.5,-12.5 + pos: -42.5,3.5 parent: 2 - uid: 11594 components: @@ -148732,7 +153351,7 @@ entities: - uid: 11595 components: - type: Transform - pos: -47.5,-58.5 + pos: -46.5,0.5 parent: 2 - uid: 11609 components: @@ -148744,20 +153363,10 @@ entities: - type: Transform pos: 62.5,-55.5 parent: 2 - - uid: 11629 - components: - - type: Transform - pos: -20.5,9.5 - parent: 2 - - uid: 11634 - components: - - type: Transform - pos: -19.5,12.5 - parent: 2 - uid: 11636 components: - type: Transform - pos: -14.5,-10.5 + pos: 42.5,5.5 parent: 2 - uid: 11637 components: @@ -148767,27 +153376,27 @@ entities: - uid: 11655 components: - type: Transform - pos: 40.5,-30.5 + pos: -52.5,-35.5 parent: 2 - uid: 11656 components: - type: Transform - pos: 11.5,-13.5 + pos: -2.5,-33.5 parent: 2 - - uid: 11674 + - uid: 11722 components: - type: Transform - pos: -68.5,-17.5 + pos: 19.5,-32.5 parent: 2 - uid: 11766 components: - type: Transform - pos: 18.5,-27.5 + pos: -44.5,16.5 parent: 2 - uid: 11787 components: - type: Transform - pos: 44.5,4.5 + pos: 7.5,-20.5 parent: 2 - uid: 11795 components: @@ -148797,97 +153406,62 @@ entities: - uid: 11803 components: - type: Transform - pos: -46.5,-41.5 - parent: 2 - - uid: 11805 - components: - - type: Transform - pos: 97.5,-33.5 + pos: -28.5,32.5 parent: 2 - uid: 11824 components: - type: Transform - pos: 5.5,7.5 + pos: 14.5,13.5 parent: 2 - uid: 11825 components: - type: Transform - pos: -49.5,-39.5 + pos: 42.5,-34.5 parent: 2 - uid: 11841 components: - type: Transform pos: 80.5,-16.5 parent: 2 - - uid: 11842 - components: - - type: Transform - pos: -38.5,-13.5 - parent: 2 - uid: 11844 components: - type: Transform - pos: 13.5,4.5 - parent: 2 - - uid: 11848 - components: - - type: Transform - pos: -64.5,-14.5 + pos: -31.5,-59.5 parent: 2 - uid: 11859 components: - type: Transform - pos: 18.5,-19.5 + pos: 40.5,-18.5 parent: 2 - uid: 11875 components: - type: Transform pos: 83.5,-12.5 parent: 2 - - uid: 11879 - components: - - type: Transform - pos: -64.5,-17.5 - parent: 2 - - uid: 11880 - components: - - type: Transform - pos: -49.5,-10.5 - parent: 2 - uid: 11881 components: - type: Transform - pos: 5.5,5.5 + pos: 44.5,-14.5 parent: 2 - uid: 11882 components: - type: Transform - pos: -6.5,9.5 + pos: -18.5,27.5 parent: 2 - uid: 11883 components: - type: Transform - pos: 22.5,-28.5 + pos: -43.5,-58.5 parent: 2 - uid: 11886 components: - type: Transform - pos: -10.5,-47.5 - parent: 2 - - uid: 11887 - components: - - type: Transform - pos: -50.5,-14.5 - parent: 2 - - uid: 11890 - components: - - type: Transform - pos: -35.5,14.5 + pos: 5.5,-13.5 parent: 2 - uid: 11892 components: - type: Transform - pos: 44.5,22.5 + pos: -20.5,8.5 parent: 2 - uid: 11894 components: @@ -148897,77 +153471,77 @@ entities: - uid: 11903 components: - type: Transform - pos: -30.5,-33.5 + pos: -30.5,16.5 parent: 2 - uid: 11905 components: - type: Transform - pos: -54.5,-60.5 + pos: -26.5,-0.5 parent: 2 - uid: 11927 components: - type: Transform - pos: 4.5,-13.5 + pos: -13.5,3.5 parent: 2 - uid: 11931 components: - type: Transform - pos: 3.5,-54.5 - parent: 2 - - uid: 11932 - components: - - type: Transform - pos: -59.5,-11.5 + pos: 18.5,-18.5 parent: 2 - uid: 11936 components: - type: Transform - pos: -64.5,-59.5 + pos: -12.5,23.5 parent: 2 - uid: 11938 components: - type: Transform - pos: -13.5,2.5 + pos: 47.5,0.5 parent: 2 - uid: 11939 components: - type: Transform pos: 64.5,-67.5 parent: 2 - - uid: 11965 - components: - - type: Transform - pos: -17.5,8.5 - parent: 2 - uid: 11966 components: - type: Transform - pos: 26.5,20.5 + pos: 39.5,-32.5 + parent: 2 + - uid: 11974 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + pos: -10.5,30.5 parent: 2 - uid: 11985 components: - type: Transform - pos: 41.5,22.5 + pos: -57.5,-39.5 parent: 2 - uid: 11987 components: - type: Transform - pos: -54.5,-56.5 + pos: 40.5,-25.5 parent: 2 - uid: 11991 components: - type: Transform - pos: 14.5,4.5 + pos: -57.5,-16.5 parent: 2 - uid: 11997 components: - type: Transform - pos: 12.5,-7.5 + pos: 19.5,11.5 parent: 2 - uid: 12005 components: - type: Transform - pos: 28.5,30.5 + pos: 28.5,-9.5 parent: 2 - uid: 12026 components: @@ -148977,7 +153551,7 @@ entities: - uid: 12029 components: - type: Transform - pos: -37.5,-31.5 + pos: 48.5,3.5 parent: 2 - uid: 12032 components: @@ -148992,7 +153566,7 @@ entities: - uid: 12049 components: - type: Transform - pos: -26.5,24.5 + pos: -24.5,-9.5 parent: 2 - uid: 12063 components: @@ -149002,12 +153576,12 @@ entities: - uid: 12074 components: - type: Transform - pos: 27.5,19.5 + pos: 2.5,-20.5 parent: 2 - uid: 12075 components: - type: Transform - pos: 24.5,18.5 + pos: 24.5,-32.5 parent: 2 - uid: 12116 components: @@ -149017,18 +153591,523 @@ entities: - uid: 12118 components: - type: Transform - pos: -14.5,-9.5 + pos: -28.5,34.5 parent: 2 - uid: 12127 components: - type: Transform pos: 32.5,-67.5 parent: 2 + - uid: 12133 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 16964 + components: + - type: Transform + pos: -62.5,-57.5 + parent: 2 + - uid: 16995 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 16999 + components: + - type: Transform + pos: -43.5,-47.5 + parent: 2 + - uid: 17011 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 17062 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 + - uid: 17120 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 17144 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 + - uid: 17188 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 17527 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 + - uid: 17728 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 + - uid: 17752 + components: + - type: Transform + pos: -54.5,-24.5 + parent: 2 + - uid: 17848 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - uid: 18179 + components: + - type: Transform + pos: -26.5,24.5 + parent: 2 + - uid: 18211 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 2 + - uid: 18234 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 18258 + components: + - type: Transform + pos: -37.5,32.5 + parent: 2 + - uid: 18262 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 18270 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - uid: 18382 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 + - uid: 18388 + components: + - type: Transform + pos: -13.5,-52.5 + parent: 2 + - uid: 18399 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 2 + - uid: 18426 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 2 + - uid: 18439 + components: + - type: Transform + pos: 41.5,-16.5 + parent: 2 + - uid: 18516 + components: + - type: Transform + pos: -10.5,27.5 + parent: 2 + - uid: 18605 + components: + - type: Transform + pos: -48.5,6.5 + parent: 2 + - uid: 18724 + components: + - type: Transform + pos: -42.5,12.5 + parent: 2 + - uid: 18847 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 18848 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 18863 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 + - uid: 18967 + components: + - type: Transform + pos: -55.5,16.5 + parent: 2 + - uid: 19156 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 19222 + components: + - type: Transform + pos: -52.5,-20.5 + parent: 2 + - uid: 19229 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 19240 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 19245 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - uid: 19254 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 19261 + components: + - type: Transform + pos: -55.5,7.5 + parent: 2 + - uid: 19265 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - uid: 19348 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 19559 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 2 + - uid: 19626 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 19844 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 2 + - uid: 19894 + components: + - type: Transform + pos: -32.5,-33.5 + parent: 2 + - uid: 19895 + components: + - type: Transform + pos: -61.5,-35.5 + parent: 2 + - uid: 19916 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 20006 + components: + - type: Transform + pos: -50.5,-60.5 + parent: 2 + - uid: 20122 + components: + - type: Transform + pos: -27.5,-49.5 + parent: 2 + - uid: 20153 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 2 + - uid: 20166 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 20172 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 20175 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - uid: 20178 + components: + - type: Transform + pos: -52.5,-28.5 + parent: 2 + - uid: 20193 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 20195 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - uid: 20221 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 20255 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 20320 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 2 - uid: 20321 components: - type: Transform pos: 56.5,-50.5 parent: 2 + - uid: 20392 + components: + - type: Transform + pos: -27.5,-62.5 + parent: 2 + - uid: 20601 + components: + - type: Transform + pos: -5.5,-69.5 + parent: 2 + - uid: 20605 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 20606 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 20634 + components: + - type: Transform + pos: 25.5,-45.5 + parent: 2 + - uid: 20670 + components: + - type: Transform + pos: -54.5,-10.5 + parent: 2 + - uid: 20706 + components: + - type: Transform + pos: -31.5,-58.5 + parent: 2 + - uid: 20709 + components: + - type: Transform + pos: -27.5,-61.5 + parent: 2 + - uid: 20722 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 21223 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 21312 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 2 + - uid: 21363 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 21395 + components: + - type: Transform + pos: -24.5,23.5 + parent: 2 + - uid: 21426 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 21438 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 21458 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 21760 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - uid: 21803 + components: + - type: Transform + pos: -44.5,14.5 + parent: 2 + - uid: 21807 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 + - uid: 21860 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - uid: 21870 + components: + - type: Transform + pos: -26.5,8.5 + parent: 2 + - uid: 21879 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 21886 + components: + - type: Transform + pos: -51.5,-42.5 + parent: 2 + - uid: 21891 + components: + - type: Transform + pos: -24.5,24.5 + parent: 2 + - uid: 22005 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 22010 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 22016 + components: + - type: Transform + pos: -56.5,-26.5 + parent: 2 + - uid: 22017 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 22027 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 22101 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 22102 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - uid: 22108 + components: + - type: Transform + pos: -58.5,-61.5 + parent: 2 + - uid: 23324 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 23336 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 23340 + components: + - type: Transform + pos: -31.5,-67.5 + parent: 2 + - uid: 23619 + components: + - type: Transform + pos: -59.5,-60.5 + parent: 2 + - uid: 23626 + components: + - type: Transform + pos: 25.5,-41.5 + parent: 2 + - uid: 23630 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 23633 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 23640 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 23641 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 23642 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 23644 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 - uid: 23647 components: - type: Transform @@ -149049,45 +154128,25 @@ entities: - type: Transform pos: 30.5,-60.5 parent: 2 - - uid: 23651 - components: - - type: Transform - pos: -37.5,19.5 - parent: 2 - uid: 23652 components: - type: Transform - pos: -11.5,-45.5 - parent: 2 - - uid: 23653 - components: - - type: Transform - pos: -58.5,-10.5 + pos: -24.5,18.5 parent: 2 - uid: 23654 components: - type: Transform - pos: 7.5,13.5 + pos: -25.5,-33.5 parent: 2 - uid: 23655 components: - type: Transform pos: 42.5,-64.5 parent: 2 - - uid: 23656 - components: - - type: Transform - pos: -17.5,1.5 - parent: 2 - - uid: 23657 - components: - - type: Transform - pos: -69.5,-8.5 - parent: 2 - uid: 23658 components: - type: Transform - pos: -9.5,-57.5 + pos: 25.5,-46.5 parent: 2 - uid: 23660 components: @@ -149097,7 +154156,7 @@ entities: - uid: 23662 components: - type: Transform - pos: 9.5,-13.5 + pos: -47.5,16.5 parent: 2 - uid: 23663 components: @@ -149107,7 +154166,92 @@ entities: - uid: 23664 components: - type: Transform - pos: -50.5,-35.5 + pos: -11.5,1.5 + parent: 2 + - uid: 23857 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 23858 + components: + - type: Transform + pos: -56.5,-22.5 + parent: 2 + - uid: 23859 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 + - uid: 24232 + components: + - type: Transform + pos: -18.5,26.5 + parent: 2 + - uid: 24796 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 24797 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 24798 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 24799 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 24800 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 24801 + components: + - type: Transform + pos: -28.5,-52.5 + parent: 2 + - uid: 24802 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 2 + - uid: 24803 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 24804 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 2 + - uid: 24805 + components: + - type: Transform + pos: 40.5,-26.5 + parent: 2 + - uid: 24806 + components: + - type: Transform + pos: -35.5,-59.5 + parent: 2 + - uid: 24807 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 24808 + components: + - type: Transform + pos: 4.5,-13.5 parent: 2 - proto: WallSolid entities: @@ -149116,21 +154260,6 @@ entities: - type: Transform pos: -15.5,21.5 parent: 2 - - uid: 152 - components: - - type: Transform - pos: 15.5,-50.5 - parent: 2 - - uid: 153 - components: - - type: Transform - pos: -42.5,-1.5 - parent: 2 - - uid: 177 - components: - - type: Transform - pos: 0.5,-16.5 - parent: 2 - uid: 208 components: - type: Transform @@ -149141,11 +154270,6 @@ entities: - type: Transform pos: -37.5,-34.5 parent: 2 - - uid: 305 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 2 - uid: 319 components: - type: Transform @@ -149161,11 +154285,6 @@ entities: - type: Transform pos: 0.5,-43.5 parent: 2 - - uid: 337 - components: - - type: Transform - pos: -24.5,19.5 - parent: 2 - uid: 350 components: - type: Transform @@ -149176,41 +154295,16 @@ entities: - type: Transform pos: -26.5,-35.5 parent: 2 - - uid: 459 + - uid: 413 components: - type: Transform - pos: -23.5,12.5 - parent: 2 - - uid: 483 - components: - - type: Transform - pos: -46.5,1.5 + pos: -27.5,23.5 parent: 2 - uid: 542 components: - type: Transform pos: 67.5,-58.5 parent: 2 - - uid: 548 - components: - - type: Transform - pos: 23.5,-1.5 - parent: 2 - - uid: 549 - components: - - type: Transform - pos: -23.5,14.5 - parent: 2 - - uid: 590 - components: - - type: Transform - pos: 8.5,-37.5 - parent: 2 - - uid: 611 - components: - - type: Transform - pos: -21.5,21.5 - parent: 2 - uid: 620 components: - type: Transform @@ -149236,10 +154330,10 @@ entities: - type: Transform pos: -17.5,21.5 parent: 2 - - uid: 679 + - uid: 696 components: - type: Transform - pos: -40.5,-8.5 + pos: -30.5,-14.5 parent: 2 - uid: 766 components: @@ -149251,10 +154345,10 @@ entities: - type: Transform pos: -41.5,-56.5 parent: 2 - - uid: 870 + - uid: 919 components: - type: Transform - pos: -13.5,-25.5 + pos: -39.5,17.5 parent: 2 - uid: 928 components: @@ -149276,26 +154370,21 @@ entities: - type: Transform pos: 44.5,-59.5 parent: 2 - - uid: 1070 - components: - - type: Transform - pos: 75.5,-40.5 - parent: 2 - uid: 1079 components: - type: Transform pos: 73.5,-73.5 parent: 2 + - uid: 1084 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 - uid: 1103 components: - type: Transform pos: 71.5,-59.5 parent: 2 - - uid: 1110 - components: - - type: Transform - pos: -39.5,-25.5 - parent: 2 - uid: 1112 components: - type: Transform @@ -149316,11 +154405,6 @@ entities: - type: Transform pos: 33.5,-17.5 parent: 2 - - uid: 1150 - components: - - type: Transform - pos: 17.5,4.5 - parent: 2 - uid: 1155 components: - type: Transform @@ -149331,16 +154415,16 @@ entities: - type: Transform pos: -10.5,-16.5 parent: 2 + - uid: 1165 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 - uid: 1168 components: - type: Transform pos: 85.5,-20.5 parent: 2 - - uid: 1302 - components: - - type: Transform - pos: 30.5,19.5 - parent: 2 - uid: 1376 components: - type: Transform @@ -149356,11 +154440,6 @@ entities: - type: Transform pos: -12.5,18.5 parent: 2 - - uid: 1412 - components: - - type: Transform - pos: -6.5,-12.5 - parent: 2 - uid: 1439 components: - type: Transform @@ -149371,10 +154450,15 @@ entities: - type: Transform pos: 21.5,-45.5 parent: 2 - - uid: 1481 + - uid: 1489 components: - type: Transform - pos: -6.5,-45.5 + pos: -10.5,-1.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: -35.5,-16.5 parent: 2 - uid: 1506 components: @@ -149391,21 +154475,11 @@ entities: - type: Transform pos: -11.5,-0.5 parent: 2 - - uid: 1591 - components: - - type: Transform - pos: -12.5,-5.5 - parent: 2 - uid: 1592 components: - type: Transform pos: -7.5,-9.5 parent: 2 - - uid: 1643 - components: - - type: Transform - pos: 49.5,-43.5 - parent: 2 - uid: 1675 components: - type: Transform @@ -149421,10 +154495,15 @@ entities: - type: Transform pos: -25.5,21.5 parent: 2 - - uid: 1711 + - uid: 1707 components: - type: Transform - pos: 34.5,-6.5 + pos: -13.5,-5.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: -12.5,-5.5 parent: 2 - uid: 1714 components: @@ -149451,21 +154530,11 @@ entities: - type: Transform pos: 27.5,-40.5 parent: 2 - - uid: 1893 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 2 - uid: 2063 components: - type: Transform pos: 15.5,-4.5 parent: 2 - - uid: 2068 - components: - - type: Transform - pos: -41.5,-25.5 - parent: 2 - uid: 2072 components: - type: Transform @@ -149476,16 +154545,6 @@ entities: - type: Transform pos: 45.5,-31.5 parent: 2 - - uid: 2075 - components: - - type: Transform - pos: 46.5,-31.5 - parent: 2 - - uid: 2094 - components: - - type: Transform - pos: 36.5,-33.5 - parent: 2 - uid: 2143 components: - type: Transform @@ -149506,11 +154565,6 @@ entities: - type: Transform pos: 38.5,4.5 parent: 2 - - uid: 2277 - components: - - type: Transform - pos: -36.5,-34.5 - parent: 2 - uid: 2284 components: - type: Transform @@ -149521,6 +154575,11 @@ entities: - type: Transform pos: 19.5,-17.5 parent: 2 + - uid: 2295 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 - uid: 2307 components: - type: Transform @@ -149551,6 +154610,46 @@ entities: - type: Transform pos: 24.5,-1.5 parent: 2 + - uid: 2357 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: -28.5,18.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 - uid: 2413 components: - type: Transform @@ -149561,30 +154660,35 @@ entities: - type: Transform pos: -20.5,21.5 parent: 2 - - uid: 2438 + - uid: 2449 components: - type: Transform - pos: 40.5,-5.5 + pos: -30.5,21.5 parent: 2 - - uid: 2454 + - uid: 2467 components: - type: Transform - pos: 46.5,-26.5 + pos: -28.5,19.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: -18.5,-14.5 parent: 2 - uid: 2606 components: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 2607 + - uid: 2624 components: - type: Transform - pos: -6.5,-29.5 + pos: -36.5,-16.5 parent: 2 - - uid: 2682 + - uid: 2628 components: - type: Transform - pos: 23.5,-45.5 + pos: -18.5,-13.5 parent: 2 - uid: 2687 components: @@ -149601,11 +154705,6 @@ entities: - type: Transform pos: -21.5,-50.5 parent: 2 - - uid: 2744 - components: - - type: Transform - pos: -42.5,6.5 - parent: 2 - uid: 2745 components: - type: Transform @@ -149616,11 +154715,6 @@ entities: - type: Transform pos: -6.5,-17.5 parent: 2 - - uid: 2774 - components: - - type: Transform - pos: -42.5,5.5 - parent: 2 - uid: 2847 components: - type: Transform @@ -149646,31 +154740,11 @@ entities: - type: Transform pos: -12.5,-16.5 parent: 2 - - uid: 2943 - components: - - type: Transform - pos: 13.5,-46.5 - parent: 2 - uid: 2983 components: - type: Transform pos: -17.5,-49.5 parent: 2 - - uid: 3021 - components: - - type: Transform - pos: -45.5,-0.5 - parent: 2 - - uid: 3030 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 2 - - uid: 3067 - components: - - type: Transform - pos: 30.5,-46.5 - parent: 2 - uid: 3072 components: - type: Transform @@ -149686,11 +154760,6 @@ entities: - type: Transform pos: 23.5,-43.5 parent: 2 - - uid: 3081 - components: - - type: Transform - pos: -21.5,-21.5 - parent: 2 - uid: 3087 components: - type: Transform @@ -149706,11 +154775,6 @@ entities: - type: Transform pos: -16.5,-29.5 parent: 2 - - uid: 3127 - components: - - type: Transform - pos: 33.5,-18.5 - parent: 2 - uid: 3137 components: - type: Transform @@ -149726,11 +154790,6 @@ entities: - type: Transform pos: 61.5,-74.5 parent: 2 - - uid: 3194 - components: - - type: Transform - pos: -45.5,6.5 - parent: 2 - uid: 3207 components: - type: Transform @@ -149751,11 +154810,6 @@ entities: - type: Transform pos: -13.5,-28.5 parent: 2 - - uid: 3220 - components: - - type: Transform - pos: 2.5,-28.5 - parent: 2 - uid: 3231 components: - type: Transform @@ -149801,11 +154855,6 @@ entities: - type: Transform pos: 49.5,-27.5 parent: 2 - - uid: 3305 - components: - - type: Transform - pos: -13.5,-36.5 - parent: 2 - uid: 3308 components: - type: Transform @@ -149846,11 +154895,6 @@ entities: - type: Transform pos: -15.5,-21.5 parent: 2 - - uid: 3355 - components: - - type: Transform - pos: 22.5,-17.5 - parent: 2 - uid: 3379 components: - type: Transform @@ -149866,11 +154910,6 @@ entities: - type: Transform pos: 14.5,-7.5 parent: 2 - - uid: 3410 - components: - - type: Transform - pos: -21.5,-29.5 - parent: 2 - uid: 3411 components: - type: Transform @@ -149881,21 +154920,6 @@ entities: - type: Transform pos: 14.5,-9.5 parent: 2 - - uid: 3429 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 2 - - uid: 3442 - components: - - type: Transform - pos: -13.5,-39.5 - parent: 2 - - uid: 3448 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 2 - uid: 3453 components: - type: Transform @@ -149921,11 +154945,6 @@ entities: - type: Transform pos: -3.5,-36.5 parent: 2 - - uid: 3480 - components: - - type: Transform - pos: -1.5,-36.5 - parent: 2 - uid: 3481 components: - type: Transform @@ -149941,11 +154960,6 @@ entities: - type: Transform pos: 6.5,-26.5 parent: 2 - - uid: 3509 - components: - - type: Transform - pos: 13.5,-37.5 - parent: 2 - uid: 3518 components: - type: Transform @@ -149981,16 +154995,6 @@ entities: - type: Transform pos: 20.5,-34.5 parent: 2 - - uid: 3773 - components: - - type: Transform - pos: 13.5,-34.5 - parent: 2 - - uid: 3812 - components: - - type: Transform - pos: 0.5,-45.5 - parent: 2 - uid: 3813 components: - type: Transform @@ -150006,16 +155010,6 @@ entities: - type: Transform pos: -9.5,-29.5 parent: 2 - - uid: 3834 - components: - - type: Transform - pos: 12.5,-45.5 - parent: 2 - - uid: 3840 - components: - - type: Transform - pos: 12.5,-46.5 - parent: 2 - uid: 3841 components: - type: Transform @@ -150031,11 +155025,6 @@ entities: - type: Transform pos: 23.5,-35.5 parent: 2 - - uid: 3853 - components: - - type: Transform - pos: 23.5,-34.5 - parent: 2 - uid: 3854 components: - type: Transform @@ -150051,11 +155040,6 @@ entities: - type: Transform pos: -53.5,-56.5 parent: 2 - - uid: 3983 - components: - - type: Transform - pos: -50.5,-53.5 - parent: 2 - uid: 4004 components: - type: Transform @@ -150071,11 +155055,6 @@ entities: - type: Transform pos: -0.5,-30.5 parent: 2 - - uid: 4044 - components: - - type: Transform - pos: 25.5,-1.5 - parent: 2 - uid: 4055 components: - type: Transform @@ -150096,11 +155075,6 @@ entities: - type: Transform pos: 46.5,-59.5 parent: 2 - - uid: 4173 - components: - - type: Transform - pos: 35.5,-39.5 - parent: 2 - uid: 4179 components: - type: Transform @@ -150136,11 +155110,6 @@ entities: - type: Transform pos: 28.5,-40.5 parent: 2 - - uid: 4340 - components: - - type: Transform - pos: 30.5,-40.5 - parent: 2 - uid: 4441 components: - type: Transform @@ -150161,21 +155130,6 @@ entities: - type: Transform pos: 28.5,9.5 parent: 2 - - uid: 4481 - components: - - type: Transform - pos: 30.5,-44.5 - parent: 2 - - uid: 4520 - components: - - type: Transform - pos: 0.5,-42.5 - parent: 2 - - uid: 4524 - components: - - type: Transform - pos: 33.5,-14.5 - parent: 2 - uid: 4558 components: - type: Transform @@ -150186,11 +155140,6 @@ entities: - type: Transform pos: 8.5,-40.5 parent: 2 - - uid: 4682 - components: - - type: Transform - pos: -42.5,0.5 - parent: 2 - uid: 4694 components: - type: Transform @@ -150201,45 +155150,15 @@ entities: - type: Transform pos: 68.5,-66.5 parent: 2 - - uid: 4717 - components: - - type: Transform - pos: -42.5,1.5 - parent: 2 - - uid: 4789 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 2 - - uid: 4828 - components: - - type: Transform - pos: -36.5,-25.5 - parent: 2 - uid: 4862 components: - type: Transform pos: 71.5,-68.5 parent: 2 - - uid: 4867 + - uid: 4884 components: - type: Transform - pos: 66.5,-40.5 - parent: 2 - - uid: 4871 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 2 - - uid: 4877 - components: - - type: Transform - pos: -41.5,-2.5 - parent: 2 - - uid: 4883 - components: - - type: Transform - pos: 18.5,-5.5 + pos: 37.5,-39.5 parent: 2 - uid: 4885 components: @@ -150251,21 +155170,11 @@ entities: - type: Transform pos: 34.5,16.5 parent: 2 - - uid: 4923 - components: - - type: Transform - pos: 49.5,-37.5 - parent: 2 - uid: 4931 components: - type: Transform pos: 14.5,-10.5 parent: 2 - - uid: 4935 - components: - - type: Transform - pos: 49.5,-38.5 - parent: 2 - uid: 4951 components: - type: Transform @@ -150276,11 +155185,21 @@ entities: - type: Transform pos: -35.5,-55.5 parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 30.5,-39.5 + parent: 2 - uid: 5101 components: - type: Transform pos: 35.5,10.5 parent: 2 + - uid: 5102 + components: + - type: Transform + pos: 18.5,-51.5 + parent: 2 - uid: 5155 components: - type: Transform @@ -150294,13 +155213,18 @@ entities: - uid: 5165 components: - type: Transform - pos: 23.5,-44.5 + pos: 22.5,-48.5 parent: 2 - uid: 5175 components: - type: Transform pos: 42.5,-6.5 parent: 2 + - uid: 5176 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 - uid: 5181 components: - type: Transform @@ -150341,45 +155265,70 @@ entities: - type: Transform pos: -10.5,-15.5 parent: 2 + - uid: 5290 + components: + - type: Transform + pos: 44.5,-27.5 + parent: 2 - uid: 5304 components: - type: Transform - pos: 7.5,-37.5 + pos: -13.5,-9.5 parent: 2 - uid: 5319 components: - type: Transform pos: 35.5,5.5 parent: 2 + - uid: 5324 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 2 + - uid: 5342 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 5349 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + pos: -52.5,-31.5 + parent: 2 - uid: 5413 components: - type: Transform - pos: 22.5,4.5 + pos: 34.5,5.5 parent: 2 - uid: 5422 components: - type: Transform pos: 11.5,21.5 parent: 2 - - uid: 5425 + - uid: 5460 components: - type: Transform - pos: 40.5,16.5 + pos: 39.5,-2.5 parent: 2 - uid: 5479 components: - type: Transform pos: -41.5,-34.5 parent: 2 - - uid: 5488 + - uid: 5510 components: - type: Transform - pos: 0.5,-46.5 + pos: 47.5,-23.5 parent: 2 - uid: 5513 components: - type: Transform - pos: 10.5,26.5 + pos: 12.5,-34.5 parent: 2 - uid: 5522 components: @@ -150396,11 +155345,21 @@ entities: - type: Transform pos: 44.5,-7.5 parent: 2 + - uid: 5544 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 - uid: 5547 components: - type: Transform pos: 36.5,16.5 parent: 2 + - uid: 5569 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 - uid: 5572 components: - type: Transform @@ -150409,12 +155368,12 @@ entities: - uid: 5580 components: - type: Transform - pos: 29.5,20.5 + pos: -17.5,-44.5 parent: 2 - uid: 5585 components: - type: Transform - pos: -11.5,-49.5 + pos: -51.5,-49.5 parent: 2 - uid: 5601 components: @@ -150436,6 +155395,11 @@ entities: - type: Transform pos: 63.5,-79.5 parent: 2 + - uid: 5636 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 - uid: 5653 components: - type: Transform @@ -150466,10 +155430,10 @@ entities: - type: Transform pos: -20.5,-39.5 parent: 2 - - uid: 5723 + - uid: 5732 components: - type: Transform - pos: 39.5,9.5 + pos: 14.5,-54.5 parent: 2 - uid: 5733 components: @@ -150486,6 +155450,11 @@ entities: - type: Transform pos: -14.5,-25.5 parent: 2 + - uid: 5754 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 - uid: 5766 components: - type: Transform @@ -150501,6 +155470,11 @@ entities: - type: Transform pos: 33.5,-12.5 parent: 2 + - uid: 5771 + components: + - type: Transform + pos: 12.5,-58.5 + parent: 2 - uid: 5773 components: - type: Transform @@ -150514,7 +155488,7 @@ entities: - uid: 5777 components: - type: Transform - pos: 33.5,-11.5 + pos: 13.5,-50.5 parent: 2 - uid: 5778 components: @@ -150529,7 +155503,7 @@ entities: - uid: 5784 components: - type: Transform - pos: 34.5,-4.5 + pos: 24.5,4.5 parent: 2 - uid: 5795 components: @@ -150561,6 +155535,11 @@ entities: - type: Transform pos: -20.5,-31.5 parent: 2 + - uid: 5806 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 - uid: 5812 components: - type: Transform @@ -150576,11 +155555,6 @@ entities: - type: Transform pos: 35.5,11.5 parent: 2 - - uid: 5830 - components: - - type: Transform - pos: 8.5,-26.5 - parent: 2 - uid: 5835 components: - type: Transform @@ -150591,11 +155565,21 @@ entities: - type: Transform pos: 86.5,-17.5 parent: 2 + - uid: 5839 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 - uid: 5859 components: - type: Transform pos: 5.5,-40.5 parent: 2 + - uid: 5864 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 - uid: 5875 components: - type: Transform @@ -150606,6 +155590,16 @@ entities: - type: Transform pos: 39.5,1.5 parent: 2 + - uid: 5886 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 2 - uid: 5895 components: - type: Transform @@ -150614,18 +155608,18 @@ entities: - uid: 5906 components: - type: Transform - pos: 4.5,-35.5 + pos: 8.5,-35.5 + parent: 2 + - uid: 5909 + components: + - type: Transform + pos: 39.5,-12.5 parent: 2 - uid: 5912 components: - type: Transform pos: 6.5,-29.5 parent: 2 - - uid: 5915 - components: - - type: Transform - pos: 4.5,-27.5 - parent: 2 - uid: 5916 components: - type: Transform @@ -150634,17 +155628,32 @@ entities: - uid: 5928 components: - type: Transform - pos: 4.5,-29.5 + pos: 19.5,-34.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + pos: -44.5,-52.5 parent: 2 - uid: 5940 components: - type: Transform pos: 4.5,-33.5 parent: 2 + - uid: 5942 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 - uid: 5955 components: - type: Transform - pos: 22.5,-46.5 + pos: 40.5,0.5 + parent: 2 + - uid: 5957 + components: + - type: Transform + pos: 35.5,12.5 parent: 2 - uid: 5958 components: @@ -150666,15 +155675,15 @@ entities: - type: Transform pos: 21.5,-51.5 parent: 2 - - uid: 5975 + - uid: 5970 components: - type: Transform - pos: 22.5,-47.5 + pos: -12.5,-29.5 parent: 2 - uid: 6023 components: - type: Transform - pos: 6.5,-32.5 + pos: 12.5,-35.5 parent: 2 - uid: 6024 components: @@ -150696,75 +155705,160 @@ entities: - type: Transform pos: 39.5,-9.5 parent: 2 + - uid: 6053 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 - uid: 6069 components: - type: Transform pos: 39.5,-5.5 parent: 2 - - uid: 6112 + - uid: 6108 components: - type: Transform - pos: 33.5,-13.5 + pos: 8.5,-58.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + pos: -47.5,-55.5 parent: 2 - uid: 6152 components: - type: Transform - pos: 17.5,8.5 + pos: 12.5,-54.5 parent: 2 - uid: 6158 components: - type: Transform pos: 34.5,-0.5 parent: 2 - - uid: 6160 + - uid: 6159 components: - type: Transform - pos: 36.5,-0.5 + pos: -50.5,-56.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + pos: -41.5,-24.5 parent: 2 - uid: 6241 components: - type: Transform - pos: 34.5,-3.5 + pos: 20.5,-51.5 parent: 2 - - uid: 6294 + - uid: 6257 components: - type: Transform - pos: 49.5,-39.5 + pos: -12.5,-49.5 parent: 2 - - uid: 6295 + - uid: 6288 components: - type: Transform - pos: 6.5,-43.5 + pos: 2.5,-34.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: -11.5,-25.5 parent: 2 - uid: 6300 components: - type: Transform pos: 20.5,-42.5 parent: 2 + - uid: 6306 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 - uid: 6346 components: - type: Transform pos: 8.5,-46.5 parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 - uid: 6356 components: - type: Transform pos: -15.5,-49.5 parent: 2 + - uid: 6360 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 2 - uid: 6365 components: - type: Transform pos: 20.5,-44.5 parent: 2 + - uid: 6379 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + pos: 39.5,10.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 - uid: 6429 components: - type: Transform - pos: 12.5,-55.5 + pos: 39.5,-1.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + pos: 20.5,-58.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + pos: 39.5,-0.5 parent: 2 - uid: 6494 components: - type: Transform - pos: 25.5,-2.5 + pos: -21.5,-39.5 parent: 2 - uid: 6495 components: @@ -150776,15 +155870,10 @@ entities: - type: Transform pos: 39.5,8.5 parent: 2 - - uid: 6507 - components: - - type: Transform - pos: -16.5,-49.5 - parent: 2 - uid: 6517 components: - type: Transform - pos: 3.5,-42.5 + pos: 2.5,-30.5 parent: 2 - uid: 6518 components: @@ -150801,6 +155890,11 @@ entities: - type: Transform pos: 8.5,-43.5 parent: 2 + - uid: 6556 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 2 - uid: 6561 components: - type: Transform @@ -150809,12 +155903,52 @@ entities: - uid: 6566 components: - type: Transform - pos: 17.5,-14.5 + pos: -44.5,-54.5 parent: 2 - - uid: 6572 + - uid: 6588 components: - type: Transform - pos: 17.5,-15.5 + pos: -47.5,-49.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - uid: 6618 + components: + - type: Transform + pos: 22.5,-45.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + pos: -21.5,-51.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + pos: 17.5,-57.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: 30.5,23.5 parent: 2 - uid: 6681 components: @@ -150824,37 +155958,87 @@ entities: - uid: 6682 components: - type: Transform - pos: 21.5,-55.5 + pos: 18.5,-53.5 parent: 2 - - uid: 6684 + - uid: 6713 components: - type: Transform - pos: 19.5,-55.5 + pos: 47.5,-10.5 parent: 2 - - uid: 6685 + - uid: 6741 components: - type: Transform - pos: 18.5,-55.5 + pos: 22.5,-18.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: -45.5,-49.5 parent: 2 - uid: 6840 components: - type: Transform pos: 22.5,-42.5 parent: 2 + - uid: 6850 + components: + - type: Transform + pos: -35.5,-56.5 + parent: 2 - uid: 6863 components: - type: Transform pos: 21.5,-42.5 parent: 2 + - uid: 6908 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 2 - uid: 6929 components: - type: Transform pos: -6.5,-15.5 parent: 2 + - uid: 6934 + components: + - type: Transform + pos: -39.5,-46.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + pos: 22.5,-52.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 6988 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 - uid: 6992 components: - type: Transform - pos: -39.5,-51.5 + pos: 30.5,16.5 + parent: 2 + - uid: 7021 + components: + - type: Transform + pos: 7.5,-26.5 parent: 2 - uid: 7022 components: @@ -150866,35 +156050,55 @@ entities: - type: Transform pos: -37.5,-56.5 parent: 2 + - uid: 7060 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 2 - uid: 7069 components: - type: Transform pos: 15.5,-54.5 parent: 2 - - uid: 7077 - components: - - type: Transform - pos: 48.5,-6.5 - parent: 2 - uid: 7080 components: - type: Transform - pos: -42.5,-52.5 + pos: 20.5,-57.5 parent: 2 - - uid: 7098 + - uid: 7092 components: - type: Transform - pos: 42.5,-8.5 + pos: -52.5,-56.5 parent: 2 - - uid: 7174 + - uid: 7106 components: - type: Transform - pos: 3.5,-45.5 + pos: 35.5,-5.5 parent: 2 - - uid: 7217 + - uid: 7107 components: - type: Transform - pos: 24.5,-18.5 + pos: -6.5,-9.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + pos: 25.5,-15.5 parent: 2 - uid: 7224 components: @@ -150906,26 +156110,31 @@ entities: - type: Transform pos: 29.5,-17.5 parent: 2 - - uid: 7241 + - uid: 7240 components: - type: Transform - pos: 44.5,-26.5 + pos: 44.5,-31.5 parent: 2 - uid: 7277 components: - type: Transform pos: 38.5,1.5 parent: 2 - - uid: 7283 - components: - - type: Transform - pos: 34.5,4.5 - parent: 2 - uid: 7285 components: - type: Transform pos: 40.5,1.5 parent: 2 + - uid: 7286 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 2 - uid: 7299 components: - type: Transform @@ -150936,11 +156145,56 @@ entities: - type: Transform pos: 40.5,4.5 parent: 2 + - uid: 7314 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: -39.5,-56.5 + parent: 2 - uid: 7403 components: - type: Transform pos: 37.5,5.5 parent: 2 + - uid: 7419 + components: + - type: Transform + pos: -18.5,-31.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + pos: -47.5,-50.5 + parent: 2 + - uid: 7529 + components: + - type: Transform + pos: -38.5,-56.5 + parent: 2 - uid: 7534 components: - type: Transform @@ -150951,31 +156205,91 @@ entities: - type: Transform pos: -11.5,-44.5 parent: 2 + - uid: 7546 + components: + - type: Transform + pos: -46.5,-34.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 2 - uid: 7596 components: - type: Transform pos: 1.5,-46.5 parent: 2 - - uid: 7611 + - uid: 7612 components: - type: Transform - pos: 12.5,-50.5 + pos: 27.5,14.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + pos: -21.5,-35.5 parent: 2 - uid: 7635 components: - type: Transform pos: -39.5,-52.5 parent: 2 + - uid: 7641 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + pos: 5.5,-46.5 + parent: 2 - uid: 7657 components: - type: Transform pos: -8.5,-89.5 parent: 2 + - uid: 7661 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 2 - uid: 7666 components: - type: Transform pos: 34.5,7.5 parent: 2 + - uid: 7667 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 2 - uid: 7760 components: - type: Transform @@ -150986,35 +156300,135 @@ entities: - type: Transform pos: 10.5,27.5 parent: 2 + - uid: 7820 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - uid: 7823 + components: + - type: Transform + pos: -24.5,-54.5 + parent: 2 + - uid: 7831 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 - uid: 7933 components: - type: Transform - pos: 22.5,-15.5 + pos: -12.5,19.5 parent: 2 - - uid: 8278 + - uid: 8022 components: - type: Transform - pos: 46.5,-8.5 + pos: -39.5,-53.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 8049 + components: + - type: Transform + pos: -50.5,-50.5 + parent: 2 + - uid: 8054 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 8089 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 8175 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 8196 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 + - uid: 8235 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - uid: 8271 + components: + - type: Transform + pos: -46.5,-33.5 + parent: 2 + - uid: 8273 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 8276 + components: + - type: Transform + pos: 22.5,-50.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + pos: 23.5,3.5 parent: 2 - uid: 8305 components: - type: Transform - pos: 46.5,-14.5 + pos: 13.5,-12.5 parent: 2 - - uid: 8319 + - uid: 8318 components: - type: Transform - pos: 46.5,-11.5 + pos: -45.5,-33.5 parent: 2 - - uid: 8364 + - uid: 8376 components: - type: Transform - pos: 20.5,-38.5 + pos: 33.5,-10.5 parent: 2 - - uid: 8393 + - uid: 8386 components: - type: Transform - pos: 47.5,-6.5 + pos: -21.5,-25.5 + parent: 2 + - uid: 8388 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 8392 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: 23.5,-39.5 parent: 2 - uid: 8421 components: @@ -151026,15 +156440,20 @@ entities: - type: Transform pos: -44.5,-56.5 parent: 2 + - uid: 8463 + components: + - type: Transform + pos: 22.5,-51.5 + parent: 2 - uid: 8466 components: - type: Transform - pos: -3.5,-16.5 + pos: 19.5,-1.5 parent: 2 - - uid: 8502 + - uid: 8492 components: - type: Transform - pos: -40.5,-9.5 + pos: -20.5,-35.5 parent: 2 - uid: 8503 components: @@ -151044,53 +156463,23 @@ entities: - uid: 8542 components: - type: Transform - pos: 17.5,-12.5 - parent: 2 - - uid: 8645 - components: - - type: Transform - pos: 40.5,7.5 + pos: 35.5,15.5 parent: 2 - uid: 8654 components: - type: Transform pos: 34.5,9.5 parent: 2 - - uid: 8746 - components: - - type: Transform - pos: -48.5,4.5 - parent: 2 - - uid: 8767 - components: - - type: Transform - pos: -2.5,-16.5 - parent: 2 - uid: 8829 components: - type: Transform pos: -11.5,18.5 parent: 2 - - uid: 8886 - components: - - type: Transform - pos: 46.5,-15.5 - parent: 2 - - uid: 8909 - components: - - type: Transform - pos: 45.5,-26.5 - parent: 2 - uid: 8984 components: - type: Transform pos: 44.5,-28.5 parent: 2 - - uid: 9045 - components: - - type: Transform - pos: 44.5,-29.5 - parent: 2 - uid: 9047 components: - type: Transform @@ -151116,16 +156505,6 @@ entities: - type: Transform pos: 51.5,-23.5 parent: 2 - - uid: 9255 - components: - - type: Transform - pos: -45.5,5.5 - parent: 2 - - uid: 9287 - components: - - type: Transform - pos: -41.5,-26.5 - parent: 2 - uid: 9306 components: - type: Transform @@ -151141,11 +156520,6 @@ entities: - type: Transform pos: 12.5,-60.5 parent: 2 - - uid: 9323 - components: - - type: Transform - pos: 51.5,-19.5 - parent: 2 - uid: 9367 components: - type: Transform @@ -151161,11 +156535,6 @@ entities: - type: Transform pos: 23.5,-59.5 parent: 2 - - uid: 9407 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 2 - uid: 9429 components: - type: Transform @@ -151191,6 +156560,26 @@ entities: - type: Transform pos: 2.5,-16.5 parent: 2 + - uid: 9643 + components: + - type: Transform + pos: -33.5,8.5 + parent: 2 + - uid: 9645 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 9660 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 9661 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 - uid: 9662 components: - type: Transform @@ -151201,6 +156590,11 @@ entities: - type: Transform pos: 17.5,2.5 parent: 2 + - uid: 9677 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 - uid: 9679 components: - type: Transform @@ -151211,36 +156605,51 @@ entities: - type: Transform pos: 17.5,0.5 parent: 2 - - uid: 9687 - components: - - type: Transform - pos: -35.5,-46.5 - parent: 2 - uid: 9714 components: - type: Transform pos: -21.5,-53.5 parent: 2 + - uid: 9718 + components: + - type: Transform + pos: -41.5,10.5 + parent: 2 + - uid: 9725 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 - uid: 9837 components: - type: Transform pos: -18.5,-46.5 parent: 2 + - uid: 9968 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 9992 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 - uid: 9995 components: - type: Transform pos: 65.5,-74.5 parent: 2 + - uid: 10011 + components: + - type: Transform + pos: -39.5,10.5 + parent: 2 - uid: 10054 components: - type: Transform pos: 18.5,9.5 parent: 2 - - uid: 10059 - components: - - type: Transform - pos: 19.5,9.5 - parent: 2 - uid: 10109 components: - type: Transform @@ -151271,10 +156680,15 @@ entities: - type: Transform pos: 23.5,1.5 parent: 2 - - uid: 10187 + - uid: 10143 components: - type: Transform - pos: 2.5,-15.5 + pos: -39.5,12.5 + parent: 2 + - uid: 10145 + components: + - type: Transform + pos: -39.5,14.5 parent: 2 - uid: 10196 components: @@ -151286,6 +156700,16 @@ entities: - type: Transform pos: 29.5,-4.5 parent: 2 + - uid: 10420 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 10421 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 - uid: 10454 components: - type: Transform @@ -151296,11 +156720,6 @@ entities: - type: Transform pos: -6.5,12.5 parent: 2 - - uid: 10467 - components: - - type: Transform - pos: -50.5,-55.5 - parent: 2 - uid: 10472 components: - type: Transform @@ -151321,21 +156740,6 @@ entities: - type: Transform pos: 23.5,0.5 parent: 2 - - uid: 10611 - components: - - type: Transform - pos: -6.5,-8.5 - parent: 2 - - uid: 10612 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 2 - - uid: 10618 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 2 - uid: 10622 components: - type: Transform @@ -151351,6 +156755,11 @@ entities: - type: Transform pos: -4.5,-5.5 parent: 2 + - uid: 10653 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 - uid: 10663 components: - type: Transform @@ -151421,11 +156830,6 @@ entities: - type: Transform pos: 73.5,-74.5 parent: 2 - - uid: 10970 - components: - - type: Transform - pos: 12.5,-56.5 - parent: 2 - uid: 11104 components: - type: Transform @@ -151441,21 +156845,6 @@ entities: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 11161 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 2 - - uid: 11205 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 2 - - uid: 11212 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 2 - uid: 11228 components: - type: Transform @@ -151481,11 +156870,6 @@ entities: - type: Transform pos: -26.5,-37.5 parent: 2 - - uid: 11435 - components: - - type: Transform - pos: 23.5,9.5 - parent: 2 - uid: 11518 components: - type: Transform @@ -151496,10 +156880,15 @@ entities: - type: Transform pos: 63.5,-80.5 parent: 2 - - uid: 11722 + - uid: 11848 components: - type: Transform - pos: -45.5,-26.5 + pos: -23.5,-6.5 + parent: 2 + - uid: 11879 + components: + - type: Transform + pos: -23.5,-7.5 parent: 2 - uid: 11888 components: @@ -151566,16 +156955,6 @@ entities: - type: Transform pos: 13.5,21.5 parent: 2 - - uid: 12514 - components: - - type: Transform - pos: -46.5,-35.5 - parent: 2 - - uid: 12515 - components: - - type: Transform - pos: -31.5,19.5 - parent: 2 - uid: 12564 components: - type: Transform @@ -151606,16 +156985,21 @@ entities: - type: Transform pos: -46.5,-36.5 parent: 2 + - uid: 12694 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - uid: 12720 + components: + - type: Transform + pos: -41.5,23.5 + parent: 2 - uid: 12721 components: - type: Transform pos: 8.5,-57.5 parent: 2 - - uid: 12773 - components: - - type: Transform - pos: -56.5,-31.5 - parent: 2 - uid: 12797 components: - type: Transform @@ -151656,10 +157040,10 @@ entities: - type: Transform pos: -56.5,-28.5 parent: 2 - - uid: 12942 + - uid: 12880 components: - type: Transform - pos: 22.5,-16.5 + pos: -30.5,26.5 parent: 2 - uid: 13072 components: @@ -151681,11 +157065,6 @@ entities: - type: Transform pos: 50.5,-49.5 parent: 2 - - uid: 13153 - components: - - type: Transform - pos: 26.5,12.5 - parent: 2 - uid: 13177 components: - type: Transform @@ -151716,11 +157095,6 @@ entities: - type: Transform pos: -45.5,-55.5 parent: 2 - - uid: 13215 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 2 - uid: 13222 components: - type: Transform @@ -151751,6 +157125,11 @@ entities: - type: Transform pos: 12.5,-27.5 parent: 2 + - uid: 13276 + components: + - type: Transform + pos: -45.5,9.5 + parent: 2 - uid: 13304 components: - type: Transform @@ -151761,10 +157140,15 @@ entities: - type: Transform pos: 41.5,-58.5 parent: 2 - - uid: 13360 + - uid: 13344 components: - type: Transform - pos: 28.5,-13.5 + pos: -46.5,9.5 + parent: 2 + - uid: 13366 + components: + - type: Transform + pos: -49.5,9.5 parent: 2 - uid: 13672 components: @@ -151776,41 +157160,21 @@ entities: - type: Transform pos: 30.5,17.5 parent: 2 - - uid: 13712 - components: - - type: Transform - pos: -44.5,-57.5 - parent: 2 - uid: 13720 components: - type: Transform pos: 21.5,-5.5 parent: 2 - - uid: 13727 - components: - - type: Transform - pos: 1.5,-42.5 - parent: 2 - uid: 13756 components: - type: Transform pos: 26.5,-19.5 parent: 2 - - uid: 13757 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 2 - uid: 13759 components: - type: Transform pos: 22.5,-19.5 parent: 2 - - uid: 13787 - components: - - type: Transform - pos: -29.5,-23.5 - parent: 2 - uid: 13801 components: - type: Transform @@ -151831,16 +157195,21 @@ entities: - type: Transform pos: 22.5,-57.5 parent: 2 - - uid: 13899 + - uid: 14126 components: - type: Transform - pos: -45.5,7.5 + pos: -49.5,22.5 parent: 2 - uid: 14136 components: - type: Transform pos: 29.5,14.5 parent: 2 + - uid: 14165 + components: + - type: Transform + pos: -50.5,22.5 + parent: 2 - uid: 14167 components: - type: Transform @@ -151856,16 +157225,6 @@ entities: - type: Transform pos: -36.5,-40.5 parent: 2 - - uid: 14175 - components: - - type: Transform - pos: -42.5,-47.5 - parent: 2 - - uid: 14176 - components: - - type: Transform - pos: -41.5,-47.5 - parent: 2 - uid: 14177 components: - type: Transform @@ -151881,6 +157240,11 @@ entities: - type: Transform pos: -39.5,-47.5 parent: 2 + - uid: 14451 + components: + - type: Transform + pos: -50.5,17.5 + parent: 2 - uid: 14475 components: - type: Transform @@ -151891,16 +157255,31 @@ entities: - type: Transform pos: 47.5,-41.5 parent: 2 - - uid: 14491 - components: - - type: Transform - pos: -40.5,-6.5 - parent: 2 - uid: 14516 components: - type: Transform pos: 45.5,-41.5 parent: 2 + - uid: 14574 + components: + - type: Transform + pos: -37.5,22.5 + parent: 2 + - uid: 14576 + components: + - type: Transform + pos: -36.5,22.5 + parent: 2 + - uid: 14577 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - uid: 14579 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 - uid: 14580 components: - type: Transform @@ -151911,36 +157290,31 @@ entities: - type: Transform pos: 41.5,-12.5 parent: 2 + - uid: 14826 + components: + - type: Transform + pos: -28.5,22.5 + parent: 2 + - uid: 14838 + components: + - type: Transform + pos: -45.5,20.5 + parent: 2 + - uid: 14957 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 - uid: 15041 components: - type: Transform pos: 2.5,-42.5 parent: 2 - - uid: 15045 - components: - - type: Transform - pos: 12.5,-59.5 - parent: 2 - - uid: 15251 - components: - - type: Transform - pos: -36.5,-47.5 - parent: 2 - uid: 15252 components: - type: Transform pos: -37.5,-47.5 parent: 2 - - uid: 15253 - components: - - type: Transform - pos: -42.5,-51.5 - parent: 2 - - uid: 15308 - components: - - type: Transform - pos: -27.5,8.5 - parent: 2 - uid: 15345 components: - type: Transform @@ -151956,16 +157330,6 @@ entities: - type: Transform pos: -24.5,21.5 parent: 2 - - uid: 15466 - components: - - type: Transform - pos: 17.5,-59.5 - parent: 2 - - uid: 15478 - components: - - type: Transform - pos: 43.5,-8.5 - parent: 2 - uid: 15606 components: - type: Transform @@ -151976,6 +157340,11 @@ entities: - type: Transform pos: 38.5,11.5 parent: 2 + - uid: 15710 + components: + - type: Transform + pos: -45.5,22.5 + parent: 2 - uid: 15712 components: - type: Transform @@ -151986,26 +157355,16 @@ entities: - type: Transform pos: 38.5,12.5 parent: 2 - - uid: 15815 + - uid: 15877 components: - type: Transform - pos: 8.5,21.5 - parent: 2 - - uid: 15896 - components: - - type: Transform - pos: 17.5,-0.5 + pos: -48.5,17.5 parent: 2 - uid: 15903 components: - type: Transform pos: 7.5,21.5 parent: 2 - - uid: 15939 - components: - - type: Transform - pos: -23.5,13.5 - parent: 2 - uid: 15947 components: - type: Transform @@ -152016,6 +157375,16 @@ entities: - type: Transform pos: 38.5,-8.5 parent: 2 + - uid: 16099 + components: + - type: Transform + pos: -52.5,9.5 + parent: 2 + - uid: 16112 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 - uid: 16162 components: - type: Transform @@ -152036,40 +157405,60 @@ entities: - type: Transform pos: 37.5,16.5 parent: 2 - - uid: 16251 + - uid: 16272 components: - type: Transform - pos: -44.5,1.5 + pos: -50.5,20.5 parent: 2 - - uid: 16258 + - uid: 16280 components: - type: Transform - pos: -42.5,7.5 + pos: -50.5,18.5 parent: 2 - - uid: 16323 + - uid: 16282 components: - type: Transform - pos: 15.5,-12.5 + pos: -54.5,9.5 parent: 2 - - uid: 16530 + - uid: 16285 components: - type: Transform - pos: 6.5,21.5 + pos: -54.5,11.5 parent: 2 - - uid: 16636 + - uid: 16286 components: - type: Transform - pos: -34.5,19.5 + pos: -54.5,14.5 parent: 2 - - uid: 16655 + - uid: 16298 components: - type: Transform - pos: 34.5,10.5 + pos: -55.5,9.5 parent: 2 - - uid: 16899 + - uid: 16359 components: - type: Transform - pos: -44.5,-53.5 + pos: -47.5,9.5 + parent: 2 + - uid: 16478 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 + - uid: 16480 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 16481 + components: + - type: Transform + pos: -50.5,14.5 + parent: 2 + - uid: 16758 + components: + - type: Transform + pos: 49.5,-40.5 parent: 2 - uid: 16911 components: @@ -152106,35 +157495,20 @@ entities: - type: Transform pos: -48.5,-52.5 parent: 2 - - uid: 16947 - components: - - type: Transform - pos: -21.5,-17.5 - parent: 2 - - uid: 16949 - components: - - type: Transform - pos: 47.5,-26.5 - parent: 2 - uid: 17001 components: - type: Transform pos: 18.5,-52.5 parent: 2 - - uid: 17011 - components: - - type: Transform - pos: 10.5,21.5 - parent: 2 - uid: 17153 components: - type: Transform pos: -42.5,-56.5 parent: 2 - - uid: 17188 + - uid: 17296 components: - type: Transform - pos: -40.5,-56.5 + pos: 49.5,-34.5 parent: 2 - uid: 17315 components: @@ -152161,16 +157535,6 @@ entities: - type: Transform pos: 86.5,-22.5 parent: 2 - - uid: 17752 - components: - - type: Transform - pos: -46.5,-49.5 - parent: 2 - - uid: 17816 - components: - - type: Transform - pos: -33.5,19.5 - parent: 2 - uid: 17837 components: - type: Transform @@ -152181,31 +157545,16 @@ entities: - type: Transform pos: -46.5,-29.5 parent: 2 - - uid: 17860 - components: - - type: Transform - pos: -42.5,-0.5 - parent: 2 - uid: 18161 components: - type: Transform pos: 30.5,20.5 parent: 2 - - uid: 18211 - components: - - type: Transform - pos: -25.5,-48.5 - parent: 2 - uid: 18341 components: - type: Transform pos: 93.5,-20.5 parent: 2 - - uid: 18382 - components: - - type: Transform - pos: 20.5,-55.5 - parent: 2 - uid: 18424 components: - type: Transform @@ -152251,21 +157600,11 @@ entities: - type: Transform pos: 41.5,10.5 parent: 2 - - uid: 18604 - components: - - type: Transform - pos: -45.5,0.5 - parent: 2 - uid: 18622 components: - type: Transform pos: 38.5,7.5 parent: 2 - - uid: 18762 - components: - - type: Transform - pos: -44.5,5.5 - parent: 2 - uid: 18855 components: - type: Transform @@ -152276,16 +157615,6 @@ entities: - type: Transform pos: 30.5,9.5 parent: 2 - - uid: 18863 - components: - - type: Transform - pos: 46.5,-13.5 - parent: 2 - - uid: 19130 - components: - - type: Transform - pos: -48.5,2.5 - parent: 2 - uid: 19187 components: - type: Transform @@ -152306,26 +157635,11 @@ entities: - type: Transform pos: -8.5,-90.5 parent: 2 - - uid: 19895 - components: - - type: Transform - pos: 30.5,15.5 - parent: 2 - uid: 19918 components: - type: Transform pos: -11.5,21.5 parent: 2 - - uid: 19972 - components: - - type: Transform - pos: -45.5,1.5 - parent: 2 - - uid: 20172 - components: - - type: Transform - pos: 20.5,9.5 - parent: 2 - uid: 20176 components: - type: Transform @@ -152346,51 +157660,21 @@ entities: - type: Transform pos: -21.5,-55.5 parent: 2 - - uid: 20255 - components: - - type: Transform - pos: 30.5,12.5 - parent: 2 - uid: 20319 components: - type: Transform pos: 23.5,-38.5 parent: 2 - - uid: 20392 + - uid: 20510 components: - type: Transform - pos: -6.5,-46.5 - parent: 2 - - uid: 20448 - components: - - type: Transform - pos: -46.5,5.5 - parent: 2 - - uid: 20461 - components: - - type: Transform - pos: -48.5,1.5 - parent: 2 - - uid: 20570 - components: - - type: Transform - pos: -40.5,-2.5 - parent: 2 - - uid: 20706 - components: - - type: Transform - pos: 2.5,-39.5 + pos: -31.5,19.5 parent: 2 - uid: 20715 components: - type: Transform pos: 29.5,9.5 parent: 2 - - uid: 20783 - components: - - type: Transform - pos: -40.5,-7.5 - parent: 2 - uid: 20787 components: - type: Transform @@ -152416,11 +157700,6 @@ entities: - type: Transform pos: 14.5,-50.5 parent: 2 - - uid: 21803 - components: - - type: Transform - pos: 4.5,-31.5 - parent: 2 - uid: 21900 components: - type: Transform @@ -152436,16 +157715,6 @@ entities: - type: Transform pos: -54.5,-52.5 parent: 2 - - uid: 22005 - components: - - type: Transform - pos: 17.5,20.5 - parent: 2 - - uid: 22010 - components: - - type: Transform - pos: 22.5,9.5 - parent: 2 - uid: 22015 components: - type: Transform @@ -152491,31 +157760,11 @@ entities: - type: Transform pos: 40.5,13.5 parent: 2 - - uid: 22128 - components: - - type: Transform - pos: -29.5,-2.5 - parent: 2 - - uid: 22572 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 2 - uid: 23321 components: - type: Transform pos: -23.5,-55.5 parent: 2 - - uid: 23334 - components: - - type: Transform - pos: -48.5,5.5 - parent: 2 - - uid: 23340 - components: - - type: Transform - pos: -23.5,-56.5 - parent: 2 - uid: 23435 components: - type: Transform @@ -152528,310 +157777,1115 @@ entities: parent: 2 - proto: WallSolidRust entities: + - uid: 177 + components: + - type: Transform + pos: -51.5,16.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: 16.5,-50.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: 22.5,-47.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 48.5,-6.5 + parent: 2 - uid: 311 components: - type: Transform - pos: -15.5,-28.5 + pos: -6.5,-16.5 parent: 2 - - uid: 1027 + - uid: 317 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: 43.5,-8.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: -46.5,-49.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - uid: 417 components: - type: Transform pos: 7.5,-40.5 parent: 2 - - uid: 1045 + - uid: 420 components: - type: Transform - pos: 17.5,3.5 + pos: -35.5,-46.5 parent: 2 - - uid: 1053 + - uid: 422 components: - type: Transform - pos: -50.5,-50.5 + pos: 22.5,4.5 parent: 2 - - uid: 1104 + - uid: 426 components: - type: Transform - pos: -13.5,-29.5 + pos: 17.5,8.5 parent: 2 - - uid: 1245 + - uid: 429 components: - type: Transform - pos: 17.5,9.5 + pos: -41.5,-25.5 parent: 2 - - uid: 1432 + - uid: 433 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: -50.5,16.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: 47.5,-26.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 12.5,-50.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: 21.5,-55.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -44.5,-53.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: 30.5,-40.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 847 components: - type: Transform pos: 8.5,-54.5 parent: 2 + - uid: 869 + components: + - type: Transform + pos: -41.5,-47.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: -56.5,-31.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: -26.5,-49.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: -42.5,-52.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 15.5,-50.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: 12.5,-55.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: 12.5,-59.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: 44.5,-29.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: 51.5,-19.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: -11.5,-49.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: -25.5,-48.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: 45.5,-26.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: 46.5,-26.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: 8.5,-37.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: 17.5,4.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 - uid: 1440 components: - type: Transform - pos: -5.5,-35.5 + pos: -50.5,-51.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: -48.5,20.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: 18.5,-5.5 parent: 2 - uid: 1484 components: - type: Transform - pos: 26.5,14.5 + pos: -6.5,-45.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: -21.5,21.5 parent: 2 - uid: 1530 components: - type: Transform - pos: 29.5,-19.5 + pos: 42.5,-5.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + pos: 30.5,-45.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + pos: 24.5,-16.5 parent: 2 - uid: 1663 components: - type: Transform - pos: 39.5,10.5 + pos: 46.5,-13.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: -6.5,-29.5 parent: 2 - uid: 1783 components: - type: Transform - pos: -51.5,-49.5 + pos: 33.5,-14.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + pos: -40.5,-38.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: 46.5,-8.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: -46.5,-35.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: 40.5,16.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: 40.5,7.5 parent: 2 - uid: 2139 components: - type: Transform - pos: -16.5,-31.5 + pos: -40.5,-56.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: -42.5,-51.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: -3.5,-16.5 parent: 2 - uid: 2353 components: - type: Transform - pos: 30.5,23.5 + pos: 33.5,-5.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: 46.5,-15.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: -23.5,-54.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 12.5,-52.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: -31.5,21.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: 18.5,-55.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: -49.5,20.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: -52.5,14.5 parent: 2 - uid: 2610 components: - type: Transform - pos: -5.5,-16.5 + pos: 26.5,12.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: 2.5,-33.5 parent: 2 - uid: 2756 components: - type: Transform - pos: -18.5,-31.5 + pos: -36.5,-34.5 parent: 2 - uid: 2805 components: - type: Transform pos: -2.5,-88.5 parent: 2 + - uid: 2936 + components: + - type: Transform + pos: -44.5,-57.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 - uid: 3016 components: - type: Transform - pos: -39.5,-53.5 + pos: -32.5,17.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 3081 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 3127 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: 46.5,-31.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: -13.5,-39.5 parent: 2 - uid: 3251 components: - type: Transform - pos: -38.5,-34.5 + pos: 8.5,21.5 parent: 2 - uid: 3282 components: - type: Transform pos: 47.5,-39.5 parent: 2 + - uid: 3294 + components: + - type: Transform + pos: -34.5,21.5 + parent: 2 - uid: 3298 components: - type: Transform - pos: 34.5,-2.5 + pos: -18.5,-28.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: 20.5,-55.5 parent: 2 - uid: 3306 components: - type: Transform pos: 6.5,-91.5 parent: 2 - - uid: 3309 + - uid: 3314 components: - type: Transform - pos: 49.5,-35.5 + pos: 36.5,-0.5 parent: 2 - uid: 3341 components: - type: Transform - pos: -11.5,-25.5 + pos: -50.5,-53.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: -39.5,16.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + pos: 44.5,-26.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: 3.5,-15.5 parent: 2 - uid: 3447 components: - type: Transform pos: 43.5,-55.5 parent: 2 + - uid: 3448 + components: + - type: Transform + pos: 12.5,-56.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: -41.5,14.5 + parent: 2 - uid: 3504 components: - type: Transform - pos: 46.5,-7.5 + pos: -21.5,-17.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: -55.5,14.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: -33.5,21.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - uid: 3812 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: 0.5,-42.5 parent: 2 - uid: 3965 components: - type: Transform - pos: 4.5,-32.5 + pos: -16.5,-31.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 2 + - uid: 4044 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 4046 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 4173 + components: + - type: Transform + pos: 19.5,9.5 parent: 2 - uid: 4182 components: - type: Transform - pos: -41.5,-22.5 + pos: 14.5,-12.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + pos: 13.5,-46.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + pos: 1.5,-30.5 parent: 2 - uid: 4269 components: - type: Transform - pos: -38.5,-56.5 + pos: 13.5,-37.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + pos: 1.5,-42.5 parent: 2 - uid: 4346 components: - type: Transform - pos: -24.5,-54.5 + pos: -39.5,-51.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - uid: 4520 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + pos: 17.5,-0.5 parent: 2 - uid: 4544 components: - type: Transform - pos: 19.5,-1.5 + pos: -9.5,-16.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: 34.5,10.5 parent: 2 - uid: 4719 components: - type: Transform pos: 9.5,-91.5 parent: 2 - - uid: 4749 + - uid: 4737 components: - type: Transform - pos: -23.5,-2.5 + pos: 33.5,-11.5 + parent: 2 + - uid: 4789 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 4795 + components: + - type: Transform + pos: 7.5,-37.5 parent: 2 - uid: 4811 components: - type: Transform - pos: -39.5,-43.5 + pos: -45.5,-26.5 parent: 2 - - uid: 4974 + - uid: 4828 components: - type: Transform - pos: -52.5,-56.5 + pos: 33.5,-18.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: -51.5,-47.5 parent: 2 - uid: 5114 components: - type: Transform pos: 25.5,-57.5 parent: 2 - - uid: 5176 - components: - - type: Transform - pos: 8.5,-58.5 - parent: 2 - - uid: 5290 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 2 - - uid: 5331 - components: - - type: Transform - pos: -6.5,-6.5 - parent: 2 - uid: 5378 components: - type: Transform pos: 66.5,-79.5 parent: 2 - - uid: 5493 - components: - - type: Transform - pos: 40.5,0.5 - parent: 2 - - uid: 5512 - components: - - type: Transform - pos: 38.5,13.5 - parent: 2 - - uid: 5539 - components: - - type: Transform - pos: 46.5,-6.5 - parent: 2 - - uid: 5548 - components: - - type: Transform - pos: 20.5,-51.5 - parent: 2 - - uid: 5569 - components: - - type: Transform - pos: 34.5,5.5 - parent: 2 - - uid: 5636 - components: - - type: Transform - pos: -18.5,-49.5 - parent: 2 - uid: 5736 components: - type: Transform pos: -6.5,-91.5 parent: 2 - - uid: 5754 - components: - - type: Transform - pos: 39.5,-39.5 - parent: 2 - - uid: 5806 - components: - - type: Transform - pos: 13.5,17.5 - parent: 2 - - uid: 12568 - components: - - type: Transform - pos: -5.5,-46.5 - parent: 2 - - uid: 12569 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - uid: 12570 components: - type: Transform pos: 61.5,-76.5 parent: 2 - - uid: 12573 - components: - - type: Transform - pos: -40.5,-22.5 - parent: 2 - - uid: 12582 - components: - - type: Transform - pos: 40.5,3.5 - parent: 2 - - uid: 12601 - components: - - type: Transform - pos: 20.5,-58.5 - parent: 2 - - uid: 12603 - components: - - type: Transform - pos: -39.5,-56.5 - parent: 2 - uid: 12616 components: - type: Transform pos: 42.5,-38.5 parent: 2 - - uid: 12617 - components: - - type: Transform - pos: 34.5,8.5 - parent: 2 - uid: 12618 components: - type: Transform - pos: -47.5,-49.5 - parent: 2 - - uid: 12621 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 2 - - uid: 12622 - components: - - type: Transform - pos: 2.5,-34.5 + pos: 34.5,-4.5 parent: 2 - uid: 12624 components: @@ -152843,61 +158897,16 @@ entities: - type: Transform pos: 49.5,-58.5 parent: 2 - - uid: 12628 + - uid: 12626 components: - type: Transform - pos: -0.5,-5.5 - parent: 2 - - uid: 12637 - components: - - type: Transform - pos: 18.5,-51.5 - parent: 2 - - uid: 12648 - components: - - type: Transform - pos: 40.5,-4.5 - parent: 2 - - uid: 12653 - components: - - type: Transform - pos: -50.5,-56.5 - parent: 2 - - uid: 12655 - components: - - type: Transform - pos: 29.5,-1.5 - parent: 2 - - uid: 12656 - components: - - type: Transform - pos: -12.5,21.5 - parent: 2 - - uid: 12689 - components: - - type: Transform - pos: -11.5,-5.5 - parent: 2 - - uid: 12690 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - - uid: 12691 - components: - - type: Transform - pos: 29.5,24.5 + pos: -10.5,-5.5 parent: 2 - uid: 12692 components: - type: Transform pos: 63.5,-76.5 parent: 2 - - uid: 12693 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 2 - uid: 12705 components: - type: Transform @@ -152908,76 +158917,16 @@ entities: - type: Transform pos: 92.5,-30.5 parent: 2 - - uid: 12722 - components: - - type: Transform - pos: -26.5,-49.5 - parent: 2 - - uid: 12724 - components: - - type: Transform - pos: 48.5,-14.5 - parent: 2 - - uid: 12726 - components: - - type: Transform - pos: 31.5,-28.5 - parent: 2 - - uid: 12734 - components: - - type: Transform - pos: 22.5,-52.5 - parent: 2 - - uid: 12735 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 2 - - uid: 12751 - components: - - type: Transform - pos: -10.5,-14.5 - parent: 2 - uid: 12770 components: - type: Transform - pos: -28.5,1.5 - parent: 2 - - uid: 12771 - components: - - type: Transform - pos: 33.5,-16.5 - parent: 2 - - uid: 12772 - components: - - type: Transform - pos: 22.5,-51.5 + pos: -21.5,-52.5 parent: 2 - uid: 12775 components: - type: Transform pos: 11.5,-90.5 parent: 2 - - uid: 12780 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 2 - - uid: 12784 - components: - - type: Transform - pos: -20.5,-28.5 - parent: 2 - - uid: 12790 - components: - - type: Transform - pos: 47.5,-10.5 - parent: 2 - - uid: 12799 - components: - - type: Transform - pos: -40.5,-25.5 - parent: 2 - uid: 12800 components: - type: Transform @@ -152986,127 +158935,47 @@ entities: - uid: 12801 components: - type: Transform - pos: -21.5,-30.5 + pos: 40.5,-5.5 parent: 2 - uid: 12806 components: - type: Transform pos: 66.5,-73.5 parent: 2 - - uid: 12807 - components: - - type: Transform - pos: 44.5,-31.5 - parent: 2 - - uid: 12809 - components: - - type: Transform - pos: 37.5,7.5 - parent: 2 - - uid: 12810 - components: - - type: Transform - pos: -23.5,-54.5 - parent: 2 - - uid: 12811 - components: - - type: Transform - pos: 2.5,-33.5 - parent: 2 - - uid: 12812 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 2 - uid: 12813 components: - type: Transform pos: 94.5,-20.5 parent: 2 - - uid: 12825 - components: - - type: Transform - pos: 37.5,-39.5 - parent: 2 - - uid: 12846 - components: - - type: Transform - pos: -51.5,-47.5 - parent: 2 - - uid: 12848 - components: - - type: Transform - pos: 31.5,-26.5 - parent: 2 - - uid: 12853 - components: - - type: Transform - pos: -46.5,-34.5 - parent: 2 - uid: 12858 components: - type: Transform pos: 85.5,-17.5 parent: 2 - - uid: 12859 + - uid: 12942 components: - type: Transform - pos: 40.5,-3.5 + pos: 42.5,-8.5 parent: 2 - - uid: 12902 + - uid: 13014 components: - type: Transform - pos: -6.5,-16.5 - parent: 2 - - uid: 12921 - components: - - type: Transform - pos: 47.5,-23.5 - parent: 2 - - uid: 12982 - components: - - type: Transform - pos: 2.5,-29.5 - parent: 2 - - uid: 13027 - components: - - type: Transform - pos: 19.5,-34.5 - parent: 2 - - uid: 13057 - components: - - type: Transform - pos: -44.5,-52.5 + pos: 33.5,-15.5 parent: 2 - uid: 13123 components: - type: Transform pos: 69.5,-67.5 parent: 2 - - uid: 13124 - components: - - type: Transform - pos: 2.5,-30.5 - parent: 2 - uid: 13132 components: - type: Transform pos: 26.5,-57.5 parent: 2 - - uid: 13141 - components: - - type: Transform - pos: 24.5,4.5 - parent: 2 - uid: 13157 components: - type: Transform - pos: -18.5,-28.5 - parent: 2 - - uid: 13167 - components: - - type: Transform - pos: 19.5,-2.5 + pos: 2.5,-15.5 parent: 2 - uid: 13191 components: @@ -153123,65 +158992,20 @@ entities: - type: Transform pos: 43.5,-38.5 parent: 2 - - uid: 13209 + - uid: 13215 components: - type: Transform - pos: -40.5,-38.5 - parent: 2 - - uid: 13211 - components: - - type: Transform - pos: 25.5,-15.5 - parent: 2 - - uid: 13219 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 2 - - uid: 13221 - components: - - type: Transform - pos: -12.5,20.5 - parent: 2 - - uid: 13223 - components: - - type: Transform - pos: 30.5,-45.5 - parent: 2 - - uid: 13224 - components: - - type: Transform - pos: -21.5,-26.5 - parent: 2 - - uid: 13225 - components: - - type: Transform - pos: 14.5,-54.5 + pos: -23.5,-56.5 parent: 2 - uid: 13227 components: - type: Transform pos: 72.5,-75.5 parent: 2 - - uid: 13229 - components: - - type: Transform - pos: 22.5,-14.5 - parent: 2 - - uid: 13250 - components: - - type: Transform - pos: 17.5,1.5 - parent: 2 - uid: 13252 components: - type: Transform - pos: 2.5,-31.5 - parent: 2 - - uid: 13257 - components: - - type: Transform - pos: 29.5,-15.5 + pos: -42.5,-47.5 parent: 2 - uid: 13268 components: @@ -153191,42 +159015,22 @@ entities: - uid: 13269 components: - type: Transform - pos: -39.5,-46.5 + pos: 35.5,-39.5 parent: 2 - uid: 13273 components: - type: Transform - pos: 8.5,-35.5 + pos: 16.5,-52.5 parent: 2 - uid: 13274 components: - type: Transform pos: -5.5,-92.5 parent: 2 - - uid: 13279 - components: - - type: Transform - pos: 66.5,-42.5 - parent: 2 - - uid: 13281 - components: - - type: Transform - pos: 46.5,-4.5 - parent: 2 - - uid: 13287 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 2 - - uid: 13289 - components: - - type: Transform - pos: 17.5,-57.5 - parent: 2 - uid: 13292 components: - type: Transform - pos: 39.5,-10.5 + pos: 28.5,-13.5 parent: 2 - uid: 13296 components: @@ -153238,415 +159042,110 @@ entities: - type: Transform pos: 67.5,-59.5 parent: 2 - - uid: 13364 - components: - - type: Transform - pos: -16.5,18.5 - parent: 2 - uid: 13391 components: - type: Transform - pos: -11.5,-16.5 - parent: 2 - - uid: 13392 - components: - - type: Transform - pos: 5.5,-46.5 - parent: 2 - - uid: 13395 - components: - - type: Transform - pos: 27.5,14.5 - parent: 2 - - uid: 13397 - components: - - type: Transform - pos: 40.5,10.5 + pos: -40.5,14.5 parent: 2 - uid: 13401 components: - type: Transform pos: 41.5,-54.5 parent: 2 - - uid: 13404 - components: - - type: Transform - pos: 33.5,-10.5 - parent: 2 - - uid: 13407 - components: - - type: Transform - pos: -10.5,18.5 - parent: 2 - - uid: 13408 - components: - - type: Transform - pos: -14.5,-39.5 - parent: 2 - uid: 13409 components: - type: Transform pos: 5.5,-89.5 parent: 2 - - uid: 13469 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 2 - uid: 13531 components: - type: Transform pos: 45.5,-40.5 parent: 2 - - uid: 13540 - components: - - type: Transform - pos: 29.5,-11.5 - parent: 2 - - uid: 13663 - components: - - type: Transform - pos: -12.5,19.5 - parent: 2 - - uid: 13667 - components: - - type: Transform - pos: 16.5,-46.5 - parent: 2 - - uid: 13668 - components: - - type: Transform - pos: 42.5,-5.5 - parent: 2 - - uid: 13669 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - - uid: 13671 - components: - - type: Transform - pos: -47.5,-50.5 - parent: 2 - - uid: 13674 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 2 - uid: 13691 components: - type: Transform pos: 44.5,-34.5 parent: 2 - - uid: 13693 - components: - - type: Transform - pos: -35.5,-56.5 - parent: 2 - - uid: 13704 - components: - - type: Transform - pos: 20.5,-57.5 - parent: 2 - uid: 13706 components: - type: Transform pos: 71.5,-67.5 parent: 2 - - uid: 13723 + - uid: 13727 components: - type: Transform - pos: 49.5,-41.5 - parent: 2 - - uid: 13724 - components: - - type: Transform - pos: 12.5,-34.5 - parent: 2 - - uid: 13725 - components: - - type: Transform - pos: 2.5,21.5 - parent: 2 - - uid: 13735 - components: - - type: Transform - pos: -17.5,-44.5 - parent: 2 - - uid: 13736 - components: - - type: Transform - pos: 25.5,9.5 - parent: 2 - - uid: 13738 - components: - - type: Transform - pos: 29.5,-5.5 - parent: 2 - - uid: 13740 - components: - - type: Transform - pos: -28.5,3.5 - parent: 2 - - uid: 13747 - components: - - type: Transform - pos: -34.5,15.5 - parent: 2 - - uid: 13758 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 2 - - uid: 13762 - components: - - type: Transform - pos: 39.5,-2.5 - parent: 2 - - uid: 13764 - components: - - type: Transform - pos: -27.5,1.5 - parent: 2 - - uid: 13765 - components: - - type: Transform - pos: 29.5,3.5 - parent: 2 - - uid: 13773 - components: - - type: Transform - pos: -12.5,-49.5 - parent: 2 - - uid: 13779 - components: - - type: Transform - pos: 1.5,-30.5 + pos: -13.5,-35.5 parent: 2 - uid: 13782 components: - type: Transform pos: 54.5,-52.5 parent: 2 - - uid: 13783 - components: - - type: Transform - pos: 30.5,-39.5 - parent: 2 - uid: 13794 components: - type: Transform - pos: -14.5,21.5 + pos: 29.5,-0.5 parent: 2 - uid: 13812 components: - type: Transform pos: 49.5,-26.5 parent: 2 - - uid: 13813 - components: - - type: Transform - pos: 22.5,-45.5 - parent: 2 - - uid: 13866 - components: - - type: Transform - pos: -12.5,-29.5 - parent: 2 - - uid: 13867 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 2 - - uid: 13880 - components: - - type: Transform - pos: -21.5,-35.5 - parent: 2 - - uid: 13882 - components: - - type: Transform - pos: 24.5,9.5 - parent: 2 - - uid: 13883 - components: - - type: Transform - pos: 7.5,-46.5 - parent: 2 - - uid: 13887 - components: - - type: Transform - pos: 12.5,-58.5 - parent: 2 - - uid: 13892 - components: - - type: Transform - pos: -41.5,-24.5 - parent: 2 - - uid: 13897 - components: - - type: Transform - pos: -35.5,-49.5 - parent: 2 - - uid: 13900 - components: - - type: Transform - pos: 2.5,-46.5 - parent: 2 - - uid: 13901 - components: - - type: Transform - pos: -45.5,-33.5 - parent: 2 - - uid: 13903 - components: - - type: Transform - pos: 22.5,-54.5 - parent: 2 - - uid: 13904 - components: - - type: Transform - pos: 12.5,-54.5 - parent: 2 - - uid: 13906 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 2 - - uid: 13907 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 2 - - uid: 13908 - components: - - type: Transform - pos: 7.5,-26.5 - parent: 2 - - uid: 13912 - components: - - type: Transform - pos: -18.5,21.5 - parent: 2 - - uid: 13914 - components: - - type: Transform - pos: -25.5,-49.5 - parent: 2 - - uid: 13917 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 2 - uid: 13922 components: - type: Transform pos: -2.5,-96.5 parent: 2 - - uid: 13975 - components: - - type: Transform - pos: 46.5,-10.5 - parent: 2 - - uid: 14094 - components: - - type: Transform - pos: 40.5,-12.5 - parent: 2 - uid: 14095 components: - type: Transform pos: 10.5,-91.5 parent: 2 - - uid: 14098 - components: - - type: Transform - pos: 26.5,-40.5 - parent: 2 - uid: 14099 components: - type: Transform pos: 23.5,-58.5 parent: 2 - - uid: 14100 - components: - - type: Transform - pos: -20.5,-35.5 - parent: 2 - - uid: 14101 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 2 - - uid: 14102 - components: - - type: Transform - pos: 12.5,-37.5 - parent: 2 - uid: 14104 components: - type: Transform - pos: -10.5,-0.5 + pos: 2.5,-28.5 parent: 2 - - uid: 14131 + - uid: 14105 components: - type: Transform - pos: 44.5,-27.5 - parent: 2 - - uid: 14132 - components: - - type: Transform - pos: 39.5,-0.5 - parent: 2 - - uid: 14133 - components: - - type: Transform - pos: 16.5,-48.5 + pos: 23.5,-1.5 parent: 2 - uid: 14137 components: - type: Transform - pos: 34.5,-1.5 + pos: -34.5,-16.5 parent: 2 - uid: 14150 components: - type: Transform pos: -2.5,-97.5 parent: 2 - - uid: 14151 + - uid: 14175 components: - type: Transform - pos: -52.5,-31.5 - parent: 2 - - uid: 14179 - components: - - type: Transform - pos: -47.5,-55.5 - parent: 2 - - uid: 14181 - components: - - type: Transform - pos: 35.5,-5.5 + pos: -36.5,-47.5 parent: 2 - uid: 14190 components: - type: Transform - pos: 13.5,18.5 + pos: 15.5,-5.5 parent: 2 - - uid: 14209 + - uid: 14235 components: - type: Transform - pos: 49.5,-40.5 + pos: -27.5,22.5 parent: 2 - - uid: 14247 + - uid: 14265 components: - type: Transform - pos: -6.5,-9.5 - parent: 2 - - uid: 14263 - components: - - type: Transform - pos: 35.5,16.5 + pos: -12.5,21.5 parent: 2 - uid: 14276 components: @@ -153656,12 +159155,12 @@ entities: - uid: 14279 components: - type: Transform - pos: -21.5,-51.5 + pos: 30.5,-46.5 parent: 2 - uid: 14280 components: - type: Transform - pos: 18.5,-1.5 + pos: 30.5,-44.5 parent: 2 - uid: 14314 components: @@ -153676,48 +159175,13 @@ entities: - uid: 14348 components: - type: Transform - pos: -10.5,-5.5 - parent: 2 - - uid: 14365 - components: - - type: Transform - pos: -13.5,-37.5 - parent: 2 - - uid: 14379 - components: - - type: Transform - pos: -0.5,-16.5 + pos: 19.5,-55.5 parent: 2 - uid: 14386 components: - type: Transform pos: 86.5,-18.5 parent: 2 - - uid: 14399 - components: - - type: Transform - pos: 9.5,21.5 - parent: 2 - - uid: 14413 - components: - - type: Transform - pos: 33.5,-15.5 - parent: 2 - - uid: 14456 - components: - - type: Transform - pos: 29.5,-0.5 - parent: 2 - - uid: 14477 - components: - - type: Transform - pos: 38.5,-0.5 - parent: 2 - - uid: 14479 - components: - - type: Transform - pos: 39.5,-12.5 - parent: 2 - uid: 14481 components: - type: Transform @@ -153726,12 +159190,7 @@ entities: - uid: 14484 components: - type: Transform - pos: 23.5,-39.5 - parent: 2 - - uid: 14496 - components: - - type: Transform - pos: 5.5,-35.5 + pos: 15.5,-7.5 parent: 2 - uid: 14501 components: @@ -153741,78 +159200,33 @@ entities: - uid: 14503 components: - type: Transform - pos: 23.5,3.5 - parent: 2 - - uid: 14509 - components: - - type: Transform - pos: -14.5,19.5 - parent: 2 - - uid: 14510 - components: - - type: Transform - pos: -21.5,-25.5 - parent: 2 - - uid: 14514 - components: - - type: Transform - pos: 49.5,-42.5 - parent: 2 - - uid: 14517 - components: - - type: Transform - pos: 35.5,15.5 + pos: 47.5,-6.5 parent: 2 - uid: 14525 components: - type: Transform - pos: 16.5,-50.5 + pos: 22.5,-12.5 parent: 2 - - uid: 14543 + - uid: 14550 components: - type: Transform - pos: 18.5,-53.5 - parent: 2 - - uid: 14715 - components: - - type: Transform - pos: -46.5,-33.5 - parent: 2 - - uid: 14744 - components: - - type: Transform - pos: 19.5,-12.5 + pos: 12.5,-46.5 parent: 2 - uid: 14773 components: - type: Transform - pos: 6.5,-35.5 + pos: -17.5,-26.5 parent: 2 - uid: 14787 components: - type: Transform - pos: 22.5,-50.5 - parent: 2 - - uid: 14792 - components: - - type: Transform - pos: 10.5,22.5 + pos: 25.5,9.5 parent: 2 - uid: 14811 components: - type: Transform pos: 66.5,-74.5 parent: 2 - - uid: 14816 - components: - - type: Transform - pos: 16.5,-45.5 - parent: 2 - - uid: 14825 - components: - - type: Transform - pos: -50.5,-51.5 - parent: 2 - uid: 14833 components: - type: Transform @@ -153826,17 +159240,72 @@ entities: - uid: 14853 components: - type: Transform - pos: 22.5,-1.5 + pos: -50.5,-55.5 parent: 2 - - uid: 14906 + - uid: 15008 components: - type: Transform - pos: 39.5,-1.5 + pos: 1.5,-16.5 parent: 2 - - uid: 14908 + - uid: 15013 components: - type: Transform - pos: 6.5,-37.5 + pos: 22.5,-16.5 + parent: 2 + - uid: 15025 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 15045 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 15168 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 2 + - uid: 15251 + components: + - type: Transform + pos: -25.5,-49.5 + parent: 2 + - uid: 15375 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 + - uid: 15475 + components: + - type: Transform + pos: -30.5,22.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + pos: -50.5,9.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 15882 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 15883 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 2 + - uid: 15896 + components: + - type: Transform + pos: -30.5,19.5 parent: 2 - uid: 15900 components: @@ -153846,112 +159315,32 @@ entities: - uid: 15944 components: - type: Transform - pos: -44.5,-54.5 + pos: -39.5,-25.5 parent: 2 - - uid: 15959 + - uid: 15952 components: - type: Transform - pos: 39.5,-14.5 + pos: -10.5,-4.5 parent: 2 - - uid: 15971 + - uid: 16170 components: - type: Transform - pos: 15.5,-7.5 + pos: -27.5,21.5 parent: 2 - - uid: 15998 + - uid: 16360 components: - type: Transform - pos: 12.5,-52.5 + pos: -16.5,-49.5 parent: 2 - - uid: 16827 + - uid: 16530 components: - type: Transform - pos: 29.5,0.5 + pos: -29.5,-23.5 parent: 2 - - uid: 16995 + - uid: 16894 components: - type: Transform - pos: -13.5,-9.5 - parent: 2 - - uid: 18388 - components: - - type: Transform - pos: -13.5,-35.5 - parent: 2 - - uid: 18516 - components: - - type: Transform - pos: 22.5,-48.5 - parent: 2 - - uid: 18724 - components: - - type: Transform - pos: 1.5,21.5 - parent: 2 - - uid: 19240 - components: - - type: Transform - pos: 26.5,9.5 - parent: 2 - - uid: 19245 - components: - - type: Transform - pos: 35.5,-0.5 - parent: 2 - - uid: 19261 - components: - - type: Transform - pos: 35.5,12.5 - parent: 2 - - uid: 19348 - components: - - type: Transform - pos: -10.5,-35.5 - parent: 2 - - uid: 19626 - components: - - type: Transform - pos: 39.5,7.5 - parent: 2 - - uid: 20122 - components: - - type: Transform - pos: 44.5,-9.5 - parent: 2 - - uid: 20166 - components: - - type: Transform - pos: 16.5,-52.5 - parent: 2 - - uid: 21363 - components: - - type: Transform - pos: -45.5,-49.5 - parent: 2 - - uid: 21438 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 2 - - uid: 22016 - components: - - type: Transform - pos: 34.5,-7.5 - parent: 2 - - uid: 22101 - components: - - type: Transform - pos: -21.5,-52.5 - parent: 2 - - uid: 22102 - components: - - type: Transform - pos: -21.5,-39.5 - parent: 2 - - uid: 22108 - components: - - type: Transform - pos: 13.5,-50.5 + pos: -17.5,17.5 parent: 2 - uid: 23607 components: @@ -154020,42 +159409,49 @@ entities: - type: Transform pos: 13.5,-25.5 parent: 2 +- proto: WardrobePinkFilled + entities: + - uid: 16503 + components: + - type: Transform + pos: -45.5,11.5 + parent: 2 - proto: WardrobePrisonFilled entities: - - uid: 489 + - uid: 3807 components: - type: Transform - pos: -32.5,-0.5 + pos: -32.5,8.5 parent: 2 - - uid: 696 + - uid: 4147 components: - type: Transform - pos: -32.5,-1.5 + pos: -32.5,9.5 parent: 2 - - uid: 7575 + - uid: 5704 components: - type: Transform - pos: -47.5,7.5 + pos: -27.5,8.5 parent: 2 - - uid: 7602 + - uid: 11417 components: - type: Transform - pos: -47.5,-0.5 + pos: -41.5,11.5 parent: 2 - - uid: 8489 + - uid: 11420 components: - type: Transform - pos: -32.5,-2.5 + pos: -41.5,17.5 parent: 2 - - uid: 16254 + - uid: 11432 components: - type: Transform - pos: -32.5,0.5 + pos: -36.5,8.5 parent: 2 - - uid: 20530 + - uid: 12652 components: - type: Transform - pos: -43.5,7.5 + pos: -40.5,8.5 parent: 2 - proto: WardrobeRoboticsFilled entities: @@ -154064,13 +159460,6 @@ entities: - type: Transform pos: 32.5,-24.5 parent: 2 -- proto: WardrobeYellowFilled - entities: - - uid: 2311 - components: - - type: Transform - pos: 56.5,-38.5 - parent: 2 - proto: WarmLightBulb entities: - uid: 14010 @@ -154085,17 +159474,6 @@ entities: parent: 14012 - type: Physics canCollide: False - - uid: 15121 - components: - - type: Transform - parent: 14774 - - type: Physics - canCollide: False - - uid: 22730 - components: - - type: Transform - pos: -23.50722,22.240725 - parent: 2 - proto: WarningCO2 entities: - uid: 1965 @@ -154134,16 +159512,16 @@ entities: parent: 2 - proto: WaterCooler entities: + - uid: 617 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 - uid: 828 components: - type: Transform pos: 34.5,-17.5 parent: 2 - - uid: 2187 - components: - - type: Transform - pos: -24.5,0.5 - parent: 2 - uid: 4333 components: - type: Transform @@ -154164,13 +159542,13 @@ entities: - type: Transform pos: 35.5,1.5 parent: 2 - - uid: 20256 - components: - - type: Transform - pos: -34.5,-7.5 - parent: 2 - proto: WaterTankFull entities: + - uid: 1632 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 - uid: 4640 components: - type: Transform @@ -154206,28 +159584,33 @@ entities: - type: Transform pos: -6.5,25.5 parent: 2 - - uid: 20774 + - uid: 20052 components: - type: Transform - pos: -41.5,-9.5 + pos: -36.5,20.5 parent: 2 - uid: 22456 components: - type: Transform pos: 34.5,17.5 parent: 2 - - uid: 22710 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 2 - uid: 22997 components: - type: Transform pos: -47.5,-57.5 parent: 2 + - uid: 24301 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 2 - proto: WaterTankHighCapacity entities: + - uid: 1197 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 - uid: 3914 components: - type: Transform @@ -154240,22 +159623,18 @@ entities: - type: Transform pos: -1.5,6.5 parent: 2 + - uid: 23803 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 378 + - uid: 2365 components: - type: Transform - pos: -26.5,13.5 - parent: 2 - - uid: 713 - components: - - type: Transform - pos: -27.5,3.5 - parent: 2 - - uid: 2896 - components: - - type: Transform - pos: -23.5,0.5 + rot: -1.5707963267948966 rad + pos: 75.5,-40.5 parent: 2 - uid: 13661 components: @@ -154263,67 +159642,95 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-53.5 parent: 2 - - uid: 23927 + - uid: 20595 components: - type: Transform - pos: -22.5,-6.5 + pos: -29.5,-4.5 parent: 2 -- proto: WeaponDisabler + - uid: 20597 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - uid: 23314 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 +- proto: WeaponLaserCarbine entities: - - uid: 21619 + - uid: 114 components: - type: Transform - parent: 2207 + parent: 20614 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21962 - components: - - type: Transform - parent: 2207 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22009 - components: - - type: Transform - pos: -24.54724,13.558739 - parent: 2 - proto: WeaponShotgunEnforcer entities: - - uid: 23320 + - uid: 20591 components: - type: Transform - pos: -22.494625,-3.1906652 + pos: -22.486067,-6.1998725 parent: 2 - proto: WeaponSubMachineGunWt550 entities: - - uid: 14803 + - uid: 11313 components: - type: Transform - pos: -21.319635,10.6595335 + pos: -45.46237,1.5808802 parent: 2 - proto: WeaponTurretSyndicateBroken entities: - - uid: 23214 + - uid: 16882 components: - type: Transform - pos: -65.5,-14.5 + pos: 88.5,-45.5 parent: 2 - - uid: 23215 + - uid: 17100 components: - type: Transform - pos: -69.5,-14.5 + pos: 88.5,-39.5 parent: 2 - - uid: 23216 + - uid: 17769 components: - type: Transform - pos: -69.5,-10.5 + pos: 94.5,-39.5 parent: 2 - - uid: 23217 + - uid: 17792 components: - type: Transform - pos: -65.5,-10.5 + pos: 94.5,-45.5 + parent: 2 + - uid: 17940 + components: + - type: Transform + pos: 81.5,-44.5 + parent: 2 + - uid: 17941 + components: + - type: Transform + pos: 77.5,-44.5 + parent: 2 + - uid: 17950 + components: + - type: Transform + pos: 77.5,-40.5 + parent: 2 + - uid: 17952 + components: + - type: Transform + pos: 81.5,-40.5 + parent: 2 + - uid: 17954 + components: + - type: Transform + pos: 66.5,-40.5 + parent: 2 + - uid: 17956 + components: + - type: Transform + pos: 66.5,-44.5 parent: 2 - proto: WeaponWaterPistol entities: @@ -154339,10 +159746,10 @@ entities: parent: 2 - proto: WeedSpray entities: - - uid: 6172 + - uid: 2639 components: - type: Transform - pos: -41.620026,-6.361434 + pos: -26.176067,13.521244 parent: 2 - proto: Welder entities: @@ -154375,6 +159782,11 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: + - uid: 1721 + components: + - type: Transform + pos: -56.5,-9.5 + parent: 2 - uid: 2617 components: - type: Transform @@ -154420,6 +159832,11 @@ entities: - type: Transform pos: 1.5,-4.5 parent: 2 + - uid: 24303 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 - proto: WetFloorSign entities: - uid: 14653 @@ -154427,13 +159844,6 @@ entities: - type: Transform pos: 44.657276,-39.273064 parent: 2 -- proto: Whistle - entities: - - uid: 9531 - components: - - type: Transform - pos: 53.361713,-39.280586 - parent: 2 - proto: Windoor entities: - uid: 1796 @@ -154452,16 +159862,61 @@ entities: - type: Transform pos: -19.5,-43.5 parent: 2 - - uid: 14265 + - uid: 12154 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,2.5 + pos: -25.5,-4.5 parent: 2 - - uid: 15141 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11782: + - - DoorStatus + - Close + 11789: + - - DoorStatus + - Close + - uid: 12217 components: - type: Transform - pos: -49.5,4.5 + rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11789: + - - DoorStatus + - Close + 11782: + - - DoorStatus + - Close + - uid: 20565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 2 + - uid: 20568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 2 + - uid: 21410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - uid: 22474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 parent: 2 - proto: WindoorChapelLocked entities: @@ -154501,12 +159956,6 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 79 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 2 - uid: 3235 components: - type: Transform @@ -154568,30 +160017,24 @@ entities: 7609: - - DoorStatus - Close + - uid: 9614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,3.5 + parent: 2 + - uid: 9634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,3.5 + parent: 2 - uid: 12433 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,17.5 parent: 2 - - uid: 14572 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-2.5 - parent: 2 - - uid: 16028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-2.5 - parent: 2 - - uid: 17659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 2 - uid: 18592 components: - type: Transform @@ -154628,35 +160071,73 @@ entities: parent: 2 - proto: WindoorSecureArmoryLocked entities: - - uid: 253 + - uid: 11716 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 11724 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 11782 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12154: + - - DoorStatus + - Close + 12217: + - - DoorStatus + - Close + - uid: 11789 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12217: + - - DoorStatus + - Close + 12154: + - - DoorStatus + - Close +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 2181 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-7.5 + pos: -14.5,-3.5 parent: 2 - - uid: 3570 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 2 - - uid: 3826 + - uid: 2183 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 2 - - uid: 15932 - components: - - type: Transform - pos: -19.5,-2.5 + pos: -14.5,-2.5 parent: 2 - proto: WindoorSecureBrigLocked entities: - - uid: 11957 + - uid: 28 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,10.5 + rot: 3.141592653589793 rad + pos: -29.5,-4.5 + parent: 2 + - uid: 11971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-4.5 parent: 2 - proto: WindoorSecureCargoLocked entities: @@ -154754,39 +160235,16 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-34.5 parent: 2 - - uid: 10752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-12.5 - parent: 2 - uid: 11497 components: - type: Transform pos: 9.5,-15.5 parent: 2 - - uid: 16415 + - uid: 12609 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-15.5 - parent: 2 - - uid: 16417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-12.5 - parent: 2 - - uid: 16583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-15.5 - parent: 2 - - uid: 16584 - components: - - type: Transform - pos: -66.5,-9.5 + pos: 90.5,-42.5 parent: 2 - proto: WindoorSecureEngineeringLocked entities: @@ -154966,11 +160424,16 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 5273 + - uid: 152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-7.5 + pos: -39.5,-0.5 + parent: 2 + - uid: 11625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-5.5 parent: 2 - uid: 13169 components: @@ -154978,17 +160441,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-17.5 parent: 2 - - uid: 18668 - components: - - type: Transform - pos: -22.5,0.5 - parent: 2 - - uid: 20793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 2 - proto: WindoorServiceLocked entities: - uid: 5831 @@ -155349,16 +160801,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-44.5 parent: 2 - - uid: 7695 - components: - - type: Transform - pos: -37.5,4.5 - parent: 2 - - uid: 7697 - components: - - type: Transform - pos: -36.5,4.5 - parent: 2 - uid: 8353 components: - type: Transform @@ -155383,11 +160825,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-52.5 parent: 2 - - uid: 16881 - components: - - type: Transform - pos: -38.5,4.5 - parent: 2 - proto: WindowReinforcedDirectional entities: - uid: 341 @@ -155721,11 +161158,23 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-30.5 parent: 2 + - uid: 10966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-5.5 + parent: 2 - uid: 11019 components: - type: Transform pos: 8.5,-15.5 parent: 2 + - uid: 11046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-5.5 + parent: 2 - uid: 11305 components: - type: Transform @@ -155743,18 +161192,6 @@ entities: - type: Transform pos: 10.5,-15.5 parent: 2 - - uid: 11953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,12.5 - parent: 2 - - uid: 11960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,11.5 - parent: 2 - uid: 12994 components: - type: Transform @@ -155791,18 +161228,6 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,-23.5 parent: 2 - - uid: 16461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-16.5 - parent: 2 - - uid: 17452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,9.5 - parent: 2 - uid: 18244 components: - type: Transform @@ -155838,23 +161263,20 @@ entities: rot: 1.5707963267948966 rad pos: 89.5,-29.5 parent: 2 - - uid: 18544 + - uid: 19631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,0.5 + pos: -35.5,15.5 parent: 2 - - uid: 19617 + - uid: 19632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-40.5 + pos: -34.5,15.5 parent: 2 - - uid: 19618 + - uid: 19633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-42.5 + pos: -33.5,15.5 parent: 2 - uid: 21157 components: @@ -155879,11 +161301,6 @@ entities: - type: Transform pos: 27.57422,-50.418713 parent: 2 - - uid: 20660 - components: - - type: Transform - pos: -33.619465,18.650682 - parent: 2 - proto: WoodDoor entities: - uid: 3750 @@ -155940,6 +161357,12 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,30.5 parent: 2 + - uid: 2714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 - uid: 6074 components: - type: Transform @@ -155994,6 +161417,18 @@ entities: rot: 3.141592653589793 rad pos: -19.5,32.5 parent: 2 + - uid: 24479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 2 + - uid: 24538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-16.5 + parent: 2 - proto: Wrench entities: - uid: 4063 @@ -156016,26 +161451,31 @@ entities: - type: Transform pos: -52.48281,-36.374268 parent: 2 + - uid: 13723 + components: + - type: Transform + pos: 83.486145,-41.425728 + parent: 2 - uid: 15383 components: - type: Transform pos: -13.512281,-21.38337 parent: 2 + - uid: 16443 + components: + - type: Transform + pos: -54.017258,20.263376 + parent: 2 - uid: 23496 components: - type: Transform pos: -5.5532303,-15.463551 parent: 2 -- proto: Zipties +- proto: Wristwatch entities: - - uid: 12882 + - uid: 24115 components: - type: Transform - pos: -27.357758,-6.3337946 - parent: 2 - - uid: 20444 - components: - - type: Transform - pos: -27.618303,-6.3337946 + pos: 18.407438,-10.54795 parent: 2 ... diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 83184cb32d..3dc84c0761 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -1,10 +1,10 @@ meta: format: 7 category: Map - engineVersion: 254.1.0 + engineVersion: 260.1.0 forkId: "" forkVersion: "" - time: 04/19/2025 10:44:14 + time: 05/20/2025 21:40:45 entityCount: 25722 maps: - 943 @@ -89,420 +89,420 @@ entities: chunks: 0,-1: ind: 0,-1 - tiles: XQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADHwAAAAADHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAABHwAAAAADHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAADHwAAAAABfgAAAAAATwAAAAAAEQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAD - version: 6 + tiles: XQAAAAADAF0AAAAAAQB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAE0AAAAAAwAfAAAAAAMAHwAAAAABAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAEATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAACAB8AAAAAAwAfAAAAAAEAfgAAAAAAAE8AAAAAAAARAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAwAfAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAADAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAgB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAADAA== + version: 7 -1,-1: ind: -1,-1 - tiles: XQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAZAAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAABZAAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAACZAAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAADcwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABfgAAAAAAHwAAAAABXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACMwAAAAAAegAAAAACegAAAAADegAAAAADfgAAAAAAHwAAAAACXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAMwAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAHwAAAAACXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAACJAAAAAADegAAAAACegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAHwAAAAAATQAAAAACTQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAACXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAB - version: 6 + tiles: XQAAAAACAF0AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAZAAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAABAB8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAGQAAAAAAABdAAAAAAEAZAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgBkAAAAAAAAXQAAAAABAGQAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAZAAAAAAAAGQAAAAAAABkAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAGQAAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAuAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB0AAAAAAAAdAAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAdAAAAAADAHMAAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAEAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAABAH4AAAAAAAAfAAAAAAEAXQAAAAACAF0AAAAAAgB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAACADMAAAAAAAB6AAAAAAIAegAAAAADAHoAAAAAAwB+AAAAAAAAHwAAAAACAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAABAHoAAAAAAAAzAAAAAAAAegAAAAADAHoAAAAAAQB6AAAAAAMAfgAAAAAAAB8AAAAAAgBdAAAAAAEAXQAAAAABAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAIAJAAAAAADAHoAAAAAAgB6AAAAAAAAegAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAADAF0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAACAH4AAAAAAAB6AAAAAAMAegAAAAACAHoAAAAAAgB+AAAAAAAAHwAAAAAAAE0AAAAAAgBNAAAAAAIAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAEAfgAAAAAAAB8AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAwB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAABAA== + version: 7 0,0: ind: 0,0 - tiles: HwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAABLwAAAAABLwAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAABDAAAAAAADAAAAAAADAAAAAACLwAAAAACfgAAAAAAXQAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAACDAAAAAADDAAAAAACDAAAAAABDAAAAAADDAAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAAADAAAAAAALwAAAAADXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAACHwAAAAAADAAAAAAADAAAAAABDAAAAAACHwAAAAAALwAAAAABXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAACLwAAAAADTgAAAAACLwAAAAACLwAAAAAAfgAAAAAATQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACTQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACTQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADTQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAB - version: 6 + tiles: HwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAwB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAvAAAAAAEALwAAAAABAC8AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAQAfAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAvAAAAAAEADAAAAAAAAAwAAAAAAAAMAAAAAAIALwAAAAACAH4AAAAAAABdAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAADAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAvAAAAAAIADAAAAAADAAwAAAAAAgAMAAAAAAEADAAAAAADAAwAAAAAAAAvAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAALwAAAAACAAwAAAAAAgAMAAAAAAIADAAAAAABAAwAAAAAAAAMAAAAAAAALwAAAAADAF0AAAAAAwB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAC8AAAAAAgAfAAAAAAAADAAAAAAAAAwAAAAAAQAMAAAAAAIAHwAAAAAAAC8AAAAAAQBdAAAAAAIAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAALwAAAAACAC8AAAAAAwBOAAAAAAIALwAAAAACAC8AAAAAAAB+AAAAAAAATQAAAAABAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAIATQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAACAE0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAwBNAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAABAA== + version: 7 -1,0: ind: -1,0 - tiles: XQAAAAADXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAXQAAAAABXQAAAAADfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADXQAAAAADXQAAAAADHwAAAAADbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACXQAAAAADXQAAAAACfgAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAOAAAAAAAOAAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATQAAAAADTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAATQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADTQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABTQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAATQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABHwAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAAAegAAAAADegAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAegAAAAAAegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABegAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAAB - version: 6 + tiles: XQAAAAADAF0AAAAAAQBdAAAAAAMAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAABAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAABdAAAAAAEAXQAAAAADAH4AAAAAAABtAAAAAAAAbQAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAwB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAMAXQAAAAADAF0AAAAAAwAfAAAAAAMAbQAAAAAAAG0AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAMAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAACAF0AAAAAAwBdAAAAAAIAfgAAAAAAAG0AAAAAAABtAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAH4AAAAAAAA4AAAAAAAAOAAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAgB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAATQAAAAADAE0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAABdAAAAAAAATQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAABdAAAAAAAAXQAAAAADAE0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAQBNAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAAAAE0AAAAAAwBNAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAACAB8AAAAAAQB+AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAIAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAgAfAAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAHwAAAAADAH4AAAAAAAB6AAAAAAMAegAAAAACAHoAAAAAAAB6AAAAAAAAegAAAAADAHoAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAAAegAAAAABAHoAAAAAAAB6AAAAAAEAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAQB+AAAAAAAAegAAAAAAAHoAAAAAAQBAAAAAAAAAQAAAAAAAAEAAAAAAAAB6AAAAAAEAegAAAAABAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAB+AAAAAAAAXQAAAAABAA== + version: 7 0,-2: ind: 0,-2 - tiles: XQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAATgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAADgAAAAACegAAAAACegAAAAACegAAAAAAegAAAAABegAAAAABXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAADgAAAAABegAAAAADegAAAAADegAAAAACegAAAAAAegAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAADDgAAAAABDgAAAAACDgAAAAABDgAAAAADDgAAAAABXQAAAAADXQAAAAADfgAAAAAATQAAAAACTQAAAAADTQAAAAAATQAAAAABTQAAAAACTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAATQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAATQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACTQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAB - version: 6 + tiles: XQAAAAAAAF0AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAAAegAAAAABAHoAAAAAAgB6AAAAAAEAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABOAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAfgAAAAAAAA4AAAAAAgB6AAAAAAIAegAAAAACAHoAAAAAAAB6AAAAAAEAegAAAAABAF0AAAAAAABdAAAAAAIAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAAOAAAAAAEAegAAAAADAHoAAAAAAwB6AAAAAAIAegAAAAAAAHoAAAAAAQBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAADgAAAAADAA4AAAAAAQAOAAAAAAIADgAAAAABAA4AAAAAAwAOAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAATQAAAAACAE0AAAAAAwBNAAAAAAAATQAAAAABAE0AAAAAAgBNAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAATQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAAAAE0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgBNAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE0AAAAAAgBdAAAAAAEAXQAAAAACAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAABAA== + version: 7 -1,-2: ind: -1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADTQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACTQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADTQAAAAACXQAAAAADTQAAAAADTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAAgAAAAABfgAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAAwAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAgB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAwB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAIAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAADAH4AAAAAAABdAAAAAAMAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAMATQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAACAE0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwBNAAAAAAIAXQAAAAADAE0AAAAAAwBNAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAH4AAAAAAAAuAAAAAAAAfgAAAAAAAAIAAAAAAQB+AAAAAAAAHwAAAAABAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAwB+AAAAAAAALgAAAAAAAH4AAAAAAAADAAAAAAMAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAMAfgAAAAAAAC4AAAAAAAB+AAAAAAAAAwAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAH4AAAAAAABtAAAAAAAAfgAAAAAAAAMAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAQgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAAAAA== + version: 7 0,-3: ind: 0,-3 - tiles: XQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAACXQAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAegAAAAACegAAAAAAegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAegAAAAACegAAAAABegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAA - version: 6 + tiles: XQAAAAACAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAEAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAABkAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAIAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAH4AAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAADAH4AAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAgB+AAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAACAB8AAAAAAwB+AAAAAAAAegAAAAACAHoAAAAAAAB6AAAAAAIAfgAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAIAfgAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAADAH4AAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAADAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAQB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAfgAAAAAAAHoAAAAAAAB6AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAA== + version: 7 -1,-3: ind: -1,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAACXQAAAAADXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAC - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAGQAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAG0AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAFAAAAAAIAXQAAAAADAF0AAAAAAgBkAAAAAAAAZAAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAABQAAAAABAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAA== + version: 7 1,-2: ind: 1,-2 - tiles: egAAAAADegAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAACfgAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADfgAAAAAAHwAAAAABXQAAAAAAXQAAAAACXQAAAAAAegAAAAADegAAAAADegAAAAACegAAAAADegAAAAACegAAAAAAfgAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAAAXQAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAABXQAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAAAXQAAAAABegAAAAACegAAAAACegAAAAADegAAAAABegAAAAAAegAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAAAXQAAAAADDgAAAAADDgAAAAADDgAAAAADDgAAAAACDgAAAAACDgAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAAADgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAPAAAAAAAXQAAAAAAXQAAAAACTQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADTQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAATQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACTQAAAAACTQAAAAACfgAAAAAAfgAAAAAADgAAAAADDgAAAAAADgAAAAADDgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAADDgAAAAACegAAAAABegAAAAAAegAAAAADfgAAAAAAXQAAAAACcAAAAAADfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAAAegAAAAAAegAAAAABegAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAADXQAAAAACXQAAAAAAHwAAAAADHwAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAABDgAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAADDgAAAAAADgAAAAADDgAAAAADDgAAAAABDgAAAAACegAAAAAAegAAAAABegAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAABXQAAAAACXQAAAAACfgAAAAAAHwAAAAADDgAAAAABDgAAAAADDgAAAAACDgAAAAADDgAAAAACegAAAAACegAAAAAAegAAAAABfgAAAAAAcAAAAAADcAAAAAADfgAAAAAA - version: 6 + tiles: egAAAAADAHoAAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAQB6AAAAAAIAfgAAAAAAAAQAAAAAAwAEAAAAAAEABAAAAAAAAAQAAAAAAwB+AAAAAAAAHwAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAACAHoAAAAAAwB6AAAAAAIAegAAAAAAAH4AAAAAAAAEAAAAAAEABAAAAAACAAQAAAAAAwAEAAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAAB6AAAAAAEAegAAAAAAAHoAAAAAAgB6AAAAAAMAegAAAAAAAHoAAAAAAQB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAegAAAAAAAHoAAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAgB6AAAAAAEAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAHwAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAABAHoAAAAAAgB6AAAAAAIAegAAAAADAHoAAAAAAQB6AAAAAAAAegAAAAADAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAB8AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAwAOAAAAAAMADgAAAAADAA4AAAAAAwAOAAAAAAIADgAAAAACAA4AAAAAAQB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAAADgAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAPAAAAAAAAF0AAAAAAABdAAAAAAIATQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAADAE0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAABNAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAACAE0AAAAAAgBNAAAAAAIAfgAAAAAAAH4AAAAAAAAOAAAAAAMADgAAAAAAAA4AAAAAAwAOAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAAAfAAAAAAAADgAAAAADAA4AAAAAAAAOAAAAAAEADgAAAAADAA4AAAAAAgB6AAAAAAEAegAAAAAAAHoAAAAAAwB+AAAAAAAAXQAAAAACAHAAAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAQB+AAAAAAAAHwAAAAAAAA4AAAAAAgAOAAAAAAAADgAAAAABAA4AAAAAAgAOAAAAAAAAegAAAAAAAHoAAAAAAQB6AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAIAcAAAAAADAF0AAAAAAgBdAAAAAAAAHwAAAAADAB8AAAAAAAAOAAAAAAEADgAAAAACAA4AAAAAAQAOAAAAAAEADgAAAAADAHoAAAAAAwB6AAAAAAMAegAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAB8AAAAAAwAfAAAAAAMADgAAAAAAAA4AAAAAAwAOAAAAAAMADgAAAAABAA4AAAAAAgB6AAAAAAAAegAAAAABAHoAAAAAAAB+AAAAAAAAcAAAAAADAHAAAAAAAQBwAAAAAAEAXQAAAAACAF0AAAAAAgB+AAAAAAAAHwAAAAADAA4AAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAwAOAAAAAAIAegAAAAACAHoAAAAAAAB6AAAAAAEAfgAAAAAAAHAAAAAAAwBwAAAAAAMAfgAAAAAAAA== + version: 7 1,-1: ind: 1,-1 - tiles: XQAAAAADXQAAAAABfgAAAAAAHwAAAAADDgAAAAADDgAAAAABDgAAAAACDgAAAAADDgAAAAAAegAAAAACegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAACfgAAAAAAegAAAAABegAAAAAAHwAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAADfgAAAAAAegAAAAACegAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAATQAAAAACTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABEQAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: XQAAAAADAF0AAAAAAQB+AAAAAAAAHwAAAAADAA4AAAAAAwAOAAAAAAEADgAAAAACAA4AAAAAAwAOAAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAAbAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAH4AAAAAAAAfAAAAAAIAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAEMAAAAAAABDAAAAAAAAQwAAAAAAAB8AAAAAAgB+AAAAAAAAegAAAAABAHoAAAAAAAAfAAAAAAAAXQAAAAABAF0AAAAAAAB+AAAAAAAAHwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAABDAAAAAAAAQwAAAAAAAEMAAAAAAAAfAAAAAAMAfgAAAAAAAHoAAAAAAgB6AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAfgAAAAAAAB8AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAQwAAAAAAAEMAAAAAAABDAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAE0AAAAAAgBNAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAQB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAXQAAAAABAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAABAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABABEAAAAAAAAfAAAAAAEAHwAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 1,0: ind: 1,0 - tiles: XQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAXQAAAAABEQAAAAAAHwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAEQAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAATQAAAAADTQAAAAADfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABTQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAdAAAAAAAdAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAcAAAAAABdAAAAAACdAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAABXQAAAAADfgAAAAAAdAAAAAADdAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAdAAAAAADVgAAAAABfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: XQAAAAACAF0AAAAAAgB+AAAAAAAAAAAAAAAAAH4AAAAAAAA4AAAAAAAAXQAAAAABABEAAAAAAAAfAAAAAAMAOAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAIAfgAAAAAAAAAAAAAAAAB+AAAAAAAAOAAAAAAAADgAAAAAAAARAAAAAAAAOAAAAAAAADgAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAEQAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAADAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQB+AAAAAAAATQAAAAADAE0AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAABAE0AAAAAAQBNAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAH4AAAAAAAB0AAAAAAAAdAAAAAADAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABwAAAAAAEAdAAAAAACAHQAAAAAAwB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAF0AAAAAAQBdAAAAAAMAfgAAAAAAAHQAAAAAAwB0AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAAB0AAAAAAMAVgAAAAABAH4AAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -2,-2: ind: -2,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAACfAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABTQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACTQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACTQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAATQAAAAAAHwAAAAABHwAAAAABHwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAXQAAAAABHwAAAAABTQAAAAACTQAAAAAALgAAAAAALgAAAAAATgAAAAABLgAAAAAALgAAAAAATQAAAAABTQAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADHwAAAAADTQAAAAACTQAAAAACHwAAAAACLgAAAAAALgAAAAAALgAAAAAAHwAAAAACTQAAAAADTQAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABLgAAAAAATgAAAAAALgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAADLgAAAAAALgAAAAAALgAAAAAAHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAAC - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAHoAAAAAAgB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFsAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB6AAAAAAEAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABbAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAegAAAAABAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAHoAAAAAAwB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAIAegAAAAAAAHoAAAAAAgB8AAAAAAIAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAEATQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAACAE0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAgBNAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAE0AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAMAHwAAAAACAH4AAAAAAABdAAAAAAEAHwAAAAABAE0AAAAAAgBNAAAAAAAALgAAAAAAAC4AAAAAAABOAAAAAAEALgAAAAAAAC4AAAAAAABNAAAAAAEATQAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAAB+AAAAAAAAXQAAAAADAB8AAAAAAwBNAAAAAAIATQAAAAACAB8AAAAAAgAuAAAAAAAALgAAAAAAAC4AAAAAAAAfAAAAAAIATQAAAAADAE0AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEALgAAAAAAAE4AAAAAAAAuAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAHwAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgB+AAAAAAAAHwAAAAADAC4AAAAAAAAuAAAAAAAALgAAAAAAAB8AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgB+AAAAAAAAXQAAAAACAA== + version: 7 -2,-1: ind: -2,-1 - tiles: XQAAAAABXQAAAAADHwAAAAABLgAAAAAALgAAAAAATgAAAAAALgAAAAAALgAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAXQAAAAAATQAAAAAATQAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAATQAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAABXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABHwAAAAADHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAATQAAAAAAHwAAAAADHwAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACHwAAAAADHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAADfgAAAAAAXQAAAAADXQAAAAAD - version: 6 + tiles: XQAAAAABAF0AAAAAAwAfAAAAAAEALgAAAAAAAC4AAAAAAABOAAAAAAAALgAAAAAAAC4AAAAAAAAfAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAAAAH4AAAAAAABdAAAAAAAATQAAAAAAAE0AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAQB+AAAAAAAATQAAAAAAAE0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAMAfgAAAAAAAF0AAAAAAwBdAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAB8AAAAAAQBdAAAAAAAAXQAAAAACAH4AAAAAAAAfAAAAAAEAHwAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAHwAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQB+AAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAABAB8AAAAAAwAfAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwB+AAAAAAAAHwAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAE0AAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAHwAAAAADAB8AAAAAAQB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAwB6AAAAAAEAegAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAADAA== + version: 7 -2,0: ind: -2,0 - tiles: HwAAAAAAHwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADTQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADTQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADTQAAAAACXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAAAHwAAAAABfgAAAAAAHwAAAAABegAAAAABegAAAAACegAAAAABegAAAAACegAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABEQAAAAAAHwAAAAABfgAAAAAAHwAAAAADegAAAAACegAAAAADegAAAAABegAAAAABegAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACEQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAegAAAAACegAAAAACegAAAAABegAAAAACegAAAAADHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACEQAAAAAAHwAAAAACfgAAAAAAHwAAAAADegAAAAABegAAAAACegAAAAAAegAAAAABegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACHwAAAAADfgAAAAAAHwAAAAABegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAXQAAAAAA - version: 6 + tiles: HwAAAAAAAB8AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAAB6AAAAAAIAegAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAABtAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAMATQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAE0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBNAAAAAAIAXQAAAAACAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE0AAAAAAQBdAAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAEAegAAAAABAHoAAAAAAgB6AAAAAAEAegAAAAACAHoAAAAAAAAfAAAAAAIAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAEAEQAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAADAHoAAAAAAgB6AAAAAAMAegAAAAABAHoAAAAAAQB6AAAAAAIAHwAAAAADAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAACABEAAAAAAABdAAAAAAIAfgAAAAAAAB8AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAQB6AAAAAAIAegAAAAADAB8AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAgARAAAAAAAAHwAAAAACAH4AAAAAAAAfAAAAAAMAegAAAAABAHoAAAAAAgB6AAAAAAAAegAAAAABAHoAAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAB8AAAAAAwB+AAAAAAAAHwAAAAABAHoAAAAAAQB6AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgB+AAAAAAAAXQAAAAAAAA== + version: 7 1,-3: ind: 1,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAACfgAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAACfgAAAAAADAAAAAACDAAAAAABfgAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAAAegAAAAAAHwAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAABHwAAAAACDAAAAAADDAAAAAABfgAAAAAAegAAAAABegAAAAABegAAAAACegAAAAAAegAAAAAAegAAAAAAfgAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAACfgAAAAAADAAAAAAADAAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAABfgAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACfgAAAAAAfgAAAAAADAAAAAACDAAAAAACfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAAAegAAAAACegAAAAADfgAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAACegAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAADegAAAAAAfgAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAAfgAAAAAAHwAAAAABXQAAAAABXQAAAAAAXQAAAAAB - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAIAfgAAAAAAAAQAAAAAAAAEAAAAAAIABAAAAAADAAQAAAAAAwAEAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAAEAAAAAAIABAAAAAADAAQAAAAAAAAEAAAAAAMABAAAAAACAH4AAAAAAAAMAAAAAAIADAAAAAABAH4AAAAAAAB6AAAAAAEAegAAAAABAHoAAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAAAfAAAAAAEABAAAAAABAAQAAAAAAAAEAAAAAAEABAAAAAADAAQAAAAAAQAfAAAAAAIADAAAAAADAAwAAAAAAQB+AAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAfgAAAAAAAAQAAAAAAQAEAAAAAAAABAAAAAABAAQAAAAAAAAEAAAAAAIAfgAAAAAAAAwAAAAAAAAMAAAAAAIAfgAAAAAAAHoAAAAAAQB6AAAAAAEAegAAAAABAHoAAAAAAAB6AAAAAAMAegAAAAABAH4AAAAAAAAEAAAAAAEABAAAAAAAAAQAAAAAAAAEAAAAAAIAfgAAAAAAAH4AAAAAAAAMAAAAAAIADAAAAAACAH4AAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAgB6AAAAAAAAegAAAAACAHoAAAAAAwB+AAAAAAAABAAAAAADAAQAAAAAAwAEAAAAAAEABAAAAAADAH4AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAIAegAAAAAAAHoAAAAAAwB6AAAAAAIAegAAAAAAAHoAAAAAAwB6AAAAAAAAfgAAAAAAAAQAAAAAAgAEAAAAAAMABAAAAAACAAQAAAAAAAB+AAAAAAAAHwAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAA== + version: 7 -3,0: ind: -3,0 - tiles: HwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAeQAAAAAAeQAAAAAAfgAAAAAATQAAAAADXQAAAAADXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAMgAAAAADMgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAAAfgAAAAAAegAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABTQAAAAADXQAAAAABXQAAAAADXQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAACHwAAAAAAegAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACTQAAAAACXQAAAAACXQAAAAACXQAAAAADfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAADfgAAAAAAegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAATQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACcAAAAAADcAAAAAACcAAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABKAAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAcAAAAAABcAAAAAACcAAAAAACfgAAAAAAXQAAAAACEQAAAAAAXQAAAAACKAAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAACcAAAAAABcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAABHwAAAAABXQAAAAABEQAAAAAAEQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAACcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAXQAAAAAAEQAAAAAAXQAAAAAAaAAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAA - version: 6 + tiles: HwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAABAH4AAAAAAAB5AAAAAAAAeQAAAAAAAH4AAAAAAABNAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbgAAAAAAAB8AAAAAAAAfAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAAyAAAAAAMAMgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAACAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAwBtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAQB6AAAAAAMAegAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAE0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAAAegAAAAAAAHoAAAAAAgAfAAAAAAAAegAAAAADAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgBNAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAMAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAADAHoAAAAAAwB6AAAAAAMAfgAAAAAAAHoAAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAATQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFIAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAIAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAgBwAAAAAAMAcAAAAAACAHAAAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAKAAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAABAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAAAcAAAAAABAHAAAAAAAgBwAAAAAAIAfgAAAAAAAF0AAAAAAgARAAAAAAAAXQAAAAACACgAAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAIAcAAAAAABAHAAAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAgBwAAAAAAMAcAAAAAABAB8AAAAAAQBdAAAAAAEAEQAAAAAAABEAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAMAfgAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAADAHAAAAAAAgBwAAAAAAIAcAAAAAADAHAAAAAAAAB+AAAAAAAAXQAAAAAAABEAAAAAAABdAAAAAAAAaAAAAAACAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAA== + version: 7 -3,-2: ind: -3,-2 - tiles: ZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAACXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAABegAAAAACegAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAACegAAAAABegAAAAACegAAAAAAfgAAAAAATQAAAAACTQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABegAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAABegAAAAADegAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAAB - version: 6 + tiles: ZAAAAAAAAH4AAAAAAABkAAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAGQAAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAADAH4AAAAAAAB6AAAAAAAAegAAAAACAHoAAAAAAAB6AAAAAAIAegAAAAABAHoAAAAAAgB6AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQB+AAAAAAAAegAAAAACAHoAAAAAAQB6AAAAAAAAegAAAAACAHoAAAAAAQB6AAAAAAIAegAAAAAAAH4AAAAAAABNAAAAAAIATQAAAAABAE0AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAHwAAAAABAHoAAAAAAAB6AAAAAAMAegAAAAACAHoAAAAAAAB6AAAAAAEAegAAAAADAHoAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAA== + version: 7 -3,-1: ind: -3,-1 - tiles: fgAAAAAAfAAAAAADfAAAAAADegAAAAAAegAAAAADegAAAAACfAAAAAADfAAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAABXQAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAABHwAAAAADXQAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADKAAAAAACKAAAAAABHwAAAAADTQAAAAABXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAB - version: 6 + tiles: fgAAAAAAAHwAAAAAAwB8AAAAAAMAegAAAAAAAHoAAAAAAwB6AAAAAAIAfAAAAAADAHwAAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAEAXQAAAAADAB8AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAwB+AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAACAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAADAF0AAAAAAQAfAAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAAAfAAAAAAAAHwAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAEAAAAAAAABAAAAAAAAAHwAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAH4AAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAAAfAAAAAAEAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAE0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAwAoAAAAAAIAKAAAAAABAB8AAAAAAwBNAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAABAA== + version: 7 2,-3: ind: 2,-3 - tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATQAAAAACTQAAAAADTQAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAcAAAAAACeQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAB - version: 6 + tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAABAHoAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAABAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABNAAAAAAAATQAAAAACAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABNAAAAAAIATQAAAAADAE0AAAAAAQB+AAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAAB5AAAAAAAAcAAAAAABAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAgAfAAAAAAMAHwAAAAACAH4AAAAAAABwAAAAAAIAeQAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAABAA== + version: 7 2,-2: ind: 2,-2 - tiles: XQAAAAABXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAcAAAAAAAcAAAAAACeQAAAAACcAAAAAACfgAAAAAAcAAAAAAAXQAAAAABXQAAAAADXQAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAcAAAAAAAeQAAAAADcAAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADHwAAAAAAXQAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAcAAAAAADeQAAAAADcAAAAAABfgAAAAAAdQAAAAAAXQAAAAABXQAAAAABXQAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAcAAAAAAAeQAAAAADcAAAAAADfgAAAAAAdQAAAAAAXQAAAAAAXQAAAAACXQAAAAACHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAACcAAAAAABcAAAAAABeQAAAAADcAAAAAABfgAAAAAAdQAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADfgAAAAAAcAAAAAABPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAcAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADcAAAAAAAcAAAAAADeQAAAAACeQAAAAABeQAAAAADcAAAAAAAcAAAAAACcAAAAAACeQAAAAACcAAAAAABfgAAAAAAKAAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAABcAAAAAACfgAAAAAAcAAAAAAAeQAAAAABcAAAAAACfgAAAAAAHwAAAAADfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACcAAAAAABcAAAAAACHwAAAAADcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAcAAAAAABeQAAAAACcAAAAAADfgAAAAAAXQAAAAADcAAAAAAAeQAAAAABeQAAAAADeQAAAAABeQAAAAABeQAAAAADeQAAAAAAeQAAAAABeQAAAAADcAAAAAADfgAAAAAAcAAAAAACeQAAAAACcAAAAAACfgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAACcAAAAAABcAAAAAABeQAAAAACeQAAAAADcAAAAAABcAAAAAAAeQAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAACeQAAAAADeQAAAAAAeQAAAAADeQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAADcAAAAAACfgAAAAAAcAAAAAABeQAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAABcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAABcAAAAAAA - version: 6 + tiles: XQAAAAABAF0AAAAAAwBdAAAAAAMAHwAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAAAHwAAAAAAAHAAAAAAAABwAAAAAAIAeQAAAAACAHAAAAAAAgB+AAAAAAAAcAAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAB8AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAQB+AAAAAAAAcAAAAAAAAHkAAAAAAwBwAAAAAAEAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwAfAAAAAAAAXQAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAAAfgAAAAAAAHAAAAAAAwB5AAAAAAMAcAAAAAABAH4AAAAAAAB1AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAHwAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAAAAH4AAAAAAABwAAAAAAAAeQAAAAADAHAAAAAAAwB+AAAAAAAAdQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAB8AAAAAAQB+AAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAgBwAAAAAAEAcAAAAAABAHkAAAAAAwBwAAAAAAEAfgAAAAAAAHUAAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAMAcAAAAAADAH4AAAAAAABwAAAAAAEAPAAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAADAH4AAAAAAAB+AAAAAAAAcAAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAwB+AAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAEAcAAAAAAAAHAAAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAwBwAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAcAAAAAAAAHAAAAAAAwB5AAAAAAIAeQAAAAABAHkAAAAAAwBwAAAAAAAAcAAAAAACAHAAAAAAAgB5AAAAAAIAcAAAAAABAH4AAAAAAAAoAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAABwAAAAAAEAcAAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAACAH4AAAAAAABwAAAAAAAAeQAAAAABAHAAAAAAAgB+AAAAAAAAHwAAAAADAH4AAAAAAABwAAAAAAAAcAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAADAHkAAAAAAgBwAAAAAAEAcAAAAAACAB8AAAAAAwBwAAAAAAEAcAAAAAAAAHAAAAAAAwBwAAAAAAIAcAAAAAADAHAAAAAAAQBwAAAAAAEAcAAAAAAAAHAAAAAAAQBwAAAAAAIAfgAAAAAAAHAAAAAAAQB5AAAAAAIAcAAAAAADAH4AAAAAAABdAAAAAAMAcAAAAAAAAHkAAAAAAQB5AAAAAAMAeQAAAAABAHkAAAAAAQB5AAAAAAMAeQAAAAAAAHkAAAAAAQB5AAAAAAMAcAAAAAADAH4AAAAAAABwAAAAAAIAeQAAAAACAHAAAAAAAgB+AAAAAAAAfgAAAAAAAHAAAAAAAgB5AAAAAAEAcAAAAAABAHAAAAAAAgBwAAAAAAMAcAAAAAACAHAAAAAAAQBwAAAAAAEAeQAAAAACAHkAAAAAAwBwAAAAAAEAcAAAAAAAAHkAAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAQBwAAAAAAIAeQAAAAADAHkAAAAAAAB5AAAAAAMAeQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAwBwAAAAAAIAfgAAAAAAAHAAAAAAAQB5AAAAAAAAcAAAAAABAHAAAAAAAwBwAAAAAAIAcAAAAAADAHAAAAAAAQBwAAAAAAIAcAAAAAADAHAAAAAAAgBwAAAAAAMAcAAAAAABAHAAAAAAAABwAAAAAAIAcAAAAAACAH4AAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAgBwAAAAAAEAcAAAAAAAAA== + version: 7 3,-3: ind: 3,-3 - tiles: fgAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAegAAAAACfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAegAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAZAAAAAAAXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACZAAAAAAAZAAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: fgAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAABAHoAAAAAAAB6AAAAAAAAfgAAAAAAAHoAAAAAAgB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAZAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB6AAAAAAIAfgAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAegAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAADAHoAAAAAAwB+AAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAABkAAAAAAAAfgAAAAAAAF0AAAAAAABkAAAAAAAAZAAAAAAAAGQAAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAGQAAAAAAABkAAAAAAAAXQAAAAABAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAABkAAAAAAAAXQAAAAACAGQAAAAAAABkAAAAAAAAXQAAAAABAGQAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAZAAAAAAAAF0AAAAAAABkAAAAAAAAZAAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAGQAAAAAAABkAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAIAcAAAAAACAHAAAAAAAQB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 3,-2: ind: 3,-2 - tiles: cAAAAAADfgAAAAAAcAAAAAADeQAAAAACcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAAAcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAAAdQAAAAADcAAAAAABeQAAAAAAcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfQAAAAAAdQAAAAACdQAAAAAAcAAAAAAAeQAAAAABcAAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAADdQAAAAAAcAAAAAABeQAAAAABcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAADcAAAAAACcAAAAAACeQAAAAABcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAKAAAAAADKAAAAAABKAAAAAACKAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAABKAAAAAAAKAAAAAAAKAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAAAKAAAAAADKAAAAAACKAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAXQAAAAACTQAAAAADXQAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAADcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA - version: 6 + tiles: cAAAAAADAH4AAAAAAABwAAAAAAMAeQAAAAACAHAAAAAAAgB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAHkAAAAAAABwAAAAAAIAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB1AAAAAAAAdQAAAAADAHAAAAAAAQB5AAAAAAAAcAAAAAABAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAABAH4AAAAAAAB9AAAAAAAAdQAAAAACAHUAAAAAAABwAAAAAAAAeQAAAAABAHAAAAAAAQB+AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAHUAAAAAAwB1AAAAAAAAcAAAAAABAHkAAAAAAQBwAAAAAAEAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAABwAAAAAAMAcAAAAAACAHAAAAAAAgB5AAAAAAEAcAAAAAACAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB9AAAAAAAAcAAAAAAAAHAAAAAAAwBwAAAAAAIAcAAAAAAAAHAAAAAAAgB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAwB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAoAAAAAAMAKAAAAAABACgAAAAAAgAoAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAKAAAAAABACgAAAAAAAAoAAAAAAAAKAAAAAADAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAACgAAAAAAAAoAAAAAAMAKAAAAAACACgAAAAAAgB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAABdAAAAAAIATQAAAAADAF0AAAAAAgBdAAAAAAIAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAHAAAAAAAwBwAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB5AAAAAAMAcAAAAAADAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAcAAAAAACAHAAAAAAAQB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAA== + version: 7 2,-1: ind: 2,-1 - tiles: fgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAACeQAAAAAAeQAAAAACfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAACfgAAAAAAcAAAAAABcAAAAAABcAAAAAADfgAAAAAAXQAAAAADcAAAAAADcAAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAABHwAAAAADcAAAAAACeQAAAAADcAAAAAACfgAAAAAAXQAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAABfgAAAAAAcAAAAAABeQAAAAABcAAAAAADfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAAAcAAAAAACfgAAAAAAXQAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAAcAAAAAABeQAAAAABcAAAAAACfgAAAAAAcAAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABcAAAAAAAeQAAAAAAcAAAAAABcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAcAAAAAABcAAAAAACcAAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAA - version: 6 + tiles: fgAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB5AAAAAAIAeQAAAAAAAHkAAAAAAgB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAMAcAAAAAACAHAAAAAAAQBwAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAACAB8AAAAAAgB+AAAAAAAAcAAAAAABAHAAAAAAAQBwAAAAAAMAfgAAAAAAAF0AAAAAAwBwAAAAAAMAcAAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAAAAH4AAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAAAfAAAAAAEAHwAAAAADAHAAAAAAAgB5AAAAAAMAcAAAAAACAH4AAAAAAABdAAAAAAAAcAAAAAABAHAAAAAAAwBwAAAAAAAAcAAAAAADAHAAAAAAAAB+AAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAHwAAAAABAH4AAAAAAABwAAAAAAEAeQAAAAABAHAAAAAAAwB+AAAAAAAAXQAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAHkAAAAAAABwAAAAAAIAfgAAAAAAAF0AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAEAfgAAAAAAAHAAAAAAAQB5AAAAAAEAcAAAAAACAH4AAAAAAABwAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAQBwAAAAAAAAeQAAAAAAAHAAAAAAAQBwAAAAAAEAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAQB+AAAAAAAAcAAAAAABAHAAAAAAAgBwAAAAAAIAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbQAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAgB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAAAAA== + version: 7 3,-1: ind: 3,-1 - tiles: cAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAACcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAADcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAADcAAAAAACXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: cAAAAAACAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAABkAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAHAAAAAAAgBwAAAAAAEAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAABwAAAAAAAAcAAAAAADAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAcAAAAAADAHAAAAAAAwB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAHAAAAAAAQBwAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAABwAAAAAAMAcAAAAAACAF0AAAAAAQB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAcAAAAAABAHAAAAAAAABdAAAAAAIAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAZAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAGQAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,-4: ind: 1,-4 - tiles: fQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 2,-4: ind: 2,-4 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAbAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAGwAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -5,-1: ind: -5,-1 - tiles: AAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -4,-1: ind: -4,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAADbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAABfgAAAAAAbgAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAABLwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACfgAAAAAAHwAAAAAALwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAAALwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAACLwAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbgAAAAADAG4AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAG4AAAAAAQB+AAAAAAAAbgAAAAACAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAABAH4AAAAAAAAfAAAAAAEALwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAQB+AAAAAAAAHwAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAIAfgAAAAAAAB8AAAAAAAAvAAAAAAIAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAwB+AAAAAAAAHwAAAAAAAC8AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAEAfgAAAAAAAB8AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAIALwAAAAAAAA== + version: 7 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAZAAAAAAAAGQAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAA== + version: 7 -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 -4,0: ind: -4,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAABLwAAAAAAHwAAAAADLwAAAAACHwAAAAACLwAAAAAAHwAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAABXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAOAAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAOAAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAACfgAAAAAAOAAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABKAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADKAAAAAAAKAAAAAAAKAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAABfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAQB+AAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgB+AAAAAAAAHwAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABtAAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAEALwAAAAAAAB8AAAAAAwAvAAAAAAIAHwAAAAACAC8AAAAAAAAfAAAAAAAALwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAG0AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAwB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABNAAAAAAIATQAAAAABAF0AAAAAAwB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAMAfgAAAAAAADgAAAAAAAAfAAAAAAEAEQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAIAcAAAAAABAH4AAAAAAAA4AAAAAAAAHwAAAAAAABEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAABAHAAAAAAAgB+AAAAAAAAOAAAAAAAAB8AAAAAAwARAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAQAoAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAG0AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAwAoAAAAAAAAKAAAAAAAACgAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAMAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAACgAAAAAAQB+AAAAAAAAfgAAAAAAAA== + version: 7 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAGQAAAAAAABkAAAAAAAAfgAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAABkAAAAAAAAfgAAAAAAAA== + version: 7 0,-4: ind: 0,-4 - tiles: XQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA - version: 6 + tiles: XQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAIAbQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAIAbQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAgB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAABdAAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAA== + version: 7 -1,-4: ind: -1,-4 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADfgAAAAAAJAAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADegAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAC - version: 6 + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAIAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAwB+AAAAAAAAJAAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAADAHoAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAgB6AAAAAAMAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAA== + version: 7 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAA== + version: 7 -1,-6: ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAA== + version: 7 0,-5: ind: 0,-5 - tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAACXQAAAAABXQAAAAAAXQAAAAACBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAACXQAAAAAAXQAAAAABXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACXQAAAAADXQAAAAABXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACXQAAAAABXQAAAAAAXQAAAAACBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAADAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAgB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAgAMAAAAAAAAXQAAAAADAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAMADAAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAACAAcAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAAAHAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAgAMAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAEABwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAIADAAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAACAAcAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACAAwAAAAAAABdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAADAH4AAAAAAAB+AAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAfgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAABkAAAAAAAAZAAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: XQAAAAACXQAAAAAAHwAAAAAAegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADfgAAAAAAegAAAAACegAAAAABegAAAAADegAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACTQAAAAABTQAAAAADfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABHwAAAAAAfgAAAAAATgAAAAACXQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAACXQAAAAAC - version: 6 + tiles: XQAAAAACAF0AAAAAAAAfAAAAAAAAegAAAAABAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAegAAAAACAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAfgAAAAAAAHoAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAHoAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAH4AAAAAAAB6AAAAAAMAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB6AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAwBAAAAAAAAAQAAAAAAAAEAAAAAAAAB6AAAAAAMAegAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAMAfgAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAADAHoAAAAAAgAfAAAAAAIAHwAAAAAAAB8AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAAB6AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAEAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAIATQAAAAABAE0AAAAAAwB+AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAMAegAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAKAAAAAABAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAHwAAAAAAAH4AAAAAAABOAAAAAAIAXQAAAAAAAG0AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAwBdAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAIAXQAAAAACAA== + version: 7 3,0: ind: 3,0 - tiles: XQAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: XQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAADegAAAAACegAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAACfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAAAXQAAAAAAXQAAAAAAHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAACfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAwB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAABAH4AAAAAAAB6AAAAAAMAegAAAAACAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAMAegAAAAACAHoAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAATQAAAAACAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAIAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwAfAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAE0AAAAAAABdAAAAAAAAXQAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwAfAAAAAAIAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgAfAAAAAAMAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAA== + version: 7 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 -1,-5: ind: -1,-5 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAADAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAALXQAAAAABXQAAAAACXQAAAAACDAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAEXQAAAAAAXQAAAAAAXQAAAAABDAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABXQAAAAAAXQAAAAADXQAAAAADDAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAACXQAAAAABXQAAAAADDAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACDAAAAAAB - version: 6 + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAAwAAAAAAgB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAcAAAAACwBdAAAAAAEAXQAAAAACAF0AAAAAAgAMAAAAAAEAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAHAAAAAAQAXQAAAAAAAF0AAAAAAABdAAAAAAEADAAAAAABAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAABwAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAADAAwAAAAAAQB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAcAAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAwAMAAAAAAIAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIADAAAAAABAA== + version: 7 1,1: ind: 1,1 - tiles: XQAAAAACXQAAAAADfgAAAAAATQAAAAADTQAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABTQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA - version: 6 + tiles: XQAAAAACAF0AAAAAAwB+AAAAAAAATQAAAAADAE0AAAAAAAB+AAAAAAAAfgAAAAAAACgAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAXQAAAAABAF0AAAAAAgB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAATQAAAAADAE0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAABAE0AAAAAAgBNAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAXQAAAAACAF0AAAAAAQB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAA== + version: 7 2,1: ind: 2,1 - tiles: fgAAAAAAfgAAAAAAJgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAegAAAAABegAAAAABegAAAAAAfgAAAAAAXQAAAAACbAAAAAAAfgAAAAAAJgAAAAAALwAAAAABLwAAAAABLwAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAJgAAAAAALwAAAAADLwAAAAADLwAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAATQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABTQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACTQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAAmAAAAAAIAJgAAAAAAACYAAAAAAAAmAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAADAH4AAAAAAAB6AAAAAAEAegAAAAABAHoAAAAAAAB+AAAAAAAAXQAAAAACAGwAAAAAAAB+AAAAAAAAJgAAAAAAAC8AAAAAAQAvAAAAAAEALwAAAAADAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAACYAAAAAAAAvAAAAAAMALwAAAAADAC8AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAH4AAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAE0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAQBNAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAIATQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAADAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,-2: ind: 4,-2 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAwAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAA== + version: 7 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,0: ind: 2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAegAAAAACegAAAAAAegAAAAACfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAIAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAgB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgB+AAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgB+AAAAAAAAegAAAAADAHoAAAAAAgB6AAAAAAIAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAfAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAIAfgAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAACAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAgB+AAAAAAAAfgAAAAAAAA== + version: 7 3,1: ind: 3,1 - tiles: XQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: XQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAMAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAACAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAADAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,1: ind: -3,1 - tiles: aAAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAaAAAAAABaAAAAAABaAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABHwAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABegAAAAACegAAAAACegAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABTgAAAAADXQAAAAADTgAAAAADXQAAAAADTgAAAAADXQAAAAABTgAAAAADXQAAAAAAegAAAAACegAAAAACegAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAA - version: 6 + tiles: aAAAAAABAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAGgAAAAAAQBoAAAAAAEAaAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAADAHoAAAAAAgB6AAAAAAEAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAH4AAAAAAAA/AAAAAAAAPwAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAABAB8AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAPwAAAAAAAD8AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAAAegAAAAABAHoAAAAAAgB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAIAfgAAAAAAAD8AAAAAAAA/AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAH4AAAAAAAB+AAAAAAAAPwAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAIAegAAAAADAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAQB6AAAAAAIAegAAAAACAHoAAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAABAE4AAAAAAwBdAAAAAAMATgAAAAADAF0AAAAAAwBOAAAAAAMAXQAAAAABAE4AAAAAAwBdAAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAA== + version: 7 -4,1: ind: -4,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACegAAAAADegAAAAAAegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAATgAAAAABXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAACTgAAAAABfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAXQAAAAACegAAAAADegAAAAADegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAgB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAegAAAAADAHoAAAAAAAB6AAAAAAIAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAE4AAAAAAQBdAAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAMAegAAAAADAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAZAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABdAAAAAAIATgAAAAABAH4AAAAAAAB+AAAAAAAAegAAAAADAHoAAAAAAQB6AAAAAAMAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAZAAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAACAHoAAAAAAwB6AAAAAAMAegAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAH4AAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAA== + version: 7 -2,1: ind: -2,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAegAAAAACegAAAAACegAAAAADegAAAAACegAAAAABHwAAAAAAHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAACegAAAAACegAAAAACegAAAAABegAAAAACHwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAADHwAAAAACHwAAAAACIwAAAAABHwAAAAADIwAAAAABfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAABegAAAAADegAAAAACegAAAAADegAAAAACHwAAAAACfgAAAAAAIwAAAAAAHwAAAAADIwAAAAAAfgAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAATgAAAAAAXQAAAAACTgAAAAADXQAAAAABTgAAAAADXQAAAAADTgAAAAACXQAAAAAATgAAAAADXQAAAAAATgAAAAADXQAAAAADTgAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAATQAAAAAATQAAAAABTQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAgB+AAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAbQAAAAAAAB8AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAwB6AAAAAAIAegAAAAABAB8AAAAAAAAfAAAAAAIAQAAAAAAAAEAAAAAAAABAAAAAAAAAHwAAAAADAF0AAAAAAwB+AAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAMAegAAAAACAHoAAAAAAgB6AAAAAAIAegAAAAABAHoAAAAAAgAfAAAAAAMAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAGwAAAAAAAB+AAAAAAAAHwAAAAABAHoAAAAAAAB6AAAAAAEAegAAAAAAAHoAAAAAAgB6AAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAQB6AAAAAAAAegAAAAADAHoAAAAAAAB6AAAAAAMAegAAAAADAB8AAAAAAgAfAAAAAAIAIwAAAAABAB8AAAAAAwAjAAAAAAEAfgAAAAAAAF0AAAAAAwB+AAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAEAegAAAAABAHoAAAAAAwB6AAAAAAIAegAAAAADAHoAAAAAAgAfAAAAAAIAfgAAAAAAACMAAAAAAAAfAAAAAAMAIwAAAAAAAH4AAAAAAABdAAAAAAMAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAAAAE4AAAAAAABdAAAAAAIATgAAAAADAF0AAAAAAQBOAAAAAAMAXQAAAAADAE4AAAAAAgBdAAAAAAAATgAAAAADAF0AAAAAAABOAAAAAAMAXQAAAAADAE4AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAfgAAAAAAAE0AAAAAAABNAAAAAAEATQAAAAABAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -2,2: ind: -2,2 - tiles: fgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABTwAAAAAABQAAAAAAfgAAAAAATwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAXQAAAAADTwAAAAAATwAAAAAAfgAAAAAATwAAAAAAHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADXQAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAA - version: 6 + tiles: fgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAfgAAAAAAAF0AAAAAAQBPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEATwAAAAAAAAUAAAAAAAB+AAAAAAAATwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQB+AAAAAAAAXQAAAAADAE8AAAAAAABPAAAAAAAAfgAAAAAAAE8AAAAAAAAfAAAAAAEATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAAAfAAAAAAMAHwAAAAABAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUQAAAAAAAA== + version: 7 -1,3: ind: -1,3 - tiles: UQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAA - version: 6 + tiles: UQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAA== + version: 7 -1,2: ind: -1,2 - tiles: TwAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAADXQAAAAADTwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAACTwAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAADHwAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAAAHwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAACHwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA - version: 6 + tiles: TwAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAMAXQAAAAADAE8AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAgBPAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAABAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQBsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAAfAAAAAAAAHwAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAHwAAAAACAB8AAAAAAwBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAA== + version: 7 -3,2: ind: -3,2 - tiles: fgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 0,3: ind: 0,3 - tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAA - version: 6 + tiles: fQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAA== + version: 7 -3,3: ind: -3,3 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA - version: 6 + tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAA== + version: 7 -2,3: ind: -2,3 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABRAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: XQAAAAAAXQAAAAABHwAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAACHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACHwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAHwAAAAADHwAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAHwAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAADbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: XQAAAAAAAF0AAAAAAQAfAAAAAAAAbQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAF0AAAAAAwBdAAAAAAIAHwAAAAABAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAABsAAAAAAAAbAAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAIAHwAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAGwAAAAAAABsAAAAAAAAHwAAAAADAB8AAAAAAgBtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAABsAAAAAAAAbAAAAAAAAB8AAAAAAAAfAAAAAAIAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAG0AAAAAAABtAAAAAAAAbQAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAABAH4AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAA== + version: 7 -4,3: ind: -4,3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAABdAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAXQAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAF0AAAAAAgAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -5,1: ind: -5,1 - tiles: HwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAADTgAAAAACTgAAAAABTgAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: HwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE4AAAAAAwBOAAAAAAIATgAAAAABAE4AAAAAAgAfAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 2,-5: ind: 2,-5 - tiles: AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 2,-6: ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,-1: ind: 4,-1 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,2: ind: 1,2 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAA== + version: 7 -2,5: ind: -2,5 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 -3,5: ind: -3,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -6,1: ind: -6,1 - tiles: HwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAATgAAAAAATgAAAAABTgAAAAACTgAAAAACTgAAAAAATgAAAAACTgAAAAACTgAAAAABTgAAAAAATgAAAAABTgAAAAADTgAAAAABTgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: HwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAAAAE4AAAAAAABOAAAAAAEATgAAAAACAE4AAAAAAgBOAAAAAAAATgAAAAACAE4AAAAAAgBOAAAAAAEATgAAAAAAAE4AAAAAAQBOAAAAAAMATgAAAAABAE4AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAIAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAA7AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAB+AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -7,1: ind: -7,1 - tiles: QAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAIwAAAAACIwAAAAACIwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAIwAAAAAAOAAAAAAAOAAAAAAAIwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAfgAAAAAAOAAAAAAAIwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAACIwAAAAACOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: QAAAAAAAAEAAAAAAAABAAAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAADAEAAAAAAAABAAAAAAAAAQAAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAgBAAAAAAAAAQAAAAAAAAEAAAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAwAfAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAEAHwAAAAADAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAAAAH4AAAAAAAB9AAAAAAAAHwAAAAABAH4AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAMATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAIwAAAAAAACMAAAAAAgAjAAAAAAIAIwAAAAACAB8AAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAAB9AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfQAAAAAAACMAAAAAAAA4AAAAAAAAOAAAAAAAACMAAAAAAAAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfQAAAAAAAB8AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAADgAAAAAAAAjAAAAAAMAHwAAAAADAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH0AAAAAAAAfAAAAAAIAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAH4AAAAAAAA4AAAAAAAAIwAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAHwAAAAADAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAACMAAAAAAQAjAAAAAAIAIwAAAAACACMAAAAAAgAjAAAAAAIAOAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAB8AAAAAAgB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAADgAAAAAAAAjAAAAAAEAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAfAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAIwAAAAABAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH4AAAAAAAB9AAAAAAAAHwAAAAADAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAAAAQAjAAAAAAMAIwAAAAACACMAAAAAAwAfAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfQAAAAAAAB8AAAAAAgB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAMATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAACAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -6,0: ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 -7,0: ind: -7,0 - tiles: fQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAAAHwAAAAACEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADEQAAAAAAHwAAAAADEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAJAAAAAADHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: fQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAIAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAEAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAABAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAACAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAQB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAEAEQAAAAAAABEAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAADAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAIAEQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAwARAAAAAAAAHwAAAAADABEAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAIAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAAAJAAAAAADAB8AAAAAAAAfAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAADABEAAAAAAAAfAAAAAAEAEQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAAAABEAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAgB9AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAfAAAAAAIAfQAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAACAH4AAAAAAAB9AAAAAAAAHwAAAAACAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 -8,0: ind: -8,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADHwAAAAACAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAABEQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAJAAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAADfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAABHwAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAD - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAQAfAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAfAAAAAAMAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAEAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAABAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAQB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAfAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAABEAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAACAH0AAAAAAAAAAAAAAAAAfgAAAAAAABEAAAAAAAAfAAAAAAMAHwAAAAACAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAwB9AAAAAAAAAAAAAAAAAH4AAAAAAAARAAAAAAAAHwAAAAABABEAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAfAAAAAAIAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAAAkAAAAAAEAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAADAH0AAAAAAAB9AAAAAAAAfgAAAAAAABEAAAAAAAAfAAAAAAAAEQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAfAAAAAAIAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAARAAAAAAAAHwAAAAABAB8AAAAAAwAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAACAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAgB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAA== + version: 7 -8,1: ind: -8,1 - tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAABHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACIwAAAAACIwAAAAABIwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABIwAAAAADOAAAAAAAOAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADIwAAAAABOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAIwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAIwAAAAADIwAAAAABIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAIwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADIwAAAAABOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAIwAAAAABIwAAAAADIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAA - version: 6 + tiles: AAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAAAfgAAAAAAAB8AAAAAAgBAAAAAAAAAQAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAEAQAAAAAAAAEAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAEAAAAAAAABAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAACAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAMAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAABAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAACACMAAAAAAgAjAAAAAAEAIwAAAAACAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAfAAAAAAEAfQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAjAAAAAAMAOAAAAAAAADgAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAIwAAAAABADgAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAwB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAACMAAAAAAwA4AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAEAfQAAAAAAAH4AAAAAAAB+AAAAAAAAOAAAAAAAACMAAAAAAAAjAAAAAAMAIwAAAAABACMAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAIwAAAAAAADgAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADACMAAAAAAQA4AAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAfAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAAjAAAAAAEAIwAAAAADACMAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAgB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAA== + version: 7 -8,2: ind: -8,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAwB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAfAAAAAAMAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAADAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAABAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAQAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -7,2: ind: -7,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAACAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAfAAAAAAEAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAADAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAACAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -7,-1: ind: -7,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -8,-1: ind: -8,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 -5,3: ind: -5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAA== + version: 7 -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAACXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAbQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAQB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAbQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBtAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,2: ind: 2,2 - tiles: XQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: XQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABtAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAEAbQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAABAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBtAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAG0AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,3: ind: 1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,3: ind: 2,3 - tiles: fgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAADAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,3: ind: 3,3 - tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAwB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,4: ind: 0,4 - tiles: AAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,4: ind: -1,4 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -9538,6 +9538,7 @@ entities: chunkSize: 4 - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: SpreaderGrid - type: RadiationGridResistance - type: GasTileOverlay @@ -9553,6 +9554,7 @@ entities: localAnchorA: 0.5,0 damping: 1559.7855 stiffness: 14000.604 + - type: ImplicitRoof - uid: 943 components: - type: MetaData @@ -9577,20 +9579,20 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAACAB8AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAHwAAAAADHwAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADTgAAAAACTgAAAAAATgAAAAADHwAAAAACHwAAAAACWAAAAAAAWAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABWAAAAAAAWAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAHwAAAAADAB8AAAAAAwB6AAAAAAEAegAAAAABAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAWAAAAAAAAFgAAAAAAAB+AAAAAAAAAAAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwBOAAAAAAIATgAAAAAAAE4AAAAAAwAfAAAAAAIAHwAAAAACAFgAAAAAAABYAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBYAAAAAAAAWAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -9602,6 +9604,7 @@ entities: fixtures: {} - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: SpreaderGrid - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -9801,6 +9804,7 @@ entities: localAnchorA: 0.5,0 damping: 1560.8385 stiffness: 14010.056 + - type: ImplicitRoof - proto: AcousticGuitarInstrument entities: - uid: 6610 @@ -9820,67 +9824,6 @@ entities: - type: Transform pos: -23.517168,-10.499137 parent: 60 -- proto: ActionToggleInternals - entities: - - uid: 5836 - components: - - type: Transform - parent: 5430 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5430 - - uid: 6830 - components: - - type: Transform - parent: 6707 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6707 - - uid: 13159 - components: - - type: Transform - parent: 19510 - - type: InstantAction - container: 19510 -- proto: ActionToggleJetpack - entities: - - uid: 5757 - components: - - type: Transform - parent: 5430 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5430 - - uid: 6734 - components: - - type: Transform - parent: 6707 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6707 -- proto: ActionToggleLight - entities: - - uid: 4547 - components: - - type: Transform - parent: 18456 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 18456 - - uid: 8989 - components: - - type: Transform - parent: 18528 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 18528 - - uid: 13684 - components: - - type: Transform - parent: 18476 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 18476 - proto: AirAlarm entities: - uid: 12 @@ -64140,14 +64083,6 @@ entities: - type: Transform pos: 21.5,-26.5 parent: 60 -- proto: ComputerCargoShuttle - entities: - - uid: 21024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,11.5 - parent: 60 - proto: ComputerComms entities: - uid: 18508 @@ -64389,6 +64324,14 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-0.5 parent: 60 +- proto: ComputerSalvageJobBoard + entities: + - uid: 22153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,0.5 + parent: 60 - proto: ComputerShuttleCargo entities: - uid: 19004 @@ -64396,6 +64339,12 @@ entities: - type: Transform pos: 56.5,13.5 parent: 60 + - uid: 21024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,11.5 + parent: 60 - proto: ComputerSolarControl entities: - uid: 3338 @@ -71345,14 +71294,6 @@ entities: - type: Transform pos: 56.09298,8.675501 parent: 60 - - type: GasTank - toggleActionEntity: 13159 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 13159 - proto: DresserCaptainFilled entities: - uid: 6419 @@ -75064,39 +75005,11 @@ entities: - type: Transform pos: 0.76574916,21.115711 parent: 60 - - type: HandheldLight - toggleActionEntity: 4547 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 4547 - - type: ActionsContainer - uid: 18476 components: - type: Transform pos: 0.68762416,21.240711 parent: 60 - - type: HandheldLight - toggleActionEntity: 13684 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 13684 - - type: ActionsContainer - uid: 18702 components: - type: Transform @@ -113860,38 +113773,14 @@ entities: components: - type: Transform parent: 5313 - - type: GasTank - toggleActionEntity: 5836 - - type: Jetpack - toggleActionEntity: 5757 - type: Physics canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 5757 - - 5836 - - type: InsideEntityStorage - uid: 6707 components: - type: Transform parent: 1906 - - type: GasTank - toggleActionEntity: 6830 - - type: Jetpack - toggleActionEntity: 6734 - type: Physics canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 6734 - - 6830 - - type: InsideEntityStorage - proto: KitchenElectricGrill entities: - uid: 2227 @@ -114049,22 +113938,8 @@ entities: - type: Transform pos: -4.6236715,-6.065073 parent: 60 - - type: HandheldLight - toggleActionEntity: 8989 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 8989 - type: Physics canCollide: True - - type: ActionsContainer - uid: 18888 components: - type: Transform @@ -128666,6 +128541,12 @@ entities: - type: Transform pos: -26.5,-0.5 parent: 60 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: SeedExtractor entities: - uid: 5380 @@ -136697,13 +136578,6 @@ entities: - type: Transform pos: -6.5,38.5 parent: 60 -- proto: SuitStorageBasic - entities: - - uid: 9540 - components: - - type: Transform - pos: -40.5,3.5 - parent: 60 - proto: SuitStorageCaptain entities: - uid: 2926 @@ -136735,6 +136609,11 @@ entities: - type: Transform pos: 3.5,-35.5 parent: 60 + - uid: 9540 + components: + - type: Transform + pos: -40.5,3.5 + parent: 60 - uid: 10588 components: - type: Transform @@ -142457,6 +142336,12 @@ entities: - type: Transform pos: 4.5,-27.5 parent: 60 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - type: MaterialStorage materialWhiteList: - Cloth diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index f7ef35dff1..b82df7eb12 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 254.1.0 + engineVersion: 260.0.0 forkId: "" forkVersion: "" - time: 04/19/2025 11:18:31 - entityCount: 28356 + time: 05/21/2025 04:33:01 + entityCount: 28652 maps: - 780 grids: @@ -54,6 +54,7 @@ tilemap: 89: FloorSteel 3: FloorSteelCheckerDark 92: FloorSteelCheckerLight + 10: FloorSteelDamaged 96: FloorSteelDirty 98: FloorSteelLime 104: FloorTechMaint @@ -95,392 +96,396 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: WQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAIQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABeQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAA - version: 6 + tiles: WQAAAAACAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAEQAAAAAAAB0AAAAAAAB5AAAAAAAAEQAAAAAAAFkAAAAAAgB5AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAIQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAgB5AAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAAAeQAAAAAAABEAAAAAAABZAAAAAAMAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAgAdAAAAAAMAeQAAAAAAAHkAAAAAAAARAAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAEQAAAAAAAB0AAAAAAwARAAAAAAAAEQAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAACAHkAAAAAAABZAAAAAAMAeQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAIAeQAAAAAAAFkAAAAAAgB5AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAIAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAADAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAACAA== + version: 7 0,0: ind: 0,0 - tiles: WQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAABWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAFAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAFAAAAAAA - version: 6 + tiles: WQAAAAACAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAALAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAIAWQAAAAADAFkAAAAAAQB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAeQAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAABAAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAAQAAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAAB2AAAAAAMAdgAAAAADAFkAAAAAAgBZAAAAAAEAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAEAdgAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgB5AAAAAAAAeQAAAAAAACwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAQB2AAAAAAIAdgAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAgB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAMAdgAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAwB2AAAAAAMAdgAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAACAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHYAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAHYAAAAAAwB2AAAAAAEAdgAAAAAAAHkAAAAAAAAUAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAHkAAAAAAAB2AAAAAAEAdgAAAAABAHYAAAAAAAB5AAAAAAAAFAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: eQAAAAAAHQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAD - version: 6 + tiles: eQAAAAAAAB0AAAAAAgARAAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAADAHYAAAAAAwB2AAAAAAEAdgAAAAAAAHYAAAAAAAB2AAAAAAIAHQAAAAABAHkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAAdAAAAAAAAEQAAAAAAABEAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAAAAHYAAAAAAgB2AAAAAAMAdgAAAAADAB0AAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAgB5AAAAAAAAHQAAAAADABEAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAIAdgAAAAADAHYAAAAAAwB2AAAAAAIAdgAAAAABAHYAAAAAAgAdAAAAAAEAeQAAAAAAAFkAAAAAAwBZAAAAAAIAEQAAAAAAAB0AAAAAAwARAAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAQB2AAAAAAEAdgAAAAACAHYAAAAAAAB2AAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAQB5AAAAAAAAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQB5AAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAADWQAAAAABWQAAAAACWQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAdgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADWQAAAAAD - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAABAHkAAAAAAAAdAAAAAAIAHQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAABAB0AAAAAAgAdAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAgB5AAAAAAAAHQAAAAADAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAB0AAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAeQAAAAAAAB0AAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAADAHkAAAAAAAAdAAAAAAAAHQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAB0AAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAACAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAEAWQAAAAADAHkAAAAAAAAdAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAgB5AAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAEAWQAAAAACAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAAAAB0AAAAAAABZAAAAAAMAWQAAAAACAA== + version: 7 1,-1: ind: 1,-1 - tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAACWQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAACdgAAAAADBQAAAAADBQAAAAACdgAAAAACdgAAAAABdgAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAWQAAAAADeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAAABQAAAAACBQAAAAACdgAAAAACdgAAAAABdgAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAABWQAAAAADeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADWQAAAAADeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAWQAAAAABeQAAAAAAdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAWQAAAAADeQAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAA - version: 6 + tiles: WQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAABsAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHYAAAAAAwB2AAAAAAMAdgAAAAABAHYAAAAAAgB2AAAAAAEAdgAAAAACAHYAAAAAAgB2AAAAAAMAdgAAAAABAHYAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAAB2AAAAAAMAWQAAAAABAHkAAAAAAAB2AAAAAAEAdgAAAAADAHYAAAAAAgB2AAAAAAEAdgAAAAADAHYAAAAAAQB2AAAAAAIAdgAAAAABAHYAAAAAAwB2AAAAAAEAdgAAAAACAHYAAAAAAgB2AAAAAAEAdgAAAAACAFkAAAAAAwB5AAAAAAAAdgAAAAADAHYAAAAAAQB2AAAAAAIAdgAAAAAAAHYAAAAAAgB2AAAAAAEAdgAAAAACAHYAAAAAAAB2AAAAAAEAdgAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAABZAAAAAAEAeQAAAAAAAHYAAAAAAgB2AAAAAAIAdgAAAAABAHYAAAAAAgB2AAAAAAMAdgAAAAACAHYAAAAAAwB2AAAAAAIAdgAAAAADAHYAAAAAAgB5AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAIAWQAAAAACAHkAAAAAAAB2AAAAAAAAdgAAAAADAHYAAAAAAAB2AAAAAAIAdgAAAAACAAUAAAAAAwAFAAAAAAEAdgAAAAABAHYAAAAAAAB2AAAAAAIAeQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAADAFkAAAAAAwB5AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAAAdgAAAAAAAHYAAAAAAAAFAAAAAAEABQAAAAACAHYAAAAAAgB2AAAAAAMAdgAAAAADAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAABZAAAAAAIAeQAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAABAHYAAAAAAgB2AAAAAAIAdgAAAAABAHYAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAIAWQAAAAABAHkAAAAAAAB2AAAAAAEAdgAAAAABAHYAAAAAAAB2AAAAAAIAdgAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAAAAHYAAAAAAwB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAABAFkAAAAAAAB5AAAAAAAAdgAAAAACAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHYAAAAAAwB2AAAAAAAAdgAAAAABAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHYAAAAAAwA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAwB5AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAEAWQAAAAADAHkAAAAAAAB2AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAEAeQAAAAAAAHYAAAAAAQB2AAAAAAIAdgAAAAABAA== + version: 7 -2,-1: ind: -2,-1 - tiles: WQAAAAACWQAAAAADWQAAAAABeQAAAAAAaQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAB - version: 6 + tiles: WQAAAAABAFkAAAAAAABZAAAAAAIAeQAAAAAAAGkAAAAAAAAdAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAQB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAB0AAAAAAwAdAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAACAA== + version: 7 -2,-2: ind: -2,-2 - tiles: WQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADdgAAAAAAdgAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAABdgAAAAADdgAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAaQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAAD - version: 6 + tiles: WQAAAAADAFkAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAHYAAAAAAQB2AAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAgB2AAAAAAMAdgAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAEAdgAAAAABAHYAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAAAAHYAAAAAAwB2AAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAgB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAaQAAAAAAAB0AAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAIAeQAAAAAAAGkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAA== + version: 7 1,-2: ind: 1,-2 - tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAABWQAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAADWQAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAACWQAAAAACeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAABWQAAAAABeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACbAAAAAACHQAAAAABHQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABHQAAAAABHQAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAbAAAAAADHQAAAAACHQAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAABbAAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAbAAAAAACHQAAAAAAHQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADbAAAAAADHQAAAAABHQAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAB - version: 6 + tiles: WQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAgB5AAAAAAAAbAAAAAADAGwAAAAAAABsAAAAAAIAbAAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAADAGwAAAAAAgBZAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAgAdAAAAAAIAeQAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAACAGwAAAAAAgBsAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAwBsAAAAAAMAbAAAAAABAGwAAAAAAQBsAAAAAAIAbAAAAAADAFkAAAAAAQBsAAAAAAEAbAAAAAADAGwAAAAAAQBsAAAAAAEAbAAAAAADAGwAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAgBZAAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAMAbAAAAAACAGwAAAAAAABsAAAAAAEAeQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAQBsAAAAAAMAbAAAAAADAGwAAAAAAQBsAAAAAAAAbAAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAADAGwAAAAAAwBsAAAAAAEAbAAAAAADAFkAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAQBsAAAAAAEAbAAAAAABAGwAAAAAAQBsAAAAAAIAbAAAAAACAGwAAAAAAgBsAAAAAAMAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAABsAAAAAAEAeQAAAAAAAGwAAAAAAQB5AAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAwBsAAAAAAEAWQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAeQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAIAeQAAAAAAAGwAAAAAAwBsAAAAAAIAbAAAAAADAGwAAAAAAgBZAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAEAbAAAAAABAB0AAAAAAQAdAAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAMAbAAAAAABAGwAAAAAAQBsAAAAAAMAWQAAAAADAHkAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAAAdAAAAAAEAHQAAAAAAAGwAAAAAAwBsAAAAAAEAbAAAAAADAGwAAAAAAgBsAAAAAAMAbAAAAAADAGwAAAAAAgBsAAAAAAMAbAAAAAABAFkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAQBsAAAAAAAAHQAAAAABAB0AAAAAAQB5AAAAAAAAbAAAAAACAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAQBZAAAAAAEAeQAAAAAAAB0AAAAAAQAdAAAAAAMAbAAAAAABAB0AAAAAAQAdAAAAAAIAbAAAAAACAGwAAAAAAgBsAAAAAAEAbAAAAAAAAGwAAAAAAwBsAAAAAAEAbAAAAAACAGwAAAAAAQBsAAAAAAAAWQAAAAADAHkAAAAAAAAdAAAAAAAAHQAAAAACAGwAAAAAAwAdAAAAAAEAHQAAAAACAHkAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAgBsAAAAAAIAbAAAAAACAGwAAAAAAwBsAAAAAAIAbAAAAAABAA== + version: 7 0,-2: ind: 0,-2 - tiles: WQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACdgAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAWQAAAAACWQAAAAABHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACHQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAdgAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAACEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAACHQAAAAACEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAALAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAADEQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADLAAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADEQAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACHQAAAAADEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAWQAAAAADWQAAAAAC - version: 6 + tiles: WQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAB0AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAHYAAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAgB5AAAAAAAAWQAAAAACAFkAAAAAAgAdAAAAAAIAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAABAHYAAAAAAQB2AAAAAAEAdgAAAAADAHYAAAAAAAB2AAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAADAHYAAAAAAAB2AAAAAAMAdgAAAAABAB0AAAAAAQBZAAAAAAIAWQAAAAADAB0AAAAAAAAdAAAAAAIAHQAAAAABAHkAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAACAHYAAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAgARAAAAAAAAEQAAAAAAAB0AAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAAAHQAAAAABABEAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAwB2AAAAAAEAeQAAAAAAACwAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAAAAB0AAAAAAAARAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAABAHkAAAAAAAAsAAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAgAdAAAAAAIAEQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAAAAHYAAAAAAgAsAAAAAAAALAAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAAAEQAAAAAAABEAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAwB2AAAAAAIAdgAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAEAdgAAAAADAHYAAAAAAAB2AAAAAAEAdgAAAAADAHYAAAAAAQAdAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAAAHQAAAAACAB0AAAAAAwARAAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAADAHYAAAAAAQB2AAAAAAEAdgAAAAAAAHYAAAAAAwB2AAAAAAMAHQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAA== + version: 7 -1,-2: ind: -1,-2 - tiles: WQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAACWQAAAAABeQAAAAAAHQAAAAADdgAAAAACdgAAAAADdgAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADWQAAAAABBgAAAAAAWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADdgAAAAACHQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAWQAAAAACBgAAAAAAWQAAAAADeQAAAAAAHQAAAAADdgAAAAACdgAAAAADdgAAAAADHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACBgAAAAAAWQAAAAABeQAAAAAAHQAAAAADdgAAAAADdgAAAAABdgAAAAABHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADWQAAAAADBgAAAAAAWQAAAAACeQAAAAAAHQAAAAADdgAAAAACdgAAAAACdgAAAAADHQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABHQAAAAACdgAAAAABdgAAAAAAdgAAAAABHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAABdgAAAAABHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAHQAAAAADHQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAHQAAAAADEQAAAAAA - version: 6 + tiles: WQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAADAHkAAAAAAAAdAAAAAAMAdgAAAAACAHYAAAAAAAB2AAAAAAMAHQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAgBZAAAAAAMABgAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAACAB0AAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAMAWQAAAAADAAYAAAAAAABZAAAAAAIAeQAAAAAAAB0AAAAAAgB2AAAAAAAAdgAAAAABAHYAAAAAAAAdAAAAAAEAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAFkAAAAAAAAGAAAAAAAAWQAAAAACAHkAAAAAAAAdAAAAAAEAdgAAAAADAHYAAAAAAwB2AAAAAAMAHQAAAAACAHkAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAABZAAAAAAMABgAAAAAAAFkAAAAAAwB5AAAAAAAAHQAAAAABAHYAAAAAAQB2AAAAAAEAdgAAAAACAB0AAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAIAEQAAAAAAABEAAAAAAAAdAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAADAB0AAAAAAwB2AAAAAAIAdgAAAAADAHYAAAAAAgAdAAAAAAIAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAAdAAAAAAEAHQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAAdAAAAAAIAdgAAAAAAAHYAAAAAAgB2AAAAAAIAHQAAAAADAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAARAAAAAAAAHQAAAAAAAB0AAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAEQAAAAAAAB0AAAAAAwARAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAHkAAAAAAAB4AAAAAAAAeQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAAAeQAAAAAAAHkAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAWQAAAAABAHkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAADAHkAAAAAAAB5AAAAAAAAEQAAAAAAAB0AAAAAAwAdAAAAAAAAEQAAAAAAAA== + version: 7 -2,0: ind: -2,0 - tiles: HQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABeQAAAAAAaAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 + tiles: HQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAB0AAAAAAgB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAADAAkAAAAAAgAJAAAAAAEAeQAAAAAAAGgAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAgBZAAAAAAMAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAARAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAARAAAAAAAAEQAAAAAAAFkAAAAAAQB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAEQAAAAAAABEAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAEAAAAAAAABAAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAEAAAAAAAABAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABAAAAAAAAAeQAAAAAAAEAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAA== + version: 7 -2,-3: ind: -2,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 -1,-3: ind: -1,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAABWQAAAAABAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAB - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAEAWQAAAAABAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAADAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAEAHQAAAAABAB0AAAAAAwAdAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAADAHkAAAAAAABZAAAAAAAAWQAAAAACAAAAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAwAAAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAgAdAAAAAAIAHQAAAAAAAFkAAAAAAgBZAAAAAAMAAAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAHkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAA== + version: 7 0,-3: ind: 0,-3 - tiles: WQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAdwAAAAACdgAAAAACdgAAAAABdgAAAAADdwAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAdwAAAAACdgAAAAACdgAAAAACdgAAAAACdwAAAAAAaQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAAB - version: 6 + tiles: WQAAAAACAFkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAeQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAADAHkAAAAAAAB3AAAAAAIAdgAAAAACAHYAAAAAAgB2AAAAAAMAdwAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAwB5AAAAAAAAdwAAAAAAAHYAAAAAAwB2AAAAAAAAdgAAAAAAAHcAAAAAAABpAAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAB0AAAAAAwAdAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 1,-3: ind: 1,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAABWQAAAAACLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAADeQAAAAAAaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACWQAAAAAAWQAAAAACWQAAAAACaQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAbAAAAAACHQAAAAACHQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAADbAAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAACbAAAAAADHQAAAAAAHQAAAAACeQAAAAAAUgAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACWQAAAAABWQAAAAAAWQAAAAAB - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAIAbAAAAAABAGwAAAAAAQBsAAAAAAMAeQAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAwBsAAAAAAMAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAABsAAAAAAMAbAAAAAABAFkAAAAAAQAsAAAAAAAALAAAAAAAACwAAAAAAAB5AAAAAAAAbAAAAAADAGwAAAAAAQBsAAAAAAAAbAAAAAAAAHkAAAAAAABpAAAAAAAAbAAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAACAGwAAAAAAgB5AAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAeQAAAAAAAGwAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwBpAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAIAbAAAAAACAB0AAAAAAgAdAAAAAAAAeQAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAGwAAAAAAQBsAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAMAHQAAAAACAHkAAAAAAAAdAAAAAAMAHQAAAAACAGwAAAAAAQAdAAAAAAEAHQAAAAAAAHkAAAAAAABSAAAAAAEALAAAAAAAACwAAAAAAAB5AAAAAAAAbAAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAACAA== + version: 7 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAADgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAACDgAAAAADDgAAAAADDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAADgAAAAABDgAAAAABDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWQAAAAAADgAAAAABDgAAAAAADgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAABAQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAQAAAAAFAQAAAAAEAQAAAAAFWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAQAAAAADAQAAAAAAAQAAAAAFWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADAQAAAAADAQAAAAAEAQAAAAAFWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEFAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABAQAAAAAAAQAAAAADAQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAAQAAAAACAQAAAAAEAQAAAAAFFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAA - version: 6 + tiles: eQAAAAAAAHkAAAAAAAAOAAAAAAMAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAeQAAAAAAAHYAAAAAAQB2AAAAAAMAdgAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAB5AAAAAAAAGQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAOAAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAAAAHYAAAAAAgAQAAAAAAAAeQAAAAAAABAAAAAAAAB5AAAAAAAAGQAAAAAAABkAAAAAAAAZAAAAAAAAeQAAAAAAAA4AAAAAAAAOAAAAAAIADgAAAAABAA4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEAAAAAAAAHkAAAAAAAAQAAAAAAAAeQAAAAAAABkAAAAAAAAZAAAAAAAAGQAAAAAAAHkAAAAAAAAOAAAAAAMADgAAAAACAA4AAAAAAQAOAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAAB5AAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAQQAAAAAAAEEAAAAAAABBAAAAAAAAWQAAAAABAA4AAAAAAAAOAAAAAAIADgAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAEEAAAAAAABBAAAAAAAAQQAAAAAAAHkAAAAAAAAOAAAAAAMADgAAAAADAA4AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAABAAAAAAQAAQAAAAACAAEAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwB5AAAAAAAAAQAAAAAEAAEAAAAAAgABAAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAAAeQAAAAAAAAEAAAAAAQABAAAAAAUAAQAAAAAEAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwABAAAAAAEAAQAAAAAAAAEAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAQB5AAAAAAAAAQAAAAAFAAEAAAAAAAABAAAAAAQAWQAAAAABAFkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAMAeQAAAAAAAAEAAAAABQABAAAAAAMAAQAAAAABABQAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAgABAAAAAAQAAQAAAAAFAAEAAAAABQAUAAAAAAAAFAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAwB5AAAAAAAAAQAAAAABAAEAAAAABAABAAAAAAMAFAAAAAAAABQAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAEAeQAAAAAAAAEAAAAABQABAAAAAAIAAQAAAAABAA== + version: 7 0,1: ind: 0,1 - tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAA - version: 6 + tiles: WQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAQB5AAAAAAAAeAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAB4AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAIAdgAAAAADAHkAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAAAdgAAAAACAHYAAAAAAwB5AAAAAAAAaAAAAAAAAGgAAAAAAABZAAAAAAMAeQAAAAAAAHYAAAAAAQB2AAAAAAMAdgAAAAABAHYAAAAAAgB5AAAAAAAAdgAAAAADAHYAAAAAAQB2AAAAAAEAdgAAAAADAHYAAAAAAQB2AAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAQB2AAAAAAMAeQAAAAAAAHYAAAAAAwB2AAAAAAMAdgAAAAABAHYAAAAAAwB2AAAAAAIAdgAAAAABAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAwB2AAAAAAMAdgAAAAABAHkAAAAAAAB2AAAAAAEAdgAAAAADAHYAAAAAAgB2AAAAAAAAdgAAAAADAHYAAAAAAgBoAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAIAdgAAAAACAHYAAAAAAgB5AAAAAAAAdgAAAAABAHYAAAAAAwB2AAAAAAMAdgAAAAADAHYAAAAAAwB2AAAAAAEAeQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAMAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAABAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAACAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: eQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADUAAAAAAAUAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA - version: 6 + tiles: WQAAAAACAFkAAAAAAwBZAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAACAHkAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAHkAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAwBZAAAAAAAAWQAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAABAHkAAAAAAAAdAAAAAAMAHQAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwAdAAAAAAEAHQAAAAABAB0AAAAAAwAdAAAAAAIAHQAAAAACAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAQBZAAAAAAMAWQAAAAADAA== + version: 7 1,1: ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAABAQAAAAAAAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAACdgAAAAADHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAEAAAAAAAABAAAAAAEAAQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,2: ind: -1,2 - tiles: HQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAACLAAAAAAALAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAACQAAAAAAHQAAAAADCQAAAAAB - version: 6 + tiles: WQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAQAdAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAACAFkAAAAAAgAdAAAAAAAAHQAAAAACAB0AAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAeQAAAAAAAB0AAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAIAeQAAAAAAAB0AAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAAdAAAAAAMAWQAAAAAAAB0AAAAAAQBZAAAAAAAAWQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAB0AAAAAAQBZAAAAAAIAHQAAAAAAAFkAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAACAB0AAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAHQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgB5AAAAAAAAHQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAB0AAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAA== + version: 7 0,2: ind: 0,2 - tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAAAWQAAAAACWQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAAACQAAAAADHQAAAAABCQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAbAAAAAADAGwAAAAAAwBsAAAAAAMAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAGwAAAAAAQBsAAAAAAAAbAAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABMAAAAABAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEwAAAAADAHYAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAATAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAEAHQAAAAACAB0AAAAAAgB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAMAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAgB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAgB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAACAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAeQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAEAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAAAAA== + version: 7 1,2: ind: 1,2 - tiles: WQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: aAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,1: ind: 2,1 - tiles: AQAAAAAAAQAAAAAFAQAAAAAFAQAAAAAFAQAAAAABAQAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA - version: 6 + tiles: AQAAAAAEAAEAAAAAAgABAAAAAAAAAQAAAAADAAEAAAAAAQABAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAA== + version: 7 2,0: ind: 2,0 - tiles: PgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAACQAAAAAACQAAAAABCQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAACAQAAAAAAAQAAAAAFAQAAAAAFAQAAAAAAAQAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAFAQAAAAAEAQAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAAEWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAADAQAAAAAEAQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAADAQAAAAACAQAAAAADAQAAAAAFAQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAQAAAAACAQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAAFAQAAAAABAQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA - version: 6 + tiles: PgAAAAAAAD4AAAAAAAB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAABADoAAAAAAAA6AAAAAAAAOgAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAAEAAAAABAABAAAAAAAAAQAAAAABAAEAAAAABAABAAAAAAAAAQAAAAAEAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAABAAAAAAMAAQAAAAAEAAEAAAAAAgABAAAAAAAAAQAAAAACAAEAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAQAAAAACAAEAAAAABAABAAAAAAUAAQAAAAAAAAEAAAAAAAABAAAAAAQAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAAEAAAAAAQABAAAAAAQAAQAAAAABAAEAAAAABAABAAAAAAAAAQAAAAAFAFkAAAAAAwBZAAAAAAEAWQAAAAABAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAABAAAAAAEAAQAAAAADAAEAAAAAAAABAAAAAAEAAQAAAAABAAEAAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAAQAAAAACAAEAAAAABAABAAAAAAIAAQAAAAABAAEAAAAAAQABAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAEAAAAAAwABAAAAAAIAAQAAAAADAAEAAAAAAAABAAAAAAUAAQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAABAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAABAAAAAAIAAQAAAAADAAEAAAAAAgABAAAAAAUAAQAAAAAEAAEAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAQAAAAACAAEAAAAAAgABAAAAAAUAAQAAAAAFAAEAAAAAAgABAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAA== + version: 7 -2,1: ind: -2,1 - tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAABdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA - version: 6 + tiles: eQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAIAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAGAAAAAAAAaAAAAAAAAAYAAAAAAAAGAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAQB2AAAAAAIAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAB0AAAAAAwAdAAAAAAEAeQAAAAAAAB0AAAAAAgAdAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAwB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAQB2AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAB0AAAAAAQAdAAAAAAIAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAADAHYAAAAAAgB2AAAAAAIAdgAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAABAHkAAAAAAAAdAAAAAAIAHQAAAAABAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAgB2AAAAAAAAdgAAAAADAHYAAAAAAwB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAEAdgAAAAACAHYAAAAAAQB2AAAAAAEAeQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAA - version: 6 - 0,3: - ind: 0,3 - tiles: HQAAAAACHQAAAAADCQAAAAADHQAAAAADCQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,0: - ind: -3,0 - tiles: eQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABEQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACEQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAADEQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA - version: 6 - -3,1: - ind: -3,1 - tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADeQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAAdgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,1: - ind: -4,1 - tiles: eAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA - version: 6 - -4,0: - ind: -4,0 - tiles: WQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -5,0: - ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAA - version: 6 - -5,1: - ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -6,0: - ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -5,-1: - ind: -5,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAB - version: 6 - -4,-1: - ind: -4,-1 - tiles: WQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAB - version: 6 - -3,-1: - ind: -3,-1 - tiles: eQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABHQAAAAABeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADHQAAAAACeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAD - version: 6 - 3,0: - ind: 3,0 - tiles: OgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADPgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAUgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 2,-1: - ind: 2,-1 - tiles: eQAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAACXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACHQAAAAADHQAAAAACWQAAAAAAeQAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACdgAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACWQAAAAAAHQAAAAACWQAAAAADWQAAAAADHQAAAAABHQAAAAAAWQAAAAADHQAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAADWQAAAAABHQAAAAADWQAAAAAAWQAAAAACHQAAAAACHQAAAAACWQAAAAADeQAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAAAWQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACCQAAAAADCQAAAAAACQAAAAABOgAAAAAAOgAAAAAAOgAAAAAA - version: 6 - 3,1: - ind: 3,1 - tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAKQAAAAAAeQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 4,1: - ind: 4,1 - tiles: HQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 4,0: - ind: 4,0 - tiles: PgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 5,0: - ind: 5,0 - tiles: eAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,-1: - ind: 3,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAADWQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAABWQAAAAACHQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAACdgAAAAADWQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAA - version: 6 - -5,-2: - ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -4,-2: - ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAA - version: 6 - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAdgAAAAADdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAA - version: 6 - -3,-3: - ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -2,-4: - ind: -2,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAQAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -1,-4: - ind: -1,-4 - tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAagAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAABHQAAAAABEQAAAAAAHQAAAAACHQAAAAACEQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAADEQAAAAAAHQAAAAADHQAAAAADEQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAHQAAAAACEQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABHQAAAAACHQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABEQAAAAAAHQAAAAAAHQAAAAABEQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAADHQAAAAAAEQAAAAAAHQAAAAADHQAAAAACEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAB - version: 6 - 0,-4: - ind: 0,-4 - tiles: eQAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAACYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAACeQAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 2,-3: - ind: 2,-3 - tiles: eQAAAAAAaQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAACbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAABbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAABeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAABWQAAAAABWQAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACeQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACWQAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAADWQAAAAAAWQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAA - version: 6 - 2,-2: - ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAACbAAAAAACbAAAAAADeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAABbAAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAADaQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAHQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAABaQAAAAAAHQAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABaQAAAAAAHQAAAAADaQAAAAAAHQAAAAAA - version: 6 - 2,-4: - ind: 2,-4 - tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAbAAAAAACbAAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABCQAAAAACCQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 3,-2: - ind: 3,-2 - tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAADHQAAAAACaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAACHQAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAWQAAAAAAWQAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACeQAAAAAAWQAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAABHQAAAAABaQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAACHQAAAAAAaQAAAAAAbAAAAAADbAAAAAABbAAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAbAAAAAAAbAAAAAACbAAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABeQAAAAAAbAAAAAABbAAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAWQAAAAADEQAAAAAAHQAAAAAAWQAAAAADbAAAAAACbAAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADWQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAWQAAAAACEQAAAAAAHQAAAAACWQAAAAADbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAA - version: 6 - 4,-2: - ind: 4,-2 - tiles: eQAAAAAAbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAaQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAABeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAaQAAAAAATQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAaQAAAAAATQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADWQAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 5,-2: - ind: 5,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 4,-3: - ind: 4,-3 - tiles: eQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADaAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACaAAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACaAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADbAAAAAAAbAAAAAACbAAAAAADaAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeAAAAAAAaQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAWQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACeQAAAAAAeAAAAAAAaQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAABbAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeAAAAAAAaQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAACWQAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAA - version: 6 - 3,-3: - ind: 3,-3 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAEeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADEwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAAAWQAAAAABbAAAAAAAWQAAAAABbAAAAAABWQAAAAAAbAAAAAADWQAAAAADbAAAAAAAWQAAAAACbAAAAAACWQAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAABWQAAAAAAHQAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 4,-4: - ind: 4,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAPAAAAAAAYAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 5,-3: - ind: 5,-3 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 5,-4: - ind: 5,-4 - tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,-4: - ind: 3,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAG - version: 6 - 4,-1: - ind: 4,-1 - tiles: WQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAABWQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAACHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADWQAAAAACWQAAAAACHQAAAAAAHQAAAAABHQAAAAAAWQAAAAACWQAAAAABHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAADHQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADHQAAAAADHQAAAAACHQAAAAACWQAAAAABWQAAAAADHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAHQAAAAACHQAAAAADHQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 5,-1: - ind: 5,-1 - tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 4,-5: - ind: 4,-5 - tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA - version: 6 - 5,-5: - ind: 5,-5 - tiles: AAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,-5: - ind: 3,-5 - tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA - version: 6 - 2,-5: - ind: 2,-5 - tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 1,-5: - ind: 1,-5 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA - version: 6 - 1,-4: - ind: 1,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA - version: 6 - -1,-5: - ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAADagAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAD - version: 6 - -2,-5: - ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABDgAAAAABDgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABHQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -3,-4: - ind: -3,-4 - tiles: AAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -3,-5: - ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA - version: 6 - 0,-5: - ind: 0,-5 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAA - version: 6 - 0,-6: - ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -1,-6: - ind: -1,-6 - tiles: AAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 1,-6: - ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA - version: 6 - 2,-6: - ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,-6: - ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAA - version: 6 - -4,-4: - ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,-5: - ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA - version: 6 - -4,-3: - ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,2: - ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,2: - ind: -3,2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAB0AAAAAAgAdAAAAAAEAeQAAAAAAAB0AAAAAAQAdAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAAAdAAAAAAAAHQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwBcAAAAAAAAXAAAAAAAAFwAAAAAAgBcAAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAHQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAMAXAAAAAAAAFwAAAAAAQBcAAAAAAAAXAAAAAACAHkAAAAAAAAdAAAAAAMAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAADAFwAAAAAAgBcAAAAAAAAXAAAAAADAFwAAAAAAQB5AAAAAAAAHQAAAAACAHkAAAAAAAAdAAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBcAAAAAAIAXAAAAAACAFwAAAAAAABcAAAAAAMAeQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAAAAHkAAAAAAABQAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABcAAAAAAMAXAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAwB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAUAAAAAAAAHkAAAAAAABQAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAFAAAAAAAAB5AAAAAAAAUAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAIAHQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAABgAAAAAAAAYAAAAAAAAdAAAAAAMABgAAAAAAAAYAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAGAAAAAAAABgAAAAAAAB0AAAAAAgAGAAAAAAAABgAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 -1,3: ind: -1,3 - tiles: dgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAACQAAAAABHQAAAAACCQAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,3: - ind: 1,3 - tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,2: - ind: 2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,2: - ind: 3,2 - tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAgB4AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgB5AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAEAeAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAIAeQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAHgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAABAGgAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBoAAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAEAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAACAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -3,0: + ind: -3,0 + tiles: eQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAEAeQAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAADABEAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAARAAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAEQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAA== + version: 7 + -3,1: + ind: -3,1 + tiles: aAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAACAHkAAAAAAAB2AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAQB2AAAAAAAAeQAAAAAAAHYAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB5AAAAAAAAdgAAAAAAAHkAAAAAAAB2AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHYAAAAAAgB5AAAAAAAAdgAAAAACAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAgB5AAAAAAAAdgAAAAACAHkAAAAAAAB5AAAAAAAAdgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAMAeQAAAAAAAHYAAAAAAwB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAAAdgAAAAAAAHYAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAA== + version: 7 + -4,1: + ind: -4,1 + tiles: eAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAA== + version: 7 + -4,0: + ind: -4,0 + tiles: WQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAADAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + -5,0: + ind: -5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAeQAAAAAAAA== + version: 7 + -5,1: + ind: -5,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -6,0: + ind: -6,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -5,-1: + ind: -5,-1 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAADAA== + version: 7 + -4,-1: + ind: -4,-1 + tiles: WQAAAAADAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABAAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAEAAAAAAAAFkAAAAAAwB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAAQAAAAAAAAWQAAAAABAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAE8AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAAAAHkAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAEAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAE8AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAEAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAACAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAADAA== + version: 7 + -3,-1: + ind: -3,-1 + tiles: eQAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADABAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAEAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAD0AAAAAAAA9AAAAAAAAPQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQAQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAA9AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAwAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgAdAAAAAAMAeQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAB0AAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAIAHQAAAAABAHkAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAgB5AAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAVAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAABAA== + version: 7 + 3,0: + ind: 3,0 + tiles: OgAAAAAAADoAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAABAHYAAAAAAgB2AAAAAAEAdgAAAAAAAHYAAAAAAgB5AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAPgAAAAAAADoAAAAAAAA6AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAQB2AAAAAAIAdgAAAAABAHYAAAAAAgB2AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAeQAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAAAdgAAAAABAHYAAAAAAQB2AAAAAAMAdgAAAAABAHkAAAAAAAAdAAAAAAMAHQAAAAADAHkAAAAAAAA+AAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFIAAAAAAgBSAAAAAAMAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAUgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABsAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + 2,-1: + ind: 2,-1 + tiles: eQAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAEAHQAAAAABAFwAAAAAAABcAAAAAAEAXAAAAAACAFwAAAAAAABcAAAAAAMAXAAAAAADAFwAAAAAAQBcAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAADAB0AAAAAAQAdAAAAAAAAWQAAAAADAHkAAAAAAABcAAAAAAAAXAAAAAACAFwAAAAAAgBcAAAAAAAAXAAAAAADAFwAAAAAAABcAAAAAAEAXAAAAAADAHkAAAAAAAAdAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAQB2AAAAAAEAXAAAAAAAAFwAAAAAAwBcAAAAAAIAXAAAAAABAFwAAAAAAABcAAAAAAMAXAAAAAACAFwAAAAAAwB5AAAAAAAAHQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAAAeQAAAAAAAFwAAAAAAQBcAAAAAAMAXAAAAAACAFwAAAAAAQBcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAWQAAAAABAB0AAAAAAwBZAAAAAAEAWQAAAAABAB0AAAAAAAAdAAAAAAAAWQAAAAABAB0AAAAAAwBcAAAAAAEAXAAAAAACAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAgBcAAAAAAMAXAAAAAACAFkAAAAAAwAdAAAAAAIAWQAAAAADAFkAAAAAAQAdAAAAAAMAHQAAAAABAFkAAAAAAwB5AAAAAAAAXAAAAAAAAFwAAAAAAQBcAAAAAAMAXAAAAAACAFwAAAAAAABcAAAAAAMAXAAAAAAAAFwAAAAAAQBZAAAAAAAAHQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAWQAAAAABAAkAAAAAAwAJAAAAAAAACQAAAAADADoAAAAAAAA6AAAAAAAAOgAAAAAAAA== + version: 7 + 3,1: + ind: 3,1 + tiles: aAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAKQAAAAAAAHkAAAAAAAApAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAApAAAAAAAAKQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAKQAAAAAAACkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 4,1: + ind: 4,1 + tiles: HQAAAAADAHkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAQB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAPgAAAAAAAHkAAAAAAAA+AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 4,0: + ind: 4,0 + tiles: PgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAMACAAAAAAAAAgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAABAAgAAAAAAAAIAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAwAIAAAAAAAACAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAAAdAAAAAAIACAAAAAAAAAgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABgAAAAAAAAeQAAAAAAAGAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + 5,0: + ind: 5,0 + tiles: eAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 3,-1: + ind: 3,-1 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAwB2AAAAAAIAdgAAAAACAHYAAAAAAQB2AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAAAWQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAdgAAAAABAHYAAAAAAgB2AAAAAAEAdgAAAAABAHYAAAAAAQB2AAAAAAIAdgAAAAACAHYAAAAAAQB2AAAAAAIAdgAAAAADAFkAAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAHYAAAAAAAB2AAAAAAMAdgAAAAABAHYAAAAAAgB2AAAAAAEAdgAAAAACAHYAAAAAAwB2AAAAAAEAdgAAAAABAHYAAAAAAABZAAAAAAMAHQAAAAABAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAEAdgAAAAACAHYAAAAAAQB2AAAAAAMAdgAAAAAAAHYAAAAAAwB2AAAAAAAAWQAAAAABAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAADAHYAAAAAAgB2AAAAAAMAdgAAAAACAHYAAAAAAgB2AAAAAAMAdgAAAAADAHYAAAAAAQB2AAAAAAEAdgAAAAAAAFkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAABAHYAAAAAAAB2AAAAAAMAdgAAAAADAHYAAAAAAQB2AAAAAAIAdgAAAAADAHYAAAAAAQBZAAAAAAEAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAEAdgAAAAAAAHYAAAAAAgB2AAAAAAMAdgAAAAACAHYAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB5AAAAAAAAWQAAAAABAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAADAHYAAAAAAwB2AAAAAAMAdgAAAAACAHYAAAAAAgB2AAAAAAMAeQAAAAAAAHYAAAAAAgB2AAAAAAMAdgAAAAABAB0AAAAAAwAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAQB2AAAAAAMAdgAAAAACAHYAAAAAAwB2AAAAAAIAdgAAAAADAHkAAAAAAAB2AAAAAAIAdgAAAAAAAHYAAAAAAgBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAQB2AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAOgAAAAAAADoAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAACAHYAAAAAAgB2AAAAAAEAdgAAAAADAHYAAAAAAQB5AAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAAPgAAAAAAAA== + version: 7 + -5,-2: + ind: -5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + -4,-2: + ind: -4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAEAAAAAAAAA== + version: 7 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAwB5AAAAAAAAdgAAAAACAHYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHYAAAAAAgB2AAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAHkAAAAAAAB2AAAAAAMAdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAA== + version: 7 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + -2,-4: + ind: -2,-4 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAwB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAMAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAACAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAEAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAADAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAARAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + -1,-4: + ind: -1,-4 + tiles: eQAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAGoAAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAgB5AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAHQAAAAAAAB0AAAAAAwARAAAAAAAAHQAAAAAAAB0AAAAAAwARAAAAAAAAeQAAAAAAAB0AAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAB0AAAAAAgAdAAAAAAAAEQAAAAAAAB0AAAAAAAAdAAAAAAMAEQAAAAAAAHkAAAAAAAAdAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAAAdAAAAAAMAHQAAAAACABEAAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAgB5AAAAAAAAHQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAMAHQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAQAdAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAMAHQAAAAACAB0AAAAAAQARAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAeQAAAAAAAB0AAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAACAB0AAAAAAAAdAAAAAAEAEQAAAAAAAB0AAAAAAAAdAAAAAAMAEQAAAAAAAHkAAAAAAAAdAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgAdAAAAAAIAHQAAAAAAABEAAAAAAAAdAAAAAAEAHQAAAAABABEAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAA== + version: 7 + 0,-4: + ind: 0,-4 + tiles: eQAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAYgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGIAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAFkAAAAAAAB5AAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAGIAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAgBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + 2,-3: + ind: 2,-3 + tiles: eQAAAAAAAGkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAEAHQAAAAADAGwAAAAAAQBsAAAAAAMAbAAAAAACAHkAAAAAAABsAAAAAAIAbAAAAAAAAGwAAAAAAwBsAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAwB5AAAAAAAAbAAAAAADAGwAAAAAAQBsAAAAAAEAbAAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAgB5AAAAAAAAbAAAAAACAGwAAAAAAABsAAAAAAIAbAAAAAABAGwAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAAAbAAAAAABAHkAAAAAAABsAAAAAAIAbAAAAAAAAGwAAAAAAgBsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAwB5AAAAAAAAbAAAAAACAGwAAAAAAgBsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAIAeQAAAAAAAGwAAAAAAwBsAAAAAAEAbAAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAAAAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAMAbAAAAAAAAGwAAAAAAgBsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAIAeQAAAAAAAGwAAAAAAwBsAAAAAAMAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAQBsAAAAAAMAbAAAAAABAGwAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAMAbAAAAAACAHkAAAAAAABcAAAAAAAAXAAAAAADAFwAAAAAAABcAAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAIAeQAAAAAAAGwAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAgBsAAAAAAEAXAAAAAABAFwAAAAAAwBcAAAAAAEAXAAAAAADAFkAAAAAAABZAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAADAHkAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAwBsAAAAAAEAeQAAAAAAAFwAAAAAAABcAAAAAAMAXAAAAAAAAFwAAAAAAwBZAAAAAAEAWQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAADAHkAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAgBsAAAAAAEAbAAAAAACAHkAAAAAAABcAAAAAAIAXAAAAAACAFwAAAAAAgBcAAAAAAMAWQAAAAABAFkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAEAbAAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAwB5AAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAADAA== + version: 7 + 2,-2: + ind: 2,-2 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAwB5AAAAAAAAXAAAAAADAFwAAAAAAgBcAAAAAAMAXAAAAAACAGwAAAAAAABsAAAAAAMAeQAAAAAAAGwAAAAAAwBsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAQBsAAAAAAEAbAAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAADAGwAAAAAAABsAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAQB5AAAAAAAAbAAAAAADAGwAAAAAAwBsAAAAAAIAbAAAAAADAGwAAAAAAwB5AAAAAAAAbAAAAAADAGwAAAAAAABsAAAAAAIAbAAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAEAeQAAAAAAAGwAAAAAAgBsAAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAIAeQAAAAAAAGwAAAAAAwBsAAAAAAIAbAAAAAACAGwAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAAAAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAACAHkAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAgBsAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAwBsAAAAAAEAbAAAAAADAGwAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAEAeQAAAAAAAGwAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAgBsAAAAAAEAbAAAAAADAGwAAAAAAQBsAAAAAAIAbAAAAAADAGwAAAAAAQBsAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAADAHkAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAQBsAAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAEAbAAAAAABAGwAAAAAAwBsAAAAAAEAbAAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAwBpAAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAQBsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAgB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAeQAAAAAAAGwAAAAAAgB5AAAAAAAAbAAAAAADAGwAAAAAAwB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAwBsAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABoAAAAAAAAbAAAAAACAGwAAAAAAgBsAAAAAAIAbAAAAAADAHkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAMAaQAAAAAAAGkAAAAAAAAdAAAAAAAAaQAAAAAAAB0AAAAAAgBpAAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAgB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAADAGkAAAAAAABpAAAAAAAAHQAAAAAAAGkAAAAAAAAdAAAAAAMAaQAAAAAAAB0AAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAwBsAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAB0AAAAAAwBpAAAAAAAAHQAAAAAAAGkAAAAAAAAdAAAAAAMAbAAAAAAAAGwAAAAAAQBsAAAAAAIAbAAAAAABAHkAAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAgB5AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAaQAAAAAAAB0AAAAAAQBpAAAAAAAAHQAAAAADAA== + version: 7 + 2,-4: + ind: 2,-4 + tiles: aAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAADAHYAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAMAbAAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAIAbAAAAAADAGwAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAMAeQAAAAAAAGwAAAAAAgBsAAAAAAEAeQAAAAAAAGwAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAABAHkAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAMAbAAAAAADAGwAAAAAAgBsAAAAAAMAbAAAAAACAGwAAAAAAwBsAAAAAAMAbAAAAAABAGwAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAACAGwAAAAAAQBsAAAAAAIAbAAAAAABAGwAAAAAAQBsAAAAAAIAbAAAAAADAGwAAAAAAABsAAAAAAEAbAAAAAABAGwAAAAAAwBsAAAAAAEAeQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAAAbAAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAACQAAAAAAAAkAAAAAAgB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAMAbAAAAAAAAGwAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAEAeQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAIAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAABAGwAAAAAAQBsAAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAMAbAAAAAADAHkAAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAQAJAAAAAAMACQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQB5AAAAAAAAbAAAAAAAAGwAAAAAAQBsAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAEAeQAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + 3,-2: + ind: 3,-2 + tiles: eQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAABEAAAAAAAARAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAADAHkAAAAAAABZAAAAAAAAWQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAwBoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAEQAAAAAAABEAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAEAbAAAAAACAGwAAAAAAABsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAACAFkAAAAAAQBZAAAAAAIAbAAAAAADAGwAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAABsAAAAAAMAbAAAAAADAGwAAAAAAABsAAAAAAIAbAAAAAABAGwAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAwB5AAAAAAAAWQAAAAADAGwAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAwBsAAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQBpAAAAAAAAbAAAAAACAGwAAAAAAQBsAAAAAAEAbAAAAAABAGwAAAAAAgBsAAAAAAIAbAAAAAADAGwAAAAAAwBoAAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAAAaQAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAIAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAADAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBoAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAABAHkAAAAAAABsAAAAAAAAbAAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAABEAAAAAAABZAAAAAAAAEQAAAAAAAB0AAAAAAABZAAAAAAMAbAAAAAABAGwAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAMAWQAAAAACAGwAAAAAAwBsAAAAAAMAbAAAAAABAGwAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAEQAAAAAAAFkAAAAAAwARAAAAAAAAHQAAAAABAFkAAAAAAABsAAAAAAEAbAAAAAABAGwAAAAAAgBsAAAAAAIAbAAAAAAAAGwAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAABoAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAQBsAAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAeQAAAAAAAA== + version: 7 + 4,-2: + ind: 4,-2 + tiles: eQAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAABAHkAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQAdAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAaQAAAAAAAE0AAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAAAeQAAAAAAAB0AAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAHQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAGkAAAAAAABNAAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAABAHkAAAAAAAAdAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAADAB0AAAAAAwB5AAAAAAAAeAAAAAAAAHgAAAAAAABpAAAAAAAATQAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAAAAGwAAAAAAwB5AAAAAAAAHQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAwAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAMAeQAAAAAAAB0AAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAEAHQAAAAACAHkAAAAAAABZAAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAgBsAAAAAAIAbAAAAAACAGwAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAQBsAAAAAAEAeQAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAABAGwAAAAAAABZAAAAAAEAbAAAAAABAGwAAAAAAwBsAAAAAAIAbAAAAAADAGwAAAAAAQBsAAAAAAAAbAAAAAADAGwAAAAAAwBsAAAAAAIAbAAAAAABAGwAAAAAAgBsAAAAAAIAbAAAAAADAGwAAAAAAgBsAAAAAAMAeQAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAACAGwAAAAAAQBsAAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAAAbAAAAAABAGwAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAgB5AAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAAdAAAAAAEAaAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAQBsAAAAAAMAbAAAAAABAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAHQAAAAAAAGgAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAB0AAAAAAgBoAAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAIAbAAAAAADAGwAAAAAAABsAAAAAAEAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + 5,-2: + ind: 5,-2 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAQB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAACAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 4,-3: + ind: 4,-3 + tiles: eQAAAAAAAGwAAAAAAgBsAAAAAAMAbAAAAAADAGwAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAMAaAAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAABsAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAACAGgAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAIAbAAAAAACAGwAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAQBsAAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAMAbAAAAAABAGwAAAAAAgBoAAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAMAbAAAAAADAGwAAAAAAgBsAAAAAAMAbAAAAAACAGwAAAAAAwBsAAAAAAIAaAAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAADAGwAAAAAAABsAAAAAAAAbAAAAAAAAGgAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAACAGwAAAAAAwB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAIAbAAAAAABAHkAAAAAAAB4AAAAAAAAaQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAE0AAAAAAAB5AAAAAAAAbAAAAAADAGwAAAAAAgBZAAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAABAGwAAAAAAwB5AAAAAAAAeAAAAAAAAGkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAGwAAAAAAABsAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAAAeQAAAAAAAHgAAAAAAABpAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAATQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAACAFkAAAAAAwB5AAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAIAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAQB5AAAAAAAAbAAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAADAGwAAAAAAABsAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAQBsAAAAAAMAbAAAAAACAGwAAAAAAABsAAAAAAAAbAAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAIAbAAAAAACAGwAAAAAAQBsAAAAAAEAbAAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAgBsAAAAAAMAbAAAAAACAGwAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAEAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAgB5AAAAAAAAbAAAAAACAGwAAAAAAQBsAAAAAAAAbAAAAAACAGwAAAAAAABsAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAQBsAAAAAAIAeQAAAAAAAGwAAAAAAQBsAAAAAAIAbAAAAAADAGwAAAAAAwBsAAAAAAMAbAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAIAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAeQAAAAAAAA== + version: 7 + 3,-3: + ind: 3,-3 + tiles: aAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAQBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABMAAAAABAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAACABMAAAAABAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAEAbAAAAAAAAGwAAAAAAwBsAAAAAAMAbAAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAACAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGwAAAAAAgBZAAAAAAEAbAAAAAABAFkAAAAAAQBsAAAAAAIAWQAAAAADAGwAAAAAAABZAAAAAAIAbAAAAAACAFkAAAAAAgBsAAAAAAEAWQAAAAAAAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAQBsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAACAGwAAAAAAQBsAAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAMAeQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAQB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQB5AAAAAAAAWQAAAAADAHkAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAgB2AAAAAAAAdgAAAAABAHYAAAAAAQB2AAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAMAHQAAAAACAFkAAAAAAgAdAAAAAAMAdgAAAAADAHYAAAAAAAB2AAAAAAMAdgAAAAADAHYAAAAAAwB2AAAAAAAAdgAAAAABAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAwBsAAAAAAEAbAAAAAACAHkAAAAAAABZAAAAAAEAeQAAAAAAAHYAAAAAAQB2AAAAAAIAdgAAAAACAHYAAAAAAQB2AAAAAAIAdgAAAAACAHYAAAAAAgB5AAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAAAbAAAAAADAGwAAAAAAgB5AAAAAAAAWQAAAAADAHkAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAAB2AAAAAAEAdgAAAAACAHYAAAAAAQB2AAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + 4,-4: + ind: 4,-4 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAA8AAAAAAAAYAAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAADwAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAYAAAAAAAADwAAAAAAAA8AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAAAHQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAwBpAAAAAAAAaQAAAAAAAGkAAAAAAAAdAAAAAAAAHQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAIAaQAAAAAAAGkAAAAAAABpAAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + 5,-3: + ind: 5,-3 + tiles: aAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 5,-4: + ind: 5,-4 + tiles: eQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 3,-4: + ind: 3,-4 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABgAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEwAAAAAGAA== + version: 7 + 4,-1: + ind: 4,-1 + tiles: WQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAQBZAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAWQAAAAAAAFkAAAAAAAAdAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAeQAAAAAAAB0AAAAAAABZAAAAAAEAWQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAADAFkAAAAAAwBZAAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAHkAAAAAAAAdAAAAAAMAWQAAAAABAFkAAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAQBZAAAAAAIAWQAAAAACAB0AAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAHQAAAAADAFkAAAAAAQBZAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQBZAAAAAAMAWQAAAAADAB0AAAAAAwAdAAAAAAAAHQAAAAAAAFkAAAAAAgBZAAAAAAEAHQAAAAACAB0AAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAAAAFkAAAAAAgAdAAAAAAEAHQAAAAACAB0AAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + 5,-1: + ind: 5,-1 + tiles: eQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAABAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 4,-5: + ind: 4,-5 + tiles: AAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAA== + version: 7 + 5,-5: + ind: 5,-5 + tiles: AAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 3,-5: + ind: 3,-5 + tiles: eAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAA== + version: 7 + 2,-5: + ind: 2,-5 + tiles: eAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAD4AAAAAAAB5AAAAAAAAPgAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + 1,-5: + ind: 1,-5 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAA== + version: 7 + 1,-4: + ind: 1,-4 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAA== + version: 7 + -1,-5: + ind: -1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAagAAAAADAGoAAAAAAgBqAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAABAHkAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAADAA== + version: 7 + -2,-5: + ind: -2,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAEAeQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAgBZAAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAAAOAAAAAAEADgAAAAACAHkAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAA4AAAAAAQB5AAAAAAAAeAAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAIAHQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAAAOAAAAAAIAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAgAdAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAgB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAHkAAAAAAAAdAAAAAAEAHQAAAAABAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAQB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAgAdAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + -3,-4: + ind: -3,-4 + tiles: AAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAEAAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAOAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAA4AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAA== + version: 7 + 0,-5: + ind: 0,-5 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAwB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAYgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABiAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAA== + version: 7 + 0,-6: + ind: 0,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + -1,-6: + ind: -1,-6 + tiles: AAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 + 1,-6: + ind: 1,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAATQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAA== + version: 7 + 2,-6: + ind: 2,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -2,-6: + ind: -2,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeAAAAAAAAA== + version: 7 + -4,-4: + ind: -4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -4,-5: + ind: -4,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAA== + version: 7 + -4,-3: + ind: -4,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -4,2: + ind: -4,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -3,2: + ind: -3,2 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAwB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAA== + version: 7 -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,3: + ind: 0,3 + tiles: HQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAEAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABZAAAAAAMAWQAAAAAAAAoAAAAAAQBZAAAAAAAAWQAAAAAAAB0AAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAwBQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAAAAAoAAAAAAgAdAAAAAAIAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAIAHQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAwAdAAAAAAMAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAEAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 2,2: + ind: 2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 3,2: + ind: 3,2 + tiles: AAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,3: + ind: 1,3 + tiles: WQAAAAACAFkAAAAAAgB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABAFkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,-6: ind: 5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,-6: ind: 4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-7: ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAA== + version: 7 0,-7: ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,-6: ind: 3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAA== + version: 7 -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 2,3: + ind: 2,3 + tiles: eAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -525,6 +530,7 @@ entities: 3454: 2,-61 3455: 2,-60 6265: 74,-42 + 6576: -16,27 - node: color: '#FFFFFFFF' id: Arrows @@ -550,6 +556,7 @@ entities: 3456: 8,-64 3457: 8,-63 6264: 74,-40 + 7039: -18,29 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -569,15 +576,6 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 278: 10,37 - 279: 10,38 - 280: 10,39 - 281: 10,40 - 282: 10,41 - 284: 8,37 - 285: 8,38 - 286: 8,39 - 287: 8,40 364: -39,1 438: -23,-24 482: -14,-24 @@ -691,12 +689,36 @@ entities: 3448: 1,-60 3449: 9,-64 3450: 9,-63 - 3520: -7,31 - 3547: -10,29 3639: 60,-51 3640: 59,-51 3642: 57,-51 - 6270: -7,32 + 6371: -1,-87 + 6378: 5,40 + 6379: 6,40 + 6380: 7,40 + 6383: 8,40 + 6384: 9,40 + 6385: -8,29 + 6387: -10,29 + 6388: -11,29 + 6725: -3,45 + 6726: -3,46 + 6727: -3,47 + 6728: 0,47 + 6729: 0,46 + 6730: 0,45 + 6731: 0,49 + 6732: 0,50 + 6733: 0,51 + 6734: -3,51 + 6735: -3,50 + 6736: -3,49 + 6968: 7,51 + 6969: 8,51 + 6970: 7,48 + 6971: 7,47 + 6972: 7,50 + 6973: 8,47 - node: zIndex: 1 color: '#FFFFFFFF' @@ -704,15 +726,59 @@ entities: decals: 4276: -14,-27 4277: -14,-25 + - node: + zIndex: 1 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Bot + decals: + 7040: -18,26 + 7041: -18,25 + 7042: -18,30 + - node: + color: '#52B4E996' + id: BotGreyscale + decals: + 6360: -2,-86 + 6361: 0,-86 + 6363: -2,-88 + 6364: 0,-88 + 6367: -2,-93 + 6368: 0,-93 + 6369: 0,-81 + 6370: -2,-81 + - node: + color: '#8D1C9996' + id: BotGreyscale + decals: + 6350: -9,-91 + 6351: -5,-91 + 6352: 3,-91 + 6353: 3,-83 + 6354: -5,-83 + 6355: 7,-83 + 6356: 7,-91 + 6357: -9,-83 + - node: + color: '#DE3A3A96' + id: BotGreyscale + decals: + 6477: -13,42 + 6480: -13,45 + 6481: -15,45 + 6482: -15,44 + 6493: -15,41 + 7558: -13,44 + 7560: -10,44 + 7561: -9,44 + 7562: -9,47 + 7563: -10,47 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 3570: -16,36 - 3571: -15,36 - 3572: -14,36 - 3573: -13,36 - 3574: -12,36 + 6737: 6,43 + 6738: -7,32 - node: zIndex: 1 color: '#FFFFFFFF' @@ -729,6 +795,11 @@ entities: 6231: -25,-75 6232: -24,-76 6233: -25,-77 + - node: + color: '#DE3A3A96' + id: BotLeft + decals: + 7559: -11,44 - node: color: '#FFFFFFFF' id: BotLeft @@ -741,10 +812,14 @@ entities: 3232: -40,-28 3233: -39,-28 3234: -38,-28 - 3589: -1,37 - 3590: 0,37 - 3591: 1,37 - 3592: 2,37 + - node: + color: '#DE3A3A96' + id: BotLeftGreyscale + decals: + 6490: -14,40 + 6491: -15,40 + 6500: -12,47 + 6501: -11,47 - node: zIndex: 1 color: '#FFFFFFFF' @@ -753,19 +828,18 @@ entities: 6020: 0,-22 6228: -24,-75 6229: -26,-77 - - node: - color: '#DE3A3A96' - id: BotRight - decals: - 1407: -9,41 - 1408: -9,40 - 1409: -9,39 - node: color: '#FFFFFFFF' id: BotRight decals: 2455: 10,-42 2456: 10,-41 + - node: + color: '#DE3A3A96' + id: BotRightGreyscale + decals: + 6498: -15,47 + 6499: -14,47 - node: zIndex: 1 color: '#FFFFFFFF' @@ -790,30 +864,33 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 3587: -2,36 + 7557: -14,41 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 3588: 3,36 + 7556: -12,41 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 3586: -2,38 + 6469: -14,46 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 3585: 3,38 + 6470: -12,46 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: 2964: 11,-34 - 3576: -2,37 5988: -24,-11 5989: -24,-10 + 6466: -14,45 + 7549: -14,44 + 7550: -14,43 + 7551: -14,42 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -826,15 +903,22 @@ entities: 2960: 12,-36 2961: 10,-36 2962: 9,-36 - 3581: -1,36 - 3582: 0,36 - 3583: 1,36 - 3584: 2,36 5957: -27,-70 5958: -26,-70 5959: -25,-70 5960: -24,-70 5961: -23,-70 + 7555: -13,41 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 7055: -28,41 + 7056: -27,41 + 7057: -26,41 + 7058: -25,41 + 7059: -24,41 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -848,20 +932,25 @@ entities: 2937: -1,-62 2954: 10,-35 2955: 9,-35 - 3577: -1,38 - 3578: 0,38 - 3579: 1,38 - 3580: 2,38 5990: -25,-12 + 6467: -13,46 + 7575: -12,18 + 7576: -11,18 + 7577: -10,18 + 7578: -9,18 + 7579: -8,18 + 7580: -7,18 + 7581: -6,18 + 7582: -5,18 + 7583: -4,18 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 3538: -6,29 - 3539: -6,30 - 3540: -6,31 - 3541: -6,32 - 3575: 3,37 + 6462: -12,45 + 7552: -12,44 + 7553: -12,43 + 7554: -12,42 - node: color: '#9FED584D' id: BrickTileSteelCornerNe @@ -933,6 +1022,7 @@ entities: id: BrickTileSteelInnerNe decals: 2407: 28,-36 + 7569: -6,22 - node: color: '#D381C996' id: BrickTileSteelInnerNw @@ -943,6 +1033,7 @@ entities: id: BrickTileSteelInnerNw decals: 2406: 34,-36 + 7574: -10,22 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw @@ -969,6 +1060,8 @@ entities: 2398: 28,-33 2399: 28,-34 2400: 28,-35 + 7567: -6,23 + 7568: -6,24 - node: color: '#D381C996' id: BrickTileSteelLineN @@ -980,26 +1073,6 @@ entities: 1471: 77,-53 1474: 79,-51 1475: 80,-51 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineN - decals: - 1367: -16,45 - 1368: -15,45 - 1369: -13,45 - 1370: -12,45 - 1371: -11,45 - 1372: -10,45 - 1373: -9,45 - 1374: -7,45 - 1375: -6,45 - 1376: -5,45 - 1377: -17,45 - 1378: -19,45 - 1379: -20,45 - 1380: -22,45 - 1381: -23,45 - 1382: -25,45 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1009,6 +1082,10 @@ entities: 2403: 31,-36 2404: 30,-36 2405: 29,-36 + 7565: -4,22 + 7566: -5,22 + 7572: -12,22 + 7573: -11,22 - node: color: '#52B4E996' id: BrickTileSteelLineS @@ -1028,25 +1105,6 @@ entities: 1484: 78,-55 1485: 79,-55 1486: 80,-55 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineS - decals: - 1358: -10,43 - 1359: -9,43 - 1360: -8,43 - 1361: -7,43 - 1362: -5,43 - 1363: -12,43 - 1364: -13,43 - 1365: -14,43 - 1366: -16,43 - 1383: -25,43 - 1384: -23,43 - 1385: -21,43 - 1386: -20,43 - 1387: -18,43 - 1388: -17,43 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1074,6 +1132,8 @@ entities: 2438: 46,-54 3376: 45,-1 3377: 45,0 + 7570: -10,24 + 7571: -10,23 - node: color: '#D4D4D428' id: BrickTileWhiteBox @@ -1118,6 +1178,9 @@ entities: id: BrickTileWhiteCornerNe decals: 2256: -15,-57 + 7012: -19,30 + 7017: -20,38 + 7035: -18,24 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe @@ -1171,7 +1234,7 @@ entities: id: BrickTileWhiteCornerNw decals: 2255: -16,-57 - 3528: -15,27 + 7016: -22,38 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw @@ -1214,7 +1277,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 6283: -13,22 + 7034: -18,23 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe @@ -1259,7 +1322,8 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 6284: -15,22 + 6992: -21,23 + 7013: -22,28 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw @@ -1269,6 +1333,18 @@ entities: 2569: 3,-45 2616: -8,-76 2649: -18,-77 + - node: + color: '#43990935' + id: BrickTileWhiteInnerNe + decals: + 6427: -26,44 + 6428: -26,42 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 7018: -20,30 + 7036: -19,24 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe @@ -1280,10 +1356,11 @@ entities: decals: 1619: 19,-22 - node: - color: '#DE3A3A96' + color: '#43990935' id: BrickTileWhiteInnerNw decals: - 3536: -6,27 + 6425: -26,42 + 6426: -26,44 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw @@ -1295,16 +1372,26 @@ entities: decals: 1521: -10,8 - node: - color: '#DE3A3A96' + color: '#43990935' id: BrickTileWhiteInnerSe decals: - 6279: -13,26 + 6424: -26,44 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: 1325: -9,-18 1520: -14,8 + - node: + color: '#43990935' + id: BrickTileWhiteInnerSw + decals: + 6423: -26,44 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 7014: -21,28 - node: color: '#334E6DC8' id: BrickTileWhiteLineE @@ -1327,6 +1414,12 @@ entities: id: BrickTileWhiteLineE decals: 6018: -7,-17 + - node: + color: '#43990935' + id: BrickTileWhiteLineE + decals: + 6417: -26,43 + 6418: -26,45 - node: color: '#5299B43A' id: BrickTileWhiteLineE @@ -1367,13 +1460,17 @@ entities: id: BrickTileWhiteLineE decals: 1533: -11,4 - 3532: -5,30 - 3533: -5,31 - 3534: -5,32 - 3535: -5,29 - 6280: -13,25 - 6281: -13,24 - 6282: -13,23 + 6985: -19,27 + 6986: -19,28 + 6987: -19,29 + 6988: -19,26 + 6989: -19,25 + 7006: -20,37 + 7007: -20,36 + 7008: -20,35 + 7009: -20,34 + 7010: -20,33 + 7011: -20,32 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1420,6 +1517,18 @@ entities: 1516: -13,8 1517: -15,8 2273: -7,-51 + - node: + color: '#43990935' + id: BrickTileWhiteLineN + decals: + 6407: -28,44 + 6408: -27,44 + 6409: -25,44 + 6410: -24,44 + 6411: -24,42 + 6412: -25,42 + 6413: -27,42 + 6414: -28,42 - node: color: '#5299B43A' id: BrickTileWhiteLineN @@ -1474,16 +1583,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 3523: -7,27 - 3524: -10,27 - 3525: -11,27 - 3526: -13,27 - 3527: -14,27 - 3557: -12,36 - 3558: -13,36 - 3559: -14,36 - 3560: -15,36 - 3561: -16,36 + 7015: -21,38 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -1534,26 +1634,20 @@ entities: 1329: -13,-18 1518: -9,8 1519: -15,8 + - node: + color: '#43990935' + id: BrickTileWhiteLineS + decals: + 6419: -28,44 + 6420: -27,44 + 6421: -25,44 + 6422: -24,44 - node: color: '#5299B43A' id: BrickTileWhiteLineS decals: 3044: 36,-43 3045: 35,-43 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 2071: -11,26 - 2072: -10,26 - 2073: -9,26 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineS - decals: - 2074: -7,26 - 2075: -6,26 - 2076: -5,26 - node: color: '#D381C996' id: BrickTileWhiteLineS @@ -1577,30 +1671,13 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 2080: -4,26 - 2081: 0,26 - 2082: -8,26 - 2083: -12,26 - 2085: 1,26 - 2086: 2,26 - 2087: 3,26 - 2088: 5,26 - 2089: 10,26 - 2090: 8,26 - 2091: 7,26 - 3562: -12,34 - 3563: -13,34 - 3564: -14,34 - 3565: -16,34 - 6286: -14,22 + 6993: -20,23 + 7037: -19,23 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: 1499: -5,6 - 2077: -3,26 - 2078: -2,26 - 2079: -1,26 2266: -7,-58 2581: 6,-45 2582: 5,-45 @@ -1649,6 +1726,12 @@ entities: 1526: -13,2 1527: -13,3 2275: -8,-52 + - node: + color: '#43990935' + id: BrickTileWhiteLineW + decals: + 6415: -26,43 + 6416: -26,45 - node: color: '#5299B43A' id: BrickTileWhiteLineW @@ -1679,14 +1762,18 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 3537: -6,28 - 3542: -6,29 - 3543: -6,30 - 3544: -6,31 - 3545: -6,32 - 6276: -15,26 - 6277: -15,25 - 6278: -15,24 + 6994: -21,24 + 6995: -21,25 + 6996: -21,26 + 6997: -21,27 + 6998: -22,29 + 6999: -22,30 + 7000: -22,32 + 7001: -22,33 + 7002: -22,34 + 7003: -22,35 + 7004: -22,37 + 7005: -22,36 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -2072,6 +2159,60 @@ entities: 1243: 1,-50 1244: 1,-49 1245: 1,-48 + - node: + zIndex: 1 + color: '#D4D4D496' + id: CheckerNWSE + decals: + 7043: -32,36 + 7044: -32,35 + 7045: -31,34 + 7046: -30,35 + 7047: -30,36 + 7048: -31,37 + 7049: -31,36 + 7050: -31,35 + 7051: -30,34 + 7052: -32,34 + 7053: -32,37 + 7054: -30,37 + - node: + color: '#DE3A3A96' + id: CheckerNWSE + decals: + 6554: -9,27 + 6555: -10,27 + 6556: -11,27 + 6578: -13,29 + 6579: -13,28 + 6580: -13,27 + 6581: -12,27 + 6640: 2,34 + 6641: 2,33 + 6642: 3,34 + 6643: 4,34 + 6644: 4,33 + 6645: 3,33 + 6646: 3,32 + 6647: 2,32 + 6648: 4,32 + 6649: 4,31 + 6650: 3,31 + 6651: 2,31 + 6652: 2,30 + 6653: 3,30 + 6654: 4,30 + 6655: 4,29 + 6656: 3,29 + 6657: 2,29 + 6836: -15,23 + 6837: -16,20 + 6838: -15,20 + 6839: -14,20 + 6840: -14,19 + 6841: -15,19 + 6842: -16,19 + 6880: -1,32 - node: color: '#EFB34196' id: CheckerNWSE @@ -2096,6 +2237,21 @@ entities: 6327: 70,-40 6328: 70,-41 6329: 70,-42 + 6700: -7,43 + 6701: -6,43 + 6702: -5,43 + 6912: 1,19 + 6913: 1,20 + 6914: 1,21 + 6915: 0,25 + 6916: -1,25 + 6917: -2,25 + 6918: -2,13 + 6919: -1,13 + 6920: 0,13 + 6982: -22,31 + 6983: -21,31 + 6984: -20,31 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2259,15 +2415,7 @@ entities: 3986: -20,-3 3987: -20,-2 3988: -20,-1 - 3989: 7,21 - 3990: 7,20 - 3991: 7,19 - 3992: 0,18 - 3994: -2,18 - 3995: -16,19 - 3996: -16,20 4242: 5,-3 - 4489: -1,18 - node: cleanable: True zIndex: 5 @@ -2383,6 +2531,39 @@ entities: 5757: -60,-19 6252: -33,-17 6253: -31,-18 + 7066: 4,38 + 7067: 4,36 + 7068: -4,30 + 7069: -6,28 + 7070: -16,29 + 7071: -19,30 + 7072: -18,30 + 7073: -18,25 + 7074: -18,26 + 7075: -25,26 + 7076: -26,36 + 7077: -25,36 + 7078: -26,43 + 7079: -28,44 + 7080: -26,45 + 7081: -24,44 + 7082: -24,42 + 7084: -32,40 + 7085: -32,40 + 7086: -32,41 + 7087: -32,42 + 7088: -30,42 + 7089: -30,41 + 7092: -32,38 + 7093: -32,33 + 7094: -24,33 + 7095: -20,34 + 7096: -18,32 + 7097: -15,32 + 7098: -13,32 + 7099: -11,36 + 7100: -5,41 + 7103: -7,53 - node: cleanable: True zIndex: 5 @@ -2771,36 +2952,17 @@ entities: 5627: 20,24 5628: 21,25 5629: 20,27 - 5630: 20,30 5631: 24,28 5632: 24,28 5633: 23,26 5634: 25,28 5635: 26,26 - 5636: 21,32 - 5637: 23,32 - 5638: 25,34 - 5639: 18,33 - 5640: 14,35 5641: 12,32 5642: 7,31 5643: 2,31 5644: -2,31 - 5645: 1,36 - 5646: -2,36 - 5647: -2,37 - 5648: 0,38 - 5649: 4,38 - 5650: 4,36 - 5651: 6,36 5652: 7,36 - 5653: 9,35 5654: 9,38 - 5655: 9,41 - 5656: 24,37 - 5657: 22,37 - 5658: 23,39 - 5659: 25,34 5696: -62,7 5697: -59,7 5698: -57,8 @@ -2880,6 +3042,241 @@ entities: 6255: -32,-17 6256: -33,-14 6257: -36,-19 + 7104: -7,52 + 7105: -7,50 + 7108: -7,45 + 7111: -12,46 + 7116: -14,46 + 7117: -15,46 + 7118: -15,44 + 7119: -15,41 + 7120: -15,40 + 7121: -13,40 + 7122: -11,40 + 7123: -11,41 + 7125: -11,45 + 7126: -11,47 + 7127: -13,47 + 7128: -15,47 + 7129: -13,45 + 7130: -13,42 + 7133: -7,40 + 7134: -9,40 + 7135: -9,41 + 7136: -6,42 + 7138: -4,40 + 7139: -7,38 + 7141: -10,38 + 7142: -13,38 + 7143: -13,36 + 7144: -11,36 + 7145: -8,36 + 7146: -11,37 + 7147: -12,36 + 7148: -13,35 + 7149: -12,34 + 7150: -13,32 + 7151: -13,29 + 7152: -12,28 + 7153: -16,29 + 7154: -16,27 + 7155: -15,26 + 7156: -10,26 + 7157: -9,27 + 7158: -17,28 + 7159: -17,29 + 7160: -21,27 + 7161: -22,27 + 7162: -20,25 + 7163: -20,22 + 7164: -19,21 + 7165: -18,21 + 7166: -19,23 + 7167: -15,23 + 7168: -16,23 + 7169: -19,18 + 7170: -19,17 + 7171: -19,14 + 7173: -21,13 + 7175: -22,15 + 7176: -22,14 + 7177: -22,15 + 7178: -17,12 + 7179: -16,12 + 7180: -18,12 + 7181: -11,12 + 7182: -11,12 + 7183: -14,11 + 7184: -16,11 + 7185: -19,9 + 7186: -19,26 + 7187: -22,28 + 7188: -22,30 + 7189: -25,33 + 7190: -28,33 + 7191: -30,34 + 7192: -31,36 + 7193: -32,34 + 7194: -24,37 + 7195: -24,37 + 7196: -26,37 + 7197: -25,41 + 7198: -27,40 + 7199: -26,42 + 7200: -26,44 + 7203: -31,40 + 7204: -30,38 + 7205: -29,37 + 7206: -22,32 + 7207: -16,32 + 7208: -15,35 + 7211: -6,39 + 7212: -6,41 + 7213: 0,37 + 7214: 3,37 + 7215: 3,41 + 7216: 7,40 + 7217: 9,41 + 7218: 10,42 + 7219: 9,44 + 7220: 6,44 + 7221: 2,46 + 7222: 12,47 + 7223: 11,47 + 7224: 12,50 + 7225: 14,51 + 7226: 13,48 + 7227: 16,48 + 7228: 16,50 + 7229: 13,50 + 7230: 9,47 + 7231: 9,49 + 7232: 8,51 + 7233: 7,49 + 7234: 9,47 + 7235: 4,51 + 7236: 2,51 + 7237: 2,54 + 7238: -1,55 + 7239: 0,54 + 7240: 4,53 + 7241: 0,50 + 7242: -2,50 + 7243: -1,49 + 7244: -2,47 + 7245: 0,45 + 7246: -2,44 + 7247: -1,44 + 7248: 8,41 + 7249: 11,43 + 7250: 11,37 + 7251: 13,37 + 7252: 14,37 + 7253: 12,36 + 7254: 12,35 + 7255: 10,34 + 7256: 12,33 + 7257: 13,31 + 7258: 14,30 + 7259: 14,30 + 7260: 15,31 + 7261: 16,32 + 7262: 15,33 + 7263: 13,36 + 7264: 12,37 + 7265: 11,35 + 7266: 7,33 + 7267: 6,33 + 7268: 6,34 + 7269: 6,35 + 7270: 7,36 + 7271: 6,37 + 7272: 6,37 + 7273: 7,38 + 7274: 8,34 + 7275: 8,33 + 7276: 7,33 + 7277: 12,32 + 7278: 13,31 + 7279: 13,30 + 7280: 14,29 + 7281: 14,28 + 7282: 17,28 + 7283: 19,26 + 7284: 19,25 + 7285: 18,23 + 7286: 21,23 + 7287: 20,23 + 7288: 20,25 + 7289: 20,26 + 7290: 18,26 + 7291: 19,24 + 7292: 18,23 + 7293: 22,23 + 7294: 23,23 + 7295: 22,21 + 7296: 20,20 + 7297: 19,20 + 7298: 18,21 + 7299: 24,22 + 7300: 25,23 + 7301: 24,24 + 7302: 25,22 + 7303: 22,21 + 7304: 21,18 + 7305: 20,17 + 7306: 17,18 + 7307: 15,19 + 7308: 15,21 + 7309: 14,19 + 7310: 15,23 + 7311: 14,23 + 7312: 14,25 + 7313: 15,25 + 7314: 15,24 + 7315: 8,20 + 7316: 6,19 + 7317: 1,20 + 7318: 6,21 + 7319: 7,20 + 7320: 3,19 + 7321: 2,19 + 7322: 8,21 + 7323: 8,18 + 7324: 8,15 + 7325: -1,15 + 7327: -1,22 + 7328: -1,25 + 7329: -2,12 + 7330: -1,11 + 7331: -2,10 + 7332: 0,9 + 7333: -2,6 + 7334: -1,4 + 7335: -1,1 + 7336: -2,3 + 7337: -2,6 + 7338: -2,9 + 7339: 0,12 + 7340: 0,10 + 7341: -2,8 + 7342: -1,7 + 7343: -2,5 + 7344: -4,11 + 7345: -6,11 + 7346: -6,11 + 7347: -12,12 + 7348: -9,14 + 7350: -8,21 + 7351: -8,16 + 7352: -15,16 + 7353: -17,17 + 7354: -17,17 + 7355: -14,20 + 7356: -15,20 + 7357: -15,19 + 7358: -6,16 + 7359: -9,14 - node: cleanable: True zIndex: 5 @@ -2986,38 +3383,8 @@ entities: 1261: 0,-33 1262: 1,-32 1263: -2,-32 - 1410: -6,47 - 1411: -6,47 - 1412: -9,49 - 1413: -8,48 - 1414: -5,50 - 1415: -3,50 - 1416: 0,49 - 1417: 1,48 - 1418: 2,50 - 1419: 3,50 - 1420: -10,50 - 1421: -12,49 - 1422: -16,43 - 1423: -14,43 - 1424: -11,41 1425: -6,35 1426: -8,35 - 1427: -6,39 - 1429: -10,49 - 1430: -7,51 - 1431: -10,52 - 1432: 3,49 - 2108: -6,24 - 2109: -5,23 - 2110: -6,25 - 2111: -2,25 - 2112: -3,23 - 2113: -3,24 - 2114: -11,24 - 2115: -10,25 - 2116: -10,23 - 2117: -9,23 2517: -1,-50 2518: 0,-50 2519: -1,-51 @@ -3583,20 +3950,8 @@ entities: 5392: 41,-25 5393: 42,-24 5394: 37,-25 - 5660: 23,37 - 5661: 22,38 - 5662: 24,38 - 5663: 24,38 - 5664: 24,39 - 5665: 22,39 - 5666: 22,34 - 5667: 24,34 - 5668: 25,34 - 5669: 25,33 - 5670: -20,20 5671: -20,24 5672: -21,13 - 5673: -22,13 5674: -25,7 5675: -25,9 5676: -22,9 @@ -3731,6 +4086,103 @@ entities: 6133: 15,-58 6134: 17,-57 6135: 19,-57 + 7360: -9,16 + 7361: -7,17 + 7362: -6,15 + 7367: 0,20 + 7368: -1,24 + 7369: -1,27 + 7370: -4,28 + 7371: -9,28 + 7372: -8,27 + 7373: -12,28 + 7374: -12,28 + 7375: -17,28 + 7376: -15,28 + 7377: -13,26 + 7378: -10,32 + 7379: -5,33 + 7380: -8,32 + 7381: -13,34 + 7382: -12,36 + 7383: -13,33 + 7384: -15,34 + 7385: -15,35 + 7386: -18,33 + 7387: -16,37 + 7388: -15,37 + 7389: -8,37 + 7390: -6,37 + 7391: -5,39 + 7392: -6,41 + 7393: -6,43 + 7394: -6,46 + 7396: -5,48 + 7397: -7,51 + 7398: -10,53 + 7399: -6,50 + 7400: -7,48 + 7401: -5,46 + 7402: -7,44 + 7403: -11,41 + 7405: -11,45 + 7406: -13,46 + 7407: -13,42 + 7408: -3,37 + 7409: 2,37 + 7410: 2,41 + 7411: 2,42 + 7412: 7,43 + 7413: 6,40 + 7414: 10,41 + 7415: 7,45 + 7416: 4,46 + 7417: 8,50 + 7418: 10,50 + 7419: 11,47 + 7420: 15,49 + 7421: 13,47 + 7422: 17,48 + 7423: 16,50 + 7424: 14,50 + 7425: 15,48 + 7426: 11,47 + 7427: -1,50 + 7428: 0,47 + 7429: -1,45 + 7430: 8,40 + 7431: 4,36 + 7432: 3,34 + 7433: 2,32 + 7434: 3,29 + 7435: 4,27 + 7436: 8,29 + 7437: 7,31 + 7438: 7,29 + 7439: 0,29 + 7440: -3,28 + 7441: -2,24 + 7442: 0,23 + 7443: -2,20 + 7444: 5,21 + 7445: 5,19 + 7446: 10,21 + 7448: 0,16 + 7449: -1,13 + 7450: -3,15 + 7451: -7,15 + 7452: -8,17 + 7453: -11,17 + 7456: -15,17 + 7457: -17,16 + 7458: -14,20 + 7459: -16,19 + 7460: -20,21 + 7461: -21,22 + 7462: -18,24 + 7463: -16,24 + 7464: -14,24 + 7465: -15,29 - node: cleanable: True zIndex: 5 @@ -3748,7 +4200,6 @@ entities: 453: -22,-25 454: -26,-31 465: -32,-24 - 1428: -8,50 2526: 0,-58 2527: -1,-58 2528: -1,-56 @@ -3912,79 +4363,25 @@ entities: 4616: -2,7 4617: 0,8 4618: -1,15 - 4619: -1,18 - 4620: -1,20 4621: -3,20 4622: 1,20 - 4623: -4,19 4624: -9,20 - 4625: -11,19 - 4626: -14,19 - 4627: -18,20 - 4628: -14,19 4629: -3,20 - 4630: 1,21 4631: 3,20 - 4632: 6,22 - 4633: 6,24 - 4634: 4,24 - 4635: 5,23 - 4636: 5,24 4637: 1,23 4638: 5,27 4639: 1,27 - 4640: -1,26 - 4641: 0,27 4642: -2,27 4643: -4,27 - 4644: 1,28 4645: 4,27 4646: 7,27 - 4647: 9,26 - 4648: 9,26 - 4649: 10,27 4650: 2,31 4651: 0,31 4652: 0,32 4653: -1,32 - 4654: -5,30 - 4655: -6,32 4657: -5,27 - 4658: -8,27 - 4659: -12,26 - 4660: -5,32 4661: -6,35 4662: -8,35 - 4663: -7,37 - 4664: -5,39 - 4665: -7,39 - 4666: -8,43 - 4667: -11,43 - 4668: -14,43 - 4669: -13,45 - 4670: -9,45 - 4671: -8,47 - 4672: -9,48 - 4673: -9,49 - 4674: -14,47 - 4675: -19,46 - 4676: -18,44 - 4677: -18,43 - 4678: -14,43 - 4679: -11,43 - 4680: -11,45 - 4681: -14,45 - 4682: -7,43 - 4683: -5,43 - 4684: -6,45 - 4685: -5,47 - 4686: -2,49 - 4687: 0,49 - 4688: 0,48 - 4689: -7,51 - 4690: -10,51 - 4691: -9,52 - 4692: -1,28 4693: 10,19 4694: 8,15 4695: 8,15 @@ -4294,6 +4691,40 @@ entities: 6152: -2,-69 6153: -3,-70 6154: -14,-77 + 7466: -13,26 + 7467: -6,27 + 7468: -3,27 + 7469: -5,32 + 7470: -8,33 + 7472: -10,37 + 7473: -5,40 + 7475: -6,49 + 7476: -6,52 + 7477: -10,52 + 7478: -13,52 + 7479: -14,51 + 7480: -14,52 + 7481: -13,52 + 7482: -11,53 + 7483: -9,53 + 7484: -9,52 + 7485: -11,52 + 7486: -13,50 + 7487: -14,50 + 7488: -14,47 + 7489: -15,47 + 7490: -6,44 + 7491: -6,38 + 7492: -4,37 + 7493: 0,26 + 7494: -1,18 + 7495: -9,17 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 7061: -18,22 - node: zIndex: 1 color: '#FFFFFFFF' @@ -4322,12 +4753,14 @@ entities: id: Flowerspv3 decals: 4280: -15.018939,-26.388176 + 7060: -21,22 - node: zIndex: 1 color: '#FFFFFFFF' id: Flowersy1 decals: 4278: -14.96683,-24.094915 + 7062: -19,22 - node: zIndex: 1 color: '#FFFFFFFF' @@ -4350,6 +4783,11 @@ entities: id: FullTileOverlayGreyscale decals: 2226: -1,-5 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 6867: 0,54 - node: color: '#52B4E931' id: FullTileOverlayGreyscale @@ -4394,12 +4832,6 @@ entities: 901: 27,-16 902: 26,-16 903: 25,-16 - 2070: -10,25 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 2069: -6,25 - node: color: '#A4610696' id: FullTileOverlayGreyscale @@ -4443,9 +4875,49 @@ entities: decals: 1001: 77,-5 1099: 58,-16 - 1355: -8,37 - 1356: -7,37 - 1357: -5,37 + 6529: -7,27 + 6586: -17,27 + 6587: -17,29 + 6589: -13,31 + 6590: -13,32 + 6591: -12,32 + 6592: -12,33 + 6593: -13,33 + 6594: -13,34 + 6617: 0,34 + 6618: -2,34 + 6619: 0,30 + 6620: -2,30 + 6703: -3,47 + 6704: -3,46 + 6705: -3,45 + 6706: 0,45 + 6707: 0,46 + 6708: 0,47 + 6709: 0,49 + 6710: 0,50 + 6711: 0,51 + 6712: -3,51 + 6713: -3,50 + 6714: -3,49 + 6747: 1,40 + 6748: 1,41 + 6782: 1,44 + 6783: 1,48 + 6784: 9,46 + 6785: 6,49 + 6786: 3,39 + 6787: -4,44 + 6788: -4,48 + 6835: -15,21 + 6881: -9,30 + 6882: -6,35 + 7028: -18,25 + 7029: -18,26 + 7030: -18,27 + 7031: -18,28 + 7032: -18,29 + 7033: -18,30 - node: color: '#EFB34131' id: FullTileOverlayGreyscale @@ -4455,7 +4927,6 @@ entities: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 2068: -2,25 2880: 1,-72 2881: 0,-72 2882: -1,-72 @@ -4480,26 +4951,6 @@ entities: decals: 1339: 7.2717857,-23.90447 1340: 6.2249107,-24.045095 - 1445: -3,48 - - node: - color: '#FFFFFFFF' - id: Grassa2 - decals: - 1440: 2,47 - 1441: 4,48 - 1452: -1,47 - - node: - color: '#FFFFFFFF' - id: Grassa3 - decals: - 1446: 2,48 - - node: - color: '#FFFFFFFF' - id: Grassa5 - decals: - 1442: 4,47 - 1443: -1,48 - 1444: -3,47 - node: color: '#FFFFFFFF' id: Grassb1 @@ -4510,6 +4961,11 @@ entities: id: Grassb5 decals: 1146: 42.85757,-51.827377 + - node: + color: '#FFFFFFFF' + id: Grassc1 + decals: + 7063: -21.016989,21.991375 - node: color: '#FFFFFFFF' id: Grassd1 @@ -4527,7 +4983,6 @@ entities: color: '#FFFFFFFF' id: Grassd3 decals: - 1438: 2,48 3345: 43,0 4285: -15.008517,-25.637653 - node: @@ -4536,10 +4991,9 @@ entities: decals: 1135: 46.42007,-53.327377 1136: 43.29507,-52.358627 - 1437: 2,47 - 1439: -3,48 3341: 43,-1 4284: -14.96683,-24.939253 + 7065: -18.87009,22.022648 - node: color: '#FFFFFFFF' id: Grasse2 @@ -4547,9 +5001,6 @@ entities: 1334: 6,-24 1335: 7,-24 1336: 8,-24 - 1434: 4,47 - 1435: -1,48 - 1451: -1,47 3342: 42,-1 4287: -14.987674,-26.90937 - node: @@ -4558,10 +5009,9 @@ entities: decals: 1337: 8,-24 1338: 6.3967857,-23.96697 - 1433: 4,48 - 1436: -3,47 3340: 44,-1 4286: -15.008517,-26.263088 + 7064: -18.0155,22.0018 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -4588,7 +5038,6 @@ entities: 813: 23,-25 1537: 49,-27 1564: 40,-23 - 2065: -4,28 2428: 34,-35 2971: 22,-35 2972: 21,-35 @@ -4616,7 +5065,6 @@ entities: 754: 39,-56 976: 35,-52 977: 36,-52 - 2066: -3,28 4422: 46,-12 4423: 47,-12 4424: 48,-12 @@ -4630,7 +5078,6 @@ entities: 1107: -23,-16 1108: -22,-16 1109: -21,-16 - 2318: 5,28 2319: 28,-24 2320: 69,-18 3169: -32,-29 @@ -4666,20 +5113,6 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 0: -1,28 - 1: 0,28 - 2: 4,28 - 3: 9,28 - 4: 10,28 - 9: 9,24 - 10: 8,24 - 11: 10,24 - 41: 17,35 - 42: 16,35 - 43: 12,35 - 44: 11,35 - 49: 10,33 - 50: 6,33 176: -23,-30 177: -22,-30 178: -21,-30 @@ -4697,17 +5130,42 @@ entities: 1102: 60,-18 1103: 61,-18 1104: 62,-18 - 2096: 14,32 - 3548: -5,36 - 3549: -7,36 - 3550: -8,36 - 3551: -9,36 - 3552: -10,36 + 6526: -1,33 + 6527: -1,29 + 6542: -15,30 + 6543: -14,30 + 6544: -13,30 + 6550: -11,28 + 6551: -10,28 + 6552: -9,28 + 6600: -12,38 + 6601: -11,38 + 6602: -10,38 + 6603: -9,38 + 6604: -8,38 + 6629: 3,38 + 6630: 2,38 + 6631: 1,38 + 6632: 0,38 + 6633: -1,38 + 6634: -2,38 + 6635: -3,38 + 6636: -4,38 + 6685: -6,53 + 6723: -2,51 + 6724: -1,51 + 6762: 3,49 + 6763: 4,49 + 6767: 6,45 + 6768: 7,45 + 6769: 8,45 + 6770: 9,45 + 6771: 10,45 + 6829: -15,24 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 2067: -2,28 2586: 5,-42 2587: 5,-44 2588: 5,-43 @@ -4717,6 +5175,11 @@ entities: decals: 1635: 20,-25 1636: 22,-25 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 6863: 3,51 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -4736,7 +5199,6 @@ entities: 171: 31,-31 172: 32,-31 173: 33,-31 - 337: -10,23 767: 23,-26 770: 21,-28 771: 19,-28 @@ -4766,19 +5228,10 @@ entities: 819: 67,-49 820: 66,-49 821: 65,-49 - - node: - color: '#9FED5828' - id: HalfTileOverlayGreyscale180 - decals: - 1447: 3,47 - 1448: 1,47 - 1449: 0,47 - 1450: -2,47 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 338: -6,23 983: 35,-56 - node: color: '#A4610696' @@ -4833,15 +5286,6 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 18: 9,23 - 55: 9,30 - 56: 10,30 - 57: 11,30 - 58: 12,30 - 59: 13,30 - 60: 14,30 - 61: 15,30 - 62: 16,30 180: -23,-32 181: -22,-32 182: -21,-32 @@ -4855,14 +5299,37 @@ entities: 998: 79,-4 999: 80,-4 1000: 81,-4 - 2094: 14,34 - 2099: 14,31 - 3555: -10,34 + 6525: -1,31 + 6535: -9,26 + 6536: -10,26 + 6537: -11,26 + 6538: -12,26 + 6539: -13,26 + 6540: -14,26 + 6541: -15,26 + 6605: -11,36 + 6606: -9,36 + 6607: -10,36 + 6608: -8,36 + 6609: -7,36 + 6610: -6,36 + 6611: -5,36 + 6612: -4,36 + 6613: -3,36 + 6621: -1,35 + 6637: 1,36 + 6638: 2,36 + 6639: 3,36 + 6721: -2,43 + 6722: -1,43 + 6744: 10,40 + 6745: 4,40 + 6746: 3,40 + 6830: -15,22 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: - 347: -2,23 2694: -2,-68 2695: -2,-69 2706: 2,-68 @@ -4872,6 +5339,14 @@ entities: id: HalfTileOverlayGreyscale270 decals: 2224: -2,-6 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 + decals: + 6862: 1,54 + 6864: -3,53 + 6865: -3,54 + 6866: -3,55 - node: color: '#52B4E931' id: HalfTileOverlayGreyscale270 @@ -4968,19 +5443,39 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 14: 8,23 - 38: 18,36 - 46: 11,34 402: -62,4 995: 76,-3 1091: 57,-20 1092: 57,-19 1093: 57,-18 - 1399: -12,38 - 1400: -12,39 - 1401: -12,40 - 1402: -12,41 - 3556: -11,35 + 6524: -2,32 + 6528: -6,27 + 6546: -16,28 + 6571: -16,27 + 6572: -16,29 + 6597: -13,36 + 6598: -13,37 + 6661: -7,39 + 6662: -7,40 + 6663: -7,41 + 6664: -7,42 + 6675: -7,47 + 6676: -7,48 + 6677: -7,49 + 6678: -7,50 + 6681: -7,52 + 6682: -7,51 + 6715: -3,48 + 6718: -3,44 + 6773: 2,41 + 6774: 2,42 + 6775: 2,43 + 6776: 2,44 + 6777: 2,45 + 6778: 2,46 + 6779: 2,47 + 6827: -16,23 + 6872: 2,48 - node: color: '#EFB34131' id: HalfTileOverlayGreyscale270 @@ -5091,18 +5586,37 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 15: 10,23 - 35: 19,35 - 36: 19,36 186: -20,-31 401: -57,4 994: 82,-3 1094: 63,-19 - 1403: -10,38 - 1404: -10,39 - 1405: -10,40 - 1406: -10,41 - 2095: 13,33 + 6523: 0,32 + 6530: -8,27 + 6549: -12,29 + 6628: 4,37 + 6686: -5,52 + 6687: -5,51 + 6688: -5,50 + 6689: -5,49 + 6690: -5,48 + 6691: -5,47 + 6692: -5,46 + 6693: -5,45 + 6694: -5,44 + 6696: -5,42 + 6697: -5,41 + 6698: -5,40 + 6699: -5,39 + 6716: 0,48 + 6717: 0,44 + 6739: 11,44 + 6740: 11,43 + 6741: 11,42 + 6742: 11,41 + 6764: 5,48 + 6765: 5,47 + 6766: 5,46 + 6828: -14,23 - node: color: '#EFB34131' id: HalfTileOverlayGreyscale90 @@ -5133,6 +5647,7 @@ entities: 434: -37,-32 488: -15,-23 984: 1,-43 + 7038: -18,27 - node: color: '#FFFFFFFF' id: LoadingArea @@ -5145,6 +5660,8 @@ entities: decals: 435: -41,-28 487: -15,-28 + 6574: -16,29 + 6575: -6,27 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -5163,6 +5680,11 @@ entities: 536: 11,-8 537: 12,-8 538: 13,-8 + 6857: 5,55 + 6858: 4,55 + 6859: 3,55 + 6860: 2,55 + 6861: 1,55 - node: zIndex: 1 color: '#334E6DC8' @@ -5384,51 +5906,15 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 5: 1,28 - 6: 6,28 - 28: 4,23 - 39: 19,36 - 40: 18,35 - 45: 13,35 - 48: 11,33 - 52: 7,33 - 53: 6,32 - 288: 21,36 - 289: 21,34 - 290: 21,35 - 319: -3,33 - 320: -2,33 - 321: -1,33 - 322: 0,33 - 323: 1,33 - 328: -3,32 - 329: -3,31 - 330: -3,30 - 569: 4,21 - 570: 3,21 - 571: 2,21 - 572: 1,21 - 573: 0,21 - 574: -1,21 - 575: -2,21 - 576: -3,21 - 577: -4,21 - 578: -5,21 - 579: -6,21 - 580: -7,21 - 581: -8,21 - 582: -9,21 - 583: -10,21 - 584: -11,21 - 605: -2,17 - 606: -2,16 - 607: -2,15 - 608: -2,14 - 609: -2,13 - 610: -2,12 1100: 57,-21 - 2098: 15,31 - 2100: 15,33 + 6615: -7,38 + 6674: -7,46 + 6887: -2,29 + 6888: -2,28 + 6889: -3,28 + 6890: -4,28 + 6891: -5,28 + 6892: -6,28 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -5515,6 +6001,12 @@ entities: 2059: -3,-9 2060: -2,-9 3738: -16,-11 + 6852: 5,51 + 6853: 5,52 + 6854: 5,53 + 6855: 5,54 + 6856: 5,55 + 6871: 4,51 - node: zIndex: 1 color: '#334E6DC8' @@ -5694,22 +6186,27 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 13: 10,24 - 16: 8,23 - 29: 6,24 - 33: 8,30 184: -20,-30 - 331: 4,30 - 332: 3,30 - 618: 0,19 - 619: 1,19 - 620: 2,19 - 621: 3,19 - 622: 4,19 - 623: 5,19 - 624: 6,19 - 625: 15,37 - 626: 16,37 + 6614: -12,36 + 6625: 0,36 + 6921: 0,14 + 6922: 0,15 + 6923: 0,16 + 6924: 0,17 + 6925: 0,18 + 6926: 0,19 + 6928: 2,19 + 6929: 3,19 + 6930: 4,19 + 6931: 5,19 + 6932: 6,19 + 6933: 7,19 + 6934: 8,19 + 6935: 9,19 + 6936: 10,19 + 6949: 0,22 + 6950: 0,23 + 6951: 0,24 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 @@ -5769,6 +6266,10 @@ entities: 2049: 2,-9 2050: 1,-9 2051: 0,-9 + 6848: 2,52 + 6849: 2,53 + 6850: 1,53 + 6870: 2,51 - node: zIndex: 1 color: '#334E6DC8' @@ -6011,37 +6512,24 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 12: 8,24 - 17: 10,23 - 27: 4,24 - 47: 11,35 - 51: 6,33 - 54: 6,30 - 585: -20,19 - 586: -18,19 - 587: -19,19 - 588: -17,19 - 590: -15,19 - 591: -14,19 - 592: -13,19 - 593: -12,19 - 594: -11,19 - 595: -10,19 - 596: -9,19 - 597: -8,19 - 598: -7,19 - 599: -6,19 - 600: -5,19 - 601: -4,19 - 603: -2,19 - 627: 13,37 - 628: 12,37 - 629: 6,35 - 630: 7,35 - 631: 8,35 - 632: 9,35 - 2097: 15,32 - 4488: -3,19 + 6624: -2,36 + 6673: -7,44 + 6893: -6,26 + 6894: -5,26 + 6897: -4,26 + 6898: -3,26 + 6899: -2,26 + 6900: -2,24 + 6901: -2,23 + 6902: -2,22 + 6903: -2,21 + 6904: -2,20 + 6905: -2,19 + 6906: -2,17 + 6907: -2,16 + 6908: -2,15 + 6909: -2,14 + 6927: -2,18 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 @@ -6351,35 +6839,24 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 7: 3,28 - 8: 8,28 - 30: 6,23 - 31: 9,33 - 32: 15,35 - 34: 19,34 - 37: 18,36 185: -20,-32 - 291: 25,36 - 292: 25,35 - 293: 25,34 - 294: 25,33 - 295: 25,32 - 324: 2,33 - 325: 3,33 - 326: 4,33 - 327: 4,32 - 564: 6,21 - 566: 8,21 - 567: 9,21 - 568: 10,21 - 611: 0,12 - 612: 0,13 - 613: 0,14 - 614: 0,15 - 615: 0,16 - 616: 0,17 1101: 59,-18 - 2101: 13,31 + 6553: -12,28 + 6616: -5,38 + 6781: 5,45 + 6937: 2,21 + 6938: 3,21 + 6939: 4,21 + 6940: 5,21 + 6941: 6,21 + 6942: 7,21 + 6943: 8,21 + 6944: 9,21 + 6945: 10,21 + 6954: 0,29 + 6955: 0,28 + 6956: 0,27 + 6957: 0,26 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -6420,11 +6897,6 @@ entities: 3435: 6,-52 3436: 5,-52 3437: 4,-52 - - node: - color: '#F9FFFEFF' - id: Remains - decals: - 63: 23,41 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -6486,7 +6958,6 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 334: -11,24 809: 18,-25 1541: 48,-27 1568: 37,-22 @@ -6494,7 +6965,6 @@ entities: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale decals: - 339: -7,24 972: 34,-52 - node: color: '#A4610696' @@ -6524,18 +6994,18 @@ entities: 396: -62,5 985: 76,-2 1096: 57,-17 - 3553: -11,36 + 6519: -2,33 + 6531: -16,30 + 6599: -13,38 + 6684: -7,53 + 6750: 2,49 + 6832: -16,24 - node: color: '#EFB34131' id: ThreeQuarterTileOverlayGreyscale decals: 2218: -3,-7 2219: -5,-5 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 346: -3,24 - node: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale180 @@ -6545,7 +7015,6 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 336: -9,23 765: 22,-28 1542: 50,-29 1559: 42,-25 @@ -6555,7 +7024,6 @@ entities: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: - 342: -5,23 748: 47,-57 974: 37,-54 975: 36,-56 @@ -6586,11 +7054,14 @@ entities: decals: 394: -57,3 987: 82,-4 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 343: -1,23 + 6520: 0,31 + 6533: -8,26 + 6596: -12,35 + 6623: 0,35 + 6626: 4,36 + 6719: 0,43 + 6743: 11,40 + 6834: -14,22 - node: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale270 @@ -6600,7 +7071,6 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 335: -11,23 1543: 48,-29 2411: 28,-37 3062: 39,-50 @@ -6608,7 +7078,6 @@ entities: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 decals: - 341: -7,23 971: 34,-56 - node: color: '#A4610696' @@ -6644,12 +7113,13 @@ entities: decals: 393: -62,3 988: 76,-4 - 3554: -11,34 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 344: -3,23 + 6521: -2,31 + 6532: -16,26 + 6595: -13,35 + 6622: -2,35 + 6720: -3,43 + 6749: 2,40 + 6833: -16,22 - node: color: '#334E6D5A' id: ThreeQuarterTileOverlayGreyscale90 @@ -6671,7 +7141,6 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 333: -9,24 1544: 50,-27 1560: 42,-23 1569: 39,-22 @@ -6680,7 +7149,6 @@ entities: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 decals: - 340: -5,24 747: 47,-56 973: 37,-52 - node: @@ -6712,17 +7180,20 @@ entities: 986: 82,-2 1095: 63,-18 1097: 59,-17 + 6522: 0,33 + 6534: -8,28 + 6548: -12,30 + 6627: 4,38 + 6683: -5,53 + 6751: 5,49 + 6772: 11,45 + 6831: -14,24 - node: color: '#EFB34131' id: ThreeQuarterTileOverlayGreyscale90 decals: 2220: -5,-7 2221: -3,-5 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 345: -1,24 - node: color: '#FFFFFFFF' id: VentSmall @@ -6761,6 +7232,10 @@ entities: 1016: -67,-10 5980: 62,-71 5981: 61,-73 + 6876: -15,51 + 6877: -12,51 + 6878: -10,54 + 6879: -6,56 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6780,6 +7255,11 @@ entities: id: WarnCornerGreyscaleSE decals: 2894: 9,-71 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleSW + decals: + 6585: -11,29 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW @@ -6791,6 +7271,7 @@ entities: decals: 3515: 23,19 6266: 78,-47 + 7546: -9,46 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -6798,6 +7279,7 @@ entities: 3516: 25,19 6267: 68,-45 6298: 12,-72 + 6440: -14,46 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -6811,6 +7293,8 @@ entities: 1615: 21,-21 3517: 25,17 6268: 68,-47 + 6441: -11,40 + 7538: -14,41 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE @@ -6818,6 +7302,8 @@ entities: 1282: 44,-21 1283: 46,-21 2953: 42,-21 + 6508: -10,51 + 6846: -17,17 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6830,6 +7316,7 @@ entities: decals: 1280: 46,-21 1281: 44,-21 + 6509: -10,51 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6857,6 +7344,8 @@ entities: 2314: -73,-4 3512: -13,-63 6310: 24,-80 + 7539: -12,42 + 7547: -9,45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6895,8 +7384,8 @@ entities: 1536: -13,6 1663: 51,-17 2317: -73,8 - 6275: 2,36 6311: 24,-74 + 7537: -12,45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6909,7 +7398,6 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 362: 1,36 681: 76,-40 710: 72,-19 1535: -11,6 @@ -6919,6 +7407,7 @@ entities: 2315: -69,8 2316: -76,8 3699: -38,-10 + 6442: -11,41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6927,31 +7416,20 @@ entities: 5976: -23,-66 6069: 20,-76 6175: -19,-82 + - node: + color: '#FFFFFFFF' + id: WarnEndE + decals: + 7545: -8,45 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleN decals: 3346: 46,-17 - - node: - color: '#DE3A3A96' - id: WarnFullGreyscale - decals: - 2102: -2,41 - 2103: -1,41 - 2104: 0,41 - 2105: 1,41 - 2106: 2,41 - 2107: 3,41 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 313: 24,37 - 314: 24,38 - 315: 24,39 - 316: 24,40 - 317: 24,41 - 318: 24,42 661: 74,-36 662: 74,-35 663: 74,-34 @@ -6974,13 +7452,20 @@ entities: 2477: 8,-48 3510: -13,-62 3514: 23,18 - 6271: 2,34 - 6272: 2,35 6312: 24,-79 6313: 24,-78 6314: 24,-77 6315: 24,-76 6316: 24,-75 + 6431: -17,24 + 6432: -17,23 + 6963: 10,47 + 6964: 10,48 + 6965: 10,49 + 6966: 10,50 + 6967: 10,51 + 7531: -12,44 + 7540: -12,43 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7015,6 +7500,9 @@ entities: 2659: -10,-75 2949: 42,-20 2950: 42,-19 + 6504: -10,52 + 6505: -10,53 + 6514: -6,55 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7047,19 +7535,6 @@ entities: decals: 1461: 66,-51 1724: 54,-40 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleN - decals: - 1354: -6,36 - 1394: -8,45 - 1395: -14,45 - 1396: -18,45 - 1397: -21,45 - 1398: -24,45 - 2243: -8,27 - 2244: -9,27 - 3531: -12,27 - node: color: '#EFB34196' id: WarnLineGreyscaleN @@ -7092,6 +7567,11 @@ entities: 2889: 3,-66 2890: 8,-66 2952: 41,-18 + 6506: -11,51 + 6507: -9,51 + 6843: -16,17 + 6844: -15,17 + 6845: -14,17 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7132,17 +7612,9 @@ entities: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 1353: -11,43 - 1389: -19,43 - 1390: -22,43 - 1391: -24,43 - 1392: -15,43 - 1393: -6,43 - 2092: 6,26 - 2093: 4,26 - 3521: -9,34 - 3522: -8,34 - 3566: -15,34 + 6582: -8,29 + 6583: -9,29 + 6584: -10,29 - node: color: '#EFB34196' id: WarnLineGreyscaleS @@ -7174,6 +7646,9 @@ entities: 3349: 44,-21 3350: 43,-21 3351: 42,-21 + 6510: -11,50 + 6511: -10,50 + 6512: -9,50 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7182,11 +7657,6 @@ entities: 6155: -7,-76 6156: -6,-76 6157: -5,-76 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleW - decals: - 6285: -15,23 - node: color: '#EFB34196' id: WarnLineGreyscaleW @@ -7209,6 +7679,9 @@ entities: 2658: -8,-75 2896: -8,-69 2897: -8,-70 + 6502: -10,52 + 6503: -10,53 + 6513: -6,55 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7223,17 +7696,6 @@ entities: color: '#FFFFFFFF' id: WarnLineN decals: - 296: 24,37 - 297: 23,37 - 298: 22,37 - 299: 21,32 - 300: 22,32 - 301: 23,32 - 302: 24,32 - 303: 25,32 - 358: -2,36 - 359: -1,36 - 360: 0,36 415: -40,-10 416: -39,-10 655: 72,-36 @@ -7284,10 +7746,16 @@ entities: 2602: -1,-79 2603: -2,-79 2604: -3,-79 - 6273: 4,36 - 6274: 3,36 6317: 25,-74 6318: 26,-74 + 6450: -10,40 + 6451: -9,40 + 6452: -8,40 + 7528: -13,41 + 7529: -12,41 + 7532: -11,45 + 7533: -10,45 + 7534: -9,45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7304,17 +7772,6 @@ entities: color: '#FFFFFFFF' id: WarnLineS decals: - 307: 22,42 - 308: 22,41 - 309: 22,40 - 310: 22,39 - 311: 22,38 - 312: 22,37 - 355: -2,38 - 356: -2,37 - 357: -2,36 - 361: 1,35 - 363: 1,34 417: -38,-14 418: -38,-13 419: -38,-12 @@ -7356,9 +7813,6 @@ entities: 2475: 8,-48 3509: -11,-62 3518: 25,18 - 3567: -11,34 - 3568: -11,35 - 3569: -11,36 3703: -38,-11 6289: 12,-81 6290: 12,-80 @@ -7373,6 +7827,20 @@ entities: 6319: 79,-29 6320: 79,-30 6321: 79,-31 + 6429: -17,24 + 6430: -17,23 + 6439: -14,45 + 6658: 5,31 + 6659: 5,30 + 6660: 5,29 + 6958: 11,47 + 6959: 11,48 + 6960: 11,49 + 6961: 11,50 + 6962: 11,51 + 7523: -14,44 + 7526: -14,43 + 7530: -14,42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7396,16 +7864,6 @@ entities: color: '#FFFFFFFF' id: WarnLineW decals: - 304: 22,42 - 305: 23,42 - 306: 24,42 - 348: 4,38 - 349: 3,38 - 350: 2,38 - 351: 1,38 - 352: 0,38 - 353: -1,38 - 354: -2,38 664: 74,-34 665: 73,-34 666: 72,-34 @@ -7465,6 +7923,14 @@ entities: 6305: 19,-72 6308: 26,-80 6309: 25,-80 + 6443: -13,46 + 6444: -12,46 + 6445: -11,46 + 6448: -9,42 + 7541: -11,42 + 7542: -10,42 + 7543: -8,42 + 7548: -10,46 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7535,7 +8001,6 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 1219: -8,15 1229: 11,-19 1230: 11,-18 1231: 11,-17 @@ -7558,11 +8023,6 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 1224: 16,37 - 1225: 15,37 - 1226: 14,37 - 1227: 13,37 - 1228: 12,37 1236: 11,-13 1237: 10,-13 1238: 9,-13 @@ -7591,15 +8051,6 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1220: -7,16 - 1221: -6,16 - 1222: -5,16 - 1223: -4,16 - 1348: -12,53 - 1349: -13,53 - 1350: -14,53 - 1351: -15,53 - 1352: -16,53 2445: 11,-37 3400: 11,-27 3401: 10,-27 @@ -7708,11 +8159,11 @@ entities: 0,2: 0: 30037 -1,2: - 0: 64733 + 0: 56541 0,3: 0: 21845 -1,3: - 0: 56796 + 0: 64975 0,4: 0: 61909 1,0: @@ -7793,8 +8244,7 @@ entities: -5,0: 0: 39864 -4,0: - 0: 35552 - 2: 8192 + 0: 43744 -4,1: 0: 60942 -5,1: @@ -7802,33 +8252,33 @@ entities: -4,2: 0: 61679 -5,2: - 0: 36860 + 0: 45052 -4,3: - 0: 60083 + 0: 62493 -5,3: - 0: 35771 + 0: 41662 -4,4: - 0: 62702 + 0: 28791 -3,1: 0: 65311 -3,2: 0: 61695 -3,3: - 0: 46008 + 0: 65295 -3,4: - 0: 61627 + 0: 65535 -2,2: - 0: 61679 + 0: 57583 -2,3: - 0: 65264 + 0: 65311 -2,0: 0: 24576 -2,1: 0: 60998 -2,4: - 0: 63743 + 0: 65535 -1,4: - 0: 64733 + 0: 56797 4,-5: 0: 56797 5,-4: @@ -7875,7 +8325,7 @@ entities: 0: 61423 8,-1: 0: 12320 - 3: 34944 + 2: 34944 -8,-4: 0: 30583 -8,-5: @@ -7985,8 +8435,7 @@ entities: 5,-7: 0: 65399 5,-6: - 0: 30515 - 4: 64 + 0: 30579 5,-9: 0: 30591 6,-8: @@ -8084,7 +8533,7 @@ entities: -9,3: 0: 15 1: 9472 - 5: 4608 + 3: 4608 -8,4: 0: 13073 -7,1: @@ -8092,18 +8541,21 @@ entities: 0: 52428 -7,2: 0: 4044 + -7,3: + 1: 140 -6,0: 0: 12272 -6,1: 0: 61167 -6,2: - 0: 36848 + 0: 20464 -6,3: - 0: 3276 + 0: 61166 -6,4: - 1: 1094 + 0: 14 + 1: 18192 -5,4: - 0: 64187 + 0: 29610 -8,-12: 0: 64783 -8,-13: @@ -8111,8 +8563,9 @@ entities: -9,-12: 0: 57116 -8,-11: - 0: 17421 + 0: 13 1: 43520 + 3: 17408 -9,-11: 0: 13 -8,-10: @@ -8123,8 +8576,9 @@ entities: -7,-12: 0: 65327 -7,-11: - 0: 17423 + 0: 15 1: 43520 + 3: 17408 -7,-10: 0: 65520 -6,-12: @@ -8209,7 +8663,7 @@ entities: 0: 45298 3,-13: 0: 61713 - 5: 204 + 3: 204 4,-12: 0: 65535 4,-11: @@ -8218,7 +8672,7 @@ entities: 0: 53744 4,-13: 0: 64716 - 5: 17 + 3: 17 5,-12: 0: 30583 5,-11: @@ -8229,30 +8683,30 @@ entities: 0: 30583 6,-12: 1: 4369 - 6: 204 - 5: 49152 + 4: 204 + 3: 49152 6,-11: 1: 61713 - 5: 204 + 3: 204 6,-10: 0: 29424 6,-13: 1: 4369 - 6: 49152 - 5: 204 + 4: 49152 + 3: 204 7,-12: - 6: 17 - 5: 4096 + 4: 17 + 3: 4096 1: 17476 7,-11: - 5: 17 + 3: 17 1: 29764 7,-10: 0: 61680 7,-13: - 6: 4096 + 4: 4096 1: 17476 - 5: 17 + 3: 17 8,-12: 0: 7647 8,-11: @@ -8268,7 +8722,7 @@ entities: 5,3: 0: 65535 4,4: - 0: 7416 + 0: 7672 6,1: 0: 30583 6,2: @@ -8285,10 +8739,10 @@ entities: 0: 57344 7,4: 0: 14 - 1: 8704 + 1: 34816 8,0: 0: 63523 - 3: 8 + 2: 8 8,1: 0: 61440 8,2: @@ -8296,238 +8750,225 @@ entities: 8,3: 0: 65535 0,5: - 0: 59135 + 0: 55807 -1,5: - 0: 57599 + 0: 56797 0,6: - 0: 65326 + 0: 56797 -1,6: - 0: 65358 + 0: 65485 0,7: - 0: 65359 + 0: 56785 -1,7: - 0: 61071 + 0: 62927 0,8: - 0: 26367 - 7: 4096 - 8: 32768 + 0: 40413 1,4: 0: 61680 1,5: - 0: 30207 + 0: 45311 1,6: - 0: 65367 + 0: 48059 1,7: - 0: 64911 + 0: 65528 1,8: - 0: 49373 - 8: 4096 + 0: 52689 2,5: - 0: 28799 + 0: 61815 2,6: - 0: 63271 + 0: 65535 2,7: - 0: 65287 + 0: 7632 2,8: - 0: 47615 + 0: 57308 3,4: - 0: 61680 + 0: 51440 + 1: 4096 3,5: - 0: 20479 + 1: 17 + 0: 53452 3,6: - 0: 65535 + 0: 57309 3,7: - 0: 65295 + 0: 44768 3,8: - 0: 65535 + 0: 12171 4,5: - 0: 6015 + 0: 63453 4,6: - 0: 30583 + 0: 65501 4,7: - 0: 16135 + 0: 4125 + 1: 52224 -4,5: - 0: 65039 - -5,5: - 0: 65359 + 0: 63271 -4,6: - 0: 61006 + 0: 65287 + -5,5: + 0: 63345 -5,6: - 0: 15 - 1: 20224 + 0: 63359 -4,7: - 0: 30704 + 0: 36863 + -5,7: + 0: 6135 -4,8: - 0: 65319 + 0: 48059 -3,5: - 0: 57583 - -3,6: - 0: 65358 - -3,7: - 0: 55769 - 9: 1024 - -3,8: - 0: 65421 - -2,5: - 0: 57599 - -2,6: - 0: 65356 - 9: 2 - -2,7: - 0: 65533 - -2,8: - 0: 64991 - -1,8: - 0: 206 - 9: 8224 - 10: 16384 - 11: 32768 - 4,8: 0: 65535 + -3,6: + 0: 65423 + -3,7: + 0: 51711 + -3,8: + 0: 7421 + -2,5: + 0: 65535 + -2,6: + 0: 64783 + -2,7: + 0: 64733 + -2,8: + 0: 20479 + -1,8: + 0: 50687 + 4,8: + 0: 17 + 1: 24580 5,4: 0: 48048 5,5: - 0: 48051 + 0: 65267 5,6: - 0: 65531 + 0: 30591 5,7: - 0: 4095 - 5,8: - 0: 61182 + 0: 7 + 1: 9984 6,5: - 0: 56784 + 0: 13104 + 1: 32768 6,6: - 0: 65528 + 0: 61747 + 1: 136 6,7: - 0: 4095 - 6,8: - 0: 13107 - 1: 34952 - 7,6: - 0: 1792 - 1: 34944 + 0: 11 + 1: 35840 7,5: - 1: 34 + 1: 4972 + 7,6: + 1: 13056 7,7: - 1: 8928 - 7,8: - 1: 2 + 1: 19 + 6,8: + 1: 34952 8,4: 0: 15 - 1: 52224 - 8,7: - 1: 16 + 1: 56576 + -5,8: + 0: 56829 -4,9: - 0: 15 + 0: 3066 + -5,9: + 0: 3537 -4,10: - 0: 63351 - -4,11: - 0: 62719 + 0: 61166 -5,10: - 0: 63078 + 0: 34952 + 1: 13107 + -4,11: + 0: 61166 -5,11: - 0: 26367 - -4,12: - 0: 65535 + 0: 34952 + 1: 13107 -3,9: - 0: 63279 + 0: 4095 -3,10: - 0: 62207 + 0: 15291 -3,11: - 0: 53503 - -3,12: - 0: 56799 + 0: 49087 -2,9: - 0: 58623 - -2,10: - 0: 62698 + 0: 61439 -2,11: - 0: 61951 + 0: 65535 + -2,10: + 0: 61166 -2,12: - 0: 65535 + 0: 65262 -1,9: - 0: 61038 - 8: 128 - -1,10: - 1: 60928 - 5: 192 + 0: 61439 -1,11: - 1: 14 - 0: 57344 + 0: 61167 + -1,10: + 0: 57582 -1,12: - 0: 65518 + 0: 61167 0,9: - 0: 32655 - 8: 48 - 12: 64 - 13: 32768 + 0: 36863 0,10: - 5: 240 - 1: 65280 + 0: 56558 0,11: - 1: 15 - 0: 61440 + 0: 56799 0,12: - 0: 65535 + 0: 55775 1,9: - 0: 52733 - 13: 4096 + 0: 3545 1,10: - 1: 53504 - 5: 8192 - 0: 204 + 0: 65535 1,11: - 1: 19549 - 0: 4096 - 5: 34 + 0: 46079 1,12: - 0: 4369 - 1: 17476 - 2,9: - 0: 30579 + 0: 47355 2,10: - 0: 119 - 1: 61440 + 0: 65535 2,11: - 1: 44975 + 0: 62207 + 2,9: + 0: 20204 2,12: - 1: 8738 + 0: 65535 3,9: - 0: 65524 - 3,10: - 0: 255 - 1: 61440 + 0: 1790 3,11: - 1: 12066 + 0: 61440 + 1: 32 + 3,10: + 1: 14 + 3,12: + 0: 65535 4,9: - 0: 4380 - 1: 35840 - 4,10: - 0: 17 - 1: 4104 + 1: 61998 4,11: - 1: 7953 + 0: 12288 + 1: 34884 4,12: - 1: 17 - 5,10: - 1: 1 - 0: 3276 - 5,11: - 1: 20292 - 5,9: - 0: 52430 - 6,9: - 0: 4371 - 1: 17416 - 6,10: - 0: 273 + 0: 13107 + 1: 32896 + 4,10: 1: 17476 + 5,9: + 1: 61455 + 5,11: + 1: 3840 + 5,8: + 1: 8704 + 6,9: + 1: 61455 6,11: - 1: 8994 - 6,12: - 1: 2 + 1: 3840 7,9: - 1: 7 + 1: 29775 + 7,11: + 1: 9188 + 7,12: + 1: 242 + 7,10: + 1: 19532 + 8,9: + 1: 15 + 8,10: + 1: 12127 + 8,11: + 1: 8754 9,4: 0: 3 1: 128 @@ -8547,7 +8988,7 @@ entities: 1: 34952 10,7: 1: 33249 - 5: 3598 + 3: 3598 9,8: 1: 34952 10,3: @@ -8559,10 +9000,10 @@ entities: 11,6: 1: 40844 11,7: - 5: 771 + 3: 771 1: 35064 10,8: - 5: 3598 + 3: 3598 1: 33249 11,5: 0: 34956 @@ -8578,29 +9019,29 @@ entities: 1: 20293 12,7: 1: 33008 - 5: 3598 + 3: 3598 11,8: 1: 35064 - 5: 771 + 3: 771 9,0: - 3: 15 + 2: 15 0: 65296 9,1: 0: 47232 9,2: 0: 48955 9,-1: - 3: 65520 + 2: 65520 0: 1 10,0: - 3: 1 + 2: 1 0: 65292 10,1: 0: 56789 10,2: 0: 64961 10,-1: - 3: 4368 + 2: 4368 0: 57548 11,0: 0: 30543 @@ -8628,57 +9069,106 @@ entities: 0: 65535 -8,6: 0: 3 + 1: 50368 -9,6: 0: 15 + -8,7: + 1: 18230 + -9,7: + 1: 59392 + -7,6: + 1: 4913 + 0: 2176 + -7,7: + 0: 65532 + -7,4: + 1: 8080 + -7,5: + 1: 4369 + 0: 34816 + -7,8: + 0: 65522 -6,5: - 0: 14 + 0: 64384 + 1: 2 -6,6: - 0: 14 - 1: 19456 + 0: 35832 -6,7: - 1: 34816 + 0: 56829 -6,8: - 1: 34952 - -5,7: - 1: 17476 - -5,8: - 1: 18244 - -7,10: - 1: 4369 - 0: 32768 - -7,11: - 1: 4371 + 0: 57340 + -8,8: + 0: 65520 + -9,8: + 0: 34816 + 1: 307 + -8,9: + 0: 12287 + -9,9: 0: 136 - -7,12: - 1: 4369 - -6,10: - 0: 64989 - -6,11: - 0: 56831 - -6,12: - 0: 65309 + 1: 771 + -8,10: + 0: 1367 + -9,10: + 1: 61696 + -8,11: + 1: 64512 + -8,12: + 1: 231 + -9,11: + 1: 35951 + -7,9: + 0: 36863 + -7,10: + 0: 65535 + -7,11: + 0: 255 -6,9: - 1: 8 + 0: 7645 + -6,10: + 0: 4369 + 1: 76 + -6,11: + 0: 17 + 1: 3136 -5,12: - 0: 32518 - -5,9: - 1: 3140 - 0,13: - 1: 8944 - -1,13: - 1: 224 - 0,14: - 1: 15 - -1,14: - 1: 15 - 1,13: - 1: 124 - 1,14: - 1: 15 - 2,13: - 1: 547 - 2,14: + 1: 2098 + -4,12: + 1: 4352 + 0: 60416 + -4,13: + 1: 40753 + 0: 12 + -5,13: + 1: 63744 + -4,14: + 1: 12544 + -5,14: + 1: 36079 + -4,15: + 1: 3 + -3,12: + 0: 65248 + -3,13: + 0: 1262 + -3,14: + 1: 256 + -2,13: + 0: 58606 + -2,15: 1: 1 + -2,14: + 0: 4 + -1,13: + 0: 61152 + -1,14: + 1: 1760 + -1,15: + 1: 1 + 0,13: + 0: 61420 + 0,14: + 1: 240 -12,-1: 0: 65520 -12,0: @@ -8726,7 +9216,7 @@ entities: 0: 65520 -10,4: 1: 3 - 5: 8 + 3: 8 0: 60928 -13,4: 0: 61432 @@ -8737,24 +9227,24 @@ entities: -12,6: 1: 44868 -12,7: - 5: 3855 + 3: 3855 1: 16624 -13,7: 1: 17652 - 5: 257 + 3: 257 -12,8: - 5: 3855 + 3: 3855 1: 16624 -11,5: 0: 4095 -11,6: 1: 18210 -11,7: - 5: 257 + 3: 257 1: 18006 -11,8: 1: 18006 - 5: 257 + 3: 257 -10,5: 0: 61182 -10,6: @@ -8785,19 +9275,19 @@ entities: -14,6: 1: 44953 -14,7: - 5: 3855 + 3: 3855 1: 16624 -14,3: 0: 65535 -14,8: - 5: 3855 + 3: 3855 1: 16624 -13,6: 1: 57600 0: 1092 -13,8: 1: 17652 - 5: 257 + 3: 257 -16,0: 0: 55807 -16,-1: @@ -9002,8 +9492,7 @@ entities: 9,-3: 0: 65407 9,-2: - 0: 57343 - 9: 8192 + 0: 65535 9,-5: 0: 61166 10,-4: @@ -9034,10 +9523,10 @@ entities: 13,6: 1: 40866 13,7: - 5: 771 + 3: 771 1: 36024 12,8: - 5: 3598 + 3: 3598 1: 33008 14,5: 0: 3 @@ -9046,7 +9535,7 @@ entities: 1: 310 13,8: 1: 36028 - 5: 771 + 3: 771 15,5: 1: 304 16,4: @@ -9085,17 +9574,17 @@ entities: 18,3: 0: 15 1: 3840 - 5: 4096 + 3: 4096 19,0: 1: 61455 19,1: 1: 36608 19,2: 1: 742 - 5: 8192 + 3: 8192 19,3: 1: 226 - 5: 32768 + 3: 32768 20,0: 1: 61715 20,1: @@ -9302,9 +9791,9 @@ entities: 3,-14: 0: 4415 1: 192 - 5: 49152 + 3: 49152 3,-17: - 14: 30576 + 5: 30576 4,-16: 1: 240 0: 61440 @@ -9313,7 +9802,7 @@ entities: 4,-14: 0: 52463 1: 16 - 5: 4096 + 3: 4096 8,-13: 0: 56605 9,-12: @@ -9459,7 +9948,8 @@ entities: 18,-5: 0: 26487 19,-8: - 0: 65520 + 1: 13104 + 0: 34944 19,-7: 0: 65456 19,-6: @@ -9729,7 +10219,7 @@ entities: 0: 15 16,-20: 1: 16 - 5: 52454 + 3: 52454 15,-20: 1: 44719 16,-19: @@ -9744,60 +10234,60 @@ entities: 0: 234 1: 20480 16,-21: - 5: 16384 + 3: 16384 1: 15 17,-20: 1: 144 - 5: 14178 + 3: 14178 17,-19: - 5: 1 + 3: 1 1: 63744 17,-18: 1: 153 0: 61440 17,-21: 1: 8207 - 5: 16384 + 3: 16384 18,-20: 1: 9910 - 5: 2056 + 3: 2056 18,-19: 1: 13990 - 5: 2056 + 3: 2056 18,-18: 0: 4096 1: 17486 18,-21: 1: 9895 - 5: 2056 + 3: 2056 19,-20: - 5: 3855 + 3: 3855 1: 8432 19,-19: - 5: 3855 + 3: 3855 1: 20720 19,-18: 1: 17487 19,-21: 1: 8432 - 5: 3855 + 3: 3855 20,-20: 1: 8946 - 5: 2056 + 3: 2056 20,-19: 1: 8946 - 5: 2056 + 3: 2056 20,-18: 1: 1839 0: 8192 20,-21: 1: 8946 - 5: 2056 + 3: 2056 21,-20: - 5: 3855 + 3: 3855 1: 8432 21,-19: - 5: 3855 + 3: 3855 1: 20720 21,-18: 1: 21855 @@ -9805,7 +10295,7 @@ entities: 1: 5621 21,-21: 1: 8432 - 5: 3855 + 3: 3855 22,-20: 1: 8995 22,-19: @@ -9834,7 +10324,7 @@ entities: 13,-18: 1: 17476 14,-20: - 5: 16 + 3: 16 14,-19: 1: 241 15,-21: @@ -9871,7 +10361,7 @@ entities: 0: 65535 4,-21: 0: 65348 - 5: 1 + 3: 1 3,-20: 0: 65535 4,-19: @@ -9885,7 +10375,7 @@ entities: 0: 255 1: 49152 4,-17: - 15: 30576 + 6: 30576 5,-20: 0: 65535 5,-19: @@ -9897,7 +10387,7 @@ entities: 0: 30576 5,-21: 0: 65280 - 5: 15 + 3: 15 6,-20: 0: 30583 6,-19: @@ -9929,15 +10419,15 @@ entities: 0: 30583 6,-15: 1: 4592 - 5: 49152 + 3: 49152 6,-14: 1: 4369 - 5: 49356 + 3: 49356 7,-15: 1: 17520 - 5: 4096 + 3: 4096 7,-14: - 5: 4113 + 3: 4113 1: 17476 -4,-20: 0: 61440 @@ -9953,28 +10443,28 @@ entities: 0: 57297 -3,-20: 0: 28672 - 5: 76 + 3: 76 -3,-19: 0: 30711 -3,-18: 0: 65520 -3,-21: - 5: 52428 + 3: 52428 1: 4353 -2,-20: - 5: 15 + 3: 15 0: 3840 -2,-19: 0: 65535 -2,-18: 0: 65535 -2,-21: - 5: 61696 - 1: 248 + 3: 61824 + 1: 120 -1,-18: 0: 65534 -1,-21: - 5: 61440 + 3: 61440 1: 2296 -1,-20: 0: 61152 @@ -9982,7 +10472,7 @@ entities: 0: 36590 0,-20: 0: 15152 - 5: 8 + 3: 8 0,-19: 0: 35771 0,-18: @@ -10019,26 +10509,26 @@ entities: 1: 34824 -12,-16: 1: 20292 - 5: 10 + 3: 10 -13,-16: 1: 20292 - 5: 10 + 3: 10 -12,-15: 1: 17732 - 5: 43690 + 3: 43690 -13,-15: - 5: 43690 + 3: 43690 1: 17732 -12,-14: 1: 49060 - 5: 10 + 3: 10 -13,-14: 1: 65444 - 5: 10 + 3: 10 -12,-13: 1: 62 -12,-17: - 5: 43690 + 3: 43690 1: 17732 -11,-16: 1: 8994 @@ -10063,7 +10553,7 @@ entities: -13,-18: 1: 44800 -13,-17: - 5: 43690 + 3: 43690 1: 17732 -11,-18: 1: 8960 @@ -10072,10 +10562,10 @@ entities: -9,-18: 1: 1811 0,-21: - 5: 61440 - 1: 248 + 3: 61568 + 1: 120 1,-20: - 5: 7 + 3: 7 0: 1792 1,-19: 0: 65535 @@ -10084,7 +10574,7 @@ entities: 1,-17: 0: 4095 1,-21: - 5: 64648 + 3: 64648 1: 112 2,-20: 0: 43962 @@ -10093,51 +10583,53 @@ entities: 2,-18: 0: 46011 2,-21: - 5: 13107 + 3: 13107 0: 34816 1: 8 3,-21: 0: 65280 - 5: 14 + 3: 14 0,-24: - 5: 64512 + 3: 64512 1: 136 -1,-24: - 5: 61696 + 3: 61696 1: 136 0,-23: - 1: 35064 + 1: 34936 + 3: 128 -1,-23: 1: 35064 0,-22: - 1: 35064 + 3: 2441 + 1: 32880 -1,-22: - 5: 128 1: 34936 + 3: 1156 0,-25: 1: 36744 1,-24: - 5: 62208 + 3: 62208 1: 136 1,-23: 1: 112 - 5: 34956 + 3: 34956 1,-22: - 1: 112 - 5: 34952 + 3: 35225 + 1: 96 1,-25: 1: 36736 2,-23: - 5: 13073 + 3: 13073 1: 52224 2,-22: - 5: 4369 + 3: 4369 1: 36044 3,-23: 1: 61440 3,-22: 1: 15 - 5: 60928 + 3: 60928 3,-24: 1: 35939 3,-25: @@ -10148,7 +10640,7 @@ entities: 1: 64739 4,-22: 1: 15 - 5: 4352 + 3: 4352 0: 58368 -4,-24: 1: 310 @@ -10165,28 +10657,29 @@ entities: 0: 4 -4,-21: 1: 65295 - 5: 112 + 3: 112 -4,-25: 1: 51200 -3,-23: 1: 4352 - 5: 52462 + 3: 52462 -3,-22: 1: 4112 - 5: 61132 + 3: 61132 -3,-24: - 5: 32768 + 3: 32768 1: 136 -3,-25: 1: 36342 -2,-24: - 5: 63232 + 3: 63232 1: 136 -2,-23: - 5: 1 - 1: 35064 + 3: 129 + 1: 34936 -2,-22: - 1: 35064 + 1: 32816 + 3: 3276 -2,-25: 1: 36744 -1,-25: @@ -10195,7 +10688,7 @@ entities: 1: 61459 5,-22: 1: 15 - 5: 65280 + 3: 65280 5,-24: 1: 62432 6,-24: @@ -10232,24 +10725,24 @@ entities: 0: 2184 -15,-16: 1: 23391 - 5: 1024 + 3: 1024 -15,-15: 1: 34959 -15,-17: 1: 34952 -14,-16: 1: 20292 - 5: 10 + 3: 10 -14,-15: 1: 21588 - 5: 43690 + 3: 43690 -15,-14: 1: 2184 -14,-14: 1: 36772 - 5: 10 + 3: 10 -14,-17: - 5: 43690 + 3: 43690 1: 21588 -15,-18: 1: 34816 @@ -10260,85 +10753,109 @@ entities: -15,10: 1: 12 -14,9: - 5: 3855 + 3: 3855 1: 41200 -14,10: 1: 15 -13,9: - 5: 257 + 3: 257 1: 17652 -13,10: 1: 62901 - 5: 64 + 3: 64 -12,9: 1: 41200 - 5: 3855 + 3: 3855 -12,10: 1: 4383 -11,9: - 5: 257 + 3: 257 1: 18006 -11,10: 1: 7 - -4,13: - 0: 255 - 1: 28672 - -5,13: - 1: 61440 - -4,14: - 1: 3916 - -5,14: - 1: 3840 - -3,13: - 0: 221 - -3,14: - 1: 3855 - -2,13: - 4: 1 - 0: 14 - 1: 11776 - -2,14: - 1: 1831 - 9,9: + -10,8: + 1: 34944 + -10,9: 1: 34952 + -10,10: + 1: 34952 + -7,12: + 1: 240 + -6,12: + 1: 240 + -6,13: + 1: 36032 + 0,15: + 1: 15 + 1,13: + 0: 13107 + 1: 2176 + 1,15: + 1: 15 + 1,14: + 1: 17640 + 2,13: + 1: 16 + 2,14: + 1: 4479 + 2,15: + 1: 15 + 3,14: + 1: 8751 + 3,15: + 1: 15 + 4,14: + 1: 15 + 4,15: + 1: 7 + 8,12: + 1: 51 + 9,9: + 1: 34959 + 9,10: + 1: 4015 10,9: 1: 16865 - 5: 3598 - 9,10: - 1: 8 + 3: 3598 10,10: - 1: 15 + 1: 1871 11,9: - 5: 771 + 3: 771 1: 39160 11,10: 1: 60011 - 5: 128 + 3: 128 12,9: 1: 16624 - 5: 3598 + 3: 3598 12,10: 1: 12862 13,9: - 5: 771 + 3: 771 1: 40124 13,10: 1: 15 - -7,13: - 1: 58167 - -7,14: - 1: 3072 - -6,13: - 1: 64160 - -6,14: - 1: 3976 + 4,13: + 1: 17480 + 5,12: + 1: 8944 + 5,14: + 1: 29231 + 5,13: + 1: 8738 + 6,12: + 1: 6640 + 6,14: + 1: 17 + 6,13: + 1: 4371 20,-23: 1: 61440 19,-23: 1: 32768 20,-22: 1: 10970 - 5: 32 + 3: 32 19,-22: 1: 24456 21,-22: @@ -10393,41 +10910,11 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 24.680622 - - 92.84615 + - 27.225372 + - 102.419266 - 0 - 0 - 0 @@ -10468,111 +10955,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14917 - moles: - - 16.99477 - - 63.932716 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.1495 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14948 - moles: - - 18.472576 - - 69.49208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.1492 - moles: - - 18.472576 - - 69.49208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.149 - moles: - - 18.472576 - - 69.49208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 19.950384 - - 75.051445 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -10612,16 +10994,18 @@ entities: id: docking46345 localAnchorB: -0.5,-1 localAnchorA: -66.5,22 - damping: 42.400772 - stiffness: 380.58847 + damping: 42.401016 + stiffness: 380.59067 - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: RadiationGridResistance - type: GravityShake shakeTimes: 10 - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding + - type: ImplicitRoof - uid: 11906 components: - type: MetaData @@ -10632,16 +11016,16 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,0: ind: 0,0 - tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 index: 1 - type: Broadphase - type: Physics @@ -10671,9 +11055,11 @@ entities: stiffness: 380.58975 - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: RadiationGridResistance - type: SpreaderGrid - type: GridPathfinding + - type: ImplicitRoof - proto: AcousticGuitarInstrument entities: - uid: 19976 @@ -10681,61 +11067,11 @@ entities: - type: Transform pos: -58.55762,-61.482254 parent: 8364 - - uid: 21783 - components: - - type: Transform - pos: 1.5165133,30.497892 - parent: 8364 - uid: 22934 components: - type: Transform pos: -1.4590547,-61.356407 parent: 8364 -- proto: ActionToggleInternals - entities: - - uid: 10072 - mapInit: true - paused: true - components: - - type: Transform - parent: 9182 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 9182 - - uid: 25167 - components: - - type: Transform - parent: 21419 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 21419 - - uid: 25181 - components: - - type: Transform - parent: 20121 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 20121 -- proto: ActionToggleJetpack - entities: - - uid: 10071 - mapInit: true - paused: true - components: - - type: Transform - parent: 9182 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 9182 -- proto: ActionToggleLight - entities: - - uid: 16587 - components: - - type: Transform - parent: 11756 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 11756 - proto: AirAlarm entities: - uid: 2 @@ -10746,8 +11082,6 @@ entities: parent: 8364 - type: DeviceList devices: - - 23905 - - 21996 - 24674 - 22679 - 24673 @@ -10813,16 +11147,6 @@ entities: - type: DeviceList devices: - 23910 - - uid: 2468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,12.5 - parent: 8364 - - type: DeviceList - devices: - - 23905 - - 21996 - uid: 3087 components: - type: Transform @@ -11954,6 +12278,8 @@ entities: - 24337 - uid: 23898 components: + - type: MetaData + name: Outside Sec South Hall - type: Transform rot: -1.5707963267948966 rad pos: 1.5,17.5 @@ -11961,22 +12287,21 @@ entities: - type: DeviceList devices: - 23903 - - 7148 - - 7140 - - 7150 - - 7393 - - 7390 - - 7146 - - 11605 - - 11600 + - 9169 + - 9170 + - 9171 + - 8707 + - 8708 + - 8689 + - 9168 + - 9167 + - 9166 + - 26158 - 23935 - - 22459 - - 22458 - - 25423 - - 25420 + - 26152 + - 26146 - 25422 - 25421 - - 9291 - uid: 23899 components: - type: MetaData @@ -11989,62 +12314,6 @@ entities: devices: - 25164 - 25166 - - uid: 23938 - components: - - type: Transform - pos: 8.5,22.5 - parent: 8364 - - type: DeviceList - devices: - - 11605 - - 11600 - - 11377 - - 11603 - - 23940 - - 25488 - - 25487 - - 25518 - - 25519 - - 26931 - - 591 - - 23258 - - 21999 - - uid: 23943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,19.5 - parent: 8364 - - type: DeviceList - devices: - - 9392 - - 25516 - - 23944 - - uid: 23945 - components: - - type: Transform - pos: -6.5,28.5 - parent: 8364 - - type: DeviceList - devices: - - 25625 - - 25622 - - 25621 - - 25626 - - 25620 - - 25627 - - 25756 - - 25755 - - 24302 - - 25757 - - 25758 - - 25753 - - 25754 - - 9219 - - 7405 - - 7357 - - 25557 - - 25560 - uid: 24632 components: - type: Transform @@ -12054,17 +12323,6 @@ entities: devices: - 24634 - 24635 - - uid: 24766 - components: - - type: Transform - pos: 11.5,36.5 - parent: 8364 - - type: DeviceList - devices: - - 25800 - - 24915 - - 25804 - - 27933 - uid: 24812 components: - type: Transform @@ -12075,20 +12333,6 @@ entities: devices: - 24896 - 24790 - - uid: 24987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,31.5 - parent: 8364 - - type: DeviceList - devices: - - 25040 - - 9219 - - 8930 - - 8934 - - 25762 - - 25759 - uid: 25225 components: - type: Transform @@ -12103,64 +12347,6 @@ entities: - 27210 - 26034 - 27167 - - uid: 25234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,38.5 - parent: 8364 - - type: DeviceList - devices: - - 8930 - - 8934 - - 25236 - - 19934 - - 25761 - - 25760 - - uid: 25238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,40.5 - parent: 8364 - - type: DeviceList - devices: - - 25801 - - 25805 - - 25237 - - uid: 25239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,36.5 - parent: 8364 - - type: DeviceList - devices: - - 25802 - - 25803 - - 25240 - - uid: 25244 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,33.5 - parent: 8364 - - type: DeviceList - devices: - - 25824 - - 25823 - - 25243 - - uid: 25275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 8364 - - type: DeviceList - devices: - - 25274 - - 25480 - - 25485 - uid: 25825 components: - type: Transform @@ -12229,6 +12415,229 @@ entities: - 25914 - 24599 - 24603 + - uid: 26160 + components: + - type: MetaData + name: Outside Sec Entrance Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,29.5 + parent: 8364 + - type: DeviceList + devices: + - 9171 + - 9170 + - 9169 + - 26181 + - 26202 + - 25643 + - 25642 + - 25644 + - 25645 + - 25646 + - 25647 + - 25648 + - 26205 + - 26204 + - 26207 + - 26208 + - uid: 26206 + components: + - type: MetaData + name: Sec South Hall Air Alarm + - type: Transform + pos: -3.5,39.5 + parent: 8364 + - type: DeviceList + devices: + - 28495 + - 28497 + - 28496 + - 26269 + - 26259 + - 9126 + - 9127 + - 9125 + - 26306 + - 26248 + - 26256 + - 26257 + - uid: 26234 + components: + - type: MetaData + name: Warden Air Alarm + - type: Transform + pos: -3.5,35.5 + parent: 8364 + - type: DeviceList + devices: + - 26248 + - 26246 + - 26247 + - 25649 + - 25648 + - 25647 + - 25646 + - 26205 + - 26207 + - 26204 + - 25645 + - 25644 + - 25643 + - 25642 + - 26208 + - 25638 + - 25639 + - 25640 + - 25641 + - 26233 + - 26232 + - 26235 + - uid: 26323 + components: + - type: MetaData + name: Armory Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,39.5 + parent: 8364 + - type: DeviceList + devices: + - 28634 + - 26322 + - 28631 + - 28643 + - 28632 + - 28633 + - 28642 + - 28644 + - uid: 26340 + components: + - type: MetaData + name: Sec North Hall Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,48.5 + parent: 8364 + - type: DeviceList + devices: + - 26342 + - 26324 + - 26334 + - 26335 + - 26341 + - 26333 + - 9126 + - 9127 + - 9125 + - uid: 26355 + components: + - type: MetaData + name: Sec Locker Room Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,50.5 + parent: 8364 + - type: DeviceList + devices: + - 26350 + - 26354 + - 26351 + - 26342 + - 26356 + - uid: 26430 + components: + - type: MetaData + name: Sec Break Room Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,43.5 + parent: 8364 + - type: DeviceList + devices: + - 26434 + - 26431 + - 26407 + - 26438 + - 26439 + - 26436 + - 26435 + - 26408 + - 26357 + - 26356 + - 26409 + - 26395 + - uid: 26442 + components: + - type: MetaData + name: HoS Office Air Alarm + - type: Transform + pos: 1.5,56.5 + parent: 8364 + - type: DeviceList + devices: + - 26427 + - 26441 + - 26428 + - 26425 + - 26440 + - 26429 + - uid: 26469 + components: + - type: MetaData + name: Law + Detective Office Hall + - type: Transform + pos: 6.5,22.5 + parent: 8364 + - type: DeviceList + devices: + - 26445 + - 26468 + - 26467 + - 9168 + - 9167 + - 9166 + - uid: 26479 + components: + - type: MetaData + name: Detective Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 8364 + - type: DeviceList + devices: + - 9375 + - 26478 + - 26476 + - 26496 + - 26500 + - uid: 26480 + components: + - type: MetaData + name: Lawyer Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,24.5 + parent: 8364 + - type: DeviceList + devices: + - 26446 + - 26450 + - 26448 + - uid: 26491 + components: + - type: MetaData + name: Brig Med Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,34.5 + parent: 8364 + - type: DeviceList + devices: + - 26487 + - 26489 + - 26267 - uid: 26703 components: - type: MetaData @@ -12317,6 +12726,22 @@ entities: - 5235 - 5236 - 151 + - uid: 27934 + components: + - type: MetaData + name: Courtroom Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,13.5 + parent: 8364 + - type: DeviceList + devices: + - 27729 + - 27760 + - 27933 + - 27736 + - 27779 + - 27761 - uid: 27964 components: - type: Transform @@ -12352,6 +12777,21 @@ entities: - 5548 - 21773 - 21774 + - uid: 28095 + components: + - type: MetaData + name: Visitation Air Alarm + - type: Transform + pos: -16.5,18.5 + parent: 8364 + - type: DeviceList + devices: + - 28085 + - 28094 + - 28078 + - 28091 + - 28093 + - 28079 - uid: 28154 components: - type: MetaData @@ -12384,6 +12824,70 @@ entities: - 28231 - 28223 - 28233 + - uid: 28335 + components: + - type: MetaData + name: GenPop Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,26.5 + parent: 8364 + - type: DeviceList + devices: + - 28355 + - 28333 + - 28351 + - 28417 + - 28331 + - 28332 + - 28418 + - 28352 + - 28350 + - 28330 + - 28354 + - 28096 + - 25637 + - 25636 + - 25635 + - 28444 + - 28442 + - 28443 + - 28453 + - 28452 + - 28245 + - uid: 28483 + components: + - type: MetaData + name: GenPop Kitchen Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,37.5 + parent: 8364 + - type: DeviceList + devices: + - 28486 + - 28487 + - 28454 + - 28479 + - 28485 + - 28462 + - 28484 + - 28480 + - 28444 + - 28506 +- proto: AirAlarmFreezer + entities: + - uid: 26712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-1.5 + parent: 8364 + - type: DeviceList + devices: + - 26855 + - 25261 + - 28411 - proto: AirCanister entities: - uid: 444 @@ -12411,10 +12915,10 @@ entities: - type: Transform pos: 36.5,-69.5 parent: 8364 - - uid: 5602 + - uid: 9418 components: - type: Transform - pos: 26.5,21.5 + pos: 14.5,23.5 parent: 8364 - uid: 11707 components: @@ -12486,11 +12990,6 @@ entities: - type: Transform pos: 69.5,-59.5 parent: 8364 - - uid: 26545 - components: - - type: Transform - pos: -21.5,51.5 - parent: 8364 - uid: 27213 components: - type: Transform @@ -12612,6 +13111,21 @@ entities: - type: Transform pos: 12.5,0.5 parent: 8364 + - uid: 8670 + components: + - type: Transform + pos: -21.5,23.5 + parent: 8364 + - uid: 8758 + components: + - type: Transform + pos: -21.5,25.5 + parent: 8364 + - uid: 8825 + components: + - type: Transform + pos: -30.5,39.5 + parent: 8364 - uid: 14184 components: - type: MetaData @@ -12654,27 +13168,33 @@ entities: parent: 8364 - proto: AirlockArmoryGlassLocked entities: - - uid: 8920 - components: - - type: Transform - pos: 2.5,29.5 - parent: 8364 - - uid: 9241 - components: - - type: Transform - pos: 5.5,31.5 - parent: 8364 - - uid: 28244 + - uid: 8662 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,34.5 + pos: -7.5,40.5 parent: 8364 - - uid: 28245 + - uid: 8676 + components: + - type: MetaData + name: Warden + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,35.5 + parent: 8364 + - uid: 8699 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,34.5 + pos: -7.5,42.5 + parent: 8364 + - uid: 8932 + components: + - type: MetaData + name: Warden + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,30.5 parent: 8364 - proto: AirlockAtmosphericsGlassLocked entities: @@ -12704,10 +13224,12 @@ entities: - type: Transform pos: 40.5,4.5 parent: 8364 - - uid: 9741 + - uid: 7881 components: + - type: MetaData + name: Security Air Room - type: Transform - pos: 27.5,24.5 + pos: 7.5,36.5 parent: 8364 - uid: 12057 components: @@ -12749,57 +13271,95 @@ entities: parent: 8364 - proto: AirlockBrigGlassLocked entities: - - uid: 389 + - uid: 7759 components: + - type: MetaData + name: Security Entrance - type: Transform - pos: -8.5,28.5 + rot: 1.5707963267948966 rad + pos: -1.5,34.5 parent: 8364 - - uid: 3813 + - uid: 7765 components: + - type: MetaData + name: GenPop Entrance - type: Transform - pos: -7.5,28.5 + rot: 1.5707963267948966 rad + pos: -12.5,34.5 parent: 8364 - - uid: 8544 + - uid: 8136 components: + - type: MetaData + name: BrigMed - type: Transform - pos: -11.5,28.5 + pos: 3.5,35.5 parent: 8364 - - uid: 9417 + - uid: 8704 components: + - type: MetaData + name: GenPop Entrance - type: Transform - pos: -13.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,31.5 parent: 8364 - - uid: 19921 + - uid: 8907 components: + - type: MetaData + name: Security Entrance - type: Transform - pos: 4.5,25.5 + rot: 1.5707963267948966 rad + pos: 0.5,34.5 parent: 8364 - - uid: 19922 + - uid: 8920 components: + - type: MetaData + name: Security Entrance - type: Transform - pos: 4.5,22.5 + rot: 1.5707963267948966 rad + pos: 0.5,30.5 parent: 8364 - - uid: 19923 + - uid: 8943 components: + - type: MetaData + name: Security Entrance - type: Transform - pos: 6.5,22.5 - parent: 8364 - - uid: 19924 - components: - - type: Transform - pos: 6.5,25.5 + rot: 1.5707963267948966 rad + pos: -1.5,30.5 parent: 8364 - proto: AirlockBrigLocked entities: - - uid: 9425 + - uid: 55 components: - type: Transform - pos: -14.5,14.5 + pos: -8.5,25.5 parent: 8364 - - uid: 19929 + - uid: 971 components: + - type: MetaData + name: Evac Pod - type: Transform - pos: 11.5,27.5 + pos: -5.5,54.5 + parent: 8364 + - uid: 4945 + components: + - type: MetaData + name: Interrogation + - type: Transform + pos: -13.5,37.5 + parent: 8364 + - uid: 7309 + components: + - type: MetaData + name: Interrogation + - type: Transform + pos: -18.5,33.5 + parent: 8364 + - uid: 8504 + components: + - type: MetaData + name: Space Access + - type: Transform + pos: -7.5,51.5 parent: 8364 - proto: AirlockCaptainLocked entities: @@ -13004,7 +13564,6 @@ entities: - type: MetaData name: AI Upload - type: Transform - rot: -1.5707963267948966 rad pos: -0.5,-25.5 parent: 8364 - uid: 5619 @@ -13019,17 +13578,19 @@ entities: - type: MetaData name: AI Entrance - type: Transform - rot: -1.5707963267948966 rad pos: -0.5,-28.5 parent: 8364 -- proto: AirlockDetectiveGlassLocked +- proto: AirlockDetectiveLocked entities: - - uid: 5713 + - uid: 6602 components: - - type: MetaData - name: Detective's Office - type: Transform - pos: -4.5,18.5 + pos: 7.5,28.5 + parent: 8364 + - uid: 7802 + components: + - type: Transform + pos: 8.5,22.5 parent: 8364 - proto: AirlockEngineeringGlassLocked entities: @@ -13165,10 +13726,19 @@ entities: - type: Transform pos: -0.5,-72.5 parent: 8364 - - uid: 6457 + - uid: 6615 components: + - type: MetaData + name: Security Power Room - type: Transform - pos: 23.5,24.5 + pos: 9.5,34.5 + parent: 8364 + - uid: 7278 + components: + - type: MetaData + name: GenPop Substation Room + - type: Transform + pos: -18.5,17.5 parent: 8364 - uid: 9665 components: @@ -13315,7 +13885,6 @@ entities: - uid: 3852 components: - type: Transform - rot: 1.5707963267948966 rad pos: 28.5,-60.5 parent: 8364 - type: DeviceLinkSource @@ -13358,11 +13927,6 @@ entities: 5209: - - DoorStatus - Close - - uid: 8807 - components: - - type: Transform - pos: -20.5,24.5 - parent: 8364 - uid: 11368 components: - type: Transform @@ -13569,26 +14133,6 @@ entities: parent: 8364 - proto: AirlockExternalGlassLocked entities: - - uid: 508 - components: - - type: Transform - pos: -20.5,20.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 509: - - - DoorStatus - - DoorBolt - - uid: 509 - components: - - type: Transform - pos: -22.5,20.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 508: - - - DoorStatus - - DoorBolt - uid: 594 components: - type: MetaData @@ -13618,14 +14162,54 @@ entities: 15592: - - DoorStatus - DoorBolt - - uid: 9436 + - uid: 8432 components: - type: Transform - pos: 28.5,26.5 + rot: 3.141592653589793 rad + pos: -14.5,51.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 9810: + 8654: + - - DoorStatus + - DoorBolt + - uid: 8654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,51.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8432: + - - DoorStatus + - DoorBolt + - uid: 9259 + components: + - type: Transform + pos: 24.5,26.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9405: + - - DoorStatus + - DoorBolt + - uid: 9405 + components: + - type: Transform + pos: 26.5,27.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9259: - - DoorStatus - DoorBolt - uid: 11795 @@ -13762,11 +14346,17 @@ entities: parent: 8364 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 524 + - uid: 8617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,24.5 + rot: 3.141592653589793 rad + pos: -5.5,56.5 + parent: 8364 + - uid: 8636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,54.5 parent: 8364 - uid: 12471 components: @@ -13793,7 +14383,6 @@ entities: - uid: 610 components: - type: Transform - rot: 3.141592653589793 rad pos: -79.5,-4.5 parent: 8364 - type: DeviceLinkSource @@ -13804,7 +14393,6 @@ entities: - uid: 655 components: - type: Transform - rot: 3.141592653589793 rad pos: -79.5,9.5 parent: 8364 - type: DeviceLinkSource @@ -13822,16 +14410,6 @@ entities: 22633: - - DoorStatus - DoorBolt - - uid: 9810 - components: - - type: Transform - pos: 30.5,26.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 9436: - - - DoorStatus - - DoorBolt - uid: 11651 components: - type: Transform @@ -13979,13 +14557,6 @@ entities: 610: - - DoorStatus - Close -- proto: AirlockFreezer - entities: - - uid: 25720 - components: - - type: Transform - pos: -23.5,42.5 - parent: 8364 - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 9924 @@ -14004,6 +14575,22 @@ entities: parent: 8364 - proto: AirlockGlass entities: + - uid: 49 + components: + - type: Transform + pos: 8.5,18.5 + parent: 8364 + - uid: 50 + components: + - type: Transform + pos: 9.5,18.5 + parent: 8364 + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,32.5 + parent: 8364 - uid: 1312 components: - type: MetaData @@ -14024,6 +14611,14 @@ entities: - type: Transform pos: -38.5,-49.5 parent: 8364 + - uid: 5459 + components: + - type: MetaData + name: Visitation + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,15.5 + parent: 8364 - uid: 6355 components: - type: MetaData @@ -14042,7 +14637,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -97887.33 + secondsUntilStateChange: -137357.92 state: Opening - type: DeviceLinkSource lastSignals: @@ -14074,16 +14669,6 @@ entities: - type: Transform pos: 9.5,2.5 parent: 8364 - - uid: 6634 - components: - - type: Transform - pos: 8.5,18.5 - parent: 8364 - - uid: 6652 - components: - - type: Transform - pos: 9.5,18.5 - parent: 8364 - uid: 6998 components: - type: Transform @@ -14096,37 +14681,54 @@ entities: - type: Transform pos: 24.5,-11.5 parent: 8364 - - uid: 7302 - components: - - type: Transform - pos: -16.5,43.5 - parent: 8364 - - uid: 7308 - components: - - type: Transform - pos: -16.5,44.5 - parent: 8364 - - uid: 7309 - components: - - type: Transform - pos: -16.5,45.5 - parent: 8364 - uid: 7621 components: - type: Transform pos: 28.5,13.5 parent: 8364 - - uid: 8484 + - uid: 7667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 8364 + - uid: 7672 components: - type: MetaData - name: Courtroom + name: Visitation - type: Transform - pos: 11.5,20.5 + rot: 1.5707963267948966 rad + pos: -14.5,21.5 parent: 8364 - - uid: 9139 + - uid: 7744 components: - type: Transform - pos: -13.5,46.5 + pos: -21.5,31.5 + parent: 8364 + - uid: 7747 + components: + - type: Transform + pos: -20.5,31.5 + parent: 8364 + - uid: 7749 + components: + - type: Transform + pos: -19.5,31.5 + parent: 8364 + - uid: 8669 + components: + - type: Transform + pos: -22.5,29.5 + parent: 8364 + - uid: 8877 + components: + - type: Transform + pos: -22.5,33.5 + parent: 8364 + - uid: 8881 + components: + - type: Transform + pos: -22.5,34.5 parent: 8364 - uid: 10748 components: @@ -14170,11 +14772,6 @@ entities: - type: Transform pos: 74.5,-9.5 parent: 8364 - - uid: 11378 - components: - - type: Transform - pos: -10.5,48.5 - parent: 8364 - uid: 11902 components: - type: MetaData @@ -14311,11 +14908,6 @@ entities: - type: Transform pos: -1.5,-50.5 parent: 8364 - - uid: 18571 - components: - - type: Transform - pos: -7.5,46.5 - parent: 8364 - uid: 21658 components: - type: MetaData @@ -14451,12 +15043,21 @@ entities: - type: Transform pos: -7.5,-28.5 parent: 8364 -- proto: AirlockHeadOfSecurityGlassLocked +- proto: AirlockHeadOfSecurityLocked entities: - - uid: 5621 + - uid: 5073 components: + - type: MetaData + name: HoS Office - type: Transform - pos: 14.5,36.5 + pos: 3.5,50.5 + parent: 8364 + - uid: 8516 + components: + - type: MetaData + name: HoS Bedroom + - type: Transform + pos: 0.5,54.5 parent: 8364 - proto: AirlockHydroGlassLocked entities: @@ -14532,16 +15133,6 @@ entities: - type: Transform pos: 50.5,-62.5 parent: 8364 - - uid: 25692 - components: - - type: Transform - pos: -23.5,46.5 - parent: 8364 - - uid: 25693 - components: - - type: Transform - pos: -16.5,50.5 - parent: 8364 - proto: AirlockMaintAtmoLocked entities: - uid: 15497 @@ -14634,12 +15225,10 @@ entities: parent: 8364 - proto: AirlockMaintDetectiveLocked entities: - - uid: 5719 + - uid: 7808 components: - - type: MetaData - name: Detective's Office Maintenance Hatch - type: Transform - pos: -7.5,13.5 + pos: 13.5,26.5 parent: 8364 - proto: AirlockMaintEngiLocked entities: @@ -14802,20 +15391,20 @@ entities: - type: Transform pos: 2.5,2.5 parent: 8364 + - uid: 6611 + components: + - type: Transform + pos: -7.5,13.5 + parent: 8364 - uid: 6672 components: - type: Transform pos: 1.5,11.5 parent: 8364 - - uid: 8923 + - uid: 7801 components: - type: Transform - pos: -16.5,18.5 - parent: 8364 - - uid: 9792 - components: - - type: Transform - pos: -18.5,18.5 + pos: -2.5,12.5 parent: 8364 - uid: 10539 components: @@ -14888,11 +15477,6 @@ entities: - type: Transform pos: -55.5,7.5 parent: 8364 - - uid: 13822 - components: - - type: Transform - pos: -2.5,11.5 - parent: 8364 - uid: 14417 components: - type: Transform @@ -14978,13 +15562,6 @@ entities: - type: Transform pos: 81.5,-38.5 parent: 8364 - - uid: 21578 - components: - - type: MetaData - name: Courtroom Maintenance - - type: Transform - pos: 19.5,20.5 - parent: 8364 - uid: 21957 components: - type: Transform @@ -15052,7 +15629,6 @@ entities: - uid: 18387 components: - type: Transform - rot: -1.5707963267948966 rad pos: 33.5,-47.5 parent: 8364 - proto: AirlockMaintRnDLocked @@ -15087,6 +15663,13 @@ entities: parent: 8364 - proto: AirlockMaintSecLocked entities: + - uid: 8629 + components: + - type: MetaData + name: Security Maintenance + - type: Transform + pos: 10.5,39.5 + parent: 8364 - uid: 12331 components: - type: MetaData @@ -15094,13 +15677,6 @@ entities: - type: Transform pos: -56.5,6.5 parent: 8364 - - uid: 22710 - components: - - type: MetaData - name: Security Maintenance - - type: Transform - pos: 18.5,30.5 - parent: 8364 - proto: AirlockMaintServiceLocked entities: - uid: 688 @@ -15108,7 +15684,6 @@ entities: - type: MetaData name: Newsroom Maintenance - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,-12.5 parent: 8364 - proto: AirlockMedicalGlassLocked @@ -15468,98 +16043,8 @@ entities: - type: Transform pos: 66.5,-20.5 parent: 8364 -- proto: AirlockSecurityGlass - entities: - - uid: 958 - components: - - type: Transform - pos: -5.5,42.5 - parent: 8364 - proto: AirlockSecurityGlassLocked entities: - - uid: 770 - components: - - type: Transform - pos: -5.5,38.5 - parent: 8364 - - uid: 7286 - components: - - type: MetaData - name: Perma Brig - - type: Transform - pos: -10.5,37.5 - parent: 8364 - - uid: 7290 - components: - - type: Transform - pos: -10.5,42.5 - parent: 8364 - - uid: 7801 - components: - - type: MetaData - name: Security EVA - - type: Transform - pos: -15.5,23.5 - parent: 8364 - - uid: 8515 - components: - - type: MetaData - name: Equipment Room - - type: Transform - pos: 8.5,34.5 - parent: 8364 - - uid: 8643 - components: - - type: MetaData - name: Brig Desk - - type: Transform - pos: 1.5,25.5 - parent: 8364 - - uid: 8906 - components: - - type: MetaData - name: Security Office - - type: Transform - pos: 7.5,29.5 - parent: 8364 - - uid: 8921 - components: - - type: MetaData - name: Permanent Detention - - type: Transform - pos: -5.5,34.5 - parent: 8364 - - uid: 8922 - components: - - type: MetaData - name: Permanent Detention - - type: Transform - pos: -4.5,34.5 - parent: 8364 - - uid: 9382 - components: - - type: Transform - pos: -8.5,33.5 - parent: 8364 - - uid: 9498 - components: - - type: Transform - pos: -7.5,33.5 - parent: 8364 - - uid: 9590 - components: - - type: MetaData - name: Firing Range - - type: Transform - pos: 20.5,33.5 - parent: 8364 - - uid: 9793 - components: - - type: MetaData - name: Security EVA - - type: Transform - pos: -17.5,21.5 - parent: 8364 - uid: 11883 components: - type: MetaData @@ -15591,28 +16076,63 @@ entities: - type: Transform pos: -23.5,-30.5 parent: 8364 - - uid: 26257 +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 542 components: - - type: MetaData - name: Holding Cell - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,25.5 + pos: 3.5,22.5 parent: 8364 - - type: Door - secondsUntilStateChange: -11143.819 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - proto: AirlockSecurityLocked entities: - - uid: 971 + - uid: 371 components: - type: MetaData - name: Interrogation + name: Locker Room - type: Transform - pos: -14.5,33.5 + pos: -3.5,44.5 + parent: 8364 + - uid: 5439 + components: + - type: MetaData + name: Firing Range + - type: Transform + pos: 6.5,49.5 + parent: 8364 + - uid: 6634 + components: + - type: MetaData + name: Break Room + - type: Transform + pos: 3.5,39.5 + parent: 8364 + - uid: 7354 + components: + - type: MetaData + name: Firing Range + - type: Transform + pos: 9.5,46.5 + parent: 8364 + - uid: 7723 + components: + - type: MetaData + name: Locker Room + - type: Transform + pos: 1.5,44.5 + parent: 8364 + - uid: 7724 + components: + - type: MetaData + name: Locker Room + - type: Transform + pos: 1.5,48.5 + parent: 8364 + - uid: 7725 + components: + - type: MetaData + name: Locker Room + - type: Transform + pos: -3.5,48.5 parent: 8364 - proto: AirlockServiceGlassLocked entities: @@ -15719,14 +16239,6 @@ entities: - type: DeviceNetwork deviceLists: - 835 - - uid: 591 - components: - - type: Transform - pos: 1.5,20.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 23938 - uid: 738 components: - type: Transform @@ -15917,14 +16429,6 @@ entities: - type: Transform pos: 15.5,-51.5 parent: 8364 - - uid: 21999 - components: - - type: Transform - pos: 10.5,20.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 23938 - uid: 22237 components: - type: Transform @@ -16277,6 +16781,9 @@ entities: - type: Transform pos: -0.5,6.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23898 - uid: 23910 components: - type: Transform @@ -16290,24 +16797,9 @@ entities: - type: Transform pos: -0.5,15.5 parent: 8364 - - uid: 23940 - components: - - type: Transform - pos: -8.5,20.5 - parent: 8364 - type: DeviceNetwork deviceLists: - - 7797 - - uid: 23944 - components: - - type: Transform - pos: 16.5,21.5 - parent: 8364 - - uid: 24302 - components: - - type: Transform - pos: -3.5,27.5 - parent: 8364 + - 23898 - uid: 24435 components: - type: Transform @@ -16332,16 +16824,6 @@ entities: - type: DeviceNetwork deviceLists: - 3087 - - uid: 24915 - components: - - type: Transform - pos: 14.5,32.5 - parent: 8364 - - uid: 25040 - components: - - type: Transform - pos: 0.5,32.5 - parent: 8364 - uid: 25092 components: - type: Transform @@ -16350,31 +16832,6 @@ entities: - type: DeviceNetwork deviceLists: - 22588 - - uid: 25236 - components: - - type: Transform - pos: 3.5,36.5 - parent: 8364 - - uid: 25237 - components: - - type: Transform - pos: 9.5,37.5 - parent: 8364 - - uid: 25240 - components: - - type: Transform - pos: 14.5,37.5 - parent: 8364 - - uid: 25243 - components: - - type: Transform - pos: 24.5,33.5 - parent: 8364 - - uid: 25274 - components: - - type: Transform - pos: -12.5,14.5 - parent: 8364 - uid: 25318 components: - type: Transform @@ -16383,11 +16840,6 @@ entities: - type: DeviceNetwork deviceLists: - 6646 - - uid: 25375 - components: - - type: Transform - pos: -6.5,15.5 - parent: 8364 - uid: 25830 components: - type: Transform @@ -16413,16 +16865,154 @@ entities: - type: Transform pos: 20.5,-36.5 parent: 8364 - - uid: 26397 + - uid: 26158 components: - type: Transform - pos: -5.5,51.5 + pos: -0.5,23.5 parent: 8364 - - uid: 26398 + - type: DeviceNetwork + deviceLists: + - 23898 + - uid: 26207 components: - type: Transform - pos: 0.5,50.5 + pos: -0.5,32.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26160 + - 26234 + - 28498 + - uid: 26208 + components: + - type: Transform + pos: -2.5,27.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26160 + - 26234 + - 28498 + - 28499 + - uid: 26235 + components: + - type: Transform + pos: -10.5,27.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26234 + - 28498 + - 28499 + - uid: 26248 + components: + - type: Transform + pos: -6.5,33.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26234 + - 26206 + - 28498 + - 28500 + - uid: 26322 + components: + - type: Transform + pos: -10.5,45.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26323 + - uid: 26341 + components: + - type: Transform + pos: -9.5,52.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26340 + - uid: 26342 + components: + - type: Transform + pos: -5.5,49.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26340 + - 26355 + - uid: 26354 + components: + - type: Transform + pos: -0.5,47.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26355 + - uid: 26356 + components: + - type: Transform + pos: 7.5,43.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26355 + - 26430 + - uid: 26431 + components: + - type: Transform + pos: 8.5,49.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26430 + - uid: 26440 + components: + - type: Transform + pos: 2.5,52.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26442 + - uid: 26441 + components: + - type: Transform + pos: -2.5,53.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26442 + - uid: 26450 + components: + - type: Transform + pos: 3.5,26.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26480 + - uid: 26468 + components: + - type: Transform + pos: 6.5,20.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26469 + - uid: 26478 + components: + - type: Transform + pos: 10.5,26.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26479 + - uid: 26489 + components: + - type: Transform + pos: 5.5,30.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26491 - uid: 26685 components: - type: Transform @@ -16491,6 +17081,14 @@ entities: - type: DeviceNetwork deviceLists: - 22706 + - uid: 27779 + components: + - type: Transform + pos: -7.5,24.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27934 - uid: 27878 components: - type: Transform @@ -16499,6 +17097,14 @@ entities: - type: DeviceNetwork deviceLists: - 27150 + - uid: 27933 + components: + - type: Transform + pos: -7.5,14.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27934 - uid: 27947 components: - type: Transform @@ -16544,6 +17150,22 @@ entities: - type: Transform pos: 30.5,-4.5 parent: 8364 + - uid: 28093 + components: + - type: Transform + pos: -14.5,20.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28095 + - uid: 28094 + components: + - type: Transform + pos: -15.5,16.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28095 - uid: 28193 components: - type: Transform @@ -16600,6 +17222,107 @@ entities: - type: DeviceNetwork deviceLists: - 6646 + - uid: 28354 + components: + - type: Transform + pos: -14.5,22.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - uid: 28355 + components: + - type: Transform + pos: -19.5,22.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - 28499 + - uid: 28417 + components: + - type: Transform + pos: -23.5,23.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - uid: 28418 + components: + - type: Transform + pos: -23.5,25.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - uid: 28444 + components: + - type: Transform + pos: -20.5,38.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - 28483 + - 28499 + - uid: 28453 + components: + - type: Transform + pos: -26.5,30.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - uid: 28484 + components: + - type: Transform + pos: -25.5,41.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28483 + - uid: 28485 + components: + - type: Transform + pos: -32.5,36.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28483 + - uid: 28497 + components: + - type: Transform + pos: -17.5,35.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26206 + - uid: 28501 + components: + - type: Transform + pos: -5.5,37.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28500 + - uid: 28644 + components: + - type: Transform + pos: -11.5,41.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26323 +- proto: AirSensorFreezer + entities: + - uid: 28411 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26712 - proto: AltarConvertMaint entities: - uid: 20907 @@ -16765,8 +17488,6 @@ entities: - type: Transform pos: 25.5,20.5 parent: 8364 - - type: Battery - startingCharge: 12000 - type: PowerNetworkBattery loadingNetworkDemand: 10 currentReceiving: 10.019571 @@ -16840,109 +17561,49 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 10 supplyRampPosition: 2.735612 - - uid: 7283 + - uid: 7322 components: - type: Transform - pos: -7.5,53.5 + rot: -1.5707963267948966 rad + pos: -17.5,18.5 parent: 8364 - - uid: 7839 - components: - - type: MetaData - name: Courtroom APC - - type: Transform - pos: 15.5,29.5 - parent: 8364 - - type: Battery - startingCharge: 12000 - - type: PowerNetworkBattery - loadingNetworkDemand: 15 - currentReceiving: 15.000059 - currentSupply: 15 - supplyRampPosition: -5.9127808E-05 - uid: 8265 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-30.5 parent: 8364 - - uid: 8620 - components: - - type: MetaData - name: Interrigation APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,30.5 - parent: 8364 - - uid: 8621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,34.5 - parent: 8364 - - uid: 8622 - components: - - type: MetaData - name: HOS Office APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,39.5 - parent: 8364 - uid: 8634 + components: + - type: MetaData + name: Courthouse APC + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,13.5 + parent: 8364 + - uid: 9309 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,22.5 + pos: 17.5,25.5 parent: 8364 - - uid: 8657 + - uid: 9359 + components: + - type: Transform + pos: 8.5,28.5 + parent: 8364 + - uid: 9861 + components: + - type: Transform + pos: 8.5,36.5 + parent: 8364 + - uid: 10065 components: - type: MetaData - name: Brig APC - - type: Transform - pos: -3.5,29.5 - parent: 8364 - - type: Battery - startingCharge: 12000 - - type: PowerNetworkBattery - loadingNetworkDemand: 120 - currentReceiving: 120.00047 - currentSupply: 120 - supplyRampPosition: -0.00047302246 - - uid: 8944 - components: - - type: Transform - pos: 0.5,52.5 - parent: 8364 - - uid: 8951 - components: - - type: Transform - pos: -19.5,46.5 - parent: 8364 - - uid: 8954 - components: - - type: Transform - pos: -10.5,46.5 - parent: 8364 - - uid: 9415 - components: - - type: MetaData - name: Security Breakroom APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,35.5 - parent: 8364 - - uid: 9448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,23.5 - parent: 8364 - - uid: 10027 - components: - - type: MetaData - name: Armory APC + name: GenPop South APC - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,36.5 + pos: -21.5,24.5 parent: 8364 - uid: 10544 components: @@ -17012,6 +17673,13 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-18.5 parent: 8364 + - uid: 11999 + components: + - type: MetaData + name: GenPop North APC + - type: Transform + pos: -32.5,38.5 + parent: 8364 - uid: 12020 components: - type: MetaData @@ -17084,6 +17752,13 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 10 supplyRampPosition: 6.0937796 + - uid: 13658 + components: + - type: MetaData + name: Armory APC + - type: Transform + pos: -11.5,48.5 + parent: 8364 - uid: 13866 components: - type: Transform @@ -17132,14 +17807,6 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 25 supplyRampPosition: 9.488577 - - uid: 15128 - components: - - type: MetaData - name: Security Lockers APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,36.5 - parent: 8364 - uid: 15732 components: - type: MetaData @@ -17215,8 +17882,6 @@ entities: - type: Transform pos: 30.5,-26.5 parent: 8364 - - type: Battery - startingCharge: 12000 - type: PowerNetworkBattery loadingNetworkDemand: 55 currentReceiving: 55.01975 @@ -17244,8 +17909,6 @@ entities: - type: Transform pos: 46.5,-40.5 parent: 8364 - - type: Battery - startingCharge: 12000 - type: PowerNetworkBattery loadingNetworkDemand: 20 currentReceiving: 19.980549 @@ -17321,8 +17984,6 @@ entities: - type: Transform pos: 75.5,-42.5 parent: 8364 - - type: Battery - startingCharge: 12000 - type: PowerNetworkBattery loadingNetworkDemand: 10 currentReceiving: 10.019571 @@ -17335,6 +17996,22 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-36.5 parent: 8364 + - uid: 22200 + components: + - type: MetaData + name: Sec Locker Room APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,50.5 + parent: 8364 + - uid: 22201 + components: + - type: MetaData + name: HoS APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,52.5 + parent: 8364 - uid: 22917 components: - type: MetaData @@ -17349,6 +18026,13 @@ entities: - type: Transform pos: 8.5,-50.5 parent: 8364 + - uid: 24433 + components: + - type: MetaData + name: Sec Breakroom APC + - type: Transform + pos: 10.5,46.5 + parent: 8364 - uid: 25196 components: - type: MetaData @@ -17357,6 +18041,45 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-9.5 parent: 8364 + - uid: 25455 + components: + - type: MetaData + name: BrigMed APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,32.5 + parent: 8364 + - uid: 25477 + components: + - type: MetaData + name: Sec Entrance APC + - type: Transform + pos: 0.5,39.5 + parent: 8364 + - uid: 25563 + components: + - type: MetaData + name: Outside Sec Hall APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,22.5 + parent: 8364 + - uid: 25597 + components: + - type: MetaData + name: Warden's APC + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,30.5 + parent: 8364 + - uid: 25601 + components: + - type: MetaData + name: Sec North APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,52.5 + parent: 8364 - uid: 26717 components: - type: Transform @@ -17424,14 +18147,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,4.5 parent: 8364 - - uid: 9651 - components: - - type: MetaData - name: Law Office APC - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,14.5 - parent: 8364 - uid: 9976 components: - type: Transform @@ -17506,14 +18221,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-41.5 parent: 8364 - - uid: 28319 - components: - - type: MetaData - name: Detective's Office APC - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,14.5 - parent: 8364 - proto: APCSuperCapacity entities: - uid: 3119 @@ -17709,12 +18416,6 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-0.5 parent: 8364 - - uid: 12475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,24.5 - parent: 8364 - uid: 12478 components: - type: Transform @@ -19056,6 +19757,11 @@ entities: - type: Transform pos: -46.5,-57.5 parent: 8364 + - uid: 23912 + components: + - type: Transform + pos: -1.5,-87.5 + parent: 8364 - uid: 23922 components: - type: Transform @@ -20036,6 +20742,121 @@ entities: - type: Transform pos: 0.5,-92.5 parent: 8364 + - uid: 28368 + components: + - type: Transform + pos: -5.5,-85.5 + parent: 8364 + - uid: 28369 + components: + - type: Transform + pos: -5.5,-86.5 + parent: 8364 + - uid: 28370 + components: + - type: Transform + pos: -5.5,-87.5 + parent: 8364 + - uid: 28371 + components: + - type: Transform + pos: -4.5,-85.5 + parent: 8364 + - uid: 28372 + components: + - type: Transform + pos: -4.5,-86.5 + parent: 8364 + - uid: 28373 + components: + - type: Transform + pos: -4.5,-87.5 + parent: 8364 + - uid: 28374 + components: + - type: Transform + pos: -1.5,-85.5 + parent: 8364 + - uid: 28375 + components: + - type: Transform + pos: 0.5,-85.5 + parent: 8364 + - uid: 28376 + components: + - type: Transform + pos: 0.5,-87.5 + parent: 8364 + - uid: 28378 + components: + - type: Transform + pos: 3.5,-85.5 + parent: 8364 + - uid: 28379 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 8364 + - uid: 28380 + components: + - type: Transform + pos: 3.5,-87.5 + parent: 8364 + - uid: 28381 + components: + - type: Transform + pos: 4.5,-85.5 + parent: 8364 + - uid: 28382 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 8364 + - uid: 28383 + components: + - type: Transform + pos: 4.5,-87.5 + parent: 8364 + - uid: 28395 + components: + - type: Transform + pos: 3.5,-90.5 + parent: 8364 + - uid: 28396 + components: + - type: Transform + pos: 3.5,-82.5 + parent: 8364 + - uid: 28397 + components: + - type: Transform + pos: -4.5,-82.5 + parent: 8364 + - uid: 28398 + components: + - type: Transform + pos: -4.5,-90.5 + parent: 8364 + - uid: 28413 + components: + - type: Transform + pos: -29.5,-40.5 + parent: 8364 + - uid: 28414 + components: + - type: Transform + pos: -29.5,-41.5 + parent: 8364 + - uid: 28415 + components: + - type: Transform + pos: -25.5,-41.5 + parent: 8364 + - uid: 28416 + components: + - type: Transform + pos: -25.5,-40.5 + parent: 8364 - proto: AtmosFixFreezerMarker entities: - uid: 2846 @@ -20356,6 +21177,13 @@ entities: - type: Transform pos: 22.356016,2.7478647 parent: 8364 +- proto: BanjoInstrument + entities: + - uid: 9110 + components: + - type: Transform + pos: -9.43947,33.548515 + parent: 8364 - proto: BannerCargo entities: - uid: 27596 @@ -20365,30 +21193,34 @@ entities: parent: 8364 - proto: Barricade entities: - - uid: 54 - components: - - type: Transform - pos: 22.5,26.5 - parent: 8364 - - uid: 55 - components: - - type: Transform - pos: 22.5,29.5 - parent: 8364 - - uid: 56 - components: - - type: Transform - pos: 22.5,28.5 - parent: 8364 - uid: 514 components: - type: Transform pos: -50.5,3.5 parent: 8364 - - uid: 5016 + - uid: 7768 components: - type: Transform - pos: -20.5,12.5 + rot: -1.5707963267948966 rad + pos: -19.5,13.5 + parent: 8364 + - uid: 8848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,12.5 + parent: 8364 + - uid: 9266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,26.5 + parent: 8364 + - uid: 9268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,22.5 parent: 8364 - uid: 11390 components: @@ -20505,6 +21337,12 @@ entities: - type: Transform pos: -31.5,13.5 parent: 8364 + - uid: 9306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,27.5 + parent: 8364 - proto: BarSignMaidCafe entities: - uid: 5444 @@ -20588,6 +21426,11 @@ entities: parent: 8364 - proto: Beaker entities: + - uid: 520 + components: + - type: Transform + pos: -26.653135,36.19242 + parent: 8364 - uid: 7260 components: - type: Transform @@ -20598,13 +21441,13 @@ entities: - type: Transform pos: 74.27338,-18.287746 parent: 8364 - - uid: 26550 - components: - - type: Transform - pos: -6.0280805,52.564606 - parent: 8364 - proto: Bed entities: + - uid: 70 + components: + - type: Transform + pos: 10.5,29.5 + parent: 8364 - uid: 777 components: - type: Transform @@ -20635,6 +21478,11 @@ entities: - type: Transform pos: 8.5,-21.5 parent: 8364 + - uid: 5616 + components: + - type: Transform + pos: -24.5,26.5 + parent: 8364 - uid: 5757 components: - type: Transform @@ -20675,11 +21523,31 @@ entities: - type: Transform pos: 37.5,-51.5 parent: 8364 + - uid: 7751 + components: + - type: Transform + pos: -22.5,22.5 + parent: 8364 + - uid: 7777 + components: + - type: Transform + pos: -24.5,22.5 + parent: 8364 - uid: 8422 components: - type: Transform pos: 44.5,-58.5 parent: 8364 + - uid: 8438 + components: + - type: Transform + pos: -0.5,55.5 + parent: 8364 + - uid: 8527 + components: + - type: Transform + pos: -22.5,26.5 + parent: 8364 - uid: 10570 components: - type: Transform @@ -20705,11 +21573,6 @@ entities: - type: Transform pos: 24.5,-27.5 parent: 8364 - - uid: 20156 - components: - - type: Transform - pos: -19.5,16.5 - parent: 8364 - uid: 21210 components: - type: Transform @@ -20720,45 +21583,27 @@ entities: - type: Transform pos: -30.5,-74.5 parent: 8364 - - uid: 21784 +- proto: BedsheetBrown + entities: + - uid: 521 components: - type: Transform - pos: 16.5,41.5 + pos: -22.5,22.5 parent: 8364 - - uid: 26349 + - uid: 7739 components: - type: Transform - pos: -21.5,40.5 + pos: -24.5,26.5 parent: 8364 - - uid: 26350 + - uid: 7776 components: - type: Transform - pos: -18.5,40.5 + pos: -24.5,22.5 parent: 8364 - - uid: 26351 + - uid: 7902 components: - type: Transform - pos: -17.5,48.5 - parent: 8364 - - uid: 26352 - components: - - type: Transform - pos: -20.5,48.5 - parent: 8364 - - uid: 26546 - components: - - type: Transform - pos: -0.5,23.5 - parent: 8364 - - uid: 26603 - components: - - type: Transform - pos: -4.5,23.5 - parent: 8364 - - uid: 27489 - components: - - type: Transform - pos: -8.5,23.5 + pos: -22.5,26.5 parent: 8364 - proto: BedsheetCaptain entities: @@ -20808,13 +21653,19 @@ entities: parent: 8364 - proto: BedsheetHOS entities: - - uid: 9287 + - uid: 8410 components: - type: Transform - pos: 16.5,41.5 + pos: -0.5,55.5 parent: 8364 - proto: BedsheetMedical entities: + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,32.5 + parent: 8364 - uid: 5451 components: - type: Transform @@ -20825,15 +21676,11 @@ entities: - type: Transform pos: 30.5,-27.5 parent: 8364 - - uid: 9245 + - uid: 7882 components: - type: Transform - pos: -6.5,32.5 - parent: 8364 - - uid: 9485 - components: - - type: Transform - pos: -6.5,31.5 + rot: -1.5707963267948966 rad + pos: 2.5,33.5 parent: 8364 - uid: 18601 components: @@ -20863,41 +21710,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-27.5 parent: 8364 -- proto: BedsheetOrange - entities: - - uid: 7716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,23.5 - parent: 8364 - - uid: 26353 - components: - - type: Transform - pos: -20.5,48.5 - parent: 8364 - - uid: 26355 - components: - - type: Transform - pos: -18.5,40.5 - parent: 8364 - - uid: 26356 - components: - - type: Transform - pos: -21.5,40.5 - parent: 8364 - - uid: 28249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,23.5 - parent: 8364 - - uid: 28252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,23.5 - parent: 8364 - proto: BedsheetQM entities: - uid: 5287 @@ -20944,10 +21756,10 @@ entities: - type: Transform pos: 17.5,14.5 parent: 8364 - - uid: 8925 + - uid: 7090 components: - type: Transform - pos: -19.5,16.5 + pos: 10.5,29.5 parent: 8364 - uid: 10569 components: @@ -20959,13 +21771,6 @@ entities: - type: Transform pos: 63.5,-3.5 parent: 8364 -- proto: BedsheetSyndie - entities: - - uid: 26354 - components: - - type: Transform - pos: -17.5,48.5 - parent: 8364 - proto: BigBox entities: - uid: 2277 @@ -20997,13 +21802,25 @@ entities: - type: Transform pos: 46.5,-5.5 parent: 8364 - - uid: 22442 + - uid: 8800 components: - type: Transform - pos: -2.5,49.5 + pos: -27.5,40.5 parent: 8364 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: BlastDoor entities: + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,23.5 + parent: 8364 - uid: 3535 components: - type: Transform @@ -21078,11 +21895,6 @@ entities: - type: Transform pos: 5.5,-76.5 parent: 8364 - - uid: 6419 - components: - - type: Transform - pos: 5.5,36.5 - parent: 8364 - uid: 9379 components: - type: Transform @@ -21098,6 +21910,11 @@ entities: - type: Transform pos: -5.5,-76.5 parent: 8364 + - uid: 13622 + components: + - type: Transform + pos: -7.5,45.5 + parent: 8364 - uid: 13849 components: - type: Transform @@ -21216,28 +22033,6 @@ entities: parent: 8364 - proto: BlastDoorOpen entities: - - uid: 3134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,42.5 - parent: 8364 - - uid: 4212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,42.5 - parent: 8364 - - uid: 4494 - components: - - type: Transform - pos: 7.5,42.5 - parent: 8364 - - uid: 4495 - components: - - type: Transform - pos: 9.5,42.5 - parent: 8364 - uid: 5898 components: - type: Transform @@ -21268,21 +22063,15 @@ entities: - type: Transform pos: 9.5,-9.5 parent: 8364 - - uid: 6970 + - uid: 7381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,42.5 + pos: -16.5,24.5 parent: 8364 - - uid: 19930 + - uid: 8526 components: - type: Transform - pos: -4.5,33.5 - parent: 8364 - - uid: 19932 - components: - - type: Transform - pos: -5.5,33.5 + pos: -16.5,23.5 parent: 8364 - proto: BlockGameArcade entities: @@ -21309,6 +22098,11 @@ entities: parent: 8364 - type: SpamEmitSound enabled: False + - uid: 7385 + components: + - type: Transform + pos: -31.5,38.5 + parent: 8364 - uid: 11386 components: - type: Transform @@ -21323,14 +22117,6 @@ entities: parent: 8364 - type: SpamEmitSound enabled: False - - uid: 26420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,47.5 - parent: 8364 - - type: SpamEmitSound - enabled: False - proto: BodyBagFolded entities: - uid: 27686 @@ -21345,20 +22131,6 @@ entities: - type: Transform pos: 38.39524,-6.593956 parent: 8364 -- proto: BookRandom - entities: - - uid: 26555 - components: - - type: Transform - pos: -14.522785,53.581825 - parent: 8364 -- proto: BookRandomStory - entities: - - uid: 26467 - components: - - type: Transform - pos: -13.487206,48.529594 - parent: 8364 - proto: BooksBag entities: - uid: 5559 @@ -21375,26 +22147,6 @@ entities: parent: 8364 - proto: Bookshelf entities: - - uid: 9037 - components: - - type: Transform - pos: -13.5,50.5 - parent: 8364 - - uid: 9038 - components: - - type: Transform - pos: -12.5,50.5 - parent: 8364 - - uid: 9043 - components: - - type: Transform - pos: -12.5,48.5 - parent: 8364 - - uid: 9058 - components: - - type: Transform - pos: -14.5,50.5 - parent: 8364 - uid: 20803 components: - type: Transform @@ -21410,16 +22162,6 @@ entities: - type: Transform pos: 55.5,-33.5 parent: 8364 - - uid: 26462 - components: - - type: Transform - pos: -11.5,50.5 - parent: 8364 - - uid: 26470 - components: - - type: Transform - pos: -14.5,48.5 - parent: 8364 - proto: BookshelfFilled entities: - uid: 5186 @@ -21427,6 +22169,21 @@ entities: - type: Transform pos: 53.5,-4.5 parent: 8364 + - uid: 7757 + components: + - type: Transform + pos: -27.5,31.5 + parent: 8364 + - uid: 8830 + components: + - type: Transform + pos: -27.5,30.5 + parent: 8364 + - uid: 8980 + components: + - type: Transform + pos: -27.5,29.5 + parent: 8364 - uid: 10829 components: - type: Transform @@ -21482,6 +22239,18 @@ entities: - type: Transform pos: 59.5,-7.5 parent: 8364 +- proto: BookSpaceLaw + entities: + - uid: 6338 + components: + - type: Transform + pos: -11.479037,14.568381 + parent: 8364 + - uid: 7855 + components: + - type: Transform + pos: 11.471973,44.166855 + parent: 8364 - proto: BoozeDispenser entities: - uid: 5555 @@ -21572,6 +22341,11 @@ entities: - type: Transform pos: 46.455715,-46.540108 parent: 8364 + - uid: 8755 + components: + - type: Transform + pos: 7.522258,31.653284 + parent: 8364 - uid: 19315 components: - type: Transform @@ -21605,12 +22379,12 @@ entities: - type: Transform pos: -19.55601,-15.847038 parent: 8364 -- proto: BoxFlashbang +- proto: BoxFolderBase entities: - - uid: 10066 + - uid: 8625 components: - type: Transform - pos: 6.4871874,35.49408 + pos: -15.585157,34.60942 parent: 8364 - proto: BoxFolderBlack entities: @@ -21626,35 +22400,10 @@ entities: - type: Transform pos: 6.4906216,-15.486443 parent: 8364 - - uid: 8444 + - uid: 8479 components: - type: Transform - pos: 13.5,25.5 - parent: 8364 - - uid: 9716 - components: - - type: Transform - pos: -10.5,17.5 - parent: 8364 - - uid: 9722 - components: - - type: Transform - pos: -10.5,17.5 - parent: 8364 - - uid: 9723 - components: - - type: Transform - pos: -10.5,17.5 - parent: 8364 - - uid: 9724 - components: - - type: Transform - pos: -10.5,17.5 - parent: 8364 - - uid: 9725 - components: - - type: Transform - pos: -10.5,17.5 + pos: 10.609906,23.61455 parent: 8364 - uid: 14367 components: @@ -21668,10 +22417,17 @@ entities: - type: Transform pos: -20.684553,-13.423042 parent: 8364 - - uid: 8459 + - uid: 8724 components: - type: Transform - pos: 3.5576177,24.479216 + pos: 4.399166,25.609257 + parent: 8364 +- proto: BoxFolderGreen + entities: + - uid: 9128 + components: + - type: Transform + pos: -4.310769,19.705208 parent: 8364 - proto: BoxFolderGrey entities: @@ -21687,57 +22443,20 @@ entities: parent: 8364 - proto: BoxFolderRed entities: - - uid: 8445 + - uid: 8484 components: - type: Transform - pos: 17.5,25.5 + pos: 10.422314,23.812603 parent: 8364 - - uid: 8803 + - uid: 9122 components: - type: Transform - pos: -11.686346,32.74469 + pos: -10.544544,19.642664 parent: 8364 - - uid: 9384 + - uid: 9161 components: - type: Transform - pos: -1.2688226,30.437838 - parent: 8364 - - type: Storage - storedItems: - 9390: - position: 0,0 - _rotation: South - 9453: - position: 1,0 - _rotation: South - 9454: - position: 2,0 - _rotation: South - 9507: - position: 3,0 - _rotation: South - 9515: - position: 4,0 - _rotation: South - 9516: - position: 0,1 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 9390 - - 9453 - - 9454 - - 9507 - - 9515 - - 9516 - - uid: 9404 - components: - - type: Transform - pos: 13.5,39.5 + pos: -9.156972,38.61477 parent: 8364 - uid: 14366 components: @@ -21768,31 +22487,6 @@ entities: parent: 8364 - proto: BoxFolderYellow entities: - - uid: 6601 - components: - - type: Transform - pos: -12.5,13.5 - parent: 8364 - - uid: 6602 - components: - - type: Transform - pos: -12.5,13.5 - parent: 8364 - - uid: 6603 - components: - - type: Transform - pos: -12.5,13.5 - parent: 8364 - - uid: 6604 - components: - - type: Transform - pos: -12.5,13.5 - parent: 8364 - - uid: 6606 - components: - - type: Transform - pos: -12.5,13.5 - parent: 8364 - uid: 10197 components: - type: Transform @@ -21836,10 +22530,10 @@ entities: parent: 8364 - proto: BoxHandcuff entities: - - uid: 5795 + - uid: 8397 components: - type: Transform - pos: 16.409477,33.177017 + pos: -0.118038416,43.70481 parent: 8364 - proto: BoxingBell entities: @@ -21861,28 +22555,6 @@ entities: - type: Transform pos: 24.498875,-36.223793 parent: 8364 -- proto: BoxLethalshot - entities: - - uid: 9388 - components: - - type: Transform - pos: 2.7149048,39.67169 - parent: 8364 - - uid: 9518 - components: - - type: Transform - pos: 2.7149048,39.41707 - parent: 8364 - - uid: 9538 - components: - - type: Transform - pos: 2.335275,39.66707 - parent: 8364 - - uid: 10029 - components: - - type: Transform - pos: 2.335275,39.407806 - parent: 8364 - proto: BoxLightbulb entities: - uid: 1999 @@ -21928,31 +22600,17 @@ entities: parent: 8364 - proto: BoxMagazinePistol entities: - - uid: 10021 + - uid: 5078 components: - type: Transform - pos: 5.582965,37.72505 + pos: -3.8724453,34.55979 parent: 8364 - proto: BoxMagazinePistolPractice entities: - - uid: 28331 + - uid: 7315 components: - type: Transform - pos: 21.65355,36.475 - parent: 8364 -- proto: BoxMagazinePistolSubMachineGunPractice - entities: - - uid: 28333 - components: - - type: Transform - pos: 21.387924,36.2875 - parent: 8364 -- proto: BoxMagazineRiflePractice - entities: - - uid: 28332 - components: - - type: Transform - pos: 21.46605,36.725 + pos: 7.643342,47.651314 parent: 8364 - proto: BoxMouthSwab entities: @@ -21968,6 +22626,11 @@ entities: - type: Transform pos: 48.424255,8.669407 parent: 8364 + - uid: 13366 + components: + - type: Transform + pos: -17.534828,26.685757 + parent: 8364 - proto: BoxPDA entities: - uid: 548 @@ -21977,10 +22640,10 @@ entities: parent: 8364 - proto: BoxShotgunPractice entities: - - uid: 28334 + - uid: 5079 components: - type: Transform - pos: 21.596834,35.81875 + pos: 7.3923097,47.786827 parent: 8364 - proto: BoxSterileMask entities: @@ -21994,20 +22657,8 @@ entities: - type: Transform pos: 24.405125,-36.239418 parent: 8364 -- proto: BoxStinger - entities: - - uid: 10081 - components: - - type: Transform - pos: 6.9403124,35.540955 - parent: 8364 - proto: BoxSyringe entities: - - uid: 7928 - components: - - type: Transform - pos: -6.6457787,30.567604 - parent: 8364 - uid: 19263 components: - type: Transform @@ -22015,13 +22666,18 @@ entities: parent: 8364 - proto: BoxTearGas entities: - - uid: 10022 + - uid: 7610 components: - type: Transform - pos: 6.7996874,35.790955 + pos: 11.476913,44.679543 parent: 8364 - proto: BoxTrashbag entities: + - uid: 13356 + components: + - type: Transform + pos: -17.477089,30.678114 + parent: 8364 - uid: 27574 components: - type: Transform @@ -22036,10 +22692,10 @@ entities: parent: 8364 - proto: BoxZiptie entities: - - uid: 542 + - uid: 9112 components: - type: Transform - pos: 6.3934374,35.74408 + pos: -4.1121473,34.789116 parent: 8364 - proto: BrbSign entities: @@ -22057,70 +22713,16 @@ entities: parent: 8364 - proto: BriefcaseBrownFilled entities: - - uid: 6289 + - uid: 54 components: - type: Transform - pos: -12.308378,17.63403 - parent: 8364 - - uid: 9706 - components: - - type: Transform - pos: -3.5,17.5 - parent: 8364 - - uid: 9707 - components: - - type: Transform - pos: -12.667753,17.35278 + pos: 5.5559897,27.767006 parent: 8364 - uid: 27656 components: - type: Transform pos: 7.486902,-27.366474 parent: 8364 -- proto: BrigTimer - entities: - - uid: 8743 - components: - - type: Transform - pos: -3.5,25.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 8624: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - - uid: 25829 - components: - - type: Transform - pos: -7.5,25.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 8625: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - - uid: 26575 - components: - - type: Transform - pos: -11.5,25.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 8626: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - proto: Bucket entities: - uid: 10718 @@ -22148,11 +22750,6 @@ entities: - type: Transform pos: -22.5,6.5 parent: 8364 - - uid: 26547 - components: - - type: Transform - pos: 0.4866991,51.66165 - parent: 8364 - uid: 27560 components: - type: Transform @@ -22163,6 +22760,11 @@ entities: - type: Transform pos: 5.6363735,-36.502228 parent: 8364 + - uid: 28652 + components: + - type: Transform + pos: -25.296118,45.437027 + parent: 8364 - proto: ButtonFrameCaution entities: - uid: 4248 @@ -22171,6 +22773,29 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-86.5 parent: 8364 + - uid: 8623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,44.5 + parent: 8364 + - uid: 9041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,30.5 + parent: 8364 + - uid: 9149 + components: + - type: Transform + pos: -6.5,35.5 + parent: 8364 + - uid: 20155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,52.5 + parent: 8364 - uid: 22313 components: - type: Transform @@ -22201,25 +22826,19 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-82.5 parent: 8364 + - uid: 28606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,25.5 + parent: 8364 - proto: ButtonFrameCautionSecurity entities: - - uid: 7677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 8364 - - uid: 7779 + - uid: 5106 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.4761214,38.22741 - parent: 8364 - - uid: 25742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.469177,38.803795 + pos: 10.5,47.5 parent: 8364 - proto: ButtonFrameExit entities: @@ -22228,31 +22847,8 @@ entities: - type: Transform pos: 24.5,-21.5 parent: 8364 -- proto: ButtonFrameGrey - entities: - - uid: 7721 - components: - - type: Transform - pos: 8.5,42.5 - parent: 8364 - - uid: 8989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,40.5 - parent: 8364 - - uid: 22452 - components: - - type: Transform - pos: 13.5,29.5 - parent: 8364 - proto: CableApcExtension entities: - - uid: 49 - components: - - type: Transform - pos: -19.5,44.5 - parent: 8364 - uid: 69 components: - type: Transform @@ -22268,16 +22864,16 @@ entities: - type: Transform pos: -61.5,16.5 parent: 8364 + - uid: 89 + components: + - type: Transform + pos: -19.5,19.5 + parent: 8364 - uid: 105 components: - type: Transform pos: 9.5,-77.5 parent: 8364 - - uid: 346 - components: - - type: Transform - pos: -23.5,48.5 - parent: 8364 - uid: 426 components: - type: Transform @@ -22333,16 +22929,6 @@ entities: - type: Transform pos: -58.5,11.5 parent: 8364 - - uid: 520 - components: - - type: Transform - pos: -18.5,50.5 - parent: 8364 - - uid: 521 - components: - - type: Transform - pos: -23.5,46.5 - parent: 8364 - uid: 538 components: - type: Transform @@ -22458,6 +23044,11 @@ entities: - type: Transform pos: -78.5,-4.5 parent: 8364 + - uid: 770 + components: + - type: Transform + pos: -0.5,24.5 + parent: 8364 - uid: 784 components: - type: Transform @@ -23113,11 +23704,6 @@ entities: - type: Transform pos: 5.5,-63.5 parent: 8364 - - uid: 3884 - components: - - type: Transform - pos: -10.5,46.5 - parent: 8364 - uid: 3886 components: - type: Transform @@ -23198,11 +23784,6 @@ entities: - type: Transform pos: 25.5,-51.5 parent: 8364 - - uid: 4213 - components: - - type: Transform - pos: -3.5,36.5 - parent: 8364 - uid: 4251 components: - type: Transform @@ -23343,16 +23924,6 @@ entities: - type: Transform pos: -18.5,-80.5 parent: 8364 - - uid: 4520 - components: - - type: Transform - pos: -18.5,42.5 - parent: 8364 - - uid: 4522 - components: - - type: Transform - pos: -20.5,45.5 - parent: 8364 - uid: 4583 components: - type: Transform @@ -23363,16 +23934,6 @@ entities: - type: Transform pos: 13.5,-81.5 parent: 8364 - - uid: 4710 - components: - - type: Transform - pos: -11.5,36.5 - parent: 8364 - - uid: 4711 - components: - - type: Transform - pos: -12.5,36.5 - parent: 8364 - uid: 4940 components: - type: Transform @@ -23403,170 +23964,10 @@ entities: - type: Transform pos: -21.5,-76.5 parent: 8364 - - uid: 4990 - components: - - type: Transform - pos: -2.5,36.5 - parent: 8364 - - uid: 5069 - components: - - type: Transform - pos: -8.5,44.5 - parent: 8364 - - uid: 5073 - components: - - type: Transform - pos: -5.5,36.5 - parent: 8364 - - uid: 5076 - components: - - type: Transform - pos: -7.5,36.5 - parent: 8364 - - uid: 5081 - components: - - type: Transform - pos: -7.5,53.5 - parent: 8364 - - uid: 5082 - components: - - type: Transform - pos: -7.5,48.5 - parent: 8364 - - uid: 5083 - components: - - type: Transform - pos: -7.5,51.5 - parent: 8364 - - uid: 5084 - components: - - type: Transform - pos: -14.5,35.5 - parent: 8364 - - uid: 5085 - components: - - type: Transform - pos: -5.5,42.5 - parent: 8364 - uid: 5086 components: - type: Transform - pos: -6.5,34.5 - parent: 8364 - - uid: 5087 - components: - - type: Transform - pos: -9.5,36.5 - parent: 8364 - - uid: 5089 - components: - - type: Transform - pos: -7.5,47.5 - parent: 8364 - - uid: 5090 - components: - - type: Transform - pos: -5.5,38.5 - parent: 8364 - - uid: 5091 - components: - - type: Transform - pos: -7.5,52.5 - parent: 8364 - - uid: 5092 - components: - - type: Transform - pos: -8.5,36.5 - parent: 8364 - - uid: 5093 - components: - - type: Transform - pos: -6.5,35.5 - parent: 8364 - - uid: 5096 - components: - - type: Transform - pos: -10.5,36.5 - parent: 8364 - - uid: 5097 - components: - - type: Transform - pos: -6.5,36.5 - parent: 8364 - - uid: 5098 - components: - - type: Transform - pos: -5.5,41.5 - parent: 8364 - - uid: 5099 - components: - - type: Transform - pos: -4.5,44.5 - parent: 8364 - - uid: 5100 - components: - - type: Transform - pos: -5.5,43.5 - parent: 8364 - - uid: 5101 - components: - - type: Transform - pos: -14.5,34.5 - parent: 8364 - - uid: 5102 - components: - - type: Transform - pos: -14.5,33.5 - parent: 8364 - - uid: 5103 - components: - - type: Transform - pos: -13.5,36.5 - parent: 8364 - - uid: 5104 - components: - - type: Transform - pos: -14.5,36.5 - parent: 8364 - - uid: 5105 - components: - - type: Transform - pos: -7.5,50.5 - parent: 8364 - - uid: 5106 - components: - - type: Transform - pos: -5.5,37.5 - parent: 8364 - - uid: 5107 - components: - - type: Transform - pos: -7.5,49.5 - parent: 8364 - - uid: 5108 - components: - - type: Transform - pos: -8.5,48.5 - parent: 8364 - - uid: 5109 - components: - - type: Transform - pos: -9.5,48.5 - parent: 8364 - - uid: 5111 - components: - - type: Transform - pos: -7.5,44.5 - parent: 8364 - - uid: 5112 - components: - - type: Transform - pos: -6.5,44.5 - parent: 8364 - - uid: 5113 - components: - - type: Transform - pos: -5.5,44.5 + pos: -0.5,25.5 parent: 8364 - uid: 5215 components: @@ -23618,11 +24019,6 @@ entities: - type: Transform pos: 4.5,-14.5 parent: 8364 - - uid: 5731 - components: - - type: Transform - pos: -7.5,15.5 - parent: 8364 - uid: 5750 components: - type: Transform @@ -24058,6 +24454,11 @@ entities: - type: Transform pos: -0.5,-26.5 parent: 8364 + - uid: 6253 + components: + - type: Transform + pos: -0.5,23.5 + parent: 8364 - uid: 6348 components: - type: Transform @@ -24493,11 +24894,6 @@ entities: - type: Transform pos: 26.5,-9.5 parent: 8364 - - uid: 7007 - components: - - type: Transform - pos: 27.5,23.5 - parent: 8364 - uid: 7009 components: - type: Transform @@ -24663,11 +25059,6 @@ entities: - type: Transform pos: -29.5,-63.5 parent: 8364 - - uid: 7160 - components: - - type: Transform - pos: 23.5,23.5 - parent: 8364 - uid: 7163 components: - type: Transform @@ -24688,31 +25079,11 @@ entities: - type: Transform pos: 31.5,0.5 parent: 8364 - - uid: 7172 - components: - - type: Transform - pos: 24.5,25.5 - parent: 8364 - uid: 7183 components: - type: Transform pos: 26.5,-4.5 parent: 8364 - - uid: 7185 - components: - - type: Transform - pos: 23.5,24.5 - parent: 8364 - - uid: 7187 - components: - - type: Transform - pos: 23.5,25.5 - parent: 8364 - - uid: 7189 - components: - - type: Transform - pos: 24.5,23.5 - parent: 8364 - uid: 7190 components: - type: Transform @@ -24723,21 +25094,6 @@ entities: - type: Transform pos: 28.5,-5.5 parent: 8364 - - uid: 7195 - components: - - type: Transform - pos: 25.5,23.5 - parent: 8364 - - uid: 7202 - components: - - type: Transform - pos: 22.5,25.5 - parent: 8364 - - uid: 7204 - components: - - type: Transform - pos: 27.5,24.5 - parent: 8364 - uid: 7205 components: - type: Transform @@ -24756,68 +25112,63 @@ entities: - uid: 7279 components: - type: Transform - pos: -20.5,43.5 + pos: -5.5,12.5 + parent: 8364 + - uid: 7297 + components: + - type: Transform + pos: -17.5,18.5 + parent: 8364 + - uid: 7346 + components: + - type: Transform + pos: -4.5,12.5 + parent: 8364 + - uid: 7363 + components: + - type: Transform + pos: -18.5,19.5 + parent: 8364 + - uid: 7375 + components: + - type: Transform + pos: -25.5,5.5 parent: 8364 - uid: 7510 components: - type: Transform pos: 18.5,13.5 parent: 8364 - - uid: 7661 - components: - - type: Transform - pos: 10.5,36.5 - parent: 8364 - - uid: 7733 - components: - - type: Transform - pos: 2.5,37.5 - parent: 8364 - uid: 7743 components: - type: Transform - pos: -1.5,23.5 - parent: 8364 - - uid: 7756 - components: - - type: Transform - pos: 15.5,26.5 - parent: 8364 - - uid: 7770 - components: - - type: Transform - pos: -1.5,24.5 + pos: -18.5,18.5 parent: 8364 - uid: 7828 components: - type: Transform pos: -46.5,21.5 parent: 8364 + - uid: 7867 + components: + - type: Transform + pos: -8.5,12.5 + parent: 8364 + - uid: 7869 + components: + - type: Transform + pos: -7.5,12.5 + parent: 8364 + - uid: 7876 + components: + - type: Transform + pos: -8.5,11.5 + parent: 8364 - uid: 8185 components: - type: Transform pos: 3.5,-35.5 parent: 8364 - - uid: 8383 - components: - - type: Transform - pos: 16.5,20.5 - parent: 8364 - - uid: 8386 - components: - - type: Transform - pos: 15.5,24.5 - parent: 8364 - - uid: 8387 - components: - - type: Transform - pos: 15.5,22.5 - parent: 8364 - - uid: 8435 - components: - - type: Transform - pos: 17.5,32.5 - parent: 8364 - uid: 8446 components: - type: Transform @@ -24843,1141 +25194,251 @@ entities: - type: Transform pos: 26.5,-19.5 parent: 8364 - - uid: 8481 + - uid: 8468 components: - type: Transform - pos: 15.5,27.5 + pos: 17.5,17.5 parent: 8364 - - uid: 8482 + - uid: 8616 components: - type: Transform - pos: 15.5,28.5 + pos: -9.5,13.5 parent: 8364 - - uid: 8546 + - uid: 8635 components: - type: Transform - pos: 4.5,37.5 - parent: 8364 - - uid: 8557 - components: - - type: Transform - pos: 15.5,29.5 - parent: 8364 - - uid: 8558 - components: - - type: Transform - pos: 15.5,23.5 - parent: 8364 - - uid: 8559 - components: - - type: Transform - pos: 14.5,23.5 - parent: 8364 - - uid: 8560 - components: - - type: Transform - pos: 13.5,23.5 - parent: 8364 - - uid: 8561 - components: - - type: Transform - pos: 17.5,23.5 - parent: 8364 - - uid: 8562 - components: - - type: Transform - pos: 15.5,25.5 - parent: 8364 - - uid: 8563 - components: - - type: Transform - pos: 16.5,23.5 - parent: 8364 - - uid: 8564 - components: - - type: Transform - pos: 15.5,21.5 - parent: 8364 - - uid: 8565 - components: - - type: Transform - pos: 15.5,20.5 - parent: 8364 - - uid: 8566 - components: - - type: Transform - pos: 14.5,20.5 - parent: 8364 - - uid: 8567 - components: - - type: Transform - pos: 13.5,20.5 - parent: 8364 - - uid: 8568 - components: - - type: Transform - pos: 17.5,20.5 - parent: 8364 - - uid: 8590 - components: - - type: Transform - pos: -0.5,37.5 - parent: 8364 - - uid: 8623 - components: - - type: Transform - pos: -2.5,37.5 - parent: 8364 - - uid: 8630 - components: - - type: Transform - pos: -15.5,52.5 - parent: 8364 - - uid: 8636 - components: - - type: Transform - pos: -21.5,42.5 - parent: 8364 - - uid: 8637 - components: - - type: Transform - pos: -21.5,41.5 - parent: 8364 - - uid: 8638 - components: - - type: Transform - pos: -18.5,41.5 - parent: 8364 - - uid: 8641 - components: - - type: Transform - pos: -3.5,29.5 - parent: 8364 - - uid: 8651 - components: - - type: Transform - pos: -19.5,46.5 - parent: 8364 - - uid: 8673 - components: - - type: Transform - pos: -5.5,27.5 - parent: 8364 - - uid: 8674 - components: - - type: Transform - pos: -7.5,27.5 - parent: 8364 - - uid: 8675 - components: - - type: Transform - pos: -6.5,27.5 - parent: 8364 - - uid: 8676 - components: - - type: Transform - pos: -8.5,27.5 - parent: 8364 - - uid: 8677 - components: - - type: Transform - pos: -9.5,27.5 - parent: 8364 - - uid: 8681 - components: - - type: Transform - pos: -4.5,29.5 - parent: 8364 - - uid: 8682 - components: - - type: Transform - pos: -5.5,29.5 - parent: 8364 - - uid: 8683 - components: - - type: Transform - pos: -5.5,30.5 - parent: 8364 - - uid: 8684 - components: - - type: Transform - pos: -6.5,30.5 - parent: 8364 - - uid: 8685 - components: - - type: Transform - pos: -8.5,30.5 - parent: 8364 - - uid: 8686 - components: - - type: Transform - pos: -7.5,30.5 - parent: 8364 - - uid: 8687 - components: - - type: Transform - pos: -4.5,28.5 - parent: 8364 - - uid: 8688 - components: - - type: Transform - pos: -4.5,25.5 - parent: 8364 - - uid: 8689 - components: - - type: Transform - pos: -2.5,25.5 - parent: 8364 - - uid: 8690 - components: - - type: Transform - pos: -1.5,25.5 - parent: 8364 - - uid: 8691 - components: - - type: Transform - pos: -4.5,27.5 - parent: 8364 - - uid: 8692 - components: - - type: Transform - pos: -3.5,27.5 - parent: 8364 - - uid: 8693 - components: - - type: Transform - pos: -2.5,27.5 - parent: 8364 - - uid: 8694 - components: - - type: Transform - pos: -1.5,27.5 - parent: 8364 - - uid: 8695 - components: - - type: Transform - pos: 2.5,27.5 - parent: 8364 - - uid: 8696 - components: - - type: Transform - pos: 3.5,27.5 - parent: 8364 - - uid: 8697 - components: - - type: Transform - pos: 4.5,27.5 - parent: 8364 - - uid: 8698 - components: - - type: Transform - pos: 5.5,27.5 - parent: 8364 - - uid: 8699 - components: - - type: Transform - pos: 6.5,27.5 - parent: 8364 - - uid: 8700 - components: - - type: Transform - pos: 7.5,27.5 - parent: 8364 - - uid: 8701 - components: - - type: Transform - pos: 8.5,27.5 - parent: 8364 - - uid: 8702 - components: - - type: Transform - pos: 9.5,27.5 - parent: 8364 - - uid: 8703 - components: - - type: Transform - pos: 9.5,26.5 - parent: 8364 - - uid: 8704 - components: - - type: Transform - pos: 9.5,25.5 - parent: 8364 - - uid: 8705 - components: - - type: Transform - pos: 9.5,24.5 - parent: 8364 - - uid: 8706 - components: - - type: Transform - pos: 5.5,26.5 - parent: 8364 - - uid: 8707 - components: - - type: Transform - pos: 5.5,25.5 - parent: 8364 - - uid: 8708 - components: - - type: Transform - pos: 5.5,24.5 - parent: 8364 - - uid: 8709 - components: - - type: Transform - pos: 5.5,23.5 - parent: 8364 - - uid: 8710 - components: - - type: Transform - pos: 5.5,22.5 - parent: 8364 - - uid: 8711 - components: - - type: Transform - pos: 4.5,22.5 - parent: 8364 - - uid: 8712 - components: - - type: Transform - pos: 3.5,22.5 - parent: 8364 - - uid: 8713 - components: - - type: Transform - pos: 2.5,26.5 - parent: 8364 - - uid: 8714 - components: - - type: Transform - pos: 2.5,25.5 - parent: 8364 - - uid: 8715 - components: - - type: Transform - pos: -9.5,26.5 - parent: 8364 - - uid: 8716 - components: - - type: Transform - pos: -0.5,25.5 - parent: 8364 - - uid: 8718 - components: - - type: Transform - pos: 1.5,27.5 - parent: 8364 - - uid: 8719 - components: - - type: Transform - pos: -9.5,25.5 - parent: 8364 - - uid: 8720 - components: - - type: Transform - pos: -10.5,25.5 - parent: 8364 - - uid: 8721 - components: - - type: Transform - pos: -5.5,26.5 - parent: 8364 - - uid: 8722 - components: - - type: Transform - pos: 2.5,24.5 - parent: 8364 - - uid: 8723 - components: - - type: Transform - pos: 0.5,27.5 - parent: 8364 - - uid: 8724 - components: - - type: Transform - pos: -0.5,27.5 - parent: 8364 - - uid: 8725 - components: - - type: Transform - pos: -5.5,25.5 - parent: 8364 - - uid: 8726 - components: - - type: Transform - pos: -6.5,25.5 - parent: 8364 - - uid: 8727 - components: - - type: Transform - pos: -8.5,25.5 - parent: 8364 - - uid: 8728 - components: - - type: Transform - pos: -1.5,26.5 - parent: 8364 - - uid: 8729 - components: - - type: Transform - pos: -1.5,22.5 - parent: 8364 - - uid: 8730 - components: - - type: Transform - pos: -2.5,22.5 - parent: 8364 - - uid: 8731 - components: - - type: Transform - pos: -0.5,22.5 - parent: 8364 - - uid: 8732 - components: - - type: Transform - pos: -5.5,24.5 - parent: 8364 - - uid: 8733 - components: - - type: Transform - pos: -5.5,23.5 - parent: 8364 - - uid: 8734 - components: - - type: Transform - pos: -5.5,22.5 - parent: 8364 - - uid: 8735 - components: - - type: Transform - pos: -6.5,22.5 - parent: 8364 - - uid: 8736 - components: - - type: Transform - pos: -4.5,22.5 - parent: 8364 - - uid: 8737 - components: - - type: Transform - pos: -9.5,24.5 - parent: 8364 - - uid: 8738 - components: - - type: Transform - pos: -9.5,23.5 - parent: 8364 - - uid: 8739 - components: - - type: Transform - pos: -9.5,22.5 - parent: 8364 - - uid: 8740 - components: - - type: Transform - pos: -10.5,22.5 - parent: 8364 - - uid: 8741 - components: - - type: Transform - pos: -8.5,22.5 - parent: 8364 - - uid: 8751 - components: - - type: Transform - pos: 1.5,37.5 - parent: 8364 - - uid: 8762 - components: - - type: Transform - pos: -10.5,27.5 - parent: 8364 - - uid: 8763 - components: - - type: Transform - pos: -12.5,27.5 - parent: 8364 - - uid: 8764 - components: - - type: Transform - pos: -11.5,27.5 - parent: 8364 - - uid: 8765 - components: - - type: Transform - pos: -13.5,27.5 - parent: 8364 - - uid: 8766 - components: - - type: Transform - pos: -13.5,26.5 - parent: 8364 - - uid: 8767 - components: - - type: Transform - pos: -13.5,25.5 - parent: 8364 - - uid: 8768 - components: - - type: Transform - pos: -13.5,24.5 - parent: 8364 - - uid: 8769 - components: - - type: Transform - pos: -13.5,23.5 - parent: 8364 - - uid: 8770 - components: - - type: Transform - pos: -2.5,31.5 - parent: 8364 - - uid: 8777 - components: - - type: Transform - pos: 14.5,40.5 + pos: -9.5,14.5 parent: 8364 - uid: 8812 components: - type: Transform pos: 5.5,-34.5 parent: 8364 - - uid: 8895 + - uid: 8874 components: - type: Transform - pos: -16.5,30.5 + pos: -6.5,12.5 parent: 8364 - - uid: 8896 + - uid: 9055 components: - type: Transform - pos: -15.5,30.5 + pos: -0.5,26.5 parent: 8364 - - uid: 8897 + - uid: 9067 components: - type: Transform - pos: -14.5,30.5 + pos: -14.5,45.5 parent: 8364 - - uid: 8898 - components: - - type: Transform - pos: -13.5,30.5 - parent: 8364 - - uid: 8899 - components: - - type: Transform - pos: -12.5,30.5 - parent: 8364 - - uid: 8900 - components: - - type: Transform - pos: -12.5,31.5 - parent: 8364 - - uid: 8901 - components: - - type: Transform - pos: -12.5,32.5 - parent: 8364 - - uid: 8915 - components: - - type: Transform - pos: -20.5,22.5 - parent: 8364 - - uid: 8937 - components: - - type: Transform - pos: -20.5,46.5 - parent: 8364 - - uid: 8938 - components: - - type: Transform - pos: -17.5,46.5 - parent: 8364 - - uid: 8939 - components: - - type: Transform - pos: -17.5,47.5 - parent: 8364 - - uid: 8940 - components: - - type: Transform - pos: -18.5,45.5 - parent: 8364 - - uid: 8941 - components: - - type: Transform - pos: -17.5,45.5 - parent: 8364 - - uid: 8942 - components: - - type: Transform - pos: -18.5,43.5 - parent: 8364 - - uid: 8943 - components: - - type: Transform - pos: -19.5,45.5 - parent: 8364 - - uid: 8956 - components: - - type: Transform - pos: -23.5,45.5 - parent: 8364 - - uid: 8957 - components: - - type: Transform - pos: -23.5,49.5 - parent: 8364 - - uid: 8959 - components: - - type: Transform - pos: -21.5,50.5 - parent: 8364 - - uid: 8960 - components: - - type: Transform - pos: -23.5,50.5 - parent: 8364 - - uid: 8962 - components: - - type: Transform - pos: -20.5,50.5 - parent: 8364 - - uid: 8963 - components: - - type: Transform - pos: -22.5,50.5 - parent: 8364 - - uid: 8980 - components: - - type: Transform - pos: -10.5,40.5 - parent: 8364 - - uid: 8990 - components: - - type: Transform - pos: -10.5,42.5 - parent: 8364 - - uid: 8991 - components: - - type: Transform - pos: -10.5,39.5 - parent: 8364 - - uid: 8992 - components: - - type: Transform - pos: -10.5,43.5 - parent: 8364 - - uid: 8993 - components: - - type: Transform - pos: -10.5,44.5 - parent: 8364 - - uid: 8994 - components: - - type: Transform - pos: -10.5,45.5 - parent: 8364 - - uid: 8997 - components: - - type: Transform - pos: -10.5,41.5 - parent: 8364 - - uid: 9007 - components: - - type: Transform - pos: -13.5,44.5 - parent: 8364 - - uid: 9008 - components: - - type: Transform - pos: -14.5,44.5 - parent: 8364 - - uid: 9009 + - uid: 9068 components: - type: Transform pos: -14.5,42.5 parent: 8364 - - uid: 9010 - components: - - type: Transform - pos: -14.5,41.5 - parent: 8364 - - uid: 9011 - components: - - type: Transform - pos: -15.5,44.5 - parent: 8364 - - uid: 9012 - components: - - type: Transform - pos: -14.5,43.5 - parent: 8364 - - uid: 9021 - components: - - type: Transform - pos: -6.5,34.5 - parent: 8364 - - uid: 9063 - components: - - type: Transform - pos: -10.5,38.5 - parent: 8364 - - uid: 9069 - components: - - type: Transform - pos: -23.5,47.5 - parent: 8364 - - uid: 9074 - components: - - type: Transform - pos: 14.5,41.5 - parent: 8364 - - uid: 9088 - components: - - type: Transform - pos: -21.5,43.5 - parent: 8364 - - uid: 9089 - components: - - type: Transform - pos: -22.5,43.5 - parent: 8364 - - uid: 9090 - components: - - type: Transform - pos: -19.5,43.5 - parent: 8364 - - uid: 9121 - components: - - type: Transform - pos: -20.5,47.5 - parent: 8364 - - uid: 9122 - components: - - type: Transform - pos: -21.5,45.5 - parent: 8364 - - uid: 9123 - components: - - type: Transform - pos: -22.5,45.5 - parent: 8364 - - uid: 9140 - components: - - type: Transform - pos: -23.5,43.5 - parent: 8364 - - uid: 9141 - components: - - type: Transform - pos: -24.5,43.5 - parent: 8364 - - uid: 9152 - components: - - type: Transform - pos: -19.5,22.5 - parent: 8364 - - uid: 9153 - components: - - type: Transform - pos: -22.5,25.5 - parent: 8364 - - uid: 9154 - components: - - type: Transform - pos: -22.5,23.5 - parent: 8364 - - uid: 9156 - components: - - type: Transform - pos: -18.5,22.5 - parent: 8364 - - uid: 9157 - components: - - type: Transform - pos: -19.5,20.5 - parent: 8364 - - uid: 9158 - components: - - type: Transform - pos: -18.5,20.5 - parent: 8364 - - uid: 9159 - components: - - type: Transform - pos: -22.5,24.5 - parent: 8364 - - uid: 9160 - components: - - type: Transform - pos: -20.5,20.5 - parent: 8364 - - uid: 9161 - components: - - type: Transform - pos: -20.5,24.5 - parent: 8364 - - uid: 9162 - components: - - type: Transform - pos: -21.5,23.5 - parent: 8364 - - uid: 9163 - components: - - type: Transform - pos: -20.5,23.5 - parent: 8364 - - uid: 9164 - components: - - type: Transform - pos: 14.5,37.5 - parent: 8364 - - uid: 9193 - components: - - type: Transform - pos: 14.5,38.5 - parent: 8364 - - uid: 9292 - components: - - type: Transform - pos: -1.5,37.5 - parent: 8364 - - uid: 9293 - components: - - type: Transform - pos: 3.5,37.5 - parent: 8364 - - uid: 9294 - components: - - type: Transform - pos: 0.5,37.5 - parent: 8364 - - uid: 9296 - components: - - type: Transform - pos: 8.5,38.5 - parent: 8364 - - uid: 9297 - components: - - type: Transform - pos: 8.5,39.5 - parent: 8364 - - uid: 9298 - components: - - type: Transform - pos: 8.5,37.5 - parent: 8364 - - uid: 9299 - components: - - type: Transform - pos: 8.5,36.5 - parent: 8364 - - uid: 9300 - components: - - type: Transform - pos: 11.5,39.5 - parent: 8364 - - uid: 9301 - components: - - type: Transform - pos: 12.5,39.5 - parent: 8364 - - uid: 9302 - components: - - type: Transform - pos: 13.5,39.5 - parent: 8364 - - uid: 9303 - components: - - type: Transform - pos: 14.5,39.5 - parent: 8364 - - uid: 9307 - components: - - type: Transform - pos: 19.5,33.5 - parent: 8364 - - uid: 9308 - components: - - type: Transform - pos: 18.5,33.5 - parent: 8364 - - uid: 9309 - components: - - type: Transform - pos: 17.5,33.5 - parent: 8364 - uid: 9311 components: - type: Transform - pos: 14.5,31.5 + pos: 21.5,18.5 parent: 8364 - uid: 9312 components: - type: Transform - pos: 15.5,31.5 + pos: 21.5,19.5 parent: 8364 - uid: 9313 components: - type: Transform - pos: 16.5,31.5 + pos: 21.5,20.5 parent: 8364 - uid: 9314 components: - type: Transform - pos: 16.5,34.5 + pos: 21.5,21.5 parent: 8364 - uid: 9315 components: - type: Transform - pos: 13.5,31.5 + pos: 21.5,22.5 + parent: 8364 + - uid: 9316 + components: + - type: Transform + pos: 21.5,23.5 + parent: 8364 + - uid: 9317 + components: + - type: Transform + pos: 21.5,24.5 parent: 8364 - uid: 9318 components: - type: Transform - pos: 12.5,31.5 + pos: 21.5,25.5 parent: 8364 - uid: 9319 components: - type: Transform - pos: 11.5,31.5 + pos: 20.5,25.5 parent: 8364 - uid: 9320 components: - type: Transform - pos: 10.5,31.5 + pos: 19.5,25.5 parent: 8364 - uid: 9321 components: - type: Transform - pos: 9.5,31.5 + pos: 18.5,25.5 parent: 8364 - uid: 9322 components: - type: Transform - pos: 8.5,31.5 + pos: 17.5,25.5 parent: 8364 - - uid: 9323 + - uid: 9365 components: - type: Transform - pos: 7.5,31.5 + pos: 8.5,28.5 parent: 8364 - - uid: 9324 + - uid: 9368 components: - type: Transform - pos: 17.5,34.5 + pos: 8.5,27.5 parent: 8364 - - uid: 9325 + - uid: 9369 components: - type: Transform - pos: 14.5,34.5 + pos: 8.5,26.5 parent: 8364 - - uid: 9326 + - uid: 9370 components: - type: Transform - pos: 15.5,34.5 + pos: 8.5,23.5 parent: 8364 - - uid: 9327 + - uid: 9371 components: - type: Transform - pos: 18.5,35.5 + pos: 8.5,24.5 parent: 8364 - - uid: 9328 + - uid: 9372 components: - type: Transform - pos: 19.5,35.5 + pos: 8.5,25.5 parent: 8364 - - uid: 9337 + - uid: 9373 components: - type: Transform - pos: 0.5,31.5 + pos: 9.5,26.5 parent: 8364 - - uid: 9338 + - uid: 9374 components: - type: Transform - pos: -0.5,31.5 + pos: 10.5,26.5 parent: 8364 - - uid: 9339 + - uid: 9376 components: - type: Transform - pos: -1.5,31.5 + pos: 11.5,24.5 parent: 8364 - - uid: 9340 + - uid: 9377 components: - type: Transform - pos: 1.5,31.5 + pos: 11.5,25.5 parent: 8364 - - uid: 9341 + - uid: 9380 components: - type: Transform - pos: 2.5,31.5 + pos: 22.5,24.5 parent: 8364 - - uid: 9342 + - uid: 9381 components: - type: Transform - pos: 3.5,31.5 + pos: 23.5,24.5 parent: 8364 - - uid: 9422 + - uid: 9382 components: - type: Transform - pos: -19.5,50.5 + pos: 10.5,22.5 parent: 8364 - - uid: 9457 + - uid: 9383 components: - type: Transform - pos: 17.5,35.5 + pos: 12.5,22.5 parent: 8364 - - uid: 9599 + - uid: 9384 components: - type: Transform - pos: 20.5,33.5 + pos: 10.5,23.5 parent: 8364 - - uid: 9601 + - uid: 9388 components: - type: Transform - pos: 22.5,33.5 + pos: 11.5,23.5 parent: 8364 - - uid: 9602 + - uid: 9389 components: - type: Transform - pos: 21.5,33.5 + pos: 12.5,23.5 parent: 8364 - - uid: 9603 + - uid: 9390 components: - type: Transform - pos: 23.5,33.5 + pos: 11.5,27.5 parent: 8364 - - uid: 9604 + - uid: 9391 components: - type: Transform - pos: 24.5,33.5 + pos: 11.5,28.5 parent: 8364 - - uid: 9605 + - uid: 9392 components: - type: Transform - pos: 23.5,34.5 + pos: 11.5,29.5 parent: 8364 - - uid: 9606 + - uid: 9393 components: - type: Transform - pos: 23.5,35.5 + pos: 11.5,30.5 parent: 8364 - - uid: 9607 + - uid: 9394 components: - type: Transform - pos: 23.5,36.5 + pos: 24.5,24.5 parent: 8364 - - uid: 9608 + - uid: 9396 components: - type: Transform - pos: 23.5,37.5 + pos: 24.5,25.5 parent: 8364 - - uid: 9609 + - uid: 9397 components: - type: Transform - pos: 23.5,38.5 + pos: 24.5,26.5 parent: 8364 - - uid: 9610 + - uid: 9398 components: - type: Transform - pos: 23.5,39.5 + pos: 24.5,27.5 parent: 8364 - - uid: 9611 + - uid: 9399 components: - type: Transform - pos: 23.5,40.5 + pos: 25.5,27.5 parent: 8364 - - uid: 9612 + - uid: 9400 components: - type: Transform - pos: 23.5,41.5 + pos: 26.5,27.5 parent: 8364 - - uid: 9614 + - uid: 9401 components: - type: Transform - pos: 20.5,35.5 - parent: 8364 - - uid: 9688 - components: - - type: Transform - pos: -13.5,14.5 - parent: 8364 - - uid: 9689 - components: - - type: Transform - pos: -13.5,15.5 - parent: 8364 - - uid: 9690 - components: - - type: Transform - pos: -13.5,16.5 - parent: 8364 - - uid: 9691 - components: - - type: Transform - pos: -12.5,16.5 - parent: 8364 - - uid: 9692 - components: - - type: Transform - pos: -11.5,16.5 - parent: 8364 - - uid: 9693 - components: - - type: Transform - pos: -11.5,15.5 - parent: 8364 - - uid: 9694 - components: - - type: Transform - pos: -11.5,14.5 + pos: 27.5,27.5 parent: 8364 - uid: 9695 components: - type: Transform pos: -50.5,-8.5 parent: 8364 - - uid: 9696 - components: - - type: Transform - pos: -8.5,15.5 - parent: 8364 - - uid: 9697 - components: - - type: Transform - pos: -8.5,16.5 - parent: 8364 - - uid: 9698 - components: - - type: Transform - pos: -7.5,16.5 - parent: 8364 - - uid: 9699 - components: - - type: Transform - pos: -6.5,16.5 - parent: 8364 - - uid: 9700 - components: - - type: Transform - pos: -5.5,16.5 - parent: 8364 - - uid: 9701 - components: - - type: Transform - pos: -4.5,16.5 - parent: 8364 - - uid: 9702 - components: - - type: Transform - pos: -4.5,15.5 - parent: 8364 - - uid: 9703 - components: - - type: Transform - pos: -4.5,14.5 - parent: 8364 - uid: 9813 components: - type: Transform @@ -25988,11 +25449,6 @@ entities: - type: Transform pos: -13.5,-25.5 parent: 8364 - - uid: 9819 - components: - - type: Transform - pos: 27.5,29.5 - parent: 8364 - uid: 9822 components: - type: Transform @@ -26013,115 +25469,95 @@ entities: - type: Transform pos: 5.5,-53.5 parent: 8364 - - uid: 9860 - components: - - type: Transform - pos: 26.5,25.5 - parent: 8364 - - uid: 9861 - components: - - type: Transform - pos: 25.5,25.5 - parent: 8364 - uid: 9862 components: - type: Transform - pos: 27.5,25.5 - parent: 8364 - - uid: 9863 - components: - - type: Transform - pos: 27.5,26.5 + pos: 8.5,36.5 parent: 8364 - uid: 9864 components: - type: Transform - pos: 28.5,26.5 + pos: 8.5,35.5 parent: 8364 - uid: 9866 components: - type: Transform - pos: 29.5,26.5 + pos: 8.5,34.5 parent: 8364 - uid: 9869 components: - type: Transform - pos: 23.5,30.5 + pos: 7.5,34.5 parent: 8364 - uid: 9870 components: - type: Transform - pos: 24.5,30.5 + pos: 7.5,37.5 parent: 8364 - uid: 9871 components: - type: Transform - pos: 25.5,30.5 + pos: 7.5,36.5 parent: 8364 - uid: 9872 components: - type: Transform - pos: 27.5,28.5 + pos: 7.5,35.5 parent: 8364 - uid: 9873 components: - type: Transform - pos: 21.5,29.5 + pos: 9.5,34.5 parent: 8364 - uid: 9874 components: - type: Transform - pos: 21.5,28.5 + pos: 10.5,34.5 parent: 8364 - uid: 9875 components: - type: Transform - pos: 21.5,27.5 + pos: 10.5,35.5 parent: 8364 - uid: 9876 components: - type: Transform - pos: 21.5,26.5 + pos: 10.5,36.5 parent: 8364 - uid: 9877 components: - type: Transform - pos: 21.5,25.5 + pos: 10.5,37.5 parent: 8364 - uid: 9878 components: - type: Transform - pos: 21.5,24.5 + pos: 11.5,37.5 parent: 8364 - uid: 9879 components: - type: Transform - pos: 21.5,23.5 + pos: 12.5,37.5 parent: 8364 - uid: 9880 components: - type: Transform - pos: 21.5,22.5 + pos: 13.5,37.5 parent: 8364 - uid: 9881 components: - type: Transform - pos: 21.5,21.5 + pos: 11.5,34.5 parent: 8364 - uid: 9882 components: - type: Transform - pos: 21.5,20.5 + pos: 12.5,34.5 parent: 8364 - uid: 9883 components: - type: Transform - pos: 21.5,19.5 - parent: 8364 - - uid: 9884 - components: - - type: Transform - pos: 21.5,18.5 + pos: 13.5,34.5 parent: 8364 - uid: 9885 components: @@ -26131,7 +25567,7 @@ entities: - uid: 9886 components: - type: Transform - pos: 21.5,17.5 + pos: -7.5,14.5 parent: 8364 - uid: 9887 components: @@ -26151,7 +25587,7 @@ entities: - uid: 9890 components: - type: Transform - pos: 17.5,17.5 + pos: -7.5,13.5 parent: 8364 - uid: 9891 components: @@ -26318,30 +25754,75 @@ entities: - type: Transform pos: 4.5,-52.5 parent: 8364 + - uid: 9928 + components: + - type: Transform + pos: -7.5,15.5 + parent: 8364 + - uid: 9929 + components: + - type: Transform + pos: -7.5,16.5 + parent: 8364 + - uid: 9930 + components: + - type: Transform + pos: -7.5,17.5 + parent: 8364 + - uid: 9931 + components: + - type: Transform + pos: -7.5,18.5 + parent: 8364 + - uid: 9933 + components: + - type: Transform + pos: -7.5,19.5 + parent: 8364 + - uid: 9936 + components: + - type: Transform + pos: -7.5,20.5 + parent: 8364 + - uid: 9937 + components: + - type: Transform + pos: -7.5,21.5 + parent: 8364 - uid: 9951 components: - type: Transform - pos: 27.5,27.5 + pos: -7.5,22.5 parent: 8364 - uid: 9952 components: - type: Transform - pos: 26.5,30.5 + pos: -7.5,23.5 parent: 8364 - uid: 9953 components: - type: Transform - pos: 27.5,30.5 + pos: -7.5,24.5 parent: 8364 - uid: 9954 components: - type: Transform - pos: 22.5,30.5 + pos: -11.5,22.5 parent: 8364 - uid: 9955 components: - type: Transform - pos: 21.5,30.5 + pos: -10.5,22.5 + parent: 8364 + - uid: 9957 + components: + - type: Transform + pos: -9.5,22.5 + parent: 8364 + - uid: 9963 + components: + - type: Transform + pos: -8.5,22.5 parent: 8364 - uid: 9964 components: @@ -26393,250 +25874,245 @@ entities: - type: Transform pos: -43.5,10.5 parent: 8364 + - uid: 9994 + components: + - type: Transform + pos: -6.5,22.5 + parent: 8364 + - uid: 9998 + components: + - type: Transform + pos: -5.5,22.5 + parent: 8364 + - uid: 9999 + components: + - type: Transform + pos: -4.5,22.5 + parent: 8364 + - uid: 10001 + components: + - type: Transform + pos: -3.5,22.5 + parent: 8364 + - uid: 10002 + components: + - type: Transform + pos: -6.5,19.5 + parent: 8364 - uid: 10003 components: - type: Transform - pos: -20.5,25.5 + pos: -5.5,19.5 parent: 8364 - uid: 10004 components: - type: Transform - pos: -18.5,23.5 + pos: -4.5,19.5 parent: 8364 - - uid: 10033 + - uid: 10006 components: - type: Transform - pos: 19.5,36.5 + pos: -3.5,19.5 parent: 8364 - - uid: 10034 + - uid: 10008 components: - type: Transform - pos: 19.5,37.5 + pos: -8.5,19.5 parent: 8364 - - uid: 10035 + - uid: 10020 components: - type: Transform - pos: 18.5,37.5 + pos: -9.5,19.5 parent: 8364 - - uid: 10036 + - uid: 10021 components: - type: Transform - pos: 20.5,34.5 + pos: -10.5,19.5 parent: 8364 - - uid: 10038 + - uid: 10022 components: - type: Transform - pos: 22.5,41.5 + pos: -11.5,19.5 parent: 8364 - - uid: 10039 + - uid: 10023 components: - type: Transform - pos: 21.5,41.5 + pos: -9.5,15.5 parent: 8364 - - uid: 10040 + - uid: 10024 components: - type: Transform - pos: 21.5,42.5 + pos: -8.5,15.5 parent: 8364 - - uid: 10041 + - uid: 10025 components: - type: Transform - pos: 21.5,40.5 + pos: -6.5,15.5 parent: 8364 - - uid: 10042 + - uid: 10026 components: - type: Transform - pos: 24.5,41.5 + pos: -5.5,15.5 parent: 8364 - - uid: 10043 + - uid: 10027 components: - type: Transform - pos: 25.5,41.5 + pos: -4.5,15.5 parent: 8364 - - uid: 10044 - components: - - type: Transform - pos: 25.5,42.5 - parent: 8364 - - uid: 10045 - components: - - type: Transform - pos: 25.5,40.5 - parent: 8364 - - uid: 10046 - components: - - type: Transform - pos: 9.5,36.5 - parent: 8364 - - uid: 10047 - components: - - type: Transform - pos: 9.5,35.5 - parent: 8364 - - uid: 10048 - components: - - type: Transform - pos: 9.5,34.5 - parent: 8364 - - uid: 10049 - components: - - type: Transform - pos: 7.5,36.5 - parent: 8364 - - uid: 10050 - components: - - type: Transform - pos: 6.5,36.5 - parent: 8364 - - uid: 10051 - components: - - type: Transform - pos: 6.5,35.5 - parent: 8364 - - uid: 10052 - components: - - type: Transform - pos: 6.5,34.5 - parent: 8364 - - uid: 10053 - components: - - type: Transform - pos: 7.5,34.5 - parent: 8364 - - uid: 10054 - components: - - type: Transform - pos: 8.5,40.5 - parent: 8364 - - uid: 10055 - components: - - type: Transform - pos: 8.5,41.5 - parent: 8364 - - uid: 10067 - components: - - type: Transform - pos: 4.5,31.5 - parent: 8364 - - uid: 10083 - components: - - type: Transform - pos: 2.5,23.5 - parent: 8364 - - uid: 10084 - components: - - type: Transform - pos: 2.5,22.5 - parent: 8364 - - uid: 10085 - components: - - type: Transform - pos: 3.5,22.5 - parent: 8364 - - uid: 10088 + - uid: 10028 components: - type: Transform pos: -3.5,15.5 parent: 8364 + - uid: 10029 + components: + - type: Transform + pos: -10.5,15.5 + parent: 8364 + - uid: 10030 + components: + - type: Transform + pos: -11.5,15.5 + parent: 8364 + - uid: 10031 + components: + - type: Transform + pos: -12.5,15.5 + parent: 8364 + - uid: 10032 + components: + - type: Transform + pos: -13.5,15.5 + parent: 8364 + - uid: 10033 + components: + - type: Transform + pos: -14.5,15.5 + parent: 8364 + - uid: 10034 + components: + - type: Transform + pos: -15.5,15.5 + parent: 8364 + - uid: 10035 + components: + - type: Transform + pos: -16.5,15.5 + parent: 8364 + - uid: 10068 + components: + - type: Transform + pos: -21.5,24.5 + parent: 8364 + - uid: 10069 + components: + - type: Transform + pos: -20.5,24.5 + parent: 8364 + - uid: 10070 + components: + - type: Transform + pos: -19.5,24.5 + parent: 8364 + - uid: 10071 + components: + - type: Transform + pos: -19.5,21.5 + parent: 8364 + - uid: 10072 + components: + - type: Transform + pos: -18.5,24.5 + parent: 8364 + - uid: 10073 + components: + - type: Transform + pos: -21.5,23.5 + parent: 8364 + - uid: 10074 + components: + - type: Transform + pos: -22.5,23.5 + parent: 8364 + - uid: 10075 + components: + - type: Transform + pos: -23.5,23.5 + parent: 8364 + - uid: 10076 + components: + - type: Transform + pos: -24.5,23.5 + parent: 8364 + - uid: 10077 + components: + - type: Transform + pos: -24.5,25.5 + parent: 8364 + - uid: 10078 + components: + - type: Transform + pos: -23.5,25.5 + parent: 8364 + - uid: 10079 + components: + - type: Transform + pos: -22.5,25.5 + parent: 8364 + - uid: 10080 + components: + - type: Transform + pos: -21.5,25.5 + parent: 8364 + - uid: 10081 + components: + - type: Transform + pos: -19.5,23.5 + parent: 8364 + - uid: 10082 + components: + - type: Transform + pos: -19.5,22.5 + parent: 8364 + - uid: 10083 + components: + - type: Transform + pos: -17.5,24.5 + parent: 8364 + - uid: 10084 + components: + - type: Transform + pos: -16.5,24.5 + parent: 8364 + - uid: 10085 + components: + - type: Transform + pos: -15.5,24.5 + parent: 8364 + - uid: 10086 + components: + - type: Transform + pos: -14.5,24.5 + parent: 8364 + - uid: 10088 + components: + - type: Transform + pos: -14.5,23.5 + parent: 8364 - uid: 10089 components: - type: Transform - pos: -2.5,15.5 + pos: -14.5,22.5 parent: 8364 - uid: 10090 components: - type: Transform - pos: -2.5,16.5 + pos: -14.5,21.5 parent: 8364 - uid: 10091 components: - type: Transform - pos: -2.5,14.5 - parent: 8364 - - uid: 10092 - components: - - type: Transform - pos: -5.5,17.5 - parent: 8364 - - uid: 10093 - components: - - type: Transform - pos: -5.5,18.5 - parent: 8364 - - uid: 10094 - components: - - type: Transform - pos: -11.5,17.5 - parent: 8364 - - uid: 10095 - components: - - type: Transform - pos: -11.5,18.5 - parent: 8364 - - uid: 10096 - components: - - type: Transform - pos: -10.5,18.5 - parent: 8364 - - uid: 10097 - components: - - type: Transform - pos: -21.5,21.5 - parent: 8364 - - uid: 10099 - components: - - type: Transform - pos: -22.5,21.5 - parent: 8364 - - uid: 10100 - components: - - type: Transform - pos: -22.5,19.5 - parent: 8364 - - uid: 10102 - components: - - type: Transform - pos: -20.5,21.5 - parent: 8364 - - uid: 10103 - components: - - type: Transform - pos: -18.5,21.5 - parent: 8364 - - uid: 10104 - components: - - type: Transform - pos: -17.5,21.5 - parent: 8364 - - uid: 10105 - components: - - type: Transform - pos: -16.5,21.5 - parent: 8364 - - uid: 10106 - components: - - type: Transform - pos: -17.5,23.5 - parent: 8364 - - uid: 10123 - components: - - type: Transform - pos: 12.5,20.5 - parent: 8364 - - uid: 10124 - components: - - type: Transform - pos: 11.5,20.5 - parent: 8364 - - uid: 10125 - components: - - type: Transform - pos: 11.5,21.5 - parent: 8364 - - uid: 10126 - components: - - type: Transform - pos: 11.5,19.5 + pos: -14.5,20.5 parent: 8364 - uid: 10309 components: @@ -27463,16 +26939,6 @@ entities: - type: Transform pos: 48.5,-9.5 parent: 8364 - - uid: 10724 - components: - - type: Transform - pos: -12.5,44.5 - parent: 8364 - - uid: 10725 - components: - - type: Transform - pos: -11.5,44.5 - parent: 8364 - uid: 10853 components: - type: Transform @@ -29468,10 +28934,30 @@ entities: - type: Transform pos: -35.5,0.5 parent: 8364 + - uid: 12171 + components: + - type: Transform + pos: -19.5,25.5 + parent: 8364 + - uid: 12172 + components: + - type: Transform + pos: -19.5,26.5 + parent: 8364 - uid: 12173 components: - type: Transform - pos: -7.5,14.5 + pos: -19.5,27.5 + parent: 8364 + - uid: 12174 + components: + - type: Transform + pos: -19.5,28.5 + parent: 8364 + - uid: 12175 + components: + - type: Transform + pos: -19.5,29.5 parent: 8364 - uid: 12190 components: @@ -29718,6 +29204,61 @@ entities: - type: Transform pos: -37.5,0.5 parent: 8364 + - uid: 12307 + components: + - type: Transform + pos: -18.5,28.5 + parent: 8364 + - uid: 12308 + components: + - type: Transform + pos: -17.5,28.5 + parent: 8364 + - uid: 12309 + components: + - type: Transform + pos: -20.5,29.5 + parent: 8364 + - uid: 12310 + components: + - type: Transform + pos: -21.5,29.5 + parent: 8364 + - uid: 12311 + components: + - type: Transform + pos: -22.5,29.5 + parent: 8364 + - uid: 12312 + components: + - type: Transform + pos: -23.5,29.5 + parent: 8364 + - uid: 12314 + components: + - type: Transform + pos: -24.5,29.5 + parent: 8364 + - uid: 12315 + components: + - type: Transform + pos: -25.5,29.5 + parent: 8364 + - uid: 12316 + components: + - type: Transform + pos: -26.5,29.5 + parent: 8364 + - uid: 12317 + components: + - type: Transform + pos: -20.5,30.5 + parent: 8364 + - uid: 12318 + components: + - type: Transform + pos: -20.5,31.5 + parent: 8364 - uid: 12326 components: - type: Transform @@ -29868,6 +29409,11 @@ entities: - type: Transform pos: 11.5,-81.5 parent: 8364 + - uid: 12475 + components: + - type: Transform + pos: -20.5,32.5 + parent: 8364 - uid: 12497 components: - type: Transform @@ -30533,6 +30079,11 @@ entities: - type: Transform pos: -69.5,-5.5 parent: 8364 + - uid: 12663 + components: + - type: Transform + pos: -20.5,33.5 + parent: 8364 - uid: 12665 components: - type: Transform @@ -30588,6 +30139,21 @@ entities: - type: Transform pos: -76.5,-13.5 parent: 8364 + - uid: 12688 + components: + - type: Transform + pos: -20.5,34.5 + parent: 8364 + - uid: 12689 + components: + - type: Transform + pos: -20.5,35.5 + parent: 8364 + - uid: 12714 + components: + - type: Transform + pos: -20.5,36.5 + parent: 8364 - uid: 12717 components: - type: Transform @@ -30731,132 +30297,132 @@ entities: - uid: 12746 components: - type: Transform - pos: 5.5,20.5 + pos: -20.5,37.5 parent: 8364 - uid: 12747 components: - type: Transform - pos: 6.5,20.5 + pos: -20.5,38.5 parent: 8364 - uid: 12748 components: - type: Transform - pos: 7.5,20.5 + pos: -32.5,38.5 parent: 8364 - uid: 12749 components: - type: Transform - pos: 8.5,20.5 + pos: -32.5,37.5 parent: 8364 - uid: 12750 components: - type: Transform - pos: 9.5,20.5 + pos: -32.5,36.5 parent: 8364 - uid: 12751 components: - type: Transform - pos: 4.5,20.5 + pos: -31.5,36.5 parent: 8364 - uid: 12752 components: - type: Transform - pos: 3.5,20.5 + pos: -30.5,36.5 parent: 8364 - uid: 12753 components: - type: Transform - pos: 2.5,20.5 + pos: -29.5,36.5 parent: 8364 - uid: 12754 components: - type: Transform - pos: 1.5,20.5 + pos: -28.5,36.5 parent: 8364 - uid: 12755 components: - type: Transform - pos: 0.5,20.5 + pos: -28.5,35.5 parent: 8364 - uid: 12756 components: - type: Transform - pos: -0.5,20.5 + pos: -28.5,34.5 parent: 8364 - uid: 12757 components: - type: Transform - pos: -1.5,20.5 + pos: -27.5,34.5 parent: 8364 - uid: 12758 components: - type: Transform - pos: -2.5,20.5 + pos: -26.5,34.5 parent: 8364 - uid: 12759 components: - type: Transform - pos: -3.5,20.5 + pos: -25.5,34.5 parent: 8364 - uid: 12760 components: - type: Transform - pos: -4.5,20.5 + pos: -24.5,34.5 parent: 8364 - uid: 12761 components: - type: Transform - pos: -5.5,20.5 + pos: -28.5,37.5 parent: 8364 - uid: 12762 components: - type: Transform - pos: -6.5,20.5 + pos: -27.5,37.5 parent: 8364 - uid: 12763 components: - type: Transform - pos: -7.5,20.5 + pos: -26.5,37.5 parent: 8364 - uid: 12764 components: - type: Transform - pos: -8.5,20.5 + pos: -25.5,37.5 parent: 8364 - uid: 12765 components: - type: Transform - pos: -9.5,20.5 + pos: -24.5,37.5 parent: 8364 - uid: 12766 components: - type: Transform - pos: -10.5,20.5 + pos: -24.5,38.5 parent: 8364 - uid: 12767 components: - type: Transform - pos: -11.5,20.5 + pos: -24.5,39.5 parent: 8364 - uid: 12768 components: - type: Transform - pos: -12.5,20.5 + pos: -24.5,40.5 parent: 8364 - uid: 12769 components: - type: Transform - pos: -13.5,20.5 + pos: -24.5,41.5 parent: 8364 - uid: 12770 components: - type: Transform - pos: -14.5,20.5 + pos: -25.5,41.5 parent: 8364 - uid: 12771 components: - type: Transform - pos: -0.5,19.5 + pos: -25.5,42.5 parent: 8364 - uid: 12772 components: @@ -30933,6 +30499,11 @@ entities: - type: Transform pos: -0.5,4.5 parent: 8364 + - uid: 12787 + components: + - type: Transform + pos: -25.5,43.5 + parent: 8364 - uid: 12789 components: - type: Transform @@ -31238,6 +30809,21 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 8364 + - uid: 12859 + components: + - type: Transform + pos: -25.5,44.5 + parent: 8364 + - uid: 12860 + components: + - type: Transform + pos: -26.5,41.5 + parent: 8364 + - uid: 12861 + components: + - type: Transform + pos: -30.5,40.5 + parent: 8364 - uid: 12874 components: - type: Transform @@ -32088,6 +31674,21 @@ entities: - type: Transform pos: -52.5,11.5 parent: 8364 + - uid: 13214 + components: + - type: Transform + pos: -30.5,39.5 + parent: 8364 + - uid: 13215 + components: + - type: Transform + pos: -30.5,38.5 + parent: 8364 + - uid: 13216 + components: + - type: Transform + pos: -30.5,37.5 + parent: 8364 - uid: 13269 components: - type: Transform @@ -32233,6 +31834,11 @@ entities: - type: Transform pos: -32.5,19.5 parent: 8364 + - uid: 13310 + components: + - type: Transform + pos: -29.5,34.5 + parent: 8364 - uid: 13387 components: - type: Transform @@ -32243,6 +31849,46 @@ entities: - type: Transform pos: -31.5,12.5 parent: 8364 + - uid: 13396 + components: + - type: Transform + pos: -30.5,34.5 + parent: 8364 + - uid: 13397 + components: + - type: Transform + pos: -31.5,34.5 + parent: 8364 + - uid: 13400 + components: + - type: Transform + pos: -31.5,35.5 + parent: 8364 + - uid: 13401 + components: + - type: Transform + pos: -24.5,44.5 + parent: 8364 + - uid: 13402 + components: + - type: Transform + pos: -26.5,44.5 + parent: 8364 + - uid: 13403 + components: + - type: Transform + pos: -27.5,44.5 + parent: 8364 + - uid: 13404 + components: + - type: Transform + pos: -23.5,44.5 + parent: 8364 + - uid: 13405 + components: + - type: Transform + pos: -27.5,41.5 + parent: 8364 - uid: 13436 components: - type: Transform @@ -32628,11 +32274,6 @@ entities: - type: Transform pos: -25.5,6.5 parent: 8364 - - uid: 13612 - components: - - type: Transform - pos: -25.5,5.5 - parent: 8364 - uid: 13613 components: - type: Transform @@ -32648,26 +32289,6 @@ entities: - type: Transform pos: -25.5,2.5 parent: 8364 - - uid: 13616 - components: - - type: Transform - pos: -24.5,10.5 - parent: 8364 - - uid: 13617 - components: - - type: Transform - pos: -23.5,10.5 - parent: 8364 - - uid: 13621 - components: - - type: Transform - pos: -22.5,10.5 - parent: 8364 - - uid: 13622 - components: - - type: Transform - pos: -21.5,10.5 - parent: 8364 - uid: 13623 components: - type: Transform @@ -32698,31 +32319,6 @@ entities: - type: Transform pos: -16.5,11.5 parent: 8364 - - uid: 13629 - components: - - type: Transform - pos: -16.5,12.5 - parent: 8364 - - uid: 13630 - components: - - type: Transform - pos: -16.5,13.5 - parent: 8364 - - uid: 13631 - components: - - type: Transform - pos: -16.5,14.5 - parent: 8364 - - uid: 13632 - components: - - type: Transform - pos: -16.5,15.5 - parent: 8364 - - uid: 13633 - components: - - type: Transform - pos: -16.5,16.5 - parent: 8364 - uid: 13634 components: - type: Transform @@ -32758,36 +32354,11 @@ entities: - type: Transform pos: -9.5,11.5 parent: 8364 - - uid: 13641 - components: - - type: Transform - pos: -8.5,11.5 - parent: 8364 - - uid: 13642 - components: - - type: Transform - pos: -7.5,11.5 - parent: 8364 - - uid: 13643 - components: - - type: Transform - pos: -6.5,11.5 - parent: 8364 - - uid: 13644 - components: - - type: Transform - pos: -5.5,11.5 - parent: 8364 - uid: 13645 components: - type: Transform pos: -16.5,9.5 parent: 8364 - - uid: 13646 - components: - - type: Transform - pos: -4.5,11.5 - parent: 8364 - uid: 13647 components: - type: Transform @@ -32823,41 +32394,46 @@ entities: - type: Transform pos: -16.5,2.5 parent: 8364 - - uid: 13654 - components: - - type: Transform - pos: -20.5,11.5 - parent: 8364 - - uid: 13655 - components: - - type: Transform - pos: -20.5,12.5 - parent: 8364 - - uid: 13656 - components: - - type: Transform - pos: -20.5,13.5 - parent: 8364 - - uid: 13657 - components: - - type: Transform - pos: -3.5,11.5 - parent: 8364 - - uid: 13658 - components: - - type: Transform - pos: -1.5,11.5 - parent: 8364 - - uid: 13659 - components: - - type: Transform - pos: -2.5,11.5 - parent: 8364 - uid: 13663 components: - type: Transform pos: 69.5,-9.5 parent: 8364 + - uid: 13679 + components: + - type: Transform + pos: -11.5,48.5 + parent: 8364 + - uid: 13681 + components: + - type: Transform + pos: -11.5,47.5 + parent: 8364 + - uid: 13682 + components: + - type: Transform + pos: -11.5,46.5 + parent: 8364 + - uid: 13683 + components: + - type: Transform + pos: -11.5,45.5 + parent: 8364 + - uid: 13684 + components: + - type: Transform + pos: -11.5,44.5 + parent: 8364 + - uid: 13685 + components: + - type: Transform + pos: -11.5,43.5 + parent: 8364 + - uid: 13686 + components: + - type: Transform + pos: -11.5,42.5 + parent: 8364 - uid: 13693 components: - type: Transform @@ -32868,6 +32444,56 @@ entities: - type: Transform pos: -58.5,15.5 parent: 8364 + - uid: 13702 + components: + - type: Transform + pos: -11.5,41.5 + parent: 8364 + - uid: 13703 + components: + - type: Transform + pos: -12.5,46.5 + parent: 8364 + - uid: 13704 + components: + - type: Transform + pos: -13.5,46.5 + parent: 8364 + - uid: 13705 + components: + - type: Transform + pos: -13.5,45.5 + parent: 8364 + - uid: 13706 + components: + - type: Transform + pos: -13.5,44.5 + parent: 8364 + - uid: 13707 + components: + - type: Transform + pos: -13.5,43.5 + parent: 8364 + - uid: 13708 + components: + - type: Transform + pos: -13.5,42.5 + parent: 8364 + - uid: 13709 + components: + - type: Transform + pos: -13.5,41.5 + parent: 8364 + - uid: 13734 + components: + - type: Transform + pos: -10.5,41.5 + parent: 8364 + - uid: 13735 + components: + - type: Transform + pos: -9.5,41.5 + parent: 8364 - uid: 13743 components: - type: Transform @@ -32908,6 +32534,51 @@ entities: - type: Transform pos: -53.5,5.5 parent: 8364 + - uid: 13815 + components: + - type: Transform + pos: -8.5,41.5 + parent: 8364 + - uid: 13816 + components: + - type: Transform + pos: -10.5,45.5 + parent: 8364 + - uid: 13817 + components: + - type: Transform + pos: -9.5,45.5 + parent: 8364 + - uid: 13818 + components: + - type: Transform + pos: -8.5,45.5 + parent: 8364 + - uid: 13819 + components: + - type: Transform + pos: -7.5,45.5 + parent: 8364 + - uid: 13820 + components: + - type: Transform + pos: -7.5,41.5 + parent: 8364 + - uid: 13826 + components: + - type: Transform + pos: -16.5,43.5 + parent: 8364 + - uid: 13845 + components: + - type: Transform + pos: -16.5,42.5 + parent: 8364 + - uid: 13854 + components: + - type: Transform + pos: -16.5,41.5 + parent: 8364 - uid: 13890 components: - type: Transform @@ -33458,6 +33129,11 @@ entities: - type: Transform pos: -37.5,-12.5 parent: 8364 + - uid: 14312 + components: + - type: Transform + pos: -16.5,44.5 + parent: 8364 - uid: 14316 components: - type: Transform @@ -34453,6 +34129,11 @@ entities: - type: Transform pos: 15.5,-71.5 parent: 8364 + - uid: 14921 + components: + - type: Transform + pos: -16.5,45.5 + parent: 8364 - uid: 14980 components: - type: Transform @@ -34723,6 +34404,11 @@ entities: - type: Transform pos: -15.5,-60.5 parent: 8364 + - uid: 15128 + components: + - type: Transform + pos: -16.5,46.5 + parent: 8364 - uid: 15130 components: - type: Transform @@ -39888,11 +39574,6 @@ entities: - type: Transform pos: 53.5,-63.5 parent: 8364 - - uid: 18568 - components: - - type: Transform - pos: -9.5,44.5 - parent: 8364 - uid: 18679 components: - type: Transform @@ -42968,6 +42649,71 @@ entities: - type: Transform pos: 8.5,-36.5 parent: 8364 + - uid: 22217 + components: + - type: Transform + pos: 1.5,50.5 + parent: 8364 + - uid: 22218 + components: + - type: Transform + pos: 0.5,50.5 + parent: 8364 + - uid: 22223 + components: + - type: Transform + pos: -0.5,50.5 + parent: 8364 + - uid: 22249 + components: + - type: Transform + pos: -1.5,50.5 + parent: 8364 + - uid: 22250 + components: + - type: Transform + pos: -1.5,49.5 + parent: 8364 + - uid: 22251 + components: + - type: Transform + pos: -1.5,48.5 + parent: 8364 + - uid: 22281 + components: + - type: Transform + pos: -1.5,47.5 + parent: 8364 + - uid: 22282 + components: + - type: Transform + pos: -1.5,46.5 + parent: 8364 + - uid: 22286 + components: + - type: Transform + pos: -1.5,45.5 + parent: 8364 + - uid: 22442 + components: + - type: Transform + pos: -1.5,44.5 + parent: 8364 + - uid: 22451 + components: + - type: Transform + pos: 1.5,47.5 + parent: 8364 + - uid: 22452 + components: + - type: Transform + pos: 1.5,46.5 + parent: 8364 + - uid: 22453 + components: + - type: Transform + pos: 1.5,45.5 + parent: 8364 - uid: 22460 components: - type: Transform @@ -43023,10 +42769,30 @@ entities: - type: Transform pos: -15.5,-71.5 parent: 8364 + - uid: 22639 + components: + - type: Transform + pos: -3.5,45.5 + parent: 8364 + - uid: 22708 + components: + - type: Transform + pos: -3.5,46.5 + parent: 8364 - uid: 22709 components: - type: Transform - pos: 17.5,31.5 + pos: -3.5,47.5 + parent: 8364 + - uid: 22710 + components: + - type: Transform + pos: -2.5,46.5 + parent: 8364 + - uid: 22711 + components: + - type: Transform + pos: -0.5,46.5 parent: 8364 - uid: 22818 components: @@ -43088,6 +42854,16 @@ entities: - type: Transform pos: -14.5,-71.5 parent: 8364 + - uid: 23083 + components: + - type: Transform + pos: 0.5,46.5 + parent: 8364 + - uid: 23135 + components: + - type: Transform + pos: 6.5,52.5 + parent: 8364 - uid: 23138 components: - type: Transform @@ -43103,175 +42879,1155 @@ entities: - type: Transform pos: -3.5,-13.5 parent: 8364 + - uid: 23258 + components: + - type: Transform + pos: 5.5,52.5 + parent: 8364 - uid: 23261 components: - type: Transform pos: 19.5,-55.5 parent: 8364 + - uid: 23479 + components: + - type: Transform + pos: 4.5,52.5 + parent: 8364 + - uid: 23480 + components: + - type: Transform + pos: 3.5,52.5 + parent: 8364 + - uid: 23483 + components: + - type: Transform + pos: 4.5,50.5 + parent: 8364 + - uid: 23484 + components: + - type: Transform + pos: 4.5,51.5 + parent: 8364 + - uid: 23485 + components: + - type: Transform + pos: 2.5,50.5 + parent: 8364 + - uid: 23537 + components: + - type: Transform + pos: 2.5,51.5 + parent: 8364 + - uid: 23717 + components: + - type: Transform + pos: 2.5,52.5 + parent: 8364 + - uid: 23905 + components: + - type: Transform + pos: 2.5,53.5 + parent: 8364 + - uid: 23938 + components: + - type: Transform + pos: 2.5,54.5 + parent: 8364 + - uid: 23940 + components: + - type: Transform + pos: 1.5,54.5 + parent: 8364 + - uid: 23942 + components: + - type: Transform + pos: 0.5,54.5 + parent: 8364 + - uid: 23943 + components: + - type: Transform + pos: -0.5,54.5 + parent: 8364 + - uid: 23944 + components: + - type: Transform + pos: -1.5,54.5 + parent: 8364 + - uid: 24262 + components: + - type: Transform + pos: 0.5,53.5 + parent: 8364 + - uid: 24263 + components: + - type: Transform + pos: 0.5,55.5 + parent: 8364 - uid: 24926 components: - type: Transform pos: -21.5,-75.5 parent: 8364 + - uid: 24929 + components: + - type: Transform + pos: 10.5,46.5 + parent: 8364 + - uid: 25002 + components: + - type: Transform + pos: 6.5,44.5 + parent: 8364 + - uid: 25003 + components: + - type: Transform + pos: 6.5,43.5 + parent: 8364 + - uid: 25004 + components: + - type: Transform + pos: 6.5,42.5 + parent: 8364 + - uid: 25005 + components: + - type: Transform + pos: 2.5,41.5 + parent: 8364 + - uid: 25040 + components: + - type: Transform + pos: 3.5,41.5 + parent: 8364 - uid: 25207 components: - type: Transform pos: 2.5,-14.5 parent: 8364 + - uid: 25233 + components: + - type: Transform + pos: 4.5,41.5 + parent: 8364 + - uid: 25234 + components: + - type: Transform + pos: 5.5,41.5 + parent: 8364 + - uid: 25235 + components: + - type: Transform + pos: 6.5,41.5 + parent: 8364 + - uid: 25236 + components: + - type: Transform + pos: 7.5,41.5 + parent: 8364 + - uid: 25237 + components: + - type: Transform + pos: 8.5,41.5 + parent: 8364 + - uid: 25238 + components: + - type: Transform + pos: 9.5,41.5 + parent: 8364 + - uid: 25239 + components: + - type: Transform + pos: 10.5,41.5 + parent: 8364 + - uid: 25240 + components: + - type: Transform + pos: 7.5,44.5 + parent: 8364 + - uid: 25243 + components: + - type: Transform + pos: 8.5,44.5 + parent: 8364 + - uid: 25244 + components: + - type: Transform + pos: 9.5,44.5 + parent: 8364 + - uid: 25272 + components: + - type: Transform + pos: 10.5,44.5 + parent: 8364 + - uid: 25273 + components: + - type: Transform + pos: 5.5,44.5 + parent: 8364 + - uid: 25274 + components: + - type: Transform + pos: 4.5,44.5 + parent: 8364 + - uid: 25275 + components: + - type: Transform + pos: 3.5,44.5 + parent: 8364 - uid: 25315 components: - type: Transform pos: -63.5,14.5 parent: 8364 - - uid: 25739 + - uid: 25375 components: - type: Transform - pos: -10.5,48.5 + pos: 3.5,45.5 parent: 8364 - - uid: 25740 + - uid: 25424 components: - type: Transform - pos: -11.5,48.5 + pos: 3.5,46.5 parent: 8364 - - uid: 25741 + - uid: 25425 components: - type: Transform - pos: -11.5,49.5 + pos: 3.5,47.5 parent: 8364 - - uid: 25995 + - uid: 25426 + components: + - type: Transform + pos: 3.5,48.5 + parent: 8364 + - uid: 25427 + components: + - type: Transform + pos: 9.5,45.5 + parent: 8364 + - uid: 25428 + components: + - type: Transform + pos: 9.5,46.5 + parent: 8364 + - uid: 25429 + components: + - type: Transform + pos: 9.5,47.5 + parent: 8364 + - uid: 25430 + components: + - type: Transform + pos: 9.5,48.5 + parent: 8364 + - uid: 25431 + components: + - type: Transform + pos: 9.5,49.5 + parent: 8364 + - uid: 25432 + components: + - type: Transform + pos: 9.5,50.5 + parent: 8364 + - uid: 25433 + components: + - type: Transform + pos: 10.5,49.5 + parent: 8364 + - uid: 25434 + components: + - type: Transform + pos: 11.5,49.5 + parent: 8364 + - uid: 25435 + components: + - type: Transform + pos: 12.5,49.5 + parent: 8364 + - uid: 25436 + components: + - type: Transform + pos: 13.5,49.5 + parent: 8364 + - uid: 25437 + components: + - type: Transform + pos: 14.5,49.5 + parent: 8364 + - uid: 25438 + components: + - type: Transform + pos: 15.5,49.5 + parent: 8364 + - uid: 25439 + components: + - type: Transform + pos: 16.5,49.5 + parent: 8364 + - uid: 25440 + components: + - type: Transform + pos: 17.5,49.5 + parent: 8364 + - uid: 25441 + components: + - type: Transform + pos: 14.5,52.5 + parent: 8364 + - uid: 25442 + components: + - type: Transform + pos: 15.5,52.5 + parent: 8364 + - uid: 25443 + components: + - type: Transform + pos: 16.5,52.5 + parent: 8364 + - uid: 25444 + components: + - type: Transform + pos: 17.5,52.5 + parent: 8364 + - uid: 25445 + components: + - type: Transform + pos: 17.5,46.5 + parent: 8364 + - uid: 25446 + components: + - type: Transform + pos: 16.5,46.5 + parent: 8364 + - uid: 25447 + components: + - type: Transform + pos: 15.5,46.5 + parent: 8364 + - uid: 25448 + components: + - type: Transform + pos: 14.5,46.5 + parent: 8364 + - uid: 25449 + components: + - type: Transform + pos: 15.5,47.5 + parent: 8364 + - uid: 25450 + components: + - type: Transform + pos: 15.5,48.5 + parent: 8364 + - uid: 25451 + components: + - type: Transform + pos: 15.5,50.5 + parent: 8364 + - uid: 25452 + components: + - type: Transform + pos: 15.5,51.5 + parent: 8364 + - uid: 25454 + components: + - type: Transform + pos: 9.5,51.5 + parent: 8364 + - uid: 25464 + components: + - type: Transform + pos: 5.5,32.5 + parent: 8364 + - uid: 25465 + components: + - type: Transform + pos: 4.5,32.5 + parent: 8364 + - uid: 25466 + components: + - type: Transform + pos: 3.5,32.5 + parent: 8364 + - uid: 25467 + components: + - type: Transform + pos: 3.5,31.5 + parent: 8364 + - uid: 25468 + components: + - type: Transform + pos: 3.5,30.5 + parent: 8364 + - uid: 25469 + components: + - type: Transform + pos: 4.5,30.5 + parent: 8364 + - uid: 25470 + components: + - type: Transform + pos: 5.5,30.5 + parent: 8364 + - uid: 25471 + components: + - type: Transform + pos: 6.5,30.5 + parent: 8364 + - uid: 25472 + components: + - type: Transform + pos: 7.5,30.5 + parent: 8364 + - uid: 25473 + components: + - type: Transform + pos: 8.5,30.5 + parent: 8364 + - uid: 25474 + components: + - type: Transform + pos: 3.5,33.5 + parent: 8364 + - uid: 25475 + components: + - type: Transform + pos: 3.5,34.5 + parent: 8364 + - uid: 25476 + components: + - type: Transform + pos: 3.5,35.5 + parent: 8364 + - uid: 25478 + components: + - type: Transform + pos: 0.5,39.5 + parent: 8364 + - uid: 25480 + components: + - type: Transform + pos: 0.5,38.5 + parent: 8364 + - uid: 25481 + components: + - type: Transform + pos: 0.5,37.5 + parent: 8364 + - uid: 25484 + components: + - type: Transform + pos: 1.5,22.5 + parent: 8364 + - uid: 25485 + components: + - type: Transform + pos: -0.5,30.5 + parent: 8364 + - uid: 25487 + components: + - type: Transform + pos: -0.5,31.5 + parent: 8364 + - uid: 25488 + components: + - type: Transform + pos: -0.5,32.5 + parent: 8364 + - uid: 25489 + components: + - type: Transform + pos: -0.5,33.5 + parent: 8364 + - uid: 25490 + components: + - type: Transform + pos: -0.5,34.5 + parent: 8364 + - uid: 25491 + components: + - type: Transform + pos: -0.5,35.5 + parent: 8364 + - uid: 25492 + components: + - type: Transform + pos: -0.5,36.5 + parent: 8364 + - uid: 25493 + components: + - type: Transform + pos: -0.5,37.5 + parent: 8364 + - uid: 25494 + components: + - type: Transform + pos: 1.5,37.5 + parent: 8364 + - uid: 25496 + components: + - type: Transform + pos: 2.5,37.5 + parent: 8364 + - uid: 25497 + components: + - type: Transform + pos: 3.5,37.5 + parent: 8364 + - uid: 25498 + components: + - type: Transform + pos: -1.5,37.5 + parent: 8364 + - uid: 25499 + components: + - type: Transform + pos: -2.5,37.5 + parent: 8364 + - uid: 25500 + components: + - type: Transform + pos: -3.5,37.5 + parent: 8364 + - uid: 25501 + components: + - type: Transform + pos: -4.5,37.5 + parent: 8364 + - uid: 25502 + components: + - type: Transform + pos: -5.5,37.5 + parent: 8364 + - uid: 25503 + components: + - type: Transform + pos: -6.5,37.5 + parent: 8364 + - uid: 25504 + components: + - type: Transform + pos: -7.5,37.5 + parent: 8364 + - uid: 25507 + components: + - type: Transform + pos: -8.5,37.5 + parent: 8364 + - uid: 25508 + components: + - type: Transform + pos: -9.5,37.5 + parent: 8364 + - uid: 25509 + components: + - type: Transform + pos: -10.5,37.5 + parent: 8364 + - uid: 25510 + components: + - type: Transform + pos: -11.5,37.5 + parent: 8364 + - uid: 25511 + components: + - type: Transform + pos: -12.5,37.5 + parent: 8364 + - uid: 25512 + components: + - type: Transform + pos: -13.5,37.5 + parent: 8364 + - uid: 25513 + components: + - type: Transform + pos: -14.5,37.5 + parent: 8364 + - uid: 25514 + components: + - type: Transform + pos: -15.5,37.5 + parent: 8364 + - uid: 25515 + components: + - type: Transform + pos: -16.5,37.5 + parent: 8364 + - uid: 25516 + components: + - type: Transform + pos: -17.5,37.5 + parent: 8364 + - uid: 25518 + components: + - type: Transform + pos: -14.5,36.5 + parent: 8364 + - uid: 25519 + components: + - type: Transform + pos: -14.5,35.5 + parent: 8364 + - uid: 25520 + components: + - type: Transform + pos: -14.5,34.5 + parent: 8364 + - uid: 25521 + components: + - type: Transform + pos: -14.5,33.5 + parent: 8364 + - uid: 25522 + components: + - type: Transform + pos: -15.5,33.5 + parent: 8364 + - uid: 25523 + components: + - type: Transform + pos: -16.5,33.5 + parent: 8364 + - uid: 25524 + components: + - type: Transform + pos: -11.5,32.5 + parent: 8364 + - uid: 25525 + components: + - type: Transform + pos: -6.5,28.5 + parent: 8364 + - uid: 25526 + components: + - type: Transform + pos: -11.5,33.5 + parent: 8364 + - uid: 25527 + components: + - type: Transform + pos: -11.5,34.5 + parent: 8364 + - uid: 25528 + components: + - type: Transform + pos: -11.5,31.5 + parent: 8364 + - uid: 25529 + components: + - type: Transform + pos: -7.5,27.5 + parent: 8364 + - uid: 25546 + components: + - type: Transform + pos: -10.5,32.5 + parent: 8364 + - uid: 25548 + components: + - type: Transform + pos: -9.5,35.5 + parent: 8364 + - uid: 25549 + components: + - type: Transform + pos: -4.5,35.5 + parent: 8364 + - uid: 25550 + components: + - type: Transform + pos: -8.5,34.5 + parent: 8364 + - uid: 25551 + components: + - type: Transform + pos: -7.5,29.5 + parent: 8364 + - uid: 25552 + components: + - type: Transform + pos: -4.5,34.5 + parent: 8364 + - uid: 25553 + components: + - type: Transform + pos: -8.5,35.5 + parent: 8364 + - uid: 25554 + components: + - type: Transform + pos: -9.5,27.5 + parent: 8364 + - uid: 25555 + components: + - type: Transform + pos: -10.5,27.5 + parent: 8364 + - uid: 25556 + components: + - type: Transform + pos: -11.5,27.5 + parent: 8364 + - uid: 25557 + components: + - type: Transform + pos: -12.5,27.5 + parent: 8364 + - uid: 25558 + components: + - type: Transform + pos: -13.5,27.5 + parent: 8364 + - uid: 25559 + components: + - type: Transform + pos: -14.5,27.5 + parent: 8364 + - uid: 25560 + components: + - type: Transform + pos: -8.5,27.5 + parent: 8364 + - uid: 25561 + components: + - type: Transform + pos: -8.5,29.5 + parent: 8364 + - uid: 25562 + components: + - type: Transform + pos: -6.5,27.5 + parent: 8364 + - uid: 25564 + components: + - type: Transform + pos: -0.5,19.5 + parent: 8364 + - uid: 25565 + components: + - type: Transform + pos: -0.5,20.5 + parent: 8364 + - uid: 25566 + components: + - type: Transform + pos: -0.5,21.5 + parent: 8364 + - uid: 25567 + components: + - type: Transform + pos: -0.5,22.5 + parent: 8364 + - uid: 25568 + components: + - type: Transform + pos: 0.5,22.5 + parent: 8364 + - uid: 25569 + components: + - type: Transform + pos: -14.5,29.5 + parent: 8364 + - uid: 25570 + components: + - type: Transform + pos: -13.5,29.5 + parent: 8364 + - uid: 25571 + components: + - type: Transform + pos: -12.5,29.5 + parent: 8364 + - uid: 25572 + components: + - type: Transform + pos: -11.5,30.5 + parent: 8364 + - uid: 25573 + components: + - type: Transform + pos: -11.5,29.5 + parent: 8364 + - uid: 25574 + components: + - type: Transform + pos: -9.5,31.5 + parent: 8364 + - uid: 25575 + components: + - type: Transform + pos: -9.5,32.5 + parent: 8364 + - uid: 25576 + components: + - type: Transform + pos: -9.5,33.5 + parent: 8364 + - uid: 25577 + components: + - type: Transform + pos: -8.5,33.5 + parent: 8364 + - uid: 25578 + components: + - type: Transform + pos: -7.5,33.5 + parent: 8364 + - uid: 25579 + components: + - type: Transform + pos: -6.5,33.5 + parent: 8364 + - uid: 25580 + components: + - type: Transform + pos: -5.5,33.5 + parent: 8364 + - uid: 25581 + components: + - type: Transform + pos: -4.5,33.5 + parent: 8364 + - uid: 25582 + components: + - type: Transform + pos: -7.5,31.5 + parent: 8364 + - uid: 25583 + components: + - type: Transform + pos: -4.5,32.5 + parent: 8364 + - uid: 25584 + components: + - type: Transform + pos: -4.5,31.5 + parent: 8364 + - uid: 25585 + components: + - type: Transform + pos: -4.5,30.5 + parent: 8364 + - uid: 25586 + components: + - type: Transform + pos: -8.5,31.5 + parent: 8364 + - uid: 25587 + components: + - type: Transform + pos: -7.5,30.5 + parent: 8364 + - uid: 25598 + components: + - type: Transform + pos: -11.5,28.5 + parent: 8364 + - uid: 25599 + components: + - type: Transform + pos: -6.5,26.5 + parent: 8364 + - uid: 25600 + components: + - type: Transform + pos: -8.5,28.5 + parent: 8364 + - uid: 25604 + components: + - type: Transform + pos: -3.5,52.5 + parent: 8364 + - uid: 25605 + components: + - type: Transform + pos: -4.5,52.5 + parent: 8364 + - uid: 25606 + components: + - type: Transform + pos: -5.5,52.5 + parent: 8364 + - uid: 25607 + components: + - type: Transform + pos: -6.5,52.5 + parent: 8364 + - uid: 25608 + components: + - type: Transform + pos: -7.5,52.5 + parent: 8364 + - uid: 25609 + components: + - type: Transform + pos: -7.5,51.5 + parent: 8364 + - uid: 25610 + components: + - type: Transform + pos: -7.5,50.5 + parent: 8364 + - uid: 25611 + components: + - type: Transform + pos: -8.5,51.5 + parent: 8364 + - uid: 25612 + components: + - type: Transform + pos: -9.5,51.5 + parent: 8364 + - uid: 25613 + components: + - type: Transform + pos: -10.5,51.5 + parent: 8364 + - uid: 25614 + components: + - type: Transform + pos: -11.5,51.5 + parent: 8364 + - uid: 25615 components: - type: Transform pos: -12.5,51.5 parent: 8364 - - uid: 25996 + - uid: 25616 components: - type: Transform pos: -13.5,51.5 parent: 8364 - - uid: 25997 + - uid: 25617 + components: + - type: Transform + pos: -5.5,53.5 + parent: 8364 + - uid: 25618 + components: + - type: Transform + pos: -5.5,54.5 + parent: 8364 + - uid: 25619 + components: + - type: Transform + pos: -5.5,55.5 + parent: 8364 + - uid: 25620 + components: + - type: Transform + pos: -5.5,51.5 + parent: 8364 + - uid: 25621 + components: + - type: Transform + pos: -5.5,50.5 + parent: 8364 + - uid: 25622 + components: + - type: Transform + pos: -5.5,49.5 + parent: 8364 + - uid: 25623 + components: + - type: Transform + pos: -5.5,48.5 + parent: 8364 + - uid: 25624 + components: + - type: Transform + pos: -5.5,47.5 + parent: 8364 + - uid: 25625 + components: + - type: Transform + pos: -5.5,46.5 + parent: 8364 + - uid: 25626 + components: + - type: Transform + pos: -5.5,45.5 + parent: 8364 + - uid: 25627 + components: + - type: Transform + pos: -5.5,44.5 + parent: 8364 + - uid: 25628 + components: + - type: Transform + pos: -5.5,43.5 + parent: 8364 + - uid: 25629 + components: + - type: Transform + pos: -5.5,42.5 + parent: 8364 + - uid: 25630 + components: + - type: Transform + pos: -5.5,41.5 + parent: 8364 + - uid: 25631 + components: + - type: Transform + pos: -5.5,40.5 + parent: 8364 + - uid: 25632 + components: + - type: Transform + pos: -1.5,41.5 + parent: 8364 + - uid: 25633 components: - type: Transform pos: -14.5,51.5 parent: 8364 + - uid: 25634 + components: + - type: Transform + pos: -15.5,51.5 + parent: 8364 + - uid: 25654 + components: + - type: Transform + pos: -0.5,27.5 + parent: 8364 + - uid: 25655 + components: + - type: Transform + pos: -0.5,28.5 + parent: 8364 + - uid: 25656 + components: + - type: Transform + pos: -1.5,27.5 + parent: 8364 + - uid: 25657 + components: + - type: Transform + pos: -2.5,27.5 + parent: 8364 + - uid: 25658 + components: + - type: Transform + pos: -3.5,27.5 + parent: 8364 + - uid: 25659 + components: + - type: Transform + pos: 0.5,20.5 + parent: 8364 + - uid: 25660 + components: + - type: Transform + pos: 1.5,20.5 + parent: 8364 + - uid: 25661 + components: + - type: Transform + pos: 2.5,20.5 + parent: 8364 + - uid: 25662 + components: + - type: Transform + pos: 3.5,20.5 + parent: 8364 + - uid: 25663 + components: + - type: Transform + pos: 4.5,20.5 + parent: 8364 + - uid: 25664 + components: + - type: Transform + pos: 5.5,20.5 + parent: 8364 + - uid: 25665 + components: + - type: Transform + pos: 6.5,20.5 + parent: 8364 + - uid: 25666 + components: + - type: Transform + pos: 7.5,20.5 + parent: 8364 + - uid: 25667 + components: + - type: Transform + pos: 9.5,20.5 + parent: 8364 + - uid: 25668 + components: + - type: Transform + pos: 10.5,20.5 + parent: 8364 + - uid: 25669 + components: + - type: Transform + pos: 8.5,20.5 + parent: 8364 + - uid: 25670 + components: + - type: Transform + pos: 3.5,21.5 + parent: 8364 + - uid: 25671 + components: + - type: Transform + pos: 3.5,22.5 + parent: 8364 + - uid: 25672 + components: + - type: Transform + pos: 3.5,23.5 + parent: 8364 + - uid: 25673 + components: + - type: Transform + pos: 3.5,24.5 + parent: 8364 + - uid: 25674 + components: + - type: Transform + pos: 3.5,25.5 + parent: 8364 + - uid: 25675 + components: + - type: Transform + pos: 3.5,26.5 + parent: 8364 + - uid: 25706 + components: + - type: Transform + pos: -15.5,42.5 + parent: 8364 + - uid: 25758 + components: + - type: Transform + pos: -1.5,40.5 + parent: 8364 + - uid: 25761 + components: + - type: Transform + pos: -1.5,39.5 + parent: 8364 + - uid: 25762 + components: + - type: Transform + pos: -1.5,38.5 + parent: 8364 - uid: 26100 components: - type: Transform pos: 9.5,-75.5 parent: 8364 - - uid: 26137 + - uid: 26475 components: - type: Transform - pos: -12.5,49.5 - parent: 8364 - - uid: 26138 - components: - - type: Transform - pos: -13.5,49.5 - parent: 8364 - - uid: 26139 - components: - - type: Transform - pos: -14.5,49.5 - parent: 8364 - - uid: 26140 - components: - - type: Transform - pos: -15.5,49.5 - parent: 8364 - - uid: 26141 - components: - - type: Transform - pos: -6.5,50.5 - parent: 8364 - - uid: 26142 - components: - - type: Transform - pos: -5.5,50.5 - parent: 8364 - - uid: 26143 - components: - - type: Transform - pos: 0.5,52.5 - parent: 8364 - - uid: 26144 - components: - - type: Transform - pos: 0.5,51.5 - parent: 8364 - - uid: 26145 - components: - - type: Transform - pos: 0.5,50.5 - parent: 8364 - - uid: 26146 - components: - - type: Transform - pos: 0.5,49.5 - parent: 8364 - - uid: 26147 - components: - - type: Transform - pos: 0.5,48.5 - parent: 8364 - - uid: 26148 - components: - - type: Transform - pos: 0.5,47.5 - parent: 8364 - - uid: 26149 - components: - - type: Transform - pos: -0.5,50.5 - parent: 8364 - - uid: 26150 - components: - - type: Transform - pos: -1.5,50.5 - parent: 8364 - - uid: 26151 - components: - - type: Transform - pos: -1.5,49.5 - parent: 8364 - - uid: 26152 - components: - - type: Transform - pos: -1.5,48.5 - parent: 8364 - - uid: 26153 - components: - - type: Transform - pos: -1.5,47.5 - parent: 8364 - - uid: 26154 - components: - - type: Transform - pos: 1.5,50.5 - parent: 8364 - - uid: 26155 - components: - - type: Transform - pos: 2.5,50.5 - parent: 8364 - - uid: 26156 - components: - - type: Transform - pos: 3.5,50.5 - parent: 8364 - - uid: 26157 - components: - - type: Transform - pos: 3.5,49.5 - parent: 8364 - - uid: 26158 - components: - - type: Transform - pos: 3.5,48.5 - parent: 8364 - - uid: 26159 - components: - - type: Transform - pos: 3.5,47.5 + pos: 11.5,26.5 parent: 8364 - uid: 26620 components: @@ -43808,16 +44564,6 @@ entities: - type: Transform pos: 60.5,-69.5 parent: 8364 - - uid: 27934 - components: - - type: Transform - pos: 13.5,34.5 - parent: 8364 - - uid: 27935 - components: - - type: Transform - pos: 12.5,34.5 - parent: 8364 - uid: 27971 components: - type: Transform @@ -43998,75 +44744,105 @@ entities: - type: Transform pos: 47.5,-28.5 parent: 8364 - - uid: 28342 + - uid: 28503 components: - type: Transform - pos: 1.5,36.5 + pos: -15.5,45.5 parent: 8364 - - uid: 28343 + - uid: 28539 components: - type: Transform - pos: 1.5,35.5 + pos: 12.5,44.5 parent: 8364 - - uid: 28344 + - uid: 28540 components: - type: Transform - pos: 1.5,34.5 + pos: 12.5,43.5 parent: 8364 - - uid: 28345 + - uid: 28541 components: - type: Transform - pos: 1.5,33.5 + pos: 12.5,42.5 parent: 8364 - - uid: 28346 + - uid: 28542 components: - type: Transform - pos: 1.5,32.5 + pos: 12.5,41.5 parent: 8364 - - uid: 28347 + - uid: 28543 components: - type: Transform - pos: 1.5,38.5 + pos: 6.5,53.5 parent: 8364 - - uid: 28348 + - uid: 28544 components: - type: Transform - pos: 1.5,39.5 + pos: 6.5,54.5 parent: 8364 - - uid: 28349 + - uid: 28545 components: - type: Transform - pos: 1.5,40.5 + pos: 11.5,41.5 parent: 8364 - - uid: 28350 + - uid: 28546 components: - type: Transform - pos: 1.5,41.5 + pos: 6.5,55.5 parent: 8364 - - uid: 28351 + - uid: 28563 components: - type: Transform - pos: 0.5,41.5 + pos: -27.5,45.5 parent: 8364 - - uid: 28352 + - uid: 28564 components: - type: Transform - pos: -0.5,41.5 + pos: -27.5,46.5 parent: 8364 - - uid: 28353 + - uid: 28565 components: - type: Transform - pos: -1.5,41.5 + pos: -29.5,33.5 parent: 8364 - - uid: 28354 + - uid: 28567 components: - type: Transform - pos: 2.5,41.5 + pos: -29.5,32.5 parent: 8364 - - uid: 28355 + - uid: 28568 components: - type: Transform - pos: 3.5,41.5 + pos: -20.5,20.5 + parent: 8364 + - uid: 28569 + components: + - type: Transform + pos: -21.5,20.5 + parent: 8364 + - uid: 28581 + components: + - type: Transform + pos: -16.5,47.5 + parent: 8364 + - uid: 28582 + components: + - type: Transform + pos: -17.5,47.5 + parent: 8364 + - uid: 28601 + components: + - type: Transform + pos: -6.5,30.5 + parent: 8364 + - uid: 28608 + components: + - type: Transform + pos: -20.5,19.5 + parent: 8364 + - uid: 28609 + components: + - type: Transform + pos: -18.5,21.5 parent: 8364 - proto: CableApcStack entities: @@ -44180,11 +44956,31 @@ entities: parent: 8364 - proto: CableHV entities: + - uid: 9 + components: + - type: Transform + pos: -18.5,11.5 + parent: 8364 + - uid: 43 + components: + - type: Transform + pos: -18.5,13.5 + parent: 8364 + - uid: 47 + components: + - type: Transform + pos: -18.5,12.5 + parent: 8364 - uid: 121 components: - type: Transform pos: -11.5,-74.5 parent: 8364 + - uid: 394 + components: + - type: Transform + pos: -18.5,18.5 + parent: 8364 - uid: 910 components: - type: Transform @@ -45035,11 +45831,6 @@ entities: - type: Transform pos: -18.5,-49.5 parent: 8364 - - uid: 6268 - components: - - type: Transform - pos: 23.5,22.5 - parent: 8364 - uid: 6270 components: - type: Transform @@ -45240,56 +46031,11 @@ entities: - type: Transform pos: -17.5,-68.5 parent: 8364 - - uid: 6329 - components: - - type: Transform - pos: 19.5,17.5 - parent: 8364 - - uid: 6330 - components: - - type: Transform - pos: 20.5,17.5 - parent: 8364 - - uid: 6331 - components: - - type: Transform - pos: 21.5,17.5 - parent: 8364 - - uid: 6332 - components: - - type: Transform - pos: 21.5,18.5 - parent: 8364 - - uid: 6333 - components: - - type: Transform - pos: 21.5,19.5 - parent: 8364 - - uid: 6334 - components: - - type: Transform - pos: 21.5,20.5 - parent: 8364 - - uid: 6335 - components: - - type: Transform - pos: 21.5,21.5 - parent: 8364 - - uid: 6336 - components: - - type: Transform - pos: 21.5,22.5 - parent: 8364 - uid: 6337 components: - type: Transform pos: -18.5,-68.5 parent: 8364 - - uid: 6338 - components: - - type: Transform - pos: 23.5,22.5 - parent: 8364 - uid: 6339 components: - type: Transform @@ -46015,10 +46761,30 @@ entities: - type: Transform pos: -6.5,-62.5 parent: 8364 - - uid: 7201 + - uid: 7202 components: - type: Transform - pos: 24.5,22.5 + pos: -5.5,12.5 + parent: 8364 + - uid: 7223 + components: + - type: Transform + pos: -1.5,12.5 + parent: 8364 + - uid: 7343 + components: + - type: Transform + pos: -4.5,12.5 + parent: 8364 + - uid: 7344 + components: + - type: Transform + pos: -2.5,12.5 + parent: 8364 + - uid: 7345 + components: + - type: Transform + pos: -0.5,12.5 parent: 8364 - uid: 7367 components: @@ -46075,220 +46841,50 @@ entities: - type: Transform pos: -18.5,-60.5 parent: 8364 - - uid: 7615 + - uid: 7729 components: - type: Transform - pos: 23.5,23.5 + pos: -3.5,12.5 parent: 8364 - - uid: 8434 + - uid: 7779 components: - type: Transform - pos: 16.5,30.5 + pos: -18.5,19.5 parent: 8364 - - uid: 8466 + - uid: 7976 components: - type: Transform - pos: 0.5,26.5 - parent: 8364 - - uid: 8488 - components: - - type: Transform - pos: -0.5,26.5 - parent: 8364 - - uid: 8489 - components: - - type: Transform - pos: -1.5,26.5 - parent: 8364 - - uid: 8491 - components: - - type: Transform - pos: 2.5,26.5 - parent: 8364 - - uid: 8493 - components: - - type: Transform - pos: -12.5,26.5 - parent: 8364 - - uid: 8494 - components: - - type: Transform - pos: 21.5,23.5 - parent: 8364 - - uid: 8495 - components: - - type: Transform - pos: 21.5,24.5 - parent: 8364 - - uid: 8496 - components: - - type: Transform - pos: 21.5,25.5 - parent: 8364 - - uid: 8497 - components: - - type: Transform - pos: 21.5,26.5 - parent: 8364 - - uid: 8498 - components: - - type: Transform - pos: 21.5,27.5 - parent: 8364 - - uid: 8499 - components: - - type: Transform - pos: 21.5,28.5 - parent: 8364 - - uid: 8500 - components: - - type: Transform - pos: 21.5,29.5 - parent: 8364 - - uid: 8501 - components: - - type: Transform - pos: 21.5,30.5 - parent: 8364 - - uid: 8502 - components: - - type: Transform - pos: 20.5,30.5 - parent: 8364 - - uid: 8503 - components: - - type: Transform - pos: 19.5,30.5 - parent: 8364 - - uid: 8504 - components: - - type: Transform - pos: 18.5,30.5 - parent: 8364 - - uid: 8505 - components: - - type: Transform - pos: 17.5,30.5 - parent: 8364 - - uid: 8507 - components: - - type: Transform - pos: 15.5,30.5 - parent: 8364 - - uid: 8508 - components: - - type: Transform - pos: 14.5,30.5 - parent: 8364 - - uid: 8509 - components: - - type: Transform - pos: 13.5,30.5 - parent: 8364 - - uid: 8510 - components: - - type: Transform - pos: 12.5,30.5 - parent: 8364 - - uid: 8511 - components: - - type: Transform - pos: 11.5,30.5 - parent: 8364 - - uid: 8512 - components: - - type: Transform - pos: 10.5,30.5 - parent: 8364 - - uid: 8513 - components: - - type: Transform - pos: 9.5,30.5 - parent: 8364 - - uid: 8514 - components: - - type: Transform - pos: 8.5,30.5 - parent: 8364 - - uid: 8516 - components: - - type: Transform - pos: 7.5,30.5 - parent: 8364 - - uid: 8517 - components: - - type: Transform - pos: 7.5,29.5 - parent: 8364 - - uid: 8518 - components: - - type: Transform - pos: 7.5,28.5 - parent: 8364 - - uid: 8519 - components: - - type: Transform - pos: 7.5,27.5 - parent: 8364 - - uid: 8520 - components: - - type: Transform - pos: 6.5,26.5 - parent: 8364 - - uid: 8521 - components: - - type: Transform - pos: 4.5,26.5 - parent: 8364 - - uid: 8522 - components: - - type: Transform - pos: 3.5,26.5 - parent: 8364 - - uid: 8523 - components: - - type: Transform - pos: -4.5,26.5 - parent: 8364 - - uid: 8525 - components: - - type: Transform - pos: -9.5,26.5 - parent: 8364 - - uid: 8527 - components: - - type: Transform - pos: -11.5,26.5 - parent: 8364 - - uid: 8528 - components: - - type: Transform - pos: -8.5,26.5 - parent: 8364 - - uid: 8529 - components: - - type: Transform - pos: -7.5,26.5 - parent: 8364 - - uid: 8530 - components: - - type: Transform - pos: -5.5,26.5 - parent: 8364 - - uid: 8532 - components: - - type: Transform - pos: -3.5,26.5 + pos: -8.5,11.5 parent: 8364 - uid: 8578 components: - type: Transform pos: 31.5,-38.5 parent: 8364 - - uid: 8885 + - uid: 8711 components: - type: Transform - pos: -13.5,26.5 + pos: -6.5,12.5 + parent: 8364 + - uid: 8736 + components: + - type: Transform + pos: -18.5,16.5 + parent: 8364 + - uid: 8737 + components: + - type: Transform + pos: -18.5,14.5 + parent: 8364 + - uid: 8740 + components: + - type: Transform + pos: -18.5,17.5 + parent: 8364 + - uid: 8823 + components: + - type: Transform + pos: -18.5,15.5 parent: 8364 - uid: 8886 components: @@ -46310,11 +46906,6 @@ entities: - type: Transform pos: -18.5,-54.5 parent: 8364 - - uid: 8891 - components: - - type: Transform - pos: 5.5,26.5 - parent: 8364 - uid: 8892 components: - type: Transform @@ -46325,10 +46916,150 @@ entities: - type: Transform pos: -15.5,-66.5 parent: 8364 - - uid: 8907 + - uid: 8941 components: - type: Transform - pos: 7.5,26.5 + pos: -8.5,12.5 + parent: 8364 + - uid: 8947 + components: + - type: Transform + pos: -7.5,12.5 + parent: 8364 + - uid: 9276 + components: + - type: Transform + pos: 16.5,18.5 + parent: 8364 + - uid: 9277 + components: + - type: Transform + pos: 16.5,19.5 + parent: 8364 + - uid: 9278 + components: + - type: Transform + pos: 16.5,20.5 + parent: 8364 + - uid: 9279 + components: + - type: Transform + pos: 16.5,21.5 + parent: 8364 + - uid: 9280 + components: + - type: Transform + pos: 16.5,22.5 + parent: 8364 + - uid: 9281 + components: + - type: Transform + pos: 16.5,23.5 + parent: 8364 + - uid: 9282 + components: + - type: Transform + pos: 16.5,24.5 + parent: 8364 + - uid: 9283 + components: + - type: Transform + pos: 16.5,25.5 + parent: 8364 + - uid: 9284 + components: + - type: Transform + pos: 16.5,26.5 + parent: 8364 + - uid: 9285 + components: + - type: Transform + pos: 16.5,27.5 + parent: 8364 + - uid: 9286 + components: + - type: Transform + pos: 16.5,28.5 + parent: 8364 + - uid: 9287 + components: + - type: Transform + pos: 16.5,29.5 + parent: 8364 + - uid: 9288 + components: + - type: Transform + pos: 15.5,29.5 + parent: 8364 + - uid: 9289 + components: + - type: Transform + pos: 15.5,30.5 + parent: 8364 + - uid: 9290 + components: + - type: Transform + pos: 15.5,31.5 + parent: 8364 + - uid: 9291 + components: + - type: Transform + pos: 15.5,32.5 + parent: 8364 + - uid: 9292 + components: + - type: Transform + pos: 15.5,33.5 + parent: 8364 + - uid: 9293 + components: + - type: Transform + pos: 15.5,34.5 + parent: 8364 + - uid: 9294 + components: + - type: Transform + pos: 14.5,34.5 + parent: 8364 + - uid: 9295 + components: + - type: Transform + pos: 13.5,34.5 + parent: 8364 + - uid: 9296 + components: + - type: Transform + pos: 12.5,34.5 + parent: 8364 + - uid: 9297 + components: + - type: Transform + pos: 11.5,34.5 + parent: 8364 + - uid: 9298 + components: + - type: Transform + pos: 10.5,34.5 + parent: 8364 + - uid: 9299 + components: + - type: Transform + pos: 9.5,34.5 + parent: 8364 + - uid: 9300 + components: + - type: Transform + pos: 8.5,34.5 + parent: 8364 + - uid: 9301 + components: + - type: Transform + pos: 7.5,34.5 + parent: 8364 + - uid: 9302 + components: + - type: Transform + pos: 6.5,34.5 parent: 8364 - uid: 9462 components: @@ -46575,21 +47306,6 @@ entities: - type: Transform pos: 75.5,-83.5 parent: 8364 - - uid: 9842 - components: - - type: Transform - pos: 23.5,24.5 - parent: 8364 - - uid: 9858 - components: - - type: Transform - pos: 22.5,25.5 - parent: 8364 - - uid: 9859 - components: - - type: Transform - pos: 23.5,25.5 - parent: 8364 - uid: 9938 components: - type: Transform @@ -46705,101 +47421,6 @@ entities: - type: Transform pos: -16.5,11.5 parent: 8364 - - uid: 10140 - components: - - type: Transform - pos: -16.5,12.5 - parent: 8364 - - uid: 10141 - components: - - type: Transform - pos: -16.5,13.5 - parent: 8364 - - uid: 10142 - components: - - type: Transform - pos: -16.5,14.5 - parent: 8364 - - uid: 10143 - components: - - type: Transform - pos: -16.5,15.5 - parent: 8364 - - uid: 10144 - components: - - type: Transform - pos: -16.5,16.5 - parent: 8364 - - uid: 10145 - components: - - type: Transform - pos: -16.5,17.5 - parent: 8364 - - uid: 10146 - components: - - type: Transform - pos: -16.5,18.5 - parent: 8364 - - uid: 10147 - components: - - type: Transform - pos: -16.5,19.5 - parent: 8364 - - uid: 10148 - components: - - type: Transform - pos: -17.5,20.5 - parent: 8364 - - uid: 10149 - components: - - type: Transform - pos: -17.5,19.5 - parent: 8364 - - uid: 10150 - components: - - type: Transform - pos: -17.5,21.5 - parent: 8364 - - uid: 10151 - components: - - type: Transform - pos: -17.5,22.5 - parent: 8364 - - uid: 10152 - components: - - type: Transform - pos: -16.5,23.5 - parent: 8364 - - uid: 10153 - components: - - type: Transform - pos: -17.5,23.5 - parent: 8364 - - uid: 10154 - components: - - type: Transform - pos: -15.5,23.5 - parent: 8364 - - uid: 10155 - components: - - type: Transform - pos: -13.5,23.5 - parent: 8364 - - uid: 10156 - components: - - type: Transform - pos: -14.5,23.5 - parent: 8364 - - uid: 10157 - components: - - type: Transform - pos: -13.5,24.5 - parent: 8364 - - uid: 10158 - components: - - type: Transform - pos: -13.5,25.5 - parent: 8364 - uid: 10159 components: - type: Transform @@ -47360,11 +47981,6 @@ entities: - type: Transform pos: 31.5,3.5 parent: 8364 - - uid: 10299 - components: - - type: Transform - pos: 24.5,22.5 - parent: 8364 - uid: 10300 components: - type: Transform @@ -48450,6 +49066,11 @@ entities: - type: Transform pos: -43.5,12.5 parent: 8364 + - uid: 13407 + components: + - type: Transform + pos: -9.5,-86.5 + parent: 8364 - uid: 13442 components: - type: Transform @@ -48485,46 +49106,6 @@ entities: - type: Transform pos: -9.5,11.5 parent: 8364 - - uid: 13702 - components: - - type: Transform - pos: -8.5,11.5 - parent: 8364 - - uid: 13703 - components: - - type: Transform - pos: -7.5,11.5 - parent: 8364 - - uid: 13704 - components: - - type: Transform - pos: -6.5,11.5 - parent: 8364 - - uid: 13705 - components: - - type: Transform - pos: -5.5,11.5 - parent: 8364 - - uid: 13706 - components: - - type: Transform - pos: -4.5,11.5 - parent: 8364 - - uid: 13707 - components: - - type: Transform - pos: -3.5,11.5 - parent: 8364 - - uid: 13708 - components: - - type: Transform - pos: -2.5,11.5 - parent: 8364 - - uid: 13709 - components: - - type: Transform - pos: -1.5,11.5 - parent: 8364 - uid: 13710 components: - type: Transform @@ -48645,16 +49226,6 @@ entities: - type: Transform pos: 16.5,17.5 parent: 8364 - - uid: 13734 - components: - - type: Transform - pos: 17.5,17.5 - parent: 8364 - - uid: 13735 - components: - - type: Transform - pos: 18.5,17.5 - parent: 8364 - uid: 13996 components: - type: Transform @@ -48675,6 +49246,11 @@ entities: - type: Transform pos: -20.5,-73.5 parent: 8364 + - uid: 14507 + components: + - type: Transform + pos: -7.5,-86.5 + parent: 8364 - uid: 14600 components: - type: Transform @@ -48730,6 +49306,11 @@ entities: - type: Transform pos: 15.5,-80.5 parent: 8364 + - uid: 15342 + components: + - type: Transform + pos: 7.5,-86.5 + parent: 8364 - uid: 15344 components: - type: Transform @@ -48750,6 +49331,11 @@ entities: - type: Transform pos: -6.5,-50.5 parent: 8364 + - uid: 15721 + components: + - type: Transform + pos: 8.5,-85.5 + parent: 8364 - uid: 15804 components: - type: Transform @@ -50485,6 +51071,11 @@ entities: - type: Transform pos: 81.5,-68.5 parent: 8364 + - uid: 22224 + components: + - type: Transform + pos: 6.5,-86.5 + parent: 8364 - uid: 22337 components: - type: Transform @@ -50550,26 +51141,6 @@ entities: - type: Transform pos: -2.5,-13.5 parent: 8364 - - uid: 25611 - components: - - type: Transform - pos: -2.5,26.5 - parent: 8364 - - uid: 25612 - components: - - type: Transform - pos: 1.5,26.5 - parent: 8364 - - uid: 25613 - components: - - type: Transform - pos: -6.5,26.5 - parent: 8364 - - uid: 25614 - components: - - type: Transform - pos: -10.5,26.5 - parent: 8364 - uid: 25839 components: - type: Transform @@ -50655,291 +51226,16 @@ entities: - type: Transform pos: -9.5,-85.5 parent: 8364 - - uid: 26025 - components: - - type: Transform - pos: -9.5,-86.5 - parent: 8364 - - uid: 26026 - components: - - type: Transform - pos: -9.5,-87.5 - parent: 8364 - - uid: 26027 - components: - - type: Transform - pos: -8.5,-85.5 - parent: 8364 - uid: 26028 components: - type: Transform pos: -8.5,-86.5 parent: 8364 - - uid: 26029 - components: - - type: Transform - pos: 8.5,-87.5 - parent: 8364 - - uid: 26030 - components: - - type: Transform - pos: 7.5,-87.5 - parent: 8364 - - uid: 26054 - components: - - type: Transform - pos: 7.5,-85.5 - parent: 8364 - - uid: 26062 - components: - - type: Transform - pos: 7.5,-86.5 - parent: 8364 - uid: 26084 components: - type: Transform pos: -15.5,-74.5 parent: 8364 - - uid: 26124 - components: - - type: Transform - pos: 8.5,-86.5 - parent: 8364 - - uid: 26299 - components: - - type: Transform - pos: -5.5,27.5 - parent: 8364 - - uid: 26300 - components: - - type: Transform - pos: -5.5,28.5 - parent: 8364 - - uid: 26301 - components: - - type: Transform - pos: -5.5,29.5 - parent: 8364 - - uid: 26302 - components: - - type: Transform - pos: -5.5,30.5 - parent: 8364 - - uid: 26303 - components: - - type: Transform - pos: -5.5,31.5 - parent: 8364 - - uid: 26304 - components: - - type: Transform - pos: -5.5,32.5 - parent: 8364 - - uid: 26305 - components: - - type: Transform - pos: -5.5,33.5 - parent: 8364 - - uid: 26306 - components: - - type: Transform - pos: -5.5,34.5 - parent: 8364 - - uid: 26307 - components: - - type: Transform - pos: -5.5,35.5 - parent: 8364 - - uid: 26308 - components: - - type: Transform - pos: -6.5,35.5 - parent: 8364 - - uid: 26309 - components: - - type: Transform - pos: -7.5,35.5 - parent: 8364 - - uid: 26310 - components: - - type: Transform - pos: -8.5,35.5 - parent: 8364 - - uid: 26311 - components: - - type: Transform - pos: -9.5,35.5 - parent: 8364 - - uid: 26312 - components: - - type: Transform - pos: -10.5,35.5 - parent: 8364 - - uid: 26313 - components: - - type: Transform - pos: -10.5,36.5 - parent: 8364 - - uid: 26314 - components: - - type: Transform - pos: -10.5,37.5 - parent: 8364 - - uid: 26315 - components: - - type: Transform - pos: -10.5,38.5 - parent: 8364 - - uid: 26316 - components: - - type: Transform - pos: -10.5,39.5 - parent: 8364 - - uid: 26317 - components: - - type: Transform - pos: -10.5,40.5 - parent: 8364 - - uid: 26318 - components: - - type: Transform - pos: -10.5,41.5 - parent: 8364 - - uid: 26319 - components: - - type: Transform - pos: -10.5,42.5 - parent: 8364 - - uid: 26320 - components: - - type: Transform - pos: -10.5,43.5 - parent: 8364 - - uid: 26321 - components: - - type: Transform - pos: -10.5,44.5 - parent: 8364 - - uid: 26322 - components: - - type: Transform - pos: -11.5,44.5 - parent: 8364 - - uid: 26323 - components: - - type: Transform - pos: -12.5,44.5 - parent: 8364 - - uid: 26324 - components: - - type: Transform - pos: -13.5,44.5 - parent: 8364 - - uid: 26325 - components: - - type: Transform - pos: -14.5,44.5 - parent: 8364 - - uid: 26326 - components: - - type: Transform - pos: -15.5,44.5 - parent: 8364 - - uid: 26327 - components: - - type: Transform - pos: -16.5,44.5 - parent: 8364 - - uid: 26328 - components: - - type: Transform - pos: -17.5,44.5 - parent: 8364 - - uid: 26329 - components: - - type: Transform - pos: -18.5,44.5 - parent: 8364 - - uid: 26330 - components: - - type: Transform - pos: -19.5,44.5 - parent: 8364 - - uid: 26331 - components: - - type: Transform - pos: -20.5,44.5 - parent: 8364 - - uid: 26332 - components: - - type: Transform - pos: -21.5,44.5 - parent: 8364 - - uid: 26333 - components: - - type: Transform - pos: -22.5,44.5 - parent: 8364 - - uid: 26334 - components: - - type: Transform - pos: -23.5,44.5 - parent: 8364 - - uid: 26335 - components: - - type: Transform - pos: -23.5,45.5 - parent: 8364 - - uid: 26336 - components: - - type: Transform - pos: -23.5,46.5 - parent: 8364 - - uid: 26337 - components: - - type: Transform - pos: -23.5,47.5 - parent: 8364 - - uid: 26338 - components: - - type: Transform - pos: -23.5,48.5 - parent: 8364 - - uid: 26339 - components: - - type: Transform - pos: -23.5,49.5 - parent: 8364 - - uid: 26340 - components: - - type: Transform - pos: -23.5,50.5 - parent: 8364 - - uid: 26341 - components: - - type: Transform - pos: -23.5,51.5 - parent: 8364 - - uid: 26342 - components: - - type: Transform - pos: -22.5,51.5 - parent: 8364 - - uid: 26343 - components: - - type: Transform - pos: -21.5,51.5 - parent: 8364 - - uid: 26344 - components: - - type: Transform - pos: -20.5,51.5 - parent: 8364 - - uid: 26579 - components: - - type: Transform - pos: 8.5,-85.5 - parent: 8364 - uid: 26580 components: - type: Transform @@ -51028,7 +51324,7 @@ entities: - uid: 26916 components: - type: Transform - pos: -8.5,-87.5 + pos: 8.5,-86.5 parent: 8364 - uid: 26917 components: @@ -51310,6 +51606,11 @@ entities: - type: Transform pos: -17.5,-32.5 parent: 8364 + - uid: 28629 + components: + - type: Transform + pos: -19.5,19.5 + parent: 8364 - proto: CableHVStack entities: - uid: 1683 @@ -51539,11 +51840,6 @@ entities: - type: Transform pos: -7.5,-61.5 parent: 8364 - - uid: 3898 - components: - - type: Transform - pos: 0.5,40.5 - parent: 8364 - uid: 4030 components: - type: Transform @@ -51559,11 +51855,6 @@ entities: - type: Transform pos: 43.5,-3.5 parent: 8364 - - uid: 4163 - components: - - type: Transform - pos: 0.5,31.5 - parent: 8364 - uid: 4277 components: - type: Transform @@ -51594,6 +51885,11 @@ entities: - type: Transform pos: -18.5,-80.5 parent: 8364 + - uid: 4474 + components: + - type: Transform + pos: -8.5,-87.5 + parent: 8364 - uid: 4554 components: - type: Transform @@ -51629,16 +51925,16 @@ entities: - type: Transform pos: -22.5,-72.5 parent: 8364 - - uid: 5288 - components: - - type: Transform - pos: 1.5,41.5 - parent: 8364 - uid: 5313 components: - type: Transform pos: -13.5,-19.5 parent: 8364 + - uid: 5442 + components: + - type: Transform + pos: -14.5,42.5 + parent: 8364 - uid: 5527 components: - type: Transform @@ -52084,6 +52380,11 @@ entities: - type: Transform pos: -0.5,-58.5 parent: 8364 + - uid: 6331 + components: + - type: Transform + pos: -20.5,32.5 + parent: 8364 - uid: 6343 components: - type: Transform @@ -52329,6 +52630,11 @@ entities: - type: Transform pos: 15.5,8.5 parent: 8364 + - uid: 6648 + components: + - type: Transform + pos: -18.5,11.5 + parent: 8364 - uid: 6773 components: - type: Transform @@ -52599,11 +52905,6 @@ entities: - type: Transform pos: -17.5,-42.5 parent: 8364 - - uid: 7186 - components: - - type: Transform - pos: 25.5,23.5 - parent: 8364 - uid: 7194 components: - type: Transform @@ -52614,11 +52915,6 @@ entities: - type: Transform pos: 46.5,-0.5 parent: 8364 - - uid: 7199 - components: - - type: Transform - pos: 24.5,23.5 - parent: 8364 - uid: 7200 components: - type: Transform @@ -52659,45 +52955,145 @@ entities: - type: Transform pos: 26.5,1.5 parent: 8364 - - uid: 7340 + - uid: 7313 components: - type: Transform - pos: 10.5,36.5 + pos: -22.5,18.5 + parent: 8364 + - uid: 7321 + components: + - type: Transform + pos: -17.5,18.5 parent: 8364 - uid: 7380 components: - type: Transform pos: -11.5,-19.5 parent: 8364 - - uid: 7611 + - uid: 7396 components: - type: Transform - pos: 21.5,24.5 + pos: -14.5,15.5 parent: 8364 - - uid: 7612 + - uid: 7414 components: - type: Transform - pos: 21.5,23.5 + pos: -14.5,16.5 parent: 8364 - - uid: 7623 + - uid: 7567 components: - type: Transform - pos: 15.5,27.5 + pos: -20.5,29.5 parent: 8364 - - uid: 7629 + - uid: 7618 components: - type: Transform - pos: 17.5,30.5 + pos: -20.5,30.5 parent: 8364 - - uid: 7735 + - uid: 7650 components: - type: Transform - pos: 1.5,35.5 + pos: -19.5,24.5 parent: 8364 - - uid: 7786 + - uid: 7679 components: - type: Transform - pos: -4.5,29.5 + pos: -20.5,31.5 + parent: 8364 + - uid: 7684 + components: + - type: Transform + pos: -14.5,17.5 + parent: 8364 + - uid: 7686 + components: + - type: Transform + pos: -20.5,33.5 + parent: 8364 + - uid: 7688 + components: + - type: Transform + pos: -20.5,34.5 + parent: 8364 + - uid: 7690 + components: + - type: Transform + pos: -20.5,35.5 + parent: 8364 + - uid: 7693 + components: + - type: Transform + pos: -20.5,36.5 + parent: 8364 + - uid: 7722 + components: + - type: Transform + pos: -20.5,38.5 + parent: 8364 + - uid: 7727 + components: + - type: Transform + pos: -20.5,39.5 + parent: 8364 + - uid: 7737 + components: + - type: Transform + pos: -22.5,41.5 + parent: 8364 + - uid: 7774 + components: + - type: Transform + pos: -32.5,10.5 + parent: 8364 + - uid: 7775 + components: + - type: Transform + pos: -33.5,10.5 + parent: 8364 + - uid: 7799 + components: + - type: Transform + pos: -34.5,10.5 + parent: 8364 + - uid: 7804 + components: + - type: Transform + pos: -35.5,10.5 + parent: 8364 + - uid: 7812 + components: + - type: Transform + pos: -36.5,10.5 + parent: 8364 + - uid: 7814 + components: + - type: Transform + pos: -37.5,10.5 + parent: 8364 + - uid: 7819 + components: + - type: Transform + pos: -19.5,29.5 + parent: 8364 + - uid: 7820 + components: + - type: Transform + pos: -19.5,28.5 + parent: 8364 + - uid: 7823 + components: + - type: Transform + pos: -19.5,27.5 + parent: 8364 + - uid: 7824 + components: + - type: Transform + pos: -19.5,26.5 + parent: 8364 + - uid: 7835 + components: + - type: Transform + pos: -19.5,25.5 parent: 8364 - uid: 8139 components: @@ -52729,821 +53125,181 @@ entities: - type: Transform pos: 46.5,2.5 parent: 8364 - - uid: 8425 + - uid: 8406 components: - type: Transform - pos: 14.5,27.5 - parent: 8364 - - uid: 8427 - components: - - type: Transform - pos: 11.5,27.5 - parent: 8364 - - uid: 8470 - components: - - type: Transform - pos: -15.5,51.5 - parent: 8364 - - uid: 8485 - components: - - type: Transform - pos: 8.5,27.5 - parent: 8364 - - uid: 8533 - components: - - type: Transform - pos: 8.5,38.5 - parent: 8364 - - uid: 8534 - components: - - type: Transform - pos: 8.5,37.5 - parent: 8364 - - uid: 8535 - components: - - type: Transform - pos: 8.5,36.5 - parent: 8364 - - uid: 8536 - components: - - type: Transform - pos: 8.5,35.5 - parent: 8364 - - uid: 8537 - components: - - type: Transform - pos: 8.5,34.5 - parent: 8364 - - uid: 8538 - components: - - type: Transform - pos: 8.5,33.5 - parent: 8364 - - uid: 8539 - components: - - type: Transform - pos: 8.5,32.5 - parent: 8364 - - uid: 8540 - components: - - type: Transform - pos: 8.5,31.5 - parent: 8364 - - uid: 8541 - components: - - type: Transform - pos: 8.5,30.5 - parent: 8364 - - uid: 8548 - components: - - type: Transform - pos: 9.5,27.5 - parent: 8364 - - uid: 8550 - components: - - type: Transform - pos: 10.5,27.5 - parent: 8364 - - uid: 8551 - components: - - type: Transform - pos: 13.5,27.5 - parent: 8364 - - uid: 8552 - components: - - type: Transform - pos: 12.5,27.5 - parent: 8364 - - uid: 8553 - components: - - type: Transform - pos: -15.5,52.5 - parent: 8364 - - uid: 8554 - components: - - type: Transform - pos: -15.5,53.5 - parent: 8364 - - uid: 8555 - components: - - type: Transform - pos: -15.5,54.5 - parent: 8364 - - uid: 8569 - components: - - type: Transform - pos: -11.5,50.5 - parent: 8364 - - uid: 8592 - components: - - type: Transform - pos: -0.5,31.5 - parent: 8364 - - uid: 8597 - components: - - type: Transform - pos: -14.5,54.5 - parent: 8364 - - uid: 8606 - components: - - type: Transform - pos: -12.5,54.5 - parent: 8364 - - uid: 8607 - components: - - type: Transform - pos: -11.5,53.5 - parent: 8364 - - uid: 8610 - components: - - type: Transform - pos: -11.5,54.5 - parent: 8364 - - uid: 8615 - components: - - type: Transform - pos: -11.5,51.5 - parent: 8364 - - uid: 8632 - components: - - type: Transform - pos: 9.5,42.5 - parent: 8364 - - uid: 8640 - components: - - type: Transform - pos: -13.5,25.5 - parent: 8364 - - uid: 8658 - components: - - type: Transform - pos: 2.5,27.5 - parent: 8364 - - uid: 8659 - components: - - type: Transform - pos: 7.5,29.5 - parent: 8364 - - uid: 8660 - components: - - type: Transform - pos: 7.5,28.5 - parent: 8364 - - uid: 8661 - components: - - type: Transform - pos: 7.5,27.5 - parent: 8364 - - uid: 8662 - components: - - type: Transform - pos: 7.5,26.5 - parent: 8364 - - uid: 8663 - components: - - type: Transform - pos: 6.5,26.5 - parent: 8364 - - uid: 8664 - components: - - type: Transform - pos: 5.5,26.5 - parent: 8364 - - uid: 8665 - components: - - type: Transform - pos: 4.5,26.5 - parent: 8364 - - uid: 8666 - components: - - type: Transform - pos: 3.5,26.5 - parent: 8364 - - uid: 8667 - components: - - type: Transform - pos: 2.5,26.5 - parent: 8364 - - uid: 8669 - components: - - type: Transform - pos: 0.5,26.5 - parent: 8364 - - uid: 8670 - components: - - type: Transform - pos: -0.5,26.5 - parent: 8364 - - uid: 8671 - components: - - type: Transform - pos: -1.5,26.5 - parent: 8364 - - uid: 8678 - components: - - type: Transform - pos: -3.5,26.5 - parent: 8364 - - uid: 8679 - components: - - type: Transform - pos: -4.5,28.5 - parent: 8364 - - uid: 8680 - components: - - type: Transform - pos: 3.5,29.5 - parent: 8364 - - uid: 8750 - components: - - type: Transform - pos: 9.5,41.5 - parent: 8364 - - uid: 8822 - components: - - type: Transform - pos: 1.5,36.5 - parent: 8364 - - uid: 8823 - components: - - type: Transform - pos: 1.5,38.5 - parent: 8364 - - uid: 8824 - components: - - type: Transform - pos: 1.5,39.5 - parent: 8364 - - uid: 8826 - components: - - type: Transform - pos: 7.5,30.5 - parent: 8364 - - uid: 8827 - components: - - type: Transform - pos: 2.5,28.5 - parent: 8364 - - uid: 8828 - components: - - type: Transform - pos: 2.5,30.5 - parent: 8364 - - uid: 8829 - components: - - type: Transform - pos: 2.5,29.5 - parent: 8364 - - uid: 8830 - components: - - type: Transform - pos: 2.5,31.5 - parent: 8364 - - uid: 8831 - components: - - type: Transform - pos: 9.5,33.5 - parent: 8364 - - uid: 8832 - components: - - type: Transform - pos: 10.5,33.5 - parent: 8364 - - uid: 8833 - components: - - type: Transform - pos: 11.5,33.5 - parent: 8364 - - uid: 8834 - components: - - type: Transform - pos: 12.5,33.5 - parent: 8364 - - uid: 8835 - components: - - type: Transform - pos: 13.5,33.5 - parent: 8364 - - uid: 8836 - components: - - type: Transform - pos: 14.5,33.5 - parent: 8364 - - uid: 8837 - components: - - type: Transform - pos: 15.5,33.5 - parent: 8364 - - uid: 8838 - components: - - type: Transform - pos: 16.5,33.5 - parent: 8364 - - uid: 8839 - components: - - type: Transform - pos: 17.5,33.5 - parent: 8364 - - uid: 8840 - components: - - type: Transform - pos: 18.5,33.5 - parent: 8364 - - uid: 8841 - components: - - type: Transform - pos: 19.5,33.5 - parent: 8364 - - uid: 8842 - components: - - type: Transform - pos: 14.5,34.5 - parent: 8364 - - uid: 8843 - components: - - type: Transform - pos: 14.5,35.5 - parent: 8364 - - uid: 8844 - components: - - type: Transform - pos: 14.5,36.5 - parent: 8364 - - uid: 8845 - components: - - type: Transform - pos: 14.5,37.5 - parent: 8364 - - uid: 8846 - components: - - type: Transform - pos: 14.5,38.5 - parent: 8364 - - uid: 8847 - components: - - type: Transform - pos: 14.5,39.5 - parent: 8364 - - uid: 8848 - components: - - type: Transform - pos: 13.5,39.5 - parent: 8364 - - uid: 8849 - components: - - type: Transform - pos: 12.5,39.5 - parent: 8364 - - uid: 8850 - components: - - type: Transform - pos: 11.5,39.5 - parent: 8364 - - uid: 8851 - components: - - type: Transform - pos: -4.5,30.5 - parent: 8364 - - uid: 8852 - components: - - type: Transform - pos: -3.5,29.5 - parent: 8364 - - uid: 8854 - components: - - type: Transform - pos: -4.5,31.5 - parent: 8364 - - uid: 8855 - components: - - type: Transform - pos: -4.5,32.5 - parent: 8364 - - uid: 8856 - components: - - type: Transform - pos: -4.5,33.5 - parent: 8364 - - uid: 8857 - components: - - type: Transform - pos: -4.5,34.5 - parent: 8364 - - uid: 8859 - components: - - type: Transform - pos: -6.5,34.5 - parent: 8364 - - uid: 8868 - components: - - type: Transform - pos: -14.5,33.5 - parent: 8364 - - uid: 8869 - components: - - type: Transform - pos: -14.5,32.5 - parent: 8364 - - uid: 8870 - components: - - type: Transform - pos: -14.5,31.5 - parent: 8364 - - uid: 8871 - components: - - type: Transform - pos: -14.5,30.5 - parent: 8364 - - uid: 8872 - components: - - type: Transform - pos: -15.5,30.5 - parent: 8364 - - uid: 8873 - components: - - type: Transform - pos: -16.5,30.5 - parent: 8364 - - uid: 8874 - components: - - type: Transform - pos: -4.5,26.5 - parent: 8364 - - uid: 8875 - components: - - type: Transform - pos: -5.5,26.5 - parent: 8364 - - uid: 8877 - components: - - type: Transform - pos: -7.5,26.5 - parent: 8364 - - uid: 8878 - components: - - type: Transform - pos: -8.5,26.5 - parent: 8364 - - uid: 8879 - components: - - type: Transform - pos: -9.5,26.5 - parent: 8364 - - uid: 8881 - components: - - type: Transform - pos: -11.5,26.5 - parent: 8364 - - uid: 8882 - components: - - type: Transform - pos: -12.5,26.5 - parent: 8364 - - uid: 8883 - components: - - type: Transform - pos: -13.5,26.5 - parent: 8364 - - uid: 8888 - components: - - type: Transform - pos: -4.5,27.5 - parent: 8364 - - uid: 8902 - components: - - type: Transform - pos: 24.5,22.5 + pos: -14.5,45.5 parent: 8364 - uid: 8914 components: - type: Transform pos: 46.5,3.5 parent: 8364 - - uid: 8917 + - uid: 8987 components: - type: Transform - pos: -20.5,22.5 + pos: -14.5,25.5 parent: 8364 - - uid: 8926 + - uid: 9323 components: - type: Transform - pos: -19.5,22.5 + pos: 6.5,34.5 parent: 8364 - - uid: 8929 + - uid: 9324 components: - type: Transform - pos: 0.5,34.5 + pos: 7.5,34.5 parent: 8364 - - uid: 9004 + - uid: 9325 components: - type: Transform - pos: -0.5,34.5 + pos: 8.5,34.5 parent: 8364 - - uid: 9046 + - uid: 9326 components: - type: Transform - pos: -16.5,39.5 + pos: 9.5,34.5 parent: 8364 - - uid: 9143 + - uid: 9327 components: - type: Transform - pos: -13.5,24.5 + pos: 10.5,34.5 parent: 8364 - - uid: 9144 + - uid: 9328 components: - type: Transform - pos: -13.5,23.5 + pos: 11.5,34.5 parent: 8364 - - uid: 9145 + - uid: 9329 components: - type: Transform - pos: -14.5,23.5 + pos: 12.5,34.5 parent: 8364 - - uid: 9146 + - uid: 9330 components: - type: Transform - pos: -15.5,23.5 + pos: 13.5,34.5 parent: 8364 - - uid: 9147 + - uid: 9331 components: - type: Transform - pos: -16.5,23.5 + pos: 14.5,34.5 parent: 8364 - - uid: 9148 + - uid: 9332 components: - type: Transform - pos: -17.5,23.5 + pos: 15.5,34.5 parent: 8364 - - uid: 9149 + - uid: 9334 components: - type: Transform - pos: -18.5,23.5 + pos: 15.5,33.5 parent: 8364 - - uid: 9150 + - uid: 9335 components: - type: Transform - pos: -19.5,23.5 - parent: 8364 - - uid: 9167 - components: - - type: Transform - pos: 14.5,42.5 - parent: 8364 - - uid: 9190 - components: - - type: Transform - pos: 14.5,41.5 - parent: 8364 - - uid: 9192 - components: - - type: Transform - pos: 14.5,40.5 - parent: 8364 - - uid: 9197 - components: - - type: Transform - pos: 11.5,40.5 - parent: 8364 - - uid: 9216 - components: - - type: Transform - pos: 12.5,37.5 - parent: 8364 - - uid: 9218 - components: - - type: Transform - pos: 7.5,42.5 - parent: 8364 - - uid: 9222 - components: - - type: Transform - pos: 11.5,37.5 - parent: 8364 - - uid: 9223 - components: - - type: Transform - pos: 11.5,38.5 - parent: 8364 - - uid: 9224 - components: - - type: Transform - pos: 1.5,37.5 - parent: 8364 - - uid: 9229 - components: - - type: Transform - pos: 12.5,36.5 - parent: 8364 - - uid: 9233 - components: - - type: Transform - pos: 15.5,37.5 - parent: 8364 - - uid: 9239 - components: - - type: Transform - pos: 13.5,42.5 - parent: 8364 - - uid: 9249 - components: - - type: Transform - pos: 2.5,42.5 - parent: 8364 - - uid: 9257 - components: - - type: Transform - pos: 16.5,36.5 - parent: 8364 - - uid: 9264 - components: - - type: Transform - pos: 2.5,32.5 - parent: 8364 - - uid: 9265 - components: - - type: Transform - pos: 2.5,33.5 - parent: 8364 - - uid: 9266 - components: - - type: Transform - pos: 1.5,33.5 - parent: 8364 - - uid: 9268 - components: - - type: Transform - pos: 16.5,37.5 - parent: 8364 - - uid: 9288 - components: - - type: Transform - pos: 0.5,29.5 - parent: 8364 - - uid: 9289 - components: - - type: Transform - pos: 1.5,29.5 - parent: 8364 - - uid: 9304 - components: - - type: Transform - pos: -1.5,29.5 - parent: 8364 - - uid: 9305 - components: - - type: Transform - pos: -2.5,29.5 + pos: 15.5,32.5 parent: 8364 - uid: 9336 components: - type: Transform - pos: -3.5,32.5 + pos: 15.5,31.5 + parent: 8364 + - uid: 9337 + components: + - type: Transform + pos: 15.5,30.5 + parent: 8364 + - uid: 9338 + components: + - type: Transform + pos: 15.5,29.5 + parent: 8364 + - uid: 9339 + components: + - type: Transform + pos: 16.5,29.5 + parent: 8364 + - uid: 9340 + components: + - type: Transform + pos: 16.5,28.5 + parent: 8364 + - uid: 9341 + components: + - type: Transform + pos: 16.5,27.5 + parent: 8364 + - uid: 9342 + components: + - type: Transform + pos: 16.5,26.5 + parent: 8364 + - uid: 9343 + components: + - type: Transform + pos: 16.5,25.5 parent: 8364 - uid: 9344 components: - type: Transform - pos: -3.5,33.5 + pos: 17.5,25.5 + parent: 8364 + - uid: 9345 + components: + - type: Transform + pos: 15.5,26.5 parent: 8364 - uid: 9346 components: - type: Transform - pos: 2.5,40.5 + pos: 14.5,26.5 parent: 8364 - - uid: 9369 + - uid: 9356 components: - type: Transform - pos: 1.5,31.5 + pos: 13.5,26.5 parent: 8364 - - uid: 9373 + - uid: 9357 components: - type: Transform - pos: -1.5,31.5 + pos: 12.5,26.5 parent: 8364 - - uid: 9381 + - uid: 9358 components: - type: Transform - pos: -0.5,40.5 + pos: 11.5,26.5 parent: 8364 - - uid: 9615 + - uid: 9360 components: - type: Transform - pos: 19.5,34.5 + pos: 10.5,26.5 parent: 8364 - - uid: 9616 + - uid: 9361 components: - type: Transform - pos: 19.5,35.5 + pos: 9.5,26.5 parent: 8364 - - uid: 9617 + - uid: 9362 components: - type: Transform - pos: 20.5,35.5 + pos: 8.5,26.5 + parent: 8364 + - uid: 9363 + components: + - type: Transform + pos: 8.5,27.5 + parent: 8364 + - uid: 9364 + components: + - type: Transform + pos: 8.5,28.5 parent: 8364 - uid: 9657 components: - type: Transform pos: 45.5,-26.5 parent: 8364 - - uid: 9659 - components: - - type: Transform - pos: -19.5,21.5 - parent: 8364 - - uid: 9660 - components: - - type: Transform - pos: -19.5,20.5 - parent: 8364 - - uid: 9661 - components: - - type: Transform - pos: -18.5,20.5 - parent: 8364 - - uid: 9662 - components: - - type: Transform - pos: -17.5,20.5 - parent: 8364 - - uid: 9663 - components: - - type: Transform - pos: -16.5,20.5 - parent: 8364 - - uid: 9664 - components: - - type: Transform - pos: -15.5,20.5 - parent: 8364 - - uid: 9666 - components: - - type: Transform - pos: -5.5,20.5 - parent: 8364 - - uid: 9667 - components: - - type: Transform - pos: -6.5,20.5 - parent: 8364 - - uid: 9668 - components: - - type: Transform - pos: -7.5,20.5 - parent: 8364 - - uid: 9669 - components: - - type: Transform - pos: -8.5,20.5 - parent: 8364 - - uid: 9670 - components: - - type: Transform - pos: -9.5,20.5 - parent: 8364 - - uid: 9671 - components: - - type: Transform - pos: -10.5,20.5 - parent: 8364 - - uid: 9672 - components: - - type: Transform - pos: -11.5,20.5 - parent: 8364 - - uid: 9673 - components: - - type: Transform - pos: -12.5,20.5 - parent: 8364 - - uid: 9674 - components: - - type: Transform - pos: -13.5,20.5 - parent: 8364 - - uid: 9675 - components: - - type: Transform - pos: -14.5,20.5 - parent: 8364 - - uid: 9684 - components: - - type: Transform - pos: -4.5,20.5 - parent: 8364 - - uid: 9685 - components: - - type: Transform - pos: -4.5,19.5 - parent: 8364 - - uid: 9686 - components: - - type: Transform - pos: -4.5,18.5 - parent: 8364 - - uid: 9687 - components: - - type: Transform - pos: -13.5,14.5 - parent: 8364 - uid: 9817 components: - type: Transform @@ -53554,75 +53310,20 @@ entities: - type: Transform pos: -48.5,15.5 parent: 8364 - - uid: 9845 + - uid: 9859 components: - type: Transform - pos: 18.5,30.5 + pos: 8.5,35.5 parent: 8364 - - uid: 9846 + - uid: 9860 components: - type: Transform - pos: 19.5,30.5 + pos: 8.5,36.5 parent: 8364 - - uid: 9847 + - uid: 9863 components: - type: Transform - pos: 20.5,30.5 - parent: 8364 - - uid: 9848 - components: - - type: Transform - pos: 21.5,30.5 - parent: 8364 - - uid: 9849 - components: - - type: Transform - pos: 21.5,29.5 - parent: 8364 - - uid: 9850 - components: - - type: Transform - pos: 21.5,28.5 - parent: 8364 - - uid: 9851 - components: - - type: Transform - pos: 21.5,27.5 - parent: 8364 - - uid: 9852 - components: - - type: Transform - pos: 21.5,26.5 - parent: 8364 - - uid: 9853 - components: - - type: Transform - pos: 21.5,25.5 - parent: 8364 - - uid: 9854 - components: - - type: Transform - pos: 22.5,25.5 - parent: 8364 - - uid: 9855 - components: - - type: Transform - pos: 23.5,25.5 - parent: 8364 - - uid: 9930 - components: - - type: Transform - pos: 23.5,23.5 - parent: 8364 - - uid: 9933 - components: - - type: Transform - pos: 23.5,24.5 - parent: 8364 - - uid: 9963 - components: - - type: Transform - pos: 21.5,22.5 + pos: -20.5,37.5 parent: 8364 - uid: 9977 components: @@ -53639,30 +53340,400 @@ entities: - type: Transform pos: 25.5,19.5 parent: 8364 - - uid: 9999 + - uid: 10036 components: - type: Transform - pos: 17.5,32.5 + pos: -18.5,19.5 + parent: 8364 + - uid: 10038 + components: + - type: Transform + pos: -18.5,18.5 + parent: 8364 + - uid: 10039 + components: + - type: Transform + pos: -18.5,17.5 + parent: 8364 + - uid: 10040 + components: + - type: Transform + pos: -18.5,16.5 + parent: 8364 + - uid: 10041 + components: + - type: Transform + pos: -18.5,15.5 + parent: 8364 + - uid: 10042 + components: + - type: Transform + pos: -18.5,14.5 + parent: 8364 + - uid: 10043 + components: + - type: Transform + pos: -18.5,13.5 + parent: 8364 + - uid: 10044 + components: + - type: Transform + pos: -18.5,12.5 + parent: 8364 + - uid: 10047 + components: + - type: Transform + pos: -16.5,11.5 + parent: 8364 + - uid: 10048 + components: + - type: Transform + pos: -15.5,11.5 + parent: 8364 + - uid: 10049 + components: + - type: Transform + pos: -14.5,11.5 + parent: 8364 + - uid: 10050 + components: + - type: Transform + pos: -13.5,11.5 + parent: 8364 + - uid: 10051 + components: + - type: Transform + pos: -12.5,11.5 + parent: 8364 + - uid: 10052 + components: + - type: Transform + pos: -11.5,11.5 + parent: 8364 + - uid: 10053 + components: + - type: Transform + pos: -10.5,11.5 + parent: 8364 + - uid: 10054 + components: + - type: Transform + pos: -9.5,11.5 + parent: 8364 + - uid: 10055 + components: + - type: Transform + pos: -8.5,11.5 + parent: 8364 + - uid: 10056 + components: + - type: Transform + pos: -8.5,12.5 + parent: 8364 + - uid: 10057 + components: + - type: Transform + pos: -7.5,12.5 + parent: 8364 + - uid: 10058 + components: + - type: Transform + pos: -7.5,13.5 + parent: 8364 + - uid: 10059 + components: + - type: Transform + pos: -7.5,14.5 + parent: 8364 + - uid: 10060 + components: + - type: Transform + pos: -7.5,15.5 parent: 8364 - uid: 10061 components: - type: Transform - pos: 1.5,34.5 + pos: -8.5,15.5 + parent: 8364 + - uid: 10062 + components: + - type: Transform + pos: -9.5,15.5 parent: 8364 - uid: 10063 components: - type: Transform - pos: -11.5,52.5 + pos: -9.5,14.5 parent: 8364 - uid: 10064 components: - type: Transform - pos: 9.5,36.5 + pos: -9.5,13.5 parent: 8364 - - uid: 10068 + - uid: 10066 components: - type: Transform - pos: 0.5,37.5 + pos: -21.5,24.5 + parent: 8364 + - uid: 10067 + components: + - type: Transform + pos: -20.5,24.5 + parent: 8364 + - uid: 10092 + components: + - type: Transform + pos: -18.5,24.5 + parent: 8364 + - uid: 10093 + components: + - type: Transform + pos: -17.5,24.5 + parent: 8364 + - uid: 10094 + components: + - type: Transform + pos: -16.5,24.5 + parent: 8364 + - uid: 10095 + components: + - type: Transform + pos: -15.5,24.5 + parent: 8364 + - uid: 10096 + components: + - type: Transform + pos: -14.5,24.5 + parent: 8364 + - uid: 10097 + components: + - type: Transform + pos: -14.5,23.5 + parent: 8364 + - uid: 10099 + components: + - type: Transform + pos: -14.5,22.5 + parent: 8364 + - uid: 10100 + components: + - type: Transform + pos: -14.5,21.5 + parent: 8364 + - uid: 10101 + components: + - type: Transform + pos: -14.5,20.5 + parent: 8364 + - uid: 10102 + components: + - type: Transform + pos: -14.5,19.5 + parent: 8364 + - uid: 10103 + components: + - type: Transform + pos: -14.5,18.5 + parent: 8364 + - uid: 10104 + components: + - type: Transform + pos: -15.5,18.5 + parent: 8364 + - uid: 10105 + components: + - type: Transform + pos: -13.5,18.5 + parent: 8364 + - uid: 10106 + components: + - type: Transform + pos: -23.5,18.5 + parent: 8364 + - uid: 10109 + components: + - type: Transform + pos: -24.5,18.5 + parent: 8364 + - uid: 10110 + components: + - type: Transform + pos: -25.5,18.5 + parent: 8364 + - uid: 10111 + components: + - type: Transform + pos: -26.5,18.5 + parent: 8364 + - uid: 10112 + components: + - type: Transform + pos: -27.5,18.5 + parent: 8364 + - uid: 10113 + components: + - type: Transform + pos: -28.5,27.5 + parent: 8364 + - uid: 10114 + components: + - type: Transform + pos: -27.5,19.5 + parent: 8364 + - uid: 10115 + components: + - type: Transform + pos: -27.5,20.5 + parent: 8364 + - uid: 10116 + components: + - type: Transform + pos: -27.5,21.5 + parent: 8364 + - uid: 10117 + components: + - type: Transform + pos: -27.5,22.5 + parent: 8364 + - uid: 10118 + components: + - type: Transform + pos: -27.5,23.5 + parent: 8364 + - uid: 10119 + components: + - type: Transform + pos: -27.5,24.5 + parent: 8364 + - uid: 10120 + components: + - type: Transform + pos: -27.5,25.5 + parent: 8364 + - uid: 10121 + components: + - type: Transform + pos: -27.5,26.5 + parent: 8364 + - uid: 10122 + components: + - type: Transform + pos: -27.5,27.5 + parent: 8364 + - uid: 10123 + components: + - type: Transform + pos: -29.5,27.5 + parent: 8364 + - uid: 10124 + components: + - type: Transform + pos: -29.5,28.5 + parent: 8364 + - uid: 10125 + components: + - type: Transform + pos: -30.5,28.5 + parent: 8364 + - uid: 10126 + components: + - type: Transform + pos: -30.5,29.5 + parent: 8364 + - uid: 10140 + components: + - type: Transform + pos: -31.5,29.5 + parent: 8364 + - uid: 10141 + components: + - type: Transform + pos: -31.5,30.5 + parent: 8364 + - uid: 10142 + components: + - type: Transform + pos: -32.5,30.5 + parent: 8364 + - uid: 10143 + components: + - type: Transform + pos: -32.5,31.5 + parent: 8364 + - uid: 10144 + components: + - type: Transform + pos: -33.5,31.5 + parent: 8364 + - uid: 10145 + components: + - type: Transform + pos: -34.5,31.5 + parent: 8364 + - uid: 10146 + components: + - type: Transform + pos: -34.5,32.5 + parent: 8364 + - uid: 10147 + components: + - type: Transform + pos: -34.5,33.5 + parent: 8364 + - uid: 10148 + components: + - type: Transform + pos: -35.5,33.5 + parent: 8364 + - uid: 10149 + components: + - type: Transform + pos: -36.5,33.5 + parent: 8364 + - uid: 10150 + components: + - type: Transform + pos: -36.5,34.5 + parent: 8364 + - uid: 10151 + components: + - type: Transform + pos: -36.5,35.5 + parent: 8364 + - uid: 10152 + components: + - type: Transform + pos: -36.5,36.5 + parent: 8364 + - uid: 10153 + components: + - type: Transform + pos: -36.5,37.5 + parent: 8364 + - uid: 10154 + components: + - type: Transform + pos: -36.5,38.5 + parent: 8364 + - uid: 10155 + components: + - type: Transform + pos: -36.5,39.5 + parent: 8364 + - uid: 10156 + components: + - type: Transform + pos: -36.5,40.5 + parent: 8364 + - uid: 10157 + components: + - type: Transform + pos: -36.5,41.5 + parent: 8364 + - uid: 10158 + components: + - type: Transform + pos: -36.5,42.5 parent: 8364 - uid: 10193 components: @@ -53734,6 +53805,11 @@ entities: - type: Transform pos: 24.5,6.5 parent: 8364 + - uid: 10299 + components: + - type: Transform + pos: -36.5,43.5 + parent: 8364 - uid: 10423 components: - type: Transform @@ -53789,6 +53865,11 @@ entities: - type: Transform pos: 43.5,-1.5 parent: 8364 + - uid: 10527 + components: + - type: Transform + pos: -35.5,43.5 + parent: 8364 - uid: 10560 components: - type: Transform @@ -53797,7 +53878,7 @@ entities: - uid: 10601 components: - type: Transform - pos: 15.5,28.5 + pos: -35.5,44.5 parent: 8364 - uid: 10702 components: @@ -53809,6 +53890,21 @@ entities: - type: Transform pos: 43.5,-1.5 parent: 8364 + - uid: 10724 + components: + - type: Transform + pos: -34.5,44.5 + parent: 8364 + - uid: 10725 + components: + - type: Transform + pos: -34.5,45.5 + parent: 8364 + - uid: 10738 + components: + - type: Transform + pos: -33.5,45.5 + parent: 8364 - uid: 10944 components: - type: Transform @@ -54284,11 +54380,166 @@ entities: - type: Transform pos: 66.5,20.5 parent: 8364 + - uid: 11377 + components: + - type: Transform + pos: -30.5,49.5 + parent: 8364 + - uid: 11378 + components: + - type: Transform + pos: -33.5,46.5 + parent: 8364 + - uid: 11379 + components: + - type: Transform + pos: -32.5,46.5 + parent: 8364 - uid: 11396 components: - type: Transform pos: 41.5,5.5 parent: 8364 + - uid: 11565 + components: + - type: Transform + pos: -32.5,47.5 + parent: 8364 + - uid: 11568 + components: + - type: Transform + pos: -31.5,47.5 + parent: 8364 + - uid: 11592 + components: + - type: Transform + pos: -31.5,48.5 + parent: 8364 + - uid: 11596 + components: + - type: Transform + pos: -30.5,48.5 + parent: 8364 + - uid: 11597 + components: + - type: Transform + pos: -29.5,49.5 + parent: 8364 + - uid: 11599 + components: + - type: Transform + pos: -28.5,49.5 + parent: 8364 + - uid: 11600 + components: + - type: Transform + pos: -27.5,49.5 + parent: 8364 + - uid: 11601 + components: + - type: Transform + pos: -26.5,49.5 + parent: 8364 + - uid: 11602 + components: + - type: Transform + pos: -25.5,49.5 + parent: 8364 + - uid: 11603 + components: + - type: Transform + pos: -24.5,49.5 + parent: 8364 + - uid: 11604 + components: + - type: Transform + pos: -23.5,49.5 + parent: 8364 + - uid: 11605 + components: + - type: Transform + pos: -22.5,49.5 + parent: 8364 + - uid: 11606 + components: + - type: Transform + pos: -35.5,36.5 + parent: 8364 + - uid: 11607 + components: + - type: Transform + pos: -34.5,36.5 + parent: 8364 + - uid: 11609 + components: + - type: Transform + pos: -33.5,36.5 + parent: 8364 + - uid: 11611 + components: + - type: Transform + pos: -33.5,35.5 + parent: 8364 + - uid: 11612 + components: + - type: Transform + pos: -32.5,36.5 + parent: 8364 + - uid: 11613 + components: + - type: Transform + pos: -31.5,36.5 + parent: 8364 + - uid: 11614 + components: + - type: Transform + pos: -30.5,36.5 + parent: 8364 + - uid: 11615 + components: + - type: Transform + pos: -29.5,36.5 + parent: 8364 + - uid: 11616 + components: + - type: Transform + pos: -28.5,36.5 + parent: 8364 + - uid: 11617 + components: + - type: Transform + pos: -28.5,35.5 + parent: 8364 + - uid: 11618 + components: + - type: Transform + pos: -28.5,34.5 + parent: 8364 + - uid: 11619 + components: + - type: Transform + pos: -26.5,34.5 + parent: 8364 + - uid: 11620 + components: + - type: Transform + pos: -25.5,34.5 + parent: 8364 + - uid: 11621 + components: + - type: Transform + pos: -24.5,34.5 + parent: 8364 + - uid: 11622 + components: + - type: Transform + pos: -23.5,34.5 + parent: 8364 + - uid: 11623 + components: + - type: Transform + pos: -22.5,34.5 + parent: 8364 - uid: 11769 components: - type: Transform @@ -54449,6 +54700,41 @@ entities: - type: Transform pos: -6.5,8.5 parent: 8364 + - uid: 11965 + components: + - type: Transform + pos: -21.5,34.5 + parent: 8364 + - uid: 11980 + components: + - type: Transform + pos: -27.5,34.5 + parent: 8364 + - uid: 12024 + components: + - type: Transform + pos: -22.5,42.5 + parent: 8364 + - uid: 12030 + components: + - type: Transform + pos: -22.5,43.5 + parent: 8364 + - uid: 12033 + components: + - type: Transform + pos: -22.5,44.5 + parent: 8364 + - uid: 12045 + components: + - type: Transform + pos: -23.5,46.5 + parent: 8364 + - uid: 12046 + components: + - type: Transform + pos: -24.5,46.5 + parent: 8364 - uid: 12070 components: - type: Transform @@ -54522,102 +54808,102 @@ entities: - uid: 12128 components: - type: Transform - pos: -19.5,10.5 + pos: -26.5,46.5 parent: 8364 - uid: 12129 components: - type: Transform - pos: -20.5,10.5 + pos: -27.5,46.5 parent: 8364 - uid: 12130 components: - type: Transform - pos: -21.5,10.5 + pos: -28.5,44.5 parent: 8364 - uid: 12131 components: - type: Transform - pos: -22.5,10.5 + pos: -27.5,44.5 parent: 8364 - uid: 12132 components: - type: Transform - pos: -23.5,10.5 + pos: -27.5,45.5 parent: 8364 - uid: 12133 components: - type: Transform - pos: -24.5,10.5 + pos: -25.5,45.5 parent: 8364 - uid: 12134 components: - type: Transform - pos: -25.5,10.5 + pos: -23.5,44.5 parent: 8364 - uid: 12135 components: - type: Transform - pos: -25.5,10.5 + pos: -26.5,45.5 parent: 8364 - uid: 12136 components: - type: Transform - pos: -25.5,9.5 + pos: -24.5,45.5 parent: 8364 - uid: 12137 components: - type: Transform - pos: -25.5,8.5 + pos: -24.5,44.5 parent: 8364 - uid: 12138 components: - type: Transform - pos: -25.5,7.5 + pos: -25.5,44.5 parent: 8364 - uid: 12139 components: - type: Transform - pos: -25.5,6.5 + pos: -25.5,43.5 parent: 8364 - uid: 12140 components: - type: Transform - pos: -25.5,5.5 + pos: -25.5,42.5 parent: 8364 - uid: 12141 components: - type: Transform - pos: -25.5,4.5 + pos: -25.5,41.5 parent: 8364 - uid: 12142 components: - type: Transform - pos: -25.5,3.5 + pos: -24.5,41.5 parent: 8364 - uid: 12143 components: - type: Transform - pos: -25.5,2.5 + pos: -24.5,40.5 parent: 8364 - uid: 12144 components: - type: Transform - pos: -25.5,1.5 + pos: -24.5,39.5 parent: 8364 - uid: 12145 components: - type: Transform - pos: -25.5,0.5 + pos: -24.5,38.5 parent: 8364 - uid: 12146 components: - type: Transform - pos: -25.5,-0.5 + pos: -24.5,37.5 parent: 8364 - uid: 12147 components: - type: Transform - pos: -25.5,-1.5 + pos: -25.5,37.5 parent: 8364 - uid: 12148 components: @@ -54697,62 +54983,42 @@ entities: - uid: 12166 components: - type: Transform - pos: -4.5,17.5 + pos: -26.5,37.5 parent: 8364 - uid: 12167 components: - type: Transform - pos: -4.5,16.5 + pos: -27.5,37.5 parent: 8364 - uid: 12168 components: - type: Transform - pos: -4.5,15.5 + pos: -28.5,37.5 parent: 8364 - uid: 12169 components: - type: Transform - pos: -5.5,15.5 + pos: -32.5,37.5 parent: 8364 - uid: 12170 components: - type: Transform - pos: -6.5,15.5 - parent: 8364 - - uid: 12171 - components: - - type: Transform - pos: -7.5,15.5 - parent: 8364 - - uid: 12172 - components: - - type: Transform - pos: -7.5,14.5 - parent: 8364 - - uid: 12174 - components: - - type: Transform - pos: -13.5,19.5 - parent: 8364 - - uid: 12175 - components: - - type: Transform - pos: -13.5,18.5 + pos: -32.5,38.5 parent: 8364 - uid: 12176 components: - type: Transform - pos: -13.5,17.5 + pos: -16.5,28.5 parent: 8364 - uid: 12177 components: - type: Transform - pos: -13.5,16.5 + pos: -17.5,28.5 parent: 8364 - uid: 12178 components: - type: Transform - pos: -13.5,15.5 + pos: -18.5,28.5 parent: 8364 - uid: 12179 components: @@ -54844,66 +55110,11 @@ entities: - type: Transform pos: -38.5,10.5 parent: 8364 - - uid: 12307 - components: - - type: Transform - pos: -37.5,10.5 - parent: 8364 - - uid: 12308 - components: - - type: Transform - pos: -36.5,10.5 - parent: 8364 - - uid: 12309 - components: - - type: Transform - pos: -35.5,10.5 - parent: 8364 - - uid: 12310 - components: - - type: Transform - pos: -34.5,10.5 - parent: 8364 - - uid: 12311 - components: - - type: Transform - pos: -33.5,10.5 - parent: 8364 - - uid: 12312 - components: - - type: Transform - pos: -32.5,10.5 - parent: 8364 - uid: 12313 components: - type: Transform pos: -31.5,10.5 parent: 8364 - - uid: 12314 - components: - - type: Transform - pos: -30.5,10.5 - parent: 8364 - - uid: 12315 - components: - - type: Transform - pos: -29.5,10.5 - parent: 8364 - - uid: 12316 - components: - - type: Transform - pos: -28.5,10.5 - parent: 8364 - - uid: 12317 - components: - - type: Transform - pos: -27.5,10.5 - parent: 8364 - - uid: 12318 - components: - - type: Transform - pos: -26.5,10.5 - parent: 8364 - uid: 12319 components: - type: Transform @@ -55144,6 +55355,46 @@ entities: - type: Transform pos: -43.5,9.5 parent: 8364 + - uid: 13411 + components: + - type: Transform + pos: -17.5,46.5 + parent: 8364 + - uid: 13412 + components: + - type: Transform + pos: -17.5,45.5 + parent: 8364 + - uid: 13413 + components: + - type: Transform + pos: -17.5,44.5 + parent: 8364 + - uid: 13414 + components: + - type: Transform + pos: -17.5,43.5 + parent: 8364 + - uid: 13417 + components: + - type: Transform + pos: -17.5,42.5 + parent: 8364 + - uid: 13418 + components: + - type: Transform + pos: -17.5,41.5 + parent: 8364 + - uid: 13420 + components: + - type: Transform + pos: -16.5,40.5 + parent: 8364 + - uid: 13439 + components: + - type: Transform + pos: -16.5,41.5 + parent: 8364 - uid: 13443 components: - type: Transform @@ -55184,6 +55435,16 @@ entities: - type: Transform pos: -48.5,16.5 parent: 8364 + - uid: 13512 + components: + - type: Transform + pos: -16.5,42.5 + parent: 8364 + - uid: 13513 + components: + - type: Transform + pos: -16.5,43.5 + parent: 8364 - uid: 13524 components: - type: Transform @@ -55214,6 +55475,141 @@ entities: - type: Transform pos: -18.5,4.5 parent: 8364 + - uid: 13530 + components: + - type: Transform + pos: -16.5,44.5 + parent: 8364 + - uid: 13531 + components: + - type: Transform + pos: -16.5,45.5 + parent: 8364 + - uid: 13533 + components: + - type: Transform + pos: -16.5,46.5 + parent: 8364 + - uid: 13612 + components: + - type: Transform + pos: -16.5,47.5 + parent: 8364 + - uid: 13616 + components: + - type: Transform + pos: -15.5,46.5 + parent: 8364 + - uid: 13617 + components: + - type: Transform + pos: -15.5,45.5 + parent: 8364 + - uid: 13621 + components: + - type: Transform + pos: -15.5,44.5 + parent: 8364 + - uid: 13629 + components: + - type: Transform + pos: -15.5,42.5 + parent: 8364 + - uid: 13630 + components: + - type: Transform + pos: -15.5,41.5 + parent: 8364 + - uid: 13632 + components: + - type: Transform + pos: -13.5,43.5 + parent: 8364 + - uid: 13633 + components: + - type: Transform + pos: -13.5,42.5 + parent: 8364 + - uid: 13641 + components: + - type: Transform + pos: -13.5,41.5 + parent: 8364 + - uid: 13642 + components: + - type: Transform + pos: -12.5,41.5 + parent: 8364 + - uid: 13643 + components: + - type: Transform + pos: -11.5,41.5 + parent: 8364 + - uid: 13644 + components: + - type: Transform + pos: -10.5,41.5 + parent: 8364 + - uid: 13646 + components: + - type: Transform + pos: -9.5,41.5 + parent: 8364 + - uid: 13654 + components: + - type: Transform + pos: -8.5,41.5 + parent: 8364 + - uid: 13655 + components: + - type: Transform + pos: -7.5,41.5 + parent: 8364 + - uid: 13656 + components: + - type: Transform + pos: -6.5,41.5 + parent: 8364 + - uid: 13657 + components: + - type: Transform + pos: -5.5,41.5 + parent: 8364 + - uid: 13659 + components: + - type: Transform + pos: -11.5,48.5 + parent: 8364 + - uid: 13667 + components: + - type: Transform + pos: -11.5,47.5 + parent: 8364 + - uid: 13668 + components: + - type: Transform + pos: -11.5,46.5 + parent: 8364 + - uid: 13670 + components: + - type: Transform + pos: -12.5,46.5 + parent: 8364 + - uid: 13671 + components: + - type: Transform + pos: -13.5,46.5 + parent: 8364 + - uid: 13672 + components: + - type: Transform + pos: -13.5,45.5 + parent: 8364 + - uid: 13673 + components: + - type: Transform + pos: -13.5,44.5 + parent: 8364 - uid: 13870 components: - type: Transform @@ -58614,35 +59010,25 @@ entities: - type: Transform pos: -7.5,-54.5 parent: 8364 - - uid: 19887 - components: - - type: Transform - pos: -0.5,42.5 - parent: 8364 - - uid: 19888 - components: - - type: Transform - pos: 0.5,42.5 - parent: 8364 - - uid: 19889 - components: - - type: Transform - pos: 1.5,42.5 - parent: 8364 - - uid: 19925 - components: - - type: Transform - pos: 8.5,39.5 - parent: 8364 - - uid: 19926 - components: - - type: Transform - pos: 8.5,40.5 - parent: 8364 - uid: 19927 components: - type: Transform - pos: 8.5,41.5 + pos: 1.5,22.5 + parent: 8364 + - uid: 20157 + components: + - type: Transform + pos: 10.5,41.5 + parent: 8364 + - uid: 20158 + components: + - type: Transform + pos: 10.5,40.5 + parent: 8364 + - uid: 20159 + components: + - type: Transform + pos: 10.5,39.5 parent: 8364 - uid: 20164 components: @@ -58674,6 +59060,21 @@ entities: - type: Transform pos: 83.5,-64.5 parent: 8364 + - uid: 20174 + components: + - type: Transform + pos: 10.5,38.5 + parent: 8364 + - uid: 20175 + components: + - type: Transform + pos: 10.5,37.5 + parent: 8364 + - uid: 20184 + components: + - type: Transform + pos: 10.5,36.5 + parent: 8364 - uid: 20223 components: - type: Transform @@ -59289,25 +59690,205 @@ entities: - type: Transform pos: 55.5,-32.5 parent: 8364 + - uid: 20856 + components: + - type: Transform + pos: 10.5,35.5 + parent: 8364 + - uid: 20857 + components: + - type: Transform + pos: 9.5,41.5 + parent: 8364 - uid: 20858 components: - type: Transform pos: 66.5,-26.5 parent: 8364 + - uid: 20860 + components: + - type: Transform + pos: 8.5,41.5 + parent: 8364 + - uid: 20861 + components: + - type: Transform + pos: 7.5,41.5 + parent: 8364 + - uid: 20869 + components: + - type: Transform + pos: 6.5,41.5 + parent: 8364 + - uid: 20871 + components: + - type: Transform + pos: 5.5,41.5 + parent: 8364 + - uid: 20873 + components: + - type: Transform + pos: 4.5,41.5 + parent: 8364 + - uid: 20875 + components: + - type: Transform + pos: 3.5,41.5 + parent: 8364 + - uid: 20884 + components: + - type: Transform + pos: 3.5,40.5 + parent: 8364 + - uid: 20885 + components: + - type: Transform + pos: 3.5,39.5 + parent: 8364 + - uid: 20887 + components: + - type: Transform + pos: 3.5,38.5 + parent: 8364 + - uid: 21091 + components: + - type: Transform + pos: 3.5,37.5 + parent: 8364 + - uid: 21092 + components: + - type: Transform + pos: 2.5,37.5 + parent: 8364 + - uid: 21233 + components: + - type: Transform + pos: 1.5,37.5 + parent: 8364 + - uid: 21244 + components: + - type: Transform + pos: 0.5,37.5 + parent: 8364 + - uid: 21245 + components: + - type: Transform + pos: -0.5,37.5 + parent: 8364 + - uid: 21313 + components: + - type: Transform + pos: -1.5,37.5 + parent: 8364 + - uid: 21326 + components: + - type: Transform + pos: -2.5,37.5 + parent: 8364 - uid: 21376 components: - type: Transform pos: 66.5,-39.5 parent: 8364 + - uid: 21409 + components: + - type: Transform + pos: -3.5,37.5 + parent: 8364 - uid: 21473 components: - type: Transform pos: 60.5,-35.5 parent: 8364 + - uid: 21485 + components: + - type: Transform + pos: -4.5,37.5 + parent: 8364 + - uid: 21512 + components: + - type: Transform + pos: -5.5,37.5 + parent: 8364 + - uid: 21513 + components: + - type: Transform + pos: -6.5,37.5 + parent: 8364 + - uid: 21514 + components: + - type: Transform + pos: -7.5,37.5 + parent: 8364 + - uid: 21515 + components: + - type: Transform + pos: -8.5,37.5 + parent: 8364 + - uid: 21578 + components: + - type: Transform + pos: -9.5,37.5 + parent: 8364 - uid: 21580 components: - type: Transform - pos: 17.5,31.5 + pos: -10.5,37.5 + parent: 8364 + - uid: 21710 + components: + - type: Transform + pos: -11.5,37.5 + parent: 8364 + - uid: 21711 + components: + - type: Transform + pos: -12.5,37.5 + parent: 8364 + - uid: 21783 + components: + - type: Transform + pos: -5.5,38.5 + parent: 8364 + - uid: 21784 + components: + - type: Transform + pos: -5.5,39.5 + parent: 8364 + - uid: 21785 + components: + - type: Transform + pos: -5.5,40.5 + parent: 8364 + - uid: 21786 + components: + - type: Transform + pos: -5.5,42.5 + parent: 8364 + - uid: 21787 + components: + - type: Transform + pos: -5.5,43.5 + parent: 8364 + - uid: 21789 + components: + - type: Transform + pos: -5.5,44.5 + parent: 8364 + - uid: 21790 + components: + - type: Transform + pos: -5.5,45.5 + parent: 8364 + - uid: 21791 + components: + - type: Transform + pos: -5.5,46.5 + parent: 8364 + - uid: 21792 + components: + - type: Transform + pos: -5.5,47.5 parent: 8364 - uid: 21836 components: @@ -59799,11 +60380,146 @@ entities: - type: Transform pos: 71.5,-45.5 parent: 8364 + - uid: 21983 + components: + - type: Transform + pos: -5.5,48.5 + parent: 8364 + - uid: 21995 + components: + - type: Transform + pos: -5.5,49.5 + parent: 8364 + - uid: 21996 + components: + - type: Transform + pos: -5.5,50.5 + parent: 8364 + - uid: 21997 + components: + - type: Transform + pos: -5.5,51.5 + parent: 8364 + - uid: 21998 + components: + - type: Transform + pos: -5.5,52.5 + parent: 8364 + - uid: 21999 + components: + - type: Transform + pos: 3.5,42.5 + parent: 8364 - uid: 22005 components: - type: Transform pos: -10.5,-19.5 parent: 8364 + - uid: 22018 + components: + - type: Transform + pos: 3.5,43.5 + parent: 8364 + - uid: 22138 + components: + - type: Transform + pos: 3.5,44.5 + parent: 8364 + - uid: 22176 + components: + - type: Transform + pos: 3.5,45.5 + parent: 8364 + - uid: 22189 + components: + - type: Transform + pos: 3.5,46.5 + parent: 8364 + - uid: 22190 + components: + - type: Transform + pos: 3.5,47.5 + parent: 8364 + - uid: 22191 + components: + - type: Transform + pos: -0.5,49.5 + parent: 8364 + - uid: 22192 + components: + - type: Transform + pos: -0.5,48.5 + parent: 8364 + - uid: 22193 + components: + - type: Transform + pos: 0.5,48.5 + parent: 8364 + - uid: 22194 + components: + - type: Transform + pos: 1.5,48.5 + parent: 8364 + - uid: 22195 + components: + - type: Transform + pos: 2.5,48.5 + parent: 8364 + - uid: 22196 + components: + - type: Transform + pos: 3.5,48.5 + parent: 8364 + - uid: 22197 + components: + - type: Transform + pos: -0.5,50.5 + parent: 8364 + - uid: 22198 + components: + - type: Transform + pos: 0.5,50.5 + parent: 8364 + - uid: 22199 + components: + - type: Transform + pos: 1.5,50.5 + parent: 8364 + - uid: 22202 + components: + - type: Transform + pos: 3.5,49.5 + parent: 8364 + - uid: 22203 + components: + - type: Transform + pos: 3.5,50.5 + parent: 8364 + - uid: 22204 + components: + - type: Transform + pos: 3.5,51.5 + parent: 8364 + - uid: 22205 + components: + - type: Transform + pos: 3.5,52.5 + parent: 8364 + - uid: 22206 + components: + - type: Transform + pos: 4.5,52.5 + parent: 8364 + - uid: 22207 + components: + - type: Transform + pos: 5.5,52.5 + parent: 8364 + - uid: 22215 + components: + - type: Transform + pos: 6.5,52.5 + parent: 8364 - uid: 22216 components: - type: Transform @@ -59824,11 +60540,6 @@ entities: - type: Transform pos: 44.5,-3.5 parent: 8364 - - uid: 22708 - components: - - type: Transform - pos: 15.5,29.5 - parent: 8364 - uid: 22753 components: - type: Transform @@ -59914,6 +60625,26 @@ entities: - type: Transform pos: -1.5,-8.5 parent: 8364 + - uid: 24434 + components: + - type: Transform + pos: 10.5,42.5 + parent: 8364 + - uid: 24653 + components: + - type: Transform + pos: 10.5,43.5 + parent: 8364 + - uid: 24766 + components: + - type: Transform + pos: 10.5,44.5 + parent: 8364 + - uid: 24915 + components: + - type: Transform + pos: 10.5,46.5 + parent: 8364 - uid: 24923 components: - type: Transform @@ -59929,10 +60660,10 @@ entities: - type: Transform pos: -0.5,-19.5 parent: 8364 - - uid: 25005 + - uid: 24987 components: - type: Transform - pos: 1.5,40.5 + pos: 10.5,45.5 parent: 8364 - uid: 25089 components: @@ -59954,25 +60685,210 @@ entities: - type: Transform pos: 66.5,-41.5 parent: 8364 - - uid: 25615 + - uid: 25456 components: - type: Transform - pos: -10.5,26.5 + pos: 5.5,32.5 parent: 8364 - - uid: 25616 + - uid: 25457 components: - type: Transform - pos: -6.5,26.5 + pos: 4.5,32.5 parent: 8364 - - uid: 25617 + - uid: 25459 components: - type: Transform - pos: -2.5,26.5 + pos: 3.5,32.5 parent: 8364 - - uid: 25618 + - uid: 25460 components: - type: Transform - pos: 1.5,26.5 + pos: 3.5,33.5 + parent: 8364 + - uid: 25461 + components: + - type: Transform + pos: 3.5,34.5 + parent: 8364 + - uid: 25462 + components: + - type: Transform + pos: 3.5,35.5 + parent: 8364 + - uid: 25463 + components: + - type: Transform + pos: 3.5,36.5 + parent: 8364 + - uid: 25482 + components: + - type: Transform + pos: 0.5,39.5 + parent: 8364 + - uid: 25483 + components: + - type: Transform + pos: 0.5,38.5 + parent: 8364 + - uid: 25530 + components: + - type: Transform + pos: -1.5,36.5 + parent: 8364 + - uid: 25531 + components: + - type: Transform + pos: -1.5,35.5 + parent: 8364 + - uid: 25532 + components: + - type: Transform + pos: -1.5,34.5 + parent: 8364 + - uid: 25533 + components: + - type: Transform + pos: -1.5,33.5 + parent: 8364 + - uid: 25534 + components: + - type: Transform + pos: -1.5,32.5 + parent: 8364 + - uid: 25535 + components: + - type: Transform + pos: -1.5,31.5 + parent: 8364 + - uid: 25536 + components: + - type: Transform + pos: -1.5,30.5 + parent: 8364 + - uid: 25537 + components: + - type: Transform + pos: -1.5,29.5 + parent: 8364 + - uid: 25538 + components: + - type: Transform + pos: -1.5,28.5 + parent: 8364 + - uid: 25539 + components: + - type: Transform + pos: -1.5,27.5 + parent: 8364 + - uid: 25540 + components: + - type: Transform + pos: -2.5,27.5 + parent: 8364 + - uid: 25541 + components: + - type: Transform + pos: -3.5,27.5 + parent: 8364 + - uid: 25542 + components: + - type: Transform + pos: -4.5,27.5 + parent: 8364 + - uid: 25543 + components: + - type: Transform + pos: -6.5,27.5 + parent: 8364 + - uid: 25544 + components: + - type: Transform + pos: -7.5,27.5 + parent: 8364 + - uid: 25545 + components: + - type: Transform + pos: -8.5,27.5 + parent: 8364 + - uid: 25547 + components: + - type: Transform + pos: -5.5,27.5 + parent: 8364 + - uid: 25588 + components: + - type: Transform + pos: -8.5,28.5 + parent: 8364 + - uid: 25589 + components: + - type: Transform + pos: -8.5,29.5 + parent: 8364 + - uid: 25590 + components: + - type: Transform + pos: -8.5,30.5 + parent: 8364 + - uid: 25591 + components: + - type: Transform + pos: -8.5,32.5 + parent: 8364 + - uid: 25592 + components: + - type: Transform + pos: -8.5,31.5 + parent: 8364 + - uid: 25593 + components: + - type: Transform + pos: -7.5,32.5 + parent: 8364 + - uid: 25594 + components: + - type: Transform + pos: -6.5,32.5 + parent: 8364 + - uid: 25595 + components: + - type: Transform + pos: -6.5,31.5 + parent: 8364 + - uid: 25596 + components: + - type: Transform + pos: -6.5,30.5 + parent: 8364 + - uid: 25602 + components: + - type: Transform + pos: -4.5,52.5 + parent: 8364 + - uid: 25603 + components: + - type: Transform + pos: -3.5,52.5 + parent: 8364 + - uid: 25824 + components: + - type: Transform + pos: -13.5,25.5 + parent: 8364 + - uid: 25865 + components: + - type: Transform + pos: -15.5,25.5 + parent: 8364 + - uid: 26026 + components: + - type: Transform + pos: 7.5,-92.5 + parent: 8364 + - uid: 26030 + components: + - type: Transform + pos: 7.5,-91.5 parent: 8364 - uid: 26074 components: @@ -59994,16 +60910,6 @@ entities: - type: Transform pos: -8.5,-83.5 parent: 8364 - - uid: 26091 - components: - - type: Transform - pos: -8.5,-84.5 - parent: 8364 - - uid: 26092 - components: - - type: Transform - pos: -8.5,-85.5 - parent: 8364 - uid: 26093 components: - type: Transform @@ -60014,11 +60920,6 @@ entities: - type: Transform pos: -8.5,-88.5 parent: 8364 - - uid: 26095 - components: - - type: Transform - pos: -8.5,-87.5 - parent: 8364 - uid: 26096 components: - type: Transform @@ -60034,661 +60935,6 @@ entities: - type: Transform pos: -8.5,-90.5 parent: 8364 - - uid: 26160 - components: - - type: Transform - pos: -20.5,51.5 - parent: 8364 - - uid: 26161 - components: - - type: Transform - pos: -21.5,51.5 - parent: 8364 - - uid: 26162 - components: - - type: Transform - pos: -22.5,51.5 - parent: 8364 - - uid: 26163 - components: - - type: Transform - pos: -23.5,51.5 - parent: 8364 - - uid: 26164 - components: - - type: Transform - pos: -23.5,50.5 - parent: 8364 - - uid: 26165 - components: - - type: Transform - pos: -23.5,49.5 - parent: 8364 - - uid: 26166 - components: - - type: Transform - pos: -23.5,48.5 - parent: 8364 - - uid: 26167 - components: - - type: Transform - pos: -23.5,47.5 - parent: 8364 - - uid: 26168 - components: - - type: Transform - pos: -23.5,46.5 - parent: 8364 - - uid: 26169 - components: - - type: Transform - pos: -23.5,45.5 - parent: 8364 - - uid: 26170 - components: - - type: Transform - pos: -23.5,44.5 - parent: 8364 - - uid: 26171 - components: - - type: Transform - pos: -22.5,44.5 - parent: 8364 - - uid: 26172 - components: - - type: Transform - pos: -21.5,44.5 - parent: 8364 - - uid: 26173 - components: - - type: Transform - pos: -20.5,44.5 - parent: 8364 - - uid: 26174 - components: - - type: Transform - pos: -19.5,44.5 - parent: 8364 - - uid: 26175 - components: - - type: Transform - pos: -19.5,45.5 - parent: 8364 - - uid: 26176 - components: - - type: Transform - pos: -19.5,46.5 - parent: 8364 - - uid: 26177 - components: - - type: Transform - pos: -18.5,44.5 - parent: 8364 - - uid: 26178 - components: - - type: Transform - pos: -17.5,44.5 - parent: 8364 - - uid: 26179 - components: - - type: Transform - pos: -16.5,44.5 - parent: 8364 - - uid: 26180 - components: - - type: Transform - pos: -15.5,44.5 - parent: 8364 - - uid: 26181 - components: - - type: Transform - pos: -14.5,44.5 - parent: 8364 - - uid: 26182 - components: - - type: Transform - pos: -13.5,44.5 - parent: 8364 - - uid: 26183 - components: - - type: Transform - pos: -12.5,44.5 - parent: 8364 - - uid: 26184 - components: - - type: Transform - pos: -11.5,44.5 - parent: 8364 - - uid: 26185 - components: - - type: Transform - pos: -10.5,44.5 - parent: 8364 - - uid: 26186 - components: - - type: Transform - pos: -10.5,45.5 - parent: 8364 - - uid: 26187 - components: - - type: Transform - pos: -10.5,46.5 - parent: 8364 - - uid: 26188 - components: - - type: Transform - pos: -9.5,45.5 - parent: 8364 - - uid: 26189 - components: - - type: Transform - pos: -8.5,45.5 - parent: 8364 - - uid: 26190 - components: - - type: Transform - pos: -7.5,45.5 - parent: 8364 - - uid: 26191 - components: - - type: Transform - pos: -7.5,46.5 - parent: 8364 - - uid: 26192 - components: - - type: Transform - pos: -7.5,47.5 - parent: 8364 - - uid: 26193 - components: - - type: Transform - pos: -7.5,48.5 - parent: 8364 - - uid: 26194 - components: - - type: Transform - pos: -7.5,49.5 - parent: 8364 - - uid: 26195 - components: - - type: Transform - pos: -7.5,50.5 - parent: 8364 - - uid: 26196 - components: - - type: Transform - pos: -7.5,51.5 - parent: 8364 - - uid: 26197 - components: - - type: Transform - pos: -7.5,52.5 - parent: 8364 - - uid: 26198 - components: - - type: Transform - pos: -7.5,53.5 - parent: 8364 - - uid: 26199 - components: - - type: Transform - pos: -6.5,50.5 - parent: 8364 - - uid: 26200 - components: - - type: Transform - pos: -5.5,50.5 - parent: 8364 - - uid: 26201 - components: - - type: Transform - pos: -4.5,50.5 - parent: 8364 - - uid: 26202 - components: - - type: Transform - pos: -3.5,50.5 - parent: 8364 - - uid: 26203 - components: - - type: Transform - pos: -2.5,50.5 - parent: 8364 - - uid: 26204 - components: - - type: Transform - pos: -1.5,50.5 - parent: 8364 - - uid: 26205 - components: - - type: Transform - pos: -0.5,50.5 - parent: 8364 - - uid: 26206 - components: - - type: Transform - pos: 0.5,50.5 - parent: 8364 - - uid: 26207 - components: - - type: Transform - pos: 0.5,52.5 - parent: 8364 - - uid: 26208 - components: - - type: Transform - pos: 0.5,51.5 - parent: 8364 - - uid: 26209 - components: - - type: Transform - pos: 0.5,49.5 - parent: 8364 - - uid: 26210 - components: - - type: Transform - pos: 0.5,48.5 - parent: 8364 - - uid: 26211 - components: - - type: Transform - pos: 0.5,47.5 - parent: 8364 - - uid: 26212 - components: - - type: Transform - pos: 0.5,46.5 - parent: 8364 - - uid: 26213 - components: - - type: Transform - pos: 1.5,46.5 - parent: 8364 - - uid: 26214 - components: - - type: Transform - pos: 2.5,46.5 - parent: 8364 - - uid: 26215 - components: - - type: Transform - pos: 3.5,46.5 - parent: 8364 - - uid: 26216 - components: - - type: Transform - pos: 4.5,46.5 - parent: 8364 - - uid: 26217 - components: - - type: Transform - pos: -0.5,46.5 - parent: 8364 - - uid: 26218 - components: - - type: Transform - pos: -1.5,46.5 - parent: 8364 - - uid: 26219 - components: - - type: Transform - pos: -2.5,46.5 - parent: 8364 - - uid: 26220 - components: - - type: Transform - pos: -7.5,44.5 - parent: 8364 - - uid: 26221 - components: - - type: Transform - pos: -6.5,44.5 - parent: 8364 - - uid: 26222 - components: - - type: Transform - pos: -5.5,44.5 - parent: 8364 - - uid: 26223 - components: - - type: Transform - pos: -4.5,44.5 - parent: 8364 - - uid: 26224 - components: - - type: Transform - pos: -3.5,44.5 - parent: 8364 - - uid: 26225 - components: - - type: Transform - pos: -24.5,44.5 - parent: 8364 - - uid: 26226 - components: - - type: Transform - pos: -25.5,44.5 - parent: 8364 - - uid: 26227 - components: - - type: Transform - pos: -25.5,45.5 - parent: 8364 - - uid: 26228 - components: - - type: Transform - pos: -25.5,43.5 - parent: 8364 - - uid: 26229 - components: - - type: Transform - pos: -21.5,43.5 - parent: 8364 - - uid: 26230 - components: - - type: Transform - pos: -21.5,42.5 - parent: 8364 - - uid: 26231 - components: - - type: Transform - pos: -21.5,41.5 - parent: 8364 - - uid: 26232 - components: - - type: Transform - pos: -21.5,40.5 - parent: 8364 - - uid: 26233 - components: - - type: Transform - pos: -21.5,39.5 - parent: 8364 - - uid: 26234 - components: - - type: Transform - pos: -18.5,39.5 - parent: 8364 - - uid: 26235 - components: - - type: Transform - pos: -18.5,40.5 - parent: 8364 - - uid: 26236 - components: - - type: Transform - pos: -18.5,41.5 - parent: 8364 - - uid: 26237 - components: - - type: Transform - pos: -18.5,42.5 - parent: 8364 - - uid: 26238 - components: - - type: Transform - pos: -18.5,43.5 - parent: 8364 - - uid: 26239 - components: - - type: Transform - pos: -14.5,43.5 - parent: 8364 - - uid: 26240 - components: - - type: Transform - pos: -14.5,42.5 - parent: 8364 - - uid: 26241 - components: - - type: Transform - pos: -14.5,41.5 - parent: 8364 - - uid: 26242 - components: - - type: Transform - pos: -14.5,40.5 - parent: 8364 - - uid: 26243 - components: - - type: Transform - pos: -14.5,39.5 - parent: 8364 - - uid: 26244 - components: - - type: Transform - pos: -15.5,39.5 - parent: 8364 - - uid: 26245 - components: - - type: Transform - pos: -13.5,39.5 - parent: 8364 - - uid: 26246 - components: - - type: Transform - pos: -8.5,48.5 - parent: 8364 - - uid: 26247 - components: - - type: Transform - pos: -9.5,48.5 - parent: 8364 - - uid: 26248 - components: - - type: Transform - pos: -10.5,48.5 - parent: 8364 - - uid: 26249 - components: - - type: Transform - pos: -11.5,48.5 - parent: 8364 - - uid: 26250 - components: - - type: Transform - pos: -11.5,49.5 - parent: 8364 - - uid: 26259 - components: - - type: Transform - pos: -16.5,38.5 - parent: 8364 - - uid: 26262 - components: - - type: Transform - pos: -20.5,50.5 - parent: 8364 - - uid: 26263 - components: - - type: Transform - pos: -19.5,50.5 - parent: 8364 - - uid: 26264 - components: - - type: Transform - pos: -18.5,50.5 - parent: 8364 - - uid: 26265 - components: - - type: Transform - pos: -17.5,50.5 - parent: 8364 - - uid: 26266 - components: - - type: Transform - pos: -16.5,50.5 - parent: 8364 - - uid: 26267 - components: - - type: Transform - pos: -15.5,50.5 - parent: 8364 - - uid: 26268 - components: - - type: Transform - pos: -15.5,49.5 - parent: 8364 - - uid: 26269 - components: - - type: Transform - pos: -14.5,49.5 - parent: 8364 - - uid: 26270 - components: - - type: Transform - pos: -13.5,49.5 - parent: 8364 - - uid: 26271 - components: - - type: Transform - pos: -12.5,49.5 - parent: 8364 - - uid: 26272 - components: - - type: Transform - pos: -4.5,35.5 - parent: 8364 - - uid: 26273 - components: - - type: Transform - pos: -5.5,35.5 - parent: 8364 - - uid: 26274 - components: - - type: Transform - pos: -6.5,35.5 - parent: 8364 - - uid: 26275 - components: - - type: Transform - pos: -5.5,36.5 - parent: 8364 - - uid: 26276 - components: - - type: Transform - pos: -5.5,37.5 - parent: 8364 - - uid: 26277 - components: - - type: Transform - pos: -6.5,37.5 - parent: 8364 - - uid: 26278 - components: - - type: Transform - pos: -6.5,38.5 - parent: 8364 - - uid: 26279 - components: - - type: Transform - pos: -4.5,37.5 - parent: 8364 - - uid: 26280 - components: - - type: Transform - pos: -4.5,38.5 - parent: 8364 - - uid: 26281 - components: - - type: Transform - pos: -7.5,35.5 - parent: 8364 - - uid: 26282 - components: - - type: Transform - pos: -8.5,35.5 - parent: 8364 - - uid: 26283 - components: - - type: Transform - pos: -9.5,35.5 - parent: 8364 - - uid: 26284 - components: - - type: Transform - pos: -10.5,35.5 - parent: 8364 - - uid: 26285 - components: - - type: Transform - pos: -11.5,35.5 - parent: 8364 - - uid: 26286 - components: - - type: Transform - pos: -12.5,35.5 - parent: 8364 - - uid: 26287 - components: - - type: Transform - pos: -13.5,35.5 - parent: 8364 - - uid: 26288 - components: - - type: Transform - pos: -14.5,35.5 - parent: 8364 - - uid: 26289 - components: - - type: Transform - pos: -15.5,35.5 - parent: 8364 - - uid: 26290 - components: - - type: Transform - pos: -16.5,35.5 - parent: 8364 - - uid: 26291 - components: - - type: Transform - pos: -16.5,34.5 - parent: 8364 - - uid: 26292 - components: - - type: Transform - pos: -16.5,36.5 - parent: 8364 - - uid: 26293 - components: - - type: Transform - pos: -14.5,36.5 - parent: 8364 - - uid: 26294 - components: - - type: Transform - pos: -14.5,37.5 - parent: 8364 - - uid: 26295 - components: - - type: Transform - pos: -15.5,37.5 - parent: 8364 - - uid: 26296 - components: - - type: Transform - pos: -13.5,37.5 - parent: 8364 - - uid: 26297 - components: - - type: Transform - pos: -9.5,36.5 - parent: 8364 - - uid: 26298 - components: - - type: Transform - pos: -9.5,37.5 - parent: 8364 - - uid: 26456 - components: - - type: Transform - pos: 7.5,41.5 - parent: 8364 - - uid: 26572 - components: - - type: Transform - pos: -14.5,34.5 - parent: 8364 - uid: 26673 components: - type: Transform @@ -60819,11 +61065,6 @@ entities: - type: Transform pos: 9.5,-80.5 parent: 8364 - - uid: 27360 - components: - - type: Transform - pos: 9.5,-81.5 - parent: 8364 - uid: 27361 components: - type: Transform @@ -61059,35 +61300,105 @@ entities: - type: Transform pos: 47.5,-28.5 parent: 8364 - - uid: 28330 + - uid: 28399 components: - type: Transform - pos: 15.5,42.5 + pos: 6.5,-92.5 parent: 8364 - - uid: 28337 + - uid: 28400 components: - type: Transform - pos: -0.5,37.5 + pos: 4.5,-92.5 parent: 8364 - - uid: 28338 + - uid: 28401 components: - type: Transform - pos: -1.5,37.5 + pos: 3.5,-92.5 parent: 8364 - - uid: 28339 + - uid: 28402 components: - type: Transform - pos: -2.5,37.5 + pos: -6.5,-92.5 parent: 8364 - - uid: 28340 + - uid: 28403 components: - type: Transform - pos: -2.5,36.5 + pos: -8.5,-92.5 parent: 8364 - - uid: 28341 + - uid: 28404 components: - type: Transform - pos: -3.5,36.5 + pos: -7.5,-92.5 + parent: 8364 + - uid: 28406 + components: + - type: Transform + pos: -4.5,-92.5 + parent: 8364 + - uid: 28407 + components: + - type: Transform + pos: -3.5,-92.5 + parent: 8364 + - uid: 28594 + components: + - type: Transform + pos: 0.5,22.5 + parent: 8364 + - uid: 28595 + components: + - type: Transform + pos: -0.5,22.5 + parent: 8364 + - uid: 28596 + components: + - type: Transform + pos: -0.5,23.5 + parent: 8364 + - uid: 28597 + components: + - type: Transform + pos: -0.5,24.5 + parent: 8364 + - uid: 28598 + components: + - type: Transform + pos: -0.5,25.5 + parent: 8364 + - uid: 28599 + components: + - type: Transform + pos: -0.5,26.5 + parent: 8364 + - uid: 28600 + components: + - type: Transform + pos: -0.5,27.5 + parent: 8364 + - uid: 28610 + components: + - type: Transform + pos: -13.5,15.5 + parent: 8364 + - uid: 28611 + components: + - type: Transform + pos: -12.5,15.5 + parent: 8364 + - uid: 28612 + components: + - type: Transform + pos: -11.5,15.5 + parent: 8364 + - uid: 28613 + components: + - type: Transform + pos: -10.5,15.5 + parent: 8364 + - uid: 28630 + components: + - type: Transform + pos: -19.5,19.5 parent: 8364 - proto: CableMVStack entities: @@ -61193,21 +61504,6 @@ entities: - type: Transform pos: -31.5,19.5 parent: 8364 - - uid: 13530 - components: - - type: Transform - pos: -19.5,4.5 - parent: 8364 - - uid: 13531 - components: - - type: Transform - pos: -20.5,4.5 - parent: 8364 - - uid: 13533 - components: - - type: Transform - pos: -21.5,4.5 - parent: 8364 - proto: CableTerminal entities: - uid: 6319 @@ -61287,13 +61583,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-72.5 parent: 8364 -- proto: CannabisSeeds - entities: - - uid: 26471 - components: - - type: Transform - pos: -23.525152,40.482742 - parent: 8364 - proto: CapacitorStockPart entities: - uid: 16363 @@ -61354,11 +61643,6 @@ entities: parent: 8364 - proto: Carpet entities: - - uid: 370 - components: - - type: Transform - pos: -15.5,52.5 - parent: 8364 - uid: 4508 components: - type: Transform @@ -61374,6 +61658,11 @@ entities: - type: Transform pos: 56.5,-6.5 parent: 8364 + - uid: 5080 + components: + - type: Transform + pos: 4.5,55.5 + parent: 8364 - uid: 5260 components: - type: Transform @@ -61494,81 +61783,6 @@ entities: - type: Transform pos: 63.5,-9.5 parent: 8364 - - uid: 5438 - components: - - type: Transform - pos: -3.5,14.5 - parent: 8364 - - uid: 5439 - components: - - type: Transform - pos: -3.5,13.5 - parent: 8364 - - uid: 5440 - components: - - type: Transform - pos: -4.5,14.5 - parent: 8364 - - uid: 5441 - components: - - type: Transform - pos: -4.5,13.5 - parent: 8364 - - uid: 5442 - components: - - type: Transform - pos: -5.5,14.5 - parent: 8364 - - uid: 5443 - components: - - type: Transform - pos: -5.5,13.5 - parent: 8364 - - uid: 5454 - components: - - type: Transform - pos: 14.5,41.5 - parent: 8364 - - uid: 5455 - components: - - type: Transform - pos: 14.5,40.5 - parent: 8364 - - uid: 5456 - components: - - type: Transform - pos: 14.5,39.5 - parent: 8364 - - uid: 5459 - components: - - type: Transform - pos: 13.5,41.5 - parent: 8364 - - uid: 5460 - components: - - type: Transform - pos: 13.5,40.5 - parent: 8364 - - uid: 5461 - components: - - type: Transform - pos: 13.5,39.5 - parent: 8364 - - uid: 5464 - components: - - type: Transform - pos: 12.5,41.5 - parent: 8364 - - uid: 5465 - components: - - type: Transform - pos: 12.5,40.5 - parent: 8364 - - uid: 5466 - components: - - type: Transform - pos: 12.5,39.5 - parent: 8364 - uid: 5479 components: - type: Transform @@ -61674,6 +61888,16 @@ entities: - type: Transform pos: 11.5,-24.5 parent: 8364 + - uid: 5731 + components: + - type: Transform + pos: 5.5,53.5 + parent: 8364 + - uid: 5765 + components: + - type: Transform + pos: 5.5,54.5 + parent: 8364 - uid: 6089 components: - type: Transform @@ -61689,6 +61913,26 @@ entities: - type: Transform pos: 55.5,-9.5 parent: 8364 + - uid: 7788 + components: + - type: Transform + pos: 3.5,53.5 + parent: 8364 + - uid: 7928 + components: + - type: Transform + pos: 3.5,55.5 + parent: 8364 + - uid: 7962 + components: + - type: Transform + pos: 4.5,52.5 + parent: 8364 + - uid: 7963 + components: + - type: Transform + pos: 4.5,53.5 + parent: 8364 - uid: 8026 components: - type: Transform @@ -61704,40 +61948,105 @@ entities: - type: Transform pos: 19.5,-8.5 parent: 8364 - - uid: 8405 + - uid: 8575 components: - type: Transform - pos: 14.5,25.5 + pos: 5.5,52.5 parent: 8364 - - uid: 8406 + - uid: 8618 components: - type: Transform - pos: 13.5,25.5 + pos: 3.5,52.5 parent: 8364 - - uid: 8408 + - uid: 8639 components: - type: Transform - pos: 14.5,24.5 + pos: 5.5,55.5 parent: 8364 - - uid: 8430 + - uid: 8680 components: - type: Transform - pos: 13.5,24.5 + pos: -2.5,40.5 parent: 8364 - - uid: 8439 + - uid: 8687 components: - type: Transform - pos: 12.5,25.5 + pos: -2.5,39.5 parent: 8364 - - uid: 8440 + - uid: 8705 components: - type: Transform - pos: 12.5,24.5 + pos: -0.5,40.5 parent: 8364 - - uid: 8611 + - uid: 8706 components: - type: Transform - pos: -15.5,51.5 + pos: -0.5,41.5 + parent: 8364 + - uid: 8783 + components: + - type: Transform + pos: 4.5,54.5 + parent: 8364 + - uid: 8784 + components: + - type: Transform + pos: 3.5,54.5 + parent: 8364 + - uid: 8826 + components: + - type: Transform + pos: -1.5,40.5 + parent: 8364 + - uid: 8827 + components: + - type: Transform + pos: -1.5,41.5 + parent: 8364 + - uid: 8836 + components: + - type: Transform + pos: -2.5,41.5 + parent: 8364 + - uid: 8861 + components: + - type: Transform + pos: -1.5,39.5 + parent: 8364 + - uid: 8984 + components: + - type: Transform + pos: -0.5,39.5 + parent: 8364 + - uid: 9114 + components: + - type: Transform + pos: -25.5,29.5 + parent: 8364 + - uid: 9115 + components: + - type: Transform + pos: -25.5,30.5 + parent: 8364 + - uid: 9116 + components: + - type: Transform + pos: -24.5,29.5 + parent: 8364 + - uid: 9117 + components: + - type: Transform + pos: -24.5,30.5 + parent: 8364 + - uid: 9118 + components: + - type: Transform + pos: -23.5,30.5 + parent: 8364 + - uid: 9119 + components: + - type: Transform + pos: -23.5,29.5 parent: 8364 - uid: 10464 components: @@ -61784,11 +62093,6 @@ entities: - type: Transform pos: 12.5,-27.5 parent: 8364 - - uid: 20175 - components: - - type: Transform - pos: -13.5,41.5 - parent: 8364 - uid: 20895 components: - type: Transform @@ -61902,13 +62206,11 @@ entities: - uid: 24946 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,-8.5 parent: 8364 - uid: 24947 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,-9.5 parent: 8364 - uid: 24949 @@ -61921,31 +62223,6 @@ entities: - type: Transform pos: 56.5,-7.5 parent: 8364 - - uid: 25684 - components: - - type: Transform - pos: -15.5,40.5 - parent: 8364 - - uid: 25696 - components: - - type: Transform - pos: -15.5,41.5 - parent: 8364 - - uid: 25703 - components: - - type: Transform - pos: -14.5,40.5 - parent: 8364 - - uid: 25704 - components: - - type: Transform - pos: -14.5,41.5 - parent: 8364 - - uid: 25705 - components: - - type: Transform - pos: -13.5,40.5 - parent: 8364 - uid: 26022 components: - type: Transform @@ -61961,46 +62238,6 @@ entities: - type: Transform pos: 18.5,-5.5 parent: 8364 - - uid: 26409 - components: - - type: Transform - pos: -14.5,52.5 - parent: 8364 - - uid: 26410 - components: - - type: Transform - pos: -14.5,51.5 - parent: 8364 - - uid: 26412 - components: - - type: Transform - pos: -13.5,51.5 - parent: 8364 - - uid: 26413 - components: - - type: Transform - pos: -13.5,52.5 - parent: 8364 - - uid: 26415 - components: - - type: Transform - pos: -12.5,51.5 - parent: 8364 - - uid: 26416 - components: - - type: Transform - pos: -12.5,52.5 - parent: 8364 - - uid: 26418 - components: - - type: Transform - pos: -11.5,51.5 - parent: 8364 - - uid: 26419 - components: - - type: Transform - pos: -11.5,52.5 - parent: 8364 - uid: 26680 components: - type: Transform @@ -62056,8 +62293,71 @@ entities: - type: Transform pos: 30.5,0.5 parent: 8364 + - uid: 28620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,18.5 + parent: 8364 + - uid: 28621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,19.5 + parent: 8364 + - uid: 28622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,20.5 + parent: 8364 + - uid: 28623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,18.5 + parent: 8364 + - uid: 28624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,19.5 + parent: 8364 + - uid: 28625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,20.5 + parent: 8364 +- proto: CarpetBlack + entities: + - uid: 8439 + components: + - type: Transform + pos: -0.5,55.5 + parent: 8364 + - uid: 8474 + components: + - type: Transform + pos: -0.5,54.5 + parent: 8364 + - uid: 8606 + components: + - type: Transform + pos: -1.5,55.5 + parent: 8364 + - uid: 8612 + components: + - type: Transform + pos: -1.5,54.5 + parent: 8364 - proto: CarpetBlue entities: + - uid: 42 + components: + - type: Transform + pos: 3.5,25.5 + parent: 8364 - uid: 4877 components: - type: Transform @@ -62108,65 +62408,60 @@ entities: - type: Transform pos: 5.5,5.5 parent: 8364 - - uid: 8391 + - uid: 8824 components: - type: Transform - pos: 14.5,27.5 + pos: 3.5,24.5 parent: 8364 - - uid: 8394 + - uid: 8939 components: - type: Transform - pos: 14.5,28.5 + pos: 2.5,23.5 parent: 8364 - - uid: 8395 + - uid: 8940 components: - type: Transform - pos: 15.5,28.5 + pos: 3.5,23.5 parent: 8364 - - uid: 8400 + - uid: 8946 components: - type: Transform - pos: 16.5,27.5 + pos: 2.5,24.5 parent: 8364 - - uid: 8426 + - uid: 8949 components: - type: Transform - pos: 15.5,27.5 + pos: 2.5,25.5 parent: 8364 - - uid: 8437 + - uid: 28645 components: - type: Transform - pos: 16.5,28.5 + pos: -6.5,22.5 parent: 8364 - - uid: 9418 + - uid: 28646 components: - type: Transform - pos: -14.5,16.5 + pos: -6.5,23.5 parent: 8364 - - uid: 9429 + - uid: 28647 components: - type: Transform - pos: -14.5,15.5 + pos: -7.5,23.5 parent: 8364 - - uid: 9430 + - uid: 28648 components: - type: Transform - pos: -14.5,17.5 + pos: -8.5,22.5 parent: 8364 - - uid: 9431 + - uid: 28649 components: - type: Transform - pos: -13.5,15.5 + pos: -8.5,23.5 parent: 8364 - - uid: 9432 + - uid: 28650 components: - type: Transform - pos: -13.5,16.5 - parent: 8364 - - uid: 20184 - components: - - type: Transform - pos: -13.5,17.5 + pos: -7.5,22.5 parent: 8364 - proto: CarpetChapel entities: @@ -62395,6 +62690,103 @@ entities: rot: 1.5707963267948966 rad pos: 70.5,16.5 parent: 8364 +- proto: CarpetCyan + entities: + - uid: 7160 + components: + - type: Transform + pos: 12.5,25.5 + parent: 8364 + - uid: 7172 + components: + - type: Transform + pos: 11.5,24.5 + parent: 8364 + - uid: 7186 + components: + - type: Transform + pos: 8.5,27.5 + parent: 8364 + - uid: 7637 + components: + - type: Transform + pos: 7.5,26.5 + parent: 8364 + - uid: 7647 + components: + - type: Transform + pos: 11.5,23.5 + parent: 8364 + - uid: 7648 + components: + - type: Transform + pos: 10.5,23.5 + parent: 8364 + - uid: 7649 + components: + - type: Transform + pos: 7.5,27.5 + parent: 8364 + - uid: 7651 + components: + - type: Transform + pos: 8.5,26.5 + parent: 8364 + - uid: 7918 + components: + - type: Transform + pos: 11.5,29.5 + parent: 8364 + - uid: 8135 + components: + - type: Transform + pos: 10.5,29.5 + parent: 8364 + - uid: 8389 + components: + - type: Transform + pos: 12.5,24.5 + parent: 8364 + - uid: 8457 + components: + - type: Transform + pos: 10.5,25.5 + parent: 8364 + - uid: 8477 + components: + - type: Transform + pos: 11.5,25.5 + parent: 8364 + - uid: 8485 + components: + - type: Transform + pos: 10.5,30.5 + parent: 8364 + - uid: 8488 + components: + - type: Transform + pos: 11.5,30.5 + parent: 8364 + - uid: 8493 + components: + - type: Transform + pos: 8.5,25.5 + parent: 8364 + - uid: 8494 + components: + - type: Transform + pos: 7.5,25.5 + parent: 8364 + - uid: 8607 + components: + - type: Transform + pos: 12.5,23.5 + parent: 8364 + - uid: 8608 + components: + - type: Transform + pos: 10.5,24.5 + parent: 8364 - proto: CarpetGreen entities: - uid: 828 @@ -62445,31 +62837,26 @@ entities: - uid: 4530 components: - type: Transform - rot: 3.141592653589793 rad pos: 70.5,-8.5 parent: 8364 - uid: 4531 components: - type: Transform - rot: 3.141592653589793 rad pos: 69.5,-9.5 parent: 8364 - uid: 4533 components: - type: Transform - rot: 3.141592653589793 rad pos: 68.5,-9.5 parent: 8364 - uid: 4534 components: - type: Transform - rot: 3.141592653589793 rad pos: 68.5,-10.5 parent: 8364 - uid: 4535 components: - type: Transform - rot: 3.141592653589793 rad pos: 69.5,-10.5 parent: 8364 - uid: 5239 @@ -62495,7 +62882,6 @@ entities: - uid: 5828 components: - type: Transform - rot: 1.5707963267948966 rad pos: -22.5,-12.5 parent: 8364 - uid: 5876 @@ -62553,21 +62939,11 @@ entities: - type: Transform pos: 68.5,-6.5 parent: 8364 - - uid: 7036 - components: - - type: Transform - pos: 18.5,24.5 - parent: 8364 - uid: 7080 components: - type: Transform pos: 64.5,-8.5 parent: 8364 - - uid: 7090 - components: - - type: Transform - pos: 18.5,25.5 - parent: 8364 - uid: 7127 components: - type: Transform @@ -62603,11 +62979,6 @@ entities: - type: Transform pos: 24.5,-3.5 parent: 8364 - - uid: 7980 - components: - - type: Transform - pos: 16.5,24.5 - parent: 8364 - uid: 8146 components: - type: Transform @@ -62623,21 +62994,6 @@ entities: - type: Transform pos: 65.5,-9.5 parent: 8364 - - uid: 8401 - components: - - type: Transform - pos: 16.5,25.5 - parent: 8364 - - uid: 8429 - components: - - type: Transform - pos: 17.5,25.5 - parent: 8364 - - uid: 8433 - components: - - type: Transform - pos: 17.5,24.5 - parent: 8364 - uid: 10551 components: - type: Transform @@ -62656,7 +63012,6 @@ entities: - uid: 10870 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,-12.5 parent: 8364 - uid: 11373 @@ -62812,7 +63167,6 @@ entities: - uid: 17704 components: - type: Transform - rot: 3.141592653589793 rad pos: 70.5,-10.5 parent: 8364 - uid: 19153 @@ -62823,13 +63177,11 @@ entities: - uid: 20119 components: - type: Transform - rot: -1.5707963267948966 rad pos: 73.5,-9.5 parent: 8364 - uid: 20124 components: - type: Transform - rot: -1.5707963267948966 rad pos: 73.5,-8.5 parent: 8364 - uid: 20364 @@ -62900,93 +63252,114 @@ entities: - uid: 23772 components: - type: Transform - rot: 3.141592653589793 rad pos: 70.5,-9.5 parent: 8364 - uid: 24980 components: - type: Transform - rot: 1.5707963267948966 rad pos: 70.5,-7.5 parent: 8364 - uid: 24981 components: - type: Transform - rot: 1.5707963267948966 rad pos: 70.5,-6.5 parent: 8364 - uid: 24985 components: - type: Transform - rot: 1.5707963267948966 rad pos: 70.5,-4.5 parent: 8364 - uid: 24986 components: - type: Transform - rot: 1.5707963267948966 rad pos: 70.5,-5.5 parent: 8364 - uid: 25190 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-13.5 parent: 8364 - uid: 25201 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,-13.5 parent: 8364 - uid: 26117 components: - type: Transform - rot: 3.141592653589793 rad pos: 26.5,-1.5 parent: 8364 - uid: 26118 components: - type: Transform - rot: 3.141592653589793 rad pos: 26.5,-0.5 parent: 8364 - uid: 26119 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,-1.5 parent: 8364 - uid: 26120 components: - type: Transform - rot: 3.141592653589793 rad pos: 26.5,-2.5 parent: 8364 - uid: 26121 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,-2.5 parent: 8364 - uid: 26122 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,-0.5 parent: 8364 - uid: 27021 components: - type: Transform - rot: 1.5707963267948966 rad pos: -22.5,-13.5 parent: 8364 - uid: 27022 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-12.5 parent: 8364 + - uid: 28505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,19.5 + parent: 8364 + - uid: 28607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 8364 + - uid: 28616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,20.5 + parent: 8364 + - uid: 28617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 8364 + - uid: 28618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,19.5 + parent: 8364 + - uid: 28619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 8364 - proto: CarpetOrange entities: - uid: 1753 @@ -63243,43 +63616,36 @@ entities: - uid: 941 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-13.5 parent: 8364 - uid: 3053 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-12.5 parent: 8364 - uid: 3056 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,-12.5 parent: 8364 - uid: 5339 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-15.5 parent: 8364 - uid: 5508 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-12.5 parent: 8364 - uid: 5530 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-12.5 parent: 8364 - uid: 5533 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-13.5 parent: 8364 - uid: 5563 @@ -63320,19 +63686,16 @@ entities: - uid: 5862 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-16.5 parent: 8364 - uid: 5948 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-16.5 parent: 8364 - uid: 8198 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-16.5 parent: 8364 - uid: 13478 @@ -63348,34 +63711,52 @@ entities: - uid: 13810 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,-16.5 parent: 8364 - uid: 19150 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-14.5 parent: 8364 - uid: 19152 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-15.5 parent: 8364 - uid: 22009 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-14.5 parent: 8364 - - uid: 26473 - components: - - type: Transform - pos: -12.5,48.5 - parent: 8364 - proto: Catwalk entities: + - uid: 17 + components: + - type: Transform + pos: -19.5,26.5 + parent: 8364 + - uid: 19 + components: + - type: Transform + pos: -19.5,25.5 + parent: 8364 + - uid: 61 + components: + - type: Transform + pos: -19.5,29.5 + parent: 8364 + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,13.5 + parent: 8364 + - uid: 398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,12.5 + parent: 8364 - uid: 1430 components: - type: Transform @@ -63447,26 +63828,286 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-79.5 parent: 8364 - - uid: 5866 - components: - - type: Transform - pos: 0.5,41.5 - parent: 8364 - uid: 7149 components: - type: Transform pos: -41.5,-37.5 parent: 8364 - - uid: 8998 + - uid: 7201 components: - type: Transform - pos: -1.5,41.5 + pos: -7.5,12.5 + parent: 8364 + - uid: 7204 + components: + - type: Transform + pos: -3.5,12.5 + parent: 8364 + - uid: 7342 + components: + - type: Transform + pos: -8.5,12.5 + parent: 8364 + - uid: 7675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,15.5 + parent: 8364 + - uid: 7728 + components: + - type: Transform + pos: -5.5,12.5 + parent: 8364 + - uid: 7730 + components: + - type: Transform + pos: -4.5,12.5 + parent: 8364 + - uid: 7732 + components: + - type: Transform + pos: -6.5,12.5 + parent: 8364 + - uid: 7733 + components: + - type: Transform + pos: -13.5,11.5 + parent: 8364 + - uid: 7738 + components: + - type: Transform + pos: -19.5,24.5 + parent: 8364 + - uid: 7754 + components: + - type: Transform + pos: -20.5,36.5 + parent: 8364 + - uid: 7755 + components: + - type: Transform + pos: -20.5,37.5 + parent: 8364 + - uid: 8696 + components: + - type: Transform + pos: -20.5,33.5 + parent: 8364 + - uid: 8713 + components: + - type: Transform + pos: -20.5,35.5 + parent: 8364 + - uid: 8714 + components: + - type: Transform + pos: -19.5,27.5 + parent: 8364 + - uid: 8718 + components: + - type: Transform + pos: -20.5,34.5 + parent: 8364 + - uid: 8728 + components: + - type: Transform + pos: -19.5,28.5 + parent: 8364 + - uid: 8731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,18.5 + parent: 8364 + - uid: 8735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,19.5 + parent: 8364 + - uid: 8850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,14.5 parent: 8364 - uid: 9186 components: - type: Transform pos: 2.5,11.5 parent: 8364 + - uid: 9206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 8364 + - uid: 9207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,20.5 + parent: 8364 + - uid: 9227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 8364 + - uid: 9228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,22.5 + parent: 8364 + - uid: 9229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 8364 + - uid: 9230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,24.5 + parent: 8364 + - uid: 9231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,25.5 + parent: 8364 + - uid: 9232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,26.5 + parent: 8364 + - uid: 9233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,34.5 + parent: 8364 + - uid: 9234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,34.5 + parent: 8364 + - uid: 9235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,34.5 + parent: 8364 + - uid: 9236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,34.5 + parent: 8364 + - uid: 9238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,34.5 + parent: 8364 + - uid: 9239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,34.5 + parent: 8364 + - uid: 9240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,33.5 + parent: 8364 + - uid: 9241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,32.5 + parent: 8364 + - uid: 9242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,31.5 + parent: 8364 + - uid: 9244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 8364 + - uid: 9245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,29.5 + parent: 8364 + - uid: 9247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,29.5 + parent: 8364 + - uid: 9249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,27.5 + parent: 8364 + - uid: 9250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,35.5 + parent: 8364 + - uid: 9251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,36.5 + parent: 8364 + - uid: 9252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,37.5 + parent: 8364 + - uid: 9253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,38.5 + parent: 8364 + - uid: 9303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,26.5 + parent: 8364 + - uid: 9816 + components: + - type: Transform + pos: 8.5,34.5 + parent: 8364 + - uid: 9818 + components: + - type: Transform + pos: 7.5,34.5 + parent: 8364 + - uid: 9819 + components: + - type: Transform + pos: 7.5,35.5 + parent: 8364 - uid: 10548 components: - type: Transform @@ -64310,76 +64951,6 @@ entities: - type: Transform pos: 49.5,-53.5 parent: 8364 - - uid: 13395 - components: - - type: Transform - pos: 19.5,30.5 - parent: 8364 - - uid: 13396 - components: - - type: Transform - pos: 20.5,30.5 - parent: 8364 - - uid: 13400 - components: - - type: Transform - pos: 21.5,29.5 - parent: 8364 - - uid: 13401 - components: - - type: Transform - pos: 21.5,28.5 - parent: 8364 - - uid: 13402 - components: - - type: Transform - pos: 21.5,27.5 - parent: 8364 - - uid: 13403 - components: - - type: Transform - pos: 21.5,26.5 - parent: 8364 - - uid: 13404 - components: - - type: Transform - pos: 21.5,25.5 - parent: 8364 - - uid: 13411 - components: - - type: Transform - pos: 21.5,23.5 - parent: 8364 - - uid: 13412 - components: - - type: Transform - pos: 21.5,22.5 - parent: 8364 - - uid: 13413 - components: - - type: Transform - pos: 21.5,21.5 - parent: 8364 - - uid: 13414 - components: - - type: Transform - pos: 21.5,20.5 - parent: 8364 - - uid: 13417 - components: - - type: Transform - pos: 21.5,19.5 - parent: 8364 - - uid: 13418 - components: - - type: Transform - pos: 21.5,18.5 - parent: 8364 - - uid: 13420 - components: - - type: Transform - pos: 20.5,17.5 - parent: 8364 - uid: 13421 components: - type: Transform @@ -64470,41 +65041,6 @@ entities: - type: Transform pos: -16.5,10.5 parent: 8364 - - uid: 13667 - components: - - type: Transform - pos: -3.5,11.5 - parent: 8364 - - uid: 13668 - components: - - type: Transform - pos: -4.5,11.5 - parent: 8364 - - uid: 13670 - components: - - type: Transform - pos: -5.5,11.5 - parent: 8364 - - uid: 13671 - components: - - type: Transform - pos: -6.5,11.5 - parent: 8364 - - uid: 13672 - components: - - type: Transform - pos: -7.5,11.5 - parent: 8364 - - uid: 13673 - components: - - type: Transform - pos: -8.5,11.5 - parent: 8364 - - uid: 13674 - components: - - type: Transform - pos: -9.5,11.5 - parent: 8364 - uid: 13675 components: - type: Transform @@ -64520,46 +65056,11 @@ entities: - type: Transform pos: -12.5,11.5 parent: 8364 - - uid: 13679 - components: - - type: Transform - pos: -14.5,11.5 - parent: 8364 - uid: 13680 components: - type: Transform pos: -15.5,11.5 parent: 8364 - - uid: 13681 - components: - - type: Transform - pos: -16.5,17.5 - parent: 8364 - - uid: 13682 - components: - - type: Transform - pos: -16.5,16.5 - parent: 8364 - - uid: 13683 - components: - - type: Transform - pos: -16.5,15.5 - parent: 8364 - - uid: 13684 - components: - - type: Transform - pos: -16.5,14.5 - parent: 8364 - - uid: 13685 - components: - - type: Transform - pos: -16.5,13.5 - parent: 8364 - - uid: 13686 - components: - - type: Transform - pos: -16.5,12.5 - parent: 8364 - uid: 13688 components: - type: Transform @@ -64636,6 +65137,11 @@ entities: - type: Transform pos: -25.5,4.5 parent: 8364 + - uid: 13822 + components: + - type: Transform + pos: -19.5,18.5 + parent: 8364 - uid: 13907 components: - type: Transform @@ -66912,106 +67418,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-83.5 parent: 8364 - - uid: 26401 - components: - - type: Transform - pos: -23.5,47.5 - parent: 8364 - - uid: 26402 - components: - - type: Transform - pos: -23.5,48.5 - parent: 8364 - - uid: 26403 - components: - - type: Transform - pos: -23.5,49.5 - parent: 8364 - - uid: 26404 - components: - - type: Transform - pos: -23.5,50.5 - parent: 8364 - - uid: 26428 - components: - - type: Transform - pos: -14.5,44.5 - parent: 8364 - - uid: 26429 - components: - - type: Transform - pos: -13.5,44.5 - parent: 8364 - - uid: 26430 - components: - - type: Transform - pos: -12.5,44.5 - parent: 8364 - - uid: 26431 - components: - - type: Transform - pos: -11.5,44.5 - parent: 8364 - - uid: 26432 - components: - - type: Transform - pos: -10.5,44.5 - parent: 8364 - - uid: 26433 - components: - - type: Transform - pos: -9.5,44.5 - parent: 8364 - - uid: 26434 - components: - - type: Transform - pos: -8.5,44.5 - parent: 8364 - - uid: 26435 - components: - - type: Transform - pos: -7.5,44.5 - parent: 8364 - - uid: 26436 - components: - - type: Transform - pos: -6.5,44.5 - parent: 8364 - - uid: 26437 - components: - - type: Transform - pos: -5.5,44.5 - parent: 8364 - - uid: 26438 - components: - - type: Transform - pos: -23.5,44.5 - parent: 8364 - - uid: 26439 - components: - - type: Transform - pos: -22.5,44.5 - parent: 8364 - - uid: 26440 - components: - - type: Transform - pos: -21.5,44.5 - parent: 8364 - - uid: 26441 - components: - - type: Transform - pos: -20.5,44.5 - parent: 8364 - - uid: 26442 - components: - - type: Transform - pos: -19.5,44.5 - parent: 8364 - - uid: 26443 - components: - - type: Transform - pos: -18.5,44.5 - parent: 8364 - uid: 26607 components: - type: Transform @@ -67073,26 +67479,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-84.5 parent: 8364 - - uid: 27276 - components: - - type: Transform - pos: -0.5,41.5 - parent: 8364 - - uid: 27278 - components: - - type: Transform - pos: 1.5,41.5 - parent: 8364 - - uid: 27279 - components: - - type: Transform - pos: 2.5,41.5 - parent: 8364 - - uid: 27280 - components: - - type: Transform - pos: 3.5,41.5 - parent: 8364 - uid: 27428 components: - type: Transform @@ -67246,6 +67632,18 @@ entities: parent: 8364 - proto: Chair entities: + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,16.5 + parent: 8364 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,16.5 + parent: 8364 - uid: 921 components: - type: Transform @@ -67292,16 +67690,35 @@ entities: - type: Transform pos: 31.5,-16.5 parent: 8364 + - uid: 3811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,52.5 + parent: 8364 + - uid: 3812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,53.5 + parent: 8364 + - uid: 3813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,53.5 + parent: 8364 - uid: 4047 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-61.5 parent: 8364 - - uid: 4571 + - uid: 5252 components: - type: Transform - pos: 9.5,21.5 + rot: -1.5707963267948966 rad + pos: -3.5,20.5 parent: 8364 - uid: 5324 components: @@ -67327,6 +67744,17 @@ entities: rot: -1.5707963267948966 rad pos: 73.5,-29.5 parent: 8364 + - uid: 5441 + components: + - type: Transform + pos: -10.5,24.5 + parent: 8364 + - uid: 5453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 8364 - uid: 5718 components: - type: Transform @@ -67337,6 +67765,18 @@ entities: - type: Transform pos: 4.5,-29.5 parent: 8364 + - uid: 6335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,43.5 + parent: 8364 + - uid: 6336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,42.5 + parent: 8364 - uid: 6424 components: - type: Transform @@ -67372,157 +67812,240 @@ entities: - type: Transform pos: 21.5,6.5 parent: 8364 - - uid: 7291 + - uid: 7188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 8364 + - uid: 7259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 8364 + - uid: 7264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,16.5 + parent: 8364 + - uid: 7287 + components: + - type: Transform + pos: -12.5,52.5 + parent: 8364 + - uid: 7323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,16.5 + parent: 8364 + - uid: 7324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,16.5 + parent: 8364 + - uid: 7668 + components: + - type: Transform + pos: -15.5,19.5 + parent: 8364 + - uid: 7669 + components: + - type: Transform + pos: -13.5,19.5 + parent: 8364 + - uid: 7670 + components: + - type: Transform + pos: -14.5,19.5 + parent: 8364 + - uid: 7764 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,40.5 + pos: -11.5,19.5 parent: 8364 - - uid: 7798 + - uid: 7773 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,23.5 + pos: 5.5,24.5 parent: 8364 - - uid: 7978 - components: - - type: Transform - pos: 18.5,28.5 - parent: 8364 - - uid: 7979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 8364 - - uid: 8411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,21.5 - parent: 8364 - - uid: 8412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,22.5 - parent: 8364 - - uid: 8414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,22.5 - parent: 8364 - - uid: 8415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,22.5 - parent: 8364 - - uid: 8416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,21.5 - parent: 8364 - - uid: 8418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,22.5 - parent: 8364 - - uid: 8421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,21.5 - parent: 8364 - - uid: 8423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,21.5 - parent: 8364 - - uid: 8424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,22.5 - parent: 8364 - - uid: 8436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,23.5 - parent: 8364 - - uid: 8617 + - uid: 7901 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,23.5 parent: 8364 + - uid: 8445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 8364 + - uid: 8455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,17.5 + parent: 8364 + - uid: 8456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,17.5 + parent: 8364 + - uid: 8467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 8364 + - uid: 8500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,44.5 + parent: 8364 + - uid: 8501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,42.5 + parent: 8364 + - uid: 8576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,52.5 + parent: 8364 + - uid: 8601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,33.5 + parent: 8364 + - uid: 8604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,43.5 + parent: 8364 + - uid: 8660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,52.5 + parent: 8364 + - uid: 8727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 8364 + - uid: 8738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 8364 + - uid: 8776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,16.5 + parent: 8364 + - uid: 8786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,44.5 + parent: 8364 + - uid: 8792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,33.5 + parent: 8364 - uid: 8796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,31.5 + rot: -1.5707963267948966 rad + pos: -4.5,55.5 parent: 8364 - - uid: 8797 + - uid: 8798 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,30.5 + pos: -10.5,52.5 parent: 8364 - - uid: 8813 - components: - - type: Transform - pos: 8.5,28.5 - parent: 8364 - - uid: 8818 - components: - - type: Transform - pos: 9.5,28.5 - parent: 8364 - - uid: 8936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,39.5 - parent: 8364 - - uid: 8945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,41.5 - parent: 8364 - - uid: 8947 - components: - - type: Transform - pos: 8.5,21.5 - parent: 8364 - - uid: 9248 + - uid: 8840 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,23.5 + pos: -9.5,17.5 parent: 8364 - - uid: 9414 + - uid: 8866 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,38.5 + pos: -5.5,16.5 parent: 8364 - - uid: 9420 + - uid: 8880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,17.5 + parent: 8364 + - uid: 8924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,17.5 + parent: 8364 + - uid: 8925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 8364 + - uid: 8951 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,17.5 + pos: -11.5,20.5 parent: 8364 - - uid: 9426 + - uid: 8952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,16.5 + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 8364 + - uid: 9124 + components: + - type: Transform + pos: -4.5,24.5 + parent: 8364 + - uid: 9154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,38.5 + parent: 8364 + - uid: 9603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,33.5 + parent: 8364 + - uid: 9604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,32.5 parent: 8364 - uid: 9832 components: @@ -67552,42 +68075,6 @@ entities: - type: Transform pos: 67.5,19.5 parent: 8364 - - uid: 11614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,34.5 - parent: 8364 - - uid: 11615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,33.5 - parent: 8364 - - uid: 11620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 8364 - - uid: 11621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,33.5 - parent: 8364 - - uid: 11622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,32.5 - parent: 8364 - - uid: 11623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,34.5 - parent: 8364 - uid: 11798 components: - type: Transform @@ -67949,11 +68436,23 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-63.5 parent: 8364 - - uid: 25714 + - uid: 25757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,41.5 + rot: 3.141592653589793 rad + pos: 4.5,19.5 + parent: 8364 + - uid: 25759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,19.5 + parent: 8364 + - uid: 25760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 parent: 8364 - uid: 26133 components: @@ -67967,40 +68466,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,4.5 parent: 8364 - - uid: 26377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,47.5 - parent: 8364 - - uid: 26378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,47.5 - parent: 8364 - - uid: 26379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,41.5 - parent: 8364 - - uid: 26380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,41.5 - parent: 8364 - - uid: 26396 - components: - - type: Transform - pos: -7.5,37.5 - parent: 8364 - - uid: 26549 - components: - - type: Transform - pos: 1.5,50.5 - parent: 8364 - uid: 26868 components: - type: Transform @@ -68158,81 +68623,55 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,3.5 parent: 8364 - - uid: 8393 + - uid: 7413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,30.5 + parent: 8364 + - uid: 7642 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,25.5 + pos: 9.544124,24.577625 parent: 8364 - - uid: 8417 + - uid: 7659 + components: + - type: Transform + pos: -15.480938,37.64743 + parent: 8364 + - uid: 7789 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,25.5 + pos: 11.468189,24.611982 parent: 8364 - - uid: 8419 + - uid: 8795 + components: + - type: Transform + pos: -16.439747,37.616158 + parent: 8364 + - uid: 8945 + components: + - type: Transform + pos: 5.5560007,26.64326 + parent: 8364 + - uid: 9080 + components: + - type: Transform + pos: -4.509744,30.614965 + parent: 8364 + - uid: 9084 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,24.5 + pos: -9.508852,33.597427 parent: 8364 - - uid: 8420 + - uid: 9099 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,24.5 - parent: 8364 - - uid: 8800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,31.499998 - parent: 8364 - - uid: 8801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,30.5 - parent: 8364 - - uid: 9240 - components: - - type: Transform - pos: -0.5,30.5 - parent: 8364 - - uid: 9247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,37.5 - parent: 8364 - - uid: 9537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.49284565,32.59999 - parent: 8364 - - uid: 9646 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,16.5 - parent: 8364 - - uid: 9647 - components: - - type: Transform - pos: -4.5,15.5 - parent: 8364 - - uid: 9648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,14.5 - parent: 8364 - - uid: 9649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,16.5 + pos: -3.447763,32.679 parent: 8364 - uid: 10528 components: @@ -68445,16 +68884,6 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-17.5 parent: 8364 - - uid: 27680 - components: - - type: Transform - pos: 0.5,28.5 - parent: 8364 - - uid: 27681 - components: - - type: Transform - pos: 1.5,28.5 - parent: 8364 - uid: 28111 components: - type: Transform @@ -68483,17 +68912,15 @@ entities: - type: Transform pos: 70.5,-34.5 parent: 8364 - - uid: 8798 + - uid: 7657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,31.499998 + pos: -16.491856,35.562645 parent: 8364 - - uid: 8799 + - uid: 7712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,30.5 + pos: -15.428829,35.62519 parent: 8364 - uid: 15948 components: @@ -68966,8 +69393,20 @@ entities: - type: Transform pos: 21.5,-20.5 parent: 8364 +- proto: ChemistryBottleEZNutrient + entities: + - uid: 8972 + components: + - type: Transform + pos: -23.645578,42.797165 + parent: 8364 - proto: ChemistryBottleRobustHarvest entities: + - uid: 63 + components: + - type: Transform + pos: -23.429213,42.635178 + parent: 8364 - uid: 13505 components: - type: Transform @@ -69015,11 +69454,6 @@ entities: - type: Transform pos: 57.5,15.5 parent: 8364 - - uid: 26360 - components: - - type: Transform - pos: -14.520999,41.38247 - parent: 8364 - proto: ChurchOrganInstrument entities: - uid: 493 @@ -69163,37 +69597,16 @@ entities: - 0 - 0 - 0 + - uid: 8802 + components: + - type: Transform + pos: -2.5,47.5 + parent: 8364 - uid: 25912 components: - type: Transform pos: 74.5,-54.5 parent: 8364 - - uid: 27286 - components: - - type: Transform - anchored: True - pos: 10.5,40.5 - parent: 8364 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetChefFilled entities: - uid: 10660 @@ -69309,6 +69722,11 @@ entities: showEnts: False occludes: True ent: null + - uid: 1224 + components: + - type: Transform + pos: -4.5,53.5 + parent: 8364 - uid: 1426 components: - type: Transform @@ -69360,6 +69778,16 @@ entities: - type: Transform pos: 37.5,-49.5 parent: 8364 + - uid: 3871 + components: + - type: Transform + pos: -4.5,52.5 + parent: 8364 + - uid: 3884 + components: + - type: Transform + pos: -6.5,55.5 + parent: 8364 - uid: 5311 components: - type: Transform @@ -69420,85 +69848,21 @@ entities: showEnts: False occludes: True ent: null - - uid: 9171 + - uid: 9059 components: - type: Transform - pos: -19.5,19.5 + pos: -12.5,50.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9255 + - uid: 9451 components: - type: Transform - pos: -16.5,24.5 + pos: 9.5,38.5 parent: 8364 - - uid: 9808 + - uid: 9452 components: - type: Transform - pos: 24.5,25.5 + pos: 9.5,37.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 11897 components: - type: Transform @@ -70362,10 +70726,10 @@ entities: - type: Transform pos: -3.5,-57.5 parent: 8364 - - uid: 9119 + - uid: 8797 components: - type: Transform - pos: -17.5,24.5 + pos: -4.5,51.5 parent: 8364 - uid: 20638 components: @@ -70482,6 +70846,16 @@ entities: showEnts: False occludes: True ent: null + - uid: 9453 + components: + - type: Transform + pos: 11.5,38.5 + parent: 8364 + - uid: 9454 + components: + - type: Transform + pos: 14.5,27.5 + parent: 8364 - uid: 11901 components: - type: Transform @@ -70817,32 +71191,11 @@ entities: - 0 - proto: ClosetL3SecurityFilled entities: - - uid: 9261 + - uid: 7360 components: - type: Transform - anchored: True - pos: 10.5,41.5 + pos: -2.5,46.5 parent: 8364 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetL3VirologyFilled entities: - uid: 4109 @@ -70966,31 +71319,6 @@ entities: showEnts: False occludes: True ent: null -- proto: ClosetLegalFilled - entities: - - uid: 8384 - components: - - type: Transform - pos: 12.5,28.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetMaintenance entities: - uid: 15880 @@ -71070,43 +71398,21 @@ entities: - type: Transform pos: 71.5,-62.5 parent: 8364 - - uid: 10527 + - uid: 9307 components: - type: Transform - pos: 20.5,18.5 + pos: 18.5,20.5 + parent: 8364 + - uid: 9407 + components: + - type: Transform + pos: 25.5,24.5 + parent: 8364 + - uid: 9812 + components: + - type: Transform + pos: 10.5,32.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 11681 components: - type: Transform @@ -71837,43 +72143,16 @@ entities: - type: Transform pos: -36.5,-5.5 parent: 8364 - - uid: 6614 + - uid: 8466 components: - type: Transform - pos: 20.5,22.5 + pos: -2.5,45.5 + parent: 8364 + - uid: 9308 + components: + - type: Transform + pos: 25.5,25.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 13256 components: - type: Transform @@ -72264,6 +72543,13 @@ entities: - type: Transform pos: 46.43567,-24.34011 parent: 8364 +- proto: ClothingBeltPlant + entities: + - uid: 8716 + components: + - type: Transform + pos: -23.499674,41.79647 + parent: 8364 - proto: ClothingBeltUtility entities: - uid: 12274 @@ -72312,6 +72598,18 @@ entities: - type: Transform pos: 74.511635,-31.335205 parent: 8364 +- proto: ClothingEyesGlassesCheapSunglasses + entities: + - uid: 7856 + components: + - type: Transform + pos: 10.482127,49.1484 + parent: 8364 + - uid: 8572 + components: + - type: Transform + pos: 10.628034,48.992043 + parent: 8364 - proto: ClothingEyesGlassesMeson entities: - uid: 2018 @@ -72329,13 +72627,15 @@ entities: - type: Transform pos: -3.3809297,-63.418907 parent: 8364 -- proto: ClothingEyesGlassesSunglasses +- proto: ClothingEyesGlassesSecurity entities: - - uid: 8478 + - uid: 8569 components: - type: Transform - pos: -12.483962,13.826879 + pos: 4.5925264,43.22905 parent: 8364 +- proto: ClothingEyesGlassesSunglasses + entities: - uid: 20675 components: - type: Transform @@ -72403,11 +72703,6 @@ entities: parent: 8364 - proto: ClothingHandsGlovesColorOrange entities: - - uid: 26454 - components: - - type: Transform - pos: -17.662788,51.5307 - parent: 8364 - uid: 27575 components: - type: Transform @@ -72555,13 +72850,6 @@ entities: - type: Transform pos: 9.639596,-24.450737 parent: 8364 -- proto: ClothingHeadHatOrangesoft - entities: - - uid: 26455 - components: - - type: Transform - pos: -17.569038,51.765076 - parent: 8364 - proto: ClothingHeadHatPaper entities: - uid: 5782 @@ -72666,25 +72954,20 @@ entities: parent: 8364 - proto: ClothingHeadHelmetRiot entities: - - uid: 7768 + - uid: 7853 components: - type: Transform - pos: -0.23404753,39.35919 + pos: -12.25313,40.561676 parent: 8364 - - uid: 10026 + - uid: 8404 components: - type: Transform - pos: -0.24099195,39.553642 + pos: -12.25313,40.71804 parent: 8364 - - uid: 10070 + - uid: 8550 components: - type: Transform - pos: -0.24099195,39.66475 - parent: 8364 - - uid: 10076 - components: - - type: Transform - pos: -0.24099195,39.463364 + pos: -12.25313,40.42617 parent: 8364 - proto: ClothingHeadsetEngineering entities: @@ -72781,11 +73064,6 @@ entities: - type: Transform pos: 36.382156,-46.513817 parent: 8364 - - uid: 6615 - components: - - type: Transform - pos: 25.30574,25.583838 - parent: 8364 - uid: 17645 components: - type: Transform @@ -72823,6 +73101,13 @@ entities: - type: Transform pos: -44.458595,14.399037 parent: 8364 +- proto: ClothingMaskGasSecurity + entities: + - uid: 8642 + components: + - type: Transform + pos: 11.409441,40.44552 + parent: 8364 - proto: ClothingMaskSterile entities: - uid: 17899 @@ -72847,29 +73132,22 @@ entities: - type: Transform pos: -33.543434,3.8171167 parent: 8364 -- proto: ClothingNeckCloakMiner - entities: - - uid: 22469 - components: - - type: Transform - pos: 56.558487,-78.42358 - parent: 8364 - proto: ClothingNeckHeadphones entities: + - uid: 5108 + components: + - type: Transform + pos: 10.420458,49.623795 + parent: 8364 - uid: 5117 components: - type: Transform pos: 75.59623,12.540107 parent: 8364 - - uid: 7694 + - uid: 7619 components: - type: Transform - pos: 24.58121,37.6 - parent: 8364 - - uid: 10065 - components: - - type: Transform - pos: 24.471834,37.44375 + pos: 10.566364,49.540405 parent: 8364 - proto: ClothingNeckMantleRD entities: @@ -72947,78 +73225,56 @@ entities: - type: Transform pos: -22.495872,7.124408 parent: 8364 -- proto: ClothingOuterApronChef - entities: - - uid: 26445 - components: - - type: Transform - pos: -6.4873962,52.56498 - parent: 8364 - proto: ClothingOuterArmorBulletproof entities: - - uid: 9170 + - uid: 7850 components: - type: Transform - pos: 1.2759427,39.481133 + pos: -14.691839,42.63604 parent: 8364 - - uid: 9178 + - uid: 8543 components: - type: Transform - pos: 1.2759427,39.59572 + pos: -14.691839,42.479675 parent: 8364 - - uid: 21244 + - uid: 8546 components: - type: Transform - pos: 1.2759427,39.699883 - parent: 8364 - - uid: 28242 - components: - - type: Transform - pos: 1.2759427,39.37697 + pos: -14.691839,42.761124 parent: 8364 - proto: ClothingOuterArmorReflective entities: - - uid: 10025 + - uid: 7311 components: - type: Transform - pos: 1.7055252,39.60392 + pos: -14.401037,42.76715 parent: 8364 - - uid: 28240 + - uid: 7605 components: - type: Transform - pos: 1.703789,39.675285 + pos: -14.411459,42.631638 parent: 8364 - - uid: 28327 + - uid: 7849 components: - type: Transform - pos: 1.7055252,39.534477 - parent: 8364 - - uid: 28328 - components: - - type: Transform - pos: 1.7055252,39.458084 + pos: -14.401037,42.49613 parent: 8364 - proto: ClothingOuterArmorRiot entities: - - uid: 8547 + - uid: 7846 components: - type: Transform - pos: -0.658415,39.35225 + pos: -12.607471,40.645073 parent: 8364 - - uid: 8572 + - uid: 7852 components: - type: Transform - pos: -0.658415,39.442528 + pos: -12.607471,40.467865 parent: 8364 - - uid: 8589 + - uid: 8544 components: - type: Transform - pos: -0.66535944,39.51197 - parent: 8364 - - uid: 26255 - components: - - type: Transform - pos: -0.658415,39.595306 + pos: -12.607471,40.572105 parent: 8364 - proto: ClothingOuterCardborg entities: @@ -73079,31 +73335,31 @@ entities: parent: 8364 - proto: ClothingOuterHardsuitSecurity entities: - - uid: 10031 + - uid: 231 components: - type: Transform - parent: 10030 + parent: 174 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 10073 + - uid: 7350 components: - type: Transform - parent: 8783 + parent: 7349 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 10075 + - uid: 7416 components: - type: Transform - parent: 8825 + parent: 7415 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 11999 + - uid: 8559 components: - type: Transform - parent: 11611 + parent: 8558 - type: Physics canCollide: False - type: InsideEntityStorage @@ -73131,11 +73387,6 @@ entities: parent: 8364 - proto: ClothingOuterSuitFire entities: - - uid: 8635 - components: - - type: Transform - pos: 27.448183,21.624187 - parent: 8364 - uid: 20120 components: - type: Transform @@ -73188,11 +73439,6 @@ entities: parent: 8364 - proto: ClothingShoesBootsCombat entities: - - uid: 5014 - components: - - type: Transform - pos: -18.519972,12.388156 - parent: 8364 - uid: 11572 components: - type: Transform @@ -73274,11 +73520,6 @@ entities: - type: Transform pos: 54.483116,-49.66147 parent: 8364 - - uid: 26444 - components: - - type: Transform - pos: -15.657842,47.202713 - parent: 8364 - proto: ClothingUnderSocksBee entities: - uid: 5179 @@ -73393,11 +73634,6 @@ entities: - type: Transform pos: 46.5,16.5 parent: 8364 - - uid: 27761 - components: - - type: Transform - pos: 19.5,30.5 - parent: 8364 - proto: Cobweb2 entities: - uid: 51 @@ -73455,11 +73691,6 @@ entities: - type: Transform pos: 49.5,11.5 parent: 8364 - - uid: 27760 - components: - - type: Transform - pos: 26.5,29.5 - parent: 8364 - proto: CockroachTimedSpawner entities: - uid: 2579 @@ -73493,6 +73724,12 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-53.5 parent: 8364 + - uid: 5014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,28.5 + parent: 8364 - uid: 5189 components: - type: Transform @@ -73509,6 +73746,12 @@ entities: - type: Transform pos: -9.5,-12.5 parent: 8364 + - uid: 5593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,28.5 + parent: 8364 - uid: 5624 components: - type: Transform @@ -73586,6 +73829,11 @@ entities: - type: Transform pos: 11.5,15.5 parent: 8364 + - uid: 6601 + components: + - type: Transform + pos: -2.5,41.5 + parent: 8364 - uid: 6969 components: - type: Transform @@ -73597,26 +73845,42 @@ entities: - type: Transform pos: 22.5,3.5 parent: 8364 + - uid: 7007 + components: + - type: Transform + pos: 8.5,27.5 + parent: 8364 - uid: 8077 components: - type: Transform pos: -10.5,-12.5 parent: 8364 - - uid: 8438 - components: - - type: Transform - pos: 15.5,28.5 - parent: 8364 - - uid: 9413 - components: - - type: Transform - pos: 13.5,40.5 - parent: 8364 - - uid: 9645 + - uid: 8498 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,13.5 + pos: -2.5,39.5 + parent: 8364 + - uid: 8659 + components: + - type: Transform + pos: 4.5,54.5 + parent: 8364 + - uid: 8895 + components: + - type: Transform + pos: -25.5,31.5 + parent: 8364 + - uid: 8948 + components: + - type: Transform + pos: -7.5,23.5 + parent: 8364 + - uid: 9439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,36.5 parent: 8364 - uid: 9830 components: @@ -73665,18 +73929,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-10.5 parent: 8364 - - uid: 11597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,30.5 - parent: 8364 - - uid: 11618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,30.5 - parent: 8364 - uid: 12392 components: - type: Transform @@ -73783,53 +74035,12 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-34.5 parent: 8364 - - uid: 21983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,41.5 - parent: 8364 - uid: 22584 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-56.5 parent: 8364 - - uid: 25680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,40.5 - parent: 8364 - - uid: 25715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,40.5 - parent: 8364 - - uid: 25727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,41.5 - parent: 8364 - - uid: 26423 - components: - - type: Transform - pos: -11.5,53.5 - parent: 8364 - - uid: 26424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,53.5 - parent: 8364 - - uid: 26461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,51.5 - parent: 8364 - uid: 27212 components: - type: Transform @@ -73927,6 +74138,12 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,12.5 parent: 8364 + - uid: 7740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,13.5 + parent: 8364 - proto: ComputerCargoBounty entities: - uid: 26045 @@ -73978,11 +74195,11 @@ entities: parent: 8364 - proto: ComputerCargoOrdersSecurity entities: - - uid: 17837 + - uid: 8556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,30.5 + rot: -1.5707963267948966 rad + pos: 5.5,47.5 parent: 8364 - proto: ComputerCargoOrdersService entities: @@ -73992,22 +74209,13 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-10.5 parent: 8364 -- proto: ComputerCargoShuttle - entities: - - uid: 14854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-25.5 - parent: 8364 - - uid: 16446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-25.5 - parent: 8364 - proto: ComputerComms entities: + - uid: 1073 + components: + - type: Transform + pos: 3.5,55.5 + parent: 8364 - uid: 5678 components: - type: Transform @@ -74026,16 +74234,16 @@ entities: - type: Transform pos: 2.5,-4.5 parent: 8364 - - uid: 8928 + - uid: 7692 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,30.5 + pos: 12.5,24.5 parent: 8364 - - uid: 11606 + - uid: 9077 components: - type: Transform - pos: -6.5,17.5 + pos: -9.5,34.5 parent: 8364 - uid: 15521 components: @@ -74063,27 +74271,34 @@ entities: parent: 8364 - proto: ComputerCriminalRecords entities: - - uid: 9181 + - uid: 4727 components: - type: Transform - pos: 13.5,41.5 + pos: 4.5,55.5 parent: 8364 - - uid: 9345 - components: - - type: Transform - pos: 4.5,28.5 - parent: 8364 - - uid: 9362 + - uid: 7330 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,33.5 + pos: 12.5,25.5 parent: 8364 - - uid: 9627 + - uid: 8591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,13.5 + rot: 1.5707963267948966 rad + pos: 4.5,44.5 + parent: 8364 + - uid: 9078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,32.5 + parent: 8364 + - uid: 9153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,38.5 parent: 8364 - uid: 14307 components: @@ -74100,11 +74315,6 @@ entities: - type: Transform pos: -8.5,-6.5 parent: 8364 - - uid: 21245 - components: - - type: Transform - pos: 0.5,33.5 - parent: 8364 - proto: ComputerFrame entities: - uid: 19878 @@ -74160,6 +74370,12 @@ entities: parent: 8364 - proto: ComputerMedicalRecords entities: + - uid: 8492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,30.5 + parent: 8364 - uid: 12065 components: - type: Transform @@ -74285,8 +74501,27 @@ entities: - type: Transform pos: -25.5,-36.5 parent: 8364 +- proto: ComputerSalvageJobBoard + entities: + - uid: 28412 + components: + - type: Transform + pos: -26.5,-36.5 + parent: 8364 - proto: ComputerShuttleCargo entities: + - uid: 14854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-25.5 + parent: 8364 + - uid: 16446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-25.5 + parent: 8364 - uid: 17687 components: - type: Transform @@ -74335,23 +74570,18 @@ entities: parent: 8364 - proto: ComputerStationRecords entities: + - uid: 8502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,44.5 + parent: 8364 - uid: 9260 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-26.5 parent: 8364 - - uid: 10020 - components: - - type: Transform - pos: -0.5,33.5 - parent: 8364 - - uid: 10077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,34.5 - parent: 8364 - uid: 19297 components: - type: Transform @@ -74364,25 +74594,32 @@ entities: - type: Transform pos: -59.5,5.5 parent: 8364 + - uid: 5075 + components: + - type: Transform + pos: 5.5,55.5 + parent: 8364 - uid: 5510 components: - type: Transform pos: -7.5,-6.5 parent: 8364 - - uid: 8135 + - uid: 8490 components: - type: Transform - pos: -7.5,17.5 + rot: -1.5707963267948966 rad + pos: 12.5,23.5 parent: 8364 - - uid: 9166 + - uid: 9083 components: - type: Transform - pos: -1.5,33.5 + pos: -8.5,34.5 parent: 8364 - - uid: 9205 + - uid: 9113 components: - type: Transform - pos: 14.5,41.5 + rot: 1.5707963267948966 rad + pos: -5.5,30.5 parent: 8364 - proto: ComputerTechnologyDiskTerminal entities: @@ -74398,43 +74635,27 @@ entities: - type: Transform pos: 4.5,15.5 parent: 8364 - - uid: 8136 - components: - - type: Transform - pos: -3.5,14.5 - parent: 8364 - - uid: 8442 - components: - - type: Transform - pos: -3.5,14.5 - parent: 8364 - - uid: 8780 + - uid: 6674 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,24.5 + pos: 9.5,27.5 parent: 8364 - - uid: 26251 + - uid: 7900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,24.5 - parent: 8364 - - uid: 26252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,24.5 + pos: -0.5,41.5 parent: 8364 - uid: 27653 components: - type: Transform pos: 10.5,-27.5 parent: 8364 - - uid: 28241 + - uid: 28517 components: - type: Transform - pos: 16.5,34.5 + rot: 1.5707963267948966 rad + pos: -28.5,38.5 parent: 8364 - proto: ContainmentFieldGenerator entities: @@ -74492,12 +74713,6 @@ entities: bodyType: Dynamic - proto: ConveyorBelt entities: - - uid: 1073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,30.5 - parent: 8364 - uid: 3062 components: - type: Transform @@ -74615,11 +74830,23 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-31.5 parent: 8364 - - uid: 7622 + - uid: 7806 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,29.5 + pos: 17.5,48.5 + parent: 8364 + - uid: 7815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,50.5 + parent: 8364 + - uid: 7896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,49.5 parent: 8364 - uid: 8017 components: @@ -74627,17 +74854,71 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 8364 - - uid: 9475 + - uid: 8391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,30.5 + rot: 1.5707963267948966 rad + pos: 17.5,51.5 parent: 8364 - - uid: 9794 + - uid: 8444 + components: + - type: Transform + pos: 16.5,51.5 + parent: 8364 + - uid: 8475 + components: + - type: Transform + pos: 16.5,50.5 + parent: 8364 + - uid: 8476 + components: + - type: Transform + pos: 16.5,49.5 + parent: 8364 + - uid: 8649 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,30.5 + pos: 17.5,47.5 + parent: 8364 + - uid: 8779 + components: + - type: Transform + pos: 16.5,48.5 + parent: 8364 + - uid: 8780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,47.5 + parent: 8364 + - uid: 9208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,28.5 + parent: 8364 + - uid: 9224 + components: + - type: Transform + pos: 22.5,27.5 + parent: 8364 + - uid: 9226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,28.5 + parent: 8364 + - uid: 9261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,28.5 + parent: 8364 + - uid: 9263 + components: + - type: Transform + pos: 22.5,28.5 parent: 8364 - uid: 9935 components: @@ -74833,14 +75114,11 @@ entities: parent: 8364 - proto: CrateContrabandStorageSecure entities: - - uid: 8629 + - uid: 8988 components: - type: Transform - anchored: True - pos: 3.5,33.5 + pos: -7.5,31.5 parent: 8364 - - type: Physics - bodyType: Static - proto: CrateEmergencyRadiation entities: - uid: 19055 @@ -75095,6 +75373,11 @@ entities: - type: Transform pos: 38.5,-2.5 parent: 8364 + - uid: 8847 + components: + - type: Transform + pos: -23.5,36.5 + parent: 8364 - uid: 17887 components: - type: Transform @@ -75380,10 +75663,10 @@ entities: parent: 8364 - proto: CrateLockBoxSecurity entities: - - uid: 28323 + - uid: 4709 components: - type: Transform - pos: 6.5,30.5 + pos: 6.5,40.5 parent: 8364 - proto: CrateLockBoxService entities: @@ -75432,29 +75715,11 @@ entities: parent: 8364 - proto: CrateMedicalSurgery entities: - - uid: 9539 + - uid: 8663 components: - type: Transform - pos: -9.5,30.5 + pos: 6.5,31.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 19237 components: - type: Transform @@ -75515,14 +75780,11 @@ entities: parent: 8364 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 7339 + - uid: 26318 components: - type: Transform - anchored: True - pos: -2.5,37.5 + pos: -14.5,44.5 parent: 8364 - - type: Physics - bodyType: Static - proto: CrateServiceJanitorialSupplies entities: - uid: 27563 @@ -75613,6 +75875,18 @@ entities: - type: Transform pos: 84.5,-28.5 parent: 8364 +- proto: CrateTrashCartFilled + entities: + - uid: 9428 + components: + - type: Transform + pos: 19.5,20.5 + parent: 8364 + - uid: 13218 + components: + - type: Transform + pos: -17.5,25.5 + parent: 8364 - proto: CrateTrashCartJani entities: - uid: 27562 @@ -75627,6 +75901,11 @@ entities: - type: Transform pos: 12.5,10.5 parent: 8364 + - uid: 8833 + components: + - type: Transform + pos: -30.485493,36.61196 + parent: 8364 - uid: 11148 components: - type: Transform @@ -75743,11 +76022,16 @@ entities: - type: Transform pos: 25.5,19.5 parent: 8364 - - uid: 8756 + - uid: 8521 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,43.5 + pos: -20.5,21.5 + parent: 8364 + - uid: 8842 + components: + - type: Transform + pos: -17.5,21.5 parent: 8364 - uid: 19979 components: @@ -75792,13 +76076,19 @@ entities: - type: Transform pos: 29.484377,-32.156303 parent: 8364 -- proto: CurtainsRed +- proto: CurtainsCyanOpen entities: - - uid: 4650 + - uid: 19348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,41.5 + rot: 3.141592653589793 rad + pos: 12.5,22.5 + parent: 8364 + - uid: 25733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,22.5 parent: 8364 - proto: d20Dice entities: @@ -75831,16 +76121,6 @@ entities: - type: Transform pos: 58.5,15.5 parent: 8364 - - uid: 26362 - components: - - type: Transform - pos: -14.755374,40.835594 - parent: 8364 - - uid: 26363 - components: - - type: Transform - pos: -14.567874,40.56997 - parent: 8364 - uid: 26865 components: - type: Transform @@ -75893,10 +76173,10 @@ entities: parent: 8364 - proto: DefaultStationBeaconArmory entities: - - uid: 27709 + - uid: 4931 components: - type: Transform - pos: 1.5,38.5 + pos: -12.5,44.5 parent: 8364 - proto: DefaultStationBeaconArrivals entities: @@ -75945,13 +76225,6 @@ entities: - type: Transform pos: -1.5,-7.5 parent: 8364 -- proto: DefaultStationBeaconBrig - entities: - - uid: 27708 - components: - - type: Transform - pos: -5.5,26.5 - parent: 8364 - proto: DefaultStationBeaconCaptainsQuarters entities: - uid: 27711 @@ -76003,10 +76276,10 @@ entities: parent: 8364 - proto: DefaultStationBeaconCourtroom entities: - - uid: 27718 + - uid: 9075 components: - type: Transform - pos: 15.5,25.5 + pos: -7.5,20.5 parent: 8364 - proto: DefaultStationBeaconCryonics entities: @@ -76024,10 +76297,10 @@ entities: parent: 8364 - proto: DefaultStationBeaconDetectiveRoom entities: - - uid: 27719 + - uid: 9138 components: - type: Transform - pos: -5.5,16.5 + pos: 9.5,24.5 parent: 8364 - proto: DefaultStationBeaconDisposals entities: @@ -76073,10 +76346,10 @@ entities: parent: 8364 - proto: DefaultStationBeaconHOSRoom entities: - - uid: 27724 + - uid: 8437 components: - type: Transform - pos: 14.5,38.5 + pos: 3.5,54.5 parent: 8364 - proto: DefaultStationBeaconJanitorsCloset entities: @@ -76094,10 +76367,10 @@ entities: parent: 8364 - proto: DefaultStationBeaconLawOffice entities: - - uid: 27726 + - uid: 8868 components: - type: Transform - pos: -12.5,15.5 + pos: 4.5,26.5 parent: 8364 - proto: DefaultStationBeaconMedbay entities: @@ -76115,10 +76388,10 @@ entities: parent: 8364 - proto: DefaultStationBeaconPermaBrig entities: - - uid: 27729 + - uid: 524 components: - type: Transform - pos: -10.5,41.5 + pos: -28.5,35.5 parent: 8364 - proto: DefaultStationBeaconQMRoom entities: @@ -76240,19 +76513,13 @@ entities: parent: 8364 - proto: DefaultStationBeaconWardensOffice entities: - - uid: 27736 + - uid: 9090 components: - type: Transform - pos: 1.5,32.5 + pos: -6.5,32.5 parent: 8364 - proto: DefibrillatorCabinetFilled entities: - - uid: 9540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,30.5 - parent: 8364 - uid: 17861 components: - type: Transform @@ -76274,33 +76541,41 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-37.5 parent: 8364 + - uid: 28547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,33.5 + parent: 8364 - proto: DeployableBarrier entities: - - uid: 7678 + - uid: 9884 components: - type: Transform - pos: -13.5,22.5 + pos: -4.5,50.5 parent: 8364 - - uid: 7680 + - uid: 25687 components: - type: Transform - pos: -12.5,22.5 + pos: -4.5,49.5 parent: 8364 - - uid: 25712 + - uid: 28504 components: - type: Transform - pos: -14.5,22.5 + pos: 1.5,36.5 + parent: 8364 + - uid: 28651 + components: + - type: Transform + pos: 2.5,36.5 parent: 8364 - proto: DeskBell entities: - - uid: 12714 + - uid: 9101 components: - type: Transform - pos: 1.5,22.5 + pos: -5.5651917,29.652441 parent: 8364 - - type: Physics - canCollide: False - bodyType: Static - uid: 12716 components: - type: Transform @@ -76385,12 +76660,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-21.5 parent: 8364 - - uid: 6405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,19.5 - parent: 8364 - uid: 6666 components: - type: Transform @@ -76460,123 +76729,38 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-18.5 parent: 8364 - - uid: 8579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,20.5 - parent: 8364 - - uid: 8588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,17.5 - parent: 8364 - - uid: 9317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,32.5 - parent: 8364 - - uid: 9495 - components: - - type: Transform - pos: 21.5,30.5 - parent: 8364 - - uid: 9510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,34.5 - parent: 8364 - - uid: 9511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,34.5 - parent: 8364 - - uid: 9514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,32.5 - parent: 8364 - - uid: 9534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,26.5 - parent: 8364 - - uid: 9554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,26.5 - parent: 8364 - - uid: 9555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,23.5 - parent: 8364 - - uid: 9556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,23.5 - parent: 8364 - - uid: 9558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,37.5 - parent: 8364 - - uid: 9726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,15.5 - parent: 8364 - - uid: 9731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,15.5 - parent: 8364 - - uid: 9732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,13.5 - parent: 8364 - - uid: 9733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,13.5 - parent: 8364 - uid: 9754 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-1.5 parent: 8364 - - uid: 9763 + - uid: 9806 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,11.5 + pos: 10.5,34.5 parent: 8364 - - uid: 9775 + - uid: 9807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,11.5 + pos: 15.5,34.5 parent: 8364 - - uid: 9782 + - uid: 9808 components: - type: Transform - pos: -16.5,19.5 + rot: 3.141592653589793 rad + pos: 15.5,29.5 + parent: 8364 + - uid: 9809 + components: + - type: Transform + pos: 16.5,29.5 + parent: 8364 + - uid: 9810 + components: + - type: Transform + pos: 19.5,17.5 parent: 8364 - uid: 10011 components: @@ -77226,18 +77410,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-2.5 parent: 8364 - - uid: 22193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,20.5 - parent: 8364 - - uid: 22194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,20.5 - parent: 8364 - uid: 22331 components: - type: Transform @@ -77260,12 +77432,97 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,-17.5 parent: 8364 + - uid: 25756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,19.5 + parent: 8364 + - uid: 25780 + components: + - type: Transform + pos: 0.5,12.5 + parent: 8364 + - uid: 25781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 8364 + - uid: 25782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 8364 + - uid: 25783 + components: + - type: Transform + pos: -7.5,15.5 + parent: 8364 + - uid: 25785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,15.5 + parent: 8364 + - uid: 25789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,37.5 + parent: 8364 + - uid: 25796 + components: + - type: Transform + pos: -1.5,37.5 + parent: 8364 + - uid: 25806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,27.5 + parent: 8364 + - uid: 25808 + components: + - type: Transform + pos: -0.5,27.5 + parent: 8364 - uid: 25926 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-31.5 parent: 8364 + - uid: 26537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,38.5 + parent: 8364 + - uid: 26539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,41.5 + parent: 8364 + - uid: 26541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,45.5 + parent: 8364 + - uid: 26545 + components: + - type: Transform + pos: -5.5,53.5 + parent: 8364 + - uid: 26557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,31.5 + parent: 8364 - proto: DisposalJunction entities: - uid: 4660 @@ -77315,22 +77572,22 @@ entities: rot: 3.141592653589793 rad pos: 26.5,0.5 parent: 8364 - - uid: 8587 + - uid: 8495 components: - type: Transform - pos: 21.5,20.5 + pos: 2.5,11.5 parent: 8364 - - uid: 9519 + - uid: 8496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,30.5 + rot: -1.5707963267948966 rad + pos: 9.5,17.5 parent: 8364 - - uid: 9784 + - uid: 9739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,23.5 + rot: -1.5707963267948966 rad + pos: 16.5,17.5 parent: 8364 - uid: 10903 components: @@ -77388,6 +77645,17 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-38.5 parent: 8364 + - uid: 26543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,36.5 + parent: 8364 + - uid: 26546 + components: + - type: Transform + pos: 10.5,41.5 + parent: 8364 - proto: DisposalJunctionFlipped entities: - uid: 5886 @@ -77419,36 +77687,12 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-8.5 parent: 8364 - - uid: 6648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,17.5 - parent: 8364 - uid: 6697 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,5.5 parent: 8364 - - uid: 9284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,30.5 - parent: 8364 - - uid: 9499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,30.5 - parent: 8364 - - uid: 9502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,30.5 - parent: 8364 - uid: 10461 components: - type: Transform @@ -77522,6 +77766,12 @@ entities: - type: Transform pos: 65.5,-60.5 parent: 8364 + - uid: 26538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,38.5 + parent: 8364 - proto: DisposalPipe entities: - uid: 1157 @@ -77633,22 +77883,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-8.5 parent: 8364 - - uid: 5448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 8364 - - uid: 5453 - components: - - type: Transform - pos: 14.5,33.5 - parent: 8364 - - uid: 5458 - components: - - type: Transform - pos: 14.5,34.5 - parent: 8364 - uid: 5605 components: - type: Transform @@ -78154,36 +78388,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-6.5 parent: 8364 - - uid: 6328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 8364 - - uid: 6619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,22.5 - parent: 8364 - - uid: 6620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,20.5 - parent: 8364 - - uid: 6621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,11.5 - parent: 8364 - - uid: 6622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,23.5 - parent: 8364 - uid: 6623 components: - type: Transform @@ -78244,12 +78448,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,17.5 parent: 8364 - - uid: 6635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,17.5 - parent: 8364 - uid: 6636 components: - type: Transform @@ -78268,36 +78466,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,17.5 parent: 8364 - - uid: 6639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 8364 - - uid: 6640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,17.5 - parent: 8364 - - uid: 6641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,17.5 - parent: 8364 - - uid: 6643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,17.5 - parent: 8364 - - uid: 6644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,17.5 - parent: 8364 - uid: 6645 components: - type: Transform @@ -78559,470 +78727,70 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-18.5 parent: 8364 - - uid: 8580 + - uid: 8596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,20.5 - parent: 8364 - - uid: 8581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,20.5 - parent: 8364 - - uid: 8582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,20.5 - parent: 8364 - - uid: 8583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,20.5 - parent: 8364 - - uid: 8584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,17.5 - parent: 8364 - - uid: 8585 - components: - - type: Transform - pos: 21.5,18.5 - parent: 8364 - - uid: 8586 - components: - - type: Transform - pos: 21.5,19.5 - parent: 8364 - - uid: 8748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,26.5 - parent: 8364 - - uid: 8819 - components: - - type: Transform - pos: 9.5,33.5 - parent: 8364 - - uid: 8820 - components: - - type: Transform - pos: 9.5,34.5 + rot: 3.141592653589793 rad + pos: -0.5,3.5 parent: 8364 - uid: 9105 components: - type: Transform pos: -26.5,-17.5 parent: 8364 - - uid: 9270 - components: - - type: Transform - pos: 9.5,32.5 - parent: 8364 - - uid: 9283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,30.5 - parent: 8364 - - uid: 9285 - components: - - type: Transform - pos: 9.5,31.5 - parent: 8364 - - uid: 9286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,30.5 - parent: 8364 - - uid: 9401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,35.5 - parent: 8364 - - uid: 9434 - components: - - type: Transform - pos: 17.5,31.5 - parent: 8364 - uid: 9470 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-26.5 parent: 8364 - - uid: 9482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,37.5 - parent: 8364 - - uid: 9484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,21.5 - parent: 8364 - - uid: 9486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,21.5 - parent: 8364 - - uid: 9487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,22.5 - parent: 8364 - - uid: 9488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,23.5 - parent: 8364 - - uid: 9489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,24.5 - parent: 8364 - - uid: 9490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,25.5 - parent: 8364 - - uid: 9491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,26.5 - parent: 8364 - - uid: 9492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,27.5 - parent: 8364 - - uid: 9493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,28.5 - parent: 8364 - - uid: 9494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,29.5 - parent: 8364 - - uid: 9496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,30.5 - parent: 8364 - - uid: 9497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,30.5 - parent: 8364 - - uid: 9500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,30.5 - parent: 8364 - - uid: 9501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,30.5 - parent: 8364 - - uid: 9503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,30.5 - parent: 8364 - - uid: 9504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,30.5 - parent: 8364 - - uid: 9505 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 8364 - - uid: 9506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,30.5 - parent: 8364 - - uid: 9508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,30.5 - parent: 8364 - - uid: 9509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,35.5 - parent: 8364 - - uid: 9512 - components: - - type: Transform - pos: 18.5,33.5 - parent: 8364 - - uid: 9520 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 8364 - - uid: 9521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,27.5 - parent: 8364 - - uid: 9522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,26.5 - parent: 8364 - - uid: 9523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,26.5 - parent: 8364 - - uid: 9524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,26.5 - parent: 8364 - - uid: 9525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,26.5 - parent: 8364 - - uid: 9526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,26.5 - parent: 8364 - - uid: 9527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 8364 - - uid: 9528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,26.5 - parent: 8364 - - uid: 9529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,26.5 - parent: 8364 - - uid: 9530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,26.5 - parent: 8364 - - uid: 9531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,26.5 - parent: 8364 - - uid: 9532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,26.5 - parent: 8364 - - uid: 9533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,26.5 - parent: 8364 - - uid: 9542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,26.5 - parent: 8364 - - uid: 9543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,26.5 - parent: 8364 - - uid: 9544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,26.5 - parent: 8364 - - uid: 9545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,26.5 - parent: 8364 - - uid: 9546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,26.5 - parent: 8364 - - uid: 9547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,26.5 - parent: 8364 - - uid: 9548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,26.5 - parent: 8364 - - uid: 9549 - components: - - type: Transform - pos: -13.5,25.5 - parent: 8364 - - uid: 9550 - components: - - type: Transform - pos: -13.5,24.5 - parent: 8364 - - uid: 9551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,23.5 - parent: 8364 - - uid: 9552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,23.5 - parent: 8364 - - uid: 9557 - components: - - type: Transform - pos: 7.5,28.5 - parent: 8364 - - uid: 9561 - components: - - type: Transform - pos: 14.5,32.5 - parent: 8364 - - uid: 9562 - components: - - type: Transform - pos: 14.5,31.5 - parent: 8364 - uid: 9734 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-1.5 parent: 8364 - - uid: 9735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,15.5 - parent: 8364 - - uid: 9736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 8364 - - uid: 9737 - components: - - type: Transform - pos: -6.5,14.5 - parent: 8364 - - uid: 9738 + - uid: 9741 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,13.5 - parent: 8364 - - uid: 9739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,12.5 + pos: 17.5,17.5 parent: 8364 - uid: 9745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,11.5 + rot: -1.5707963267948966 rad + pos: 18.5,17.5 parent: 8364 - uid: 9746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,11.5 + rot: -1.5707963267948966 rad + pos: 13.5,17.5 parent: 8364 - uid: 9747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,11.5 + rot: -1.5707963267948966 rad + pos: 14.5,17.5 parent: 8364 - uid: 9748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,11.5 + rot: -1.5707963267948966 rad + pos: 15.5,17.5 parent: 8364 - uid: 9749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,11.5 + rot: 3.141592653589793 rad + pos: 16.5,18.5 parent: 8364 - uid: 9751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,11.5 + rot: 3.141592653589793 rad + pos: 16.5,19.5 parent: 8364 - uid: 9752 components: @@ -79084,6 +78852,12 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-1.5 parent: 8364 + - uid: 9763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,20.5 + parent: 8364 - uid: 9764 components: - type: Transform @@ -79144,6 +78918,12 @@ entities: rot: 3.141592653589793 rad pos: 2.5,10.5 parent: 8364 + - uid: 9775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 8364 - uid: 9776 components: - type: Transform @@ -79174,46 +78954,120 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-1.5 parent: 8364 + - uid: 9781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,22.5 + parent: 8364 + - uid: 9782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 8364 + - uid: 9783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,24.5 + parent: 8364 + - uid: 9784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,25.5 + parent: 8364 - uid: 9785 components: - type: Transform - pos: -16.5,18.5 + rot: 3.141592653589793 rad + pos: 16.5,26.5 parent: 8364 - uid: 9786 components: - type: Transform - pos: -16.5,17.5 + rot: 3.141592653589793 rad + pos: 16.5,27.5 parent: 8364 - uid: 9787 components: - type: Transform - pos: -16.5,16.5 + rot: 3.141592653589793 rad + pos: 16.5,28.5 parent: 8364 - uid: 9788 components: - type: Transform - pos: -16.5,15.5 + rot: 3.141592653589793 rad + pos: 15.5,30.5 parent: 8364 - uid: 9789 components: - type: Transform - pos: -16.5,14.5 + rot: 3.141592653589793 rad + pos: 15.5,31.5 parent: 8364 - uid: 9790 components: - type: Transform - pos: -16.5,13.5 + rot: 3.141592653589793 rad + pos: 15.5,32.5 parent: 8364 - uid: 9791 components: - type: Transform - pos: -16.5,12.5 + rot: 3.141592653589793 rad + pos: 15.5,33.5 parent: 8364 - - uid: 9844 + - uid: 9792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,30.5 + rot: 1.5707963267948966 rad + pos: 14.5,34.5 + parent: 8364 + - uid: 9793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,34.5 + parent: 8364 + - uid: 9794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,34.5 + parent: 8364 + - uid: 9800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,34.5 + parent: 8364 + - uid: 9801 + components: + - type: Transform + pos: 10.5,35.5 + parent: 8364 + - uid: 9802 + components: + - type: Transform + pos: 10.5,36.5 + parent: 8364 + - uid: 9803 + components: + - type: Transform + pos: 10.5,37.5 + parent: 8364 + - uid: 9804 + components: + - type: Transform + pos: 10.5,38.5 + parent: 8364 + - uid: 9805 + components: + - type: Transform + pos: 10.5,39.5 parent: 8364 - uid: 10192 components: @@ -83464,11 +83318,6 @@ entities: - type: Transform pos: -0.5,2.5 parent: 8364 - - uid: 22176 - components: - - type: Transform - pos: -0.5,3.5 - parent: 8364 - uid: 22177 components: - type: Transform @@ -83529,98 +83378,6 @@ entities: - type: Transform pos: -0.5,15.5 parent: 8364 - - uid: 22189 - components: - - type: Transform - pos: -0.5,16.5 - parent: 8364 - - uid: 22190 - components: - - type: Transform - pos: -0.5,17.5 - parent: 8364 - - uid: 22191 - components: - - type: Transform - pos: -0.5,18.5 - parent: 8364 - - uid: 22192 - components: - - type: Transform - pos: -0.5,19.5 - parent: 8364 - - uid: 22195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,20.5 - parent: 8364 - - uid: 22196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,20.5 - parent: 8364 - - uid: 22197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,20.5 - parent: 8364 - - uid: 22198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,20.5 - parent: 8364 - - uid: 22199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,20.5 - parent: 8364 - - uid: 22200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,21.5 - parent: 8364 - - uid: 22201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,22.5 - parent: 8364 - - uid: 22202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,23.5 - parent: 8364 - - uid: 22203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,24.5 - parent: 8364 - - uid: 22204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,25.5 - parent: 8364 - - uid: 22205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,26.5 - parent: 8364 - - uid: 22206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,27.5 - parent: 8364 - uid: 22208 components: - type: Transform @@ -84213,6 +83970,232 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-65.5 parent: 8364 + - uid: 25755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,18.5 + parent: 8364 + - uid: 25766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,15.5 + parent: 8364 + - uid: 25767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,15.5 + parent: 8364 + - uid: 25768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,15.5 + parent: 8364 + - uid: 25769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,15.5 + parent: 8364 + - uid: 25770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,15.5 + parent: 8364 + - uid: 25771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 8364 + - uid: 25772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 8364 + - uid: 25773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 8364 + - uid: 25774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 8364 + - uid: 25775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,12.5 + parent: 8364 + - uid: 25776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 8364 + - uid: 25777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 8364 + - uid: 25778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 8364 + - uid: 25779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 8364 + - uid: 25787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,11.5 + parent: 8364 + - uid: 25791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,37.5 + parent: 8364 + - uid: 25792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,37.5 + parent: 8364 + - uid: 25793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,37.5 + parent: 8364 + - uid: 25794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,37.5 + parent: 8364 + - uid: 25795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,37.5 + parent: 8364 + - uid: 25797 + components: + - type: Transform + pos: -1.5,36.5 + parent: 8364 + - uid: 25798 + components: + - type: Transform + pos: -1.5,35.5 + parent: 8364 + - uid: 25799 + components: + - type: Transform + pos: -1.5,34.5 + parent: 8364 + - uid: 25800 + components: + - type: Transform + pos: -1.5,33.5 + parent: 8364 + - uid: 25801 + components: + - type: Transform + pos: -1.5,32.5 + parent: 8364 + - uid: 25802 + components: + - type: Transform + pos: -1.5,31.5 + parent: 8364 + - uid: 25803 + components: + - type: Transform + pos: -1.5,30.5 + parent: 8364 + - uid: 25804 + components: + - type: Transform + pos: -1.5,29.5 + parent: 8364 + - uid: 25805 + components: + - type: Transform + pos: -1.5,28.5 + parent: 8364 + - uid: 25809 + components: + - type: Transform + pos: -0.5,26.5 + parent: 8364 + - uid: 25810 + components: + - type: Transform + pos: -0.5,25.5 + parent: 8364 + - uid: 25811 + components: + - type: Transform + pos: -0.5,24.5 + parent: 8364 + - uid: 25812 + components: + - type: Transform + pos: -0.5,23.5 + parent: 8364 + - uid: 25813 + components: + - type: Transform + pos: -0.5,22.5 + parent: 8364 + - uid: 25814 + components: + - type: Transform + pos: -0.5,21.5 + parent: 8364 + - uid: 25815 + components: + - type: Transform + pos: -0.5,20.5 + parent: 8364 + - uid: 25816 + components: + - type: Transform + pos: -0.5,19.5 + parent: 8364 + - uid: 25817 + components: + - type: Transform + pos: -0.5,18.5 + parent: 8364 + - uid: 25818 + components: + - type: Transform + pos: -0.5,17.5 + parent: 8364 + - uid: 25819 + components: + - type: Transform + pos: -0.5,16.5 + parent: 8364 - uid: 25923 components: - type: Transform @@ -84243,6 +84226,228 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-23.5 parent: 8364 + - uid: 26503 + components: + - type: Transform + pos: 10.5,42.5 + parent: 8364 + - uid: 26504 + components: + - type: Transform + pos: 10.5,43.5 + parent: 8364 + - uid: 26505 + components: + - type: Transform + pos: 10.5,44.5 + parent: 8364 + - uid: 26506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,41.5 + parent: 8364 + - uid: 26507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,41.5 + parent: 8364 + - uid: 26508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,41.5 + parent: 8364 + - uid: 26509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,41.5 + parent: 8364 + - uid: 26510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,41.5 + parent: 8364 + - uid: 26511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,41.5 + parent: 8364 + - uid: 26512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,40.5 + parent: 8364 + - uid: 26513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,39.5 + parent: 8364 + - uid: 26514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,38.5 + parent: 8364 + - uid: 26515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,38.5 + parent: 8364 + - uid: 26516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,38.5 + parent: 8364 + - uid: 26518 + components: + - type: Transform + pos: -5.5,52.5 + parent: 8364 + - uid: 26519 + components: + - type: Transform + pos: -5.5,51.5 + parent: 8364 + - uid: 26520 + components: + - type: Transform + pos: -5.5,50.5 + parent: 8364 + - uid: 26521 + components: + - type: Transform + pos: -5.5,49.5 + parent: 8364 + - uid: 26522 + components: + - type: Transform + pos: -5.5,48.5 + parent: 8364 + - uid: 26523 + components: + - type: Transform + pos: -5.5,47.5 + parent: 8364 + - uid: 26524 + components: + - type: Transform + pos: -5.5,46.5 + parent: 8364 + - uid: 26525 + components: + - type: Transform + pos: -5.5,45.5 + parent: 8364 + - uid: 26526 + components: + - type: Transform + pos: -5.5,44.5 + parent: 8364 + - uid: 26527 + components: + - type: Transform + pos: -5.5,43.5 + parent: 8364 + - uid: 26528 + components: + - type: Transform + pos: -5.5,42.5 + parent: 8364 + - uid: 26529 + components: + - type: Transform + pos: -5.5,41.5 + parent: 8364 + - uid: 26530 + components: + - type: Transform + pos: -5.5,40.5 + parent: 8364 + - uid: 26531 + components: + - type: Transform + pos: -5.5,39.5 + parent: 8364 + - uid: 26532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,38.5 + parent: 8364 + - uid: 26533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,38.5 + parent: 8364 + - uid: 26534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 8364 + - uid: 26535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,38.5 + parent: 8364 + - uid: 26540 + components: + - type: Transform + pos: 10.5,40.5 + parent: 8364 + - uid: 26550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,38.5 + parent: 8364 + - uid: 26551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,37.5 + parent: 8364 + - uid: 26552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,35.5 + parent: 8364 + - uid: 26553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,34.5 + parent: 8364 + - uid: 26554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,33.5 + parent: 8364 + - uid: 26555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 8364 + - uid: 26556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,31.5 + parent: 8364 - uid: 27478 components: - type: Transform @@ -84377,12 +84582,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-21.5 parent: 8364 - - uid: 6591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,19.5 - parent: 8364 - uid: 6649 components: - type: Transform @@ -84406,50 +84605,23 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,0.5 parent: 8364 - - uid: 7906 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,22.5 - parent: 8364 - uid: 7910 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-13.5 parent: 8364 - - uid: 9075 + - uid: 8697 components: - type: Transform - pos: 9.5,35.5 + rot: 3.141592653589793 rad + pos: -13.5,14.5 parent: 8364 - uid: 9246 components: - type: Transform pos: -22.5,-15.5 parent: 8364 - - uid: 9269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,30.5 - parent: 8364 - - uid: 9481 - components: - - type: Transform - pos: 19.5,36.5 - parent: 8364 - - uid: 9559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,37.5 - parent: 8364 - - uid: 9730 - components: - - type: Transform - pos: -3.5,16.5 - parent: 8364 - uid: 10490 components: - type: Transform @@ -84651,11 +84823,6 @@ entities: - type: Transform pos: 28.5,-23.5 parent: 8364 - - uid: 22207 - components: - - type: Transform - pos: 5.5,28.5 - parent: 8364 - uid: 22346 components: - type: Transform @@ -84667,12 +84834,47 @@ entities: rot: 1.5707963267948966 rad pos: 69.5,-17.5 parent: 8364 + - uid: 25754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,19.5 + parent: 8364 + - uid: 25788 + components: + - type: Transform + pos: -7.5,38.5 + parent: 8364 - uid: 25922 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-31.5 parent: 8364 + - uid: 26542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,45.5 + parent: 8364 + - uid: 26544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,53.5 + parent: 8364 + - uid: 26558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,31.5 + parent: 8364 + - uid: 26560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,36.5 + parent: 8364 - uid: 27477 components: - type: Transform @@ -84696,6 +84898,11 @@ entities: - type: Transform pos: -30.5,-31.5 parent: 8364 + - uid: 5101 + components: + - type: Transform + pos: 11.5,45.5 + parent: 8364 - uid: 5770 components: - type: Transform @@ -84739,7 +84946,7 @@ entities: - uid: 6633 components: - type: Transform - pos: -18.5,22.5 + pos: 5.5,31.5 parent: 8364 - uid: 6691 components: @@ -84761,35 +84968,15 @@ entities: - type: Transform pos: 29.5,-3.5 parent: 8364 - - uid: 8471 + - uid: 7717 components: - type: Transform - pos: 16.5,19.5 + pos: -1.5,51.5 parent: 8364 - - uid: 9227 + - uid: 8962 components: - type: Transform - pos: 4.5,30.5 - parent: 8364 - - uid: 9262 - components: - - type: Transform - pos: 9.5,35.5 - parent: 8364 - - uid: 9400 - components: - - type: Transform - pos: 19.5,36.5 - parent: 8364 - - uid: 9560 - components: - - type: Transform - pos: 16.5,37.5 - parent: 8364 - - uid: 9643 - components: - - type: Transform - pos: -3.5,16.5 + pos: -13.5,14.5 parent: 8364 - uid: 10656 components: @@ -84926,11 +85113,26 @@ entities: - type: Transform pos: 70.5,-43.5 parent: 8364 + - uid: 25752 + components: + - type: Transform + pos: 10.5,19.5 + parent: 8364 - uid: 25921 components: - type: Transform pos: 42.5,-31.5 parent: 8364 + - uid: 26517 + components: + - type: Transform + pos: -6.5,53.5 + parent: 8364 + - uid: 26559 + components: + - type: Transform + pos: 4.5,36.5 + parent: 8364 - uid: 27481 components: - type: Transform @@ -84973,11 +85175,6 @@ entities: parent: 8364 - proto: DogBed entities: - - uid: 3812 - components: - - type: Transform - pos: -2.5,31.5 - parent: 8364 - uid: 5500 components: - type: MetaData @@ -84985,6 +85182,11 @@ entities: - type: Transform pos: 5.5,-17.5 parent: 8364 + - uid: 9088 + components: + - type: Transform + pos: -5.5,31.5 + parent: 8364 - uid: 17832 components: - type: MetaData @@ -85004,10 +85206,10 @@ entities: parent: 8364 - proto: DonkpocketBoxSpawner entities: - - uid: 5577 + - uid: 8573 components: - type: Transform - pos: 14.5,30.5 + pos: 1.5,40.5 parent: 8364 - uid: 12191 components: @@ -85069,6 +85271,13 @@ entities: - type: Transform pos: 34.5,-38.5 parent: 8364 +- proto: DresserFilled + entities: + - uid: 7329 + components: + - type: Transform + pos: 10.5,30.5 + parent: 8364 - proto: DresserHeadOfPersonnelFilled entities: - uid: 5289 @@ -85078,10 +85287,10 @@ entities: parent: 8364 - proto: DresserHeadOfSecurityFilled entities: - - uid: 9377 + - uid: 8538 components: - type: Transform - pos: 15.5,41.5 + pos: -2.5,55.5 parent: 8364 - proto: DresserQuarterMasterFilled entities: @@ -85099,10 +85308,10 @@ entities: parent: 8364 - proto: DresserWardenFilled entities: - - uid: 28329 + - uid: 8470 components: - type: Transform - pos: -2.5,33.5 + pos: -9.5,31.5 parent: 8364 - proto: DrinkBeerBottleFull entities: @@ -85189,6 +85398,23 @@ entities: - type: Transform pos: 44.6978,-33.27954 parent: 8364 +- proto: DrinkMugMetal + entities: + - uid: 8729 + components: + - type: Transform + pos: -26.350903,36.68857 + parent: 8364 + - uid: 8831 + components: + - type: Transform + pos: -26.455122,36.459244 + parent: 8364 + - uid: 8846 + components: + - type: Transform + pos: -26.653135,36.61519 + parent: 8364 - proto: DrinkMugMoebius entities: - uid: 21147 @@ -85212,39 +85438,358 @@ entities: parent: 8364 - proto: EmergencyLight entities: - - uid: 9135 + - uid: 17694 components: - type: Transform - pos: 4.5,33.5 + rot: -1.5707963267948966 rad + pos: -23.5,40.5 parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 17710 + components: + - type: Transform + pos: -29.5,38.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 17764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,33.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 17837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,30.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 18178 + components: + - type: Transform + pos: -18.5,30.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 18184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,24.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 18186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,22.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 18308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,19.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 18310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,17.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 18369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,17.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 18370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,17.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 18568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,22.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 18569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,22.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 18571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,22.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 18591 + components: + - type: Transform + pos: 9.5,21.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,19.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,25.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,29.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,32.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,32.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,26.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,31.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,33.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,30.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,26.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19924 + components: + - type: Transform + pos: -10.5,38.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,41.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,50.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,50.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19929 + components: + - type: Transform + pos: -13.5,52.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,43.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,42.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,40.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,47.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19936 + components: + - type: Transform + pos: 11.5,51.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,52.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,55.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 19940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 20300 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-36.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 20588 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-43.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 20589 components: - type: Transform pos: 19.5,-40.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 20820 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-20.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 21308 components: - type: Transform pos: -2.5,1.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85253,6 +85798,8 @@ entities: - type: Transform pos: 0.5,-29.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85261,6 +85808,8 @@ entities: - type: Transform pos: 20.5,-12.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85269,6 +85818,8 @@ entities: - type: Transform pos: 35.5,-4.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85278,27 +85829,15 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-76.5 parent: 8364 - - uid: 21313 - components: - - type: Transform - pos: -7.5,21.5 - parent: 8364 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 21409 - components: - - type: Transform - pos: 10.5,21.5 - parent: 8364 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight + - type: Battery + startingCharge: 30000 - uid: 21410 components: - type: Transform pos: -44.5,-4.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85308,6 +85847,8 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,-1.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85316,6 +85857,8 @@ entities: - type: Transform pos: -42.5,5.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85324,6 +85867,8 @@ entities: - type: Transform pos: -10.5,-29.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85333,6 +85878,8 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-13.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85342,6 +85889,8 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-18.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85350,6 +85899,8 @@ entities: - type: Transform pos: 1.5,-55.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85358,6 +85909,8 @@ entities: - type: Transform pos: -14.5,-68.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85367,6 +85920,8 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-16.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85375,6 +85930,8 @@ entities: - type: Transform pos: 39.5,-55.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85384,6 +85941,8 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-22.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85392,6 +85951,8 @@ entities: - type: Transform pos: 79.5,-43.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85401,6 +85962,8 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-21.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85410,6 +85973,8 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,-1.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight @@ -85418,371 +85983,445 @@ entities: - type: Transform pos: -32.5,6.5 parent: 8364 + - type: Battery + startingCharge: 30000 - type: PointLight enabled: True - type: ActiveEmergencyLight + - uid: 25693 + components: + - type: Transform + pos: -1.5,51.5 + parent: 8364 + - type: Battery + startingCharge: 30000 + - uid: 25732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,24.5 + parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28022 components: - type: Transform pos: 31.5,-12.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28023 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-14.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28025 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-14.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28026 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-2.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28027 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-41.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28028 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-32.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28029 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-18.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28030 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-24.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28031 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-52.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28032 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-52.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28033 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-42.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28034 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-14.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28035 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-28.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28036 components: - type: Transform pos: 33.5,-23.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28037 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-19.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28038 components: - type: Transform pos: 13.5,-29.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28039 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-31.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28040 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,7.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28041 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-8.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28042 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-8.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28043 components: - type: Transform pos: -3.5,-4.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28044 components: - type: Transform pos: 2.5,-4.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28045 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,13.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28046 components: - type: Transform pos: -9.5,-0.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28047 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,6.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28048 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-25.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28049 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-32.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28050 components: - type: Transform pos: -38.5,-20.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28051 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-31.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28052 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,8.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28053 components: - type: Transform pos: -65.5,-3.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28054 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,4.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28055 components: - type: Transform pos: -56.5,-4.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28056 components: - type: Transform pos: -41.5,-0.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28057 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-2.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28058 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-54.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28059 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-49.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28061 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-39.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28062 components: - type: Transform pos: -4.5,-67.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28063 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-63.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28064 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-71.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28065 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-66.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28066 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-54.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28067 components: - type: Transform pos: 38.5,-31.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28068 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-20.5 parent: 8364 - - uid: 28071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,49.5 - parent: 8364 - - uid: 28072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,43.5 - parent: 8364 - - uid: 28073 - components: - - type: Transform - pos: -8.5,36.5 - parent: 8364 - - uid: 28074 - components: - - type: Transform - pos: 10.5,33.5 - parent: 8364 - - uid: 28075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,24.5 - parent: 8364 - - uid: 28076 - components: - - type: Transform - pos: -3.5,28.5 - parent: 8364 - - uid: 28077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,23.5 - parent: 8364 - - uid: 28078 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,35.5 - parent: 8364 - - uid: 28079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,13.5 - parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28080 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28081 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-5.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28082 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-10.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28083 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-11.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28209 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-26.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28210 components: - type: Transform pos: 0.5,-19.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28211 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-24.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28212 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-15.5 parent: 8364 + - type: Battery + startingCharge: 30000 - uid: 28213 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-15.5 parent: 8364 + - type: Battery + startingCharge: 30000 - proto: EmergencyOxygenTank entities: - uid: 12451 @@ -85817,6 +86456,13 @@ entities: - type: Transform pos: 69.43106,-78.4392 parent: 8364 +- proto: EmergencyRollerBed + entities: + - uid: 7290 + components: + - type: Transform + pos: 5.5,29.5 + parent: 8364 - proto: EmergencyRollerBedSpawnFolded entities: - uid: 27688 @@ -85948,19 +86594,21 @@ entities: parent: 8364 - proto: ExplosivesSignMed entities: - - uid: 18369 + - uid: 9855 components: - - type: MetaData - desc: WARNING! Live minefield! - type: Transform - pos: 5.5,46.5 + pos: -19.5,45.5 parent: 8364 - - uid: 28263 + - uid: 9857 components: - - type: MetaData - desc: WARNING! Live minefield! - type: Transform - pos: 25.5,43.5 + pos: -19.5,42.5 + parent: 8364 + - uid: 9858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,49.5 parent: 8364 - proto: ExtendedEmergencyOxygenTankFilled entities: @@ -86066,6 +86714,36 @@ entities: - type: Transform pos: 13.5,-28.5 parent: 8364 + - uid: 6332 + components: + - type: Transform + pos: -7.5,39.5 + parent: 8364 + - uid: 6333 + components: + - type: Transform + pos: 1.5,28.5 + parent: 8364 + - uid: 6603 + components: + - type: Transform + pos: -2.5,17.5 + parent: 8364 + - uid: 6604 + components: + - type: Transform + pos: -12.5,17.5 + parent: 8364 + - uid: 7036 + components: + - type: Transform + pos: 1.5,49.5 + parent: 8364 + - uid: 7187 + components: + - type: Transform + pos: 9.5,39.5 + parent: 8364 - uid: 7261 components: - type: Transform @@ -86081,10 +86759,15 @@ entities: showEnts: False occludes: True ent: null - - uid: 8479 + - uid: 10045 components: - type: Transform - pos: 19.5,26.5 + pos: -14.5,31.5 + parent: 8364 + - uid: 10046 + components: + - type: Transform + pos: -7.5,49.5 parent: 8364 - uid: 10744 components: @@ -86201,21 +86884,6 @@ entities: - type: Transform pos: 1.5,9.5 parent: 8364 - - uid: 22249 - components: - - type: Transform - pos: 19.5,21.5 - parent: 8364 - - uid: 22250 - components: - - type: Transform - pos: 3.5,25.5 - parent: 8364 - - uid: 22251 - components: - - type: Transform - pos: 5.5,33.5 - parent: 8364 - uid: 22252 components: - type: Transform @@ -86310,6 +86978,27 @@ entities: parent: 8364 - type: FaxMachine name: Conference Room + - uid: 8859 + components: + - type: Transform + pos: 2.5,27.5 + parent: 8364 + - type: FaxMachine + name: Lawyer + - uid: 8915 + components: + - type: Transform + pos: 10.5,27.5 + parent: 8364 + - type: FaxMachine + name: Detective + - uid: 9098 + components: + - type: Transform + pos: -4.5,34.5 + parent: 8364 + - type: FaxMachine + name: Warden - uid: 16754 components: - type: Transform @@ -86331,20 +87020,6 @@ entities: parent: 8364 - type: FaxMachine name: QM Office - - uid: 17710 - components: - - type: Transform - pos: -11.5,13.5 - parent: 8364 - - type: FaxMachine - name: Law Office - - uid: 19348 - components: - - type: Transform - pos: 12.5,32.5 - parent: 8364 - - type: FaxMachine - name: Security - uid: 21200 components: - type: Transform @@ -86352,13 +87027,6 @@ entities: parent: 8364 - type: FaxMachine name: RD - - uid: 21233 - components: - - type: Transform - pos: 12.5,41.5 - parent: 8364 - - type: FaxMachine - name: HoS Office - uid: 21237 components: - type: Transform @@ -86373,6 +87041,13 @@ entities: parent: 8364 - type: FaxMachine name: Library + - uid: 25829 + components: + - type: Transform + pos: 2.5,55.5 + parent: 8364 + - type: FaxMachine + name: Head of Security - uid: 26057 components: - type: Transform @@ -86380,13 +87055,13 @@ entities: parent: 8364 - type: FaxMachine name: Medical - - uid: 28093 + - uid: 28536 components: - type: Transform - pos: 4.5,32.5 + pos: 4.5,42.5 parent: 8364 - type: FaxMachine - name: Warden's Office + name: Security - proto: FaxMachineCaptain entities: - uid: 21189 @@ -86430,11 +87105,6 @@ entities: - type: Transform pos: 12.5,-12.5 parent: 8364 - - uid: 11602 - components: - - type: Transform - pos: -3.5,15.5 - parent: 8364 - uid: 11642 components: - type: Transform @@ -86462,11 +87132,6 @@ entities: - type: Transform pos: 69.5,-33.5 parent: 8364 - - uid: 9251 - components: - - type: Transform - pos: 3.5,30.5 - parent: 8364 - uid: 16813 components: - type: Transform @@ -86494,6 +87159,21 @@ entities: - type: Transform pos: 40.5,-18.5 parent: 8364 + - uid: 8767 + components: + - type: Transform + pos: -3.5,30.5 + parent: 8364 + - uid: 8862 + components: + - type: Transform + pos: 4.5,27.5 + parent: 8364 + - uid: 8888 + components: + - type: Transform + pos: 7.5,24.5 + parent: 8364 - uid: 17147 components: - type: Transform @@ -86506,6 +87186,16 @@ entities: - type: Transform pos: -7.5,-65.5 parent: 8364 + - uid: 7293 + components: + - type: Transform + pos: 11.5,42.5 + parent: 8364 + - uid: 7611 + components: + - type: Transform + pos: 11.5,41.5 + parent: 8364 - uid: 7992 components: - type: Transform @@ -86600,14 +87290,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,18.5 parent: 8364 - - type: DeviceList - devices: - - 11605 - - 11600 - - 11377 - - 11603 - - 23940 - - 9291 - uid: 10714 components: - type: Transform @@ -87259,8 +87941,6 @@ entities: - 7393 - 7390 - 7146 - - 11605 - - 11600 - 23935 - uid: 23936 components: @@ -87276,8 +87956,6 @@ entities: - 7393 - 7390 - 7146 - - 11605 - - 11600 - 23935 - uid: 25807 components: @@ -87349,36 +88027,23 @@ entities: - 25960 - 25961 - 25962 - - uid: 26399 + - uid: 26159 components: - type: Transform - pos: -0.5,52.5 + rot: 1.5707963267948966 rad + pos: -2.5,23.5 parent: 8364 - type: DeviceList devices: - - 9185 - - 26398 - - 7282 - - uid: 26400 - components: - - type: Transform - pos: -6.5,53.5 - parent: 8364 - - type: DeviceList - devices: - - 7301 - - 8910 - - 26397 - - uid: 27312 - components: - - type: Transform - pos: -9.5,28.5 - parent: 8364 - - type: DeviceList - devices: - - 26111 - - 7405 - - 7357 + - 9169 + - 9170 + - 9171 + - 9168 + - 9167 + - 9166 + - 8689 + - 8708 + - 8707 - uid: 27407 components: - type: Transform @@ -87404,6 +88069,73 @@ entities: - 27405 - 23151 - 16977 + - uid: 28498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,25.5 + parent: 8364 + - type: DeviceList + devices: + - 25645 + - 25644 + - 25643 + - 25642 + - 9169 + - 9170 + - 9171 + - 25646 + - 25647 + - 25648 + - 26208 + - 26207 + - 26248 + - 26235 + - uid: 28499 + components: + - type: Transform + pos: -13.5,31.5 + parent: 8364 + - type: DeviceList + devices: + - 25639 + - 25638 + - 25640 + - 25641 + - 25642 + - 25643 + - 26235 + - 28355 + - 28444 + - 26208 + - uid: 28500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,42.5 + parent: 8364 + - type: DeviceList + devices: + - 9126 + - 9127 + - 9125 + - 28501 + - 25648 + - 25647 + - 25646 + - 25649 + - 26248 + - uid: 28502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,49.5 + parent: 8364 + - type: DeviceList + devices: + - 9125 + - 9127 + - 9126 - proto: FireAxeCabinetFilled entities: - uid: 17598 @@ -87424,11 +88156,6 @@ entities: - type: Transform pos: 59.55134,-49.311836 parent: 8364 - - uid: 6616 - components: - - type: Transform - pos: 27.65475,21.45491 - parent: 8364 - uid: 20118 components: - type: Transform @@ -87675,6 +88402,70 @@ entities: - type: Transform pos: -1.5,-49.5 parent: 8364 + - uid: 25638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,27.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26234 + - 28499 + - uid: 25639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,29.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26234 + - 28499 + - uid: 25640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,27.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26234 + - 28499 + - uid: 25641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,29.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26234 + - 28499 + - uid: 25642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,27.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26160 + - 26234 + - 28498 + - 28499 + - uid: 25643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,27.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26160 + - 26234 + - 28498 + - 28499 - uid: 25964 components: - type: Transform @@ -87730,21 +88521,11 @@ entities: parent: 8364 - proto: FirelockGlass entities: - - uid: 757 - components: - - type: Transform - pos: -6.5,40.5 - parent: 8364 - uid: 915 components: - type: Transform pos: -31.5,0.5 parent: 8364 - - uid: 964 - components: - - type: Transform - pos: -4.5,40.5 - parent: 8364 - uid: 2782 components: - type: Transform @@ -88009,11 +88790,6 @@ entities: - type: DeviceNetwork deviceLists: - 835 - - uid: 6651 - components: - - type: Transform - pos: 21.5,24.5 - parent: 8364 - uid: 6682 components: - type: Transform @@ -88127,11 +88903,6 @@ entities: deviceLists: - 22589 - 22590 - - uid: 7357 - components: - - type: Transform - pos: -4.5,33.5 - parent: 8364 - uid: 7390 components: - type: Transform @@ -88142,11 +88913,6 @@ entities: - type: Transform pos: 5.5,-2.5 parent: 8364 - - uid: 7405 - components: - - type: Transform - pos: -5.5,33.5 - parent: 8364 - uid: 7981 components: - type: Transform @@ -88183,40 +88949,149 @@ entities: deviceLists: - 22589 - 22590 - - uid: 8199 + - uid: 8689 components: - type: Transform - pos: -15.5,19.5 + pos: 0.5,13.5 parent: 8364 - - uid: 8930 + - type: DeviceNetwork + deviceLists: + - 23898 + - 26159 + - uid: 8707 components: - type: Transform - pos: 1.5,34.5 + pos: -1.5,13.5 parent: 8364 - - uid: 8934 + - type: DeviceNetwork + deviceLists: + - 23898 + - 26159 + - uid: 8708 components: - type: Transform - pos: 2.5,34.5 + pos: -0.5,13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23898 + - 26159 - uid: 9104 components: - type: Transform pos: -44.5,20.5 parent: 8364 - - uid: 9219 + - uid: 9125 components: - type: Transform - pos: -0.5,29.5 + pos: -6.5,43.5 parent: 8364 - - uid: 9291 + - type: DeviceNetwork + deviceLists: + - 26340 + - 26206 + - 28500 + - 28502 + - uid: 9126 components: - type: Transform - pos: -1.5,18.5 + pos: -4.5,43.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26340 + - 26206 + - 28500 + - 28502 + - uid: 9127 + components: + - type: Transform + pos: -5.5,43.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26340 + - 26206 + - 28500 + - 28502 + - uid: 9166 + components: + - type: Transform + pos: 1.5,19.5 parent: 8364 - type: DeviceNetwork deviceLists: - 23898 - - 7797 + - 26159 + - 26469 + - uid: 9167 + components: + - type: Transform + pos: 1.5,20.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23898 + - 26159 + - 26469 + - uid: 9168 + components: + - type: Transform + pos: 1.5,21.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23898 + - 26159 + - 26469 + - uid: 9169 + components: + - type: Transform + pos: -1.5,25.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23898 + - 26159 + - 26160 + - 28498 + - uid: 9170 + components: + - type: Transform + pos: -0.5,25.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23898 + - 26159 + - 26160 + - 28498 + - uid: 9171 + components: + - type: Transform + pos: 0.5,25.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23898 + - 26159 + - 26160 + - 28498 + - uid: 9205 + components: + - type: Transform + pos: 16.5,18.5 + parent: 8364 + - uid: 9248 + components: + - type: Transform + pos: 16.5,28.5 + parent: 8364 + - uid: 9304 + components: + - type: Transform + pos: 15.5,18.5 + parent: 8364 - uid: 9811 components: - type: Transform @@ -88280,7 +89155,6 @@ entities: - uid: 10877 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-71.5 parent: 8364 - type: DeviceNetwork @@ -88299,53 +89173,11 @@ entities: - type: Transform pos: -17.5,-43.5 parent: 8364 - - uid: 11377 - components: - - type: Transform - pos: 1.5,22.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 7797 - uid: 11553 components: - type: Transform pos: 18.5,-38.5 parent: 8364 - - uid: 11599 - components: - - type: Transform - pos: 3.5,24.5 - parent: 8364 - - uid: 11600 - components: - - type: Transform - pos: 0.5,18.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 7797 - - uid: 11603 - components: - - type: Transform - pos: 2.5,22.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 7797 - - uid: 11604 - components: - - type: Transform - pos: 3.5,23.5 - parent: 8364 - - uid: 11605 - components: - - type: Transform - pos: -0.5,18.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 7797 - uid: 11719 components: - type: Transform @@ -88498,7 +89330,7 @@ entities: pos: 18.5,-13.5 parent: 8364 - type: Door - secondsUntilStateChange: -5118.329 + secondsUntilStateChange: -44588.918 state: Closing - uid: 13388 components: @@ -88506,7 +89338,7 @@ entities: pos: 18.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -5154.0293 + secondsUntilStateChange: -44624.617 state: Closing - uid: 13389 components: @@ -88537,11 +89369,6 @@ entities: - type: Transform pos: 41.5,-6.5 parent: 8364 - - uid: 13405 - components: - - type: Transform - pos: 20.5,24.5 - parent: 8364 - uid: 13461 components: - type: Transform @@ -88663,18 +89490,13 @@ entities: - type: Transform pos: 11.5,-7.5 parent: 8364 - - uid: 14921 - components: - - type: Transform - pos: -13.5,11.5 - parent: 8364 - uid: 14938 components: - type: Transform pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -92075.87 + secondsUntilStateChange: -131546.45 state: Closing - uid: 15010 components: @@ -88714,7 +89536,6 @@ entities: - uid: 16627 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-69.5 parent: 8364 - type: DeviceNetwork @@ -88820,11 +89641,6 @@ entities: - type: DeviceNetwork deviceLists: - 835 - - uid: 19934 - components: - - type: Transform - pos: 5.5,37.5 - parent: 8364 - uid: 19972 components: - type: Transform @@ -88981,6 +89797,92 @@ entities: deviceLists: - 1907 - 17159 + - uid: 25635 + components: + - type: Transform + pos: -21.5,31.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - uid: 25636 + components: + - type: Transform + pos: -20.5,31.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - uid: 25637 + components: + - type: Transform + pos: -19.5,31.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - uid: 25644 + components: + - type: Transform + pos: -5.5,29.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26160 + - 26234 + - 28498 + - uid: 25645 + components: + - type: Transform + pos: -4.5,29.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26160 + - 26234 + - 28498 + - uid: 25646 + components: + - type: Transform + pos: -2.5,31.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26160 + - 26234 + - 28498 + - 28500 + - uid: 25647 + components: + - type: Transform + pos: -2.5,32.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26160 + - 26234 + - 28498 + - 28500 + - uid: 25648 + components: + - type: Transform + pos: -2.5,33.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26160 + - 26234 + - 28498 + - 28500 + - uid: 25649 + components: + - type: Transform + pos: -10.5,33.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26234 + - 28500 - uid: 25951 components: - type: Transform @@ -89104,31 +90006,6 @@ entities: - type: Transform pos: -18.5,-34.5 parent: 8364 - - uid: 26111 - components: - - type: Transform - pos: 7.5,29.5 - parent: 8364 - - uid: 26112 - components: - - type: Transform - pos: 7.5,21.5 - parent: 8364 - - uid: 26113 - components: - - type: Transform - pos: 7.5,20.5 - parent: 8364 - - uid: 26114 - components: - - type: Transform - pos: 7.5,19.5 - parent: 8364 - - uid: 26115 - components: - - type: Transform - pos: -15.5,20.5 - parent: 8364 - uid: 26127 components: - type: Transform @@ -89159,6 +90036,43 @@ entities: - type: Transform pos: -64.5,-6.5 parent: 8364 + - uid: 26435 + components: + - type: Transform + pos: 9.5,46.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26430 + - uid: 26436 + components: + - type: Transform + pos: 6.5,49.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26430 + - uid: 26437 + components: + - type: Transform + pos: 3.5,39.5 + parent: 8364 + - uid: 26438 + components: + - type: Transform + pos: 1.5,44.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26430 + - uid: 26439 + components: + - type: Transform + pos: 1.5,48.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26430 - uid: 26573 components: - type: Transform @@ -89234,8 +90148,31 @@ entities: - 1907 - 17159 - 23133 + - uid: 28642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,45.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26323 + - uid: 28643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,46.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26323 - proto: Fireplace entities: + - uid: 8894 + components: + - type: Transform + pos: -24.5,31.5 + parent: 8364 - uid: 11559 components: - type: Transform @@ -89246,13 +90183,13 @@ entities: - type: Transform pos: 9.5,-11.5 parent: 8364 - - uid: 26414 - components: - - type: Transform - pos: -13.5,53.5 - parent: 8364 - proto: Flash entities: + - uid: 5085 + components: + - type: Transform + pos: 8.323544,43.33329 + parent: 8364 - uid: 5604 components: - type: Transform @@ -89270,24 +90207,6 @@ entities: - type: Transform pos: 49.481064,16.680466 parent: 8364 - - type: HandheldLight - toggleActionEntity: 16587 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 16587 - - type: ActionsContainer - uid: 11760 components: - type: Transform @@ -89458,6 +90377,13 @@ entities: - type: Transform pos: 82.519135,-63.66839 parent: 8364 +- proto: FlashlightSeclite + entities: + - uid: 7337 + components: + - type: Transform + pos: 8.604933,42.85379 + parent: 8364 - proto: FlippoLighter entities: - uid: 5114 @@ -90026,6 +90952,16 @@ entities: - type: Transform pos: -22.531582,-12.47005 parent: 8364 + - uid: 7912 + components: + - type: Transform + pos: 2.6587193,26.536985 + parent: 8364 + - uid: 8766 + components: + - type: Transform + pos: 2.3773293,26.808006 + parent: 8364 - proto: FoodBanana entities: - uid: 6983 @@ -90043,6 +90979,13 @@ entities: - type: Transform pos: 20.483616,5.7458954 parent: 8364 +- proto: FoodBowlBig + entities: + - uid: 8955 + components: + - type: Transform + pos: -23.51392,35.716484 + parent: 8364 - proto: FoodBoxDonkpocket entities: - uid: 15582 @@ -90064,10 +91007,10 @@ entities: parent: 8364 - proto: FoodBoxDonut entities: - - uid: 541 + - uid: 52 components: - type: Transform - pos: 16.555893,33.587013 + pos: -0.511538,40.73609 parent: 8364 - uid: 5304 components: @@ -90089,10 +91032,10 @@ entities: - type: Transform pos: 35.5,-10.5 parent: 8364 - - uid: 8473 + - uid: 7875 components: - type: Transform - pos: 15.5,27.5 + pos: -10.488962,14.630925 parent: 8364 - proto: FoodBreadBaguette entities: @@ -90119,6 +91062,11 @@ entities: parent: 8364 - proto: FoodCondimentBottleEnzyme entities: + - uid: 509 + components: + - type: Transform + pos: -25.896696,38.793694 + parent: 8364 - uid: 15585 components: - type: Transform @@ -90126,11 +91074,6 @@ entities: parent: 8364 - type: Tag tags: [] - - uid: 26570 - components: - - type: Transform - pos: -0.39335,51.742676 - parent: 8364 - proto: FoodCondimentPacketPepper entities: - uid: 15588 @@ -90348,6 +91291,13 @@ entities: parent: 8364 - proto: GasMixer entities: + - uid: 6289 + components: + - type: Transform + pos: 7.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17052 components: - type: Transform @@ -90544,23 +91494,24 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-50.5 parent: 8364 -- proto: GasPipeBend - entities: - - uid: 4 + - uid: 28362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-87.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28367 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,39.5 + pos: 28.5,-80.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 45 - components: - - type: Transform - pos: -4.5,37.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' + color: '#03FCD3FF' +- proto: GasPipeBend + entities: - uid: 4140 components: - type: Transform @@ -90718,30 +91669,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5716 components: - type: Transform @@ -90749,134 +91676,28 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7312 - components: - - type: Transform - pos: -5.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7324 - components: - - type: Transform - pos: -4.5,41.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8431 + - uid: 6641 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,30.5 + pos: 6.5,37.5 parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8432 - components: - - type: Transform - pos: 27.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8911 + - uid: 8586 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,37.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,39.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,45.5 + pos: 7.5,34.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8983 - components: - - type: Transform - pos: 3.5,51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,41.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9097 - components: - - type: Transform - pos: -5.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9363 - components: - - type: Transform - pos: 26.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9440 + - uid: 9269 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,22.5 + pos: 10.5,34.5 parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9948 components: - type: Transform @@ -91005,8 +91826,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-85.5 parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 13066 components: - type: Transform @@ -91408,14 +92227,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 21995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,16.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22545 components: - type: Transform @@ -91591,14 +92402,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-79.5 - parent: 8364 - - type: AtmosPipeColor - color: '#947507FF' - uid: 23983 components: - type: Transform @@ -91714,20 +92517,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 24262 - components: - - type: Transform - pos: 8.5,14.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24263 - components: - - type: Transform - pos: 9.5,15.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24378 components: - type: Transform @@ -92012,14 +92801,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-79.5 - parent: 8364 - - type: AtmosPipeColor - color: '#947507FF' - uid: 25351 components: - type: Transform @@ -92036,22 +92817,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25505 components: - type: Transform @@ -92059,101 +92824,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25798 - components: - - type: Transform - pos: 14.5,38.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26043 components: - type: Transform @@ -92162,6 +92832,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 26054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 26099 components: - type: Transform @@ -92169,6 +92847,213 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' + - uid: 26163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,26.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26249 + components: + - type: Transform + pos: -12.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26274 + components: + - type: Transform + pos: -1.5,38.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,38.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26328 + components: + - type: Transform + pos: -6.5,50.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26332 + components: + - type: Transform + pos: -4.5,52.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26422 + components: + - type: Transform + pos: 4.5,55.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26423 + components: + - type: Transform + pos: 2.5,54.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,55.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,54.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,49.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26433 + components: + - type: Transform + pos: 9.5,48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,40.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26492 + components: + - type: Transform + pos: 10.5,40.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,26.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26579 + components: + - type: Transform + pos: 18.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26638 components: - type: Transform @@ -92214,8 +93099,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-85.5 parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 26957 components: - type: Transform @@ -92316,6 +93199,21 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 27724 + components: + - type: Transform + pos: -9.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 27958 components: - type: Transform @@ -92324,6 +93222,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 28092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 28148 components: - type: Transform @@ -92347,6 +93253,98 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 28346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,22.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,26.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,22.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28349 + components: + - type: Transform + pos: -15.5,24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28441 + components: + - type: Transform + pos: -20.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28470 + components: + - type: Transform + pos: -24.5,40.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,40.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28510 + components: + - type: Transform + pos: -23.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 5316 @@ -92363,13 +93361,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 8876 - components: - - type: Transform - pos: 2.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 13665 components: - type: Transform @@ -92391,13 +93382,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 21997 - components: - - type: Transform - pos: 0.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 22975 components: - type: Transform @@ -92580,41 +93564,55 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25537 + - uid: 26139 components: - type: Transform - pos: 8.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25575 - components: - - type: Transform - pos: -4.5,27.5 + pos: 3.5,21.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25576 + - uid: 26203 components: - type: Transform - pos: 1.5,26.5 + pos: 0.5,27.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25597 + - uid: 26301 components: - type: Transform - pos: -10.5,26.5 + pos: -6.5,45.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25787 + - uid: 26359 components: - type: Transform - pos: 14.5,32.5 + pos: 9.5,41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26456 + components: + - type: Transform + pos: 9.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26564 + components: + - type: Transform + pos: -9.5,16.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 27280 + components: + - type: Transform + pos: -5.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 27974 components: - type: Transform @@ -92622,16 +93620,36 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 28121 + components: + - type: Transform + pos: -20.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28436 + components: + - type: Transform + pos: -19.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeSensor entities: - uid: 16635 components: + - type: MetaData + name: gas pipe sensor (Burn Chamber Supply) - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-71.5 parent: 8364 - type: AtmosPipeColor color: '#947507FF' + - type: Label + currentLabel: Burn Chamber Supply + - type: NameModifier + baseName: gas pipe sensor - uid: 17381 components: - type: MetaData @@ -92681,7 +93699,7 @@ entities: pos: 17.5,-77.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#990000FF' - proto: GasPipeSensorWaste entities: - uid: 16914 @@ -92694,86 +93712,6 @@ entities: color: '#990000FF' - proto: GasPipeStraight entities: - - uid: 3 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 42 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 43 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 44 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 46 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,38.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 47 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,39.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 48 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,38.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 50 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 52 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 567 components: - type: Transform @@ -92790,14 +93728,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 852 components: - type: Transform @@ -92813,14 +93743,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1256 components: - type: Transform @@ -92870,8 +93792,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-83.5 parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 1643 components: - type: Transform @@ -92926,22 +93846,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,37.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3905 components: - type: Transform @@ -93159,7 +94063,7 @@ entities: pos: 19.5,-77.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#03FCD3FF' - uid: 4273 components: - type: Transform @@ -93347,22 +94251,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#947507FF' - uid: 4493 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-83.5 parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 4498 components: - type: Transform @@ -93478,70 +94372,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 5068 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,50.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,50.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5120 components: - type: Transform @@ -93558,13 +94388,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 5255 - components: - - type: Transform - pos: 27.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5256 components: - type: Transform @@ -93722,53 +94545,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5615 - components: - - type: Transform - pos: 27.5,29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5627 components: - type: Transform @@ -93905,10 +94681,11 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6458 + - uid: 6639 components: - type: Transform - pos: 27.5,24.5 + rot: 1.5707963267948966 rad + pos: 9.5,34.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -94018,185 +94795,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7223 + - uid: 7843 components: - type: Transform - pos: 26.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,48.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,44.5 + pos: -10.5,44.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 7298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,46.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7310 - components: - - type: Transform - pos: -9.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7313 - components: - - type: Transform - pos: -8.5,49.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7316 - components: - - type: Transform - pos: -8.5,46.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7317 - components: - - type: Transform - pos: -8.5,47.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,50.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7321 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,50.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,41.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8118 components: - type: Transform @@ -94259,19 +94864,17 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8402 + - uid: 8409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,30.5 + pos: -13.5,43.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8407 + - uid: 8421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,30.5 + pos: -13.5,44.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -94287,251 +94890,87 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-39.5 parent: 8364 - - uid: 8531 - components: - - type: Transform - pos: -10.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8952 + - uid: 8481 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,48.5 + pos: 8.5,34.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8966 + - uid: 8540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8987 - components: - - type: Transform - pos: -6.5,44.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,51.5 + pos: -13.5,42.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9064 - components: - - type: Transform - pos: -6.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9065 - components: - - type: Transform - pos: -6.5,47.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9066 - components: - - type: Transform - pos: -6.5,46.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9067 - components: - - type: Transform - pos: -6.5,49.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9068 - components: - - type: Transform - pos: -6.5,48.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,44.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9098 - components: - - type: Transform - pos: -13.5,34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9187 + - uid: 8541 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,25.5 + pos: -12.5,45.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9188 + - uid: 8549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,30.5 + pos: -10.5,43.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,35.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9198 + - uid: 8588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,30.5 + rot: 3.141592653589793 rad + pos: 7.5,36.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9204 + - uid: 8742 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,30.5 + pos: -1.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8777 + components: + - type: Transform + pos: -1.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8885 + components: + - type: Transform + pos: -10.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,39.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -94542,80 +94981,43 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9365 + - uid: 9270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,30.5 + rot: 3.141592653589793 rad + pos: 10.5,35.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9393 + - uid: 9271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,19.5 + rot: 3.141592653589793 rad + pos: 10.5,36.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9394 + - uid: 9272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,19.5 + rot: 3.141592653589793 rad + pos: 10.5,37.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9408 + - uid: 9273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,20.5 + rot: 3.141592653589793 rad + pos: 10.5,38.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9409 + - uid: 9274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9438 - components: - - type: Transform - pos: 27.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9441 - components: - - type: Transform - pos: 27.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9458 - components: - - type: Transform - pos: 27.5,25.5 + rot: 3.141592653589793 rad + pos: 10.5,39.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -95203,14 +95605,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 14507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-81.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 14514 components: - type: Transform @@ -95226,11 +95620,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 14564 - components: - - type: Transform - pos: 22.5,-81.5 - parent: 8364 - uid: 14703 components: - type: Transform @@ -95391,8 +95780,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-84.5 parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 15979 components: - type: Transform @@ -95431,8 +95818,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-84.5 parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 16590 components: - type: Transform @@ -96848,54 +97233,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 19936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,22.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19953 components: - type: Transform @@ -97273,14 +97610,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 21998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 22001 components: - type: Transform @@ -98375,14 +98704,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23084 components: - type: Transform @@ -100116,22 +100437,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,15.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23481 components: - type: Transform @@ -100148,22 +100453,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23486 components: - type: Transform @@ -101546,13 +101835,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23717 - components: - - type: Transform - pos: 0.5,15.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23719 components: - type: Transform @@ -102686,8 +102968,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-82.5 parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 23920 components: - type: Transform @@ -105683,6 +105963,20 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 24519 + components: + - type: Transform + pos: 17.5,-79.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24520 + components: + - type: Transform + pos: 19.5,-79.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 24521 components: - type: Transform @@ -107838,8 +108132,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-82.5 parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 25006 components: - type: Transform @@ -108727,11 +109019,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25233 - components: - - type: Transform - pos: 8.5,24.5 - parent: 8364 - uid: 25247 components: - type: Transform @@ -109638,1475 +109925,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,22.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,22.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,18.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,17.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,16.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,18.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,17.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,16.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,18.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,17.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,18.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,17.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25472 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25477 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25520 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,22.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,22.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25527 - components: - - type: Transform - pos: 4.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25528 - components: - - type: Transform - pos: 6.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25529 - components: - - type: Transform - pos: 4.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25530 - components: - - type: Transform - pos: 4.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25544 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25547 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25568 - components: - - type: Transform - pos: -8.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25572 - components: - - type: Transform - pos: -8.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25580 - components: - - type: Transform - pos: -0.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25583 - components: - - type: Transform - pos: -6.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25586 - components: - - type: Transform - pos: -4.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25590 - components: - - type: Transform - pos: -4.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25594 - components: - - type: Transform - pos: -2.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25602 - components: - - type: Transform - pos: -14.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25603 - components: - - type: Transform - pos: -14.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25604 - components: - - type: Transform - pos: -14.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25605 - components: - - type: Transform - pos: -13.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25606 - components: - - type: Transform - pos: -13.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25607 - components: - - type: Transform - pos: -0.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25608 - components: - - type: Transform - pos: 1.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25609 - components: - - type: Transform - pos: 2.5,25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25610 - components: - - type: Transform - pos: 2.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25629 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25630 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25638 - components: - - type: Transform - pos: 1.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25639 - components: - - type: Transform - pos: 1.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25640 - components: - - type: Transform - pos: 1.5,34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25641 - components: - - type: Transform - pos: 1.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25642 - components: - - type: Transform - pos: 2.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25643 - components: - - type: Transform - pos: 2.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25644 - components: - - type: Transform - pos: 2.5,34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25645 - components: - - type: Transform - pos: 2.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25646 - components: - - type: Transform - pos: -5.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25648 - components: - - type: Transform - pos: -5.5,29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25649 - components: - - type: Transform - pos: -4.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25651 - components: - - type: Transform - pos: -4.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25658 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25660 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25661 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25695 - components: - - type: Transform - pos: -14.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25711 - components: - - type: Transform - pos: -5.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25722 - components: - - type: Transform - pos: -14.5,34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25765 - components: - - type: Transform - pos: 7.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25766 - components: - - type: Transform - pos: 7.5,34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25767 - components: - - type: Transform - pos: 7.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25768 - components: - - type: Transform - pos: 7.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25769 - components: - - type: Transform - pos: 8.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25770 - components: - - type: Transform - pos: 8.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25771 - components: - - type: Transform - pos: 8.5,34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25772 - components: - - type: Transform - pos: 8.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25784 components: - type: Transform @@ -111115,14 +109933,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25786 components: - type: Transform @@ -111131,178 +109941,17 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25788 + - uid: 25899 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,37.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,33.5 + pos: -1.5,19.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25795 + - uid: 25972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25799 - components: - - type: Transform - pos: 14.5,37.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,33.5 + pos: -1.5,20.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -111314,6 +109963,30 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 25995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26018 components: - type: Transform @@ -111329,6 +110002,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 26025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 26041 components: - type: Transform @@ -111345,6 +110026,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 26062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26068 components: - type: Transform @@ -111376,6 +110065,1257 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' + - uid: 26091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 26111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26145 + components: + - type: Transform + pos: 0.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,26.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,22.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26153 + components: + - type: Transform + pos: -1.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,26.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,35.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26182 + components: + - type: Transform + pos: 0.5,28.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26183 + components: + - type: Transform + pos: 0.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26184 + components: + - type: Transform + pos: 0.5,30.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26185 + components: + - type: Transform + pos: 0.5,31.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26186 + components: + - type: Transform + pos: 0.5,32.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26188 + components: + - type: Transform + pos: 0.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26189 + components: + - type: Transform + pos: 0.5,35.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,28.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,30.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,32.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,35.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,32.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,31.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,30.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26236 + components: + - type: Transform + pos: -5.5,35.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26237 + components: + - type: Transform + pos: -5.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,28.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,30.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,31.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26252 + components: + - type: Transform + pos: -14.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26253 + components: + - type: Transform + pos: -14.5,35.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26254 + components: + - type: Transform + pos: -14.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26255 + components: + - type: Transform + pos: -14.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,35.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26270 + components: + - type: Transform + pos: 2.5,43.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,38.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,40.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,38.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,38.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26283 + components: + - type: Transform + pos: -4.5,39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26284 + components: + - type: Transform + pos: -4.5,40.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26285 + components: + - type: Transform + pos: -4.5,41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,38.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,40.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,43.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,43.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,47.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26300 + components: + - type: Transform + pos: -4.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,47.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26304 + components: + - type: Transform + pos: -6.5,48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,50.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,50.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,49.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26329 + components: + - type: Transform + pos: -4.5,49.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26330 + components: + - type: Transform + pos: -4.5,50.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,51.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,51.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,51.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,51.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26348 + components: + - type: Transform + pos: 2.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,49.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26365 + components: + - type: Transform + pos: 9.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26366 + components: + - type: Transform + pos: 9.5,43.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26367 + components: + - type: Transform + pos: 9.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26368 + components: + - type: Transform + pos: 9.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26369 + components: + - type: Transform + pos: 9.5,46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26370 + components: + - type: Transform + pos: 9.5,47.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26371 + components: + - type: Transform + pos: 2.5,46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26372 + components: + - type: Transform + pos: 2.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26373 + components: + - type: Transform + pos: 2.5,48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26374 + components: + - type: Transform + pos: 2.5,49.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26375 + components: + - type: Transform + pos: 2.5,50.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26376 + components: + - type: Transform + pos: 2.5,51.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26377 + components: + - type: Transform + pos: 2.5,52.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,47.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26383 components: - type: Transform @@ -111391,6 +111331,517 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 26390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,43.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,49.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,49.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,49.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26400 + components: + - type: Transform + pos: 4.5,50.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26410 + components: + - type: Transform + pos: 4.5,52.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26411 + components: + - type: Transform + pos: 4.5,53.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26412 + components: + - type: Transform + pos: 4.5,54.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,55.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,55.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,55.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,55.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,55.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,54.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,54.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,55.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,22.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,22.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,20.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,17.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,18.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,18.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,17.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26470 + components: + - type: Transform + pos: 8.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26471 + components: + - type: Transform + pos: 10.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26472 + components: + - type: Transform + pos: 10.5,24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26473 + components: + - type: Transform + pos: 10.5,25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26482 + components: + - type: Transform + pos: 8.5,26.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,28.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,28.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,28.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26621 components: - type: Transform @@ -111510,14 +111961,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-81.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 26802 components: - type: Transform @@ -111541,14 +111984,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26941 + - uid: 26931 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-80.5 + pos: -3.5,16.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#990000FF' - uid: 26958 components: - type: Transform @@ -111713,6 +112156,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27258 components: - type: Transform @@ -111721,6 +112172,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27277 components: - type: Transform @@ -111729,6 +112196,62 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 27278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27307 components: - type: Transform @@ -111743,6 +112266,30 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 27309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,18.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 27380 components: - type: Transform @@ -111819,6 +112366,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 27489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 27548 components: - type: Transform @@ -111842,6 +112397,62 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,18.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,20.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27762 components: - type: Transform @@ -111984,6 +112595,72 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 28071 + components: + - type: Transform + pos: -15.5,17.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28072 + components: + - type: Transform + pos: -15.5,18.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28073 + components: + - type: Transform + pos: -15.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28074 + components: + - type: Transform + pos: -13.5,17.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28075 + components: + - type: Transform + pos: -13.5,18.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28076 + components: + - type: Transform + pos: -13.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 28196 components: - type: Transform @@ -112038,22 +112715,643 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' -- proto: GasPipeTJunction - entities: - - uid: 1 + - uid: 28240 components: - type: Transform - pos: -9.5,36.5 + rot: 1.5707963267948966 rad + pos: -22.5,29.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 749 + - uid: 28241 components: - type: Transform - pos: -6.5,50.5 + rot: 1.5707963267948966 rad + pos: -23.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,26.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 28263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28337 + components: + - type: Transform + pos: -20.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28338 + components: + - type: Transform + pos: -20.5,25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28339 + components: + - type: Transform + pos: -20.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28340 + components: + - type: Transform + pos: -20.5,28.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,26.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,22.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28357 + components: + - type: Transform + pos: 18.5,-82.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28358 + components: + - type: Transform + pos: 18.5,-83.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28359 + components: + - type: Transform + pos: 18.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28360 + components: + - type: Transform + pos: 18.5,-85.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28361 + components: + - type: Transform + pos: 18.5,-86.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 28364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 28366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 28419 + components: + - type: Transform + pos: -19.5,28.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28420 + components: + - type: Transform + pos: -19.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28421 + components: + - type: Transform + pos: -19.5,30.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28422 + components: + - type: Transform + pos: -19.5,31.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28423 + components: + - type: Transform + pos: -19.5,32.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28424 + components: + - type: Transform + pos: -20.5,30.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28425 + components: + - type: Transform + pos: -20.5,31.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28426 + components: + - type: Transform + pos: -20.5,32.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28427 + components: + - type: Transform + pos: -20.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,35.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,35.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28451 + components: + - type: Transform + pos: -26.5,32.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,35.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,38.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,40.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,35.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,38.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,40.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,35.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28507 + components: + - type: Transform + pos: -23.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28508 + components: + - type: Transform + pos: -23.5,43.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: - uid: 834 components: - type: Transform @@ -112068,20 +113366,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 849 - components: - - type: Transform - pos: 2.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 953 - components: - - type: Transform - pos: -10.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3732 components: - type: Transform @@ -112209,42 +113493,11 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 7306 + - uid: 7348 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,50.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7710 - components: - - type: Transform - pos: -11.5,27.5 + rot: 1.5707963267948966 rad + pos: -10.5,42.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -112255,39 +113508,27 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 8524 + - uid: 8436 components: - type: Transform - pos: -6.5,26.5 + rot: 1.5707963267948966 rad + pos: -13.5,45.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8526 + - uid: 8733 components: - type: Transform - pos: -0.5,27.5 + rot: -1.5707963267948966 rad + pos: 8.5,14.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 8668 + - uid: 8741 components: - type: Transform - pos: -8.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8880 - components: - - type: Transform - pos: -2.5,26.5 + rot: -1.5707963267948966 rad + pos: 9.5,15.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -112299,59 +113540,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8933 - components: - - type: Transform - pos: -10.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,48.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8979 + - uid: 10087 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,40.5 + pos: 0.5,19.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,22.5 - parent: 8364 - uid: 10437 components: - type: Transform @@ -112380,14 +113576,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 14087 components: - type: Transform @@ -112444,14 +113632,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#947507FF' - uid: 15494 components: - type: Transform @@ -112907,21 +114087,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 20884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20885 - components: - - type: Transform - pos: 16.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 21365 components: - type: Transform @@ -113152,13 +114317,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23186 - components: - - type: Transform - pos: 18.5,-79.5 - parent: 8364 - - type: AtmosPipeColor - color: '#947507FF' - uid: 23202 components: - type: Transform @@ -113432,13 +114590,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23485 - components: - - type: Transform - pos: -1.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23495 components: - type: Transform @@ -114260,14 +115411,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24463 components: - type: Transform @@ -114467,14 +115610,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24654 components: - type: Transform @@ -114725,205 +115860,302 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25431 + - uid: 25898 components: - type: Transform - pos: -4.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25432 - components: - - type: Transform - pos: -5.5,21.5 + rot: 1.5707963267948966 rad + pos: -1.5,21.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25433 + - uid: 26027 components: - type: Transform - pos: -10.5,19.5 + rot: 3.141592653589793 rad + pos: 21.5,-80.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25434 + color: '#03FCD3FF' + - uid: 26029 components: - type: Transform - pos: -11.5,20.5 + rot: 3.141592653589793 rad + pos: 17.5,-80.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25437 + - uid: 26092 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,19.5 + pos: 23.5,-80.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25438 + color: '#03FCD3FF' + - uid: 26155 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,20.5 + pos: -3.5,26.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25460 + - uid: 26156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,19.5 + rot: -1.5707963267948966 rad + pos: 0.5,22.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25465 + - uid: 26157 components: - type: Transform - pos: -7.5,21.5 + rot: 1.5707963267948966 rad + pos: -1.5,24.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25493 + - uid: 26161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,19.5 + rot: -1.5707963267948966 rad + pos: -1.5,26.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,36.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25494 + - uid: 26187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,21.5 + rot: -1.5707963267948966 rad + pos: 0.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26190 + components: + - type: Transform + pos: 0.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,31.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25498 + - uid: 26210 components: - type: Transform + pos: -5.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26223 + components: + - type: Transform + pos: -15.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26251 + components: + - type: Transform + pos: -14.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26273 + components: + - type: Transform + pos: 3.5,41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26305 + components: + - type: Transform + pos: -5.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,51.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,47.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,49.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,53.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,51.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26451 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,21.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25511 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25526 + - uid: 26477 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,24.5 + pos: 8.5,24.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25532 + - uid: 26484 components: - type: Transform - pos: 4.5,28.5 + pos: 8.5,27.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25535 + - uid: 26488 components: - type: Transform - pos: 6.5,27.5 + pos: 10.5,26.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25538 - components: - - type: Transform - pos: 9.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26672 components: - type: Transform @@ -114963,6 +116195,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 27287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27554 components: - type: Transform @@ -114978,6 +116226,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 27935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27942 components: - type: Transform @@ -114986,6 +116242,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 28077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 28217 components: - type: Transform @@ -115002,6 +116266,123 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 28247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,26.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28435 + components: + - type: Transform + pos: -18.5,29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28445 + components: + - type: Transform + pos: -26.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28473 + components: + - type: Transform + pos: -25.5,37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPort entities: - uid: 409 @@ -115054,12 +116435,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 5596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,21.5 - parent: 8364 - uid: 6256 components: - type: Transform @@ -115075,6 +116450,16 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7925 + components: + - type: Transform + pos: 7.5,38.5 + parent: 8364 + - uid: 7979 + components: + - type: Transform + pos: 6.5,38.5 + parent: 8364 - uid: 11796 components: - type: Transform @@ -115282,14 +116667,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8453 components: - type: Transform @@ -115302,13 +116679,6 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,-41.5 parent: 8364 - - uid: 9437 - components: - - type: Transform - pos: 26.5,23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10435 components: - type: Transform @@ -115546,43 +116916,6 @@ entities: parent: 8364 - proto: GasValve entities: - - uid: 4231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-80.5 - parent: 8364 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 13407 - components: - - type: Transform - pos: 23.5,-80.5 - parent: 8364 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15721 - components: - - type: Transform - pos: 19.5,-78.5 - parent: 8364 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#947507FF' - - uid: 16550 - components: - - type: Transform - pos: 17.5,-78.5 - parent: 8364 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#947507FF' - uid: 16633 components: - type: Transform @@ -115620,16 +116953,25 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 23185 + - uid: 27360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-80.5 + pos: 18.5,-81.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor color: '#990000FF' + - uid: 28365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-80.5 + parent: 8364 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasVentPump entities: - uid: 747 @@ -115763,30 +117105,6 @@ entities: - 22703 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,50.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,48.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8149 components: - type: Transform @@ -115798,45 +117116,6 @@ entities: - 8150 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,50.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,44.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9392 - components: - - type: Transform - pos: 13.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10452 components: - type: Transform @@ -116111,16 +117390,6 @@ entities: - 22589 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23258 - components: - - type: Transform - pos: 0.5,20.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 23938 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23259 components: - type: Transform @@ -116183,18 +117452,6 @@ entities: - 22689 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,16.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 2468 - - 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23949 components: - type: Transform @@ -116557,13 +117814,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24519 - components: - - type: Transform - pos: 37.5,-1.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24572 components: - type: Transform @@ -117052,183 +118302,9 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,16.5 parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25483 - components: - - type: Transform - pos: -16.5,23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,15.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25488 - components: - - type: Transform - pos: -6.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25519 - components: - - type: Transform - pos: 9.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25622 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25755 - components: - - type: Transform - pos: -10.5,27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25761 - components: - - type: Transform - pos: 1.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25803 - components: - - type: Transform - pos: 15.5,38.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25805 - components: - - type: Transform - pos: 8.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,32.5 - parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23898 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25859 @@ -117253,6 +118329,245 @@ entities: - 25225 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 26146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,22.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23898 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,27.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26160 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,33.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26160 + - 26234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,28.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,32.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,32.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26206 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26257 + components: + - type: Transform + pos: -15.5,38.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26206 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26259 + components: + - type: Transform + pos: -10.5,37.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26206 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,33.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26491 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,37.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26206 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,45.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26340 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,50.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26340 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,44.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26355 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,41.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26430 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,47.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26430 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,53.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26442 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,53.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26442 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,48.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26430 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,27.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26480 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26467 + components: + - type: Transform + pos: 9.5,20.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26469 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,26.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26479 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26496 + components: + - type: Transform + pos: 11.5,29.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26479 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26691 components: - type: Transform @@ -117365,6 +118680,28 @@ entities: - 26707 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,14.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27934 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,21.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27934 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 27879 components: - type: Transform @@ -117376,17 +118713,6 @@ entities: - 27150 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,34.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 24766 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 27941 components: - type: Transform @@ -117451,6 +118777,38 @@ entities: - 22659 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 28085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,16.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28095 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28091 + components: + - type: Transform + pos: -15.5,20.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28095 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,28.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 28205 components: - type: Transform @@ -117483,6 +118841,124 @@ entities: - 28227 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 28245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,29.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,23.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28351 + components: + - type: Transform + pos: -22.5,23.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,25.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,36.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28479 + components: + - type: Transform + pos: -30.5,38.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28483 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28480 + components: + - type: Transform + pos: -26.5,41.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28483 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,36.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28483 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28633 + components: + - type: Transform + pos: -13.5,46.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26323 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,41.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26323 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPumpFreezer + entities: + - uid: 25261 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26712 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 279 @@ -117612,35 +119088,6 @@ entities: - 22703 - type: AtmosPipeColor color: '#990000FF' - - uid: 7284 - components: - - type: Transform - pos: -7.5,44.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7294 - components: - - type: Transform - pos: -13.5,47.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7295 - components: - - type: Transform - pos: -18.5,44.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7301 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,50.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8142 components: - type: Transform @@ -117651,20 +119098,15 @@ entities: - 22703 - type: AtmosPipeColor color: '#990000FF' - - uid: 8953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9185 + - uid: 9375 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,50.5 + pos: 9.5,24.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26479 - type: AtmosPipeColor color: '#990000FF' - uid: 14117 @@ -117827,18 +119269,6 @@ entities: - 4328 - type: AtmosPipeColor color: '#990000FF' - - uid: 21996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,16.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 2468 - - 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22003 components: - type: Transform @@ -118398,13 +119828,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24520 - components: - - type: Transform - pos: 36.5,-1.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24524 components: - type: Transform @@ -118907,6 +120330,9 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,14.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23898 - type: AtmosPipeColor color: '#990000FF' - uid: 25423 @@ -118917,37 +120343,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,15.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25482 - components: - - type: Transform - pos: -17.5,23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25506 components: - type: Transform @@ -118958,164 +120353,6 @@ entities: - 22721 - type: AtmosPipeColor color: '#990000FF' - - uid: 25516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25624 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25625 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25626 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25760 - components: - - type: Transform - pos: 2.5,36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25801 - components: - - type: Transform - pos: 7.5,37.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,38.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25986 components: - type: Transform @@ -119148,6 +120385,199 @@ entities: - 25225 - type: AtmosPipeColor color: '#990000FF' + - uid: 26152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,24.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23898 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26181 + components: + - type: Transform + pos: -3.5,27.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26160 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,31.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26160 + - 26234 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26232 + components: + - type: Transform + pos: -12.5,28.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26234 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26246 + components: + - type: Transform + pos: -4.5,32.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26234 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,41.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26206 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,52.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26340 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,51.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26340 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26351 + components: + - type: Transform + pos: -0.5,50.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26355 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26407 + components: + - type: Transform + pos: 8.5,50.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26430 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,44.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26430 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,42.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26430 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,54.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26442 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,51.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26442 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26469 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26480 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26487 + components: + - type: Transform + pos: 7.5,30.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26491 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26479 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26674 components: - type: Transform @@ -119158,17 +120588,6 @@ entities: - 3656 - type: AtmosPipeColor color: '#990000FF' - - uid: 26931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,20.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 23938 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26974 components: - type: Transform @@ -119212,6 +120631,28 @@ entities: - 25225 - type: AtmosPipeColor color: '#990000FF' + - uid: 27729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,14.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27934 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,21.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27934 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27875 components: - type: Transform @@ -119289,6 +120730,27 @@ entities: - 22659 - type: AtmosPipeColor color: '#990000FF' + - uid: 28078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,16.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28095 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28079 + components: + - type: Transform + pos: -13.5,20.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28095 + - type: AtmosPipeColor + color: '#990000FF' - uid: 28222 components: - type: Transform @@ -119320,6 +120782,168 @@ entities: - 28227 - type: AtmosPipeColor color: '#990000FF' + - uid: 28330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,23.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,23.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,25.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28333 + components: + - type: Transform + pos: -18.5,24.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28443 + components: + - type: Transform + pos: -19.5,36.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,31.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28335 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,33.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28483 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,41.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28483 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,36.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28483 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,32.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26206 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28496 + components: + - type: Transform + pos: -16.5,38.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26206 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,44.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28483 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,41.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26323 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28632 + components: + - type: Transform + pos: -10.5,46.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26323 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVentScrubberFreezer + entities: + - uid: 26855 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26712 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVolumePump entities: - uid: 4204 @@ -119352,6 +120976,21 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' + - uid: 26095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-78.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26124 + components: + - type: Transform + pos: 19.5,-78.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GeigerCounter entities: - uid: 26819 @@ -119420,6 +121059,21 @@ entities: parent: 8364 - proto: Grille entities: + - uid: 38 + components: + - type: Transform + pos: -6.5,26.5 + parent: 8364 + - uid: 59 + components: + - type: Transform + pos: -28.5,44.5 + parent: 8364 + - uid: 62 + components: + - type: Transform + pos: -26.5,46.5 + parent: 8364 - uid: 95 components: - type: Transform @@ -119560,6 +121214,11 @@ entities: - type: Transform pos: -29.5,23.5 parent: 8364 + - uid: 339 + components: + - type: Transform + pos: -3.5,47.5 + parent: 8364 - uid: 340 components: - type: Transform @@ -119730,6 +121389,26 @@ entities: - type: Transform pos: -36.5,13.5 parent: 8364 + - uid: 534 + components: + - type: Transform + pos: -14.5,25.5 + parent: 8364 + - uid: 535 + components: + - type: Transform + pos: -4.5,35.5 + parent: 8364 + - uid: 536 + components: + - type: Transform + pos: -15.5,25.5 + parent: 8364 + - uid: 541 + components: + - type: Transform + pos: -17.5,36.5 + parent: 8364 - uid: 546 components: - type: Transform @@ -119788,13 +121467,11 @@ entities: - uid: 586 components: - type: Transform - rot: 1.5707963267948966 rad pos: -67.5,-2.5 parent: 8364 - uid: 602 components: - type: Transform - rot: 1.5707963267948966 rad pos: -68.5,7.5 parent: 8364 - uid: 627 @@ -119825,31 +121502,26 @@ entities: - uid: 641 components: - type: Transform - rot: 1.5707963267948966 rad pos: -74.5,7.5 parent: 8364 - uid: 643 components: - type: Transform - rot: 1.5707963267948966 rad pos: -75.5,-2.5 parent: 8364 - uid: 649 components: - type: Transform - rot: 1.5707963267948966 rad pos: -73.5,-2.5 parent: 8364 - uid: 656 components: - type: Transform - rot: 1.5707963267948966 rad pos: -68.5,-2.5 parent: 8364 - uid: 657 components: - type: Transform - rot: 1.5707963267948966 rad pos: -72.5,7.5 parent: 8364 - uid: 667 @@ -119860,13 +121532,11 @@ entities: - uid: 676 components: - type: Transform - rot: 1.5707963267948966 rad pos: -75.5,7.5 parent: 8364 - uid: 681 components: - type: Transform - rot: 1.5707963267948966 rad pos: -72.5,-2.5 parent: 8364 - uid: 690 @@ -119904,25 +121574,10 @@ entities: - type: Transform pos: -39.5,0.5 parent: 8364 - - uid: 772 - components: - - type: Transform - pos: -0.5,40.5 - parent: 8364 - uid: 773 components: - type: Transform - pos: 0.5,40.5 - parent: 8364 - - uid: 774 - components: - - type: Transform - pos: 1.5,40.5 - parent: 8364 - - uid: 775 - components: - - type: Transform - pos: 2.5,40.5 + pos: -16.5,28.5 parent: 8364 - uid: 825 components: @@ -120004,16 +121659,6 @@ entities: - type: Transform pos: 60.5,20.5 parent: 8364 - - uid: 1075 - components: - - type: Transform - pos: 19.5,37.5 - parent: 8364 - - uid: 1076 - components: - - type: Transform - pos: 18.5,37.5 - parent: 8364 - uid: 1158 components: - type: Transform @@ -120272,13 +121917,11 @@ entities: - uid: 1510 components: - type: Transform - rot: 1.5707963267948966 rad pos: -73.5,7.5 parent: 8364 - uid: 1511 components: - type: Transform - rot: 1.5707963267948966 rad pos: -74.5,-2.5 parent: 8364 - uid: 1523 @@ -120434,7 +122077,6 @@ entities: - uid: 1676 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,-82.5 parent: 8364 - uid: 1679 @@ -120670,13 +122312,11 @@ entities: - uid: 2325 components: - type: Transform - rot: 1.5707963267948966 rad pos: 72.5,-42.5 parent: 8364 - uid: 2326 components: - type: Transform - rot: 1.5707963267948966 rad pos: 71.5,-42.5 parent: 8364 - uid: 2342 @@ -121962,7 +123602,6 @@ entities: - uid: 3995 components: - type: Transform - rot: 1.5707963267948966 rad pos: 23.5,-45.5 parent: 8364 - uid: 4001 @@ -121973,7 +123612,6 @@ entities: - uid: 4045 components: - type: Transform - rot: 3.141592653589793 rad pos: 22.5,-82.5 parent: 8364 - uid: 4064 @@ -122114,103 +123752,86 @@ entities: - uid: 4135 components: - type: Transform - rot: 3.141592653589793 rad pos: 20.5,-82.5 parent: 8364 - uid: 4234 components: - type: Transform - rot: 3.141592653589793 rad pos: 14.5,-82.5 parent: 8364 - uid: 4235 components: - type: Transform - rot: 1.5707963267948966 rad pos: 36.5,-94.5 parent: 8364 - uid: 4236 components: - type: Transform - rot: 1.5707963267948966 rad pos: 36.5,-93.5 parent: 8364 - uid: 4237 components: - type: Transform - rot: 1.5707963267948966 rad pos: 36.5,-92.5 parent: 8364 - uid: 4238 components: - type: Transform - rot: 1.5707963267948966 rad pos: 34.5,-92.5 parent: 8364 - uid: 4239 components: - type: Transform - rot: 1.5707963267948966 rad pos: 33.5,-92.5 parent: 8364 - uid: 4240 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,-92.5 parent: 8364 - uid: 4241 components: - type: Transform - rot: 3.141592653589793 rad pos: 23.5,-82.5 parent: 8364 - uid: 4247 components: - type: Transform - rot: 1.5707963267948966 rad pos: 31.5,-92.5 parent: 8364 - uid: 4263 components: - type: Transform - rot: 1.5707963267948966 rad pos: 25.5,-92.5 parent: 8364 - uid: 4266 components: - type: Transform - rot: 1.5707963267948966 rad pos: 30.5,-92.5 parent: 8364 - uid: 4267 components: - type: Transform - rot: 1.5707963267948966 rad pos: 35.5,-92.5 parent: 8364 - uid: 4268 components: - type: Transform - rot: 1.5707963267948966 rad pos: 24.5,-92.5 parent: 8364 - uid: 4270 components: - type: Transform - rot: 1.5707963267948966 rad pos: 29.5,-92.5 parent: 8364 - uid: 4356 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,-82.5 parent: 8364 - uid: 4379 components: - type: Transform - rot: 3.141592653589793 rad pos: 18.5,-86.5 parent: 8364 - uid: 4380 @@ -122221,73 +123842,61 @@ entities: - uid: 4394 components: - type: Transform - rot: 1.5707963267948966 rad pos: 28.5,-92.5 parent: 8364 - uid: 4395 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,-92.5 parent: 8364 - uid: 4396 components: - type: Transform - rot: 1.5707963267948966 rad pos: 26.5,-92.5 parent: 8364 - uid: 4397 components: - type: Transform - rot: 1.5707963267948966 rad pos: 23.5,-92.5 parent: 8364 - uid: 4398 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,-93.5 parent: 8364 - uid: 4399 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,-92.5 parent: 8364 - uid: 4400 components: - type: Transform - rot: 1.5707963267948966 rad pos: 22.5,-92.5 parent: 8364 - uid: 4405 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,-85.5 parent: 8364 - uid: 4407 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,-85.5 parent: 8364 - uid: 4410 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,-84.5 parent: 8364 - uid: 4425 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,-92.5 parent: 8364 - uid: 4456 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-84.5 parent: 8364 - uid: 4475 @@ -122295,22 +123904,24 @@ entities: - type: Transform pos: 27.5,-81.5 parent: 8364 + - uid: 4494 + components: + - type: Transform + pos: -17.5,46.5 + parent: 8364 - uid: 4497 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-74.5 parent: 8364 - uid: 4500 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-69.5 parent: 8364 - uid: 4503 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-73.5 parent: 8364 - uid: 4511 @@ -122508,6 +124119,11 @@ entities: - type: Transform pos: -5.5,-100.5 parent: 8364 + - uid: 4711 + components: + - type: Transform + pos: 6.5,53.5 + parent: 8364 - uid: 4750 components: - type: Transform @@ -123008,50 +124624,9 @@ entities: - type: Transform pos: 1.5,-79.5 parent: 8364 - - uid: 4945 - components: - - type: Transform - pos: -1.5,41.5 - parent: 8364 - - uid: 4946 - components: - - type: Transform - pos: 0.5,41.5 - parent: 8364 - - uid: 4947 - components: - - type: Transform - pos: 2.5,42.5 - parent: 8364 - - uid: 4948 - components: - - type: Transform - pos: 1.5,42.5 - parent: 8364 - - uid: 4950 - components: - - type: Transform - pos: -0.5,42.5 - parent: 8364 - - uid: 4951 - components: - - type: Transform - pos: 3.5,41.5 - parent: 8364 - - uid: 4957 - components: - - type: Transform - pos: 21.5,42.5 - parent: 8364 - - uid: 4958 - components: - - type: Transform - pos: 20.5,34.5 - parent: 8364 - uid: 4961 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-83.5 parent: 8364 - uid: 5000 @@ -123299,15 +124874,10 @@ entities: - type: Transform pos: 41.5,26.5 parent: 8364 - - uid: 5077 - components: - - type: Transform - pos: -5.5,40.5 - parent: 8364 - uid: 5088 components: - type: Transform - pos: -9.5,33.5 + pos: 0.5,53.5 parent: 8364 - uid: 5124 components: @@ -123567,7 +125137,6 @@ entities: - uid: 5271 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,-82.5 parent: 8364 - uid: 5275 @@ -123610,16 +125179,36 @@ entities: - type: Transform pos: 29.5,-22.5 parent: 8364 - - uid: 5606 + - uid: 5438 components: - type: Transform - pos: 2.5,41.5 + pos: 12.5,42.5 + parent: 8364 + - uid: 5460 + components: + - type: Transform + pos: -12.5,16.5 + parent: 8364 + - uid: 5617 + components: + - type: Transform + pos: -7.5,50.5 parent: 8364 - uid: 5709 components: - type: Transform pos: 5.5,-26.5 parent: 8364 + - uid: 5713 + components: + - type: Transform + pos: 12.5,41.5 + parent: 8364 + - uid: 5719 + components: + - type: Transform + pos: 16.5,52.5 + parent: 8364 - uid: 5738 components: - type: Transform @@ -123635,11 +125224,6 @@ entities: - type: Transform pos: -0.5,-79.5 parent: 8364 - - uid: 5791 - components: - - type: Transform - pos: -0.5,41.5 - parent: 8364 - uid: 5913 components: - type: Transform @@ -123655,11 +125239,6 @@ entities: - type: Transform pos: -6.5,-93.5 parent: 8364 - - uid: 6253 - components: - - type: Transform - pos: 1.5,41.5 - parent: 8364 - uid: 6305 components: - type: Transform @@ -123670,6 +125249,11 @@ entities: - type: Transform pos: 2.5,-93.5 parent: 8364 + - uid: 6405 + components: + - type: Transform + pos: 12.5,44.5 + parent: 8364 - uid: 6771 components: - type: Transform @@ -123690,96 +125274,35 @@ entities: - type: Transform pos: -33.5,-38.5 parent: 8364 - - uid: 7281 + - uid: 7285 components: - type: Transform - pos: -18.5,39.5 + pos: -7.5,52.5 parent: 8364 - - uid: 7287 + - uid: 7289 components: - type: Transform - pos: -16.5,36.5 + pos: -17.5,45.5 parent: 8364 - - uid: 7288 + - uid: 7291 components: - type: Transform - pos: -16.5,34.5 + pos: 6.5,36.5 parent: 8364 - - uid: 7292 + - uid: 7333 components: - type: Transform - pos: -16.5,35.5 + pos: 16.5,46.5 parent: 8364 - - uid: 7300 + - uid: 7351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,44.5 + pos: -16.5,45.5 parent: 8364 - - uid: 7326 + - uid: 7356 components: - type: Transform - pos: -0.5,46.5 - parent: 8364 - - uid: 7327 - components: - - type: Transform - pos: 0.5,46.5 - parent: 8364 - - uid: 7328 - components: - - type: Transform - pos: 1.5,46.5 - parent: 8364 - - uid: 7329 - components: - - type: Transform - pos: 2.5,46.5 - parent: 8364 - - uid: 7330 - components: - - type: Transform - pos: 3.5,46.5 - parent: 8364 - - uid: 7358 - components: - - type: Transform - pos: -22.5,19.5 - parent: 8364 - - uid: 7359 - components: - - type: Transform - pos: -22.5,21.5 - parent: 8364 - - uid: 7360 - components: - - type: Transform - pos: -21.5,21.5 - parent: 8364 - - uid: 7362 - components: - - type: Transform - pos: -20.5,23.5 - parent: 8364 - - uid: 7363 - components: - - type: Transform - pos: -21.5,23.5 - parent: 8364 - - uid: 7364 - components: - - type: Transform - pos: -22.5,23.5 - parent: 8364 - - uid: 7365 - components: - - type: Transform - pos: -22.5,25.5 - parent: 8364 - - uid: 7366 - components: - - type: Transform - pos: -20.5,25.5 + pos: 2.5,50.5 parent: 8364 - uid: 7402 components: @@ -123796,6 +125319,11 @@ entities: - type: Transform pos: 38.5,17.5 parent: 8364 + - uid: 7405 + components: + - type: Transform + pos: -17.5,41.5 + parent: 8364 - uid: 7419 components: - type: Transform @@ -123821,6 +125349,16 @@ entities: - type: Transform pos: 18.5,9.5 parent: 8364 + - uid: 7451 + components: + - type: Transform + pos: -16.5,42.5 + parent: 8364 + - uid: 7452 + components: + - type: Transform + pos: -16.5,44.5 + parent: 8364 - uid: 7453 components: - type: Transform @@ -123936,6 +125474,11 @@ entities: - type: Transform pos: 28.5,8.5 parent: 8364 + - uid: 7478 + components: + - type: Transform + pos: -15.5,42.5 + parent: 8364 - uid: 7483 components: - type: Transform @@ -123966,290 +125509,130 @@ entities: - type: Transform pos: 28.5,17.5 parent: 8364 - - uid: 7589 + - uid: 7615 components: - type: Transform - pos: -9.5,37.5 + pos: 12.5,43.5 parent: 8364 - - uid: 7691 + - uid: 7623 components: - type: Transform - pos: 11.5,37.5 + pos: 17.5,46.5 parent: 8364 - - uid: 7695 + - uid: 7625 components: - type: Transform - pos: 7.5,42.5 + pos: 17.5,52.5 parent: 8364 - - uid: 7696 + - uid: 7630 components: - type: Transform - pos: 9.5,42.5 + pos: -15.5,46.5 parent: 8364 - - uid: 7698 + - uid: 7632 components: - type: Transform - pos: 15.5,42.5 + pos: 8.5,46.5 parent: 8364 - - uid: 7699 + - uid: 7671 components: - type: Transform - pos: 13.5,42.5 - parent: 8364 - - uid: 7700 - components: - - type: Transform - pos: 14.5,42.5 - parent: 8364 - - uid: 7708 - components: - - type: Transform - pos: 16.5,36.5 - parent: 8364 - - uid: 7711 - components: - - type: Transform - pos: 11.5,38.5 - parent: 8364 - - uid: 7712 - components: - - type: Transform - pos: 12.5,36.5 - parent: 8364 - - uid: 7713 - components: - - type: Transform - pos: 9.5,34.5 + pos: -13.5,18.5 parent: 8364 - uid: 7714 components: - type: Transform - pos: 7.5,34.5 + pos: -16.5,43.5 parent: 8364 - - uid: 7715 + - uid: 7721 components: - type: Transform - pos: 6.5,34.5 + pos: 1.5,46.5 parent: 8364 - - uid: 7717 + - uid: 7726 components: - type: Transform - pos: -3.5,30.5 + pos: 12.5,22.5 parent: 8364 - - uid: 7718 + - uid: 7741 components: - type: Transform - pos: -3.5,32.5 - parent: 8364 - - uid: 7719 - components: - - type: Transform - pos: 0.5,34.5 - parent: 8364 - - uid: 7720 - components: - - type: Transform - pos: -0.5,34.5 - parent: 8364 - - uid: 7722 - components: - - type: Transform - pos: 5.5,32.5 - parent: 8364 - - uid: 7723 - components: - - type: Transform - pos: 5.5,30.5 + pos: -20.5,39.5 parent: 8364 - uid: 7758 components: - type: Transform - pos: 12.5,23.5 + pos: -6.5,28.5 parent: 8364 - - uid: 7759 + - uid: 7760 components: - type: Transform - pos: 13.5,23.5 + pos: -11.5,31.5 parent: 8364 - - uid: 7763 + - uid: 7762 components: - type: Transform - pos: 17.5,23.5 - parent: 8364 - - uid: 7764 - components: - - type: Transform - pos: 18.5,23.5 - parent: 8364 - - uid: 7765 - components: - - type: Transform - pos: 3.5,29.5 - parent: 8364 - - uid: 7766 - components: - - type: Transform - pos: 0.5,29.5 - parent: 8364 - - uid: 7767 - components: - - type: Transform - pos: 1.5,29.5 - parent: 8364 - - uid: 7769 - components: - - type: Transform - pos: -2.5,29.5 - parent: 8364 - - uid: 7771 - components: - - type: Transform - pos: -8.5,25.5 + pos: -10.5,32.5 parent: 8364 - uid: 7772 components: - type: Transform - pos: -6.5,25.5 + pos: 1.5,26.5 parent: 8364 - - uid: 7773 + - uid: 7783 components: - type: Transform - pos: -4.5,25.5 + pos: -15.5,18.5 parent: 8364 - - uid: 7774 + - uid: 7807 components: - type: Transform - pos: -2.5,25.5 + pos: 15.5,46.5 parent: 8364 - - uid: 7775 + - uid: 7809 components: - type: Transform - pos: -0.5,25.5 + pos: 14.5,52.5 parent: 8364 - - uid: 7776 + - uid: 7816 components: - type: Transform - pos: 2.5,25.5 + pos: -16.5,36.5 parent: 8364 - - uid: 7777 + - uid: 7840 components: - type: Transform - pos: 5.5,25.5 - parent: 8364 - - uid: 7778 - components: - - type: Transform - pos: 8.5,25.5 - parent: 8364 - - uid: 7788 - components: - - type: Transform - pos: -10.5,25.5 + pos: -17.5,42.5 parent: 8364 - uid: 7854 components: - type: Transform pos: -2.5,6.5 parent: 8364 - - uid: 7855 - components: - - type: Transform - pos: 3.5,22.5 - parent: 8364 - - uid: 7856 - components: - - type: Transform - pos: -2.5,14.5 - parent: 8364 - - uid: 7857 - components: - - type: Transform - pos: -2.5,15.5 - parent: 8364 - - uid: 7858 - components: - - type: Transform - pos: -2.5,16.5 - parent: 8364 - - uid: 7859 - components: - - type: Transform - pos: -5.5,18.5 - parent: 8364 - - uid: 7860 - components: - - type: Transform - pos: -10.5,18.5 - parent: 8364 - - uid: 7861 - components: - - type: Transform - pos: -11.5,18.5 - parent: 8364 - - uid: 7862 - components: - - type: Transform - pos: -10.5,22.5 - parent: 8364 - - uid: 7863 - components: - - type: Transform - pos: -9.5,22.5 - parent: 8364 - - uid: 7864 - components: - - type: Transform - pos: -8.5,22.5 - parent: 8364 - - uid: 7865 - components: - - type: Transform - pos: -6.5,22.5 - parent: 8364 - - uid: 7866 - components: - - type: Transform - pos: -5.5,22.5 - parent: 8364 - - uid: 7868 - components: - - type: Transform - pos: -4.5,22.5 - parent: 8364 - - uid: 7869 - components: - - type: Transform - pos: -1.5,22.5 - parent: 8364 - - uid: 7870 - components: - - type: Transform - pos: -0.5,22.5 - parent: 8364 - uid: 7871 components: - type: Transform pos: -2.5,7.5 parent: 8364 - - uid: 7872 + - uid: 7883 components: - type: Transform - pos: 5.5,22.5 + pos: 4.5,35.5 parent: 8364 - - uid: 7874 + - uid: 7899 components: - type: Transform - pos: 11.5,21.5 + pos: -22.5,43.5 parent: 8364 - - uid: 7892 + - uid: 7913 components: - type: Transform - pos: 11.5,19.5 + pos: -11.5,34.5 parent: 8364 - - uid: 7898 + - uid: 7927 components: - type: Transform - pos: -2.5,22.5 + pos: -17.5,44.5 parent: 8364 - uid: 7950 components: @@ -124339,13 +125722,11 @@ entities: - uid: 8117 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-68.5 parent: 8364 - uid: 8121 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-72.5 parent: 8364 - uid: 8144 @@ -124578,203 +125959,1120 @@ entities: - type: Transform pos: 3.5,1.5 parent: 8364 - - uid: 8410 + - uid: 8387 components: - type: Transform - pos: 15.5,23.5 + pos: -14.5,18.5 parent: 8364 - - uid: 8490 + - uid: 8403 components: - type: Transform - pos: 11.5,40.5 + pos: -17.5,43.5 + parent: 8364 + - uid: 8407 + components: + - type: Transform + pos: -15.5,45.5 + parent: 8364 + - uid: 8419 + components: + - type: Transform + pos: -15.5,44.5 + parent: 8364 + - uid: 8426 + components: + - type: Transform + pos: -15.5,36.5 + parent: 8364 + - uid: 8427 + components: + - type: Transform + pos: -7.5,41.5 + parent: 8364 + - uid: 8430 + components: + - type: Transform + pos: 4.5,39.5 + parent: 8364 + - uid: 8431 + components: + - type: Transform + pos: 2.5,39.5 + parent: 8364 + - uid: 8442 + components: + - type: Transform + pos: 15.5,52.5 + parent: 8364 + - uid: 8482 + components: + - type: Transform + pos: 10.5,22.5 + parent: 8364 + - uid: 8537 + components: + - type: Transform + pos: -15.5,41.5 + parent: 8364 + - uid: 8539 + components: + - type: Transform + pos: -16.5,47.5 parent: 8364 - uid: 8542 components: - type: Transform pos: -6.5,-78.5 parent: 8364 - - uid: 8614 + - uid: 8564 components: - type: Transform - pos: -11.5,54.5 + pos: 6.5,54.5 parent: 8364 - - uid: 8755 + - uid: 8580 components: - type: Transform - pos: 25.5,46.5 + pos: -16.5,40.5 parent: 8364 - - uid: 8758 + - uid: 8583 components: - type: Transform - pos: -6.5,38.5 + pos: -16.5,41.5 parent: 8364 - - uid: 8776 + - uid: 8589 components: - type: Transform - pos: -15.5,54.5 + pos: 4.5,50.5 parent: 8364 - - uid: 8786 + - uid: 8619 components: - type: Transform - pos: -12.5,30.5 + pos: -16.5,46.5 parent: 8364 - - uid: 8788 + - uid: 8626 components: - type: Transform - pos: -12.5,31.5 + pos: -10.5,43.5 parent: 8364 - - uid: 8792 + - uid: 8627 components: - type: Transform - pos: -12.5,32.5 + pos: -9.5,41.5 + parent: 8364 + - uid: 8631 + components: + - type: Transform + pos: 14.5,46.5 + parent: 8364 + - uid: 8640 + components: + - type: Transform + pos: 6.5,55.5 + parent: 8364 + - uid: 8645 + components: + - type: Transform + pos: -12.5,43.5 + parent: 8364 + - uid: 8681 + components: + - type: Transform + pos: -24.5,46.5 + parent: 8364 + - uid: 8682 + components: + - type: Transform + pos: -22.5,41.5 + parent: 8364 + - uid: 8691 + components: + - type: Transform + pos: 1.5,47.5 + parent: 8364 + - uid: 8693 + components: + - type: Transform + pos: -2.5,14.5 + parent: 8364 + - uid: 8695 + components: + - type: Transform + pos: -13.5,25.5 + parent: 8364 + - uid: 8709 + components: + - type: Transform + pos: -2.5,21.5 + parent: 8364 + - uid: 8719 + components: + - type: Transform + pos: -27.5,46.5 + parent: 8364 + - uid: 8722 + components: + - type: Transform + pos: 1.5,27.5 + parent: 8364 + - uid: 8746 + components: + - type: Transform + pos: -3.5,45.5 + parent: 8364 + - uid: 8747 + components: + - type: Transform + pos: -3.5,46.5 + parent: 8364 + - uid: 8748 + components: + - type: Transform + pos: 0.5,40.5 + parent: 8364 + - uid: 8751 + components: + - type: Transform + pos: 1.5,45.5 + parent: 8364 + - uid: 8772 + components: + - type: Transform + pos: -23.5,46.5 + parent: 8364 + - uid: 8773 + components: + - type: Transform + pos: -33.5,35.5 + parent: 8364 + - uid: 8787 + components: + - type: Transform + pos: 0.5,55.5 + parent: 8364 + - uid: 8803 + components: + - type: Transform + pos: 7.5,46.5 parent: 8364 - uid: 8808 components: - type: Transform pos: -1.5,-79.5 parent: 8364 - - uid: 8976 + - uid: 8817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,43.5 + pos: -2.5,16.5 parent: 8364 - - uid: 8981 + - uid: 8838 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,45.5 + pos: -22.5,42.5 parent: 8364 - - uid: 8982 + - uid: 8853 components: - type: Transform - pos: -21.5,39.5 + pos: -7.5,30.5 parent: 8364 - - uid: 8996 + - uid: 8891 components: - type: Transform - pos: -2.5,46.5 + pos: -33.5,36.5 parent: 8364 - - uid: 8999 + - uid: 8902 components: - type: Transform - pos: -1.5,46.5 + pos: -22.5,44.5 parent: 8364 - - uid: 9072 + - uid: 8922 components: - type: Transform - pos: 4.5,46.5 + pos: -0.5,34.5 parent: 8364 - - uid: 9091 + - uid: 8937 components: - type: Transform - pos: -15.5,37.5 + pos: -0.5,30.5 parent: 8364 - - uid: 9092 + - uid: 9057 components: - type: Transform - pos: -15.5,39.5 + pos: 29.5,46.5 parent: 8364 - - uid: 9093 + - uid: 9162 components: - type: Transform - pos: -14.5,37.5 + pos: -9.5,35.5 parent: 8364 - - uid: 9126 + - uid: 9163 components: - type: Transform - pos: -14.5,39.5 + pos: -8.5,35.5 parent: 8364 - - uid: 9127 + - uid: 9176 components: - type: Transform - pos: -13.5,37.5 + pos: 11.5,19.5 parent: 8364 - - uid: 9128 + - uid: 9177 components: - type: Transform - pos: -13.5,39.5 + pos: 11.5,20.5 parent: 8364 - - uid: 9169 + - uid: 9178 components: - type: Transform - pos: 5.5,45.5 + pos: 11.5,21.5 parent: 8364 - - uid: 9230 + - uid: 9180 components: - type: Transform - pos: -12.5,54.5 + pos: 13.5,21.5 parent: 8364 - - uid: 9332 + - uid: 9181 components: - type: Transform - pos: 21.5,40.5 + pos: 13.5,20.5 parent: 8364 - - uid: 9357 + - uid: 9182 components: - type: Transform - pos: -4.5,38.5 + pos: 13.5,19.5 parent: 8364 - - uid: 9396 + - uid: 9183 components: - type: Transform - pos: 21.5,41.5 + pos: 22.5,49.5 + parent: 8364 + - uid: 9184 + components: + - type: Transform + pos: 32.5,49.5 + parent: 8364 + - uid: 9185 + components: + - type: Transform + pos: 33.5,44.5 + parent: 8364 + - uid: 9194 + components: + - type: Transform + pos: -36.5,43.5 + parent: 8364 + - uid: 9305 + components: + - type: Transform + pos: 17.5,27.5 parent: 8364 - uid: 9403 components: - type: Transform - pos: -16.5,21.5 + pos: 25.5,29.5 + parent: 8364 + - uid: 9408 + components: + - type: Transform + pos: 23.5,23.5 + parent: 8364 + - uid: 9409 + components: + - type: Transform + pos: 22.5,21.5 parent: 8364 - uid: 9445 components: - type: Transform pos: 48.5,2.5 parent: 8364 + - uid: 9457 + components: + - type: Transform + pos: 33.5,46.5 + parent: 8364 + - uid: 9458 + components: + - type: Transform + pos: 33.5,47.5 + parent: 8364 + - uid: 9459 + components: + - type: Transform + pos: 33.5,48.5 + parent: 8364 + - uid: 9460 + components: + - type: Transform + pos: 31.5,45.5 + parent: 8364 + - uid: 9463 + components: + - type: Transform + pos: 31.5,49.5 + parent: 8364 + - uid: 9464 + components: + - type: Transform + pos: 30.5,45.5 + parent: 8364 - uid: 9466 components: - type: Transform - pos: -3.5,44.5 + pos: 29.5,49.5 + parent: 8364 + - uid: 9467 + components: + - type: Transform + pos: 28.5,49.5 parent: 8364 - uid: 9472 components: - type: Transform - pos: 25.5,42.5 + pos: 26.5,46.5 parent: 8364 - - uid: 9567 + - uid: 9475 components: - type: Transform - pos: -14.5,54.5 + pos: 26.5,49.5 parent: 8364 - - uid: 9569 + - uid: 9480 components: - type: Transform - pos: 25.5,41.5 + pos: 25.5,49.5 parent: 8364 - - uid: 9571 + - uid: 9481 components: - type: Transform - pos: 25.5,40.5 + pos: 22.5,46.5 parent: 8364 - - uid: 9781 + - uid: 9482 components: - type: Transform - pos: -18.5,21.5 + pos: 24.5,51.5 parent: 8364 - - uid: 10057 + - uid: 9483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,25.5 + pos: 24.5,52.5 parent: 8364 - - uid: 10082 + - uid: 9484 components: - type: Transform - pos: -1.5,29.5 + pos: 24.5,53.5 parent: 8364 - - uid: 10116 + - uid: 9485 components: - type: Transform - pos: -16.5,38.5 + pos: 20.5,46.5 + parent: 8364 + - uid: 9486 + components: + - type: Transform + pos: 24.5,55.5 + parent: 8364 + - uid: 9487 + components: + - type: Transform + pos: 24.5,56.5 + parent: 8364 + - uid: 9488 + components: + - type: Transform + pos: 6.5,57.5 + parent: 8364 + - uid: 9489 + components: + - type: Transform + pos: 23.5,56.5 + parent: 8364 + - uid: 9490 + components: + - type: Transform + pos: 24.5,46.5 + parent: 8364 + - uid: 9491 + components: + - type: Transform + pos: 21.5,56.5 + parent: 8364 + - uid: 9492 + components: + - type: Transform + pos: 21.5,58.5 + parent: 8364 + - uid: 9493 + components: + - type: Transform + pos: 21.5,51.5 + parent: 8364 + - uid: 9494 + components: + - type: Transform + pos: 20.5,59.5 + parent: 8364 + - uid: 9495 + components: + - type: Transform + pos: 22.5,59.5 + parent: 8364 + - uid: 9496 + components: + - type: Transform + pos: 18.5,60.5 + parent: 8364 + - uid: 9497 + components: + - type: Transform + pos: 17.5,60.5 + parent: 8364 + - uid: 9498 + components: + - type: Transform + pos: 16.5,60.5 + parent: 8364 + - uid: 9499 + components: + - type: Transform + pos: 15.5,60.5 + parent: 8364 + - uid: 9500 + components: + - type: Transform + pos: 14.5,60.5 + parent: 8364 + - uid: 9501 + components: + - type: Transform + pos: 12.5,60.5 + parent: 8364 + - uid: 9502 + components: + - type: Transform + pos: 11.5,60.5 + parent: 8364 + - uid: 9503 + components: + - type: Transform + pos: 10.5,60.5 + parent: 8364 + - uid: 9504 + components: + - type: Transform + pos: 26.5,39.5 + parent: 8364 + - uid: 9505 + components: + - type: Transform + pos: 8.5,60.5 + parent: 8364 + - uid: 9506 + components: + - type: Transform + pos: 7.5,60.5 + parent: 8364 + - uid: 9507 + components: + - type: Transform + pos: 27.5,32.5 + parent: 8364 + - uid: 9508 + components: + - type: Transform + pos: 6.5,60.5 + parent: 8364 + - uid: 9509 + components: + - type: Transform + pos: 28.5,39.5 + parent: 8364 + - uid: 9510 + components: + - type: Transform + pos: 4.5,60.5 + parent: 8364 + - uid: 9511 + components: + - type: Transform + pos: 27.5,39.5 + parent: 8364 + - uid: 9512 + components: + - type: Transform + pos: 2.5,60.5 + parent: 8364 + - uid: 9513 + components: + - type: Transform + pos: 1.5,60.5 + parent: 8364 + - uid: 9514 + components: + - type: Transform + pos: 25.5,39.5 + parent: 8364 + - uid: 9515 + components: + - type: Transform + pos: 8.5,58.5 + parent: 8364 + - uid: 9516 + components: + - type: Transform + pos: 8.5,57.5 + parent: 8364 + - uid: 9517 + components: + - type: Transform + pos: 22.5,36.5 + parent: 8364 + - uid: 9518 + components: + - type: Transform + pos: 10.5,57.5 + parent: 8364 + - uid: 9519 + components: + - type: Transform + pos: 11.5,56.5 + parent: 8364 + - uid: 9520 + components: + - type: Transform + pos: 12.5,56.5 + parent: 8364 + - uid: 9521 + components: + - type: Transform + pos: 13.5,56.5 + parent: 8364 + - uid: 9522 + components: + - type: Transform + pos: 21.5,36.5 + parent: 8364 + - uid: 9523 + components: + - type: Transform + pos: 15.5,56.5 + parent: 8364 + - uid: 9524 + components: + - type: Transform + pos: 16.5,56.5 + parent: 8364 + - uid: 9525 + components: + - type: Transform + pos: 20.5,36.5 + parent: 8364 + - uid: 9526 + components: + - type: Transform + pos: 13.5,58.5 + parent: 8364 + - uid: 9527 + components: + - type: Transform + pos: 9.5,56.5 + parent: 8364 + - uid: 9528 + components: + - type: Transform + pos: 18.5,56.5 + parent: 8364 + - uid: 9529 + components: + - type: Transform + pos: 27.5,33.5 + parent: 8364 + - uid: 9530 + components: + - type: Transform + pos: 20.5,56.5 + parent: 8364 + - uid: 9531 + components: + - type: Transform + pos: 5.5,57.5 + parent: 8364 + - uid: 9532 + components: + - type: Transform + pos: 3.5,57.5 + parent: 8364 + - uid: 9533 + components: + - type: Transform + pos: 2.5,57.5 + parent: 8364 + - uid: 9534 + components: + - type: Transform + pos: 0.5,57.5 + parent: 8364 + - uid: 9535 + components: + - type: Transform + pos: -1.5,57.5 + parent: 8364 + - uid: 9537 + components: + - type: Transform + pos: -2.5,57.5 + parent: 8364 + - uid: 9538 + components: + - type: Transform + pos: -2.5,58.5 + parent: 8364 + - uid: 9539 + components: + - type: Transform + pos: 0.5,60.5 + parent: 8364 + - uid: 9540 + components: + - type: Transform + pos: 24.5,39.5 + parent: 8364 + - uid: 9542 + components: + - type: Transform + pos: 27.5,34.5 + parent: 8364 + - uid: 9543 + components: + - type: Transform + pos: 30.5,42.5 + parent: 8364 + - uid: 9544 + components: + - type: Transform + pos: 27.5,36.5 + parent: 8364 + - uid: 9545 + components: + - type: Transform + pos: 27.5,35.5 + parent: 8364 + - uid: 9546 + components: + - type: Transform + pos: 28.5,36.5 + parent: 8364 + - uid: 9547 + components: + - type: Transform + pos: 26.5,36.5 + parent: 8364 + - uid: 9548 + components: + - type: Transform + pos: 29.5,36.5 + parent: 8364 + - uid: 9549 + components: + - type: Transform + pos: 30.5,36.5 + parent: 8364 + - uid: 9550 + components: + - type: Transform + pos: 33.5,36.5 + parent: 8364 + - uid: 9551 + components: + - type: Transform + pos: 30.5,40.5 + parent: 8364 + - uid: 9552 + components: + - type: Transform + pos: 30.5,39.5 + parent: 8364 + - uid: 9553 + components: + - type: Transform + pos: 30.5,43.5 + parent: 8364 + - uid: 9568 + components: + - type: Transform + pos: 19.5,30.5 + parent: 8364 + - uid: 9598 + components: + - type: Transform + pos: 18.5,30.5 + parent: 8364 + - uid: 9599 + components: + - type: Transform + pos: 20.5,30.5 + parent: 8364 + - uid: 9602 + components: + - type: Transform + pos: 18.5,32.5 + parent: 8364 + - uid: 9605 + components: + - type: Transform + pos: 17.5,32.5 + parent: 8364 + - uid: 9606 + components: + - type: Transform + pos: 17.5,33.5 + parent: 8364 + - uid: 9607 + components: + - type: Transform + pos: 16.5,37.5 + parent: 8364 + - uid: 9608 + components: + - type: Transform + pos: -22.5,49.5 + parent: 8364 + - uid: 9609 + components: + - type: Transform + pos: -23.5,49.5 + parent: 8364 + - uid: 9610 + components: + - type: Transform + pos: -24.5,49.5 + parent: 8364 + - uid: 9611 + components: + - type: Transform + pos: -18.5,49.5 + parent: 8364 + - uid: 9612 + components: + - type: Transform + pos: -26.5,49.5 + parent: 8364 + - uid: 9614 + components: + - type: Transform + pos: -27.5,49.5 + parent: 8364 + - uid: 9615 + components: + - type: Transform + pos: -28.5,49.5 + parent: 8364 + - uid: 9616 + components: + - type: Transform + pos: -29.5,49.5 + parent: 8364 + - uid: 9617 + components: + - type: Transform + pos: -30.5,49.5 + parent: 8364 + - uid: 9618 + components: + - type: Transform + pos: -30.5,48.5 + parent: 8364 + - uid: 9621 + components: + - type: Transform + pos: -31.5,48.5 + parent: 8364 + - uid: 9625 + components: + - type: Transform + pos: -32.5,47.5 + parent: 8364 + - uid: 9626 + components: + - type: Transform + pos: -32.5,46.5 + parent: 8364 + - uid: 9627 + components: + - type: Transform + pos: -33.5,46.5 + parent: 8364 + - uid: 9628 + components: + - type: Transform + pos: -33.5,45.5 + parent: 8364 + - uid: 9630 + components: + - type: Transform + pos: -34.5,45.5 + parent: 8364 + - uid: 9631 + components: + - type: Transform + pos: -34.5,44.5 + parent: 8364 + - uid: 9632 + components: + - type: Transform + pos: -35.5,44.5 + parent: 8364 + - uid: 9634 + components: + - type: Transform + pos: -36.5,42.5 + parent: 8364 + - uid: 9635 + components: + - type: Transform + pos: -36.5,41.5 + parent: 8364 + - uid: 9637 + components: + - type: Transform + pos: -36.5,40.5 + parent: 8364 + - uid: 9638 + components: + - type: Transform + pos: -36.5,39.5 + parent: 8364 + - uid: 9639 + components: + - type: Transform + pos: -36.5,38.5 + parent: 8364 + - uid: 9641 + components: + - type: Transform + pos: -36.5,35.5 + parent: 8364 + - uid: 9642 + components: + - type: Transform + pos: -36.5,34.5 + parent: 8364 + - uid: 9643 + components: + - type: Transform + pos: -36.5,33.5 + parent: 8364 + - uid: 9645 + components: + - type: Transform + pos: -36.5,36.5 + parent: 8364 + - uid: 9646 + components: + - type: Transform + pos: -35.5,33.5 + parent: 8364 + - uid: 9648 + components: + - type: Transform + pos: -34.5,32.5 + parent: 8364 + - uid: 9649 + components: + - type: Transform + pos: -34.5,31.5 + parent: 8364 + - uid: 9651 + components: + - type: Transform + pos: -33.5,31.5 + parent: 8364 + - uid: 9654 + components: + - type: Transform + pos: -32.5,30.5 + parent: 8364 + - uid: 9655 + components: + - type: Transform + pos: -31.5,30.5 + parent: 8364 + - uid: 9659 + components: + - type: Transform + pos: -30.5,29.5 + parent: 8364 + - uid: 9660 + components: + - type: Transform + pos: -30.5,28.5 + parent: 8364 + - uid: 9661 + components: + - type: Transform + pos: -29.5,28.5 + parent: 8364 + - uid: 9662 + components: + - type: Transform + pos: -29.5,27.5 + parent: 8364 + - uid: 9664 + components: + - type: Transform + pos: -27.5,27.5 + parent: 8364 + - uid: 9667 + components: + - type: Transform + pos: -27.5,26.5 + parent: 8364 + - uid: 9668 + components: + - type: Transform + pos: -26.5,26.5 + parent: 8364 + - uid: 9669 + components: + - type: Transform + pos: -27.5,25.5 + parent: 8364 + - uid: 9670 + components: + - type: Transform + pos: -27.5,24.5 + parent: 8364 + - uid: 9672 + components: + - type: Transform + pos: -27.5,22.5 + parent: 8364 + - uid: 9673 + components: + - type: Transform + pos: -27.5,21.5 + parent: 8364 + - uid: 9674 + components: + - type: Transform + pos: -27.5,20.5 + parent: 8364 + - uid: 9684 + components: + - type: Transform + pos: -27.5,18.5 + parent: 8364 + - uid: 9685 + components: + - type: Transform + pos: -26.5,18.5 + parent: 8364 + - uid: 9686 + components: + - type: Transform + pos: -25.5,18.5 + parent: 8364 + - uid: 9688 + components: + - type: Transform + pos: -23.5,18.5 + parent: 8364 + - uid: 9691 + components: + - type: Transform + pos: -19.5,45.5 + parent: 8364 + - uid: 9692 + components: + - type: Transform + pos: -19.5,44.5 + parent: 8364 + - uid: 9693 + components: + - type: Transform + pos: -19.5,43.5 + parent: 8364 + - uid: 9694 + components: + - type: Transform + pos: -19.5,42.5 + parent: 8364 + - uid: 9714 + components: + - type: Transform + pos: -12.5,54.5 + parent: 8364 + - uid: 9715 + components: + - type: Transform + pos: -13.5,54.5 + parent: 8364 + - uid: 9716 + components: + - type: Transform + pos: -15.5,53.5 + parent: 8364 + - uid: 9717 + components: + - type: Transform + pos: -21.5,53.5 + parent: 8364 + - uid: 9719 + components: + - type: Transform + pos: -19.5,55.5 + parent: 8364 + - uid: 9720 + components: + - type: Transform + pos: -18.5,56.5 + parent: 8364 + - uid: 9722 + components: + - type: Transform + pos: -16.5,58.5 + parent: 8364 + - uid: 9723 + components: + - type: Transform + pos: -15.5,59.5 + parent: 8364 + - uid: 9724 + components: + - type: Transform + pos: -14.5,60.5 + parent: 8364 + - uid: 9725 + components: + - type: Transform + pos: -17.5,58.5 + parent: 8364 + - uid: 9726 + components: + - type: Transform + pos: -17.5,56.5 + parent: 8364 + - uid: 9727 + components: + - type: Transform + pos: -18.5,55.5 + parent: 8364 + - uid: 9728 + components: + - type: Transform + pos: -20.5,55.5 + parent: 8364 + - uid: 9730 + components: + - type: Transform + pos: -21.5,54.5 + parent: 8364 + - uid: 9732 + components: + - type: Transform + pos: -16.5,59.5 + parent: 8364 + - uid: 9733 + components: + - type: Transform + pos: -15.5,60.5 parent: 8364 - uid: 10546 components: @@ -124796,11 +127094,6 @@ entities: - type: Transform pos: 13.5,-26.5 parent: 8364 - - uid: 10738 - components: - - type: Transform - pos: 1.5,44.5 - parent: 8364 - uid: 10756 components: - type: Transform @@ -124814,7 +127107,6 @@ entities: - uid: 10854 components: - type: Transform - rot: 1.5707963267948966 rad pos: 35.5,-94.5 parent: 8364 - uid: 10867 @@ -124890,13 +127182,11 @@ entities: - uid: 12480 components: - type: Transform - rot: 1.5707963267948966 rad pos: -67.5,7.5 parent: 8364 - uid: 12514 components: - type: Transform - rot: 1.5707963267948966 rad pos: -66.5,7.5 parent: 8364 - uid: 13082 @@ -124952,19 +127242,16 @@ entities: - uid: 14193 components: - type: Transform - rot: -1.5707963267948966 rad pos: -40.5,-12.5 parent: 8364 - uid: 14222 components: - type: Transform - rot: -1.5707963267948966 rad pos: -40.5,-11.5 parent: 8364 - uid: 14233 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,-10.5 parent: 8364 - uid: 14487 @@ -124995,7 +127282,6 @@ entities: - uid: 16131 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,-10.5 parent: 8364 - uid: 16526 @@ -125356,25 +127642,21 @@ entities: - uid: 17844 components: - type: Transform - rot: -1.5707963267948966 rad pos: 37.5,-28.5 parent: 8364 - uid: 17848 components: - type: Transform - rot: -1.5707963267948966 rad pos: 39.5,-30.5 parent: 8364 - uid: 17849 components: - type: Transform - rot: -1.5707963267948966 rad pos: 40.5,-30.5 parent: 8364 - uid: 17850 components: - type: Transform - rot: -1.5707963267948966 rad pos: 41.5,-30.5 parent: 8364 - uid: 17871 @@ -125470,7 +127752,6 @@ entities: - uid: 18106 components: - type: Transform - rot: -1.5707963267948966 rad pos: 37.5,-27.5 parent: 8364 - uid: 18285 @@ -125511,7 +127792,6 @@ entities: - uid: 18615 components: - type: Transform - rot: 3.141592653589793 rad pos: 10.5,-32.5 parent: 8364 - uid: 18649 @@ -125639,6 +127919,11 @@ entities: - type: Transform pos: 43.5,-34.5 parent: 8364 + - uid: 19941 + components: + - type: Transform + pos: -14.5,43.5 + parent: 8364 - uid: 20150 components: - type: Transform @@ -125732,7 +128017,6 @@ entities: - uid: 21746 components: - type: Transform - rot: 3.141592653589793 rad pos: 10.5,-80.5 parent: 8364 - uid: 21751 @@ -125818,7 +128102,6 @@ entities: - uid: 22714 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-71.5 parent: 8364 - uid: 22832 @@ -125984,7 +128267,6 @@ entities: - uid: 23221 components: - type: Transform - rot: 3.141592653589793 rad pos: 10.5,-81.5 parent: 8364 - uid: 23222 @@ -126062,69 +128344,31 @@ entities: - type: Transform pos: -16.5,-83.5 parent: 8364 - - uid: 24929 - components: - - type: Transform - pos: 0.5,44.5 - parent: 8364 - uid: 24944 components: - type: Transform pos: -5.5,-93.5 parent: 8364 - - uid: 24976 - components: - - type: Transform - pos: 0.5,42.5 - parent: 8364 - - uid: 25004 - components: - - type: Transform - pos: -3.5,33.5 - parent: 8364 - uid: 25230 components: - type: Transform - rot: 1.5707963267948966 rad pos: 24.5,-94.5 parent: 8364 - uid: 25245 components: - type: Transform - rot: 1.5707963267948966 rad pos: 23.5,-94.5 parent: 8364 - uid: 25249 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,-94.5 parent: 8364 - - uid: 25699 - components: - - type: Transform - pos: -6.5,46.5 - parent: 8364 - - uid: 25721 - components: - - type: Transform - pos: -8.5,46.5 - parent: 8364 - uid: 25860 components: - type: Transform pos: 44.5,-1.5 parent: 8364 - - uid: 25865 - components: - - type: Transform - pos: 6.5,29.5 - parent: 8364 - - uid: 25866 - components: - - type: Transform - pos: 8.5,29.5 - parent: 8364 - uid: 25903 components: - type: Transform @@ -126185,336 +128429,6 @@ entities: - type: Transform pos: 39.5,-85.5 parent: 8364 - - uid: 26472 - components: - - type: Transform - pos: 21.5,46.5 - parent: 8364 - - uid: 26475 - components: - - type: Transform - pos: 22.5,46.5 - parent: 8364 - - uid: 26476 - components: - - type: Transform - pos: 23.5,46.5 - parent: 8364 - - uid: 26477 - components: - - type: Transform - pos: 24.5,46.5 - parent: 8364 - - uid: 26478 - components: - - type: Transform - pos: 17.5,46.5 - parent: 8364 - - uid: 26479 - components: - - type: Transform - pos: 16.5,46.5 - parent: 8364 - - uid: 26480 - components: - - type: Transform - pos: 15.5,46.5 - parent: 8364 - - uid: 26481 - components: - - type: Transform - pos: 14.5,46.5 - parent: 8364 - - uid: 26482 - components: - - type: Transform - pos: 13.5,46.5 - parent: 8364 - - uid: 26483 - components: - - type: Transform - pos: 12.5,46.5 - parent: 8364 - - uid: 26484 - components: - - type: Transform - pos: 11.5,46.5 - parent: 8364 - - uid: 26485 - components: - - type: Transform - pos: 10.5,46.5 - parent: 8364 - - uid: 26486 - components: - - type: Transform - pos: 9.5,46.5 - parent: 8364 - - uid: 26487 - components: - - type: Transform - pos: 8.5,46.5 - parent: 8364 - - uid: 26488 - components: - - type: Transform - pos: 7.5,46.5 - parent: 8364 - - uid: 26489 - components: - - type: Transform - pos: -27.5,41.5 - parent: 8364 - - uid: 26490 - components: - - type: Transform - pos: -27.5,42.5 - parent: 8364 - - uid: 26491 - components: - - type: Transform - pos: -27.5,43.5 - parent: 8364 - - uid: 26492 - components: - - type: Transform - pos: -27.5,44.5 - parent: 8364 - - uid: 26493 - components: - - type: Transform - pos: -27.5,45.5 - parent: 8364 - - uid: 26494 - components: - - type: Transform - pos: -27.5,46.5 - parent: 8364 - - uid: 26495 - components: - - type: Transform - pos: -27.5,47.5 - parent: 8364 - - uid: 26496 - components: - - type: Transform - pos: -24.5,58.5 - parent: 8364 - - uid: 26497 - components: - - type: Transform - pos: -23.5,58.5 - parent: 8364 - - uid: 26498 - components: - - type: Transform - pos: -22.5,58.5 - parent: 8364 - - uid: 26499 - components: - - type: Transform - pos: -21.5,58.5 - parent: 8364 - - uid: 26500 - components: - - type: Transform - pos: -20.5,58.5 - parent: 8364 - - uid: 26501 - components: - - type: Transform - pos: -19.5,58.5 - parent: 8364 - - uid: 26502 - components: - - type: Transform - pos: -18.5,58.5 - parent: 8364 - - uid: 26503 - components: - - type: Transform - pos: -17.5,58.5 - parent: 8364 - - uid: 26504 - components: - - type: Transform - pos: -15.5,58.5 - parent: 8364 - - uid: 26505 - components: - - type: Transform - pos: -14.5,58.5 - parent: 8364 - - uid: 26506 - components: - - type: Transform - pos: -13.5,58.5 - parent: 8364 - - uid: 26507 - components: - - type: Transform - pos: -12.5,58.5 - parent: 8364 - - uid: 26508 - components: - - type: Transform - pos: -11.5,58.5 - parent: 8364 - - uid: 26509 - components: - - type: Transform - pos: -10.5,58.5 - parent: 8364 - - uid: 26510 - components: - - type: Transform - pos: -9.5,58.5 - parent: 8364 - - uid: 26511 - components: - - type: Transform - pos: -8.5,58.5 - parent: 8364 - - uid: 26512 - components: - - type: Transform - pos: -2.5,56.5 - parent: 8364 - - uid: 26513 - components: - - type: Transform - pos: -1.5,56.5 - parent: 8364 - - uid: 26514 - components: - - type: Transform - pos: -0.5,56.5 - parent: 8364 - - uid: 26515 - components: - - type: Transform - pos: 0.5,56.5 - parent: 8364 - - uid: 26516 - components: - - type: Transform - pos: 1.5,56.5 - parent: 8364 - - uid: 26517 - components: - - type: Transform - pos: 2.5,56.5 - parent: 8364 - - uid: 26518 - components: - - type: Transform - pos: 3.5,56.5 - parent: 8364 - - uid: 26519 - components: - - type: Transform - pos: 4.5,56.5 - parent: 8364 - - uid: 26520 - components: - - type: Transform - pos: 5.5,56.5 - parent: 8364 - - uid: 26521 - components: - - type: Transform - pos: 6.5,56.5 - parent: 8364 - - uid: 26522 - components: - - type: Transform - pos: 7.5,56.5 - parent: 8364 - - uid: 26523 - components: - - type: Transform - pos: 9.5,53.5 - parent: 8364 - - uid: 26524 - components: - - type: Transform - pos: 9.5,52.5 - parent: 8364 - - uid: 26525 - components: - - type: Transform - pos: 9.5,51.5 - parent: 8364 - - uid: 26526 - components: - - type: Transform - pos: 9.5,50.5 - parent: 8364 - - uid: 26527 - components: - - type: Transform - pos: 9.5,49.5 - parent: 8364 - - uid: 26528 - components: - - type: Transform - pos: 9.5,48.5 - parent: 8364 - - uid: 26529 - components: - - type: Transform - pos: -27.5,54.5 - parent: 8364 - - uid: 26530 - components: - - type: Transform - pos: -27.5,53.5 - parent: 8364 - - uid: 26531 - components: - - type: Transform - pos: -27.5,52.5 - parent: 8364 - - uid: 26532 - components: - - type: Transform - pos: -27.5,51.5 - parent: 8364 - - uid: 26533 - components: - - type: Transform - pos: -27.5,50.5 - parent: 8364 - - uid: 26539 - components: - - type: Transform - pos: -20.5,35.5 - parent: 8364 - - uid: 26540 - components: - - type: Transform - pos: -20.5,34.5 - parent: 8364 - - uid: 26541 - components: - - type: Transform - pos: -20.5,33.5 - parent: 8364 - - uid: 26542 - components: - - type: Transform - pos: -20.5,32.5 - parent: 8364 - - uid: 26543 - components: - - type: Transform - pos: -20.5,31.5 - parent: 8364 - - uid: 26544 - components: - - type: Transform - pos: -20.5,30.5 - parent: 8364 - uid: 26759 components: - type: Transform @@ -126528,7 +128442,6 @@ entities: - uid: 26950 components: - type: Transform - rot: 1.5707963267948966 rad pos: 22.5,-94.5 parent: 8364 - uid: 26988 @@ -126539,55 +128452,46 @@ entities: - uid: 27179 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,-94.5 parent: 8364 - uid: 27184 components: - type: Transform - rot: 1.5707963267948966 rad pos: 25.5,-94.5 parent: 8364 - uid: 27185 components: - type: Transform - rot: 1.5707963267948966 rad pos: 28.5,-94.5 parent: 8364 - uid: 27186 components: - type: Transform - rot: 1.5707963267948966 rad pos: 29.5,-94.5 parent: 8364 - uid: 27187 components: - type: Transform - rot: 1.5707963267948966 rad pos: 26.5,-94.5 parent: 8364 - uid: 27192 components: - type: Transform - rot: 1.5707963267948966 rad pos: 30.5,-94.5 parent: 8364 - uid: 27193 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,-94.5 parent: 8364 - uid: 27194 components: - type: Transform - rot: 1.5707963267948966 rad pos: 31.5,-94.5 parent: 8364 - uid: 27195 components: - type: Transform - rot: 1.5707963267948966 rad pos: 33.5,-94.5 parent: 8364 - uid: 27206 @@ -126595,16 +128499,6 @@ entities: - type: Transform pos: -21.5,-82.5 parent: 8364 - - uid: 27275 - components: - - type: Transform - pos: -0.5,44.5 - parent: 8364 - - uid: 27283 - components: - - type: Transform - pos: 2.5,44.5 - parent: 8364 - uid: 27532 components: - type: Transform @@ -126628,13 +128522,11 @@ entities: - uid: 27763 components: - type: Transform - rot: 3.141592653589793 rad pos: 21.5,-82.5 parent: 8364 - uid: 27791 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-82.5 parent: 8364 - uid: 27792 @@ -126645,7 +128537,6 @@ entities: - uid: 27793 components: - type: Transform - rot: -1.5707963267948966 rad pos: -15.5,-82.5 parent: 8364 - uid: 27856 @@ -126661,25 +128552,21 @@ entities: - uid: 27990 components: - type: Transform - rot: 1.5707963267948966 rad pos: 34.5,-94.5 parent: 8364 - uid: 28143 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-24.5 parent: 8364 - uid: 28147 components: - type: Transform - rot: 1.5707963267948966 rad pos: 3.5,-24.5 parent: 8364 - uid: 28255 components: - type: Transform - rot: 3.141592653589793 rad pos: 92.5,-30.5 parent: 8364 - uid: 28258 @@ -126702,11 +128589,6 @@ entities: - type: Transform pos: 38.5,42.5 parent: 8364 - - uid: 28262 - components: - - type: Transform - pos: 30.5,43.5 - parent: 8364 - uid: 28264 components: - type: Transform @@ -126727,46 +128609,6 @@ entities: - type: Transform pos: 35.5,40.5 parent: 8364 - - uid: 28268 - components: - - type: Transform - pos: 30.5,42.5 - parent: 8364 - - uid: 28269 - components: - - type: Transform - pos: 30.5,41.5 - parent: 8364 - - uid: 28270 - components: - - type: Transform - pos: 30.5,40.5 - parent: 8364 - - uid: 28271 - components: - - type: Transform - pos: 30.5,44.5 - parent: 8364 - - uid: 28272 - components: - - type: Transform - pos: 30.5,45.5 - parent: 8364 - - uid: 28273 - components: - - type: Transform - pos: 30.5,39.5 - parent: 8364 - - uid: 28274 - components: - - type: Transform - pos: 27.5,45.5 - parent: 8364 - - uid: 28275 - components: - - type: Transform - pos: 28.5,45.5 - parent: 8364 - uid: 28276 components: - type: Transform @@ -126914,16 +128756,126 @@ entities: - type: Transform pos: 88.5,-85.5 parent: 8364 - - uid: 5767 + - uid: 8928 components: - type: Transform - pos: 5.5,43.5 + rot: -1.5707963267948966 rad + pos: -21.5,11.5 parent: 8364 - - uid: 9361 + - uid: 9410 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,44.5 + pos: 17.5,23.5 + parent: 8364 + - uid: 9411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,22.5 + parent: 8364 + - uid: 9412 + components: + - type: Transform + pos: 22.5,22.5 + parent: 8364 + - uid: 9653 + components: + - type: Transform + pos: -32.5,31.5 + parent: 8364 + - uid: 9666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,34.5 + parent: 8364 + - uid: 9696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,41.5 + parent: 8364 + - uid: 9697 + components: + - type: Transform + pos: -19.5,46.5 + parent: 8364 + - uid: 9702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,37.5 + parent: 8364 + - uid: 9703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,49.5 + parent: 8364 + - uid: 9704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,43.5 + parent: 8364 + - uid: 9705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,47.5 + parent: 8364 + - uid: 9706 + components: + - type: Transform + pos: -7.5,60.5 + parent: 8364 + - uid: 9707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,47.5 + parent: 8364 + - uid: 9709 + components: + - type: Transform + pos: -21.5,40.5 + parent: 8364 + - uid: 9712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,55.5 + parent: 8364 + - uid: 9735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,56.5 + parent: 8364 + - uid: 9736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,56.5 + parent: 8364 + - uid: 9737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,54.5 + parent: 8364 + - uid: 9738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,59.5 + parent: 8364 + - uid: 9854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,49.5 parent: 8364 - uid: 11161 components: @@ -126940,11 +128892,6 @@ entities: - type: Transform pos: 57.5,14.5 parent: 8364 - - uid: 13845 - components: - - type: Transform - pos: -20.5,11.5 - parent: 8364 - uid: 16955 components: - type: Transform @@ -126968,17 +128915,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-82.5 parent: 8364 - - uid: 26534 - components: - - type: Transform - pos: -27.5,48.5 - parent: 8364 - - uid: 26535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,49.5 - parent: 8364 - uid: 26616 components: - type: Transform @@ -127031,18 +128967,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-93.5 parent: 8364 - - uid: 27284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,44.5 - parent: 8364 - - uid: 27285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,44.5 - parent: 8364 - uid: 27764 components: - type: Transform @@ -127057,6 +128981,216 @@ entities: parent: 8364 - proto: GrilleSpawner entities: + - uid: 9554 + components: + - type: Transform + pos: 29.5,39.5 + parent: 8364 + - uid: 9555 + components: + - type: Transform + pos: 31.5,36.5 + parent: 8364 + - uid: 9556 + components: + - type: Transform + pos: 23.5,36.5 + parent: 8364 + - uid: 9557 + components: + - type: Transform + pos: 27.5,31.5 + parent: 8364 + - uid: 9558 + components: + - type: Transform + pos: 25.5,36.5 + parent: 8364 + - uid: 9559 + components: + - type: Transform + pos: 23.5,39.5 + parent: 8364 + - uid: 9560 + components: + - type: Transform + pos: 25.5,46.5 + parent: 8364 + - uid: 9561 + components: + - type: Transform + pos: 21.5,46.5 + parent: 8364 + - uid: 9562 + components: + - type: Transform + pos: 23.5,49.5 + parent: 8364 + - uid: 9566 + components: + - type: Transform + pos: 24.5,49.5 + parent: 8364 + - uid: 9567 + components: + - type: Transform + pos: 27.5,49.5 + parent: 8364 + - uid: 9569 + components: + - type: Transform + pos: 22.5,56.5 + parent: 8364 + - uid: 9570 + components: + - type: Transform + pos: 21.5,57.5 + parent: 8364 + - uid: 9571 + components: + - type: Transform + pos: 24.5,54.5 + parent: 8364 + - uid: 9572 + components: + - type: Transform + pos: 17.5,56.5 + parent: 8364 + - uid: 9573 + components: + - type: Transform + pos: 14.5,56.5 + parent: 8364 + - uid: 9576 + components: + - type: Transform + pos: 13.5,57.5 + parent: 8364 + - uid: 9577 + components: + - type: Transform + pos: 10.5,56.5 + parent: 8364 + - uid: 9580 + components: + - type: Transform + pos: 9.5,57.5 + parent: 8364 + - uid: 9589 + components: + - type: Transform + pos: 9.5,60.5 + parent: 8364 + - uid: 9590 + components: + - type: Transform + pos: 5.5,60.5 + parent: 8364 + - uid: 9591 + components: + - type: Transform + pos: 3.5,60.5 + parent: 8364 + - uid: 9594 + components: + - type: Transform + pos: 1.5,57.5 + parent: 8364 + - uid: 9596 + components: + - type: Transform + pos: -1.5,58.5 + parent: 8364 + - uid: 9597 + components: + - type: Transform + pos: 8.5,59.5 + parent: 8364 + - uid: 9600 + components: + - type: Transform + pos: 18.5,31.5 + parent: 8364 + - uid: 9624 + components: + - type: Transform + pos: -25.5,49.5 + parent: 8364 + - uid: 9633 + components: + - type: Transform + pos: -35.5,43.5 + parent: 8364 + - uid: 9640 + components: + - type: Transform + pos: -33.5,44.5 + parent: 8364 + - uid: 9647 + components: + - type: Transform + pos: -29.5,48.5 + parent: 8364 + - uid: 9656 + components: + - type: Transform + pos: -34.5,33.5 + parent: 8364 + - uid: 9663 + components: + - type: Transform + pos: -24.5,18.5 + parent: 8364 + - uid: 9671 + components: + - type: Transform + pos: -35.5,38.5 + parent: 8364 + - uid: 9675 + components: + - type: Transform + pos: -31.5,29.5 + parent: 8364 + - uid: 9687 + components: + - type: Transform + pos: -27.5,23.5 + parent: 8364 + - uid: 9689 + components: + - type: Transform + pos: -21.5,46.5 + parent: 8364 + - uid: 9690 + components: + - type: Transform + pos: -18.5,40.5 + parent: 8364 + - uid: 9701 + components: + - type: Transform + pos: -28.5,27.5 + parent: 8364 + - uid: 9713 + components: + - type: Transform + pos: -27.5,19.5 + parent: 8364 + - uid: 9718 + components: + - type: Transform + pos: -20.5,54.5 + parent: 8364 + - uid: 9721 + components: + - type: Transform + pos: -17.5,57.5 + parent: 8364 + - uid: 9731 + components: + - type: Transform + pos: -15.5,58.5 + parent: 8364 - uid: 26956 components: - type: Transform @@ -127104,166 +129238,46 @@ entities: parent: 8364 - proto: GunSafeDisabler entities: - - uid: 9207 + - uid: 7903 components: - - type: MetaData - name: disabler safe (5) - type: Transform - anchored: True - pos: 1.5,37.5 + pos: -14.5,41.5 + parent: 8364 +- proto: GunSafeLaserCarbine + entities: + - uid: 26316 + components: + - type: Transform + pos: -8.5,47.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Physics - bodyType: Static - - type: Label - currentLabel: 5 - - type: NameModifier - baseName: disabler safe - proto: GunSafePistolMk58 entities: - - uid: 7751 + - uid: 4932 components: - - type: MetaData - name: mk58 safe (4) - type: Transform - anchored: True - pos: 2.5,37.5 + pos: -14.5,45.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14572 - moles: - - 1.606311 - - 6.042789 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Physics - bodyType: Static - - type: Label - currentLabel: 4 - - type: NameModifier - baseName: mk58 safe - proto: GunSafeRifleLecter entities: - - uid: 10023 + - uid: 25688 components: - - type: MetaData - name: lecter safe (3) - type: Transform - anchored: True - pos: -0.5,37.5 + pos: -9.5,47.5 + parent: 8364 +- proto: GunSafeShotgunKammerer + entities: + - uid: 26317 + components: + - type: Transform + pos: -8.5,44.5 parent: 8364 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 9375 - - 9374 - - 9376 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Label - currentLabel: 3 - - type: NameModifier - baseName: lecter safe - proto: GunSafeSubMachineGunDrozd entities: - - uid: 10024 + - uid: 8594 components: - - type: MetaData - name: drozd safe (3) - type: Transform - anchored: True - pos: 0.5,37.5 + pos: -9.5,44.5 parent: 8364 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 9371 - - 9372 - - 9370 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Label - currentLabel: 3 - - type: NameModifier - baseName: drozd safe - proto: GyroscopeUnanchored entities: - uid: 25012 @@ -127274,20 +129288,27 @@ entities: parent: 8364 - proto: Handcuffs entities: - - uid: 8591 + - uid: 4708 components: - type: Transform - pos: -15.501181,34.511185 + pos: 11.534504,40.73739 parent: 8364 - - uid: 8612 + - uid: 8514 components: - type: Transform - pos: 3.5,23.5 + pos: 3.57941,53.609627 parent: 8364 - - uid: 8613 + - uid: 8568 components: - type: Transform - pos: 3.5,23.5 + pos: 8.615355,43.176933 + parent: 8364 +- proto: HandheldHealthAnalyzer + entities: + - uid: 8199 + components: + - type: Transform + pos: 3.5056982,31.590742 parent: 8364 - proto: HandLabeler entities: @@ -127301,11 +129322,6 @@ entities: - type: Transform pos: 38.4924,-28.821447 parent: 8364 - - uid: 9705 - components: - - type: Transform - pos: -8.5,17.5 - parent: 8364 - uid: 14338 components: - type: Transform @@ -127343,10 +129359,10 @@ entities: parent: 8364 - proto: HarmonicaInstrument entities: - - uid: 26569 + - uid: 8913 components: - type: Transform - pos: -17.476429,42.24517 + pos: -24.45041,25.51879 parent: 8364 - proto: HeatExchanger entities: @@ -127356,8 +129372,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-85.5 parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 24960 components: - type: Transform @@ -127382,6 +129396,36 @@ entities: rot: 0.000406441162340343 rad pos: 52.576862,-22.263298 parent: 8364 +- proto: HighSecArmoryLocked + entities: + - uid: 346 + components: + - type: MetaData + name: Armory\ + - type: Transform + pos: -9.5,40.5 + parent: 8364 + - uid: 5072 + components: + - type: MetaData + name: Armory + - type: Transform + pos: -9.5,42.5 + parent: 8364 + - uid: 7292 + components: + - type: MetaData + name: High-Sec Armory + - type: Transform + pos: -13.5,43.5 + parent: 8364 + - uid: 7821 + components: + - type: MetaData + name: High-Sec Armory + - type: Transform + pos: -11.5,43.5 + parent: 8364 - proto: HighSecCommandLocked entities: - uid: 4287 @@ -127515,10 +129559,10 @@ entities: parent: 8364 - proto: HolopadCommandHos entities: - - uid: 28085 + - uid: 8801 components: - type: Transform - pos: 14.5,38.5 + pos: 4.5,52.5 parent: 8364 - proto: HolopadCommandMeetingRoom entities: @@ -127737,10 +129781,10 @@ entities: parent: 8364 - proto: HolopadSecurityArmory entities: - - uid: 7709 + - uid: 19947 components: - type: Transform - pos: 3.5,37.5 + pos: -12.5,45.5 parent: 8364 - proto: HolopadSecurityArrivalsCheckpoint entities: @@ -127751,38 +129795,31 @@ entities: parent: 8364 - proto: HolopadSecurityBreakroom entities: - - uid: 28092 + - uid: 4650 components: - type: Transform - pos: 14.5,33.5 - parent: 8364 -- proto: HolopadSecurityBrig - entities: - - uid: 19029 - components: - - type: Transform - pos: -1.5,27.5 + pos: 6.5,43.5 parent: 8364 - proto: HolopadSecurityBrigMed entities: - - uid: 28139 + - uid: 6651 components: - type: Transform - pos: -8.5,31.5 + pos: 3.5,32.5 parent: 8364 - proto: HolopadSecurityCourtroom entities: - - uid: 28094 + - uid: 9076 components: - type: Transform - pos: 15.5,25.5 + pos: -7.5,20.5 parent: 8364 - proto: HolopadSecurityDetective entities: - - uid: 28098 + - uid: 9137 components: - type: Transform - pos: -4.5,15.5 + pos: 9.5,25.5 parent: 8364 - proto: HolopadSecurityEvacCheckpoint entities: @@ -127791,40 +129828,40 @@ entities: - type: Transform pos: 79.5,-2.5 parent: 8364 -- proto: HolopadSecurityFront - entities: - - uid: 28247 - components: - - type: Transform - pos: 5.5,20.5 - parent: 8364 - proto: HolopadSecurityInterrogation entities: - - uid: 28095 + - uid: 8794 components: - type: Transform - pos: -14.5,32.5 + pos: -14.5,34.5 parent: 8364 - proto: HolopadSecurityLawyer entities: - - uid: 28096 + - uid: 7884 components: - type: Transform - pos: -12.5,15.5 + pos: 4.5,24.5 + parent: 8364 +- proto: HolopadSecurityLockerRoom + entities: + - uid: 4839 + components: + - type: Transform + pos: -1.5,47.5 parent: 8364 - proto: HolopadSecurityPerma entities: - - uid: 28121 + - uid: 28481 components: - type: Transform - pos: -7.5,49.5 + pos: -27.5,36.5 parent: 8364 - proto: HolopadSecurityWarden entities: - - uid: 28091 + - uid: 9089 components: - type: Transform - pos: 1.5,32.5 + pos: -6.5,32.5 parent: 8364 - proto: HolopadServiceBar entities: @@ -127891,6 +129928,11 @@ entities: parent: 8364 - proto: HospitalCurtainsOpen entities: + - uid: 10 + components: + - type: Transform + pos: -29.5,41.5 + parent: 8364 - uid: 2213 components: - type: Transform @@ -127901,6 +129943,11 @@ entities: - type: Transform pos: 10.5,-22.5 parent: 8364 + - uid: 8899 + components: + - type: Transform + pos: -31.5,41.5 + parent: 8364 - uid: 18674 components: - type: Transform @@ -127928,6 +129975,42 @@ entities: parent: 8364 - proto: hydroponicsSoil entities: + - uid: 7364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,45.5 + parent: 8364 + - uid: 7376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,43.5 + parent: 8364 + - uid: 7666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,45.5 + parent: 8364 + - uid: 7700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,43.5 + parent: 8364 + - uid: 7702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,45.5 + parent: 8364 + - uid: 8524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,45.5 + parent: 8364 - uid: 13196 components: - type: Transform @@ -127978,48 +130061,13 @@ entities: - type: Transform pos: -22.5,1.5 parent: 8364 - - uid: 19946 - components: - - type: Transform - pos: 4.5,47.5 - parent: 8364 - - uid: 21485 - components: - - type: Transform - pos: 4.5,48.5 - parent: 8364 - - uid: 25685 - components: - - type: Transform - pos: -0.5,47.5 - parent: 8364 - - uid: 25697 - components: - - type: Transform - pos: -0.5,48.5 - parent: 8364 - - uid: 25702 - components: - - type: Transform - pos: 2.5,47.5 - parent: 8364 - - uid: 25723 - components: - - type: Transform - pos: 2.5,48.5 - parent: 8364 - - uid: 25724 - components: - - type: Transform - pos: -2.5,47.5 - parent: 8364 - - uid: 25729 - components: - - type: Transform - pos: -2.5,48.5 - parent: 8364 - proto: HydroponicsToolClippers entities: + - uid: 8845 + components: + - type: Transform + pos: -23.437143,42.036224 + parent: 8364 - uid: 13510 components: - type: Transform @@ -128044,6 +130092,11 @@ entities: parent: 8364 - proto: HydroponicsToolMiniHoe entities: + - uid: 8973 + components: + - type: Transform + pos: -23.54136,42.307243 + parent: 8364 - uid: 13502 components: - type: Transform @@ -128054,20 +130107,27 @@ entities: - type: Transform pos: -22.5,6.5 parent: 8364 - - uid: 26466 - components: - - type: Transform - pos: 1.5058146,51.529594 - parent: 8364 - proto: HydroponicsToolSpade entities: - - uid: 26463 + - uid: 8978 components: - type: Transform - pos: 1.5683146,51.57647 + pos: -23.468409,41.671387 parent: 8364 - proto: hydroponicsTray entities: + - uid: 7362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,43.5 + parent: 8364 + - uid: 7701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,43.5 + parent: 8364 - uid: 10619 components: - type: Transform @@ -128292,6 +130352,17 @@ entities: - type: Transform pos: 6.5,0.5 parent: 8364 + - uid: 28482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,32.5 + parent: 8364 + - uid: 28513 + components: + - type: Transform + pos: -18.5,31.5 + parent: 8364 - proto: IntercomEngineering entities: - uid: 3731 @@ -128372,20 +130443,16 @@ entities: parent: 8364 - proto: IntercomSecurity entities: - - uid: 21091 + - uid: 28514 components: - type: Transform - pos: 17.5,36.5 + pos: -3.5,29.5 parent: 8364 - - uid: 21092 + - uid: 28515 components: - type: Transform - pos: -10.5,28.5 - parent: 8364 - - uid: 26256 - components: - - type: Transform - pos: 0.5,22.5 + rot: 1.5707963267948966 rad + pos: 1.5,42.5 parent: 8364 - proto: IntercomSupply entities: @@ -128444,45 +130511,18 @@ entities: parent: 8364 - proto: JetpackSecurityFilled entities: - - uid: 9182 + - uid: 8562 components: - type: Transform - parent: 8783 - - type: GasTank - toggleActionEntity: 10072 - - type: Jetpack - toggleActionEntity: 10071 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 10071 - - 10072 - - type: InsideEntityStorage - - uid: 10032 + rot: 3.141592653589793 rad + pos: -14.395266,46.522804 + parent: 8364 + - uid: 8593 components: - type: Transform - parent: 10030 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10074 - components: - - type: Transform - parent: 8825 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11965 - components: - - type: Transform - parent: 11611 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: 3.141592653589793 rad + pos: -14.634968,46.658318 + parent: 8364 - proto: Jukebox entities: - uid: 28320 @@ -128521,15 +130561,15 @@ entities: - type: Transform pos: 38.5,-4.5 parent: 8364 - - uid: 5576 + - uid: 8615 components: - type: Transform - pos: 13.5,30.5 + pos: 1.5,41.5 parent: 8364 - - uid: 9120 + - uid: 8982 components: - type: Transform - pos: -4.5,52.5 + pos: -26.5,38.5 parent: 8364 - uid: 9636 components: @@ -128583,10 +130623,10 @@ entities: - type: Transform pos: 29.5,0.5 parent: 8364 - - uid: 9112 + - uid: 8979 components: - type: Transform - pos: -5.5,52.5 + pos: -25.5,38.5 parent: 8364 - uid: 15576 components: @@ -128615,15 +130655,6 @@ entities: - type: Transform pos: 39.5,-2.5 parent: 8364 -- proto: KnifePlastic - entities: - - uid: 26553 - components: - - type: Transform - parent: 26552 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Lamp entities: - uid: 5545 @@ -128695,6 +130726,13 @@ entities: showEnts: False occludes: True ent: null + - uid: 5070 + components: + - type: Transform + pos: 5.3890724,53.889565 + parent: 8364 + - type: Physics + canCollide: True - uid: 5679 components: - type: Transform @@ -128710,71 +130748,39 @@ entities: showEnts: False occludes: True ent: null + - uid: 7674 + components: + - type: Transform + pos: 10.443157,25.730602 + parent: 8364 - uid: 8374 components: - type: Transform pos: 26.320675,-9.895369 parent: 8364 - - uid: 8474 + - uid: 8721 components: - type: Transform - pos: 14.5,27.5 + pos: 4.8889923,25.921974 parent: 8364 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9405 + - uid: 9123 components: - type: Transform - pos: 12.51148,39.935867 + rot: -1.5707963267948966 rad + pos: -10.335668,20.851837 parent: 8364 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9712 + - uid: 9129 components: - type: Transform - pos: -5.4745197,14.875931 + rot: 1.5707963267948966 rad + pos: -4.5723915,20.924805 parent: 8364 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9715 + - uid: 9130 components: - type: Transform - pos: -11.396871,17.955116 + rot: -1.5707963267948966 rad + pos: -6.594228,22.978313 parent: 8364 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 10857 components: - type: Transform @@ -128862,30 +130868,27 @@ entities: parent: 8364 - proto: LampInterrogator entities: - - uid: 9931 + - uid: 8793 components: - type: Transform - pos: -14.38152,31.700815 + pos: -16.527569,34.915558 parent: 8364 - proto: LandMineExplosive entities: - - uid: 9359 + - uid: 9698 components: - type: Transform - anchored: True - pos: 4.5,44.5 + pos: -19.547722,47.450706 parent: 8364 - - uid: 27309 + - uid: 9699 components: - type: Transform - anchored: True - pos: -0.5,43.5 + pos: -18.51596,45.709908 parent: 8364 - - uid: 27313 + - uid: 9700 components: - type: Transform - anchored: True - pos: 2.5,43.5 + pos: -18.443007,42.509773 parent: 8364 - proto: LandMineModular entities: @@ -128953,13 +130956,6 @@ entities: - type: Transform pos: 60.50045,-17.347412 parent: 8364 -- proto: Lighter - entities: - - uid: 9709 - components: - - type: Transform - pos: -5.036098,14.608129 - parent: 8364 - proto: LightReplacer entities: - uid: 14425 @@ -128969,48 +130965,90 @@ entities: parent: 8364 - proto: LockableButtonArmory entities: - - uid: 23135 + - uid: 8408 components: - - type: MetaData - name: Open Armory - type: Transform rot: -1.5707963267948966 rad - pos: 5.477743,38.812943 + pos: -7.5,44.5 parent: 8364 - type: DeviceLinkSource linkedPorts: - 6419: + 13622: - - Pressed - - Open - 25744: - - - Pressed - - Open - - - Pressed - - AutoClose - 25747: - - - Pressed - - Open - - - Pressed - - AutoClose - - uid: 25554 + - Toggle + - uid: 9150 components: - type: MetaData - name: Close Armory + name: Shutters - type: Transform - rot: -1.5707963267948966 rad - pos: 5.4868402,38.244164 + pos: -6.5,35.5 parent: 8364 - type: DeviceLinkSource linkedPorts: - 6419: + 9145: - - Pressed - - Close - 25744: + - Toggle + 9147: - - Pressed - - Close - 25747: + - Toggle + 9146: - - Pressed - - Close + - Toggle + 9139: + - - Pressed + - Toggle + 9141: + - - Pressed + - Toggle + 9142: + - - Pressed + - Toggle + 9148: + - - Pressed + - Toggle + 9143: + - - Pressed + - Toggle + 9144: + - - Pressed + - Toggle + 9164: + - - Pressed + - Toggle + 9165: + - - Pressed + - Toggle +- proto: LockableButtonBrig + entities: + - uid: 9152 + components: + - type: MetaData + name: Visitation Blast Doors + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,30.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 7381: + - - Pressed + - Toggle + 8526: + - - Pressed + - Toggle + - uid: 28605 + components: + - type: MetaData + name: Witness Blast Door + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,25.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 46: + - - Pressed + - Toggle - proto: LockableButtonChiefMedicalOfficer entities: - uid: 3809 @@ -129026,6 +131064,39 @@ entities: 2506: - - Pressed - Open +- proto: LockableButtonHeadOfSecurity + entities: + - uid: 20156 + components: + - type: MetaData + name: Shutters + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,52.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 20152: + - - Pressed + - Toggle + 20056: + - - Pressed + - Toggle + 19997: + - - Pressed + - Toggle + 19983: + - - Pressed + - Toggle + 19968: + - - Pressed + - Toggle + 19959: + - - Pressed + - Toggle + 19949: + - - Pressed + - Toggle - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 3883 @@ -129188,45 +131259,18 @@ entities: parent: 8364 - proto: LockerDetectiveFilled entities: - - uid: 9704 + - uid: 8650 components: - type: Transform - pos: -8.5,15.5 + pos: 7.5,23.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerElectricalSuppliesFilled entities: + - uid: 9821 + components: + - type: Transform + pos: 8.5,35.5 + parent: 8364 - uid: 18593 components: - type: Transform @@ -129317,182 +131361,21 @@ entities: parent: 8364 - proto: LockerEvidence entities: - - uid: 6674 + - uid: 7280 components: - type: Transform - pos: -15.5,36.5 + pos: -7.5,29.5 parent: 8364 - - uid: 7338 + - uid: 28614 components: - type: Transform - pos: -14.5,36.5 + pos: -11.5,24.5 parent: 8364 - - uid: 8961 + - uid: 28615 components: - type: Transform - pos: -8.5,40.5 + pos: -13.5,24.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8964 - components: - - type: Transform - pos: -8.5,41.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9356 - components: - - type: Transform - pos: -13.5,36.5 - parent: 8364 - - uid: 9937 - components: - - type: Transform - pos: -3.5,28.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13293 - components: - - type: Transform - pos: -2.5,28.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13854 - components: - - type: Transform - pos: -1.5,28.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14312 - components: - - type: Transform - pos: -14.5,27.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 25719 - components: - - type: Transform - pos: -8.5,39.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerFreezer entities: - uid: 8156 @@ -129572,42 +131455,6 @@ entities: - type: Transform pos: 40.5,-2.5 parent: 8364 - - uid: 26552 - components: - - type: Transform - pos: -7.5,52.5 - parent: 8364 - - type: Lock - locked: False - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 2.146141 - - 8.073578 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26553 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerFreezerVaultFilled entities: - uid: 16305 @@ -129656,46 +131503,11 @@ entities: ent: null - proto: LockerHeadOfSecurityFilled entities: - - uid: 9250 + - uid: 8657 components: - type: Transform - anchored: True - pos: 16.5,38.5 + pos: -0.5,53.5 parent: 8364 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerMedical entities: - uid: 19192 @@ -129805,13 +131617,6 @@ entities: - 0 - 0 - 0 - - uid: 25003 - components: - - type: Transform - pos: -9.5,31.5 - parent: 8364 - - type: Lock - locked: False - proto: LockerParamedicFilled entities: - uid: 27687 @@ -129819,6 +131624,62 @@ entities: - type: Transform pos: 46.5,-22.5 parent: 8364 +- proto: LockerPrisoner + entities: + - uid: 9058 + components: + - type: Transform + pos: -15.5,30.5 + parent: 8364 +- proto: LockerPrisoner2 + entities: + - uid: 9060 + components: + - type: Transform + pos: -14.5,30.5 + parent: 8364 +- proto: LockerPrisoner3 + entities: + - uid: 9063 + components: + - type: Transform + pos: -13.5,30.5 + parent: 8364 +- proto: LockerPrisoner4 + entities: + - uid: 9064 + components: + - type: Transform + pos: -15.5,26.5 + parent: 8364 +- proto: LockerPrisoner5 + entities: + - uid: 9065 + components: + - type: Transform + pos: -14.5,26.5 + parent: 8364 +- proto: LockerPrisoner6 + entities: + - uid: 9066 + components: + - type: Transform + pos: -13.5,26.5 + parent: 8364 +- proto: LockerPrisoner7 + entities: + - uid: 9070 + components: + - type: Transform + pos: -12.5,26.5 + parent: 8364 +- proto: LockerPrisoner8 + entities: + - uid: 9069 + components: + - type: Transform + pos: -11.5,26.5 + parent: 8364 - proto: LockerQuarterMasterFilled entities: - uid: 8919 @@ -130005,142 +131866,51 @@ entities: ent: null - proto: LockerSecurityFilled entities: - - uid: 8791 + - uid: 3 components: - type: Transform - anchored: True - pos: 8.5,37.5 + pos: 0.5,49.5 parent: 8364 - - type: Physics - bodyType: Static - - uid: 8811 + - uid: 7718 components: - type: Transform - anchored: True - pos: 8.5,38.5 + pos: 0.5,50.5 parent: 8364 - - type: Physics - bodyType: Static - - uid: 9256 + - uid: 7719 components: - type: Transform - anchored: True - pos: 10.5,37.5 + pos: 0.5,51.5 parent: 8364 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9258 + - uid: 7720 components: - type: Transform - anchored: True - pos: 10.5,38.5 + pos: -2.5,51.5 parent: 8364 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9259 + - uid: 7767 components: - type: Transform - anchored: True - pos: 10.5,39.5 + pos: 0.5,45.5 + parent: 8364 + - uid: 7907 + components: + - type: Transform + pos: -2.5,49.5 + parent: 8364 + - uid: 7909 + components: + - type: Transform + pos: 0.5,47.5 + parent: 8364 + - uid: 8690 + components: + - type: Transform + pos: 0.5,46.5 + parent: 8364 + - uid: 8815 + components: + - type: Transform + pos: -2.5,50.5 parent: 8364 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 12350 components: - type: Transform @@ -130178,100 +131948,13 @@ entities: showEnts: False occludes: True ent: null - - uid: 27287 - components: - - type: Transform - anchored: True - pos: 8.5,40.5 - parent: 8364 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 27288 - components: - - type: Transform - anchored: True - pos: 8.5,39.5 - parent: 8364 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerWardenFilled entities: - - uid: 9234 + - uid: 9081 components: - type: Transform - anchored: True - pos: -2.5,30.5 + pos: -6.5,34.5 parent: 8364 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerWeldingSuppliesFilled entities: - uid: 1612 @@ -130341,6 +132024,21 @@ entities: - type: Transform pos: -3.5,-53.5 parent: 8364 + - uid: 7731 + components: + - type: Transform + pos: -17.5,19.5 + parent: 8364 + - uid: 9436 + components: + - type: Transform + pos: 14.5,21.5 + parent: 8364 + - uid: 9456 + components: + - type: Transform + pos: 13.5,29.5 + parent: 8364 - uid: 11750 components: - type: Transform @@ -130356,6 +132054,13 @@ entities: - type: Transform pos: -23.5,-77.5 parent: 8364 +- proto: LootSpawnerMaterials + entities: + - uid: 7753 + components: + - type: Transform + pos: -12.5,12.5 + parent: 8364 - proto: LootSpawnerMaterialsHighValue entities: - uid: 26927 @@ -130490,11 +132195,33 @@ entities: parent: 8364 - proto: LootSpawnerSecurity entities: + - uid: 8535 + components: + - type: Transform + pos: -0.5,43.5 + parent: 8364 - uid: 10878 components: - type: Transform pos: -56.5,3.5 parent: 8364 +- proto: LootSpawnerSecurityBasic + entities: + - uid: 7839 + components: + - type: Transform + pos: -2.5,40.5 + parent: 8364 + - uid: 7916 + components: + - type: Transform + pos: -17.5,38.5 + parent: 8364 + - uid: 9437 + components: + - type: Transform + pos: 14.5,19.5 + parent: 8364 - proto: MachineAnomalyGenerator entities: - uid: 21980 @@ -130581,6 +132308,16 @@ entities: parent: 8364 - proto: MachineFrameDestroyed entities: + - uid: 7745 + components: + - type: Transform + pos: -22.5,16.5 + parent: 8364 + - uid: 9434 + components: + - type: Transform + pos: 22.5,26.5 + parent: 8364 - uid: 13768 components: - type: Transform @@ -130600,59 +132337,30 @@ entities: parent: 8364 - proto: MagazineBoxMagnumPractice entities: - - uid: 10062 + - uid: 4522 components: - type: Transform - pos: 25.61246,35.490623 + pos: 7.5382156,48.59989 parent: 8364 -- proto: MagazinePistolSubMachineGun +- proto: MagazineBoxPistolPractice entities: - - uid: 9371 + - uid: 4495 components: - type: Transform - parent: 10024 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9372 - components: - - type: Transform - parent: 10024 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 7.4027314,48.74582 + parent: 8364 - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 534 + - uid: 965 components: - type: Transform - pos: 14.262794,39.806297 + pos: -1.4836051,53.52623 parent: 8364 - - type: BallisticAmmoProvider - unspawnedCount: 30 - - uid: 535 + - uid: 5087 components: - type: Transform - pos: 14.247169,39.821922 + pos: -1.3689646,53.71386 parent: 8364 - - type: BallisticAmmoProvider - unspawnedCount: 30 -- proto: MagazineRifle - entities: - - uid: 9374 - components: - - type: Transform - parent: 10023 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9376 - components: - - type: Transform - parent: 10023 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: MailingUnit entities: - uid: 8179 @@ -130665,6 +132373,16 @@ entities: - type: Configuration config: tag: mailroom + - uid: 9158 + components: + - type: Transform + pos: -7.5,38.5 + parent: 8364 + - type: MailingUnit + tag: Security + - type: Configuration + config: + tag: Security - uid: 22101 components: - type: Transform @@ -130675,16 +132393,6 @@ entities: - type: Configuration config: tag: hop - - uid: 22138 - components: - - type: Transform - pos: 5.5,28.5 - parent: 8364 - - type: MailingUnit - tag: security - - type: Configuration - config: - tag: security - uid: 22347 components: - type: Transform @@ -130732,11 +132440,6 @@ entities: - type: Transform pos: -35.5,-51.5 parent: 8364 - - uid: 3658 - components: - - type: Transform - pos: -18.5,14.5 - parent: 8364 - uid: 5123 components: - type: Transform @@ -130757,6 +132460,36 @@ entities: - type: Transform pos: 85.5,-53.5 parent: 8364 + - uid: 7736 + components: + - type: Transform + pos: -22.5,15.5 + parent: 8364 + - uid: 7746 + components: + - type: Transform + pos: -22.5,12.5 + parent: 8364 + - uid: 8966 + components: + - type: Transform + pos: -20.5,14.5 + parent: 8364 + - uid: 9421 + components: + - type: Transform + pos: 25.5,21.5 + parent: 8364 + - uid: 9429 + components: + - type: Transform + pos: 20.5,19.5 + parent: 8364 + - uid: 9449 + components: + - type: Transform + pos: 15.5,36.5 + parent: 8364 - uid: 11094 components: - type: Transform @@ -130782,11 +132515,6 @@ entities: - type: Transform pos: 76.5,-56.5 parent: 8364 - - uid: 26554 - components: - - type: Transform - pos: -8.5,53.5 - parent: 8364 - uid: 26608 components: - type: Transform @@ -130876,6 +132604,11 @@ entities: parent: 8364 - proto: MaintenancePlantSpawner entities: + - uid: 8820 + components: + - type: Transform + pos: -23.5,43.5 + parent: 8364 - uid: 27525 components: - type: Transform @@ -130898,6 +132631,11 @@ entities: parent: 8364 - proto: MaintenanceToolSpawner entities: + - uid: 60 + components: + - type: Transform + pos: -6.5,11.5 + parent: 8364 - uid: 101 components: - type: Transform @@ -130913,16 +132651,41 @@ entities: - type: Transform pos: -33.5,-63.5 parent: 8364 - - uid: 4727 - components: - - type: Transform - pos: -21.5,12.5 - parent: 8364 - uid: 7038 components: - type: Transform pos: -24.5,-43.5 parent: 8364 + - uid: 7904 + components: + - type: Transform + pos: -13.5,12.5 + parent: 8364 + - uid: 8869 + components: + - type: Transform + pos: -21.5,16.5 + parent: 8364 + - uid: 9422 + components: + - type: Transform + pos: 24.5,21.5 + parent: 8364 + - uid: 9448 + components: + - type: Transform + pos: 14.5,36.5 + parent: 8364 + - uid: 9833 + components: + - type: Transform + pos: 8.5,33.5 + parent: 8364 + - uid: 9842 + components: + - type: Transform + pos: 14.5,38.5 + parent: 8364 - uid: 11574 components: - type: Transform @@ -130995,11 +132758,6 @@ entities: parent: 8364 - proto: MaintenanceWeaponSpawner entities: - - uid: 13816 - components: - - type: Transform - pos: -19.5,14.5 - parent: 8364 - uid: 21741 components: - type: Transform @@ -131059,6 +132817,13 @@ entities: - type: Transform pos: -10.435738,-39.009453 parent: 8364 +- proto: Mattress + entities: + - uid: 9413 + components: + - type: Transform + pos: 25.5,21.5 + parent: 8364 - proto: MechEquipmentGrabberSmall entities: - uid: 16614 @@ -131068,6 +132833,11 @@ entities: parent: 8364 - proto: MedicalBed entities: + - uid: 5082 + components: + - type: Transform + pos: 2.5,32.5 + parent: 8364 - uid: 5457 components: - type: Transform @@ -131083,21 +132853,16 @@ entities: - type: Transform pos: 32.5,-36.5 parent: 8364 - - uid: 5594 + - uid: 7885 components: - type: Transform - pos: -6.5,31.5 + pos: 2.5,33.5 parent: 8364 - uid: 18648 components: - type: Transform pos: 30.5,-27.5 parent: 8364 - - uid: 19933 - components: - - type: Transform - pos: -6.5,32.5 - parent: 8364 - proto: MedicalTechFab entities: - uid: 27390 @@ -131114,10 +132879,10 @@ entities: parent: 8364 - proto: MedkitBruteFilled entities: - - uid: 9118 + - uid: 7790 components: - type: Transform - pos: -6.4267135,29.876205 + pos: 2.4400573,31.642862 parent: 8364 - uid: 21717 components: @@ -131163,10 +132928,10 @@ entities: - type: Transform pos: 22.595015,9.598176 parent: 8364 - - uid: 8749 + - uid: 7895 components: - type: Transform - pos: -6.5648327,29.651033 + pos: 2.2752664,31.845316 parent: 8364 - uid: 12264 components: @@ -131190,10 +132955,10 @@ entities: - type: Transform pos: 38.68753,-29.353252 parent: 8364 - - uid: 7927 + - uid: 8383 components: - type: Transform - pos: -6.3642135,29.51683 + pos: 2.7963579,31.772348 parent: 8364 - proto: MedkitRadiationFilled entities: @@ -131288,6 +133053,12 @@ entities: - type: Transform pos: 32.5,1.5 parent: 8364 + - uid: 8834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,40.5 + parent: 8364 - uid: 13778 components: - type: Transform @@ -131313,12 +133084,6 @@ entities: - type: Transform pos: -44.5,-11.5 parent: 8364 - - uid: 26359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,41.5 - parent: 8364 - proto: ModularGrenade entities: - uid: 26858 @@ -131350,11 +133115,6 @@ entities: - type: Transform pos: -52.538174,-8.415283 parent: 8364 - - uid: 25730 - components: - - type: Transform - pos: -18.537788,51.577576 - parent: 8364 - proto: MopBucketFull entities: - uid: 27579 @@ -131384,11 +133144,6 @@ entities: - type: Transform pos: -49.538174,-7.4621577 parent: 8364 - - uid: 25674 - components: - - type: Transform - pos: -18.522163,51.546326 - parent: 8364 - uid: 27580 components: - type: Transform @@ -131401,44 +133156,12 @@ entities: parent: 8364 - proto: Morgue entities: - - uid: 8746 + - uid: 6616 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,29.5 + pos: 2.5,29.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - morgue_tray: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - uid: 9447 components: - type: Transform @@ -131866,11 +133589,26 @@ entities: parent: 8364 - proto: NitrogenCanister entities: + - uid: 2468 + components: + - type: Transform + pos: -10.5,49.5 + parent: 8364 - uid: 3026 components: - type: Transform pos: 34.5,-69.5 parent: 8364 + - uid: 8566 + components: + - type: Transform + pos: 6.5,38.5 + parent: 8364 + - uid: 9420 + components: + - type: Transform + pos: 14.5,25.5 + parent: 8364 - uid: 11705 components: - type: Transform @@ -131933,6 +133671,11 @@ entities: parent: 8364 - proto: NitrogenTankFilled entities: + - uid: 7286 + components: + - type: Transform + pos: -13.543497,50.592064 + parent: 8364 - uid: 27177 components: - type: Transform @@ -132019,6 +133762,11 @@ entities: - Silver - proto: OxygenCanister entities: + - uid: 90 + components: + - type: Transform + pos: -9.5,49.5 + parent: 8364 - uid: 3791 components: - type: Transform @@ -132034,10 +133782,15 @@ entities: - type: Transform pos: -29.5,-35.5 parent: 8364 - - uid: 8916 + - uid: 8595 components: - type: Transform - pos: -16.5,22.5 + pos: 7.5,38.5 + parent: 8364 + - uid: 9419 + components: + - type: Transform + pos: 14.5,24.5 parent: 8364 - uid: 11706 components: @@ -132143,29 +133896,18 @@ entities: - type: Transform pos: 79.485985,-43.45112 parent: 8364 - - type: GasTank - toggleActionEntity: 25167 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 25167 - proto: OxygenTankFilled entities: + - uid: 5466 + components: + - type: Transform + pos: -13.366326,50.57122 + parent: 8364 - uid: 20121 components: - type: Transform pos: 78.58031,-56.4234 parent: 8364 - - type: GasTank - toggleActionEntity: 25181 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 25181 - uid: 27619 components: - type: Transform @@ -132173,10 +133915,10 @@ entities: parent: 8364 - proto: PackPaperRollingFilters entities: - - uid: 26474 + - uid: 8910 components: - type: Transform - pos: -21.532673,46.54654 + pos: -24.46348,28.649601 parent: 8364 - proto: PaintingAmogusTriptych entities: @@ -132355,52 +134097,10 @@ entities: - type: Transform pos: 20.509228,6.5730886 parent: 8364 - - uid: 8804 + - uid: 8857 components: - type: Transform - rot: 0.00033503142185509205 rad - pos: -11.322522,32.73645 - parent: 8364 - - uid: 8805 - components: - - type: Transform - rot: 0.00012926501221954823 rad - pos: -11.264384,32.527164 - parent: 8364 - - uid: 8806 - components: - - type: Transform - pos: -11.519596,32.598755 - parent: 8364 - - uid: 9406 - components: - - type: Transform - pos: 13.54273,39.529617 - parent: 8364 - - uid: 9717 - components: - - type: Transform - pos: -10.5,16.5 - parent: 8364 - - uid: 9718 - components: - - type: Transform - pos: -10.5,16.5 - parent: 8364 - - uid: 9719 - components: - - type: Transform - pos: -10.5,16.5 - parent: 8364 - - uid: 9720 - components: - - type: Transform - pos: -10.5,16.5 - parent: 8364 - - uid: 9721 - components: - - type: Transform - pos: -10.5,16.5 + pos: 5.5189376,25.712112 parent: 8364 - uid: 9834 components: @@ -132639,25 +134339,17 @@ entities: - type: Transform pos: -22.5,-13.5 parent: 8364 - - uid: 8456 + - uid: 9160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,24.5 - parent: 8364 - - uid: 8457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,24.5 + pos: -8.5,38.5 parent: 8364 - proto: PaperBin20 entities: - - uid: 8458 + - uid: 8551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,32.5 + pos: 8.5,43.5 parent: 8364 - proto: PaperBin5 entities: @@ -132666,12 +134358,6 @@ entities: - type: Transform pos: 11.5,-34.5 parent: 8364 - - uid: 8455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,19.5 - parent: 8364 - uid: 17631 components: - type: Transform @@ -132679,42 +134365,11 @@ entities: parent: 8364 - proto: PaperOffice entities: - - uid: 9390 + - uid: 8854 components: - type: Transform - parent: 9384 - - type: Physics - canCollide: False - - uid: 9453 - components: - - type: Transform - parent: 9384 - - type: Physics - canCollide: False - - uid: 9454 - components: - - type: Transform - parent: 9384 - - type: Physics - canCollide: False - - uid: 9507 - components: - - type: Transform - parent: 9384 - - type: Physics - canCollide: False - - uid: 9515 - components: - - type: Transform - parent: 9384 - - type: Physics - canCollide: False - - uid: 9516 - components: - - type: Transform - parent: 9384 - - type: Physics - canCollide: False + pos: 5.6231565,25.524483 + parent: 8364 - proto: ParchisBoard entities: - uid: 11673 @@ -132722,11 +134377,6 @@ entities: - type: Transform pos: 61.5,-7.5 parent: 8364 - - uid: 26361 - components: - - type: Transform - pos: -14.380374,40.648094 - parent: 8364 - uid: 26864 components: - type: Transform @@ -132881,45 +134531,15 @@ entities: - type: Transform pos: -21.937536,-13.335235 parent: 8364 - - uid: 8461 + - uid: 7177 components: - type: Transform - pos: 13.5,24.5 + pos: 10.599484,24.177439 parent: 8364 - - uid: 8462 + - uid: 8688 components: - type: Transform - pos: 17.5,24.5 - parent: 8364 - - uid: 8463 - components: - - type: Transform - pos: 12.507681,19.623228 - parent: 8364 - - uid: 8603 - components: - - type: Transform - pos: 3.370025,24.35413 - parent: 8364 - - uid: 8802 - components: - - type: Transform - pos: -11.650579,32.527164 - parent: 8364 - - uid: 9232 - components: - - type: Transform - pos: -1.6906976,30.406588 - parent: 8364 - - uid: 9727 - components: - - type: Transform - pos: -10.415172,17.04186 - parent: 8364 - - uid: 9728 - components: - - type: Transform - pos: -10.415172,17.04186 + pos: 5.185439,25.68084 parent: 8364 - uid: 10846 components: @@ -133106,13 +134726,6 @@ entities: - type: Transform pos: 52.54258,-74.65333 parent: 8364 -- proto: Pill - entities: - - uid: 26538 - components: - - type: Transform - pos: -4.40826,47.26007 - parent: 8364 - proto: PillCanister entities: - uid: 2349 @@ -133139,6 +134752,11 @@ entities: parent: 8364 - proto: PlantBGoneSpray entities: + - uid: 8819 + components: + - type: Transform + pos: -23.4709,42.838135 + parent: 8364 - uid: 13500 components: - type: Transform @@ -133221,34 +134839,12 @@ entities: parent: 8364 - proto: PlasmaWindoorSecureArmoryLocked entities: - - uid: 9517 + - uid: 28635 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,37.5 + pos: -7.5,46.5 parent: 8364 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 11608: - - - DoorStatus - - Close -- proto: PlasmaWindoorSecureSecurityLocked - entities: - - uid: 11608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,37.5 - parent: 8364 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 9517: - - - DoorStatus - - Close - proto: PlasticFlapsAirtightClear entities: - uid: 3067 @@ -133256,11 +134852,6 @@ entities: - type: Transform pos: -44.5,-27.5 parent: 8364 - - uid: 6922 - components: - - type: Transform - pos: 26.5,24.5 - parent: 8364 - uid: 13804 components: - type: Transform @@ -133335,55 +134926,33 @@ entities: - type: Transform pos: -21.53196,-58.55052 parent: 8364 -- proto: PlushieSharkBlue - entities: - - uid: 26571 - components: - - type: Transform - pos: -8.5066185,51.492676 - parent: 8364 - proto: PortableFlasher entities: - - uid: 9267 + - uid: 7631 components: - type: Transform anchored: False - pos: -12.5,25.5 + pos: -13.5,40.5 parent: 8364 - type: TriggerOnProximity enabled: False - type: Physics bodyType: Dynamic - - uid: 9380 + - uid: 7703 components: - type: Transform anchored: False - pos: -12.5,23.5 + pos: -14.5,40.5 parent: 8364 - type: TriggerOnProximity enabled: False - type: Physics bodyType: Dynamic - - uid: 10028 + - uid: 19946 components: - type: Transform - anchored: False - pos: -2.5,35.5 + pos: -10.5,44.5 parent: 8364 - - type: TriggerOnProximity - enabled: False - - type: Physics - bodyType: Dynamic - - uid: 25713 - components: - - type: Transform - anchored: False - pos: -12.5,24.5 - parent: 8364 - - type: TriggerOnProximity - enabled: False - - type: Physics - bodyType: Dynamic - proto: PortableGeneratorJrPacman entities: - uid: 6258 @@ -133431,11 +135000,6 @@ entities: - type: Transform pos: -43.5,-16.5 parent: 8364 - - uid: 27698 - components: - - type: Transform - pos: 24.5,23.5 - parent: 8364 - uid: 27699 components: - type: Transform @@ -133561,27 +135125,6 @@ entities: - type: Transform pos: 8.5,-45.5 parent: 8364 -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 26557 - components: - - type: Transform - pos: -19.5,41.5 - parent: 8364 -- proto: PosterContrabandBountyHunters - entities: - - uid: 26556 - components: - - type: Transform - pos: -18.5,49.5 - parent: 8364 -- proto: PosterContrabandBustyBackdoorExoBabes6 - entities: - - uid: 7995 - components: - - type: Transform - pos: 6.5,-37.5 - parent: 8364 - proto: PosterContrabandClown entities: - uid: 21985 @@ -133608,13 +135151,6 @@ entities: - type: Transform pos: -48.5,-5.5 parent: 8364 -- proto: PosterContrabandFreeTonto - entities: - - uid: 26558 - components: - - type: Transform - pos: -11.5,46.5 - parent: 8364 - proto: PosterContrabandGreyTide entities: - uid: 14108 @@ -133648,13 +135184,6 @@ entities: - type: Transform pos: 75.5,-34.5 parent: 8364 -- proto: PosterContrabandLustyExomorph - entities: - - uid: 27558 - components: - - type: Transform - pos: 3.5,-37.5 - parent: 8364 - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 21973 @@ -133662,12 +135191,19 @@ entities: - type: Transform pos: -34.5,5.5 parent: 8364 -- proto: PosterContrabandSyndicateRecruitment +- proto: PosterContrabandRealExomorph entities: - - uid: 26562 + - uid: 27558 components: - type: Transform - pos: -22.5,49.5 + pos: 3.5,-37.5 + parent: 8364 +- proto: PosterContrabandRouny + entities: + - uid: 7995 + components: + - type: Transform + pos: 6.5,-37.5 parent: 8364 - proto: PosterContrabandTools entities: @@ -133728,11 +135264,6 @@ entities: - type: Transform pos: 43.5,-64.5 parent: 8364 - - uid: 21787 - components: - - type: Transform - pos: -4.5,12.5 - parent: 8364 - proto: PosterLegitFruitBowl entities: - uid: 9442 @@ -133813,20 +135344,6 @@ entities: - type: Transform pos: 5.5,-23.5 parent: 8364 -- proto: PosterLegitNoERP - entities: - - uid: 26559 - components: - - type: Transform - pos: -22.5,46.5 - parent: 8364 -- proto: PosterLegitObey - entities: - - uid: 26560 - components: - - type: Transform - pos: -4.5,46.5 - parent: 8364 - proto: PosterLegitPDAAd entities: - uid: 5567 @@ -133893,11 +135410,6 @@ entities: - type: Transform pos: 12.5,-37.5 parent: 8364 - - uid: 26564 - components: - - type: Transform - pos: -10.5,50.5 - parent: 8364 - proto: PosterLegitScience entities: - uid: 26769 @@ -133905,25 +135417,6 @@ entities: - type: Transform pos: 81.5,-50.5 parent: 8364 -- proto: PosterLegitSecWatch - entities: - - uid: 9402 - components: - - type: Transform - pos: 10.5,35.5 - parent: 8364 - - uid: 26561 - components: - - type: Transform - pos: -10.5,53.5 - parent: 8364 -- proto: PosterLegitStateLaws - entities: - - uid: 26563 - components: - - type: Transform - pos: -7.5,40.5 - parent: 8364 - proto: PosterLegitWorkForAFuture entities: - uid: 2386 @@ -133931,11 +135424,6 @@ entities: - type: Transform pos: 54.5,-32.5 parent: 8364 - - uid: 26460 - components: - - type: Transform - pos: -3.5,52.5 - parent: 8364 - proto: PottedPlant0 entities: - uid: 26870 @@ -133977,20 +135465,8 @@ entities: - type: Transform pos: -6.5,-19.5 parent: 8364 -- proto: PottedPlant11 - entities: - - uid: 9464 - components: - - type: Transform - pos: -8.5,50.5 - parent: 8364 - proto: PottedPlant12 entities: - - uid: 11601 - components: - - type: Transform - pos: -5.5,17.5 - parent: 8364 - uid: 12477 components: - type: Transform @@ -134003,13 +135479,6 @@ entities: - type: Transform pos: 64.5,-0.5 parent: 8364 -- proto: PottedPlant16 - entities: - - uid: 20158 - components: - - type: Transform - pos: -14.5,26.5 - parent: 8364 - proto: PottedPlant19 entities: - uid: 12476 @@ -134126,6 +135595,11 @@ entities: parent: 8364 - proto: PottedPlantRandom entities: + - uid: 48 + components: + - type: Transform + pos: 5.5,51.5 + parent: 8364 - uid: 405 components: - type: Transform @@ -134308,16 +135782,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 21791 - components: - - type: Transform - pos: 11.5,35.5 - parent: 8364 - - uid: 21792 - components: - - type: Transform - pos: 9.5,30.5 - parent: 8364 - uid: 21987 components: - type: Transform @@ -134333,6 +135797,63 @@ entities: - type: Transform pos: 73.5,-5.5 parent: 8364 +- proto: PottedPlantRandomPlastic + entities: + - uid: 7185 + components: + - type: Transform + pos: 9.5,23.5 + parent: 8364 + - uid: 7965 + components: + - type: Transform + pos: -14.5,38.5 + parent: 8364 + - uid: 8652 + components: + - type: Transform + pos: -0.5,39.5 + parent: 8364 + - uid: 9053 + components: + - type: Transform + pos: -9.5,14.5 + parent: 8364 + - uid: 9054 + components: + - type: Transform + pos: -4.5,14.5 + parent: 8364 + - uid: 9120 + components: + - type: Transform + pos: -16.5,17.5 + parent: 8364 + - uid: 9121 + components: + - type: Transform + pos: -3.5,24.5 + parent: 8364 + - uid: 26536 + components: + - type: Transform + pos: 4.5,40.5 + parent: 8364 + - uid: 26547 + components: + - type: Transform + pos: 2.5,49.5 + parent: 8364 + - uid: 26548 + components: + - type: Transform + pos: 2.5,25.5 + parent: 8364 + - uid: 26549 + components: + - type: Transform + pos: -4.5,46.5 + parent: 8364 - proto: PottedPlantRD entities: - uid: 5297 @@ -134340,13 +135861,6 @@ entities: - type: Transform pos: 70.5,-37.5 parent: 8364 -- proto: PowerCellPotato - entities: - - uid: 20056 - components: - - type: Transform - pos: -18.541685,16.576048 - parent: 8364 - proto: PowerCellRecharger entities: - uid: 3291 @@ -134364,6 +135878,12 @@ entities: - type: Transform pos: 5.5,-44.5 parent: 8364 + - uid: 7663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,43.5 + parent: 8364 - uid: 12054 components: - type: Transform @@ -134437,11 +135957,6 @@ entities: - type: Transform pos: 38.5,-28.5 parent: 8364 - - uid: 20155 - components: - - type: Transform - pos: -18.5,16.5 - parent: 8364 - uid: 21179 components: - type: Transform @@ -134457,11 +135972,21 @@ entities: - type: Transform pos: -51.5,-6.5 parent: 8364 + - uid: 23945 + components: + - type: Transform + pos: 8.5,42.5 + parent: 8364 - uid: 24692 components: - type: Transform pos: 29.5,-23.5 parent: 8364 + - uid: 25823 + components: + - type: Transform + pos: -2.5,31.5 + parent: 8364 - uid: 25969 components: - type: Transform @@ -134477,11 +136002,6 @@ entities: - type: Transform pos: 22.5,9.5 parent: 8364 - - uid: 25972 - components: - - type: Transform - pos: 6.5,32.5 - parent: 8364 - uid: 25973 components: - type: Transform @@ -134524,6 +136044,60 @@ entities: - type: Transform pos: 74.5232,-35.42073 parent: 8364 +- proto: PoweredDimSmallLight + entities: + - uid: 25709 + components: + - type: Transform + pos: -16.5,38.5 + parent: 8364 + - uid: 25729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,29.5 + parent: 8364 + - uid: 25745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,18.5 + parent: 8364 + - uid: 25746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,11.5 + parent: 8364 + - uid: 25747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 8364 + - uid: 25748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,24.5 + parent: 8364 + - uid: 25749 + components: + - type: Transform + pos: 23.5,24.5 + parent: 8364 + - uid: 25750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,36.5 + parent: 8364 + - uid: 28628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,35.5 + parent: 8364 - proto: Poweredlight entities: - uid: 278 @@ -134551,13 +136125,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 855 - components: - - type: Transform - pos: 10.5,28.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1876 components: - type: Transform @@ -134780,221 +136347,11 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-9.5 parent: 8364 - - uid: 8475 - components: - - type: Transform - pos: 15.5,28.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,22.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,31.5 - parent: 8364 - - uid: 8771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,26.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,27.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8774 - components: - - type: Transform - pos: 5.5,28.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 9155 components: - type: Transform pos: -26.5,-29.5 parent: 8364 - - uid: 9176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,30.5 - parent: 8364 - - uid: 9180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,34.5 - parent: 8364 - - uid: 9183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,37.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9271 - components: - - type: Transform - pos: -17.5,24.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,19.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,31.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,33.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9275 - components: - - type: Transform - pos: 3.5,39.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,36.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9277 - components: - - type: Transform - pos: 8.5,41.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,39.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9280 - components: - - type: Transform - pos: 15.5,35.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,34.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,30.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9598 - components: - - type: Transform - pos: 23.5,42.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,34.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9653 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,16.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,13.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,16.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,13.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,20.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10101 - components: - - type: Transform - pos: -21.5,24.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10450 components: - type: Transform @@ -135344,14 +136701,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,13.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12850 components: - type: Transform @@ -135421,28 +136770,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12859 - components: - - type: Transform - pos: 9.5,21.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12860 - components: - - type: Transform - pos: -3.5,21.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,19.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12862 components: - type: Transform @@ -136233,14 +137560,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 18569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,39.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 18619 components: - type: Transform @@ -136321,6 +137640,12 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-12.5 parent: 8364 + - uid: 19930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,51.5 + parent: 8364 - uid: 19956 components: - type: Transform @@ -136643,14 +137968,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,35.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 23020 components: - type: Transform @@ -136690,6 +138007,263 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-21.5 parent: 8364 + - uid: 25676 + components: + - type: Transform + pos: 4.5,27.5 + parent: 8364 + - uid: 25679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,26.5 + parent: 8364 + - uid: 25680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,25.5 + parent: 8364 + - uid: 25681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,36.5 + parent: 8364 + - uid: 25684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,36.5 + parent: 8364 + - uid: 25685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,36.5 + parent: 8364 + - uid: 25686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,40.5 + parent: 8364 + - uid: 25689 + components: + - type: Transform + pos: -6.5,53.5 + parent: 8364 + - uid: 25690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,43.5 + parent: 8364 + - uid: 25691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,40.5 + parent: 8364 + - uid: 25692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,49.5 + parent: 8364 + - uid: 25694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,40.5 + parent: 8364 + - uid: 25695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,43.5 + parent: 8364 + - uid: 25696 + components: + - type: Transform + pos: 10.5,45.5 + parent: 8364 + - uid: 25697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,48.5 + parent: 8364 + - uid: 25698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,48.5 + parent: 8364 + - uid: 25699 + components: + - type: Transform + pos: 9.5,51.5 + parent: 8364 + - uid: 25700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,47.5 + parent: 8364 + - uid: 25701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,52.5 + parent: 8364 + - uid: 25702 + components: + - type: Transform + pos: 2.5,55.5 + parent: 8364 + - uid: 25704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,40.5 + parent: 8364 + - uid: 25705 + components: + - type: Transform + pos: -13.5,47.5 + parent: 8364 + - uid: 25712 + components: + - type: Transform + pos: -7.5,34.5 + parent: 8364 + - uid: 25713 + components: + - type: Transform + pos: -14.5,30.5 + parent: 8364 + - uid: 25714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,30.5 + parent: 8364 + - uid: 25715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,26.5 + parent: 8364 + - uid: 25716 + components: + - type: Transform + pos: -9.5,29.5 + parent: 8364 + - uid: 25717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,27.5 + parent: 8364 + - uid: 25718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,22.5 + parent: 8364 + - uid: 25719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,19.5 + parent: 8364 + - uid: 25720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,16.5 + parent: 8364 + - uid: 25721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,19.5 + parent: 8364 + - uid: 25722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 8364 + - uid: 25723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 8364 + - uid: 25724 + components: + - type: Transform + pos: -10.5,24.5 + parent: 8364 + - uid: 25725 + components: + - type: Transform + pos: -4.5,24.5 + parent: 8364 + - uid: 25727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,31.5 + parent: 8364 + - uid: 25728 + components: + - type: Transform + pos: 7.5,31.5 + parent: 8364 + - uid: 25734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,23.5 + parent: 8364 + - uid: 25737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,41.5 + parent: 8364 + - uid: 25738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,37.5 + parent: 8364 + - uid: 25739 + components: + - type: Transform + pos: -28.5,38.5 + parent: 8364 + - uid: 25740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,33.5 + parent: 8364 + - uid: 25743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,32.5 + parent: 8364 + - uid: 25764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,35.5 + parent: 8364 - uid: 25790 components: - type: Transform @@ -136794,79 +138368,6 @@ entities: - type: Transform pos: 15.5,-70.5 parent: 8364 - - uid: 26368 - components: - - type: Transform - pos: -19.5,45.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,50.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26370 - components: - - type: Transform - pos: -14.5,45.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26371 - components: - - type: Transform - pos: -5.5,45.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26372 - components: - - type: Transform - pos: -9.5,41.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,49.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26374 - components: - - type: Transform - pos: -1.5,51.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26375 - components: - - type: Transform - pos: 3.5,51.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26376 - components: - - type: Transform - pos: -8.5,53.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,36.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 26599 components: - type: Transform @@ -137064,6 +138565,18 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-31.5 parent: 8364 + - uid: 28640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,44.5 + parent: 8364 + - uid: 28641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,47.5 + parent: 8364 - proto: PoweredlightExterior entities: - uid: 18 @@ -137074,12 +138587,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,47.5 - parent: 8364 - uid: 10007 components: - type: Transform @@ -137088,14 +138595,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,27.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11273 components: - type: Transform @@ -137166,18 +138665,6 @@ entities: powerLoad: 0 - proto: PoweredlightLED entities: - - uid: 4952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,41.5 - parent: 8364 - - uid: 9175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,41.5 - parent: 8364 - uid: 14468 components: - type: Transform @@ -137227,6 +138714,23 @@ entities: powerLoad: 0 - proto: PoweredlightSodium entities: + - uid: 11608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,52.5 + parent: 8364 + - uid: 15129 + components: + - type: Transform + pos: -16.5,47.5 + parent: 8364 + - uid: 16718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,40.5 + parent: 8364 - uid: 21778 components: - type: Transform @@ -137406,14 +138910,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,23.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7238 components: - type: Transform @@ -137422,70 +138918,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,22.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,22.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,23.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,24.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,24.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,24.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,24.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,31.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 9925 components: - type: Transform @@ -137494,21 +138926,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,22.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9929 - components: - - type: Transform - pos: 27.5,30.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10588 components: - type: Transform @@ -137821,42 +139238,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 13815 - components: - - type: Transform - pos: -17.5,10.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,16.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13819 - components: - - type: Transform - pos: -8.5,13.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13820 - components: - - type: Transform - pos: -3.5,11.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13821 - components: - - type: Transform - pos: -15.5,13.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 13916 components: - type: Transform @@ -138468,6 +139849,87 @@ entities: - type: Transform pos: -2.5,-29.5 parent: 8364 + - uid: 25682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,31.5 + parent: 8364 + - uid: 25683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,33.5 + parent: 8364 + - uid: 25707 + components: + - type: Transform + pos: -8.5,42.5 + parent: 8364 + - uid: 25708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,40.5 + parent: 8364 + - uid: 25710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,34.5 + parent: 8364 + - uid: 25711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,32.5 + parent: 8364 + - uid: 25726 + components: + - type: Transform + pos: -23.5,23.5 + parent: 8364 + - uid: 25735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,25.5 + parent: 8364 + - uid: 25736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,29.5 + parent: 8364 + - uid: 25741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,40.5 + parent: 8364 + - uid: 25742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,45.5 + parent: 8364 + - uid: 25744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,21.5 + parent: 8364 + - uid: 25763 + components: + - type: Transform + pos: -1.5,41.5 + parent: 8364 + - uid: 25765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,40.5 + parent: 8364 - uid: 25883 components: - type: Transform @@ -138482,54 +139944,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,41.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,41.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,47.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,47.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,42.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 26425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,41.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 26577 components: - type: Transform @@ -138628,6 +140042,24 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 8364 + - uid: 28602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,49.5 + parent: 8364 + - uid: 28603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,52.5 + parent: 8364 + - uid: 28604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,55.5 + parent: 8364 - proto: PoweredSmallLightEmpty entities: - uid: 15690 @@ -138660,6 +140092,23 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-10.5 parent: 8364 + - uid: 25703 + components: + - type: Transform + pos: -1.5,55.5 + parent: 8364 + - uid: 25730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,23.5 + parent: 8364 + - uid: 25731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,26.5 + parent: 8364 - uid: 27930 components: - type: Transform @@ -138719,6 +140168,11 @@ entities: parent: 8364 - proto: Rack entities: + - uid: 16 + components: + - type: Transform + pos: -13.5,12.5 + parent: 8364 - uid: 36 components: - type: Transform @@ -138729,6 +140183,11 @@ entities: - type: Transform pos: -5.5,-57.5 parent: 8364 + - uid: 952 + components: + - type: Transform + pos: -6.5,11.5 + parent: 8364 - uid: 1060 components: - type: Transform @@ -138782,10 +140241,15 @@ entities: - type: Transform pos: 3.5,-59.5 parent: 8364 - - uid: 5095 + - uid: 4933 components: - type: Transform - pos: -15.5,34.5 + pos: -12.5,40.5 + parent: 8364 + - uid: 5105 + components: + - type: Transform + pos: 7.5,47.5 parent: 8364 - uid: 5250 components: @@ -138797,11 +140261,6 @@ entities: - type: Transform pos: 78.5,-56.5 parent: 8364 - - uid: 6265 - components: - - type: Transform - pos: 24.5,21.5 - parent: 8364 - uid: 6288 components: - type: Transform @@ -138812,65 +140271,94 @@ entities: - type: Transform pos: 66.5,-64.5 parent: 8364 - - uid: 8779 + - uid: 6635 components: - type: Transform - pos: 3.5,39.5 + rot: 3.141592653589793 rad + pos: 8.5,33.5 parent: 8364 - - uid: 9002 + - uid: 7338 components: - type: Transform - pos: -11.5,38.5 + pos: 7.5,48.5 parent: 8364 - - uid: 9085 + - uid: 7340 components: - type: Transform - pos: -8.5,53.5 + pos: -13.5,50.5 parent: 8364 - - uid: 9191 + - uid: 7756 components: - type: Transform - pos: 1.5,39.5 + pos: -12.5,12.5 parent: 8364 - - uid: 9231 + - uid: 7845 components: - type: Transform - pos: -0.5,39.5 + pos: -14.5,42.5 parent: 8364 - - uid: 9364 + - uid: 7847 components: - type: Transform - pos: 27.5,21.5 + rot: 3.141592653589793 rad + pos: -14.5,46.5 parent: 8364 - - uid: 9483 + - uid: 8433 components: - type: Transform - pos: 2.5,39.5 + pos: 7.5,31.5 parent: 8364 - - uid: 9637 + - uid: 8597 components: - type: Transform - pos: -3.5,17.5 + pos: -11.5,40.5 parent: 8364 - - uid: 9638 + - uid: 8754 components: - type: Transform - pos: -12.5,17.5 + pos: 8.5,31.5 + parent: 8364 + - uid: 8858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,27.5 + parent: 8364 + - uid: 9082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,34.5 + parent: 8364 + - uid: 9414 + components: + - type: Transform + pos: 24.5,21.5 + parent: 8364 + - uid: 9430 + components: + - type: Transform + pos: 14.5,19.5 + parent: 8364 + - uid: 9431 + components: + - type: Transform + pos: 14.5,21.5 + parent: 8364 + - uid: 9455 + components: + - type: Transform + pos: 13.5,29.5 parent: 8364 - uid: 9680 components: - type: Transform pos: -44.5,14.5 parent: 8364 - - uid: 9809 + - uid: 9815 components: - type: Transform - pos: 25.5,25.5 - parent: 8364 - - uid: 10086 - components: - - type: Transform - pos: 4.5,39.5 + pos: 10.5,33.5 parent: 8364 - uid: 10274 components: @@ -138957,6 +140445,16 @@ entities: - type: Transform pos: -48.5,23.5 parent: 8364 + - uid: 13293 + components: + - type: Transform + pos: -17.5,30.5 + parent: 8364 + - uid: 13395 + components: + - type: Transform + pos: -17.5,26.5 + parent: 8364 - uid: 13831 components: - type: Transform @@ -139162,6 +140660,12 @@ entities: - type: Transform pos: 84.5,-48.5 parent: 8364 + - uid: 19948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,19.5 + parent: 8364 - uid: 20051 components: - type: Transform @@ -139182,11 +140686,6 @@ entities: - type: Transform pos: 72.5,-35.5 parent: 8364 - - uid: 21326 - components: - - type: Transform - pos: 0.5,39.5 - parent: 8364 - uid: 21389 components: - type: Transform @@ -139248,11 +140747,6 @@ entities: - type: Transform pos: 81.5,-23.5 parent: 8364 - - uid: 26453 - components: - - type: Transform - pos: -17.5,51.5 - parent: 8364 - uid: 26576 components: - type: Transform @@ -139316,6 +140810,12 @@ entities: - type: Transform pos: 12.5,-49.5 parent: 8364 + - uid: 28638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,44.5 + parent: 8364 - proto: RadiationCollector entities: - uid: 3780 @@ -139526,7 +141026,6 @@ entities: - uid: 20071 components: - type: Transform - rot: 1.5707963267948966 rad pos: 79.5,-30.5 parent: 8364 - proto: RandomArtifactSpawner20 @@ -139608,6 +141107,115 @@ entities: - type: Transform pos: -1.5,-27.5 parent: 8364 +- proto: RandomCableHVSpawner + entities: + - uid: 26913 + components: + - type: Transform + pos: -5.5,-86.5 + parent: 8364 + - uid: 26914 + components: + - type: Transform + pos: -5.5,-87.5 + parent: 8364 + - uid: 26915 + components: + - type: Transform + pos: -4.5,-85.5 + parent: 8364 + - uid: 28377 + components: + - type: Transform + pos: -5.5,-85.5 + parent: 8364 + - uid: 28387 + components: + - type: Transform + pos: -4.5,-86.5 + parent: 8364 + - uid: 28388 + components: + - type: Transform + pos: -4.5,-87.5 + parent: 8364 + - uid: 28389 + components: + - type: Transform + pos: 3.5,-85.5 + parent: 8364 + - uid: 28390 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 8364 + - uid: 28391 + components: + - type: Transform + pos: 3.5,-87.5 + parent: 8364 + - uid: 28392 + components: + - type: Transform + pos: 4.5,-85.5 + parent: 8364 + - uid: 28393 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 8364 + - uid: 28394 + components: + - type: Transform + pos: 4.5,-87.5 + parent: 8364 +- proto: RandomCableMVSpawner + entities: + - uid: 7861 + components: + - type: Transform + pos: -21.5,4.5 + parent: 8364 + - uid: 7863 + components: + - type: Transform + pos: -20.5,4.5 + parent: 8364 + - uid: 7905 + components: + - type: Transform + pos: -19.5,4.5 + parent: 8364 + - uid: 12678 + components: + - type: Transform + pos: -7.5,-80.5 + parent: 8364 + - uid: 16550 + components: + - type: Transform + pos: 7.5,-81.5 + parent: 8364 + - uid: 22469 + components: + - type: Transform + pos: -8.5,-85.5 + parent: 8364 + - uid: 23185 + components: + - type: Transform + pos: -8.5,-84.5 + parent: 8364 + - uid: 23186 + components: + - type: Transform + pos: -8.5,-81.5 + parent: 8364 + - uid: 28405 + components: + - type: Transform + pos: -8.5,-91.5 + parent: 8364 - proto: RandomDrinkGlass entities: - uid: 5207 @@ -139728,11 +141336,6 @@ entities: - type: Transform pos: 52.5,0.5 parent: 8364 - - uid: 9618 - components: - - type: Transform - pos: 23.5,43.5 - parent: 8364 - uid: 22272 components: - type: Transform @@ -139758,16 +141361,6 @@ entities: - type: Transform pos: -32.5,11.5 parent: 8364 - - uid: 22281 - components: - - type: Transform - pos: -13.5,12.5 - parent: 8364 - - uid: 22282 - components: - - type: Transform - pos: -9.5,12.5 - parent: 8364 - uid: 22283 components: - type: Transform @@ -139783,11 +141376,6 @@ entities: - type: Transform pos: 10.5,16.5 parent: 8364 - - uid: 22286 - components: - - type: Transform - pos: 22.5,24.5 - parent: 8364 - uid: 22287 components: - type: Transform @@ -139981,31 +141569,10 @@ entities: - uid: 25200 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-28.5 parent: 8364 - - uid: 26565 - components: - - type: Transform - pos: -16.5,52.5 - parent: 8364 - - uid: 26566 - components: - - type: Transform - pos: 2.5,52.5 - parent: 8364 - proto: RandomPosterContraband entities: - - uid: 9254 - components: - - type: Transform - pos: -3.5,23.5 - parent: 8364 - - uid: 9452 - components: - - type: Transform - pos: -7.5,24.5 - parent: 8364 - uid: 22275 components: - type: Transform @@ -140048,41 +141615,11 @@ entities: - type: Transform pos: -19.5,-13.5 parent: 8364 - - uid: 8469 - components: - - type: Transform - pos: 11.5,26.5 - parent: 8364 - uid: 8905 components: - type: Transform pos: 1.5,6.5 parent: 8364 - - uid: 9446 - components: - - type: Transform - pos: 9.5,29.5 - parent: 8364 - - uid: 9449 - components: - - type: Transform - pos: 5.5,35.5 - parent: 8364 - - uid: 9451 - components: - - type: Transform - pos: 9.5,22.5 - parent: 8364 - - uid: 9455 - components: - - type: Transform - pos: -15.5,21.5 - parent: 8364 - - uid: 9456 - components: - - type: Transform - pos: -11.5,21.5 - parent: 8364 - uid: 16144 components: - type: Transform @@ -140206,13 +141743,11 @@ entities: - uid: 25199 components: - type: Transform - rot: 3.141592653589793 rad pos: 9.5,-28.5 parent: 8364 - uid: 25220 components: - type: Transform - rot: 3.141592653589793 rad pos: 2.5,-22.5 parent: 8364 - uid: 25844 @@ -140318,7 +141853,6 @@ entities: - uid: 28208 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,-19.5 parent: 8364 - proto: RandomSmokables @@ -140364,15 +141898,15 @@ entities: - type: Transform pos: 43.5,10.5 parent: 8364 - - uid: 9459 + - uid: 9426 components: - type: Transform - pos: 9.5,27.5 + pos: 19.5,26.5 parent: 8364 - - uid: 9460 + - uid: 9427 components: - type: Transform - pos: -12.5,26.5 + pos: 21.5,24.5 parent: 8364 - uid: 9474 components: @@ -140384,11 +141918,6 @@ entities: - type: Transform pos: 2.5,3.5 parent: 8364 - - uid: 9821 - components: - - type: Transform - pos: 24.5,27.5 - parent: 8364 - uid: 10417 components: - type: Transform @@ -140507,31 +142036,26 @@ entities: - uid: 12878 components: - type: Transform - rot: 3.141592653589793 rad pos: 81.5,-6.5 parent: 8364 - uid: 12879 components: - type: Transform - rot: 3.141592653589793 rad pos: 77.5,-11.5 parent: 8364 - uid: 12880 components: - type: Transform - rot: 3.141592653589793 rad pos: 68.5,-14.5 parent: 8364 - uid: 12881 components: - type: Transform - rot: 3.141592653589793 rad pos: 53.5,-12.5 parent: 8364 - uid: 12884 components: - type: Transform - rot: 3.141592653589793 rad pos: 23.5,-12.5 parent: 8364 - uid: 13856 @@ -140774,36 +142298,6 @@ entities: - type: Transform pos: 24.5,5.5 parent: 8364 - - uid: 26446 - components: - - type: Transform - pos: -4.5,43.5 - parent: 8364 - - uid: 26447 - components: - - type: Transform - pos: -7.5,48.5 - parent: 8364 - - uid: 26448 - components: - - type: Transform - pos: -0.5,50.5 - parent: 8364 - - uid: 26449 - components: - - type: Transform - pos: -21.5,44.5 - parent: 8364 - - uid: 26536 - components: - - type: Transform - pos: -10.5,45.5 - parent: 8364 - - uid: 26537 - components: - - type: Transform - pos: -12.5,47.5 - parent: 8364 - uid: 28237 components: - type: Transform @@ -140836,6 +142330,11 @@ entities: - type: Transform pos: 63.5,-54.5 parent: 8364 + - uid: 9425 + components: + - type: Transform + pos: 21.5,28.5 + parent: 8364 - proto: RandomVending entities: - uid: 1528 @@ -140843,6 +142342,11 @@ entities: - type: Transform pos: 24.5,2.5 parent: 8364 + - uid: 9159 + components: + - type: Transform + pos: 4.5,38.5 + parent: 8364 - uid: 12639 components: - type: Transform @@ -140882,11 +142386,6 @@ entities: - type: Transform pos: 9.5,-56.5 parent: 8364 - - uid: 8467 - components: - - type: Transform - pos: 14.5,19.5 - parent: 8364 - uid: 11816 components: - type: Transform @@ -140902,6 +142401,11 @@ entities: - type: Transform pos: -44.5,-4.5 parent: 8364 + - uid: 25751 + components: + - type: Transform + pos: 10.5,21.5 + parent: 8364 - uid: 27037 components: - type: Transform @@ -140914,11 +142418,6 @@ entities: - type: Transform pos: 14.5,-32.5 parent: 8364 - - uid: 7821 - components: - - type: Transform - pos: 13.5,19.5 - parent: 8364 - uid: 12638 components: - type: Transform @@ -140934,6 +142433,11 @@ entities: - type: Transform pos: 9.5,-57.5 parent: 8364 + - uid: 25753 + components: + - type: Transform + pos: 10.5,20.5 + parent: 8364 - proto: RCDAmmo entities: - uid: 14689 @@ -140953,15 +142457,20 @@ entities: - type: Transform pos: -4.396555,-63.387657 parent: 8364 -- proto: ReagentContainerFlourSmall +- proto: ReagentContainerFlour entities: - - uid: 26551 + - uid: 8844 components: - type: Transform - pos: -6.5124555,50.51773 + pos: -23.594713,36.603127 parent: 8364 - proto: ReagentContainerSugar entities: + - uid: 8977 + components: + - type: Transform + pos: -23.271637,36.61355 + parent: 8364 - uid: 15584 components: - type: Transform @@ -141010,62 +142519,90 @@ entities: - type: Transform pos: 44.5,-54.5 parent: 8364 - - uid: 5765 + - uid: 4947 components: - type: Transform - pos: 1.5,42.5 + pos: -17.5,46.5 parent: 8364 - uid: 5799 components: - type: Transform pos: 14.5,-49.5 parent: 8364 - - uid: 7671 + - uid: 7305 components: - type: Transform - pos: 2.5,40.5 + pos: -17.5,43.5 parent: 8364 - - uid: 7672 + - uid: 7379 components: - type: Transform - pos: 1.5,40.5 + pos: -9.5,41.5 parent: 8364 - - uid: 7673 + - uid: 7394 components: - type: Transform - pos: 0.5,40.5 + pos: -17.5,44.5 parent: 8364 - - uid: 7674 + - uid: 7656 components: - type: Transform - pos: -0.5,40.5 + pos: -15.5,46.5 parent: 8364 - - uid: 8761 + - uid: 7705 components: - type: Transform - pos: 0.5,42.5 + pos: -15.5,41.5 parent: 8364 - - uid: 8775 + - uid: 7715 components: - type: Transform - pos: -0.5,42.5 + pos: -15.5,42.5 parent: 8364 - - uid: 10059 + - uid: 7787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,34.5 + pos: -12.5,43.5 parent: 8364 - - uid: 10060 + - uid: 7833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,34.5 + pos: -17.5,45.5 parent: 8364 - - uid: 11607 + - uid: 7841 components: - type: Transform - pos: 2.5,42.5 + pos: -17.5,42.5 + parent: 8364 + - uid: 8385 + components: + - type: Transform + pos: -15.5,45.5 + parent: 8364 + - uid: 8398 + components: + - type: Transform + pos: -7.5,41.5 + parent: 8364 + - uid: 8420 + components: + - type: Transform + pos: -15.5,44.5 + parent: 8364 + - uid: 8577 + components: + - type: Transform + pos: -14.5,43.5 + parent: 8364 + - uid: 8813 + components: + - type: Transform + pos: -17.5,41.5 + parent: 8364 + - uid: 13821 + components: + - type: Transform + pos: -10.5,43.5 parent: 8364 - uid: 15138 components: @@ -141354,6 +142891,11 @@ entities: - type: Transform pos: -29.5,19.5 parent: 8364 + - uid: 293 + components: + - type: Transform + pos: 1.5,26.5 + parent: 8364 - uid: 315 components: - type: Transform @@ -141554,6 +143096,11 @@ entities: - type: Transform pos: -68.5,18.5 parent: 8364 + - uid: 591 + components: + - type: Transform + pos: -11.5,34.5 + parent: 8364 - uid: 595 components: - type: Transform @@ -141562,55 +143109,46 @@ entities: - uid: 596 components: - type: Transform - rot: -1.5707963267948966 rad pos: -67.5,7.5 parent: 8364 - uid: 609 components: - type: Transform - rot: -1.5707963267948966 rad pos: -68.5,-2.5 parent: 8364 - uid: 637 components: - type: Transform - rot: -1.5707963267948966 rad pos: -68.5,7.5 parent: 8364 - uid: 646 components: - type: Transform - rot: 3.141592653589793 rad pos: 21.5,-82.5 parent: 8364 - uid: 658 components: - type: Transform - rot: -1.5707963267948966 rad pos: -72.5,-2.5 parent: 8364 - uid: 660 components: - type: Transform - rot: -1.5707963267948966 rad pos: -73.5,-2.5 parent: 8364 - uid: 678 components: - type: Transform - rot: -1.5707963267948966 rad pos: -74.5,7.5 parent: 8364 - uid: 679 components: - type: Transform - rot: -1.5707963267948966 rad pos: -73.5,7.5 parent: 8364 - uid: 683 components: - type: Transform - rot: -1.5707963267948966 rad pos: -72.5,7.5 parent: 8364 - uid: 731 @@ -141638,6 +143176,16 @@ entities: - type: Transform pos: -65.5,0.5 parent: 8364 + - uid: 749 + components: + - type: Transform + pos: -11.5,31.5 + parent: 8364 + - uid: 772 + components: + - type: Transform + pos: -15.5,36.5 + parent: 8364 - uid: 795 components: - type: Transform @@ -141648,16 +143196,6 @@ entities: - type: Transform pos: 7.5,-28.5 parent: 8364 - - uid: 902 - components: - - type: Transform - pos: -16.5,36.5 - parent: 8364 - - uid: 906 - components: - - type: Transform - pos: -3.5,44.5 - parent: 8364 - uid: 960 components: - type: Transform @@ -141871,7 +143409,6 @@ entities: - uid: 1179 components: - type: Transform - rot: -1.5707963267948966 rad pos: -75.5,-2.5 parent: 8364 - uid: 1288 @@ -141952,13 +143489,11 @@ entities: - uid: 1507 components: - type: Transform - rot: -1.5707963267948966 rad pos: -75.5,7.5 parent: 8364 - uid: 1509 components: - type: Transform - rot: -1.5707963267948966 rad pos: -67.5,-2.5 parent: 8364 - uid: 1554 @@ -143326,6 +144861,11 @@ entities: - type: Transform pos: 0.5,-62.5 parent: 8364 + - uid: 3899 + components: + - type: Transform + pos: -3.5,45.5 + parent: 8364 - uid: 3901 components: - type: Transform @@ -143544,13 +145084,11 @@ entities: - uid: 4107 components: - type: Transform - rot: 3.141592653589793 rad pos: 14.5,-82.5 parent: 8364 - uid: 4136 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-24.5 parent: 8364 - uid: 4137 @@ -143576,7 +145114,6 @@ entities: - uid: 4426 components: - type: Transform - rot: 3.141592653589793 rad pos: 20.5,-82.5 parent: 8364 - uid: 4523 @@ -143649,10 +145186,50 @@ entities: - type: Transform pos: 25.5,-63.5 parent: 8364 - - uid: 5078 + - uid: 5068 components: - type: Transform - pos: -16.5,34.5 + pos: -22.5,42.5 + parent: 8364 + - uid: 5076 + components: + - type: Transform + pos: -17.5,36.5 + parent: 8364 + - uid: 5077 + components: + - type: Transform + pos: 6.5,55.5 + parent: 8364 + - uid: 5084 + components: + - type: Transform + pos: 4.5,50.5 + parent: 8364 + - uid: 5099 + components: + - type: Transform + pos: 0.5,53.5 + parent: 8364 + - uid: 5100 + components: + - type: Transform + pos: 0.5,55.5 + parent: 8364 + - uid: 5109 + components: + - type: Transform + pos: 16.5,46.5 + parent: 8364 + - uid: 5111 + components: + - type: Transform + pos: 12.5,41.5 + parent: 8364 + - uid: 5112 + components: + - type: Transform + pos: 12.5,43.5 parent: 8364 - uid: 5233 components: @@ -143664,26 +145241,81 @@ entities: - type: Transform pos: 50.5,-67.5 parent: 8364 + - uid: 5255 + components: + - type: Transform + pos: 12.5,42.5 + parent: 8364 - uid: 5263 components: - type: Transform pos: 23.5,-34.5 parent: 8364 + - uid: 5344 + components: + - type: Transform + pos: 12.5,44.5 + parent: 8364 + - uid: 5596 + components: + - type: Transform + pos: -24.5,46.5 + parent: 8364 + - uid: 5791 + components: + - type: Transform + pos: -15.5,25.5 + parent: 8364 - uid: 5826 components: - type: Transform pos: -3.5,-77.5 parent: 8364 + - uid: 6334 + components: + - type: Transform + pos: -2.5,21.5 + parent: 8364 - uid: 6408 components: - type: Transform - pos: -5.5,40.5 + pos: 15.5,52.5 + parent: 8364 + - uid: 6419 + components: + - type: Transform + pos: 14.5,52.5 + parent: 8364 + - uid: 6458 + components: + - type: Transform + pos: 14.5,46.5 + parent: 8364 + - uid: 6524 + components: + - type: Transform + pos: 0.5,40.5 parent: 8364 - uid: 6533 components: - type: Transform pos: 25.5,16.5 parent: 8364 + - uid: 6606 + components: + - type: Transform + pos: 1.5,45.5 + parent: 8364 + - uid: 6620 + components: + - type: Transform + pos: 6.5,36.5 + parent: 8364 + - uid: 6652 + components: + - type: Transform + pos: -16.5,36.5 + parent: 8364 - uid: 6949 components: - type: Transform @@ -143734,61 +145366,46 @@ entities: - type: Transform pos: 3.5,-3.5 parent: 8364 + - uid: 7283 + components: + - type: Transform + pos: 4.5,35.5 + parent: 8364 + - uid: 7295 + components: + - type: Transform + pos: -23.5,46.5 + parent: 8364 + - uid: 7296 + components: + - type: Transform + pos: -20.5,39.5 + parent: 8364 + - uid: 7316 + components: + - type: Transform + pos: -22.5,41.5 + parent: 8364 + - uid: 7317 + components: + - type: Transform + pos: -26.5,46.5 + parent: 8364 - uid: 7331 components: - type: Transform - pos: -2.5,46.5 + pos: 16.5,52.5 parent: 8364 - - uid: 7332 + - uid: 7334 components: - type: Transform - pos: -1.5,46.5 + pos: 17.5,46.5 parent: 8364 - uid: 7361 components: - type: Transform pos: 5.5,-26.5 parent: 8364 - - uid: 7375 - components: - - type: Transform - pos: -20.5,25.5 - parent: 8364 - - uid: 7376 - components: - - type: Transform - pos: -22.5,25.5 - parent: 8364 - - uid: 7377 - components: - - type: Transform - pos: -22.5,23.5 - parent: 8364 - - uid: 7378 - components: - - type: Transform - pos: -21.5,23.5 - parent: 8364 - - uid: 7379 - components: - - type: Transform - pos: -20.5,23.5 - parent: 8364 - - uid: 7381 - components: - - type: Transform - pos: -21.5,21.5 - parent: 8364 - - uid: 7382 - components: - - type: Transform - pos: -22.5,21.5 - parent: 8364 - - uid: 7383 - components: - - type: Transform - pos: -22.5,19.5 - parent: 8364 - uid: 7397 components: - type: Transform @@ -143954,261 +145571,65 @@ entities: - type: Transform pos: 29.5,6.5 parent: 8364 - - uid: 7634 + - uid: 7624 components: - type: Transform - pos: 21.5,40.5 - parent: 8364 - - uid: 7647 - components: - - type: Transform - pos: 19.5,37.5 - parent: 8364 - - uid: 7648 - components: - - type: Transform - pos: 18.5,37.5 - parent: 8364 - - uid: 7649 - components: - - type: Transform - pos: 7.5,42.5 - parent: 8364 - - uid: 7650 - components: - - type: Transform - pos: 9.5,42.5 - parent: 8364 - - uid: 7651 - components: - - type: Transform - pos: 13.5,42.5 + pos: 15.5,46.5 parent: 8364 - uid: 7652 components: - type: Transform - pos: 14.5,42.5 + pos: 10.5,22.5 parent: 8364 - - uid: 7653 + - uid: 7677 components: - type: Transform - pos: 15.5,42.5 + pos: -13.5,25.5 parent: 8364 - - uid: 7690 + - uid: 7689 components: - type: Transform - pos: 11.5,40.5 + pos: 12.5,22.5 parent: 8364 - - uid: 7706 + - uid: 7697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,33.5 + pos: -7.5,50.5 parent: 8364 - - uid: 7724 + - uid: 7699 components: - type: Transform - pos: 16.5,36.5 + pos: -7.5,52.5 parent: 8364 - - uid: 7725 + - uid: 7709 components: - type: Transform - pos: 12.5,36.5 + pos: -27.5,46.5 parent: 8364 - - uid: 7727 + - uid: 7769 components: - type: Transform - pos: 11.5,38.5 + pos: 1.5,27.5 parent: 8364 - - uid: 7728 + - uid: 7794 components: - type: Transform - pos: 9.5,34.5 + pos: 17.5,52.5 parent: 8364 - - uid: 7729 + - uid: 7837 components: - type: Transform - pos: 7.5,34.5 + pos: -28.5,44.5 parent: 8364 - - uid: 7730 + - uid: 7848 components: - type: Transform - pos: 6.5,34.5 + pos: 8.5,46.5 parent: 8364 - - uid: 7731 + - uid: 7873 components: - type: Transform - pos: 5.5,30.5 - parent: 8364 - - uid: 7732 - components: - - type: Transform - pos: 5.5,32.5 - parent: 8364 - - uid: 7736 - components: - - type: Transform - pos: -3.5,32.5 - parent: 8364 - - uid: 7737 - components: - - type: Transform - pos: -3.5,30.5 - parent: 8364 - - uid: 7738 - components: - - type: Transform - pos: 3.5,29.5 - parent: 8364 - - uid: 7739 - components: - - type: Transform - pos: 1.5,29.5 - parent: 8364 - - uid: 7740 - components: - - type: Transform - pos: 0.5,29.5 - parent: 8364 - - uid: 7741 - components: - - type: Transform - pos: -1.5,29.5 - parent: 8364 - - uid: 7742 - components: - - type: Transform - pos: -2.5,29.5 - parent: 8364 - - uid: 7744 - components: - - type: Transform - pos: -8.5,25.5 - parent: 8364 - - uid: 7745 - components: - - type: Transform - pos: -6.5,25.5 - parent: 8364 - - uid: 7746 - components: - - type: Transform - pos: -4.5,25.5 - parent: 8364 - - uid: 7747 - components: - - type: Transform - pos: -2.5,25.5 - parent: 8364 - - uid: 7748 - components: - - type: Transform - pos: -0.5,25.5 - parent: 8364 - - uid: 7749 - components: - - type: Transform - pos: 2.5,25.5 - parent: 8364 - - uid: 7750 - components: - - type: Transform - pos: 5.5,25.5 - parent: 8364 - - uid: 7753 - components: - - type: Transform - pos: 18.5,23.5 - parent: 8364 - - uid: 7754 - components: - - type: Transform - pos: 17.5,23.5 - parent: 8364 - - uid: 7757 - components: - - type: Transform - pos: 13.5,23.5 - parent: 8364 - - uid: 7761 - components: - - type: Transform - pos: 12.5,23.5 - parent: 8364 - - uid: 7783 - components: - - type: Transform - pos: 6.5,29.5 - parent: 8364 - - uid: 7852 - components: - - type: Transform - pos: 3.5,22.5 - parent: 8364 - - uid: 7853 - components: - - type: Transform - pos: 5.5,22.5 - parent: 8364 - - uid: 7875 - components: - - type: Transform - pos: -0.5,22.5 - parent: 8364 - - uid: 7876 - components: - - type: Transform - pos: -1.5,22.5 - parent: 8364 - - uid: 7877 - components: - - type: Transform - pos: -2.5,22.5 - parent: 8364 - - uid: 7878 - components: - - type: Transform - pos: -4.5,22.5 - parent: 8364 - - uid: 7879 - components: - - type: Transform - pos: -5.5,22.5 - parent: 8364 - - uid: 7880 - components: - - type: Transform - pos: -6.5,22.5 - parent: 8364 - - uid: 7881 - components: - - type: Transform - pos: -8.5,22.5 - parent: 8364 - - uid: 7882 - components: - - type: Transform - pos: -9.5,22.5 - parent: 8364 - - uid: 7883 - components: - - type: Transform - pos: -10.5,22.5 - parent: 8364 - - uid: 7884 - components: - - type: Transform - pos: -11.5,18.5 - parent: 8364 - - uid: 7885 - components: - - type: Transform - pos: -10.5,18.5 - parent: 8364 - - uid: 7886 - components: - - type: Transform - pos: -5.5,18.5 + pos: -2.5,14.5 parent: 8364 - uid: 7887 components: @@ -144220,20 +145641,10 @@ entities: - type: Transform pos: -2.5,7.5 parent: 8364 - - uid: 7889 + - uid: 7908 components: - type: Transform - pos: -2.5,14.5 - parent: 8364 - - uid: 7890 - components: - - type: Transform - pos: -2.5,15.5 - parent: 8364 - - uid: 7891 - components: - - type: Transform - pos: -2.5,16.5 + pos: 1.5,47.5 parent: 8364 - uid: 8005 components: @@ -144278,7 +145689,6 @@ entities: - uid: 8079 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-72.5 parent: 8364 - uid: 8088 @@ -144304,7 +145714,6 @@ entities: - uid: 8111 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-74.5 parent: 8364 - uid: 8131 @@ -144552,187 +145961,195 @@ entities: - type: Transform pos: -0.5,-3.5 parent: 8364 - - uid: 8413 + - uid: 8428 components: - type: Transform - pos: 15.5,23.5 + pos: -3.5,46.5 parent: 8364 - - uid: 8472 + - uid: 8458 components: - type: Transform - pos: 8.5,29.5 + pos: -15.5,18.5 + parent: 8364 + - uid: 8459 + components: + - type: Transform + pos: -14.5,18.5 + parent: 8364 + - uid: 8461 + components: + - type: Transform + pos: -13.5,18.5 + parent: 8364 + - uid: 8463 + components: + - type: Transform + pos: -12.5,16.5 parent: 8364 - uid: 8480 components: - type: Transform pos: -0.5,-79.5 parent: 8364 - - uid: 8492 - components: - - type: Transform - pos: 11.5,37.5 - parent: 8364 - - uid: 8618 - components: - - type: Transform - pos: -13.5,39.5 - parent: 8364 - - uid: 8631 - components: - - type: Transform - pos: -15.5,54.5 - parent: 8364 - - uid: 8656 - components: - - type: Transform - pos: -10.5,25.5 - parent: 8364 - - uid: 8787 - components: - - type: Transform - pos: -12.5,30.5 - parent: 8364 - - uid: 8789 - components: - - type: Transform - pos: -12.5,31.5 - parent: 8364 - - uid: 8793 - components: - - type: Transform - pos: -12.5,32.5 - parent: 8364 - - uid: 8821 - components: - - type: Transform - pos: 21.5,41.5 - parent: 8364 - - uid: 8946 - components: - - type: Transform - pos: -0.5,46.5 - parent: 8364 - - uid: 8970 - components: - - type: Transform - pos: 2.5,46.5 - parent: 8364 - - uid: 9014 - components: - - type: Transform - pos: 0.5,46.5 - parent: 8364 - - uid: 9020 - components: - - type: Transform - pos: 3.5,46.5 - parent: 8364 - - uid: 9022 - components: - - type: Transform - pos: -16.5,35.5 - parent: 8364 - - uid: 9036 - components: - - type: Transform - pos: -18.5,39.5 - parent: 8364 - - uid: 9047 - components: - - type: Transform - pos: -14.5,54.5 - parent: 8364 - - uid: 9048 - components: - - type: Transform - pos: -12.5,54.5 - parent: 8364 - - uid: 9049 - components: - - type: Transform - pos: -11.5,54.5 - parent: 8364 - - uid: 9055 - components: - - type: Transform - pos: -25.5,45.5 - parent: 8364 - - uid: 9059 - components: - - type: Transform - pos: 4.5,46.5 - parent: 8364 - - uid: 9070 + - uid: 8503 components: - type: Transform pos: 1.5,46.5 parent: 8364 - - uid: 9124 + - uid: 8552 components: - type: Transform - pos: -15.5,39.5 + pos: 6.5,53.5 parent: 8364 - - uid: 9125 + - uid: 8561 components: - type: Transform - pos: -14.5,39.5 + pos: 7.5,46.5 parent: 8364 - - uid: 9236 + - uid: 8641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,25.5 + pos: 6.5,54.5 parent: 8364 - - uid: 9238 + - uid: 8646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,25.5 + pos: -22.5,43.5 parent: 8364 - - uid: 9399 + - uid: 8684 components: - type: Transform - pos: 20.5,34.5 + pos: -4.5,35.5 parent: 8364 - - uid: 9467 + - uid: 8686 components: - type: Transform - pos: -9.5,37.5 + pos: 11.5,20.5 parent: 8364 - - uid: 9513 + - uid: 8701 components: - type: Transform - pos: -9.5,33.5 + pos: -16.5,28.5 parent: 8364 - - uid: 9553 + - uid: 8743 components: - type: Transform - pos: -16.5,21.5 + pos: -3.5,47.5 parent: 8364 - - uid: 9568 + - uid: 8765 components: - type: Transform - pos: 21.5,42.5 + pos: -6.5,26.5 parent: 8364 - - uid: 9594 + - uid: 8791 components: - type: Transform - pos: 25.5,42.5 + pos: 2.5,50.5 parent: 8364 - - uid: 9596 + - uid: 8829 components: - type: Transform - pos: 25.5,41.5 + pos: 4.5,39.5 parent: 8364 - - uid: 9597 + - uid: 8855 components: - type: Transform - pos: 25.5,40.5 + pos: -6.5,28.5 parent: 8364 - - uid: 9783 + - uid: 8893 components: - type: Transform - pos: -18.5,21.5 + pos: -33.5,36.5 + parent: 8364 + - uid: 8906 + components: + - type: Transform + pos: -0.5,30.5 + parent: 8364 + - uid: 8911 + components: + - type: Transform + pos: -33.5,35.5 + parent: 8364 + - uid: 8933 + components: + - type: Transform + pos: 11.5,21.5 + parent: 8364 + - uid: 8935 + components: + - type: Transform + pos: -0.5,34.5 + parent: 8364 + - uid: 8968 + components: + - type: Transform + pos: -2.5,16.5 + parent: 8364 + - uid: 8970 + components: + - type: Transform + pos: -10.5,32.5 + parent: 8364 + - uid: 8985 + components: + - type: Transform + pos: -22.5,44.5 + parent: 8364 + - uid: 8989 + components: + - type: Transform + pos: -8.5,35.5 + parent: 8364 + - uid: 8990 + components: + - type: Transform + pos: -9.5,35.5 + parent: 8364 + - uid: 9107 + components: + - type: Transform + pos: -7.5,30.5 + parent: 8364 + - uid: 9172 + components: + - type: Transform + pos: 11.5,19.5 + parent: 8364 + - uid: 9173 + components: + - type: Transform + pos: 13.5,21.5 + parent: 8364 + - uid: 9174 + components: + - type: Transform + pos: 13.5,20.5 + parent: 8364 + - uid: 9175 + components: + - type: Transform + pos: 13.5,19.5 + parent: 8364 + - uid: 9188 + components: + - type: Transform + pos: 16.5,37.5 + parent: 8364 + - uid: 9195 + components: + - type: Transform + pos: 17.5,33.5 + parent: 8364 + - uid: 9402 + components: + - type: Transform + pos: 25.5,29.5 + parent: 8364 + - uid: 9601 + components: + - type: Transform + pos: 17.5,32.5 parent: 8364 - uid: 9837 components: @@ -144744,21 +146161,6 @@ entities: - type: Transform pos: -42.5,-26.5 parent: 8364 - - uid: 10001 - components: - - type: Transform - pos: -21.5,39.5 - parent: 8364 - - uid: 10121 - components: - - type: Transform - pos: -25.5,43.5 - parent: 8364 - - uid: 10122 - components: - - type: Transform - pos: -25.5,44.5 - parent: 8364 - uid: 10616 components: - type: Transform @@ -144857,7 +146259,6 @@ entities: - uid: 12258 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,-82.5 parent: 8364 - uid: 12260 @@ -144873,19 +146274,16 @@ entities: - uid: 12459 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,-82.5 parent: 8364 - uid: 12485 components: - type: Transform - rot: -1.5707963267948966 rad pos: -74.5,-2.5 parent: 8364 - uid: 12495 components: - type: Transform - rot: -1.5707963267948966 rad pos: -66.5,7.5 parent: 8364 - uid: 12675 @@ -145026,13 +146424,11 @@ entities: - uid: 15882 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-68.5 parent: 8364 - uid: 15969 components: - type: Transform - rot: 1.5707963267948966 rad pos: 3.5,-24.5 parent: 8364 - uid: 16354 @@ -145058,19 +146454,16 @@ entities: - uid: 16731 components: - type: Transform - rot: 3.141592653589793 rad pos: 23.5,-82.5 parent: 8364 - uid: 16735 components: - type: Transform - rot: 3.141592653589793 rad pos: 22.5,-82.5 parent: 8364 - uid: 16777 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,-82.5 parent: 8364 - uid: 16837 @@ -145121,13 +146514,11 @@ entities: - uid: 17205 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-44.5 parent: 8364 - uid: 17206 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-43.5 parent: 8364 - uid: 17455 @@ -145258,7 +146649,6 @@ entities: - uid: 20181 components: - type: Transform - rot: 3.141592653589793 rad pos: 92.5,-30.5 parent: 8364 - uid: 20196 @@ -145284,13 +146674,11 @@ entities: - uid: 21186 components: - type: Transform - rot: 1.5707963267948966 rad pos: 71.5,-42.5 parent: 8364 - uid: 21188 components: - type: Transform - rot: 1.5707963267948966 rad pos: 72.5,-42.5 parent: 8364 - uid: 21372 @@ -145386,19 +146774,16 @@ entities: - uid: 22696 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-71.5 parent: 8364 - uid: 22697 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-73.5 parent: 8364 - uid: 22700 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-69.5 parent: 8364 - uid: 22745 @@ -145414,7 +146799,6 @@ entities: - uid: 22814 components: - type: Transform - rot: 1.5707963267948966 rad pos: 23.5,-45.5 parent: 8364 - uid: 22848 @@ -145480,7 +146864,6 @@ entities: - uid: 23159 components: - type: Transform - rot: 3.141592653589793 rad pos: 18.5,-86.5 parent: 8364 - uid: 23172 @@ -145531,7 +146914,6 @@ entities: - uid: 24774 components: - type: Transform - rot: 1.5707963267948966 rad pos: 38.5,-49.5 parent: 8364 - uid: 25183 @@ -145539,20 +146921,10 @@ entities: - type: Transform pos: -21.5,-73.5 parent: 8364 - - uid: 25735 + - uid: 25866 components: - type: Transform - pos: -15.5,37.5 - parent: 8364 - - uid: 25736 - components: - - type: Transform - pos: -13.5,37.5 - parent: 8364 - - uid: 25737 - components: - - type: Transform - pos: -14.5,37.5 + pos: -14.5,25.5 parent: 8364 - uid: 26008 components: @@ -145579,6 +146951,11 @@ entities: - type: Transform pos: 25.5,-64.5 parent: 8364 + - uid: 26275 + components: + - type: Transform + pos: 2.5,39.5 + parent: 8364 - uid: 26601 components: - type: Transform @@ -145679,69 +147056,54 @@ entities: parent: 8364 - proto: RiotBulletShield entities: - - uid: 7681 + - uid: 7352 components: - type: Transform - pos: 0.21283889,39.394394 + pos: -11.784147,40.394897 parent: 8364 - - uid: 9194 + - uid: 8567 components: - type: Transform - pos: 0.22672784,39.679115 + pos: -11.784147,40.738884 parent: 8364 - - uid: 9209 + - uid: 8805 components: - type: Transform - pos: 0.2197833,39.57495 - parent: 8364 - - uid: 9383 - components: - - type: Transform - pos: 0.2197833,39.47773 + pos: -11.784147,40.60338 parent: 8364 - proto: RiotLaserShield entities: - - uid: 8627 + - uid: 8592 components: - type: Transform - pos: 0.7406167,39.408287 + pos: -11.200523,40.363625 parent: 8364 - - uid: 9290 + - uid: 8644 components: - type: Transform - pos: 0.73367226,39.581894 + pos: -11.210945,40.582527 parent: 8364 - - uid: 9335 + - uid: 8661 components: - type: Transform - pos: 0.73367226,39.69301 - parent: 8364 - - uid: 21786 - components: - - type: Transform - pos: 0.73367226,39.498558 + pos: -11.231791,40.69719 parent: 8364 - proto: RiotShield entities: - - uid: 9226 + - uid: 7312 components: - type: Transform - pos: 0.4975611,39.720787 + pos: -11.492335,40.634644 parent: 8364 - - uid: 9228 + - uid: 7589 components: - type: Transform - pos: 0.4975611,39.616615 + pos: -11.46107,40.457443 parent: 8364 - - uid: 9334 + - uid: 7681 components: - type: Transform - pos: 0.4975611,39.519394 - parent: 8364 - - uid: 10058 - components: - - type: Transform - pos: 0.4975611,39.394394 + pos: -11.481914,40.791008 parent: 8364 - proto: RobocopCircuitBoard entities: @@ -145824,6 +147186,11 @@ entities: - type: Transform pos: 1.5,-18.5 parent: 8364 + - uid: 24976 + components: + - type: Transform + pos: 6.5,46.5 + parent: 8364 - uid: 27738 components: - type: Transform @@ -145879,11 +147246,6 @@ entities: - type: Transform pos: -69.5,11.5 parent: 8364 - - uid: 27779 - components: - - type: Transform - pos: -2.5,13.5 - parent: 8364 - uid: 27780 components: - type: Transform @@ -145943,6 +147305,33 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-25.5 parent: 8364 + - uid: 28532 + components: + - type: Transform + pos: 1.5,32.5 + parent: 8364 + - uid: 28533 + components: + - type: Transform + pos: -8.5,39.5 + parent: 8364 + - uid: 28534 + components: + - type: Transform + pos: -4.5,54.5 + parent: 8364 + - uid: 28535 + components: + - type: Transform + pos: 1.5,39.5 + parent: 8364 +- proto: ScreenTimer + entities: + - uid: 5454 + components: + - type: Transform + pos: -8.5,22.5 + parent: 8364 - proto: Screwdriver entities: - uid: 15395 @@ -145963,23 +147352,29 @@ entities: parent: 8364 - proto: SecurityTechFab entities: - - uid: 9235 + - uid: 8749 components: - type: Transform - pos: -1.5,39.5 + pos: -12.5,42.5 parent: 8364 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: SeedExtractor entities: + - uid: 8685 + components: + - type: Transform + pos: -27.5,41.5 + parent: 8364 - uid: 16317 components: - type: Transform pos: 45.5,-5.5 parent: 8364 - - uid: 26469 - components: - - type: Transform - pos: -1.5,51.5 - parent: 8364 - proto: ShardGlass entities: - uid: 2285 @@ -146209,11 +147604,6 @@ entities: - type: Transform pos: 9.423824,-59.471497 parent: 8364 - - uid: 9316 - components: - - type: Transform - pos: -2.4926982,39.33291 - parent: 8364 - uid: 11753 components: - type: Transform @@ -146315,6 +147705,11 @@ entities: - type: Transform pos: -33.45624,-18.48605 parent: 8364 + - uid: 28639 + components: + - type: Transform + pos: -12.508205,44.5336 + parent: 8364 - proto: SheetUranium entities: - uid: 27557 @@ -146459,52 +147854,74 @@ entities: - type: Transform pos: 6.5,-23.5 parent: 8364 - - uid: 9639 + - uid: 9139 components: - type: Transform - pos: -2.5,16.5 + rot: 1.5707963267948966 rad + pos: -2.5,33.5 parent: 8364 - - uid: 9640 + - uid: 9141 components: - type: Transform - pos: -2.5,15.5 + rot: 1.5707963267948966 rad + pos: -2.5,32.5 parent: 8364 - - uid: 9641 + - uid: 9142 components: - type: Transform - pos: -2.5,14.5 + rot: 1.5707963267948966 rad + pos: -2.5,31.5 parent: 8364 - - uid: 9642 + - uid: 9143 components: - type: Transform - pos: -5.5,18.5 + pos: -4.5,29.5 + parent: 8364 + - uid: 9144 + components: + - type: Transform + pos: -5.5,29.5 + parent: 8364 + - uid: 9145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,33.5 + parent: 8364 + - uid: 9146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,32.5 + parent: 8364 + - uid: 9147 + components: + - type: Transform + pos: -7.5,30.5 + parent: 8364 + - uid: 9148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,35.5 + parent: 8364 + - uid: 9164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,35.5 + parent: 8364 + - uid: 9165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,35.5 parent: 8364 - uid: 9923 components: - type: Transform pos: 10.5,-32.5 parent: 8364 - - uid: 11980 - components: - - type: Transform - pos: -9.5,22.5 - parent: 8364 - - uid: 12024 - components: - - type: Transform - pos: -10.5,22.5 - parent: 8364 - - uid: 12030 - components: - - type: Transform - pos: 3.5,24.5 - parent: 8364 - - uid: 12033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,23.5 - parent: 8364 - uid: 14148 components: - type: Transform @@ -146544,12 +147961,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-25.5 parent: 8364 - - uid: 17151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,22.5 - parent: 8364 - uid: 17669 components: - type: Transform @@ -146566,12 +147977,6 @@ entities: - type: Transform pos: -0.5,-65.5 parent: 8364 - - uid: 18370 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,22.5 - parent: 8364 - uid: 18406 components: - type: Transform @@ -146592,35 +147997,45 @@ entities: - type: Transform pos: 23.5,-19.5 parent: 8364 - - uid: 19886 + - uid: 19949 components: - type: Transform - pos: -0.5,22.5 - parent: 8364 - - uid: 19890 - components: - - type: Transform - pos: -1.5,22.5 - parent: 8364 - - uid: 19931 - components: - - type: Transform - pos: -2.5,22.5 + pos: 2.5,50.5 parent: 8364 - uid: 19959 components: - type: Transform - pos: -4.5,22.5 + pos: 4.5,50.5 parent: 8364 - uid: 19968 components: - type: Transform - pos: -5.5,22.5 + rot: 1.5707963267948966 rad + pos: 6.5,53.5 + parent: 8364 + - uid: 19983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,54.5 + parent: 8364 + - uid: 19997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,55.5 + parent: 8364 + - uid: 20056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,55.5 parent: 8364 - uid: 20152 components: - type: Transform - pos: -6.5,22.5 + rot: 1.5707963267948966 rad + pos: 0.5,53.5 parent: 8364 - uid: 22014 components: @@ -146628,11 +148043,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 8364 - - uid: 22451 - components: - - type: Transform - pos: -8.5,22.5 - parent: 8364 - uid: 22990 components: - type: Transform @@ -146717,41 +148127,6 @@ entities: parent: 8364 - proto: ShuttersWindowOpen entities: - - uid: 8644 - components: - - type: Transform - pos: 18.5,23.5 - parent: 8364 - - uid: 8645 - components: - - type: Transform - pos: 17.5,23.5 - parent: 8364 - - uid: 8646 - components: - - type: Transform - pos: 16.5,23.5 - parent: 8364 - - uid: 8647 - components: - - type: Transform - pos: 15.5,23.5 - parent: 8364 - - uid: 8648 - components: - - type: Transform - pos: 14.5,23.5 - parent: 8364 - - uid: 8649 - components: - - type: Transform - pos: 13.5,23.5 - parent: 8364 - - uid: 8650 - components: - - type: Transform - pos: 12.5,23.5 - parent: 8364 - uid: 10454 components: - type: Transform @@ -147091,25 +148466,6 @@ entities: 20848: - - Pressed - Toggle - - uid: 9421 - components: - - type: Transform - pos: -7.5,14.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 9642: - - - Pressed - - Toggle - 9639: - - - Pressed - - Toggle - 9640: - - - Pressed - - Toggle - 9641: - - - Pressed - - Toggle - uid: 9868 components: - type: Transform @@ -147574,28 +148930,64 @@ entities: - DoorBolt - proto: SignalSwitch entities: - - uid: 9411 + - uid: 8804 components: - - type: MetaData - name: Perma Blast Doors - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,30.5 + rot: -1.5707963267948966 rad + pos: 10.5,47.5 parent: 8364 - - type: SignalSwitch - state: True - type: DeviceLinkSource linkedPorts: - 19930: + 8780: - - On - - Open + - Reverse - - Off - - Close - 19932: + - Off + 8649: - - On - - Open + - Reverse - - Off - - Close + - Off + 7806: + - - On + - Reverse + - - Off + - Off + 7896: + - - On + - Reverse + - - Off + - Off + 7815: + - - On + - Reverse + - - Off + - Off + 8391: + - - On + - Reverse + - - Off + - Off + 8444: + - - On + - Reverse + - - Off + - Off + 8475: + - - On + - Reverse + - - Off + - Off + 8476: + - - Off + - Off + - - On + - Reverse + 8779: + - - On + - Reverse + - - Off + - Off - uid: 13247 components: - type: MetaData @@ -147603,177 +148995,6 @@ entities: - type: Transform pos: 10.8,3.5 parent: 8364 -- proto: SignalSwitchDirectional - entities: - - uid: 9142 - components: - - type: MetaData - name: Shutters - - type: Transform - pos: 13.5,29.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 8650: - - - On - - Open - - - Off - - Close - 8649: - - - On - - Open - - - Off - - Close - 8648: - - - On - - Open - - - Off - - Close - 8647: - - - On - - Open - - - Off - - Close - 8646: - - - On - - Open - - - Off - - Close - 8645: - - - On - - Open - - - Off - - Close - 8644: - - - On - - Open - - - Off - - Close - - uid: 9368 - components: - - type: MetaData - name: Window Blast Doors - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,40.5 - parent: 8364 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 6970: - - - On - - Open - - - Off - - Close - 4212: - - - On - - Open - - - Off - - Close - 3134: - - - On - - Open - - - Off - - Close - - uid: 11568 - components: - - type: MetaData - name: Brig Shutters - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 8364 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 12030: - - - On - - Open - - - Off - - Close - 12033: - - - On - - Open - - - Off - - Close - 17151: - - - Off - - Close - - - On - - Open - 18370: - - - On - - Open - - - Off - - Close - 19886: - - - On - - Open - - - Off - - Close - 19890: - - - On - - Open - - - Off - - Close - 19931: - - - On - - Open - - - Off - - Close - 19959: - - - On - - Open - - - Off - - Close - 19968: - - - Off - - Close - - - On - - Open - 20152: - - - On - - Open - - - Off - - Close - 22451: - - - On - - Open - - - Off - - Close - 11980: - - - On - - Open - - - Off - - Close - 12024: - - - On - - Open - - - Off - - Close - - uid: 15129 - components: - - type: MetaData - name: Window Blast Doors - - type: Transform - pos: 8.5,42.5 - parent: 8364 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 4495: - - - On - - Open - - - Off - - Close - 4494: - - - On - - Open - - - Off - - Close - proto: SignAnomaly entities: - uid: 25994 @@ -147790,11 +149011,10 @@ entities: parent: 8364 - proto: SignArmory entities: - - uid: 9306 + - uid: 8557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,34.5 + pos: -7.5,43.5 parent: 8364 - proto: SignAtmos entities: @@ -148222,10 +149442,60 @@ entities: - type: Transform pos: 1.5,-10.5 parent: 8364 - - uid: 7264 + - uid: 9820 components: - type: Transform - pos: 24.5,24.5 + pos: 9.5,35.5 + parent: 8364 + - uid: 9844 + components: + - type: Transform + pos: -27.5,18.5 + parent: 8364 + - uid: 9845 + components: + - type: Transform + pos: -36.5,33.5 + parent: 8364 + - uid: 9846 + components: + - type: Transform + pos: -27.5,25.5 + parent: 8364 + - uid: 9847 + components: + - type: Transform + pos: -32.5,30.5 + parent: 8364 + - uid: 9848 + components: + - type: Transform + pos: -36.5,40.5 + parent: 8364 + - uid: 9849 + components: + - type: Transform + pos: -34.5,45.5 + parent: 8364 + - uid: 9850 + components: + - type: Transform + pos: -30.5,49.5 + parent: 8364 + - uid: 9851 + components: + - type: Transform + pos: -22.5,49.5 + parent: 8364 + - uid: 9852 + components: + - type: Transform + pos: -17.5,47.5 + parent: 8364 + - uid: 9853 + components: + - type: Transform + pos: -17.5,40.5 parent: 8364 - uid: 12364 components: @@ -148262,16 +149532,6 @@ entities: - type: Transform pos: -2.5,-60.5 parent: 8364 - - uid: 26457 - components: - - type: Transform - pos: -3.5,46.5 - parent: 8364 - - uid: 26459 - components: - - type: Transform - pos: -16.5,39.5 - parent: 8364 - proto: SignEngine entities: - uid: 1315 @@ -148288,21 +149548,17 @@ entities: parent: 8364 - proto: SignEscapePods entities: + - uid: 5618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,54.5 + parent: 8364 - uid: 12645 components: - type: Transform pos: -65.5,-8.5 parent: 8364 - - uid: 12688 - components: - - type: Transform - pos: -19.5,21.5 - parent: 8364 - - uid: 12689 - components: - - type: Transform - pos: -15.5,24.5 - parent: 8364 - proto: SignEVA entities: - uid: 4991 @@ -148341,6 +149597,18 @@ entities: - type: Transform pos: 10.5,-70.5 parent: 8364 +- proto: SignGenpop + entities: + - uid: 8478 + components: + - type: Transform + pos: -11.5,34.5 + parent: 8364 + - uid: 9140 + components: + - type: Transform + pos: -6.5,26.5 + parent: 8364 - proto: SignGravity entities: - uid: 4299 @@ -148364,10 +149632,10 @@ entities: parent: 8364 - proto: SignInterrogation entities: - - uid: 20157 + - uid: 7658 components: - type: Transform - pos: -12.5,28.5 + pos: -13.5,36.5 parent: 8364 - proto: SignJanitor entities: @@ -148411,6 +149679,13 @@ entities: - type: Transform pos: -22.5,-14.5 parent: 8364 +- proto: SignLawyer + entities: + - uid: 750 + components: + - type: Transform + pos: 2.5,22.5 + parent: 8364 - proto: SignLibrary entities: - uid: 4987 @@ -148505,13 +149780,6 @@ entities: - type: Transform pos: -10.5,-20.5 parent: 8364 -- proto: SignPrison - entities: - - uid: 8549 - components: - - type: Transform - pos: -6.5,33.5 - parent: 8364 - proto: SignPsychology entities: - uid: 18613 @@ -148683,12 +149951,6 @@ entities: - type: Transform pos: 4.5,-64.5 parent: 8364 - - uid: 19928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,22.5 - parent: 8364 - uid: 20149 components: - type: Transform @@ -148747,16 +150009,17 @@ entities: parent: 8364 - proto: SignSecurity entities: + - uid: 8860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,29.5 + parent: 8364 - uid: 15339 components: - type: Transform pos: 1.5,18.5 parent: 8364 - - uid: 22018 - components: - - type: Transform - pos: -2.5,18.5 - parent: 8364 - proto: SignServer entities: - uid: 16618 @@ -148802,6 +150065,18 @@ entities: parent: 8364 - proto: SignSpace entities: + - uid: 7282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,50.5 + parent: 8364 + - uid: 7284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,50.5 + parent: 8364 - uid: 12261 components: - type: Transform @@ -148822,21 +150097,6 @@ entities: - type: Transform pos: -44.5,-26.5 parent: 8364 - - uid: 21512 - components: - - type: Transform - pos: -20.5,19.5 - parent: 8364 - - uid: 21513 - components: - - type: Transform - pos: -19.5,25.5 - parent: 8364 - - uid: 21515 - components: - - type: Transform - pos: 28.5,27.5 - parent: 8364 - uid: 21516 components: - type: Transform @@ -148989,6 +150249,18 @@ entities: - type: Transform pos: 31.5,1.5 parent: 8364 + - uid: 8900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,40.5 + parent: 8364 + - uid: 8901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,40.5 + parent: 8364 - uid: 13245 components: - type: Transform @@ -149066,23 +150338,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-19.5 parent: 8364 - - uid: 26358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,41.5 - parent: 8364 - - uid: 26452 - components: - - type: Transform - pos: -19.5,51.5 - parent: 8364 - - uid: 26468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,51.5 - parent: 8364 - proto: SinkEmpty entities: - uid: 4141 @@ -149126,6 +150381,11 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 8364 + - uid: 7704 + components: + - type: Transform + pos: -25.5,45.5 + parent: 8364 - uid: 10716 components: - type: Transform @@ -149167,12 +150427,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-36.5 parent: 8364 - - uid: 26465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,49.5 - parent: 8364 - proto: SmartFridge entities: - uid: 2513 @@ -149190,16 +150444,16 @@ entities: - type: Transform pos: 38.5,-57.5 parent: 8364 + - uid: 5595 + components: + - type: Transform + pos: -23.5,39.5 + parent: 8364 - uid: 17866 components: - type: Transform pos: 20.5,-32.5 parent: 8364 - - uid: 25676 - components: - - type: Transform - pos: -3.5,51.5 - parent: 8364 - proto: SMESAdvanced entities: - uid: 17701 @@ -149371,6 +150625,10 @@ entities: showEnts: False occludes: True ent: null + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 21608 components: - type: Transform @@ -150701,6 +151959,11 @@ entities: parent: 8364 - type: SpamEmitSound enabled: False + - uid: 8896 + components: + - type: Transform + pos: -19.5,38.5 + parent: 8364 - uid: 11688 components: - type: Transform @@ -150716,13 +151979,6 @@ entities: parent: 8364 - type: SpamEmitSound enabled: False - - uid: 26426 - components: - - type: Transform - pos: -4.5,45.5 - parent: 8364 - - type: SpamEmitSound - enabled: False - proto: SpawnMechRipley entities: - uid: 16610 @@ -150814,10 +152070,10 @@ entities: parent: 8364 - proto: SpawnMobMcGriff entities: - - uid: 3811 + - uid: 9087 components: - type: Transform - pos: -2.5,31.5 + pos: -5.5,31.5 parent: 8364 - proto: SpawnMobMedibot entities: @@ -150840,11 +152096,6 @@ entities: - type: Transform pos: 49.5,8.5 parent: 8364 - - uid: 9480 - components: - - type: Transform - pos: 20.5,26.5 - parent: 8364 - uid: 14617 components: - type: Transform @@ -150860,11 +152111,6 @@ entities: - type: Transform pos: 80.5,-32.5 parent: 8364 - - uid: 26451 - components: - - type: Transform - pos: -21.5,50.5 - parent: 8364 - proto: SpawnMobPossumMorty entities: - uid: 18697 @@ -150881,10 +152127,10 @@ entities: parent: 8364 - proto: SpawnMobShiva entities: - - uid: 16718 + - uid: 28531 components: - type: Transform - pos: 12.5,38.5 + pos: 2.5,54.5 parent: 8364 - proto: SpawnMobSlothPaperwork entities: @@ -151058,10 +152304,15 @@ entities: parent: 8364 - proto: SpawnPointDetective entities: - - uid: 5344 + - uid: 9135 components: - type: Transform - pos: -5.5,15.5 + pos: 11.5,30.5 + parent: 8364 + - uid: 9136 + components: + - type: Transform + pos: 10.5,26.5 parent: 8364 - proto: SpawnPointHeadOfPersonnel entities: @@ -151072,10 +152323,10 @@ entities: parent: 8364 - proto: SpawnPointHeadOfSecurity entities: - - uid: 8815 + - uid: 28511 components: - type: Transform - pos: 14.5,40.5 + pos: -1.5,54.5 parent: 8364 - proto: SpawnPointJanitor entities: @@ -151138,15 +152389,20 @@ entities: parent: 8364 - proto: SpawnPointLawyer entities: - - uid: 9713 + - uid: 8994 components: - type: Transform - pos: -11.5,16.5 + pos: 3.5,26.5 parent: 8364 - - uid: 9714 + - uid: 9132 components: - type: Transform - pos: -11.5,14.5 + pos: 3.5,25.5 + parent: 8364 + - uid: 9133 + components: + - type: Transform + pos: 3.5,24.5 parent: 8364 - proto: SpawnPointLibrarian entities: @@ -151340,67 +152596,77 @@ entities: parent: 8364 - proto: SpawnPointSecurityCadet entities: - - uid: 5599 + - uid: 28512 components: - type: Transform - pos: 8.5,36.5 + pos: 7.5,44.5 parent: 8364 - - uid: 9177 + - uid: 28518 components: - type: Transform - pos: 7.5,36.5 + pos: 6.5,44.5 parent: 8364 - - uid: 9295 + - uid: 28519 components: - type: Transform - pos: 9.5,36.5 + pos: 6.5,42.5 parent: 8364 - - uid: 9389 + - uid: 28520 components: - type: Transform - pos: 6.5,36.5 + pos: 7.5,42.5 parent: 8364 - - uid: 20856 + - uid: 28521 components: - type: Transform - pos: 9.5,40.5 + pos: 4.5,45.5 + parent: 8364 + - uid: 28522 + components: + - type: Transform + pos: 4.5,46.5 + parent: 8364 + - uid: 28523 + components: + - type: Transform + pos: 4.5,47.5 parent: 8364 - proto: SpawnPointSecurityOfficer entities: - - uid: 8633 + - uid: 28524 components: - type: Transform - pos: 9.5,39.5 + pos: -0.5,45.5 parent: 8364 - - uid: 9252 + - uid: 28525 components: - type: Transform - pos: 9.5,38.5 + pos: -0.5,46.5 parent: 8364 - - uid: 9253 + - uid: 28526 components: - type: Transform - pos: 9.5,37.5 + pos: -0.5,47.5 parent: 8364 - - uid: 19935 + - uid: 28527 components: - type: Transform - pos: 7.5,37.5 + pos: -1.5,49.5 parent: 8364 - - uid: 20159 + - uid: 28528 components: - type: Transform - pos: 7.5,38.5 + pos: -1.5,50.5 parent: 8364 - - uid: 20174 + - uid: 28529 components: - type: Transform - pos: 7.5,39.5 + pos: -0.5,50.5 parent: 8364 - - uid: 20857 + - uid: 28530 components: - type: Transform - pos: 7.5,40.5 + pos: -0.5,49.5 parent: 8364 - proto: SpawnPointServiceWorker entities: @@ -151485,10 +152751,20 @@ entities: parent: 8364 - proto: SpawnPointWarden entities: - - uid: 9427 + - uid: 25820 components: - type: Transform - pos: -0.5,30.5 + pos: -5.5,33.5 + parent: 8364 + - uid: 25821 + components: + - type: Transform + pos: -6.5,33.5 + parent: 8364 + - uid: 25822 + components: + - type: Transform + pos: -7.5,33.5 parent: 8364 - proto: SpawnVendingMachineRestockFoodDrink entities: @@ -151502,18 +152778,6 @@ entities: - type: Transform pos: -31.5,-43.5 parent: 8364 -- proto: SpeedLoaderMagnumPractice - entities: - - uid: 28335 - components: - - type: Transform - pos: 25.346834,35.803123 - parent: 8364 - - uid: 28336 - components: - - type: Transform - pos: 25.284334,35.553123 - parent: 8364 - proto: SprayBottleSpaceCleaner entities: - uid: 1153 @@ -151663,47 +152927,29 @@ entities: parent: 8364 - proto: SteelBench entities: - - uid: 7912 + - uid: 9071 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,32.5 + pos: -10.5,26.5 parent: 8364 - - uid: 7913 + - uid: 9072 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,32.5 + pos: -9.5,26.5 parent: 8364 - - uid: 7915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,32.5 - parent: 8364 - - uid: 9174 + - uid: 9073 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,24.5 + pos: -14.5,28.5 parent: 8364 - - uid: 9936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,23.5 - parent: 8364 - - uid: 10056 + - uid: 9074 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,23.5 - parent: 8364 - - uid: 23942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,24.5 + pos: -13.5,28.5 parent: 8364 - proto: Stool entities: @@ -151819,15 +153065,46 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-0.5 parent: 8364 - - uid: 9013 + - uid: 8665 components: - type: Transform - pos: -4.5,41.5 + rot: 3.141592653589793 rad + pos: -30.576033,34.684883 parent: 8364 - - uid: 9016 + - uid: 8726 components: - type: Transform - pos: -6.5,41.5 + rot: 1.5707963267948966 rad + pos: -31.46189,36.67585 + parent: 8364 + - uid: 8761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.482733,35.61261 + parent: 8364 + - uid: 8762 + components: + - type: Transform + pos: -30.523924,37.697395 + parent: 8364 + - uid: 8883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.513006,36.67585 + parent: 8364 + - uid: 8965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.48174,35.643883 + parent: 8364 + - uid: 8974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.52386,37.674126 parent: 8364 - uid: 9678 components: @@ -151835,12 +153112,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,9.5 parent: 8364 - - uid: 9857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,21.5 - parent: 8364 - uid: 10529 components: - type: Transform @@ -151853,18 +153124,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,7.5 parent: 8364 - - uid: 13512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,39.5 - parent: 8364 - - uid: 13513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,39.5 - parent: 8364 - uid: 13892 components: - type: Transform @@ -151959,18 +153218,6 @@ entities: rot: 3.141592653589793 rad pos: -24.522638,-77.22648 parent: 8364 - - uid: 26417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,47.5 - parent: 8364 - - uid: 26427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,44.5 - parent: 8364 - uid: 26651 components: - type: Transform @@ -151984,12 +153231,6 @@ entities: parent: 8364 - proto: StoolBar entities: - - uid: 174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,48.5 - parent: 8364 - uid: 343 components: - type: Transform @@ -152068,17 +153309,35 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-9.5 parent: 8364 - - uid: 9044 + - uid: 7898 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,48.5 + pos: -25.5,34.5 parent: 8364 - - uid: 9100 + - uid: 8523 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,48.5 + pos: -23.5,34.5 + parent: 8364 + - uid: 8655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,34.5 + parent: 8364 + - uid: 8843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,35.5 + parent: 8364 + - uid: 8953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,34.5 parent: 8364 - uid: 11986 components: @@ -152169,6 +153428,18 @@ entities: - type: Transform pos: 62.5,-33.5 parent: 8364 +- proto: Stunbaton + entities: + - uid: 5103 + components: + - type: Transform + pos: 4.5508385,43.635582 + parent: 8364 + - uid: 8396 + components: + - type: Transform + pos: 4.4153543,43.687706 + parent: 8364 - proto: SubstationBasic entities: - uid: 1666 @@ -152214,17 +153485,16 @@ entities: - type: Transform pos: -28.5,-64.5 parent: 8364 - - uid: 7373 + - uid: 7830 components: - - type: MetaData - name: Security Substation - type: Transform - pos: 24.5,22.5 + pos: -19.5,19.5 + parent: 8364 + - uid: 9275 + components: + - type: Transform + pos: 6.5,34.5 parent: 8364 - - type: PowerNetworkBattery - loadingNetworkDemand: 45.00018 - currentSupply: 45.00018 - supplyRampPosition: 45.00018 - uid: 9676 components: - type: MetaData @@ -152257,8 +153527,6 @@ entities: - type: Transform pos: 46.5,-38.5 parent: 8364 - - type: Battery - startingCharge: 2421964.2 - type: PowerNetworkBattery loadingNetworkDemand: 225.0009 currentSupply: 225.0009 @@ -152270,13 +153538,6 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 8364 - - uid: 25700 - components: - - type: MetaData - name: Perma Substation - - type: Transform - pos: -20.5,51.5 - parent: 8364 - uid: 26741 components: - type: MetaData @@ -152371,12 +153632,36 @@ entities: - type: Transform pos: -14.5,2.5 parent: 8364 -- proto: SuitStorageHOS +- proto: SuitStorageEVAEmergency entities: - - uid: 25002 + - uid: 3898 components: - type: Transform - pos: 16.5,39.5 + pos: -8.5,49.5 + parent: 8364 + - uid: 9406 + components: + - type: Transform + pos: 24.5,28.5 + parent: 8364 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 26319 + components: + - type: Transform + pos: -10.5,29.5 + parent: 8364 + - uid: 26320 + components: + - type: Transform + pos: -9.5,29.5 + parent: 8364 +- proto: SuitStorageHOS + entities: + - uid: 5096 + components: + - type: Transform + pos: 1.5,55.5 parent: 8364 - proto: SuitStorageSalv entities: @@ -152387,18 +153672,16 @@ entities: parent: 8364 - proto: SuitStorageSec entities: - - uid: 8783 + - uid: 174 components: - - type: MetaData - name: suit storage unit (Double) - type: Transform - pos: 3.5,35.5 + pos: -14.5,47.5 parent: 8364 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1465 + temperature: 293.14673 moles: - 1.7459903 - 6.568249 @@ -152418,24 +153701,29 @@ entities: showEnts: False occludes: True ents: - - 10073 - - 9182 - - type: Label - currentLabel: Double - - type: NameModifier - baseName: suit storage unit - - uid: 8825 + - 231 + - uid: 7349 components: - - type: MetaData - name: suit storage unit (Double) - type: Transform - pos: 4.5,35.5 + pos: -10.5,47.5 + parent: 8364 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7350 + - uid: 7415 + components: + - type: Transform + pos: -11.5,47.5 parent: 8364 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1465 + temperature: 293.14673 moles: - 1.7459903 - 6.568249 @@ -152455,27 +153743,20 @@ entities: showEnts: False occludes: True ents: - - 10075 - - 10074 - - type: Label - currentLabel: Double - - type: NameModifier - baseName: suit storage unit - - uid: 10030 + - 7416 + - uid: 8558 components: - - type: MetaData - name: suit storage unit (Double) - type: Transform - pos: -1.5,35.5 + pos: -13.5,47.5 parent: 8364 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1462 + temperature: 293.14673 moles: - - 1.606311 - - 6.042789 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -152492,49 +153773,7 @@ entities: showEnts: False occludes: True ents: - - 10031 - - 10032 - - type: Label - currentLabel: Double - - type: NameModifier - baseName: suit storage unit - - uid: 11611 - components: - - type: MetaData - name: suit storage unit (Double) - - type: Transform - pos: -0.5,35.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14594 - moles: - - 1.606311 - - 6.042789 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11965 - - 11999 - - type: Label - currentLabel: Double - - type: NameModifier - baseName: suit storage unit + - 8559 - uid: 16531 components: - type: Transform @@ -152542,35 +153781,11 @@ entities: parent: 8364 - proto: SuitStorageWarden entities: - - uid: 10069 + - uid: 9085 components: - - type: MetaData - name: suit storage unit (Warden) - type: Transform - pos: 0.5,35.5 + pos: -6.5,31.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14563 - moles: - - 1.4778061 - - 5.559366 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Label - currentLabel: Warden - - type: NameModifier - baseName: suit storage unit - proto: SurveillanceCameraCommand entities: - uid: 296 @@ -152748,17 +153963,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: North Atmos - - uid: 294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,9.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: EVA Supply - uid: 3722 components: - type: Transform @@ -153275,16 +154479,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Dorms - - uid: 836 - components: - - type: Transform - pos: -12.5,19.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Law - uid: 4203 components: - type: Transform @@ -153533,17 +154727,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Holodeck W - - uid: 20869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,18.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cryosleep - uid: 20870 components: - type: Transform @@ -153555,28 +154738,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Holodeck E - - uid: 20871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,15.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm 6 - - uid: 20873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,15.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm 5 - uid: 20874 components: - type: Transform @@ -153588,17 +154749,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Dorm 3 - - uid: 20875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,15.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm 4 - uid: 20876 components: - type: Transform @@ -153632,17 +154782,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Dorms - - uid: 20887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,15.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Boxing Ring - uid: 21110 components: - type: Transform @@ -153779,6 +154918,68 @@ entities: parent: 8364 - type: SurveillanceCamera id: Hall Outside AI + - uid: 28548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 8364 + - type: SurveillanceCamera + id: Lawyer + Detective Hall + - uid: 28549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,16.5 + parent: 8364 + - type: SurveillanceCamera + id: Hall - Outside Courtroom + - uid: 28550 + components: + - type: Transform + pos: -8.5,14.5 + parent: 8364 + - type: SurveillanceCamera + id: Courtroom - South + - uid: 28551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,24.5 + parent: 8364 + - type: SurveillanceCamera + id: Courthouse - North + - uid: 28552 + components: + - type: Transform + pos: -15.5,15.5 + parent: 8364 + - type: SurveillanceCamera + id: Visitation + - uid: 28591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 8364 + - type: SurveillanceCamera + id: Main Hall East + - uid: 28592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-4.5 + parent: 8364 + - type: SurveillanceCamera + id: Locker Room + - uid: 28593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-12.5 + parent: 8364 + - type: SurveillanceCamera + id: Break Room - Scrubbers - proto: SurveillanceCameraMedical entities: - uid: 234 @@ -154325,28 +155526,6 @@ entities: id: Robotics Bay - proto: SurveillanceCameraSecurity entities: - - uid: 17 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,43.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory Exterior - - uid: 293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,24.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Courtroom - uid: 311 components: - type: Transform @@ -154368,202 +155547,14 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Arrivals Sec Office - - uid: 371 + - uid: 17151 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,37.5 + pos: -22.5,20.5 parent: 8364 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Shooting Range - - uid: 387 - components: - - type: Transform - pos: 15.5,37.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: HoS Room - - uid: 388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,39.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Locker Room - - uid: 394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,33.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Room - - uid: 397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,28.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell Block - - uid: 398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,17.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective Office - - uid: 403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,21.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: sec hallway - - uid: 867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,28.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Entrance - - uid: 944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,21.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Front Door - - uid: 1224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,41.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Visitation - - uid: 3871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,40.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Entrance - - uid: 4839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,35.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security - - uid: 7659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,24.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Storage - - uid: 17694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,17.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Law Office - - uid: 17764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,31.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation - - uid: 18310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,30.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security External West - - uid: 20860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,44.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Ext W - - uid: 20861 - components: - - type: Transform - pos: 0.5,53.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Ext N + id: GenPop Outside - South - uid: 21239 components: - type: Transform @@ -154575,92 +155566,256 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Sec Checkpoint Evac - - uid: 26391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,45.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Hall - - uid: 26392 + - uid: 28553 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,48.5 + pos: -13.5,24.5 parent: 8364 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Recreation - - uid: 26393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,51.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Botany - - uid: 26394 + id: Visitation Entrance + - uid: 28554 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,51.5 + pos: -17.5,25.5 parent: 8364 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Library - - uid: 26395 - components: - - type: Transform - pos: -19.5,43.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Cells - - uid: 26578 - components: - - type: Transform - pos: 8.5,43.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Exterior Armory - - uid: 27217 + id: GenPop - Entrance + - uid: 28555 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,36.5 + pos: -13.5,30.5 parent: 8364 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Entryway - - uid: 28138 + id: GenPop - Lockers + - uid: 28556 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,39.5 + pos: -25.5,31.5 parent: 8364 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory + id: GenPop - Library + - uid: 28557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,37.5 + parent: 8364 + - type: SurveillanceCamera + id: GenPop - Dining + - uid: 28558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,36.5 + parent: 8364 + - type: SurveillanceCamera + id: GenPop - North Hall + - uid: 28559 + components: + - type: Transform + pos: -24.5,33.5 + parent: 8364 + - type: SurveillanceCamera + id: GenPop - Kitchen + - uid: 28560 + components: + - type: Transform + pos: -28.5,47.5 + parent: 8364 + - type: SurveillanceCamera + id: GenPop Outside - North + - uid: 28561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,43.5 + parent: 8364 + - type: SurveillanceCamera + id: GenPop - Botany + - uid: 28562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,37.5 + parent: 8364 + - type: SurveillanceCamera + id: GenPop Outside - West + - uid: 28566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,31.5 + parent: 8364 + - type: SurveillanceCamera + id: GenPop Outside - South West + - uid: 28570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,48.5 + parent: 8364 + - type: SurveillanceCamera + id: Armory - Outside + - uid: 28571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,34.5 + parent: 8364 + - type: SurveillanceCamera + id: Warden + - uid: 28572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,28.5 + parent: 8364 + - type: SurveillanceCamera + id: Entrance + - uid: 28573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,24.5 + parent: 8364 + - type: SurveillanceCamera + id: Lawyer + - uid: 28574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,27.5 + parent: 8364 + - type: SurveillanceCamera + id: Detective + - uid: 28575 + components: + - type: Transform + pos: 4.5,29.5 + parent: 8364 + - type: SurveillanceCamera + id: BrigMed + - uid: 28576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,38.5 + parent: 8364 + - type: SurveillanceCamera + id: Hall - East + - uid: 28577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,36.5 + parent: 8364 + - type: SurveillanceCamera + id: Hall - West + - uid: 28578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,35.5 + parent: 8364 + - type: SurveillanceCamera + id: Interrogation + - uid: 28579 + components: + - type: Transform + pos: -12.5,40.5 + parent: 8364 + - type: SurveillanceCamera + id: Armory - South + - uid: 28580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,47.5 + parent: 8364 + - type: SurveillanceCamera + id: Armory - North + - uid: 28583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,51.5 + parent: 8364 + - type: SurveillanceCamera + id: Hall - North + - uid: 28584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,42.5 + parent: 8364 + - type: SurveillanceCamera + id: Hall - Outside Armory + - uid: 28585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,50.5 + parent: 8364 + - type: SurveillanceCamera + id: Locker Room - North + - uid: 28586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,43.5 + parent: 8364 + - type: SurveillanceCamera + id: Locker Room - South + - uid: 28587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,51.5 + parent: 8364 + - type: SurveillanceCamera + id: Firing Range + - uid: 28588 + components: + - type: Transform + pos: 8.5,40.5 + parent: 8364 + - type: SurveillanceCamera + id: Break Room - South + - uid: 28589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,47.5 + parent: 8364 + - type: SurveillanceCamera + id: Break Room - North + - uid: 28590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,52.5 + parent: 8364 + - type: SurveillanceCamera + id: Head of Security Office + - uid: 28626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,19.5 + parent: 8364 + - type: SurveillanceCamera + id: GenPop Substation + - uid: 28627 + components: + - type: Transform + pos: 7.5,33.5 + parent: 8364 + - type: SurveillanceCamera + id: Security Substation - proto: SurveillanceCameraService entities: - uid: 20939 @@ -154856,15 +156011,18 @@ entities: parent: 8364 - proto: SyringeEphedrine entities: - - uid: 39 + - uid: 7771 components: - type: Transform - pos: -20.550821,14.488405 + pos: -20.563557,16.546284 parent: 8364 - - type: Tag - tags: [] - proto: Table entities: + - uid: 67 + components: + - type: Transform + pos: -0.5,41.5 + parent: 8364 - uid: 1499 components: - type: Transform @@ -154935,10 +156093,14 @@ entities: - type: Transform pos: -23.5,-38.5 parent: 8364 + - uid: 3134 + components: + - type: Transform + pos: -26.5,38.5 + parent: 8364 - uid: 3687 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,-57.5 parent: 8364 - uid: 3689 @@ -154956,11 +156118,36 @@ entities: - type: Transform pos: 9.5,-54.5 parent: 8364 + - uid: 4571 + components: + - type: Transform + pos: 11.5,40.5 + parent: 8364 + - uid: 4645 + components: + - type: Transform + pos: 11.5,43.5 + parent: 8364 - uid: 4872 components: - type: Transform pos: -20.5,-40.5 parent: 8364 + - uid: 5074 + components: + - type: Transform + pos: 11.5,44.5 + parent: 8364 + - uid: 5081 + components: + - type: Transform + pos: -17.5,37.5 + parent: 8364 + - uid: 5102 + components: + - type: Transform + pos: 1.5,40.5 + parent: 8364 - uid: 5348 components: - type: Transform @@ -154996,11 +156183,6 @@ entities: - type: Transform pos: 37.5,-7.5 parent: 8364 - - uid: 5575 - components: - - type: Transform - pos: 14.5,30.5 - parent: 8364 - uid: 5582 components: - type: Transform @@ -155011,6 +156193,16 @@ entities: - type: Transform pos: -13.5,-21.5 parent: 8364 + - uid: 5767 + components: + - type: Transform + pos: 4.5,42.5 + parent: 8364 + - uid: 6268 + components: + - type: Transform + pos: -11.5,14.5 + parent: 8364 - uid: 6269 components: - type: Transform @@ -155106,6 +156298,36 @@ entities: - type: Transform pos: 37.5,-6.5 parent: 8364 + - uid: 7357 + components: + - type: Transform + pos: 0.5,43.5 + parent: 8364 + - uid: 7365 + components: + - type: Transform + pos: -23.5,41.5 + parent: 8364 + - uid: 7377 + components: + - type: Transform + pos: -23.5,42.5 + parent: 8364 + - uid: 7382 + components: + - type: Transform + pos: -25.5,38.5 + parent: 8364 + - uid: 7383 + components: + - type: Transform + pos: -23.5,35.5 + parent: 8364 + - uid: 7384 + components: + - type: Transform + pos: -24.5,35.5 + parent: 8364 - uid: 7997 components: - type: Transform @@ -155116,140 +156338,120 @@ entities: - type: Transform pos: 37.5,-16.5 parent: 8364 - - uid: 8443 + - uid: 8395 components: - type: Transform - pos: 12.5,19.5 + pos: -15.5,15.5 parent: 8364 - - uid: 8785 + - uid: 8424 components: - type: Transform - pos: 6.5,35.5 + pos: -16.5,34.5 parent: 8364 - - uid: 8790 + - uid: 8425 components: - type: Transform - pos: -11.5,32.5 + pos: -15.5,34.5 parent: 8364 - - uid: 8794 + - uid: 8429 components: - type: Transform - pos: -14.5,31.5 + pos: 8.5,42.5 parent: 8364 - - uid: 8795 + - uid: 8497 components: - type: Transform - pos: -14.5,30.5 + pos: -2.5,40.5 parent: 8364 - - uid: 8924 + - uid: 8499 components: - type: Transform - pos: -18.5,16.5 + pos: -0.5,40.5 parent: 8364 - - uid: 9078 + - uid: 8513 components: - type: Transform - pos: -6.5,52.5 + pos: 4.5,43.5 parent: 8364 - - uid: 9079 + - uid: 8525 components: - type: Transform - pos: -5.5,49.5 + pos: -25.5,35.5 parent: 8364 - - uid: 9082 + - uid: 8536 components: - type: Transform - pos: -6.5,49.5 + pos: -17.5,38.5 parent: 8364 - - uid: 9083 + - uid: 8571 components: - type: Transform - pos: -4.5,52.5 + pos: 1.5,41.5 parent: 8364 - - uid: 9110 + - uid: 8614 components: - type: Transform - pos: -6.5,50.5 + pos: 8.5,43.5 parent: 8364 - - uid: 9111 + - uid: 8622 components: - type: Transform - pos: -5.5,52.5 + pos: -26.5,35.5 parent: 8364 - - uid: 9151 + - uid: 8637 components: - type: Transform - pos: -19.5,22.5 + pos: -26.5,36.5 parent: 8364 - - uid: 9195 + - uid: 8666 components: - type: Transform - pos: -2.5,38.5 + pos: -30.5,35.5 parent: 8364 - - uid: 9196 + - uid: 8698 components: - type: Transform - pos: -2.5,39.5 + pos: -20.5,16.5 parent: 8364 - - uid: 9199 + - uid: 8725 components: - type: Transform - pos: 4.5,33.5 + pos: -10.5,14.5 parent: 8364 - - uid: 9200 + - uid: 8753 components: - type: Transform - pos: 4.5,32.5 + pos: -0.5,43.5 parent: 8364 - - uid: 9201 + - uid: 8882 components: - type: Transform - pos: -1.5,30.5 + pos: -30.5,36.5 parent: 8364 - - uid: 9202 + - uid: 8884 components: - type: Transform - pos: -0.5,29.5 + pos: -21.5,16.5 parent: 8364 - - uid: 9203 + - uid: 8992 components: - type: Transform - pos: 7.5,35.5 + pos: -28.5,38.5 parent: 8364 - - uid: 9210 + - uid: 9052 components: - type: Transform - pos: 18.5,36.5 + pos: -16.5,15.5 parent: 8364 - - uid: 9244 + - uid: 9156 components: - type: Transform - pos: 1.5,30.5 + pos: -9.5,38.5 parent: 8364 - - uid: 9572 + - uid: 9157 components: - type: Transform - pos: 21.5,34.5 - parent: 8364 - - uid: 9573 - components: - - type: Transform - pos: 21.5,35.5 - parent: 8364 - - uid: 9577 - components: - - type: Transform - pos: 25.5,35.5 - parent: 8364 - - uid: 9580 - components: - - type: Transform - pos: 25.5,32.5 - parent: 8364 - - uid: 9589 - components: - - type: Transform - pos: 21.5,36.5 + pos: -8.5,38.5 parent: 8364 - uid: 10561 components: @@ -155276,41 +156478,6 @@ entities: - type: Transform pos: 67.5,18.5 parent: 8364 - - uid: 11565 - components: - - type: Transform - pos: -18.5,14.5 - parent: 8364 - - uid: 11596 - components: - - type: Transform - pos: 13.5,30.5 - parent: 8364 - - uid: 11612 - components: - - type: Transform - pos: 12.5,32.5 - parent: 8364 - - uid: 11613 - components: - - type: Transform - pos: 11.5,30.5 - parent: 8364 - - uid: 11616 - components: - - type: Transform - pos: 16.5,33.5 - parent: 8364 - - uid: 11617 - components: - - type: Transform - pos: 16.5,32.5 - parent: 8364 - - uid: 11619 - components: - - type: Transform - pos: 16.5,34.5 - parent: 8364 - uid: 11900 components: - type: Transform @@ -155446,11 +156613,6 @@ entities: - type: Transform pos: -5.5,9.5 parent: 8364 - - uid: 13818 - components: - - type: Transform - pos: -4.5,49.5 - parent: 8364 - uid: 13838 components: - type: Transform @@ -155569,7 +156731,6 @@ entities: - uid: 14608 components: - type: Transform - rot: -1.5707963267948966 rad pos: -41.5,-12.5 parent: 8364 - uid: 14628 @@ -155815,7 +156976,6 @@ entities: - uid: 16551 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,-17.5 parent: 8364 - uid: 16660 @@ -155861,7 +157021,6 @@ entities: - uid: 16957 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,-54.5 parent: 8364 - uid: 17146 @@ -155872,7 +157031,6 @@ entities: - uid: 17658 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,-55.5 parent: 8364 - uid: 17762 @@ -155908,7 +157066,6 @@ entities: - uid: 18729 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-64.5 parent: 8364 - uid: 18751 @@ -155919,13 +157076,11 @@ entities: - uid: 19013 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,-64.5 parent: 8364 - uid: 19014 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,-64.5 parent: 8364 - uid: 19047 @@ -155976,7 +157131,6 @@ entities: - uid: 19286 components: - type: Transform - rot: -1.5707963267948966 rad pos: 36.5,-45.5 parent: 8364 - uid: 19304 @@ -156022,7 +157176,6 @@ entities: - uid: 19863 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-20.5 parent: 8364 - uid: 20054 @@ -156245,25 +157398,9 @@ entities: - type: Transform pos: 29.5,-23.5 parent: 8364 - - uid: 21710 - components: - - type: Transform - pos: -19.5,14.5 - parent: 8364 - - uid: 21711 - components: - - type: Transform - pos: -20.5,14.5 - parent: 8364 - - uid: 21789 - components: - - type: Transform - pos: 6.5,32.5 - parent: 8364 - uid: 22585 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,-56.5 parent: 8364 - uid: 22621 @@ -156301,12 +157438,6 @@ entities: - type: Transform pos: -33.5,-18.5 parent: 8364 - - uid: 25743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,41.5 - parent: 8364 - uid: 25826 components: - type: Transform @@ -156322,26 +157453,6 @@ entities: - type: Transform pos: -21.5,-15.5 parent: 8364 - - uid: 26405 - components: - - type: Transform - pos: 1.5,51.5 - parent: 8364 - - uid: 26406 - components: - - type: Transform - pos: 0.5,51.5 - parent: 8364 - - uid: 26407 - components: - - type: Transform - pos: -0.5,51.5 - parent: 8364 - - uid: 26408 - components: - - type: Transform - pos: 2.5,51.5 - parent: 8364 - uid: 26810 components: - type: Transform @@ -156487,6 +157598,16 @@ entities: - type: Transform pos: -36.5,18.5 parent: 8364 + - uid: 9438 + components: + - type: Transform + pos: 13.5,38.5 + parent: 8364 + - uid: 9440 + components: + - type: Transform + pos: 14.5,38.5 + parent: 8364 - uid: 13240 components: - type: Transform @@ -156494,6 +157615,11 @@ entities: parent: 8364 - proto: TableGlass entities: + - uid: 58 + components: + - type: Transform + pos: 2.5,31.5 + parent: 8364 - uid: 2034 components: - type: Transform @@ -156524,15 +157650,10 @@ entities: - type: Transform pos: 21.5,10.5 parent: 8364 - - uid: 7789 + - uid: 8414 components: - type: Transform - pos: -6.5,29.5 - parent: 8364 - - uid: 9360 - components: - - type: Transform - pos: -6.5,30.5 + pos: 3.5,31.5 parent: 8364 - uid: 10787 components: @@ -156768,6 +157889,11 @@ entities: parent: 8364 - proto: TableReinforced entities: + - uid: 15 + components: + - type: Transform + pos: -5.5,29.5 + parent: 8364 - uid: 1610 components: - type: Transform @@ -156871,7 +157997,6 @@ entities: - uid: 5585 components: - type: Transform - rot: 3.141592653589793 rad pos: -12.5,-22.5 parent: 8364 - uid: 5611 @@ -156959,45 +158084,60 @@ entities: - type: Transform pos: 32.5,-7.5 parent: 8364 - - uid: 8593 + - uid: 7620 components: - type: Transform - pos: 1.5,22.5 + pos: 10.5,47.5 parent: 8364 - - uid: 8594 + - uid: 7858 components: - type: Transform - pos: 2.5,22.5 + pos: 10.5,49.5 parent: 8364 - - uid: 8595 + - uid: 7859 components: - type: Transform - pos: 3.5,23.5 + pos: 10.5,48.5 parent: 8364 - - uid: 8596 + - uid: 8656 components: - type: Transform - pos: 3.5,24.5 + pos: 10.5,50.5 parent: 8364 - - uid: 9023 + - uid: 8710 components: - type: Transform - pos: -4.5,40.5 + pos: -10.5,33.5 parent: 8364 - - uid: 9566 + - uid: 8909 components: - type: Transform - pos: 24.5,37.5 + pos: -2.5,33.5 parent: 8364 - - uid: 9998 + - uid: 8936 components: - type: Transform - pos: 23.5,37.5 + pos: -2.5,31.5 parent: 8364 - - uid: 10078 + - uid: 8938 components: - type: Transform - pos: 5.5,37.5 + pos: -2.5,32.5 + parent: 8364 + - uid: 8963 + components: + - type: Transform + pos: -4.5,29.5 + parent: 8364 + - uid: 9079 + components: + - type: Transform + pos: -3.5,34.5 + parent: 8364 + - uid: 9097 + components: + - type: Transform + pos: -4.5,34.5 parent: 8364 - uid: 10612 components: @@ -157009,11 +158149,6 @@ entities: - type: Transform pos: 47.5,-10.5 parent: 8364 - - uid: 11609 - components: - - type: Transform - pos: 22.5,37.5 - parent: 8364 - uid: 11640 components: - type: Transform @@ -157059,11 +158194,6 @@ entities: - type: Transform pos: -58.5,2.5 parent: 8364 - - uid: 13439 - components: - - type: Transform - pos: -6.5,40.5 - parent: 8364 - uid: 13762 components: - type: Transform @@ -157072,7 +158202,6 @@ entities: - uid: 14469 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,-6.5 parent: 8364 - uid: 14476 @@ -157175,6 +158304,12 @@ entities: - type: Transform pos: -3.5,-24.5 parent: 8364 + - uid: 26321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,46.5 + parent: 8364 - uid: 26827 components: - type: Transform @@ -157249,6 +158384,12 @@ entities: - type: Transform pos: 45.5,-62.5 parent: 8364 + - uid: 836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,53.5 + parent: 8364 - uid: 911 components: - type: Transform @@ -157284,6 +158425,11 @@ entities: - type: Transform pos: 9.5,-12.5 parent: 8364 + - uid: 5440 + components: + - type: Transform + pos: -6.5,22.5 + parent: 8364 - uid: 5528 components: - type: Transform @@ -157377,6 +158523,11 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-13.5 parent: 8364 + - uid: 6265 + components: + - type: Transform + pos: -7.5,22.5 + parent: 8364 - uid: 6389 components: - type: Transform @@ -157472,116 +158623,134 @@ entities: - type: Transform pos: 57.5,-7.5 parent: 8364 - - uid: 8392 + - uid: 7189 components: - type: Transform - pos: 16.5,27.5 + pos: -10.5,20.5 parent: 8364 - - uid: 8396 + - uid: 7641 components: - type: Transform - pos: 13.5,25.5 + rot: -1.5707963267948966 rad + pos: 10.5,25.5 parent: 8364 - - uid: 8397 + - uid: 7795 components: - type: Transform - pos: 13.5,24.5 + pos: -8.5,22.5 parent: 8364 - - uid: 8398 + - uid: 7798 components: - type: Transform - pos: 17.5,25.5 + rot: -1.5707963267948966 rad + pos: 10.5,27.5 parent: 8364 - - uid: 8543 - components: - - type: Transform - pos: 14.5,27.5 - parent: 8364 - - uid: 8545 - components: - - type: Transform - pos: 15.5,27.5 - parent: 8364 - - uid: 8601 + - uid: 7964 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,24.5 + pos: 4.5,53.5 parent: 8364 - - uid: 9042 + - uid: 8574 components: - type: Transform - pos: -13.5,48.5 + pos: 2.5,55.5 parent: 8364 - - uid: 9211 + - uid: 8632 components: - type: Transform - pos: 12.5,41.5 + rot: -1.5707963267948966 rad + pos: 10.5,23.5 parent: 8364 - - uid: 9212 + - uid: 8648 components: - type: Transform - pos: 12.5,40.5 + rot: -1.5707963267948966 rad + pos: 10.5,24.5 parent: 8364 - - uid: 9213 + - uid: 8683 components: - type: Transform - pos: 12.5,39.5 + pos: -4.5,19.5 parent: 8364 - - uid: 9214 + - uid: 8694 components: - type: Transform - pos: 13.5,39.5 + rot: -1.5707963267948966 rad + pos: 9.5,27.5 parent: 8364 - - uid: 9215 + - uid: 8720 components: - type: Transform - pos: 14.5,39.5 + pos: -6.5,23.5 parent: 8364 - - uid: 9624 + - uid: 8778 components: - type: Transform - pos: -5.5,14.5 + pos: -8.5,23.5 parent: 8364 - - uid: 9625 + - uid: 8781 components: - type: Transform - pos: -4.5,14.5 + rot: 3.141592653589793 rad + pos: 5.5,53.5 parent: 8364 - - uid: 9626 + - uid: 8782 components: - type: Transform - pos: -3.5,14.5 + rot: 3.141592653589793 rad + pos: 3.5,53.5 parent: 8364 - - uid: 9628 + - uid: 8785 components: - type: Transform - pos: -8.5,17.5 + rot: 3.141592653589793 rad + pos: -1.5,53.5 parent: 8364 - - uid: 9630 + - uid: 8851 components: - type: Transform - pos: -11.5,17.5 + rot: 1.5707963267948966 rad + pos: 4.5,25.5 parent: 8364 - - uid: 9631 + - uid: 8863 components: - type: Transform - pos: -10.5,17.5 + rot: 1.5707963267948966 rad + pos: 2.5,26.5 parent: 8364 - - uid: 9632 + - uid: 8864 components: - type: Transform - pos: -10.5,16.5 + rot: 1.5707963267948966 rad + pos: 5.5,25.5 parent: 8364 - - uid: 9633 + - uid: 8927 components: - type: Transform - pos: -11.5,13.5 + pos: -10.5,19.5 parent: 8364 - - uid: 9634 + - uid: 8944 components: - type: Transform - pos: -12.5,13.5 + rot: 1.5707963267948966 rad + pos: 2.5,27.5 + parent: 8364 + - uid: 8950 + components: + - type: Transform + pos: -4.5,20.5 + parent: 8364 + - uid: 8959 + components: + - type: Transform + pos: -24.5,28.5 + parent: 8364 + - uid: 9446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,36.5 parent: 8364 - uid: 10424 components: @@ -157919,16 +159088,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-13.5 parent: 8364 - - uid: 25679 - components: - - type: Transform - pos: -14.5,40.5 - parent: 8364 - - uid: 25683 - components: - - type: Transform - pos: -14.5,41.5 - parent: 8364 - uid: 25881 components: - type: Transform @@ -157954,22 +159113,12 @@ entities: - type: Transform pos: 18.5,-9.5 parent: 8364 - - uid: 26421 - components: - - type: Transform - pos: -14.5,53.5 - parent: 8364 - - uid: 26422 - components: - - type: Transform - pos: -11.5,52.5 - parent: 8364 - proto: TargetClown entities: - - uid: 8389 + - uid: 7612 components: - type: Transform - pos: 23.5,41.5 + pos: 7.5,51.5 parent: 8364 - proto: TargetHuman entities: @@ -157978,6 +159127,22 @@ entities: - type: Transform pos: 59.5,-30.5 parent: 8364 +- proto: TargetSyndicate + entities: + - uid: 7335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,50.5 + parent: 8364 + - type: Conveyed + - uid: 7622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,48.5 + parent: 8364 + - type: Conveyed - proto: TegCenter entities: - uid: 4052 @@ -158172,36 +159337,76 @@ entities: ents: [] - proto: TeslaCoil entities: - - uid: 22224 + - uid: 4231 components: - type: Transform - pos: 7.5,-85.5 + pos: -7.5,-79.5 parent: 8364 - - uid: 26855 + - type: Battery + startingCharge: 1000000 + - uid: 14564 components: - type: Transform - pos: -8.5,-85.5 + pos: 8.5,-86.5 parent: 8364 + - type: Battery + startingCharge: 1000000 - uid: 26912 components: - type: Transform - pos: -8.5,-86.5 + pos: 8.5,-87.5 parent: 8364 - - uid: 26913 + - type: Battery + startingCharge: 1000000 + - uid: 26941 components: - type: Transform - pos: -8.5,-87.5 + pos: 8.5,-85.5 parent: 8364 - - uid: 26914 + - type: Battery + startingCharge: 1000000 + - uid: 28384 components: - type: Transform - pos: 7.5,-86.5 + pos: -9.5,-87.5 parent: 8364 - - uid: 26915 + - type: Battery + startingCharge: 1000000 + - uid: 28385 components: - type: Transform - pos: 7.5,-87.5 + pos: -9.5,-86.5 parent: 8364 + - type: Battery + startingCharge: 1000000 + - uid: 28386 + components: + - type: Transform + pos: -9.5,-85.5 + parent: 8364 + - type: Battery + startingCharge: 1000000 + - uid: 28408 + components: + - type: Transform + pos: -4.5,-79.5 + parent: 8364 + - type: Battery + startingCharge: 1000000 + - uid: 28409 + components: + - type: Transform + pos: -5.5,-79.5 + parent: 8364 + - type: Battery + startingCharge: 1000000 + - uid: 28410 + components: + - type: Transform + pos: -6.5,-79.5 + parent: 8364 + - type: Battery + startingCharge: 1000000 - proto: TeslaGenerator entities: - uid: 19143 @@ -158278,21 +159483,11 @@ entities: - type: Transform pos: 31.5,-26.5 parent: 8364 - - uid: 8759 - components: - - type: Transform - pos: -6.5,38.5 - parent: 8364 - uid: 9179 components: - type: Transform pos: 43.5,-32.5 parent: 8364 - - uid: 9358 - components: - - type: Transform - pos: -4.5,38.5 - parent: 8364 - uid: 10766 components: - type: Transform @@ -158320,6 +159515,16 @@ entities: - type: Transform pos: 16.5,3.5 parent: 8364 + - uid: 8715 + components: + - type: Transform + pos: -29.5,42.5 + parent: 8364 + - uid: 8764 + components: + - type: Transform + pos: -31.5,42.5 + parent: 8364 - uid: 15696 components: - type: Transform @@ -158338,12 +159543,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-58.5 parent: 8364 - - uid: 26357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,40.5 - parent: 8364 - proto: ToiletEmpty entities: - uid: 13841 @@ -158496,6 +159695,11 @@ entities: parent: 8364 - proto: ToolboxMechanicalFilled entities: + - uid: 7310 + components: + - type: Transform + pos: 11.493021,43.62339 + parent: 8364 - uid: 11748 components: - type: Transform @@ -158580,6 +159784,27 @@ entities: - type: Transform pos: 4.714342,-65.524 parent: 8364 +- proto: ToyFigurineDetective + entities: + - uid: 28537 + components: + - type: Transform + pos: 10.31451,24.93452 + parent: 8364 +- proto: ToyFigurineHeadOfSecurity + entities: + - uid: 5071 + components: + - type: Transform + pos: 4.5240607,53.701935 + parent: 8364 +- proto: ToyFigurineLawyer + entities: + - uid: 9134 + components: + - type: Transform + pos: 2.7402713,27.145737 + parent: 8364 - proto: ToyFigurinePassenger entities: - uid: 21550 @@ -158587,6 +159812,20 @@ entities: - type: Transform pos: 45.487507,-73.57517 parent: 8364 +- proto: ToyFigurineSecurity + entities: + - uid: 28538 + components: + - type: Transform + pos: 4.3552947,43.280006 + parent: 8364 +- proto: ToyHammer + entities: + - uid: 8774 + components: + - type: Transform + pos: -7.529222,22.580597 + parent: 8364 - proto: ToyMouse entities: - uid: 19285 @@ -158645,10 +159884,10 @@ entities: parent: 8364 - proto: TrainingBomb entities: - - uid: 7916 + - uid: 8570 components: - type: Transform - pos: 25.5,34.5 + pos: 8.5,51.5 parent: 8364 - proto: TrashBag entities: @@ -158672,11 +159911,6 @@ entities: - type: Transform pos: -49.68496,-6.4370565 parent: 8364 - - uid: 26450 - components: - - type: Transform - pos: -23.561554,51.44249 - parent: 8364 - uid: 27571 components: - type: Transform @@ -158714,6 +159948,28 @@ entities: - type: Transform pos: -12.463955,6.5667586 parent: 8364 +- proto: TurnstileGenpopEnter + entities: + - uid: 8703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,27.5 + parent: 8364 +- proto: TurnstileGenpopLeave + entities: + - uid: 771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,29.5 + parent: 8364 + - uid: 8739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,27.5 + parent: 8364 - proto: TwoWayLever entities: - uid: 4172 @@ -158744,10 +160000,11 @@ entities: - Open - - Middle - Close - - uid: 9807 + - uid: 9265 components: - type: Transform - pos: 25.5,29.5 + rot: 3.141592653589793 rad + pos: 21.5,27.5 parent: 8364 - uid: 11322 components: @@ -158995,6 +160252,12 @@ entities: - type: Transform pos: -11.5,-24.5 parent: 8364 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - type: MaterialStorage materialWhiteList: - Cloth @@ -159132,6 +160395,11 @@ entities: - type: Transform pos: -13.5,-12.5 parent: 8364 + - uid: 4520 + components: + - type: Transform + pos: 5.5,46.5 + parent: 8364 - uid: 5231 components: - type: Transform @@ -159142,11 +160410,6 @@ entities: - type: Transform pos: 5.5,-12.5 parent: 8364 - - uid: 9463 - components: - - type: Transform - pos: 12.5,37.5 - parent: 8364 - uid: 12244 components: - type: Transform @@ -159196,10 +160459,10 @@ entities: - type: Transform pos: 68.5,-43.5 parent: 8364 - - uid: 8465 + - uid: 7325 components: - type: Transform - pos: 15.5,19.5 + pos: -3.5,14.5 parent: 8364 - uid: 10826 components: @@ -159249,10 +160512,10 @@ entities: parent: 8364 - proto: VendingMachineDetDrobe entities: - - uid: 9419 + - uid: 5253 components: - type: Transform - pos: -8.5,16.5 + pos: 12.5,27.5 parent: 8364 - proto: VendingMachineDinnerware entities: @@ -159270,16 +160533,16 @@ entities: parent: 8364 - proto: VendingMachineDonut entities: + - uid: 7978 + components: + - type: Transform + pos: 5.5,48.5 + parent: 8364 - uid: 11797 components: - type: Transform pos: 82.5,-1.5 parent: 8364 - - uid: 21790 - components: - - type: Transform - pos: 6.5,33.5 - parent: 8364 - proto: VendingMachineEngiDrobe entities: - uid: 9189 @@ -159296,6 +160559,11 @@ entities: parent: 8364 - proto: VendingMachineGames entities: + - uid: 8993 + components: + - type: Transform + pos: -32.5,34.5 + parent: 8364 - uid: 15379 components: - type: Transform @@ -159331,10 +160599,10 @@ entities: parent: 8364 - proto: VendingMachineLawDrobe entities: - - uid: 9416 + - uid: 8852 components: - type: Transform - pos: -10.5,13.5 + pos: 5.5,23.5 parent: 8364 - proto: VendingMachineMedical entities: @@ -159343,10 +160611,10 @@ entities: - type: Transform pos: 41.5,-31.5 parent: 8364 - - uid: 9391 + - uid: 6619 components: - type: Transform - pos: -9.5,32.5 + pos: 2.5,34.5 parent: 8364 - uid: 16753 components: @@ -159407,15 +160675,15 @@ entities: parent: 8364 - proto: VendingMachineSec entities: - - uid: 10079 + - uid: 7614 components: - type: Transform - pos: 6.5,40.5 + pos: -1.5,43.5 parent: 8364 - - uid: 10080 + - uid: 7817 components: - type: Transform - pos: 6.5,38.5 + pos: -0.5,51.5 parent: 8364 - proto: VendingMachineSecDrobe entities: @@ -159424,16 +160692,16 @@ entities: - type: Transform pos: -60.5,5.5 parent: 8364 + - uid: 7358 + components: + - type: Transform + pos: -2.5,43.5 + parent: 8364 - uid: 17677 components: - type: Transform pos: -21.5,-31.5 parent: 8364 - - uid: 25726 - components: - - type: Transform - pos: 6.5,39.5 - parent: 8364 - proto: VendingMachineSeeds entities: - uid: 10713 @@ -159443,10 +160711,10 @@ entities: parent: 8364 - proto: VendingMachineSeedsUnlocked entities: - - uid: 9113 + - uid: 8811 components: - type: Transform - pos: 4.5,51.5 + pos: -27.5,42.5 parent: 8364 - proto: VendingMachineSnack entities: @@ -159467,17 +160735,12 @@ entities: - type: Transform pos: 61.5,19.5 parent: 8364 - - uid: 26548 - components: - - type: Transform - pos: -24.5,45.5 - parent: 8364 - proto: VendingMachineSustenance entities: - - uid: 8757 + - uid: 28516 components: - type: Transform - pos: 3.5,51.5 + pos: -31.5,33.5 parent: 8364 - proto: VendingMachineTankDispenserEngineering entities: @@ -159493,6 +160756,11 @@ entities: - type: Transform pos: 75.5,-43.5 parent: 8364 + - uid: 7314 + components: + - type: Transform + pos: -12.5,47.5 + parent: 8364 - uid: 14610 components: - type: Transform @@ -159565,11 +160833,6 @@ entities: parent: 8364 - proto: WallmountTelescreen entities: - - uid: 8441 - components: - - type: Transform - pos: -4.5,14.5 - parent: 8364 - uid: 9424 components: - type: Transform @@ -159589,25 +160852,20 @@ entities: parent: 8364 - proto: WallReinforced entities: - - uid: 12 + - uid: 1 components: - type: Transform - pos: -20.5,17.5 + pos: -2.5,18.5 parent: 8364 - - uid: 15 + - uid: 4 components: - type: Transform - pos: -20.5,15.5 + pos: -0.5,52.5 parent: 8364 - - uid: 16 + - uid: 24 components: - type: Transform - pos: -17.5,18.5 - parent: 8364 - - uid: 19 - components: - - type: Transform - pos: -17.5,17.5 + pos: -25.5,11.5 parent: 8364 - uid: 26 components: @@ -159664,41 +160922,26 @@ entities: - type: Transform pos: -28.5,4.5 parent: 8364 - - uid: 38 + - uid: 44 components: - type: Transform - pos: -25.5,11.5 + pos: -4.5,25.5 + parent: 8364 + - uid: 45 + components: + - type: Transform + pos: -2.5,24.5 parent: 8364 - uid: 53 components: - type: Transform pos: -13.5,0.5 parent: 8364 - - uid: 63 - components: - - type: Transform - pos: -20.5,18.5 - parent: 8364 - - uid: 64 - components: - - type: Transform - pos: -20.5,16.5 - parent: 8364 - - uid: 67 - components: - - type: Transform - pos: -18.5,15.5 - parent: 8364 - uid: 68 components: - type: Transform pos: -30.5,11.5 parent: 8364 - - uid: 70 - components: - - type: Transform - pos: -17.5,16.5 - parent: 8364 - uid: 78 components: - type: Transform @@ -159754,16 +160997,6 @@ entities: - type: Transform pos: -11.5,10.5 parent: 8364 - - uid: 89 - components: - - type: Transform - pos: -9.5,10.5 - parent: 8364 - - uid: 90 - components: - - type: Transform - pos: -7.5,10.5 - parent: 8364 - uid: 91 components: - type: Transform @@ -159807,7 +161040,6 @@ entities: - uid: 144 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-11.5 parent: 8364 - uid: 178 @@ -160075,10 +161307,20 @@ entities: - type: Transform pos: -48.5,25.5 parent: 8364 - - uid: 339 + - uid: 370 components: - type: Transform - pos: -20.5,39.5 + pos: -1.5,52.5 + parent: 8364 + - uid: 403 + components: + - type: Transform + pos: -21.5,17.5 + parent: 8364 + - uid: 508 + components: + - type: Transform + pos: -11.5,25.5 parent: 8364 - uid: 518 components: @@ -160088,7 +161330,6 @@ entities: - uid: 543 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-2.5 parent: 8364 - uid: 585 @@ -160099,7 +161340,6 @@ entities: - uid: 587 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,7.5 parent: 8364 - uid: 588 @@ -160120,13 +161360,11 @@ entities: - uid: 597 components: - type: Transform - rot: 1.5707963267948966 rad pos: -79.5,-3.5 parent: 8364 - uid: 598 components: - type: Transform - rot: 1.5707963267948966 rad pos: -79.5,-2.5 parent: 8364 - uid: 599 @@ -160142,37 +161380,31 @@ entities: - uid: 601 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,11.5 parent: 8364 - uid: 608 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,7.5 parent: 8364 - uid: 614 components: - type: Transform - rot: 1.5707963267948966 rad pos: -80.5,7.5 parent: 8364 - uid: 620 components: - type: Transform - rot: 1.5707963267948966 rad pos: -78.5,-6.5 parent: 8364 - uid: 625 components: - type: Transform - rot: 1.5707963267948966 rad pos: -77.5,-6.5 parent: 8364 - uid: 626 components: - type: Transform - rot: -1.5707963267948966 rad pos: -69.5,7.5 parent: 8364 - uid: 632 @@ -160193,37 +161425,31 @@ entities: - uid: 636 components: - type: Transform - rot: 1.5707963267948966 rad pos: -79.5,-6.5 parent: 8364 - uid: 638 components: - type: Transform - rot: 1.5707963267948966 rad pos: -79.5,-5.5 parent: 8364 - uid: 639 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,-3.5 parent: 8364 - uid: 640 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,-2.5 parent: 8364 - uid: 642 components: - type: Transform - rot: 1.5707963267948966 rad pos: -79.5,8.5 parent: 8364 - uid: 644 components: - type: Transform - rot: 1.5707963267948966 rad pos: -80.5,-6.5 parent: 8364 - uid: 645 @@ -160239,31 +161465,26 @@ entities: - uid: 654 components: - type: Transform - rot: 1.5707963267948966 rad pos: -79.5,7.5 parent: 8364 - uid: 659 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,10.5 parent: 8364 - uid: 675 components: - type: Transform - rot: -1.5707963267948966 rad pos: -69.5,-2.5 parent: 8364 - uid: 680 components: - type: Transform - rot: -1.5707963267948966 rad pos: -71.5,7.5 parent: 8364 - uid: 684 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,-6.5 parent: 8364 - uid: 735 @@ -160291,15 +161512,20 @@ entities: - type: Transform pos: 45.5,15.5 parent: 8364 - - uid: 771 + - uid: 774 components: - type: Transform - pos: 4.5,41.5 + pos: -8.5,48.5 + parent: 8364 + - uid: 775 + components: + - type: Transform + pos: 0.5,52.5 parent: 8364 - uid: 778 components: - type: Transform - pos: -2.5,41.5 + pos: 1.5,51.5 parent: 8364 - uid: 779 components: @@ -160309,9 +161535,18 @@ entities: - uid: 854 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,-73.5 parent: 8364 + - uid: 855 + components: + - type: Transform + pos: -16.5,18.5 + parent: 8364 + - uid: 867 + components: + - type: Transform + pos: -19.5,39.5 + parent: 8364 - uid: 875 components: - type: Transform @@ -160385,7 +161620,6 @@ entities: - uid: 901 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 8364 - uid: 925 @@ -160428,6 +161662,11 @@ entities: - type: Transform pos: -36.5,25.5 parent: 8364 + - uid: 944 + components: + - type: Transform + pos: -21.5,39.5 + parent: 8364 - uid: 945 components: - type: Transform @@ -160443,15 +161682,15 @@ entities: - type: Transform pos: -31.5,25.5 parent: 8364 - - uid: 952 + - uid: 954 components: - type: Transform - pos: -21.5,15.5 + pos: -28.5,32.5 parent: 8364 - - uid: 965 + - uid: 964 components: - type: Transform - pos: -16.5,37.5 + pos: -23.5,21.5 parent: 8364 - uid: 966 components: @@ -160583,6 +161822,16 @@ entities: - type: Transform pos: -45.5,18.5 parent: 8364 + - uid: 1075 + components: + - type: Transform + pos: 9.5,39.5 + parent: 8364 + - uid: 1076 + components: + - type: Transform + pos: -11.5,50.5 + parent: 8364 - uid: 1084 components: - type: Transform @@ -160931,7 +162180,6 @@ entities: - uid: 1512 components: - type: Transform - rot: -1.5707963267948966 rad pos: -78.5,-2.5 parent: 8364 - uid: 1515 @@ -162947,103 +164195,86 @@ entities: - uid: 2984 components: - type: Transform - rot: -1.5707963267948966 rad pos: 24.5,-39.5 parent: 8364 - uid: 2985 components: - type: Transform - rot: -1.5707963267948966 rad pos: 25.5,-39.5 parent: 8364 - uid: 2986 components: - type: Transform - rot: -1.5707963267948966 rad pos: 26.5,-39.5 parent: 8364 - uid: 2987 components: - type: Transform - rot: -1.5707963267948966 rad pos: 31.5,-57.5 parent: 8364 - uid: 2988 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-39.5 parent: 8364 - uid: 2989 components: - type: Transform - rot: -1.5707963267948966 rad pos: 31.5,-56.5 parent: 8364 - uid: 2990 components: - type: Transform - rot: -1.5707963267948966 rad pos: 28.5,-39.5 parent: 8364 - uid: 2991 components: - type: Transform - rot: -1.5707963267948966 rad pos: 29.5,-39.5 parent: 8364 - uid: 2992 components: - type: Transform - rot: -1.5707963267948966 rad pos: 30.5,-39.5 parent: 8364 - uid: 2993 components: - type: Transform - rot: -1.5707963267948966 rad pos: 31.5,-40.5 parent: 8364 - uid: 2994 components: - type: Transform - rot: -1.5707963267948966 rad pos: 31.5,-39.5 parent: 8364 - uid: 2995 components: - type: Transform - rot: -1.5707963267948966 rad pos: 31.5,-52.5 parent: 8364 - uid: 2996 components: - type: Transform - rot: -1.5707963267948966 rad pos: 31.5,-51.5 parent: 8364 - uid: 2997 components: - type: Transform - rot: -1.5707963267948966 rad pos: 31.5,-47.5 parent: 8364 - uid: 2998 components: - type: Transform - rot: -1.5707963267948966 rad pos: 31.5,-46.5 parent: 8364 - uid: 2999 components: - type: Transform - rot: -1.5707963267948966 rad pos: 31.5,-42.5 parent: 8364 - uid: 3000 components: - type: Transform - rot: -1.5707963267948966 rad pos: 31.5,-41.5 parent: 8364 - uid: 3033 @@ -163889,13 +165120,11 @@ entities: - uid: 3610 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-15.5 parent: 8364 - uid: 3612 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-17.5 parent: 8364 - uid: 3614 @@ -163938,16 +165167,19 @@ entities: - type: Transform pos: -18.5,-65.5 parent: 8364 + - uid: 3658 + components: + - type: Transform + pos: -29.5,32.5 + parent: 8364 - uid: 3659 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-17.5 parent: 8364 - uid: 3660 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-16.5 parent: 8364 - uid: 3664 @@ -163973,7 +165205,6 @@ entities: - uid: 3670 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-16.5 parent: 8364 - uid: 3688 @@ -163984,7 +165215,6 @@ entities: - uid: 3695 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-15.5 parent: 8364 - uid: 3698 @@ -164190,7 +165420,6 @@ entities: - uid: 3854 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-12.5 parent: 8364 - uid: 3859 @@ -164213,6 +165442,11 @@ entities: - type: Transform pos: 20.5,-70.5 parent: 8364 + - uid: 3878 + components: + - type: Transform + pos: -14.5,53.5 + parent: 8364 - uid: 3895 components: - type: Transform @@ -164386,13 +165620,11 @@ entities: - uid: 3983 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-42.5 parent: 8364 - uid: 3986 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-45.5 parent: 8364 - uid: 3987 @@ -164655,6 +165887,11 @@ entities: - type: Transform pos: 16.5,-67.5 parent: 8364 + - uid: 4163 + components: + - type: Transform + pos: 6.5,39.5 + parent: 8364 - uid: 4167 components: - type: Transform @@ -164793,21 +166030,28 @@ entities: - uid: 4206 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-13.5 parent: 8364 - uid: 4208 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 8364 - uid: 4209 components: - type: Transform - rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 8364 + - uid: 4212 + components: + - type: Transform + pos: 11.5,39.5 + parent: 8364 + - uid: 4213 + components: + - type: Transform + pos: 5.5,37.5 + parent: 8364 - uid: 4216 components: - type: Transform @@ -164881,19 +166125,16 @@ entities: - uid: 4276 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-78.5 parent: 8364 - uid: 4323 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,-74.5 parent: 8364 - uid: 4324 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,-77.5 parent: 8364 - uid: 4326 @@ -164919,7 +166160,6 @@ entities: - uid: 4457 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,-84.5 parent: 8364 - uid: 4505 @@ -164960,19 +166200,16 @@ entities: - uid: 4551 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-11.5 parent: 8364 - uid: 4559 components: - type: Transform - rot: -1.5707963267948966 rad pos: -1.5,-10.5 parent: 8364 - uid: 4560 components: - type: Transform - rot: -1.5707963267948966 rad pos: -0.5,-10.5 parent: 8364 - uid: 4580 @@ -165075,15 +166312,10 @@ entities: - type: Transform pos: -3.5,-75.5 parent: 8364 - - uid: 4708 + - uid: 4710 components: - type: Transform - pos: -11.5,37.5 - parent: 8364 - - uid: 4709 - components: - - type: Transform - pos: -12.5,37.5 + pos: -3.5,55.5 parent: 8364 - uid: 4712 components: @@ -165418,23 +166650,46 @@ entities: - uid: 4944 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,-83.5 parent: 8364 - - uid: 4954 + - uid: 4946 components: - type: Transform - pos: 21.5,39.5 + pos: -16.5,39.5 + parent: 8364 + - uid: 4948 + components: + - type: Transform + pos: -25.5,23.5 + parent: 8364 + - uid: 4950 + components: + - type: Transform + pos: -22.5,39.5 + parent: 8364 + - uid: 4951 + components: + - type: Transform + pos: -22.5,40.5 parent: 8364 - uid: 4956 components: - type: Transform - pos: 26.5,34.5 + pos: -14.5,52.5 + parent: 8364 + - uid: 4957 + components: + - type: Transform + pos: -11.5,56.5 + parent: 8364 + - uid: 4958 + components: + - type: Transform + pos: -14.5,50.5 parent: 8364 - uid: 4960 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,-83.5 parent: 8364 - uid: 4974 @@ -165497,10 +166752,70 @@ entities: - type: Transform pos: 36.5,-70.5 parent: 8364 + - uid: 4990 + components: + - type: Transform + pos: -25.5,26.5 + parent: 8364 + - uid: 5016 + components: + - type: Transform + pos: -28.5,31.5 + parent: 8364 + - uid: 5069 + components: + - type: Transform + pos: -32.5,40.5 + parent: 8364 + - uid: 5083 + components: + - type: Transform + pos: -3.5,53.5 + parent: 8364 + - uid: 5090 + components: + - type: Transform + pos: -3.5,54.5 + parent: 8364 + - uid: 5091 + components: + - type: Transform + pos: 2.5,56.5 + parent: 8364 + - uid: 5092 + components: + - type: Transform + pos: -1.5,56.5 + parent: 8364 + - uid: 5093 + components: + - type: Transform + pos: -0.5,56.5 + parent: 8364 + - uid: 5095 + components: + - type: Transform + pos: 0.5,56.5 + parent: 8364 + - uid: 5097 + components: + - type: Transform + pos: 6.5,56.5 + parent: 8364 + - uid: 5098 + components: + - type: Transform + pos: 5.5,56.5 + parent: 8364 - uid: 5110 components: - type: Transform - pos: 18.5,31.5 + pos: 18.5,49.5 + parent: 8364 + - uid: 5113 + components: + - type: Transform + pos: 18.5,47.5 parent: 8364 - uid: 5240 components: @@ -165512,21 +166827,41 @@ entities: - type: Transform pos: -14.5,-12.5 parent: 8364 - - uid: 5252 - components: - - type: Transform - pos: 17.5,39.5 - parent: 8364 - - uid: 5253 - components: - - type: Transform - pos: 30.5,25.5 - parent: 8364 - uid: 5267 components: - type: Transform pos: 2.5,-22.5 parent: 8364 + - uid: 5288 + components: + - type: Transform + pos: -17.5,16.5 + parent: 8364 + - uid: 5443 + components: + - type: Transform + pos: -12.5,18.5 + parent: 8364 + - uid: 5455 + components: + - type: Transform + pos: -16.5,20.5 + parent: 8364 + - uid: 5456 + components: + - type: Transform + pos: -16.5,19.5 + parent: 8364 + - uid: 5458 + components: + - type: Transform + pos: -24.5,21.5 + parent: 8364 + - uid: 5464 + components: + - type: Transform + pos: -12.5,20.5 + parent: 8364 - uid: 5501 components: - type: Transform @@ -165537,11 +166872,41 @@ entities: - type: Transform pos: 1.5,-26.5 parent: 8364 + - uid: 5575 + components: + - type: Transform + pos: -25.5,24.5 + parent: 8364 + - uid: 5576 + components: + - type: Transform + pos: -28.5,28.5 + parent: 8364 + - uid: 5597 + components: + - type: Transform + pos: -28.5,30.5 + parent: 8364 + - uid: 5598 + components: + - type: Transform + pos: -28.5,43.5 + parent: 8364 - uid: 5601 components: - type: Transform pos: -7.5,1.5 parent: 8364 + - uid: 5620 + components: + - type: Transform + pos: 5.5,38.5 + parent: 8364 + - uid: 5621 + components: + - type: Transform + pos: -25.5,21.5 + parent: 8364 - uid: 5629 components: - type: Transform @@ -165577,6 +166942,11 @@ entities: - type: Transform pos: 3.5,-9.5 parent: 8364 + - uid: 5795 + components: + - type: Transform + pos: -12.5,19.5 + parent: 8364 - uid: 5797 components: - type: Transform @@ -165615,13 +166985,11 @@ entities: - uid: 6095 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,-78.5 parent: 8364 - uid: 6097 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,-75.5 parent: 8364 - uid: 6100 @@ -165629,6 +166997,11 @@ entities: - type: Transform pos: -5.5,-20.5 parent: 8364 + - uid: 6267 + components: + - type: Transform + pos: -20.5,17.5 + parent: 8364 - uid: 6313 components: - type: Transform @@ -165664,6 +167037,11 @@ entities: - type: Transform pos: -42.5,-29.5 parent: 8364 + - uid: 6457 + components: + - type: Transform + pos: 18.5,51.5 + parent: 8364 - uid: 6494 components: - type: Transform @@ -165699,6 +167077,16 @@ entities: - type: Transform pos: -40.5,-32.5 parent: 8364 + - uid: 6593 + components: + - type: Transform + pos: -7.5,58.5 + parent: 8364 + - uid: 6622 + components: + - type: Transform + pos: 8.5,36.5 + parent: 8364 - uid: 6671 components: - type: Transform @@ -165714,11 +167102,21 @@ entities: - type: Transform pos: -9.5,-92.5 parent: 8364 + - uid: 6922 + components: + - type: Transform + pos: 5.5,34.5 + parent: 8364 - uid: 6931 components: - type: Transform pos: 4.5,-50.5 parent: 8364 + - uid: 6970 + components: + - type: Transform + pos: 7.5,22.5 + parent: 8364 - uid: 7005 components: - type: Transform @@ -165729,6 +167127,16 @@ entities: - type: Transform pos: 8.5,-49.5 parent: 8364 + - uid: 7195 + components: + - type: Transform + pos: -7.5,25.5 + parent: 8364 + - uid: 7199 + components: + - type: Transform + pos: -7.5,10.5 + parent: 8364 - uid: 7214 components: - type: Transform @@ -165744,115 +167152,110 @@ entities: - type: Transform pos: -55.5,-20.5 parent: 8364 - - uid: 7289 + - uid: 7288 components: - type: Transform - pos: -8.5,42.5 + pos: -27.5,28.5 parent: 8364 - - uid: 7303 + - uid: 7298 components: - type: Transform - pos: -7.5,38.5 + pos: -19.5,20.5 + parent: 8364 + - uid: 7299 + components: + - type: Transform + pos: -32.5,39.5 + parent: 8364 + - uid: 7300 + components: + - type: Transform + pos: -32.5,32.5 + parent: 8364 + - uid: 7301 + components: + - type: Transform + pos: -25.5,27.5 + parent: 8364 + - uid: 7302 + components: + - type: Transform + pos: -28.5,45.5 parent: 8364 - uid: 7304 components: - type: Transform - pos: -7.5,39.5 + pos: -22.5,46.5 parent: 8364 - - uid: 7333 + - uid: 7306 components: - type: Transform - pos: -12.5,40.5 + pos: -17.5,39.5 parent: 8364 - - uid: 7334 + - uid: 7308 components: - type: Transform - pos: -11.5,42.5 + pos: 6.5,52.5 parent: 8364 - - uid: 7335 + - uid: 7320 components: - type: Transform - pos: -3.5,43.5 + pos: -21.5,21.5 parent: 8364 - - uid: 7336 + - uid: 7326 components: - type: Transform - pos: -3.5,42.5 + pos: -10.5,13.5 parent: 8364 - - uid: 7337 + - uid: 7327 components: - type: Transform - pos: -3.5,41.5 + pos: -11.5,13.5 parent: 8364 - - uid: 7352 + - uid: 7328 components: - type: Transform - pos: -16.5,33.5 + pos: 13.5,24.5 + parent: 8364 + - uid: 7332 + components: + - type: Transform + pos: 13.5,46.5 parent: 8364 - uid: 7353 components: - type: Transform - pos: -16.5,32.5 - parent: 8364 - - uid: 7354 - components: - - type: Transform - pos: -16.5,31.5 + pos: -18.5,35.5 parent: 8364 - uid: 7355 components: - type: Transform - pos: -16.5,30.5 + pos: 10.5,52.5 parent: 8364 - - uid: 7356 + - uid: 7359 components: - type: Transform - pos: -16.5,29.5 - parent: 8364 - - uid: 7385 - components: - - type: Transform - pos: -16.5,28.5 + pos: 12.5,40.5 parent: 8364 - uid: 7391 components: - type: Transform - pos: -17.5,25.5 - parent: 8364 - - uid: 7394 - components: - - type: Transform - pos: -17.5,15.5 + pos: -22.5,21.5 parent: 8364 - uid: 7395 components: - type: Transform - pos: -19.5,15.5 + pos: -18.5,39.5 parent: 8364 - - uid: 7396 + - uid: 7417 components: - type: Transform - pos: -19.5,18.5 - parent: 8364 - - uid: 7451 - components: - - type: Transform - pos: -20.5,22.5 - parent: 8364 - - uid: 7452 - components: - - type: Transform - pos: -21.5,25.5 + pos: 11.5,52.5 parent: 8364 - uid: 7477 components: - type: Transform - pos: -20.5,21.5 - parent: 8364 - - uid: 7478 - components: - - type: Transform - pos: -21.5,19.5 + pos: -17.5,40.5 parent: 8364 - uid: 7479 components: @@ -165892,87 +167295,57 @@ entities: - uid: 7566 components: - type: Transform - pos: 28.5,23.5 + pos: 7.5,52.5 parent: 8364 - - uid: 7567 + - uid: 7608 components: - type: Transform - pos: 28.5,22.5 + pos: -18.5,34.5 parent: 8364 - - uid: 7617 + - uid: 7613 components: - type: Transform - pos: 28.5,21.5 + pos: 8.5,52.5 parent: 8364 - - uid: 7618 + - uid: 7616 components: - type: Transform - pos: 28.5,20.5 - parent: 8364 - - uid: 7619 - components: - - type: Transform - pos: 28.5,24.5 - parent: 8364 - - uid: 7620 - components: - - type: Transform - pos: 28.5,25.5 - parent: 8364 - - uid: 7624 - components: - - type: Transform - pos: 20.5,31.5 - parent: 8364 - - uid: 7625 - components: - - type: Transform - pos: 24.5,43.5 + pos: 18.5,48.5 parent: 8364 - uid: 7626 components: - type: Transform - pos: 26.5,31.5 + pos: 18.5,46.5 parent: 8364 - - uid: 7630 + - uid: 7627 components: - type: Transform - pos: 25.5,43.5 + pos: -13.5,48.5 parent: 8364 - - uid: 7631 + - uid: 7629 components: - type: Transform - pos: 21.5,38.5 + pos: -15.5,48.5 parent: 8364 - - uid: 7632 + - uid: 7634 components: - type: Transform - pos: 25.5,31.5 - parent: 8364 - - uid: 7633 - components: - - type: Transform - pos: 26.5,35.5 + pos: 12.5,28.5 parent: 8364 - uid: 7635 components: - type: Transform - pos: 24.5,31.5 + pos: 13.5,27.5 parent: 8364 - uid: 7636 components: - type: Transform - pos: 23.5,43.5 - parent: 8364 - - uid: 7637 - components: - - type: Transform - pos: 21.5,31.5 + pos: 13.5,23.5 parent: 8364 - uid: 7638 components: - type: Transform - pos: 22.5,31.5 + pos: 9.5,32.5 parent: 8364 - uid: 7639 components: @@ -165982,17 +167355,7 @@ entities: - uid: 7640 components: - type: Transform - pos: 25.5,38.5 - parent: 8364 - - uid: 7641 - components: - - type: Transform - pos: 26.5,33.5 - parent: 8364 - - uid: 7642 - components: - - type: Transform - pos: 26.5,32.5 + pos: 9.5,22.5 parent: 8364 - uid: 7644 components: @@ -166007,97 +167370,62 @@ entities: - uid: 7646 components: - type: Transform - pos: 25.5,37.5 + pos: 12.5,31.5 + parent: 8364 + - uid: 7653 + components: + - type: Transform + pos: 5.5,32.5 parent: 8364 - uid: 7654 components: - type: Transform - pos: 4.5,34.5 + pos: -12.5,21.5 parent: 8364 - uid: 7655 components: - type: Transform - pos: 5.5,33.5 - parent: 8364 - - uid: 7656 - components: - - type: Transform - pos: 5.5,34.5 - parent: 8364 - - uid: 7657 - components: - - type: Transform - pos: 5.5,35.5 - parent: 8364 - - uid: 7658 - components: - - type: Transform - pos: -3.5,31.5 + pos: 2.5,22.5 parent: 8364 - uid: 7660 components: - type: Transform - pos: -2.5,34.5 + pos: -13.5,39.5 + parent: 8364 + - uid: 7661 + components: + - type: Transform + pos: -10.5,39.5 parent: 8364 - uid: 7662 components: - type: Transform - pos: -3.5,34.5 - parent: 8364 - - uid: 7663 - components: - - type: Transform - pos: -3.5,35.5 - parent: 8364 - - uid: 7664 - components: - - type: Transform - pos: -3.5,36.5 + pos: -11.5,39.5 parent: 8364 - uid: 7665 components: - type: Transform - pos: -3.5,37.5 + pos: 12.5,39.5 parent: 8364 - - uid: 7666 + - uid: 7673 components: - type: Transform - pos: -3.5,38.5 - parent: 8364 - - uid: 7667 - components: - - type: Transform - pos: -3.5,39.5 - parent: 8364 - - uid: 7668 - components: - - type: Transform - pos: -3.5,40.5 - parent: 8364 - - uid: 7669 - components: - - type: Transform - pos: -2.5,40.5 - parent: 8364 - - uid: 7670 - components: - - type: Transform - pos: -1.5,40.5 - parent: 8364 - - uid: 7675 - components: - - type: Transform - pos: 3.5,40.5 + pos: 1.5,23.5 parent: 8364 - uid: 7676 components: - type: Transform - pos: 4.5,40.5 + pos: -16.5,25.5 parent: 8364 - - uid: 7679 + - uid: 7678 components: - type: Transform - pos: 5.5,40.5 + pos: -17.5,18.5 + parent: 8364 + - uid: 7680 + components: + - type: Transform + pos: -18.5,36.5 parent: 8364 - uid: 7682 components: @@ -166109,237 +167437,310 @@ entities: - type: Transform pos: 6.5,2.5 parent: 8364 + - uid: 7685 + components: + - type: Transform + pos: -15.5,40.5 + parent: 8364 - uid: 7687 components: - type: Transform pos: 6.5,1.5 parent: 8364 - - uid: 7688 + - uid: 7691 components: - type: Transform - pos: 28.5,28.5 + pos: 1.5,30.5 parent: 8364 - - uid: 7689 + - uid: 7694 components: - type: Transform - pos: 28.5,27.5 + pos: -13.5,53.5 parent: 8364 - - uid: 7692 + - uid: 7695 components: - type: Transform - pos: 29.5,27.5 + pos: -8.5,54.5 parent: 8364 - - uid: 7693 + - uid: 7696 components: - type: Transform - pos: 27.5,20.5 + pos: -6.5,56.5 parent: 8364 - - uid: 7697 + - uid: 7698 components: - type: Transform - pos: 28.5,29.5 - parent: 8364 - - uid: 7701 - components: - - type: Transform - pos: 16.5,42.5 - parent: 8364 - - uid: 7702 - components: - - type: Transform - pos: 12.5,42.5 - parent: 8364 - - uid: 7703 - components: - - type: Transform - pos: 13.5,36.5 - parent: 8364 - - uid: 7704 - components: - - type: Transform - pos: 11.5,41.5 - parent: 8364 - - uid: 7705 - components: - - type: Transform - pos: 11.5,39.5 + pos: -10.5,54.5 parent: 8364 - uid: 7707 components: - type: Transform - pos: 11.5,42.5 + pos: -25.5,22.5 parent: 8364 - - uid: 7726 + - uid: 7708 components: - type: Transform - pos: 10.5,42.5 + pos: -23.5,16.5 + parent: 8364 + - uid: 7710 + components: + - type: Transform + pos: -20.5,18.5 + parent: 8364 + - uid: 7711 + components: + - type: Transform + pos: -23.5,17.5 + parent: 8364 + - uid: 7713 + components: + - type: Transform + pos: -11.5,48.5 + parent: 8364 + - uid: 7716 + components: + - type: Transform + pos: -12.5,48.5 parent: 8364 - uid: 7734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,38.5 + pos: -9.5,13.5 parent: 8364 - - uid: 7755 + - uid: 7735 components: - type: Transform - pos: 17.5,42.5 + pos: -8.5,13.5 parent: 8364 - - uid: 7760 + - uid: 7742 components: - type: Transform - pos: 17.5,41.5 + pos: -23.5,14.5 parent: 8364 - - uid: 7762 + - uid: 7748 components: - type: Transform - pos: 17.5,40.5 + pos: -23.5,13.5 + parent: 8364 + - uid: 7750 + components: + - type: Transform + pos: -23.5,12.5 + parent: 8364 + - uid: 7761 + components: + - type: Transform + pos: 1.5,35.5 + parent: 8364 + - uid: 7763 + components: + - type: Transform + pos: -16.5,26.5 + parent: 8364 + - uid: 7766 + components: + - type: Transform + pos: -22.5,17.5 parent: 8364 - uid: 7780 components: - type: Transform - pos: 10.5,29.5 + pos: 12.5,46.5 parent: 8364 - uid: 7781 components: - type: Transform - pos: 9.5,29.5 + pos: -11.5,52.5 parent: 8364 - uid: 7784 components: - type: Transform - pos: 5.5,29.5 + pos: 1.5,22.5 parent: 8364 - uid: 7785 components: - type: Transform - pos: 4.5,29.5 + pos: -7.5,39.5 parent: 8364 - - uid: 7795 + - uid: 7786 components: - type: Transform - pos: -15.5,28.5 + pos: -9.5,43.5 parent: 8364 - uid: 7796 components: - type: Transform - pos: -15.5,27.5 - parent: 8364 - - uid: 7799 - components: - - type: Transform - pos: -15.5,25.5 + pos: 1.5,28.5 parent: 8364 - uid: 7800 components: - type: Transform - pos: -15.5,24.5 + pos: -4.5,13.5 parent: 8364 - - uid: 7802 + - uid: 7803 components: - type: Transform - pos: -15.5,22.5 + pos: 8.5,38.5 parent: 8364 - - uid: 7845 + - uid: 7805 components: - type: Transform - pos: 11.5,28.5 + pos: 2.5,35.5 parent: 8364 - - uid: 7846 + - uid: 7810 components: - type: Transform - pos: 11.5,26.5 + pos: 6.5,32.5 parent: 8364 - - uid: 7847 + - uid: 7811 components: - type: Transform - pos: 11.5,25.5 + pos: 7.5,32.5 parent: 8364 - - uid: 7848 + - uid: 7813 components: - type: Transform - pos: 11.5,24.5 + pos: 5.5,36.5 parent: 8364 - - uid: 7849 + - uid: 7818 components: - type: Transform - pos: 11.5,23.5 + pos: 12.5,38.5 parent: 8364 - - uid: 7867 + - uid: 7829 components: - type: Transform - pos: -3.5,22.5 + pos: -7.5,48.5 parent: 8364 - - uid: 7873 + - uid: 7831 components: - type: Transform - pos: 11.5,22.5 + pos: -8.5,39.5 parent: 8364 - - uid: 7893 + - uid: 7832 components: - type: Transform - pos: 10.5,22.5 + pos: -9.5,39.5 + parent: 8364 + - uid: 7834 + components: + - type: Transform + pos: -25.5,46.5 + parent: 8364 + - uid: 7838 + components: + - type: Transform + pos: -13.5,36.5 + parent: 8364 + - uid: 7842 + components: + - type: Transform + pos: -15.5,47.5 + parent: 8364 + - uid: 7844 + components: + - type: Transform + pos: -9.5,10.5 + parent: 8364 + - uid: 7851 + components: + - type: Transform + pos: -18.5,37.5 + parent: 8364 + - uid: 7862 + components: + - type: Transform + pos: 1.5,29.5 + parent: 8364 + - uid: 7864 + components: + - type: Transform + pos: 1.5,25.5 + parent: 8364 + - uid: 7865 + components: + - type: Transform + pos: 4.5,22.5 + parent: 8364 + - uid: 7866 + components: + - type: Transform + pos: -12.5,13.5 + parent: 8364 + - uid: 7868 + components: + - type: Transform + pos: -13.5,13.5 + parent: 8364 + - uid: 7870 + components: + - type: Transform + pos: -5.5,13.5 + parent: 8364 + - uid: 7872 + components: + - type: Transform + pos: -6.5,13.5 + parent: 8364 + - uid: 7874 + components: + - type: Transform + pos: -2.5,13.5 + parent: 8364 + - uid: 7878 + components: + - type: Transform + pos: -14.5,13.5 + parent: 8364 + - uid: 7879 + components: + - type: Transform + pos: -14.5,14.5 + parent: 8364 + - uid: 7880 + components: + - type: Transform + pos: 8.5,37.5 + parent: 8364 + - uid: 7886 + components: + - type: Transform + pos: -11.5,49.5 + parent: 8364 + - uid: 7889 + components: + - type: Transform + pos: -11.5,53.5 + parent: 8364 + - uid: 7890 + components: + - type: Transform + pos: -7.5,49.5 + parent: 8364 + - uid: 7891 + components: + - type: Transform + pos: -7.5,54.5 + parent: 8364 + - uid: 7892 + components: + - type: Transform + pos: -7.5,57.5 parent: 8364 - uid: 7894 components: - type: Transform - pos: 9.5,22.5 - parent: 8364 - - uid: 7895 - components: - - type: Transform - pos: 8.5,22.5 - parent: 8364 - - uid: 7896 - components: - - type: Transform - pos: 7.5,22.5 + pos: -32.5,42.5 parent: 8364 - uid: 7897 components: - type: Transform - pos: 0.5,22.5 + pos: -12.5,17.5 parent: 8364 - - uid: 7899 + - uid: 7915 components: - type: Transform - pos: -7.5,22.5 - parent: 8364 - - uid: 7900 - components: - - type: Transform - pos: -11.5,22.5 - parent: 8364 - - uid: 7901 - components: - - type: Transform - pos: -11.5,21.5 - parent: 8364 - - uid: 7902 - components: - - type: Transform - pos: -12.5,21.5 - parent: 8364 - - uid: 7903 - components: - - type: Transform - pos: -13.5,21.5 - parent: 8364 - - uid: 7904 - components: - - type: Transform - pos: -14.5,21.5 - parent: 8364 - - uid: 7905 - components: - - type: Transform - pos: -15.5,21.5 - parent: 8364 - - uid: 7918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,12.5 + pos: 1.5,50.5 parent: 8364 - uid: 7919 components: @@ -166371,35 +167772,10 @@ entities: - type: Transform pos: -4.5,10.5 parent: 8364 - - uid: 7962 - components: - - type: Transform - pos: 17.5,37.5 - parent: 8364 - - uid: 7963 - components: - - type: Transform - pos: 17.5,36.5 - parent: 8364 - - uid: 7964 - components: - - type: Transform - pos: 21.5,37.5 - parent: 8364 - - uid: 7965 - components: - - type: Transform - pos: 20.5,37.5 - parent: 8364 - - uid: 7976 - components: - - type: Transform - pos: 15.5,36.5 - parent: 8364 - uid: 7977 components: - type: Transform - pos: 11.5,36.5 + pos: -30.5,32.5 parent: 8364 - uid: 8010 components: @@ -167081,499 +168457,900 @@ entities: - type: Transform pos: -12.5,-6.5 parent: 8364 - - uid: 8573 + - uid: 8384 components: - type: Transform - pos: 4.5,42.5 + pos: -14.5,39.5 parent: 8364 - - uid: 8574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,16.5 - parent: 8364 - - uid: 8575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,14.5 - parent: 8364 - - uid: 8576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,12.5 - parent: 8364 - - uid: 8628 - components: - - type: Transform - pos: -1.5,34.5 - parent: 8364 - - uid: 8747 - components: - - type: Transform - pos: -21.5,52.5 - parent: 8364 - - uid: 8754 - components: - - type: Transform - pos: -20.5,52.5 - parent: 8364 - - uid: 8784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,34.5 - parent: 8364 - - uid: 8817 - components: - - type: Transform - pos: -18.5,25.5 - parent: 8364 - - uid: 8853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,42.5 - parent: 8364 - - uid: 8858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,42.5 - parent: 8364 - - uid: 8860 - components: - - type: Transform - pos: -10.5,53.5 - parent: 8364 - - uid: 8861 - components: - - type: Transform - pos: -9.5,54.5 - parent: 8364 - - uid: 8862 - components: - - type: Transform - pos: -8.5,54.5 - parent: 8364 - - uid: 8863 - components: - - type: Transform - pos: -7.5,54.5 - parent: 8364 - - uid: 8864 - components: - - type: Transform - pos: -7.5,53.5 - parent: 8364 - - uid: 8865 - components: - - type: Transform - pos: -6.5,53.5 - parent: 8364 - - uid: 8866 - components: - - type: Transform - pos: -5.5,53.5 - parent: 8364 - - uid: 8867 - components: - - type: Transform - pos: -4.5,53.5 - parent: 8364 - - uid: 8884 - components: - - type: Transform - pos: -15.5,26.5 - parent: 8364 - - uid: 8893 - components: - - type: Transform - pos: -19.5,25.5 - parent: 8364 - - uid: 8894 - components: - - type: Transform - pos: -16.5,25.5 - parent: 8364 - - uid: 8935 - components: - - type: Transform - pos: 5.5,46.5 - parent: 8364 - - uid: 8958 - components: - - type: Transform - pos: -12.5,39.5 - parent: 8364 - - uid: 8969 - components: - - type: Transform - pos: -12.5,42.5 - parent: 8364 - - uid: 8974 - components: - - type: Transform - pos: -12.5,41.5 - parent: 8364 - - uid: 9003 - components: - - type: Transform - pos: -9.5,42.5 - parent: 8364 - - uid: 9005 - components: - - type: Transform - pos: -23.5,52.5 - parent: 8364 - - uid: 9006 - components: - - type: Transform - pos: -22.5,52.5 - parent: 8364 - - uid: 9015 - components: - - type: Transform - pos: -24.5,42.5 - parent: 8364 - - uid: 9017 - components: - - type: Transform - pos: -24.5,40.5 - parent: 8364 - - uid: 9018 - components: - - type: Transform - pos: 5.5,47.5 - parent: 8364 - - uid: 9019 - components: - - type: Transform - pos: -16.5,39.5 - parent: 8364 - - uid: 9024 - components: - - type: Transform - pos: -10.5,54.5 - parent: 8364 - - uid: 9025 - components: - - type: Transform - pos: 5.5,48.5 - parent: 8364 - - uid: 9026 - components: - - type: Transform - pos: 5.5,51.5 - parent: 8364 - - uid: 9027 - components: - - type: Transform - pos: 5.5,52.5 - parent: 8364 - - uid: 9028 - components: - - type: Transform - pos: 5.5,49.5 - parent: 8364 - - uid: 9039 - components: - - type: Transform - pos: -23.5,39.5 - parent: 8364 - - uid: 9045 - components: - - type: Transform - pos: -16.5,54.5 - parent: 8364 - - uid: 9050 - components: - - type: Transform - pos: -24.5,39.5 - parent: 8364 - - uid: 9051 - components: - - type: Transform - pos: -13.5,54.5 - parent: 8364 - - uid: 9052 + - uid: 8386 components: - type: Transform pos: 5.5,50.5 parent: 8364 - - uid: 9053 + - uid: 8393 components: - type: Transform - pos: -17.5,39.5 + pos: -22.5,45.5 parent: 8364 - - uid: 9054 + - uid: 8394 components: - type: Transform - pos: -22.5,39.5 + pos: -17.5,48.5 parent: 8364 - - uid: 9056 + - uid: 8400 components: - type: Transform - pos: -24.5,46.5 + pos: 9.5,35.5 parent: 8364 - - uid: 9057 + - uid: 8402 components: - type: Transform - pos: -24.5,49.5 + pos: 9.5,52.5 parent: 8364 - - uid: 9060 + - uid: 8405 components: - type: Transform - pos: -12.5,38.5 + pos: -10.5,48.5 parent: 8364 - - uid: 9071 + - uid: 8411 components: - type: Transform - pos: -24.5,41.5 + pos: -16.5,48.5 parent: 8364 - - uid: 9081 + - uid: 8412 + components: + - type: Transform + pos: 7.5,39.5 + parent: 8364 + - uid: 8413 + components: + - type: Transform + pos: 8.5,39.5 + parent: 8364 + - uid: 8415 + components: + - type: Transform + pos: 8.5,32.5 + parent: 8364 + - uid: 8416 + components: + - type: Transform + pos: 5.5,35.5 + parent: 8364 + - uid: 8417 + components: + - type: Transform + pos: 5.5,39.5 + parent: 8364 + - uid: 8418 + components: + - type: Transform + pos: -9.5,48.5 + parent: 8364 + - uid: 8423 + components: + - type: Transform + pos: -12.5,39.5 + parent: 8364 + - uid: 8434 + components: + - type: Transform + pos: -16.5,14.5 + parent: 8364 + - uid: 8435 + components: + - type: Transform + pos: 9.5,33.5 + parent: 8364 + - uid: 8440 + components: + - type: Transform + pos: 13.5,22.5 + parent: 8364 + - uid: 8441 + components: + - type: Transform + pos: 18.5,50.5 + parent: 8364 + - uid: 8443 + components: + - type: Transform + pos: 18.5,52.5 + parent: 8364 + - uid: 8465 + components: + - type: Transform + pos: 9.5,31.5 + parent: 8364 + - uid: 8469 + components: + - type: Transform + pos: -28.5,46.5 + parent: 8364 + - uid: 8471 + components: + - type: Transform + pos: 12.5,29.5 + parent: 8364 + - uid: 8472 + components: + - type: Transform + pos: 11.5,31.5 + parent: 8364 + - uid: 8473 + components: + - type: Transform + pos: 10.5,31.5 + parent: 8364 + - uid: 8491 + components: + - type: Transform + pos: 9.5,36.5 + parent: 8364 + - uid: 8505 + components: + - type: Transform + pos: -14.5,49.5 + parent: 8364 + - uid: 8506 + components: + - type: Transform + pos: -16.5,49.5 + parent: 8364 + - uid: 8507 + components: + - type: Transform + pos: -17.5,49.5 + parent: 8364 + - uid: 8508 + components: + - type: Transform + pos: -11.5,57.5 + parent: 8364 + - uid: 8509 + components: + - type: Transform + pos: -7.5,59.5 + parent: 8364 + - uid: 8510 + components: + - type: Transform + pos: -3.5,58.5 + parent: 8364 + - uid: 8511 + components: + - type: Transform + pos: -13.5,49.5 + parent: 8364 + - uid: 8512 + components: + - type: Transform + pos: -12.5,49.5 + parent: 8364 + - uid: 8515 + components: + - type: Transform + pos: -11.5,54.5 + parent: 8364 + - uid: 8517 + components: + - type: Transform + pos: -4.5,54.5 + parent: 8364 + - uid: 8519 + components: + - type: Transform + pos: -15.5,39.5 + parent: 8364 + - uid: 8520 + components: + - type: Transform + pos: -7.5,53.5 + parent: 8364 + - uid: 8529 + components: + - type: Transform + pos: -7.5,55.5 + parent: 8364 + - uid: 8530 + components: + - type: Transform + pos: -4.5,56.5 + parent: 8364 + - uid: 8531 + components: + - type: Transform + pos: -11.5,55.5 + parent: 8364 + - uid: 8532 + components: + - type: Transform + pos: -3.5,57.5 + parent: 8364 + - uid: 8533 + components: + - type: Transform + pos: -7.5,56.5 + parent: 8364 + - uid: 8534 + components: + - type: Transform + pos: -26.5,28.5 + parent: 8364 + - uid: 8545 + components: + - type: Transform + pos: 6.5,50.5 + parent: 8364 + - uid: 8547 + components: + - type: Transform + pos: -18.5,31.5 + parent: 8364 + - uid: 8548 + components: + - type: Transform + pos: -18.5,38.5 + parent: 8364 + - uid: 8554 + components: + - type: Transform + pos: -17.5,31.5 + parent: 8364 + - uid: 8555 + components: + - type: Transform + pos: 6.5,51.5 + parent: 8364 + - uid: 8560 + components: + - type: Transform + pos: -3.5,56.5 + parent: 8364 + - uid: 8563 + components: + - type: Transform + pos: 12.5,45.5 + parent: 8364 + - uid: 8565 + components: + - type: Transform + pos: -18.5,32.5 + parent: 8364 + - uid: 8581 + components: + - type: Transform + pos: -14.5,48.5 + parent: 8364 + - uid: 8582 + components: + - type: Transform + pos: -17.5,47.5 + parent: 8364 + - uid: 8590 + components: + - type: Transform + pos: 13.5,52.5 + parent: 8364 + - uid: 8605 + components: + - type: Transform + pos: 5.5,33.5 + parent: 8364 + - uid: 8609 + components: + - type: Transform + pos: 13.5,28.5 + parent: 8364 + - uid: 8610 + components: + - type: Transform + pos: 13.5,25.5 + parent: 8364 + - uid: 8611 + components: + - type: Transform + pos: 12.5,30.5 + parent: 8364 + - uid: 8613 components: - type: Transform pos: -3.5,52.5 parent: 8364 - - uid: 9084 + - uid: 8620 + components: + - type: Transform + pos: -31.5,32.5 + parent: 8364 + - uid: 8621 + components: + - type: Transform + pos: -21.5,20.5 + parent: 8364 + - uid: 8624 + components: + - type: Transform + pos: 12.5,52.5 + parent: 8364 + - uid: 8633 + components: + - type: Transform + pos: 5.5,22.5 + parent: 8364 + - uid: 8638 + components: + - type: Transform + pos: -12.5,53.5 + parent: 8364 + - uid: 8647 + components: + - type: Transform + pos: 6.5,22.5 + parent: 8364 + - uid: 8651 + components: + - type: Transform + pos: -3.5,59.5 + parent: 8364 + - uid: 8653 + components: + - type: Transform + pos: -6.5,54.5 + parent: 8364 + - uid: 8658 + components: + - type: Transform + pos: -2.5,56.5 + parent: 8364 + - uid: 8664 + components: + - type: Transform + pos: -5.5,25.5 + parent: 8364 + - uid: 8667 + components: + - type: Transform + pos: -33.5,37.5 + parent: 8364 + - uid: 8671 + components: + - type: Transform + pos: -32.5,33.5 + parent: 8364 + - uid: 8672 + components: + - type: Transform + pos: -32.5,41.5 + parent: 8364 + - uid: 8673 + components: + - type: Transform + pos: -10.5,34.5 + parent: 8364 + - uid: 8674 + components: + - type: Transform + pos: -10.5,30.5 + parent: 8364 + - uid: 8675 + components: + - type: Transform + pos: -6.5,30.5 + parent: 8364 + - uid: 8677 + components: + - type: Transform + pos: -2.5,29.5 + parent: 8364 + - uid: 8678 + components: + - type: Transform + pos: -3.5,29.5 + parent: 8364 + - uid: 8692 + components: + - type: Transform + pos: -2.5,20.5 + parent: 8364 + - uid: 8700 + components: + - type: Transform + pos: -16.5,30.5 + parent: 8364 + - uid: 8702 + components: + - type: Transform + pos: -16.5,31.5 + parent: 8364 + - uid: 8723 + components: + - type: Transform + pos: -12.5,24.5 + parent: 8364 + - uid: 8732 + components: + - type: Transform + pos: -12.5,22.5 + parent: 8364 + - uid: 8734 + components: + - type: Transform + pos: -3.5,13.5 + parent: 8364 + - uid: 8744 components: - type: Transform pos: -2.5,52.5 parent: 8364 - - uid: 9086 + - uid: 8745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,42.5 + pos: 1.5,52.5 parent: 8364 - - uid: 9114 + - uid: 8750 components: - type: Transform - pos: 4.5,52.5 + pos: -7.5,43.5 parent: 8364 - - uid: 9115 + - uid: 8752 components: - type: Transform - pos: 0.5,52.5 + pos: -8.5,43.5 parent: 8364 - - uid: 9116 + - uid: 8756 components: - type: Transform - pos: -0.5,52.5 + pos: -33.5,34.5 parent: 8364 - - uid: 9117 + - uid: 8759 components: - type: Transform - pos: -19.5,39.5 + pos: -26.5,27.5 parent: 8364 - - uid: 9134 + - uid: 8760 components: - type: Transform - pos: -19.5,52.5 + pos: -33.5,38.5 parent: 8364 - - uid: 9136 + - uid: 8763 components: - type: Transform - pos: -18.5,52.5 + pos: -6.5,25.5 parent: 8364 - - uid: 9138 + - uid: 8768 components: - type: Transform - pos: -16.5,52.5 + pos: -10.5,31.5 parent: 8364 - - uid: 9165 + - uid: 8769 components: - type: Transform - pos: 17.5,38.5 + pos: -9.5,30.5 parent: 8364 - - uid: 9173 + - uid: 8771 components: - type: Transform - pos: 3.5,42.5 + pos: -31.5,43.5 parent: 8364 - - uid: 9206 + - uid: 8788 components: - type: Transform - pos: 26.5,37.5 + pos: 4.5,56.5 parent: 8364 - - uid: 9263 + - uid: 8789 components: - type: Transform - pos: 30.5,27.5 + pos: 3.5,56.5 parent: 8364 - - uid: 9279 + - uid: 8790 components: - type: Transform - pos: 29.5,25.5 + pos: 1.5,56.5 parent: 8364 - - uid: 9329 + - uid: 8799 components: - type: Transform - pos: 22.5,43.5 + pos: 1.5,24.5 parent: 8364 - - uid: 9330 + - uid: 8806 components: - type: Transform - pos: 26.5,36.5 + pos: -15.5,49.5 parent: 8364 - - uid: 9331 + - uid: 8810 components: - type: Transform - pos: -1.5,52.5 + pos: -17.5,17.5 parent: 8364 - - uid: 9397 + - uid: 8816 components: - type: Transform - pos: 23.5,31.5 + pos: -2.5,17.5 parent: 8364 - - uid: 9398 + - uid: 8818 components: - type: Transform - pos: 21.5,43.5 + pos: -2.5,19.5 parent: 8364 - - uid: 9433 + - uid: 8821 components: - type: Transform - pos: 28.5,30.5 + pos: -23.5,15.5 parent: 8364 - - uid: 9435 + - uid: 8822 components: - type: Transform - pos: 27.5,31.5 + pos: -17.5,15.5 + parent: 8364 + - uid: 8828 + components: + - type: Transform + pos: 11.5,22.5 + parent: 8364 + - uid: 8835 + components: + - type: Transform + pos: -16.5,21.5 + parent: 8364 + - uid: 8837 + components: + - type: Transform + pos: -2.5,23.5 + parent: 8364 + - uid: 8841 + components: + - type: Transform + pos: -17.5,14.5 + parent: 8364 + - uid: 8856 + components: + - type: Transform + pos: -2.5,30.5 + parent: 8364 + - uid: 8865 + components: + - type: Transform + pos: -2.5,22.5 + parent: 8364 + - uid: 8867 + components: + - type: Transform + pos: -9.5,25.5 + parent: 8364 + - uid: 8870 + components: + - type: Transform + pos: -3.5,25.5 + parent: 8364 + - uid: 8871 + components: + - type: Transform + pos: -2.5,25.5 + parent: 8364 + - uid: 8872 + components: + - type: Transform + pos: -28.5,29.5 + parent: 8364 + - uid: 8873 + components: + - type: Transform + pos: -10.5,25.5 + parent: 8364 + - uid: 8876 + components: + - type: Transform + pos: -20.5,20.5 + parent: 8364 + - uid: 8879 + components: + - type: Transform + pos: -25.5,25.5 + parent: 8364 + - uid: 8897 + components: + - type: Transform + pos: -29.5,43.5 + parent: 8364 + - uid: 8912 + components: + - type: Transform + pos: -32.5,38.5 + parent: 8364 + - uid: 8916 + components: + - type: Transform + pos: -2.5,34.5 + parent: 8364 + - uid: 8917 + components: + - type: Transform + pos: 1.5,32.5 + parent: 8364 + - uid: 8921 + components: + - type: Transform + pos: 1.5,31.5 + parent: 8364 + - uid: 8923 + components: + - type: Transform + pos: 1.5,33.5 + parent: 8364 + - uid: 8926 + components: + - type: Transform + pos: 1.5,34.5 + parent: 8364 + - uid: 8930 + components: + - type: Transform + pos: -2.5,35.5 + parent: 8364 + - uid: 8931 + components: + - type: Transform + pos: -3.5,35.5 + parent: 8364 + - uid: 8934 + components: + - type: Transform + pos: -10.5,35.5 + parent: 8364 + - uid: 8942 + components: + - type: Transform + pos: -15.5,14.5 + parent: 8364 + - uid: 8954 + components: + - type: Transform + pos: -19.5,17.5 + parent: 8364 + - uid: 8956 + components: + - type: Transform + pos: -17.5,20.5 + parent: 8364 + - uid: 8957 + components: + - type: Transform + pos: -20.5,19.5 + parent: 8364 + - uid: 8958 + components: + - type: Transform + pos: -18.5,20.5 + parent: 8364 + - uid: 8960 + components: + - type: Transform + pos: -32.5,43.5 + parent: 8364 + - uid: 8964 + components: + - type: Transform + pos: -6.5,29.5 + parent: 8364 + - uid: 8971 + components: + - type: Transform + pos: -33.5,33.5 + parent: 8364 + - uid: 8981 + components: + - type: Transform + pos: -30.5,43.5 + parent: 8364 + - uid: 8991 + components: + - type: Transform + pos: -7.5,35.5 + parent: 8364 + - uid: 9008 + components: + - type: Transform + pos: 26.5,23.5 + parent: 8364 + - uid: 9012 + components: + - type: Transform + pos: 26.5,24.5 + parent: 8364 + - uid: 9045 + components: + - type: Transform + pos: -6.5,35.5 + parent: 8364 + - uid: 9046 + components: + - type: Transform + pos: 12.5,18.5 + parent: 8364 + - uid: 9047 + components: + - type: Transform + pos: 13.5,18.5 + parent: 8364 + - uid: 9048 + components: + - type: Transform + pos: 13.5,39.5 + parent: 8364 + - uid: 9049 + components: + - type: Transform + pos: 14.5,39.5 + parent: 8364 + - uid: 9050 + components: + - type: Transform + pos: 11.5,18.5 + parent: 8364 + - uid: 9051 + components: + - type: Transform + pos: 15.5,39.5 + parent: 8364 + - uid: 9151 + components: + - type: Transform + pos: -12.5,25.5 + parent: 8364 + - uid: 9187 + components: + - type: Transform + pos: 16.5,38.5 + parent: 8364 + - uid: 9190 + components: + - type: Transform + pos: 16.5,36.5 + parent: 8364 + - uid: 9191 + components: + - type: Transform + pos: 16.5,35.5 + parent: 8364 + - uid: 9192 + components: + - type: Transform + pos: 16.5,34.5 + parent: 8364 + - uid: 9193 + components: + - type: Transform + pos: 17.5,34.5 + parent: 8364 + - uid: 9196 + components: + - type: Transform + pos: 17.5,31.5 + parent: 8364 + - uid: 9197 + components: + - type: Transform + pos: 17.5,30.5 + parent: 8364 + - uid: 9198 + components: + - type: Transform + pos: 17.5,29.5 + parent: 8364 + - uid: 9199 + components: + - type: Transform + pos: 25.5,26.5 + parent: 8364 + - uid: 9200 + components: + - type: Transform + pos: 26.5,26.5 + parent: 8364 + - uid: 9201 + components: + - type: Transform + pos: 23.5,27.5 + parent: 8364 + - uid: 9202 + components: + - type: Transform + pos: 23.5,26.5 + parent: 8364 + - uid: 9203 + components: + - type: Transform + pos: 23.5,28.5 + parent: 8364 + - uid: 9204 + components: + - type: Transform + pos: 24.5,29.5 + parent: 8364 + - uid: 9209 + components: + - type: Transform + pos: 27.5,26.5 + parent: 8364 + - uid: 9210 + components: + - type: Transform + pos: 26.5,29.5 + parent: 8364 + - uid: 9211 + components: + - type: Transform + pos: 22.5,29.5 + parent: 8364 + - uid: 9212 + components: + - type: Transform + pos: 23.5,29.5 + parent: 8364 + - uid: 9213 + components: + - type: Transform + pos: 21.5,29.5 + parent: 8364 + - uid: 9214 + components: + - type: Transform + pos: 26.5,22.5 + parent: 8364 + - uid: 9215 + components: + - type: Transform + pos: 26.5,21.5 + parent: 8364 + - uid: 9216 + components: + - type: Transform + pos: 26.5,25.5 + parent: 8364 + - uid: 9218 + components: + - type: Transform + pos: 18.5,29.5 + parent: 8364 + - uid: 9222 + components: + - type: Transform + pos: 20.5,29.5 + parent: 8364 + - uid: 9223 + components: + - type: Transform + pos: 19.5,29.5 + parent: 8364 + - uid: 9258 + components: + - type: Transform + pos: 27.5,29.5 + parent: 8364 + - uid: 9404 + components: + - type: Transform + pos: 26.5,28.5 + parent: 8364 + - uid: 9441 + components: + - type: Transform + pos: 15.5,38.5 parent: 8364 - uid: 9444 components: - type: Transform pos: 5.5,-27.5 parent: 8364 - - uid: 9535 - components: - - type: Transform - pos: 19.5,31.5 - parent: 8364 - - uid: 9570 - components: - - type: Transform - pos: 25.5,39.5 - parent: 8364 - - uid: 9621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,12.5 - parent: 8364 - - uid: 9635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,12.5 - parent: 8364 - - uid: 9800 - components: - - type: Transform - pos: 28.5,31.5 - parent: 8364 - - uid: 9815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,17.5 - parent: 8364 - - uid: 9816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,15.5 - parent: 8364 - - uid: 9818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,18.5 - parent: 8364 - - uid: 9820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,18.5 - parent: 8364 - uid: 9836 components: - type: Transform pos: -42.5,-20.5 parent: 8364 - - uid: 9957 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,18.5 - parent: 8364 - - uid: 10002 - components: - - type: Transform - pos: 3.5,52.5 - parent: 8364 - uid: 10037 components: - type: Transform - pos: 20.5,32.5 - parent: 8364 - - uid: 10109 - components: - - type: Transform - pos: 2.5,52.5 - parent: 8364 - - uid: 10110 - components: - - type: Transform - pos: 1.5,52.5 - parent: 8364 - - uid: 10111 - components: - - type: Transform - pos: -3.5,53.5 - parent: 8364 - - uid: 10112 - components: - - type: Transform - pos: -24.5,50.5 - parent: 8364 - - uid: 10113 - components: - - type: Transform - pos: -24.5,51.5 - parent: 8364 - - uid: 10114 - components: - - type: Transform - pos: -3.5,46.5 - parent: 8364 - - uid: 10115 - components: - - type: Transform - pos: -3.5,45.5 - parent: 8364 - - uid: 10117 - components: - - type: Transform - pos: -24.5,47.5 - parent: 8364 - - uid: 10118 - components: - - type: Transform - pos: -24.5,48.5 - parent: 8364 - - uid: 10119 - components: - - type: Transform - pos: -25.5,42.5 - parent: 8364 - - uid: 10120 - components: - - type: Transform - pos: -25.5,46.5 + pos: -15.5,43.5 parent: 8364 - uid: 10534 components: @@ -167583,7 +169360,6 @@ entities: - uid: 10879 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-76.5 parent: 8364 - uid: 10996 @@ -167596,21 +169372,11 @@ entities: - type: Transform pos: 21.5,-70.5 parent: 8364 - - uid: 11379 - components: - - type: Transform - pos: -2.5,42.5 - parent: 8364 - uid: 11571 components: - type: Transform pos: 24.5,-70.5 parent: 8364 - - uid: 11592 - components: - - type: Transform - pos: -1.5,42.5 - parent: 8364 - uid: 11593 components: - type: Transform @@ -167646,16 +169412,6 @@ entities: - type: Transform pos: -14.5,5.5 parent: 8364 - - uid: 12045 - components: - - type: Transform - pos: -22.5,15.5 - parent: 8364 - - uid: 12046 - components: - - type: Transform - pos: -22.5,12.5 - parent: 8364 - uid: 12048 components: - type: Transform @@ -167674,37 +169430,31 @@ entities: - uid: 12464 components: - type: Transform - rot: -1.5707963267948966 rad pos: -78.5,7.5 parent: 8364 - uid: 12465 components: - type: Transform - rot: 1.5707963267948966 rad pos: -80.5,-2.5 parent: 8364 - uid: 12472 components: - type: Transform - rot: -1.5707963267948966 rad pos: -71.5,-2.5 parent: 8364 - uid: 12474 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,8.5 parent: 8364 - uid: 12479 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,-5.5 parent: 8364 - uid: 12496 components: - type: Transform - rot: 1.5707963267948966 rad pos: -79.5,10.5 parent: 8364 - uid: 12558 @@ -167732,27 +169482,6 @@ entities: - type: Transform pos: -79.5,-15.5 parent: 8364 - - uid: 13310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,18.5 - parent: 8364 - - uid: 13356 - components: - - type: Transform - pos: -22.5,13.5 - parent: 8364 - - uid: 13366 - components: - - type: Transform - pos: -22.5,11.5 - parent: 8364 - - uid: 13397 - components: - - type: Transform - pos: -22.5,14.5 - parent: 8364 - uid: 13415 components: - type: Transform @@ -167763,6 +169492,16 @@ entities: - type: Transform pos: 25.5,-70.5 parent: 8364 + - uid: 13631 + components: + - type: Transform + pos: -7.5,44.5 + parent: 8364 + - uid: 13674 + components: + - type: Transform + pos: -7.5,47.5 + parent: 8364 - uid: 13776 components: - type: Transform @@ -167801,7 +169540,6 @@ entities: - uid: 14512 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,-75.5 parent: 8364 - uid: 14648 @@ -167897,7 +169635,6 @@ entities: - uid: 15886 components: - type: Transform - rot: -1.5707963267948966 rad pos: 0.5,-9.5 parent: 8364 - uid: 15975 @@ -168073,7 +169810,6 @@ entities: - uid: 17606 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-76.5 parent: 8364 - uid: 17663 @@ -168111,30 +169847,6 @@ entities: - type: Transform pos: 10.5,-76.5 parent: 8364 - - uid: 18178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,18.5 - parent: 8364 - - uid: 18184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,18.5 - parent: 8364 - - uid: 18186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,17.5 - parent: 8364 - - uid: 18308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 8364 - uid: 18622 components: - type: Transform @@ -168203,7 +169915,6 @@ entities: - uid: 19836 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,-35.5 parent: 8364 - uid: 19858 @@ -168216,11 +169927,6 @@ entities: - type: Transform pos: 88.5,-32.5 parent: 8364 - - uid: 19891 - components: - - type: Transform - pos: -8.5,38.5 - parent: 8364 - uid: 19919 components: - type: Transform @@ -168241,64 +169947,34 @@ entities: - type: Transform pos: 64.5,-57.5 parent: 8364 - - uid: 19947 - components: - - type: Transform - pos: -24.5,52.5 - parent: 8364 - - uid: 19948 - components: - - type: Transform - pos: -7.5,41.5 - parent: 8364 - - uid: 19949 - components: - - type: Transform - pos: -6.5,42.5 - parent: 8364 - uid: 19950 components: - type: Transform pos: -16.5,-77.5 parent: 8364 - - uid: 19983 - components: - - type: Transform - pos: -7.5,42.5 - parent: 8364 - - uid: 19997 - components: - - type: Transform - pos: -4.5,42.5 - parent: 8364 - uid: 20006 components: - type: Transform - rot: -1.5707963267948966 rad pos: -0.5,-9.5 parent: 8364 - uid: 20015 components: - type: Transform - rot: -1.5707963267948966 rad pos: -3.5,-10.5 parent: 8364 - uid: 20016 components: - type: Transform - rot: -1.5707963267948966 rad pos: -1.5,-9.5 parent: 8364 - uid: 20017 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-10.5 parent: 8364 - uid: 20024 components: - type: Transform - rot: -1.5707963267948966 rad pos: 0.5,-10.5 parent: 8364 - uid: 20143 @@ -168314,7 +169990,6 @@ entities: - uid: 20302 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,-36.5 parent: 8364 - uid: 21284 @@ -168427,30 +170102,6 @@ entities: - type: Transform pos: -51.5,-3.5 parent: 8364 - - uid: 22215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,12.5 - parent: 8364 - - uid: 22217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,14.5 - parent: 8364 - - uid: 22218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,12.5 - parent: 8364 - - uid: 22223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,14.5 - parent: 8364 - uid: 22428 components: - type: Transform @@ -168499,7 +170150,6 @@ entities: - uid: 22955 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-40.5 parent: 8364 - uid: 22991 @@ -168520,7 +170170,6 @@ entities: - uid: 23165 components: - type: Transform - rot: 1.5707963267948966 rad pos: 22.5,-93.5 parent: 8364 - uid: 23170 @@ -168651,19 +170300,16 @@ entities: - uid: 25147 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-12.5 parent: 8364 - uid: 25185 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,-76.5 parent: 8364 - uid: 25189 components: - type: Transform - rot: 1.5707963267948966 rad pos: 31.5,-93.5 parent: 8364 - uid: 25221 @@ -168679,19 +170325,11 @@ entities: - uid: 25229 components: - type: Transform - rot: 1.5707963267948966 rad pos: 26.5,-93.5 parent: 8364 - - uid: 25235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,39.5 - parent: 8364 - uid: 25248 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,-93.5 parent: 8364 - uid: 25250 @@ -168704,26 +170342,6 @@ entities: - type: Transform pos: 17.5,-85.5 parent: 8364 - - uid: 25667 - components: - - type: Transform - pos: -17.5,52.5 - parent: 8364 - - uid: 25681 - components: - - type: Transform - pos: -7.5,40.5 - parent: 8364 - - uid: 25682 - components: - - type: Transform - pos: -8.5,37.5 - parent: 8364 - - uid: 25687 - components: - - type: Transform - pos: -16.5,53.5 - parent: 8364 - uid: 25828 components: - type: Transform @@ -168839,11 +170457,6 @@ entities: - type: Transform pos: 38.5,-85.5 parent: 8364 - - uid: 26458 - components: - - type: Transform - pos: -3.5,29.5 - parent: 8364 - uid: 26583 components: - type: Transform @@ -169022,13 +170635,11 @@ entities: - uid: 26800 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-13.5 parent: 8364 - uid: 26801 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-13.5 parent: 8364 - uid: 26821 @@ -169089,7 +170700,6 @@ entities: - uid: 26938 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,-70.5 parent: 8364 - uid: 26940 @@ -169100,7 +170710,6 @@ entities: - uid: 26960 components: - type: Transform - rot: 1.5707963267948966 rad pos: 33.5,-93.5 parent: 8364 - uid: 26985 @@ -169121,13 +170730,11 @@ entities: - uid: 27026 components: - type: Transform - rot: 1.5707963267948966 rad pos: 35.5,-93.5 parent: 8364 - uid: 27043 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-14.5 parent: 8364 - uid: 27047 @@ -169163,7 +170770,6 @@ entities: - uid: 27146 components: - type: Transform - rot: 1.5707963267948966 rad pos: 29.5,-93.5 parent: 8364 - uid: 27165 @@ -169179,7 +170785,6 @@ entities: - uid: 27180 components: - type: Transform - rot: 1.5707963267948966 rad pos: 34.5,-93.5 parent: 8364 - uid: 27290 @@ -169190,37 +170795,31 @@ entities: - uid: 27618 components: - type: Transform - rot: 1.5707963267948966 rad pos: 24.5,-93.5 parent: 8364 - uid: 27621 components: - type: Transform - rot: 1.5707963267948966 rad pos: 25.5,-93.5 parent: 8364 - uid: 27623 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,-93.5 parent: 8364 - uid: 27624 components: - type: Transform - rot: 1.5707963267948966 rad pos: 23.5,-93.5 parent: 8364 - uid: 27625 components: - type: Transform - rot: 1.5707963267948966 rad pos: 30.5,-93.5 parent: 8364 - uid: 27702 components: - type: Transform - rot: 1.5707963267948966 rad pos: 28.5,-93.5 parent: 8364 - uid: 27706 @@ -169251,19 +170850,16 @@ entities: - uid: 27815 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-14.5 parent: 8364 - uid: 27817 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-15.5 parent: 8364 - uid: 27820 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-15.5 parent: 8364 - uid: 27821 @@ -169274,7 +170870,6 @@ entities: - uid: 27822 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-13.5 parent: 8364 - uid: 27826 @@ -169310,13 +170905,11 @@ entities: - uid: 27838 components: - type: Transform - rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 8364 - uid: 27839 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 8364 - uid: 27851 @@ -169401,57 +170994,17 @@ entities: - uid: 7 components: - type: Transform - pos: -9.5,12.5 + pos: -13.5,21.5 parent: 8364 - uid: 8 components: - type: Transform - pos: -12.5,12.5 + pos: -19.5,14.5 parent: 8364 - - uid: 9 + - uid: 39 components: - type: Transform - pos: -13.5,14.5 - parent: 8364 - - uid: 10 - components: - - type: Transform - pos: -15.5,16.5 - parent: 8364 - - uid: 11 - components: - - type: Transform - pos: -15.5,14.5 - parent: 8364 - - uid: 57 - components: - - type: Transform - pos: -9.5,13.5 - parent: 8364 - - uid: 58 - components: - - type: Transform - pos: -10.5,12.5 - parent: 8364 - - uid: 59 - components: - - type: Transform - pos: -11.5,12.5 - parent: 8364 - - uid: 60 - components: - - type: Transform - pos: -13.5,13.5 - parent: 8364 - - uid: 61 - components: - - type: Transform - pos: -15.5,17.5 - parent: 8364 - - uid: 62 - components: - - type: Transform - pos: -15.5,15.5 + pos: -19.5,16.5 parent: 8364 - uid: 116 components: @@ -169578,11 +171131,6 @@ entities: - type: Transform pos: -32.5,11.5 parent: 8364 - - uid: 231 - components: - - type: Transform - pos: -13.5,12.5 - parent: 8364 - uid: 257 components: - type: Transform @@ -170438,6 +171986,11 @@ entities: - type: Transform pos: 50.5,2.5 parent: 8364 + - uid: 849 + components: + - type: Transform + pos: -22.5,35.5 + parent: 8364 - uid: 856 components: - type: Transform @@ -170543,6 +172096,11 @@ entities: - type: Transform pos: 66.5,13.5 parent: 8364 + - uid: 902 + components: + - type: Transform + pos: -21.5,27.5 + parent: 8364 - uid: 904 components: - type: Transform @@ -170553,6 +172111,11 @@ entities: - type: Transform pos: 59.5,9.5 parent: 8364 + - uid: 906 + components: + - type: Transform + pos: -27.5,39.5 + parent: 8364 - uid: 913 components: - type: Transform @@ -170603,6 +172166,11 @@ entities: - type: Transform pos: 68.5,15.5 parent: 8364 + - uid: 953 + components: + - type: Transform + pos: -22.5,24.5 + parent: 8364 - uid: 955 components: - type: Transform @@ -171206,7 +172774,6 @@ entities: - uid: 1253 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,-10.5 parent: 8364 - uid: 1257 @@ -171332,7 +172899,6 @@ entities: - uid: 1309 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,-13.5 parent: 8364 - uid: 1313 @@ -174368,7 +175934,6 @@ entities: - uid: 3783 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-10.5 parent: 8364 - uid: 3912 @@ -174446,30 +176011,65 @@ entities: - type: Transform pos: 62.5,-53.5 parent: 8364 - - uid: 4931 + - uid: 4952 components: - type: Transform - pos: -17.5,14.5 + pos: -22.5,32.5 parent: 8364 - - uid: 4932 + - uid: 4954 components: - type: Transform - pos: -17.5,13.5 - parent: 8364 - - uid: 4933 - components: - - type: Transform - pos: -17.5,12.5 + pos: -22.5,30.5 parent: 8364 - uid: 5294 components: - type: Transform pos: 60.5,-53.5 parent: 8364 - - uid: 6267 + - uid: 5577 components: - type: Transform - pos: 25.5,22.5 + pos: -21.5,24.5 + parent: 8364 + - uid: 5594 + components: + - type: Transform + pos: -25.5,39.5 + parent: 8364 + - uid: 5599 + components: + - type: Transform + pos: -23.5,27.5 + parent: 8364 + - uid: 5602 + components: + - type: Transform + pos: -22.5,37.5 + parent: 8364 + - uid: 5606 + components: + - type: Transform + pos: -22.5,31.5 + parent: 8364 + - uid: 5615 + components: + - type: Transform + pos: -22.5,36.5 + parent: 8364 + - uid: 6328 + components: + - type: Transform + pos: 14.5,35.5 + parent: 8364 + - uid: 6329 + components: + - type: Transform + pos: 12.5,35.5 + parent: 8364 + - uid: 6330 + components: + - type: Transform + pos: 15.5,28.5 parent: 8364 - uid: 6342 components: @@ -174496,6 +176096,31 @@ entities: - type: Transform pos: 18.5,13.5 parent: 8364 + - uid: 6591 + components: + - type: Transform + pos: -3.5,41.5 + parent: 8364 + - uid: 6621 + components: + - type: Transform + pos: 16.5,30.5 + parent: 8364 + - uid: 6640 + components: + - type: Transform + pos: 15.5,35.5 + parent: 8364 + - uid: 6643 + components: + - type: Transform + pos: 13.5,33.5 + parent: 8364 + - uid: 6644 + components: + - type: Transform + pos: 14.5,31.5 + parent: 8364 - uid: 7016 components: - type: Transform @@ -174511,65 +176136,45 @@ entities: - type: Transform pos: 31.5,-8.5 parent: 8364 + - uid: 7281 + components: + - type: Transform + pos: -2.5,11.5 + parent: 8364 + - uid: 7294 + components: + - type: Transform + pos: -27.5,32.5 + parent: 8364 + - uid: 7318 + components: + - type: Transform + pos: -25.5,32.5 + parent: 8364 + - uid: 7319 + components: + - type: Transform + pos: -22.5,38.5 + parent: 8364 - uid: 7341 components: - type: Transform - pos: -10.5,29.5 - parent: 8364 - - uid: 7342 - components: - - type: Transform - pos: -10.5,30.5 - parent: 8364 - - uid: 7343 - components: - - type: Transform - pos: -10.5,31.5 - parent: 8364 - - uid: 7344 - components: - - type: Transform - pos: -10.5,32.5 - parent: 8364 - - uid: 7345 - components: - - type: Transform - pos: -10.5,33.5 - parent: 8364 - - uid: 7346 - components: - - type: Transform - pos: -12.5,33.5 + pos: -7.5,11.5 parent: 8364 - uid: 7347 components: - type: Transform - pos: -13.5,33.5 + pos: -12.5,14.5 parent: 8364 - - uid: 7348 + - uid: 7366 components: - type: Transform - pos: -11.5,33.5 + pos: -22.5,28.5 parent: 8364 - - uid: 7349 + - uid: 7373 components: - type: Transform - pos: -15.5,33.5 - parent: 8364 - - uid: 7350 - components: - - type: Transform - pos: -6.5,34.5 - parent: 8364 - - uid: 7351 - components: - - type: Transform - pos: -6.5,33.5 - parent: 8364 - - uid: 7384 - components: - - type: Transform - pos: -20.5,19.5 + pos: -28.5,39.5 parent: 8364 - uid: 7406 components: @@ -175136,11 +176741,6 @@ entities: - type: Transform pos: 22.5,19.5 parent: 8364 - - uid: 7605 - components: - - type: Transform - pos: 22.5,21.5 - parent: 8364 - uid: 7606 components: - type: Transform @@ -175151,196 +176751,36 @@ entities: - type: Transform pos: 23.5,20.5 parent: 8364 - - uid: 7608 - components: - - type: Transform - pos: 22.5,23.5 - parent: 8364 - uid: 7609 components: - type: Transform pos: 25.5,20.5 parent: 8364 - - uid: 7610 + - uid: 7633 components: - type: Transform - pos: 25.5,21.5 + pos: -19.5,12.5 parent: 8364 - - uid: 7613 + - uid: 7706 components: - type: Transform - pos: 25.5,24.5 - parent: 8364 - - uid: 7614 - components: - - type: Transform - pos: 24.5,24.5 - parent: 8364 - - uid: 7616 - components: - - type: Transform - pos: 22.5,24.5 - parent: 8364 - - uid: 7627 - components: - - type: Transform - pos: 20.5,35.5 - parent: 8364 - - uid: 7684 - components: - - type: Transform - pos: 10.5,34.5 - parent: 8364 - - uid: 7685 - components: - - type: Transform - pos: 10.5,35.5 - parent: 8364 - - uid: 7686 - components: - - type: Transform - pos: 10.5,36.5 + pos: -20.5,11.5 parent: 8364 - uid: 7782 components: - type: Transform pos: 17.5,-1.5 parent: 8364 - - uid: 7787 - components: - - type: Transform - pos: -6.5,28.5 - parent: 8364 - - uid: 7790 - components: - - type: Transform - pos: -9.5,28.5 - parent: 8364 - uid: 7791 components: - type: Transform - pos: -10.5,28.5 - parent: 8364 - - uid: 7792 - components: - - type: Transform - pos: -12.5,28.5 - parent: 8364 - - uid: 7793 - components: - - type: Transform - pos: -13.5,28.5 - parent: 8364 - - uid: 7794 - components: - - type: Transform - pos: -14.5,28.5 - parent: 8364 - - uid: 7803 - components: - - type: Transform - pos: -11.5,25.5 - parent: 8364 - - uid: 7804 - components: - - type: Transform - pos: -11.5,24.5 - parent: 8364 - - uid: 7805 - components: - - type: Transform - pos: -11.5,23.5 - parent: 8364 - - uid: 7806 - components: - - type: Transform - pos: -7.5,25.5 - parent: 8364 - - uid: 7807 - components: - - type: Transform - pos: -7.5,24.5 - parent: 8364 - - uid: 7808 - components: - - type: Transform - pos: -7.5,23.5 - parent: 8364 - - uid: 7809 - components: - - type: Transform - pos: -3.5,25.5 - parent: 8364 - - uid: 7810 - components: - - type: Transform - pos: -3.5,24.5 - parent: 8364 - - uid: 7811 - components: - - type: Transform - pos: -3.5,23.5 - parent: 8364 - - uid: 7812 - components: - - type: Transform - pos: 0.5,25.5 - parent: 8364 - - uid: 7813 - components: - - type: Transform - pos: 0.5,24.5 - parent: 8364 - - uid: 7814 - components: - - type: Transform - pos: 0.5,23.5 - parent: 8364 - - uid: 7815 - components: - - type: Transform - pos: 3.5,25.5 - parent: 8364 - - uid: 7816 - components: - - type: Transform - pos: 7.5,25.5 - parent: 8364 - - uid: 7817 - components: - - type: Transform - pos: 7.5,24.5 - parent: 8364 - - uid: 7818 - components: - - type: Transform - pos: 7.5,23.5 - parent: 8364 - - uid: 7819 - components: - - type: Transform - pos: 12.5,18.5 - parent: 8364 - - uid: 7820 - components: - - type: Transform - pos: 13.5,18.5 + pos: -24.5,32.5 parent: 8364 - uid: 7822 components: - type: Transform pos: 17.5,18.5 parent: 8364 - - uid: 7823 - components: - - type: Transform - pos: 16.5,18.5 - parent: 8364 - - uid: 7824 - components: - - type: Transform - pos: 14.5,18.5 - parent: 8364 - uid: 7825 components: - type: Transform @@ -175356,100 +176796,25 @@ entities: - type: Transform pos: 19.5,19.5 parent: 8364 - - uid: 7829 - components: - - type: Transform - pos: 19.5,21.5 - parent: 8364 - - uid: 7830 - components: - - type: Transform - pos: 19.5,23.5 - parent: 8364 - - uid: 7831 - components: - - type: Transform - pos: 19.5,24.5 - parent: 8364 - - uid: 7832 - components: - - type: Transform - pos: 19.5,25.5 - parent: 8364 - - uid: 7833 - components: - - type: Transform - pos: 19.5,26.5 - parent: 8364 - - uid: 7834 - components: - - type: Transform - pos: 19.5,27.5 - parent: 8364 - - uid: 7835 - components: - - type: Transform - pos: 19.5,28.5 - parent: 8364 - uid: 7836 components: - type: Transform - pos: 19.5,29.5 + pos: -23.5,24.5 parent: 8364 - - uid: 7837 + - uid: 7860 components: - type: Transform - pos: 18.5,29.5 + pos: -16.5,22.5 parent: 8364 - - uid: 7838 + - uid: 7877 components: - type: Transform - pos: 17.5,29.5 + pos: -14.5,12.5 parent: 8364 - - uid: 7840 + - uid: 7893 components: - type: Transform - pos: 15.5,29.5 - parent: 8364 - - uid: 7841 - components: - - type: Transform - pos: 14.5,29.5 - parent: 8364 - - uid: 7842 - components: - - type: Transform - pos: 13.5,29.5 - parent: 8364 - - uid: 7843 - components: - - type: Transform - pos: 12.5,29.5 - parent: 8364 - - uid: 7844 - components: - - type: Transform - pos: 11.5,29.5 - parent: 8364 - - uid: 7907 - components: - - type: Transform - pos: -15.5,18.5 - parent: 8364 - - uid: 7908 - components: - - type: Transform - pos: -14.5,18.5 - parent: 8364 - - uid: 7909 - components: - - type: Transform - pos: -12.5,18.5 - parent: 8364 - - uid: 7925 - components: - - type: Transform - pos: 11.5,18.5 + pos: -22.5,27.5 parent: 8364 - uid: 7926 components: @@ -175561,6 +176926,11 @@ entities: - type: Transform pos: 1.5,3.5 parent: 8364 + - uid: 7980 + components: + - type: Transform + pos: 12.5,36.5 + parent: 8364 - uid: 7982 components: - type: Transform @@ -175886,151 +177256,406 @@ entities: - type: Transform pos: -8.5,-10.5 parent: 8364 - - uid: 8468 + - uid: 8392 components: - type: Transform - pos: 15.5,18.5 + pos: -29.5,39.5 parent: 8364 - - uid: 8506 + - uid: 8401 components: - type: Transform - pos: 16.5,29.5 + pos: -26.5,39.5 parent: 8364 - - uid: 8904 + - uid: 8462 components: - type: Transform - pos: -19.5,21.5 + pos: -15.5,21.5 parent: 8364 - - uid: 8927 + - uid: 8483 components: - type: Transform - pos: 20.5,36.5 + pos: 14.5,32.5 parent: 8364 - - uid: 9029 + - uid: 8489 components: - type: Transform - pos: -10.5,52.5 + pos: 14.5,33.5 parent: 8364 - - uid: 9030 + - uid: 8518 components: - type: Transform - pos: -5.5,46.5 + pos: 14.5,18.5 parent: 8364 - - uid: 9031 + - uid: 8522 components: - type: Transform - pos: -3.5,47.5 + pos: -23.5,32.5 parent: 8364 - - uid: 9032 + - uid: 8528 components: - type: Transform - pos: -10.5,49.5 + pos: -24.5,24.5 parent: 8364 - - uid: 9033 + - uid: 8553 components: - type: Transform - pos: -10.5,47.5 + pos: 14.5,22.5 parent: 8364 - - uid: 9034 + - uid: 8579 components: - type: Transform - pos: -10.5,46.5 + pos: 15.5,22.5 parent: 8364 - - uid: 9035 + - uid: 8584 components: - type: Transform - pos: -11.5,46.5 + pos: 14.5,28.5 parent: 8364 - - uid: 9040 + - uid: 8585 components: - type: Transform - pos: -3.5,48.5 + pos: 12.5,33.5 parent: 8364 - - uid: 9041 + - uid: 8603 components: - type: Transform - pos: -10.5,51.5 + pos: -3.5,39.5 parent: 8364 - - uid: 9073 + - uid: 8628 components: - type: Transform - pos: -10.5,50.5 + pos: -3.5,40.5 parent: 8364 - - uid: 9076 + - uid: 8668 components: - type: Transform - pos: -9.5,46.5 + pos: -21.5,26.5 parent: 8364 - - uid: 9077 + - uid: 8679 components: - type: Transform - pos: -4.5,46.5 + pos: -31.5,39.5 parent: 8364 - - uid: 9080 + - uid: 8717 + components: + - type: Transform + pos: -24.5,27.5 + parent: 8364 + - uid: 8757 + components: + - type: Transform + pos: -21.5,22.5 + parent: 8364 + - uid: 8832 + components: + - type: Transform + pos: -19.5,15.5 + parent: 8364 + - uid: 8849 + components: + - type: Transform + pos: -17.5,13.5 + parent: 8364 + - uid: 8878 + components: + - type: Transform + pos: -17.5,11.5 + parent: 8364 + - uid: 8898 + components: + - type: Transform + pos: -30.5,42.5 + parent: 8364 + - uid: 8961 + components: + - type: Transform + pos: -30.5,41.5 + parent: 8364 + - uid: 8967 + components: + - type: Transform + pos: -22.5,11.5 + parent: 8364 + - uid: 8969 + components: + - type: Transform + pos: -19.5,11.5 + parent: 8364 + - uid: 8996 + components: + - type: Transform + pos: -13.5,31.5 + parent: 8364 + - uid: 8997 + components: + - type: Transform + pos: -15.5,31.5 + parent: 8364 + - uid: 8998 + components: + - type: Transform + pos: -13.5,34.5 + parent: 8364 + - uid: 8999 + components: + - type: Transform + pos: 6.5,27.5 + parent: 8364 + - uid: 9000 + components: + - type: Transform + pos: -3.5,50.5 + parent: 8364 + - uid: 9001 + components: + - type: Transform + pos: -3.5,43.5 + parent: 8364 + - uid: 9002 + components: + - type: Transform + pos: 0.5,41.5 + parent: 8364 + - uid: 9003 + components: + - type: Transform + pos: 0.5,42.5 + parent: 8364 + - uid: 9004 + components: + - type: Transform + pos: -28.5,41.5 + parent: 8364 + - uid: 9005 + components: + - type: Transform + pos: -28.5,40.5 + parent: 8364 + - uid: 9006 + components: + - type: Transform + pos: 6.5,47.5 + parent: 8364 + - uid: 9007 + components: + - type: Transform + pos: 6.5,48.5 + parent: 8364 + - uid: 9009 + components: + - type: Transform + pos: 6.5,24.5 + parent: 8364 + - uid: 9010 + components: + - type: Transform + pos: 6.5,23.5 + parent: 8364 + - uid: 9011 + components: + - type: Transform + pos: 6.5,25.5 + parent: 8364 + - uid: 9013 + components: + - type: Transform + pos: 2.5,28.5 + parent: 8364 + - uid: 9014 + components: + - type: Transform + pos: 3.5,28.5 + parent: 8364 + - uid: 9015 + components: + - type: Transform + pos: -3.5,51.5 + parent: 8364 + - uid: 9016 + components: + - type: Transform + pos: 1.5,39.5 + parent: 8364 + - uid: 9017 + components: + - type: Transform + pos: 6.5,46.5 + parent: 8364 + - uid: 9018 + components: + - type: Transform + pos: -28.5,42.5 + parent: 8364 + - uid: 9019 + components: + - type: Transform + pos: 6.5,26.5 + parent: 8364 + - uid: 9020 + components: + - type: Transform + pos: 9.5,28.5 + parent: 8364 + - uid: 9021 components: - type: Transform pos: -3.5,49.5 parent: 8364 - - uid: 9101 + - uid: 9022 components: - type: Transform - pos: -19.5,48.5 + pos: 1.5,42.5 parent: 8364 - - uid: 9102 + - uid: 9023 components: - type: Transform - pos: -19.5,47.5 + pos: -13.5,38.5 parent: 8364 - - uid: 9103 + - uid: 9024 components: - type: Transform - pos: -19.5,46.5 + pos: 0.5,39.5 parent: 8364 - - uid: 9129 + - uid: 9025 components: - type: Transform - pos: -22.5,47.5 + pos: 9.5,30.5 parent: 8364 - - uid: 9130 + - uid: 9026 components: - type: Transform - pos: -22.5,46.5 + pos: 8.5,28.5 parent: 8364 - - uid: 9131 + - uid: 9027 components: - type: Transform - pos: -22.5,48.5 + pos: 9.5,29.5 parent: 8364 - - uid: 9132 + - uid: 9028 components: - type: Transform - pos: -18.5,49.5 + pos: 1.5,43.5 parent: 8364 - - uid: 9133 + - uid: 9029 components: - type: Transform - pos: -19.5,49.5 + pos: -2.5,42.5 parent: 8364 - - uid: 9137 + - uid: 9030 components: - type: Transform - pos: -22.5,42.5 + pos: -13.5,33.5 + parent: 8364 + - uid: 9031 + components: + - type: Transform + pos: -13.5,32.5 + parent: 8364 + - uid: 9032 + components: + - type: Transform + pos: -13.5,35.5 + parent: 8364 + - uid: 9033 + components: + - type: Transform + pos: 10.5,46.5 + parent: 8364 + - uid: 9034 + components: + - type: Transform + pos: 11.5,46.5 + parent: 8364 + - uid: 9035 + components: + - type: Transform + pos: -0.5,42.5 + parent: 8364 + - uid: 9036 + components: + - type: Transform + pos: 10.5,28.5 + parent: 8364 + - uid: 9037 + components: + - type: Transform + pos: -1.5,42.5 + parent: 8364 + - uid: 9038 + components: + - type: Transform + pos: -3.5,42.5 + parent: 8364 + - uid: 9039 + components: + - type: Transform + pos: 5.5,28.5 + parent: 8364 + - uid: 9040 + components: + - type: Transform + pos: 1.5,49.5 + parent: 8364 + - uid: 9042 + components: + - type: Transform + pos: -14.5,31.5 + parent: 8364 + - uid: 9043 + components: + - type: Transform + pos: 6.5,28.5 + parent: 8364 + - uid: 9044 + components: + - type: Transform + pos: 4.5,28.5 + parent: 8364 + - uid: 9254 + components: + - type: Transform + pos: 17.5,25.5 + parent: 8364 + - uid: 9255 + components: + - type: Transform + pos: 17.5,24.5 + parent: 8364 + - uid: 9256 + components: + - type: Transform + pos: 17.5,20.5 + parent: 8364 + - uid: 9257 + components: + - type: Transform + pos: 17.5,21.5 + parent: 8364 + - uid: 9267 + components: + - type: Transform + pos: 17.5,28.5 + parent: 8364 + - uid: 9415 + components: + - type: Transform + pos: 20.5,22.5 + parent: 8364 + - uid: 9416 + components: + - type: Transform + pos: 19.5,22.5 + parent: 8364 + - uid: 9417 + components: + - type: Transform + pos: 23.5,25.5 parent: 8364 - uid: 9623 components: - type: Transform pos: 9.5,-32.5 parent: 8364 - - uid: 9812 - components: - - type: Transform - pos: 25.5,23.5 - parent: 8364 - - uid: 9833 - components: - - type: Transform - pos: 19.5,22.5 - parent: 8364 - uid: 9840 components: - type: Transform @@ -176041,11 +177666,6 @@ entities: - type: Transform pos: 33.5,2.5 parent: 8364 - - uid: 9994 - components: - - type: Transform - pos: 22.5,22.5 - parent: 8364 - uid: 10350 components: - type: Transform @@ -176191,26 +177811,6 @@ entities: - type: Transform pos: -24.5,1.5 parent: 8364 - - uid: 13214 - components: - - type: Transform - pos: -17.5,11.5 - parent: 8364 - - uid: 13215 - components: - - type: Transform - pos: -18.5,11.5 - parent: 8364 - - uid: 13216 - components: - - type: Transform - pos: -19.5,11.5 - parent: 8364 - - uid: 13218 - components: - - type: Transform - pos: -21.5,11.5 - parent: 8364 - uid: 13434 components: - type: Transform @@ -176314,7 +177914,6 @@ entities: - uid: 14081 components: - type: Transform - rot: -1.5707963267948966 rad pos: -41.5,-13.5 parent: 8364 - uid: 14109 @@ -176325,19 +177924,16 @@ entities: - uid: 14194 components: - type: Transform - rot: -1.5707963267948966 rad pos: -40.5,-13.5 parent: 8364 - uid: 14211 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,-13.5 parent: 8364 - uid: 14214 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,-11.5 parent: 8364 - uid: 14218 @@ -176398,19 +177994,16 @@ entities: - uid: 15903 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,-12.5 parent: 8364 - uid: 16160 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,-13.5 parent: 8364 - uid: 16161 components: - type: Transform - rot: -1.5707963267948966 rad pos: -40.5,-10.5 parent: 8364 - uid: 16210 @@ -176958,11 +178551,6 @@ entities: - type: Transform pos: 8.5,-36.5 parent: 8364 - - uid: 21514 - components: - - type: Transform - pos: -16.5,48.5 - parent: 8364 - uid: 21517 components: - type: Transform @@ -177058,11 +178646,6 @@ entities: - type: Transform pos: 41.5,-15.5 parent: 8364 - - uid: 22639 - components: - - type: Transform - pos: -19.5,42.5 - parent: 8364 - uid: 22678 components: - type: Transform @@ -177083,96 +178666,6 @@ entities: - type: Transform pos: -3.5,-50.5 parent: 8364 - - uid: 25272 - components: - - type: Transform - pos: -16.5,42.5 - parent: 8364 - - uid: 25273 - components: - - type: Transform - pos: -14.5,46.5 - parent: 8364 - - uid: 25664 - components: - - type: Transform - pos: -16.5,46.5 - parent: 8364 - - uid: 25665 - components: - - type: Transform - pos: -16.5,47.5 - parent: 8364 - - uid: 25666 - components: - - type: Transform - pos: -19.5,40.5 - parent: 8364 - - uid: 25668 - components: - - type: Transform - pos: -19.5,41.5 - parent: 8364 - - uid: 25669 - components: - - type: Transform - pos: -16.5,49.5 - parent: 8364 - - uid: 25670 - components: - - type: Transform - pos: -12.5,46.5 - parent: 8364 - - uid: 25671 - components: - - type: Transform - pos: -16.5,40.5 - parent: 8364 - - uid: 25672 - components: - - type: Transform - pos: -16.5,41.5 - parent: 8364 - - uid: 25673 - components: - - type: Transform - pos: -16.5,51.5 - parent: 8364 - - uid: 25686 - components: - - type: Transform - pos: -17.5,49.5 - parent: 8364 - - uid: 25689 - components: - - type: Transform - pos: -15.5,46.5 - parent: 8364 - - uid: 25690 - components: - - type: Transform - pos: -22.5,40.5 - parent: 8364 - - uid: 25691 - components: - - type: Transform - pos: -22.5,41.5 - parent: 8364 - - uid: 25694 - components: - - type: Transform - pos: -21.5,49.5 - parent: 8364 - - uid: 25698 - components: - - type: Transform - pos: -22.5,49.5 - parent: 8364 - - uid: 25717 - components: - - type: Transform - pos: -20.5,49.5 - parent: 8364 - uid: 26116 components: - type: Transform @@ -177191,7 +178684,6 @@ entities: - uid: 27046 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-71.5 parent: 8364 - uid: 27048 @@ -177439,7 +178931,6 @@ entities: - uid: 4675 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,-43.5 parent: 8364 - uid: 4714 @@ -177460,103 +178951,86 @@ entities: - uid: 4733 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,-59.5 parent: 8364 - uid: 4734 components: - type: Transform - rot: 1.5707963267948966 rad pos: -28.5,-59.5 parent: 8364 - uid: 4735 components: - type: Transform - rot: 1.5707963267948966 rad pos: -33.5,-59.5 parent: 8364 - uid: 4736 components: - type: Transform - rot: 1.5707963267948966 rad pos: -26.5,-59.5 parent: 8364 - uid: 4737 components: - type: Transform - rot: 1.5707963267948966 rad pos: -26.5,-48.5 parent: 8364 - uid: 4738 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,-48.5 parent: 8364 - uid: 4739 components: - type: Transform - rot: 1.5707963267948966 rad pos: -22.5,-48.5 parent: 8364 - uid: 4740 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-48.5 parent: 8364 - uid: 4741 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,-48.5 parent: 8364 - uid: 4742 components: - type: Transform - rot: 1.5707963267948966 rad pos: -19.5,-57.5 parent: 8364 - uid: 4743 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,-52.5 parent: 8364 - uid: 4744 components: - type: Transform - rot: 1.5707963267948966 rad pos: -30.5,-55.5 parent: 8364 - uid: 4859 components: - type: Transform - rot: 1.5707963267948966 rad pos: -30.5,-46.5 parent: 8364 - uid: 4861 components: - type: Transform - rot: 1.5707963267948966 rad pos: -29.5,-46.5 parent: 8364 - uid: 4862 components: - type: Transform - rot: 1.5707963267948966 rad pos: -28.5,-46.5 parent: 8364 - uid: 4867 components: - type: Transform - rot: 1.5707963267948966 rad pos: -36.5,-47.5 parent: 8364 - uid: 15802 components: - type: Transform - rot: 1.5707963267948966 rad pos: -18.5,-41.5 parent: 8364 - uid: 17556 @@ -177777,29 +179251,6 @@ entities: - 0 - 0 - 0 - - uid: 9109 - components: - - type: Transform - pos: -9.5,53.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13888 components: - type: Transform @@ -177850,123 +179301,16 @@ entities: - 0 - proto: WardrobePrisonFilled entities: - - uid: 8760 + - uid: 7778 components: - type: Transform - pos: -12.5,36.5 + pos: -23.5,26.5 parent: 8364 - - uid: 8781 + - uid: 7906 components: - type: Transform - pos: -4.5,24.5 + pos: -23.5,22.5 parent: 8364 - - uid: 8782 - components: - - type: Transform - pos: -8.5,24.5 - parent: 8364 - - uid: 9168 - components: - - type: Transform - pos: -11.5,36.5 - parent: 8364 - - uid: 26136 - components: - - type: Transform - pos: -0.5,24.5 - parent: 8364 - - uid: 26345 - components: - - type: Transform - pos: -17.5,40.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 26346 - components: - - type: Transform - pos: -20.5,40.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 26347 - components: - - type: Transform - pos: -21.5,48.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 26348 - components: - - type: Transform - pos: -18.5,48.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeSalvageFilled entities: - uid: 14570 @@ -178228,16 +179572,16 @@ entities: - type: Transform pos: 20.5,8.5 parent: 8364 + - uid: 7770 + components: + - type: Transform + pos: 4.5,23.5 + parent: 8364 - uid: 7911 components: - type: Transform pos: -23.5,-13.5 parent: 8364 - - uid: 9428 - components: - - type: Transform - pos: -10.5,15.5 - parent: 8364 - uid: 21129 components: - type: Transform @@ -178255,6 +179599,11 @@ entities: - type: Transform pos: 12.5,-52.5 parent: 8364 + - uid: 6614 + components: + - type: Transform + pos: -16.5,13.5 + parent: 8364 - uid: 8486 components: - type: Transform @@ -178290,11 +179639,6 @@ entities: - type: Transform pos: -37.5,8.5 parent: 8364 - - uid: 13826 - components: - - type: Transform - pos: -15.5,12.5 - parent: 8364 - uid: 14229 components: - type: Transform @@ -178440,35 +179784,22 @@ entities: showEnts: False occludes: True ents: [] - - uid: 8913 + - uid: 7664 components: - type: Transform - pos: -19.5,22.5 + rot: 1.5707963267948966 rad + pos: -0.5,43.5 parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9225 + - uid: 7857 components: - type: Transform - pos: 4.5,33.5 + pos: 10.5,48.5 parent: 8364 - - uid: 9343 + - uid: 9111 components: - type: Transform - pos: 7.5,35.5 + pos: -3.5,34.5 parent: 8364 - - uid: 9407 - components: - - type: Transform - pos: 12.5,40.5 - parent: 8364 - - uid: 9591 - components: - - type: Transform - pos: 21.5,34.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12353 components: - type: Transform @@ -178481,116 +179812,67 @@ entities: - type: Transform pos: -20.5,-29.5 parent: 8364 - - uid: 21785 + - uid: 24302 components: - type: Transform - pos: 18.5,36.5 + pos: 4.5,43.5 parent: 8364 - uid: 27228 components: - type: Transform pos: -9.5,-15.5 parent: 8364 - - uid: 27291 + - uid: 28637 components: - type: Transform - pos: -2.5,38.5 + rot: 1.5707963267948966 rad + pos: -7.5,46.5 parent: 8364 - proto: WeaponDisablerPractice entities: - - uid: 6611 + - uid: 7339 components: - type: Transform - pos: 25.415077,32.67617 + pos: 10.628457,47.92135 parent: 8364 - - uid: 8385 + - uid: 7378 components: - type: Transform - pos: 25.540077,32.58242 - parent: 8364 -- proto: WeaponLaserCarbine - entities: - - uid: 8570 - components: - - type: Transform - pos: 4.4934177,39.504333 - parent: 8364 - - uid: 8571 - components: - - type: Transform - pos: 4.4934177,39.39322 - parent: 8364 - - uid: 9172 - components: - - type: Transform - pos: 4.4934177,39.629333 - parent: 8364 - - uid: 23537 - components: - - type: Transform - pos: 4.4934177,39.747383 + pos: 10.44044,48.08516 parent: 8364 - proto: WeaponLaserCarbinePractice entities: - - uid: 4645 + - uid: 5107 components: - type: Transform - pos: 21.481674,35.209373 + pos: 10.471705,50.545204 parent: 8364 - - uid: 8772 + - uid: 7617 components: - type: Transform - pos: 21.462696,34.988297 + pos: 10.54466,50.378418 parent: 8364 -- proto: WeaponRifleLecter +- proto: WeaponShotgunEnforcer entities: - - uid: 9375 + - uid: 9086 components: - type: Transform - parent: 10023 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WeaponShotgunKammerer - entities: - - uid: 8642 - components: - - type: Transform - pos: 3.5233402,39.390335 + pos: -7.4696865,34.5829 parent: 8364 - - uid: 9208 - components: - - type: Transform - pos: 3.5233402,39.53617 - parent: 8364 - - uid: 10087 - components: - - type: Transform - pos: 3.5233402,39.668114 - parent: 8364 - - uid: 26258 - components: - - type: Transform - pos: 3.5474372,39.816833 - parent: 8364 -- proto: WeaponSubMachineGunDrozd - entities: - - uid: 9370 - components: - - type: Transform - parent: 10024 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: WeaponSubMachineGunWt550 entities: - - uid: 536 + - uid: 5089 components: - type: Transform - pos: 14.512794,39.540672 + pos: -2.2235553,53.672165 parent: 8364 - proto: WeedSpray entities: + - uid: 8983 + components: + - type: Transform + pos: -23.280811,42.701523 + parent: 8364 - uid: 10453 components: - type: Transform @@ -178606,11 +179888,6 @@ entities: - type: Transform pos: 48.35222,1.7228565 parent: 8364 - - uid: 26464 - components: - - type: Transform - pos: 2.5214396,51.592094 - parent: 8364 - proto: Welder entities: - uid: 12272 @@ -178759,6 +180036,16 @@ entities: parent: 8364 - proto: Windoor entities: + - uid: 11 + components: + - type: Transform + pos: -31.5,41.5 + parent: 8364 + - uid: 12 + components: + - type: Transform + pos: -29.5,41.5 + parent: 8364 - uid: 2030 components: - type: Transform @@ -178804,60 +180091,33 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-2.5 parent: 8364 - - uid: 8608 + - uid: 7303 components: - - type: MetaData - name: Reception Desk - type: Transform - pos: 2.5,22.5 + rot: 3.141592653589793 rad + pos: -24.5,39.5 parent: 8364 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 8605: - - - DoorStatus - - Close - 8604: - - - DoorStatus - - Close - - uid: 8609 + - uid: 7793 components: - - type: MetaData - name: Reception Desk - type: Transform - pos: 1.5,22.5 + rot: 1.5707963267948966 rad + pos: 10.5,51.5 parent: 8364 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 8604: - - - DoorStatus - - Close - 8605: - - - DoorStatus - - Close - - uid: 9242 + - uid: 9108 components: - - type: MetaData - name: Reception Desk - type: Transform - pos: -0.5,29.5 + pos: -4.5,29.5 parent: 8364 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 12663: - - - DoorStatus - - Close - - uid: 9805 + - uid: 9109 components: - - type: MetaData - name: Security Disposals Belt - type: Transform - pos: 25.5,30.5 + pos: -5.5,29.5 + parent: 8364 + - uid: 9264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,27.5 parent: 8364 - uid: 9969 components: @@ -178917,11 +180177,11 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-23.5 parent: 8364 - - uid: 25675 + - uid: 25650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,50.5 + rot: 3.141592653589793 rad + pos: -23.5,39.5 parent: 8364 - proto: WindoorAssembly entities: @@ -179031,60 +180291,85 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-17.5 parent: 8364 - - uid: 25716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,42.5 - parent: 8364 - - uid: 25725 - components: - - type: Transform - pos: -20.5,46.5 - parent: 8364 - - uid: 25733 - components: - - type: Transform - pos: -17.5,46.5 - parent: 8364 - - uid: 25734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,42.5 - parent: 8364 - proto: WindoorSecureArmoryLocked entities: - - uid: 12663 + - uid: 9091 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,29.5 + rot: 1.5707963267948966 rad + pos: -10.5,33.5 parent: 8364 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 9242: - - - DoorStatus - - Close - - uid: 25744 - components: - - type: Transform - pos: 4.5,39.5 - parent: 8364 - - uid: 25747 - components: - - type: Transform - pos: 3.5,39.5 - parent: 8364 -- proto: WindoorSecureBrigLocked - entities: - - uid: 8619 + - uid: 9092 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,29.5 + pos: -2.5,33.5 + parent: 8364 + - uid: 9093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,32.5 + parent: 8364 + - uid: 9094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,31.5 + parent: 8364 + - uid: 9095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,29.5 + parent: 8364 + - uid: 9096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,29.5 + parent: 8364 +- proto: WindoorSecureBrigLocked + entities: + - uid: 757 + components: + - type: Transform + pos: -14.5,36.5 + parent: 8364 + - uid: 8929 + components: + - type: Transform + pos: -7.5,18.5 + parent: 8364 + - uid: 9056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,22.5 + parent: 8364 + - uid: 9100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,33.5 + parent: 8364 + - uid: 9102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,32.5 + parent: 8364 + - uid: 9103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,33.5 + parent: 8364 + - uid: 9106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,31.5 parent: 8364 - proto: WindoorSecureChemistryLocked entities: @@ -179252,103 +180537,6 @@ entities: parent: 8364 - proto: WindoorSecureSecurityLocked entities: - - uid: 6524 - components: - - type: Transform - pos: -6.5,40.5 - parent: 8364 - - uid: 8409 - components: - - type: MetaData - name: Courtroom - - type: Transform - pos: 14.5,23.5 - parent: 8364 - - uid: 8428 - components: - - type: MetaData - name: Courtroom - - type: Transform - pos: 16.5,23.5 - parent: 8364 - - uid: 8483 - components: - - type: MetaData - name: Courtroom - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,23.5 - parent: 8364 - - uid: 8556 - components: - - type: MetaData - name: Courtroom - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,23.5 - parent: 8364 - - uid: 8604 - components: - - type: MetaData - name: Brig Desk - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,22.5 - parent: 8364 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 8609: - - - DoorStatus - - Close - 8608: - - - DoorStatus - - Close - - uid: 8605 - components: - - type: MetaData - name: Brig Desk - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,22.5 - parent: 8364 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 8608: - - - DoorStatus - - Close - 8609: - - - DoorStatus - - Close - - uid: 8624 - components: - - type: MetaData - name: Cell 3 - - type: Transform - pos: -1.5,25.5 - parent: 8364 - - uid: 8625 - components: - - type: MetaData - name: Cell 2 - - type: Transform - pos: -5.5,25.5 - parent: 8364 - - uid: 8626 - components: - - type: MetaData - name: Cell 1 - - type: Transform - pos: -9.5,25.5 - parent: 8364 - - uid: 8973 - components: - - type: Transform - pos: -4.5,40.5 - parent: 8364 - uid: 12330 components: - type: MetaData @@ -179357,39 +180545,16 @@ entities: rot: 3.141592653589793 rad pos: -58.5,2.5 parent: 8364 - - uid: 18591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,40.5 - parent: 8364 - - uid: 22453 - components: - - type: Transform - pos: 18.5,27.5 - parent: 8364 - - uid: 25738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,40.5 - parent: 8364 - uid: 25968 components: - type: Transform pos: 79.5,-4.5 parent: 8364 - - uid: 26253 + - uid: 28636 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 8364 - - uid: 26254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,23.5 + pos: -7.5,46.5 parent: 8364 - proto: Window entities: @@ -179673,16 +180838,6 @@ entities: - type: Transform pos: 18.5,9.5 parent: 8364 - - uid: 7850 - components: - - type: Transform - pos: 11.5,19.5 - parent: 8364 - - uid: 7851 - components: - - type: Transform - pos: 11.5,21.5 - parent: 8364 - uid: 7956 components: - type: Transform @@ -179741,7 +180896,6 @@ entities: - uid: 14197 components: - type: Transform - rot: -1.5707963267948966 rad pos: -40.5,-11.5 parent: 8364 - uid: 14488 @@ -179752,37 +180906,31 @@ entities: - uid: 16152 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,-10.5 parent: 8364 - uid: 16156 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,-10.5 parent: 8364 - uid: 16170 components: - type: Transform - rot: -1.5707963267948966 rad pos: -40.5,-12.5 parent: 8364 - uid: 17852 components: - type: Transform - rot: -1.5707963267948966 rad pos: 40.5,-30.5 parent: 8364 - uid: 17858 components: - type: Transform - rot: -1.5707963267948966 rad pos: 41.5,-30.5 parent: 8364 - uid: 17867 components: - type: Transform - rot: -1.5707963267948966 rad pos: 39.5,-30.5 parent: 8364 - uid: 18566 @@ -179865,16 +181013,6 @@ entities: - type: Transform pos: 17.5,-3.5 parent: 8364 - - uid: 25688 - components: - - type: Transform - pos: -6.5,46.5 - parent: 8364 - - uid: 25731 - components: - - type: Transform - pos: -8.5,46.5 - parent: 8364 - uid: 25919 components: - type: Transform @@ -179883,7 +181021,6 @@ entities: - uid: 26617 components: - type: Transform - rot: -1.5707963267948966 rad pos: 15.5,-37.5 parent: 8364 - uid: 27606 @@ -179898,12 +181035,6 @@ entities: parent: 8364 - proto: WindowDirectional entities: - - uid: 6593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,30.5 - parent: 8364 - uid: 6916 components: - type: Transform @@ -179964,49 +181095,41 @@ entities: - type: Transform pos: 19.5,-2.5 parent: 8364 - - uid: 8753 + - uid: 9219 components: - type: Transform - pos: -8.5,51.5 + rot: 1.5707963267948966 rad + pos: 18.5,28.5 parent: 8364 - - uid: 8816 + - uid: 9225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,51.5 + rot: 3.141592653589793 rad + pos: 19.5,27.5 parent: 8364 - - uid: 9099 + - uid: 9262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,52.5 + rot: 3.141592653589793 rad + pos: 21.5,27.5 parent: 8364 - - uid: 9801 + - uid: 9432 components: - type: Transform - pos: 27.5,28.5 + rot: 1.5707963267948966 rad + pos: 21.5,27.5 parent: 8364 - - uid: 9802 + - uid: 9433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,28.5 + rot: 1.5707963267948966 rad + pos: 21.5,26.5 parent: 8364 - - uid: 9803 + - uid: 9435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,29.5 - parent: 8364 - - uid: 9804 - components: - - type: Transform - pos: 26.5,30.5 - parent: 8364 - - uid: 9806 - components: - - type: Transform - pos: 24.5,30.5 + rot: 3.141592653589793 rad + pos: 22.5,25.5 parent: 8364 - uid: 11383 components: @@ -180167,6 +181290,23 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,16.5 parent: 8364 + - uid: 294 + components: + - type: Transform + pos: -10.5,18.5 + parent: 8364 + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,23.5 + parent: 8364 + - uid: 388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,24.5 + parent: 8364 - uid: 473 components: - type: Transform @@ -180191,6 +181331,12 @@ entities: rot: 3.141592653589793 rad pos: -54.5,16.5 parent: 8364 + - uid: 958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,22.5 + parent: 8364 - uid: 2171 components: - type: Transform @@ -180231,6 +181377,22 @@ entities: - type: Transform pos: 1.5,-46.5 parent: 8364 + - uid: 5104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,40.5 + parent: 8364 + - uid: 5448 + components: + - type: Transform + pos: -3.5,18.5 + parent: 8364 + - uid: 5461 + components: + - type: Transform + pos: -6.5,18.5 + parent: 8364 - uid: 5698 components: - type: Transform @@ -180252,6 +181414,11 @@ entities: - type: Transform pos: 6.5,-24.5 parent: 8364 + - uid: 5866 + components: + - type: Transform + pos: -8.5,18.5 + parent: 8364 - uid: 7034 components: - type: Transform @@ -180332,41 +181499,70 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,11.5 parent: 8364 - - uid: 8403 + - uid: 7336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,50.5 + parent: 8364 + - uid: 7792 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,27.5 + pos: 9.5,40.5 parent: 8364 - - uid: 8404 + - uid: 8630 + components: + - type: Transform + pos: -4.5,18.5 + parent: 8364 + - uid: 8643 + components: + - type: Transform + pos: 10.5,47.5 + parent: 8364 + - uid: 8730 + components: + - type: Transform + pos: -5.5,18.5 + parent: 8364 + - uid: 8775 + components: + - type: Transform + pos: -9.5,18.5 + parent: 8364 + - uid: 8807 + components: + - type: Transform + pos: -11.5,18.5 + parent: 8364 + - uid: 8839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,22.5 + parent: 8364 + - uid: 8875 + components: + - type: Transform + pos: -20.5,22.5 + parent: 8364 + - uid: 8975 + components: + - type: Transform + pos: -17.5,22.5 + parent: 8364 + - uid: 8976 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,28.5 + pos: -20.5,22.5 parent: 8364 - - uid: 8742 + - uid: 9131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,30.5 - parent: 8364 - - uid: 8744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,31.5 - parent: 8364 - - uid: 8745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,32.5 - parent: 8364 - - uid: 8778 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,39.5 + rot: 3.141592653589793 rad + pos: -11.5,22.5 parent: 8364 - uid: 9824 components: @@ -180593,45 +181789,22 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-20.5 parent: 8364 - - uid: 24434 + - uid: 25651 + components: + - type: Transform + pos: -18.5,22.5 + parent: 8364 + - uid: 25652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,22.5 + parent: 8364 + - uid: 25653 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,29.5 - parent: 8364 - - uid: 25701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,42.5 - parent: 8364 - - uid: 25706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,42.5 - parent: 8364 - - uid: 25707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,42.5 - parent: 8364 - - uid: 25708 - components: - - type: Transform - pos: -18.5,46.5 - parent: 8364 - - uid: 25709 - components: - - type: Transform - pos: -21.5,46.5 - parent: 8364 - - uid: 25732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,42.5 + pos: -18.5,22.5 parent: 8364 - uid: 25885 components: @@ -180651,17 +181824,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-19.5 parent: 8364 - - uid: 25898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,39.5 - parent: 8364 - - uid: 25899 - components: - - type: Transform - pos: -2.5,38.5 - parent: 8364 - uid: 26260 components: - type: Transform @@ -180740,6 +181902,11 @@ entities: parent: 8364 - proto: WoodDoor entities: + - uid: 5465 + components: + - type: Transform + pos: 11.5,28.5 + parent: 8364 - uid: 10537 components: - type: Transform @@ -180791,11 +181958,6 @@ entities: - type: Transform pos: 29.5,1.5 parent: 8364 - - uid: 7259 - components: - - type: Transform - pos: 27.472874,22.499187 - parent: 8364 - uid: 9679 components: - type: Transform diff --git a/Resources/Maps/convex.yml b/Resources/Maps/convex.yml index 83cba3eb34..6f38a05f8c 100644 --- a/Resources/Maps/convex.yml +++ b/Resources/Maps/convex.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 254.1.0 + engineVersion: 260.0.0 forkId: "" forkVersion: "" - time: 04/25/2025 03:21:00 - entityCount: 37590 + time: 05/18/2025 17:18:06 + entityCount: 37632 maps: - 353 grids: @@ -72,432 +72,432 @@ entities: chunks: 1,1: ind: 1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAA== + version: 7 1,2: ind: 1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAA== + version: 7 1,3: ind: 1,3 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAA - version: 6 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAA== + version: 7 1,4: ind: 1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAABAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAMAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAIAAAAAAAAYAAAAAAAAGAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABgAAAAAAAACAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAgACAAAAAAAACAAAAAACAAIAAAAAAAAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 1,5: ind: 1,5 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAAAAAgAAAAAAwAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAEACAAAAAACAAgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAIAAAAAAIAAgAAAAAAAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAwAIAAAAAAAACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAgAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAABAAgAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAABAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAABAAgAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAQAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAAEAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAABAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAAEAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAABAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAQAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAAEAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 1,6: ind: 1,6 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABBQAAAAADBQAAAAACBQAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAABBQAAAAADBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABBQAAAAAABQAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAAA - version: 6 + tiles: AAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAMAAwAAAAADAAIAAAAAAAADAAAAAAIAAwAAAAABAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAACAAUAAAAAAQAFAAAAAAAABQAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAQAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAIAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAIAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAgACAAAAAAAAAwAAAAADAAMAAAAAAQAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwAFAAAAAAIABQAAAAABAAUAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAwADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAEAAwAAAAABAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAUAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAhAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAACAAAAAAAABAAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAA== + version: 7 1,7: ind: 1,7 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAACIQAAAAACIQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAADAgAAAAAAIQAAAAACIQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAABQAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAAAAgAAAAAABgAAAAAABgAAAAABBgAAAAAAAgAAAAAAIAAAAAAAIAAAAAAKIAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAABBgAAAAADBgAAAAACBgAAAAAABgAAAAADAgAAAAAAAgAAAAAAIAAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAADBgAAAAADBgAAAAADAgAAAAAABgAAAAABBgAAAAADBgAAAAADBgAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA - version: 6 + tiles: AAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIQAAAAABACEAAAAAAgAhAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAABQAAAAABAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIQAAAAADAAIAAAAAAAAhAAAAAAAAIQAAAAADAAIAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAwAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAAFAAAAAAIAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAACAAAAAAAABAAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAADAAUAAAAAAwABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAIAAAAAAAAEAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAIAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAwAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAgAAAAAAAAAgAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAAAAAIAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAYAAAAAAgAGAAAAAAMABgAAAAABAAYAAAAAAQAGAAAAAAIAAgAAAAAAAAIAAAAAAAAgAAAAAAAAAwAAAAADAAMAAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAADAAYAAAAAAQAGAAAAAAAABgAAAAACAAYAAAAAAgAGAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAABgAAAAAAAAYAAAAAAwAGAAAAAAAAAgAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAABAAYAAAAAAQACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 1,8: ind: 1,8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAA== + version: 7 1,9: ind: 1,9 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 10,2: ind: 10,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAABAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAQAAAAAAAAAIAAAAAAABAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAACAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAA== + version: 7 10,3: ind: 10,3 - tiles: AwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA - version: 6 + tiles: AwAAAAADAAMAAAAAAgACAAAAAAAAAwAAAAABAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAQACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAMAAwAAAAADAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAgADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAADAAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAA== + version: 7 10,4: ind: 10,4 - tiles: AgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AgAAAAAAAAMAAAAAAwADAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAADAAAAAAMAAgAAAAAAAAMAAAAAAgACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAcAAAAAAQAHAAAAAAMAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAHAAAAAAIABwAAAAABAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAgACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAIAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAgACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAQAHAAAAAAMAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAADAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAcAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 10,5: ind: 10,5 - tiles: AwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AwAAAAABAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 10,6: ind: 10,6 - tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAgAIAAAAAAMACAAAAAADAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAEACAAAAAADAAgAAAAAAwAIAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAMACAAAAAADAAgAAAAAAwAIAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 10,7: ind: 10,7 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 10,8: ind: 10,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAgACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAMAAgAAAAAAAAMAAAAAAQACAAAAAAAAAwAAAAACAAMAAAAAAwACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwACAAAAAAAAAwAAAAABAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 10,9: ind: 10,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCgAAAAAACAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAABCgAAAAABCAAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAQACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAABAAoAAAAAAQAIAAAAAAMAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAAAKAAAAAAIACAAAAAADAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 11,2: ind: 11,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 11,3: ind: 11,3 - tiles: AgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 11,4: ind: 11,4 - tiles: AgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,0: ind: 2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 2,1: ind: 2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAABCAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAABCQAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACQAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAAACQAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAABCAAAAAADBQAAAAADAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAIACAAAAAADAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAACAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAAAJAAAAAAAACAAAAAACAAgAAAAAAwAIAAAAAAMAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAADAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAJAAAAAAAAAgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAgAAAAAAgACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAACAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAIACQAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAADAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAADAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAwAIAAAAAAMABQAAAAABAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAEAAgAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAA== + version: 7 2,2: ind: 2,2 - tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAACCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAACCAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAADCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAACCAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAD - version: 6 + tiles: AQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAMACAAAAAACAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAwAIAAAAAAIACAAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAwABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAABAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAEAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAAACAAAAAAAAAgAAAAAAgAIAAAAAAAACAAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAACAAAAAAAAAgAAAAAAQAIAAAAAAIACAAAAAADAAgAAAAAAAAIAAAAAAIAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAAAAA== + version: 7 2,3: ind: 2,3 - tiles: AgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAADAgAAAAAACAAAAAACCgAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAAACgAAAAAACAAAAAADCgAAAAACCAAAAAAACAAAAAADFAAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAADCgAAAAADCAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAACFAAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAAAFAAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAABCgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABCgAAAAADCAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADAgAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAADCgAAAAACCAAAAAABAgAAAAAACwAAAAABAgAAAAAACAAAAAABCgAAAAABCAAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAACAgAAAAAACwAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAADCgAAAAAACAAAAAAAAgAAAAAACwAAAAABAgAAAAAACAAAAAABCgAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAAAgAAAAAACwAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAACAAAAAAACAAAAAACCAAAAAABCgAAAAACCAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAAACgAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAABFAAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAADCAAAAAAAAgAAAAAACwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAABFAAAAAAACAAAAAACCAAAAAADCAAAAAACCgAAAAACCAAAAAAAAgAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAABCAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAACAAAAAADCgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABFAAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAACgAAAAABCAAAAAAACgAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAABCgAAAAACCAAAAAACFAAAAAAACAAAAAABCAAAAAAACAAAAAABAgAAAAAACAAAAAABCgAAAAAACAAAAAACCAAAAAAACgAAAAABCAAAAAACCgAAAAACCAAAAAACCgAAAAABCAAAAAAACAAAAAABFAAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAACAAAAAADCAAAAAAB - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAAAAAgAAAAAAwAIAAAAAAMACAAAAAABAAgAAAAAAgAIAAAAAAIAAgAAAAAAAAgAAAAAAQAIAAAAAAIACAAAAAADAAIAAAAAAAAIAAAAAAAACgAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAACAAgAAAAAAwAKAAAAAAEACAAAAAACAAoAAAAAAAAIAAAAAAIACAAAAAABABQAAAAAAAAIAAAAAAIACAAAAAABAAgAAAAAAwACAAAAAAAACAAAAAAAAAgAAAAAAQACAAAAAAAACAAAAAACAAoAAAAAAgAIAAAAAAEACAAAAAACAAgAAAAAAgAIAAAAAAEACAAAAAAAAAgAAAAAAgAUAAAAAAAACAAAAAACAAgAAAAAAgAIAAAAAAEAAgAAAAAAAAgAAAAAAgAIAAAAAAMACAAAAAAAAAgAAAAAAgAIAAAAAAEACAAAAAACAAgAAAAAAgAIAAAAAAMACAAAAAAAAAgAAAAAAwAIAAAAAAEAFAAAAAAAAAgAAAAAAwAIAAAAAAMACAAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAAAAAgAAAAAAAAKAAAAAAEACAAAAAAAAAgAAAAAAgAIAAAAAAAACAAAAAABAAgAAAAAAQAKAAAAAAMACAAAAAADAAIAAAAAAAAIAAAAAAAACAAAAAABAAgAAAAAAQACAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAIACAAAAAADAAgAAAAAAgACAAAAAAAACAAAAAABAAIAAAAAAAAIAAAAAAEACAAAAAAAAAgAAAAAAgACAAAAAAAACAAAAAABAAgAAAAAAwAIAAAAAAEAAgAAAAAAAAgAAAAAAAAIAAAAAAMACAAAAAACAAoAAAAAAAAIAAAAAAMAAgAAAAAAAAsAAAAAAAACAAAAAAAACAAAAAADAAoAAAAAAwAIAAAAAAEAAgAAAAAAAAgAAAAAAgAIAAAAAAIACAAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAAAIAAAAAAEACAAAAAACAAIAAAAAAAALAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAMACAAAAAAAAAIAAAAAAAAIAAAAAAMACAAAAAACAAgAAAAAAgACAAAAAAAACAAAAAACAAgAAAAAAQAIAAAAAAMACgAAAAADAAgAAAAAAQACAAAAAAAACwAAAAACAAIAAAAAAAAIAAAAAAMACgAAAAADAAgAAAAAAgACAAAAAAAACAAAAAAAAAgAAAAAAQAIAAAAAAMAAgAAAAAAAAgAAAAAAQAIAAAAAAMACAAAAAADAAgAAAAAAAAIAAAAAAAAAgAAAAAAAAsAAAAAAQACAAAAAAAACAAAAAABAAgAAAAAAgAIAAAAAAEAAgAAAAAAAAgAAAAAAwAIAAAAAAAACAAAAAADABQAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAwAKAAAAAAIACAAAAAAAAAIAAAAAAAALAAAAAAMAAgAAAAAAAAgAAAAAAgAKAAAAAAEACAAAAAADAAIAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAQAIAAAAAAMACAAAAAAAAAgAAAAAAQACAAAAAAAACwAAAAACAAIAAAAAAAAIAAAAAAIACAAAAAACAAgAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAgAIAAAAAAEAFAAAAAAAAAgAAAAAAQAIAAAAAAMACAAAAAACAAoAAAAAAAAIAAAAAAMAAgAAAAAAAAsAAAAAAAACAAAAAAAACAAAAAACAAoAAAAAAAAIAAAAAAEAAgAAAAAAAAgAAAAAAwAIAAAAAAMACAAAAAACAAIAAAAAAAAIAAAAAAMACgAAAAACAAgAAAAAAwAIAAAAAAIACAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAEACAAAAAAAABQAAAAAAAAIAAAAAAEACAAAAAADAAgAAAAAAQACAAAAAAAAAgAAAAAAAAoAAAAAAAAIAAAAAAMACgAAAAADAAgAAAAAAgAIAAAAAAIACAAAAAAAAAgAAAAAAQAIAAAAAAEACgAAAAACAAgAAAAAAAAUAAAAAAAACAAAAAADAAgAAAAAAAAIAAAAAAIAAgAAAAAAAAgAAAAAAgAKAAAAAAMACAAAAAADAAgAAAAAAAAKAAAAAAEACAAAAAAAAAoAAAAAAgAIAAAAAAMACgAAAAACAAgAAAAAAwAIAAAAAAAAFAAAAAAAAAgAAAAAAgAIAAAAAAIACAAAAAACAAIAAAAAAAAIAAAAAAEACAAAAAAAAA== + version: 7 2,4: ind: 2,4 - tiles: CAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAACAAAAAACCgAAAAABAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCgAAAAACDAAAAAAADAAAAAABDAAAAAADDAAAAAACAgAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAAADAAAAAACDAAAAAADDAAAAAABDAAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAAADQAAAAAADAAAAAADDAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAAAgAAAAAACAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAADBwAAAAABCAAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAACCAAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADCAAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABCAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAACAAAAAAACAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACCAAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACCAAAAAABBwAAAAABBwAAAAADBwAAAAABBwAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAACAAAAAADCAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAACAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: CAAAAAADAAgAAAAAAQAIAAAAAAEACAAAAAABAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAwAIAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAADAAIAAAAAAAAIAAAAAAAACgAAAAABAAIAAAAAAAACAAAAAAAACAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAACAAAAAADAAoAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAADAAcAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAgAIAAAAAAEAAgAAAAAAAAgAAAAAAAAIAAAAAAMADAAAAAADAAwAAAAAAAAMAAAAAAAADAAAAAABAAcAAAAAAgAHAAAAAAIABwAAAAACAAcAAAAAAQAHAAAAAAEAAgAAAAAAAAgAAAAAAgAIAAAAAAIACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgANAAAAAAAADAAAAAADAAwAAAAAAQACAAAAAAAABwAAAAABAAcAAAAAAQAHAAAAAAIABwAAAAACAAIAAAAAAAAIAAAAAAMACAAAAAAAAAgAAAAAAgACAAAAAAAACAAAAAAAAAgAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAADAAIAAAAAAAACAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAEACAAAAAADAAgAAAAAAQAIAAAAAAAABwAAAAADAAcAAAAAAQAHAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAMABwAAAAADAAcAAAAAAAAIAAAAAAIAAgAAAAAAAAgAAAAAAgAIAAAAAAEACAAAAAACAAgAAAAAAwAIAAAAAAAACAAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAABAAcAAAAAAAAHAAAAAAIABwAAAAACAAcAAAAAAAAHAAAAAAIABwAAAAACAAIAAAAAAAAIAAAAAAAACAAAAAABAAgAAAAAAgACAAAAAAAACAAAAAAAAAgAAAAAAQAIAAAAAAIACAAAAAADAAgAAAAAAQAIAAAAAAMACAAAAAACAAcAAAAAAAAHAAAAAAMABwAAAAABAAcAAAAAAgACAAAAAAAACAAAAAACAAgAAAAAAAAIAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAACAAgAAAAAAAAHAAAAAAEABwAAAAAAAAcAAAAAAwAHAAAAAAEACAAAAAAAAAgAAAAAAwAIAAAAAAMACAAAAAACAAIAAAAAAAAIAAAAAAAACAAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAwAIAAAAAAMABwAAAAABAAcAAAAAAwAHAAAAAAIABwAAAAABAAIAAAAAAAAIAAAAAAAACAAAAAACAAgAAAAAAQAIAAAAAAIACAAAAAADAAgAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMACAAAAAADAAcAAAAAAAAHAAAAAAMABwAAAAACAAcAAAAAAgACAAAAAAAACAAAAAABAAgAAAAAAAAIAAAAAAIAAgAAAAAAAAgAAAAAAAAIAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAMAAwAAAAABAAgAAAAAAgAHAAAAAAEABwAAAAACAAcAAAAAAQAHAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAIACAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 2,5: ind: 2,5 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABBQAAAAACBQAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAwAAAAADBQAAAAACAwAAAAABBQAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADBQAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAAABQAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACBQAAAAABBAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAAABQAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAADBQAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABBAAAAAAABAAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAADBQAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADBQAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAACBQAAAAADAwAAAAADBQAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAwACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAACAAIAAAAAAAADAAAAAAEABQAAAAAAAAUAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAIAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAACAAIAAAAAAAACAAAAAAAAAwAAAAABAAUAAAAAAAADAAAAAAMAAwAAAAACAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAgACAAAAAAAAAwAAAAACAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAABAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAgAFAAAAAAAAAwAAAAADAAUAAAAAAwADAAAAAAIAAwAAAAACAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAgACAAAAAAAAAwAAAAACAAUAAAAAAgAEAAAAAAAABAAAAAAAAAIAAAAAAAADAAAAAAIABQAAAAAAAAMAAAAAAgAFAAAAAAMAAwAAAAACAAMAAAAAAwACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAEAAgAAAAAAAAMAAAAAAgAFAAAAAAEABAAAAAAAAAQAAAAAAAACAAAAAAAAAwAAAAAAAAUAAAAAAwADAAAAAAMABQAAAAACAAMAAAAAAQADAAAAAAEAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAACAAMAAAAAAQADAAAAAAAAAwAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAMAAwAAAAABAAMAAAAAAgAEAAAAAAAABAAAAAAAAAIAAAAAAAADAAAAAAMABQAAAAADAAMAAAAAAQAFAAAAAAMAAwAAAAADAAMAAAAAAwACAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAEAAgAAAAAAAAMAAAAAAQADAAAAAAMABAAAAAAAAAQAAAAAAAACAAAAAAAAAwAAAAABAAUAAAAAAAADAAAAAAMABQAAAAABAAMAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAAAAAIAAAAAAAADAAAAAAAABQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAgAFAAAAAAIAAwAAAAAAAAUAAAAAAwADAAAAAAAAAwAAAAADAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAgACAAAAAAAAAwAAAAAAAAMAAAAAAwAEAAAAAAAABAAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAgACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAACAAIAAAAAAAADAAAAAAMAAwAAAAACAA== + version: 7 2,6: ind: 2,6 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAADAwAAAAABAwAAAAAAAwAAAAADCAAAAAADCAAAAAAACAAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAABAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAACgAAAAACCgAAAAABCgAAAAADAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACgAAAAACCgAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAD - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAsAAAAAAAALAAAAAAEAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAwADAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAACAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAACAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAACAAIAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAABAAgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAwACAAAAAAAAAwAAAAACAAMAAAAAAwACAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAMACAAAAAAAAAgAAAAAAQAIAAAAAAMACAAAAAAAAAgAAAAAAwACAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAIACAAAAAADAAIAAAAAAAAIAAAAAAEACAAAAAAAAAgAAAAAAwAIAAAAAAMAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAIACAAAAAABAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAAACAAAAAAAACAAAAAAAAAgAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAEAAgAAAAAAAAgAAAAAAwAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAMACAAAAAACAAgAAAAAAwAIAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAAIAAAAAAMACAAAAAAAAAgAAAAAAQAIAAAAAAMAAgAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAACAAIAAAAAAAAIAAAAAAEACAAAAAADAAMAAAAAAQACAAAAAAAAAwAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAABQAAAAADAAMAAAAAAAACAAAAAAAAAwAAAAACAAIAAAAAAAAKAAAAAAIACgAAAAABAAoAAAAAAQACAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAoAAAAAAQAKAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAwAAAAADAAMAAAAAAQACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAADAA== + version: 7 2,7: ind: 2,7 - tiles: AwAAAAACBQAAAAACBQAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADBQAAAAAABQAAAAABBQAAAAABAwAAAAACBQAAAAADBQAAAAAABQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAgAAAAAABQAAAAADAwAAAAABBQAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACCgAAAAADCgAAAAACCgAAAAACCAAAAAACCAAAAAAACAAAAAADAwAAAAACBQAAAAADAwAAAAABBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCgAAAAADCgAAAAABCgAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAACwAAAAACCwAAAAACAgAAAAAACAAAAAACCgAAAAADCgAAAAAACgAAAAABCAAAAAABAgAAAAAACwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAACwAAAAABCwAAAAAAAgAAAAAACAAAAAABCgAAAAAACgAAAAABCgAAAAACCAAAAAABAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABBwAAAAADAgAAAAAABwAAAAADBwAAAAAAFgAAAAAABwAAAAABAgAAAAAABwAAAAADAgAAAAAACwAAAAADCwAAAAAACwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAACAgAAAAAACwAAAAAACwAAAAABCwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABAgAAAAAACwAAAAACCwAAAAAACwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAFgAAAAAEBwAAAAACBwAAAAADAgAAAAAABwAAAAABAgAAAAAABwAAAAABAgAAAAAAAgAAAAAACwAAAAABCwAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAACFgAAAAADBwAAAAAAAwAAAAAACwAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AwAAAAAAAAUAAAAAAgAFAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAwAFAAAAAAIABQAAAAABAAUAAAAAAQADAAAAAAIABQAAAAAAAAUAAAAAAgAFAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwACAAAAAAAABQAAAAADAAMAAAAAAQAFAAAAAAMAAgAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAAAIAAAAAAMACgAAAAAAAAoAAAAAAQAKAAAAAAAACAAAAAACAAgAAAAAAAAIAAAAAAAAAwAAAAAAAAUAAAAAAQADAAAAAAAABQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAoAAAAAAAAKAAAAAAEACgAAAAAAAAgAAAAAAwACAAAAAAAAAgAAAAAAAAMAAAAAAQAFAAAAAAAAAwAAAAABAAIAAAAAAAADAAAAAAMAAgAAAAAAAAsAAAAAAQALAAAAAAMAAgAAAAAAAAgAAAAAAgAKAAAAAAAACgAAAAAAAAoAAAAAAgAIAAAAAAEAAgAAAAAAAAsAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAMAAwAAAAADAAIAAAAAAAALAAAAAAIACwAAAAADAAIAAAAAAAAIAAAAAAMACgAAAAABAAoAAAAAAwAKAAAAAAMACAAAAAAAAAIAAAAAAAALAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAwAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAWAAAAAAUAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwAHAAAAAAEAAgAAAAAAAAcAAAAAAgAHAAAAAAAAFgAAAAAGAAcAAAAAAQACAAAAAAAABwAAAAAAAAIAAAAAAAALAAAAAAMACwAAAAADAAsAAAAAAgADAAAAAAEAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAIAAgAAAAAAAAIAAAAAAAAHAAAAAAMABwAAAAACAAcAAAAAAwACAAAAAAAACwAAAAADAAsAAAAAAQALAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAQAHAAAAAAEAAgAAAAAAAAcAAAAAAwAHAAAAAAIABwAAAAACAAcAAAAAAQAHAAAAAAIAAgAAAAAAAAsAAAAAAAALAAAAAAMACwAAAAADAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAFgAAAAAFAAcAAAAAAwAHAAAAAAEAAgAAAAAAAAcAAAAAAAACAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAMABwAAAAACAAcAAAAAAQAHAAAAAAIABwAAAAACABYAAAAAAAAHAAAAAAEAAwAAAAABAAsAAAAAAAALAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 2,8: ind: 2,8 - tiles: AAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAA== + version: 7 2,9: ind: 2,9 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,0: ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 3,1: ind: 3,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAABQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAABQAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAgAEAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAwACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAIABAAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAQACAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAEAAwAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAACAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwACAAAAAAAAAQAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAMABQAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwAFAAAAAAEAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAABAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAABAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAADAAMAAAAAAQACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAwACAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwAEAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 3,10: ind: 3,10 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,2: ind: 3,2 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAABAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAADAwAAAAACBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAADAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAABAwAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAwADAAAAAAAAAwAAAAACAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAEAAwAAAAAAAAMAAAAAAAAEAAAAAAAACQAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAAAAAMAAAAAAgADAAAAAAIABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQADAAAAAAEAAwAAAAABAAgAAAAAAgAIAAAAAAMACAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIAAwAAAAACAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAIABAAAAAAAAAkAAAAAAAAEAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAADAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAwAAAAADAAMAAAAAAAACAAAAAAAACAAAAAADAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAEAAgAAAAAAAAgAAAAAAwAEAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAACAAIAAAAAAAAIAAAAAAIABAAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 3,3: ind: 3,3 - tiles: CAAAAAACCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAACAgAAAAAADAAAAAAADAAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAABDAAAAAAADAAAAAADDAAAAAAAAgAAAAAABwAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAADAgAAAAAADAAAAAADDAAAAAAAAgAAAAAABwAAAAADCAAAAAADCAAAAAAACAAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADCAAAAAABCAAAAAABCAAAAAACCAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAACCAAAAAACCAAAAAAAAgAAAAAABwAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAwAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAACCAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAACAgAAAAAACgAAAAACCAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAACgAAAAABCgAAAAABCgAAAAABCgAAAAABCgAAAAAACgAAAAABCgAAAAAABQAAAAABAgAAAAAACgAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAD - version: 6 + tiles: CAAAAAABAAgAAAAAAAAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAEACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAwAHAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAADAAgAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAEABwAAAAACAAcAAAAAAwAHAAAAAAMABwAAAAACAAIAAAAAAAAMAAAAAAMADAAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAABAAgAAAAAAwAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAACAAcAAAAAAgAHAAAAAAEABwAAAAAAAAcAAAAAAwAMAAAAAAAADAAAAAACAAwAAAAAAAACAAAAAAAABwAAAAABAAgAAAAAAQAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAwAHAAAAAAIABwAAAAADAAcAAAAAAgAHAAAAAAMAAgAAAAAAAAwAAAAAAAAMAAAAAAIAAgAAAAAAAAcAAAAAAQAIAAAAAAIACAAAAAAAAAgAAAAAAQACAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAMACAAAAAABAAgAAAAAAAAIAAAAAAMACAAAAAACAAgAAAAAAQAIAAAAAAMAAgAAAAAAAAgAAAAAAQAIAAAAAAEACAAAAAABAAgAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAwACAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAACAAgAAAAAAQAIAAAAAAIACAAAAAACAAIAAAAAAAAIAAAAAAMACAAAAAABAAgAAAAAAAAIAAAAAAEACAAAAAABAAgAAAAAAAAIAAAAAAMAAgAAAAAAAAMAAAAAAAAIAAAAAAIACAAAAAACAAgAAAAAAAAIAAAAAAEACAAAAAADAAgAAAAAAAACAAAAAAAACAAAAAAAAAgAAAAAAQAIAAAAAAMACAAAAAACAAgAAAAAAwAIAAAAAAAACAAAAAADAAIAAAAAAAADAAAAAAIACAAAAAAAAAgAAAAAAAAIAAAAAAEACAAAAAAAAAgAAAAAAAAIAAAAAAIAAgAAAAAAAAgAAAAAAgAIAAAAAAMACAAAAAACAAgAAAAAAwAIAAAAAAIACAAAAAAAAAgAAAAAAwACAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAMACAAAAAACAAgAAAAAAQAIAAAAAAIACAAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAgAIAAAAAAEACAAAAAADAAgAAAAAAQAIAAAAAAMACAAAAAACAAIAAAAAAAAIAAAAAAIACAAAAAADAAgAAAAAAAAIAAAAAAIACAAAAAADAAgAAAAAAgACAAAAAAAACAAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAABAAgAAAAAAgAIAAAAAAEACAAAAAABAAgAAAAAAgACAAAAAAAACgAAAAACAAgAAAAAAQAIAAAAAAMACAAAAAABAAgAAAAAAQAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAAACAAAAAAAAAgAAAAAAAAoAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAIACAAAAAABAAIAAAAAAAAKAAAAAAMACgAAAAAAAAoAAAAAAwAKAAAAAAMACgAAAAABAAoAAAAAAAAKAAAAAAMABQAAAAAAAAIAAAAAAAAKAAAAAAMACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACgAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAABAAgAAAAAAAAIAAAAAAMAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAACAAMAAAAAAwADAAAAAAEAAwAAAAADAAMAAAAAAwADAAAAAAAAAwAAAAAAAA== + version: 7 3,4: ind: 3,4 - tiles: CAAAAAABCAAAAAAACgAAAAACCgAAAAAABQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABCgAAAAACCAAAAAABCgAAAAACCgAAAAADBQAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADCAAAAAADCAAAAAAACAAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAAACAAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAACAAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAAACQAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAgAAAAAACAAAAAABCgAAAAACCgAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAA - version: 6 + tiles: CAAAAAACAAgAAAAAAwAKAAAAAAMACgAAAAAAAAUAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAACAAoAAAAAAwAIAAAAAAEACgAAAAADAAoAAAAAAAAFAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAgAIAAAAAAMACAAAAAABAAgAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAMACAAAAAACAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAABAAgAAAAAAAAIAAAAAAEACAAAAAACAAgAAAAAAQACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAAAIAAAAAAAACAAAAAABAAgAAAAAAwAIAAAAAAEACAAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAEAAgAAAAAAAAgAAAAAAQAIAAAAAAMACAAAAAABAAgAAAAAAwADAAAAAAEAAwAAAAADAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAgACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAgAIAAAAAAAACAAAAAAAAAgAAAAAAgACAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAMAAgAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAMACAAAAAACAAgAAAAAAgAJAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAAACAAAAAADAAIAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAQACAAAAAAAAAwAAAAACAAIAAAAAAAAIAAAAAAIACgAAAAADAAoAAAAAAgAIAAAAAAEACAAAAAABAAIAAAAAAAAIAAAAAAEACAAAAAAAAAgAAAAAAwACAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAEAAgAAAAAAAAMAAAAAAwACAAAAAAAACAAAAAAAAAgAAAAAAgAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAABAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAgACAAAAAAAAAwAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAA== + version: 7 3,5: ind: 3,5 - tiles: AwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAADBQAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAFAAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACFAAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAADCAAAAAABBQAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABFAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAADBQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADBQAAAAABAwAAAAACBQAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABBQAAAAAAAwAAAAABBQAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAABQAAAAADAwAAAAABBQAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAFAAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAB - version: 6 + tiles: AwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAABAAMAAAAAAgADAAAAAAIAAgAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAQACAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAEACAAAAAADAAMAAAAAAgADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAABAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAAACAAAAAAAAAgAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAwACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAAIAAAAAAMACAAAAAADAAgAAAAAAAAIAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAACAAIAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAgAIAAAAAAEACAAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAABAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAIACAAAAAACAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAMAAgAAAAAAAAgAAAAAAgAIAAAAAAIACAAAAAABAAgAAAAAAQAIAAAAAAIAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAFAAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAAAIAAAAAAEACAAAAAACAAUAAAAAAgADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAMAAwAAAAABABQAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAQACAAAAAAAACAAAAAABAAgAAAAAAwAIAAAAAAEACAAAAAABAAgAAAAAAQADAAAAAAIAAwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAwAUAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAwACAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAIAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAADABQAAAAAAAAIAAAAAAEACAAAAAACAAgAAAAAAAAIAAAAAAIACAAAAAABAAMAAAAAAwADAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAADAAIAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAwAUAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAIACAAAAAADAAgAAAAAAwAFAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAgACAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAEAFAAAAAAAAAgAAAAAAwAIAAAAAAMACAAAAAABAAgAAAAAAgAIAAAAAAEABQAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAIAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAACAAIAAAAAAAADAAAAAAMABQAAAAABAAMAAAAAAwAFAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAMAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAADAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAgACAAAAAAAAAwAAAAACAAUAAAAAAQADAAAAAAMABQAAAAACAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAgACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAIAAgAAAAAAAAMAAAAAAgAFAAAAAAEAAwAAAAADAAUAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAIAFAAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAADAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAAAAA== + version: 7 3,6: ind: 3,6 - tiles: AwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACBQAAAAABBQAAAAABBQAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAEAAAAAADEQAAAAAAEAAAAAACEQAAAAACEAAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAEAAAAAAAEQAAAAADEAAAAAACEQAAAAACEAAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAEAAAAAABEQAAAAACEAAAAAACEQAAAAADEAAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADCAAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABCgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AwAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAMAFAAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAAAAAMAAAAAAQADAAAAAAMABQAAAAADAAUAAAAAAgAFAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAEAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAABABQAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAQACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAEAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAQAAAAAAIAEAAAAAACABAAAAAAAgAQAAAAAAEAEAAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAMAAwAAAAACAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAAACAAAAAAAAEAAAAAADABEAAAAAAwAQAAAAAAMAEQAAAAADABAAAAAAAwADAAAAAAEAAwAAAAACAAMAAAAAAgADAAAAAAEAAwAAAAACAAMAAAAAAgAUAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAAAAgAAAAAAABAAAAAAAwARAAAAAAAAEAAAAAAAABEAAAAAAQAQAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAAAFAAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAABAAIAAAAAAAAQAAAAAAAAEQAAAAACABAAAAAAAwARAAAAAAAAEAAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAABAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAwACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAgAAAAAAABAAAAAAAAAQAAAAAAMAEAAAAAABABAAAAAAAQAQAAAAAAEACAAAAAACAAgAAAAAAQAIAAAAAAAACAAAAAACAAgAAAAAAwACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQACAAAAAAAACAAAAAAAAAgAAAAAAgAIAAAAAAMAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAwAIAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAAACAAAAAABAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAEACAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAADAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAQACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAwAKAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 3,7: ind: 3,7 - tiles: AwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAFAAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAADCwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAACAgAAAAAAEAAAAAACAgAAAAAAEAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAABAgAAAAAAEAAAAAACAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAABCwAAAAAACwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAABCwAAAAADCwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAACCwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAACCwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAACCwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA - version: 6 + tiles: AwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAABABQAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAAAUAAAAAAAAAwAAAAADAAMAAAAAAwAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAAADAAAAAAIAFAAAAAAAAAMAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAABAAAAAAAgAQAAAAAAEAEAAAAAAAABAAAAAAAQAQAAAAAAIAEAAAAAADABAAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAACAAAAAAAAEAAAAAADABAAAAAAAAAQAAAAAAEAEAAAAAABABAAAAAAAwAQAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAgAAAAAAAAcAAAAAAAACAAAAAAAAEAAAAAAAAAIAAAAAAAAQAAAAAAMAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAAAHAAAAAAAAAgAAAAAAABAAAAAAAgACAAAAAAAAEAAAAAACAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAwAAAAAAAAMAAAAAAwACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAsAAAAAAQALAAAAAAMACwAAAAACAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAgADAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAALAAAAAAIACwAAAAADAAsAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAACAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAABAAsAAAAAAQALAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAwACAAAAAAAAAwAAAAADAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAsAAAAAAgALAAAAAAMACwAAAAACAAIAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAALAAAAAAMACwAAAAAAAAsAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAA== + version: 7 3,8: ind: 3,8 - tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAIgAAAAACIgAAAAADIgAAAAABAgAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAABIgAAAAADAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAAAAgAAAAAAIgAAAAACIgAAAAACIgAAAAAAIgAAAAACAgAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAIgAAAAABIgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAIgAAAAABAgAAAAAAIgAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAACIgAAAAAAIgAAAAADIgAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAADIgAAAAACIgAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAACIAAAAAAAAiAAAAAAMAIgAAAAADAAIAAAAAAAAiAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAACIAAAAAAgAiAAAAAAAAAgAAAAAAACIAAAAAAwACAAAAAAAAAgAAAAAAACIAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAiAAAAAAAAAgAAAAAAACIAAAAAAQAiAAAAAAAAIgAAAAAAACIAAAAAAQACAAAAAAAAIgAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAIgAAAAABAAIAAAAAAAACAAAAAAAAIgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAiAAAAAAAAIgAAAAADAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAMAAwAAAAACAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAIgAAAAADAAIAAAAAAAAiAAAAAAMAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAADAAMAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAIgAAAAADACIAAAAAAAAiAAAAAAAAIgAAAAADAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAAADAAAAAAIAAgAAAAAAAAEAAAAAAAACAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAIgAAAAADACIAAAAAAAAiAAAAAAEAIgAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAABAAAAAAAAA== + version: 7 3,9: ind: 3,9 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACIwAAAAABEwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIwAAAAADHgAAAAAAIwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAAAIwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAHgAAAAAAIwAAAAADHgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAACgAAAAACFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAAACgAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACCgAAAAAAAgAAAAAAEwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAACgAAAAACAwAAAAAAEwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAACAgAAAAAAAwAAAAAC - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAwAAAAAAACMAAAAAAgATAAAAAAIAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAACMAAAAAAgAeAAAAAAAAIwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAATAAAAAAAAIwAAAAADAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAHgAAAAAAACMAAAAAAAAeAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAAAKAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAATAAAAAAQACgAAAAAAAAMAAAAAAQADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAwAAAAABAAoAAAAAAwACAAAAAAAAEwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAKAAAAAAEAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAADAAAAAAIACgAAAAABAAMAAAAAAgATAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABMAAAAAAQACAAAAAAAAAwAAAAACAA== + version: 7 4,0: ind: 4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 4,1: ind: 4,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAgADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAgADAAAAAAEAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAADAAAAAAMAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAEAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAIAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAQACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAAIAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAgACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,10: ind: 4,10 - tiles: AwAAAAACEwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAACJAAAAAAAAgAAAAAAJAAAAAACJAAAAAABAgAAAAAAJAAAAAABAwAAAAACAwAAAAADAwAAAAADFgAAAAAEBwAAAAACAgAAAAAAAgAAAAAAFgAAAAAFAgAAAAAAJAAAAAACAgAAAAAAJAAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAFBwAAAAAAFgAAAAADAgAAAAAAJAAAAAABJAAAAAADJAAAAAADJAAAAAABJAAAAAAAJAAAAAABJAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABwAAAAAAFgAAAAAEFgAAAAAABwAAAAACFgAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AwAAAAADABMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAJAAAAAADACQAAAAAAAACAAAAAAAAJAAAAAACACQAAAAAAAACAAAAAAAAJAAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAACABYAAAAABQAHAAAAAAAAAgAAAAAAAAIAAAAAAAAWAAAAAAAAAgAAAAAAACQAAAAAAgACAAAAAAAAJAAAAAACACQAAAAAAgAkAAAAAAIAJAAAAAADACQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABYAAAAAAgAHAAAAAAIAFgAAAAABAAIAAAAAAAAkAAAAAAAAJAAAAAADACQAAAAAAQAkAAAAAAEAJAAAAAACACQAAAAAAQAkAAAAAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAwACAAAAAAAAAgAAAAAAAAcAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAcAAAAAAgAWAAAAAAUAFgAAAAAFAAcAAAAAAwAWAAAAAAMAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,2: ind: 4,2 - tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAD - version: 6 + tiles: AgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAgADAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAMAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAQACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAABAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAQAHAAAAAAIABwAAAAAAAAcAAAAAAgAHAAAAAAIABwAAAAAAAA== + version: 7 4,3: ind: 4,3 - tiles: AgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAAABwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAAABwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAAAHwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAABBwAAAAABAgAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACHwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAACBwAAAAACHwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAAAHwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAABwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACFAAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAB - version: 6 + tiles: AgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAwAHAAAAAAEABwAAAAABAAcAAAAAAAAHAAAAAAMABwAAAAADAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAMAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAQAHAAAAAAIABwAAAAACAAcAAAAAAwACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAABAAcAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAgACAAAAAAAABwAAAAACAAcAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAABAAcAAAAAAQAHAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAABAAcAAAAAAAAHAAAAAAMABwAAAAADAAcAAAAAAQAHAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAACAAMAAAAAAwADAAAAAAAAAwAAAAADAAIAAAAAAAAHAAAAAAIABwAAAAADAAcAAAAAAgAHAAAAAAAABwAAAAACAAcAAAAAAwAHAAAAAAEABwAAAAADAAcAAAAAAwAHAAAAAAMABwAAAAAAAAcAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAQACAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAIABwAAAAACAAcAAAAAAAAHAAAAAAMABwAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAABAAMAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAAAAgAAAAAAAAcAAAAAAwAHAAAAAAIABwAAAAACAAcAAAAAAwAHAAAAAAIABwAAAAABAAcAAAAAAwAHAAAAAAEABwAAAAABAAcAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAAAAAIAAAAAAAAHAAAAAAEABwAAAAADAAcAAAAAAAAHAAAAAAIABwAAAAABAAcAAAAAAwAHAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAgACAAAAAAAABwAAAAACAAcAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAQAHAAAAAAEABwAAAAABAAcAAAAAAwAHAAAAAAEABwAAAAADAB8AAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAEAAgAAAAAAAAcAAAAAAwAHAAAAAAIAAgAAAAAAAAcAAAAAAgAHAAAAAAIABwAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAACAAcAAAAAAgAfAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAACAAIAAAAAAAAHAAAAAAEABwAAAAADAAcAAAAAAAAHAAAAAAIABwAAAAADAAcAAAAAAwAHAAAAAAAABwAAAAABAAcAAAAAAQAHAAAAAAEAHwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAwACAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAMABwAAAAADAAcAAAAAAQAHAAAAAAEABwAAAAACAAcAAAAAAQAHAAAAAAMABwAAAAAAAB8AAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAIABwAAAAADAAcAAAAAAQAHAAAAAAEABwAAAAABAAcAAAAAAQACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAAAgAAAAAAAAcAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAwAUAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAABAAMAAAAAAgADAAAAAAMAAwAAAAAAAA== + version: 7 4,4: ind: 4,4 - tiles: AwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACFAAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAADAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAACAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAACgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAABCAAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAQAUAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAMAFAAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAgAHAAAAAAIABwAAAAAAAAcAAAAAAwACAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAIACAAAAAABAAgAAAAAAwACAAAAAAAACwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAwAHAAAAAAIABwAAAAACAAgAAAAAAQAIAAAAAAEACAAAAAABAAgAAAAAAwAIAAAAAAEAAgAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAACAAcAAAAAAQAHAAAAAAIABwAAAAADAAIAAAAAAAAIAAAAAAEACAAAAAABAAgAAAAAAgAIAAAAAAMACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAwAHAAAAAAMABwAAAAACAAIAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAAAIAAAAAAEACAAAAAACAAgAAAAAAgAIAAAAAAAACAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAAAAAgAAAAAAwAIAAAAAAMACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAACAAgAAAAAAwACAAAAAAAACAAAAAACAAgAAAAAAwAIAAAAAAEACAAAAAADAAgAAAAAAgAIAAAAAAEACAAAAAABAAgAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAACAAAAAABAAgAAAAAAAAIAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAACAAgAAAAAAwAIAAAAAAEACAAAAAAAAAgAAAAAAgAIAAAAAAEAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAoAAAAAAQAIAAAAAAAACAAAAAAAAAgAAAAAAwAIAAAAAAIACAAAAAAAAAgAAAAAAQAIAAAAAAMACAAAAAADAAgAAAAAAwAIAAAAAAMACAAAAAACAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAIAAAAAAIACAAAAAACAAgAAAAAAwACAAAAAAAACAAAAAAAAAgAAAAAAwAIAAAAAAEACAAAAAADAAgAAAAAAAAIAAAAAAMACAAAAAABAAgAAAAAAQACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAEACAAAAAAAAAgAAAAAAAAIAAAAAAIACAAAAAACAAgAAAAAAgAIAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAgADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAwACAAAAAAAACAAAAAABAAgAAAAAAwAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 4,5: ind: 4,5 - tiles: AgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAABAwAAAAAAAwAAAAABBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAADAwAAAAADBQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABBQAAAAABAwAAAAADAwAAAAADBQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACCAAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAADAgAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAABAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACAgAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAABAgAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABAgAAAAAAEQAAAAACEQAAAAACEQAAAAAAEAAAAAABEQAAAAAAEQAAAAAAEAAAAAACEQAAAAADEQAAAAAAEQAAAAADAgAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAAAAgAAAAAAEQAAAAADEQAAAAADEQAAAAACEAAAAAABEQAAAAABEQAAAAADEAAAAAACEQAAAAACEQAAAAABEQAAAAAA - version: 6 + tiles: AgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIABQAAAAACAAMAAAAAAAADAAAAAAEABQAAAAACAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAUAAAAAAgADAAAAAAMAAwAAAAACAAUAAAAAAQADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAgAFAAAAAAAAAwAAAAABAAMAAAAAAAAFAAAAAAEAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAADAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAMAAwAAAAACAAgAAAAAAwADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAwACAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAABAAAAAAAwACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAADABAAAAAAAgAQAAAAAAMAAgAAAAAAABAAAAAAAAAQAAAAAAIAEAAAAAACABAAAAAAAAAQAAAAAAIAEAAAAAADABAAAAAAAQAQAAAAAAIAEAAAAAAAABAAAAAAAwACAAAAAAAAEAAAAAAAABAAAAAAAQAQAAAAAAEAEAAAAAACAAIAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAQAQAAAAAAIAEAAAAAACABAAAAAAAQAQAAAAAAMAEAAAAAACABAAAAAAAwAQAAAAAAEAAgAAAAAAABAAAAAAAwAQAAAAAAIAEAAAAAABABAAAAAAAwACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAgAQAAAAAAMAEAAAAAADABAAAAAAAQAQAAAAAAMAEAAAAAACAAIAAAAAAAAQAAAAAAEAEAAAAAABABAAAAAAAwAQAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAEAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAADABAAAAAAAgAQAAAAAAAAEAAAAAACAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAAAQAAAAAAAAEQAAAAADABEAAAAAAwAQAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAEAAgAAAAAAABAAAAAAAwAQAAAAAAIAEAAAAAACABAAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAEAAAAAAAABEAAAAAAAARAAAAAAAAEAAAAAADABEAAAAAAAARAAAAAAEAEQAAAAABAA== + version: 7 4,6: ind: 4,6 - tiles: AgAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAACAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEQAAAAACEQAAAAAAEQAAAAAAEQAAAAABEQAAAAACEQAAAAABEAAAAAADEAAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAABEAAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAAAAgAAAAAAEQAAAAADEQAAAAACEQAAAAACEAAAAAABEQAAAAABEQAAAAABEAAAAAADEQAAAAACEQAAAAABEQAAAAABAgAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAABAgAAAAAAEQAAAAABEQAAAAABEQAAAAADEAAAAAACEQAAAAACEQAAAAACEAAAAAADEQAAAAABEQAAAAAAEQAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEQAAAAADAgAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAAAEQAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAACEQAAAAABAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAACwAAAAAACwAAAAACCwAAAAADCwAAAAAACwAAAAACCwAAAAAACwAAAAADCwAAAAABCwAAAAAACwAAAAABCwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AgAAAAAAABAAAAAAAQAQAAAAAAAAEAAAAAADABAAAAAAAgAQAAAAAAAAEAAAAAABABAAAAAAAAAQAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAMAEAAAAAADABAAAAAAAwAQAAAAAAMAEAAAAAACAAIAAAAAAAAQAAAAAAEAEAAAAAADABAAAAAAAwAQAAAAAAAAAgAAAAAAABAAAAAAAQAQAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAMAEAAAAAADABAAAAAAAgACAAAAAAAAEAAAAAACABAAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAgAQAAAAAAEAEAAAAAADABAAAAAAAQAQAAAAAAMAEAAAAAABABAAAAAAAAAQAAAAAAIAEAAAAAABABAAAAAAAAAQAAAAAAIAEAAAAAABABAAAAAAAAAQAAAAAAEAEAAAAAACABAAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAEAAAAAADABEAAAAAAgARAAAAAAIAEAAAAAADABEAAAAAAAARAAAAAAEAEQAAAAAAAAIAAAAAAAAQAAAAAAMAEAAAAAACABAAAAAAAQAQAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAACABAAAAAAAQARAAAAAAAAEQAAAAABABAAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAAEAAAAAACABAAAAAAAAAQAAAAAAIAEAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAACABAAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAMAEAAAAAABABAAAAAAAQARAAAAAAIAAgAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAgAQAAAAAAEAEAAAAAABABAAAAAAAwAQAAAAAAMAAgAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAwAQAAAAAAAAEQAAAAABAAIAAAAAAAAQAAAAAAAAEAAAAAACABAAAAAAAAAQAAAAAAMAEAAAAAADABAAAAAAAwAQAAAAAAMAEAAAAAABABAAAAAAAwACAAAAAAAAEAAAAAADABAAAAAAAgAQAAAAAAIAEAAAAAACABEAAAAAAAACAAAAAAAAEAAAAAACABAAAAAAAAAQAAAAAAMAEAAAAAADABAAAAAAAQAQAAAAAAMAEAAAAAAAABAAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAAAEAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAAAEAAAAAABABAAAAAAAgAQAAAAAAMAEAAAAAAAABAAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAQADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAwACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAACAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAABAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAIAAgAAAAAAAAsAAAAAAgALAAAAAAMACwAAAAABAAsAAAAAAwALAAAAAAIACwAAAAABAAsAAAAAAQALAAAAAAEACwAAAAADAAsAAAAAAAALAAAAAAEAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 4,7: ind: 4,7 - tiles: AwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAABQAAAAABBQAAAAACBQAAAAABAwAAAAAAAgAAAAAAAwAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAACAAMAAAAAAQADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAEAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAwACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAMAAgAAAAAAAAMAAAAAAwAQAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAMAEAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAABAAUAAAAAAgAFAAAAAAMABQAAAAAAAAMAAAAAAQACAAAAAAAAAwAAAAAAABAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAgACAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAEAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 4,8: ind: 4,8 - tiles: AgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 4,9: ind: 4,9 - tiles: BAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAAAJAAAAAADJAAAAAADJAAAAAABJAAAAAABJAAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABJAAAAAACAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: BAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAJAAAAAADACQAAAAAAAAkAAAAAAAAJAAAAAACACQAAAAAAgAkAAAAAAIAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAkAAAAAAIAJAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 5,0: ind: 5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 5,1: ind: 5,1 - tiles: AwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAFAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAC - version: 6 + tiles: AwAAAAABAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAgACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgAUAAAAAAAAAwAAAAADAAMAAAAAAQACAAAAAAAAAwAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAwACAAAAAAAAFAAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAACAAAAAAAAAwAAAAACAAEAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAADAAAAAAIAAwAAAAABABQAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAEAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAgAAAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAADAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAEAAwAAAAACAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAgADAAAAAAMAAgAAAAAAAAMAAAAAAQAAAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAIAAQAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAgACAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAAAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAA== + version: 7 5,10: ind: 5,10 - tiles: JAAAAAAAJAAAAAACJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAACAgAAAAAAJAAAAAAAAgAAAAAAJAAAAAACJAAAAAADAgAAAAAAAgAAAAAAJQAAAAAAJQAAAAADJQAAAAACJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAACJAAAAAADJAAAAAACAgAAAAAAJAAAAAAAAgAAAAAAJQAAAAAAJQAAAAADAgAAAAAAJQAAAAACJQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAADJQAAAAACAgAAAAAAJQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAJQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAJQAAAAACAgAAAAAAJQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABEwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAJgAAAAAAAgAAAAAAJgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA - version: 6 + tiles: JAAAAAABACQAAAAAAAAkAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACQAAAAAAwACAAAAAAAAJAAAAAABAAIAAAAAAAAkAAAAAAAAJAAAAAACAAIAAAAAAAACAAAAAAAAJQAAAAABACUAAAAAAgAlAAAAAAMAJQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAkAAAAAAAAJAAAAAADACQAAAAAAwACAAAAAAAAJAAAAAADAAIAAAAAAAAlAAAAAAAAJQAAAAADAAIAAAAAAAAlAAAAAAMAJQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACUAAAAAAwAlAAAAAAMAAgAAAAAAACUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAlAAAAAAAAAgAAAAAAAAIAAAAAAAAlAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAACUAAAAAAwAlAAAAAAMAAgAAAAAAACUAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAlAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAJgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAACYAAAAAAAACAAAAAAAAJgAAAAAAAAIAAAAAAAADAAAAAAEAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAAmAAAAAAAAJgAAAAAAAAIAAAAAAAAmAAAAAAAAAwAAAAACAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAA== + version: 7 5,2: ind: 5,2 - tiles: AAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAABCAAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAACCAAAAAADCAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAABwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAD - version: 6 + tiles: AAAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAMACAAAAAADAAgAAAAAAAAIAAAAAAEACAAAAAAAAAgAAAAAAQACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAADAAgAAAAAAwAIAAAAAAMACAAAAAACAAgAAAAAAQAIAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAEAAwAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAACAAgAAAAAAAAIAAAAAAEACAAAAAABAAMAAAAAAgADAAAAAAAAAwAAAAABAAMAAAAAAgADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAADAAIAAAAAAAAIAAAAAAMACAAAAAABAAgAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAACAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAACAAMAAAAAAQACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAEABwAAAAABAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAMAAwAAAAACAA== + version: 7 5,3: ind: 5,3 - tiles: BwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACBwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABBwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAABwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADBwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAABwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAABwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAA - version: 6 + tiles: BwAAAAADAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAACAAcAAAAAAQACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAACAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAgADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAAABwAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAIAAwAAAAACAAcAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAwAHAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAAAgAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAMABwAAAAADAAIAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAwACAAAAAAAABwAAAAADAAcAAAAAAAAHAAAAAAEABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAIAAgAAAAAAAAcAAAAAAAAHAAAAAAMABwAAAAAAAAcAAAAAAQAHAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAEAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAADAAIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAgACAAAAAAAABwAAAAAAAAcAAAAAAQAHAAAAAAEABwAAAAADAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAQACAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAACAAIAAAAAAAAHAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAACAAMAAAAAAwADAAAAAAEABwAAAAACAAIAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAEAAgAAAAAAAAcAAAAAAgACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAMAAgAAAAAAAA== + version: 7 5,4: ind: 5,4 - tiles: AwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAACwAAAAACCwAAAAADCwAAAAADCwAAAAACCwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAgAAAAAACwAAAAAACwAAAAABCwAAAAACCwAAAAADCwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAACCgAAAAACCgAAAAADCgAAAAADCAAAAAABCAAAAAADAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAADCAAAAAABCAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAACCAAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAgAAAAAABwAAAAACBwAAAAACCgAAAAAACgAAAAABCgAAAAAACgAAAAAACAAAAAABCgAAAAADCgAAAAACCgAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAADCAAAAAABCAAAAAADCAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADCAAAAAACCAAAAAABCgAAAAADCgAAAAACCgAAAAADCAAAAAADCAAAAAACAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAA - version: 6 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAAADAAAAAAMAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAgACAAAAAAAACwAAAAADAAsAAAAAAQALAAAAAAMACwAAAAAAAAsAAAAAAQACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAMAAgAAAAAAAAsAAAAAAAALAAAAAAIACwAAAAACAAsAAAAAAAALAAAAAAMAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAgADAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAIAAwAAAAADAAMAAAAAAgACAAAAAAAACAAAAAADAAgAAAAAAgAKAAAAAAIACgAAAAAAAAoAAAAAAgAIAAAAAAIACAAAAAABAAIAAAAAAAAIAAAAAAIACAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAwAIAAAAAAAACAAAAAABAAgAAAAAAwAIAAAAAAEACAAAAAACAAgAAAAAAwAIAAAAAAIAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAABwAAAAABAAcAAAAAAQAHAAAAAAIACAAAAAADAAgAAAAAAQAIAAAAAAIACAAAAAACAAgAAAAAAwAIAAAAAAAACAAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAQACAAAAAAAAAgAAAAAAAAcAAAAAAgAHAAAAAAAABwAAAAABAAgAAAAAAgAIAAAAAAMACAAAAAADAAgAAAAAAQAIAAAAAAEACAAAAAABAAgAAAAAAgACAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAACAAIAAAAAAAAHAAAAAAAABwAAAAAAAAoAAAAAAgAKAAAAAAEACgAAAAAAAAoAAAAAAQAIAAAAAAIACgAAAAACAAoAAAAAAQAKAAAAAAMAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAABAAIAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAAACAAAAAAAAAgAAAAAAQAIAAAAAAIACAAAAAAAAAgAAAAAAgAIAAAAAAAACAAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAQACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAMABwAAAAABAAgAAAAAAgAIAAAAAAEACAAAAAABAAgAAAAAAgAIAAAAAAIACAAAAAAAAAgAAAAAAQACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAADAAIAAAAAAAAIAAAAAAAACAAAAAACAAgAAAAAAQAIAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAIACAAAAAACAAgAAAAAAAAIAAAAAAEAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAwAIAAAAAAEACAAAAAACAAoAAAAAAQAKAAAAAAMACgAAAAACAAgAAAAAAwAIAAAAAAIAAgAAAAAAAAgAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 5,5: ind: 5,5 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAABAAIAAAAAAAADAAAAAAMAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAwAQAAAAAAMAAgAAAAAAAAgAAAAAAwAIAAAAAAIACAAAAAACAAgAAAAAAgACAAAAAAAACAAAAAAAAAgAAAAAAwAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAAAEAAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAAAAAgAAAAAAAAIAAAAAAMACAAAAAADAAgAAAAAAgAIAAAAAAAACAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAwAQAAAAAAAAEAAAAAAAABAAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAgAIAAAAAAEACAAAAAABAAIAAAAAAAAIAAAAAAIACAAAAAADAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAACABAAAAAAAAAQAAAAAAEAAgAAAAAAAAgAAAAAAgAIAAAAAAMACAAAAAADAAgAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAADABAAAAAAAAAQAAAAAAEAEAAAAAACAAgAAAAAAQAIAAAAAAIACAAAAAACAAgAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAwAQAAAAAAIAEAAAAAABABAAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 5,6: ind: 5,6 - tiles: EAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAABEAAAAAAAEAAAAAABEAAAAAABEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAACAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACFQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACFQAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAACAgAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABFQAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACFQAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAAAAwAAAAAAAwAAAAABAwAAAAABFQAAAAAAAwAAAAACFQAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABAgAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAACEAAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABFQAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAADAgAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: EAAAAAADABAAAAAAAAAQAAAAAAMAEAAAAAACABAAAAAAAwAQAAAAAAAAEAAAAAABABAAAAAAAgAQAAAAAAEAEAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAADAAIAAAAAAAAQAAAAAAAAEAAAAAABABAAAAAAAQAQAAAAAAMAAgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAACABAAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAADAAAAAAEAAwAAAAABABUAAAAAAAAQAAAAAAEAEAAAAAACABAAAAAAAwAQAAAAAAMAAgAAAAAAAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAMAAAAAAAAVAAAAAAAAAgAAAAAAABAAAAAAAwAQAAAAAAIAEAAAAAACAAIAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAACAAIAAAAAAAADAAAAAAIAFQAAAAAAAAIAAAAAAAAQAAAAAAIAEAAAAAACABAAAAAAAwACAAAAAAAAEAAAAAACABAAAAAAAQAQAAAAAAMAEAAAAAADABAAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAABABUAAAAAAAACAAAAAAAAEAAAAAABABAAAAAAAwAQAAAAAAAAAgAAAAAAABAAAAAAAgAQAAAAAAEAEAAAAAABABAAAAAAAwAQAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAMAFQAAAAAAAAMAAAAAAgAVAAAAAAAAEAAAAAACABAAAAAAAgAQAAAAAAMAEAAAAAADABAAAAAAAwAQAAAAAAMAEAAAAAADABAAAAAAAgAQAAAAAAEAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAADAAAAAAIAFQAAAAAAABAAAAAAAgAQAAAAAAAAEAAAAAADABAAAAAAAwACAAAAAAAAEAAAAAADABAAAAAAAgAQAAAAAAMAEAAAAAABABAAAAAAAwACAAAAAAAAAwAAAAADAAIAAAAAAAADAAAAAAMAAwAAAAACABUAAAAAAAAQAAAAAAMAEAAAAAACABAAAAAAAAAQAAAAAAAAAgAAAAAAABAAAAAAAwAQAAAAAAEAEAAAAAADABAAAAAAAgAQAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAMAAgAAAAAAAAMAAAAAAwADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAgACAAAAAAAAEAAAAAAAABAAAAAAAgAQAAAAAAAAEAAAAAABABAAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAgADAAAAAAEAEAAAAAACABAAAAAAAAAQAAAAAAEAEAAAAAADABAAAAAAAgAQAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAEAAwAAAAAAABAAAAAAAwAQAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAEAEAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAIAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAgAQAAAAAAEAEAAAAAACABAAAAAAAwAQAAAAAAEAEAAAAAACABAAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAEAAgAAAAAAABAAAAAAAwAQAAAAAAMAEAAAAAABABAAAAAAAwAQAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 5,7: ind: 5,7 - tiles: AwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAADCAAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABCAAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACCAAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADBQAAAAADBQAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAABBQAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAC - version: 6 + tiles: AwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAwAUAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAACAAIAAAAAAAAIAAAAAAIACAAAAAABAAgAAAAAAgAIAAAAAAIACAAAAAADAAMAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAMAFAAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAQAIAAAAAAEACAAAAAADAAgAAAAAAgAIAAAAAAAACAAAAAACAAgAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAAAABQAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAMAAgAAAAAAAAgAAAAAAQAIAAAAAAIACAAAAAABAAgAAAAAAwAIAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAABAAgAAAAAAQAIAAAAAAAACAAAAAADAAgAAAAAAgAIAAAAAAMACAAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAMACAAAAAACAAIAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAwADAAAAAAAAAwAAAAABAAgAAAAAAgACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAAAAwAAAAACAAMAAAAAAwAIAAAAAAIAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAMAAwAAAAADAAMAAAAAAwADAAAAAAIACAAAAAABAAIAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAMAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAEABQAAAAAAAAUAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAgACAAAAAAAAAwAAAAABAAMAAAAAAgADAAAAAAIAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgAFAAAAAAMABQAAAAADAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAgAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAADAA== + version: 7 5,8: ind: 5,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAFAAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAABQAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAUAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAAAAA== + version: 7 5,9: ind: 5,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAAAJAAAAAADAgAAAAAAJAAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABAgAAAAAAJAAAAAAAJAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAkAAAAAAMAJAAAAAABAAIAAAAAAAAkAAAAAAMAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAJAAAAAABAAIAAAAAAAAkAAAAAAAAJAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAA== + version: 7 6,0: ind: 6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAA== + version: 7 6,1: ind: 6,1 - tiles: AgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAACAAAAAADCAAAAAADAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB - version: 6 + tiles: AgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAABAAIAAAAAAAADAAAAAAIAAgAAAAAAAAgAAAAAAgACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAMAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAAIAAAAAAEAAgAAAAAAAAgAAAAAAAADAAAAAAIAAwAAAAABAAIAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAwACAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAwACAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAADAAIAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAEAAgAAAAAAAAgAAAAAAQAIAAAAAAEAAgAAAAAAAAMAAAAAAQACAAAAAAAAAwAAAAABAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAADAAIAAAAAAAAIAAAAAAAACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAAAAAMAAAAAAwAIAAAAAAMACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAQAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAACAAAAAAAAAgAAAAAAgACAAAAAAAAAgAAAAAAAAgAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAACAAAAAABAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAEAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwACAAAAAAAAAwAAAAADAAIAAAAAAAAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAAAAAIAAAAAAAAUAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAACAAIAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAFAAAAAAAAAMAAAAAAwADAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAA== + version: 7 6,10: ind: 6,10 - tiles: CAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAAACAAAAAACAgAAAAAAAwAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCgAAAAABCgAAAAABCgAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAACBQAAAAACBQAAAAABBQAAAAABBQAAAAAABQAAAAAABQAAAAACBQAAAAABCAAAAAADCAAAAAAACgAAAAABCQAAAAAACgAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAADCgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBwAAAAACAgAAAAAAFgAAAAAEBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAABBwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAEwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAGBwAAAAABBwAAAAAAFgAAAAACBwAAAAABBwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: CAAAAAADAAgAAAAAAwAIAAAAAAMACAAAAAADAAgAAAAAAQAIAAAAAAMACAAAAAADAAIAAAAAAAADAAAAAAMABQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAMACgAAAAACAAoAAAAAAgAKAAAAAAEACAAAAAADAAgAAAAAAwACAAAAAAAAAwAAAAACAAUAAAAAAAAFAAAAAAAABQAAAAABAAUAAAAAAAAFAAAAAAIABQAAAAAAAAUAAAAAAwAIAAAAAAIACAAAAAABAAoAAAAAAgAJAAAAAAAACgAAAAACAAgAAAAAAAAIAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAAAAgAAAAAAAAIAAAAAAAAKAAAAAAIACgAAAAADAAoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFgAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAcAAAAAAAACAAAAAAAAFgAAAAADAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAIAAgAAAAAAAAIAAAAAAAAHAAAAAAIABwAAAAACAAIAAAAAAAADAAAAAAAAAgAAAAAAABMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAABAAIAAAAAAAACAAAAAAAABwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFgAAAAACAAcAAAAAAwAHAAAAAAEAFgAAAAABAAcAAAAAAQAHAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAAAAgAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 6,2: ind: 6,2 - tiles: AwAAAAABAwAAAAABAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAABAwAAAAAAAwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AwAAAAADAAMAAAAAAQACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAABAAIAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAAACAAAAAAAAAgAAAAAAwACAAAAAAAAAwAAAAADAAMAAAAAAgACAAAAAAAABwAAAAADAAcAAAAAAgAHAAAAAAIABwAAAAAAAAcAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAABAAgAAAAAAAAIAAAAAAIACAAAAAADAAMAAAAAAAADAAAAAAEABwAAAAACAAcAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAwAIAAAAAAAACAAAAAABAAIAAAAAAAADAAAAAAIAAwAAAAABAAIAAAAAAAAHAAAAAAIABwAAAAACAAcAAAAAAQAHAAAAAAMABwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQACAAAAAAAACAAAAAADAAgAAAAAAwACAAAAAAAAAwAAAAAAAAMAAAAAAwACAAAAAAAACAAAAAAAAAgAAAAAAgAIAAAAAAMACAAAAAABAAgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAAHAAAAAAEABwAAAAABAAcAAAAAAAAHAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAIABwAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAIAAgAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAACAAcAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAQAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAgAHAAAAAAEABwAAAAADAAcAAAAAAgAHAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 6,3: ind: 6,3 - tiles: AwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACBwAAAAADBwAAAAACBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAABwAAAAADBwAAAAAAFgAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAABBwAAAAACAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAABGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAABwAAAAABGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAADBwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAACAwAAAAACAwAAAAAD - version: 6 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAACAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAgAHAAAAAAIABwAAAAADAAcAAAAAAQAHAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAgAUAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAMAFAAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAIAAwAAAAABABQAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAAAAgAAAAAAAAcAAAAAAQAHAAAAAAEAFgAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAXAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAIAAAAAAAAYAAAAAAAAGQAAAAAAABkAAAAAAAAZAAAAAAAAGAAAAAAAAAIAAAAAAAAHAAAAAAMABwAAAAAAAAIAAAAAAAACAAAAAAAAFwAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABcAAAAAAAACAAAAAAAAGAAAAAAAABkAAAAAAAAZAAAAAAAAGQAAAAAAABgAAAAAAAACAAAAAAAABwAAAAABABoAAAAAAAACAAAAAAAAAgAAAAAAABcAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAXAAAAAAAAAgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAAAcAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAMABwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAXAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAABAAcAAAAAAQAHAAAAAAIABwAAAAACAAcAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAEABwAAAAAAAAcAAAAAAgAHAAAAAAIABwAAAAADAAcAAAAAAgAHAAAAAAAABwAAAAADAAMAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAACAAcAAAAAAgAHAAAAAAEABwAAAAABAAcAAAAAAQAHAAAAAAEABwAAAAACAAcAAAAAAAADAAAAAAIAAwAAAAAAAA== + version: 7 6,4: ind: 6,4 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABFAAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAD - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAACAAcAAAAAAwAHAAAAAAMABwAAAAACAAcAAAAAAAAHAAAAAAEABwAAAAABAAcAAAAAAwADAAAAAAEAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAACAAcAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAwAHAAAAAAEABwAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAACAAcAAAAAAgAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAABwAAAAABAAcAAAAAAgAHAAAAAAMABwAAAAACAAcAAAAAAwAHAAAAAAEABwAAAAABAAcAAAAAAwAHAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAgAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAwAHAAAAAAEABwAAAAAAAAcAAAAAAQAHAAAAAAMABwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAIAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAAABwAAAAADAAcAAAAAAgAHAAAAAAEABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAADAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAMAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAIAFAAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAADABQAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAAAUAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAgADAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAADAA== + version: 7 6,5: ind: 6,5 - tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAgAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAABAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAACwAAAAABBwAAAAAABwAAAAABBwAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAACwAAAAADCwAAAAACBwAAAAACBwAAAAADBwAAAAADAgAAAAAAAwAAAAABFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACwAAAAADCwAAAAACBwAAAAABBwAAAAADBwAAAAACAwAAAAAAAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAACwAAAAADCwAAAAACBwAAAAABBwAAAAAABwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACwAAAAADCwAAAAABBwAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAMAAwAAAAABAAIAAAAAAAAbAAAAAAMAGwAAAAACABsAAAAAAAAbAAAAAAMAGwAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAABAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAAAAAMAAAAAAQACAAAAAAAAGwAAAAADABsAAAAAAwAbAAAAAAMAGwAAAAADABsAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAQACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAIAAgAAAAAAABsAAAAAAwAbAAAAAAAAGwAAAAACABsAAAAAAgAbAAAAAAEAAgAAAAAAAAMAAAAAAgADAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAABAAIAAAAAAAAbAAAAAAIAGwAAAAACABsAAAAAAQAbAAAAAAAAGwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAAAGwAAAAACABsAAAAAAAAbAAAAAAMAGwAAAAADABsAAAAAAQACAAAAAAAAAwAAAAACAAMAAAAAAQACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAABAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAgACAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAwADAAAAAAEAAwAAAAABAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAQACAAAAAAAAAgAAAAAAAAsAAAAAAwAHAAAAAAEABwAAAAAAAAcAAAAAAwACAAAAAAAAAwAAAAACABUAAAAAAAAVAAAAAAAAFQAAAAAAAAMAAAAAAgACAAAAAAAAAwAAAAABAAMAAAAAAgADAAAAAAIAAgAAAAAAAAsAAAAAAwALAAAAAAEABwAAAAABAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAMAAAAAAwAVAAAAAAAAFQAAAAAAABUAAAAAAAADAAAAAAMAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAALAAAAAAEACwAAAAACAAcAAAAAAQAHAAAAAAEABwAAAAAAAAMAAAAAAQADAAAAAAEAFQAAAAAAABUAAAAAAAAVAAAAAAAAAwAAAAACAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAQACAAAAAAAACwAAAAABAAsAAAAAAQAHAAAAAAAABwAAAAACAAcAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAACAAMAAAAAAgACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAIAAgAAAAAAAAsAAAAAAAALAAAAAAEABwAAAAAAAAcAAAAAAQAHAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAMAAgAAAAAAAA== + version: 7 6,6: ind: 6,6 - tiles: AwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAADAwAAAAACAwAAAAAADwAAAAACDwAAAAADDwAAAAADDwAAAAACDwAAAAACDwAAAAACDwAAAAACDwAAAAABCwAAAAADCwAAAAACCwAAAAAACwAAAAACFQAAAAAAAwAAAAACAwAAAAABAwAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAAACwAAAAADCwAAAAABCwAAAAAACwAAAAABFQAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAACwAAAAADCwAAAAAACwAAAAAACwAAAAADFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAAACwAAAAACCwAAAAACFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAABAgAAAAAACwAAAAAACwAAAAACCwAAAAAACwAAAAABFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAACBwAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAADAwAAAAADAgAAAAAAAwAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAAAAwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAADAwAAAAABAgAAAAAAAwAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABAwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAwAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAACAwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAABAgAAAAAAAwAAAAAAAwAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAAwAAAAAAAwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAwAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAB - version: 6 + tiles: AwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAAAAAMAAAAAAQADAAAAAAIAAgAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAAAAwAAAAABABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAIADwAAAAAAAA8AAAAAAQAPAAAAAAIADwAAAAABAA8AAAAAAQAPAAAAAAAADwAAAAADAA8AAAAAAQALAAAAAAIACwAAAAACAAsAAAAAAwALAAAAAAMAFQAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAADAA8AAAAAAgAPAAAAAAMADwAAAAACAA8AAAAAAwAPAAAAAAMADwAAAAACAA8AAAAAAQAPAAAAAAEACwAAAAACAAsAAAAAAwALAAAAAAMACwAAAAACABUAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAADAAsAAAAAAwALAAAAAAEACwAAAAAAAAsAAAAAAAAVAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAABAAsAAAAAAAALAAAAAAAAFQAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgACAAAAAAAABwAAAAABAAcAAAAAAQAHAAAAAAMABwAAAAADAAcAAAAAAQACAAAAAAAACwAAAAADAAsAAAAAAgALAAAAAAEACwAAAAACABUAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAMAAgAAAAAAAAcAAAAAAwAHAAAAAAMABwAAAAABAAcAAAAAAgAHAAAAAAAAAgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAAwAAAAACAAIAAAAAAAADAAAAAAIAAwAAAAACAAIAAAAAAAAHAAAAAAAABwAAAAADAAcAAAAAAQAHAAAAAAMABwAAAAACAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAgACAAAAAAAAAwAAAAADAAMAAAAAAQACAAAAAAAABwAAAAABAAcAAAAAAQAHAAAAAAAABwAAAAABAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAEAAgAAAAAAAAcAAAAAAwAHAAAAAAMABwAAAAADAAcAAAAAAgAHAAAAAAEABwAAAAACAAcAAAAAAQADAAAAAAAAAgAAAAAAAAMAAAAAAAAcAAAAAAMAHAAAAAACABwAAAAAAAAcAAAAAAIAAwAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAABAAcAAAAAAQAHAAAAAAAABwAAAAACAAcAAAAAAgAHAAAAAAEAAwAAAAADAAIAAAAAAAADAAAAAAEAHAAAAAAAABwAAAAAAgAcAAAAAAIAHAAAAAACAAMAAAAAAQAHAAAAAAMABwAAAAACAAcAAAAAAQAHAAAAAAMABwAAAAACAAcAAAAAAQAHAAAAAAIABwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAABwAAAAAAwAcAAAAAAIAHAAAAAACABwAAAAAAQADAAAAAAIABwAAAAAAAAcAAAAAAQAHAAAAAAEABwAAAAAAAAcAAAAAAgAHAAAAAAMABwAAAAADAAcAAAAAAgACAAAAAAAAAwAAAAAAAAMAAAAAAwAcAAAAAAMAHAAAAAACABwAAAAAAAAcAAAAAAIAAwAAAAADAAMAAAAAAwAHAAAAAAIABwAAAAACAAcAAAAAAwAHAAAAAAEABwAAAAACAAcAAAAAAQAHAAAAAAEAAgAAAAAAAAIAAAAAAAADAAAAAAIAHAAAAAACABwAAAAAAgAcAAAAAAAAHAAAAAACABwAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAABAA== + version: 7 6,7: ind: 6,7 - tiles: CAAAAAADAgAAAAAAAwAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADCAAAAAACAgAAAAAAAwAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAADHAAAAAABHAAAAAAACAAAAAADAgAAAAAAAwAAAAADAwAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAACHAAAAAACCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAACwAAAAAACwAAAAACCwAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACBQAAAAAAAwAAAAACBQAAAAADBQAAAAADBQAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: CAAAAAAAAAIAAAAAAAADAAAAAAEAHAAAAAACABwAAAAAAQAcAAAAAAMAHAAAAAABABwAAAAAAgAcAAAAAAAAHAAAAAACABwAAAAAAQAcAAAAAAIAHAAAAAACABwAAAAAAAAcAAAAAAEAHAAAAAACAAgAAAAAAQACAAAAAAAAAwAAAAABABwAAAAAAAAcAAAAAAIAHAAAAAACABwAAAAAAAAcAAAAAAAAHAAAAAACABwAAAAAAAAcAAAAAAIAHAAAAAABABwAAAAAAwAcAAAAAAAAHAAAAAACABwAAAAAAQAIAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAHAAAAAADABwAAAAAAgAcAAAAAAEAHAAAAAABABwAAAAAAwAcAAAAAAMAHAAAAAAAABwAAAAAAwAcAAAAAAAAHAAAAAAAABwAAAAAAQAcAAAAAAMACAAAAAACAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAFAAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAACABQAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAEAAwAAAAACAAMAAAAAAQAUAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAMAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAACAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAMAAgAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAADAAIAAAAAAAALAAAAAAIACwAAAAACAAsAAAAAAQACAAAAAAAAAwAAAAAAAAUAAAAAAAADAAAAAAIAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAQACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAEAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAAAAAMAAAAAAgADAAAAAAEABQAAAAADAAMAAAAAAwAFAAAAAAIABQAAAAABAAUAAAAAAgADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAACAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 6,8: ind: 6,8 - tiles: AwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAABCgAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAABCgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA - version: 6 + tiles: AwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAADAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAACgAAAAADAAoAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAEAAwAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAMABQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAgACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAMAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAKAAAAAAMACgAAAAADAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 6,9: ind: 6,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAACgAAAAAACgAAAAABCgAAAAADAwAAAAADAwAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAACgAAAAADCgAAAAADCgAAAAAAAwAAAAACAwAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAADCgAAAAACCgAAAAABCgAAAAAAAwAAAAADBQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAABAwAAAAADCgAAAAADCgAAAAAACgAAAAADAwAAAAADBQAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAABCgAAAAACCgAAAAABCgAAAAACAwAAAAAABQAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAAC - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAgAKAAAAAAIACgAAAAABAAoAAAAAAgADAAAAAAEAAwAAAAADAAIAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAMACgAAAAADAAoAAAAAAQAKAAAAAAIAAwAAAAAAAAMAAAAAAQACAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAMAAAAAAAAFAAAAAAMAAwAAAAAAAAoAAAAAAgAKAAAAAAIACgAAAAAAAAMAAAAAAAAFAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAADAAAAAAIABQAAAAAAAAMAAAAAAAAKAAAAAAMACgAAAAAAAAoAAAAAAgADAAAAAAMABQAAAAACAAIAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAwAAAAABAAUAAAAAAgADAAAAAAIACgAAAAACAAoAAAAAAQAKAAAAAAIAAwAAAAABAAUAAAAAAgACAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAMAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAABAAgAAAAAAAAIAAAAAAIACAAAAAAAAAgAAAAAAgAIAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAwADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAMACAAAAAAAAAgAAAAAAwAIAAAAAAMACAAAAAADAAgAAAAAAwAIAAAAAAMACAAAAAADAAIAAAAAAAADAAAAAAIABQAAAAACAAUAAAAAAwAFAAAAAAEABQAAAAABAAUAAAAAAwAFAAAAAAMABQAAAAADAA== + version: 7 7,1: ind: 7,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAQADAAAAAAIAAgAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAAMAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAEAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAQADAAAAAAMAAgAAAAAAAAMAAAAAAwACAAAAAAAAAwAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAIAAgAAAAAAAAMAAAAAAwADAAAAAAIAAgAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAACAAIAAAAAAAADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAwACAAAAAAAAAwAAAAACAAIAAAAAAAAAAAAAAAAAAQAAAAAAAA== + version: 7 7,10: ind: 7,10 - tiles: BQAAAAABAwAAAAAAAgAAAAAACAAAAAAACgAAAAAACQAAAAAACgAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABQAAAAABAwAAAAAAAgAAAAAACAAAAAACCgAAAAABCgAAAAADCgAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAACHAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAFgAAAAAEBwAAAAACAgAAAAAABwAAAAAAAgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAAgAAAAAAHAAAAAABHAAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAACAgAAAAAAFgAAAAACFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAACAgAAAAAAHAAAAAABAgAAAAAAAAAAAAAABwAAAAABAgAAAAAABwAAAAADBwAAAAAAFAAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADAgAAAAAAAgAAAAAAHAAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAFgAAAAAFFgAAAAAABwAAAAAAFAAAAAAAHAAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAHAAAAAACAgAAAAAAAAAAAAAABwAAAAACFgAAAAACBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: BQAAAAAAAAMAAAAAAwACAAAAAAAACAAAAAABAAoAAAAAAgAJAAAAAAAACgAAAAADAAgAAAAAAwAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAUAAAAAAAADAAAAAAEAAgAAAAAAAAgAAAAAAwAKAAAAAAMACgAAAAACAAoAAAAAAQAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAACAAIAAAAAAAAIAAAAAAEACAAAAAACAAgAAAAAAAAIAAAAAAMACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABABwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAABYAAAAABgAHAAAAAAAAAgAAAAAAAAcAAAAAAAACAAAAAAAAHAAAAAACABwAAAAAAgAcAAAAAAIAHAAAAAADAAIAAAAAAAAcAAAAAAAAHAAAAAAAAAIAAAAAAAAcAAAAAAIAAgAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAAAWAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAgACAAAAAAAAHAAAAAACAAIAAAAAAAAAAAAAAAAABwAAAAACAAIAAAAAAAAHAAAAAAAABwAAAAADABQAAAAAAAACAAAAAAAAHAAAAAACABwAAAAAAgAcAAAAAAAAHAAAAAABAAIAAAAAAAACAAAAAAAAHAAAAAADAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAWAAAAAAAAFgAAAAAGAAcAAAAAAAAUAAAAAAAAHAAAAAABAAIAAAAAAAAcAAAAAAIAAgAAAAAAAAIAAAAAAAAcAAAAAAIAHAAAAAADAAIAAAAAAAAcAAAAAAEAAgAAAAAAAAAAAAAAAAAHAAAAAAEAFgAAAAAAAAcAAAAAAQAHAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 7,2: ind: 7,2 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAADEAAAAAADAgAAAAAAAwAAAAABBQAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAgACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAgAAAAAAAEAAAAAAAABAAAAAAAAAAgAAAAAAAEAAAAAAAABAAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAIAAAAAAAACAAAAAAAAHQAAAAAAAB0AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAQAAAAAAAAAIAAAAAAABAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAAdAAAAAAAAAgAAAAAAAB0AAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAgADAAAAAAAAAgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAIAAAAAAAACAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAIAAAAAAAACAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAAAAgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAMABwAAAAABAAcAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAABAAcAAAAAAQAHAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAIAAgAAAAAAABAAAAAAAAAQAAAAAAIAEAAAAAAAABAAAAAAAwAQAAAAAAEAEAAAAAABABAAAAAAAgAQAAAAAAMAAgAAAAAAAAcAAAAAAwAHAAAAAAEABwAAAAABAAMAAAAAAAADAAAAAAIAAwAAAAACAA== + version: 7 7,3: ind: 7,3 - tiles: AgAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAACEAAAAAACAgAAAAAAAwAAAAADBQAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAADEAAAAAADAgAAAAAAAwAAAAACBQAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAADEAAAAAABAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAGgAAAAAAGgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABGgAAAAAAGgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADBwAAAAAABwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAA - version: 6 + tiles: AgAAAAAAABAAAAAAAAAQAAAAAAIAEAAAAAADABAAAAAAAAAQAAAAAAIAEAAAAAACABAAAAAAAAAQAAAAAAAAAgAAAAAAAAcAAAAAAgAHAAAAAAIABwAAAAACAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAEAAAAAAAABAAAAAAAQAQAAAAAAMAEAAAAAAAABAAAAAAAgAQAAAAAAAAEAAAAAACAAIAAAAAAAAHAAAAAAMABwAAAAAAAAcAAAAAAwADAAAAAAMAIQAAAAAAACEAAAAAAAACAAAAAAAAEAAAAAADABAAAAAAAAAQAAAAAAIAEAAAAAABABAAAAAAAwAQAAAAAAAAEAAAAAACABAAAAAAAQAQAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAAAACEAAAAAAQAhAAAAAAIAAgAAAAAAABAAAAAAAwAQAAAAAAEAEAAAAAACABAAAAAAAgAQAAAAAAMAEAAAAAACABAAAAAAAgAQAAAAAAMAAgAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAABACEAAAAAAQAhAAAAAAEAIQAAAAACAAIAAAAAAAACAAAAAAAAEAAAAAACAAIAAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAQAhAAAAAAEAIQAAAAADACEAAAAAAwADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAACAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAgACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAEABwAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAEAAgAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAADABoAAAAAAAAaAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAIAAwAAAAABAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAQAaAAAAAAAAGgAAAAAAAAcAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAACAAIAAAAAAAADAAAAAAEABwAAAAABAAcAAAAAAQAHAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAEAAgAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAAAAAMAAAAAAwACAAAAAAAAAwAAAAAAAAcAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAMAAgAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAAAAwAAAAABAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAEAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAABAA== + version: 7 7,4: ind: 7,4 - tiles: AwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADCAAAAAADCAAAAAACCAAAAAADCAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABFAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADFAAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAD - version: 6 + tiles: AwAAAAACAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAIAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAADAAMAAAAAAgACAAAAAAAAAwAAAAADAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAABAAIAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAADAAMAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAABAAIAAAAAAAADAAAAAAMAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAIAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAAAAAMAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAACAAIAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAwADAAAAAAMAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAwAIAAAAAAIACAAAAAAAAAgAAAAAAAAIAAAAAAAAAwAAAAACAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAEAAgAAAAAAAAgAAAAAAAAIAAAAAAEACAAAAAAAAAMAAAAAAQADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAABAAgAAAAAAwAIAAAAAAEACAAAAAABAAgAAAAAAgADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAgAIAAAAAAMACAAAAAABAAgAAAAAAQAIAAAAAAAAAwAAAAADAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAACAAMAAAAAAgADAAAAAAIACAAAAAABAAgAAAAAAAAIAAAAAAAACAAAAAACAAMAAAAAAgADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAADAAIAAAAAAAAIAAAAAAEACAAAAAADAAgAAAAAAQADAAAAAAIAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAAAABQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAQAUAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAQAUAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAEAFAAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAQADAAAAAAIAFAAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAADABQAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAAAEAAAAAACAAIAAAAAAAACAAAAAAAAAwAAAAACAA== + version: 7 7,5: ind: 7,5 - tiles: AwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAEAAAAAACEQAAAAADEQAAAAADEQAAAAABEQAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAEAAAAAAAEQAAAAABEQAAAAADEQAAAAAAEQAAAAACEAAAAAADEAAAAAADEAAAAAADEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAEAAAAAAAEQAAAAAAEQAAAAABEQAAAAABEQAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAEAAAAAADEQAAAAABEQAAAAABEQAAAAADEQAAAAACEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAABEQAAAAAAEQAAAAABEQAAAAACEQAAAAADEAAAAAABEAAAAAAAAgAAAAAAEAAAAAACEAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAEAAAAAADEAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACCwAAAAABCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACCwAAAAADCwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAABCwAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAADCwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAACCwAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAC - version: 6 + tiles: AwAAAAACAAMAAAAAAwADAAAAAAEAAgAAAAAAABAAAAAAAwAQAAAAAAIAEAAAAAABABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAQAQAAAAAAAAEAAAAAACABAAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAADAAIAAAAAAAAQAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAADABAAAAAAAAAQAAAAAAIAEAAAAAABABAAAAAAAgAQAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwACAAAAAAAAEAAAAAACABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAAAQAAAAAAEAEAAAAAABABAAAAAAAgAQAAAAAAMAEAAAAAACAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAIAAgAAAAAAABAAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAMAEAAAAAABABAAAAAAAQAQAAAAAAIAEAAAAAADABAAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAACAAIAAAAAAAAQAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAADABAAAAAAAgAQAAAAAAIAAgAAAAAAAAIAAAAAAAAQAAAAAAMAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAwACAAAAAAAAEAAAAAADABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAwAQAAAAAAIAEAAAAAAAAAIAAAAAAAAQAAAAAAMAEAAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAMAAgAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAABABAAAAAAAQAQAAAAAAAAEAAAAAABABAAAAAAAQACAAAAAAAAEAAAAAAAABAAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAA/AAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAsAAAAAAQALAAAAAAMAAgAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwALAAAAAAAACwAAAAADAAIAAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMACwAAAAACAAsAAAAAAwACAAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAsAAAAAAgALAAAAAAIAAgAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAALAAAAAAEACwAAAAADAAIAAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAA/AAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAA== + version: 7 7,6: ind: 7,6 - tiles: AwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAADwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACDwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABBwAAAAACAwAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAABAwAAAAACAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAABwAAAAABAwAAAAADHAAAAAAAHAAAAAACHAAAAAADHAAAAAADAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACBwAAAAAAAwAAAAACHAAAAAADHAAAAAADHAAAAAACHAAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABAwAAAAACAwAAAAADBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAAAAgAAAAAAAwAAAAABAwAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADAwAAAAABAgAAAAAABwAAAAADPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAAAAgAAAAAAAwAAAAAD - version: 6 + tiles: AwAAAAACAAMAAAAAAgACAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAMAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAACAA8AAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAEAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwAPAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAgACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAADAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAMAAgAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAABAAIAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAADAAIAAAAAAAADAAAAAAIAAwAAAAABAAIAAAAAAAADAAAAAAMAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAEAAAAAAAABAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAACAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAADAAMAAAAAAgACAAAAAAAAQQAAAAAAAEEAAAAAAABBAAAAAAAAQQAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAwAHAAAAAAIAAwAAAAAAABwAAAAAAwAcAAAAAAEAHAAAAAAAABwAAAAAAwADAAAAAAIAAgAAAAAAAEEAAAAAAABBAAAAAAAAQQAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAACAAIAAAAAAAADAAAAAAAABwAAAAADAAMAAAAAAQAcAAAAAAEAHAAAAAABABwAAAAAAwAcAAAAAAEAAwAAAAACAAIAAAAAAABBAAAAAAAAQQAAAAAAAEEAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAgACAAAAAAAAAwAAAAABAAcAAAAAAwADAAAAAAIAHAAAAAACABwAAAAAAgAcAAAAAAAAHAAAAAABAAMAAAAAAQACAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAACAAMAAAAAAgADAAAAAAMAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAAAABwAAAAAAwAcAAAAAAIAHAAAAAABABwAAAAAAwADAAAAAAIAAwAAAAACAAcAAAAAAQAHAAAAAAEABwAAAAADAAcAAAAAAgAHAAAAAAIABwAAAAABAAIAAAAAAAADAAAAAAMAAwAAAAACABwAAAAAAwAcAAAAAAMAHAAAAAAAABwAAAAAAgAcAAAAAAMAAwAAAAACAAIAAAAAAAAHAAAAAAEAPgAAAAAAAD4AAAAAAAA9AAAAAAAAPQAAAAAAAAcAAAAAAwACAAAAAAAAAwAAAAAAAA== + version: 7 7,7: ind: 7,7 - tiles: HAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACAwAAAAACAgAAAAAABwAAAAACPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACFAAAAAAAAwAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACAwAAAAABAgAAAAAABwAAAAABPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAABFAAAAAAAAwAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACFAAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABAgAAAAAAAwAAAAADFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADBQAAAAABBQAAAAACBQAAAAACAwAAAAABAwAAAAACAwAAAAADBQAAAAAABQAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABBQAAAAADBQAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADBQAAAAAABQAAAAABBQAAAAABAwAAAAACBQAAAAADBQAAAAACBQAAAAADAwAAAAAAAgAAAAAAAwAAAAAABQAAAAACBQAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABBQAAAAAABQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABBQAAAAADBQAAAAAC - version: 6 + tiles: HAAAAAADABwAAAAAAQAcAAAAAAEAHAAAAAAAABwAAAAAAwAcAAAAAAAAAwAAAAAAAAIAAAAAAAAHAAAAAAAAPgAAAAAAAD4AAAAAAAA9AAAAAAAAPQAAAAAAAAcAAAAAAgAUAAAAAAAAAwAAAAADABwAAAAAAAAcAAAAAAMAHAAAAAAAABwAAAAAAAAcAAAAAAIAHAAAAAAAAAMAAAAAAAACAAAAAAAABwAAAAABAD4AAAAAAAA+AAAAAAAAPQAAAAAAAD0AAAAAAAAHAAAAAAIAFAAAAAAAAAMAAAAAAwAcAAAAAAIAHAAAAAACABwAAAAAAgAcAAAAAAEAHAAAAAABAAMAAAAAAgADAAAAAAIAAgAAAAAAAAcAAAAAAwAHAAAAAAEABwAAAAAAAAcAAAAAAwAHAAAAAAMABwAAAAAAABQAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAIAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAADAAcAAAAAAgACAAAAAAAAAwAAAAADABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAMAFAAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAABABQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAQAUAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAMAAwAAAAACAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAwACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAQADAAAAAAEABQAAAAADAAUAAAAAAwAFAAAAAAEAAwAAAAADAAMAAAAAAwADAAAAAAEABQAAAAADAAUAAAAAAgADAAAAAAEAAwAAAAACAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwACAAAAAAAAAwAAAAADAAUAAAAAAQAFAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAEAAwAAAAADAAUAAAAAAQAFAAAAAAAABQAAAAAAAAMAAAAAAQAFAAAAAAMABQAAAAACAAUAAAAAAgADAAAAAAAAAgAAAAAAAAMAAAAAAwAFAAAAAAIABQAAAAABAAMAAAAAAQADAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAACAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAwAAAAAAAAUAAAAAAQAFAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAMAAgAAAAAAAAMAAAAAAwAFAAAAAAMABQAAAAADAA== + version: 7 7,8: ind: 7,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACBQAAAAADBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAACBQAAAAABBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAABQAAAAAAAwAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAABQAAAAAAAwAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADBQAAAAAAAwAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAACBQAAAAADBQAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAABCgAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAAAAAMAAAAAAQAFAAAAAAMABQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAABAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAgABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAAAAAIAAAAAAAADAAAAAAEABQAAAAACAAUAAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAKAAAAAAIACgAAAAACAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAwACAAAAAAAAAwAAAAABAAUAAAAAAQADAAAAAAIAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAEAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAADAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAABAAIAAAAAAAADAAAAAAEABQAAAAACAAMAAAAAAgABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAFAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAAAAAUAAAAAAgADAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAADAAMAAAAAAQACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAAAAgAAAAAAAAMAAAAAAgAFAAAAAAEAAwAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAUAAAAAAQADAAAAAAEAAwAAAAACAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAADAAMAAAAAAQABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAQACAAAAAAAAAwAAAAABAAUAAAAAAQAFAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAoAAAAAAQAKAAAAAAEAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAgACAAAAAAAACAAAAAACAAgAAAAAAQAIAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAEAAgAAAAAAAAgAAAAAAwAIAAAAAAAACAAAAAABAA== + version: 7 7,9: ind: 7,9 - tiles: AQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABBQAAAAADBQAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABBQAAAAADBQAAAAACBQAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADAwAAAAACAgAAAAAACAAAAAAACgAAAAACCgAAAAADCgAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA - version: 6 + tiles: AQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAEACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAACAAIAAAAAAAAIAAAAAAIACAAAAAABAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAwACAAAAAAAACAAAAAADAAgAAAAAAwAIAAAAAAIAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAUAAAAAAgAFAAAAAAMABQAAAAABAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAQACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAACAAIAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAgACAAAAAAAAAwAAAAADAAUAAAAAAQAFAAAAAAMABQAAAAADAAMAAAAAAQADAAAAAAIAAgAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAADAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAABAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAQADAAAAAAMAAgAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAMAAwAAAAADAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAACAAMAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAEAAwAAAAADAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAADAAAAAAEAAwAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAABAAgAAAAAAwAIAAAAAAEACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAABQAAAAABAAMAAAAAAgACAAAAAAAACAAAAAABAAoAAAAAAwAKAAAAAAAACgAAAAAAAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAA== + version: 7 8,2: ind: 8,2 - tiles: AQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAHgAAAAAAIwAAAAADHgAAAAAAHgAAAAAAIwAAAAADHgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAIwAAAAAAHgAAAAAAIwAAAAADIwAAAAABHgAAAAAAIwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAIwAAAAADHgAAAAAAHgAAAAAAIwAAAAAAHgAAAAAAIwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAADAgAAAAAA - version: 6 + tiles: AQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAQACAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAgACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAACAAgAAAAAAAAIAAAAAAIACAAAAAAAAAgAAAAAAwAIAAAAAAIAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAgACAAAAAAAACAAAAAACAAgAAAAAAQAIAAAAAAIACAAAAAACAAgAAAAAAgAIAAAAAAIACAAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAIACAAAAAADAAgAAAAAAwAIAAAAAAIACAAAAAADAAgAAAAAAgACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAADAAIAAAAAAAAIAAAAAAAACAAAAAACAAgAAAAAAwAIAAAAAAAACAAAAAACAAgAAAAAAwAIAAAAAAAAAgAAAAAAAA== + version: 7 8,3: ind: 8,3 - tiles: AwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADJwAAAAABJwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACJwAAAAADJwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAFQAAAAAAAwAAAAACFQAAAAAAFQAAAAAAAgAAAAAAAwAAAAACAwAAAAACJwAAAAABJwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABFQAAAAAAAwAAAAADFQAAAAAAFQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAJwAAAAABJwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAACAAAAAACAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADAgAAAAAAEAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAACAwAAAAABAwAAAAACAgAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAACAAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAABAAgAAAAAAQAIAAAAAAEACAAAAAABAAgAAAAAAAAIAAAAAAIAAgAAAAAAACEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAgACAAAAAAAACAAAAAACAAgAAAAAAwAIAAAAAAAACAAAAAADAAgAAAAAAgAIAAAAAAEACAAAAAACAAIAAAAAAAAhAAAAAAMAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAIQAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAADAAMAAAAAAwADAAAAAAMAAwAAAAABAAIAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAgADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAMAAwAAAAACAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAAAVAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAABAAMAAAAAAwACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAADAAMAAAAAAwADAAAAAAEAFQAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAADABUAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAAnAAAAAAMAJwAAAAADAAMAAAAAAwADAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAMAAwAAAAAAAAMAAAAAAQAVAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAMAJwAAAAADACcAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAADAAMAAAAAAQADAAAAAAEAFQAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABACcAAAAAAgAnAAAAAAEAAwAAAAADAAMAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAMAAwAAAAADABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAAnAAAAAAEAJwAAAAACAAMAAAAAAgADAAAAAAEAAwAAAAACAAMAAAAAAwACAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAgACAAAAAAAACAAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAgACAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAMAAgAAAAAAAAgAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAQADAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAMAAwAAAAACAAIAAAAAAAAIAAAAAAAAAwAAAAABAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAgAAAAAAQACAAAAAAAAAgAAAAAAAA== + version: 7 8,4: ind: 8,4 - tiles: AwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAACAAAAAAACAAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAACAAAAAABAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAACAAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AwAAAAADAAMAAAAAAQACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAAACAAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAACAAIAAAAAAAAIAAAAAAEACAAAAAACAAgAAAAAAgADAAAAAAMAAwAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAACAAMAAAAAAQACAAAAAAAACAAAAAABAAgAAAAAAwAIAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAIAAgAAAAAAAAgAAAAAAgAIAAAAAAIACAAAAAAAAAgAAAAAAAAIAAAAAAEAAgAAAAAAAAgAAAAAAwAIAAAAAAEACAAAAAACAAgAAAAAAgAIAAAAAAIAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAMACAAAAAADAAIAAAAAAAAIAAAAAAEACAAAAAABAAgAAAAAAAAIAAAAAAAACAAAAAABAAgAAAAAAwADAAAAAAIAAwAAAAACAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAMACAAAAAACAAgAAAAAAAACAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAMACAAAAAABAAgAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAACAAgAAAAAAwAIAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAMAAgAAAAAAAAgAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAADAAMAAAAAAAAIAAAAAAIACAAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAAAIAAAAAAEACAAAAAABAAIAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEACAAAAAABAAgAAAAAAQAIAAAAAAEACAAAAAABAAgAAAAAAQAIAAAAAAEACAAAAAABAAgAAAAAAQACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAABAAgAAAAAAAAIAAAAAAIAAgAAAAAAAAgAAAAAAAAIAAAAAAMACAAAAAADAAgAAAAAAQAIAAAAAAIAAgAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAABAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 8,5: ind: 8,5 - tiles: AwAAAAACAwAAAAABAgAAAAAACwAAAAADCwAAAAACCwAAAAACCwAAAAADCwAAAAADCwAAAAACCwAAAAABCwAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAACwAAAAABCwAAAAADCwAAAAAACwAAAAADCwAAAAABCwAAAAACCwAAAAABCwAAAAADAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAAAAwAAAAACAgAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAADCwAAAAACCwAAAAABCwAAAAAACwAAAAADAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAAACwAAAAACCwAAAAACCwAAAAACCwAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAADDgAAAAAADgAAAAABDgAAAAABDgAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAADDgAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAABAwAAAAAAAwAAAAABCAAAAAADCAAAAAADCAAAAAAADgAAAAAACAAAAAADCgAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAAADgAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAACDgAAAAADDgAAAAACDgAAAAAADgAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAC - version: 6 + tiles: AwAAAAACAAMAAAAAAwACAAAAAAAACwAAAAAAAAsAAAAAAwALAAAAAAAACwAAAAABAAsAAAAAAwALAAAAAAMACwAAAAADAAsAAAAAAQACAAAAAAAAHQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAIAAgAAAAAAAAsAAAAAAQALAAAAAAAACwAAAAAAAAsAAAAAAwALAAAAAAEACwAAAAACAAsAAAAAAwALAAAAAAEAAgAAAAAAAAIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAADAAAAAAMAAwAAAAACAAIAAAAAAAALAAAAAAMACwAAAAADAAsAAAAAAgALAAAAAAMACwAAAAADAAsAAAAAAAALAAAAAAMACwAAAAACAAIAAAAAAAAdAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAACwAAAAADAAsAAAAAAwALAAAAAAEACwAAAAACAAsAAAAAAQALAAAAAAAACwAAAAAAAAsAAAAAAgACAAAAAAAAAgAAAAAAAB0AAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAADAAAAAAIAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAABAAIAAAAAAAADAAAAAAEAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAACAAIAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAMACAAAAAAAAAgAAAAAAgAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgAFAAAAAAEAAwAAAAACAAMAAAAAAQACAAAAAAAACAAAAAAAAAgAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAQAOAAAAAAIACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEABQAAAAAAAAMAAAAAAAADAAAAAAMAAgAAAAAAAAgAAAAAAAAIAAAAAAIADgAAAAABAAgAAAAAAQAIAAAAAAIACAAAAAABAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAUAAAAAAgADAAAAAAMAAwAAAAADAAgAAAAAAgAIAAAAAAEACAAAAAACAA4AAAAAAwAIAAAAAAIACgAAAAAAAAgAAAAAAAAIAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAQACAAAAAAAACAAAAAAAAAgAAAAAAgAOAAAAAAEACAAAAAABAAgAAAAAAAAIAAAAAAEACAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAMAAAAAAgADAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAABAAgAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwAUAAAAAAAAFAAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAACAAgAAAAAAAAIAAAAAAMACAAAAAACAAgAAAAAAwAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAADAAAAAAMAAwAAAAACAA== + version: 7 8,6: ind: 8,6 - tiles: AwAAAAAAAwAAAAAAFAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADFAAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAACAAAAAACCAAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAACAAAAAADCAAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAACAAAAAACCAAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACAAAAAADAwAAAAABAwAAAAADFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAABCAAAAAACAwAAAAAAAwAAAAABFAAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAACAAAAAABCAAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADFAAAAAAAAwAAAAABBQAAAAADAwAAAAAABQAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAABBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AwAAAAAAAAMAAAAAAgAUAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAEAAwAAAAACAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAAADAAAAAAMAFAAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAACABQAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAABAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAADAAMAAAAAAgACAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAwADAAAAAAIAAgAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAADAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAMAAwAAAAABAAIAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAADAAMAAAAAAwACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAMAAgAAAAAAAAIAAAAAAAAIAAAAAAIAAwAAAAABAAMAAAAAAwACAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAMAAwAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAABAAMAAAAAAgADAAAAAAIAAgAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAAAAwAAAAABAAMAAAAAAAACAAAAAAAACAAAAAAAAAgAAAAAAAADAAAAAAEAAwAAAAADAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAgACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAIAAgAAAAAAAAgAAAAAAgAIAAAAAAAAAwAAAAACAAMAAAAAAwACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAACAAMAAAAAAgADAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAABAAMAAAAAAwADAAAAAAMAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAwADAAAAAAEAAwAAAAACAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAMAAwAAAAADAAMAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAEAAgAAAAAAAAIAAAAAAAAIAAAAAAIAAwAAAAABAAMAAAAAAwAUAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAABAAMAAAAAAAADAAAAAAMAFAAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAQAUAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAAACAAAAAAAACAAAAAABAAgAAAAAAAADAAAAAAEAAwAAAAADABQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAIAFAAAAAAAAAMAAAAAAgAFAAAAAAIAAwAAAAADAAUAAAAAAgADAAAAAAEAAgAAAAAAAAgAAAAAAQAIAAAAAAMAAwAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIABQAAAAAAAAMAAAAAAAAFAAAAAAMAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 8,7: ind: 8,7 - tiles: AwAAAAABAwAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAABBQAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAACgAAAAAACAAAAAABCAAAAAACCAAAAAABCgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAAAAwAAAAAAAgAAAAAACgAAAAAACAAAAAACCAAAAAAACAAAAAABCgAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBQAAAAABAwAAAAABAgAAAAAACgAAAAACCAAAAAACCAAAAAADCAAAAAAACgAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBQAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBQAAAAADAwAAAAAAAwAAAAACAwAAAAAABQAAAAACAwAAAAADBQAAAAABAwAAAAACBQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAADAgAAAAAAAwAAAAADBQAAAAABAwAAAAAABQAAAAACAwAAAAABBQAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAA - version: 6 + tiles: AwAAAAAAAAMAAAAAAwAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMABQAAAAACAAMAAAAAAgAFAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAMACAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAIAAwAAAAACAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAAAABQAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAwAUAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAAAFAAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAwAAAAABAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAgACAAAAAAAACgAAAAADAAgAAAAAAAAIAAAAAAIACAAAAAAAAAoAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAABAAUAAAAAAAADAAAAAAAAAgAAAAAAAAoAAAAAAQAIAAAAAAAACAAAAAACAAgAAAAAAwAKAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAQAFAAAAAAAAAwAAAAADAAIAAAAAAAAKAAAAAAMACAAAAAABAAgAAAAAAQAIAAAAAAAACgAAAAADAAIAAAAAAAADAAAAAAEAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAIABQAAAAADAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAACAAMAAAAAAQADAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAADAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAFAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAAABQAAAAADAAMAAAAAAwAFAAAAAAEAAwAAAAAAAAUAAAAAAQADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAACAAMAAAAAAQACAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAACAA== + version: 7 8,8: ind: 8,8 - tiles: BQAAAAAAAwAAAAACAgAAAAAAAwAAAAADBQAAAAADAwAAAAACBQAAAAABAwAAAAACBQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACBQAAAAACBQAAAAAABQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACBQAAAAABBQAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABBQAAAAADAwAAAAADBQAAAAAABQAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADBQAAAAACAwAAAAAABQAAAAADBQAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABBQAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAADBQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAABQAAAAADAwAAAAADBQAAAAAABQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABAwAAAAAAAgAAAAAA - version: 6 + tiles: BQAAAAAAAAMAAAAAAQACAAAAAAAAAwAAAAAAAAUAAAAAAQADAAAAAAIABQAAAAAAAAMAAAAAAwAFAAAAAAMAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAEABwAAAAABAAMAAAAAAgADAAAAAAEAAgAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAQAFAAAAAAIABQAAAAADAAUAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAACAAUAAAAAAgAFAAAAAAEAAwAAAAACAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACQAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEABQAAAAACAAMAAAAAAQAFAAAAAAAABQAAAAACAAMAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAEAAwAAAAAAAAUAAAAAAwADAAAAAAAABQAAAAACAAUAAAAAAQADAAAAAAEAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAAAFAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAgACAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAADAAMAAAAAAwACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAQADAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAACAAUAAAAAAwADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAABAAIAAAAAAAAFAAAAAAEAAwAAAAACAAUAAAAAAgAFAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAMAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAADAAIAAAAAAAAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAwADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAMABwAAAAADAAcAAAAAAgAHAAAAAAMABwAAAAABAAcAAAAAAQADAAAAAAEAAgAAAAAAAA== + version: 7 8,9: ind: 8,9 - tiles: CAAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAADBwAAAAADAwAAAAACCAAAAAABCAAAAAACCAAAAAABCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAADAgAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABCAAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: CAAAAAABAAIAAAAAAAAIAAAAAAMACAAAAAABAAgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAEABwAAAAACAAcAAAAAAAAHAAAAAAIABwAAAAACAAcAAAAAAgAHAAAAAAIAAwAAAAAAAAgAAAAAAQAIAAAAAAIACAAAAAACAAgAAAAAAAAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAABAAcAAAAAAQAHAAAAAAEABwAAAAADAAcAAAAAAwAHAAAAAAAABwAAAAABAAIAAAAAAAAIAAAAAAMAAgAAAAAAAAgAAAAAAwAIAAAAAAAACAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAADAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAEAAwAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAMACAAAAAABAAgAAAAAAwAIAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAAAIAAAAAAIACAAAAAACAAgAAAAAAwADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAMACAAAAAABAAgAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAwAIAAAAAAMAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 9,2: ind: 9,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAAgAAAAAAAEAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAACAAAAAAAAQAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 9,3: ind: 9,3 - tiles: AwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABBQAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADBQAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AwAAAAADAAMAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAgACAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAgAFAAAAAAMAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAACAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAAABQAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAABAAIAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAgACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAMAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAEAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAACAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAABAAIAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAABAAgAAAAAAwACAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAAACAAAAAABAAgAAAAAAwAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAEAAgAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAADAAgAAAAAAgAIAAAAAAIACAAAAAACAAgAAAAAAAAIAAAAAAEACAAAAAADAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAACAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAQACAAAAAAAACAAAAAABAAgAAAAAAgAIAAAAAAMACAAAAAAAAAgAAAAAAgAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAABAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAEAAgAAAAAAAAgAAAAAAAAIAAAAAAMACAAAAAABAAgAAAAAAgAIAAAAAAMACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 9,4: ind: 9,4 - tiles: CAAAAAADCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAD - version: 6 + tiles: CAAAAAADAAgAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAIACAAAAAADAAgAAAAAAAAIAAAAAAIACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAACAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAQACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAgACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAQAHAAAAAAEAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAEACAAAAAAAAAgAAAAAAQACAAAAAAAAAgAAAAAAAAcAAAAAAQAHAAAAAAIABwAAAAACAAMAAAAAAQADAAAAAAMAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAABAAIAAAAAAAAIAAAAAAMACAAAAAAAAAgAAAAAAwAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAACAAcAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAAMAAAAAAgACAAAAAAAACAAAAAADAAgAAAAAAQAIAAAAAAIACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAEAAwAAAAADAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAAACAAAAAACAAgAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAMABwAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAABAAgAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAADAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAIAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAADAAMAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAwADAAAAAAAAAwAAAAAAAA== + version: 7 9,5: ind: 9,5 - tiles: HQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAACHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: HQAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAABAB0AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAgADAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAQACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAgACAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAIAAgAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 9,6: ind: 9,6 - tiles: AwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACCAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAA - version: 6 + tiles: AwAAAAACAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAEAAgAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAADAAAAAAIAAwAAAAADAAIAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAACAAIAAAAAAAADAAAAAAIAFAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAgACAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAgACAAAAAAAAAwAAAAADABQAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAwAUAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAACAAMAAAAAAgADAAAAAAEAAwAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAQADAAAAAAMAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAACAAAAAABAAgAAAAAAwACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAEAAgAAAAAAAAgAAAAAAwAIAAAAAAMAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAgADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAACAAIAAAAAAAAIAAAAAAEACAAAAAABAAIAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAQACAAAAAAAACAAAAAADAAgAAAAAAQACAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAACAAMAAAAAAwADAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAMAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMACAAAAAADAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAEAAwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAACAAMAAAAAAQADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAEACAAAAAAAAAgAAAAAAQAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAEAAwAAAAAAAAgAAAAAAwAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAA== + version: 7 9,7: ind: 9,7 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAABwAAAAAABwAAAAACBwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADBwAAAAAABwAAAAABBwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAABwAAAAACBwAAAAAABwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACBwAAAAACBwAAAAABBwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAABwAAAAABBwAAAAAABwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACBwAAAAADBwAAAAACBwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAD - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAMAAgAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAMAAAAAAQACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAwADAAAAAAEAAwAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAACAAIAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAgACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAAABwAAAAABAAcAAAAAAgAHAAAAAAMAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAAAHAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAEABwAAAAACAAcAAAAAAQAHAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAABAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAMAAgAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAAAAA== + version: 7 9,8: ind: 9,8 - tiles: BwAAAAAABwAAAAADBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAABBwAAAAACAgAAAAAABwAAAAAABwAAAAADAgAAAAAAHQAAAAAAHQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAABAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAACBwAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAADFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAABBwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAABAgAAAAAABwAAAAACBwAAAAACAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAAABwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAABBwAAAAADAgAAAAAABwAAAAACBwAAAAAD - version: 6 + tiles: BwAAAAADAAcAAAAAAgAHAAAAAAIAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAAAAgAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAQACAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAMAAwAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAIAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAEAAgAAAAAAAAcAAAAAAQAHAAAAAAIAAgAAAAAAAAcAAAAAAQAHAAAAAAAAAgAAAAAAAB0AAAAAAAAdAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAAAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAADAAIAAAAAAAAHAAAAAAAABwAAAAACAAIAAAAAAAAHAAAAAAMABwAAAAACAAIAAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAwACAAAAAAAABwAAAAADAAcAAAAAAAACAAAAAAAABwAAAAACAAcAAAAAAgACAAAAAAAAHQAAAAAAAB0AAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAAAAgAAAAAAAAcAAAAAAwACAAAAAAAAAgAAAAAAAAcAAAAAAwACAAAAAAAAAgAAAAAAAB0AAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAABAAMAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAIABwAAAAACAAcAAAAAAwAHAAAAAAEABwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAAABwAAAAADAAcAAAAAAwAHAAAAAAMABwAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAABAAcAAAAAAQADAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAADAAcAAAAAAgAHAAAAAAMABwAAAAADAAcAAAAAAQAHAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAIAAgAAAAAAAAIAAAAAAAAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAABAAIAAAAAAAACAAAAAAAABwAAAAABAAIAAAAAAAACAAAAAAAABwAAAAADABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAADAAgAAAAAAAACAAAAAAAABwAAAAABAAcAAAAAAwACAAAAAAAABwAAAAAAAAcAAAAAAgACAAAAAAAABwAAAAADAAcAAAAAAQADAAAAAAMAAwAAAAABAAMAAAAAAgACAAAAAAAACAAAAAABAAgAAAAAAwAIAAAAAAIAAgAAAAAAAAcAAAAAAwAHAAAAAAMAAgAAAAAAAAcAAAAAAQAHAAAAAAIAAgAAAAAAAAcAAAAAAgAHAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAAACAAAAAADAAIAAAAAAAAHAAAAAAEABwAAAAAAAAIAAAAAAAAHAAAAAAEABwAAAAADAAIAAAAAAAAHAAAAAAEABwAAAAADAA== + version: 7 9,9: ind: 9,9 - tiles: AwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AwAAAAACAAMAAAAAAAADAAAAAAMAAgAAAAAAAAIAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAEAAgAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAACAAIAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAgACAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAEAAwAAAAACAAIAAAAAAAACAAAAAAAAAwAAAAADAAMAAAAAAQACAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAEAAgAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAACAAIAAAAAAAADAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAEAAgAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAADAAIAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAIAAgAAAAAAAAAAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAMAAwAAAAACAAMAAAAAAQACAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAABAAIAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAEAAgAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAADAAIAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAwACAAAAAAAAAAAAAAAAAAIAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAgACAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,6: ind: 0,6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 7,0: ind: 7,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,3: ind: 0,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,7: ind: 0,7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,11: ind: 5,11 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 6,11: ind: 6,11 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 8,10: ind: 8,10 - tiles: AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -748,22 +748,18 @@ entities: 15216: 131,68 15217: 131,70 15219: 135,68 - 15277: 128,46 - 15278: 128,49 - 15279: 128,52 - 15280: 132,52 - 15281: 132,49 - 15282: 132,46 - 15298: 131,57 - 15299: 131,58 - 15300: 133,58 - 15301: 133,57 - 15302: 134,57 - 15303: 134,58 15442: 132,64 15443: 134,64 15447: 123,71 15448: 137,69 + 15679: 131,62 + 15680: 131,60 + 15681: 134,60 + 15682: 134,62 + 15769: 127,49 + 15770: 128,49 + 15771: 134,45 + 15772: 134,47 - node: zIndex: 1 color: '#FFFFFFFF' @@ -871,8 +867,6 @@ entities: 14648: 154,100 14659: 145,58 14660: 144,58 - 14675: 124,47 - 14676: 124,49 14682: 47,68 14683: 49,68 14684: 51,68 @@ -897,6 +891,18 @@ entities: 14820: 113,22 14821: 113,23 14822: 118,42 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Bot + decals: + 15829: 148,91 + 15830: 149,91 + 15831: 149,92 + 15832: 149,93 + 15833: 150,93 + 15834: 150,92 + 15835: 150,91 - node: zIndex: 1 angle: 1.5707963267948966 rad @@ -977,7 +983,6 @@ entities: 14435: 117,64 14439: 146,72 14440: 151,55 - 14444: 122,46 14445: 99,48 14446: 101,48 14447: 98,39 @@ -1026,6 +1031,7 @@ entities: id: BotRight decals: 14631: 144,48 + 15794: 131,64 - node: color: '#FFFFFFFF' id: Box @@ -1292,9 +1298,14 @@ entities: 15218: 131,69 15444: 133,64 15445: 123,72 - 15449: 126,61 - 15488: 125,64 - 15491: 128,61 + 15668: 127,59 + 15669: 129,59 + 15670: 126,63 + 15675: 132,60 + 15676: 133,60 + 15677: 133,62 + 15678: 132,62 + 15773: 134,46 - node: zIndex: 1 color: '#FFFFFFFF' @@ -1325,7 +1336,6 @@ entities: 14642: 142,88 14643: 146,93 14649: 155,100 - 14677: 124,48 14678: 48,68 14679: 52,68 14680: 51,74 @@ -1336,6 +1346,13 @@ entities: 14693: 134,134 14784: 44,49 14819: 94,25 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Delivery + decals: + 15827: 148,88 + 15828: 148,92 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2963,14 +2980,6 @@ entities: 10787: 117,45 10788: 119,44 10789: 120,44 - 10790: 121,44 - 10791: 123,44 - 10792: 123,43 - 10793: 124,43 - 10795: 126,41 - 10796: 127,41 - 10797: 127,43 - 10798: 126,42 11036: 89,82 11037: 86,81 11038: 90,80 @@ -3174,49 +3183,8 @@ entities: 14636: 30,104 14637: 31,105 14638: 31,104 - 15344: 128,51 - 15345: 127,52 - 15346: 126,51 - 15347: 127,48 - 15348: 128,49 - 15349: 128,45 - 15350: 127,45 - 15351: 133,46 - 15352: 133,41 - 15353: 132,42 - 15354: 131,42 - 15355: 131,41 - 15356: 129,42 - 15357: 130,43 - 15358: 130,41 - 15359: 134,41 - 15360: 134,42 - 15361: 133,43 - 15362: 133,48 - 15363: 134,51 - 15364: 130,52 - 15365: 129,49 - 15366: 131,49 - 15367: 130,46 - 15368: 131,46 - 15369: 131,47 - 15370: 130,48 - 15371: 131,53 - 15372: 133,54 - 15373: 134,55 - 15374: 133,58 - 15375: 132,56 - 15376: 130,58 - 15377: 128,59 - 15378: 129,56 - 15379: 131,56 - 15380: 126,57 - 15381: 126,59 - 15382: 125,57 - 15383: 126,55 - 15384: 123,54 - 15385: 124,53 - 15386: 122,58 + 15818: 87,123 + 15819: 89,123 - node: cleanable: True zIndex: 2 @@ -3695,8 +3663,6 @@ entities: 11393: 102,41 11394: 102,47 11395: 116,48 - 11397: 122,47 - 11398: 123,50 11421: 138,67 11422: 139,70 11423: 145,69 @@ -3912,11 +3878,6 @@ entities: 14798: 128,148 14799: 130,148 14812: 32,119 - 15499: 123,63 - 15500: 122,64 - 15501: 127,62 - 15502: 126,63 - 15503: 124,66 - node: cleanable: True zIndex: 1 @@ -4121,8 +4082,6 @@ entities: 14843: 53,84 14844: 51,82 14845: 52,80 - 15402: 124,65 - 15404: 128,65 15405: 128,68 15406: 126,70 15407: 128,72 @@ -4141,6 +4100,50 @@ entities: 15420: 140,52 15423: 137,60 15424: 139,62 + 15724: 123,50 + 15725: 124,52 + 15726: 127,50 + 15727: 126,47 + 15728: 128,46 + 15729: 132,47 + 15731: 133,42 + 15732: 133,41 + 15733: 134,41 + 15734: 130,43 + 15735: 129,41 + 15736: 125,41 + 15737: 124,43 + 15738: 126,43 + 15739: 128,45 + 15740: 132,48 + 15741: 133,50 + 15742: 131,51 + 15743: 130,49 + 15744: 133,53 + 15745: 131,54 + 15746: 133,57 + 15747: 133,55 + 15748: 131,55 + 15749: 129,56 + 15750: 128,55 + 15751: 127,56 + 15752: 125,56 + 15753: 123,55 + 15754: 126,55 + 15755: 123,58 + 15756: 127,60 + 15757: 129,62 + 15758: 131,61 + 15759: 133,61 + 15760: 128,65 + 15761: 129,64 + 15762: 124,63 + 15763: 123,63 + 15764: 124,65 + 15765: 122,66 + 15766: 123,68 + 15767: 131,64 + 15768: 125,48 - node: cleanable: True color: '#FFFFFFFF' @@ -4161,8 +4164,6 @@ entities: 11591: 91,84 11592: 91,87 11593: 86,85 - 11613: 89,122 - 11615: 89,123 11616: 93,128 11617: 95,132 11618: 94,134 @@ -4402,19 +4403,14 @@ entities: 13834: 52,103 13835: 51,99 14841: 53,81 - 15388: 123,59 - 15389: 124,55 - 15390: 122,53 - 15391: 126,56 - 15392: 128,55 - 15393: 131,60 - 15394: 132,61 - 15395: 131,62 - 15396: 134,61 - 15397: 132,59 - 15398: 133,55 - 15399: 129,54 - 15400: 127,56 + 15815: 89,121 + 15816: 88,122 + 15817: 87,121 + 15820: 88,119 + 15821: 87,118 + 15822: 94,113 + 15823: 92,114 + 15824: 96,114 - node: cleanable: True color: '#C6FF91FF' @@ -4491,6 +4487,7 @@ entities: 5497: 80.496796,67.77452 5498: 81.44263,67.09776 10100: 131.83923,79.97959 + 15807: 136.06654,41.92049 - node: color: '#FFFFFFFF' id: Flowersbr3 @@ -4541,6 +4538,7 @@ entities: 9046: 45.987133,124.960236 9053: 47.862633,124.63237 9063: 49.333267,125.9766 + 15810: 138.08867,41.928642 - node: color: '#FFFFFFFF' id: Flowerspv3 @@ -4557,6 +4555,7 @@ entities: 10102: 131.83109,80.955444 10107: 134.35873,81.28438 10112: 138.01651,81.84583 + 15808: 136.76776,41.961258 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -4585,6 +4584,7 @@ entities: 10101: 131.10541,80.640045 10106: 135.02734,80.827774 13761: 64.076126,58.923397 + 15809: 137.44452,42.002026 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -4796,6 +4796,16 @@ entities: 14900: 138,47 14901: 139,47 14902: 139,46 + 15538: 130,58 + 15539: 126,58 + 15549: 122,61 + 15550: 122,60 + 15551: 123,60 + 15552: 123,61 + 15553: 124,61 + 15554: 124,60 + 15555: 125,60 + 15556: 125,61 - node: color: '#EFB34196' id: FullTileOverlayGreyscale @@ -4854,6 +4864,7 @@ entities: 6319: 107.20111,121.02095 6321: 107.86778,121.048744 13767: 63.992798,61.11415 + 15806: 138.00714,42.05095 - node: color: '#FFFFFFFF' id: Grassc2 @@ -4861,6 +4872,7 @@ entities: 303: 36,56 10158: 134.54193,79.95234 13769: 64.041405,59.071068 + 15804: 136.78407,42.042793 - node: color: '#FFFFFFFF' id: Grassc3 @@ -4926,6 +4938,7 @@ entities: 10154: 132.22758,80.551994 10155: 131.06555,82.17104 13765: 64.034454,59.507137 + 15805: 137.57498,42.018333 - node: color: '#FFFFFFFF' id: Grassd3 @@ -5001,6 +5014,7 @@ entities: 10150: 133.78271,83.06178 10159: 133.60443,79.96623 13766: 64.013626,60.55995 + 15803: 136.0584,42.002026 - node: angle: -6.283185307179586 rad color: '#334E6DC8' @@ -5507,33 +5521,32 @@ entities: 14920: 134,66 14921: 135,66 14922: 136,66 - 14945: 123,66 14979: 126,74 14980: 127,74 14981: 128,74 - 15054: 133,59 - 15055: 132,59 - 15057: 130,59 15142: 122,75 15176: 133,70 15185: 133,74 15186: 134,74 15201: 127,69 15213: 132,74 - 15271: 127,46 - 15272: 127,49 - 15273: 127,52 - 15274: 133,52 - 15275: 133,49 - 15276: 133,46 - 15331: 125,58 - 15332: 126,58 - 15333: 127,58 - 15339: 128,58 - 15452: 123,61 - 15457: 125,60 - 15459: 127,60 - 15490: 128,66 + 15547: 123,59 + 15548: 124,59 + 15566: 124,66 + 15567: 123,66 + 15579: 130,62 + 15580: 131,62 + 15581: 132,62 + 15582: 133,62 + 15589: 132,57 + 15590: 131,57 + 15596: 128,66 + 15602: 129,51 + 15603: 130,51 + 15610: 127,47 + 15611: 128,47 + 15612: 129,47 + 15613: 130,47 - node: zIndex: 1 color: '#DE3A3A96' @@ -5560,7 +5573,6 @@ entities: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 812: 91,123 813: 92,123 822: 96,125 823: 97,125 @@ -6189,21 +6201,36 @@ entities: 14928: 133,64 14929: 132,64 14986: 126,68 - 15042: 128,55 - 15047: 132,55 15179: 133,68 15180: 134,68 15181: 133,72 15194: 127,73 - 15304: 125,54 - 15305: 126,54 - 15312: 127,56 - 15327: 125,56 - 15328: 126,56 - 15337: 128,56 - 15453: 123,62 - 15476: 127,62 15489: 128,68 + 15517: 126,54 + 15519: 125,54 + 15522: 128,55 + 15525: 130,53 + 15558: 124,62 + 15559: 123,62 + 15572: 128,60 + 15573: 130,60 + 15574: 131,60 + 15575: 132,60 + 15576: 133,60 + 15608: 129,49 + 15609: 130,49 + 15620: 126,45 + 15621: 127,45 + 15622: 128,45 + 15623: 130,45 + 15624: 131,45 + 15625: 132,45 + 15651: 133,41 + 15652: 129,41 + 15715: 124,56 + 15716: 124,57 + 15719: 131,55 + 15720: 131,56 - node: zIndex: 1 color: '#DE3A3A96' @@ -6227,7 +6254,6 @@ entities: 599: 35,64 600: 36,64 601: 37,64 - 814: 91,121 815: 92,121 816: 93,121 817: 94,121 @@ -6845,9 +6871,6 @@ entities: 3324: 152,51 3325: 152,52 3326: 152,53 - 3383: 122,47 - 3384: 122,48 - 3385: 122,49 3420: 151,62 3421: 151,63 3435: 151,73 @@ -6883,19 +6906,6 @@ entities: 14915: 136,61 14983: 125,70 14988: 137,68 - 15010: 129,52 - 15011: 129,49 - 15012: 129,46 - 15019: 131,45 - 15020: 131,48 - 15021: 131,51 - 15025: 129,53 - 15030: 122,59 - 15031: 122,58 - 15032: 122,57 - 15033: 122,56 - 15034: 122,55 - 15035: 122,54 15134: 121,69 15136: 121,70 15137: 121,71 @@ -6906,11 +6916,21 @@ entities: 15198: 128,70 15200: 128,72 15205: 126,71 - 15340: 124,57 - 15468: 122,60 - 15469: 122,63 - 15470: 122,64 - 15497: 126,65 + 15524: 129,54 + 15561: 122,63 + 15562: 122,64 + 15569: 127,62 + 15570: 127,64 + 15615: 131,48 + 15636: 122,51 + 15637: 122,52 + 15638: 122,54 + 15639: 122,56 + 15640: 122,55 + 15641: 122,57 + 15642: 122,58 + 15643: 128,42 + 15714: 125,56 - node: zIndex: 1 color: '#DE3A3A96' @@ -7516,10 +7536,6 @@ entities: 3341: 142,47 3342: 142,46 3343: 142,45 - 3379: 124,47 - 3380: 124,48 - 3381: 124,49 - 3382: 124,50 3410: 156,62 3428: 154,67 3429: 154,68 @@ -7550,30 +7566,31 @@ entities: 13780: 89,114 14862: 142,48 14924: 139,64 - 14963: 129,64 14974: 129,69 14975: 129,70 14976: 129,71 14977: 129,72 - 15013: 129,45 - 15014: 129,48 - 15015: 129,51 - 15016: 131,46 - 15017: 131,49 - 15018: 131,52 - 15026: 131,53 - 15050: 134,55 - 15051: 134,56 15147: 123,70 15148: 123,74 15188: 135,73 15195: 126,72 15197: 126,70 15206: 128,71 - 15338: 129,57 - 15471: 124,63 - 15496: 129,63 - 15498: 124,65 + 15564: 125,64 + 15583: 134,61 + 15584: 133,53 + 15585: 133,54 + 15586: 133,55 + 15587: 133,56 + 15593: 129,64 + 15594: 129,63 + 15614: 126,48 + 15627: 134,46 + 15629: 133,48 + 15630: 134,50 + 15653: 130,42 + 15654: 134,42 + 15721: 130,55 - node: zIndex: 1 color: '#DE3A3A96' @@ -7725,6 +7742,7 @@ entities: 2196: 135,99 9970: 156,110 9971: 156,106 + 15674: 125,63 - node: zIndex: 1 angle: -1.5707963267948966 rad @@ -7742,7 +7760,7 @@ entities: 10826: 102,145 14153: 69,123 15446: 123,73 - 15492: 128,62 + 15671: 129,60 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7774,7 +7792,7 @@ entities: id: LoadingArea decals: 633: 61,62 - 15480: 126,62 + 15672: 127,58 - node: cleanable: True color: '#FFA500FF' @@ -8437,6 +8455,10 @@ entities: 15129: 140,53 15130: 141,53 15131: 141,52 + 15571: 127,61 + 15604: 131,51 + 15619: 131,47 + 15723: 132,55 - node: zIndex: 2 color: '#DE3A3A96' @@ -9008,8 +9030,6 @@ entities: 5007: 102,86 10692: 96,45 10702: 102,42 - 15040: 124,54 - 15046: 131,55 15069: 141,54 15070: 141,53 15071: 141,52 @@ -9029,9 +9049,10 @@ entities: 15099: 140,61 15100: 139,61 15101: 138,61 - 15256: 133,51 - 15257: 133,48 - 15258: 133,45 + 15520: 124,54 + 15521: 127,55 + 15635: 133,49 + 15717: 123,57 - node: zIndex: 2 color: '#DE3A3A96' @@ -9155,6 +9176,11 @@ entities: 4123: 49,50 4124: 49,51 4125: 49,52 + - node: + color: '#3EB38896' + id: QuarterTileOverlayGreyscale270 + decals: + 15812: 88,122 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -9553,15 +9579,26 @@ entities: 14887: 132,76 14888: 133,76 14918: 137,64 - 14946: 122,65 - 15043: 129,55 - 15044: 133,55 15150: 123,76 15151: 122,76 15152: 121,76 - 15253: 127,45 - 15254: 127,48 - 15255: 127,51 + 15526: 129,55 + 15527: 131,53 + 15563: 122,65 + 15618: 131,49 + 15712: 127,49 + 15713: 128,49 + 15722: 132,56 + 15780: 123,63 + 15781: 124,63 + 15782: 124,64 + 15783: 123,64 + 15784: 123,65 + 15785: 124,65 + 15786: 126,56 + 15787: 127,56 + 15788: 128,56 + 15789: 129,56 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 @@ -9601,6 +9638,7 @@ entities: 14063: 117,150 14302: 85,63 14303: 86,63 + 15814: 89,122 - node: zIndex: 1 color: '#EFB34196' @@ -9725,6 +9763,7 @@ entities: 12242: 82,114 12243: 83,114 12244: 84,114 + 15811: 87,122 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -10131,8 +10170,28 @@ entities: 15158: 120,73 15159: 120,74 15160: 120,75 - 15458: 124,60 - 15494: 129,59 + 15591: 130,57 + 15592: 129,62 + 15599: 124,52 + 15616: 126,47 + 15632: 133,51 + 15634: 133,47 + 15707: 125,52 + 15708: 126,52 + 15709: 127,52 + 15710: 127,51 + 15711: 128,51 + 15718: 123,56 + 15774: 123,63 + 15775: 124,63 + 15776: 124,64 + 15777: 124,65 + 15778: 123,65 + 15779: 123,64 + 15790: 126,56 + 15791: 127,56 + 15792: 128,56 + 15793: 129,56 - node: zIndex: 2 color: '#DE3A3A96' @@ -10188,6 +10247,7 @@ entities: 14301: 84,62 14397: 128,119 14720: 133,132 + 15813: 88,122 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale90 @@ -10331,7 +10391,6 @@ entities: color: '#3EB38896' id: ThreeQuarterTileOverlayGreyscale decals: - 14008: 87,123 14150: 68,123 14154: 72,119 - node: @@ -10454,7 +10513,6 @@ entities: 3232: 146,72 3315: 144,53 3319: 151,58 - 3386: 122,51 3419: 151,64 3442: 151,74 3451: 141,67 @@ -10467,21 +10525,13 @@ entities: 14916: 136,62 14931: 131,66 14982: 125,74 - 15022: 129,50 - 15029: 129,47 15141: 121,75 15175: 131,70 15183: 131,74 15192: 126,73 - 15250: 132,46 - 15251: 132,49 - 15252: 132,52 - 15259: 126,46 - 15260: 126,49 - 15261: 126,52 - 15343: 124,58 - 15451: 122,61 - 15465: 126,66 + 15545: 122,59 + 15647: 128,43 + 15648: 132,43 - node: zIndex: 1 color: '#DE3A3A96' @@ -10522,6 +10572,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 10178: 96,162 + 15825: 91,123 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale @@ -10685,7 +10736,6 @@ entities: 3284: 142,51 3298: 150,48 3320: 155,49 - 3387: 124,46 3406: 144,73 3411: 155,60 3412: 156,61 @@ -10699,19 +10749,17 @@ entities: 10704: 102,39 14863: 142,44 14973: 129,68 - 15037: 124,53 - 15049: 134,54 15144: 123,68 15178: 135,68 15189: 135,72 15190: 128,69 - 15268: 134,45 - 15269: 134,48 - 15270: 134,51 - 15306: 127,54 - 15336: 129,56 - 15454: 124,62 - 15495: 129,62 + 15518: 127,54 + 15557: 125,62 + 15577: 134,60 + 15626: 134,45 + 15633: 134,49 + 15644: 130,41 + 15650: 134,41 - node: zIndex: 1 color: '#DE3A3A96' @@ -10747,7 +10795,6 @@ entities: 7051: 146,130 7211: 120,25 7221: 120,19 - 14009: 89,121 14034: 96,127 - node: zIndex: 1 @@ -10802,7 +10849,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 6157: 68,116 - 14007: 87,121 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -10925,7 +10971,6 @@ entities: 3314: 144,48 3318: 151,55 3321: 152,49 - 3388: 122,46 3422: 151,60 3446: 151,66 10620: 90,45 @@ -10936,17 +10981,14 @@ entities: 14905: 136,51 14930: 131,64 14985: 125,68 - 15036: 122,53 - 15048: 133,54 15145: 121,68 15174: 131,68 15182: 131,72 15191: 126,69 - 15265: 126,45 - 15266: 126,48 - 15267: 126,51 - 15341: 124,56 - 15455: 122,62 + 15523: 129,53 + 15560: 122,62 + 15645: 128,41 + 15646: 132,41 - node: zIndex: 1 color: '#DE3A3A96' @@ -10984,6 +11026,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 10177: 96,158 + 15826: 91,121 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale270 @@ -11146,7 +11189,6 @@ entities: 3234: 149,72 3316: 150,53 3317: 155,58 - 3390: 124,51 3408: 144,74 3441: 154,74 3460: 145,67 @@ -11156,25 +11198,20 @@ entities: 10679: 103,48 10695: 99,48 14861: 142,49 - 14972: 129,66 14978: 129,74 - 15023: 131,50 - 15028: 131,47 - 15056: 134,59 15149: 123,75 15177: 135,70 15187: 135,74 15193: 128,73 - 15247: 128,46 - 15248: 128,49 - 15249: 128,52 - 15262: 134,52 - 15263: 134,49 - 15264: 134,46 - 15335: 129,58 - 15456: 124,61 - 15473: 124,66 - 15493: 129,60 + 15546: 125,59 + 15565: 125,66 + 15578: 134,62 + 15588: 133,57 + 15595: 129,66 + 15628: 134,47 + 15631: 134,51 + 15649: 134,43 + 15655: 130,43 - node: zIndex: 1 color: '#DE3A3A96' @@ -11192,7 +11229,6 @@ entities: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 811: 89,123 954: 123,156 1053: 112,152 1057: 119,152 @@ -11895,12 +11931,15 @@ entities: 14274: 82,61 14275: 83,61 14501: 29,69 - 15220: 129,54 - 15221: 130,54 - 15222: 131,54 15223: 139,63 15224: 138,63 15225: 137,63 + 15656: 124,53 + 15657: 123,53 + 15658: 122,53 + 15659: 133,52 + 15660: 132,52 + 15661: 131,52 - node: zIndex: 1 color: '#FFFFFFFF' @@ -12161,12 +12200,15 @@ entities: 14271: 84,49 14272: 83,61 14273: 82,61 - 15226: 129,54 - 15227: 131,54 - 15228: 130,54 15229: 137,63 15230: 138,63 15231: 139,63 + 15662: 131,52 + 15663: 132,52 + 15664: 133,52 + 15665: 124,53 + 15666: 123,53 + 15667: 122,53 - node: zIndex: 1 color: '#FFFFFFFF' @@ -12214,6 +12256,7 @@ entities: 13669: 65,54 14330: 89,57 14450: 108,41 + 15504: 124,49 - node: zIndex: 1 color: '#FFFFFFFF' @@ -12255,6 +12298,7 @@ entities: 14329: 86,57 14454: 104,41 14742: 152,139 + 15510: 122,49 - node: zIndex: 1 color: '#FFFFFFFF' @@ -12292,6 +12336,7 @@ entities: 14421: 141,143 14470: 40,71 14745: 159,137 + 15512: 124,45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -12329,6 +12374,7 @@ entities: 13661: 70,51 13672: 63,51 14328: 86,54 + 15511: 122,45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -12464,6 +12510,9 @@ entities: 14471: 39,70 14743: 159,138 14744: 159,139 + 15505: 124,46 + 15506: 124,47 + 15507: 124,48 - node: zIndex: 1 color: '#FFFFFFFF' @@ -12574,6 +12623,8 @@ entities: 14751: 155,139 14752: 158,139 14753: 157,139 + 15508: 123,49 + 15509: 123,49 - node: zIndex: 1 color: '#FFFFFFFF' @@ -12675,6 +12726,7 @@ entities: 14747: 154,137 14748: 156,137 14749: 157,137 + 15513: 123,45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -12745,6 +12797,9 @@ entities: 14333: 86,56 14740: 152,137 14741: 152,138 + 15514: 122,46 + 15515: 122,47 + 15516: 122,48 - node: zIndex: 1 color: '#FFFFFFFF' @@ -13060,17 +13115,6 @@ entities: id: space decals: 7703: 95.06352,17.901512 - - node: - cleanable: True - color: '#663C0DD3' - id: splatter - decals: - 15292: 132,41 - 15293: 133,42 - 15294: 131,43 - 15295: 130,42 - 15296: 130,41 - 15297: 134,41 - node: cleanable: True color: '#A2764432' @@ -13155,6 +13199,7 @@ entities: 7709: 118.49398,19.071342 - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: SpreaderGrid - type: GravityShake @@ -15561,25 +15606,27 @@ entities: 30,9: 1: 56797 30,10: - 1: 52729 + 1: 16721 30,11: - 1: 56479 + 1: 56529 30,12: 1: 57309 31,9: 1: 30583 31,10: - 1: 56816 + 1: 30576 31,11: - 1: 7617 + 1: 65522 31,12: - 1: 53725 + 1: 65527 32,8: 0: 8995 32,9: 0: 3874 + 32,10: + 1: 30576 32,11: - 1: 61428 + 1: 65522 29,13: 1: 65526 29,14: @@ -15589,7 +15636,7 @@ entities: 29,16: 1: 52974 30,13: - 1: 56792 + 1: 56796 30,14: 1: 56797 30,15: @@ -15597,21 +15644,21 @@ entities: 30,16: 1: 24029 31,13: - 1: 65308 + 1: 65311 31,14: - 1: 65535 + 1: 49151 31,15: - 1: 56671 + 1: 64443 31,16: - 1: 36319 + 1: 35835 32,12: - 1: 65279 + 1: 65528 32,13: - 1: 65263 + 1: 65256 32,14: - 1: 65535 + 1: 12287 32,15: - 1: 15259 + 1: 16383 29,17: 1: 56797 29,18: @@ -15799,20 +15846,19 @@ entities: 1: 4095 32,39: 0: 4592 - 32,10: - 1: 61152 33,9: 0: 36608 33,10: 1: 30576 33,11: - 1: 1904 + 1: 30578 33,12: - 1: 28791 + 1: 30579 34,9: 0: 3840 34,10: - 0: 1800 + 1: 1792 + 0: 8 34,11: 1: 65535 34,12: @@ -15831,11 +15877,11 @@ entities: 36,11: 1: 12287 33,13: - 1: 30215 + 1: 30579 33,14: - 1: 30583 + 1: 1911 33,15: - 1: 1360 + 1: 1911 33,16: 1: 4095 34,13: @@ -16306,6 +16352,7 @@ entities: - type: NavMap - type: BecomesStation id: Convex + - type: ImplicitRoof - uid: 353 components: - type: MetaData @@ -16326,187 +16373,6 @@ entities: rot: -12.566370614359172 rad pos: 127.41155,144.67415 parent: 1 -- proto: ActionToggleInternals - entities: - - uid: 3364 - components: - - type: Transform - parent: 20941 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 20941 - - uid: 19390 - components: - - type: Transform - parent: 329 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 329 - - uid: 26838 - components: - - type: Transform - parent: 19098 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 19098 - - uid: 32012 - components: - - type: Transform - parent: 32011 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 32011 -- proto: ActionToggleJetpack - entities: - - uid: 19389 - components: - - type: Transform - parent: 329 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 329 - - uid: 23342 - components: - - type: Transform - parent: 19098 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 19098 -- proto: ActionToggleLight - entities: - - uid: 59 - components: - - type: Transform - parent: 16136 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 16136 - - uid: 5305 - components: - - type: Transform - parent: 20929 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 20929 - - uid: 12660 - components: - - type: Transform - parent: 36727 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 36727 - - uid: 12661 - components: - - type: Transform - parent: 36726 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 36726 - - uid: 12663 - components: - - type: Transform - parent: 36563 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 36563 - - uid: 13521 - components: - - type: Transform - parent: 13520 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 13520 - - uid: 13523 - components: - - type: Transform - parent: 13522 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 13522 - - uid: 13526 - components: - - type: Transform - parent: 13525 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 13525 - - uid: 18796 - components: - - type: Transform - parent: 20881 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 20881 - - uid: 19386 - components: - - type: Transform - parent: 19385 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 19385 - - uid: 19863 - components: - - type: Transform - parent: 36664 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 36664 - - uid: 20506 - components: - - type: Transform - parent: 22657 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 22657 - - uid: 20855 - components: - - type: Transform - parent: 22658 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 22658 - - uid: 24287 - components: - - type: Transform - parent: 27182 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 27182 - - uid: 26840 - components: - - type: Transform - parent: 19358 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 19358 - - uid: 26940 - components: - - type: Transform - parent: 26939 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 26939 - - uid: 27185 - components: - - type: Transform - parent: 27184 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 27184 - - uid: 27187 - components: - - type: Transform - parent: 27186 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 27186 - - uid: 28191 - components: - - type: Transform - parent: 23071 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 23071 - proto: AirAlarm entities: - uid: 143 @@ -16750,6 +16616,32 @@ entities: - 3110 - 25944 - 4764 + - uid: 6000 + components: + - type: MetaData + name: brig south air alarm + - type: Transform + pos: 134.5,48.5 + parent: 1 + - type: DeviceList + devices: + - 5150 + - 5944 + - 3542 + - 6154 + - 5692 + - 5616 + - 5299 + - 21425 + - 21178 + - 21428 + - 21826 + - 28585 + - 23115 + - 22799 + - 28644 + - 23080 + - 5383 - uid: 6233 components: - type: MetaData @@ -18061,41 +17953,21 @@ entities: - 19820 - 20379 - 379 - - uid: 20502 + - uid: 21321 components: - type: MetaData - name: brig cells air alarm + name: brig visitation air alarm - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,53.5 + pos: 124.5,67.5 parent: 1 - type: DeviceList devices: - - 22604 - - 21612 - - 22484 - - 6058 - - 21203 - - 22727 - - 22718 - - 22716 - - 22607 - - 3062 - - 22623 - - 22828 - - 21179 - - 1697 - - 21180 - - 22576 - - 21297 - - 23065 - - 4077 - - 5268 - - 23040 - 5994 - - 21921 - - 22348 - - 22666 + - 13761 + - 22619 + - 5266 + - 21199 + - 3353 - uid: 22164 components: - type: MetaData @@ -18152,6 +18024,28 @@ entities: - 22225 - 6605 - 6604 + - uid: 22242 + components: + - type: MetaData + name: brig north air alarm + - type: Transform + pos: 132.5,59.5 + parent: 1 + - type: DeviceList + devices: + - 22348 + - 5616 + - 5692 + - 6154 + - 3542 + - 5944 + - 5150 + - 5617 + - 28645 + - 22858 + - 6451 + - 23178 + - 23106 - uid: 22246 components: - type: MetaData @@ -18251,39 +18145,6 @@ entities: - 21760 - 22268 - 21777 - - uid: 22359 - components: - - type: MetaData - name: brig air alarm - - type: Transform - pos: 133.5,60.5 - parent: 1 - - type: DeviceList - devices: - - 6322 - - 21622 - - 22753 - - 22726 - - 22466 - - 5388 - - 6058 - - 21203 - - 22727 - - uid: 22636 - components: - - type: MetaData - name: perma EVA air alarm - - type: Transform - pos: 124.5,52.5 - parent: 1 - - type: DeviceList - devices: - - 5389 - - 22588 - - 22632 - - 22587 - - 5299 - - 5388 - uid: 22914 components: - type: MetaData @@ -18293,13 +18154,15 @@ entities: parent: 1 - type: DeviceList devices: - - 21812 - - 22619 + - 21736 - 5382 - 22610 - - 22789 - - 5999 - - 22155 + - 13761 + - 5994 + - 5617 + - 22348 + - 21894 + - 20502 - uid: 23043 components: - type: MetaData @@ -19424,11 +19287,6 @@ entities: - type: Transform pos: 92.5,61.5 parent: 1 - - uid: 34082 - components: - - type: Transform - pos: 124.5,46.5 - parent: 1 - uid: 34085 components: - type: Transform @@ -19486,6 +19344,27 @@ entities: - type: Transform pos: 53.5,118.5 parent: 1 + - uid: 21317 + components: + - type: MetaData + name: dorm 2 airlock + - type: Transform + pos: 133.5,44.5 + parent: 1 + - uid: 21478 + components: + - type: MetaData + name: dorm 1 airlock + - type: Transform + pos: 129.5,44.5 + parent: 1 + - uid: 27656 + components: + - type: MetaData + name: bathroom airlock + - type: Transform + pos: 125.5,44.5 + parent: 1 - uid: 28151 components: - type: Transform @@ -21288,7 +21167,7 @@ entities: - uid: 5976 components: - type: MetaData - name: brig entrance glass airlock + name: brig visitation glass airlock - type: Transform rot: -1.5707963267948966 rad pos: 122.5,67.5 @@ -21866,16 +21745,6 @@ entities: - type: Transform pos: 103.5,40.5 parent: 1 -- proto: AirlockMaint - entities: - - uid: 21953 - components: - - type: MetaData - name: brig storage room maintenance access - - type: Transform - rot: 1.5707963267948966 rad - pos: 130.5,44.5 - parent: 1 - proto: AirlockMaintAtmoLocked entities: - uid: 16012 @@ -22489,11 +22358,6 @@ entities: rot: 3.141592653589793 rad pos: 117.5,58.5 parent: 1 - - uid: 28769 - components: - - type: Transform - pos: 123.5,40.5 - parent: 1 - uid: 28920 components: - type: Transform @@ -22560,11 +22424,6 @@ entities: rot: 1.5707963267948966 rad pos: 156.5,77.5 parent: 1 - - uid: 32298 - components: - - type: Transform - pos: 125.5,41.5 - parent: 1 - uid: 32832 components: - type: Transform @@ -22610,11 +22469,6 @@ entities: - type: Transform pos: 119.5,43.5 parent: 1 - - uid: 33311 - components: - - type: Transform - pos: 121.5,41.5 - parent: 1 - uid: 34392 components: - type: Transform @@ -22970,13 +22824,6 @@ entities: parent: 1 - proto: AirlockMaintSecLocked entities: - - uid: 23664 - components: - - type: MetaData - name: brig EVA maintenance access - - type: Transform - pos: 123.5,45.5 - parent: 1 - uid: 23665 components: - type: MetaData @@ -23102,6 +22949,14 @@ entities: - type: Transform pos: 83.5,85.5 parent: 1 + - uid: 2556 + components: + - type: MetaData + name: medical checkpoint glass airlock + - type: Transform + rot: -1.5707963267948966 rad + pos: 114.5,52.5 + parent: 1 - uid: 17765 components: - type: Transform @@ -23253,13 +23108,6 @@ entities: - type: Transform pos: 64.5,99.5 parent: 1 - - uid: 28661 - components: - - type: MetaData - name: medical checkpoint airlock - - type: Transform - pos: 114.5,52.5 - parent: 1 - uid: 31762 components: - type: MetaData @@ -23508,6 +23356,29 @@ entities: - type: Transform pos: 58.5,96.5 parent: 1 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 2839 + components: + - type: MetaData + name: checkpoint glass airlock + - type: Transform + pos: 90.5,113.5 + parent: 1 + - uid: 22591 + components: + - type: MetaData + name: brig entrance glass airlock + - type: Transform + pos: 126.5,65.5 + parent: 1 + - uid: 27487 + components: + - type: MetaData + name: brig glass airlock + - type: Transform + pos: 121.5,50.5 + parent: 1 - proto: AirlockSecurityLawyerLocked entities: - uid: 23352 @@ -23589,13 +23460,6 @@ entities: - type: Transform pos: 150.5,67.5 parent: 1 - - uid: 22979 - components: - - type: MetaData - name: brig EVA airlock - - type: Transform - pos: 123.5,52.5 - parent: 1 - uid: 23543 components: - type: MetaData @@ -23604,20 +23468,6 @@ entities: rot: 1.5707963267948966 rad pos: 155.5,150.5 parent: 1 - - uid: 28227 - components: - - type: MetaData - name: checkpoint airlock - - type: Transform - pos: 90.5,113.5 - parent: 1 - - uid: 28640 - components: - - type: MetaData - name: brig EVA airlock - - type: Transform - pos: 121.5,50.5 - parent: 1 - proto: AirlockServiceGlassLocked entities: - uid: 912 @@ -23628,6 +23478,14 @@ entities: rot: 1.5707963267948966 rad pos: 144.5,126.5 parent: 1 + - uid: 5689 + components: + - type: MetaData + name: news office glass airlock + - type: Transform + rot: 1.5707963267948966 rad + pos: 144.5,120.5 + parent: 1 - uid: 26525 components: - type: Transform @@ -23692,14 +23550,6 @@ entities: - type: Transform pos: 74.5,51.5 parent: 1 - - uid: 29713 - components: - - type: MetaData - name: news office airlock - - type: Transform - rot: 1.5707963267948966 rad - pos: 144.5,120.5 - parent: 1 - proto: AirlockTheatreLocked entities: - uid: 25864 @@ -23921,14 +23771,6 @@ entities: - type: DeviceNetwork deviceLists: - 20336 - - uid: 5999 - components: - - type: Transform - pos: 127.5,64.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22914 - uid: 6205 components: - type: Transform @@ -23937,6 +23779,14 @@ entities: - type: DeviceNetwork deviceLists: - 6269 + - uid: 6451 + components: + - type: Transform + pos: 128.5,56.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 22242 - uid: 8140 components: - type: Transform @@ -24614,6 +24464,22 @@ entities: - type: DeviceNetwork deviceLists: - 20378 + - uid: 20502 + components: + - type: Transform + pos: 128.5,64.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 22914 + - uid: 21199 + components: + - type: Transform + pos: 124.5,64.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 21321 - uid: 21593 components: - type: Transform @@ -24622,14 +24488,6 @@ entities: - type: DeviceNetwork deviceLists: - 1676 - - uid: 21921 - components: - - type: Transform - pos: 130.5,49.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 20502 - uid: 22208 components: - type: Transform @@ -24703,23 +24561,14 @@ entities: - type: DeviceNetwork deviceLists: - 22164 - - uid: 22632 + - uid: 22799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 123.5,48.5 + pos: 128.5,46.5 parent: 1 - type: DeviceNetwork deviceLists: - - 22636 - - uid: 22753 - components: - - type: Transform - pos: 129.5,57.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22359 + - 6000 - uid: 22812 components: - type: Transform @@ -25230,14 +25079,6 @@ entities: rot: -62.83185307179591 rad pos: 46.558414,103.22654 parent: 1 - - type: GasTank - toggleActionEntity: 3364 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 3364 - proto: AltarSpawner entities: - uid: 25492 @@ -25355,14 +25196,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,95.5 parent: 1 - - uid: 4394 - components: - - type: MetaData - name: brig storage room APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,42.5 - parent: 1 - uid: 4596 components: - type: MetaData @@ -25386,6 +25219,21 @@ entities: rot: 1.5707963267948966 rad pos: 137.5,149.5 parent: 1 + - uid: 5982 + components: + - type: MetaData + name: brig south APC + - type: Transform + pos: 128.5,48.5 + parent: 1 + - uid: 6058 + components: + - type: MetaData + name: brig north PC + - type: Transform + rot: 3.141592653589793 rad + pos: 128.5,54.5 + parent: 1 - uid: 6097 components: - type: MetaData @@ -25394,14 +25242,6 @@ entities: rot: 3.141592653589793 rad pos: 90.5,33.5 parent: 1 - - uid: 6313 - components: - - type: MetaData - name: brig cells APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,53.5 - parent: 1 - uid: 6317 components: - type: MetaData @@ -25841,13 +25681,6 @@ entities: - type: Transform pos: 38.5,95.5 parent: 1 - - uid: 21239 - components: - - type: MetaData - name: brig APC - - type: Transform - pos: 130.5,60.5 - parent: 1 - uid: 21742 components: - type: MetaData @@ -25894,12 +25727,13 @@ entities: - type: Transform pos: 142.5,59.5 parent: 1 - - uid: 21826 + - uid: 21841 components: - type: MetaData name: brig entrance APC - type: Transform - pos: 124.5,67.5 + rot: -1.5707963267948966 rad + pos: 130.5,63.5 parent: 1 - uid: 22076 components: @@ -27859,13 +27693,6 @@ entities: - type: Transform pos: 142.5,146.5 parent: 1 -- proto: Basketball - entities: - - uid: 5513 - components: - - type: Transform - pos: 134.5,49.5 - parent: 1 - proto: BeachBall entities: - uid: 27403 @@ -27875,17 +27702,15 @@ entities: parent: 1 - proto: Beaker entities: - - uid: 21531 + - uid: 22484 components: - type: Transform - rot: -18.84955592153876 rad - pos: 126.12195,54.57237 + pos: 125.88372,52.592686 parent: 1 - - uid: 21862 + - uid: 22614 components: - type: Transform - rot: -50.265482457436725 rad - pos: 125.98199,54.801807 + pos: 126.06081,52.832268 parent: 1 - uid: 26351 components: @@ -27921,16 +27746,6 @@ entities: - type: Transform pos: 116.5,47.5 parent: 1 - - uid: 5517 - components: - - type: Transform - pos: 126.5,45.5 - parent: 1 - - uid: 6540 - components: - - type: Transform - pos: 126.5,51.5 - parent: 1 - uid: 13661 components: - type: Transform @@ -27956,35 +27771,35 @@ entities: - type: Transform pos: 144.5,110.5 parent: 1 + - uid: 19463 + components: + - type: Transform + pos: 128.5,43.5 + parent: 1 - uid: 20878 components: - type: Transform pos: 33.5,103.5 parent: 1 - - uid: 21228 + - uid: 21419 components: - type: Transform - pos: 134.5,51.5 + pos: 132.5,43.5 parent: 1 - - uid: 21444 + - uid: 21523 components: - type: Transform - pos: 134.5,48.5 - parent: 1 - - uid: 21857 - components: - - type: Transform - pos: 134.5,45.5 + pos: 128.5,41.5 parent: 1 - uid: 22826 components: - type: Transform pos: 143.5,60.5 parent: 1 - - uid: 22997 + - uid: 23069 components: - type: Transform - pos: 126.5,48.5 + pos: 132.5,41.5 parent: 1 - uid: 26756 components: @@ -28179,41 +27994,27 @@ entities: parent: 1 - proto: BedsheetOrange entities: - - uid: 5516 + - uid: 5468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 134.5,45.5 + rot: 1.5707963267948966 rad + pos: 132.5,41.5 parent: 1 - - uid: 21441 + - uid: 5657 components: - type: Transform - rot: 3.141592653589793 rad - pos: 134.5,51.5 + rot: 1.5707963267948966 rad + pos: 132.5,43.5 parent: 1 - - uid: 21507 + - uid: 21263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 126.5,45.5 + pos: 128.5,43.5 parent: 1 - - uid: 21617 + - uid: 22766 components: - type: Transform - rot: 3.141592653589793 rad - pos: 126.5,51.5 - parent: 1 - - uid: 21858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 134.5,48.5 - parent: 1 - - uid: 21861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 126.5,48.5 + pos: 128.5,41.5 parent: 1 - uid: 29762 components: @@ -28271,24 +28072,16 @@ entities: parent: 1 - proto: Biogenerator entities: - - uid: 5636 + - uid: 5471 components: - type: Transform - pos: 134.5,59.5 + pos: 134.5,54.5 parent: 1 - uid: 27379 components: - type: Transform pos: 101.5,102.5 parent: 1 -- proto: BlankFlag - entities: - - uid: 27726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 125.5,42.5 - parent: 1 - proto: BlastDoor entities: - uid: 4387 @@ -28812,6 +28605,11 @@ entities: - type: Transform pos: 72.5,54.5 parent: 1 + - uid: 5699 + components: + - type: Transform + pos: 127.5,54.5 + parent: 1 - uid: 6477 components: - type: Transform @@ -28837,6 +28635,16 @@ entities: - type: Transform pos: 72.5,53.5 parent: 1 + - uid: 21527 + components: + - type: Transform + pos: 126.5,54.5 + parent: 1 + - uid: 22630 + components: + - type: Transform + pos: 125.5,54.5 + parent: 1 - uid: 23394 components: - type: Transform @@ -29505,10 +29313,11 @@ entities: parent: 1 - proto: Bucket entities: - - uid: 21396 + - uid: 21617 components: - type: Transform - pos: 134.5,56.5 + rot: -182.21237390820767 rad + pos: 129.64557,51.747944 parent: 1 - uid: 26635 components: @@ -29702,6 +29511,12 @@ entities: - type: Transform pos: 123.5,102.5 parent: 1 + - uid: 22726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 126.5,61.5 + parent: 1 - uid: 23276 components: - type: MetaData @@ -30556,11 +30371,6 @@ entities: - type: Transform pos: 88.5,72.5 parent: 1 - - uid: 2955 - components: - - type: Transform - pos: 127.5,62.5 - parent: 1 - uid: 2981 components: - type: Transform @@ -30731,6 +30541,11 @@ entities: - type: Transform pos: 64.5,19.5 parent: 1 + - uid: 3472 + components: + - type: Transform + pos: 128.5,65.5 + parent: 1 - uid: 3482 components: - type: Transform @@ -31066,16 +30881,6 @@ entities: - type: Transform pos: 97.5,64.5 parent: 1 - - uid: 4072 - components: - - type: Transform - pos: 132.5,56.5 - parent: 1 - - uid: 4075 - components: - - type: Transform - pos: 125.5,55.5 - parent: 1 - uid: 4101 components: - type: Transform @@ -31396,6 +31201,11 @@ entities: - type: Transform pos: 155.5,131.5 parent: 1 + - uid: 5276 + components: + - type: Transform + pos: 123.5,54.5 + parent: 1 - uid: 5308 components: - type: Transform @@ -31534,32 +31344,17 @@ entities: - uid: 5470 components: - type: Transform - pos: 130.5,46.5 - parent: 1 - - uid: 5471 - components: - - type: Transform - pos: 130.5,48.5 - parent: 1 - - uid: 5473 - components: - - type: Transform - pos: 130.5,43.5 + pos: 127.5,57.5 parent: 1 - uid: 5474 components: - type: Transform - pos: 125.5,59.5 - parent: 1 - - uid: 5475 - components: - - type: Transform - pos: 123.5,59.5 + pos: 133.5,44.5 parent: 1 - uid: 5476 components: - type: Transform - pos: 123.5,54.5 + pos: 133.5,46.5 parent: 1 - uid: 5499 components: @@ -31571,15 +31366,10 @@ entities: - type: Transform pos: 128.5,92.5 parent: 1 - - uid: 5508 + - uid: 5521 components: - type: Transform - pos: 123.5,57.5 - parent: 1 - - uid: 5509 - components: - - type: Transform - pos: 122.5,65.5 + pos: 133.5,43.5 parent: 1 - uid: 5593 components: @@ -31596,51 +31386,21 @@ entities: - type: Transform pos: 63.5,38.5 parent: 1 - - uid: 5655 + - uid: 5634 components: - type: Transform - pos: 128.5,42.5 - parent: 1 - - uid: 5657 - components: - - type: Transform - pos: 130.5,42.5 + pos: 133.5,45.5 parent: 1 - uid: 5660 components: - type: Transform pos: 123.5,69.5 parent: 1 - - uid: 5685 - components: - - type: Transform - pos: 129.5,51.5 - parent: 1 - - uid: 5686 - components: - - type: Transform - pos: 127.5,48.5 - parent: 1 - - uid: 5687 - components: - - type: Transform - pos: 127.5,51.5 - parent: 1 - - uid: 5688 - components: - - type: Transform - pos: 133.5,48.5 - parent: 1 - uid: 5697 components: - type: Transform pos: 137.5,65.5 parent: 1 - - uid: 5698 - components: - - type: Transform - pos: 128.5,65.5 - parent: 1 - uid: 5701 components: - type: Transform @@ -31676,6 +31436,16 @@ entities: - type: Transform pos: 110.5,45.5 parent: 1 + - uid: 5886 + components: + - type: Transform + pos: 129.5,63.5 + parent: 1 + - uid: 5887 + components: + - type: Transform + pos: 127.5,58.5 + parent: 1 - uid: 5914 components: - type: Transform @@ -31694,12 +31464,17 @@ entities: - uid: 5984 components: - type: Transform - pos: 127.5,63.5 + pos: 133.5,42.5 parent: 1 - - uid: 5985 + - uid: 5986 components: - type: Transform - pos: 127.5,66.5 + pos: 129.5,42.5 + parent: 1 + - uid: 6056 + components: + - type: Transform + pos: 124.5,58.5 parent: 1 - uid: 6075 components: @@ -31721,6 +31496,11 @@ entities: - type: Transform pos: 106.5,35.5 parent: 1 + - uid: 6093 + components: + - type: Transform + pos: 133.5,41.5 + parent: 1 - uid: 6105 components: - type: Transform @@ -31736,6 +31516,16 @@ entities: - type: Transform pos: 91.5,35.5 parent: 1 + - uid: 6131 + components: + - type: Transform + pos: 128.5,63.5 + parent: 1 + - uid: 6206 + components: + - type: Transform + pos: 129.5,41.5 + parent: 1 - uid: 6210 components: - type: Transform @@ -31801,6 +31591,11 @@ entities: - type: Transform pos: 150.5,77.5 parent: 1 + - uid: 6314 + components: + - type: Transform + pos: 119.5,44.5 + parent: 1 - uid: 6323 components: - type: Transform @@ -31816,11 +31611,6 @@ entities: - type: Transform pos: 150.5,86.5 parent: 1 - - uid: 6365 - components: - - type: Transform - pos: 127.5,64.5 - parent: 1 - uid: 6390 components: - type: Transform @@ -31831,15 +31621,10 @@ entities: - type: Transform pos: 159.5,61.5 parent: 1 - - uid: 6401 + - uid: 6406 components: - type: Transform - pos: 131.5,42.5 - parent: 1 - - uid: 6403 - components: - - type: Transform - pos: 129.5,42.5 + pos: 125.5,44.5 parent: 1 - uid: 6430 components: @@ -31881,6 +31666,26 @@ entities: - type: Transform pos: 158.5,47.5 parent: 1 + - uid: 6540 + components: + - type: Transform + pos: 133.5,61.5 + parent: 1 + - uid: 6557 + components: + - type: Transform + pos: 129.5,57.5 + parent: 1 + - uid: 6558 + components: + - type: Transform + pos: 124.5,63.5 + parent: 1 + - uid: 6561 + components: + - type: Transform + pos: 131.5,61.5 + parent: 1 - uid: 6578 components: - type: Transform @@ -32071,6 +31876,16 @@ entities: - type: Transform pos: 165.5,134.5 parent: 1 + - uid: 7988 + components: + - type: Transform + pos: 125.5,50.5 + parent: 1 + - uid: 7997 + components: + - type: Transform + pos: 123.5,41.5 + parent: 1 - uid: 8141 components: - type: Transform @@ -32126,6 +31941,11 @@ entities: - type: Transform pos: 91.5,54.5 parent: 1 + - uid: 8613 + components: + - type: Transform + pos: 129.5,58.5 + parent: 1 - uid: 8638 components: - type: Transform @@ -32311,6 +32131,11 @@ entities: - type: Transform pos: 159.5,113.5 parent: 1 + - uid: 10575 + components: + - type: Transform + pos: 130.5,56.5 + parent: 1 - uid: 10719 components: - type: Transform @@ -32326,6 +32151,11 @@ entities: - type: Transform pos: 88.5,39.5 parent: 1 + - uid: 10753 + components: + - type: Transform + pos: 125.5,46.5 + parent: 1 - uid: 10791 components: - type: Transform @@ -33441,6 +33271,16 @@ entities: - type: Transform pos: 152.5,99.5 parent: 1 + - uid: 12420 + components: + - type: Transform + pos: 126.5,65.5 + parent: 1 + - uid: 12432 + components: + - type: Transform + pos: 123.5,58.5 + parent: 1 - uid: 12476 components: - type: Transform @@ -37066,6 +36906,16 @@ entities: - type: Transform pos: 73.5,154.5 parent: 1 + - uid: 15972 + components: + - type: Transform + pos: 125.5,48.5 + parent: 1 + - uid: 15977 + components: + - type: Transform + pos: 124.5,50.5 + parent: 1 - uid: 16008 components: - type: Transform @@ -39816,6 +39666,11 @@ entities: - type: Transform pos: 49.5,98.5 parent: 1 + - uid: 19357 + components: + - type: Transform + pos: 123.5,65.5 + parent: 1 - uid: 19396 components: - type: Transform @@ -41391,10 +41246,10 @@ entities: - type: Transform pos: 153.5,150.5 parent: 1 - - uid: 21183 + - uid: 21179 components: - type: Transform - pos: 130.5,51.5 + pos: 130.5,63.5 parent: 1 - uid: 21186 components: @@ -41416,70 +41271,25 @@ entities: - type: Transform pos: 131.5,73.5 parent: 1 - - uid: 21205 + - uid: 21194 components: - type: Transform - pos: 129.5,48.5 + pos: 125.5,65.5 parent: 1 - - uid: 21206 + - uid: 21203 components: - type: Transform - pos: 128.5,48.5 - parent: 1 - - uid: 21207 - components: - - type: Transform - pos: 128.5,51.5 - parent: 1 - - uid: 21208 - components: - - type: Transform - pos: 123.5,58.5 - parent: 1 - - uid: 21209 - components: - - type: Transform - pos: 124.5,55.5 - parent: 1 - - uid: 21210 - components: - - type: Transform - pos: 123.5,56.5 - parent: 1 - - uid: 21227 - components: - - type: Transform - pos: 123.5,55.5 - parent: 1 - - uid: 21229 - components: - - type: Transform - pos: 124.5,59.5 - parent: 1 - - uid: 21230 - components: - - type: Transform - pos: 129.5,45.5 - parent: 1 - - uid: 21231 - components: - - type: Transform - pos: 130.5,47.5 - parent: 1 - - uid: 21232 - components: - - type: Transform - pos: 130.5,45.5 + pos: 123.5,63.5 parent: 1 - uid: 21241 components: - type: Transform - pos: 132.5,58.5 + pos: 132.5,54.5 parent: 1 - - uid: 21243 + - uid: 21245 components: - type: Transform - pos: 133.5,58.5 + pos: 132.5,55.5 parent: 1 - uid: 21247 components: @@ -41496,20 +41306,20 @@ entities: - type: Transform pos: 122.5,69.5 parent: 1 - - uid: 21254 + - uid: 21256 components: - type: Transform - pos: 126.5,56.5 + pos: 128.5,54.5 parent: 1 - uid: 21296 components: - type: Transform pos: 134.5,69.5 parent: 1 - - uid: 21320 + - uid: 21300 components: - type: Transform - pos: 130.5,50.5 + pos: 123.5,55.5 parent: 1 - uid: 21382 components: @@ -41526,75 +41336,60 @@ entities: - type: Transform pos: 51.5,74.5 parent: 1 + - uid: 21412 + components: + - type: Transform + pos: 125.5,63.5 + parent: 1 + - uid: 21430 + components: + - type: Transform + pos: 129.5,56.5 + parent: 1 + - uid: 21479 + components: + - type: Transform + pos: 129.5,65.5 + parent: 1 + - uid: 21486 + components: + - type: Transform + pos: 128.5,62.5 + parent: 1 + - uid: 21489 + components: + - type: Transform + pos: 124.5,56.5 + parent: 1 - uid: 21499 components: - type: Transform pos: 143.5,56.5 parent: 1 - - uid: 21518 + - uid: 21501 components: - type: Transform - pos: 127.5,65.5 + pos: 129.5,61.5 parent: 1 - - uid: 21519 + - uid: 21531 components: - type: Transform - pos: 131.5,45.5 + pos: 124.5,43.5 parent: 1 - - uid: 21520 + - uid: 21577 components: - type: Transform - pos: 128.5,45.5 - parent: 1 - - uid: 21521 - components: - - type: Transform - pos: 126.5,59.5 - parent: 1 - - uid: 21522 - components: - - type: Transform - pos: 130.5,55.5 - parent: 1 - - uid: 21523 - components: - - type: Transform - pos: 129.5,59.5 - parent: 1 - - uid: 21524 - components: - - type: Transform - pos: 130.5,60.5 - parent: 1 - - uid: 21525 - components: - - type: Transform - pos: 130.5,58.5 - parent: 1 - - uid: 21572 - components: - - type: Transform - pos: 123.5,65.5 - parent: 1 - - uid: 21576 - components: - - type: Transform - pos: 122.5,66.5 + pos: 123.5,51.5 parent: 1 - uid: 21585 components: - type: Transform pos: 52.5,74.5 parent: 1 - - uid: 21594 + - uid: 21595 components: - type: Transform - pos: 126.5,55.5 - parent: 1 - - uid: 21599 - components: - - type: Transform - pos: 133.5,56.5 + pos: 123.5,50.5 parent: 1 - uid: 21600 components: @@ -41604,7 +41399,7 @@ entities: - uid: 21618 components: - type: Transform - pos: 131.5,48.5 + pos: 124.5,65.5 parent: 1 - uid: 21619 components: @@ -41626,31 +41421,16 @@ entities: - type: Transform pos: 154.5,99.5 parent: 1 + - uid: 21732 + components: + - type: Transform + pos: 128.5,64.5 + parent: 1 - uid: 21743 components: - type: Transform pos: 122.5,75.5 parent: 1 - - uid: 21755 - components: - - type: Transform - pos: 129.5,53.5 - parent: 1 - - uid: 21756 - components: - - type: Transform - pos: 130.5,52.5 - parent: 1 - - uid: 21787 - components: - - type: Transform - pos: 133.5,57.5 - parent: 1 - - uid: 21788 - components: - - type: Transform - pos: 133.5,51.5 - parent: 1 - uid: 21789 components: - type: Transform @@ -41666,65 +41446,50 @@ entities: - type: Transform pos: 127.5,73.5 parent: 1 - - uid: 21799 + - uid: 21793 components: - type: Transform - pos: 123.5,46.5 - parent: 1 - - uid: 21800 - components: - - type: Transform - pos: 123.5,47.5 - parent: 1 - - uid: 21801 - components: - - type: Transform - pos: 123.5,49.5 + pos: 129.5,45.5 parent: 1 - uid: 21802 components: - type: Transform - pos: 123.5,50.5 + pos: 123.5,57.5 parent: 1 - uid: 21803 components: - type: Transform - pos: 123.5,51.5 + pos: 125.5,49.5 parent: 1 - uid: 21804 components: - type: Transform - pos: 123.5,52.5 + pos: 125.5,42.5 parent: 1 - uid: 21806 components: - type: Transform pos: 133.5,73.5 parent: 1 - - uid: 21807 - components: - - type: Transform - pos: 123.5,48.5 - parent: 1 - - uid: 21810 - components: - - type: Transform - pos: 122.5,50.5 - parent: 1 - uid: 21817 components: - type: Transform - pos: 133.5,42.5 + pos: 122.5,66.5 parent: 1 - - uid: 21825 + - uid: 21819 components: - type: Transform - pos: 124.5,67.5 + pos: 132.5,56.5 parent: 1 - - uid: 21827 + - uid: 21820 components: - type: Transform - pos: 124.5,66.5 + pos: 132.5,61.5 + parent: 1 + - uid: 21831 + components: + - type: Transform + pos: 125.5,43.5 parent: 1 - uid: 21846 components: @@ -41756,50 +41521,85 @@ entities: - type: Transform pos: 138.5,55.5 parent: 1 + - uid: 21854 + components: + - type: Transform + pos: 125.5,41.5 + parent: 1 - uid: 21855 components: - type: Transform pos: 139.5,55.5 parent: 1 + - uid: 21856 + components: + - type: Transform + pos: 125.5,56.5 + parent: 1 + - uid: 21857 + components: + - type: Transform + pos: 130.5,61.5 + parent: 1 + - uid: 21858 + components: + - type: Transform + pos: 127.5,63.5 + parent: 1 + - uid: 21860 + components: + - type: Transform + pos: 122.5,50.5 + parent: 1 + - uid: 21861 + components: + - type: Transform + pos: 123.5,56.5 + parent: 1 + - uid: 21868 + components: + - type: Transform + pos: 128.5,61.5 + parent: 1 + - uid: 21875 + components: + - type: Transform + pos: 126.5,63.5 + parent: 1 + - uid: 21884 + components: + - type: Transform + pos: 122.5,65.5 + parent: 1 + - uid: 21888 + components: + - type: Transform + pos: 124.5,41.5 + parent: 1 + - uid: 21895 + components: + - type: Transform + pos: 134.5,61.5 + parent: 1 - uid: 21900 components: - type: Transform - pos: 125.5,64.5 - parent: 1 - - uid: 21908 - components: - - type: Transform - pos: 130.5,53.5 + pos: 125.5,45.5 parent: 1 - uid: 21909 components: - type: Transform pos: 127.5,69.5 parent: 1 - - uid: 21911 - components: - - type: Transform - pos: 130.5,59.5 - parent: 1 - uid: 21913 components: - type: Transform pos: 126.5,73.5 parent: 1 - - uid: 21914 - components: - - type: Transform - pos: 128.5,59.5 - parent: 1 - uid: 21915 components: - type: Transform - pos: 132.5,51.5 - parent: 1 - - uid: 21916 - components: - - type: Transform - pos: 132.5,48.5 + pos: 124.5,64.5 parent: 1 - uid: 21917 components: @@ -41811,15 +41611,10 @@ entities: - type: Transform pos: 134.5,70.5 parent: 1 - - uid: 21919 + - uid: 21921 components: - type: Transform - pos: 132.5,45.5 - parent: 1 - - uid: 21922 - components: - - type: Transform - pos: 133.5,45.5 + pos: 126.5,56.5 parent: 1 - uid: 21923 components: @@ -41869,23 +41664,13 @@ entities: - uid: 21943 components: - type: Transform - pos: 124.5,65.5 - parent: 1 - - uid: 21946 - components: - - type: Transform - pos: 127.5,45.5 + pos: 125.5,47.5 parent: 1 - uid: 21947 components: - type: Transform pos: 132.5,73.5 parent: 1 - - uid: 21955 - components: - - type: Transform - pos: 128.5,53.5 - parent: 1 - uid: 21956 components: - type: Transform @@ -42211,11 +41996,6 @@ entities: - type: Transform pos: 145.5,51.5 parent: 1 - - uid: 22026 - components: - - type: Transform - pos: 132.5,42.5 - parent: 1 - uid: 22027 components: - type: Transform @@ -42581,6 +42361,16 @@ entities: - type: Transform pos: 145.5,72.5 parent: 1 + - uid: 22126 + components: + - type: Transform + pos: 123.5,43.5 + parent: 1 + - uid: 22129 + components: + - type: Transform + pos: 128.5,66.5 + parent: 1 - uid: 22139 components: - type: Transform @@ -42636,30 +42426,35 @@ entities: - type: Transform pos: 139.5,51.5 parent: 1 - - uid: 22157 + - uid: 22162 components: - type: Transform - pos: 130.5,49.5 + pos: 129.5,43.5 parent: 1 - uid: 22249 components: - type: Transform pos: 132.5,69.5 parent: 1 - - uid: 22277 - components: - - type: Transform - pos: 127.5,59.5 - parent: 1 - uid: 22353 components: - type: Transform - pos: 129.5,56.5 + pos: 129.5,44.5 parent: 1 - - uid: 22356 + - uid: 22357 components: - type: Transform - pos: 127.5,56.5 + pos: 127.5,65.5 + parent: 1 + - uid: 22467 + components: + - type: Transform + pos: 126.5,50.5 + parent: 1 + - uid: 22469 + components: + - type: Transform + pos: 127.5,50.5 parent: 1 - uid: 22475 components: @@ -42671,16 +42466,16 @@ entities: - type: Transform pos: 123.5,72.5 parent: 1 - - uid: 22481 - components: - - type: Transform - pos: 129.5,65.5 - parent: 1 - uid: 22495 components: - type: Transform pos: 122.5,68.5 parent: 1 + - uid: 22545 + components: + - type: Transform + pos: 128.5,48.5 + parent: 1 - uid: 22548 components: - type: Transform @@ -42696,6 +42491,16 @@ entities: - type: Transform pos: 105.5,41.5 parent: 1 + - uid: 22607 + components: + - type: Transform + pos: 127.5,56.5 + parent: 1 + - uid: 22617 + components: + - type: Transform + pos: 126.5,46.5 + parent: 1 - uid: 22664 components: - type: Transform @@ -42706,25 +42511,40 @@ entities: - type: Transform pos: 107.5,39.5 parent: 1 - - uid: 22711 + - uid: 22708 components: - type: Transform - pos: 130.5,56.5 + pos: 127.5,46.5 parent: 1 - - uid: 22714 + - uid: 22716 components: - type: Transform - pos: 128.5,56.5 + pos: 128.5,50.5 + parent: 1 + - uid: 22717 + components: + - type: Transform + pos: 129.5,50.5 + parent: 1 + - uid: 22718 + components: + - type: Transform + pos: 130.5,50.5 parent: 1 - uid: 22745 components: - type: Transform pos: 84.5,45.5 parent: 1 - - uid: 22760 + - uid: 22755 components: - type: Transform - pos: 131.5,51.5 + pos: 131.5,50.5 + parent: 1 + - uid: 22761 + components: + - type: Transform + pos: 123.5,52.5 parent: 1 - uid: 22794 components: @@ -42741,6 +42561,11 @@ entities: - type: Transform pos: 121.5,69.5 parent: 1 + - uid: 22832 + components: + - type: Transform + pos: 131.5,56.5 + parent: 1 - uid: 22835 components: - type: Transform @@ -42751,30 +42576,25 @@ entities: - type: Transform pos: 132.5,66.5 parent: 1 - - uid: 22881 + - uid: 22915 components: - type: Transform - pos: 131.5,58.5 - parent: 1 - - uid: 22911 - components: - - type: Transform - pos: 124.5,64.5 + pos: 132.5,48.5 parent: 1 - uid: 22917 components: - type: Transform pos: 83.5,45.5 parent: 1 - - uid: 22934 + - uid: 22923 components: - type: Transform - pos: 131.5,56.5 + pos: 132.5,49.5 parent: 1 - - uid: 22964 + - uid: 22980 components: - type: Transform - pos: 126.5,64.5 + pos: 130.5,46.5 parent: 1 - uid: 22985 components: @@ -42806,6 +42626,11 @@ entities: - type: Transform pos: 125.5,69.5 parent: 1 + - uid: 23034 + components: + - type: Transform + pos: 128.5,56.5 + parent: 1 - uid: 23038 components: - type: Transform @@ -42821,6 +42646,41 @@ entities: - type: Transform pos: 122.5,73.5 parent: 1 + - uid: 23103 + components: + - type: Transform + pos: 132.5,50.5 + parent: 1 + - uid: 23108 + components: + - type: Transform + pos: 128.5,47.5 + parent: 1 + - uid: 23110 + components: + - type: Transform + pos: 131.5,46.5 + parent: 1 + - uid: 23145 + components: + - type: Transform + pos: 132.5,46.5 + parent: 1 + - uid: 23172 + components: + - type: Transform + pos: 128.5,46.5 + parent: 1 + - uid: 23177 + components: + - type: Transform + pos: 132.5,47.5 + parent: 1 + - uid: 23180 + components: + - type: Transform + pos: 132.5,51.5 + parent: 1 - uid: 23204 components: - type: Transform @@ -42851,6 +42711,11 @@ entities: - type: Transform pos: 95.5,48.5 parent: 1 + - uid: 23290 + components: + - type: Transform + pos: 129.5,46.5 + parent: 1 - uid: 23309 components: - type: Transform @@ -46586,6 +46451,16 @@ entities: - type: Transform pos: 116.5,58.5 parent: 1 + - uid: 27481 + components: + - type: Transform + pos: 128.5,55.5 + parent: 1 + - uid: 27484 + components: + - type: Transform + pos: 132.5,53.5 + parent: 1 - uid: 27500 components: - type: Transform @@ -47326,11 +47201,6 @@ entities: - type: Transform pos: 64.5,63.5 parent: 1 - - uid: 27812 - components: - - type: Transform - pos: 125.5,43.5 - parent: 1 - uid: 27859 components: - type: Transform @@ -48926,41 +48796,6 @@ entities: - type: Transform pos: 119.5,45.5 parent: 1 - - uid: 28707 - components: - - type: Transform - pos: 120.5,45.5 - parent: 1 - - uid: 28708 - components: - - type: Transform - pos: 120.5,44.5 - parent: 1 - - uid: 28709 - components: - - type: Transform - pos: 121.5,44.5 - parent: 1 - - uid: 28710 - components: - - type: Transform - pos: 122.5,44.5 - parent: 1 - - uid: 28711 - components: - - type: Transform - pos: 123.5,44.5 - parent: 1 - - uid: 28712 - components: - - type: Transform - pos: 124.5,44.5 - parent: 1 - - uid: 28713 - components: - - type: Transform - pos: 124.5,43.5 - parent: 1 - uid: 28748 components: - type: Transform @@ -51596,21 +51431,6 @@ entities: - type: Transform pos: 61.5,44.5 parent: 1 - - uid: 32300 - components: - - type: Transform - pos: 125.5,41.5 - parent: 1 - - uid: 32301 - components: - - type: Transform - pos: 126.5,41.5 - parent: 1 - - uid: 32302 - components: - - type: Transform - pos: 127.5,41.5 - parent: 1 - uid: 32316 components: - type: Transform @@ -52446,26 +52266,6 @@ entities: - type: Transform pos: 117.5,21.5 parent: 1 - - uid: 33141 - components: - - type: Transform - pos: 124.5,42.5 - parent: 1 - - uid: 33142 - components: - - type: Transform - pos: 124.5,41.5 - parent: 1 - - uid: 33143 - components: - - type: Transform - pos: 123.5,41.5 - parent: 1 - - uid: 33144 - components: - - type: Transform - pos: 122.5,41.5 - parent: 1 - uid: 33145 components: - type: Transform @@ -69891,11 +69691,6 @@ entities: - type: Transform pos: 144.5,95.5 parent: 1 - - uid: 1746 - components: - - type: Transform - pos: 130.5,52.5 - parent: 1 - uid: 1814 components: - type: Transform @@ -69946,11 +69741,6 @@ entities: - type: Transform pos: 110.5,103.5 parent: 1 - - uid: 2489 - components: - - type: Transform - pos: 130.5,50.5 - parent: 1 - uid: 2502 components: - type: Transform @@ -70171,6 +69961,11 @@ entities: - type: Transform pos: 97.5,64.5 parent: 1 + - uid: 4072 + components: + - type: Transform + pos: 132.5,50.5 + parent: 1 - uid: 4110 components: - type: Transform @@ -70191,6 +69986,11 @@ entities: - type: Transform pos: 99.5,51.5 parent: 1 + - uid: 4199 + components: + - type: Transform + pos: 128.5,66.5 + parent: 1 - uid: 4315 components: - type: Transform @@ -70331,6 +70131,16 @@ entities: - type: Transform pos: 46.5,50.5 parent: 1 + - uid: 5049 + components: + - type: Transform + pos: 135.5,55.5 + parent: 1 + - uid: 5058 + components: + - type: Transform + pos: 135.5,57.5 + parent: 1 - uid: 5095 components: - type: Transform @@ -70361,40 +70171,30 @@ entities: - type: Transform pos: 144.5,148.5 parent: 1 - - uid: 5271 + - uid: 5268 components: - type: Transform - pos: 130.5,49.5 + pos: 135.5,58.5 parent: 1 - uid: 5274 components: - type: Transform pos: 133.5,73.5 parent: 1 - - uid: 5276 + - uid: 5301 components: - type: Transform - pos: 133.5,57.5 + pos: 127.5,57.5 parent: 1 - - uid: 5277 + - uid: 5302 components: - type: Transform - pos: 131.5,40.5 + pos: 131.5,46.5 parent: 1 - - uid: 5278 + - uid: 5303 components: - type: Transform - pos: 130.5,40.5 - parent: 1 - - uid: 5279 - components: - - type: Transform - pos: 135.5,57.5 - parent: 1 - - uid: 5290 - components: - - type: Transform - pos: 135.5,58.5 + pos: 132.5,53.5 parent: 1 - uid: 5343 components: @@ -70466,11 +70266,6 @@ entities: - type: Transform pos: 88.5,54.5 parent: 1 - - uid: 5469 - components: - - type: Transform - pos: 130.5,59.5 - parent: 1 - uid: 5481 components: - type: Transform @@ -70491,6 +70286,26 @@ entities: - type: Transform pos: 97.5,68.5 parent: 1 + - uid: 5509 + components: + - type: Transform + pos: 127.5,60.5 + parent: 1 + - uid: 5512 + components: + - type: Transform + pos: 128.5,63.5 + parent: 1 + - uid: 5513 + components: + - type: Transform + pos: 128.5,64.5 + parent: 1 + - uid: 5516 + components: + - type: Transform + pos: 129.5,63.5 + parent: 1 - uid: 5542 components: - type: Transform @@ -70511,12 +70326,22 @@ entities: - type: Transform pos: 63.5,157.5 parent: 1 - - uid: 5658 + - uid: 5687 components: - type: Transform - pos: 130.5,47.5 + pos: 132.5,47.5 parent: 1 - - uid: 5659 + - uid: 5688 + components: + - type: Transform + pos: 132.5,49.5 + parent: 1 + - uid: 5690 + components: + - type: Transform + pos: 132.5,54.5 + parent: 1 + - uid: 5693 components: - type: Transform pos: 127.5,62.5 @@ -70539,7 +70364,7 @@ entities: - uid: 5787 components: - type: Transform - pos: 128.5,66.5 + pos: 125.5,50.5 parent: 1 - uid: 5791 components: @@ -70559,13 +70384,23 @@ entities: - uid: 5831 components: - type: Transform - pos: 125.5,64.5 + pos: 132.5,52.5 parent: 1 - uid: 5837 components: - type: Transform pos: 60.5,59.5 parent: 1 + - uid: 5889 + components: + - type: Transform + pos: 130.5,46.5 + parent: 1 + - uid: 5894 + components: + - type: Transform + pos: 128.5,46.5 + parent: 1 - uid: 5921 components: - type: Transform @@ -70591,11 +70426,21 @@ entities: - type: Transform pos: 102.5,35.5 parent: 1 + - uid: 5985 + components: + - type: Transform + pos: 132.5,46.5 + parent: 1 - uid: 6031 components: - type: Transform pos: 133.5,123.5 parent: 1 + - uid: 6057 + components: + - type: Transform + pos: 127.5,58.5 + parent: 1 - uid: 6103 components: - type: Transform @@ -70611,11 +70456,51 @@ entities: - type: Transform pos: 139.5,148.5 parent: 1 + - uid: 6152 + components: + - type: Transform + pos: 128.5,47.5 + parent: 1 + - uid: 6162 + components: + - type: Transform + pos: 125.5,48.5 + parent: 1 + - uid: 6163 + components: + - type: Transform + pos: 132.5,55.5 + parent: 1 + - uid: 6165 + components: + - type: Transform + pos: 127.5,63.5 + parent: 1 + - uid: 6166 + components: + - type: Transform + pos: 125.5,49.5 + parent: 1 - uid: 6171 components: - type: Transform pos: 88.5,37.5 parent: 1 + - uid: 6202 + components: + - type: Transform + pos: 132.5,51.5 + parent: 1 + - uid: 6209 + components: + - type: Transform + pos: 132.5,48.5 + parent: 1 + - uid: 6211 + components: + - type: Transform + pos: 127.5,59.5 + parent: 1 - uid: 6215 components: - type: Transform @@ -70631,10 +70516,15 @@ entities: - type: Transform pos: 132.5,66.5 parent: 1 - - uid: 6318 + - uid: 6258 components: - type: Transform - pos: 130.5,45.5 + pos: 127.5,46.5 + parent: 1 + - uid: 6270 + components: + - type: Transform + pos: 130.5,63.5 parent: 1 - uid: 6333 components: @@ -70646,16 +70536,6 @@ entities: - type: Transform pos: 96.5,71.5 parent: 1 - - uid: 6362 - components: - - type: Transform - pos: 127.5,61.5 - parent: 1 - - uid: 6363 - components: - - type: Transform - pos: 130.5,46.5 - parent: 1 - uid: 6369 components: - type: Transform @@ -70666,6 +70546,11 @@ entities: - type: Transform pos: 139.5,86.5 parent: 1 + - uid: 6411 + components: + - type: Transform + pos: 129.5,46.5 + parent: 1 - uid: 6460 components: - type: Transform @@ -70686,10 +70571,10 @@ entities: - type: Transform pos: 158.5,49.5 parent: 1 - - uid: 6581 + - uid: 6582 components: - type: Transform - pos: 126.5,58.5 + pos: 130.5,56.5 parent: 1 - uid: 6644 components: @@ -70896,6 +70781,11 @@ entities: - type: Transform pos: 29.5,79.5 parent: 1 + - uid: 8664 + components: + - type: Transform + pos: 129.5,65.5 + parent: 1 - uid: 8666 components: - type: Transform @@ -75031,6 +74921,11 @@ entities: - type: Transform pos: 155.5,146.5 parent: 1 + - uid: 15976 + components: + - type: Transform + pos: 132.5,56.5 + parent: 1 - uid: 15990 components: - type: Transform @@ -76096,6 +75991,11 @@ entities: - type: Transform pos: 88.5,35.5 parent: 1 + - uid: 18305 + components: + - type: Transform + pos: 123.5,50.5 + parent: 1 - uid: 18349 components: - type: Transform @@ -76941,6 +76841,11 @@ entities: - type: Transform pos: 44.5,110.5 parent: 1 + - uid: 20176 + components: + - type: Transform + pos: 125.5,47.5 + parent: 1 - uid: 20177 components: - type: Transform @@ -77611,6 +77516,11 @@ entities: - type: Transform pos: 36.5,106.5 parent: 1 + - uid: 20505 + components: + - type: Transform + pos: 131.5,56.5 + parent: 1 - uid: 21037 components: - type: Transform @@ -78051,6 +77961,16 @@ entities: - type: Transform pos: 138.5,56.5 parent: 1 + - uid: 21177 + components: + - type: Transform + pos: 123.5,53.5 + parent: 1 + - uid: 21183 + components: + - type: Transform + pos: 127.5,61.5 + parent: 1 - uid: 21188 components: - type: Transform @@ -78071,10 +77991,15 @@ entities: - type: Transform pos: 128.5,70.5 parent: 1 + - uid: 21202 + components: + - type: Transform + pos: 125.5,46.5 + parent: 1 - uid: 21204 components: - type: Transform - pos: 130.5,44.5 + pos: 126.5,46.5 parent: 1 - uid: 21212 components: @@ -78101,21 +78026,21 @@ entities: - type: Transform pos: 138.5,75.5 parent: 1 - - uid: 21219 + - uid: 21223 components: - type: Transform - pos: 128.5,53.5 + pos: 116.5,50.5 + parent: 1 + - uid: 21226 + components: + - type: Transform + pos: 115.5,50.5 parent: 1 - uid: 21248 components: - type: Transform pos: 88.5,44.5 parent: 1 - - uid: 21274 - components: - - type: Transform - pos: 130.5,56.5 - parent: 1 - uid: 21291 components: - type: Transform @@ -78131,11 +78056,6 @@ entities: - type: Transform pos: 130.5,71.5 parent: 1 - - uid: 21303 - components: - - type: Transform - pos: 130.5,51.5 - parent: 1 - uid: 21308 components: - type: Transform @@ -78176,11 +78096,6 @@ entities: - type: Transform pos: 139.5,48.5 parent: 1 - - uid: 21321 - components: - - type: Transform - pos: 130.5,48.5 - parent: 1 - uid: 21322 components: - type: Transform @@ -78476,35 +78391,35 @@ entities: - type: Transform pos: 137.5,143.5 parent: 1 - - uid: 21434 + - uid: 21431 components: - type: Transform - pos: 124.5,66.5 + pos: 129.5,56.5 parent: 1 - - uid: 21435 + - uid: 21503 components: - type: Transform - pos: 124.5,67.5 + pos: 123.5,55.5 parent: 1 - - uid: 21527 + - uid: 21515 components: - type: Transform - pos: 129.5,42.5 + pos: 124.5,50.5 parent: 1 - - uid: 21528 + - uid: 21525 components: - type: Transform - pos: 130.5,43.5 + pos: 129.5,43.5 parent: 1 - uid: 21570 components: - type: Transform pos: 88.5,42.5 parent: 1 - - uid: 21571 + - uid: 21576 components: - type: Transform - pos: 127.5,60.5 + pos: 128.5,54.5 parent: 1 - uid: 21584 components: @@ -78516,26 +78431,6 @@ entities: - type: Transform pos: 133.5,69.5 parent: 1 - - uid: 21613 - components: - - type: Transform - pos: 130.5,53.5 - parent: 1 - - uid: 21614 - components: - - type: Transform - pos: 124.5,58.5 - parent: 1 - - uid: 21620 - components: - - type: Transform - pos: 127.5,64.5 - parent: 1 - - uid: 21623 - components: - - type: Transform - pos: 127.5,59.5 - parent: 1 - uid: 21654 components: - type: Transform @@ -78561,6 +78456,11 @@ entities: - type: Transform pos: 135.5,69.5 parent: 1 + - uid: 21787 + components: + - type: Transform + pos: 129.5,45.5 + parent: 1 - uid: 21791 components: - type: Transform @@ -78571,15 +78471,50 @@ entities: - type: Transform pos: 134.5,70.5 parent: 1 - - uid: 21816 + - uid: 21824 components: - type: Transform - pos: 124.5,65.5 + pos: 128.5,55.5 parent: 1 - - uid: 21885 + - uid: 21825 components: - type: Transform - pos: 129.5,53.5 + pos: 128.5,56.5 + parent: 1 + - uid: 21827 + components: + - type: Transform + pos: 127.5,56.5 + parent: 1 + - uid: 21862 + components: + - type: Transform + pos: 126.5,56.5 + parent: 1 + - uid: 21902 + components: + - type: Transform + pos: 129.5,40.5 + parent: 1 + - uid: 21912 + components: + - type: Transform + pos: 129.5,44.5 + parent: 1 + - uid: 21914 + components: + - type: Transform + pos: 129.5,42.5 + parent: 1 + - uid: 21919 + components: + - type: Transform + pos: 129.5,41.5 + parent: 1 + - uid: 21920 + components: + - type: Transform + pos: 124.5,56.5 parent: 1 - uid: 21924 components: @@ -78616,6 +78551,11 @@ entities: - type: Transform pos: 136.5,73.5 parent: 1 + - uid: 22026 + components: + - type: Transform + pos: 125.5,56.5 + parent: 1 - uid: 22038 components: - type: Transform @@ -78706,11 +78646,6 @@ entities: - type: Transform pos: 145.5,72.5 parent: 1 - - uid: 22131 - components: - - type: Transform - pos: 128.5,42.5 - parent: 1 - uid: 22134 components: - type: Transform @@ -78736,11 +78671,6 @@ entities: - type: Transform pos: 142.5,59.5 parent: 1 - - uid: 22154 - components: - - type: Transform - pos: 130.5,42.5 - parent: 1 - uid: 22161 components: - type: Transform @@ -78749,7 +78679,22 @@ entities: - uid: 22345 components: - type: Transform - pos: 127.5,58.5 + pos: 133.5,40.5 + parent: 1 + - uid: 22350 + components: + - type: Transform + pos: 133.5,41.5 + parent: 1 + - uid: 22375 + components: + - type: Transform + pos: 114.5,50.5 + parent: 1 + - uid: 22390 + components: + - type: Transform + pos: 114.5,52.5 parent: 1 - uid: 22393 components: @@ -78771,30 +78716,35 @@ entities: - type: Transform pos: 136.5,69.5 parent: 1 - - uid: 22501 + - uid: 22576 components: - type: Transform - pos: 130.5,54.5 + pos: 122.5,56.5 parent: 1 - - uid: 22539 + - uid: 22577 components: - type: Transform - pos: 130.5,58.5 + pos: 121.5,56.5 parent: 1 - - uid: 22541 + - uid: 22578 components: - type: Transform - pos: 130.5,55.5 + pos: 121.5,57.5 parent: 1 - - uid: 22565 + - uid: 22580 components: - type: Transform - pos: 130.5,41.5 + pos: 121.5,55.5 parent: 1 - - uid: 22572 + - uid: 22586 components: - type: Transform - pos: 126.5,64.5 + pos: 128.5,48.5 + parent: 1 + - uid: 22588 + components: + - type: Transform + pos: 123.5,56.5 parent: 1 - uid: 22602 components: @@ -78806,21 +78756,6 @@ entities: - type: Transform pos: 133.5,65.5 parent: 1 - - uid: 22617 - components: - - type: Transform - pos: 134.5,57.5 - parent: 1 - - uid: 22618 - components: - - type: Transform - pos: 132.5,40.5 - parent: 1 - - uid: 22625 - components: - - type: Transform - pos: 131.5,57.5 - parent: 1 - uid: 22627 components: - type: Transform @@ -78836,31 +78771,21 @@ entities: - type: Transform pos: 134.5,68.5 parent: 1 - - uid: 22660 + - uid: 22719 components: - type: Transform - pos: 125.5,58.5 + pos: 114.5,51.5 + parent: 1 + - uid: 22725 + components: + - type: Transform + pos: 114.5,53.5 parent: 1 - uid: 22733 components: - type: Transform pos: 134.5,65.5 parent: 1 - - uid: 22743 - components: - - type: Transform - pos: 135.5,55.5 - parent: 1 - - uid: 22763 - components: - - type: Transform - pos: 128.5,58.5 - parent: 1 - - uid: 22766 - components: - - type: Transform - pos: 133.5,40.5 - parent: 1 - uid: 22785 components: - type: Transform @@ -78876,21 +78801,6 @@ entities: - type: Transform pos: 106.5,50.5 parent: 1 - - uid: 22795 - components: - - type: Transform - pos: 121.5,56.5 - parent: 1 - - uid: 22797 - components: - - type: Transform - pos: 123.5,57.5 - parent: 1 - - uid: 22801 - components: - - type: Transform - pos: 129.5,65.5 - parent: 1 - uid: 22806 components: - type: Transform @@ -78901,6 +78811,16 @@ entities: - type: Transform pos: 128.5,75.5 parent: 1 + - uid: 22829 + components: + - type: Transform + pos: 133.5,42.5 + parent: 1 + - uid: 22833 + components: + - type: Transform + pos: 133.5,43.5 + parent: 1 - uid: 22839 components: - type: Transform @@ -78911,25 +78831,10 @@ entities: - type: Transform pos: 141.5,50.5 parent: 1 - - uid: 22857 + - uid: 22859 components: - type: Transform - pos: 130.5,60.5 - parent: 1 - - uid: 22858 - components: - - type: Transform - pos: 129.5,58.5 - parent: 1 - - uid: 22873 - components: - - type: Transform - pos: 128.5,65.5 - parent: 1 - - uid: 22876 - components: - - type: Transform - pos: 127.5,65.5 + pos: 135.5,56.5 parent: 1 - uid: 22878 components: @@ -78941,6 +78846,11 @@ entities: - type: Transform pos: 131.5,65.5 parent: 1 + - uid: 22907 + components: + - type: Transform + pos: 133.5,56.5 + parent: 1 - uid: 22909 components: - type: Transform @@ -78951,60 +78861,40 @@ entities: - type: Transform pos: 136.5,65.5 parent: 1 - - uid: 22912 + - uid: 22962 components: - type: Transform - pos: 127.5,63.5 + pos: 123.5,54.5 parent: 1 - uid: 22976 components: - type: Transform pos: 91.5,53.5 parent: 1 + - uid: 22979 + components: + - type: Transform + pos: 123.5,51.5 + parent: 1 - uid: 22983 components: - type: Transform pos: 84.5,45.5 parent: 1 - - uid: 23030 - components: - - type: Transform - pos: 122.5,57.5 - parent: 1 - uid: 23031 components: - type: Transform - pos: 135.5,56.5 - parent: 1 - - uid: 23032 - components: - - type: Transform - pos: 121.5,57.5 - parent: 1 - - uid: 23033 - components: - - type: Transform - pos: 124.5,57.5 - parent: 1 - - uid: 23034 - components: - - type: Transform - pos: 132.5,57.5 + pos: 128.5,65.5 parent: 1 - uid: 23039 components: - type: Transform pos: 130.5,65.5 parent: 1 - - uid: 23062 + - uid: 23176 components: - type: Transform - pos: 124.5,64.5 - parent: 1 - - uid: 23069 - components: - - type: Transform - pos: 130.5,57.5 + pos: 123.5,52.5 parent: 1 - uid: 23205 components: @@ -79286,6 +79176,11 @@ entities: - type: Transform pos: 160.5,149.5 parent: 1 + - uid: 23664 + components: + - type: Transform + pos: 121.5,54.5 + parent: 1 - uid: 23684 components: - type: Transform @@ -81626,6 +81521,11 @@ entities: - type: Transform pos: 113.5,73.5 parent: 1 + - uid: 25918 + components: + - type: Transform + pos: 138.5,48.5 + parent: 1 - uid: 25957 components: - type: Transform @@ -81706,6 +81606,11 @@ entities: - type: Transform pos: 128.5,109.5 parent: 1 + - uid: 26655 + components: + - type: Transform + pos: 133.5,44.5 + parent: 1 - uid: 26715 components: - type: Transform @@ -81716,6 +81621,11 @@ entities: - type: Transform pos: 125.5,124.5 parent: 1 + - uid: 26825 + components: + - type: Transform + pos: 133.5,45.5 + parent: 1 - uid: 26865 components: - type: Transform @@ -81846,6 +81756,11 @@ entities: - type: Transform pos: 72.5,42.5 parent: 1 + - uid: 27726 + components: + - type: Transform + pos: 134.5,56.5 + parent: 1 - uid: 27758 components: - type: Transform @@ -81911,6 +81826,11 @@ entities: - type: Transform pos: 60.5,65.5 parent: 1 + - uid: 27812 + components: + - type: Transform + pos: 133.5,46.5 + parent: 1 - uid: 27864 components: - type: Transform @@ -82546,51 +82466,11 @@ entities: - type: Transform pos: 135.5,82.5 parent: 1 - - uid: 28682 - components: - - type: Transform - pos: 123.5,52.5 - parent: 1 - - uid: 28683 - components: - - type: Transform - pos: 123.5,51.5 - parent: 1 - - uid: 28684 - components: - - type: Transform - pos: 123.5,50.5 - parent: 1 - - uid: 28686 - components: - - type: Transform - pos: 122.5,50.5 - parent: 1 - - uid: 28687 - components: - - type: Transform - pos: 121.5,50.5 - parent: 1 - - uid: 28688 - components: - - type: Transform - pos: 120.5,50.5 - parent: 1 - - uid: 28689 - components: - - type: Transform - pos: 119.5,50.5 - parent: 1 - uid: 28690 components: - type: Transform pos: 117.5,50.5 parent: 1 - - uid: 28691 - components: - - type: Transform - pos: 118.5,50.5 - parent: 1 - uid: 28692 components: - type: Transform @@ -82611,21 +82491,21 @@ entities: - type: Transform pos: 117.5,46.5 parent: 1 - - uid: 28718 + - uid: 28733 components: - type: Transform - pos: 121.5,48.5 - parent: 1 - - uid: 28719 - components: - - type: Transform - pos: 121.5,49.5 + pos: 137.5,48.5 parent: 1 - uid: 28746 components: - type: Transform pos: 101.5,53.5 parent: 1 + - uid: 28769 + components: + - type: Transform + pos: 137.5,47.5 + parent: 1 - uid: 28777 components: - type: Transform @@ -82646,6 +82526,16 @@ entities: - type: Transform pos: 104.5,65.5 parent: 1 + - uid: 28944 + components: + - type: Transform + pos: 137.5,46.5 + parent: 1 + - uid: 28946 + components: + - type: Transform + pos: 137.5,45.5 + parent: 1 - uid: 29015 components: - type: Transform @@ -82676,6 +82566,11 @@ entities: - type: Transform pos: 102.5,44.5 parent: 1 + - uid: 29162 + components: + - type: Transform + pos: 137.5,44.5 + parent: 1 - uid: 29297 components: - type: Transform @@ -82996,6 +82891,11 @@ entities: - type: Transform pos: 144.5,123.5 parent: 1 + - uid: 29713 + components: + - type: Transform + pos: 137.5,43.5 + parent: 1 - uid: 29740 components: - type: Transform @@ -83281,6 +83181,26 @@ entities: - type: Transform pos: 110.5,154.5 parent: 1 + - uid: 30271 + components: + - type: Transform + pos: 136.5,43.5 + parent: 1 + - uid: 30274 + components: + - type: Transform + pos: 138.5,43.5 + parent: 1 + - uid: 30286 + components: + - type: Transform + pos: 137.5,42.5 + parent: 1 + - uid: 30315 + components: + - type: Transform + pos: 136.5,41.5 + parent: 1 - uid: 30358 components: - type: Transform @@ -83346,11 +83266,21 @@ entities: - type: Transform pos: 132.5,148.5 parent: 1 + - uid: 30509 + components: + - type: Transform + pos: 137.5,41.5 + parent: 1 - uid: 30512 components: - type: Transform pos: 132.5,149.5 parent: 1 + - uid: 30585 + components: + - type: Transform + pos: 138.5,41.5 + parent: 1 - uid: 30617 components: - type: Transform @@ -83366,6 +83296,11 @@ entities: - type: Transform pos: 145.5,114.5 parent: 1 + - uid: 30690 + components: + - type: Transform + pos: 137.5,49.5 + parent: 1 - uid: 30718 components: - type: Transform @@ -83576,6 +83511,11 @@ entities: - type: Transform pos: 52.5,139.5 parent: 1 + - uid: 30989 + components: + - type: Transform + pos: 137.5,50.5 + parent: 1 - uid: 31988 components: - type: Transform @@ -86175,10 +86115,10 @@ entities: parent: 1 - proto: CannabisSeeds entities: - - uid: 21428 + - uid: 23077 components: - type: Transform - pos: 134.5,61.5 + pos: 122.54877,43.513412 parent: 1 - proto: CapacitorStockPart entities: @@ -86263,6 +86203,56 @@ entities: - type: Transform pos: 107.5,38.5 parent: 1 + - uid: 21176 + components: + - type: Transform + pos: 123.5,48.5 + parent: 1 + - uid: 21185 + components: + - type: Transform + pos: 123.5,47.5 + parent: 1 + - uid: 21316 + components: + - type: Transform + pos: 124.5,48.5 + parent: 1 + - uid: 21502 + components: + - type: Transform + pos: 124.5,47.5 + parent: 1 + - uid: 21616 + components: + - type: Transform + pos: 122.5,49.5 + parent: 1 + - uid: 21622 + components: + - type: Transform + pos: 122.5,47.5 + parent: 1 + - uid: 21755 + components: + - type: Transform + pos: 122.5,48.5 + parent: 1 + - uid: 21863 + components: + - type: Transform + pos: 123.5,46.5 + parent: 1 + - uid: 21882 + components: + - type: Transform + pos: 123.5,49.5 + parent: 1 + - uid: 22912 + components: + - type: Transform + pos: 122.5,46.5 + parent: 1 - uid: 23088 components: - type: Transform @@ -89545,6 +89535,11 @@ entities: - type: Transform pos: 147.5,86.5 parent: 1 + - uid: 21229 + components: + - type: Transform + pos: 119.5,44.5 + parent: 1 - uid: 21655 components: - type: Transform @@ -95920,72 +95915,6 @@ entities: rot: 3.141592653589793 rad pos: 119.5,45.5 parent: 1 - - uid: 33854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 120.5,45.5 - parent: 1 - - uid: 33855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 120.5,44.5 - parent: 1 - - uid: 33856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 121.5,44.5 - parent: 1 - - uid: 33857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 122.5,44.5 - parent: 1 - - uid: 33858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 123.5,44.5 - parent: 1 - - uid: 33859 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 124.5,41.5 - parent: 1 - - uid: 33860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 124.5,42.5 - parent: 1 - - uid: 33861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 124.5,43.5 - parent: 1 - - uid: 33862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 124.5,44.5 - parent: 1 - - uid: 33863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 122.5,41.5 - parent: 1 - - uid: 33864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 123.5,41.5 - parent: 1 - uid: 33865 components: - type: Transform @@ -98388,6 +98317,12 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,102.5 parent: 1 + - uid: 6151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 134.5,49.5 + parent: 1 - uid: 6491 components: - type: Transform @@ -99062,15 +98997,23 @@ entities: rot: -1.5707963267948966 rad pos: 149.5,150.5 parent: 1 - - uid: 21200 + - uid: 21249 components: - type: Transform - pos: 123.5,63.5 + rot: -1.5707963267948966 rad + pos: 120.5,55.5 parent: 1 - - uid: 21201 + - uid: 21250 components: - type: Transform - pos: 122.5,63.5 + rot: -1.5707963267948966 rad + pos: 120.5,54.5 + parent: 1 + - uid: 21251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 120.5,57.5 parent: 1 - uid: 21266 components: @@ -99095,28 +99038,23 @@ entities: - type: Transform pos: 139.5,59.5 parent: 1 - - uid: 21432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 124.5,60.5 - parent: 1 - - uid: 21439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 122.5,60.5 - parent: 1 - - uid: 21514 - components: - - type: Transform - pos: 122.5,58.5 - parent: 1 - - uid: 21813 + - uid: 21440 components: - type: Transform rot: -1.5707963267948966 rad - pos: 120.5,54.5 + pos: 130.5,43.5 + parent: 1 + - uid: 21738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 130.5,51.5 + parent: 1 + - uid: 21754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 134.5,43.5 parent: 1 - uid: 21833 components: @@ -99124,18 +99062,6 @@ entities: rot: -1.5707963267948966 rad pos: 140.5,58.5 parent: 1 - - uid: 21842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 120.5,55.5 - parent: 1 - - uid: 21844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 120.5,53.5 - parent: 1 - uid: 21871 components: - type: Transform @@ -99148,22 +99074,16 @@ entities: rot: -1.5707963267948966 rad pos: 140.5,57.5 parent: 1 - - uid: 21894 + - uid: 21896 components: - type: Transform - pos: 123.5,58.5 + pos: 134.5,51.5 parent: 1 - - uid: 21902 + - uid: 22148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 123.5,55.5 - parent: 1 - - uid: 21910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 123.5,60.5 + rot: -1.5707963267948966 rad + pos: 130.5,49.5 parent: 1 - uid: 22681 components: @@ -99212,22 +99132,22 @@ entities: rot: -1.5707963267948966 rad pos: 155.5,62.5 parent: 1 + - uid: 22753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 130.5,50.5 + parent: 1 - uid: 22851 components: - type: Transform rot: 1.5707963267948966 rad pos: 146.5,52.5 parent: 1 - - uid: 22869 + - uid: 22969 components: - type: Transform - pos: 124.5,63.5 - parent: 1 - - uid: 22990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 122.5,55.5 + pos: 130.5,62.5 parent: 1 - uid: 22998 components: @@ -99262,6 +99182,18 @@ entities: rot: -1.5707963267948966 rad pos: 149.5,71.5 parent: 1 + - uid: 23015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 130.5,42.5 + parent: 1 + - uid: 23022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 134.5,42.5 + parent: 1 - uid: 23355 components: - type: Transform @@ -99273,6 +99205,12 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,120.5 parent: 1 + - uid: 23846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 120.5,56.5 + parent: 1 - uid: 23880 components: - type: Transform @@ -100636,14 +100574,6 @@ entities: - type: Transform pos: 168.17188,136.5177 parent: 1 -- proto: ChairGreyscale - entities: - - uid: 32297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 127.5,42.5 - parent: 1 - proto: ChairOfficeDark entities: - uid: 210 @@ -100738,6 +100668,12 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,96.5 parent: 1 + - uid: 6153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 130.5,54.5 + parent: 1 - uid: 6374 components: - type: Transform @@ -101397,6 +101333,12 @@ entities: rot: 3.141592653589793 rad pos: 118.5,107.5 parent: 1 + - uid: 4075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 123.5,46.5 + parent: 1 - uid: 4629 components: - type: Transform @@ -101421,6 +101363,11 @@ entities: rot: 3.141592653589793 rad pos: 96.5,39.5 parent: 1 + - uid: 6559 + components: + - type: Transform + pos: 123.5,49.5 + parent: 1 - uid: 6741 components: - type: Transform @@ -101497,6 +101444,29 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,124.5 parent: 1 + - uid: 21891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 124.5,47.5 + parent: 1 + - uid: 21908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 122.5,46.5 + parent: 1 + - uid: 22581 + components: + - type: Transform + pos: 122.5,49.5 + parent: 1 + - uid: 23298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 124.5,48.5 + parent: 1 - uid: 23789 components: - type: Transform @@ -101642,11 +101612,6 @@ entities: parent: 1 - proto: CheckerBoard entities: - - uid: 5889 - components: - - type: Transform - pos: 126.65437,46.64785 - parent: 1 - uid: 27213 components: - type: Transform @@ -101706,17 +101671,17 @@ entities: - type: Transform pos: 28.472893,102.60607 parent: 1 - - uid: 21440 - components: - - type: Transform - pos: 122.51682,56.691635 - parent: 1 - uid: 27210 components: - type: Transform rot: -75.39822368615505 rad pos: 80.47809,58.50562 parent: 1 + - uid: 28583 + components: + - type: Transform + pos: 134.5,50.5 + parent: 1 - proto: ChurchBell entities: - uid: 26943 @@ -101901,6 +101866,12 @@ entities: - type: Transform pos: 40.739925,74.47635 parent: 1 + - uid: 21818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 129.59018,49.888798 + parent: 1 - uid: 26891 components: - type: Transform @@ -102912,11 +102883,6 @@ entities: - type: Transform pos: 125.5,88.5 parent: 1 - - uid: 30690 - components: - - type: Transform - pos: 122.5,42.5 - parent: 1 - uid: 31844 components: - type: Transform @@ -103455,33 +103421,6 @@ entities: rot: -25.132741228718352 rad pos: 61.578194,97.46602 parent: 1 -- proto: ClothingHeadBandRed - entities: - - uid: 5512 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: 123.61904,57.610954 - parent: 1 - - uid: 22150 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: 123.38293,57.437344 - parent: 1 - - uid: 22250 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: 123.57043,57.333176 - parent: 1 -- proto: ClothingHeadHatBeretFrench - entities: - - uid: 23608 - components: - - type: Transform - pos: 127.20696,43.77549 - parent: 1 - proto: ClothingHeadHatCardborg entities: - uid: 26751 @@ -103533,20 +103472,6 @@ entities: rot: -144.51326206513028 rad pos: 89.715004,61.453438 parent: 1 - - type: HandheldLight - toggleActionEntity: 12660 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 12660 - - type: ActionsContainer - proto: ClothingHeadHatHardhatOrange entities: - uid: 36726 @@ -103555,20 +103480,6 @@ entities: rot: -144.51326206513028 rad pos: 89.277504,61.411774 parent: 1 - - type: HandheldLight - toggleActionEntity: 12661 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 12661 - - type: ActionsContainer - proto: ClothingHeadHatHardhatRed entities: - uid: 36563 @@ -103577,20 +103488,6 @@ entities: rot: -144.51326206513028 rad pos: 89.44417,61.661774 parent: 1 - - type: HandheldLight - toggleActionEntity: 12663 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 12663 - - type: ActionsContainer - proto: ClothingHeadHatMagician entities: - uid: 26681 @@ -103830,10 +103727,10 @@ entities: parent: 1 - proto: ClothingOuterCoatGentle entities: - - uid: 6557 + - uid: 22559 components: - type: Transform - pos: 126.5,52.5 + pos: 132.51215,42.644016 parent: 1 - proto: ClothingOuterCoatRnd entities: @@ -104642,23 +104539,17 @@ entities: rot: 3.141592653589793 rad pos: 37.5,48.5 parent: 1 - - uid: 20432 + - uid: 6659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 148.5,88.5 + pos: 161.5,92.5 parent: 1 - - uid: 21673 + - uid: 31879 components: - type: Transform rot: 1.5707963267948966 rad pos: 146.5,93.5 parent: 1 - - uid: 21682 - components: - - type: Transform - pos: 162.5,92.5 - parent: 1 - proto: ComputerResearchAndDevelopment entities: - uid: 2046 @@ -104710,17 +104601,19 @@ entities: parent: 1 - proto: ComputerSalvageExpedition entities: - - uid: 20401 + - uid: 21682 components: - type: Transform rot: 1.5707963267948966 rad pos: 146.5,94.5 parent: 1 - - uid: 32333 +- proto: ComputerSalvageJobBoard + entities: + - uid: 20401 components: - type: Transform rot: 3.141592653589793 rad - pos: 149.5,88.5 + pos: 148.5,88.5 parent: 1 - proto: ComputerShuttleCargo entities: @@ -104854,6 +104747,11 @@ entities: parent: 1 - proto: ComputerTelevision entities: + - uid: 6118 + components: + - type: Transform + pos: 122.5,45.5 + parent: 1 - uid: 11453 components: - type: Transform @@ -104874,11 +104772,6 @@ entities: - type: Transform pos: 142.5,102.5 parent: 1 - - uid: 21478 - components: - - type: Transform - pos: 126.5,58.5 - parent: 1 - uid: 26591 components: - type: Transform @@ -105666,6 +105559,11 @@ entities: parent: 1 - proto: CrayonBox entities: + - uid: 22544 + components: + - type: Transform + pos: 128.5,42.5 + parent: 1 - uid: 26770 components: - type: Transform @@ -105703,12 +105601,6 @@ entities: rot: -138.2300767579507 rad pos: 54.47016,25.617409 parent: 1 - - uid: 21501 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: 134.49756,43.489326 - parent: 1 - uid: 23775 components: - type: Transform @@ -106013,6 +105905,13 @@ entities: - type: Transform pos: 36.5,57.5 parent: 1 +- proto: DefaultStationBeaconBrig + entities: + - uid: 21620 + components: + - type: Transform + pos: 128.5,51.5 + parent: 1 - proto: DefaultStationBeaconCaptainsQuarters entities: - uid: 13473 @@ -106489,10 +106388,11 @@ entities: parent: 1 - proto: DiceBag entities: - - uid: 6558 + - uid: 22564 components: - type: Transform - pos: 126.5,46.5 + rot: -37.69911184307754 rad + pos: 123.394966,47.951202 parent: 1 - uid: 26902 components: @@ -106564,12 +106464,6 @@ entities: rot: -1.5707963267948966 rad pos: 111.5,50.5 parent: 1 - - uid: 5266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 131.5,58.5 - parent: 1 - uid: 5410 components: - type: Transform @@ -106582,11 +106476,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,114.5 parent: 1 - - uid: 5991 - components: - - type: Transform - pos: 126.5,64.5 - parent: 1 - uid: 6142 components: - type: Transform @@ -106611,12 +106500,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,49.5 parent: 1 - - uid: 8665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 123.5,58.5 - parent: 1 - uid: 10599 components: - type: Transform @@ -107066,11 +106949,16 @@ entities: - type: Transform pos: 122.5,71.5 parent: 1 - - uid: 21226 + - uid: 21287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 131.5,62.5 + rot: 3.141592653589793 rad + pos: 129.5,56.5 + parent: 1 + - uid: 21292 + components: + - type: Transform + pos: 132.5,56.5 parent: 1 - uid: 21385 components: @@ -107078,6 +106966,23 @@ entities: rot: 1.5707963267948966 rad pos: 137.5,144.5 parent: 1 + - uid: 21416 + components: + - type: Transform + pos: 131.5,65.5 + parent: 1 + - uid: 21612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 132.5,46.5 + parent: 1 + - uid: 21613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 122.5,65.5 + parent: 1 - uid: 21659 components: - type: Transform @@ -107090,11 +106995,6 @@ entities: rot: -1.5707963267948966 rad pos: 153.5,108.5 parent: 1 - - uid: 21747 - components: - - type: Transform - pos: 134.5,62.5 - parent: 1 - uid: 21883 components: - type: Transform @@ -107238,11 +107138,17 @@ entities: rot: -1.5707963267948966 rad pos: 129.5,73.5 parent: 1 - - uid: 22769 + - uid: 22795 components: - type: Transform - rot: 3.141592653589793 rad - pos: 122.5,64.5 + rot: 1.5707963267948966 rad + pos: 125.5,46.5 + parent: 1 + - uid: 22797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 125.5,41.5 parent: 1 - uid: 23218 components: @@ -107504,12 +107410,6 @@ entities: rot: -1.5707963267948966 rad pos: 146.5,69.5 parent: 1 - - uid: 31900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 123.5,46.5 - parent: 1 - uid: 33342 components: - type: Transform @@ -107973,6 +107873,12 @@ entities: rot: -1.5707963267948966 rad pos: 143.5,98.5 parent: 1 + - uid: 21246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 125.5,43.5 + parent: 1 - uid: 21683 components: - type: Transform @@ -107996,6 +107902,12 @@ entities: rot: 3.141592653589793 rad pos: 103.5,106.5 parent: 1 + - uid: 28652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 129.5,65.5 + parent: 1 - uid: 28962 components: - type: Transform @@ -108124,8 +108036,8 @@ entities: - uid: 4499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 125.5,64.5 + rot: 1.5707963267948966 rad + pos: 125.5,65.5 parent: 1 - uid: 4693 components: @@ -108143,6 +108055,12 @@ entities: - type: Transform pos: 95.5,48.5 parent: 1 + - uid: 4824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 124.5,65.5 + parent: 1 - uid: 4900 components: - type: Transform @@ -108161,6 +108079,12 @@ entities: rot: 1.5707963267948966 rad pos: 126.5,73.5 parent: 1 + - uid: 5300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 126.5,65.5 + parent: 1 - uid: 5403 components: - type: Transform @@ -108173,17 +108097,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,53.5 parent: 1 - - uid: 5617 - components: - - type: Transform - pos: 131.5,61.5 - parent: 1 - - uid: 5634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 133.5,62.5 - parent: 1 - uid: 5683 components: - type: Transform @@ -108225,16 +108138,6 @@ entities: rot: 1.5707963267948966 rad pos: 137.5,46.5 parent: 1 - - uid: 6312 - components: - - type: Transform - pos: 126.5,59.5 - parent: 1 - - uid: 6324 - components: - - type: Transform - pos: 123.5,54.5 - parent: 1 - uid: 6335 components: - type: Transform @@ -108253,6 +108156,11 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,57.5 parent: 1 + - uid: 6516 + components: + - type: Transform + pos: 132.5,49.5 + parent: 1 - uid: 6531 components: - type: Transform @@ -108281,6 +108189,12 @@ entities: - type: Transform pos: 82.5,57.5 parent: 1 + - uid: 7989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 123.5,41.5 + parent: 1 - uid: 8012 components: - type: Transform @@ -111102,6 +111016,12 @@ entities: rot: -1.5707963267948966 rad pos: 147.5,77.5 parent: 1 + - uid: 18404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 123.5,43.5 + parent: 1 - uid: 18407 components: - type: Transform @@ -112946,51 +112866,46 @@ entities: rot: -1.5707963267948966 rad pos: 126.5,72.5 parent: 1 - - uid: 21223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,62.5 - parent: 1 - uid: 21240 components: - type: Transform rot: 1.5707963267948966 rad pos: 137.5,52.5 parent: 1 - - uid: 21245 + - uid: 21254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,58.5 - parent: 1 - - uid: 21246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 130.5,58.5 - parent: 1 - - uid: 21249 - components: - - type: Transform - rot: 1.5707963267948966 rad + rot: 3.141592653589793 rad pos: 129.5,58.5 parent: 1 - - uid: 21259 + - uid: 21255 components: - type: Transform - pos: 123.5,56.5 + rot: -1.5707963267948966 rad + pos: 131.5,56.5 parent: 1 - uid: 21262 components: - type: Transform - pos: 131.5,59.5 + rot: -1.5707963267948966 rad + pos: 130.5,56.5 parent: 1 - - uid: 21287 + - uid: 21265 components: - type: Transform rot: 1.5707963267948966 rad - pos: 127.5,58.5 + pos: 127.5,65.5 + parent: 1 + - uid: 21282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 130.5,65.5 + parent: 1 + - uid: 21303 + components: + - type: Transform + pos: 132.5,51.5 parent: 1 - uid: 21318 components: @@ -113032,6 +112947,11 @@ entities: rot: -1.5707963267948966 rad pos: 123.5,72.5 parent: 1 + - uid: 21520 + components: + - type: Transform + pos: 132.5,47.5 + parent: 1 - uid: 21534 components: - type: Transform @@ -113054,6 +112974,11 @@ entities: rot: 1.5707963267948966 rad pos: 138.5,51.5 parent: 1 + - uid: 21610 + components: + - type: Transform + pos: 122.5,66.5 + parent: 1 - uid: 21651 components: - type: Transform @@ -113084,11 +113009,17 @@ entities: rot: 3.141592653589793 rad pos: 149.5,97.5 parent: 1 - - uid: 21748 + - uid: 21737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 122.5,65.5 + rot: 1.5707963267948966 rad + pos: 131.5,46.5 + parent: 1 + - uid: 21740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 129.5,46.5 parent: 1 - uid: 21750 components: @@ -113126,11 +113057,17 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,63.5 parent: 1 - - uid: 21793 + - uid: 21800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 128.5,46.5 + parent: 1 + - uid: 21801 components: - type: Transform rot: -1.5707963267948966 rad - pos: 123.5,64.5 + pos: 124.5,43.5 parent: 1 - uid: 21809 components: @@ -113150,11 +113087,11 @@ entities: rot: 3.141592653589793 rad pos: 122.5,67.5 parent: 1 - - uid: 21852 + - uid: 21836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 122.5,66.5 + rot: -1.5707963267948966 rad + pos: 124.5,41.5 parent: 1 - uid: 21872 components: @@ -113168,10 +113105,11 @@ entities: rot: -1.5707963267948966 rad pos: 122.5,72.5 parent: 1 - - uid: 21884 + - uid: 21901 components: - type: Transform - pos: 123.5,57.5 + rot: 1.5707963267948966 rad + pos: 126.5,46.5 parent: 1 - uid: 21945 components: @@ -113191,12 +113129,24 @@ entities: rot: 1.5707963267948966 rad pos: 96.5,50.5 parent: 1 + - uid: 22094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 125.5,44.5 + parent: 1 - uid: 22102 components: - type: Transform rot: 1.5707963267948966 rad pos: 145.5,98.5 parent: 1 + - uid: 22147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 125.5,45.5 + parent: 1 - uid: 22176 components: - type: Transform @@ -113227,6 +113177,12 @@ entities: rot: -1.5707963267948966 rad pos: 91.5,52.5 parent: 1 + - uid: 22277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 127.5,46.5 + parent: 1 - uid: 22281 components: - type: Transform @@ -113522,10 +113478,16 @@ entities: rot: 3.141592653589793 rad pos: 127.5,94.5 parent: 1 - - uid: 22357 + - uid: 22351 components: - type: Transform - pos: 123.5,55.5 + pos: 125.5,42.5 + parent: 1 + - uid: 22352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 130.5,46.5 parent: 1 - uid: 22361 components: @@ -113910,6 +113872,11 @@ entities: rot: 3.141592653589793 rad pos: 120.5,74.5 parent: 1 + - uid: 22461 + components: + - type: Transform + pos: 132.5,52.5 + parent: 1 - uid: 22470 components: - type: Transform @@ -113934,6 +113901,12 @@ entities: rot: 1.5707963267948966 rad pos: 128.5,73.5 parent: 1 + - uid: 22474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 129.5,64.5 + parent: 1 - uid: 22478 components: - type: Transform @@ -113988,6 +113961,12 @@ entities: - type: Transform pos: 139.5,75.5 parent: 1 + - uid: 22501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 128.5,65.5 + parent: 1 - uid: 22502 components: - type: Transform @@ -114168,23 +114147,18 @@ entities: - type: Transform pos: 145.5,50.5 parent: 1 + - uid: 22539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 129.5,60.5 + parent: 1 - uid: 22543 components: - type: Transform rot: 3.141592653589793 rad pos: 118.5,59.5 parent: 1 - - uid: 22544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 125.5,58.5 - parent: 1 - - uid: 22545 - components: - - type: Transform - pos: 131.5,60.5 - parent: 1 - uid: 22551 components: - type: Transform @@ -114193,8 +114167,8 @@ entities: - uid: 22553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 124.5,58.5 + rot: 3.141592653589793 rad + pos: 129.5,57.5 parent: 1 - uid: 22562 components: @@ -114273,43 +114247,22 @@ entities: rot: 3.141592653589793 rad pos: 84.5,54.5 parent: 1 - - uid: 22708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 124.5,64.5 - parent: 1 - - uid: 22710 - components: - - type: Transform - pos: 126.5,61.5 - parent: 1 - uid: 22746 components: - type: Transform rot: 1.5707963267948966 rad pos: 122.5,73.5 parent: 1 - - uid: 22755 + - uid: 22759 components: - type: Transform - pos: 126.5,60.5 - parent: 1 - - uid: 22768 - components: - - type: Transform - pos: 126.5,62.5 + pos: 132.5,48.5 parent: 1 - uid: 22779 components: - type: Transform pos: 139.5,47.5 parent: 1 - - uid: 22831 - components: - - type: Transform - pos: 126.5,63.5 - parent: 1 - uid: 22836 components: - type: Transform @@ -114322,16 +114275,55 @@ entities: rot: 1.5707963267948966 rad pos: 124.5,73.5 parent: 1 + - uid: 22857 + components: + - type: Transform + pos: 132.5,50.5 + parent: 1 + - uid: 22869 + components: + - type: Transform + pos: 132.5,53.5 + parent: 1 + - uid: 22873 + components: + - type: Transform + pos: 132.5,54.5 + parent: 1 + - uid: 22874 + components: + - type: Transform + pos: 132.5,55.5 + parent: 1 + - uid: 22884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 129.5,61.5 + parent: 1 - uid: 22893 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,52.5 parent: 1 - - uid: 23010 + - uid: 22908 components: - type: Transform - pos: 123.5,53.5 + rot: 3.141592653589793 rad + pos: 129.5,59.5 + parent: 1 + - uid: 22921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 129.5,62.5 + parent: 1 + - uid: 22946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 129.5,63.5 parent: 1 - uid: 23029 components: @@ -115265,6 +115257,12 @@ entities: rot: -1.5707963267948966 rad pos: 103.5,40.5 parent: 1 + - uid: 25853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 123.5,65.5 + parent: 1 - uid: 26229 components: - type: Transform @@ -117038,38 +117036,6 @@ entities: - type: Transform pos: 146.5,71.5 parent: 1 - - uid: 31899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 123.5,47.5 - parent: 1 - - uid: 31901 - components: - - type: Transform - pos: 123.5,49.5 - parent: 1 - - uid: 31902 - components: - - type: Transform - pos: 123.5,50.5 - parent: 1 - - uid: 31903 - components: - - type: Transform - pos: 123.5,51.5 - parent: 1 - - uid: 31904 - components: - - type: Transform - pos: 123.5,52.5 - parent: 1 - - uid: 31919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 123.5,48.5 - parent: 1 - uid: 32247 components: - type: Transform @@ -118209,17 +118175,29 @@ entities: rot: 1.5707963267948966 rad pos: 136.5,52.5 parent: 1 + - uid: 21424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 131.5,64.5 + parent: 1 - uid: 21578 components: - type: Transform rot: 1.5707963267948966 rad pos: 136.5,46.5 parent: 1 - - uid: 21867 + - uid: 21799 components: - type: Transform - rot: 3.141592653589793 rad - pos: 134.5,61.5 + rot: 1.5707963267948966 rad + pos: 122.5,41.5 + parent: 1 + - uid: 21916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 122.5,43.5 parent: 1 - uid: 22468 components: @@ -118392,12 +118370,6 @@ entities: rot: -1.5707963267948966 rad pos: 152.5,96.5 parent: 1 - - uid: 31922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 122.5,46.5 - parent: 1 - uid: 33418 components: - type: Transform @@ -118681,6 +118653,11 @@ entities: - type: Transform pos: 46.5,95.5 parent: 1 + - uid: 21599 + components: + - type: Transform + pos: 131.5,64.5 + parent: 1 - uid: 22497 components: - type: Transform @@ -118801,11 +118778,6 @@ entities: - type: Transform pos: 54.5,107.5 parent: 1 - - uid: 31923 - components: - - type: Transform - pos: 122.5,46.5 - parent: 1 - uid: 32976 components: - type: Transform @@ -118856,12 +118828,6 @@ entities: - type: Transform pos: 84.5,63.5 parent: 1 - - uid: 22542 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 126.5,58.5 - parent: 1 - uid: 22940 components: - type: Transform @@ -119173,6 +119139,21 @@ entities: - type: Transform pos: 106.24439,106.54091 parent: 1 + - uid: 22481 + components: + - type: Transform + pos: 129.41496,50.90518 + parent: 1 + - uid: 22485 + components: + - type: Transform + pos: 129.60246,50.65518 + parent: 1 + - uid: 22567 + components: + - type: Transform + pos: 129.26913,50.62393 + parent: 1 - uid: 32103 components: - type: Transform @@ -119308,17 +119289,10 @@ entities: parent: 1 - proto: DrinkMilkCarton entities: - - uid: 21952 + - uid: 5830 components: - type: Transform - rot: -31.415926535897945 rad - pos: 129.29666,43.62626 - parent: 1 - - uid: 22147 - components: - - type: Transform - rot: -31.415926535897945 rad - pos: 129.46088,43.496628 + pos: 126.91335,52.77643 parent: 1 - proto: DrinkMug entities: @@ -119991,6 +119965,12 @@ entities: rot: 3.141592653589793 rad pos: 86.5,125.5 parent: 1 + - uid: 21510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 131.5,48.5 + parent: 1 - uid: 21602 components: - type: Transform @@ -120002,12 +119982,6 @@ entities: rot: -1.5707963267948966 rad pos: 129.5,70.5 parent: 1 - - uid: 22343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 131.5,50.5 - parent: 1 - uid: 22344 components: - type: Transform @@ -120020,18 +119994,17 @@ entities: rot: 1.5707963267948966 rad pos: 136.5,53.5 parent: 1 + - uid: 22715 + components: + - type: Transform + pos: 126.5,58.5 + parent: 1 - uid: 22780 components: - type: Transform rot: 3.141592653589793 rad pos: 132.5,76.5 parent: 1 - - uid: 22854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 128.5,55.5 - parent: 1 - uid: 26710 components: - type: Transform @@ -120362,12 +120335,6 @@ entities: - type: Transform pos: 144.5,71.5 parent: 1 - - uid: 27484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 124.5,49.5 - parent: 1 - uid: 27490 components: - type: Transform @@ -120553,6 +120520,17 @@ entities: rot: -1.5707963267948966 rad pos: 129.5,114.5 parent: 1 + - uid: 28653 + components: + - type: Transform + pos: 130.5,62.5 + parent: 1 + - uid: 28654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 125.5,64.5 + parent: 1 - uid: 28752 components: - type: Transform @@ -120876,14 +120854,6 @@ entities: rot: -69.11503837897548 rad pos: 27.586464,121.38221 parent: 1 - - type: GasTank - toggleActionEntity: 32012 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 32012 - proto: ExtinguisherCabinetFilled entities: - uid: 6191 @@ -121040,6 +121010,14 @@ entities: - type: FaxMachine name: Science destinationAddress: Science + - uid: 21239 + components: + - type: Transform + pos: 130.5,53.5 + parent: 1 + - type: FaxMachine + name: Brig + destinationAddress: Brig - uid: 26764 components: - type: Transform @@ -121400,18 +121378,6 @@ entities: - 25714 - 25712 - 25713 - - uid: 8664 - components: - - type: Transform - pos: 125.5,61.5 - parent: 1 - - type: DeviceList - devices: - - 5388 - - 6058 - - 21203 - - 22727 - - 21812 - uid: 10790 components: - type: MetaData @@ -121700,26 +121666,41 @@ entities: - 19751 - 19752 - 1256 - - uid: 21194 + - uid: 21434 components: - type: MetaData - name: brig fire alarm + name: brig south fire alarm - type: Transform rot: 3.141592653589793 rad - pos: 129.5,44.5 + pos: 127.5,44.5 parent: 1 - type: DeviceList devices: - - 22604 - - 21612 - - 22484 - - 6058 - - 21203 - - 22727 - - 22718 - - 22716 - - 22607 - - 3062 + - 5150 + - 5944 + - 3542 + - 6154 + - 5692 + - 5616 + - 5299 + - uid: 21623 + components: + - type: MetaData + name: brig north fire alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: 126.5,59.5 + parent: 1 + - type: DeviceList + devices: + - 22348 + - 5616 + - 5692 + - 6154 + - 3542 + - 5944 + - 5150 + - 5617 - uid: 22163 components: - type: MetaData @@ -122300,7 +122281,6 @@ entities: - 12729 - 12739 - 27649 - - 30509 - proto: FireAxeCabinetFilled entities: - uid: 16214 @@ -122337,66 +122317,38 @@ entities: parent: 1 - proto: FirelockEdge entities: - - uid: 21612 + - uid: 5617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 127.5,58.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 22242 + - 21623 + - 22914 + - uid: 5994 components: - type: Transform rot: -1.5707963267948966 rad - pos: 129.5,48.5 + pos: 127.5,63.5 parent: 1 - type: DeviceNetwork deviceLists: - - 21194 - - 20502 - - uid: 22484 + - 22914 + - 21321 + - uid: 22348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 129.5,51.5 + rot: 3.141592653589793 rad + pos: 129.5,58.5 parent: 1 - type: DeviceNetwork deviceLists: - - 21194 - - 20502 - - uid: 22604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 129.5,45.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 21194 - - 20502 - - uid: 22607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 131.5,45.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 21194 - - 20502 - - uid: 22716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 131.5,48.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 21194 - - 20502 - - uid: 22718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 131.5,51.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 21194 - - 20502 + - 22242 + - 21623 + - 22914 - proto: FirelockGlass entities: - uid: 54 @@ -124201,15 +124153,6 @@ entities: - 17097 - 17013 - 17109 - - uid: 3062 - components: - - type: Transform - pos: 130.5,44.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 21194 - - 20502 - uid: 3066 components: - type: Transform @@ -124382,11 +124325,6 @@ entities: deviceLists: - 17091 - 17093 - - uid: 3320 - components: - - type: Transform - pos: 123.5,40.5 - parent: 1 - uid: 3332 components: - type: Transform @@ -124470,6 +124408,17 @@ entities: deviceLists: - 14597 - 2722 + - uid: 3542 + components: + - type: Transform + pos: 131.5,52.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 + - 21434 + - 22242 + - 21623 - uid: 3550 components: - type: Transform @@ -125315,6 +125264,17 @@ entities: - type: DeviceNetwork deviceLists: - 28638 + - uid: 5150 + components: + - type: Transform + pos: 133.5,52.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 + - 21434 + - 22242 + - 21623 - uid: 5168 components: - type: Transform @@ -125389,8 +125349,9 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 22636 + - 6000 - 28638 + - 21434 - uid: 5327 components: - type: Transform @@ -125470,24 +125431,6 @@ entities: deviceLists: - 6269 - 22914 - - uid: 5388 - components: - - type: Transform - pos: 123.5,52.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22636 - - 22359 - - 8664 - - uid: 5389 - components: - - type: Transform - pos: 123.5,45.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22636 - uid: 5427 components: - type: Transform @@ -125554,6 +125497,17 @@ entities: deviceLists: - 28488 - 28486 + - uid: 5616 + components: + - type: Transform + pos: 122.5,53.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 + - 21434 + - 22242 + - 21623 - uid: 5619 components: - type: Transform @@ -125586,6 +125540,17 @@ entities: - type: DeviceNetwork deviceLists: - 14601 + - uid: 5692 + components: + - type: Transform + pos: 123.5,53.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 + - 21434 + - 22242 + - 21623 - uid: 5711 components: - type: Transform @@ -125750,6 +125715,17 @@ entities: - 18610 - 18630 - 18634 + - uid: 5944 + components: + - type: Transform + pos: 132.5,52.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 + - 21434 + - 22242 + - 21623 - uid: 5992 components: - type: Transform @@ -125834,18 +125810,6 @@ entities: deviceLists: - 22265 - 22267 - - uid: 6058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 129.5,54.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 21194 - - 20502 - - 22359 - - 8664 - uid: 6109 components: - type: Transform @@ -125894,6 +125858,17 @@ entities: - 29826 - 29830 - 10326 + - uid: 6154 + components: + - type: Transform + pos: 124.5,53.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 + - 21434 + - 22242 + - 21623 - uid: 6168 components: - type: Transform @@ -126712,6 +126687,16 @@ entities: - 29481 - 29826 - 29830 + - uid: 13761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 126.5,65.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 22914 + - 21321 - uid: 14493 components: - type: Transform @@ -127153,18 +127138,6 @@ entities: - 28488 - 28486 - 23328 - - uid: 21203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 130.5,54.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 21194 - - 20502 - - 22359 - - 8664 - uid: 21290 components: - type: Transform @@ -127251,16 +127224,6 @@ entities: - 30837 - 18616 - 18615 - - uid: 21812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 126.5,61.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 8664 - - 22914 - uid: 22230 components: - type: Transform @@ -127316,11 +127279,6 @@ entities: deviceLists: - 23043 - 6233 - - uid: 22391 - components: - - type: Transform - pos: 128.5,61.5 - parent: 1 - uid: 22419 components: - type: Transform @@ -127347,21 +127305,9 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 22914 + - 21321 - 28596 - 28597 - - uid: 22727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 131.5,54.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 21194 - - 20502 - - 22359 - - 8664 - uid: 22818 components: - type: Transform @@ -128140,14 +128086,6 @@ entities: - type: DeviceNetwork deviceLists: - 23351 - - uid: 30509 - components: - - type: Transform - pos: 121.5,41.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 33285 - uid: 30559 components: - type: Transform @@ -128485,40 +128423,12 @@ entities: rot: -18.84955592153876 rad pos: 93.96867,121.46261 parent: 1 - - type: HandheldLight - toggleActionEntity: 59 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 59 - - type: ActionsContainer - uid: 36664 components: - type: Transform rot: -144.51326206513028 rad pos: 94.45459,60.995117 parent: 1 - - type: HandheldLight - toggleActionEntity: 19863 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 19863 - - type: ActionsContainer - proto: FlashlightSeclite entities: - uid: 15306 @@ -128532,40 +128442,12 @@ entities: rot: -251.32741228718288 rad pos: 153.14178,58.45595 parent: 1 - - type: HandheldLight - toggleActionEntity: 20506 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 20506 - - type: ActionsContainer - uid: 22658 components: - type: Transform rot: -251.32741228718288 rad pos: 155.35611,58.58867 parent: 1 - - type: HandheldLight - toggleActionEntity: 20855 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 20855 - - type: ActionsContainer - proto: FlippoLighter entities: - uid: 34597 @@ -128610,10 +128492,10 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 21502 + - uid: 21516 components: - type: Transform - pos: 132.5,62.5 + pos: 125.5,42.5 parent: 1 - type: Fixtures fixtures: {} @@ -128988,14 +128870,6 @@ entities: - type: Transform pos: 124.55523,103.64611 parent: 1 -- proto: FoodBreadBaguette - entities: - - uid: 32296 - components: - - type: Transform - rot: -194.7787445225668 rad - pos: 126.485794,43.59578 - parent: 1 - proto: FoodBreadMoldySlice entities: - uid: 18600 @@ -129093,11 +128967,10 @@ entities: parent: 1 - proto: FoodCondimentBottleEnzyme entities: - - uid: 21430 + - uid: 21180 components: - type: Transform - rot: -31.415926535897945 rad - pos: 129.73172,43.590378 + pos: 129.23627,51.620174 parent: 1 - uid: 27380 components: @@ -129120,14 +128993,6 @@ entities: rot: -18.84955592153876 rad pos: 112.627594,104.57216 parent: 1 -- proto: FoodCondimentPacketSalt - entities: - - uid: 21489 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: 123.07737,56.958176 - parent: 1 - proto: FoodDonutCaramel entities: - uid: 10311 @@ -129345,20 +129210,6 @@ entities: - type: Transform pos: 113.46483,96.76889 parent: 1 -- proto: FoodPlatePlastic - entities: - - uid: 5383 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: 122.598206,57.694286 - parent: 1 - - uid: 22630 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: 123.38987,56.708176 - parent: 1 - proto: FoodPlateSmallTrash entities: - uid: 33539 @@ -129521,14 +129372,6 @@ entities: - type: Transform pos: 144.5,60.5 parent: 1 -- proto: FoodSoupEscargot - entities: - - uid: 7988 - components: - - type: Transform - rot: -201.06192982974636 rad - pos: 126.78421,43.42259 - parent: 1 - proto: FoodTartGrape entities: - uid: 19557 @@ -129575,13 +129418,6 @@ entities: - type: Transform pos: 104.4918,104.48849 parent: 1 -- proto: FrenchHornInstrument - entities: - - uid: 7989 - components: - - type: Transform - pos: 127.5,43.5 - parent: 1 - proto: GameMasterCircuitBoard entities: - uid: 13262 @@ -130012,6 +129848,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 128.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1785 components: - type: Transform @@ -131325,21 +131169,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12413 - components: - - type: Transform - pos: 126.5,65.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 122.5,65.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12506 components: - type: Transform @@ -131773,14 +131602,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 15973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 127.5,63.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 16039 components: - type: Transform @@ -132473,6 +132294,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 118.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21224 components: - type: Transform @@ -132481,11 +132310,19 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 21414 + - uid: 21306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 131.5,61.5 + rot: 3.141592653589793 rad + pos: 123.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 132.5,41.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -132496,6 +132333,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 21508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 125.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 21552 components: - type: Transform @@ -132550,14 +132395,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,65.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 21778 components: - type: Transform @@ -132581,14 +132418,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21891 + - uid: 21885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 123.5,64.5 + pos: 132.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 21907 components: - type: Transform @@ -132605,6 +132441,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21986 + components: + - type: Transform + pos: 119.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 22133 components: - type: Transform @@ -132643,13 +132486,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22350 - components: - - type: Transform - pos: 128.5,63.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22464 components: - type: Transform @@ -132657,21 +132493,21 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22584 + - uid: 22572 components: - type: Transform rot: 3.141592653589793 rad - pos: 122.5,47.5 + pos: 122.5,63.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 22586 + color: '#0055CCFF' + - uid: 22579 components: - type: Transform - pos: 122.5,48.5 + pos: 127.5,63.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 22590 components: - type: Transform @@ -132679,14 +132515,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22725 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 125.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22830 components: - type: Transform @@ -132695,6 +132523,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 22876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 126.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22918 components: - type: Transform @@ -132719,41 +132555,34 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23041 + - uid: 23047 components: - type: Transform rot: 3.141592653589793 rad - pos: 130.5,42.5 + pos: 128.5,41.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23066 - components: - - type: Transform - pos: 125.5,57.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23179 + - uid: 23065 components: - type: Transform rot: 1.5707963267948966 rad - pos: 123.5,46.5 + pos: 122.5,57.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23180 + - uid: 23105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 124.5,46.5 + rot: 3.141592653589793 rad + pos: 124.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23181 + color: '#990000FF' + - uid: 23144 components: - type: Transform - pos: 124.5,50.5 + pos: 125.5,50.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -132783,23 +132612,7 @@ entities: - uid: 23288 components: - type: Transform - pos: 120.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 123.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 120.5,44.5 + pos: 131.5,57.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -132811,14 +132624,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 118.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23340 components: - type: Transform @@ -133130,6 +132935,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 24310 + components: + - type: Transform + pos: 129.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 24327 components: - type: Transform @@ -133512,6 +133324,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 124.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25934 components: - type: Transform @@ -133830,6 +133650,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 28640 + components: + - type: Transform + pos: 126.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 29128 components: - type: Transform @@ -134568,13 +134395,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21282 - components: - - type: Transform - pos: 128.5,65.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 21386 components: - type: Transform @@ -134589,13 +134409,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 21515 - components: - - type: Transform - pos: 131.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 21714 components: - type: Transform @@ -134610,31 +134423,10 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 22454 + - uid: 22911 components: - type: Transform - pos: 131.5,51.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22980 - components: - - type: Transform - pos: 131.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23005 - components: - - type: Transform - pos: 129.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23007 - components: - - type: Transform - pos: 129.5,49.5 + pos: 128.5,65.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -135864,13 +135656,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4079 - components: - - type: Transform - pos: 131.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4082 components: - type: Transform @@ -136045,6 +135830,14 @@ entities: - type: Transform pos: 92.5,36.5 parent: 1 + - uid: 4394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 125.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4414 components: - type: Transform @@ -136261,6 +136054,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 124.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5125 components: - type: Transform @@ -136364,6 +136165,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 126.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5287 components: - type: Transform @@ -136435,6 +136244,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 133.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5591 components: - type: Transform @@ -136443,30 +136260,22 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5692 + - uid: 5635 components: - type: Transform rot: 3.141592653589793 rad - pos: 131.5,56.5 + pos: 129.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 132.5,44.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 127.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 130.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5730 components: - type: Transform @@ -136506,37 +136315,43 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5987 + components: + - type: Transform + pos: 133.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5988 + components: + - type: Transform + pos: 133.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 131.5,59.5 + rot: -1.5707963267948966 rad + pos: 130.5,47.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 131.5,53.5 + pos: 127.5,60.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5998 + - uid: 5997 components: - type: Transform rot: -1.5707963267948966 rad - pos: 132.5,52.5 + pos: 129.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6000 - components: - - type: Transform - pos: 123.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 6040 components: - type: Transform @@ -136640,52 +136455,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 128.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 130.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6162 - components: - - type: Transform - pos: 131.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6163 - components: - - type: Transform - pos: 131.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6230 components: - type: Transform @@ -136804,6 +136573,22 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 122.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 127.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6423 components: - type: Transform @@ -136842,6 +136627,21 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 126.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6581 + components: + - type: Transform + pos: 126.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6683 components: - type: Transform @@ -149388,13 +149188,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10575 - components: - - type: Transform - pos: 126.5,64.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10576 components: - type: Transform @@ -150151,14 +149944,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 123.5,65.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10755 components: - type: Transform @@ -153522,27 +153307,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 15972 - components: - - type: Transform - pos: 126.5,60.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15975 - components: - - type: Transform - pos: 128.5,61.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15976 - components: - - type: Transform - pos: 129.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15982 components: - type: Transform @@ -155787,14 +155551,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 18306 components: - type: Transform @@ -156241,14 +155997,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 131.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 18448 components: - type: Transform @@ -157114,13 +156862,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19357 - components: - - type: Transform - pos: 129.5,54.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 19395 components: - type: Transform @@ -157153,14 +156894,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 127.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19504 components: - type: Transform @@ -157615,14 +157348,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 129.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19730 components: - type: Transform @@ -158177,14 +157902,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 20176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 128.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 20221 components: - type: Transform @@ -158432,34 +158149,49 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 130.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 21181 components: - type: Transform rot: 3.141592653589793 rad - pos: 131.5,55.5 + pos: 128.5,42.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21185 + - uid: 21201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 128.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21206 + components: + - type: Transform + pos: 131.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21207 + components: + - type: Transform + pos: 131.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21210 components: - type: Transform rot: -1.5707963267948966 rad - pos: 124.5,64.5 + pos: 121.5,50.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 21218 components: - type: Transform - pos: 131.5,60.5 + rot: -1.5707963267948966 rad + pos: 120.5,50.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -158478,6 +158210,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 21264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 132.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21277 components: - type: Transform @@ -158534,29 +158274,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21300 - components: - - type: Transform - pos: 129.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 21307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,48.5 + pos: 128.5,46.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 131.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 21390 components: - type: Transform @@ -158593,6 +158317,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 131.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21397 components: - type: Transform @@ -158664,6 +158396,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 132.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21433 components: - type: Transform @@ -158672,6 +158412,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 21439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 128.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 21445 components: - type: Transform @@ -158995,6 +158743,66 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 21504 + components: + - type: Transform + pos: 133.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 125.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21506 + components: + - type: Transform + pos: 127.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 125.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21511 + components: + - type: Transform + pos: 133.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 123.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 124.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21529 + components: + - type: Transform + pos: 129.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21536 components: - type: Transform @@ -159184,22 +158992,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21577 + - uid: 21572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 130.5,58.5 + rot: 3.141592653589793 rad + pos: 125.5,43.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 131.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 21598 components: - type: Transform @@ -159619,20 +159419,36 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 21737 + - uid: 21733 components: - type: Transform - pos: 128.5,59.5 + pos: 129.5,62.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 21738 + - uid: 21745 components: - type: Transform - pos: 126.5,62.5 + rot: -1.5707963267948966 rad + pos: 130.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21748 + components: + - type: Transform + pos: 131.5,51.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 128.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21763 components: - type: Transform @@ -159724,30 +159540,135 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 21845 + - uid: 21788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 125.5,64.5 + pos: 129.5,58.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 21887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 123.5,65.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21888 + - uid: 21794 components: - type: Transform rot: 3.141592653589793 rad - pos: 131.5,54.5 + pos: 122.5,53.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21795 + components: + - type: Transform + pos: 128.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 122.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21810 + components: + - type: Transform + pos: 129.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 124.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 130.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21813 + components: + - type: Transform + pos: 133.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21816 + components: + - type: Transform + pos: 129.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 128.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21823 + components: + - type: Transform + pos: 129.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 124.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 128.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 132.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 132.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 122.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21897 + components: + - type: Transform + pos: 133.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21904 components: - type: Transform @@ -159772,6 +159693,30 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 21910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 125.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 122.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 122.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 21929 components: - type: Transform @@ -159780,13 +159725,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21941 - components: - - type: Transform - pos: 126.5,59.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 21944 components: - type: Transform @@ -159794,6 +159732,28 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 21946 + components: + - type: Transform + pos: 131.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21948 + components: + - type: Transform + pos: 131.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 127.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 21975 components: - type: Transform @@ -159825,21 +159785,28 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 22148 + - uid: 22127 components: - type: Transform - pos: 128.5,58.5 + pos: 127.5,59.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 22162 + color: '#0055CCFF' + - uid: 22131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 129.5,65.5 + rot: -1.5707963267948966 rad + pos: 126.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' + - uid: 22155 + components: + - type: Transform + pos: 131.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 22165 components: - type: Transform @@ -160265,26 +160232,41 @@ entities: - uid: 22270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 131.5,57.5 + rot: 1.5707963267948966 rad + pos: 126.5,57.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22271 + - uid: 22349 + components: + - type: Transform + pos: 131.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22354 components: - type: Transform rot: -1.5707963267948966 rad - pos: 128.5,49.5 + pos: 132.5,55.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 22351 + - uid: 22356 components: - type: Transform - pos: 126.5,61.5 + rot: 1.5707963267948966 rad + pos: 127.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' + - uid: 22359 + components: + - type: Transform + pos: 133.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22398 components: - type: Transform @@ -160309,38 +160291,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 130.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 130.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 125.5,65.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 128.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22459 components: - type: Transform @@ -160349,14 +160299,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 22461 + - uid: 22460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 126.5,64.5 + rot: 3.141592653589793 rad + pos: 132.5,43.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 22462 components: - type: Transform @@ -160365,21 +160315,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 22485 - components: - - type: Transform - pos: 129.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 129.5,55.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22563 components: - type: Transform @@ -160388,66 +160323,26 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 22564 + - uid: 22574 components: - type: Transform - pos: 122.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 131.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 122.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 120.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 121.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 119.5,48.5 + rot: 1.5707963267948966 rad + pos: 131.5,61.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 22582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 120.5,48.5 + pos: 131.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 22583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 121.5,48.5 + rot: 3.141592653589793 rad + pos: 133.5,50.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -160482,6 +160377,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 22660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 122.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 22663 components: - type: Transform @@ -160490,6 +160393,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 22666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 127.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22676 components: - type: Transform @@ -160506,18 +160417,11 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 22707 + - uid: 22705 components: - type: Transform - pos: 128.5,62.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,45.5 + rot: 3.141592653589793 rad + pos: 122.5,64.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -160529,14 +160433,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 22747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22750 components: - type: Transform @@ -160553,51 +160449,35 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 22756 + - uid: 22767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 128.5,52.5 + rot: 1.5707963267948966 rad + pos: 124.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 129.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 131.5,45.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 22758 + - uid: 22801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 126.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 128.5,51.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 131.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 130.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 129.5,48.5 + rot: 1.5707963267948966 rad + pos: 124.5,50.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -160605,22 +160485,15 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 132.5,51.5 + pos: 125.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22829 + color: '#990000FF' + - uid: 22828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 129.5,51.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22838 - components: - - type: Transform - pos: 126.5,63.5 + rot: 3.141592653589793 rad + pos: 122.5,66.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -160632,14 +160505,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 131.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22916 components: - type: Transform @@ -160648,17 +160513,19 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 22942 + - uid: 22934 components: - type: Transform - pos: 129.5,51.5 + rot: -1.5707963267948966 rad + pos: 125.5,46.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 22946 + - uid: 22942 components: - type: Transform - pos: 128.5,57.5 + rot: -1.5707963267948966 rad + pos: 129.5,65.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -160677,36 +160544,44 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22962 + - uid: 22997 components: - type: Transform - pos: 128.5,60.5 + rot: -1.5707963267948966 rad + pos: 124.5,65.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 23006 + - uid: 23007 components: - type: Transform - pos: 131.5,50.5 + rot: 3.141592653589793 rad + pos: 125.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 125.5,45.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 23009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 129.5,45.5 + pos: 125.5,49.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23058 + - uid: 23010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 129.5,53.5 + pos: 125.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 23059 components: - type: Transform @@ -160715,6 +160590,29 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 23060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 126.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23062 + components: + - type: Transform + pos: 128.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 126.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23067 components: - type: Transform @@ -160770,6 +160668,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 23131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 126.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23136 components: - type: Transform @@ -160809,54 +160715,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 23175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 124.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 124.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23177 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 124.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 123.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 122.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 121.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23185 components: - type: Transform @@ -161754,6 +161612,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 24425 + components: + - type: Transform + pos: 128.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 24503 components: - type: Transform @@ -161935,6 +161800,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 130.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25179 components: - type: Transform @@ -162208,6 +162081,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25391 + components: + - type: Transform + pos: 127.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 25415 components: - type: Transform @@ -163754,6 +163634,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 132.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 25900 components: - type: Transform @@ -169011,14 +168899,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 118.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3349 components: - type: Transform @@ -169079,13 +168959,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3472 - components: - - type: Transform - pos: 119.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3474 components: - type: Transform @@ -169550,14 +169423,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 126.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4850 components: - type: Transform @@ -169619,6 +169484,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 5278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 129.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5341 components: - type: Transform @@ -169643,6 +169516,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 133.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5497 components: - type: Transform @@ -169651,14 +169532,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 128.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5720 components: - type: Transform @@ -169729,13 +169602,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 6056 - components: - - type: Transform - pos: 124.5,65.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6084 components: - type: Transform @@ -170167,6 +170033,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8158 + components: + - type: Transform + pos: 123.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8165 components: - type: Transform @@ -171310,13 +171183,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18404 - components: - - type: Transform - pos: 130.5,51.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 18454 components: - type: Transform @@ -171584,6 +171450,22 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 21514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 123.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 129.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21541 components: - type: Transform @@ -171682,6 +171564,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 21747 + components: + - type: Transform + pos: 128.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 21769 components: - type: Transform @@ -171690,13 +171579,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21794 - components: - - type: Transform - pos: 123.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 21798 components: - type: Transform @@ -171721,11 +171603,11 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 21886 + - uid: 21845 components: - type: Transform rot: -1.5707963267948966 rad - pos: 127.5,64.5 + pos: 133.5,46.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -171733,14 +171615,14 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 130.5,46.5 + pos: 123.5,63.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 21920 + color: '#0055CCFF' + - uid: 21893 components: - type: Transform - pos: 129.5,56.5 + pos: 125.5,65.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -171767,6 +171649,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 22154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 133.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22243 components: - type: Transform @@ -171774,6 +171664,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 22250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 126.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22254 components: - type: Transform @@ -171782,18 +171680,19 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22395 + - uid: 22575 components: - type: Transform - pos: 130.5,45.5 + rot: 1.5707963267948966 rad + pos: 127.5,61.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22449 + - uid: 22615 components: - type: Transform rot: 3.141592653589793 rad - pos: 131.5,45.5 + pos: 127.5,57.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -171829,6 +171728,30 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 22763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 131.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 122.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 125.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 22894 components: - type: Transform @@ -171860,14 +171783,21 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23019 + - uid: 23109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 129.5,46.5 + pos: 129.5,45.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 23183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 131.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 23217 components: - type: Transform @@ -171892,6 +171822,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 23289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 126.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23389 components: - type: Transform @@ -172592,6 +172530,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27230 + components: + - type: Transform + pos: 130.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 27587 components: - type: Transform @@ -173695,6 +173640,16 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3353 + components: + - type: Transform + pos: 123.5,64.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 21321 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3424 components: - type: Transform @@ -173749,26 +173704,15 @@ entities: - 22263 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5268 + - uid: 5383 components: - type: Transform rot: 1.5707963267948966 rad - pos: 127.5,48.5 + pos: 124.5,42.5 parent: 1 - type: DeviceNetwork deviceLists: - - 20502 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,45.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 20502 + - 6000 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6025 @@ -173782,17 +173726,6 @@ entities: - 18634 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,58.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22359 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7183 components: - type: Transform @@ -174735,28 +174668,6 @@ entities: - 20336 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 133.5,48.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 20502 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 133.5,51.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 20502 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 21271 components: - type: Transform @@ -174767,6 +174678,28 @@ entities: - 23043 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 133.5,41.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 129.5,41.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 21592 components: - type: Transform @@ -174857,6 +174790,17 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 128.5,61.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 22914 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 21930 components: - type: Transform @@ -174868,17 +174812,6 @@ entities: - 6269 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 124.5,64.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22914 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 22172 components: - type: Transform @@ -174938,25 +174871,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 130.5,50.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 20502 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 22554 components: - type: Transform @@ -174965,39 +174879,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 123.5,49.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22636 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 133.5,45.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 20502 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 126.5,57.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22359 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 22744 components: - type: Transform @@ -175017,23 +174898,47 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22971 + - uid: 22858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,61.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,51.5 + rot: 3.141592653589793 rad + pos: 130.5,56.5 parent: 1 - type: DeviceNetwork deviceLists: - - 20502 + - 22242 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23080 + components: + - type: Transform + pos: 123.5,51.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 123.5,56.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 22242 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 132.5,50.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 - type: AtmosPipeColor color: '#0055CCFF' - uid: 23365 @@ -176133,17 +176038,6 @@ entities: - 1588 - type: AtmosPipeColor color: '#990000FF' - - uid: 1697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 133.5,49.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 20502 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1721 components: - type: Transform @@ -176209,17 +176103,6 @@ entities: - 19097 - type: AtmosPipeColor color: '#990000FF' - - uid: 4077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,49.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 20502 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4705 components: - type: Transform @@ -176242,6 +176125,17 @@ entities: - 6269 - type: AtmosPipeColor color: '#990000FF' + - uid: 5266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 125.5,64.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 21321 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5732 components: - type: Transform @@ -177066,6 +176960,17 @@ entities: - 26182 - type: AtmosPipeColor color: '#990000FF' + - uid: 21178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 133.5,43.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21197 components: - type: Transform @@ -177085,28 +176990,6 @@ entities: - 23043 - type: AtmosPipeColor color: '#990000FF' - - uid: 21297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,52.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 20502 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,56.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22359 - - type: AtmosPipeColor - color: '#990000FF' - uid: 21624 components: - type: Transform @@ -177167,6 +177050,17 @@ entities: - 22263 - type: AtmosPipeColor color: '#990000FF' + - uid: 21736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 133.5,61.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 22914 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21777 components: - type: Transform @@ -177178,6 +177072,17 @@ entities: - 22269 - type: AtmosPipeColor color: '#990000FF' + - uid: 21826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 129.5,43.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22173 components: - type: Transform @@ -177200,71 +177105,6 @@ entities: - 22229 - type: AtmosPipeColor color: '#990000FF' - - uid: 22466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 124.5,57.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22359 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 133.5,52.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 20502 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 123.5,47.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22636 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22666 - components: - - type: Transform - pos: 130.5,47.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 20502 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 128.5,64.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22914 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 133.5,46.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 20502 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23036 components: - type: Transform @@ -177276,15 +177116,14 @@ entities: - 22252 - type: AtmosPipeColor color: '#990000FF' - - uid: 23040 + - uid: 23178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,46.5 + pos: 126.5,56.5 parent: 1 - type: DeviceNetwork deviceLists: - - 20502 + - 22242 - type: AtmosPipeColor color: '#990000FF' - uid: 23329 @@ -177695,6 +177534,17 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 28585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 132.5,46.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 + - type: AtmosPipeColor + color: '#990000FF' - uid: 28630 components: - type: Transform @@ -177716,6 +177566,27 @@ entities: - 28638 - type: AtmosPipeColor color: '#990000FF' + - uid: 28644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 124.5,46.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6000 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28645 + components: + - type: Transform + pos: 133.5,56.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 22242 + - type: AtmosPipeColor + color: '#990000FF' - uid: 28905 components: - type: Transform @@ -179818,11 +179689,6 @@ entities: - type: Transform pos: 87.5,111.5 parent: 1 - - uid: 3353 - components: - - type: Transform - pos: 125.5,65.5 - parent: 1 - uid: 3380 components: - type: Transform @@ -180823,16 +180689,6 @@ entities: - type: Transform pos: 121.5,120.5 parent: 1 - - uid: 5301 - components: - - type: Transform - pos: 121.5,49.5 - parent: 1 - - uid: 5303 - components: - - type: Transform - pos: 121.5,48.5 - parent: 1 - uid: 5313 components: - type: Transform @@ -180853,11 +180709,6 @@ entities: - type: Transform pos: 122.5,120.5 parent: 1 - - uid: 5384 - components: - - type: Transform - pos: 121.5,65.5 - parent: 1 - uid: 5397 components: - type: Transform @@ -181134,11 +180985,6 @@ entities: - type: Transform pos: 72.5,111.5 parent: 1 - - uid: 5886 - components: - - type: Transform - pos: 125.5,66.5 - parent: 1 - uid: 5891 components: - type: Transform @@ -181431,6 +181277,11 @@ entities: - type: Transform pos: 150.5,70.5 parent: 1 + - uid: 6593 + components: + - type: Transform + pos: 143.5,126.5 + parent: 1 - uid: 6597 components: - type: Transform @@ -183014,29 +182865,6 @@ entities: - type: Transform pos: 163.5,93.5 parent: 1 - - uid: 21236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 132.5,40.5 - parent: 1 - - uid: 21237 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 130.5,40.5 - parent: 1 - - uid: 21238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 131.5,40.5 - parent: 1 - - uid: 21573 - components: - - type: Transform - pos: 127.5,61.5 - parent: 1 - uid: 21734 components: - type: Transform @@ -183052,11 +182880,21 @@ entities: - type: Transform pos: 128.5,75.5 parent: 1 + - uid: 21955 + components: + - type: Transform + pos: 128.5,44.5 + parent: 1 - uid: 22346 components: - type: Transform pos: 134.5,67.5 parent: 1 + - uid: 22456 + components: + - type: Transform + pos: 121.5,65.5 + parent: 1 - uid: 22599 components: - type: Transform @@ -183083,21 +182921,17 @@ entities: - type: Transform pos: 130.5,155.5 parent: 1 + - uid: 22743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 129.5,40.5 + parent: 1 - uid: 22751 components: - type: Transform pos: 128.5,155.5 parent: 1 - - uid: 22752 - components: - - type: Transform - pos: 121.5,64.5 - parent: 1 - - uid: 22859 - components: - - type: Transform - pos: 123.5,67.5 - parent: 1 - uid: 22860 components: - type: Transform @@ -183123,16 +182957,16 @@ entities: - type: Transform pos: 124.5,145.5 parent: 1 + - uid: 22890 + components: + - type: Transform + pos: 136.5,41.5 + parent: 1 - uid: 22891 components: - type: Transform pos: 128.5,67.5 parent: 1 - - uid: 22908 - components: - - type: Transform - pos: 125.5,63.5 - parent: 1 - uid: 22920 components: - type: Transform @@ -183148,11 +182982,36 @@ entities: - type: Transform pos: 135.5,56.5 parent: 1 + - uid: 22990 + components: + - type: Transform + pos: 121.5,55.5 + parent: 1 + - uid: 23016 + components: + - type: Transform + pos: 132.5,44.5 + parent: 1 + - uid: 23049 + components: + - type: Transform + pos: 121.5,54.5 + parent: 1 + - uid: 23075 + components: + - type: Transform + pos: 121.5,64.5 + parent: 1 - uid: 23094 components: - type: Transform pos: 158.5,95.5 parent: 1 + - uid: 23114 + components: + - type: Transform + pos: 121.5,48.5 + parent: 1 - uid: 23135 components: - type: Transform @@ -183434,6 +183293,11 @@ entities: - type: Transform pos: 126.5,120.5 parent: 1 + - uid: 27334 + components: + - type: Transform + pos: 123.5,67.5 + parent: 1 - uid: 27433 components: - type: Transform @@ -183515,6 +183379,41 @@ entities: - type: Transform pos: 62.5,70.5 parent: 1 + - uid: 28661 + components: + - type: Transform + pos: 86.5,121.5 + parent: 1 + - uid: 28679 + components: + - type: Transform + pos: 90.5,121.5 + parent: 1 + - uid: 28680 + components: + - type: Transform + pos: 136.5,43.5 + parent: 1 + - uid: 28681 + components: + - type: Transform + pos: 137.5,43.5 + parent: 1 + - uid: 28682 + components: + - type: Transform + pos: 138.5,43.5 + parent: 1 + - uid: 28689 + components: + - type: Transform + pos: 137.5,41.5 + parent: 1 + - uid: 28691 + components: + - type: Transform + pos: 138.5,41.5 + parent: 1 - uid: 28714 components: - type: Transform @@ -184519,11 +184418,6 @@ entities: - type: Transform pos: 145.5,126.5 parent: 1 - - uid: 31794 - components: - - type: Transform - pos: 143.5,126.5 - parent: 1 - uid: 31800 components: - type: Transform @@ -184744,11 +184638,6 @@ entities: - type: Transform pos: 88.5,62.5 parent: 1 - - uid: 32295 - components: - - type: Transform - pos: 125.5,43.5 - parent: 1 - uid: 32348 components: - type: Transform @@ -185544,6 +185433,11 @@ entities: parent: 1 - proto: HarmonicaInstrument entities: + - uid: 21522 + components: + - type: Transform + pos: 123.06688,48.15433 + parent: 1 - uid: 26785 components: - type: Transform @@ -185662,10 +185556,10 @@ entities: parent: 1 - proto: HolopadCargoSalvageBay entities: - - uid: 757 + - uid: 6569 components: - type: Transform - pos: 150.5,92.5 + pos: 150.5,95.5 parent: 1 - proto: HolopadCommandBridge entities: @@ -185977,10 +185871,10 @@ entities: parent: 1 - proto: HolopadSecurityBrig entities: - - uid: 21532 + - uid: 22343 components: - type: Transform - pos: 125.5,58.5 + pos: 124.5,56.5 parent: 1 - proto: HolopadSecurityCourtroom entities: @@ -186103,11 +185997,6 @@ entities: parent: 1 - proto: HospitalCurtainsOpen entities: - - uid: 6409 - components: - - type: Transform - pos: 131.5,60.5 - parent: 1 - uid: 13482 components: - type: Transform @@ -186202,11 +186091,11 @@ entities: parent: 1 - proto: HydroponicsToolMiniHoe entities: - - uid: 6404 + - uid: 22922 components: - type: Transform - rot: -62.83185307179591 rad - pos: 133.53491,54.55713 + rot: -182.21237390820767 rad + pos: 129.52835,54.46313 parent: 1 - uid: 26660 components: @@ -186224,56 +186113,59 @@ entities: parent: 1 - proto: HydroponicsToolSpade entities: - - uid: 21950 - components: - - type: Transform - rot: -62.83185307179591 rad - pos: 133.57657,54.598793 - parent: 1 - uid: 26663 components: - type: Transform rot: -25.132741228718352 rad pos: 101.46399,92.351105 parent: 1 + - uid: 28582 + components: + - type: Transform + rot: -182.21237390820767 rad + pos: 129.5365,54.471287 + parent: 1 - proto: hydroponicsTray entities: + - uid: 5473 + components: + - type: Transform + pos: 134.5,55.5 + parent: 1 - uid: 7743 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,98.5 parent: 1 - - uid: 21319 - components: - - type: Transform - pos: 133.5,57.5 - parent: 1 - - uid: 21431 - components: - - type: Transform - pos: 131.5,58.5 - parent: 1 - - uid: 21819 - components: - - type: Transform - pos: 134.5,58.5 - parent: 1 - - uid: 21854 - components: - - type: Transform - pos: 133.5,58.5 - parent: 1 - - uid: 21859 - components: - - type: Transform - pos: 131.5,57.5 - parent: 1 - - uid: 22251 + - uid: 10317 components: - type: Transform pos: 134.5,57.5 parent: 1 + - uid: 15973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 131.5,58.5 + parent: 1 + - uid: 21869 + components: + - type: Transform + pos: 134.5,56.5 + parent: 1 + - uid: 22150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 132.5,58.5 + parent: 1 + - uid: 22604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 133.5,58.5 + parent: 1 - uid: 26276 components: - type: Transform @@ -186506,24 +186398,12 @@ entities: parent: 1 - proto: IntercomCommon entities: - - uid: 5986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 121.5,60.5 - parent: 1 - - uid: 22759 + - uid: 23179 components: - type: Transform rot: 3.141592653589793 rad pos: 131.5,44.5 parent: 1 - - uid: 23008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 125.5,62.5 - parent: 1 - uid: 25506 components: - type: Transform @@ -186712,6 +186592,12 @@ entities: - type: Transform pos: 48.5,109.5 parent: 1 + - uid: 21320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 121.5,51.5 + parent: 1 - uid: 27330 components: - type: Transform @@ -186744,6 +186630,12 @@ entities: parent: 1 - proto: IntercomSecurity entities: + - uid: 21227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 121.5,63.5 + parent: 1 - uid: 21517 components: - type: Transform @@ -186756,6 +186648,12 @@ entities: rot: 1.5707963267948966 rad pos: 135.5,53.5 parent: 1 + - uid: 22587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 130.5,59.5 + parent: 1 - uid: 22941 components: - type: Transform @@ -186773,6 +186671,12 @@ entities: - type: Transform pos: 142.5,72.5 parent: 1 + - uid: 22968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 124.5,74.5 + parent: 1 - uid: 25517 components: - type: Transform @@ -186914,34 +186818,12 @@ entities: rot: -31.415926535897945 rad pos: 53.54334,75.409134 parent: 1 - - type: GasTank - toggleActionEntity: 19390 - - type: Jetpack - toggleActionEntity: 19389 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 19389 - - 19390 - uid: 19098 components: - type: Transform rot: -31.415926535897945 rad pos: 53.457726,74.76046 parent: 1 - - type: GasTank - toggleActionEntity: 26838 - - type: Jetpack - toggleActionEntity: 23342 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 23342 - - 26838 - proto: Joint entities: - uid: 18090 @@ -186983,11 +186865,6 @@ entities: parent: 1 - proto: KitchenMicrowave entities: - - uid: 5521 - components: - - type: Transform - pos: 127.5,54.5 - parent: 1 - uid: 7107 components: - type: Transform @@ -187013,6 +186890,11 @@ entities: - type: Transform pos: 150.5,53.5 parent: 1 + - uid: 23107 + components: + - type: Transform + pos: 127.5,52.5 + parent: 1 - uid: 32220 components: - type: Transform @@ -187035,10 +186917,10 @@ entities: - type: Transform pos: 35.5,109.5 parent: 1 - - uid: 22788 + - uid: 21432 components: - type: Transform - pos: 125.5,54.5 + pos: 125.5,52.5 parent: 1 - uid: 26527 components: @@ -187084,22 +186966,8 @@ entities: - type: Transform pos: 40.483433,54.34497 parent: 1 - - type: HandheldLight - toggleActionEntity: 13526 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 13526 - type: Physics canCollide: True - - type: ActionsContainer - uid: 13709 components: - type: Transform @@ -187116,66 +186984,24 @@ entities: rot: -6.283185307179586 rad pos: 137.3994,103.5578 parent: 1 - - type: HandheldLight - toggleActionEntity: 26840 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 26840 - type: Physics canCollide: True - - type: ActionsContainer - uid: 20881 components: - type: Transform rot: -18.84955592153876 rad pos: 33.460236,105.08435 parent: 1 - - type: HandheldLight - toggleActionEntity: 18796 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 18796 - type: Physics canCollide: True - - type: ActionsContainer - uid: 20929 components: - type: Transform rot: -12.566370614359172 rad pos: 38.36207,106.76607 parent: 1 - - type: HandheldLight - toggleActionEntity: 5305 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 5305 - type: Physics canCollide: True - - type: ActionsContainer - uid: 20969 components: - type: Transform @@ -187192,22 +187018,8 @@ entities: rot: -18.84955592153876 rad pos: 142.08,67.657 parent: 1 - - type: HandheldLight - toggleActionEntity: 28191 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 28191 - type: Physics canCollide: True - - type: ActionsContainer - uid: 25290 components: - type: Transform @@ -187219,44 +187031,16 @@ entities: rot: -6.283185307179586 rad pos: 70.436455,70.761185 parent: 1 - - type: HandheldLight - toggleActionEntity: 26940 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 26940 - type: Physics canCollide: True - - type: ActionsContainer - uid: 27182 components: - type: Transform rot: -50.265482457436725 rad pos: 107.43823,48.853798 parent: 1 - - type: HandheldLight - toggleActionEntity: 24287 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 24287 - type: Physics canCollide: True - - type: ActionsContainer - uid: 35404 components: - type: Transform @@ -187298,66 +187082,24 @@ entities: rot: -18.84955592153876 rad pos: 35.52334,74.33325 parent: 1 - - type: HandheldLight - toggleActionEntity: 13521 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 13521 - type: Physics canCollide: True - - type: ActionsContainer - uid: 13522 components: - type: Transform rot: -25.132741228718352 rad pos: 60.47457,56.997498 parent: 1 - - type: HandheldLight - toggleActionEntity: 13523 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 13523 - type: Physics canCollide: True - - type: ActionsContainer - uid: 19385 components: - type: Transform rot: -6.283185307179586 rad pos: 142.43442,104.59371 parent: 1 - - type: HandheldLight - toggleActionEntity: 19386 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 19386 - type: Physics canCollide: True - - type: ActionsContainer - uid: 23283 components: - type: Transform @@ -187374,44 +187116,16 @@ entities: - type: Transform pos: 78.44548,54.59781 parent: 1 - - type: HandheldLight - toggleActionEntity: 27185 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 27185 - type: Physics canCollide: True - - type: ActionsContainer - uid: 27186 components: - type: Transform rot: -6.283185307179586 rad pos: 80.52766,47.881866 parent: 1 - - type: HandheldLight - toggleActionEntity: 27187 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 27187 - type: Physics canCollide: True - - type: ActionsContainer - uid: 30170 components: - type: Transform @@ -187520,6 +187234,30 @@ entities: 17697: - - Pressed - Toggle +- proto: LockableButtonSecurity + entities: + - uid: 22458 + components: + - type: MetaData + name: visitation shutters lockable button + - type: Transform + rot: 1.5707963267948966 rad + pos: 126.5,61.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 3324: + - - Pressed + - Toggle + 22996: + - - Pressed + - Toggle + 22961: + - - Pressed + - Toggle + 23017: + - - Pressed + - Toggle - proto: LockerAtmosphericsFilled entities: - uid: 15991 @@ -187832,45 +187570,59 @@ entities: parent: 1 - proto: LockerPrisoner entities: - - uid: 23057 + - uid: 5384 components: - type: Transform - pos: 126.5,66.5 + pos: 131.5,60.5 parent: 1 - proto: LockerPrisoner2 entities: - - uid: 5468 + - uid: 5999 components: - type: Transform - pos: 126.5,65.5 + pos: 132.5,60.5 parent: 1 - proto: LockerPrisoner3 entities: - - uid: 22656 + - uid: 5698 components: - type: Transform - pos: 128.5,66.5 + pos: 133.5,60.5 parent: 1 - proto: LockerPrisoner4 entities: - - uid: 21912 + - uid: 18447 components: - type: Transform - pos: 129.5,66.5 + pos: 134.5,60.5 parent: 1 - proto: LockerPrisoner5 entities: - - uid: 23045 + - uid: 22571 components: - type: Transform - pos: 129.5,63.5 + pos: 134.5,62.5 parent: 1 - proto: LockerPrisoner6 entities: - - uid: 6211 + - uid: 22964 components: - type: Transform - pos: 129.5,62.5 + pos: 133.5,62.5 + parent: 1 +- proto: LockerPrisoner7 + entities: + - uid: 6447 + components: + - type: Transform + pos: 132.5,62.5 + parent: 1 +- proto: LockerPrisoner8 + entities: + - uid: 21305 + components: + - type: Transform + pos: 131.5,62.5 parent: 1 - proto: LockerQuarterMasterFilled entities: @@ -189010,7 +188762,7 @@ entities: - uid: 19488 components: - type: Transform - pos: 146.45892,92.49491 + pos: 144.49548,94.55662 parent: 1 - uid: 21828 components: @@ -189199,17 +188951,18 @@ entities: parent: 1 - proto: MopBucketFull entities: - - uid: 6406 + - uid: 22791 components: - type: Transform - pos: 130.5,42.5 + pos: 129.5,47.5 parent: 1 - proto: MopItem entities: - - uid: 21869 + - uid: 22556 components: - type: Transform - pos: 130.5,41.5 + rot: -25.132741228718352 rad + pos: 128.95699,47.320084 parent: 1 - uid: 29570 components: @@ -189448,13 +189201,6 @@ entities: - type: Transform pos: 105.5,167.5 parent: 1 -- proto: NitrogenTankFilled - entities: - - uid: 23052 - components: - - type: Transform - pos: 124.56251,50.67297 - parent: 1 - proto: NitrousOxideCanister entities: - uid: 15959 @@ -189479,7 +189225,7 @@ entities: parent: 1 - proto: NuclearBombKeg entities: - - uid: 32071 + - uid: 22392 components: - type: Transform pos: 107.5,61.5 @@ -189525,9 +189271,16 @@ entities: parent: 1 - proto: OreBox entities: - - uid: 21675 + - uid: 6571 components: - type: Transform + rot: -1.5707963267948966 rad + pos: 162.5,92.5 + parent: 1 + - uid: 31878 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: 163.5,92.5 parent: 1 - proto: OreProcessor @@ -189661,20 +189414,12 @@ entities: - type: Transform pos: 146.5,79.5 parent: 1 -- proto: OxygenTankFilled - entities: - - uid: 23051 - components: - - type: Transform - pos: 124.52084,51.54797 - parent: 1 - proto: PackPaperRollingFilters entities: - - uid: 21822 + - uid: 23112 components: - type: Transform - rot: -31.415926535897945 rad - pos: 134.50049,46.560387 + pos: 129.52768,49.62762 parent: 1 - proto: PaintingCafeTerraceAtNight entities: @@ -189752,21 +189497,6 @@ entities: - type: Transform pos: 130.5,112.5 parent: 1 - - uid: 5894 - components: - - type: Transform - pos: 134.53024,52.650562 - parent: 1 - - uid: 6538 - components: - - type: Transform - pos: 134.35316,52.608894 - parent: 1 - - uid: 6582 - components: - - type: Transform - pos: 134.53024,52.483894 - parent: 1 - uid: 24541 components: - type: Transform @@ -189887,6 +189617,11 @@ entities: - type: Transform pos: 40.5,106.5 parent: 1 + - uid: 21259 + components: + - type: Transform + pos: 129.5,53.5 + parent: 1 - uid: 23070 components: - type: Transform @@ -189936,6 +189671,36 @@ entities: - type: Transform pos: 78.5,57.5 parent: 1 + - uid: 21583 + components: + - type: Transform + pos: 123.644966,48.310577 + parent: 1 + - uid: 21594 + components: + - type: Transform + pos: 122.551216,47.560577 + parent: 1 + - uid: 22454 + components: + - type: Transform + pos: 123.676216,48.701202 + parent: 1 + - uid: 22752 + components: + - type: Transform + pos: 123.31684,48.529327 + parent: 1 + - uid: 22971 + components: + - type: Transform + pos: 122.457466,47.888702 + parent: 1 + - uid: 22994 + components: + - type: Transform + pos: 122.34809,47.560577 + parent: 1 - uid: 27193 components: - type: Transform @@ -189961,10 +189726,11 @@ entities: parent: 1 - proto: ParchisBoard entities: - - uid: 6448 + - uid: 4079 components: - type: Transform - pos: 126.43562,46.475975 + rot: -37.69911184307754 rad + pos: 122.676216,48.216827 parent: 1 - uid: 27211 components: @@ -190049,17 +189815,22 @@ entities: parent: 1 - proto: Pen entities: - - uid: 6451 - components: - - type: Transform - rot: -31.415926535897945 rad - pos: 134.48692,52.474384 - parent: 1 - uid: 13721 components: - type: Transform pos: 53.472385,61.593983 parent: 1 + - uid: 22972 + components: + - type: Transform + pos: 123.06684,47.498077 + parent: 1 + - uid: 23041 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 122.551216,48.576202 + parent: 1 - uid: 23767 components: - type: Transform @@ -190075,6 +189846,11 @@ entities: - type: Transform pos: 78.5,59.5 parent: 1 + - uid: 27478 + components: + - type: Transform + pos: 129.92789,53.634857 + parent: 1 - proto: PersonalAI entities: - uid: 2958 @@ -190108,7 +189884,12 @@ entities: parent: 1 - proto: PianoInstrument entities: - - uid: 26637 + - uid: 28687 + components: + - type: Transform + pos: 106.5,67.5 + parent: 1 + - uid: 28688 components: - type: Transform rot: 1.5707963267948966 rad @@ -190495,6 +190276,12 @@ entities: parent: 1 - proto: PosterContrabandAmbrosiaVulgaris entities: + - uid: 23181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 134.5,52.5 + parent: 1 - uid: 26819 components: - type: Transform @@ -190513,14 +190300,6 @@ entities: rot: 1.5707963267948966 rad pos: 85.5,154.5 parent: 1 -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 22566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 134.5,47.5 - parent: 1 - proto: PosterContrabandBorgFancy entities: - uid: 20906 @@ -190544,14 +190323,6 @@ entities: rot: -1.5707963267948966 rad pos: 141.5,90.5 parent: 1 -- proto: PosterContrabandC20r - entities: - - uid: 21511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,50.5 - parent: 1 - proto: PosterContrabandClown entities: - uid: 26745 @@ -190567,13 +190338,6 @@ entities: rot: -1.5707963267948966 rad pos: 143.5,113.5 parent: 1 -- proto: PosterContrabandDonk - entities: - - uid: 23104 - components: - - type: Transform - pos: 125.5,49.5 - parent: 1 - proto: PosterContrabandDonutCorp entities: - uid: 36051 @@ -190600,6 +190364,11 @@ entities: rot: 3.141592653589793 rad pos: 26.5,98.5 parent: 1 + - uid: 22360 + components: + - type: Transform + pos: 127.5,48.5 + parent: 1 - uid: 26815 components: - type: Transform @@ -190607,19 +190376,24 @@ entities: parent: 1 - proto: PosterContrabandEnlistGorlex entities: - - uid: 21416 + - uid: 22741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 126.5,44.5 + pos: 128.5,40.5 parent: 1 - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - - uid: 21417 + - uid: 28584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 133.5,53.5 + pos: 131.5,42.5 + parent: 1 +- proto: PosterContrabandFunPolice + entities: + - uid: 28393 + components: + - type: Transform + pos: 134.5,44.5 parent: 1 - proto: PosterContrabandHackingGuide entities: @@ -190628,13 +190402,6 @@ entities: - type: Transform pos: 95.5,61.5 parent: 1 -- proto: PosterContrabandHaveaPuff - entities: - - uid: 22156 - components: - - type: Transform - pos: 133.5,61.5 - parent: 1 - proto: PosterContrabandHighEffectEngineering entities: - uid: 14841 @@ -190706,6 +190473,13 @@ entities: - type: Transform pos: 90.5,56.5 parent: 1 +- proto: PosterContrabandRise + entities: + - uid: 22883 + components: + - type: Transform + pos: 121.5,45.5 + parent: 1 - proto: PosterContrabandShamblersJuice entities: - uid: 26813 @@ -190727,14 +190501,6 @@ entities: - type: Transform pos: 135.5,46.5 parent: 1 -- proto: PosterContrabandSyndicateRecruitment - entities: - - uid: 22094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 125.5,53.5 - parent: 1 - proto: PosterContrabandTools entities: - uid: 348 @@ -190823,6 +190589,11 @@ entities: - type: Transform pos: 63.5,105.5 parent: 1 + - uid: 22395 + components: + - type: Transform + pos: 125.5,40.5 + parent: 1 - uid: 29572 components: - type: Transform @@ -190830,6 +190601,11 @@ entities: parent: 1 - proto: PosterLegitCohibaRobustoAd entities: + - uid: 22727 + components: + - type: Transform + pos: 135.5,50.5 + parent: 1 - uid: 24291 components: - type: Transform @@ -190966,6 +190742,12 @@ entities: - type: Transform pos: 31.5,75.5 parent: 1 + - uid: 22867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 128.5,59.5 + parent: 1 - proto: PosterLegitNTTGC entities: - uid: 13589 @@ -191098,11 +190880,10 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,21.5 parent: 1 - - uid: 21860 + - uid: 22881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 126.5,67.5 + pos: 126.5,64.5 parent: 1 - uid: 27604 components: @@ -191149,6 +190930,12 @@ entities: parent: 1 - proto: PosterLegitVacation entities: + - uid: 23113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 126.5,53.5 + parent: 1 - uid: 23126 components: - type: Transform @@ -191173,6 +190960,11 @@ entities: rot: 3.141592653589793 rad pos: 36.5,98.5 parent: 1 + - uid: 31876 + components: + - type: Transform + pos: 160.5,126.5 + parent: 1 - uid: 32081 components: - type: Transform @@ -191424,6 +191216,11 @@ entities: parent: 1 - proto: PottedPlant2 entities: + - uid: 23137 + components: + - type: Transform + pos: 123.5,66.5 + parent: 1 - uid: 26650 components: - type: Transform @@ -191840,12 +191637,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,110.5 parent: 1 - - uid: 21505 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 129.5,42.5 - parent: 1 - uid: 22898 components: - type: Transform @@ -191976,6 +191767,12 @@ entities: rot: 1.5707963267948966 rad pos: 70.5,133.5 parent: 1 + - uid: 3541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 122.5,58.5 + parent: 1 - uid: 3703 components: - type: Transform @@ -192035,11 +191832,10 @@ entities: rot: -1.5707963267948966 rad pos: 84.5,95.5 parent: 1 - - uid: 5520 + - uid: 5508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 122.5,59.5 + pos: 133.5,58.5 parent: 1 - uid: 5610 components: @@ -192047,17 +191843,17 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,103.5 parent: 1 - - uid: 5700 - components: - - type: Transform - pos: 130.5,59.5 - parent: 1 - uid: 5895 components: - type: Transform rot: 1.5707963267948966 rad pos: 136.5,61.5 parent: 1 + - uid: 5991 + components: + - type: Transform + pos: 124.5,66.5 + parent: 1 - uid: 6135 components: - type: Transform @@ -192818,6 +192614,7 @@ entities: rot: -1.5707963267948966 rad pos: 152.5,92.5 parent: 1 + - type: Timer - uid: 18432 components: - type: Transform @@ -193064,17 +192861,22 @@ entities: rot: 3.141592653589793 rad pos: 47.5,110.5 parent: 1 - - uid: 21745 + - uid: 21205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 129.5,50.5 + rot: -1.5707963267948966 rad + pos: 134.5,61.5 parent: 1 - - uid: 21841 + - uid: 21673 + components: + - type: Transform + pos: 147.5,96.5 + parent: 1 + - uid: 21675 components: - type: Transform rot: 3.141592653589793 rad - pos: 133.5,54.5 + pos: 149.5,88.5 parent: 1 - uid: 21877 components: @@ -193094,12 +192896,6 @@ entities: rot: 3.141592653589793 rad pos: 133.5,64.5 parent: 1 - - uid: 22188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 149.5,88.5 - parent: 1 - uid: 22477 components: - type: Transform @@ -193129,17 +192925,11 @@ entities: rot: 1.5707963267948966 rad pos: 125.5,70.5 parent: 1 - - uid: 22614 + - uid: 22620 components: - type: Transform rot: 1.5707963267948966 rad - pos: 122.5,54.5 - parent: 1 - - uid: 22615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 120.5,55.5 + pos: 122.5,46.5 parent: 1 - uid: 22673 components: @@ -193179,12 +192969,6 @@ entities: rot: -1.5707963267948966 rad pos: 142.5,52.5 parent: 1 - - uid: 22890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 142.5,47.5 - parent: 1 - uid: 22892 components: - type: Transform @@ -193248,6 +193032,16 @@ entities: rot: -1.5707963267948966 rad pos: 149.5,69.5 parent: 1 + - uid: 22965 + components: + - type: Transform + pos: 129.5,47.5 + parent: 1 + - uid: 23079 + components: + - type: Transform + pos: 128.5,58.5 + parent: 1 - uid: 23139 components: - type: Transform @@ -193260,11 +193054,6 @@ entities: rot: -1.5707963267948966 rad pos: 113.5,73.5 parent: 1 - - uid: 23143 - components: - - type: Transform - pos: 138.5,145.5 - parent: 1 - uid: 23343 components: - type: Transform @@ -193341,6 +193130,12 @@ entities: - type: Transform pos: 74.5,65.5 parent: 1 + - uid: 25898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 128.5,60.5 + parent: 1 - uid: 26142 components: - type: Transform @@ -193707,6 +193502,29 @@ entities: rot: -1.5707963267948966 rad pos: 94.5,66.5 parent: 1 + - uid: 28686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 138.5,42.5 + parent: 1 + - uid: 28713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 136.5,42.5 + parent: 1 + - uid: 28718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 142.5,45.5 + parent: 1 + - uid: 28719 + components: + - type: Transform + pos: 138.5,49.5 + parent: 1 - uid: 28786 components: - type: Transform @@ -193845,6 +193663,12 @@ entities: rot: 3.141592653589793 rad pos: 116.5,47.5 parent: 1 + - uid: 31899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 138.5,143.5 + parent: 1 - uid: 32006 components: - type: Transform @@ -193951,11 +193775,6 @@ entities: rot: -1.5707963267948966 rad pos: 80.5,57.5 parent: 1 - - uid: 35590 - components: - - type: Transform - pos: 147.5,96.5 - parent: 1 - uid: 35642 components: - type: Transform @@ -194096,12 +193915,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,108.5 parent: 1 - - uid: 1510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 134.5,51.5 - parent: 1 - uid: 1853 components: - type: Transform @@ -194124,11 +193937,11 @@ entities: rot: -1.5707963267948966 rad pos: 125.5,103.5 parent: 1 - - uid: 5267 + - uid: 5307 components: - type: Transform rot: 1.5707963267948966 rad - pos: 126.5,45.5 + pos: 122.5,43.5 parent: 1 - uid: 5374 components: @@ -194153,6 +193966,12 @@ entities: - type: Transform pos: 51.5,107.5 parent: 1 + - uid: 5685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 122.5,41.5 + parent: 1 - uid: 6102 components: - type: Transform @@ -194331,35 +194150,23 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,96.5 parent: 1 - - uid: 21733 + - uid: 21507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 127.5,49.5 + parent: 1 + - uid: 22271 components: - type: Transform rot: -1.5707963267948966 rad - pos: 134.5,45.5 + pos: 126.5,42.5 parent: 1 - - uid: 21805 + - uid: 22358 components: - type: Transform rot: -1.5707963267948966 rad - pos: 134.5,48.5 - parent: 1 - - uid: 21893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 122.5,66.5 - parent: 1 - - uid: 22129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 131.5,62.5 - parent: 1 - - uid: 22160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 134.5,62.5 + pos: 134.5,50.5 parent: 1 - uid: 22595 components: @@ -194367,11 +194174,11 @@ entities: rot: -1.5707963267948966 rad pos: 149.5,75.5 parent: 1 - - uid: 22925 + - uid: 22769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 124.5,48.5 + rot: 1.5707963267948966 rad + pos: 128.5,42.5 parent: 1 - uid: 22928 components: @@ -194385,24 +194192,18 @@ entities: rot: 3.141592653589793 rad pos: 144.5,60.5 parent: 1 - - uid: 22968 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 126.5,51.5 - parent: 1 - - uid: 23015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 126.5,48.5 - parent: 1 - uid: 23081 components: - type: Transform rot: 3.141592653589793 rad pos: 140.5,140.5 parent: 1 + - uid: 23104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 134.5,42.5 + parent: 1 - uid: 23509 components: - type: Transform @@ -194506,12 +194307,6 @@ entities: rot: 1.5707963267948966 rad pos: 68.5,69.5 parent: 1 - - uid: 27223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,121.5 - parent: 1 - uid: 27267 components: - type: Transform @@ -194663,17 +194458,17 @@ entities: - type: Transform pos: 159.5,143.5 parent: 1 + - uid: 31874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,121.5 + parent: 1 - uid: 32052 components: - type: Transform pos: 141.5,134.5 parent: 1 - - uid: 32299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 127.5,41.5 - parent: 1 - uid: 33493 components: - type: Transform @@ -194834,6 +194629,20 @@ entities: rot: 1.5707963267948966 rad pos: 125.5,151.5 parent: 1 +- proto: PoweredSmallLightEmpty + entities: + - uid: 26637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,108.5 + parent: 1 + - uid: 31873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,116.5 + parent: 1 - proto: PoweredStrobeLightEmpty entities: - uid: 23279 @@ -195116,16 +194925,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,99.5 parent: 1 - - uid: 21818 - components: - - type: Transform - pos: 133.5,54.5 - parent: 1 - - uid: 22125 - components: - - type: Transform - pos: 129.5,43.5 - parent: 1 - uid: 23253 components: - type: Transform @@ -195142,11 +194941,6 @@ entities: - type: Transform pos: 155.5,49.5 parent: 1 - - uid: 25196 - components: - - type: Transform - pos: 146.5,92.5 - parent: 1 - uid: 25240 components: - type: Transform @@ -195195,6 +194989,12 @@ entities: - type: Transform pos: 123.5,83.5 parent: 1 + - uid: 27480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 126.5,42.5 + parent: 1 - uid: 28224 components: - type: Transform @@ -195901,6 +195701,18 @@ entities: rot: -1.5707963267948966 rad pos: 97.5,160.5 parent: 1 +- proto: RailingRound + entities: + - uid: 5517 + components: + - type: Transform + pos: 126.5,58.5 + parent: 1 + - uid: 15975 + components: + - type: Transform + pos: 130.5,58.5 + parent: 1 - proto: RandomArtifactSpawner entities: - uid: 7074 @@ -196259,11 +196071,6 @@ entities: - type: Transform pos: 159.5,48.5 parent: 1 - - uid: 34675 - components: - - type: Transform - pos: 123.5,40.5 - parent: 1 - uid: 34676 components: - type: Transform @@ -196767,11 +196574,6 @@ entities: - type: Transform pos: 37.5,81.5 parent: 1 - - uid: 21263 - components: - - type: Transform - pos: 121.5,63.5 - parent: 1 - uid: 22442 components: - type: Transform @@ -196932,11 +196734,6 @@ entities: - type: Transform pos: 142.5,139.5 parent: 1 - - uid: 30258 - components: - - type: Transform - pos: 137.5,150.5 - parent: 1 - uid: 30259 components: - type: Transform @@ -197072,6 +196869,11 @@ entities: - type: Transform pos: 126.5,80.5 parent: 1 + - uid: 31880 + components: + - type: Transform + pos: 137.5,148.5 + parent: 1 - uid: 35959 components: - type: Transform @@ -197107,11 +196909,6 @@ entities: - type: Transform pos: 151.5,128.5 parent: 1 - - uid: 36598 - components: - - type: Transform - pos: 126.5,102.5 - parent: 1 - uid: 36599 components: - type: Transform @@ -197135,16 +196932,16 @@ entities: parent: 1 - proto: RandomSoap entities: - - uid: 5887 - components: - - type: Transform - pos: 132.5,61.5 - parent: 1 - uid: 28196 components: - type: Transform pos: 54.5,119.5 parent: 1 + - uid: 28573 + components: + - type: Transform + pos: 126.5,42.5 + parent: 1 - uid: 29578 components: - type: Transform @@ -197609,21 +197406,20 @@ entities: parent: 1 - proto: ReagentContainerFlour entities: - - uid: 21486 + - uid: 21435 components: - type: Transform - pos: 126.83026,54.754784 + pos: 126.5352,52.700737 parent: 1 - - uid: 21820 + - uid: 21887 components: - type: Transform - rot: -50.265482457436725 rad - pos: 126.884766,54.50551 + pos: 126.3477,52.466362 parent: 1 - - uid: 21863 + - uid: 22125 components: - type: Transform - pos: 126.55248,54.629787 + pos: 126.73833,52.544487 parent: 1 - uid: 26570 components: @@ -199555,16 +199351,6 @@ entities: - type: Transform pos: 38.5,103.5 parent: 1 - - uid: 5300 - components: - - type: Transform - pos: 121.5,49.5 - parent: 1 - - uid: 5302 - components: - - type: Transform - pos: 121.5,48.5 - parent: 1 - uid: 5312 components: - type: Transform @@ -200396,16 +200182,6 @@ entities: - type: Transform pos: 135.5,57.5 parent: 1 - - uid: 21419 - components: - - type: Transform - pos: 125.5,63.5 - parent: 1 - - uid: 21529 - components: - - type: Transform - pos: 125.5,65.5 - parent: 1 - uid: 21603 components: - type: Transform @@ -200416,6 +200192,11 @@ entities: - type: Transform pos: 121.5,56.5 parent: 1 + - uid: 21890 + components: + - type: Transform + pos: 121.5,48.5 + parent: 1 - uid: 22130 components: - type: Transform @@ -200426,45 +200207,33 @@ entities: - type: Transform pos: 130.5,69.5 parent: 1 - - uid: 22360 - components: - - type: Transform - pos: 125.5,66.5 - parent: 1 - - uid: 22453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 131.5,40.5 - parent: 1 - uid: 22609 components: - type: Transform rot: 1.5707963267948966 rad pos: 133.5,40.5 parent: 1 - - uid: 22620 + - uid: 22757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 132.5,40.5 + pos: 121.5,54.5 + parent: 1 + - uid: 22758 + components: + - type: Transform + pos: 121.5,55.5 + parent: 1 + - uid: 22760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 129.5,40.5 parent: 1 - uid: 22764 components: - type: Transform pos: 135.5,55.5 parent: 1 - - uid: 22961 - components: - - type: Transform - pos: 127.5,61.5 - parent: 1 - - uid: 22972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 130.5,40.5 - parent: 1 - uid: 23011 components: - type: Transform @@ -200546,6 +200315,36 @@ entities: - type: Transform pos: 151.5,52.5 parent: 1 + - uid: 28707 + components: + - type: Transform + pos: 138.5,41.5 + parent: 1 + - uid: 28708 + components: + - type: Transform + pos: 137.5,41.5 + parent: 1 + - uid: 28709 + components: + - type: Transform + pos: 136.5,41.5 + parent: 1 + - uid: 28710 + components: + - type: Transform + pos: 136.5,43.5 + parent: 1 + - uid: 28711 + components: + - type: Transform + pos: 137.5,43.5 + parent: 1 + - uid: 28712 + components: + - type: Transform + pos: 138.5,43.5 + parent: 1 - uid: 29146 components: - type: Transform @@ -200638,12 +200437,22 @@ entities: - type: Transform pos: 41.5,45.5 parent: 1 + - uid: 31798 + components: + - type: Transform + pos: 90.5,121.5 + parent: 1 - uid: 31826 components: - type: Transform rot: 1.5707963267948966 rad pos: 99.5,173.5 parent: 1 + - uid: 31872 + components: + - type: Transform + pos: 86.5,121.5 + parent: 1 - uid: 32171 components: - type: Transform @@ -201059,11 +200868,6 @@ entities: parent: 1 - proto: ScalpelShiv entities: - - uid: 21479 - components: - - type: Transform - pos: 126.71875,54.642506 - parent: 1 - uid: 33557 components: - type: Transform @@ -201076,28 +200880,46 @@ entities: - type: Transform pos: 54.5,98.5 parent: 1 + - uid: 757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 142.5,154.5 + parent: 1 - uid: 2680 components: - type: Transform rot: 1.5707963267948966 rad pos: 102.5,102.5 parent: 1 - - uid: 4199 - components: - - type: Transform - pos: 132.5,54.5 - parent: 1 - uid: 4241 components: - type: Transform rot: 1.5707963267948966 rad pos: 114.5,102.5 parent: 1 - - uid: 21836 + - uid: 20432 components: - type: Transform rot: -1.5707963267948966 rad - pos: 121.5,54.5 + pos: 150.5,154.5 + parent: 1 + - uid: 21085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 156.5,150.5 + parent: 1 + - uid: 21208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 121.5,53.5 + parent: 1 + - uid: 22188 + components: + - type: Transform + pos: 137.5,150.5 parent: 1 - uid: 24081 components: @@ -201264,11 +201086,6 @@ entities: - type: Transform pos: 100.5,49.5 parent: 1 - - uid: 27372 - components: - - type: Transform - pos: 125.5,48.5 - parent: 1 - uid: 28740 components: - type: Transform @@ -201279,11 +201096,37 @@ entities: - type: Transform pos: 74.5,66.5 parent: 1 + - uid: 31794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 132.5,75.5 + parent: 1 - uid: 31832 components: - type: Transform pos: 115.5,83.5 parent: 1 + - uid: 31882 + components: + - type: Transform + pos: 148.5,146.5 + parent: 1 + - uid: 31883 + components: + - type: Transform + pos: 134.5,116.5 + parent: 1 + - uid: 31885 + components: + - type: Transform + pos: 147.5,142.5 + parent: 1 + - uid: 31887 + components: + - type: Transform + pos: 151.5,126.5 + parent: 1 - uid: 32928 components: - type: Transform @@ -201296,12 +201139,18 @@ entities: - type: Transform pos: 135.5,68.5 parent: 1 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: SeedExtractor entities: - - uid: 22705 + - uid: 21805 components: - type: Transform - pos: 134.5,55.5 + pos: 134.5,58.5 parent: 1 - uid: 26648 components: @@ -201552,11 +201401,21 @@ entities: - type: Transform pos: 54.5,101.5 parent: 1 + - uid: 27223 + components: + - type: Transform + pos: 125.5,99.5 + parent: 1 - uid: 27753 components: - type: Transform pos: 54.5,102.5 parent: 1 + - uid: 28269 + components: + - type: Transform + pos: 125.5,100.5 + parent: 1 - uid: 29601 components: - type: Transform @@ -201577,16 +201436,6 @@ entities: - type: Transform pos: 100.5,20.5 parent: 1 - - uid: 35988 - components: - - type: Transform - pos: 125.5,100.5 - parent: 1 - - uid: 35992 - components: - - type: Transform - pos: 125.5,99.5 - parent: 1 - proto: ShuttersNormalOpen entities: - uid: 546 @@ -201609,6 +201458,11 @@ entities: - type: Transform pos: 78.5,142.5 parent: 1 + - uid: 3324 + components: + - type: Transform + pos: 125.5,60.5 + parent: 1 - uid: 4274 components: - type: Transform @@ -201654,6 +201508,21 @@ entities: - type: Transform pos: 150.5,63.5 parent: 1 + - uid: 22961 + components: + - type: Transform + pos: 123.5,60.5 + parent: 1 + - uid: 22996 + components: + - type: Transform + pos: 124.5,60.5 + parent: 1 + - uid: 23017 + components: + - type: Transform + pos: 122.5,60.5 + parent: 1 - uid: 25194 components: - type: Transform @@ -202416,10 +202285,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 35988: + 28269: - - Pressed - Toggle - 35992: + 27223: - - Pressed - Toggle - uid: 24763 @@ -203041,6 +202910,11 @@ entities: parent: 1 - proto: SignBath entities: + - uid: 27485 + components: + - type: Transform + pos: 124.5,44.5 + parent: 1 - uid: 34891 components: - type: Transform @@ -203196,14 +203070,6 @@ entities: rot: 3.141592653589793 rad pos: 77.5,89.5 parent: 1 -- proto: SignDangerMed - entities: - - uid: 21506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 129.5,40.5 - parent: 1 - proto: SignDirectionalBar entities: - uid: 27686 @@ -203787,6 +203653,11 @@ entities: parent: 1 - proto: SignGenpop entities: + - uid: 6448 + components: + - type: Transform + pos: 121.5,49.5 + parent: 1 - uid: 21903 components: - type: Transform @@ -203897,10 +203768,9 @@ entities: rot: -1.5707963267948966 rad pos: 114.5,99.5 parent: 1 - - uid: 28269 + - uid: 28227 components: - type: Transform - rot: 1.5707963267948966 rad pos: 125.5,98.5 parent: 1 - uid: 37636 @@ -204039,14 +203909,6 @@ entities: - type: Transform pos: 143.5,120.5 parent: 1 -- proto: SignPrison - entities: - - uid: 10317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 128.5,54.5 - parent: 1 - proto: SignRadiationMed entities: - uid: 15983 @@ -204083,12 +203945,6 @@ entities: parent: 1 - proto: SignRedFive entities: - - uid: 22127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,47.5 - parent: 1 - uid: 32020 components: - type: Transform @@ -204101,12 +203957,6 @@ entities: parent: 1 - proto: SignRedFour entities: - - uid: 21508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,44.5 - parent: 1 - uid: 32019 components: - type: Transform @@ -204124,12 +203974,6 @@ entities: - type: Transform pos: 160.5,56.5 parent: 1 - - uid: 21868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 132.5,50.5 - parent: 1 - uid: 32016 components: - type: Transform @@ -204145,22 +203989,8 @@ entities: - type: Transform pos: 104.5,170.5 parent: 1 -- proto: SignRedSix - entities: - - uid: 21510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,50.5 - parent: 1 - proto: SignRedThree entities: - - uid: 22126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 132.5,44.5 - parent: 1 - uid: 32018 components: - type: Transform @@ -204183,12 +204013,6 @@ entities: parent: 1 - proto: SignRedTwo entities: - - uid: 21509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 132.5,47.5 - parent: 1 - uid: 32017 components: - type: Transform @@ -204523,17 +204347,18 @@ entities: rot: 1.5707963267948966 rad pos: 146.5,91.5 parent: 1 - - uid: 21732 - components: - - type: Transform - pos: 131.5,62.5 - parent: 1 - uid: 22723 components: - type: Transform rot: -1.5707963267948966 rad pos: 150.5,49.5 parent: 1 + - uid: 22925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 126.5,41.5 + parent: 1 - uid: 22982 components: - type: Transform @@ -204572,6 +204397,12 @@ entities: rot: 3.141592653589793 rad pos: 95.5,96.5 parent: 1 + - uid: 27483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 126.5,43.5 + parent: 1 - uid: 28157 components: - type: Transform @@ -206855,11 +206686,6 @@ entities: - type: Transform pos: 105.5,169.5 parent: 1 - - uid: 36873 - components: - - type: Transform - pos: 123.5,42.5 - parent: 1 - uid: 36875 components: - type: Transform @@ -207959,14 +207785,6 @@ entities: rot: -1.5707963267948966 rad pos: 100.5,66.5 parent: 1 -- proto: StairWhite - entities: - - uid: 32282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 126.5,41.5 - parent: 1 - proto: StairWood entities: - uid: 14069 @@ -208118,6 +207936,11 @@ entities: - type: Transform pos: 41.5,86.5 parent: 1 + - uid: 22838 + components: + - type: Transform + pos: 130.5,48.5 + parent: 1 - uid: 24615 components: - type: Transform @@ -208203,31 +208026,8 @@ entities: rot: -37.69911184307754 rad pos: 164.52304,149.58105 parent: 1 -- proto: StatueVenusRed - entities: - - uid: 22922 - components: - - type: MetaData - desc: An concrete statue. Why is it here? - name: creepy statue - - type: Transform - rot: 1.5707963267948966 rad - pos: 134.5,41.5 - parent: 1 - proto: SteelBench entities: - - uid: 3542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 124.5,66.5 - parent: 1 - - uid: 6057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 124.5,65.5 - parent: 1 - uid: 6562 components: - type: Transform @@ -208246,6 +208046,16 @@ entities: rot: -1.5707963267948966 rad pos: 157.5,151.5 parent: 1 + - uid: 21752 + components: + - type: Transform + pos: 125.5,66.5 + parent: 1 + - uid: 21952 + components: + - type: Transform + pos: 124.5,66.5 + parent: 1 - proto: Stool entities: - uid: 224 @@ -208254,33 +208064,59 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,75.5 parent: 1 + - uid: 2955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 124.5,59.5 + parent: 1 - uid: 6146 components: - type: Transform pos: 105.5,148.5 parent: 1 - - uid: 6411 + - uid: 6322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 127.5,56.5 + pos: 124.5,62.5 + parent: 1 + - uid: 6403 + components: + - type: Transform + pos: 122.5,62.5 parent: 1 - uid: 9261 components: - type: Transform pos: 111.5,148.5 parent: 1 - - uid: 21824 + - uid: 21237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 128.5,58.5 + rot: 3.141592653589793 rad + pos: 122.5,59.5 parent: 1 - - uid: 22567 + - uid: 21573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 128.5,57.5 + pos: 123.5,62.5 + parent: 1 + - uid: 21951 + components: + - type: Transform + pos: 125.5,62.5 + parent: 1 + - uid: 22584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 125.5,59.5 + parent: 1 + - uid: 22707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 123.5,59.5 parent: 1 - uid: 23012 components: @@ -208702,23 +208538,6 @@ entities: - type: Transform pos: 53.5,68.5 parent: 1 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 23046 - components: - - type: Transform - pos: 124.5,47.5 - parent: 1 - - uid: 23047 - components: - - type: Transform - pos: 124.5,48.5 - parent: 1 - - uid: 23048 - components: - - type: Transform - pos: 124.5,49.5 - parent: 1 - proto: SuitStorageHOS entities: - uid: 4208 @@ -210130,6 +209949,17 @@ entities: id: Robotics - proto: SurveillanceCameraSecurity entities: + - uid: 1510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 128.5,51.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig kitchen - uid: 5899 components: - type: Transform @@ -210206,28 +210036,33 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Warden exterior - - uid: 21425 + - uid: 21319 components: - type: Transform rot: -1.5707963267948966 rad - pos: 129.5,47.5 + pos: 132.5,42.5 parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig cells south - - uid: 21426 + - uid: 21414 components: - type: Transform rot: 3.141592653589793 rad - pos: 131.5,43.5 + pos: 130.5,43.5 parent: 1 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Brig breakroom + id: Brig cell 1 + - uid: 21444 + components: + - type: Transform + pos: 130.5,60.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig entrance - uid: 21830 components: - type: Transform @@ -210239,16 +210074,17 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Head of security exterior - - uid: 21831 + - uid: 21842 components: - type: Transform - pos: 128.5,55.5 + rot: 3.141592653589793 rad + pos: 133.5,66.5 parent: 1 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Brig + id: Armory exterior - uid: 21874 components: - type: Transform @@ -210260,17 +210096,48 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Security breakroom - - uid: 21875 + - uid: 22466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 131.5,50.5 + rot: 3.141592653589793 rad + pos: 134.5,43.5 parent: 1 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Brig cells north + id: Brig cell 2 + - uid: 22636 + components: + - type: Transform + pos: 131.5,45.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig south + - uid: 22656 + components: + - type: Transform + pos: 128.5,55.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig north + - uid: 22783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 122.5,62.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig visitation - uid: 23322 components: - type: Transform @@ -210422,17 +210289,6 @@ entities: - SurveillanceCameraService nameSet: True id: Musician's room - - uid: 21424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 120.5,66.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Hallway 08 - uid: 21835 components: - type: Transform @@ -210987,8 +210843,8 @@ entities: - uid: 28665 components: - type: Transform - rot: -18.84955592153876 rad - pos: 120.49912,48.166035 + rot: -106.81415022205287 rad + pos: 120.500336,48.056763 parent: 1 - proto: Table entities: @@ -211143,6 +210999,11 @@ entities: - type: Transform pos: 70.5,91.5 parent: 1 + - uid: 2489 + components: + - type: Transform + pos: 129.5,53.5 + parent: 1 - uid: 2862 components: - type: Transform @@ -211346,11 +211207,6 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,102.5 parent: 1 - - uid: 5635 - components: - - type: Transform - pos: 134.5,56.5 - parent: 1 - uid: 5674 components: - type: Transform @@ -211371,15 +211227,10 @@ entities: - type: Transform pos: 129.5,134.5 parent: 1 - - uid: 5829 + - uid: 5686 components: - type: Transform - pos: 126.5,49.5 - parent: 1 - - uid: 5830 - components: - - type: Transform - pos: 126.5,52.5 + pos: 129.5,49.5 parent: 1 - uid: 5876 components: @@ -211418,17 +211269,10 @@ entities: - type: Transform pos: 137.5,97.5 parent: 1 - - uid: 6119 + - uid: 6120 components: - type: Transform - rot: 3.141592653589793 rad - pos: 122.5,61.5 - parent: 1 - - uid: 6416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 127.5,57.5 + pos: 129.5,50.5 parent: 1 - uid: 6432 components: @@ -211441,12 +211285,6 @@ entities: rot: -1.5707963267948966 rad pos: 130.5,112.5 parent: 1 - - uid: 6447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 127.5,58.5 - parent: 1 - uid: 6535 components: - type: Transform @@ -211550,11 +211388,6 @@ entities: rot: 3.141592653589793 rad pos: 100.5,35.5 parent: 1 - - uid: 12420 - components: - - type: Transform - pos: 125.5,54.5 - parent: 1 - uid: 15049 components: - type: Transform @@ -211802,17 +211635,6 @@ entities: - type: Transform pos: 129.5,71.5 parent: 1 - - uid: 21305 - components: - - type: Transform - pos: 126.5,46.5 - parent: 1 - - uid: 21317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 124.5,62.5 - parent: 1 - uid: 21420 components: - type: Transform @@ -211825,16 +211647,11 @@ entities: rot: -1.5707963267948966 rad pos: 139.5,58.5 parent: 1 - - uid: 21429 + - uid: 21532 components: - type: Transform - pos: 134.5,46.5 - parent: 1 - - uid: 21516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 122.5,62.5 + rot: -1.5707963267948966 rad + pos: 132.5,42.5 parent: 1 - uid: 21579 components: @@ -211842,27 +211659,17 @@ entities: rot: 1.5707963267948966 rad pos: 139.5,46.5 parent: 1 - - uid: 21583 + - uid: 21607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 122.5,56.5 + rot: -1.5707963267948966 rad + pos: 127.5,52.5 parent: 1 - - uid: 21616 + - uid: 21822 components: - type: Transform - pos: 134.5,52.5 - parent: 1 - - uid: 21740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 122.5,57.5 - parent: 1 - - uid: 21823 - components: - - type: Transform - pos: 134.5,49.5 + rot: 3.141592653589793 rad + pos: 125.5,52.5 parent: 1 - uid: 21832 components: @@ -211870,22 +211677,16 @@ entities: rot: -1.5707963267948966 rad pos: 138.5,58.5 parent: 1 - - uid: 21896 + - uid: 21859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 123.5,61.5 + pos: 129.5,51.5 parent: 1 - - uid: 21948 + - uid: 21941 components: - type: Transform - pos: 127.5,54.5 - parent: 1 - - uid: 22242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 123.5,56.5 + rot: -1.5707963267948966 rad + pos: 134.5,50.5 parent: 1 - uid: 22275 components: @@ -211893,11 +211694,16 @@ entities: rot: -1.5707963267948966 rad pos: 139.5,57.5 parent: 1 - - uid: 22390 + - uid: 22570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 123.5,62.5 + pos: 130.5,53.5 + parent: 1 + - uid: 22631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 126.5,52.5 parent: 1 - uid: 22677 components: @@ -211919,10 +211725,11 @@ entities: - type: Transform pos: 148.5,48.5 parent: 1 - - uid: 22799 + - uid: 22747 components: - type: Transform - pos: 126.5,54.5 + rot: -1.5707963267948966 rad + pos: 128.5,42.5 parent: 1 - uid: 22813 components: @@ -211961,27 +211768,10 @@ entities: rot: 1.5707963267948966 rad pos: 150.5,52.5 parent: 1 - - uid: 22907 + - uid: 23182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 124.5,61.5 - parent: 1 - - uid: 23049 - components: - - type: Transform - pos: 124.5,50.5 - parent: 1 - - uid: 23050 - components: - - type: Transform - pos: 124.5,51.5 - parent: 1 - - uid: 23075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 123.5,57.5 + pos: 129.5,54.5 parent: 1 - uid: 23273 components: @@ -212815,20 +212605,6 @@ entities: - type: Transform pos: 56.5,133.5 parent: 1 -- proto: TableFancyWhite - entities: - - uid: 7997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,43.5 - parent: 1 - - uid: 25391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 126.5,43.5 - parent: 1 - proto: TableGlass entities: - uid: 2682 @@ -213057,6 +212833,16 @@ entities: - type: Transform pos: 32.5,52.5 parent: 1 + - uid: 5389 + components: + - type: Transform + pos: 123.5,60.5 + parent: 1 + - uid: 5700 + components: + - type: Transform + pos: 125.5,60.5 + parent: 1 - uid: 5702 components: - type: Transform @@ -213128,6 +212914,11 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,75.5 parent: 1 + - uid: 6161 + components: + - type: Transform + pos: 125.5,61.5 + parent: 1 - uid: 6253 components: - type: Transform @@ -213143,6 +212934,16 @@ entities: - type: Transform pos: 137.5,103.5 parent: 1 + - uid: 6306 + components: + - type: Transform + pos: 124.5,60.5 + parent: 1 + - uid: 6313 + components: + - type: Transform + pos: 123.5,61.5 + parent: 1 - uid: 8306 components: - type: Transform @@ -213353,6 +213154,11 @@ entities: rot: -1.5707963267948966 rad pos: 102.5,97.5 parent: 1 + - uid: 21231 + components: + - type: Transform + pos: 122.5,61.5 + parent: 1 - uid: 21268 components: - type: Transform @@ -213364,6 +213170,11 @@ entities: - type: Transform pos: 142.5,52.5 parent: 1 + - uid: 21753 + components: + - type: Transform + pos: 124.5,61.5 + parent: 1 - uid: 22626 components: - type: Transform @@ -213554,6 +213365,11 @@ entities: - type: Transform pos: 46.5,64.5 parent: 1 + - uid: 27337 + components: + - type: Transform + pos: 122.5,60.5 + parent: 1 - uid: 27504 components: - type: Transform @@ -213765,6 +213581,11 @@ entities: - type: Transform pos: 70.5,57.5 parent: 1 + - uid: 1697 + components: + - type: Transform + pos: 122.5,48.5 + parent: 1 - uid: 1732 components: - type: Transform @@ -213918,11 +213739,6 @@ entities: - type: Transform pos: 137.5,145.5 parent: 1 - - uid: 6569 - components: - - type: Transform - pos: 142.5,145.5 - parent: 1 - uid: 7574 components: - type: Transform @@ -214246,11 +214062,22 @@ entities: - type: Transform pos: 38.5,106.5 parent: 1 + - uid: 22156 + components: + - type: Transform + pos: 122.5,47.5 + parent: 1 - uid: 22937 components: - type: Transform pos: 144.5,60.5 parent: 1 + - uid: 23143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 142.5,145.5 + parent: 1 - uid: 23784 components: - type: Transform @@ -214351,6 +214178,11 @@ entities: - type: Transform pos: 70.5,61.5 parent: 1 + - uid: 26866 + components: + - type: Transform + pos: 123.5,48.5 + parent: 1 - uid: 26935 components: - type: Transform @@ -214368,6 +214200,11 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,75.5 parent: 1 + - uid: 27096 + components: + - type: Transform + pos: 123.5,47.5 + parent: 1 - uid: 27175 components: - type: Transform @@ -214669,17 +214506,16 @@ entities: parent: 1 - proto: TargetHuman entities: - - uid: 21821 + - uid: 6119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 131.5,41.5 + rot: -1.5707963267948966 rad + pos: 122.5,56.5 parent: 1 - - uid: 21856 + - uid: 22160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 132.5,41.5 + pos: 122.5,55.5 parent: 1 - proto: TargetSyndicate entities: @@ -214921,6 +214757,16 @@ entities: - type: Transform pos: 76.5,78.5 parent: 1 + - uid: 5636 + components: + - type: Transform + pos: 128.5,44.5 + parent: 1 + - uid: 21614 + components: + - type: Transform + pos: 132.5,44.5 + parent: 1 - uid: 25919 components: - type: Transform @@ -214983,11 +214829,17 @@ entities: - type: Transform pos: 60.5,52.5 parent: 1 - - uid: 21503 + - uid: 21886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 134.5,61.5 + rot: 1.5707963267948966 rad + pos: 122.5,43.5 + parent: 1 + - uid: 22157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 122.5,41.5 parent: 1 - uid: 34376 components: @@ -215233,6 +215085,12 @@ entities: parent: 1 - proto: ToyFigurineGreytider entities: + - uid: 22565 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 122.75434,48.748077 + parent: 1 - uid: 23269 components: - type: Transform @@ -215255,6 +215113,14 @@ entities: rot: -18.84955592153876 rad pos: 77.512825,58.6809 parent: 1 +- proto: ToyFigurineWarden + entities: + - uid: 22566 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 123.394966,47.701202 + parent: 1 - proto: ToyFigurineWizardFake entities: - uid: 2353 @@ -215368,32 +215234,32 @@ entities: parent: 1 - proto: Turnstile entities: - - uid: 6561 + - uid: 4077 components: - type: MetaData name: exit turnstile - type: Transform rot: -1.5707963267948966 rad - pos: 125.5,64.5 + pos: 126.5,63.5 parent: 1 - proto: TurnstileGenpopEnter entities: - - uid: 22352 + - uid: 1047 components: - type: MetaData - name: brig entrance turnstile + name: enter turnstile - type: Transform - pos: 128.5,61.5 + pos: 129.5,59.5 parent: 1 - proto: TurnstileGenpopLeave entities: - - uid: 21843 + - uid: 22756 components: - type: MetaData - name: brig exit turnstile + name: exit turnstile - type: Transform rot: 3.141592653589793 rad - pos: 126.5,61.5 + pos: 127.5,59.5 parent: 1 - proto: TwoWayLever entities: @@ -215953,6 +215819,12 @@ entities: rot: 3.141592653589793 rad pos: 55.5,55.5 parent: 1 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: UniformShortsRed entities: - uid: 26830 @@ -216097,11 +215969,6 @@ entities: - type: Transform pos: 149.5,55.5 parent: 1 - - uid: 6410 - components: - - type: Transform - pos: 122.5,53.5 - parent: 1 - uid: 9663 components: - type: Transform @@ -216112,6 +215979,11 @@ entities: - type: Transform pos: 106.5,115.5 parent: 1 + - uid: 27479 + components: + - type: Transform + pos: 128.5,49.5 + parent: 1 - proto: VendingMachineClothing entities: - uid: 26787 @@ -216210,6 +216082,11 @@ entities: parent: 1 - proto: VendingMachineGames entities: + - uid: 12413 + components: + - type: Transform + pos: 123.5,45.5 + parent: 1 - uid: 26503 components: - type: Transform @@ -216337,10 +216214,10 @@ entities: parent: 1 - proto: VendingMachineSeedsUnlocked entities: - - uid: 15977 + - uid: 22788 components: - type: Transform - pos: 134.5,54.5 + pos: 134.5,53.5 parent: 1 - proto: VendingMachineSnackTeal entities: @@ -216361,6 +216238,13 @@ entities: - type: Transform pos: 100.5,165.5 parent: 1 +- proto: VendingMachineSustenance + entities: + - uid: 27482 + components: + - type: Transform + pos: 127.5,49.5 + parent: 1 - proto: VendingMachineTankDispenserEngineering entities: - uid: 16063 @@ -219583,11 +219467,6 @@ entities: - type: Transform pos: 86.5,124.5 parent: 1 - - uid: 2556 - components: - - type: Transform - pos: 86.5,121.5 - parent: 1 - uid: 2571 components: - type: Transform @@ -219794,11 +219673,6 @@ entities: - type: Transform pos: 90.5,124.5 parent: 1 - - uid: 2839 - components: - - type: Transform - pos: 90.5,121.5 - parent: 1 - uid: 2842 components: - type: Transform @@ -220182,8 +220056,7 @@ entities: - uid: 3411 components: - type: Transform - rot: 3.141592653589793 rad - pos: 121.5,55.5 + pos: 128.5,59.5 parent: 1 - uid: 3427 components: @@ -221282,11 +221155,6 @@ entities: - type: Transform pos: 129.5,130.5 parent: 1 - - uid: 4833 - components: - - type: Transform - pos: 129.5,61.5 - parent: 1 - uid: 4841 components: - type: Transform @@ -221588,6 +221456,11 @@ entities: - type: Transform pos: 135.5,124.5 parent: 1 + - uid: 5279 + components: + - type: Transform + pos: 134.5,59.5 + parent: 1 - uid: 5295 components: - type: Transform @@ -221613,6 +221486,11 @@ entities: - type: Transform pos: 165.5,141.5 parent: 1 + - uid: 5388 + components: + - type: Transform + pos: 133.5,59.5 + parent: 1 - uid: 5399 components: - type: Transform @@ -221733,12 +221611,6 @@ entities: - type: Transform pos: 125.5,75.5 parent: 1 - - uid: 5689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 136.5,43.5 - parent: 1 - uid: 5691 components: - type: Transform @@ -221826,6 +221698,11 @@ entities: - type: Transform pos: 20.5,79.5 parent: 1 + - uid: 5829 + components: + - type: Transform + pos: 132.5,59.5 + parent: 1 - uid: 5833 components: - type: Transform @@ -221891,11 +221768,6 @@ entities: - type: Transform pos: 121.5,51.5 parent: 1 - - uid: 5997 - components: - - type: Transform - pos: 121.5,47.5 - parent: 1 - uid: 6001 components: - type: Transform @@ -221939,7 +221811,7 @@ entities: - uid: 6060 components: - type: Transform - pos: 122.5,45.5 + pos: 131.5,59.5 parent: 1 - uid: 6064 components: @@ -221970,7 +221842,7 @@ entities: - uid: 6092 components: - type: Transform - pos: 124.5,52.5 + pos: 130.5,59.5 parent: 1 - uid: 6094 components: @@ -222002,36 +221874,16 @@ entities: - type: Transform pos: 46.5,127.5 parent: 1 - - uid: 6118 - components: - - type: Transform - pos: 124.5,45.5 - parent: 1 - uid: 6128 components: - type: Transform pos: 48.5,127.5 parent: 1 - - uid: 6131 - components: - - type: Transform - pos: 135.5,45.5 - parent: 1 - uid: 6148 components: - type: Transform pos: 132.5,87.5 parent: 1 - - uid: 6165 - components: - - type: Transform - pos: 125.5,51.5 - parent: 1 - - uid: 6166 - components: - - type: Transform - pos: 125.5,50.5 - parent: 1 - uid: 6200 components: - type: Transform @@ -222043,21 +221895,6 @@ entities: rot: 3.141592653589793 rad pos: 135.5,51.5 parent: 1 - - uid: 6202 - components: - - type: Transform - pos: 125.5,48.5 - parent: 1 - - uid: 6206 - components: - - type: Transform - pos: 125.5,46.5 - parent: 1 - - uid: 6209 - components: - - type: Transform - pos: 125.5,44.5 - parent: 1 - uid: 6220 components: - type: Transform @@ -222068,16 +221905,6 @@ entities: - type: Transform pos: 159.5,102.5 parent: 1 - - uid: 6258 - components: - - type: Transform - pos: 126.5,44.5 - parent: 1 - - uid: 6270 - components: - - type: Transform - pos: 128.5,44.5 - parent: 1 - uid: 6273 components: - type: Transform @@ -222088,16 +221915,16 @@ entities: - type: Transform pos: 51.5,143.5 parent: 1 - - uid: 6306 - components: - - type: Transform - pos: 128.5,43.5 - parent: 1 - uid: 6307 components: - type: Transform pos: 129.5,75.5 parent: 1 + - uid: 6312 + components: + - type: Transform + pos: 126.5,61.5 + parent: 1 - uid: 6315 components: - type: Transform @@ -222254,11 +222081,6 @@ entities: - type: Transform pos: 154.5,150.5 parent: 1 - - uid: 6593 - components: - - type: Transform - pos: 137.5,43.5 - parent: 1 - uid: 6595 components: - type: Transform @@ -223398,11 +223220,6 @@ entities: - type: Transform pos: 156.5,59.5 parent: 1 - - uid: 8613 - components: - - type: Transform - pos: 128.5,41.5 - parent: 1 - uid: 8668 components: - type: Transform @@ -224348,33 +224165,26 @@ entities: - type: Transform pos: 53.5,106.5 parent: 1 - - uid: 21085 - components: - - type: Transform - pos: 156.5,94.5 - parent: 1 - uid: 21086 components: - type: Transform pos: 147.5,134.5 parent: 1 - - uid: 21202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 121.5,61.5 - parent: 1 - - uid: 21233 + - uid: 21209 components: - type: Transform rot: 1.5707963267948966 rad - pos: 129.5,40.5 + pos: 121.5,49.5 parent: 1 - - uid: 21234 + - uid: 21230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 135.5,40.5 + pos: 126.5,66.5 + parent: 1 + - uid: 21235 + components: + - type: Transform + pos: 126.5,62.5 parent: 1 - uid: 21257 components: @@ -224410,12 +224220,24 @@ entities: - type: Transform pos: 124.5,75.5 parent: 1 + - uid: 21571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 123.5,40.5 + parent: 1 - uid: 21596 components: - type: Transform rot: 3.141592653589793 rad pos: 135.5,50.5 parent: 1 + - uid: 21597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 121.5,41.5 + parent: 1 - uid: 21601 components: - type: Transform @@ -224447,6 +224269,11 @@ entities: rot: 3.141592653589793 rad pos: 135.5,52.5 parent: 1 + - uid: 21953 + components: + - type: Transform + pos: 126.5,60.5 + parent: 1 - uid: 22100 components: - type: Transform @@ -224462,17 +224289,24 @@ entities: - type: Transform pos: 130.5,75.5 parent: 1 - - uid: 22392 - components: - - type: Transform - pos: 138.5,43.5 - parent: 1 - uid: 22394 components: - type: Transform rot: 1.5707963267948966 rad pos: 141.5,50.5 parent: 1 + - uid: 22449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 132.5,40.5 + parent: 1 + - uid: 22453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 131.5,40.5 + parent: 1 - uid: 22483 components: - type: Transform @@ -224493,22 +224327,17 @@ entities: - type: Transform pos: 143.5,129.5 parent: 1 + - uid: 22541 + components: + - type: Transform + pos: 126.5,59.5 + parent: 1 - uid: 22560 components: - type: Transform rot: -1.5707963267948966 rad pos: 130.5,72.5 parent: 1 - - uid: 22570 - components: - - type: Transform - pos: 124.5,67.5 - parent: 1 - - uid: 22591 - components: - - type: Transform - pos: 135.5,47.5 - parent: 1 - uid: 22596 components: - type: Transform @@ -224524,6 +224353,11 @@ entities: - type: Transform pos: 135.5,44.5 parent: 1 + - uid: 22618 + components: + - type: Transform + pos: 126.5,64.5 + parent: 1 - uid: 22633 components: - type: Transform @@ -224544,17 +224378,17 @@ entities: - type: Transform pos: 136.5,70.5 parent: 1 - - uid: 22717 - components: - - type: Transform - pos: 130.5,62.5 - parent: 1 - uid: 22762 components: - type: Transform rot: 3.141592653589793 rad pos: 136.5,50.5 parent: 1 + - uid: 22789 + components: + - type: Transform + pos: 124.5,67.5 + parent: 1 - uid: 22796 components: - type: Transform @@ -224575,11 +224409,6 @@ entities: - type: Transform pos: 130.5,74.5 parent: 1 - - uid: 22832 - components: - - type: Transform - pos: 130.5,61.5 - parent: 1 - uid: 22834 components: - type: Transform @@ -224607,10 +224436,11 @@ entities: - type: Transform pos: 135.5,63.5 parent: 1 - - uid: 22996 + - uid: 23006 components: - type: Transform - pos: 135.5,49.5 + rot: 1.5707963267948966 rad + pos: 135.5,45.5 parent: 1 - uid: 23018 components: @@ -224618,11 +224448,65 @@ entities: rot: 1.5707963267948966 rad pos: 135.5,41.5 parent: 1 + - uid: 23030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 135.5,40.5 + parent: 1 + - uid: 23032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 135.5,47.5 + parent: 1 + - uid: 23040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 135.5,49.5 + parent: 1 + - uid: 23045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 121.5,45.5 + parent: 1 + - uid: 23048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 127.5,40.5 + parent: 1 + - uid: 23050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 121.5,58.5 + parent: 1 + - uid: 23051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 128.5,40.5 + parent: 1 - uid: 23053 components: - type: Transform pos: 134.5,75.5 parent: 1 + - uid: 23058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 121.5,59.5 + parent: 1 + - uid: 23076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 121.5,43.5 + parent: 1 - uid: 23082 components: - type: Transform @@ -224633,6 +224517,12 @@ entities: - type: Transform pos: 51.5,104.5 parent: 1 + - uid: 23173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 121.5,40.5 + parent: 1 - uid: 23251 components: - type: Transform @@ -224683,6 +224573,18 @@ entities: - type: Transform pos: 165.5,139.5 parent: 1 + - uid: 23606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 122.5,40.5 + parent: 1 + - uid: 23608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 125.5,40.5 + parent: 1 - uid: 23618 components: - type: Transform @@ -225655,11 +225557,6 @@ entities: rot: -1.5707963267948966 rad pos: 156.5,150.5 parent: 1 - - uid: 34738 - components: - - type: Transform - pos: 156.5,88.5 - parent: 1 - uid: 34967 components: - type: Transform @@ -226172,6 +226069,12 @@ entities: - type: Transform pos: 51.5,145.5 parent: 1 + - uid: 3320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 121.5,44.5 + parent: 1 - uid: 3417 components: - type: Transform @@ -226187,11 +226090,6 @@ entities: - type: Transform pos: 51.5,136.5 parent: 1 - - uid: 3541 - components: - - type: Transform - pos: 125.5,61.5 - parent: 1 - uid: 3769 components: - type: Transform @@ -226529,24 +226427,6 @@ entities: - type: Transform pos: 121.5,19.5 parent: 1 - - uid: 5049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 121.5,45.5 - parent: 1 - - uid: 5058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 125.5,45.5 - parent: 1 - - uid: 5064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 127.5,44.5 - parent: 1 - uid: 5079 components: - type: Transform @@ -226580,11 +226460,6 @@ entities: - type: Transform pos: 126.5,34.5 parent: 1 - - uid: 5150 - components: - - type: Transform - pos: 127.5,40.5 - parent: 1 - uid: 5153 components: - type: Transform @@ -226803,18 +226678,6 @@ entities: rot: -1.5707963267948966 rad pos: 163.5,121.5 parent: 1 - - uid: 6355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 121.5,54.5 - parent: 1 - - uid: 6359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 121.5,58.5 - parent: 1 - uid: 6500 components: - type: Transform @@ -226843,12 +226706,6 @@ entities: rot: -1.5707963267948966 rad pos: 163.5,105.5 parent: 1 - - uid: 6695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 128.5,40.5 - parent: 1 - uid: 6758 components: - type: Transform @@ -227081,64 +226938,64 @@ entities: - type: Transform pos: 166.5,138.5 parent: 1 - - uid: 20496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 135.5,42.5 - parent: 1 - - uid: 21235 - components: - - type: Transform - pos: 134.5,40.5 - parent: 1 - - uid: 21811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 121.5,59.5 - parent: 1 - uid: 21840 components: - type: Transform rot: -1.5707963267948966 rad pos: 135.5,59.5 parent: 1 - - uid: 22874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 122.5,52.5 - parent: 1 - - uid: 22882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 125.5,52.5 - parent: 1 - - uid: 22883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 125.5,49.5 - parent: 1 - - uid: 22884 + - uid: 22450 components: - type: Transform rot: 3.141592653589793 rad - pos: 125.5,47.5 + pos: 130.5,40.5 parent: 1 - - uid: 23022 + - uid: 22995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 128.5,42.5 + rot: 3.141592653589793 rad + pos: 121.5,47.5 + parent: 1 + - uid: 23052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 135.5,42.5 + parent: 1 + - uid: 23057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 134.5,40.5 + parent: 1 + - uid: 23101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 124.5,40.5 + parent: 1 + - uid: 23174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 126.5,40.5 + parent: 1 + - uid: 23304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 121.5,42.5 parent: 1 - uid: 23463 components: - type: Transform pos: 49.5,77.5 parent: 1 + - uid: 25196 + components: + - type: Transform + pos: 156.5,94.5 + parent: 1 - uid: 25938 components: - type: Transform @@ -227150,6 +227007,11 @@ entities: - type: Transform pos: 110.5,172.5 parent: 1 + - uid: 30187 + components: + - type: Transform + pos: 156.5,88.5 + parent: 1 - uid: 30336 components: - type: Transform @@ -227951,11 +227813,6 @@ entities: - type: Transform pos: 47.5,118.5 parent: 1 - - uid: 1047 - components: - - type: Transform - pos: 121.5,66.5 - parent: 1 - uid: 1048 components: - type: Transform @@ -230179,6 +230036,12 @@ entities: - type: Transform pos: 82.5,69.5 parent: 1 + - uid: 3062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 124.5,44.5 + parent: 1 - uid: 3071 components: - type: Transform @@ -231704,6 +231567,12 @@ entities: - type: Transform pos: 113.5,56.5 parent: 1 + - uid: 4833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 128.5,48.5 + parent: 1 - uid: 4834 components: - type: Transform @@ -232129,11 +231998,6 @@ entities: - type: Transform pos: 121.5,79.5 parent: 1 - - uid: 5307 - components: - - type: Transform - pos: 121.5,43.5 - parent: 1 - uid: 5309 components: - type: Transform @@ -232237,6 +232101,12 @@ entities: - type: Transform pos: 125.5,79.5 parent: 1 + - uid: 5520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 130.5,48.5 + parent: 1 - uid: 5543 components: - type: Transform @@ -232366,6 +232236,12 @@ entities: - type: Transform pos: 126.5,79.5 parent: 1 + - uid: 5659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 125.5,53.5 + parent: 1 - uid: 5718 components: - type: Transform @@ -232581,12 +232457,6 @@ entities: - type: Transform pos: 138.5,108.5 parent: 1 - - uid: 6093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 130.5,60.5 - parent: 1 - uid: 6100 components: - type: Transform @@ -232637,12 +232507,6 @@ entities: - type: Transform pos: 140.5,79.5 parent: 1 - - uid: 6152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 134.5,44.5 - parent: 1 - uid: 6175 components: - type: Transform @@ -232813,11 +232677,6 @@ entities: - type: Transform pos: 143.5,79.5 parent: 1 - - uid: 6314 - components: - - type: Transform - pos: 126.5,50.5 - parent: 1 - uid: 6329 components: - type: Transform @@ -232959,11 +232818,6 @@ entities: - type: Transform pos: 149.5,146.5 parent: 1 - - uid: 6571 - components: - - type: Transform - pos: 141.5,146.5 - parent: 1 - uid: 6575 components: - type: Transform @@ -233101,11 +232955,6 @@ entities: rot: 3.141592653589793 rad pos: 101.5,167.5 parent: 1 - - uid: 6659 - components: - - type: Transform - pos: 142.5,146.5 - parent: 1 - uid: 6660 components: - type: Transform @@ -233166,6 +233015,11 @@ entities: - type: Transform pos: 153.5,126.5 parent: 1 + - uid: 6695 + components: + - type: Transform + pos: 128.5,54.5 + parent: 1 - uid: 6696 components: - type: Transform @@ -233788,6 +233642,12 @@ entities: rot: -1.5707963267948966 rad pos: 103.5,24.5 parent: 1 + - uid: 8665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 130.5,52.5 + parent: 1 - uid: 9133 components: - type: Transform @@ -234407,6 +234267,11 @@ entities: - type: Transform pos: 59.5,124.5 parent: 1 + - uid: 19728 + components: + - type: Transform + pos: 129.5,52.5 + parent: 1 - uid: 19954 components: - type: Transform @@ -234417,16 +234282,16 @@ entities: - type: Transform pos: 93.5,54.5 parent: 1 + - uid: 20496 + components: + - type: Transform + pos: 130.5,44.5 + parent: 1 - uid: 20500 components: - type: Transform pos: 90.5,49.5 parent: 1 - - uid: 20505 - components: - - type: Transform - pos: 124.5,40.5 - parent: 1 - uid: 20851 components: - type: Transform @@ -234476,55 +234341,56 @@ entities: - type: Transform pos: 93.5,38.5 parent: 1 - - uid: 21177 + - uid: 21196 + components: + - type: Transform + pos: 122.5,44.5 + parent: 1 + - uid: 21200 + components: + - type: Transform + pos: 122.5,42.5 + parent: 1 + - uid: 21238 + components: + - type: Transform + pos: 121.5,67.5 + parent: 1 + - uid: 21274 + components: + - type: Transform + pos: 127.5,42.5 + parent: 1 + - uid: 21441 + components: + - type: Transform + pos: 134.5,44.5 + parent: 1 + - uid: 21518 + components: + - type: Transform + pos: 127.5,53.5 + parent: 1 + - uid: 21528 components: - type: Transform - rot: -1.5707963267948966 rad pos: 128.5,53.5 parent: 1 - - uid: 21250 + - uid: 21606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 129.5,44.5 + pos: 127.5,44.5 parent: 1 - - uid: 21264 + - uid: 21870 components: - type: Transform - pos: 133.5,47.5 + pos: 134.5,52.5 parent: 1 - - uid: 21412 - components: - - type: Transform - pos: 127.5,50.5 - parent: 1 - - uid: 21595 - components: - - type: Transform - pos: 134.5,50.5 - parent: 1 - - uid: 21610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 126.5,53.5 - parent: 1 - - uid: 21951 + - uid: 21889 components: - type: Transform rot: 3.141592653589793 rad - pos: 126.5,47.5 - parent: 1 - - uid: 22349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,54.5 - parent: 1 - - uid: 22375 - components: - - type: Transform - pos: 121.5,63.5 + pos: 127.5,48.5 parent: 1 - uid: 22417 components: @@ -234538,48 +234404,21 @@ entities: rot: 3.141592653589793 rad pos: 148.5,87.5 parent: 1 - - uid: 22460 + - uid: 22457 components: - type: Transform - pos: 125.5,62.5 + pos: 121.5,66.5 parent: 1 - - uid: 22467 + - uid: 22542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 133.5,60.5 + rot: 3.141592653589793 rad + pos: 131.5,42.5 parent: 1 - - uid: 22559 + - uid: 22710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 132.5,44.5 - parent: 1 - - uid: 22571 - components: - - type: Transform - pos: 133.5,50.5 - parent: 1 - - uid: 22574 - components: - - type: Transform - pos: 128.5,47.5 - parent: 1 - - uid: 22719 - components: - - type: Transform - pos: 121.5,62.5 - parent: 1 - - uid: 22757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 134.5,60.5 - parent: 1 - - uid: 22867 - components: - - type: Transform - pos: 121.5,67.5 + pos: 126.5,53.5 parent: 1 - uid: 22993 components: @@ -234587,20 +234426,44 @@ entities: rot: -1.5707963267948966 rad pos: 136.5,63.5 parent: 1 - - uid: 22994 + - uid: 23005 components: - type: Transform - pos: 132.5,47.5 + pos: 127.5,43.5 parent: 1 - - uid: 23016 + - uid: 23014 components: - type: Transform - pos: 132.5,53.5 + pos: 123.5,44.5 parent: 1 - - uid: 23017 + - uid: 23019 components: - type: Transform - pos: 133.5,53.5 + rot: 3.141592653589793 rad + pos: 121.5,61.5 + parent: 1 + - uid: 23046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 123.5,42.5 + parent: 1 + - uid: 23133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 121.5,62.5 + parent: 1 + - uid: 23142 + components: + - type: Transform + pos: 121.5,63.5 + parent: 1 + - uid: 23175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 131.5,44.5 parent: 1 - uid: 23184 components: @@ -234934,11 +234797,6 @@ entities: - type: Transform pos: 119.5,147.5 parent: 1 - - uid: 25918 - components: - - type: Transform - pos: 125.5,98.5 - parent: 1 - uid: 25920 components: - type: Transform @@ -235068,6 +234926,12 @@ entities: rot: 1.5707963267948966 rad pos: 81.5,48.5 parent: 1 + - uid: 27372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 131.5,41.5 + parent: 1 - uid: 27414 components: - type: Transform @@ -235120,12 +234984,6 @@ entities: rot: -1.5707963267948966 rad pos: 118.5,43.5 parent: 1 - - uid: 27656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 121.5,40.5 - parent: 1 - uid: 27661 components: - type: Transform @@ -235218,6 +235076,16 @@ entities: - type: Transform pos: 130.5,114.5 parent: 1 + - uid: 28683 + components: + - type: Transform + pos: 125.5,98.5 + parent: 1 + - uid: 28684 + components: + - type: Transform + pos: 125.5,101.5 + parent: 1 - uid: 28715 components: - type: Transform @@ -235233,11 +235101,6 @@ entities: - type: Transform pos: 57.5,156.5 parent: 1 - - uid: 28733 - components: - - type: Transform - pos: 126.5,40.5 - parent: 1 - uid: 28734 components: - type: Transform @@ -235458,11 +235321,6 @@ entities: rot: 1.5707963267948966 rad pos: 107.5,49.5 parent: 1 - - uid: 30187 - components: - - type: Transform - pos: 143.5,143.5 - parent: 1 - uid: 30190 components: - type: Transform @@ -235471,12 +235329,14 @@ entities: - uid: 30198 components: - type: Transform - pos: 143.5,145.5 + rot: 3.141592653589793 rad + pos: 138.5,146.5 parent: 1 - uid: 30205 components: - type: Transform - pos: 138.5,146.5 + rot: 3.141592653589793 rad + pos: 141.5,146.5 parent: 1 - uid: 30230 components: @@ -235488,6 +235348,12 @@ entities: - type: Transform pos: 74.5,109.5 parent: 1 + - uid: 30258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 143.5,145.5 + parent: 1 - uid: 30292 components: - type: Transform @@ -235566,6 +235432,18 @@ entities: rot: -1.5707963267948966 rad pos: 101.5,67.5 parent: 1 + - uid: 31877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 143.5,143.5 + parent: 1 + - uid: 31900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 142.5,146.5 + parent: 1 - uid: 32049 components: - type: Transform @@ -235588,12 +235466,6 @@ entities: rot: 1.5707963267948966 rad pos: 123.5,104.5 parent: 1 - - uid: 32285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 125.5,42.5 - parent: 1 - uid: 32407 components: - type: Transform @@ -235663,11 +235535,6 @@ entities: rot: 1.5707963267948966 rad pos: 123.5,159.5 parent: 1 - - uid: 33966 - components: - - type: Transform - pos: 125.5,101.5 - parent: 1 - uid: 34054 components: - type: Transform @@ -236402,12 +236269,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,120.5 parent: 1 - - uid: 6120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 125.5,53.5 - parent: 1 - uid: 6121 components: - type: Transform @@ -236485,6 +236346,12 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,114.5 parent: 1 + - uid: 6416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 129.5,48.5 + parent: 1 - uid: 6483 components: - type: Transform @@ -236985,12 +236852,6 @@ entities: - type: Transform pos: 114.5,32.5 parent: 1 - - uid: 13761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 128.5,54.5 - parent: 1 - uid: 14498 components: - type: Transform @@ -237171,63 +237032,35 @@ entities: - type: Transform pos: 149.5,84.5 parent: 1 - - uid: 21176 + - uid: 21297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 128.5,50.5 + rot: 3.141592653589793 rad + pos: 126.5,44.5 parent: 1 - - uid: 21196 + - uid: 22251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 133.5,61.5 + rot: 3.141592653589793 rad + pos: 134.5,48.5 parent: 1 - - uid: 21251 + - uid: 22625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 127.5,53.5 + rot: 3.141592653589793 rad + pos: 128.5,52.5 parent: 1 - - uid: 21265 + - uid: 22784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,60.5 + rot: 3.141592653589793 rad + pos: 127.5,41.5 parent: 1 - - uid: 21606 + - uid: 23013 components: - type: Transform - pos: 131.5,44.5 - parent: 1 - - uid: 21901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 127.5,47.5 - parent: 1 - - uid: 22474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 134.5,47.5 - parent: 1 - - uid: 22575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,50.5 - parent: 1 - - uid: 22631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 134.5,53.5 - parent: 1 - - uid: 22741 - components: - - type: Transform - pos: 133.5,44.5 + rot: 3.141592653589793 rad + pos: 131.5,43.5 parent: 1 - uid: 23083 components: @@ -237474,11 +237307,6 @@ entities: - type: Transform pos: 121.5,25.5 parent: 1 - - uid: 27653 - components: - - type: Transform - pos: 121.5,42.5 - parent: 1 - uid: 27654 components: - type: Transform @@ -237611,11 +237439,6 @@ entities: rot: 1.5707963267948966 rad pos: 92.5,150.5 parent: 1 - - uid: 29162 - components: - - type: Transform - pos: 122.5,40.5 - parent: 1 - uid: 29164 components: - type: Transform @@ -237781,11 +237604,6 @@ entities: rot: 3.141592653589793 rad pos: 74.5,157.5 parent: 1 - - uid: 30989 - components: - - type: Transform - pos: 125.5,40.5 - parent: 1 - uid: 31028 components: - type: Transform @@ -238378,35 +238196,30 @@ entities: parent: 1 - proto: WardrobePrisonFilled entities: - - uid: 5988 + - uid: 5267 components: - type: Transform - pos: 132.5,52.5 + pos: 134.5,47.5 parent: 1 - - uid: 21255 + - uid: 5271 components: - type: Transform - pos: 128.5,52.5 + pos: 134.5,46.5 parent: 1 - - uid: 21256 + - uid: 5998 components: - type: Transform - pos: 128.5,49.5 + pos: 134.5,45.5 parent: 1 - - uid: 21986 + - uid: 22623 components: - type: Transform - pos: 128.5,46.5 + pos: 134.5,41.5 parent: 1 - - uid: 22358 + - uid: 22854 components: - type: Transform - pos: 132.5,46.5 - parent: 1 - - uid: 22767 - components: - - type: Transform - pos: 132.5,49.5 + pos: 130.5,41.5 parent: 1 - proto: WardrobeRoboticsFilled entities: @@ -238500,11 +238313,6 @@ entities: - type: Transform pos: 137.5,110.5 parent: 1 - - uid: 6559 - components: - - type: Transform - pos: 122.5,54.5 - parent: 1 - uid: 19868 components: - type: Transform @@ -238540,6 +238348,11 @@ entities: - type: Transform pos: 144.5,53.5 parent: 1 + - uid: 27653 + components: + - type: Transform + pos: 122.5,57.5 + parent: 1 - uid: 35188 components: - type: Transform @@ -238594,11 +238407,6 @@ entities: - type: Transform pos: 37.5,97.5 parent: 1 - - uid: 21897 - components: - - type: Transform - pos: 129.5,41.5 - parent: 1 - uid: 25125 components: - type: Transform @@ -238994,11 +238802,6 @@ entities: - type: Transform pos: 91.5,125.5 parent: 1 - - uid: 35944 - components: - - type: Transform - pos: 122.5,43.5 - parent: 1 - uid: 36106 components: - type: Transform @@ -239321,44 +239124,6 @@ entities: rot: -1.5707963267948966 rad pos: 125.5,99.5 parent: 1 -- proto: WindoorSecure - entities: - - uid: 5944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,48.5 - parent: 1 - - uid: 5987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,51.5 - parent: 1 - - uid: 6516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,51.5 - parent: 1 - - uid: 21504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,45.5 - parent: 1 - - uid: 21607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,45.5 - parent: 1 - - uid: 21870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,48.5 - parent: 1 - proto: WindoorSecureArmoryLocked entities: - uid: 5977 @@ -240196,6 +239961,11 @@ entities: - type: Transform pos: 35.5,57.5 parent: 1 + - uid: 5658 + components: + - type: Transform + pos: 121.5,64.5 + parent: 1 - uid: 5668 components: - type: Transform @@ -240978,21 +240748,11 @@ entities: - type: Transform pos: 136.5,79.5 parent: 1 - - uid: 21292 + - uid: 22632 components: - type: Transform pos: 121.5,65.5 parent: 1 - - uid: 21753 - components: - - type: Transform - pos: 123.5,67.5 - parent: 1 - - uid: 22833 - components: - - type: Transform - pos: 121.5,64.5 - parent: 1 - uid: 23439 components: - type: Transform @@ -241111,6 +240871,11 @@ entities: - type: Transform pos: 59.5,111.5 parent: 1 + - uid: 27317 + components: + - type: Transform + pos: 123.5,67.5 + parent: 1 - uid: 27417 components: - type: Transform @@ -241146,6 +240911,11 @@ entities: - type: Transform pos: 115.5,81.5 parent: 1 + - uid: 28685 + components: + - type: Transform + pos: 143.5,126.5 + parent: 1 - uid: 28761 components: - type: Transform @@ -241211,11 +240981,6 @@ entities: - type: Transform pos: 141.5,96.5 parent: 1 - - uid: 31887 - components: - - type: Transform - pos: 143.5,126.5 - parent: 1 - uid: 32069 components: - type: Transform @@ -241251,12 +241016,6 @@ entities: - type: Transform pos: 62.5,38.5 parent: 1 - - uid: 32283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 125.5,43.5 - parent: 1 - uid: 32415 components: - type: Transform @@ -241828,17 +241587,41 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,119.5 parent: 1 - - uid: 5982 + - uid: 6324 components: - type: Transform rot: 1.5707963267948966 rad - pos: 122.5,62.5 + pos: 122.5,61.5 parent: 1 - - uid: 8158 + - uid: 6355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 122.5,61.5 + parent: 1 + - uid: 6359 components: - type: Transform rot: 1.5707963267948966 rad - pos: 123.5,62.5 + pos: 125.5,60.5 + parent: 1 + - uid: 6362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 124.5,61.5 + parent: 1 + - uid: 6365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 125.5,61.5 + parent: 1 + - uid: 6404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 123.5,61.5 parent: 1 - uid: 16100 components: @@ -241852,65 +241635,65 @@ entities: rot: -1.5707963267948966 rad pos: 73.5,94.5 parent: 1 - - uid: 21306 + - uid: 21228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 123.5,60.5 + parent: 1 + - uid: 21233 components: - type: Transform rot: 1.5707963267948966 rad - pos: 122.5,61.5 + pos: 123.5,61.5 + parent: 1 + - uid: 21234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 125.5,60.5 + parent: 1 + - uid: 21236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 124.5,61.5 + parent: 1 + - uid: 21417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 124.5,60.5 parent: 1 - uid: 21749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 122.5,61.5 + rot: 1.5707963267948966 rad + pos: 122.5,60.5 parent: 1 - - uid: 21754 + - uid: 22391 components: - type: Transform rot: -1.5707963267948966 rad - pos: 124.5,62.5 + pos: 122.5,60.5 parent: 1 - - uid: 21795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 123.5,61.5 - parent: 1 - - uid: 21882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 122.5,62.5 - parent: 1 - - uid: 21895 + - uid: 22711 components: - type: Transform rot: 1.5707963267948966 rad - pos: 124.5,61.5 + pos: 123.5,60.5 parent: 1 - - uid: 22774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 124.5,62.5 - parent: 1 - - uid: 22923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 123.5,61.5 - parent: 1 - - uid: 23013 + - uid: 22787 components: - type: Transform rot: -1.5707963267948966 rad - pos: 124.5,61.5 + pos: 125.5,61.5 parent: 1 - - uid: 23060 + - uid: 23033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 123.5,62.5 + rot: 1.5707963267948966 rad + pos: 124.5,60.5 parent: 1 - uid: 24414 components: @@ -241962,6 +241745,28 @@ entities: parent: 1 - proto: WindowReinforcedDirectional entities: + - uid: 5290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 125.5,60.5 + parent: 1 + - uid: 6318 + components: + - type: Transform + pos: 124.5,61.5 + parent: 1 + - uid: 6363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 122.5,60.5 + parent: 1 + - uid: 6401 + components: + - type: Transform + pos: 125.5,61.5 + parent: 1 - uid: 13118 components: - type: Transform @@ -242020,39 +241825,17 @@ entities: rot: 3.141592653589793 rad pos: 77.5,105.5 parent: 1 - - uid: 21199 + - uid: 21232 components: - type: Transform rot: 3.141592653589793 rad - pos: 123.5,61.5 + pos: 123.5,60.5 parent: 1 - - uid: 21736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,52.5 - parent: 1 - - uid: 21865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,52.5 - parent: 1 - - uid: 21889 - components: - - type: Transform - pos: 122.5,62.5 - parent: 1 - - uid: 21890 + - uid: 21243 components: - type: Transform rot: 3.141592653589793 rad - pos: 124.5,61.5 - parent: 1 - - uid: 22469 - components: - - type: Transform - pos: 123.5,62.5 + pos: 124.5,60.5 parent: 1 - uid: 22573 components: @@ -242066,41 +241849,16 @@ entities: rot: -1.5707963267948966 rad pos: 133.5,68.5 parent: 1 - - uid: 22783 + - uid: 22714 components: - type: Transform - pos: 124.5,62.5 + pos: 123.5,61.5 parent: 1 - - uid: 22921 + - uid: 23111 components: - type: Transform - rot: 3.141592653589793 rad pos: 122.5,61.5 parent: 1 - - uid: 22965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,49.5 - parent: 1 - - uid: 22969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 132.5,46.5 - parent: 1 - - uid: 22995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,46.5 - parent: 1 - - uid: 23014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,49.5 - parent: 1 - uid: 23621 components: - type: Transform @@ -242137,11 +241895,6 @@ entities: parent: 1 - proto: WoodDoor entities: - - uid: 5616 - components: - - type: Transform - pos: 133.5,62.5 - parent: 1 - uid: 23411 components: - type: Transform @@ -242161,6 +241914,16 @@ entities: - type: Transform pos: 78.5,78.5 parent: 1 + - uid: 27491 + components: + - type: Transform + pos: 123.5,41.5 + parent: 1 + - uid: 27492 + components: + - type: Transform + pos: 123.5,43.5 + parent: 1 - proto: WoodenBench entities: - uid: 27014 diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index 7ae1ae9f55..cea879b607 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -11978,15 +11978,6 @@ entities: - type: Transform pos: -0.019477844,-27.376728 parent: 2 -- proto: ActionToggleLight - entities: - - uid: 15419 - components: - - type: Transform - parent: 1478 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 1478 - proto: AirAlarm entities: - uid: 755 @@ -104116,20 +104107,6 @@ entities: - type: Transform pos: -36.532166,7.5278516 parent: 2 - - type: HandheldLight - toggleActionEntity: 15419 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 15419 - - type: ActionsContainer - uid: 5896 components: - type: Transform diff --git a/Resources/Maps/elkridge.yml b/Resources/Maps/elkridge.yml index 9091547174..81adf37508 100644 --- a/Resources/Maps/elkridge.yml +++ b/Resources/Maps/elkridge.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 254.1.0 + engineVersion: 260.0.0 forkId: "" forkVersion: "" - time: 04/25/2025 14:04:06 - entityCount: 17584 + time: 05/19/2025 06:01:16 + entityCount: 17644 maps: - 1 grids: @@ -68,264 +68,264 @@ entities: chunks: 0,0: ind: 0,0 - tiles: BwAAAAAEIAAAAAADfgAAAAABfgAAAAAAfgAAAAADIAAAAAADIAAAAAADIAAAAAACYwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAADIAAAAAADfgAAAAACIAAAAAAABwAAAAAGfgAAAAAAfgAAAAACIAAAAAABIAAAAAACIAAAAAADYwAAAAABYwAAAAADYwAAAAACYwAAAAABYwAAAAADYwAAAAACYwAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAACfgAAAAADfgAAAAACBwAAAAAEfgAAAAADfgAAAAAAIAAAAAADIAAAAAABAQAAAAAAggAAAAAAZAAAAAADZAAAAAADZAAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAABwAAAAABfgAAAAADfgAAAAACfgAAAAACfgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAACZAAAAAADZAAAAAACggAAAAAAYgAAAAADcAAAAAAAcAAAAAAAfgAAAAADfgAAAAABfgAAAAACBwAAAAACfgAAAAABfgAAAAACIAAAAAACIAAAAAACggAAAAAAZAAAAAACZAAAAAACZAAAAAABAQAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAABwAAAAAFfgAAAAACfgAAAAACfgAAAAABfgAAAAADIAAAAAABIAAAAAACggAAAAAAZAAAAAAAZAAAAAADZAAAAAACggAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACcAAAAAAAcAAAAAAAFwAAAAAARgAAAAAARgAAAAAALAAAAAAALAAAAAAAAQAAAAAAIAAAAAAAIAAAAAADggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAYgAAAAABcAAAAAAAcAAAAAAAFwAAAAAARgAAAAAARgAAAAAALAAAAAAALAAAAAAAggAAAAAAIAAAAAAAIAAAAAADggAAAAAAJAAAAAABIAAAAAACJAAAAAABAQAAAAAAYgAAAAABYgAAAAABYgAAAAACFwAAAAAARgAAAAAARgAAAAAALAAAAAAALAAAAAAAggAAAAAAIAAAAAABIAAAAAABggAAAAAAJAAAAAAAJAAAAAACJAAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAADggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAACYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAACwAAAAAAYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADCwAAAAAAYgAAAAAB - version: 6 + tiles: BwAAAAABACAAAAAAAwB+AAAAAAIAfgAAAAAAAH4AAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAQBjAAAAAAEAYwAAAAAAAGMAAAAAAwBjAAAAAAAAYwAAAAABAGMAAAAAAQBjAAAAAAEAIAAAAAADAH4AAAAAAQAgAAAAAAMABwAAAAABAH4AAAAAAwB+AAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAAAYwAAAAADAGMAAAAAAABjAAAAAAMAYwAAAAABAGMAAAAAAgBjAAAAAAEAYwAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAQAgAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAfgAAAAAAAH4AAAAAAgAHAAAAAAEAfgAAAAABAH4AAAAAAQAgAAAAAAAAIAAAAAACAAEAAAAAAACCAAAAAAAAZAAAAAABAGQAAAAAAQBkAAAAAAMAggAAAAAAAGIAAAAAAgBiAAAAAAEAggAAAAAAAAcAAAAABQB+AAAAAAMAfgAAAAACAH4AAAAAAgB+AAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAGQAAAAAAwBkAAAAAAEAZAAAAAACAIIAAAAAAABwAAAAAAAAYgAAAAABAHAAAAAAAAB+AAAAAAMAfgAAAAACAH4AAAAAAAAHAAAAAAQAfgAAAAADAH4AAAAAAQAgAAAAAAAAIAAAAAADAIIAAAAAAABkAAAAAAIAZAAAAAABAGQAAAAAAACCAAAAAAAAcAAAAAAAAGIAAAAAAABwAAAAAAAAfgAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAIAAAAAAAACAAAAAAAwCCAAAAAAAAZAAAAAABAGQAAAAAAwBkAAAAAAEAggAAAAAAAHAAAAAAAABiAAAAAAEAcAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAQAgAAAAAAMAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAABwAAAAAAAAYgAAAAAAAHAAAAAAAAAXAAAAAAAARgAAAAAAAEYAAAAAAAAsAAAAAAAALAAAAAAAAAEAAAAAAAAgAAAAAAAAIAAAAAADAIIAAAAAAAAkAAAAAAIAJAAAAAAAACQAAAAAAwCCAAAAAAAAcAAAAAAAAGIAAAAAAABwAAAAAAAAFwAAAAAAAEYAAAAAAABGAAAAAAAALAAAAAAAACwAAAAAAACCAAAAAAAAIAAAAAADACAAAAAAAwCCAAAAAAAAJAAAAAAAACQAAAAAAwAkAAAAAAMAAQAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABABcAAAAAAABGAAAAAAAARgAAAAAAACwAAAAAAAAsAAAAAAAAggAAAAAAACAAAAAAAwAgAAAAAAMAggAAAAAAACQAAAAAAgAkAAAAAAAAcAAAAAAAAIIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAJAAAAAACAHAAAAAAAACCAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMABgAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAYAAAAAAwCCAAAAAAAAggAAAAAAAAEAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAABAAsAAAAAAQBiAAAAAAIAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAgALAAAAAAEAYgAAAAADAA== + version: 7 -1,0: ind: -1,0 - tiles: YgAAAAADYgAAAAABAQAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAADIAAAAAABAQAAAAAAIAAAAAAACwAAAAAAIAAAAAABfgAAAAABfgAAAAADYgAAAAABYgAAAAAAAQAAAAAAYgAAAAADYgAAAAABCwAAAAAACwAAAAACCwAAAAAAYgAAAAAAIAAAAAABAQAAAAAAIAAAAAAACwAAAAAAIAAAAAABfgAAAAAAfgAAAAABAQAAAAAAAQAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAACYgAAAAADYgAAAAABYgAAAAADIAAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAACIAAAAAACggAAAAAAIAAAAAABIAAAAAAAIAAAAAABBwAAAAAGfgAAAAADAQAAAAAAggAAAAAABgAAAAACAQAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAACfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAggAAAAAAfgAAAAAABwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAACggAAAAAAIAAAAAACIAAAAAADIAAAAAABggAAAAAAfgAAAAACfgAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAAAQAAAAAAYgAAAAADYgAAAAAAYgAAAAACggAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACggAAAAAAAQAAAAAAYgAAAAABYgAAAAADYgAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAFwAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAAAYgAAAAABggAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAggAAAAAAFwAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABggAAAAAAFwAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACggAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAADggAAAAAAggAAAAAAggAAAAAAIAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAADCwAAAAABYgAAAAACYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABCwAAAAACYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: YgAAAAADAGIAAAAAAwABAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAIAAAAAADAAEAAAAAAAAgAAAAAAAACwAAAAABACAAAAAAAgB+AAAAAAAAfgAAAAADAGIAAAAAAABiAAAAAAAAAQAAAAAAAGIAAAAAAgBiAAAAAAIACwAAAAAAAAsAAAAAAgALAAAAAAMAYgAAAAADACAAAAAAAgABAAAAAAAAIAAAAAAAAAsAAAAAAQAgAAAAAAEAfgAAAAACAH4AAAAAAgABAAAAAAAAAQAAAAAAAIIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAQAgAAAAAAAAggAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAAAACAAAAAAAAAgAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAIAAAAAACAIIAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAAAHAAAAAAEAfgAAAAACAAEAAAAAAACCAAAAAAAABgAAAAACAAEAAAAAAACCAAAAAAAAAQAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAfgAAAAACAH4AAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAIAggAAAAAAAH4AAAAAAgAHAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAggAAAAAAACAAAAAAAAAgAAAAAAMAIAAAAAAAAIIAAAAAAAB+AAAAAAAAfgAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAAAACAAAAAAAgCCAAAAAAAAAQAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAADAIIAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAgAgAAAAAAIAggAAAAAAAAEAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgCCAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAABAIIAAAAAAAAXAAAAAAAAggAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAAAAIIAAAAAAAABAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAggAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAACCAAAAAAAAFwAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAIIAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAAAgAAAAAAEAggAAAAAAABcAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAwAgAAAAAAIAggAAAAAAAAEAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwCCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAIAIAAAAAACAIIAAAAAAACCAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAQAAAAAAAAEAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAEACwAAAAACAGIAAAAAAQBiAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAEAYgAAAAABAAsAAAAAAgBiAAAAAAMAYgAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: IAAAAAADIAAAAAADIAAAAAADggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAADYgAAAAAAYgAAAAACYgAAAAACAQAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAADAQAAAAAAIAAAAAAAIAAAAAACIAAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAggAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAACIAAAAAABfgAAAAADIAAAAAABfgAAAAAAfgAAAAAABwAAAAAEIAAAAAACIAAAAAAAIAAAAAADYwAAAAAAYwAAAAAAYwAAAAABYwAAAAADYwAAAAACYwAAAAACYwAAAAADIAAAAAAD - version: 6 + tiles: IAAAAAAAACAAAAAAAwAgAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAEAAQAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAADAAEAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQABAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAACAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAAAIAAAAAADAIIAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAwABAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAMAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAQAgAAAAAAAAggAAAAAAACAAAAAAAQAgAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAABjAAAAAAAAYwAAAAACAGMAAAAAAwBjAAAAAAMAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAMAYwAAAAADAGMAAAAAAwBjAAAAAAAAYwAAAAABAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAgAgAAAAAAEAIAAAAAACAGMAAAAAAABjAAAAAAEAYwAAAAADAGMAAAAAAgBjAAAAAAAAYwAAAAADAGMAAAAAAwAgAAAAAAMAfgAAAAACACAAAAAAAgB+AAAAAAIAfgAAAAADAAcAAAAABgAgAAAAAAMAIAAAAAABACAAAAAAAQBjAAAAAAMAYwAAAAACAGMAAAAAAwBjAAAAAAIAYwAAAAABAGMAAAAAAQBjAAAAAAMAIAAAAAABAA== + version: 7 -1,-1: ind: -1,-1 - tiles: YgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABggAAAAAAIAAAAAADIAAAAAACIAAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAAAAQAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAABYgAAAAABAQAAAAAAYgAAAAAAIAAAAAABggAAAAAAYgAAAAACYgAAAAACYgAAAAACAQAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAAAYgAAAAACYgAAAAACAQAAAAAAYgAAAAAAIAAAAAABAQAAAAAAYgAAAAADYgAAAAADYgAAAAACAQAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAACAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAADwAAAAAAIAAAAAAAIAAAAAABggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAAgAAAAAAggAAAAAADQAAAAAAYgAAAAABYgAAAAACAQAAAAAAggAAAAAAfgAAAAACBwAAAAACfgAAAAAAAQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADggAAAAAAAgAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACAQAAAAAAggAAAAAABwAAAAADfgAAAAABfgAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAACBwAAAAAFIAAAAAABIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAADYgAAAAADggAAAAAAAwAAAAACfgAAAAACfgAAAAAAfgAAAAACIAAAAAACIAAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAAAggAAAAAAggAAAAAAfgAAAAABfgAAAAABBwAAAAABIAAAAAADIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAABIAAAAAADggAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAACAQAAAAAAAQAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAIAAAAAADggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADYgAAAAABYgAAAAABAQAAAAAAYgAAAAADYgAAAAABCwAAAAADCwAAAAABCwAAAAABYgAAAAACIAAAAAACAQAAAAAAIAAAAAACCwAAAAABIAAAAAACfgAAAAADfgAAAAAA - version: 6 + tiles: YgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgCCAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAEAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAAQAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAAQAAAAAAAGIAAAAAAQAgAAAAAAIAggAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAEAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAAEAAAAAAABiAAAAAAAAIAAAAAABAAEAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgABAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwABAAAAAAAAYgAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAA8AAAAAAAAgAAAAAAIAIAAAAAACAIIAAAAAAAACAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAgCCAAAAAAAAAgAAAAAAAIIAAAAAAAANAAAAAAAAYgAAAAADAGIAAAAAAAABAAAAAAAAggAAAAAAAH4AAAAAAQAHAAAAAAUAfgAAAAADAAEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAEAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAIAAQAAAAAAAIIAAAAAAAAHAAAAAAIAfgAAAAACAH4AAAAAAQAgAAAAAAEAIAAAAAABACAAAAAAAwAgAAAAAAMAIAAAAAACAIIAAAAAAAACAAAAAAAAggAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAIIAAAAAAACCAAAAAAAAfgAAAAADAH4AAAAAAgAHAAAAAAAAIAAAAAACACAAAAAAAQAgAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQCCAAAAAAAAAwAAAAACAH4AAAAAAAB+AAAAAAMAfgAAAAADACAAAAAAAAAgAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAACCAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAggAAAAAAAIIAAAAAAAB+AAAAAAAAfgAAAAADAAcAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADACAAAAAAAACCAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAgABAAAAAAAAAQAAAAAAAIIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAAAgAAAAAAMAggAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAAAgAAAAAAMAYgAAAAABAGIAAAAAAQABAAAAAAAAYgAAAAACAGIAAAAAAgALAAAAAAEACwAAAAAAAAsAAAAAAgBiAAAAAAEAIAAAAAACAAEAAAAAAAAgAAAAAAAACwAAAAADACAAAAAAAQB+AAAAAAIAfgAAAAACAA== + version: 7 1,0: ind: 1,0 - tiles: IAAAAAABYgAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAADYgAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABAAAAAABBAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAADAQAAAAAABAAAAAABBAAAAAAAYgAAAAABcAAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADggAAAAAABAAAAAADBAAAAAABBAAAAAACIAAAAAABBAAAAAABBAAAAAAAggAAAAAABAAAAAADCwAAAAAAYgAAAAAAcAAAAAAAggAAAAAAYgAAAAAACwAAAAADYgAAAAACAQAAAAAABAAAAAABBAAAAAADBAAAAAADIAAAAAAAIAAAAAADIAAAAAADggAAAAAABAAAAAABCwAAAAABYgAAAAAAcAAAAAAAggAAAAAAYgAAAAACCwAAAAAAYgAAAAABAQAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABggAAAAAABAAAAAADBAAAAAAAYgAAAAADYgAAAAACIAAAAAADYgAAAAAACwAAAAADYgAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAABAQAAAAAABAAAAAAACwAAAAABYgAAAAAAYgAAAAABIAAAAAAAYgAAAAADYgAAAAAAYgAAAAABggAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACAQAAAAAABAAAAAADCwAAAAABYgAAAAABggAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAAAYgAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAADIAAAAAABIAAAAAABIAAAAAAABAAAAAACBAAAAAACBAAAAAACggAAAAAAAQAAAAAAAQAAAAAAYgAAAAADggAAAAAAAQAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAAAIAAAAAACIAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACggAAAAAABAAAAAAABAAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAABIAAAAAADIAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAAAggAAAAAABAAAAAAABAAAAAABYgAAAAACAQAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAADggAAAAAAggAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADAQAAAAAABAAAAAABBAAAAAADYgAAAAABAQAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAABYgAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAACggAAAAAABAAAAAACBAAAAAAAYgAAAAAAAQAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAggAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAADIAAAAAADBAAAAAAABAAAAAAB - version: 6 + tiles: IAAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAEAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAgAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAgCCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAQAAAAAAgAEAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAEAAAAAAAABAAAAAADAAEAAAAAAAAEAAAAAAIABAAAAAADAGIAAAAAAwBwAAAAAAAAggAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAIIAAAAAAAAEAAAAAAEABAAAAAAAAAQAAAAAAAAgAAAAAAAABAAAAAADAAQAAAAAAgCCAAAAAAAABAAAAAACAAsAAAAAAQBiAAAAAAEAcAAAAAAAAIIAAAAAAABiAAAAAAAACwAAAAACAGIAAAAAAQABAAAAAAAABAAAAAACAAQAAAAAAQAEAAAAAAMAIAAAAAAAACAAAAAAAQAgAAAAAAAAggAAAAAAAAQAAAAAAwALAAAAAAMAYgAAAAABAHAAAAAAAACCAAAAAAAAYgAAAAADAAsAAAAAAQBiAAAAAAIAAQAAAAAAAAQAAAAAAQAEAAAAAAMABAAAAAABAAQAAAAAAQAEAAAAAAIABAAAAAABAIIAAAAAAAAEAAAAAAIABAAAAAACAGIAAAAAAgBwAAAAAAAAggAAAAAAAGIAAAAAAQALAAAAAAAAYgAAAAACAAEAAAAAAAAEAAAAAAEABAAAAAABAAQAAAAAAgAEAAAAAAMABAAAAAAAAAQAAAAAAgABAAAAAAAABAAAAAABAAsAAAAAAABiAAAAAAMAcAAAAAAAAIIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAgCCAAAAAAAABAAAAAABAAQAAAAAAgAEAAAAAAAABAAAAAACAAQAAAAAAQAEAAAAAAMAAQAAAAAAAAQAAAAAAgALAAAAAAEAYgAAAAAAAGIAAAAAAACCAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAEAAAAAAMABAAAAAABAGIAAAAAAgBiAAAAAAEAggAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAAAEAAAAAAEABAAAAAACAAQAAAAAAgCCAAAAAAAAAQAAAAAAAAEAAAAAAABiAAAAAAAAYgAAAAACAIIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAIAAAAAACACAAAAAAAQAEAAAAAAAABAAAAAABAAQAAAAAAQAEAAAAAAEAggAAAAAAAAQAAAAAAgAEAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAACACAAAAAAAAAgAAAAAAMABAAAAAAAAAQAAAAAAwAEAAAAAAMABAAAAAACAIIAAAAAAAAEAAAAAAAABAAAAAACAGIAAAAAAQABAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwCCAAAAAAAAggAAAAAAAAQAAAAAAQAEAAAAAAEABAAAAAABAAQAAAAAAgABAAAAAAAABAAAAAACAAQAAAAAAQBiAAAAAAIAAQAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAIAAQAAAAAAAAQAAAAAAgAEAAAAAAMABAAAAAABAAQAAAAAAAAEAAAAAAEAggAAAAAAAAQAAAAAAAAEAAAAAAAAYgAAAAADAAEAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAADAIIAAAAAAAAEAAAAAAMABAAAAAACAAQAAAAAAwAEAAAAAAMABAAAAAABACAAAAAAAAAEAAAAAAAABAAAAAABAA== + version: 7 1,-1: ind: 1,-1 - tiles: ggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAAAAQAAAAAAggAAAAAAcAAAAAAAIAAAAAACYgAAAAADAQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAADAQAAAAAAcAAAAAAAIAAAAAACYgAAAAABAQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAIAAAAAAAggAAAAAAcAAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAADAQAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIAAAAAADggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACggAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAADggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAIAAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAAAPAAAAAAAAcAAAAAAAAHAAAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAGAAAAAAEAAQAAAAAAAIIAAAAAAABwAAAAAAAAIAAAAAADAGIAAAAAAgABAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAEAIAAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAgABAAAAAAAAcAAAAAAAACAAAAAAAgBiAAAAAAEAAQAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAAAACAAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAADAIIAAAAAAAAgAAAAAAIAggAAAAAAAHAAAAAAAACCAAAAAAAAYgAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAGAAAAAAEAAQAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAgAAAAAAMAggAAAAAAACAAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAEAIAAAAAABAIIAAAAAAAAgAAAAAAAAIAAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAACACAAAAAAAgCCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAwAgAAAAAAIAggAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAIAAQAAAAAAAHAAAAAAAABwAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAABwAAAAAAAAcAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAAGAAAAAAAAggAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAgAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACCAAAAAAAAIAAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: AQAAAAAAIAAAAAACIAAAAAADAQAAAAAAYgAAAAADYgAAAAACYgAAAAADAQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAACYgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIAAAAAADIAAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAADAQAAAAAAYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAABYgAAAAABAQAAAAAAAQAAAAAAggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAACggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAABggAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAAAYgAAAAABYgAAAAABggAAAAAAYgAAAAACYgAAAAAAYgAAAAACggAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAAQAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAABYgAAAAABYgAAAAABggAAAAAAYgAAAAADYgAAAAACYgAAAAABggAAAAAAIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAACAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACAQAAAAAAYgAAAAADYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAAYgAAAAACYgAAAAADYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAAAAQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAABYgAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAADYgAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: AQAAAAAAACAAAAAAAgAgAAAAAAIAAQAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAAEAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAgAAAAAAMAIAAAAAAAAAEAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQABAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAcAAAAAAAAHAAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAIAggAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAADAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAEAggAAAAAAAIIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwCCAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAggAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAADAIIAAAAAAAABAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAIIAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAACAIIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgCCAAAAAAAAIAAAAAABACAAAAAAAwAgAAAAAAEAggAAAAAAAIIAAAAAAABiAAAAAAAAYgAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAcAAAAAAAAHAAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAwAgAAAAAAIAggAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAHAAAAAAAABwAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAIAIAAAAAADAAEAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABwAAAAAAAAcAAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAACCAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAEAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAwCCAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAEAIAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAACAAAAAAAwAgAAAAAAMAIAAAAAABACAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: AQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACCwAAAAAAYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAABBwAAAAAEIAAAAAAAIAAAAAABggAAAAAAYgAAAAAAYgAAAAACAQAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAABggAAAAAABwAAAAAEfgAAAAACfgAAAAADIAAAAAADIAAAAAACAQAAAAAAYgAAAAAAYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAACggAAAAAAfgAAAAABfgAAAAAAfgAAAAACIAAAAAADIAAAAAADggAAAAAAYgAAAAADYgAAAAACAQAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAACggAAAAAAfgAAAAACfgAAAAACfgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAAAAQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAADIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAADggAAAAAAIAAAAAABIAAAAAADIAAAAAABAQAAAAAAAQAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAAAIAAAAAABIAAAAAABIAAAAAABYgAAAAAAAQAAAAAAAQAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAIAAAAAACYgAAAAABYgAAAAABYgAAAAADAQAAAAAADQAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAAAIAAAAAAAYgAAAAADYgAAAAADYgAAAAAAAQAAAAAAAQAAAAAAYgAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAADAQAAAAAAAQAAAAAAYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADAQAAAAAAAQAAAAAAYgAAAAAA - version: 6 + tiles: AQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAGIAAAAAAQALAAAAAAAAYgAAAAACAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAfgAAAAADAH4AAAAAAwAHAAAAAAMAIAAAAAADACAAAAAAAwCCAAAAAAAAYgAAAAACAGIAAAAAAAABAAAAAAAAggAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAwAgAAAAAAEAggAAAAAAAAcAAAAAAQB+AAAAAAAAfgAAAAADACAAAAAAAQAgAAAAAAIAAQAAAAAAAGIAAAAAAQBiAAAAAAIAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAAAAIIAAAAAAAB+AAAAAAAAfgAAAAACAH4AAAAAAAAgAAAAAAMAIAAAAAADAIIAAAAAAABiAAAAAAAAYgAAAAACAAEAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAAAACAAAAAAAQCCAAAAAAAAfgAAAAADAH4AAAAAAwB+AAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAAEAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAgABAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAwAgAAAAAAMAIAAAAAABACAAAAAAAwAgAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAIAggAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAABAAEAAAAAAAABAAAAAAAAIAAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAgAgAAAAAAMAIAAAAAADACAAAAAAAQBiAAAAAAMAAQAAAAAAAAEAAAAAAABiAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAIAAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAADAAEAAAAAAAANAAAAAAIAYgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAACACAAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgABAAAAAAAAAQAAAAAAAGIAAAAAAQCCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwCCAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAAQAAAAAAAAEAAAAAAABiAAAAAAEAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAAAAAEAAAAAAAABAAAAAAAAYgAAAAABAA== + version: 7 2,-1: ind: 2,-1 - tiles: ggAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAABwAAAAABfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAfgAAAAACBwAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAACcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACcAAAAAAAIAAAAAACAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAADcAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADggAAAAAABQAAAAAAIAAAAAAAIAAAAAADBQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAACggAAAAAABwAAAAADggAAAAAAAQAAAAAAggAAAAAABQAAAAAAIAAAAAADIAAAAAADBQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAfgAAAAAABwAAAAABDQAAAAAC - version: 6 + tiles: ggAAAAAAAHAAAAAAAAABAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAABAAAAAAAABwAAAAAGAH4AAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAEAggAAAAAAAH4AAAAAAAAHAAAAAAYAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAEAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAABAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAABgAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAwABAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAEAcAAAAAAAAHAAAAAAAACCAAAAAAAAggAAAAAAAHAAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAACAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAACAAAAAAAQBwAAAAAAAAIAAAAAADAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAACAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAMAggAAAAAAAIIAAAAAAAAgAAAAAAIAcAAAAAAAACAAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAADAIIAAAAAAACCAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAAAIAAAAAADAIIAAAAAAAAFAAAAAAAAIAAAAAADACAAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABwAAAAADAIIAAAAAAAAHAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAABQAAAAAAACAAAAAAAwAgAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAH4AAAAAAgAHAAAAAAEADQAAAAACAA== + version: 7 2,0: ind: 2,0 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAADfgAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACggAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADAQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAAQAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACggAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAAAIAAAAAACIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAADIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAABIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAADggAAAAAAIAAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABggAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAACggAAAAAAIAAAAAADIAAAAAACIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAADAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAAAQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADAQAAAAAABgAAAAABggAAAAAAggAAAAAABAAAAAAAggAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAABggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAcAAAAAAgB+AAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAABgAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAADAIIAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAQAgAAAAAAMAIAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAQAAAAAAQABAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAABACAAAAAAAwCCAAAAAAAAAQAAAAAAAIIAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAEAAAAAAIAggAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAIAggAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAABAAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAgAEAAAAAAIABAAAAAABAAQAAAAAAQAEAAAAAAEABAAAAAACAAQAAAAAAAAEAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAEAAAAAAIABAAAAAABAAQAAAAAAAAEAAAAAAMABAAAAAACAAQAAAAAAAAEAAAAAAIABAAAAAABACAAAAAAAAAgAAAAAAAAIAAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAABAAQAAAAAAQAEAAAAAAMABAAAAAAAAAQAAAAAAAAEAAAAAAIABAAAAAACAAQAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAgCCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAEAAAAAAAABAAAAAACAAQAAAAAAQAEAAAAAAIABAAAAAADAAQAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAABAAAAAADAAQAAAAAAwAEAAAAAAMABAAAAAABAAQAAAAAAwAEAAAAAAIAggAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAQAAAAAAgCCAAAAAAAABAAAAAAAAAQAAAAAAQAEAAAAAAEABAAAAAACAAQAAAAAAQCCAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAEAAAAAAEAAQAAAAAAAAQAAAAAAwAEAAAAAAMABAAAAAAAAAQAAAAAAAAEAAAAAAEAAQAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAwABAAAAAAAABgAAAAADAIIAAAAAAACCAAAAAAAABAAAAAACAIIAAAAAAAAEAAAAAAEABAAAAAACAAQAAAAAAQAEAAAAAAMABAAAAAAAAIIAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAIAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 1,-2: ind: 1,-2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAQABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAADwAAAAAAAHAAAAAAAABwAAAAAAAADwAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAABwAAAAAAAAcAAAAAAAAA8AAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAPAAAAAAAAcAAAAAAAAHAAAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 2,-2: ind: 2,-2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAABAQAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAADIAAAAAACggAAAAAAIAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABBgAAAAACAQAAAAAAAQAAAAAAIAAAAAADAQAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAIAAAAAABggAAAAAAIAAAAAACAQAAAAAABgAAAAADAQAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAggAAAAAABwAAAAAEfgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAwCCAAAAAAAAggAAAAAAACAAAAAAAQAgAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAQABAAAAAAAAIAAAAAACAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAYAAAAAAwABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAQAgAAAAAAIAggAAAAAAACAAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAMABgAAAAACAAEAAAAAAAABAAAAAAAAIAAAAAACAAEAAAAAAAAgAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAYAAAAAAQABAAAAAAAAAQAAAAAAACAAAAAAAwCCAAAAAAAAIAAAAAACAAEAAAAAAAAGAAAAAAEAAQAAAAAAAIIAAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAwAgAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAACCAAAAAAAABwAAAAABAH4AAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: YgAAAAABggAAAAAAAQAAAAAAIAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAYgAAAAAAAQAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADAQAAAAAABgAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACBwAAAAADBwAAAAAFggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAACfgAAAAADBwAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADBwAAAAADfgAAAAACfgAAAAACggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADfgAAAAACBwAAAAADfgAAAAADggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAABwAAAAADfgAAAAAABwAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAfgAAAAADBwAAAAACfgAAAAABggAAAAAAggAAAAAA - version: 6 + tiles: YgAAAAACAIIAAAAAAAABAAAAAAAAIAAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAgCCAAAAAAAABgAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAgABAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAADACAAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAMAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAIAIAAAAAADACAAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAEAggAAAAAAAIIAAAAAAABiAAAAAAEAAQAAAAAAACAAAAAAAwAgAAAAAAEAIAAAAAAAACAAAAAAAQAgAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAQABAAAAAAAABgAAAAABAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAB+AAAAAAEABwAAAAADAAcAAAAABACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAACACAAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABwAAAAACAH4AAAAAAQAHAAAAAAQAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAAAgAAAAAAEAggAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAwAgAAAAAAAAIAAAAAACACAAAAAAAwAHAAAAAAMAfgAAAAAAAH4AAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAABAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAgAgAAAAAAIAfgAAAAACAAcAAAAABQB+AAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAQCCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAACACAAAAAAAQAgAAAAAAMAIAAAAAACAAcAAAAABAB+AAAAAAAABwAAAAADAIIAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAABAIIAAAAAAAB+AAAAAAEABwAAAAAEAH4AAAAAAwCCAAAAAAAAggAAAAAAAA== + version: 7 3,-2: ind: 3,-2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAA== + version: 7 3,-1: ind: 3,-1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAABwAAAAAGggAAAAAADQAAAAACggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAADggAAAAAAggAAAAAABwAAAAAEBwAAAAAGggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAABwAAAAACfgAAAAACggAAAAAABwAAAAAGggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAABwAAAAAEAIIAAAAAAAANAAAAAAEAggAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABwAAAAADAIIAAAAAAACCAAAAAAAABwAAAAAFAAcAAAAABQCCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAHAAAAAAMAfgAAAAADAIIAAAAAAAAHAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAABggAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAACggAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAADggAAAAAAIAAAAAAAIAAAAAACIAAAAAABAQAAAAAAYgAAAAABYgAAAAACCwAAAAABYgAAAAACggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAggAAAAAABgAAAAABAQAAAAAAIAAAAAADIAAAAAAAAQAAAAAABgAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAADIAAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAACYgAAAAADggAAAAAAAQAAAAAABgAAAAADIAAAAAADIAAAAAADAQAAAAAABgAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAADCwAAAAAAYgAAAAACggAAAAAAAQAAAAAAAQAAAAAAIAAAAAADIAAAAAACBgAAAAACAQAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAABggAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAAAggAAAAAAIAAAAAADCwAAAAACYgAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAADAQAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAABAQAAAAAAIAAAAAABYgAAAAAAYgAAAAABggAAAAAAggAAAAAAcAAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAABggAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAACggAAAAAAIAAAAAABYgAAAAADYgAAAAADggAAAAAAggAAAAAAcAAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAABggAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAACIAAAAAABIAAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAACggAAAAAAYgAAAAABYgAAAAAAYgAAAAAAAQAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAACIAAAAAADIAAAAAACYgAAAAACYgAAAAABYgAAAAAAYgAAAAABYgAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: AQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAABAIIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAggAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAIAIAAAAAADAIIAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAgABAAAAAAAAYgAAAAADAGIAAAAAAAALAAAAAAAAYgAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAwAgAAAAAAMAIAAAAAAAACAAAAAAAQCCAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAAAggAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgCCAAAAAAAABgAAAAADAAEAAAAAAAAgAAAAAAAAIAAAAAACAAEAAAAAAAAGAAAAAAMAggAAAAAAACAAAAAAAwAgAAAAAAMAIAAAAAADAIIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAggAAAAAAAAEAAAAAAAABAAAAAAAAIAAAAAADACAAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAABAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAABiAAAAAAMAYgAAAAADAIIAAAAAAAABAAAAAAAABgAAAAAAACAAAAAAAgAgAAAAAAMAAQAAAAAAAAYAAAAAAwCCAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAAACwAAAAABAGIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAgAAAAAAEAIAAAAAAAAAYAAAAAAgABAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAggAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAEAIAAAAAAAAIIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAABAIIAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAgAgAAAAAAMAIAAAAAADACAAAAAAAgCCAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAIIAAAAAAACCAAAAAAAAYgAAAAABAGIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwCCAAAAAAAAIAAAAAAAAAsAAAAAAABiAAAAAAEAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAEAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAIAAQAAAAAAACAAAAAAAwBiAAAAAAAAYgAAAAACAIIAAAAAAACCAAAAAAAAcAAAAAAAAIIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAwCCAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAABAIIAAAAAAAAgAAAAAAAAYgAAAAABAGIAAAAAAACCAAAAAAAAggAAAAAAAHAAAAAAAACCAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAABAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAIIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMAIAAAAAACACAAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAACAIIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAAABAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAABACAAAAAAAgAgAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAgCCAAAAAAAAggAAAAAAAA== + version: 7 -2,-2: ind: -2,-2 - tiles: YgAAAAABYgAAAAADggAAAAAADwAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADCwAAAAADYgAAAAACYgAAAAABYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAABAQAAAAAAfgAAAAABBwAAAAACfgAAAAACggAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAABggAAAAAABwAAAAAEfgAAAAACfgAAAAADggAAAAAAYgAAAAABggAAAAAAIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAAFggAAAAAAYgAAAAACAQAAAAAAIAAAAAAAIAAAAAABAQAAAAAAggAAAAAAggAAAAAAfgAAAAABfgAAAAAABwAAAAACfgAAAAABIAAAAAAAIAAAAAACIAAAAAABIAAAAAADggAAAAAAYgAAAAABggAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAABwAAAAAFfgAAAAABfgAAAAABBwAAAAAEIAAAAAABIAAAAAADIAAAAAACIAAAAAADAQAAAAAAYgAAAAACggAAAAAADwAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAACBwAAAAACfgAAAAABfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAfgAAAAABfgAAAAACBwAAAAABfgAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAYgAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAAFfgAAAAAAfgAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAADggAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAAC - version: 6 + tiles: YgAAAAACAGIAAAAAAgCCAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAACACAAAAAAAQAgAAAAAAIAIAAAAAACAIIAAAAAAABiAAAAAAAAYgAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAIAggAAAAAAAA8AAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAABAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAwALAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAgCCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAIAAQAAAAAAAH4AAAAAAAAHAAAAAAEAfgAAAAACAIIAAAAAAABiAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAAAAIIAAAAAAAAHAAAAAAQAfgAAAAAAAH4AAAAAAwCCAAAAAAAAYgAAAAABAIIAAAAAAAAgAAAAAAIAIAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAfgAAAAAAAH4AAAAAAwAHAAAAAAIAggAAAAAAAGIAAAAAAwABAAAAAAAAIAAAAAABACAAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAB+AAAAAAIAfgAAAAAAAAcAAAAAAgB+AAAAAAIAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAABAIIAAAAAAABiAAAAAAIAggAAAAAAACAAAAAAAQAgAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAABwAAAAACAH4AAAAAAwB+AAAAAAMABwAAAAAEACAAAAAAAQAgAAAAAAAAIAAAAAACACAAAAAAAQABAAAAAAAAYgAAAAAAAIIAAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAH4AAAAAAwAHAAAAAAMAfgAAAAABAH4AAAAAAwAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAAQAAAAAAAGIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAB+AAAAAAMAfgAAAAADAAcAAAAAAwB+AAAAAAIAIAAAAAACACAAAAAAAwAgAAAAAAIAIAAAAAADAIIAAAAAAABiAAAAAAEAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAfgAAAAACAAcAAAAAAgB+AAAAAAMAfgAAAAABACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAgCCAAAAAAAAYgAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAEAIAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAA== + version: 7 -2,-1: ind: -2,-1 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACggAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACAQAAAAAAIAAAAAAAIAAAAAABIAAAAAABAQAAAAAAYgAAAAACYgAAAAABggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAABggAAAAAAIAAAAAAAIAAAAAADIAAAAAADggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADAQAAAAAAIAAAAAAAIAAAAAACIAAAAAADAQAAAAAAYgAAAAADYgAAAAAAAQAAAAAAggAAAAAAcAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAADAQAAAAAAggAAAAAAcAAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAABggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAYgAAAAABYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAABwAAAAAGfgAAAAABIAAAAAABIAAAAAABIAAAAAADggAAAAAAYgAAAAAAYgAAAAACggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAABBwAAAAAGIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAfgAAAAABfgAAAAABIAAAAAACIAAAAAAAIAAAAAADggAAAAAAYgAAAAADYgAAAAABggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAAA - version: 6 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAIAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAEAYgAAAAACAIIAAAAAAAAgAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAAAAGIAAAAAAgCCAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAQBiAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAwAgAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAAAYgAAAAADAIIAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAIAIAAAAAABAAEAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAgABAAAAAAAAYgAAAAABAGIAAAAAAQCCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAwAgAAAAAAMAIAAAAAAAACAAAAAAAQCCAAAAAAAAIAAAAAACACAAAAAAAQAgAAAAAAAAggAAAAAAAGIAAAAAAwBiAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAADACAAAAAAAAAgAAAAAAMAAQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAAAAAEAAAAAAABiAAAAAAEAYgAAAAADAAEAAAAAAACCAAAAAAAAcAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAAAAGIAAAAAAQABAAAAAAAAggAAAAAAAHAAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAwCCAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAABACAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAADAIIAAAAAAABiAAAAAAIAYgAAAAABAIIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAABwAAAAAFAH4AAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAwCCAAAAAAAAYgAAAAABAGIAAAAAAwCCAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAH4AAAAAAQAHAAAAAAUAIAAAAAACACAAAAAAAwAgAAAAAAIAggAAAAAAAGIAAAAAAwBiAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAB+AAAAAAIAfgAAAAADACAAAAAAAwAgAAAAAAMAIAAAAAABAIIAAAAAAABiAAAAAAEAYgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAA== + version: 7 -2,0: ind: -2,0 - tiles: AgAAAAAAAAAAAAAAAgAAAAAAggAAAAAABwAAAAAAfgAAAAADBwAAAAAEfgAAAAACggAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAABwAAAAABBwAAAAAEfgAAAAADBwAAAAABggAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAZAAAAAACZAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACIAAAAAABBgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACAgAAAAAAggAAAAAADQAAAAABggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAADggAAAAAAIAAAAAACIAAAAAAAIAAAAAACAgAAAAAAggAAAAAAggAAAAAAggAAAAAADQAAAAABggAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAACggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAABggAAAAAAIAAAAAADIAAAAAAAIAAAAAAA - version: 6 + tiles: AgAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAcAAAAAAwB+AAAAAAAABwAAAAABAH4AAAAAAQCCAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAAAHAAAAAAMABwAAAAAFAH4AAAAAAgAHAAAAAAUAggAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAgCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGQAAAAAAQBkAAAAAAAAZAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAMAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABwAAAAAAAAcAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAIAAAAAACACAAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAwAgAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAQAgAAAAAAEAAgAAAAAAAIIAAAAAAAANAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAAAggAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAADAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAANAAAAAAIAggAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAIAIAAAAAABAIIAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAgCCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAACACAAAAAAAQAgAAAAAAMAggAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAACAA== + version: 7 1,1: ind: 1,1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAAggAAAAAABAAAAAACBAAAAAAAAQAAAAAABgAAAAADggAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACBAAAAAADggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAggAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAACBAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACggAAAAAAAQAAAAAAggAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACggAAAAAABAAAAAACBAAAAAADBAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAAQAAAAAABgAAAAACggAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAABIAAAAAADIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAABIAAAAAABIAAAAAACIAAAAAACggAAAAAABgAAAAACAQAAAAAAggAAAAAABwAAAAABBwAAAAAGggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAABgAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAEAAAAAAMABAAAAAACAAQAAAAAAAAEAAAAAAIABAAAAAAAAIIAAAAAAAAEAAAAAAEABAAAAAABAAEAAAAAAAAGAAAAAAEAggAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAABACAAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAAAAAQAAAAAAgCCAAAAAAAAAQAAAAAAAIIAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAwAgAAAAAAIAggAAAAAAAAQAAAAAAAAEAAAAAAEABAAAAAADAAQAAAAAAwAEAAAAAAIABAAAAAACAAQAAAAAAQAEAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAAAAAEAAAAAAAAEAAAAAAIABAAAAAADAAQAAAAAAwAEAAAAAAIABAAAAAAAAAQAAAAAAQAEAAAAAAIABAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAABAAQAAAAAAgAEAAAAAAMAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAEAAAAAAEABAAAAAAAAAQAAAAAAQAEAAAAAAMAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAQAgAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAACAAQAAAAAAAAEAAAAAAIABAAAAAACAAEAAAAAAAAEAAAAAAIABAAAAAACAAQAAAAAAQCCAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAEAIAAAAAABAIIAAAAAAAABAAAAAAAAggAAAAAAAAQAAAAAAAAEAAAAAAMABAAAAAAAAAQAAAAAAQCCAAAAAAAABAAAAAACAAQAAAAAAgAEAAAAAAAAggAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAwABAAAAAAAABgAAAAADAIIAAAAAAAAEAAAAAAEABAAAAAABAAQAAAAAAQAEAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAEAAAAAAIABAAAAAACACAAAAAAAgAgAAAAAAAAIAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAB+AAAAAAEABwAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAABAAQAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAgCCAAAAAAAABgAAAAABAAEAAAAAAACCAAAAAAAABwAAAAADAAcAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAABgAAAAABAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAA== + version: 7 0,-3: ind: 0,-3 - tiles: ggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADggAAAAAAAQAAAAAAIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAAQAAAAAAIAAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAAQAAAAAAIAAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAIAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAACCAAAAAAAAAQAAAAAAACAAAAAAAQABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAAAggAAAAAAAAEAAAAAAAAgAAAAAAEAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAACAIIAAAAAAAABAAAAAAAAIAAAAAACAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAA== + version: 7 1,-3: ind: 1,-3 - tiles: ggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: ggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 -1,-3: ind: -1,-3 - tiles: ggAAAAAAggAAAAAACAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAABgAAAAABcAAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACfgAAAAACggAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAACAQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACfgAAAAADggAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAADIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACBgAAAAABAQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABggAAAAAAggAAAAAAAQAAAAAAIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACAQAAAAAAYgAAAAABYgAAAAADIAAAAAAAIAAAAAACggAAAAAAYgAAAAAAYgAAAAAAYgAAAAABggAAAAAAYwAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAACIAAAAAABIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAABAQAAAAAAYwAAAAADIAAAAAABggAAAAAAIAAAAAAAIAAAAAACIAAAAAAAggAAAAAAYgAAAAACYgAAAAAC - version: 6 + tiles: ggAAAAAAAIIAAAAAAAAIAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAACAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAYAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAABgAAAAADAHAAAAAAAAAGAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAHAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAGAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAH4AAAAAAwB+AAAAAAMAggAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAB+AAAAAAAAfgAAAAACAAEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAAAgAAAAAAEAIAAAAAADAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAfgAAAAABAH4AAAAAAgCCAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAEAIAAAAAABACAAAAAAAQAgAAAAAAIAIAAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAAABAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAEAIAAAAAACAIIAAAAAAACCAAAAAAAAAQAAAAAAACAAAAAAAQAgAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAACACAAAAAAAgABAAAAAAAAYgAAAAACAGIAAAAAAAAgAAAAAAEAIAAAAAAAAIIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgCCAAAAAAAAYwAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAQBiAAAAAAIAIAAAAAACACAAAAAAAwCCAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAAQAAAAAAAGMAAAAAAwAgAAAAAAMAggAAAAAAACAAAAAAAAAgAAAAAAMAIAAAAAACAIIAAAAAAABiAAAAAAMAYgAAAAADAA== + version: 7 -2,-3: ind: -2,-3 - tiles: ggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACfgAAAAACggAAAAAAfgAAAAACfgAAAAAAggAAAAAABwAAAAAAfgAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAfgAAAAAABwAAAAAAAQAAAAAAfgAAAAADBwAAAAAGAQAAAAAAfgAAAAABBwAAAAACggAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAggAAAAAABwAAAAAGfgAAAAAAggAAAAAABwAAAAACfgAAAAAAggAAAAAABwAAAAACfgAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAABfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAACYgAAAAACAQAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAACCwAAAAAACwAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAAQAAAAAAAQAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACAQAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAIAAAAAABYgAAAAADYgAAAAAAggAAAAAAfgAAAAAAfgAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAADggAAAAAAYgAAAAABYgAAAAADggAAAAAAIAAAAAABIAAAAAAAYgAAAAACYgAAAAADAQAAAAAABwAAAAAGfgAAAAABAQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAAAYgAAAAAAYgAAAAAAggAAAAAAfgAAAAAABwAAAAAEggAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAACggAAAAAAYgAAAAAAYgAAAAACggAAAAAAIAAAAAAAIAAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACggAAAAAAYgAAAAABYgAAAAADggAAAAAAIAAAAAAAIAAAAAAA - version: 6 + tiles: ggAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAAGAAAAAAEAAQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAH4AAAAAAQB+AAAAAAIAggAAAAAAAH4AAAAAAwB+AAAAAAAAggAAAAAAAAcAAAAABgB+AAAAAAIAggAAAAAAACAAAAAAAwAgAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACAIIAAAAAAAB+AAAAAAAABwAAAAAEAAEAAAAAAAB+AAAAAAAABwAAAAAFAAEAAAAAAAB+AAAAAAIABwAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAAAACAAAAAAAwCCAAAAAAAABwAAAAABAH4AAAAAAQCCAAAAAAAABwAAAAAFAH4AAAAAAwCCAAAAAAAABwAAAAAGAH4AAAAAAwCCAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAMAIAAAAAABACAAAAAAAAAgAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAH4AAAAAAgB+AAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAMAAQAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAACwAAAAABAAsAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAABAAEAAAAAAAABAAAAAAAAggAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAMAYgAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAABiAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAIAYgAAAAAAAGIAAAAAAQCCAAAAAAAAfgAAAAAAAH4AAAAAAwCCAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAAAIAAAAAADAIIAAAAAAABiAAAAAAEAYgAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAADAGIAAAAAAgBiAAAAAAAAAQAAAAAAAAcAAAAAAQB+AAAAAAMAAQAAAAAAACAAAAAAAwAgAAAAAAAAIAAAAAAAACAAAAAAAwCCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAIAAAAAABACAAAAAAAgBiAAAAAAAAYgAAAAADAIIAAAAAAAB+AAAAAAMABwAAAAABAIIAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAwAgAAAAAAMAggAAAAAAAGIAAAAAAgBiAAAAAAAAggAAAAAAACAAAAAAAwAgAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAACAIIAAAAAAABiAAAAAAAAYgAAAAACAIIAAAAAAAAgAAAAAAIAIAAAAAADAA== + version: 7 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAABIAAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAABAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAYAAAAAAQABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAwAgAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAAAgAAAAAAIAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAwAgAAAAAAIAIAAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAABACAAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAAAgAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAgAgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAABAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAAAIAAAAAABACAAAAAAAQAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACACAAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAgAgAAAAAAEAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAQAgAAAAAAMAIAAAAAADACAAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAgAgAAAAAAAAIAAAAAACAAAAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAMAIAAAAAACACAAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAwAAAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,-2: ind: -3,-2 - tiles: YgAAAAADYgAAAAAAYgAAAAADAQAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACAQAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAACYgAAAAADYgAAAAADAQAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAwAAAAABAwAAAAABBwAAAAADAwAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAACfgAAAAACfgAAAAACBwAAAAAFAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAABBwAAAAAFBwAAAAADfgAAAAABAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAACfgAAAAADfgAAAAADBwAAAAAAAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAABwAAAAAFfgAAAAAAfgAAAAACAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAADfgAAAAADBwAAAAAAfgAAAAADAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAACAwAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: YgAAAAADAGIAAAAAAwBiAAAAAAMAAQAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAAAAAEAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAwABAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAwAAAAAAAAMAAAAAAQAHAAAAAAUAAwAAAAABAAMAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAAB+AAAAAAEAfgAAAAABAAcAAAAABAADAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAMABwAAAAAGAAcAAAAABAB+AAAAAAEAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAADAH4AAAAAAgB+AAAAAAMABwAAAAAEAAMAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAAAGAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAgAHAAAAAAUAfgAAAAAAAH4AAAAAAQADAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAAAfgAAAAADAAcAAAAABQB+AAAAAAAAAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAQCCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 -3,1: ind: -3,1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAEAAAAAAAggAAAAAABQAAAAAAIAAAAAADIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAEAAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAABQAAAAAAIAAAAAABIAAAAAADggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAcAAAAAAABQAAAAAAAQAAAAAABQAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAEAAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAABggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAEAAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAABYgAAAAACggAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAEAIAAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABwAAAAAAAAggAAAAAAAIIAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAACCAAAAAAAABQAAAAAAACAAAAAAAgAgAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAQAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAFAAAAAAAAggAAAAAAAAUAAAAAAAAgAAAAAAEAIAAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAcAAAAAAAAAUAAAAAAAABAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAABACAAAAAAAQABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAABAAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAABQAAAAAAACAAAAAAAAAgAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAcAAAAAAAAIIAAAAAAACCAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAggAAAAAAAAUAAAAAAAAgAAAAAAAAIAAAAAADAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAHAAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABwAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAACAAAAAAAQBiAAAAAAEAggAAAAAAAA== + version: 7 2,-3: ind: 2,-3 - tiles: AgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: AgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 1,-4: ind: 1,-4 - tiles: ggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: ggAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAABQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAABEAAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAQAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAEAEAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 -2,1: ind: -2,1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAABAQAAAAAAIAAAAAADIAAAAAABIAAAAAACBgAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAcAAAAAAAggAAAAAAcAAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAADAQAAAAAAIAAAAAABIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAcAAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAACggAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAACAQAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAAAYgAAAAADYgAAAAACggAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAACggAAAAAAIAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAEfgAAAAACggAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAABggAAAAAAAQAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAACAQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAAGggAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAABcAAAAAAAggAAAAAAIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAABgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAADQAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAADggAAAAAAcAAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAIAAQAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADAAYAAAAAAwCCAAAAAAAAggAAAAAAAHAAAAAAAACCAAAAAAAAcAAAAAAAAIIAAAAAAABwAAAAAAAAggAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAACAAEAAAAAAAAgAAAAAAAAIAAAAAACACAAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAABwAAAAAAAAggAAAAAAAHAAAAAAAACCAAAAAAAAcAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAggAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAAQAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAAEAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAABAAEAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAgCCAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAEAIAAAAAABACAAAAAAAwAgAAAAAAMAIAAAAAAAACAAAAAAAQCCAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAggAAAAAAACAAAAAAAwAgAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAAAYgAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAgCCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABwAAAAAAAH4AAAAAAACCAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAIAIAAAAAADACAAAAAAAQCCAAAAAAAAAQAAAAAAAIIAAAAAAAAGAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAH4AAAAAAAAHAAAAAAMAAQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAB+AAAAAAMABwAAAAAFAIIAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAwAgAAAAAAAAcAAAAAAAAIIAAAAAAAAgAAAAAAMAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAADQAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAYAAAAAAQCCAAAAAAAAcAAAAAAAAIIAAAAAAACCAAAAAAAAcAAAAAAAAHAAAAAAAACCAAAAAAAAcAAAAAAAAHAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAHAAAAAAAABwAAAAAAAAggAAAAAAAHAAAAAAAABwAAAAAAAAggAAAAAAAIIAAAAAAABwAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADfgAAAAAABwAAAAAEfgAAAAAABwAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAACfgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAfgAAAAACfgAAAAACBwAAAAADIAAAAAABIAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAFfgAAAAADfgAAAAABIAAAAAABIAAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAADZAAAAAACZAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAACZAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAZAAAAAAAZAAAAAAAZAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAZAAAAAAAZAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAGAAAAAAMAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAB+AAAAAAIAfgAAAAAAAAcAAAAABAB+AAAAAAMABwAAAAAFAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAADAIIAAAAAAACCAAAAAAAABwAAAAABAH4AAAAAAQB+AAAAAAAAfgAAAAADAH4AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAYAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAADACAAAAAAAgAgAAAAAAIAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAMAIAAAAAADAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAMAIAAAAAAAACAAAAAAAQCCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAggAAAAAAAH4AAAAAAQB+AAAAAAAABwAAAAADACAAAAAAAwAgAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAHAAAAAAMAfgAAAAACAH4AAAAAAwAgAAAAAAEAIAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAJAAAAAABAGQAAAAAAABkAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACQAAAAAAwBkAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABkAAAAAAEAZAAAAAADAGQAAAAAAQCCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAIAAAAAABACAAAAAAAwAgAAAAAAEAIAAAAAADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAZAAAAAACAGQAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACACAAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAA== + version: 7 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAA== + version: 7 -4,-2: ind: -4,-2 - tiles: YgAAAAABDQAAAAACYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAACggAAAAAAYgAAAAADDgAAAAADYgAAAAADYgAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAACYgAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAABYgAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: YgAAAAABAA0AAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAABAIIAAAAAAABiAAAAAAMADgAAAAAAAGIAAAAAAwBiAAAAAAMAggAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAABAIIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAggAAAAAAACAAAAAAAAAgAAAAAAMAIAAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAggAAAAAAAQAAAAAADQAAAAACDgAAAAAEYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAMAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAANAAAAAAEADgAAAAACAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAADAIIAAAAAAABiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -5,-3: ind: -5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAAAgAAAAAAEAIAAAAAADAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAADACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,1: ind: 2,1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAABggAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABAAAAAACBAAAAAACAQAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAABggAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAADggAAAAAABwAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAABggAAAAAAggAAAAAAggAAAAAAfgAAAAACBwAAAAAFDQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAAAggAAAAAABgAAAAACggAAAAAABwAAAAAFBwAAAAABfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAABggAAAAAABwAAAAAFggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAQAAAAAAQAEAAAAAAIAggAAAAAAAAQAAAAAAAAEAAAAAAEABAAAAAABAAQAAAAAAQAEAAAAAAIABAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAEAAAAAAIABAAAAAADAAEAAAAAAAAEAAAAAAIABAAAAAACAAQAAAAAAAAEAAAAAAIABAAAAAACAAQAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAADAAQAAAAAAgCCAAAAAAAABAAAAAACAAQAAAAAAgAEAAAAAAMABAAAAAADAAQAAAAAAQAEAAAAAAIAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAGAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAADAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACAAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABwAAAAAEAIIAAAAAAAAHAAAAAAEAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAfgAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAH4AAAAAAgAHAAAAAAUADQAAAAACAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAH4AAAAAAgCCAAAAAAAABgAAAAABAIIAAAAAAAAHAAAAAAAABwAAAAADAH4AAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAfgAAAAADAIIAAAAAAAAHAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAABgAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: ggAAAAAAggAAAAAABgAAAAABAQAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAAQAAAAAAAQAAAAAAYgAAAAABfgAAAAAABwAAAAAFfgAAAAABggAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAAAYgAAAAAABwAAAAAEfgAAAAACBwAAAAAEggAAAAAAYgAAAAABYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAACYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAACcAAAAAAAcAAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAADYgAAAAABcAAAAAAAcAAAAAAAYgAAAAACIAAAAAADIAAAAAABIAAAAAAAggAAAAAAYgAAAAADYgAAAAACcAAAAAAAcAAAAAAAYgAAAAABcAAAAAAAcAAAAAAAYgAAAAABYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAABIAAAAAAAIAAAAAABIAAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAADYgAAAAADIAAAAAADIAAAAAADIAAAAAADAQAAAAAAAQAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAACIAAAAAADIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAAAGAAAAAAIAAQAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAwCCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAgABAAAAAAAAAQAAAAAAAGIAAAAAAwB+AAAAAAMABwAAAAAAAH4AAAAAAACCAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAADAH4AAAAAAQAHAAAAAAQAggAAAAAAAGIAAAAAAgBiAAAAAAMAcAAAAAAAAHAAAAAAAABiAAAAAAAAcAAAAAAAAHAAAAAAAABiAAAAAAAAYgAAAAAAAHAAAAAAAABwAAAAAAAAYgAAAAADAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAIAYgAAAAADAHAAAAAAAABwAAAAAAAAYgAAAAABAHAAAAAAAABwAAAAAAAAYgAAAAABAGIAAAAAAgBwAAAAAAAAcAAAAAAAAGIAAAAAAgAgAAAAAAAAIAAAAAADACAAAAAAAgCCAAAAAAAAYgAAAAAAAGIAAAAAAwBwAAAAAAAAcAAAAAAAAGIAAAAAAQBwAAAAAAAAcAAAAAAAAGIAAAAAAQBiAAAAAAIAcAAAAAAAAHAAAAAAAABiAAAAAAMAIAAAAAADACAAAAAAAAAgAAAAAAAAggAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACACAAAAAAAAAgAAAAAAEAIAAAAAADAAEAAAAAAAABAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwAgAAAAAAIAIAAAAAACACAAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,2: ind: 1,2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAYgAAAAACggAAAAAAIAAAAAABDAAAAAAADAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAZAAAAAADZAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAIAAAAAABDAAAAAAADAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAZAAAAAAAZAAAAAABggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAQAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAACZAAAAAACggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAACZAAAAAABggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAYgAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAADIAAAAAABIAAAAAACDwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAIAAAAAACIAAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAIAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAABiAAAAAAMAggAAAAAAACAAAAAAAAAMAAAAAAEADAAAAAADACAAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAZAAAAAADAGQAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAABAIIAAAAAAAAgAAAAAAIADAAAAAABAAwAAAAAAwAgAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGQAAAAAAQBkAAAAAAIAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQABAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAEAAAAAAAAGAAAAAAEADwAAAAAAAIIAAAAAAABkAAAAAAIAZAAAAAADAIIAAAAAAACCAAAAAAAAAAAAAAAAAIIAAAAAAABiAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAA8AAAAAAACCAAAAAAAAZAAAAAAAAGQAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAYgAAAAABAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAggAAAAAAAGIAAAAAAACCAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAYAAAAAAgCCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,2: ind: -1,2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAABggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAABIAAAAAABggAAAAAABgAAAAACggAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAABIAAAAAACggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAADIAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAIIAAAAAAAAGAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAABiAAAAAAIAYgAAAAACACAAAAAAAwCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAYgAAAAABAGIAAAAAAwAgAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAGIAAAAAAQBiAAAAAAEAIAAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACACAAAAAAAQCCAAAAAAAABgAAAAABAIIAAAAAAAACAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAAAgAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAIAAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACACAAAAAAAgCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAACAGIAAAAAAAAgAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAGIAAAAAAwBiAAAAAAAAIAAAAAACAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAYgAAAAABACAAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAA== + version: 7 2,2: ind: 2,2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,2: ind: 3,2 - tiles: ggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,1: ind: 3,1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,2: ind: -2,2 - tiles: YgAAAAACggAAAAAAggAAAAAADgAAAAAAggAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAADgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAACYgAAAAADDQAAAAABYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: YgAAAAADAIIAAAAAAACCAAAAAAAADgAAAAACAIIAAAAAAACCAAAAAAAAYgAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA4AAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAA0AAAAAAQBiAAAAAAEAYgAAAAACAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIAAAAAACACAAAAAAAQCCAAAAAAAAIAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAgCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAAADgAAAAACDQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAAAggAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAACAAAAAAAQAOAAAAAAIADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAAAgAAAAAAEAggAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,-3: ind: 3,-3 - tiles: AAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAABDgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAABYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAABYgAAAAAADgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAADDQAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAGIAAAAAAQAOAAAAAAMAYgAAAAADAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAANAAAAAAIAYgAAAAABAGIAAAAAAQCCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAYgAAAAACAGIAAAAAAwAOAAAAAAIAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAGIAAAAAAgBiAAAAAAAADQAAAAABAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAABiAAAAAAMAggAAAAAAAGIAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAQCCAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAA== + version: 7 -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 1,3: ind: 1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,0: ind: 3,0 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADQAAAAABggAAAAAAfgAAAAADBwAAAAAEfgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAAGBwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA0AAAAAAgCCAAAAAAAAfgAAAAABAAcAAAAABgB+AAAAAAIAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAfgAAAAABAAcAAAAABgAHAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,3: ind: 2,3 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,4: ind: -1,4 - tiles: AAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAA== + version: 7 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -340,6 +340,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -454,8 +455,6 @@ entities: 12009: 36,-7 12010: 37,-7 12011: -16,-9 - 12012: 24,40 - 12013: 24,39 12548: 54,-24 12549: 52,-24 12550: 50,-22 @@ -472,6 +471,8 @@ entities: 13693: 4,-33 13694: 4,-34 13695: 4,-35 + 14270: 24,37 + 14271: 24,36 - node: color: '#D4D4D496' id: BotGreyscale @@ -707,11 +708,6 @@ entities: id: BrickTileSteelCornerNe decals: 5667: -4,10 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerNe - decals: - 9770: 16,9 - node: color: '#A4610696' id: BrickTileSteelCornerNe @@ -790,11 +786,6 @@ entities: id: BrickTileSteelCornerNw decals: 389: -6,10 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerNw - decals: - 9778: 13,9 - node: color: '#A4610696' id: BrickTileSteelCornerNw @@ -994,12 +985,18 @@ entities: id: BrickTileSteelEndE decals: 753: -40,-6 + - node: + color: '#9FED5896' + id: BrickTileSteelEndN + decals: + 14173: 14,8 + 14174: 16,8 - node: color: '#9FED5896' id: BrickTileSteelEndS decals: - 9776: 13,4 - 9777: 16,4 + 14171: 14,4 + 14172: 16,4 - node: color: '#A4610696' id: BrickTileSteelEndW @@ -1164,11 +1161,6 @@ entities: decals: 11608: 2,-7 11609: 3,-6 - - node: - color: '#9FED5896' - id: BrickTileSteelInnerSe - decals: - 9779: 13,9 - node: color: '#D381C996' id: BrickTileSteelInnerSe @@ -1232,11 +1224,6 @@ entities: id: BrickTileSteelInnerSw decals: 5646: -4,5 - - node: - color: '#9FED5896' - id: BrickTileSteelInnerSw - decals: - 9775: 16,9 - node: color: '#D381C996' id: BrickTileSteelInnerSw @@ -1301,14 +1288,12 @@ entities: color: '#9FED5896' id: BrickTileSteelLineE decals: - 9746: 13,8 - 9747: 13,7 - 9748: 13,6 - 9749: 13,5 - 9751: 16,6 - 9752: 16,5 - 9771: 16,7 - 9772: 16,8 + 14175: 14,7 + 14176: 14,6 + 14177: 14,5 + 14178: 16,7 + 14179: 16,6 + 14180: 16,5 - node: color: '#A4610696' id: BrickTileSteelLineE @@ -1452,8 +1437,6 @@ entities: id: BrickTileSteelLineN decals: 4088: 28,-4 - 9755: 14,9 - 9756: 15,9 13374: -39,24 - node: color: '#A4610696' @@ -1621,12 +1604,6 @@ entities: id: BrickTileSteelLineS decals: 5647: -5,5 - - node: - color: '#9FED5896' - id: BrickTileSteelLineS - decals: - 9738: 14,9 - 9739: 15,9 - node: color: '#A4610696' id: BrickTileSteelLineS @@ -1756,14 +1733,12 @@ entities: color: '#9FED5896' id: BrickTileSteelLineW decals: - 9741: 16,8 - 9743: 16,6 - 9744: 16,5 - 9773: 16,7 - 9780: 13,8 - 9781: 13,7 - 9782: 13,6 - 9783: 13,5 + 14181: 14,7 + 14182: 14,6 + 14183: 14,5 + 14184: 16,7 + 14185: 16,6 + 14186: 16,5 - node: color: '#A4610696' id: BrickTileSteelLineW @@ -1894,11 +1869,6 @@ entities: 1154: 35,19 1155: 24,20 1205: 23,8 - - node: - color: '#8D1C9996' - id: BrickTileWhiteCornerNw - decals: - 8717: 18,40 - node: color: '#A4610696' id: BrickTileWhiteCornerNw @@ -2043,11 +2013,6 @@ entities: 1300: 29,19 4030: 25,20 10123: 30,13 - - node: - color: '#8D1C9996' - id: BrickTileWhiteInnerNw - decals: - 8712: 18,38 - node: color: '#A4610696' id: BrickTileWhiteInnerNw @@ -2076,11 +2041,6 @@ entities: 1220: 32,7 1253: 38,14 7618: 38,8 - - node: - color: '#8D1C9996' - id: BrickTileWhiteInnerSe - decals: - 8764: 21,39 - node: color: '#A4610696' id: BrickTileWhiteInnerSe @@ -2107,11 +2067,6 @@ entities: 1281: 30,18 10112: 30,7 10122: 30,13 - - node: - color: '#8D1C9996' - id: BrickTileWhiteInnerSw - decals: - 8711: 18,38 - node: color: '#D4D4D428' id: BrickTileWhiteInnerSw @@ -2139,13 +2094,6 @@ entities: 10089: 31,17 10106: 25,5 10117: 40,18 - - node: - color: '#8D1C9996' - id: BrickTileWhiteLineE - decals: - 8708: 21,37 - 8709: 21,38 - 8723: 21,36 - node: color: '#A4610696' id: BrickTileWhiteLineE @@ -2213,13 +2161,6 @@ entities: 6305: 37,15 10087: 30,19 10116: 38,19 - - node: - color: '#8D1C9996' - id: BrickTileWhiteLineN - decals: - 8714: 19,40 - 8715: 20,40 - 8763: 21,40 - node: color: '#A4610696' id: BrickTileWhiteLineN @@ -2338,13 +2279,6 @@ entities: 1298: 30,11 10107: 23,7 10108: 23,6 - - node: - color: '#8D1C9996' - id: BrickTileWhiteLineW - decals: - 8706: 18,37 - 8713: 18,39 - 8722: 18,36 - node: color: '#A4610696' id: BrickTileWhiteLineW @@ -2496,18 +2430,23 @@ entities: color: '#5F8C3593' id: CheckerNESW decals: - 9758: 15,10 - 9759: 14,10 - 9760: 13,10 - 9761: 13,11 - 9762: 14,11 - 9763: 15,11 - 9764: 16,11 - 9765: 16,10 - 9766: 17,7 - 9767: 17,8 9768: 14,3 9769: 13,3 + 14199: 13,9 + 14200: 13,10 + 14201: 13,11 + 14202: 14,11 + 14203: 14,10 + 14204: 14,9 + 14205: 15,9 + 14206: 15,10 + 14207: 15,11 + 14208: 16,11 + 14209: 16,10 + 14210: 16,9 + 14211: 17,9 + 14213: 17,11 + 14238: 17,10 - node: color: '#6D1D1D93' id: CheckerNESW @@ -2814,7 +2753,6 @@ entities: id: DirtHeavy decals: 1738: 7,3 - 1745: 18,8 1747: 11,10 1748: 10,8 1749: 2,9 @@ -3072,13 +3010,6 @@ entities: 8569: 15,35 8570: 15,38 8795: 18,34 - 8796: 19,36 - 8797: 18,38 - 8798: 20,40 - 8799: 23,39 - 8800: 23,36 - 8801: 20,38 - 8802: 21,37 8821: 52,32 8823: -2,-2 8824: -3,-1 @@ -3276,7 +3207,6 @@ entities: 9493: -9,5 9497: -7,19 9503: 36,-16 - 9574: 18,10 9578: 9,-4 9579: 8,-3 9580: 8,-1 @@ -3298,18 +3228,6 @@ entities: 9622: 11,4 9784: 9,9 9785: 14,3 - 9786: 13,4 - 9787: 14,5 - 9788: 15,6 - 9789: 13,7 - 9790: 14,8 - 9791: 16,6 - 9792: 16,4 - 9793: 17,5 - 9794: 17,8 - 9795: 16,9 - 9796: 15,10 - 9797: 13,11 9818: -26,-30 9891: 27,-15 9892: 26,-12 @@ -3770,6 +3688,24 @@ entities: 14109: 13,-28 14110: 4,-25 14111: 7,-25 + 14214: 13,4 + 14215: 13,6 + 14216: 15,8 + 14217: 16,6 + 14218: 17,4 + 14219: 13,9 + 14220: 14,11 + 14221: 16,11 + 14222: 10,11 + 14281: 18,39 + 14282: 19,36 + 14283: 21,37 + 14284: 20,39 + 14285: 22,41 + 14286: 24,40 + 14287: 22,43 + 14288: 25,43 + 14289: 24,37 - node: cleanable: True angle: 1.5707963267948966 rad @@ -4216,10 +4152,6 @@ entities: 8583: 5,37 8810: 19,35 8811: 20,34 - 8812: 20,37 - 8813: 19,39 - 8814: 21,40 - 8815: 23,37 8848: -3,-2 8849: -3,1 8850: 1,-1 @@ -4395,7 +4327,6 @@ entities: 9500: -7,32 9501: 38,-16 9502: 35,-16 - 9576: 18,11 9577: 3,-12 9604: 10,-3 9605: 8,-4 @@ -4409,11 +4340,6 @@ entities: 9628: 10,5 9629: 10,3 9630: 11,5 - 9806: 15,4 - 9807: 14,6 - 9808: 16,5 - 9809: 15,9 - 9810: 15,11 9811: 11,9 9812: 14,2 9819: -19,-40 @@ -4726,6 +4652,22 @@ entities: 14137: -11,-38 14138: -9,-36 14139: -13,-38 + 14223: 11,11 + 14224: 14,9 + 14225: 15,7 + 14226: 17,7 + 14227: 16,4 + 14228: 14,4 + 14242: 16,8 + 14290: 22,36 + 14291: 23,37 + 14292: 20,40 + 14293: 21,39 + 14294: 20,36 + 14295: 18,37 + 14296: 18,40 + 14297: 23,40 + 14298: 25,43 - node: cleanable: True angle: 1.5707963267948966 rad @@ -5019,9 +4961,6 @@ entities: 8579: 5,35 8580: 15,37 8581: 14,38 - 8816: 18,36 - 8817: 19,37 - 8818: 20,39 8819: 17,36 8820: 50,32 8855: -3,2 @@ -5308,6 +5247,17 @@ entities: 14155: 10,-28 14156: 12,-25 14157: 14,-28 + 14229: 14,6 + 14230: 15,5 + 14231: 17,8 + 14233: 15,10 + 14234: 15,12 + 14299: 21,38 + 14300: 19,39 + 14301: 22,40 + 14302: 23,38 + 14303: 24,36 + 14304: 23,36 - node: cleanable: True angle: 1.5707963267948966 rad @@ -5574,12 +5524,6 @@ entities: 8573: 12,35 8574: 15,34 8803: 21,34 - 8804: 20,36 - 8805: 19,38 - 8806: 18,39 - 8807: 21,39 - 8808: 23,40 - 8809: 23,38 8837: -4,-2 8838: -2,-3 8839: -3,0 @@ -5750,13 +5694,6 @@ entities: 9626: 9,6 9627: 11,6 9798: 13,3 - 9799: 14,4 - 9800: 13,5 - 9801: 17,7 - 9802: 14,7 - 9803: 13,9 - 9804: 14,10 - 9805: 16,8 9894: 28,-14 9895: 26,-11 9905: 37,-5 @@ -5780,7 +5717,6 @@ entities: 11521: 13,-10 11528: 7,41 11529: 10,41 - 11530: 23,42 11537: 19,27 11538: 18,30 11539: 16,20 @@ -5960,6 +5896,15 @@ entities: 14168: -13,-39 14169: 9,-37 14170: 12,-39 + 14235: 13,5 + 14236: 15,9 + 14239: 17,10 + 14240: 13,10 + 14241: 15,4 + 14305: 21,36 + 14306: 19,40 + 14307: 23,41 + 14308: 22,37 - node: cleanable: True angle: 1.5707963267948966 rad @@ -6074,6 +6019,8 @@ entities: id: LoadingArea decals: 5443: 8,27 + 14272: 23,38 + 14273: 23,40 - node: angle: 1.5707963267948966 rad color: '#D4D4D496' @@ -6226,10 +6173,6 @@ entities: 7566: -2,-3 7567: -1,-3 7568: 0,-3 - 8724: 18,36 - 8725: 19,36 - 8726: 20,36 - 8727: 21,36 11592: -5,-3 11593: -4,-3 12043: -24,15 @@ -6237,6 +6180,10 @@ entities: 12054: -14,7 12963: -17,-33 12964: -16,-33 + 14264: 18,36 + 14265: 19,36 + 14266: 20,36 + 14280: 21,36 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW @@ -6244,8 +6191,6 @@ entities: 6886: -2,0 6887: 2,0 7808: 5,3 - 8742: 23,40 - 8743: 23,39 8757: 18,35 8758: 18,34 10125: 41,9 @@ -7380,9 +7325,6 @@ entities: 8036: -6,19 8037: -7,32 8040: 7,22 - 8746: 23,38 - 8747: 23,37 - 8748: 23,36 10236: -29,-31 10237: -29,-32 10327: -43,-33 @@ -7429,7 +7371,6 @@ entities: 10757: 19,33 10758: 23,30 10759: 27,29 - 10764: 23,41 10765: 23,44 10766: 18,29 10775: 13,18 @@ -7484,7 +7425,6 @@ entities: 11023: 14,-3 11024: 6,11 11025: 6,4 - 11026: 10,11 11027: 10,2 11038: 14,12 11046: -4,4 @@ -7552,6 +7492,12 @@ entities: 13872: 12,-39 13873: 12,-36 13877: 14,-33 + 14245: 10,12 + 14246: 10,7 + 14274: 22,42 + 14276: 21,40 + 14277: 21,39 + 14279: 21,36 - node: color: '#64646493' id: WarnLineGreyscaleE @@ -7779,7 +7725,6 @@ entities: 8026: 17,13 8027: -1,16 8030: -14,-1 - 8745: 23,39 8948: -16,-2 9962: 25,-8 9963: 29,-8 @@ -7882,7 +7827,6 @@ entities: 11041: 5,13 11042: -3,13 11049: -6,-1 - 11051: 12,5 11052: -11,46 11053: -9,46 11054: -9,39 @@ -7965,7 +7909,6 @@ entities: 8035: -8,19 8038: -8,32 8039: 6,22 - 8702: 22,46 10323: -39,-34 10325: -43,-33 10351: -22,-41 @@ -8014,7 +7957,6 @@ entities: 10755: 23,30 10756: 19,33 10762: 23,44 - 10763: 23,41 10767: 18,29 10774: 13,18 10778: 13,26 @@ -8070,7 +8012,6 @@ entities: 11028: 6,4 11029: 6,11 11030: 10,2 - 11031: 10,11 11039: 14,12 11044: -5,11 11045: -4,4 @@ -8140,6 +8081,9 @@ entities: 13874: 12,-36 13875: 12,-39 13876: 14,-33 + 14243: 10,12 + 14244: 10,7 + 14275: 22,42 - node: color: '#D4D4D496' id: WarnLineW @@ -8154,7 +8098,6 @@ entities: 8025: 17,15 8028: -1,17 8029: -14,1 - 8744: 23,40 9960: 29,-7 9961: 25,-7 10312: -33,-35 @@ -8260,7 +8203,6 @@ entities: 11040: 5,13 11043: -3,13 11048: -6,1 - 11050: 12,5 11056: -11,39 11057: -9,39 11058: -9,46 @@ -8869,6 +8811,61 @@ entities: 6375: -13.00615,56.505352 6376: -12.9124,55.817852 6377: -12.8499,55.942852 + - node: + cleanable: True + angle: 2.5656340004316642 rad + color: '#2314016C' + id: footprint + decals: + 14324: 21.676403,39.940857 + 14325: 21.707653,39.253357 + 14326: 21.051403,30.893982 + - node: + cleanable: True + angle: 3.036872898470133 rad + color: '#2314016C' + id: footprint + decals: + 14317: 21.926403,42.347107 + 14318: 22.270153,41.925232 + 14319: 22.692028,39.737732 + 14320: 22.192028,39.268982 + 14321: 21.707653,41.393982 + 14322: 21.754528,40.393982 + 14323: 22.207653,40.815857 + - node: + cleanable: True + angle: 3.193952531149623 rad + color: '#2314016C' + id: footprint + decals: + 14313: 22.176403,41.143982 + 14314: 21.879528,40.628357 + 14315: 22.285778,39.909607 + 14316: 21.879528,41.534607 + - node: + cleanable: True + angle: 4.136430327226561 rad + color: '#2314016C' + id: footprint + decals: + 14327: 22.567028,40.362732 + - node: + cleanable: True + angle: 3.193952531149623 rad + color: '#25150193' + id: footprint + decals: + 14311: 22.426403,40.675232 + 14312: 21.988903,40.268982 + - node: + cleanable: True + angle: 3.385938748868999 rad + color: '#25150193' + id: footprint + decals: + 14309: 22.270153,41.347107 + 14310: 21.863903,40.956482 - node: cleanable: True angle: 1.9024088846738192 rad @@ -8983,35 +8980,36 @@ entities: 0: 1279 1: 57344 2,3: - 0: 4093 + 0: 4085 2,-1: 0: 65535 2,1: 1: 3822 + 0: 16384 2,2: - 0: 20206 + 0: 52974 2,4: 0: 53503 3,0: 0: 26367 - 3,1: - 0: 61182 3,2: 0: 61182 3,3: - 0: 61172 + 0: 61180 3,-1: 0: 63310 + 3,1: + 0: 61166 3,4: 0: 29439 4,0: 0: 36863 4,1: - 0: 64443 + 0: 48059 4,2: - 0: 56735 + 0: 48059 4,3: - 0: 65532 + 0: 65529 -4,0: 0: 3071 -4,-1: @@ -10356,26 +10354,25 @@ entities: 3: 16 0: 12 5,9: - 0: 64443 + 0: 65535 5,10: - 0: 34959 - 3: 8704 + 0: 50383 5,11: - 3: 2 + 3: 8736 0: 52424 5,12: - 3: 17476 + 3: 17478 0: 34952 6,9: 0: 7645 6,10: - 0: 13 - 3: 8896 + 0: 8715 + 3: 128 6,11: 0: 13104 - 3: 2 + 3: 17472 6,12: - 3: 4369 + 3: 4375 7,10: 0: 2059 3: 8944 @@ -10773,6 +10770,7 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - type: ImplicitRoof - proto: AcousticGuitarInstrument entities: - uid: 15607 @@ -10780,63 +10778,6 @@ entities: - type: Transform pos: 42.5523,-14.618078 parent: 2 -- proto: ActionToggleInternals - entities: - - uid: 2041 - mapInit: true - paused: true - components: - - type: Transform - parent: 2033 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 2033 - - uid: 9012 - components: - - type: Transform - parent: 1733 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 1733 - - uid: 9016 - components: - - type: Transform - parent: 1734 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 1734 - - uid: 17115 - components: - - type: Transform - parent: 17114 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 17114 -- proto: ActionToggleJetpack - entities: - - uid: 9009 - components: - - type: Transform - parent: 1733 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 1733 - - uid: 9015 - components: - - type: Transform - parent: 1734 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 1734 -- proto: ActionToggleLight - entities: - - uid: 1565 - components: - - type: Transform - parent: 8057 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 8057 - proto: AirAlarm entities: - uid: 488 @@ -10917,21 +10858,6 @@ entities: - 265 - 266 - 1629 - - uid: 816 - components: - - type: MetaData - name: air alarm (Botany) - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,3.5 - parent: 2 - - type: DeviceList - devices: - - 980 - - 958 - - 981 - - 1630 - - 13809 - uid: 817 components: - type: MetaData @@ -10986,6 +10912,27 @@ entities: - 947 - 946 - 12722 + - uid: 958 + components: + - type: MetaData + name: air alarm (North Hall) + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 15890 + - 12414 + - 12413 + - 12412 + - 10844 + - 10845 + - 10836 + - 10835 + - 10846 + - 10847 + - 10848 - uid: 1136 components: - type: MetaData @@ -11861,31 +11808,6 @@ entities: - 12658 - 12659 - 13801 - - uid: 13806 - components: - - type: MetaData - name: air alarm (Northeast Hall) - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 2 - - type: DeviceList - devices: - - 10852 - - 10853 - - 10854 - - 10851 - - 10850 - - 10849 - - 12436 - - 12435 - - 12437 - - 10905 - - 4374 - - 10846 - - 10847 - - 10848 - - 13809 - uid: 13811 components: - type: MetaData @@ -12079,28 +12001,6 @@ entities: - 8733 - 8731 - 8732 - - uid: 13851 - components: - - type: MetaData - name: air alarm (North Hall) - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,14.5 - parent: 2 - - type: DeviceList - devices: - - 12413 - - 12412 - - 12414 - - 10836 - - 10835 - - 10907 - - 10844 - - 10845 - - 10846 - - 10847 - - 10848 - - 1630 - uid: 13852 components: - type: MetaData @@ -12364,6 +12264,8 @@ entities: - 14649 - 14630 - 14734 + - 17586 + - 17587 - uid: 15063 components: - type: MetaData @@ -12377,6 +12279,9 @@ entities: - 13271 - 13267 - 14483 + - 17586 + - 17587 + - 17585 - uid: 15065 components: - type: MetaData @@ -12520,6 +12425,7 @@ entities: - 15331 - 1879 - 1878 + - 17585 - uid: 15453 components: - type: MetaData @@ -12531,6 +12437,29 @@ entities: devices: - 15450 - 15454 + - uid: 15456 + components: + - type: MetaData + name: air alarm (Northeast Hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 12437 + - 12435 + - 12436 + - 10846 + - 10847 + - 10848 + - 10905 + - 10849 + - 10850 + - 10851 + - 10854 + - 10853 + - 10852 - uid: 15650 components: - type: MetaData @@ -12652,6 +12581,24 @@ entities: - 17529 - 17530 - 17465 + - uid: 17609 + components: + - type: MetaData + name: air alarm (Botany) + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 399 + - 12728 + - 17593 + - 353 + - 1017 + - 15890 + - 963 + - 14946 - proto: AirAlarmElectronics entities: - uid: 15137 @@ -13343,6 +13290,18 @@ entities: - DoorBolt - proto: AirlockExternalGlassCargoLocked entities: + - uid: 4412 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7670: + - - DoorStatus + - DoorBolt - uid: 6502 components: - type: Transform @@ -13363,20 +13322,7 @@ entities: invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7671: - - - DoorStatus - - DoorBolt - - uid: 7671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,41.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7670: + 4412: - - DoorStatus - DoorBolt - proto: AirlockExternalGlassEngineeringLocked @@ -13738,13 +13684,12 @@ entities: - DoorBolt - proto: AirlockFreezerHydroponicsLocked entities: - - uid: 247 + - uid: 554 components: - type: MetaData name: airlock (Freezer) - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,5.5 + pos: 10.5,7.5 parent: 2 - proto: AirlockFreezerLocked entities: @@ -14176,13 +14121,12 @@ entities: parent: 2 - proto: AirlockMaintHydroLocked entities: - - uid: 252 + - uid: 12706 components: - type: MetaData name: maintenance access (Botany) - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,11.5 + pos: 10.5,12.5 parent: 2 - proto: AirlockMaintKitchenLocked entities: @@ -14395,7 +14339,7 @@ entities: pos: 47.5,5.5 parent: 2 - type: Door - secondsUntilStateChange: -454590.38 + secondsUntilStateChange: -466685.84 state: Opening - type: DeviceLinkSource lastSignals: @@ -14995,6 +14939,16 @@ entities: - type: Transform pos: -14.5,-12.5 parent: 2 +- proto: AirlockServiceTheatreLocked + entities: + - uid: 302 + components: + - type: MetaData + name: airlock (Theatre) + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 2 - proto: AirlockTheatreLocked entities: - uid: 249 @@ -15005,13 +14959,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,8.5 parent: 2 - - uid: 302 - components: - - type: MetaData - name: airlock (Theatre) - - type: Transform - pos: 6.5,4.5 - parent: 2 - proto: AirlockVirologyLocked entities: - uid: 3976 @@ -15046,6 +14993,14 @@ entities: - DoorBolt - proto: AirSensor entities: + - uid: 353 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17609 - uid: 454 components: - type: Transform @@ -15107,14 +15062,6 @@ entities: - type: DeviceNetwork deviceLists: - 822 - - uid: 958 - components: - - type: Transform - pos: 14.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 816 - uid: 975 components: - type: Transform @@ -15669,7 +15616,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13851 + - 958 - uid: 12425 components: - type: Transform @@ -15693,7 +15640,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13806 + - 15456 - uid: 12445 components: - type: Transform @@ -16117,13 +16064,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 2 - - uid: 434 - components: - - type: MetaData - name: APC (Freezer) - - type: Transform - pos: 10.5,7.5 - parent: 2 - uid: 505 components: - type: MetaData @@ -16147,6 +16087,14 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,20.5 parent: 2 + - uid: 972 + components: + - type: MetaData + name: APC (Freezer) + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 2 - uid: 1149 components: - type: MetaData @@ -16262,14 +16210,6 @@ entities: - type: Transform pos: -32.5,-16.5 parent: 2 - - uid: 4497 - components: - - type: MetaData - name: APC (Botany) - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,4.5 - parent: 2 - uid: 4776 components: - type: MetaData @@ -16904,6 +16844,14 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-7.5 parent: 2 + - uid: 15823 + components: + - type: MetaData + name: APC (Botany) + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 2 - uid: 15931 components: - type: MetaData @@ -16956,7 +16904,7 @@ entities: - uid: 14317 components: - type: Transform - pos: 21.398823,38.038418 + pos: 22.503597,36.42991 parent: 2 - proto: ArrivalsShuttleTimer entities: @@ -17031,17 +16979,17 @@ entities: parent: 2 - proto: AtmosDeviceFanDirectional entities: + - uid: 247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 2 - uid: 799 components: - type: Transform pos: 10.5,2.5 parent: 2 - - uid: 800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 2 - uid: 2467 components: - type: Transform @@ -18318,10 +18266,10 @@ entities: parent: 2 - proto: Biogenerator entities: - - uid: 4475 + - uid: 9690 components: - type: Transform - pos: 14.5,8.5 + pos: 11.5,8.5 parent: 2 - proto: BlastDoor entities: @@ -18887,7 +18835,7 @@ entities: - uid: 15455 components: - type: Transform - pos: 16.205666,8.194413 + pos: 16.787613,9.910523 parent: 2 - uid: 16371 components: @@ -19153,6 +19101,12 @@ entities: - type: Transform pos: -26.5,-6.5 parent: 2 + - uid: 13387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 - uid: 15679 components: - type: Transform @@ -19207,11 +19161,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,2.5 parent: 2 - - uid: 15890 - components: - - type: Transform - pos: 17.5,9.5 - parent: 2 - uid: 15894 components: - type: Transform @@ -19266,10 +19215,10 @@ entities: - type: Transform pos: -2.5,3.5 parent: 2 - - uid: 443 + - uid: 450 components: - type: Transform - pos: 12.5,4.5 + pos: 12.5,5.5 parent: 2 - uid: 455 components: @@ -19589,12 +19538,7 @@ entities: - uid: 620 components: - type: Transform - pos: 10.5,7.5 - parent: 2 - - uid: 621 - components: - - type: Transform - pos: 10.5,6.5 + pos: 11.5,5.5 parent: 2 - uid: 622 components: @@ -19611,36 +19555,11 @@ entities: - type: Transform pos: 10.5,3.5 parent: 2 - - uid: 626 - components: - - type: Transform - pos: 13.5,5.5 - parent: 2 - - uid: 627 - components: - - type: Transform - pos: 13.5,6.5 - parent: 2 - - uid: 628 - components: - - type: Transform - pos: 13.5,7.5 - parent: 2 - - uid: 629 - components: - - type: Transform - pos: 13.5,8.5 - parent: 2 - uid: 630 components: - type: Transform pos: 13.5,9.5 parent: 2 - - uid: 631 - components: - - type: Transform - pos: 13.5,4.5 - parent: 2 - uid: 632 components: - type: Transform @@ -21016,6 +20935,11 @@ entities: - type: Transform pos: -28.5,-5.5 parent: 2 + - uid: 4279 + components: + - type: Transform + pos: 22.5,37.5 + parent: 2 - uid: 4295 components: - type: Transform @@ -21051,6 +20975,11 @@ entities: - type: Transform pos: -29.5,27.5 parent: 2 + - uid: 4417 + components: + - type: Transform + pos: 20.5,37.5 + parent: 2 - uid: 4477 components: - type: Transform @@ -24006,26 +23935,31 @@ entities: - type: Transform pos: 14.5,24.5 parent: 2 - - uid: 7672 + - uid: 7641 components: - type: Transform - pos: 24.5,46.5 + pos: 22.5,43.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + pos: 22.5,41.5 parent: 2 - uid: 7673 components: - type: Transform pos: 23.5,39.5 parent: 2 + - uid: 7675 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 - uid: 7762 components: - type: Transform pos: 16.5,-29.5 parent: 2 - - uid: 7763 - components: - - type: Transform - pos: 23.5,41.5 - parent: 2 - uid: 7764 components: - type: Transform @@ -24051,11 +23985,6 @@ entities: - type: Transform pos: -20.5,-35.5 parent: 2 - - uid: 7848 - components: - - type: Transform - pos: 21.5,38.5 - parent: 2 - uid: 7849 components: - type: Transform @@ -24076,16 +24005,6 @@ entities: - type: Transform pos: 19.5,38.5 parent: 2 - - uid: 7853 - components: - - type: Transform - pos: 20.5,38.5 - parent: 2 - - uid: 7854 - components: - - type: Transform - pos: 21.5,39.5 - parent: 2 - uid: 7855 components: - type: Transform @@ -24101,11 +24020,6 @@ entities: - type: Transform pos: 23.5,40.5 parent: 2 - - uid: 7858 - components: - - type: Transform - pos: 23.5,42.5 - parent: 2 - uid: 7859 components: - type: Transform @@ -28651,6 +28565,11 @@ entities: - type: Transform pos: -31.5,25.5 parent: 2 + - uid: 14248 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 - uid: 14272 components: - type: Transform @@ -28676,10 +28595,10 @@ entities: - type: Transform pos: -14.5,16.5 parent: 2 - - uid: 14309 + - uid: 14313 components: - type: Transform - pos: 25.5,46.5 + pos: 21.5,37.5 parent: 2 - uid: 14325 components: @@ -30036,6 +29955,41 @@ entities: - type: Transform pos: -38.5,16.5 parent: 2 + - uid: 17597 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 17598 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 17599 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 17600 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 17601 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 17602 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 17603 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 - proto: CableApcStack entities: - uid: 7468 @@ -34097,26 +34051,41 @@ entities: - type: Transform pos: 10.5,-28.5 parent: 2 + - uid: 354 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 - uid: 356 components: - type: Transform pos: 39.5,-20.5 parent: 2 + - uid: 358 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 - uid: 375 components: - type: Transform pos: -30.5,25.5 parent: 2 + - uid: 377 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 - uid: 411 components: - type: Transform pos: -4.5,6.5 parent: 2 - - uid: 437 - components: - - type: Transform - pos: 12.5,4.5 - parent: 2 - uid: 465 components: - type: Transform @@ -34347,35 +34316,20 @@ entities: - type: Transform pos: 10.5,5.5 parent: 2 - - uid: 549 - components: - - type: Transform - pos: 10.5,6.5 - parent: 2 - uid: 550 components: - type: Transform - pos: 10.5,7.5 + pos: 11.5,9.5 parent: 2 - uid: 551 components: - type: Transform - pos: 11.5,5.5 + pos: 14.5,9.5 parent: 2 - uid: 552 components: - type: Transform - pos: 12.5,5.5 - parent: 2 - - uid: 553 - components: - - type: Transform - pos: 13.5,5.5 - parent: 2 - - uid: 554 - components: - - type: Transform - pos: 13.5,4.5 + pos: 11.5,5.5 parent: 2 - uid: 605 components: @@ -35237,6 +35191,11 @@ entities: - type: Transform pos: 36.5,-13.5 parent: 2 + - uid: 3198 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 - uid: 3366 components: - type: Transform @@ -35602,6 +35561,11 @@ entities: - type: Transform pos: -13.5,-7.5 parent: 2 + - uid: 4497 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 - uid: 4685 components: - type: Transform @@ -36222,6 +36186,11 @@ entities: - type: Transform pos: -32.5,21.5 parent: 2 + - uid: 5396 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 - uid: 5410 components: - type: Transform @@ -36697,6 +36666,16 @@ entities: - type: Transform pos: -1.5,-34.5 parent: 2 + - uid: 5886 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 - uid: 5931 components: - type: Transform @@ -36982,6 +36961,11 @@ entities: - type: Transform pos: 36.5,-16.5 parent: 2 + - uid: 6404 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 - uid: 6663 components: - type: Transform @@ -40537,6 +40521,11 @@ entities: - type: Transform pos: -20.5,25.5 parent: 2 + - uid: 15153 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 - uid: 15203 components: - type: Transform @@ -41377,6 +41366,21 @@ entities: - type: Transform pos: -37.5,14.5 parent: 2 + - uid: 17594 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 17595 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 17596 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 - proto: CableMVStack entities: - uid: 7467 @@ -41920,16 +41924,6 @@ entities: - type: Transform pos: 10.5,13.5 parent: 2 - - uid: 1016 - components: - - type: Transform - pos: 10.5,12.5 - parent: 2 - - uid: 1017 - components: - - type: Transform - pos: 11.5,12.5 - parent: 2 - uid: 1018 components: - type: Transform @@ -42784,11 +42778,41 @@ entities: - type: Transform pos: 23.5,49.5 parent: 2 + - uid: 7659 + components: + - type: Transform + pos: 25.5,45.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 - uid: 7792 components: - type: Transform pos: -12.5,26.5 parent: 2 + - uid: 7848 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 - uid: 7913 components: - type: Transform @@ -42800,6 +42824,11 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-30.5 parent: 2 + - uid: 8066 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 - uid: 8104 components: - type: Transform @@ -42836,6 +42865,11 @@ entities: - type: Transform pos: 31.5,-9.5 parent: 2 + - uid: 8311 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 - uid: 8320 components: - type: Transform @@ -44717,6 +44751,11 @@ entities: - type: Transform pos: 29.5,-24.5 parent: 2 + - uid: 12560 + components: + - type: Transform + pos: 20.5,37.5 + parent: 2 - uid: 12657 components: - type: Transform @@ -45107,6 +45146,26 @@ entities: - type: Transform pos: -54.5,-14.5 parent: 2 + - uid: 14308 + components: + - type: Transform + pos: 24.5,39.5 + parent: 2 + - uid: 14309 + components: + - type: Transform + pos: 24.5,40.5 + parent: 2 + - uid: 14310 + components: + - type: Transform + pos: 25.5,46.5 + parent: 2 + - uid: 14316 + components: + - type: Transform + pos: 25.5,44.5 + parent: 2 - uid: 14418 components: - type: Transform @@ -45383,18 +45442,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,38.5 parent: 2 - - uid: 15728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,37.5 - parent: 2 - - uid: 15729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,36.5 - parent: 2 - uid: 15901 components: - type: Transform @@ -45470,6 +45517,11 @@ entities: - type: Transform pos: 37.5,56.5 parent: 2 + - uid: 16268 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 - uid: 16329 components: - type: Transform @@ -45819,6 +45871,31 @@ entities: - type: Transform pos: -19.5,57.5 parent: 2 + - uid: 17622 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 17626 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - uid: 17641 + components: + - type: Transform + pos: 21.5,37.5 + parent: 2 + - uid: 17643 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - uid: 17644 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 - proto: CellRechargerCircuitboard entities: - uid: 8500 @@ -46595,18 +46672,18 @@ entities: rot: -1.5707963267948966 rad pos: -29.44567,-10.371562 parent: 2 - - uid: 10413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.685745,7.9186025 - parent: 2 - uid: 10492 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.304087,-42.155655 parent: 2 + - uid: 12806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.032242,11.783791 + parent: 2 - uid: 13627 components: - type: Transform @@ -46641,13 +46718,6 @@ entities: rot: 3.141592653589793 rad pos: -43.338634,-39.381977 parent: 2 -- proto: ChairOfficeLight - entities: - - uid: 7677 - components: - - type: Transform - pos: 24.92427,46.6303 - parent: 2 - proto: ChairPilotSeat entities: - uid: 4639 @@ -47985,11 +48055,6 @@ entities: - type: Transform pos: 46.5,6.5 parent: 2 - - uid: 14308 - components: - - type: Transform - pos: 21.5,36.5 - parent: 2 - uid: 14639 components: - type: Transform @@ -48078,7 +48143,7 @@ entities: - uid: 16005 components: - type: Transform - pos: 24.534243,11.261946 + pos: 24.546385,11.62122 parent: 2 - proto: ClothingEyesGlassesMeson entities: @@ -48261,20 +48326,6 @@ entities: - type: Transform pos: 34.637638,-22.083765 parent: 2 - - type: HandheldLight - toggleActionEntity: 1565 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 1565 - - type: ActionsContainer - uid: 14373 components: - type: Transform @@ -48410,13 +48461,6 @@ entities: - type: Transform pos: 26.47891,20.741726 parent: 2 -- proto: ClothingNeckCloakMiner - entities: - - uid: 3056 - components: - - type: Transform - pos: -7.5897427,-46.014606 - parent: 2 - proto: ClothingNeckCloakNanotrasen entities: - uid: 15202 @@ -48940,18 +48984,11 @@ entities: parent: 2 - proto: ComputerCargoOrdersService entities: - - uid: 16200 + - uid: 11732 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 2 -- proto: ComputerCargoShuttle - entities: - - uid: 6561 - components: - - type: Transform - pos: 13.5,39.5 + pos: 7.5,5.5 parent: 2 - proto: ComputerComms entities: @@ -49140,11 +49177,11 @@ entities: - type: Transform pos: -41.5,-5.5 parent: 2 - - uid: 14315 + - uid: 7678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,45.5 + rot: 1.5707963267948966 rad + pos: 22.5,45.5 parent: 2 - proto: ComputerResearchAndDevelopment entities: @@ -49187,11 +49224,18 @@ entities: parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 14306 + - uid: 3887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,45.5 + rot: 1.5707963267948966 rad + pos: 22.5,46.5 + parent: 2 +- proto: ComputerSalvageJobBoard + entities: + - uid: 17634 + components: + - type: Transform + pos: 21.5,40.5 parent: 2 - proto: ComputerShuttleCargo entities: @@ -49200,6 +49244,11 @@ entities: - type: Transform pos: -37.5,-5.5 parent: 2 + - uid: 6561 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 - uid: 6562 components: - type: Transform @@ -49358,6 +49407,11 @@ entities: parent: 2 - proto: ConveyorBelt entities: + - uid: 2827 + components: + - type: Transform + pos: 25.5,46.5 + parent: 2 - uid: 3249 components: - type: Transform @@ -49393,16 +49447,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,27.5 parent: 2 - - uid: 4277 - components: - - type: Transform - pos: 24.5,38.5 - parent: 2 - - uid: 4279 - components: - - type: Transform - pos: 24.5,36.5 - parent: 2 - uid: 4372 components: - type: Transform @@ -49480,6 +49524,11 @@ entities: rot: 3.141592653589793 rad pos: 10.5,42.5 parent: 2 + - uid: 7672 + components: + - type: Transform + pos: 24.5,38.5 + parent: 2 - uid: 9349 components: - type: Transform @@ -49492,6 +49541,11 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-1.5 parent: 2 + - uid: 11263 + components: + - type: Transform + pos: 25.5,45.5 + parent: 2 - uid: 14113 components: - type: Transform @@ -49522,10 +49576,41 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,8.5 parent: 2 - - uid: 14913 + - uid: 14215 components: - type: Transform - pos: 24.5,37.5 + pos: 24.5,39.5 + parent: 2 + - uid: 16355 + components: + - type: Transform + pos: 24.5,40.5 + parent: 2 + - uid: 17616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,40.5 + parent: 2 + - uid: 17617 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 + - uid: 17618 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 + - uid: 17619 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 17620 + components: + - type: Transform + pos: 25.5,44.5 parent: 2 - proto: CorporateCircuitBoard entities: @@ -49795,11 +49880,29 @@ entities: parent: 2 - proto: CrateFreezer entities: - - uid: 684 + - uid: 553 components: - type: Transform - pos: 10.5,6.5 + pos: 11.5,5.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 234.99791 + moles: + - 2.1780298 + - 8.193542 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -50781,7 +50884,7 @@ entities: - uid: 9691 components: - type: Transform - pos: 18.654495,7.4186025 + pos: 15.407242,12.690041 parent: 2 - uid: 13807 components: @@ -51420,6 +51523,12 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-9.5 parent: 2 + - uid: 17605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,13.5 + parent: 2 - proto: DisposalJunction entities: - uid: 2844 @@ -51458,6 +51567,12 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,7.5 parent: 2 + - uid: 13057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,13.5 + parent: 2 - uid: 13097 components: - type: Transform @@ -51591,12 +51706,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,0.5 parent: 2 - - uid: 13384 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,10.5 - parent: 2 - uid: 13428 components: - type: Transform @@ -51705,6 +51814,16 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,0.5 parent: 2 + - uid: 631 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 - uid: 988 components: - type: Transform @@ -53604,11 +53723,6 @@ entities: - type: Transform pos: 20.5,11.5 parent: 2 - - uid: 13387 - components: - - type: Transform - pos: 20.5,13.5 - parent: 2 - uid: 13388 components: - type: Transform @@ -54336,11 +54450,6 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-30.5 parent: 2 - - uid: 16912 - components: - - type: Transform - pos: 20.5,12.5 - parent: 2 - uid: 16913 components: - type: Transform @@ -54706,6 +54815,12 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-3.5 parent: 2 + - uid: 17606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 2 - proto: DisposalRouter entities: - uid: 2129 @@ -54929,14 +55044,6 @@ entities: parent: 2 - type: DisposalTagger tag: waste - - uid: 13228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,10.5 - parent: 2 - - type: DisposalTagger - tag: waste - uid: 13231 components: - type: Transform @@ -55064,6 +55171,14 @@ entities: parent: 2 - type: DisposalTagger tag: waste + - uid: 17604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,14.5 + parent: 2 + - type: DisposalTagger + tag: waste - proto: DisposalTrunk entities: - uid: 457 @@ -55129,12 +55244,6 @@ entities: - type: Transform pos: 7.5,-11.5 parent: 2 - - uid: 13057 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,10.5 - parent: 2 - uid: 13076 components: - type: Transform @@ -55330,6 +55439,11 @@ entities: - type: Transform pos: 5.5,3.5 parent: 2 + - uid: 17607 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 - proto: DisposalUnit entities: - uid: 453 @@ -55342,6 +55456,11 @@ entities: - type: Transform pos: -33.5,-8.5 parent: 2 + - uid: 684 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 - uid: 810 components: - type: Transform @@ -55487,11 +55606,6 @@ entities: - type: Transform pos: 7.5,-11.5 parent: 2 - - uid: 13167 - components: - - type: Transform - pos: 18.5,10.5 - parent: 2 - uid: 14209 components: - type: Transform @@ -55667,7 +55781,7 @@ entities: - uid: 10505 components: - type: Transform - pos: 19.3704,40.72002 + pos: 19.366764,40.613773 parent: 2 - proto: DrinkBeerCan entities: @@ -55953,27 +56067,11 @@ entities: - type: Transform pos: 14.614994,-25.351982 parent: 2 - - type: GasTank - toggleActionEntity: 2041 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 2041 - uid: 17114 components: - type: Transform pos: -42.005676,-47.54647 parent: 2 - - type: GasTank - toggleActionEntity: 17115 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 17115 - proto: EmergencyLight entities: - uid: 100 @@ -55982,6 +56080,12 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-13.5 parent: 2 + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-19.5 + parent: 2 - uid: 2515 components: - type: Transform @@ -56076,12 +56180,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,32.5 parent: 2 - - uid: 15487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,38.5 - parent: 2 - uid: 15488 components: - type: Transform @@ -56551,6 +56649,46 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 + - uid: 17610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-26.5 + parent: 2 + - uid: 17611 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 17612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-39.5 + parent: 2 + - uid: 17613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-32.5 + parent: 2 + - uid: 17614 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 17615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-19.5 + parent: 2 + - uid: 17631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,36.5 + parent: 2 - proto: EmergencyRollerBed entities: - uid: 4100 @@ -56717,12 +56855,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,31.5 parent: 2 - - uid: 15975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,9.5 - parent: 2 - uid: 15977 components: - type: Transform @@ -56985,6 +57117,19 @@ entities: parent: 2 - proto: FireAlarm entities: + - uid: 149 + components: + - type: MetaData + name: fire alarm (Botany) + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 15890 + - 963 + - 14946 - uid: 8137 components: - type: MetaData @@ -57199,6 +57344,7 @@ entities: - 10845 - 10907 - 1630 + - 15890 - uid: 13457 components: - type: MetaData @@ -57215,7 +57361,6 @@ entities: - 10851 - 10850 - 10849 - - 13809 - 10905 - 10846 - 10847 @@ -57352,6 +57497,8 @@ entities: - 265 - 266 - 1629 + - 963 + - 14946 - uid: 14652 components: - type: MetaData @@ -57364,18 +57511,6 @@ entities: devices: - 243 - 197 - - uid: 14653 - components: - - type: MetaData - name: fire alarm (Botany) - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 2 - - type: DeviceList - devices: - - 13809 - - 1630 - uid: 14654 components: - type: MetaData @@ -57790,6 +57925,26 @@ entities: - 11224 - 16478 - 16479 + - uid: 17588 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 17586 + - 17587 + - 17585 + - uid: 17589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 17586 + - 17587 - proto: FireAlarmElectronics entities: - uid: 2284 @@ -57820,7 +57975,7 @@ entities: - uid: 8474 components: - type: Transform - pos: 22.524776,47.459747 + pos: 25.295729,47.553513 parent: 2 - uid: 9587 components: @@ -57830,7 +57985,7 @@ entities: - uid: 12686 components: - type: Transform - pos: 21.68188,38.35412 + pos: 22.050472,36.664284 parent: 2 - proto: Firelock entities: @@ -58181,6 +58336,17 @@ entities: - 811 - 14641 - 14651 + - uid: 963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 149 + - 14651 + - 17609 - uid: 3439 components: - type: Transform @@ -58295,7 +58461,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13806 + - 15456 - 13817 - 14673 - 13457 @@ -58348,18 +58514,6 @@ entities: - 12810 - 8138 - 12553 - - uid: 13809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13806 - - 816 - - 14653 - - 13457 - uid: 13810 components: - type: Transform @@ -58405,6 +58559,17 @@ entities: deviceLists: - 14671 - 14673 + - uid: 14946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 149 + - 14651 + - 17609 - uid: 14970 components: - type: Transform @@ -58439,6 +58604,18 @@ entities: deviceLists: - 15067 - 14859 + - uid: 15890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17609 + - 149 + - 13456 + - 958 - uid: 16478 components: - type: Transform @@ -58477,6 +58654,40 @@ entities: - 16827 - 2200 - 13936 + - uid: 17585 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17588 + - 15063 + - 15328 + - uid: 17586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17589 + - 15057 + - 15063 + - 17588 + - uid: 17587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17589 + - 15057 + - 15063 + - 17588 - proto: FirelockElectronics entities: - uid: 2286 @@ -58595,9 +58806,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 816 - - 13851 - - 14653 - 13456 - uid: 1878 components: @@ -58651,7 +58859,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13806 - 13817 - 14673 - uid: 6856 @@ -58968,7 +59175,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13851 + - 958 - 13870 - 12224 - 13456 @@ -58979,7 +59186,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13851 + - 958 - 13870 - 12224 - 13456 @@ -59045,7 +59252,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13851 + - 958 - 13936 - 2200 - 13456 @@ -59056,7 +59263,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13851 + - 958 - 13936 - 2200 - 13456 @@ -59067,8 +59274,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13806 - - 13851 + - 15456 + - 958 - 13457 - 13456 - uid: 10847 @@ -59078,8 +59285,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13806 - - 13851 + - 15456 + - 958 - 13457 - 13456 - uid: 10848 @@ -59089,8 +59296,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13806 - - 13851 + - 15456 + - 958 - 13457 - 13456 - uid: 10849 @@ -59101,7 +59308,7 @@ entities: - type: DeviceNetwork deviceLists: - 13800 - - 13806 + - 15456 - 8138 - 13457 - uid: 10850 @@ -59112,7 +59319,7 @@ entities: - type: DeviceNetwork deviceLists: - 13800 - - 13806 + - 15456 - 8138 - 13457 - uid: 10851 @@ -59123,7 +59330,7 @@ entities: - type: DeviceNetwork deviceLists: - 13800 - - 13806 + - 15456 - 8138 - 13457 - uid: 10852 @@ -59133,7 +59340,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13806 + - 15456 - 13811 - 14668 - 13457 @@ -59144,7 +59351,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13806 + - 15456 - 13811 - 14668 - 13457 @@ -59155,7 +59362,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13806 + - 15456 - 13811 - 14668 - 13457 @@ -59352,7 +59559,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13851 - 13852 - 13456 - 14684 @@ -59548,10 +59754,10 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 886 + - uid: 629 components: - type: Transform - pos: 11.5,5.5 + pos: 10.5,6.5 parent: 2 - type: Fixtures fixtures: {} @@ -59871,21 +60077,21 @@ entities: - uid: 685 components: - type: Transform - parent: 684 + parent: 553 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 686 components: - type: Transform - parent: 684 + parent: 553 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 687 components: - type: Transform - parent: 684 + parent: 553 - type: Physics canCollide: False - type: InsideEntityStorage @@ -60227,6 +60433,13 @@ entities: color: '#990000FF' - proto: GasPipeBend entities: + - uid: 145 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 395 components: - type: Transform @@ -60313,14 +60526,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 978 + - uid: 1016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,9.5 + rot: 1.5707963267948966 rad + pos: 13.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 1139 components: - type: Transform @@ -61947,6 +62160,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12761 components: - type: Transform @@ -62406,6 +62627,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 17592 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeBroken entities: - uid: 2699 @@ -62687,6 +62915,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 695 components: - type: Transform @@ -62863,14 +63099,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 860 components: - type: Transform @@ -63336,14 +63564,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 973 components: - type: Transform @@ -63360,14 +63580,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1074 components: - type: Transform @@ -64027,6 +64239,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3002 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3041 components: - type: Transform @@ -66779,6 +66998,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10429 components: - type: Transform @@ -72686,6 +72913,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13195 components: - type: Transform @@ -72981,6 +73216,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14025 components: - type: Transform @@ -74084,6 +74327,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 17590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 428 @@ -74179,19 +74438,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 963 + - uid: 976 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,10.5 + pos: 14.5,11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 966 + - uid: 978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 980 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,11.5 + pos: 13.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -76215,17 +76490,6 @@ entities: - 817 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 816 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1719 components: - type: Transform @@ -77024,7 +77288,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13851 + - 958 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12437 @@ -77035,7 +77299,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13806 + - 15456 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12453 @@ -77143,6 +77407,17 @@ entities: - 13802 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17609 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12743 components: - type: Transform @@ -77403,6 +77678,17 @@ entities: - 17462 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17609 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentPumpFreezer entities: - uid: 290 @@ -77415,6 +77701,17 @@ entities: - 168 - proto: GasVentScrubber entities: + - uid: 399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17609 + - type: AtmosPipeColor + color: '#990000FF' - uid: 716 components: - type: Transform @@ -77470,15 +77767,15 @@ entities: - 817 - type: AtmosPipeColor color: '#990000FF' - - uid: 981 + - uid: 1017 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,9.5 + pos: 14.5,10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 816 + - 17609 - type: AtmosPipeColor color: '#990000FF' - uid: 1395 @@ -78278,7 +78575,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13851 + - 958 - type: AtmosPipeColor color: '#990000FF' - uid: 12416 @@ -78300,7 +78597,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13806 + - 15456 - type: AtmosPipeColor color: '#990000FF' - uid: 12452 @@ -78946,11 +79243,6 @@ entities: - type: Transform pos: -6.5,-26.5 parent: 2 - - uid: 383 - components: - - type: Transform - pos: 15.5,12.5 - parent: 2 - uid: 386 components: - type: Transform @@ -80927,6 +81219,11 @@ entities: - type: Transform pos: 24.5,-30.5 parent: 2 + - uid: 7644 + components: + - type: Transform + pos: 26.5,43.5 + parent: 2 - uid: 7660 components: - type: Transform @@ -80951,12 +81248,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,43.5 parent: 2 - - uid: 7666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,42.5 - parent: 2 - uid: 7731 components: - type: Transform @@ -82210,6 +82501,11 @@ entities: - type: Transform pos: -21.5,-17.5 parent: 2 + - uid: 15728 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 - uid: 15732 components: - type: Transform @@ -82332,6 +82628,11 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-34.5 parent: 2 + - uid: 15975 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 - uid: 16020 components: - type: Transform @@ -82434,6 +82735,11 @@ entities: - type: Transform pos: -31.5,1.5 parent: 2 + - uid: 16413 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 - uid: 16461 components: - type: Transform @@ -83759,35 +84065,10 @@ entities: parent: 2 - proto: hydroponicsTray entities: - - uid: 353 + - uid: 252 components: - type: Transform - pos: 10.5,8.5 - parent: 2 - - uid: 354 - components: - - type: Transform - pos: 11.5,8.5 - parent: 2 - - uid: 358 - components: - - type: Transform - pos: 14.5,7.5 - parent: 2 - - uid: 359 - components: - - type: Transform - pos: 14.5,6.5 - parent: 2 - - uid: 360 - components: - - type: Transform - pos: 14.5,5.5 - parent: 2 - - uid: 361 - components: - - type: Transform - pos: 14.5,4.5 + pos: 11.5,11.5 parent: 2 - uid: 363 components: @@ -83824,6 +84105,31 @@ entities: - type: Transform pos: 17.5,4.5 parent: 2 + - uid: 402 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 - uid: 2650 components: - type: Transform @@ -83844,6 +84150,26 @@ entities: - type: Transform pos: -7.5,-30.5 parent: 2 + - uid: 13228 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 13806 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 13851 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 - proto: IDComputerCircuitboard entities: - uid: 2243 @@ -84200,33 +84526,11 @@ entities: - type: Transform pos: 21.593834,-14.542587 parent: 2 - - type: GasTank - toggleActionEntity: 9012 - - type: Jetpack - toggleActionEntity: 9009 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 9009 - - 9012 - uid: 1734 components: - type: Transform pos: 21.578209,-14.323837 parent: 2 - - type: GasTank - toggleActionEntity: 9016 - - type: Jetpack - toggleActionEntity: 9015 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 9015 - - 9016 - proto: Joint entities: - uid: 14420 @@ -84285,10 +84589,10 @@ entities: - type: Transform pos: 26.5,14.5 parent: 2 - - uid: 15456 + - uid: 14006 components: - type: Transform - pos: 16.5,11.5 + pos: 17.5,11.5 parent: 2 - proto: KitchenSpike entities: @@ -85385,10 +85689,10 @@ entities: parent: 2 - proto: LootSpawnerIndustrial entities: - - uid: 12560 + - uid: 7834 components: - type: Transform - pos: 22.5,45.5 + pos: 25.5,47.5 parent: 2 - uid: 13897 components: @@ -85675,11 +85979,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-2.5 parent: 2 - - uid: 13683 - components: - - type: Transform - pos: 9.5,8.5 - parent: 2 - uid: 14331 components: - type: Transform @@ -85883,11 +86182,6 @@ entities: - type: Transform pos: -6.5,56.5 parent: 2 - - uid: 13719 - components: - - type: Transform - pos: 11.5,12.5 - parent: 2 - uid: 13728 components: - type: Transform @@ -86208,12 +86502,6 @@ entities: parent: 2 - proto: Mannequin entities: - - uid: 450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,5.5 - parent: 2 - uid: 5455 components: - type: Transform @@ -86556,10 +86844,10 @@ entities: - type: Transform pos: 5.5,-41.5 parent: 2 - - uid: 14206 + - uid: 17628 components: - type: Transform - pos: 25.5,47.5 + pos: 22.5,47.5 parent: 2 - proto: NitrogenTankFilled entities: @@ -86680,10 +86968,10 @@ entities: parent: 2 - proto: OreBox entities: - - uid: 7637 + - uid: 7639 components: - type: Transform - pos: 18.5,37.5 + pos: 23.5,41.5 parent: 2 - proto: OreProcessor entities: @@ -86721,6 +87009,11 @@ entities: - type: Transform pos: -40.5,-14.5 parent: 2 + - uid: 7633 + components: + - type: Transform + pos: 24.5,47.5 + parent: 2 - uid: 8110 components: - type: Transform @@ -86741,11 +87034,6 @@ entities: - type: Transform pos: 5.5,-40.5 parent: 2 - - uid: 14215 - components: - - type: Transform - pos: 24.5,47.5 - parent: 2 - uid: 16484 components: - type: Transform @@ -87210,11 +87498,21 @@ entities: - type: Transform pos: 10.5,40.5 parent: 2 + - uid: 7652 + components: + - type: Transform + pos: 25.5,44.5 + parent: 2 - uid: 8132 components: - type: Transform pos: 52.5,8.5 parent: 2 + - uid: 15729 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 - proto: PlasticFlapsClear entities: - uid: 4261 @@ -87617,11 +87915,6 @@ entities: - type: Transform pos: -55.5,-11.5 parent: 2 - - uid: 14024 - components: - - type: Transform - pos: 22.5,15.5 - parent: 2 - uid: 14032 components: - type: Transform @@ -87761,11 +88054,6 @@ entities: - type: Transform pos: -1.5,21.5 parent: 2 - - uid: 7765 - components: - - type: Transform - pos: 21.5,38.5 - parent: 2 - uid: 7892 components: - type: Transform @@ -87792,6 +88080,11 @@ entities: - type: Transform pos: -64.5,-29.5 parent: 2 + - uid: 14314 + components: + - type: Transform + pos: 21.5,36.5 + parent: 2 - uid: 14346 components: - type: Transform @@ -87826,6 +88119,12 @@ entities: parent: 2 - proto: PoweredDimSmallLight entities: + - uid: 626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 2 - uid: 650 components: - type: Transform @@ -87884,12 +88183,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-31.5 parent: 2 - - uid: 6512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,43.5 - parent: 2 - uid: 7119 components: - type: Transform @@ -88226,12 +88519,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,31.5 parent: 2 - - uid: 13629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,12.5 - parent: 2 - uid: 13630 components: - type: Transform @@ -88254,6 +88541,12 @@ entities: - type: Transform pos: -68.5,-29.5 parent: 2 + - uid: 14306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,43.5 + parent: 2 - uid: 14329 components: - type: Transform @@ -88469,6 +88762,12 @@ entities: - type: Transform pos: 20.5,-20.5 parent: 2 + - uid: 361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 2 - uid: 2204 components: - type: Transform @@ -88521,17 +88820,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,25.5 parent: 2 - - uid: 7678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,34.5 - parent: 2 - - uid: 7847 - components: - - type: Transform - pos: 21.5,40.5 - parent: 2 - uid: 8139 components: - type: Transform @@ -88689,12 +88977,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,7.5 parent: 2 - - uid: 12806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,10.5 - parent: 2 - uid: 12807 components: - type: Transform @@ -89482,6 +89764,12 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-13.5 parent: 2 + - uid: 7671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 2 - uid: 7772 components: - type: Transform @@ -89528,6 +89816,11 @@ entities: - type: Transform pos: -1.5,-43.5 parent: 2 + - uid: 10495 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 - uid: 10528 components: - type: Transform @@ -89719,6 +90012,12 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-2.5 parent: 2 + - uid: 14887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,36.5 + parent: 2 - uid: 14912 components: - type: Transform @@ -89760,12 +90059,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,19.5 parent: 2 - - uid: 16355 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,37.5 - parent: 2 - uid: 16358 components: - type: Transform @@ -89818,6 +90111,12 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-54.5 parent: 2 + - uid: 17640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,39.5 + parent: 2 - proto: Protolathe entities: - uid: 14514 @@ -90038,6 +90337,11 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,53.5 parent: 2 + - uid: 7765 + components: + - type: Transform + pos: 25.5,47.5 + parent: 2 - uid: 7916 components: - type: Transform @@ -90102,11 +90406,6 @@ entities: - type: Transform pos: -15.5,24.5 parent: 2 - - uid: 11263 - components: - - type: Transform - pos: 22.5,45.5 - parent: 2 - uid: 11348 components: - type: Transform @@ -90354,11 +90653,23 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-46.5 parent: 2 - - uid: 7644 + - uid: 6512 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,47.5 + rot: -1.5707963267948966 rad + pos: 26.5,46.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,45.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,46.5 parent: 2 - uid: 7802 components: @@ -90378,17 +90689,11 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-28.5 parent: 2 - - uid: 14307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,45.5 - parent: 2 - - uid: 14314 + - uid: 13723 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,46.5 + pos: 21.5,47.5 parent: 2 - uid: 16231 components: @@ -90520,6 +90825,39 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-19.5 parent: 2 + - uid: 17633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,39.5 + parent: 2 + - uid: 17635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,47.5 + parent: 2 + - uid: 17636 + components: + - type: Transform + pos: 25.5,48.5 + parent: 2 + - uid: 17637 + components: + - type: Transform + pos: 24.5,48.5 + parent: 2 + - uid: 17638 + components: + - type: Transform + pos: 22.5,48.5 + parent: 2 + - uid: 17639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,45.5 + parent: 2 - proto: RailingCorner entities: - uid: 6976 @@ -90539,23 +90877,6 @@ entities: - type: Transform pos: -15.5,8.5 parent: 2 - - uid: 14310 - components: - - type: Transform - pos: 25.5,45.5 - parent: 2 - - uid: 14313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,47.5 - parent: 2 - - uid: 14316 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,47.5 - parent: 2 - uid: 16241 components: - type: Transform @@ -90604,11 +90925,17 @@ entities: - type: Transform pos: -25.5,21.5 parent: 2 - - uid: 7834 + - uid: 7646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,48.5 + parent: 2 + - uid: 12926 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,45.5 + pos: 21.5,48.5 parent: 2 - uid: 16240 components: @@ -90765,11 +91092,6 @@ entities: - type: Transform pos: -39.5,-32.5 parent: 2 - - uid: 16413 - components: - - type: Transform - pos: 18.5,11.5 - parent: 2 - uid: 16414 components: - type: Transform @@ -91208,6 +91530,11 @@ entities: - type: Transform pos: 28.5,-19.5 parent: 2 + - uid: 14007 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 - uid: 14448 components: - type: Transform @@ -91333,11 +91660,6 @@ entities: - type: Transform pos: 10.5,31.5 parent: 2 - - uid: 14887 - components: - - type: Transform - pos: 22.5,36.5 - parent: 2 - uid: 14889 components: - type: Transform @@ -91538,16 +91860,6 @@ entities: - type: Transform pos: 11.5,7.5 parent: 2 - - uid: 14945 - components: - - type: Transform - pos: 16.5,12.5 - parent: 2 - - uid: 14946 - components: - - type: Transform - pos: 17.5,10.5 - parent: 2 - uid: 14947 components: - type: Transform @@ -91955,10 +92267,10 @@ entities: - type: Transform pos: 14.5,2.5 parent: 2 - - uid: 13996 + - uid: 17608 components: - type: Transform - pos: 18.5,8.5 + pos: 16.5,12.5 parent: 2 - proto: RandomSpawner100 entities: @@ -92059,11 +92371,11 @@ entities: parent: 2 - proto: Recycler entities: - - uid: 2827 + - uid: 7654 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,37.5 + pos: 24.5,39.5 parent: 2 - uid: 14116 components: @@ -92648,6 +92960,11 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-6.5 parent: 2 + - uid: 4422 + components: + - type: Transform + pos: 19.5,41.5 + parent: 2 - uid: 4425 components: - type: Transform @@ -92902,12 +93219,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,46.5 parent: 2 - - uid: 7633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,41.5 - parent: 2 - uid: 7655 components: - type: Transform @@ -92920,12 +93231,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,43.5 parent: 2 - - uid: 7659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,42.5 - parent: 2 - uid: 7781 components: - type: Transform @@ -93291,6 +93596,16 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-39.5 parent: 2 + - uid: 17625 + components: + - type: Transform + pos: 26.5,43.5 + parent: 2 + - uid: 17630 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 16085 @@ -93562,12 +93877,18 @@ entities: - type: Transform pos: 3.5,-29.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: SeedExtractor entities: - - uid: 377 + - uid: 13683 components: - type: Transform - pos: 16.5,10.5 + pos: 17.5,10.5 parent: 2 - proto: ShardGlass entities: @@ -94359,6 +94680,19 @@ entities: 1443: - - Pressed - Toggle + - uid: 13629 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15892: + - - Pressed + - Toggle - uid: 14428 components: - type: MetaData @@ -94636,18 +94970,6 @@ entities: 15888: - - Pressed - Toggle - - uid: 15891 - components: - - type: MetaData - name: signal button (Janitor) - - type: Transform - pos: 17.5,9.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 15892: - - - Pressed - - Toggle - uid: 15895 components: - type: MetaData @@ -94977,17 +95299,17 @@ entities: rot: 3.141592653589793 rad pos: 14.500077,-11.300287 parent: 2 - - uid: 12704 - components: - - type: Transform - pos: 17.498203,12.297752 - parent: 2 - uid: 12846 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.500933,-4.7013555 parent: 2 + - uid: 13531 + components: + - type: Transform + pos: 18.497702,12.302287 + parent: 2 - uid: 13624 components: - type: Transform @@ -95095,11 +95417,6 @@ entities: - type: Transform pos: -17.5,-18.5 parent: 2 - - uid: 12706 - components: - - type: Transform - pos: 17.5,12.5 - parent: 2 - uid: 13536 components: - type: Transform @@ -95167,6 +95484,11 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-4.5 parent: 2 + - uid: 15891 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 - proto: SignDirectionalFood entities: - uid: 12758 @@ -95202,17 +95524,17 @@ entities: parent: 2 - proto: SignDirectionalMed entities: + - uid: 627 + components: + - type: Transform + pos: 18.497702,12.692912 + parent: 2 - uid: 11725 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.497272,-28.30454 parent: 2 - - uid: 11732 - components: - - type: Transform - pos: 17.503777,12.700472 - parent: 2 - uid: 12017 components: - type: Transform @@ -95982,11 +96304,6 @@ entities: - type: Transform pos: -38.5,-47.5 parent: 2 - - uid: 10495 - components: - - type: Transform - pos: 22.5,41.5 - parent: 2 - uid: 12753 components: - type: Transform @@ -96012,6 +96329,11 @@ entities: - type: Transform pos: -22.5,55.5 parent: 2 + - uid: 17642 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 - proto: SignSurgery entities: - uid: 4067 @@ -96197,12 +96519,6 @@ entities: - type: Transform pos: -31.5,28.5 parent: 2 - - uid: 15823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 2 - proto: SMESAdvanced entities: - uid: 6049 @@ -96953,11 +97269,6 @@ entities: parent: 2 - proto: SpacemenFigureSpawner entities: - - uid: 7846 - components: - - type: Transform - pos: 24.5,36.5 - parent: 2 - uid: 9590 components: - type: Transform @@ -97858,18 +98169,6 @@ entities: - type: Transform pos: -22.5,-1.5 parent: 2 - - uid: 16267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,40.5 - parent: 2 - - uid: 16268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,39.5 - parent: 2 - uid: 16271 components: - type: Transform @@ -98664,15 +98963,15 @@ entities: parent: 2 - proto: SuitStorageSalv entities: - - uid: 7646 + - uid: 3056 components: - type: Transform - pos: 24.5,40.5 + pos: 24.5,36.5 parent: 2 - - uid: 7654 + - uid: 4277 components: - type: Transform - pos: 24.5,39.5 + pos: 24.5,37.5 parent: 2 - proto: SuitStorageSec entities: @@ -99376,6 +99675,19 @@ entities: id: E16 - Containment Field - proto: SurveillanceCameraGeneral entities: + - uid: 886 + components: + - type: MetaData + name: camera (G06 - Northeast Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G06 - Northeast Hall - uid: 12647 components: - type: MetaData @@ -99465,19 +99777,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: G07 - East Hall - - uid: 15183 - components: - - type: MetaData - name: camera (G06 - Northeast Hall) - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,12.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: G06 - Northeast Hall - uid: 15185 components: - type: MetaData @@ -100173,6 +100472,19 @@ entities: id: S15 - Evac Checkpoint - proto: SurveillanceCameraService entities: + - uid: 360 + components: + - type: MetaData + name: camera (V09 - Botany) + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V09 - Botany - uid: 412 components: - type: MetaData @@ -100234,19 +100546,6 @@ entities: - SurveillanceCameraService nameSet: True id: V04 - Kitchen - - uid: 15153 - components: - - type: MetaData - name: camera (V09 - Botany) - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,9.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: V09 - Botany - uid: 15154 components: - type: MetaData @@ -101144,6 +101443,11 @@ entities: - type: Transform pos: -31.5,-5.5 parent: 2 + - uid: 4475 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 - uid: 5254 components: - type: Transform @@ -101199,11 +101503,6 @@ entities: - type: Transform pos: -14.5,-33.5 parent: 2 - - uid: 6404 - components: - - type: Transform - pos: 16.5,11.5 - parent: 2 - uid: 6566 components: - type: Transform @@ -101257,10 +101556,15 @@ entities: - type: Transform pos: -1.5,21.5 parent: 2 - - uid: 7675 + - uid: 7847 components: - type: Transform - pos: 21.5,37.5 + pos: 22.5,36.5 + parent: 2 + - uid: 7854 + components: + - type: Transform + pos: 21.5,36.5 parent: 2 - uid: 8189 components: @@ -101317,12 +101621,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-43.5 parent: 2 - - uid: 12728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,8.5 - parent: 2 - uid: 12780 components: - type: Transform @@ -101349,12 +101647,6 @@ entities: - type: Transform pos: -16.5,13.5 parent: 2 - - uid: 13531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,7.5 - parent: 2 - uid: 13708 components: - type: Transform @@ -101380,16 +101672,6 @@ entities: - type: Transform pos: 5.5,15.5 parent: 2 - - uid: 14006 - components: - - type: Transform - pos: 18.5,11.5 - parent: 2 - - uid: 14007 - components: - - type: Transform - pos: 18.5,12.5 - parent: 2 - uid: 14122 components: - type: Transform @@ -101401,11 +101683,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-44.5 parent: 2 - - uid: 14323 - components: - - type: Transform - pos: 21.5,38.5 - parent: 2 - uid: 14353 components: - type: Transform @@ -101421,6 +101698,16 @@ entities: - type: Transform pos: -10.5,19.5 parent: 2 + - uid: 14945 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 15183 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 - uid: 15540 components: - type: Transform @@ -102637,7 +102924,7 @@ entities: - uid: 12685 components: - type: Transform - pos: 21.573524,37.611946 + pos: 22.550472,36.695534 parent: 2 - uid: 14361 components: @@ -102978,6 +103265,90 @@ entities: - Reverse - - Middle - Off + - uid: 7846 + components: + - type: Transform + pos: 23.5,39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7672: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 16355: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 14215: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 17616: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 17617: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 17618: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 17619: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 17620: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 11263: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 2827: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 7654: + - - Right + - Reverse + - - Left + - Forward + - - Middle + - Off - uid: 9351 components: - type: Transform @@ -103034,41 +103405,6 @@ entities: - Reverse - - Middle - Off - - uid: 15084 - components: - - type: Transform - pos: 23.5,37.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4277: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 2827: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 4279: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 14913: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - proto: UnfinishedMachineFrame entities: - uid: 3431 @@ -103093,6 +103429,12 @@ entities: - type: Transform pos: 13.5,-19.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: UniformShortsRed entities: - uid: 10487 @@ -103220,6 +103562,11 @@ entities: parent: 2 - proto: VendingMachineCigs entities: + - uid: 628 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 - uid: 13500 components: - type: Transform @@ -103323,7 +103670,7 @@ entities: - uid: 5106 components: - type: Transform - pos: 11.5,10.5 + pos: 9.5,8.5 parent: 2 - proto: VendingMachineJaniDrobe entities: @@ -103864,6 +104211,11 @@ entities: - type: Transform pos: 37.5,-32.5 parent: 2 + - uid: 1410 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 - uid: 1421 components: - type: Transform @@ -106869,18 +107221,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,44.5 parent: 2 - - uid: 7639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,41.5 - parent: 2 - - uid: 7641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,39.5 - parent: 2 - uid: 7689 components: - type: Transform @@ -107339,11 +107679,6 @@ entities: - type: Transform pos: 35.5,-2.5 parent: 2 - - uid: 8311 - components: - - type: Transform - pos: 25.5,37.5 - parent: 2 - uid: 8404 components: - type: Transform @@ -107664,12 +107999,6 @@ entities: - type: Transform pos: -42.5,13.5 parent: 2 - - uid: 12926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,42.5 - parent: 2 - uid: 13467 components: - type: Transform @@ -107704,11 +108033,6 @@ entities: - type: Transform pos: 15.5,-22.5 parent: 2 - - uid: 13723 - components: - - type: Transform - pos: 25.5,35.5 - parent: 2 - uid: 13749 components: - type: Transform @@ -107949,11 +108273,21 @@ entities: - type: Transform pos: 48.5,-3.5 parent: 2 + - uid: 14913 + components: + - type: Transform + pos: 26.5,41.5 + parent: 2 - uid: 15025 components: - type: Transform pos: -22.5,10.5 parent: 2 + - uid: 15084 + components: + - type: Transform + pos: 26.5,40.5 + parent: 2 - uid: 15128 components: - type: Transform @@ -108058,6 +108392,11 @@ entities: - type: Transform pos: -41.5,-51.5 parent: 2 + - uid: 15726 + components: + - type: Transform + pos: 26.5,42.5 + parent: 2 - uid: 15896 components: - type: Transform @@ -108345,6 +108684,16 @@ entities: - type: Transform pos: -38.5,28.5 parent: 2 + - uid: 17627 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 17629 + components: + - type: Transform + pos: 21.5,44.5 + parent: 2 - proto: WallReinforcedRust entities: - uid: 9 @@ -110409,11 +110758,6 @@ entities: - type: Transform pos: 16.5,40.5 parent: 2 - - uid: 3887 - components: - - type: Transform - pos: 22.5,41.5 - parent: 2 - uid: 3888 components: - type: Transform @@ -110776,21 +111120,6 @@ entities: - type: Transform pos: 22.5,44.5 parent: 2 - - uid: 4412 - components: - - type: Transform - pos: 24.5,41.5 - parent: 2 - - uid: 4417 - components: - - type: Transform - pos: 25.5,40.5 - parent: 2 - - uid: 4422 - components: - - type: Transform - pos: 22.5,43.5 - parent: 2 - uid: 4426 components: - type: Transform @@ -111828,15 +112157,10 @@ entities: - type: Transform pos: -69.5,-29.5 parent: 2 - - uid: 14248 - components: - - type: Transform - pos: 25.5,38.5 - parent: 2 - uid: 14255 components: - type: Transform - pos: 25.5,36.5 + pos: 24.5,42.5 parent: 2 - uid: 14270 components: @@ -111849,6 +112173,11 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,59.5 parent: 2 + - uid: 14315 + components: + - type: Transform + pos: 26.5,44.5 + parent: 2 - uid: 14343 components: - type: Transform @@ -112548,12 +112877,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,9.5 parent: 2 - - uid: 138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,11.5 - parent: 2 - uid: 143 components: - type: Transform @@ -112566,24 +112889,12 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,12.5 parent: 2 - - uid: 145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 2 - uid: 146 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,12.5 parent: 2 - - uid: 149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,9.5 - parent: 2 - uid: 152 components: - type: Transform @@ -112764,6 +113075,16 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-6.5 parent: 2 + - uid: 816 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 - uid: 903 components: - type: Transform @@ -112785,12 +113106,6 @@ entities: - type: Transform pos: -29.5,-44.5 parent: 2 - - uid: 1410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,38.5 - parent: 2 - uid: 1521 components: - type: Transform @@ -114166,12 +114481,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,33.5 parent: 2 - - uid: 7652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 2 - uid: 7681 components: - type: Transform @@ -114642,6 +114951,11 @@ entities: - type: Transform pos: -23.5,-13.5 parent: 2 + - uid: 14653 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 - uid: 14831 components: - type: Transform @@ -114668,6 +114982,11 @@ entities: - type: Transform pos: -10.5,15.5 parent: 2 + - uid: 15487 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 - uid: 15688 components: - type: Transform @@ -114708,6 +115027,11 @@ entities: - type: Transform pos: -28.5,7.5 parent: 2 + - uid: 16267 + components: + - type: Transform + pos: 25.5,35.5 + parent: 2 - uid: 16625 components: - type: Transform @@ -114768,6 +115092,11 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,2.5 parent: 2 + - uid: 359 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 - uid: 983 components: - type: Transform @@ -114978,11 +115307,6 @@ entities: - type: Transform pos: 12.5,7.5 parent: 2 - - uid: 5396 - components: - - type: Transform - pos: 10.5,7.5 - parent: 2 - uid: 5400 components: - type: Transform @@ -115093,16 +115417,6 @@ entities: - type: Transform pos: 12.5,11.5 parent: 2 - - uid: 5886 - components: - - type: Transform - pos: 17.5,11.5 - parent: 2 - - uid: 5927 - components: - - type: Transform - pos: 17.5,10.5 - parent: 2 - uid: 6023 components: - type: Transform @@ -116164,11 +116478,6 @@ entities: - type: Transform pos: 22.5,35.5 parent: 2 - - uid: 8066 - components: - - type: Transform - pos: 22.5,37.5 - parent: 2 - uid: 8094 components: - type: Transform @@ -116515,6 +116824,11 @@ entities: - type: Transform pos: -19.5,31.5 parent: 2 + - uid: 13719 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 - uid: 13901 components: - type: Transform @@ -116562,6 +116876,11 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-37.5 parent: 2 + - uid: 14323 + components: + - type: Transform + pos: 25.5,39.5 + parent: 2 - uid: 14698 components: - type: Transform @@ -116701,6 +117020,21 @@ entities: - type: Transform pos: -31.5,7.5 parent: 2 + - uid: 17621 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 17623 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 17624 + components: + - type: Transform + pos: 25.5,36.5 + parent: 2 - proto: WardrobeCargoFilled entities: - uid: 6563 @@ -116847,11 +117181,6 @@ entities: - type: Transform pos: -1.5,30.5 parent: 2 - - uid: 7676 - components: - - type: Transform - pos: 20.5,40.5 - parent: 2 - uid: 8817 components: - type: Transform @@ -116862,6 +117191,11 @@ entities: - type: Transform pos: -50.5,-13.5 parent: 2 + - uid: 14307 + components: + - type: Transform + pos: 20.5,40.5 + parent: 2 - proto: WaterTankFull entities: - uid: 2780 @@ -116916,10 +117250,10 @@ entities: - type: Transform pos: -5.5,5.5 parent: 2 - - uid: 3198 + - uid: 13384 components: - type: Transform - pos: 15.5,8.5 + pos: 17.5,9.5 parent: 2 - proto: WaterVaporCanister entities: @@ -117160,12 +117494,6 @@ entities: - type: Transform pos: -17.5,-14.5 parent: 2 - - uid: 13292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,7.5 - parent: 2 - uid: 13490 components: - type: Transform @@ -117213,12 +117541,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,29.5 parent: 2 - - uid: 15726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,38.5 - parent: 2 - uid: 16384 components: - type: Transform @@ -117230,8 +117552,8 @@ entities: - uid: 6727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,7.5 + rot: 3.141592653589793 rad + pos: 15.5,12.5 parent: 2 - proto: WindoorKitchenHydroponicsLocked entities: @@ -117377,12 +117699,23 @@ entities: parent: 2 - proto: WindoorSecureSalvageLocked entities: + - uid: 7307 + components: + - type: Transform + pos: 25.5,45.5 + parent: 2 - uid: 7632 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,36.5 parent: 2 + - uid: 17632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,40.5 + parent: 2 - proto: WindoorSecureScienceLocked entities: - uid: 4296 @@ -117514,15 +117847,10 @@ entities: - type: Transform pos: 18.5,5.5 parent: 2 - - uid: 399 + - uid: 966 components: - type: Transform - pos: 18.5,6.5 - parent: 2 - - uid: 402 - components: - - type: Transform - pos: 15.5,12.5 + pos: 18.5,7.5 parent: 2 - uid: 3152 components: @@ -117644,6 +117972,11 @@ entities: - type: Transform pos: -20.5,-17.5 parent: 2 + - uid: 13996 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 - uid: 15433 components: - type: Transform @@ -117679,6 +118012,11 @@ entities: - type: Transform pos: -18.5,-33.5 parent: 2 + - uid: 16912 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 - proto: WindowDirectional entities: - uid: 239 @@ -117703,11 +118041,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,2.5 parent: 2 - - uid: 3002 - components: - - type: Transform - pos: 18.5,8.5 - parent: 2 - uid: 3121 components: - type: Transform @@ -117737,23 +118070,23 @@ entities: - type: Transform pos: -18.5,-14.5 parent: 2 - - uid: 7307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,38.5 - parent: 2 - - uid: 9690 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,8.5 - parent: 2 - uid: 11118 components: - type: Transform pos: 9.5,28.5 parent: 2 + - uid: 13809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,12.5 + parent: 2 + - uid: 16200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 2 - proto: WindowFrostedDirectional entities: - uid: 161 @@ -118229,6 +118562,11 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-15.5 parent: 2 + - uid: 14206 + components: + - type: Transform + pos: 24.5,38.5 + parent: 2 - uid: 14468 components: - type: Transform diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 5180e5bfbb..850beef1f4 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 254.1.0 + engineVersion: 260.1.0 forkId: "" forkVersion: "" - time: 04/19/2025 11:28:47 - entityCount: 36028 + time: 05/20/2025 21:39:07 + entityCount: 36068 maps: - 1 grids: @@ -17,6 +17,7 @@ tilemap: 1: FloorArcadeBlue 2: FloorArcadeBlue2 7: FloorAsteroidSand + 3: FloorAstroAsteroidSandBorderless 12: FloorAstroGrass 14: FloorBar 16: FloorBlue @@ -82,520 +83,520 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: bAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAAAXQAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAAAXQAAAAABHwAAAAAAHwAAAAADHwAAAAADbAAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABbAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAbAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAbAAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACbAAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACbAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAACegAAAAAAegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACegAAAAADegAAAAAAQAAAAAAAQAAAAAAA - version: 6 + tiles: bAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAKwAAAAAAACsAAAAAAAArAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAQAfAAAAAAMAHwAAAAACAB8AAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAAAbAAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAEAbQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAABAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAAAbAAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAwBsAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAGwAAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAbAAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBsAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAGwAAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAH4AAAAAAAB6AAAAAAAAegAAAAACAHoAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQB6AAAAAAIAegAAAAABAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAegAAAAABAHoAAAAAAQBAAAAAAAAAQAAAAAAAAA== + version: 7 0,0: ind: 0,0 - tiles: QAAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAABXQAAAAAAHwAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAQAAAAAAAegAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAHwAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACHwAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADHwAAAAADHwAAAAADHwAAAAABbQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABHwAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABHwAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAHwAAAAABXQAAAAACZAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAABXQAAAAAAXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAHwAAAAABXQAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAADHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAHwAAAAABXQAAAAADfgAAAAAAHwAAAAABZAAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAHwAAAAABXQAAAAAAXQAAAAADHwAAAAAAXQAAAAADZAAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAXQAAAAAAHwAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAD - version: 6 + tiles: QAAAAAAAAHoAAAAAAgB6AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAHwAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAB8AAAAAAAAfAAAAAAMAfgAAAAAAAEAAAAAAAAB6AAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAADAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQAfAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAHwAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAIAbQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAB8AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAADAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwAfAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAwB+AAAAAAAAHwAAAAACAB8AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAB8AAAAAAQBdAAAAAAEAZAAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAAAfAAAAAAMAXQAAAAABAF0AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABRAAAAAAAAHwAAAAABAF0AAAAAAwB+AAAAAAAAHwAAAAAAAF0AAAAAAABdAAAAAAAAHwAAAAADAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAUQAAAAAAAB8AAAAAAgBdAAAAAAMAfgAAAAAAAB8AAAAAAwBkAAAAAAAAXQAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFEAAAAAAAAfAAAAAAAAXQAAAAACAF0AAAAAAgAfAAAAAAAAXQAAAAAAAGQAAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAAAAF0AAAAAAQB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAAAXQAAAAABAB8AAAAAAgBtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAA== + version: 7 -1,0: ind: -1,0 - tiles: QAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABegAAAAAAegAAAAACQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAABQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAADXQAAAAAAXQAAAAACegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAABegAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAADXQAAAAADXQAAAAACLwAAAAACLwAAAAADLwAAAAABLwAAAAABLwAAAAAAegAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACXQAAAAAA - version: 6 + tiles: QAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAAAegAAAAABAHoAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAAB6AAAAAAEAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAB8AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAegAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAIAegAAAAABAHoAAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAgAfAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAADAH4AAAAAAABdAAAAAAEAXQAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAMAfgAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAAAXQAAAAACAF0AAAAAAgB6AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAIAegAAAAADAHoAAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAADAF0AAAAAAABdAAAAAAEALwAAAAAAAC8AAAAAAQAvAAAAAAEALwAAAAACAC8AAAAAAwB6AAAAAAAAfgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAA== + version: 7 0,-1: ind: 0,-1 - tiles: HwAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACbAAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAHwAAAAABfgAAAAAAHwAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAABXQAAAAADHwAAAAADfgAAAAAAHwAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAHwAAAAACfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAABHwAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAADNAAAAAAANAAAAAACHwAAAAACHwAAAAAANAAAAAACHwAAAAACHwAAAAADNAAAAAAANAAAAAABfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADbAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACbAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAQAAAAAAAegAAAAACegAAAAAAXQAAAAABXQAAAAABXQAAAAABHwAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAQAAAAAAAegAAAAABegAAAAABXQAAAAACXQAAAAADXQAAAAADHwAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABHwAAAAAAHwAAAAADHwAAAAABbQAAAAAA - version: 6 + tiles: HwAAAAACAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAABAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAwBsAAAAAAAAHwAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAMAbAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAIAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAABAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAB8AAAAAAQB+AAAAAAAAHwAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAMAHwAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAQAfAAAAAAIAfgAAAAAAAB8AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAAAAB8AAAAAAQB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAIAHwAAAAADAH4AAAAAAAAfAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAAAfAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAH4AAAAAAABdAAAAAAIAHwAAAAAAAB8AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAACAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgB+AAAAAAAAHwAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAABADQAAAAAAwA0AAAAAAEAHwAAAAACAB8AAAAAAQA0AAAAAAMAHwAAAAACAB8AAAAAAwA0AAAAAAEANAAAAAADAH4AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAEAbAAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAABAGwAAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAwBsAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAIAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAB8AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAAfAAAAAAEAHwAAAAAAAH4AAAAAAABAAAAAAAAAegAAAAADAHoAAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwAfAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAgB+AAAAAAAAQAAAAAAAAHoAAAAAAgB6AAAAAAMAXQAAAAADAF0AAAAAAQBdAAAAAAIAHwAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAAAbQAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: LwAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACLwAAAAABLwAAAAAALwAAAAAALwAAAAABLwAAAAADegAAAAACfgAAAAAADgAAAAADDgAAAAAADgAAAAADDgAAAAADDgAAAAACfgAAAAAAMQAAAAAAXQAAAAACXQAAAAADLwAAAAADLwAAAAAALwAAAAABLwAAAAABLwAAAAAAegAAAAABfgAAAAAADgAAAAADDgAAAAACDgAAAAADDgAAAAABDgAAAAABfgAAAAAAHwAAAAACXQAAAAABXQAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAAALwAAAAADegAAAAACfgAAAAAADgAAAAACDgAAAAADDgAAAAABDgAAAAADDgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADLwAAAAAALwAAAAACLwAAAAAALwAAAAAALwAAAAAAegAAAAAAfgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAAADgAAAAACfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADLwAAAAADLwAAAAAALwAAAAABLwAAAAADLwAAAAACegAAAAACfgAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAADDgAAAAACfgAAAAAAHwAAAAABXQAAAAABXQAAAAAAegAAAAABegAAAAABegAAAAACegAAAAADegAAAAABegAAAAACfgAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAAADgAAAAABfgAAAAAAHwAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAAADgAAAAADDgAAAAAADgAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAADgAAAAACDgAAAAADDgAAAAACDgAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAABXQAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAACXQAAAAACQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAABXQAAAAADegAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAD - version: 6 + tiles: LwAAAAACAC8AAAAAAQAvAAAAAAIALwAAAAADAC8AAAAAAQB6AAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAC8AAAAAAAAvAAAAAAEALwAAAAAAAC8AAAAAAgAvAAAAAAMAegAAAAAAAH4AAAAAAAAOAAAAAAMADgAAAAACAA4AAAAAAQAOAAAAAAEADgAAAAACAH4AAAAAAAAxAAAAAAAAXQAAAAACAF0AAAAAAgAvAAAAAAIALwAAAAAAAC8AAAAAAQAvAAAAAAMALwAAAAACAHoAAAAAAgB+AAAAAAAADgAAAAABAA4AAAAAAwAOAAAAAAEADgAAAAACAA4AAAAAAwB+AAAAAAAAHwAAAAABAF0AAAAAAQBdAAAAAAEALwAAAAABAC8AAAAAAwAvAAAAAAMALwAAAAABAC8AAAAAAgB6AAAAAAMAfgAAAAAAAA4AAAAAAQAOAAAAAAEADgAAAAAAAA4AAAAAAgAOAAAAAAEAfgAAAAAAAB8AAAAAAgBdAAAAAAIAXQAAAAACAC8AAAAAAgAvAAAAAAIALwAAAAAAAC8AAAAAAAAvAAAAAAAAegAAAAACAH4AAAAAAAAOAAAAAAMADgAAAAACAA4AAAAAAwAOAAAAAAAADgAAAAABAH4AAAAAAAAfAAAAAAEAXQAAAAADAF0AAAAAAgAvAAAAAAIALwAAAAABAC8AAAAAAgAvAAAAAAAALwAAAAACAHoAAAAAAgB+AAAAAAAADgAAAAACAA4AAAAAAAAOAAAAAAIADgAAAAABAA4AAAAAAQB+AAAAAAAAHwAAAAACAF0AAAAAAABdAAAAAAAAegAAAAABAHoAAAAAAwB6AAAAAAIAegAAAAABAHoAAAAAAgB6AAAAAAIAfgAAAAAAAA4AAAAAAQAOAAAAAAEADgAAAAAAAA4AAAAAAgAOAAAAAAMAfgAAAAAAAB8AAAAAAwBdAAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAOAAAAAAIADgAAAAABAA4AAAAAAgAOAAAAAAMADgAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAAB+AAAAAAAADgAAAAAAAA4AAAAAAQAOAAAAAAIADgAAAAAAAA4AAAAAAwAOAAAAAAEADgAAAAADAA4AAAAAAQAfAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAADAA4AAAAAAgAOAAAAAAAADgAAAAADAA4AAAAAAQB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAAOAAAAAAIADgAAAAAAAA4AAAAAAgAOAAAAAAMAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAADAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAegAAAAACAHoAAAAAAAB6AAAAAAMAegAAAAADAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAIALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAHoAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgB6AAAAAAMAegAAAAAAAHoAAAAAAAB6AAAAAAIAfgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAACAA== + version: 7 0,1: ind: 0,1 - tiles: XQAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAABHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAABbAAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACbAAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACbAAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADbAAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAADHwAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAA - version: 6 + tiles: XQAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAHwAAAAABAB8AAAAAAgB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAMAegAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAABAGwAAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAABAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAABsAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAGwAAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABsAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAgBtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAB8AAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAMAfgAAAAAAAA== + version: 7 -2,1: ind: -2,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAABHwAAAAABegAAAAADLwAAAAAALwAAAAADLwAAAAADLwAAAAADfgAAAAAAegAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADegAAAAADLwAAAAABLwAAAAADLwAAAAAALwAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADLwAAAAACLwAAAAACLwAAAAADLwAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAADegAAAAABLwAAAAADLwAAAAABLwAAAAACLwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAegAAAAAAegAAAAACLwAAAAADLwAAAAADLwAAAAABLwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACZAAAAAAAfgAAAAAAegAAAAACegAAAAABLwAAAAADLwAAAAADLwAAAAADLwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAADfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADQAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABHwAAAAABDgAAAAABDgAAAAACDgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAegAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACHwAAAAABDgAAAAABDgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAADAHoAAAAAAQB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQB6AAAAAAMALwAAAAAAAC8AAAAAAgAvAAAAAAAALwAAAAADAH4AAAAAAAB6AAAAAAIAfgAAAAAAAHoAAAAAAQB6AAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAEAegAAAAABAC8AAAAAAwAvAAAAAAIALwAAAAADAC8AAAAAAgB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAAvAAAAAAEALwAAAAACAC8AAAAAAQAvAAAAAAAAegAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAB8AAAAAAwB6AAAAAAMALwAAAAACAC8AAAAAAwAvAAAAAAMALwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAG0AAAAAAAB6AAAAAAAAegAAAAAAAC8AAAAAAQAvAAAAAAEALwAAAAABAC8AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAXQAAAAAAAGQAAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAQAvAAAAAAMALwAAAAADAC8AAAAAAQAvAAAAAAIAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAHoAAAAAAgB6AAAAAAIAegAAAAABAHoAAAAAAwB6AAAAAAIAegAAAAADAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAIAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAegAAAAABAH4AAAAAAABtAAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAEAAAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAwAfAAAAAAAADgAAAAADAA4AAAAAAgAOAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAB8AAAAAAgB6AAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAEAHwAAAAADAA4AAAAAAAAOAAAAAAEADgAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -2,0: ind: -2,0 - tiles: TQAAAAADTQAAAAAATQAAAAACTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATQAAAAABXQAAAAADXQAAAAABTQAAAAADeQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAATQAAAAABXQAAAAAAXQAAAAADTQAAAAACeQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAABXQAAAAADTQAAAAABeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABHwAAAAADHwAAAAACTQAAAAACeQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADTQAAAAACeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAADTQAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAACeQAAAAACeQAAAAADeQAAAAADfgAAAAAAfgAAAAAAcAAAAAACWgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAeQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAMAAAAAAAWgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAMAAAAAAAWgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADWgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACLwAAAAAALwAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADLwAAAAACLwAAAAAAegAAAAABZAAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAegAAAAAALwAAAAACLwAAAAADegAAAAADfgAAAAAAXQAAAAADZAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAADegAAAAADegAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACegAAAAADLwAAAAADLwAAAAABLwAAAAABLwAAAAAC - version: 6 + tiles: TQAAAAABAE0AAAAAAQBNAAAAAAMATQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAE0AAAAAAQBdAAAAAAMAXQAAAAAAAE0AAAAAAwB5AAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAABNAAAAAAAAXQAAAAADAF0AAAAAAgBNAAAAAAEAeQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATQAAAAACAF0AAAAAAgBdAAAAAAIATQAAAAACAHkAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE0AAAAAAgAfAAAAAAIAHwAAAAABAE0AAAAAAgB5AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAABNAAAAAAEAeQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATQAAAAABAE0AAAAAAABNAAAAAAMATQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAHkAAAAAAAB5AAAAAAIAeQAAAAADAHkAAAAAAQB+AAAAAAAAfgAAAAAAAHAAAAAAAABaAAAAAAAAcAAAAAABAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAeQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABaAAAAAAAAMAAAAAAAAFoAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAeQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAWgAAAAAAADAAAAAAAABaAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBaAAAAAAAAcAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAAvAAAAAAEALwAAAAABAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEALwAAAAADAC8AAAAAAQB6AAAAAAIAZAAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAF0AAAAAAgB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAC8AAAAAAwAvAAAAAAAAegAAAAABAH4AAAAAAABdAAAAAAIAZAAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAACAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAAAfAAAAAAIAHwAAAAACAHoAAAAAAAB6AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAIAfgAAAAAAAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwB6AAAAAAMALwAAAAAAAC8AAAAAAAAvAAAAAAEALwAAAAACAA== + version: 7 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACZAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADbAAAAAAAXQAAAAABXQAAAAAAXQAAAAABbAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAbAAAAAAAXQAAAAABXQAAAAACXQAAAAADbAAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADbAAAAAAAXQAAAAADXQAAAAABXQAAAAABbAAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAACeQAAAAABeQAAAAADeQAAAAABeQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAF0AAAAAAQBkAAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAAZAAAAAAAAF0AAAAAAgBkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAIAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAACAGwAAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBsAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAgBsAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAbAAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAMAbAAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAGwAAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAB8AAAAAAQBAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAAfAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAeQAAAAAAAHkAAAAAAQB5AAAAAAMAeQAAAAAAAHkAAAAAAQB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAA== + version: 7 -2,2: ind: -2,2 - tiles: HwAAAAABHwAAAAAAHwAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAABDgAAAAADDgAAAAABDgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAPAAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAHwAAAAABHwAAAAABHwAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAHwAAAAABHwAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAHwAAAAABHwAAAAABHwAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAHwAAAAADHwAAAAABHwAAAAADXQAAAAABXQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAAAegAAAAABbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAPAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACfgAAAAAAegAAAAADegAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAAegAAAAADegAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAXQAAAAABXQAAAAADfgAAAAAADAAAAAAADAAAAAAAfgAAAAAAegAAAAACegAAAAADHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAbAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADbAAAAAAAXQAAAAACXQAAAAABbAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAbAAAAAAAXQAAAAAAXQAAAAADbAAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAADbAAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: HwAAAAACAB8AAAAAAAAfAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAMAHwAAAAABAA4AAAAAAwAOAAAAAAIADgAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAPAAAAAAAADEAAAAAAAAxAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAADwAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAwB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAA8AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAIAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAPAAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAAAAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAB6AAAAAAEAegAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAADAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAA8AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAMAXQAAAAABAF0AAAAAAQB+AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAMAegAAAAAAAHoAAAAAAQBtAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAPAAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAMAfgAAAAAAAHoAAAAAAwB6AAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAADwAAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAABAH4AAAAAAAB6AAAAAAEAegAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAA8AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAADAHoAAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAPAAAAAAAAF0AAAAAAwBdAAAAAAAAfgAAAAAAAAwAAAAAAgAMAAAAAAEAfgAAAAAAAHoAAAAAAQB6AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAEAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgB+AAAAAAAAXQAAAAACAF0AAAAAAwBsAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAIAbAAAAAAAAF0AAAAAAgBdAAAAAAAAbAAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAACAGwAAAAAAABdAAAAAAAAXQAAAAACAGwAAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAwBsAAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -1,2: ind: -1,2 - tiles: PAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAbAAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADXQAAAAABXQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADPAAAAAAAPAAAAAAAfgAAAAAAPgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABPAAAAAAAHwAAAAADHwAAAAACPAAAAAAAHwAAAAABHwAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAABPAAAAAAAPAAAAAAAfgAAAAAAHwAAAAABPAAAAAAAHwAAAAACHwAAAAADPAAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAHwAAAAABPAAAAAAAHwAAAAACHwAAAAACPAAAAAAAHwAAAAABHwAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAPAAAAAAAPAAAAAAAHwAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABfgAAAAAAXQAAAAABXQAAAAABPAAAAAAAPAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAHwAAAAACPAAAAAAAHwAAAAACHwAAAAACPAAAAAAAHwAAAAACfgAAAAAADAAAAAAADAAAAAAADAAAAAAAfgAAAAAAXQAAAAACXQAAAAABPAAAAAAAPAAAAAAAfgAAAAAAHwAAAAADPAAAAAAAHwAAAAABHwAAAAAAPAAAAAAAHwAAAAADfgAAAAAADAAAAAAADAAAAAAADAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADbAAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAbAAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABbAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAA - version: 6 + tiles: PAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAGwAAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAgBdAAAAAAEAXQAAAAABADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwA8AAAAAAAAPAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAMAfgAAAAAAAF0AAAAAAwBdAAAAAAIAPAAAAAAAADwAAAAAAAB+AAAAAAAAPgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAB8AAAAAAAA8AAAAAAAAHwAAAAACAB8AAAAAAAA8AAAAAAAAHwAAAAADAB8AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAAA8AAAAAAAAPAAAAAAAAH4AAAAAAAAfAAAAAAAAPAAAAAAAAB8AAAAAAAAfAAAAAAIAPAAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAEAPAAAAAAAADwAAAAAAAB+AAAAAAAAHwAAAAADADwAAAAAAAAfAAAAAAAAHwAAAAACADwAAAAAAAAfAAAAAAIAHwAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAAAADwAAAAAAAA8AAAAAAAAHwAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAAA8AAAAAAAAPAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAfgAAAAAAAGwAAAAAAABsAAAAAAAAPAAAAAAAADwAAAAAAAB+AAAAAAAAHwAAAAAAADwAAAAAAAAfAAAAAAIAHwAAAAABADwAAAAAAAAfAAAAAAMAfgAAAAAAAAwAAAAAAQAMAAAAAAMADAAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACADwAAAAAAAA8AAAAAAAAfgAAAAAAAB8AAAAAAAA8AAAAAAAAHwAAAAAAAB8AAAAAAgA8AAAAAAAAHwAAAAAAAH4AAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAMAbAAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAABAGwAAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAgBsAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAwAAAAAAAAMAAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAbAAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: XQAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAbAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABbAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAMQAAAAAAXQAAAAADfgAAAAAAHwAAAAADbAAAAAAAbAAAAAAAHwAAAAACHwAAAAABbAAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAHwAAAAACbAAAAAAAHwAAAAADfgAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAABXQAAAAACfgAAAAAAHwAAAAADbAAAAAAAbAAAAAAAHwAAAAADHwAAAAABbAAAAAAAHwAAAAABfgAAAAAAcAAAAAACcAAAAAABcAAAAAABcAAAAAABcAAAAAAAcAAAAAADXQAAAAADfgAAAAAAHwAAAAADbAAAAAAAbAAAAAAAHwAAAAABHwAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADXQAAAAADXQAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAABfgAAAAAAcAAAAAADcAAAAAACcAAAAAABXQAAAAACcAAAAAABcAAAAAADXQAAAAABfgAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAeQAAAAADeQAAAAADfgAAAAAAeQAAAAAAMQAAAAAAXQAAAAAAfgAAAAAAcAAAAAADXQAAAAABcAAAAAACcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAADfgAAAAAAcAAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADeQAAAAABcAAAAAAAcAAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAcAAAAAADXQAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAABXQAAAAABfgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAHwAAAAAD - version: 6 + tiles: XQAAAAABAGwAAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwBsAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAEAbAAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAACAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAADEAAAAAAAAxAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAMQAAAAAAAF0AAAAAAQB+AAAAAAAAHwAAAAADAGwAAAAAAABsAAAAAAAAHwAAAAAAAB8AAAAAAwBsAAAAAAAAHwAAAAADAH4AAAAAAABwAAAAAAIAHwAAAAACAHAAAAAAAwBwAAAAAAEAcAAAAAACAHAAAAAAAABdAAAAAAIAfgAAAAAAAB8AAAAAAABsAAAAAAAAbAAAAAAAAB8AAAAAAQAfAAAAAAMAbAAAAAAAAB8AAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAgBwAAAAAAEAcAAAAAAAAHAAAAAAAQBwAAAAAAMAXQAAAAABAH4AAAAAAAAfAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAEAHwAAAAABAGwAAAAAAAAfAAAAAAIAfgAAAAAAAHAAAAAAAQBwAAAAAAIAcAAAAAABAHAAAAAAAwBwAAAAAAIAcAAAAAACAF0AAAAAAgB+AAAAAAAAHwAAAAACAGwAAAAAAABsAAAAAAAAHwAAAAAAAB8AAAAAAQBsAAAAAAAAbAAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAQBsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAcAAAAAADAHAAAAAAAwBwAAAAAAMAXQAAAAACAHAAAAAAAwBwAAAAAAEAXQAAAAADAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAMAfgAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAAAAF0AAAAAAwBwAAAAAAMAcAAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAE0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAxAAAAAAAAeQAAAAABAHkAAAAAAwB+AAAAAAAAeQAAAAACADEAAAAAAABdAAAAAAEAfgAAAAAAAHAAAAAAAgBdAAAAAAMAcAAAAAADAHAAAAAAAQBwAAAAAAEAcAAAAAACAH4AAAAAAABwAAAAAAIAcAAAAAADAHAAAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAMAXQAAAAABAH4AAAAAAABwAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAQB5AAAAAAAAcAAAAAACAHAAAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAgB+AAAAAAAAcAAAAAADAF0AAAAAAQBwAAAAAAEAcAAAAAAAAHAAAAAAAwBwAAAAAAIAfgAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAADAHAAAAAAAwBwAAAAAAMAcAAAAAAAAHAAAAAAAgBdAAAAAAMAfgAAAAAAAH4AAAAAAABNAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAwB+AAAAAAAAcAAAAAADAHAAAAAAAgBwAAAAAAIAcAAAAAABAHAAAAAAAgBwAAAAAAEAHwAAAAABAA== + version: 7 -2,3: ind: -2,3 - tiles: XQAAAAABXQAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAABQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAABHwAAAAADHwAAAAADegAAAAABegAAAAABXQAAAAADXQAAAAADfgAAAAAAegAAAAACegAAAAADegAAAAACQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAADXQAAAAABfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAADXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAABegAAAAABegAAAAACegAAAAACegAAAAADXQAAAAADXQAAAAACfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAABegAAAAACXQAAAAACXQAAAAADfgAAAAAAegAAAAACQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAABegAAAAADegAAAAABegAAAAADegAAAAADXQAAAAADXQAAAAACfgAAAAAAegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAbAAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADXQAAAAADXQAAAAACfgAAAAAAegAAAAACQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABbAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAAAXQAAAAADXQAAAAACfgAAAAAAegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADXQAAAAACXQAAAAABfgAAAAAAegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABegAAAAABegAAAAACegAAAAADegAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAABegAAAAADegAAAAABfgAAAAAAegAAAAACegAAAAADHwAAAAACHwAAAAADbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABHwAAAAADHwAAAAABHwAAAAABegAAAAAAfgAAAAAAegAAAAAAegAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAB - version: 6 + tiles: XQAAAAAAAF0AAAAAAwB+AAAAAAAAegAAAAADAHoAAAAAAAB6AAAAAAIAQAAAAAAAAEAAAAAAAAB+AAAAAAAAHwAAAAAAAHoAAAAAAwB6AAAAAAAAHwAAAAABAB8AAAAAAwB6AAAAAAAAegAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAHoAAAAAAAB6AAAAAAIAegAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAACAHoAAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAwBAAAAAAAAAQAAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAACAHoAAAAAAgB6AAAAAAMAegAAAAACAHoAAAAAAQB6AAAAAAAAXQAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAwB6AAAAAAIAegAAAAABAHoAAAAAAwB6AAAAAAMAegAAAAABAF0AAAAAAwBdAAAAAAEAfgAAAAAAAHoAAAAAAAB6AAAAAAIAegAAAAABAHoAAAAAAAB6AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAQB6AAAAAAIAegAAAAADAHoAAAAAAQBdAAAAAAEAXQAAAAAAAH4AAAAAAAB6AAAAAAMAQAAAAAAAAEAAAAAAAABAAAAAAAAAegAAAAAAAH4AAAAAAAB6AAAAAAAAegAAAAACAHoAAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAgB6AAAAAAIAXQAAAAACAF0AAAAAAAB+AAAAAAAAegAAAAADAEAAAAAAAABAAAAAAAAAQAAAAAAAAHoAAAAAAQBsAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAABAF0AAAAAAABdAAAAAAMAfgAAAAAAAHoAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB6AAAAAAAAbAAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAAB6AAAAAAEAQAAAAAAAAEAAAAAAAABAAAAAAAAAegAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAAAfAAAAAAMAXQAAAAABAF0AAAAAAAB+AAAAAAAAegAAAAACAEAAAAAAAABAAAAAAAAAQAAAAAAAAHoAAAAAAwB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAB8AAAAAAQB6AAAAAAEAegAAAAADAHoAAAAAAwB6AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAADAB8AAAAAAwB+AAAAAAAAHwAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAEAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAwB6AAAAAAAAegAAAAAAAHoAAAAAAAB+AAAAAAAAegAAAAADAHoAAAAAAgAfAAAAAAAAHwAAAAADAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAADAHoAAAAAAQB6AAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQBsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAMAegAAAAADAH4AAAAAAAB6AAAAAAAAegAAAAADAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAA== + version: 7 -1,3: ind: -1,3 - tiles: HwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAcAAAAAACcAAAAAADegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACHwAAAAADHwAAAAABegAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAADcAAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAHwAAAAADHwAAAAAAegAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAACcAAAAAACegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAHwAAAAADbAAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABbAAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADbAAAAAAAXQAAAAAAXQAAAAADXQAAAAACHwAAAAADbQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAcAAAAAABcAAAAAACHwAAAAAAHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAcAAAAAABcAAAAAAAHwAAAAACHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAcAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAcAAAAAABcAAAAAAAHwAAAAABHwAAAAADQAAAAAAAJAAAAAADQAAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADeQAAAAAAcAAAAAABcAAAAAAAHwAAAAAAHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAeQAAAAACcAAAAAADcAAAAAADHwAAAAAAHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADeQAAAAABcAAAAAADcAAAAAAD - version: 6 + tiles: HwAAAAACAH4AAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAAB6AAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAH4AAAAAAABwAAAAAAEAcAAAAAADAHoAAAAAAgBAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAegAAAAABAB8AAAAAAwAfAAAAAAMAegAAAAADAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAcAAAAAACAHAAAAAAAwB6AAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwAfAAAAAAAAHwAAAAABAHoAAAAAAgB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAIAfgAAAAAAAHAAAAAAAABwAAAAAAAAegAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAADAHoAAAAAAgB6AAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAbQAAAAAAAHoAAAAAAgB+AAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAgB6AAAAAAIAegAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAQAfAAAAAAEAfgAAAAAAAH4AAAAAAAB6AAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAABAGwAAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAbAAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAB8AAAAAAQB+AAAAAAAAfgAAAAAAAB8AAAAAAwBsAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAABAGwAAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgAfAAAAAAEAbQAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAACAH4AAAAAAABwAAAAAAMAcAAAAAAAAB8AAAAAAwAfAAAAAAEAQAAAAAAAAEAAAAAAAABAAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQB+AAAAAAAAcAAAAAACAHAAAAAAAwAfAAAAAAIAHwAAAAABAEAAAAAAAABAAAAAAAAAQAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAfgAAAAAAAHAAAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAH4AAAAAAABwAAAAAAEAcAAAAAAAAB8AAAAAAgAfAAAAAAMAQAAAAAAAACQAAAAAAQBAAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAAB5AAAAAAEAcAAAAAACAHAAAAAAAgAfAAAAAAMAHwAAAAABAEAAAAAAAABAAAAAAAAAQAAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAeQAAAAADAHAAAAAAAABwAAAAAAEAHwAAAAAAAB8AAAAAAwBAAAAAAAAAQAAAAAAAAEAAAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAHkAAAAAAABwAAAAAAMAcAAAAAADAA== + version: 7 1,-1: ind: 1,-1 - tiles: HwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACHwAAAAABHwAAAAAANAAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAA - version: 6 + tiles: HwAAAAABAB8AAAAAAwAfAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAGwAAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAEAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAgB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAwAfAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAHwAAAAADAB8AAAAAAAA0AAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAADAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAegAAAAAAegAAAAABegAAAAADfgAAAAAAHwAAAAAAegAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAACfgAAAAAAegAAAAACegAAAAAAXQAAAAAAXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAADegAAAAABegAAAAACXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAACfgAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAcAAAAAABAH4AAAAAAAB+AAAAAAAAcAAAAAADAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAACAH4AAAAAAAB+AAAAAAAAcAAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAAAAHoAAAAAAQB+AAAAAAAAHwAAAAADAHoAAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAIAfgAAAAAAAHoAAAAAAQB6AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAEAegAAAAABAHoAAAAAAQB6AAAAAAMAegAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAADAHoAAAAAAwB+AAAAAAAAegAAAAACAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAwB6AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAArAAAAAAAAKwAAAAAAACsAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAKwAAAAAAACsAAAAAAAArAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAegAAAAACegAAAAABegAAAAADegAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAADegAAAAABegAAAAADHwAAAAABegAAAAACbAAAAAAAHwAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABHwAAAAADegAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAHwAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADHwAAAAACegAAAAADegAAAAABegAAAAABegAAAAABfgAAAAAAHwAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABHwAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAAHwAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACHwAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADbAAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAD - version: 6 + tiles: AAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAAAAB8AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAACAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAQAfAAAAAAIAfgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAgAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAIAegAAAAACAHoAAAAAAwB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAwB6AAAAAAIAegAAAAADAHoAAAAAAwB6AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAEAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAMAegAAAAAAAHoAAAAAAgAfAAAAAAEAegAAAAACAGwAAAAAAAAfAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAEAHwAAAAADAHoAAAAAAwB6AAAAAAMAegAAAAABAHoAAAAAAgB+AAAAAAAAHwAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAACAB8AAAAAAQB6AAAAAAIAegAAAAABAHoAAAAAAgB6AAAAAAMAfgAAAAAAAB8AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAQAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAIAHwAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAgBsAAAAAAAAHwAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAB8AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAMAbAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAwB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAACAH4AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAQB+AAAAAAAAHwAAAAABAA== + version: 7 1,-2: ind: 1,-2 - tiles: HwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAegAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACfgAAAAAAbAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAegAAAAABfgAAAAAAegAAAAAAfgAAAAAAbAAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAegAAAAACfgAAAAAAegAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAbQAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAADbAAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAbAAAAAAAXQAAAAAAHwAAAAADXQAAAAACHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAXQAAAAAAHwAAAAACfgAAAAAAHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAABfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAXQAAAAADXQAAAAABXQAAAAACbAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAXQAAAAAAXQAAAAACXQAAAAABbAAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAD - version: 6 + tiles: HwAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAwAfAAAAAAEAfgAAAAAAAHoAAAAAAwB6AAAAAAIAegAAAAADAH4AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAAB+AAAAAAAAbAAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAABAH4AAAAAAAB6AAAAAAAAegAAAAACAHoAAAAAAQB+AAAAAAAAegAAAAADAH4AAAAAAAB6AAAAAAAAfgAAAAAAAGwAAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAACAH4AAAAAAAB6AAAAAAEAfgAAAAAAAHoAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAG0AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAADAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAF0AAAAAAgBsAAAAAAAAXQAAAAABAB8AAAAAAgB+AAAAAAAAHwAAAAADAH4AAAAAAABtAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAAAAH4AAAAAAABdAAAAAAEAbAAAAAAAAF0AAAAAAAAfAAAAAAIAXQAAAAADAB8AAAAAAQBtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAACAGwAAAAAAABdAAAAAAIAHwAAAAADAH4AAAAAAAAfAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAACAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAbAAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAEAfgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAGwAAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAAAAA== + version: 7 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAbAAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABbAAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAQBsAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAIAbAAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAGwAAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAgBsAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBtAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAA== + version: 7 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAALgAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAB - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAwABwAAAAAAAAcAAAAAAAB+AAAAAAAAPwAAAAAAAH4AAAAAAAA/AAAAAAAAPwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAPwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAPwAAAAAAAH4AAAAAAAA/AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAB5AAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAuAAAAAAAAeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAH4AAAAAAAAQAAAAAAAAfgAAAAAAABAAAAAAAAB+AAAAAAAALgAAAAAAAHkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAB+AAAAAAAAEAAAAAAAAH4AAAAAAAAQAAAAAAAAfgAAAAAAAC4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAABgB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAIABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAHwAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAAAAA== + version: 7 -3,-1: ind: -3,-1 - tiles: fQAAAAAAfgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fQAAAAAAAH4AAAAAAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAEAfQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAfgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAACAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAEAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAACAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAgAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAIAfQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,0: ind: -3,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAeQAAAAACAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAeQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAXQAAAAACZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADZAAAAAAAXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAD - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAeQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBkAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB5AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAeQAAAAABAAAAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHkAAAAAAQAAAAAAAAAAAAAAAAAAAAcAAAAABwAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB5AAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAABwAHAAAAAAAABwAAAAAAAAcAAAAADAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAF0AAAAAAgB+AAAAAAAAeQAAAAABAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAMABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAXQAAAAADAGQAAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAGQAAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgBkAAAAAAAAXQAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAACAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAADAA== + version: 7 -4,0: ind: -4,0 - tiles: fQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAC8AAAAAAwB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAA== + version: 7 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAF0AAAAAAQBdAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAEAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAH4AAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAXQAAAAADAF0AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwB+AAAAAAAAMQAAAAAAADEAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAA== + version: 7 -3,3: ind: -3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAABAAwAAAAAAwAMAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAwAMAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAIADAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAMADAAAAAACAAwAAAAAAwAMAAAAAAIADAAAAAABAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAAwAAAAAAwAMAAAAAAEADAAAAAAAAAwAAAAAAQAMAAAAAAEAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAgAMAAAAAAMADAAAAAABAAwAAAAAAQAMAAAAAAIADAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAfgAAAAAAAG0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAATQAAAAABAH4AAAAAAAB+AAAAAAAATQAAAAABAE0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -1,4: ind: -1,4 - tiles: HwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAcAAAAAACcAAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAPwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA - version: 6 + tiles: HwAAAAABAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAMAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAH4AAAAAAABwAAAAAAMAcAAAAAACAB8AAAAAAwBAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAADAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwB+AAAAAAAAbQAAAAAAAH4AAAAAAAAfAAAAAAMAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAB8AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAbQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAMAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAADAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAAB+AAAAAAAAPwAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAA/AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAA/AAAAAAAAPwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAPwAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAcABwAAAAAAAAcAAAAAAAAHAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAABwAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAADAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAA== + version: 7 -2,4: ind: -2,4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAIAQAAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAACAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgBAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAIAfgAAAAAAAB8AAAAAAgAfAAAAAAMAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAAAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwBPAAAAAAAAfgAAAAAAAEIAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAAAfAAAAAAEATwAAAAAAAH4AAAAAAABCAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAABAE8AAAAAAAB+AAAAAAAAQgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAABAAHAAAAAAAABwAAAAAIAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAwABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABwAHAAAAAAAABwAAAAAGAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + version: 7 -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAATQAAAAABTQAAAAADfgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAQAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAATwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAMAfgAAAAAAAE0AAAAAAQBNAAAAAAMAfgAAAAAAAH4AAAAAAABNAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAABAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAJAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAABQAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAABAAAAAAAAABwAAAAAJAAcAAAAAAgAHAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAGQAAAAAAAB+AAAAAAAAQAAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAUABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAABwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAADAAcAAAAAAwAHAAAAAAQAfgAAAAAAAH4AAAAAAABPAAAAAAAABwAAAAAIAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAoABwAAAAAAAAcAAAAAAAB+AAAAAAAATwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAE8AAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAFAAcAAAAABQAHAAAAAAIABwAAAAADAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAJAAcAAAAACgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACgAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAABgAHAAAAAAAABwAAAAAIAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACAB+AAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAJAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAA== + version: 7 -2,5: ind: -2,5 - tiles: AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,5: ind: -3,5 - tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAoAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAADAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAABgAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,3: ind: 0,3 - tiles: cAAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABeQAAAAACcAAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAAAcAAAAAABcAAAAAAAcAAAAAADeQAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAABeQAAAAACcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAbQAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAeQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAACeQAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAADfgAAAAAAcAAAAAADcAAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAATQAAAAABXQAAAAADXQAAAAACXQAAAAABcAAAAAAAeQAAAAACcAAAAAACcAAAAAABcAAAAAADcAAAAAADcAAAAAACcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAAAeQAAAAAAcAAAAAADcAAAAAABcAAAAAAD - version: 6 + tiles: cAAAAAACAH4AAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAwBwAAAAAAMAcAAAAAAAAHAAAAAAAwB5AAAAAAIAcAAAAAADAHAAAAAAAgBwAAAAAAEAcAAAAAABAHAAAAAAAgBwAAAAAAMAcAAAAAAAAHAAAAAAAgB5AAAAAAAAcAAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAACAHAAAAAAAABwAAAAAAAAeQAAAAAAAHAAAAAAAwBwAAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAIAcAAAAAADAHAAAAAAAQBwAAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAACAH4AAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAQBwAAAAAAEAcAAAAAACAHAAAAAAAgBwAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAADAHAAAAAAAQBwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHkAAAAAAQB5AAAAAAEAfgAAAAAAAH4AAAAAAAB5AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB5AAAAAAEAeQAAAAAAAHkAAAAAAwB5AAAAAAEAeQAAAAAAAHkAAAAAAgB+AAAAAAAAcAAAAAAAAHAAAAAAAQBwAAAAAAEAfgAAAAAAAG0AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAfAAAAAAMAeQAAAAABAHkAAAAAAgB5AAAAAAEAeQAAAAAAAHkAAAAAAwB5AAAAAAEAfgAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAADAH4AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAHwAAAAABACgAAAAAAgAoAAAAAAAAKAAAAAACACgAAAAAAAAoAAAAAAEAKAAAAAABAH4AAAAAAABwAAAAAAEAcAAAAAACAHAAAAAAAQB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAAoAAAAAAIAKAAAAAAAACgAAAAAAwAoAAAAAAIAKAAAAAADACgAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAIAcAAAAAABAHAAAAAAAgB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAABAH4AAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAgB+AAAAAAAAcAAAAAABAHAAAAAAAgBwAAAAAAMAcAAAAAAAAH4AAAAAAAB+AAAAAAAAeQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwB5AAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAMAcAAAAAADAHAAAAAAAwBwAAAAAAEAcAAAAAAAAHAAAAAAAgBwAAAAAAMAcAAAAAACAHkAAAAAAABwAAAAAAEAcAAAAAACAHAAAAAAAQBwAAAAAAEAfgAAAAAAAHAAAAAAAwBwAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAwBNAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAIAcAAAAAACAHkAAAAAAwBwAAAAAAMAcAAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAEAcAAAAAAAAHAAAAAAAABwAAAAAAMAeQAAAAADAHAAAAAAAwBwAAAAAAAAcAAAAAADAA== + version: 7 0,4: ind: 0,4 - tiles: cAAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANAAAAAABcAAAAAAAHwAAAAAAcAAAAAABcAAAAAACfgAAAAAAcAAAAAACbAAAAAAAXQAAAAABXQAAAAACXQAAAAADHwAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAABcAAAAAABfgAAAAAAcAAAAAACfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACHwAAAAACcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAAAAAAAAAA - version: 6 + tiles: cAAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAA0AAAAAAAAcAAAAAABAB8AAAAAAwBwAAAAAAIAcAAAAAAAAH4AAAAAAABwAAAAAAMAbAAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAB8AAAAAAgBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAIAcAAAAAADAHAAAAAAAAB+AAAAAAAAcAAAAAADAH4AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAMAcAAAAAACAHAAAAAAAQBwAAAAAAMAfgAAAAAAAHAAAAAAAQB+AAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAXQAAAAACAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAABAB8AAAAAAwBwAAAAAAEAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAD8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAMAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAMABwAAAAAAAAcAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAcABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAA== + version: 7 1,1: ind: 1,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACXQAAAAACHwAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAADXQAAAAADXQAAAAADXQAAAAAAHwAAAAABHwAAAAACHwAAAAACXQAAAAAAHwAAAAAAbAAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAAAXQAAAAABHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAABXQAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAADXQAAAAABHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAAAbAAAAAAAHwAAAAADXQAAAAABHwAAAAABbAAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAbAAAAAAAHwAAAAACXQAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADbAAAAAAAHwAAAAABHwAAAAAAfgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADbAAAAAAAHwAAAAADHwAAAAAAfgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAABAH4AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAH4AAAAAAAAfAAAAAAIAXQAAAAACAB8AAAAAAgB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAHwAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAACAF0AAAAAAgAfAAAAAAMAbAAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAAAfgAAAAAAAB8AAAAAAwBdAAAAAAIAHwAAAAACAH4AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAHwAAAAABAF0AAAAAAAAfAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAIAfgAAAAAAAEAAAAAAAABAAAAAAAAAHwAAAAADAB8AAAAAAABdAAAAAAEAHwAAAAACAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAACAH4AAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAACAB8AAAAAAQB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAF0AAAAAAQAfAAAAAAIAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAEAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQAfAAAAAAEAbAAAAAAAAB8AAAAAAgBdAAAAAAAAHwAAAAACAGwAAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAADAGwAAAAAAAAfAAAAAAMAXQAAAAACAB8AAAAAAwB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAEAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADAH4AAAAAAAA+AAAAAAAAPgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAB8AAAAAAwBsAAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAAPgAAAAAAAD4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAEAbAAAAAAAAB8AAAAAAgAfAAAAAAMAfgAAAAAAAD4AAAAAAAA+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 1,0: ind: 1,0 - tiles: HwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACbAAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAACbAAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACbAAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABHwAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADbAAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAADMQAAAAAAMQAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACbAAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACbAAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: HwAAAAACAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAfgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAGwAAAAAAAAfAAAAAAEAfgAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAQBsAAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAEAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAgB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAAAbAAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAB8AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAIAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAABAGwAAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAQBsAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAAAfAAAAAAAAHwAAAAADADEAAAAAAAAxAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAABAGwAAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAwBsAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAIAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 2,1: ind: 2,1 - tiles: HwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACHwAAAAACbAAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAAAegAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAACfgAAAAAAHwAAAAACegAAAAABegAAAAABegAAAAADegAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAADbAAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAABegAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADbAAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADbAAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAXQAAAAACfgAAAAAAegAAAAAAegAAAAADegAAAAACegAAAAADegAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAABbAAAAAAAbAAAAAAAHwAAAAADbAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABbAAAAAAAbAAAAAAAHwAAAAADbAAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAegAAAAABegAAAAADHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACbAAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: HwAAAAABAB8AAAAAAQB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAQB+AAAAAAAAegAAAAACAHoAAAAAAQB6AAAAAAAAbAAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAfgAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAADAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAAAHwAAAAAAAGwAAAAAAAB6AAAAAAAAegAAAAADAHoAAAAAAAB6AAAAAAMAegAAAAADAH4AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAgBsAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAAAAHoAAAAAAgB6AAAAAAIAegAAAAAAAHoAAAAAAQB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAbAAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAfgAAAAAAAHoAAAAAAgB6AAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAEAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAGwAAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAIAXQAAAAADAH4AAAAAAAB6AAAAAAAAegAAAAADAHoAAAAAAwB6AAAAAAIAegAAAAACAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAABsAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAACAF0AAAAAAwB+AAAAAAAAegAAAAADAHoAAAAAAQB6AAAAAAIAegAAAAABAHoAAAAAAgB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAAAbAAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAQB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAGwAAAAAAABsAAAAAAAAHwAAAAAAAGwAAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAIAfgAAAAAAAHoAAAAAAgB6AAAAAAMAHwAAAAADAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAABsAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAABAHoAAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAABAB8AAAAAAwB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAQBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAF0AAAAAAgBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 2,0: ind: 2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADbAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAADcAAAAAABcAAAAAABbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAABbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAHwAAAAABMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABbAAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADLgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAALgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACLgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABLgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAD - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAIAcAAAAAACAHAAAAAAAQBsAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAACAB8AAAAAAAB+AAAAAAAAHwAAAAABAHAAAAAAAQBwAAAAAAEAcAAAAAABAHAAAAAAAgBwAAAAAAIAbAAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAEAfgAAAAAAAB8AAAAAAABwAAAAAAMAcAAAAAADAHAAAAAAAABwAAAAAAIAcAAAAAADAB8AAAAAAQB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAADAGwAAAAAAAAfAAAAAAAAHwAAAAABAGwAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAQB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAMAbAAAAAAAAB8AAAAAAQAfAAAAAAEAbAAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAEALgAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAbAAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAACAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAwAfAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAQAuAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAIALgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAEAbAAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAGwAAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAuAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAADAH4AAAAAAAB6AAAAAAIAegAAAAABAHoAAAAAAgBsAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAADAHoAAAAAAQB6AAAAAAAAbAAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAA== + version: 7 2,-1: ind: 2,-1 - tiles: XQAAAAAAXQAAAAABXQAAAAACbAAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAABHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAABfgAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAADcAAAAAABcAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAAHwAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAegAAAAABegAAAAADegAAAAADbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAACHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAbAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADbAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACbAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAA - version: 6 + tiles: XQAAAAACAF0AAAAAAQBdAAAAAAMAbAAAAAAAAHAAAAAAAQBwAAAAAAIAcAAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAABAHAAAAAAAgBwAAAAAAIAcAAAAAADAHAAAAAAAgBwAAAAAAIAcAAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAAAAHAAAAAAAwB+AAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAAAcAAAAAACAHAAAAAAAwBwAAAAAAAAcAAAAAAAAHAAAAAAAQBtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAMAcAAAAAABAHAAAAAAAgBwAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAHwAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAACAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwBsAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAMAfgAAAAAAAB8AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAQB+AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAABdAAAAAAEAXQAAAAAAAH4AAAAAAAAfAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAIAegAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwB+AAAAAAAAHwAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwB+AAAAAAAAegAAAAABAHoAAAAAAAB6AAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAAAAA== + version: 7 1,2: ind: 1,2 - tiles: XQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACbAAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAbAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAHwAAAAACcAAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAcAAAAAABcAAAAAACbAAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAcAAAAAABcAAAAAACcAAAAAADfgAAAAAAbAAAAAAAcAAAAAABcAAAAAAAbAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAADcAAAAAACcAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAXQAAAAACcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAAAfgAAAAAAeQAAAAABTQAAAAADeQAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAACeQAAAAABfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAcAAAAAACXQAAAAABcAAAAAACfgAAAAAAHwAAAAADcAAAAAADcAAAAAADcAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: XQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAwBsAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAEAbAAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAABAGwAAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgBwAAAAAAEAcAAAAAACAHAAAAAAAQBwAAAAAAIAHwAAAAABAHAAAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAcAAAAAAAAHAAAAAAAABwAAAAAAIAcAAAAAAAAHAAAAAAAgBwAAAAAAMAbQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAABtAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAADAHAAAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAACAHAAAAAAAABwAAAAAAIAcAAAAAADAHAAAAAAAwB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAcAAAAAACAHAAAAAAAABwAAAAAAEAfgAAAAAAAGwAAAAAAABwAAAAAAMAcAAAAAADAGwAAAAAAAB+AAAAAAAAcAAAAAAAAHAAAAAAAwBwAAAAAAEAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAADAHAAAAAAAQBwAAAAAAMAcAAAAAABAH4AAAAAAABsAAAAAAAAcAAAAAACAHAAAAAAAwBsAAAAAAAAfgAAAAAAADEAAAAAAAAxAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAeQAAAAACAH4AAAAAAAB+AAAAAAAAbAAAAAAAAHAAAAAAAABwAAAAAAIAHwAAAAACAH4AAAAAAABwAAAAAAEAcAAAAAACAHAAAAAAAQBwAAAAAAAAcAAAAAAAAHAAAAAAAwBwAAAAAAMAcAAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAQBwAAAAAAIAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAAAXQAAAAACAHAAAAAAAQBwAAAAAAEAcAAAAAACAHAAAAAAAwBwAAAAAAMAcAAAAAABAHAAAAAAAQBwAAAAAAAAcAAAAAADAHAAAAAAAQBwAAAAAAIAcAAAAAAAAHAAAAAAAwB+AAAAAAAAeQAAAAACAE0AAAAAAgB5AAAAAAMAfgAAAAAAAH4AAAAAAAB5AAAAAAEAeQAAAAADAHkAAAAAAgB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAADAHAAAAAAAwB+AAAAAAAAfgAAAAAAAHAAAAAAAwBdAAAAAAEAcAAAAAAAAH4AAAAAAAAfAAAAAAEAcAAAAAABAHAAAAAAAABwAAAAAAIAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 1,3: ind: 1,3 - tiles: eQAAAAACcAAAAAACXQAAAAADcAAAAAAAfgAAAAAAXQAAAAAAcAAAAAAAcAAAAAACcAAAAAABXQAAAAADfgAAAAAATQAAAAAATQAAAAACTQAAAAABTQAAAAAAfgAAAAAAeQAAAAADcAAAAAAAXQAAAAABcAAAAAADfgAAAAAAHwAAAAABcAAAAAACcAAAAAACcAAAAAABXQAAAAAATQAAAAABeQAAAAADeQAAAAAAeQAAAAAAeQAAAAABfgAAAAAAfgAAAAAAcAAAAAABXQAAAAAAcAAAAAADfgAAAAAAXQAAAAAAcAAAAAADcAAAAAABcAAAAAAAXQAAAAAATQAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAcAAAAAADXQAAAAABcAAAAAADfgAAAAAAHwAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAXQAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADXQAAAAABcAAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAABcAAAAAADXQAAAAADcAAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADbAAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAXQAAAAABcAAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAeQAAAAACTQAAAAACeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABXQAAAAACcAAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAcAAAAAAAcAAAAAABXQAAAAABcAAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACXQAAAAABcAAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAXQAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAXQAAAAABXQAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACXQAAAAADcAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADcAAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACfgAAAAAAegAAAAACegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: eQAAAAADAHAAAAAAAwBdAAAAAAAAcAAAAAACAH4AAAAAAABdAAAAAAAAcAAAAAADAHAAAAAAAQBwAAAAAAMAXQAAAAADAH4AAAAAAABNAAAAAAIATQAAAAABAE0AAAAAAABNAAAAAAEAfgAAAAAAAHkAAAAAAABwAAAAAAEAXQAAAAAAAHAAAAAAAQB+AAAAAAAAHwAAAAADAHAAAAAAAwBwAAAAAAMAcAAAAAAAAF0AAAAAAwBNAAAAAAMAeQAAAAABAHkAAAAAAQB5AAAAAAIAeQAAAAACAH4AAAAAAAB+AAAAAAAAcAAAAAADAF0AAAAAAwBwAAAAAAEAfgAAAAAAAF0AAAAAAABwAAAAAAEAcAAAAAACAHAAAAAAAwBdAAAAAAAATQAAAAADAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABdAAAAAAIAcAAAAAACAH4AAAAAAAAfAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAADAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAMAXQAAAAADAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAF0AAAAAAABwAAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAHwAAAAAAAB8AAAAAAQB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAcAAAAAAAAHAAAAAAAwBdAAAAAAEAcAAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAEAbAAAAAAAAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAEAXQAAAAADAHAAAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAH4AAAAAAAAfAAAAAAIAHwAAAAADAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAeQAAAAACAE0AAAAAAAB5AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBdAAAAAAIAcAAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAABEAAAAAAAARAAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAIAXQAAAAACAHAAAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAEQAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAF0AAAAAAABwAAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAEQAAAAAAABEAAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABdAAAAAAEAcAAAAAAAAH4AAAAAAAAfAAAAAAEAXQAAAAADAF0AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAMAXQAAAAAAAHAAAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAgBwAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAABAH4AAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAAAcAAAAAADAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwB+AAAAAAAAegAAAAACAHoAAAAAAwB6AAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 1,4: ind: 1,4 - tiles: fgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAHAAAAAAAQBwAAAAAAMAcAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAACAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAQABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABwAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAkABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAACAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAAcAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACgAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,2: ind: 2,2 - tiles: XQAAAAADXQAAAAABXQAAAAACXQAAAAADbAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACbAAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADbAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAABegAAAAADegAAAAACfgAAAAAAHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAfgAAAAAAbAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: XQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAGwAAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAABsAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAMAbAAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAbQAAAAAAAB8AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB6AAAAAAAAegAAAAABAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAgBAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAEAcAAAAAADAHAAAAAAAwBwAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAMAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAGwAAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAMAcAAAAAABAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAAB6AAAAAAMAegAAAAABAH4AAAAAAAAfAAAAAAIAcAAAAAAAAHAAAAAAAwBwAAAAAAMAcAAAAAACAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAIAegAAAAACAH4AAAAAAAB+AAAAAAAAbAAAAAAAAHAAAAAAAABwAAAAAAEAcAAAAAABAHAAAAAAAQBwAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAEAcAAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgB+AAAAAAAAcAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 3,-1: ind: 3,-1 - tiles: cAAAAAADfgAAAAAAHwAAAAABcAAAAAACcAAAAAACcAAAAAACcAAAAAAAcAAAAAADHwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACcAAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADbAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADbAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACbAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADbAAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABbAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACegAAAAABegAAAAAAegAAAAADegAAAAADegAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABegAAAAAAegAAAAACegAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADegAAAAABegAAAAABegAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAA - version: 6 + tiles: cAAAAAAAAH4AAAAAAAAfAAAAAAEAcAAAAAABAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAQAfAAAAAAMAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAHAAAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAADAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAGwAAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAbAAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAQBsAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAGwAAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAIAbAAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAgBsAAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB6AAAAAAIAegAAAAAAAHoAAAAAAgB6AAAAAAMAegAAAAACAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQB6AAAAAAAAegAAAAABAHoAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAIAegAAAAACAHoAAAAAAQB6AAAAAAIAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAADAH4AAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAgB6AAAAAAEAegAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAQB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAAAfgAAAAAAAA== + version: 7 3,0: ind: 3,0 - tiles: fgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAawAAAAACawAAAAAAawAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAawAAAAACawAAAAAAawAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABawAAAAAAawAAAAABawAAAAAAMQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAawAAAAAAawAAAAAAawAAAAADMQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAMQAAAAAAXQAAAAADHwAAAAABfgAAAAAAHwAAAAABawAAAAAAawAAAAACawAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAADXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACbAAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAEAAAAAAAEAAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAfgAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAADEAAAAAAAAxAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAawAAAAADAGsAAAAAAQBrAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAGsAAAAAAwBrAAAAAAAAawAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAgBrAAAAAAMAawAAAAABAGsAAAAAAAAxAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAB8AAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAACAH4AAAAAAAAfAAAAAAIAawAAAAACAGsAAAAAAQBrAAAAAAIAMQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAABAH4AAAAAAAAxAAAAAAAAbAAAAAAAADEAAAAAAAB+AAAAAAAAHwAAAAABAGsAAAAAAgBrAAAAAAMAawAAAAABAH4AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAACAF0AAAAAAwB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAbAAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAGwAAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAbAAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAH4AAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAegAAAAAAAHoAAAAAAQB6AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQB+AAAAAAAAEAAAAAAAABAAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAA== + version: 7 3,1: ind: 3,1 - tiles: fgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAEAAAAAAAEAAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAABbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAEAAAAAAAEAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAABXQAAAAABXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABXQAAAAABXQAAAAACXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAABXQAAAAABXQAAAAACXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABTQAAAAACHwAAAAADfgAAAAAAegAAAAACegAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAHwAAAAADTQAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAACbAAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACbAAAAAAATQAAAAABTQAAAAACHwAAAAACfgAAAAAAegAAAAADegAAAAADLgAAAAAAfgAAAAAAeQAAAAABeQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAHwAAAAADTQAAAAABHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADTQAAAAADTQAAAAACXQAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAAATQAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAB - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAfgAAAAAAABAAAAAAAAAQAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAAfAAAAAAIAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAEAAAAAAAABAAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAHwAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAB8AAAAAAQBsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAB8AAAAAAQB+AAAAAAAAXQAAAAABAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAADAH4AAAAAAAAfAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAwB+AAAAAAAAHwAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAADAH4AAAAAAABkAAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgAfAAAAAAEAfgAAAAAAAB8AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAwBtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAH4AAAAAAAAfAAAAAAEATQAAAAADAB8AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAQAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAwB+AAAAAAAAHwAAAAABAE0AAAAAAQAfAAAAAAEAfgAAAAAAAHoAAAAAAgB6AAAAAAAAbAAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAbAAAAAAAAE0AAAAAAQBNAAAAAAMAHwAAAAADAH4AAAAAAAB6AAAAAAIAegAAAAABAC4AAAAAAAB+AAAAAAAAeQAAAAACAHkAAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAH4AAAAAAAAfAAAAAAAATQAAAAACAB8AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAAB+AAAAAAAAHwAAAAACAE0AAAAAAwBNAAAAAAMAXQAAAAACAB8AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAfgAAAAAAAB8AAAAAAQBNAAAAAAMAHwAAAAADAH4AAAAAAAAfAAAAAAEAHwAAAAABAA== + version: 7 3,2: ind: 3,2 - tiles: XQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACbAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAATQAAAAAATQAAAAAAHwAAAAACfgAAAAAAegAAAAABegAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAbAAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAAATQAAAAADHwAAAAAAfgAAAAAAegAAAAACegAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAbAAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAATQAAAAABHwAAAAADfgAAAAAAegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAHwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABHwAAAAAAHwAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADbAAAAAAAbAAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAHwAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAACegAAAAADegAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABLwAAAAABLwAAAAABLwAAAAABLwAAAAACLwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAALwAAAAADLwAAAAADLwAAAAAALwAAAAAALwAAAAACfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAABLwAAAAAC - version: 6 + tiles: XQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAgBsAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAbAAAAAAAAE0AAAAAAQBNAAAAAAEAHwAAAAABAH4AAAAAAAB6AAAAAAIAegAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAbAAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAAAfAAAAAAMATQAAAAABAB8AAAAAAgB+AAAAAAAAegAAAAADAHoAAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAGwAAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwB+AAAAAAAAHwAAAAACAE0AAAAAAwAfAAAAAAMAfgAAAAAAAHoAAAAAAQB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwB+AAAAAAAAHwAAAAAAAB8AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAIAHwAAAAACAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAB8AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAgAfAAAAAAIAHwAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAEAHwAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAGwAAAAAAABsAAAAAAAAHwAAAAADAGwAAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAEAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAQB6AAAAAAIAegAAAAADAHoAAAAAAwB6AAAAAAMAegAAAAADAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAAALwAAAAADAC8AAAAAAwAvAAAAAAMALwAAAAABAC8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAAAAC8AAAAAAQAvAAAAAAMALwAAAAADAC8AAAAAAwAvAAAAAAMAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAQAvAAAAAAMALwAAAAAAAC8AAAAAAQAvAAAAAAIALwAAAAADAA== + version: 7 2,-2: ind: 2,-2 - tiles: bAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAXQAAAAADcAAAAAAAXQAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABOAAAAAAAHwAAAAAAUQAAAAAAUQAAAAAAHwAAAAACXQAAAAAAcAAAAAACXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABOAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAXQAAAAACcAAAAAABXQAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAATQAAAAABeQAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADcAAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAeQAAAAAAeQAAAAACeQAAAAADfgAAAAAAXQAAAAABcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAABXQAAAAAAeQAAAAACeQAAAAADeQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAATQAAAAACTQAAAAAATQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAADHwAAAAACXQAAAAABfgAAAAAATQAAAAADTQAAAAADTQAAAAADXQAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABHwAAAAADXQAAAAADfgAAAAAATQAAAAADTQAAAAAATQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAADMQAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAADXQAAAAADXQAAAAABXQAAAAADbAAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAAAXQAAAAAAXQAAAAADXQAAAAABbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAAD - version: 6 + tiles: bAAAAAAAAH4AAAAAAABRAAAAAAAAUQAAAAAAAH4AAAAAAABdAAAAAAMAcAAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACADgAAAAAAAAfAAAAAAEAUQAAAAAAAFEAAAAAAAAfAAAAAAEAXQAAAAABAHAAAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAA4AAAAAAAAfgAAAAAAAFEAAAAAAABRAAAAAAAAfgAAAAAAAF0AAAAAAQBwAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAbAAAAAAAAH4AAAAAAABRAAAAAAAAUQAAAAAAAH4AAAAAAABNAAAAAAAAeQAAAAABAE0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAHAAAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAAAeQAAAAADAHkAAAAAAAB5AAAAAAEAfgAAAAAAAF0AAAAAAgBwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAABwAAAAAAEAcAAAAAAAAHAAAAAAAgBwAAAAAAMAXQAAAAABAHkAAAAAAwB5AAAAAAEAeQAAAAADAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAABdAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAIAHwAAAAACAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQB+AAAAAAAATQAAAAADAE0AAAAAAQBNAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAXQAAAAAAAB8AAAAAAgBdAAAAAAIAfgAAAAAAAE0AAAAAAABNAAAAAAEATQAAAAABAF0AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAF0AAAAAAQAfAAAAAAIAXQAAAAACAH4AAAAAAABNAAAAAAMATQAAAAAAAE0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAADAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAADEAAAAAAABdAAAAAAAAMQAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAADAHAAAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAgBsAAAAAAAAcAAAAAACAHAAAAAAAwBwAAAAAAMAcAAAAAADAHAAAAAAAQBwAAAAAAMAcAAAAAADAHAAAAAAAgBwAAAAAAIAcAAAAAAAAHAAAAAAAQBwAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAIAbAAAAAAAAHAAAAAAAQBwAAAAAAMAcAAAAAABAHAAAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAwBwAAAAAAIAcAAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAACAA== + version: 7 3,-2: ind: 3,-2 - tiles: cAAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAcAAAAAACXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAATwAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAeQAAAAABTQAAAAACfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAcAAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABXQAAAAAAfgAAAAAATwAAAAAATwAAAAAAXQAAAAACXQAAAAABbAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACMQAAAAAAcAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABMQAAAAAAcAAAAAACXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABMQAAAAAAcAAAAAAAXQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAACcAAAAAABHwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAACfgAAAAAAHwAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAACHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAABcAAAAAABfgAAAAAAHwAAAAAAcAAAAAADXQAAAAADXQAAAAABXQAAAAABcAAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADcAAAAAADfgAAAAAAHwAAAAADcAAAAAABXQAAAAAAXQAAAAACXQAAAAADcAAAAAADHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAB - version: 6 + tiles: cAAAAAACAF0AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABdAAAAAAIAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAMAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAABwAAAAAAMAXQAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAIATwAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAeQAAAAACAE0AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAHwAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAABwAAAAAAEAcAAAAAAAAHAAAAAAAgBwAAAAAAAAcAAAAAABAF0AAAAAAQB+AAAAAAAATwAAAAAAAE8AAAAAAABdAAAAAAEAXQAAAAADAGwAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAMQAAAAAAAHAAAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACADEAAAAAAABwAAAAAAEAXQAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAF0AAAAAAwAxAAAAAAAAcAAAAAADAF0AAAAAAQBsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAQB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAMAcAAAAAADAHAAAAAAAgBwAAAAAAEAcAAAAAADAHAAAAAAAAAfAAAAAAIAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAXQAAAAAAAB8AAAAAAgB+AAAAAAAAHwAAAAAAAHAAAAAAAwBwAAAAAAIAcAAAAAADAHAAAAAAAwBwAAAAAAAAHwAAAAACAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAABwAAAAAAMAfgAAAAAAAB8AAAAAAwBwAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAcAAAAAAAAB8AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAcAAAAAACAH4AAAAAAAAfAAAAAAMAcAAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAHAAAAAAAwAfAAAAAAMAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAA== + version: 7 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACbAAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAABwAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAADfgAAAAAAegAAAAADegAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEAH4AAAAAAAAfAAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAEAfgAAAAAAAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAADAGwAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQB+AAAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABwAAAAAAIAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAcAAAAACAB+AAAAAAAAegAAAAADAHoAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAHoAAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAgB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAACAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAMAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAB - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAMAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAACAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAQB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAMAfgAAAAAAAAcAAAAAAAAHAAAAAAwABwAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAADAA== + version: 7 2,-3: ind: 2,-3 - tiles: XQAAAAABfgAAAAAAbQAAAAAAcAAAAAAAXQAAAAACXQAAAAACXQAAAAADcAAAAAACbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABbAAAAAAAHwAAAAADXQAAAAABfgAAAAAAbQAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAAAcAAAAAABbQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAMQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAbAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADbAAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAUQAAAAAAHwAAAAAAbAAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADHwAAAAADfgAAAAAAUQAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAABHwAAAAAAXQAAAAABcAAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADHwAAAAADfgAAAAAAUQAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAADcAAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADHwAAAAABfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAcAAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAcAAAAAADcAAAAAADfgAAAAAAXQAAAAAAcAAAAAACXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAADfgAAAAAAXQAAAAADTwAAAAAATwAAAAAAcAAAAAADcAAAAAAAXQAAAAABXQAAAAADcAAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAADXQAAAAAAXQAAAAABTwAAAAAATwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAXQAAAAADcAAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAcAAAAAACXQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAAD - version: 6 + tiles: XQAAAAADAH4AAAAAAABtAAAAAAAAcAAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAADAHAAAAAAAgBtAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQBsAAAAAAAAHwAAAAACAF0AAAAAAwB+AAAAAAAAbQAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAADAHAAAAAAAABwAAAAAAEAbQAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAxAAAAAAAAfgAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAGwAAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBsAAAAAAAAHwAAAAADAB8AAAAAAwB+AAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAEAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAFEAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAABRAAAAAAAAHwAAAAADAGwAAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgAfAAAAAAIAfgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFEAAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAHwAAAAABAH4AAAAAAABRAAAAAAAADgAAAAADAA4AAAAAAgAOAAAAAAIADgAAAAACAB8AAAAAAgBdAAAAAAAAcAAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAAAAB8AAAAAAwB+AAAAAAAAUQAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAwB+AAAAAAAAXQAAAAAAAHAAAAAAAQBdAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAQAfAAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBwAAAAAAIAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABwAAAAAAMAcAAAAAACAH4AAAAAAABdAAAAAAEAcAAAAAABAF0AAAAAAwB+AAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAAAAB8AAAAAAQB+AAAAAAAAXQAAAAADAE8AAAAAAABPAAAAAAAAcAAAAAACAHAAAAAAAgBdAAAAAAEAXQAAAAAAAHAAAAAAAwBdAAAAAAIAfgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAIAXQAAAAAAAF0AAAAAAQBPAAAAAAAATwAAAAAAAHAAAAAAAABwAAAAAAMAfgAAAAAAAF0AAAAAAwBwAAAAAAEAXQAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAACAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAcAAAAAACAF0AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAADAB8AAAAAAwB+AAAAAAAAXQAAAAABAA== + version: 7 3,-3: ind: 3,-3 - tiles: HwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAHwAAAAAAHwAAAAADfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAACfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAHwAAAAACHwAAAAADfgAAAAAAbAAAAAAAXQAAAAADXQAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADUQAAAAAAUQAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAbAAAAAAAXQAAAAACbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAHwAAAAABegAAAAACegAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAbAAAAAAAXQAAAAADbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAbQAAAAAAXQAAAAABXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAABbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAfgAAAAAAcAAAAAABXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAcAAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAA - version: 6 + tiles: HwAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAQB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAFEAAAAAAAAfAAAAAAAAHwAAAAADAH4AAAAAAABtAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABRAAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAABAB8AAAAAAwB+AAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAB8AAAAAAAAfAAAAAAAAfgAAAAAAAGwAAAAAAABdAAAAAAIAXQAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAIAfgAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAXQAAAAABAGwAAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAEAUQAAAAAAAFEAAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAwB+AAAAAAAAbAAAAAAAAF0AAAAAAgBsAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAQB+AAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAHwAAAAADAHoAAAAAAwB6AAAAAAIAfgAAAAAAAGwAAAAAAABdAAAAAAEAbAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAEAfgAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAACAH4AAAAAAABsAAAAAAAAXQAAAAAAAGwAAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAwBtAAAAAAAAXQAAAAAAAF0AAAAAAQB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABdAAAAAAAAbAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAAAfgAAAAAAAHAAAAAAAgBdAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAXQAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAACAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAcAAAAAABAF0AAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAA== + version: 7 4,-1: ind: 4,-1 - tiles: HwAAAAABHwAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAbAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAHwAAAAABHwAAAAADfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAbAAAAAAAbAAAAAAA - version: 6 + tiles: HwAAAAACAB8AAAAAAgB+AAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAbAAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAAAAB8AAAAAAwAfAAAAAAAAfgAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAXQAAAAACAF0AAAAAAwBsAAAAAAAAbAAAAAAAAA== + version: 7 -3,-3: ind: -3,-3 - tiles: fgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABBwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAACAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAIAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAgB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAEAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAwB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgAfAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAACAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAABAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,-3: ind: -2,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAEAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAACQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,-4: ind: -2,-4 - tiles: fgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAQAHAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAJAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,-4: ind: -3,-4 - tiles: fgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAbAAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACXQAAAAABXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAwBsAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAEAbAAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/AAAAAAAAfwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAABgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAEAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAEAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfwAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH8AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAH4AAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAABwAAAAAJAAcAAAAABQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAA== + version: 7 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAGBwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAHBwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfwAAAAAAAH8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAsAfgAAAAAAAAcAAAAABgAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAACgB/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH8AAAAAAAB/AAAAAAAAfgAAAAAAAAcAAAAACwAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAHAAAAAAgABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAACAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,-2: ind: 4,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAXQAAAAADHwAAAAACfgAAAAAATQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADXQAAAAACHwAAAAACfgAAAAAATQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABfgAAAAAAHwAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAACHwAAAAADXQAAAAADXQAAAAACXQAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAHwAAAAABbAAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAIAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAwAfAAAAAAEAHwAAAAABAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAGwAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAADAF0AAAAAAwAfAAAAAAEAfgAAAAAAAE0AAAAAAgB+AAAAAAAAbAAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAgBdAAAAAAMAHwAAAAADAH4AAAAAAABNAAAAAAIAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAXQAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAF0AAAAAAwAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAAAfgAAAAAAAB8AAAAAAwBsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABdAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAACAH4AAAAAAAAfAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAF0AAAAAAQBdAAAAAAEAHwAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAB+AAAAAAAAHwAAAAACAGwAAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAMAHwAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAfgAAAAAAAB8AAAAAAwBdAAAAAAEAXQAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAABAA== + version: 7 4,-3: ind: 4,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB+AAAAAAAAegAAAAADAHoAAAAAAgB6AAAAAAIAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAegAAAAADAHoAAAAAAwB6AAAAAAMAegAAAAABAHoAAAAAAgB6AAAAAAEAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB+AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAfgAAAAAAAFAAAAAAAABQAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAfgAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAH4AAAAAAABQAAAAAAAAUAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAH4AAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB+AAAAAAAAUAAAAAAAAFAAAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 4,0: ind: 4,0 - tiles: fgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADbAAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABdAAAAAACdAAAAAABdAAAAAACdAAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAADIwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABdAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAIwAAAAABfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAdAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAIwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAdAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAIwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADdAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACdAAAAAAAdAAAAAAAdAAAAAADdAAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAABIwAAAAADfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAAAHwAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAHwAAAAAAbAAAAAAAegAAAAAAegAAAAACegAAAAACLwAAAAAAHwAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAHwAAAAAAbAAAAAAAegAAAAADegAAAAAAegAAAAAALwAAAAADHwAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADHwAAAAACbAAAAAAAegAAAAACegAAAAAAegAAAAAALwAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQBsAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAACAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAfgAAAAAAAF0AAAAAAABdAAAAAAMAdAAAAAACAHQAAAAAAwB0AAAAAAAAdAAAAAACAHQAAAAAAgB0AAAAAAIAdAAAAAACAHQAAAAAAAAjAAAAAAIAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAACAHQAAAAAAgAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIwAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwB0AAAAAAEAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACMAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAgBdAAAAAAIAdAAAAAACABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAjAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAHQAAAAAAQAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAAB0AAAAAAIAdAAAAAADAHQAAAAAAwB0AAAAAAAAdAAAAAACAHQAAAAAAgB0AAAAAAIAdAAAAAAAACMAAAAAAwB+AAAAAAAAHwAAAAAAAHoAAAAAAgB6AAAAAAAAegAAAAADAB8AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAQAfAAAAAAEAbAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAADAC8AAAAAAwAfAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAIAHwAAAAACAGwAAAAAAAB6AAAAAAMAegAAAAABAHoAAAAAAQAvAAAAAAMAHwAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAACAB8AAAAAAgBsAAAAAAAAegAAAAAAAHoAAAAAAgB6AAAAAAIALwAAAAAAAA== + version: 7 4,1: ind: 4,1 - tiles: HwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAADdAAAAAADeQAAAAAAdAAAAAACeQAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA - version: 6 + tiles: HwAAAAADAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAwB+AAAAAAAAegAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAACAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAeQAAAAABAHQAAAAAAQB5AAAAAAMAdAAAAAADAHkAAAAAAgB+AAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAADAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAwB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAwB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAACAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAgBAAAAAAAAAQAAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAAfAAAAAAMAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAB8AAAAAAAB6AAAAAAIAegAAAAADAHoAAAAAAAB6AAAAAAMAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAA== + version: 7 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAATQAAAAAATQAAAAACTQAAAAAAfgAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAADTQAAAAADTQAAAAADTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAAMQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABXQAAAAACfgAAAAAAbQAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAATQAAAAACTQAAAAABXQAAAAACfgAAAAAAbQAAAAAAcAAAAAACXQAAAAADXQAAAAABXQAAAAACcAAAAAADbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAcAAAAAACXQAAAAABbQAAAAAAXQAAAAADcAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAH4AAAAAAAAHAAAAAAoABwAAAAAAAAcAAAAAAAAHAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAABNAAAAAAMATQAAAAACAE0AAAAAAAB+AAAAAAAATQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATQAAAAACAE0AAAAAAgBNAAAAAAEATQAAAAACAE0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE0AAAAAAQBNAAAAAAAAMQAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABNAAAAAAAATQAAAAAAAF0AAAAAAgB+AAAAAAAAbQAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAADAHAAAAAAAQBwAAAAAAAAbQAAAAAAAG0AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABtAAAAAAAATQAAAAADAE0AAAAAAgBdAAAAAAEAfgAAAAAAAG0AAAAAAABwAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAMAcAAAAAABAG0AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABNAAAAAAMAXQAAAAADAH4AAAAAAABtAAAAAAAAcAAAAAACAF0AAAAAAABtAAAAAAAAXQAAAAAAAHAAAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAABcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABbAAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAD - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAoABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAABQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAEAcAAAAAAAAHAAAAAAAwB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAEAcAAAAAAAAHAAAAAAAgBwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAEAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEAH4AAAAAAABwAAAAAAEAcAAAAAAAAHAAAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAgBwAAAAAAAAcAAAAAACAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAgB+AAAAAAAAcAAAAAABAHAAAAAAAgBwAAAAAAIAcAAAAAACAHAAAAAAAgBwAAAAAAAAcAAAAAADAHAAAAAAAgB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAEAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAACAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAEAbAAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAA== + version: 7 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAGBwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAEBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAATQAAAAABTQAAAAAATQAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAbQAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAATQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAACQAHAAAAAAgABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAABwAAAAAFAAcAAAAABAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAACgAHAAAAAAwABwAAAAAAAAcAAAAABgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATQAAAAACAE0AAAAAAgBNAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAH4AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAE0AAAAAAwBNAAAAAAEATQAAAAABAE0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAE0AAAAAAQB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAALgAAAAAAAH4AAAAAAABNAAAAAAIAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAZAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAEAfgAAAAAAAA== + version: 7 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGBwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAADfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAABegAAAAABegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMAAcAAAAACQAHAAAAAAAABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAEABwAAAAAAAAcAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAkABwAAAAAJAAcAAAAAAAAHAAAAAAgABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAHAAcAAAAAAAAHAAAAAAYABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAGAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAEAfgAAAAAAAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAgB6AAAAAAIAfgAAAAAAAHAAAAAAAQBwAAAAAAMAcAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB+AAAAAAAABwAAAAAAAAcAAAAACQAHAAAAAAMAfgAAAAAAAHoAAAAAAwB6AAAAAAIAfgAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAAAAHAAAAAAAQB+AAAAAAAAegAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB6AAAAAAIAfgAAAAAAAHoAAAAAAAB+AAAAAAAAcAAAAAAAAHAAAAAAAgBwAAAAAAMAfgAAAAAAAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB+AAAAAAAAfgAAAAAAAHAAAAAAAAB+AAAAAAAAcAAAAAADAH4AAAAAAAB6AAAAAAIAfgAAAAAAAH4AAAAAAAB6AAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAADAH4AAAAAAAB+AAAAAAAAcAAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAABAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAIAegAAAAADAHoAAAAAAgB6AAAAAAAAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAMAfgAAAAAAAH4AAAAAAAB6AAAAAAIAfgAAAAAAAHoAAAAAAgB+AAAAAAAAegAAAAACAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAQB+AAAAAAAAegAAAAADAA== + version: 7 8,1: ind: 8,1 - tiles: fgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALwAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAALwAAAAABAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,-5: ind: 5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,-4: ind: 5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAAEBwAAAAAGBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAABMgAAAAAAMgAAAAAAMgAAAAACMgAAAAADMgAAAAACMgAAAAABMgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAMgAAAAAAMgAAAAACMgAAAAADMgAAAAABMgAAAAAAMgAAAAADMgAAAAACMgAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAACMgAAAAADMgAAAAACMgAAAAADMgAAAAABMgAAAAAAMgAAAAADMgAAAAACBwAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAegAAAAABfgAAAAAAMgAAAAAAMgAAAAABMgAAAAABMgAAAAADMgAAAAABMgAAAAABMgAAAAABMgAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAACfgAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAegAAAAABfgAAAAAAegAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAQABwAAAAAAAAcAAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAACAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAALAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAJAAcAAAAAAAAHAAAAAAoABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAGAAcAAAAAAAAHAAAAAAkABwAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAQABwAAAAAFAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAFAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAyAAAAAAEAMgAAAAACADIAAAAAAwAyAAAAAAEAMgAAAAACADIAAAAAAgAyAAAAAAAAMgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAQB+AAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAMAMgAAAAACADIAAAAAAAAyAAAAAAIAMgAAAAABADIAAAAAAwAHAAAAAAAABwAAAAAFAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAADIAAAAAAQAyAAAAAAMAMgAAAAACADIAAAAAAgAyAAAAAAAAMgAAAAADADIAAAAAAwAyAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAAB+AAAAAAAAegAAAAAAAH4AAAAAAAAyAAAAAAIAMgAAAAABADIAAAAAAAAyAAAAAAAAMgAAAAADADIAAAAAAAAyAAAAAAEAMgAAAAADAH4AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAAB6AAAAAAMAfgAAAAAAAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAQB6AAAAAAIAegAAAAAAAHoAAAAAAgB+AAAAAAAAegAAAAADAHoAAAAAAQB6AAAAAAIAfgAAAAAAAHoAAAAAAgB+AAAAAAAAegAAAAACAH4AAAAAAAB6AAAAAAEAegAAAAADAHoAAAAAAQB6AAAAAAIAegAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 5,-3: ind: 5,-3 - tiles: egAAAAACegAAAAACegAAAAACegAAAAABegAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAADfgAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAADegAAAAABegAAAAACfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAXQAAAAADXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: egAAAAADAHoAAAAAAQB6AAAAAAIAegAAAAADAHoAAAAAAQB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAAAegAAAAACAHoAAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAADAH4AAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAfgAAAAAAAH4AAAAAAABQAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAIAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAH4AAAAAAAB+AAAAAAAAUAAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB+AAAAAAAAfgAAAAAAAFAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 5,-2: ind: 5,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAHwAAAAACfgAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAADZAAAAAAAZAAAAAAAXQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABHwAAAAACHwAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE0AAAAAAgBNAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABNAAAAAAAATQAAAAADAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAADAB8AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBkAAAAAAAAZAAAAAAAAF0AAAAAAwBsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAbAAAAAAAAGwAAAAAAAB+AAAAAAAAHwAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAADAB8AAAAAAwAfAAAAAAMAfgAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAEAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAUQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAA== + version: 7 5,-1: ind: 5,-1 - tiles: fgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABbAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADbAAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAACbAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAVgAAAAAAHwAAAAACVgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA - version: 6 + tiles: fgAAAAAAAB8AAAAAAwAfAAAAAAIAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAUQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFEAAAAAAAB+AAAAAAAATwAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAE8AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAwAfAAAAAAMAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAADAH4AAAAAAABRAAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgB+AAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAFEAAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAgAfAAAAAAIAfgAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAQB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAH4AAAAAAABRAAAAAAAAUQAAAAAAAFEAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAABsAAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAwBsAAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAAAfgAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAEAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAACAGwAAAAAAABRAAAAAAAAUQAAAAAAAFEAAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAH4AAAAAAABWAAAAAAEAHwAAAAADAFYAAAAAAQB+AAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAADAGwAAAAAAABsAAAAAAAAbAAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAAAAH4AAAAAAABRAAAAAAAAUQAAAAAAAFEAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAXQAAAAABAH4AAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAgB+AAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAA== + version: 7 6,-4: ind: 6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAADfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAH4AAAAAAAB/AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAB+AAAAAAAAfwAAAAAAAAcAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAEAH8AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfgAAAAAAAH8AAAAAAAAHAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIAAcAAAAAAAB/AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAABwAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAMAfwAAAAAAAH4AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAAcAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAHAAAAAAsABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAB+AAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAACwAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAwAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAEAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAABAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAwAHAAAAAAgAAAAAAAAAAH0AAAAAAAAAAAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAA== + version: 7 6,-5: ind: 6,-5 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA - version: 6 + tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAH4AAAAAAAB/AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAA== + version: 7 6,-3: ind: 6,-3 - tiles: HwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA - version: 6 + tiles: HwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAgAAAAAAAAAAfQAAAAAAAAAAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAAcAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAABsAAAAAAAAfgAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfwAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAA== + version: 7 6,-2: ind: 6,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABZAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABZAAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADZAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAABTQAAAAADTQAAAAAATQAAAAABfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAADTQAAAAADTQAAAAABTQAAAAACHwAAAAADXQAAAAAAXQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAAcAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAABwAAAAAKAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAGQAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAMAZAAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBkAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBkAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATQAAAAAAAE0AAAAAAwBNAAAAAAMATQAAAAACAE0AAAAAAAB+AAAAAAAAZAAAAAAAAF0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAE0AAAAAAQBNAAAAAAAATQAAAAABAE0AAAAAAgBNAAAAAAAAHwAAAAAAAF0AAAAAAQBdAAAAAAIAbQAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbQAAAAAAAA== + version: 7 7,-2: ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAATwAAAAAAHwAAAAABHwAAAAACHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADAAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAADTwAAAAAAHwAAAAAAHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAHfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAABBwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAXQAAAAACZAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAABAAcAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAADAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAgB+AAAAAAAATwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAACAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAABAE8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAACAH4AAAAAAABPAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAMATwAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAHwAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAABdAAAAAAAAfgAAAAAAAGQAAAAAAABdAAAAAAMAZAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 7,-3: ind: 7,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAgABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAsABwAAAAAJAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAADAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAA== + version: 7 8,-2: ind: 8,-2 - tiles: BwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACfgAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: BwAAAAAAAAcAAAAABAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAkAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAABwAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAABwAAAAALAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAABwAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 8,-3: ind: 8,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAABwAAAAAIAAcAAAAAAAAHAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAABQB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 7,-1: ind: 7,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAADBwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAACwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAYAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAcAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAQB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAABkAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAGQAAAAAAABdAAAAAAMAXQAAAAABAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAGQAAAAAAABdAAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAwBkAAAAAAAAXQAAAAABAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 6,-1: ind: 6,-1 - tiles: fgAAAAAATQAAAAABTQAAAAACTQAAAAABTQAAAAACTQAAAAADfgAAAAAAXQAAAAABXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAATQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAKAAAAAAAKAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAKAAAAAABKAAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAKAAAAAACKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAE0AAAAAAQBNAAAAAAMATQAAAAACAE0AAAAAAQBNAAAAAAEAfgAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAABNAAAAAAAATQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATQAAAAABAE0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAACgAAAAAAgAoAAAAAAEAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAAoAAAAAAIAKAAAAAABAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAAKAAAAAABACgAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 8,-1: ind: 8,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAcAAAAAAAAHAAAAAAoABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAQAHAAAAAAEABwAAAAADAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAIAAcAAAAACQAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAMAAcAAAAABAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAIAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 8,0: ind: 8,0 - tiles: fgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAADfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAAHAAAAAAYABwAAAAAAAAcAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAMABwAAAAAAAH8AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAFAH8AAAAAAAB/AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAUABwAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 7,0: ind: 7,0 - tiles: fQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAXQAAAAADZAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAKAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAKAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAKAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: fQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAgB+AAAAAAAAXQAAAAAAAGQAAAAAAABdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAGQAAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAIAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAoAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAKAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAACgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAMAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 6,0: ind: 6,0 - tiles: HwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAADZAAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAXQAAAAADZAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAA - version: 6 + tiles: HwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAIAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAfgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAQAAAAAAAAEAAAAAAABtAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAAEAAAAAAAABAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAABkAAAAAAAAXQAAAAADAGQAAAAAAABdAAAAAAMAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAABAAAAAAAAAQAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAZAAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAwB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAgBkAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAABAA== + version: 7 5,0: ind: 5,0 - tiles: XQAAAAACXQAAAAACXQAAAAADXQAAAAAAbAAAAAAAHwAAAAADfgAAAAAAHwAAAAAAbAAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAbAAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAALwAAAAADLwAAAAABLwAAAAAALwAAAAAALwAAAAACLwAAAAAAegAAAAACegAAAAAAbAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAALwAAAAACLwAAAAAALwAAAAACLwAAAAACLwAAAAABLwAAAAADegAAAAABegAAAAACbAAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABbQAAAAAALwAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAACLwAAAAABegAAAAAAegAAAAABbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAA - version: 6 + tiles: XQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAADAGwAAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAgBsAAAAAAAAUQAAAAAAAFEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABRAAAAAAAAUQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAEAbAAAAAAAAFEAAAAAAABRAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUQAAAAAAAFEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAABAH4AAAAAAABRAAAAAAAAUQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFEAAAAAAABRAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgB+AAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAFEAAAAAAABRAAAAAAAAUQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAEAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAQB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAADAHoAAAAAAQB6AAAAAAAAegAAAAADAHoAAAAAAQB6AAAAAAAAegAAAAADAHoAAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAC8AAAAAAgAvAAAAAAIALwAAAAADAC8AAAAAAgAvAAAAAAIALwAAAAACAHoAAAAAAgB6AAAAAAAAbAAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAAAvAAAAAAAALwAAAAABAC8AAAAAAgAvAAAAAAIALwAAAAADAC8AAAAAAAB6AAAAAAMAegAAAAADAGwAAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAABtAAAAAAAALwAAAAAAAC8AAAAAAgAvAAAAAAAALwAAAAACAC8AAAAAAwAvAAAAAAAAegAAAAACAHoAAAAAAgBsAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAfgAAAAAAAA== + version: 7 7,1: ind: 7,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAEfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH8AAAAAAAAHAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB/AAAAAAAABwAAAAADAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAAcAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAAHAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAegAAAAADAHoAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAABwAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAHoAAAAAAwB6AAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAH8AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAABAAAAAAAAAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfwAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAQAAAAAAAAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAH8AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAEAAAAAAAAB6AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAB/AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAA== + version: 7 6,1: ind: 6,1 - tiles: bQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAABQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADQAAAAAAAQAAAAAAAegAAAAAAegAAAAABQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADQAAAAAAAQAAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAATwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAATwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAA - version: 6 + tiles: bQAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAH4AAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAfgAAAAAAAEAAAAAAAABAAAAAAAAAegAAAAACAHoAAAAAAgBAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAADAHoAAAAAAABAAAAAAAAAQAAAAAAAAHoAAAAAAAB6AAAAAAEAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAEAQAAAAAAAAEAAAAAAAAB6AAAAAAIAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAMAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABPAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAATwAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAA== + version: 7 5,1: ind: 5,1 - tiles: egAAAAABegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAABegAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAAAegAAAAAAegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAAQAAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAADegAAAAADfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAABfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAegAAAAADegAAAAACegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAA - version: 6 + tiles: egAAAAABAHoAAAAAAgB6AAAAAAIAegAAAAACAHoAAAAAAgB6AAAAAAIAegAAAAAAAHoAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAMAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAegAAAAACAHoAAAAAAQB6AAAAAAIAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAABsAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAegAAAAACAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAbAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAALgAAAAAAAH4AAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAC4AAAAAAABAAAAAAAAAegAAAAACAHoAAAAAAQB6AAAAAAIAegAAAAACAHoAAAAAAQB6AAAAAAIAegAAAAADAH4AAAAAAABsAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAAAegAAAAABAH4AAAAAAAB6AAAAAAEAegAAAAADAHoAAAAAAAB+AAAAAAAAbAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAbAAAAAAAAH4AAAAAAABAAAAAAAAAegAAAAADAHoAAAAAAAB6AAAAAAMAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAIAegAAAAABAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAADAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAfgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAA== + version: 7 7,2: ind: 7,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAGBwAAAAAAfwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAAB - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAACgB/AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAH4AAAAAAAAHAAAAAAAAfwAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAH8AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAB/AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAADAAcAAAAACAAHAAAAAAAABwAAAAAAAAcAAAAACwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAGAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAADgAAAAAAAA4AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAIAOAAAAAAAADgAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAfAAAAAAIAHwAAAAADAA== + version: 7 6,2: ind: 6,2 - tiles: TwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAADHwAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAACEQAAAAAAEQAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAA - version: 6 + tiles: TwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAABAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAgB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAgB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAIAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAsAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAACAH4AAAAAAAAHAAAAAAAABwAAAAAJAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAgB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAADAH4AAAAAAAAfAAAAAAMAHwAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAAB8AAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAABAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAgB+AAAAAAAAHwAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAABABEAAAAAAAARAAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAAfAAAAAAIAfgAAAAAAAA== + version: 7 8,2: ind: 8,2 - tiles: fgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAFBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAHBwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfwAAAAAAAAcAAAAACwAHAAAAAAQAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAB/AAAAAAAABwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAACgAHAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAACAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 8,3: ind: 8,3 - tiles: EQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: EQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAAcAAAAABAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAABwAAAAAFAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfwAAAAAAAAcAAAAAAgAHAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAgABwAAAAALAAcAAAAACgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 7,3: ind: 7,3 - tiles: HwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAOAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAADOAAAAAAAfgAAAAAATwAAAAAAEQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAACOAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAHBwAAAAAFBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAF - version: 6 + tiles: HwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAIAOAAAAAAAAH4AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAABADgAAAAAAAB+AAAAAAAATwAAAAAAABEAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAADAH4AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAQA4AAAAAAAAfgAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAIAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAA4AAAAAAAAOAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAABADgAAAAAAAA4AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAHAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAAABwAAAAAGAAcAAAAABwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAQAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAQABwAAAAAAAAcAAAAAAAAHAAAAAAcABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAIAAcAAAAAAAAHAAAAAAAABwAAAAALAAcAAAAAAAAHAAAAAAAABwAAAAAEAAcAAAAAAAAHAAAAAAAABwAAAAALAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAJAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAACAAcAAAAACgAHAAAAAAAABwAAAAAAAA== + version: 7 8,4: ind: 8,4 - tiles: BwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: BwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 7,4: ind: 7,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAADBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 6,3: ind: 6,3 - tiles: HwAAAAAAHwAAAAADfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAA - version: 6 + tiles: HwAAAAACAB8AAAAAAwB+AAAAAAAAHwAAAAAAABEAAAAAAAARAAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAEAHwAAAAAAAH4AAAAAAAAfAAAAAAEAEQAAAAAAABEAAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAAHwAAAAAAABEAAAAAAAARAAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAwAfAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAMAHwAAAAADAH4AAAAAAAAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAB8AAAAAAAAfAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAHwAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAAB8AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAKAAcAAAAAAAAHAAAAAAAAAAAAAAAAAA== + version: 7 6,4: ind: 6,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABwAHAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACAAHAAAAAAAABwAAAAACAAcAAAAADAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAABwAAAAAEAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,3: ind: 5,3 - tiles: HwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAACHwAAAAABQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAOAAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAAAegAAAAACQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAeQAAAAAAeQAAAAADeQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAACbAAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACbAAAAAAAHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADbAAAAAAAHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADbAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACbAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADbAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: HwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAHoAAAAAAgAfAAAAAAIAQAAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAAOAAAAAAAAE8AAAAAAAA4AAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB6AAAAAAEAegAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAgBAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAeQAAAAAAAHkAAAAAAwB5AAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAAAHwAAAAADAGwAAAAAAAAfAAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAIAbAAAAAAAAB8AAAAAAwAfAAAAAAIAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAADAGwAAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAgBsAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAAAbAAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAAAAGwAAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAQBsAAAAAAAAHwAAAAABAH4AAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,4: ind: 5,4 - tiles: AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADbAAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADbAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACbAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABbAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAHwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABbAAAAAAAHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAHwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAwBsAAAAAAAAHwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAMAbAAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAADAGwAAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAQBsAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAMAbAAAAAAAAB8AAAAAAAAfAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAAAAGwAAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAQBsAAAAAAAAHwAAAAABAB8AAAAAAgB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,2: ind: 5,2 - tiles: fgAAAAAAXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAADbAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABbAAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABbAAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAbAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAABfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAOAAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAB - version: 6 + tiles: fgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAGwAAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAwBsAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAwB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAADAB8AAAAAAwBsAAAAAAAAHwAAAAABAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAABAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAQB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAABAGwAAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAACAGwAAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAQBsAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAwBsAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAbAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAHoAAAAAAgB6AAAAAAAAegAAAAABAHoAAAAAAAB+AAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAfgAAAAAAAB8AAAAAAwB6AAAAAAAAegAAAAADAHoAAAAAAAB6AAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAegAAAAADAHoAAAAAAwB6AAAAAAAAegAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAHoAAAAAAAB6AAAAAAIAegAAAAADAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAACAHoAAAAAAgB6AAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAegAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAAA4AAAAAAAATwAAAAAAADgAAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAA== + version: 7 4,3: ind: 4,3 - tiles: egAAAAACegAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAACbAAAAAAAbAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAbAAAAAAAbAAAAAAAHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAACbAAAAAAAbAAAAAAAHwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAADbAAAAAAAbAAAAAAAHwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAbAAAAAAAbAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADbAAAAAAAbAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAABbAAAAAAAbAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALwAAAAABegAAAAABfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAALwAAAAAAegAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAALwAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABbAAAAAAAbAAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADLwAAAAACegAAAAABfgAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALwAAAAACegAAAAADfgAAAAAAHwAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADegAAAAACfgAAAAAAHwAAAAABHwAAAAACbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: egAAAAACAHoAAAAAAQB+AAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAgBsAAAAAAAAbAAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAHoAAAAAAwAfAAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAABAGwAAAAAAABsAAAAAAAAHwAAAAACAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB6AAAAAAMAHwAAAAADAB8AAAAAAQB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAABsAAAAAAAAbAAAAAAAAB8AAAAAAwB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAAfAAAAAAEAHwAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAABAGwAAAAAAABsAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAQB+AAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAgBsAAAAAAAAbAAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAC8AAAAAAAB6AAAAAAIAfgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAvAAAAAAMAegAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAMALwAAAAADAHoAAAAAAQB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAABsAAAAAAAAbAAAAAAAAB8AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAAAHwAAAAAAAC8AAAAAAwB6AAAAAAEAfgAAAAAAAB8AAAAAAgBsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAvAAAAAAAAegAAAAAAAH4AAAAAAAAfAAAAAAMAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAMAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAABAHoAAAAAAQB+AAAAAAAAHwAAAAACAB8AAAAAAwBsAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAEAHwAAAAABAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,2: ind: 4,2 - tiles: HwAAAAACHwAAAAAAHwAAAAABfgAAAAAAegAAAAACegAAAAABegAAAAADegAAAAADegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACegAAAAABegAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAABegAAAAACegAAAAACHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAABHwAAAAADegAAAAABegAAAAADegAAAAADegAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAegAAAAACegAAAAABegAAAAABegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACbAAAAAAAbAAAAAAAHwAAAAACfgAAAAAAegAAAAADegAAAAABegAAAAABHwAAAAAAegAAAAABegAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADXQAAAAAAegAAAAAAegAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACHwAAAAACHwAAAAACXQAAAAADegAAAAADegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAABegAAAAAAegAAAAACegAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAADbAAAAAAAbAAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAABegAAAAAB - version: 6 + tiles: HwAAAAADAB8AAAAAAQAfAAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAwB6AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAgB6AAAAAAAAegAAAAACAHoAAAAAAAB6AAAAAAMAegAAAAABAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAIAegAAAAABAHoAAAAAAQB+AAAAAAAAegAAAAACAHoAAAAAAAB6AAAAAAMAegAAAAACAHoAAAAAAgB6AAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAMAfgAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAACAHoAAAAAAAB6AAAAAAMAfgAAAAAAAHoAAAAAAQAfAAAAAAAAegAAAAACAHoAAAAAAAB6AAAAAAEAegAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAABAHoAAAAAAQB6AAAAAAAAegAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAEAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAIAfgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAAAfAAAAAAEAbAAAAAAAAGwAAAAAAAAfAAAAAAEAfgAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAGwAAAAAAABsAAAAAAAAHwAAAAACAH4AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAgAfAAAAAAMAegAAAAACAHoAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAAAXQAAAAAAAHoAAAAAAwB6AAAAAAIAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAADAF0AAAAAAwB6AAAAAAIAegAAAAABAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAHwAAAAACAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAwB6AAAAAAMAegAAAAAAAHoAAAAAAwB+AAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAwBsAAAAAAAAbAAAAAAAAB8AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAAAegAAAAABAA== + version: 7 3,3: ind: 3,3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAABBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAegAAAAABegAAAAADHwAAAAABHwAAAAACHwAAAAABBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAADegAAAAADegAAAAADegAAAAACBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAABLwAAAAADLwAAAAAAJwAAAAADLwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbQAAAAAAHwAAAAADegAAAAACLwAAAAAALwAAAAACJwAAAAADLwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAABLwAAAAABLwAAAAAAEQAAAAAALwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAHwAAAAAAegAAAAAALwAAAAACLwAAAAADLwAAAAADLwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAABDgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAAADgAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACbQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAHoAAAAAAQB6AAAAAAIAegAAAAAAAHoAAAAAAgB6AAAAAAIAegAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAAABwAAAAAJAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAAB+AAAAAAAAHwAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAwABwAAAAAFAAcAAAAAAQAHAAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAHwAAAAABAHoAAAAAAwB6AAAAAAEAHwAAAAADAB8AAAAAAgAfAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAYAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAB8AAAAAAwB6AAAAAAIAegAAAAAAAHoAAAAAAQB6AAAAAAMAegAAAAAAAAcAAAAADAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAegAAAAAAAC8AAAAAAgAvAAAAAAIAJwAAAAAAAC8AAAAAAwAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAH4AAAAAAABtAAAAAAAAHwAAAAAAAHoAAAAAAQAvAAAAAAIALwAAAAACACcAAAAAAwAvAAAAAAMABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB6AAAAAAIALwAAAAABAC8AAAAAAAARAAAAAAAALwAAAAADAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAH4AAAAAAABkAAAAAAAAXQAAAAACAH4AAAAAAAAfAAAAAAIAegAAAAABAC8AAAAAAwAvAAAAAAEALwAAAAACAC8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAAAAHoAAAAAAQAvAAAAAAMALwAAAAABAC8AAAAAAgAvAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAABdAAAAAAIAXQAAAAACAH4AAAAAAABdAAAAAAEAfgAAAAAAAB8AAAAAAgB6AAAAAAAAegAAAAACAHoAAAAAAAB6AAAAAAEAegAAAAACAA4AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAZAAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAOAAAAAAMADgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADAA4AAAAAAQBtAAAAAAAAXQAAAAADAH4AAAAAAABdAAAAAAMAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,3: ind: 2,3 - tiles: cAAAAAAAcAAAAAACfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAAABwAAAAAAcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADfgAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAADDgAAAAAADgAAAAACDgAAAAABDgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABDgAAAAABDgAAAAACfgAAAAAADgAAAAAADgAAAAACDgAAAAAB - version: 6 + tiles: cAAAAAACAHAAAAAAAQB+AAAAAAAAcAAAAAACAHAAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAEAfgAAAAAAAHAAAAAAAABwAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABwAAAAAAIAcAAAAAABAH4AAAAAAABwAAAAAAMAcAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAMAAcAAAAAAgAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACAAHAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAACAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAMAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAACgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAGAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAAAHAAAAAAQAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAIAAcAAAAAAAAHAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAACAH4AAAAAAAB+AAAAAAAADgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA4AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA4AAAAAAQAOAAAAAAEADgAAAAABAA4AAAAAAAAOAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAOAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAADgAAAAAAAA4AAAAAAQAOAAAAAAMAfgAAAAAAAA4AAAAAAgAOAAAAAAEADgAAAAACAA== + version: 7 3,4: ind: 3,4 - tiles: DgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAA - version: 6 + tiles: DgAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAA== + version: 7 4,4: ind: 4,4 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,4: ind: 2,4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAADfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABfgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAADgAAAAAAAA4AAAAAAQAOAAAAAAAADgAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA4AAAAAAwB+AAAAAAAADgAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAADgAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAACQAHAAAAAAkABwAAAAAAAAcAAAAAAAAHAAAAAAQABwAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAHAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 6,-6: ind: 6,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAALwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAC8AAAAAAQAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 7,-5: ind: 7,-5 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,5: ind: 3,5 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAALwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAALwAAAAACAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,5: ind: 2,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,5: ind: 4,5 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,5: ind: 0,5 - tiles: AAAAAAAABwAAAAAABwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,5: ind: 1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,5: ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -609,6 +610,7 @@ entities: id: Fland - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -749,8 +751,6 @@ entities: color: '#EFB341FF' id: Bot decals: - 1957: 43,3 - 1958: 46,3 4810: 110,-18 4811: 109,-18 4812: 108,-18 @@ -825,15 +825,6 @@ entities: 1831: 49,20 1832: 51,21 1833: 49,21 - 1866: 41,10 - 1867: 41,11 - 1868: 51,10 - 1869: 51,11 - 1870: 46,11 - 1871: 41,9 - 1872: 51,9 - 1941: 48,1 - 1942: 48,2 2000: 18,9 2001: 17,9 2002: 16,9 @@ -1103,12 +1094,49 @@ entities: 8855: 14,13 8856: 14,14 8858: 27,14 - 8859: 36,1 - 8860: 33,1 - 8861: 30,1 - 8862: 27,1 8873: 32,-27 8874: 4,30 + 8953: 44,3 + 8954: 45,3 + 8955: 46,3 + 8956: 47,3 + 8957: 47,1 + 8958: 46,1 + 8959: 45,1 + 8960: 44,1 + 8964: 27,3 + 8965: 28,3 + 8966: 27,1 + 8967: 28,1 + 8968: 29,1 + 8974: 39,2 + 8975: 39,1 + 9064: 51,10 + 9065: 51,9 + 9082: 50,15 + 9083: 43,29 + 9084: 47,16 + 9085: 47,25 + 9086: 48,25 + 9087: 47,15 + 9201: 41,11 + 9202: 41,12 + 9203: 41,13 + 9208: 18,17 + 9209: 19,17 + 9210: 20,17 + 9211: 21,17 + 9212: 21,19 + 9213: 20,19 + 9214: 19,19 + 9215: 18,19 + 9275: 41,1 + 9299: 42,1 + 9316: 41,9 + 9317: 42,9 + 9321: 43,7 + 9322: 42,7 + 9344: 15,-14 - node: cleanable: True color: '#FFFFFFFF' @@ -1148,6 +1176,7 @@ entities: decals: 7018: 38,-48 7019: 36,-50 + 9067: 49,8 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -1167,6 +1196,7 @@ entities: 8439: 98,32 8440: 96,32 8441: 94,32 + 9066: 51,8 - node: color: '#FFFFFFFF' id: BotRightGreyscale @@ -1409,10 +1439,6 @@ entities: color: '#DE3A3A96' id: BrickTileSteelCornerNe decals: - 1505: 28,3 - 1506: 31,3 - 1507: 34,3 - 1508: 39,3 1552: 31,14 5714: 21,19 - node: @@ -1436,10 +1462,6 @@ entities: decals: 1553: 27,14 5715: 17,19 - 8864: 27,3 - 8865: 30,3 - 8866: 33,3 - 8867: 36,3 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -1466,10 +1488,6 @@ entities: color: '#DE3A3A96' id: BrickTileSteelCornerSe decals: - 1513: 39,1 - 1514: 34,1 - 1515: 31,1 - 1516: 28,1 1555: 31,9 5716: 21,17 - node: @@ -1487,10 +1505,6 @@ entities: color: '#DE3A3A96' id: BrickTileSteelCornerSw decals: - 1517: 27,1 - 1518: 30,1 - 1519: 33,1 - 1520: 36,1 1554: 27,9 5717: 17,17 - node: @@ -1588,10 +1602,6 @@ entities: color: '#DE3A3A96' id: BrickTileSteelLineE decals: - 1526: 31,2 - 1527: 28,2 - 1528: 34,2 - 1529: 39,2 1562: 31,10 1563: 31,11 1564: 31,12 @@ -1643,8 +1653,6 @@ entities: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 1521: 38,3 - 1532: 37,3 1556: 30,14 5722: 20,19 5723: 19,19 @@ -1692,8 +1700,6 @@ entities: color: '#DE3A3A96' id: BrickTileSteelLineS decals: - 1530: 38,1 - 1531: 37,1 1557: 29,9 1558: 28,9 5719: 20,17 @@ -1758,14 +1764,10 @@ entities: color: '#DE3A3A96' id: BrickTileSteelLineW decals: - 1522: 27,2 - 1523: 30,2 - 1524: 33,2 1559: 27,10 1560: 27,12 1561: 27,13 5718: 17,18 - 8868: 36,2 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -1828,7 +1830,6 @@ entities: 571: -36,50 572: -36,45 1681: 32,26 - 1850: 51,11 1984: 21,15 2036: 28,30 2577: 13,-10 @@ -1836,6 +1837,11 @@ entities: 4129: 24,55 4139: 27,55 4980: 73,-9 + 8891: 31,3 + 8940: 48,2 + 8941: 47,3 + 8973: 39,3 + 9060: 51,10 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe @@ -1900,7 +1906,6 @@ entities: 577: -38,50 578: -38,45 1484: 19,7 - 1851: 41,11 1975: 14,14 1978: 15,15 2034: 27,30 @@ -1909,6 +1914,9 @@ entities: 4128: 21,55 4140: 26,55 4981: 71,-9 + 8889: 27,3 + 8970: 33,3 + 9059: 49,10 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw @@ -1975,13 +1983,14 @@ entities: 573: -36,42 574: -36,47 1688: 33,16 - 1852: 51,9 1964: 21,9 2035: 28,28 2571: 13,-13 4130: 24,53 4143: 27,53 4982: 73,-11 + 8895: 31,1 + 8939: 48,1 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe @@ -2046,7 +2055,6 @@ entities: 575: -38,47 576: -38,42 1692: 27,16 - 1853: 41,9 1970: 15,9 2572: 11,-13 3505: 41,-24 @@ -2054,6 +2062,7 @@ entities: 4142: 26,53 4979: 71,-11 8857: 14,12 + 8894: 27,1 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw @@ -2093,6 +2102,11 @@ entities: 3346: 44,-15 3581: 56,-42 3654: 57,-33 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 8952: 47,2 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe @@ -2315,6 +2329,12 @@ entities: decals: 6413: 79,44 6414: 79,45 + - node: + color: '#DE3A3A4D' + id: BrickTileWhiteLineE + decals: + 9194: 43,10 + 9195: 43,11 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE @@ -2326,7 +2346,6 @@ entities: 1458: 25,1 1459: 25,2 1460: 25,3 - 1504: 39,6 1663: 25,9 1664: 25,10 1665: 25,11 @@ -2348,7 +2367,6 @@ entities: 1779: 25,24 1780: 25,26 1781: 25,27 - 1854: 51,10 1963: 21,12 2037: 28,29 2050: 25,29 @@ -2367,6 +2385,9 @@ entities: 6208: 56,31 6209: 56,33 6210: 56,34 + 8900: 31,2 + 9061: 51,9 + 9170: 36,6 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -2459,6 +2480,10 @@ entities: 8671: 13,51 8672: 12,51 8673: 11,51 + 8982: 38,3 + 8983: 37,3 + 8984: 36,3 + 8985: 35,3 - node: color: '#9FED580F' id: BrickTileWhiteLineN @@ -2524,8 +2549,6 @@ entities: decals: 668: -38,40 669: -37,40 - 1474: 37,7 - 1475: 36,7 1476: 34,7 1477: 33,7 1478: 32,7 @@ -2536,11 +2559,6 @@ entities: 1483: 20,7 1679: 28,26 1680: 31,26 - 1856: 43,11 - 1857: 44,11 - 1858: 46,11 - 1859: 49,11 - 1860: 48,11 1979: 16,15 1980: 17,15 1981: 18,15 @@ -2549,6 +2567,13 @@ entities: 4134: 23,55 4135: 22,55 4984: 72,-9 + 8892: 28,3 + 8893: 29,3 + 8942: 46,3 + 8943: 45,3 + 8944: 44,3 + 9338: 38,7 + 9339: 39,7 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -2648,6 +2673,10 @@ entities: 4254: 5,61 4255: 4,61 4288: 6,66 + 8978: 34,1 + 8979: 35,1 + 8980: 36,1 + 8981: 37,1 - node: color: '#6F6F73D0' id: BrickTileWhiteLineS @@ -2729,6 +2758,11 @@ entities: 5398: 73,-4 5399: 72,-4 5400: 71,-4 + - node: + color: '#DE3A3A4C' + id: BrickTileWhiteLineS + decals: + 9306: 42,9 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS @@ -2736,25 +2770,12 @@ entities: 497: -15,-11 1464: 24,5 1465: 26,5 - 1466: 27,5 - 1467: 29,5 - 1468: 30,5 - 1469: 32,5 - 1470: 33,5 - 1471: 35,5 - 1472: 36,5 - 1473: 38,5 1485: 20,5 1486: 21,5 1487: 22,5 1689: 32,16 1690: 31,16 1691: 30,16 - 1861: 49,9 - 1862: 48,9 - 1863: 47,9 - 1864: 45,9 - 1865: 44,9 1965: 20,9 1966: 19,9 1967: 18,9 @@ -2763,6 +2784,23 @@ entities: 3506: 42,-24 4132: 22,53 4133: 23,53 + 8875: 27,5 + 8876: 28,5 + 8877: 29,5 + 8878: 31,5 + 8879: 32,5 + 8880: 33,5 + 8881: 35,5 + 8896: 28,1 + 8897: 29,1 + 8898: 30,1 + 8948: 44,1 + 8949: 45,1 + 8950: 46,1 + 8951: 47,1 + 9286: 42,1 + 9336: 38,5 + 9337: 39,5 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -2933,6 +2971,18 @@ entities: 5799: 95,-20 5800: 102,-21 5801: 102,-20 + - node: + color: '#DE3A3A4C' + id: BrickTileWhiteLineW + decals: + 9320: 41,10 + - node: + color: '#DE3A3A4D' + id: BrickTileWhiteLineW + decals: + 9197: 41,11 + 9198: 41,12 + 9199: 41,13 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW @@ -2961,7 +3011,6 @@ entities: 1770: 23,23 1771: 23,24 1772: 23,27 - 1855: 41,10 1971: 15,10 1976: 14,13 2038: 27,29 @@ -2972,6 +3021,9 @@ entities: 3507: 41,-23 3508: 41,-22 8847: 15,11 + 8899: 27,2 + 8971: 33,2 + 9274: 41,2 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -3187,16 +3239,6 @@ entities: 731: -31.94804,37.111244 732: -34.88554,32.986244 733: -31.963665,33.06437 - - node: - color: '#FFFFFFFF' - id: Bushl1 - decals: - 1935: 43.09465,4.022061 - - node: - color: '#FFFFFFFF' - id: Bushl2 - decals: - 1934: 40.922775,4.006436 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -3707,15 +3749,6 @@ entities: color: '#DE3A3A96' id: CheckerNESW decals: - 1599: 41,5 - 1600: 41,6 - 1601: 41,7 - 1602: 42,7 - 1603: 42,5 - 1604: 42,6 - 1605: 43,5 - 1606: 43,6 - 1607: 43,7 1608: 50,3 1609: 51,3 1610: 51,4 @@ -3724,7 +3757,6 @@ entities: 1613: 49,5 1614: 50,5 1615: 51,5 - 1616: 51,7 1617: 51,6 1618: 50,6 1619: 49,6 @@ -3738,6 +3770,21 @@ entities: 2032: 19,2 2033: 19,3 2710: 20,-12 + 9004: 45,9 + 9005: 46,9 + 9006: 47,9 + 9007: 47,10 + 9008: 46,10 + 9009: 45,10 + 9182: 43,6 + 9183: 42,6 + 9184: 41,6 + 9295: 41,7 + 9296: 42,7 + 9297: 43,7 + 9313: 41,5 + 9314: 42,5 + 9315: 43,5 - node: color: '#EFB34196' id: CheckerNESW @@ -4386,10 +4433,6 @@ entities: 1174: 5,25 1175: 5,26 1176: 5,30 - 1533: 28,4 - 1534: 31,4 - 1535: 34,4 - 1536: 37,4 1569: 27,11 1652: 38,8 1707: 29,26 @@ -4410,7 +4453,6 @@ entities: 1724: 6,-23 1725: 6,-22 1936: 35,19 - 1937: 41,1 2086: 6,5 2087: 6,-3 2261: 4,-14 @@ -4512,6 +4554,11 @@ entities: 8728: 19,-31 8729: 18,-31 8734: 126,-4 + 8963: 29,3 + 8972: 33,1 + 9268: 43,1 + 9318: 43,9 + 9323: 41,7 - node: cleanable: True color: '#FFFFFFFF' @@ -5273,7 +5320,6 @@ entities: 5684: 54,0 5685: 52,-2 5686: 55,-3 - 5687: 47,-1 5710: 53,5 5711: 53,6 5712: 51,5 @@ -5821,7 +5867,6 @@ entities: 267: -7.065258,15.077425 737: -31.02929,33.00187 887: -33.3346,55.60235 - 1930: 40.967525,3.9550443 2586: 6.0005627,-8.114843 2587: 2.0630627,-8.146093 2590: 9.969313,-8.192968 @@ -5848,7 +5893,6 @@ entities: 883: -36.412724,53.60235 884: -36.1471,53.0711 1926: 50.00304,1.8612943 - 1929: 43.092525,3.9081693 2589: 9.109938,-8.114843 6483: 86.276436,42.050976 6484: 92.745186,41.97285 @@ -5877,6 +5921,7 @@ entities: 4472: 30.428492,-45.878616 6533: 67.08375,51.99347 7582: 88.507126,-54.662968 + 9063: 51.069767,7.0036664 - node: color: '#FFFFFFFF' id: Flowerspv3 @@ -6185,6 +6230,7 @@ entities: 4034: 2,43 7510: 64,-53 7511: 65,-53 + 8992: 38,0 - node: color: '#79150028' id: FullTileOverlayGreyscale @@ -6481,9 +6527,6 @@ entities: 1903: 33,6 1904: 34,6 1905: 35,6 - 1906: 36,6 - 1907: 37,6 - 1908: 38,6 1909: 24,13 1910: 24,12 1911: 24,11 @@ -6498,18 +6541,6 @@ entities: 5107: 53,6 5108: 53,7 5109: 52,5 - - node: - color: '#DE3A3A44' - id: FullTileOverlayGreyscale - decals: - 1620: 45,16 - 1621: 42,16 - 1622: 42,12 - 1623: 45,12 - 1624: 47,12 - 1625: 47,16 - 1626: 50,16 - 1627: 50,12 - node: color: '#DE3A3A4A' id: FullTileOverlayGreyscale @@ -6524,6 +6555,45 @@ entities: 1401: 23,31 1402: 25,31 1403: 25,28 + - node: + color: '#DE3A3A4C' + id: FullTileOverlayGreyscale + decals: + 9034: 44,17 + 9035: 45,17 + 9036: 46,17 + 9037: 47,17 + 9038: 48,17 + 9039: 49,17 + 9040: 50,17 + 9041: 51,17 + 9042: 44,25 + 9043: 44,24 + 9044: 44,23 + 9045: 44,22 + 9046: 44,21 + 9047: 44,20 + 9048: 44,19 + 9049: 44,18 + 9050: 51,25 + 9051: 50,25 + 9052: 49,25 + 9053: 48,25 + 9054: 47,25 + 9055: 46,25 + 9056: 45,25 + 9100: 44,13 + 9101: 44,12 + 9108: 44,14 + 9109: 44,15 + 9110: 44,16 + 9166: 37,7 + 9167: 37,5 + - node: + color: '#DE3A3A4D' + id: FullTileOverlayGreyscale + decals: + 9298: 50,11 - node: color: '#DE3A3A60' id: FullTileOverlayGreyscale @@ -6542,43 +6612,6 @@ entities: 1418: 33,14 1419: 40,5 1420: 40,7 - 1421: 44,25 - 1422: 44,24 - 1423: 44,23 - 1424: 44,22 - 1425: 44,20 - 1426: 44,21 - 1427: 44,19 - 1428: 44,18 - 1429: 44,17 - 1430: 41,17 - 1431: 41,18 - 1432: 42,18 - 1433: 42,17 - 1434: 43,17 - 1435: 43,18 - 1436: 45,17 - 1437: 46,17 - 1438: 47,17 - 1439: 48,17 - 1440: 49,17 - 1441: 50,17 - 1442: 51,17 - 1443: 51,25 - 1444: 50,25 - 1445: 49,25 - 1446: 48,25 - 1447: 47,25 - 1448: 46,25 - 1449: 45,25 - 1450: 45,26 - 1451: 46,26 - 1452: 46,27 - 1453: 45,27 - 1454: 45,28 - 1455: 46,28 - 1456: 46,29 - 1457: 45,29 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale @@ -6595,6 +6628,10 @@ entities: 8838: 38,14 8839: 37,14 8846: 36,14 + 8993: 34,4 + 8994: 30,4 + 8995: 44,9 + 8996: 48,9 - node: color: '#EFB34137' id: FullTileOverlayGreyscale @@ -6966,7 +7003,6 @@ entities: 725: -31.026165,36.97062 873: -35.67835,53.3836 1388: -28.004156,41.95788 - 1922: 40.947773,4.0019193 1996: 17.924759,11.996106 2583: 2.9693127,-8.067968 3061: -27.986986,-22.973965 @@ -7068,7 +7104,6 @@ entities: 770: -9.677242,47.00885 874: -36.2096,54.367973 880: -33.537724,54.024223 - 1923: 43.010273,4.0175443 2581: 9.156813,-8.021093 3060: -28.924486,-23.05209 3070: -28.893236,-8.979521 @@ -7107,6 +7142,7 @@ entities: 7542: 94.03973,-52.25213 7543: 94.18035,-53.580254 7544: 93.2116,-54.392754 + 9062: 51.017685,7.034938 - node: color: '#0000007C' id: HalfTileOverlayGreyscale @@ -7280,10 +7316,6 @@ entities: 506: -9,-9 507: -10,-9 508: -11,-9 - 1950: 45,3 - 1951: 44,3 - 1952: 43,3 - 1953: 42,3 1985: 18,11 1986: 17,11 2712: 17,-13 @@ -7505,9 +7537,6 @@ entities: 509: -9,-11 510: -10,-11 511: -11,-11 - 1947: 45,1 - 1948: 44,1 - 1949: 43,1 1987: 17,13 1988: 18,13 - node: @@ -7644,14 +7673,6 @@ entities: 5794: 95,-20 5795: 102,-21 5796: 102,-20 - - node: - color: '#DE3A3A44' - id: HalfTileOverlayGreyscale270 - decals: - 1648: 50,14 - 1649: 47,14 - 1650: 44,14 - 1651: 41,14 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -7763,19 +7784,10 @@ entities: decals: 6411: 79,44 6412: 79,45 - - node: - color: '#DE3A3A44' - id: HalfTileOverlayGreyscale90 - decals: - 1644: 51,14 - 1645: 48,14 - 1646: 45,14 - 1647: 42,14 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 1954: 46,2 1989: 16,12 - node: color: '#EFB34196' @@ -7823,12 +7835,15 @@ entities: 2454: 10,-33 2715: 18,-10 3514: 52,-30 + 9276: 41,1 + 9319: 41,9 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: 2464: 13,-28 + 9324: 43,7 - node: color: '#52B4E93B' id: MiniTileCheckerBOverlay @@ -8230,13 +8245,6 @@ entities: 5557: 50,-1 5558: 49,-1 5559: 48,-1 - 5560: 47,-1 - 5561: 46,-1 - 5562: 45,-1 - 5563: 44,-1 - 5564: 43,-1 - 5565: 42,-1 - 5566: 41,-1 7231: 26,34 7232: 28,34 7233: 27,34 @@ -8647,7 +8655,6 @@ entities: 5511: 36,-3 5512: 37,-3 5513: 38,-3 - 5514: 39,-3 5571: 61,-12 5572: 60,-12 5573: 59,-12 @@ -8700,6 +8707,8 @@ entities: 7361: 69,38 7366: 78,38 7367: 79,38 + 9270: 39,-3 + 9271: 40,-3 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 @@ -8822,6 +8831,8 @@ entities: 3111: -24,-8 3112: -24,-7 3892: 12,38 + 8988: 38,2 + 8990: 35,3 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 @@ -8950,7 +8961,6 @@ entities: 5061: 10,32 5062: 11,32 5531: 41,-3 - 5532: 41,-4 5533: 41,-5 5534: 41,-6 5535: 41,-7 @@ -9044,7 +9054,6 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 1956: 42,2 1991: 19,13 2113: -15,-7 2114: -14,-7 @@ -9179,6 +9188,8 @@ entities: 3091: -27,-25 3092: -26,-25 3893: 11,37 + 8987: 37,1 + 8991: 34,2 - node: color: '#79150096' id: QuarterTileOverlayGreyscale90 @@ -9429,7 +9440,6 @@ entities: 5544: 56,-7 5545: 56,-6 5546: 56,-5 - 5547: 56,-4 5548: 56,-3 5549: 56,-2 5550: 56,-1 @@ -9527,6 +9537,13 @@ entities: 5495: 37,-1 5496: 38,-1 5497: 39,-1 + 9269: 40,-1 + 9278: 41,-1 + 9279: 42,-1 + 9280: 43,-1 + 9281: 44,-1 + 9282: 45,-1 + 9283: 46,-1 - node: color: '#EFB3412D' id: QuarterTileOverlayGreyscale90 @@ -9764,6 +9781,7 @@ entities: decals: 2690: 15,-11 7512: 65,-54 + 8989: 35,2 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale @@ -9791,20 +9809,11 @@ entities: decals: 324: -9,31 1750: 0,-14 - - node: - color: '#DE3A3A44' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1628: 50,15 - 1629: 47,15 - 1630: 44,15 - 1631: 41,15 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: 504: -12,-9 - 1955: 41,3 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale @@ -9837,6 +9846,7 @@ entities: 2691: 21,-14 3891: 11,38 7513: 64,-52 + 8986: 37,2 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale180 @@ -9873,20 +9883,11 @@ entities: decals: 5914: 99,35 5915: 93,35 - - node: - color: '#DE3A3A44' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1632: 51,13 - 1633: 48,13 - 1634: 45,13 - 1635: 42,13 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: 503: -8,-11 - 1946: 46,1 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 @@ -9954,21 +9955,11 @@ entities: decals: 5912: 95,35 5913: 90,35 - - node: - color: '#DE3A3A44' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1636: 41,13 - 1637: 44,13 - 1638: 47,13 - 1639: 50,13 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: 505: -12,-11 - 1943: 42,1 - 1944: 41,2 - node: color: '#EFD5411F' id: ThreeQuarterTileOverlayGreyscale270 @@ -10017,20 +10008,11 @@ entities: decals: 5910: 93,36 5911: 99,36 - - node: - color: '#DE3A3A44' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1640: 51,15 - 1641: 48,15 - 1642: 45,15 - 1643: 42,15 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: 502: -8,-9 - 1945: 46,3 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -10095,7 +10077,7 @@ entities: color: '#DE3A3A96' id: WarnCornerGreyscaleNE decals: - 1502: 39,7 + 9169: 36,7 - node: color: '#A4610696' id: WarnCornerGreyscaleNW @@ -10112,6 +10094,7 @@ entities: id: WarnCornerGreyscaleNW decals: 1704: 27,26 + 9312: 41,3 - node: color: '#D381C996' id: WarnCornerGreyscaleSE @@ -10121,9 +10104,10 @@ entities: color: '#DE3A3A96' id: WarnCornerGreyscaleSE decals: - 1503: 39,5 3501: 43,-24 3534: 56,-27 + 9168: 36,5 + 9307: 43,9 - node: color: '#52B4E996' id: WarnCornerGreyscaleSW @@ -10146,6 +10130,8 @@ entities: decals: 1501: 19,5 2039: 27,28 + 9273: 41,1 + 9308: 41,9 - node: color: '#EFC541FF' id: WarnCornerNE @@ -10269,6 +10255,7 @@ entities: 8644: 97,-38 8749: 90,-1 8763: 95,-1 + 9136: 43,23 - node: color: '#EFC541FF' id: WarnCornerSmallNW @@ -10327,6 +10314,7 @@ entities: 8642: 97,-36 8748: 90,3 8762: 95,1 + 9135: 43,21 - node: cleanable: True color: '#FFFFFFFF' @@ -10497,9 +10485,6 @@ entities: 3211: -21,-7 3212: -21,-6 3213: -21,-5 - 3454: 40,-3 - 3455: 40,-2 - 3456: 40,-1 3457: 35,-18 3458: 35,-17 3459: 35,-16 @@ -10649,6 +10634,9 @@ entities: 8745: 90,1 8746: 90,0 8761: 95,0 + 9241: 41,0 + 9304: 43,8 + 9305: 41,8 - node: cleanable: True color: '#FFFFFFFF' @@ -10703,6 +10691,8 @@ entities: 5725: 21,18 6211: 56,28 6212: 56,32 + 9192: 43,12 + 9193: 43,13 - node: color: '#EFE841D6' id: WarnLineGreyscaleE @@ -10721,6 +10711,9 @@ entities: 4011: 4,41 5781: 101,-17 7691: 104,-17 + 9132: 43,21 + 9133: 43,22 + 9134: 43,23 - node: color: '#52B4E996' id: WarnLineGreyscaleN @@ -10736,6 +10729,7 @@ entities: 4262: 14,63 4263: 7,63 8665: 10,51 + 8976: 34,3 - node: color: '#9FED5896' id: WarnLineGreyscaleN @@ -10779,7 +10773,6 @@ entities: decals: 498: -15,-9 590: -37,45 - 1494: 38,7 1495: 35,7 1496: 30,7 1497: 28,7 @@ -10788,16 +10781,18 @@ entities: 1567: 29,14 1568: 28,14 1706: 30,26 - 1846: 50,11 - 1847: 47,11 - 1848: 45,11 - 1849: 42,11 1915: 24,7 2579: 12,-10 3502: 42,-21 3511: 43,-26 8421: 97,29 8422: 98,29 + 8888: 30,3 + 9058: 50,10 + 9310: 42,3 + 9311: 43,3 + 9334: 38,5 + 9335: 39,5 - node: color: '#EFB34196' id: WarnLineGreyscaleN @@ -10842,6 +10837,7 @@ entities: 8413: 95,32 8414: 96,32 8675: 10,53 + 8977: 38,1 - node: color: '#A4610696' id: WarnLineGreyscaleS @@ -10869,21 +10865,18 @@ entities: 589: -37,42 1488: 23,5 1489: 25,5 - 1490: 28,5 - 1491: 31,5 - 1492: 34,5 - 1493: 37,5 1566: 30,9 1702: 29,16 1703: 28,16 - 1842: 43,9 - 1843: 42,9 - 1844: 46,9 - 1845: 50,9 2578: 12,-13 3358: 42,-18 3533: 55,-27 4985: 72,-11 + 8886: 34,5 + 8887: 30,5 + 9236: 43,1 + 9332: 38,7 + 9333: 39,7 - node: color: '#EFB34196' id: WarnLineGreyscaleS @@ -10973,6 +10966,7 @@ entities: 4986: 71,-10 6213: 58,32 6214: 58,28 + 9057: 49,9 - node: color: '#EFB34196' id: WarnLineGreyscaleW @@ -11015,16 +11009,6 @@ entities: color: '#FFFFFFFF' id: WarnLineN decals: - 1540: 31,1 - 1541: 30,1 - 1542: 28,1 - 1543: 27,1 - 1544: 33,1 - 1545: 34,1 - 1546: 36,1 - 1547: 37,1 - 1548: 38,1 - 1549: 39,1 1577: 25,8 1578: 24,8 1579: 23,8 @@ -11146,9 +11130,6 @@ entities: 4998: 69,-28 4999: 68,-28 5000: 67,-28 - 5069: 56,1 - 5070: 55,1 - 5071: 54,1 5100: 56,9 5101: 55,9 5102: 54,9 @@ -11216,6 +11197,23 @@ entities: 8735: 91,3 8736: 92,3 8737: 93,3 + 9068: 45,12 + 9069: 46,12 + 9070: 47,12 + 9246: 54,-4 + 9247: 55,-4 + 9248: 56,-4 + 9258: 54,1 + 9259: 55,1 + 9260: 56,1 + 9261: 41,-4 + 9262: 42,-4 + 9263: 43,-4 + 9326: 41,4 + 9327: 42,4 + 9328: 43,4 + 9340: 33,-25 + 9341: 34,-25 - node: cleanable: True color: '#FFFFFFFF' @@ -11254,9 +11252,6 @@ entities: 1819: 41,23 1820: 41,24 1877: 45,6 - 1938: 47,1 - 1939: 47,2 - 1940: 47,3 2128: -17,44 2129: -17,45 2130: -17,46 @@ -11296,9 +11291,6 @@ entities: 3448: 26,-18 3449: 26,-17 3450: 26,-16 - 3451: 40,-3 - 3452: 40,-2 - 3453: 40,-1 3605: 57,-40 3606: 57,-39 3607: 57,-38 @@ -11424,6 +11416,9 @@ entities: 8738: 94,2 8739: 94,1 8751: 94,0 + 9240: 41,0 + 9302: 41,8 + 9303: 43,8 - node: cleanable: True color: '#FFFFFFFF' @@ -11565,9 +11560,6 @@ entities: 5002: 69,-28 5003: 68,-28 5004: 67,-28 - 5072: 56,1 - 5073: 55,1 - 5074: 54,1 5103: 56,9 5104: 55,9 5105: 54,9 @@ -11639,6 +11631,23 @@ entities: 8741: 91,-1 8742: 92,-1 8743: 93,-1 + 9071: 45,10 + 9072: 46,10 + 9073: 47,10 + 9249: 54,-4 + 9250: 55,-4 + 9251: 56,-4 + 9255: 56,1 + 9256: 55,1 + 9257: 54,1 + 9264: 41,-4 + 9265: 42,-4 + 9266: 43,-4 + 9329: 41,4 + 9330: 42,4 + 9331: 43,4 + 9342: 33,-25 + 9343: 34,-25 - node: cleanable: True color: '#FFFFFFFF' @@ -11654,6 +11663,7 @@ entities: decals: 415: 0,1 5701: 49,-6 + 9018: 43,18 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -11670,6 +11680,7 @@ entities: 570: -27,47 969: -23,62 5702: 49,-7 + 9014: 43,14 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -11782,6 +11793,9 @@ entities: 6698: 58,45 6699: 58,47 6700: 58,46 + 9015: 43,15 + 9016: 43,16 + 9017: 43,17 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -11837,6 +11851,11 @@ entities: 6710: 59,44 8607: -13,8 8608: -12,8 + 9019: 42,18 + 9020: 41,18 + 9077: 49,12 + 9078: 50,12 + 9079: 51,12 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -11921,6 +11940,11 @@ entities: 8602: -14,10 8603: -13,10 8604: -12,10 + 9010: 41,14 + 9011: 42,14 + 9074: 49,15 + 9075: 50,15 + 9076: 51,15 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -12234,8 +12258,7 @@ entities: 1,1: 0: 1919 1,2: - 0: 16187 - 1: 128 + 0: 16315 1,3: 0: 61559 1,-1: @@ -12263,7 +12286,7 @@ entities: 3,-1: 0: 63072 3,4: - 0: 46067 + 0: 46003 3,2: 0: 52416 4,0: @@ -12271,11 +12294,9 @@ entities: 4,1: 0: 49081 4,2: - 0: 65488 - 1: 32 + 0: 65520 4,3: - 0: 61439 - 1: 4096 + 0: 65535 -5,0: 0: 61006 -4,1: @@ -12361,7 +12382,7 @@ entities: -3,5: 0: 35839 -3,6: - 0: 61439 + 0: 53247 -3,7: 0: 61166 -3,8: @@ -12372,19 +12393,19 @@ entities: 0: 65535 -2,6: 0: 47 - 2: 60928 + 1: 60928 -2,7: 0: 61441 - 2: 238 + 1: 238 -2,8: 0: 65295 -1,5: 0: 53247 -1,6: 0: 52429 - 2: 4352 + 1: 4352 -1,7: - 2: 17 + 1: 17 0: 56524 -1,8: 0: 65487 @@ -12502,9 +12523,9 @@ entities: 0: 61152 -8,-3: 0: 41504 - 3: 128 + 2: 128 -9,-3: - 3: 240 + 2: 240 0: 61440 -8,-2: 0: 65522 @@ -12513,14 +12534,14 @@ entities: -9,-1: 0: 46065 -7,-3: - 3: 116 + 2: 116 0: 28672 -7,-2: 0: 65520 -7,-4: - 3: 17476 + 2: 17476 -7,-5: - 3: 17476 + 2: 17476 -6,-4: 0: 32759 -6,-3: @@ -12748,9 +12769,9 @@ entities: 6,0: 0: 48050 7,-4: - 0: 45999 + 0: 30511 7,-3: - 0: 30579 + 0: 30583 7,-2: 0: 30583 7,-1: @@ -12767,9 +12788,9 @@ entities: 0: 65527 -5,-8: 0: 34944 - 4: 768 + 3: 768 -4,-8: - 4: 1536 + 3: 1536 -4,-7: 0: 32624 -5,-7: @@ -12799,9 +12820,9 @@ entities: 0,-6: 0: 65295 0,-8: - 4: 3276 + 3: 3276 0,-9: - 4: 49152 + 3: 49152 0: 206 1,-7: 0: 61422 @@ -12860,13 +12881,13 @@ entities: 8,-8: 0: 56829 8,-7: - 0: 61424 + 0: 28656 8,-6: 0: 65535 8,-5: 0: 65295 -8,-8: - 4: 768 + 3: 768 0: 34944 -8,-7: 0: 65528 @@ -12874,19 +12895,19 @@ entities: 0: 65524 -8,-6: 0: 8866 - 3: 32768 + 2: 32768 -9,-6: 0: 255 - 3: 61440 + 2: 61440 -7,-7: 0: 65534 -7,-6: 0: 112 - 3: 28672 + 2: 28672 -7,-8: - 4: 1604 + 3: 1604 -7,-9: - 4: 17476 + 3: 17476 0: 34952 -6,-8: 0: 10098 @@ -12895,7 +12916,7 @@ entities: -6,-6: 0: 30583 -6,-9: - 4: 8738 + 3: 8738 0: 34952 -11,8: 0: 3084 @@ -12920,210 +12941,210 @@ entities: -9,4: 0: 30576 -12,-4: - 4: 4369 - 3: 17476 + 3: 4369 + 2: 17476 -12,-5: - 4: 4369 - 3: 17476 + 3: 4369 + 2: 17476 -12,-3: - 4: 4369 - 3: 52420 + 3: 4369 + 2: 52420 -13,-3: - 4: 240 + 3: 240 -12,-2: - 4: 273 - 3: 3272 + 3: 273 + 2: 3272 -12,-1: 0: 20206 -13,-1: - 4: 61440 + 3: 61440 -12,0: 0: 3838 -11,-3: - 3: 65520 + 2: 65520 -11,-2: - 3: 4087 + 2: 4087 0: 16384 -11,-1: 0: 25702 -11,0: 0: 3830 -10,-3: - 3: 4368 + 2: 4368 0: 17472 -10,-1: 0: 32624 -10,-2: 0: 61156 -12,-6: - 4: 4368 - 3: 52416 + 3: 4368 + 2: 52416 -13,-6: - 4: 192 + 3: 192 -11,-6: - 3: 65520 + 2: 65520 -11,-8: - 4: 4368 + 3: 4368 0: 34952 -11,-9: 0: 63692 - 4: 17 + 3: 17 -11,-7: - 4: 4369 + 3: 4369 0: 52424 -10,-8: 0: 13107 - 4: 34952 + 3: 34952 -10,-7: 0: 65523 -10,-6: - 3: 4368 + 2: 4368 0: 17476 -10,-9: 0: 13107 - 4: 34952 + 3: 34952 -9,-8: - 4: 256 + 3: 256 0: 17472 -13,0: 0: 192 - 4: 62002 + 3: 62002 -12,2: - 4: 3840 + 3: 3840 -13,2: - 4: 3840 + 3: 3840 -12,1: 0: 2246 -11,1: 0: 25344 -11,2: - 4: 256 + 3: 256 0: 52462 -10,0: 0: 65520 -10,2: 0: 1537 -16,0: - 4: 36349 + 3: 36349 0: 20480 -16,-1: 0: 21845 - 4: 34952 + 3: 34952 -17,0: - 4: 36349 + 3: 36349 0: 20480 -16,1: 0: 21845 - 4: 34952 + 3: 34952 -17,1: - 4: 34952 + 3: 34952 0: 21845 -16,2: 0: 21845 - 4: 34952 + 3: 34952 -17,2: - 4: 34952 + 3: 34952 0: 21845 -16,3: - 4: 248 + 3: 248 -17,3: - 4: 248 + 3: 248 -15,0: - 4: 36349 + 3: 36349 0: 20480 -15,1: 0: 21845 - 4: 34952 + 3: 34952 -15,2: 0: 21845 - 4: 34952 + 3: 34952 -15,3: - 4: 248 + 3: 248 -15,-1: 0: 21845 - 4: 34952 + 3: 34952 -14,0: - 4: 50677 + 3: 50677 0: 4096 -14,1: 0: 4369 - 4: 17476 + 3: 17476 -14,2: 0: 4369 - 4: 19524 + 3: 19524 -14,3: - 4: 116 + 3: 116 -14,-1: 0: 4369 - 4: 50244 + 3: 50244 -16,-3: - 4: 35056 + 3: 35056 0: 20480 -17,-3: - 4: 35056 + 3: 35056 0: 20480 -16,-2: 0: 21845 - 4: 34952 + 3: 34952 -17,-2: - 4: 34952 + 3: 34952 0: 21845 -17,-1: - 4: 34952 + 3: 34952 0: 21845 -15,-3: - 4: 35056 + 3: 35056 0: 20480 -15,-2: 0: 21845 - 4: 34952 + 3: 34952 -14,-3: - 4: 17648 + 3: 17648 0: 4096 -14,-2: 0: 4369 - 4: 17476 + 3: 17476 -19,0: - 4: 63929 + 3: 63929 0: 64 -19,-1: - 4: 63624 + 3: 63624 -18,0: - 4: 36092 + 3: 36092 0: 16384 -19,1: - 4: 34952 + 3: 34952 -19,2: - 4: 34952 + 3: 34952 -19,3: - 4: 136 + 3: 136 -18,3: - 4: 248 + 3: 248 -18,-1: 0: 17476 - 4: 34952 + 3: 34952 -18,1: 0: 17476 - 4: 34952 + 3: 34952 -18,2: 0: 17476 - 4: 34952 + 3: 34952 -19,-3: - 4: 34944 + 3: 34944 -18,-3: - 4: 35056 + 3: 35056 0: 16384 -19,-2: - 4: 34952 + 3: 34952 -18,-2: 0: 17476 - 4: 34952 + 3: 34952 -11,9: - 4: 3148 + 3: 3148 -11,10: 0: 35852 -10,9: - 4: 273 + 3: 273 0: 52428 -10,10: 0: 57231 @@ -13132,21 +13153,21 @@ entities: -10,12: 0: 3276 -12,14: - 4: 17648 + 3: 17648 -13,14: - 4: 240 + 3: 240 -12,15: - 4: 17476 + 3: 17476 -12,16: - 4: 17476 + 3: 17476 -11,14: - 4: 240 + 3: 240 -11,15: 0: 43136 -11,16: 0: 57898 -10,14: - 4: 16 + 3: 16 0: 52428 -10,15: 0: 65520 @@ -13181,7 +13202,7 @@ entities: -2,18: 0: 56793 -2,19: - 4: 16 + 3: 16 0: 8 -1,17: 0: 53757 @@ -13205,11 +13226,11 @@ entities: 0: 15289 -8,19: 0: 960 - 4: 8192 + 3: 8192 -9,19: 0: 2279 -8,20: - 4: 8738 + 3: 8738 -7,18: 0: 3838 -7,19: @@ -13257,13 +13278,13 @@ entities: -10,20: 0: 18019 -8,21: - 4: 12834 + 3: 12834 -9,21: - 4: 32768 + 3: 32768 -8,22: - 4: 8738 + 3: 8738 -8,23: - 4: 34 + 3: 34 -12,21: 0: 204 -11,21: @@ -13271,13 +13292,13 @@ entities: -10,21: 0: 47104 -10,22: - 4: 4 + 3: 4 -16,14: - 4: 224 + 3: 224 -15,14: - 4: 240 + 3: 240 -14,14: - 4: 240 + 3: 240 1,13: 0: 65485 1,14: @@ -13355,8 +13376,7 @@ entities: 5,7: 0: 35771 5,3: - 0: 35835 - 1: 12288 + 0: 48123 5,8: 0: 4095 6,4: @@ -13400,9 +13420,9 @@ entities: 6,2: 0: 48051 7,0: - 0: 56784 + 0: 65520 7,1: - 0: 65529 + 0: 65524 7,2: 0: 65525 8,1: @@ -13420,7 +13440,7 @@ entities: 9,8: 0: 4095 10,4: - 0: 61156 + 0: 61166 10,5: 0: 61166 10,6: @@ -13430,9 +13450,9 @@ entities: 10,8: 0: 4095 10,3: - 0: 26212 + 0: 61166 11,4: - 0: 65530 + 0: 65535 11,5: 0: 65535 11,6: @@ -13440,11 +13460,11 @@ entities: 11,7: 0: 103 11,3: - 0: 48058 + 0: 65535 11,8: 0: 4095 12,4: - 0: 65524 + 0: 65520 12,5: 0: 65535 12,6: @@ -13452,19 +13472,19 @@ entities: 12,7: 0: 221 8,0: - 0: 26208 + 0: 61152 8,2: 0: 61160 8,3: 0: 3822 9,0: - 0: 65520 + 0: 65524 9,1: - 0: 65522 + 0: 65008 9,2: 0: 7636 9,3: - 0: 3581 + 0: 4095 9,-1: 0: 65520 10,1: @@ -13472,23 +13492,23 @@ entities: 10,-1: 0: 65534 10,0: - 0: 61152 + 0: 61162 10,2: - 0: 61164 + 0: 61162 11,0: 0: 65520 + 11,1: + 0: 61408 11,2: - 0: 65520 + 0: 3824 11,-1: 0: 65528 - 11,1: - 0: 61152 12,0: 0: 52508 12,2: - 0: 65524 + 0: 20222 12,3: - 0: 56788 + 0: 61422 9,-4: 0: 29311 9,-3: @@ -13577,7 +13597,7 @@ entities: 0: 3003 8,13: 0: 65280 - 4: 4 + 3: 4 8,14: 0: 47931 8,15: @@ -13588,11 +13608,11 @@ entities: 0: 65504 5,19: 0: 11 - 4: 17472 + 3: 17472 5,16: 0: 61152 5,20: - 4: 17476 + 3: 17476 6,17: 0: 273 6,18: @@ -13612,7 +13632,7 @@ entities: 10,11: 0: 65294 10,9: - 4: 546 + 3: 546 10,10: 0: 61166 10,12: @@ -13622,7 +13642,7 @@ entities: 11,11: 0: 65291 11,9: - 4: 546 + 3: 546 0: 34952 12,8: 0: 4095 @@ -13833,7 +13853,7 @@ entities: 15,-6: 0: 56607 15,-9: - 4: 29952 + 3: 29952 0: 519 16,-8: 0: 43691 @@ -13845,9 +13865,9 @@ entities: 0: 46079 4,-10: 0: 4096 - 4: 32768 + 3: 32768 5,-10: - 4: 4096 + 3: 4096 0: 43144 5,-12: 0: 35498 @@ -13888,7 +13908,7 @@ entities: 2,-10: 0: 30576 3,-10: - 4: 28672 + 3: 28672 8,-13: 0: 56797 9,-12: @@ -14003,13 +14023,13 @@ entities: 0: 3313 -11,-12: 0: 35007 - 4: 4096 + 3: 4096 -11,-11: - 4: 17 + 3: 17 0: 43144 -11,-10: 0: 52367 - 4: 4352 + 3: 4352 -11,-13: 0: 36863 -10,-12: @@ -14018,7 +14038,7 @@ entities: 0: 64443 -10,-10: 0: 13115 - 4: 34816 + 3: 34816 -10,-13: 0: 13107 -9,-12: @@ -14027,19 +14047,19 @@ entities: 0: 30591 -9,-10: 0: 7 - 4: 3840 + 3: 3840 -8,-12: 0: 28775 -8,-11: 0: 30503 -8,-10: 0: 7 - 4: 3840 + 3: 3840 -8,-13: 0: 16384 -7,-10: 0: 32769 - 4: 20224 + 3: 20224 -7,-11: 0: 9836 -7,-13: @@ -14048,19 +14068,19 @@ entities: 0: 32768 -6,-12: 0: 4108 - 4: 16384 + 3: 16384 -6,-10: - 4: 12100 + 3: 12100 0: 32768 -6,-13: 0: 4096 - 4: 16384 + 3: 16384 -6,-11: - 4: 17476 + 3: 17476 -5,-12: 0: 1 -8,-16: - 4: 102 + 3: 102 0: 24576 -9,-16: 0: 65419 @@ -14069,7 +14089,7 @@ entities: -9,-15: 0: 15 -8,-17: - 4: 25668 + 3: 25668 -7,-16: 0: 1 -7,-15: @@ -14080,17 +14100,17 @@ entities: 0: 18028 -6,-15: 0: 6 - 4: 64 + 3: 64 -6,-17: 0: 51328 -12,-17: 0: 4352 - 4: 17648 + 3: 17648 -13,-16: 0: 4478 -12,-16: 0: 60992 - 4: 4 + 3: 4 -12,-15: 0: 3812 -13,-15: @@ -14105,42 +14125,42 @@ entities: 0: 63711 -11,-17: 0: 4352 - 4: 34968 + 3: 34968 -11,-16: - 4: 136 + 3: 136 0: 32768 -10,-16: - 4: 17 + 3: 17 0: 64580 -10,-15: 0: 13119 -10,-14: 0: 13107 -10,-17: - 4: 4096 + 3: 4096 0: 16384 -9,-17: 0: 32768 -13,-17: 0: 51200 -11,-18: - 4: 34824 + 3: 34824 -11,-20: - 4: 34952 + 3: 34952 -11,-21: - 4: 34816 + 3: 34816 -11,-19: - 4: 34952 + 3: 34952 -8,-20: - 4: 17476 + 3: 17476 -8,-21: - 4: 17408 + 3: 17408 -8,-19: - 4: 17476 + 3: 17476 -8,-18: - 4: 17412 + 3: 17412 -7,-18: - 4: 112 + 3: 112 0: 34816 -6,-18: 0: 2 @@ -14151,17 +14171,17 @@ entities: -5,-19: 0: 8960 -15,-15: - 4: 128 + 3: 128 -14,-15: - 4: 48 + 3: 48 0: 52428 -15,-14: - 4: 128 + 3: 128 -14,-14: - 4: 4400 + 3: 4400 0: 52428 -14,-13: - 4: 4369 + 3: 4369 0: 17608 -14,-12: 0: 140 @@ -14208,12 +14228,12 @@ entities: 17,-13: 0: 65535 17,-11: - 5: 52416 + 4: 52416 18,-12: 0: 255 18,-11: - 5: 4368 - 6: 52416 + 4: 4368 + 5: 52416 18,-10: 0: 65520 18,-13: @@ -14221,7 +14241,7 @@ entities: 19,-12: 0: 255 19,-11: - 6: 4368 + 5: 4368 0: 52416 19,-10: 0: 65520 @@ -14329,7 +14349,7 @@ entities: 0: 15135 7,-16: 0: 4096 - 4: 50176 + 3: 50176 7,-15: 0: 30576 7,-14: @@ -14384,84 +14404,84 @@ entities: 0: 65481 32,4: 0: 21845 - 4: 8738 + 3: 8738 32,3: - 4: 62196 + 3: 62196 32,5: 0: 1365 - 4: 61986 + 3: 61986 32,6: - 4: 65535 + 3: 65535 31,5: - 4: 61986 + 3: 61986 0: 1365 31,6: - 4: 65535 + 3: 65535 32,7: 0: 21845 - 4: 8738 + 3: 8738 32,8: 0: 21845 - 4: 41506 + 3: 41506 33,5: - 4: 61994 + 3: 61994 0: 1365 33,6: - 4: 63479 + 3: 63479 33,4: 0: 21845 - 4: 8746 + 3: 8746 33,3: - 4: 29424 + 3: 29424 33,7: 0: 21845 - 4: 10786 + 3: 10786 33,8: 0: 21845 - 4: 10786 + 3: 10786 34,4: - 4: 4369 + 3: 4369 34,5: - 4: 61713 + 3: 61713 34,6: - 4: 63961 + 3: 63961 0: 32 34,7: - 4: 4369 + 3: 4369 34,3: - 4: 4368 + 3: 4368 34,8: - 4: 4369 + 3: 4369 22,-20: - 4: 8750 + 3: 8750 22,-19: - 4: 8738 + 3: 8738 22,-18: - 4: 8738 + 3: 8738 22,-17: - 4: 8738 + 3: 8738 22,-16: - 4: 34 + 3: 34 0: 64768 23,-20: - 4: 50255 + 3: 50255 23,-19: - 4: 50244 + 3: 50244 23,-18: - 4: 50244 + 3: 50244 23,-17: - 4: 3140 + 3: 3140 24,-20: - 4: 61455 + 3: 61455 0: 3840 24,-19: - 4: 61440 + 3: 61440 0: 3855 24,-18: - 4: 61440 + 3: 61440 0: 3855 24,-17: - 4: 3840 + 3: 3840 0: 15 21,-16: 0: 65280 @@ -14509,21 +14529,21 @@ entities: 0: 65535 22,-11: 0: 13107 - 3: 2184 + 2: 2184 22,-10: 0: 13107 - 3: 2184 + 2: 2184 22,-9: 0: 13107 - 7: 2184 + 6: 2184 22,-8: 0: 16383 23,-11: - 3: 819 + 2: 819 23,-10: - 3: 819 + 2: 819 23,-9: - 7: 819 + 6: 819 23,-8: 0: 4095 24,-12: @@ -14544,7 +14564,7 @@ entities: 0: 30503 22,-7: 0: 13107 - 3: 2184 + 2: 2184 22,-6: 0: 64387 22,-5: @@ -14552,7 +14572,7 @@ entities: 22,-4: 0: 61883 23,-7: - 3: 819 + 2: 819 0: 2184 23,-6: 0: 65392 @@ -14583,9 +14603,9 @@ entities: 22,-2: 0: 65278 22,-1: - 0: 65262 + 0: 61166 22,0: - 0: 61439 + 0: 61183 23,-3: 0: 58623 23,-1: @@ -14624,71 +14644,71 @@ entities: 0: 3581 26,-17: 0: 57345 - 4: 3918 + 3: 3918 27,-16: 0: 4368 - 4: 17476 + 3: 17476 27,-15: 0: 4369 - 4: 17476 + 3: 17476 27,-13: 0: 256 - 4: 17476 + 3: 17476 27,-12: - 4: 18022 + 3: 18022 0: 16 27,-17: - 4: 20224 + 3: 20224 0: 15 27,-14: - 4: 17476 + 3: 17476 25,-20: - 4: 61455 + 3: 61455 0: 3840 25,-19: 0: 3855 - 4: 61440 + 3: 61440 25,-18: 0: 3855 - 4: 61440 + 3: 61440 25,-17: 0: 15 - 4: 3840 + 3: 3840 26,-20: - 4: 65103 + 3: 65103 0: 256 26,-19: 0: 257 - 4: 65102 + 3: 65102 26,-18: 0: 257 - 4: 65102 + 3: 65102 26,-21: - 4: 5616 + 3: 5616 0: 16384 27,-20: - 4: 61455 + 3: 61455 0: 3840 27,-19: 0: 3855 - 4: 61440 + 3: 61440 27,-18: 0: 3855 - 4: 61440 + 3: 61440 27,-21: - 4: 4368 + 3: 4368 28,-20: - 4: 61455 + 3: 61455 0: 3840 28,-19: 0: 3855 - 4: 61440 + 3: 61440 28,-18: 0: 3855 - 4: 61440 + 3: 61440 28,-17: 0: 15 - 4: 3840 + 3: 3840 25,-11: 0: 3003 25,-10: @@ -14699,33 +14719,33 @@ entities: 0: 1423 26,-11: 0: 10239 - 4: 49152 + 3: 49152 26,-10: 0: 2 - 3: 60928 - 4: 12 + 2: 60928 + 3: 12 26,-9: - 3: 14 + 2: 14 0: 58880 - 4: 2048 + 3: 2048 26,-8: 0: 119 27,-11: 0: 17 - 4: 62532 + 3: 62532 27,-10: - 4: 239 + 3: 239 0: 26112 27,-9: - 4: 18272 + 3: 18272 0: 6 27,-8: - 4: 22357 + 3: 22357 0: 32768 28,-11: - 4: 12288 + 3: 12288 28,-10: - 4: 51 + 3: 51 0: 34944 25,-6: 0: 62259 @@ -14733,10 +14753,10 @@ entities: 0: 64399 25,-4: 0: 40715 - 4: 16384 + 3: 16384 26,-6: 0: 61440 - 4: 128 + 3: 128 26,-5: 0: 64799 26,-4: @@ -14746,7 +14766,7 @@ entities: 27,-5: 0: 63247 27,-7: - 4: 1877 + 3: 1877 0: 10376 27,-4: 0: 65287 @@ -14760,7 +14780,7 @@ entities: 0: 61152 28,-4: 0: 16167 - 4: 16384 + 3: 16384 29,-8: 0: 247 29,-7: @@ -14787,16 +14807,16 @@ entities: 0: 12556 31,-6: 0: 78 - 4: 3072 + 3: 3072 31,-7: 0: 50244 31,-9: 0: 26146 32,-8: 0: 51 - 4: 34952 + 3: 34952 32,-6: - 4: 256 + 3: 256 0: 58444 28,-9: 0: 2180 @@ -14804,11 +14824,11 @@ entities: 0: 2527 30,-10: 0: 10096 - 4: 32768 + 3: 32768 30,-9: 0: 54 31,-10: - 4: 12288 + 3: 12288 0: 1224 31,-11: 0: 32768 @@ -14816,11 +14836,11 @@ entities: 0: 61168 32,-9: 0: 29832 - 4: 32768 + 3: 32768 32,-5: 0: 204 32,-7: - 4: 8 + 3: 8 0: 34816 33,-7: 0: 36310 @@ -14829,24 +14849,24 @@ entities: 33,-8: 0: 8192 28,-3: - 4: 5389 + 3: 5389 0: 43762 27,-3: 0: 241 - 4: 7938 + 3: 7938 28,-2: - 4: 20817 + 3: 20817 0: 44714 27,-2: - 4: 7953 + 3: 7953 28,-1: - 4: 1297 + 3: 1297 0: 64170 27,-1: - 4: 3857 + 3: 3857 0: 61440 28,0: - 4: 77 + 3: 77 0: 3890 29,-3: 0: 56797 @@ -14868,7 +14888,7 @@ entities: 0: 28945 31,-3: 0: 28915 - 4: 8 + 3: 8 31,-2: 0: 63351 31,-1: @@ -14885,30 +14905,30 @@ entities: 0: 24687 25,-3: 0: 48121 - 4: 1030 + 3: 1030 25,-2: 0: 49083 - 4: 16448 + 3: 16448 25,-1: 0: 64443 - 4: 1024 + 3: 1024 25,0: 0: 3993 - 4: 70 + 3: 70 26,-3: - 4: 7945 + 3: 7945 0: 240 26,-2: - 4: 7953 + 3: 7953 26,-1: - 4: 3857 + 3: 3857 0: 61440 26,0: - 4: 9 + 3: 9 0: 4080 27,0: 0: 4081 - 4: 2 + 3: 2 32,0: 0: 51340 33,-3: @@ -14925,12 +14945,12 @@ entities: 0: 49072 32,2: 0: 3 - 4: 17480 + 3: 17480 31,2: 0: 8 - 4: 4368 + 3: 4368 31,3: - 4: 62193 + 3: 62193 33,1: 0: 16 28,1: @@ -14953,24 +14973,24 @@ entities: 0: 64256 29,3: 0: 30475 - 4: 32768 + 3: 32768 29,4: 0: 26231 - 4: 34952 + 3: 34952 30,2: 0: 29440 - 4: 34816 + 3: 34816 30,3: 0: 3 - 4: 61960 + 3: 61960 30,1: 0: 28262 30,4: 0: 21845 - 4: 8738 + 3: 8738 31,4: 0: 21845 - 4: 8738 + 3: 8738 24,1: 0: 32766 23,1: @@ -15037,33 +15057,33 @@ entities: 0: 59142 29,7: 0: 30020 - 4: 34952 + 3: 34952 29,5: 0: 26214 - 4: 34952 + 3: 34952 29,8: 0: 26181 - 4: 34952 + 3: 34952 29,6: 0: 19660 - 4: 32768 + 3: 32768 30,5: 0: 1365 - 4: 61986 + 3: 61986 30,6: - 4: 65535 + 3: 65535 30,7: 0: 21845 - 4: 8738 + 3: 8738 30,8: 0: 21845 - 4: 41506 + 3: 41506 31,7: 0: 21845 - 4: 8738 + 3: 8738 31,8: 0: 21845 - 4: 41506 + 3: 41506 24,5: 0: 61695 23,5: @@ -15140,7 +15160,7 @@ entities: 0: 52701 30,9: 0: 65024 - 4: 226 + 3: 226 30,10: 0: 3854 30,11: @@ -15148,7 +15168,7 @@ entities: 30,12: 0: 64443 31,9: - 4: 242 + 3: 242 0: 61440 31,10: 0: 3855 @@ -15157,7 +15177,7 @@ entities: 31,12: 0: 64732 32,9: - 4: 242 + 3: 242 0: 12288 32,10: 0: 14799 @@ -15198,18 +15218,18 @@ entities: 32,12: 0: 17749 33,9: - 4: 35058 + 3: 35058 33,10: 0: 29488 - 4: 8 + 3: 8 33,11: 0: 32767 33,12: 0: 13111 34,9: - 4: 17 + 3: 17 34,10: - 4: 16 + 3: 16 32,13: 0: 13893 31,13: @@ -15226,7 +15246,7 @@ entities: 0: 3 33,13: 0: 12595 - 4: 32768 + 3: 32768 33,14: 0: 16247 33,15: @@ -15259,7 +15279,7 @@ entities: 0: 63628 29,17: 0: 256 - 4: 8192 + 3: 8192 28,18: 0: 8 29,18: @@ -15306,22 +15326,22 @@ entities: 0: 61668 20,14: 0: 255 - 4: 8192 + 3: 8192 19,14: 0: 255 20,15: - 4: 8946 + 3: 8946 19,15: - 4: 240 + 3: 240 20,16: - 4: 65522 + 3: 65522 21,13: 0: 61440 21,14: 0: 31 - 4: 3072 + 3: 3072 21,15: - 4: 240 + 3: 240 21,12: 0: 34952 21,11: @@ -15332,31 +15352,31 @@ entities: 0: 61472 22,14: 0: 52367 - 4: 256 + 3: 256 22,15: - 4: 16 + 3: 16 0: 52428 22,11: 0: 65282 22,16: 0: 52428 - 4: 4368 + 3: 4368 23,15: 0: 4593 23,16: 0: 7953 19,16: - 4: 65520 + 3: 65520 20,17: - 4: 15 + 3: 15 19,17: - 4: 15 + 3: 15 21,16: - 4: 65520 + 3: 65520 21,17: - 4: 15 + 3: 15 22,17: - 4: 1 + 3: 1 0: 36044 22,18: 0: 2252 @@ -15394,11 +15414,11 @@ entities: 0: 65535 16,15: 0: 11 - 4: 4352 + 3: 4352 15,15: 0: 15 16,16: - 4: 65521 + 3: 65521 17,12: 0: 65535 17,13: @@ -15417,11 +15437,11 @@ entities: 0: 13175 18,15: 0: 3 - 4: 13184 + 3: 13184 18,11: 0: 30707 18,16: - 4: 65523 + 3: 65523 17,9: 0: 65359 17,10: @@ -15460,10 +15480,10 @@ entities: 0: 56799 14,15: 0: 4381 - 4: 17408 + 3: 17408 14,16: 0: 12305 - 4: 2244 + 3: 2244 9,13: 0: 65484 9,14: @@ -15483,156 +15503,156 @@ entities: 11,16: 0: 28879 12,18: - 4: 33012 + 3: 33012 0: 28672 11,18: - 4: 240 + 3: 240 0: 61440 12,19: - 4: 32911 + 3: 32911 0: 28784 11,19: - 4: 15 + 3: 15 0: 61680 12,20: - 4: 32911 + 3: 32911 0: 28784 12,17: 0: 8 - 4: 17408 + 3: 17408 13,17: 0: 4379 - 4: 19456 + 3: 19456 13,18: - 4: 12789 + 3: 12789 0: 49152 13,19: - 4: 12607 + 3: 12607 0: 49344 13,20: - 4: 12607 + 3: 12607 0: 49344 14,17: - 4: 12032 + 3: 12032 0: 34 14,18: - 4: 754 + 3: 754 0: 61440 14,19: - 4: 15 + 3: 15 0: 61680 14,20: - 4: 15 + 3: 15 0: 61680 15,16: - 4: 4080 + 3: 4080 15,17: - 4: 3840 + 3: 3840 15,18: - 4: 240 + 3: 240 0: 28672 15,19: - 4: 15 + 3: 15 0: 28784 15,20: - 4: 15 + 3: 15 0: 28784 16,17: - 4: 4383 + 3: 4383 16,18: - 4: 4369 + 3: 4369 16,19: - 4: 4369 + 3: 4369 16,20: - 4: 4369 + 3: 4369 17,16: - 4: 65520 + 3: 65520 17,17: - 4: 15 + 3: 15 18,17: - 4: 15 + 3: 15 8,17: 0: 24584 9,17: 0: 717 10,17: 0: 239 - 4: 4352 + 3: 4352 10,18: - 4: 4593 + 3: 4593 0: 49152 10,19: - 4: 4383 + 3: 4383 0: 49344 10,20: - 4: 4383 + 3: 4383 0: 49344 11,17: 0: 7 11,20: - 4: 15 + 3: 15 0: 61680 29,-20: - 4: 29767 + 3: 29767 0: 256 29,-19: 0: 257 - 4: 29764 + 3: 29764 29,-18: 0: 257 - 4: 29764 + 3: 29764 29,-17: 0: 1 - 4: 1860 + 3: 1860 12,21: - 4: 61583 + 3: 61583 0: 112 11,21: - 4: 61455 + 3: 61455 0: 240 12,22: - 4: 3140 + 3: 3140 13,21: - 4: 61759 + 3: 61759 0: 192 13,22: - 4: 1860 + 3: 1860 0: 1 14,21: - 4: 61455 + 3: 61455 0: 240 15,21: - 4: 61455 + 3: 61455 0: 112 16,21: - 4: 4369 + 3: 4369 8,21: - 4: 61440 + 3: 61440 7,21: - 4: 61440 + 3: 61440 9,21: - 4: 61440 + 3: 61440 10,21: - 4: 61727 + 3: 61727 0: 192 0,21: - 4: 61440 + 3: 61440 -1,21: - 4: 49152 + 3: 49152 1,20: 0: 57232 1,21: - 4: 61986 + 3: 61986 2,21: - 4: 61440 + 3: 61440 3,21: - 4: 61440 + 3: 61440 4,21: - 4: 61440 + 3: 61440 5,21: - 4: 62532 + 3: 62532 6,21: - 4: 61440 + 3: 61440 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -15649,26 +15669,11 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: - - 21.824879 - - 82.10312 + - 27.225372 + - 102.419266 - 0 - 0 - 0 @@ -15760,6 +15765,7 @@ entities: - type: SpreaderGrid - type: GridPathfinding - type: NavMap + - type: ImplicitRoof - proto: AcousticGuitarInstrument entities: - uid: 13351 @@ -15773,15 +15779,6 @@ entities: - type: Transform pos: 86.510315,-15.505127 parent: 13329 -- proto: ActionToggleBlock - entities: - - uid: 10647 - components: - - type: Transform - parent: 10646 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 10646 - proto: AirAlarm entities: - uid: 609 @@ -15812,7 +15809,6 @@ entities: - 665 - 629 - 20458 - - 653 - 530 - 568 - 20459 @@ -16222,6 +16218,60 @@ entities: - 6917 - 6904 - 6905 + - uid: 7415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 13329 + - type: DeviceList + devices: + - 10568 + - 10585 + - 10584 + - 8941 + - uid: 8168 + components: + - type: Transform + pos: 45.5,4.5 + parent: 13329 + - type: DeviceList + devices: + - 10671 + - 35979 + - 35986 + - 9351 + - 7558 + - 35981 + - 8477 + - uid: 8417 + components: + - type: Transform + pos: 32.5,0.5 + parent: 13329 + - type: DeviceList + devices: + - 8941 + - 7090 + - 7089 + - 8048 + - 8049 + - 10116 + - 10117 + - 10118 + - 14590 + - 14589 + - 14591 + - 8167 + - 8147 + - 8144 + - 7156 + - 7158 + - 7157 + - 7589 + - 9345 + - 36052 + - 25507 - uid: 8619 components: - type: Transform @@ -16343,6 +16393,73 @@ entities: - 8614 - 8552 - 8553 + - uid: 8882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-6.5 + parent: 13329 + - type: DeviceList + devices: + - 14565 + - 14563 + - 14562 + - 14564 + - 25506 + - 7156 + - 7158 + - 7157 + - 7589 + - 9345 + - 36052 + - uid: 8902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,10.5 + parent: 13329 + - type: DeviceList + devices: + - 8886 + - 8893 + - 8932 + - uid: 9002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 13329 + - type: DeviceList + devices: + - 8105 + - 8955 + - 10458 + - uid: 9461 + components: + - type: Transform + pos: 49.5,16.5 + parent: 13329 + - type: DeviceList + devices: + - 10362 + - 8891 + - 8985 + - uid: 10591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,10.5 + parent: 13329 + - type: DeviceList + devices: + - 10583 + - 35466 + - 10579 + - 10363 + - 7540 + - 9460 + - 10435 + - 10297 - uid: 11473 components: - type: Transform @@ -16555,26 +16672,6 @@ entities: - 14588 - 14585 - 14584 - - uid: 14593 - components: - - type: Transform - pos: 29.5,0.5 - parent: 13329 - - type: DeviceList - devices: - - 10116 - - 10117 - - 10118 - - 7089 - - 7090 - - 14589 - - 8049 - - 8048 - - 14566 - - 14567 - - 14568 - - 14590 - - 14591 - uid: 14594 components: - type: Transform @@ -16888,31 +16985,6 @@ entities: rot: -1.5707963267948966 rad pos: 104.5,-38.5 parent: 13329 - - uid: 25905 - components: - - type: Transform - pos: 49.5,0.5 - parent: 13329 - - type: DeviceList - devices: - - 14566 - - 14567 - - 14568 - - 14474 - - 14473 - - 14472 - - 21369 - - 21370 - - 21371 - - 8167 - - 8147 - - 8144 - - 25507 - - 25506 - - 14562 - - 14564 - - 14565 - - 14563 - uid: 25907 components: - type: Transform @@ -17619,6 +17691,16 @@ entities: - type: Transform pos: -37.5,24.5 parent: 13329 + - uid: 7155 + components: + - type: Transform + pos: 44.5,28.5 + parent: 13329 + - uid: 8119 + components: + - type: Transform + pos: 47.5,27.5 + parent: 13329 - uid: 9569 components: - type: Transform @@ -17634,6 +17716,11 @@ entities: - type: Transform pos: 15.5,3.5 parent: 13329 + - uid: 10440 + components: + - type: Transform + pos: 48.5,14.5 + parent: 13329 - uid: 18882 components: - type: Transform @@ -17869,6 +17956,11 @@ entities: parent: 13329 - proto: AirlockBrigGlassLocked entities: + - uid: 7143 + components: + - type: Transform + pos: 25.5,0.5 + parent: 13329 - uid: 9356 components: - type: Transform @@ -17879,26 +17971,11 @@ entities: 9359: - - DoorStatus - Close - - uid: 9357 - components: - - type: Transform - pos: 25.5,0.5 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 9358: - - - DoorStatus - - Close - uid: 9358 components: - type: Transform pos: 25.5,4.5 parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 9357: - - - DoorStatus - - Close - uid: 9359 components: - type: Transform @@ -17959,16 +18036,6 @@ entities: 9411: - - DoorStatus - Close - - uid: 9459 - components: - - type: Transform - pos: 40.5,5.5 - parent: 13329 - - uid: 9460 - components: - - type: Transform - pos: 40.5,7.5 - parent: 13329 - uid: 29402 components: - type: MetaData @@ -18144,19 +18211,16 @@ entities: - type: MetaData name: Private Exam - type: Transform - rot: 3.141592653589793 rad pos: 20.5,62.5 parent: 13329 - uid: 18816 components: - type: Transform - rot: 3.141592653589793 rad pos: 22.5,61.5 parent: 13329 - uid: 18817 components: - type: Transform - rot: 3.141592653589793 rad pos: 25.5,61.5 parent: 13329 - proto: AirlockCommandGlassLocked @@ -18278,7 +18342,6 @@ entities: - uid: 30238 components: - type: Transform - rot: 1.5707963267948966 rad pos: 109.5,43.5 parent: 13329 - uid: 30596 @@ -18441,19 +18504,16 @@ entities: - uid: 2577 components: - type: Transform - rot: 3.141592653589793 rad pos: -21.5,4.5 parent: 13329 - uid: 2579 components: - type: Transform - rot: 3.141592653589793 rad pos: -21.5,34.5 parent: 13329 - uid: 2581 components: - type: Transform - rot: 3.141592653589793 rad pos: -12.5,-13.5 parent: 13329 - uid: 3714 @@ -18496,7 +18556,6 @@ entities: - uid: 12079 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-19.5 parent: 13329 - uid: 14729 @@ -18522,13 +18581,11 @@ entities: - uid: 20576 components: - type: Transform - rot: 1.5707963267948966 rad pos: 97.5,-28.5 parent: 13329 - uid: 20577 components: - type: Transform - rot: 1.5707963267948966 rad pos: 97.5,-24.5 parent: 13329 - uid: 23414 @@ -18579,7 +18636,6 @@ entities: - uid: 26217 components: - type: Transform - rot: 1.5707963267948966 rad pos: 90.5,4.5 parent: 13329 - uid: 26775 @@ -18637,7 +18693,6 @@ entities: - uid: 12401 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,-55.5 parent: 13329 - type: DeviceLinkSink @@ -18650,7 +18705,6 @@ entities: - uid: 12402 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,-55.5 parent: 13329 - type: DeviceLinkSink @@ -19430,7 +19484,6 @@ entities: - uid: 6538 components: - type: Transform - rot: 1.5707963267948966 rad pos: -39.5,67.5 parent: 13329 - type: DeviceLinkSource @@ -19441,7 +19494,6 @@ entities: - uid: 6540 components: - type: Transform - rot: 1.5707963267948966 rad pos: -36.5,67.5 parent: 13329 - type: DeviceLinkSource @@ -19587,12 +19639,6 @@ entities: - type: Transform pos: -15.5,-4.5 parent: 13329 - - type: Door - secondsUntilStateChange: -12230.655 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - uid: 6232 components: - type: Transform @@ -19642,30 +19688,20 @@ entities: rot: 3.141592653589793 rad pos: 1.5,29.5 parent: 13329 - - uid: 10330 + - uid: 8883 components: - type: Transform - pos: 42.5,16.5 + pos: 56.5,-3.5 parent: 13329 - - uid: 10331 + - uid: 8884 components: - type: Transform - pos: 45.5,16.5 + pos: 55.5,-3.5 parent: 13329 - - uid: 10332 + - uid: 8885 components: - type: Transform - pos: 47.5,16.5 - parent: 13329 - - uid: 10333 - components: - - type: Transform - pos: 50.5,16.5 - parent: 13329 - - uid: 10373 - components: - - type: Transform - pos: 44.5,28.5 + pos: 54.5,-3.5 parent: 13329 - uid: 25836 components: @@ -19777,21 +19813,6 @@ entities: - type: Transform pos: 8.5,-8.5 parent: 13329 - - uid: 35791 - components: - - type: Transform - pos: 40.5,-0.5 - parent: 13329 - - uid: 35792 - components: - - type: Transform - pos: 40.5,-1.5 - parent: 13329 - - uid: 35793 - components: - - type: Transform - pos: 40.5,-2.5 - parent: 13329 - uid: 35794 components: - type: Transform @@ -19912,6 +19933,21 @@ entities: - type: Transform pos: -3.5,49.5 parent: 13329 + - uid: 36054 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 13329 + - uid: 36055 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 13329 + - uid: 36056 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 13329 - proto: AirlockHeadOfPersonnelGlassLocked entities: - uid: 16662 @@ -19969,7 +20005,6 @@ entities: - type: MetaData name: Janitor Closet - type: Transform - rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 13329 - proto: AirlockMaintAtmoLocked @@ -20053,7 +20088,6 @@ entities: - uid: 12668 components: - type: Transform - rot: -1.5707963267948966 rad pos: -41.5,-47.5 parent: 13329 - uid: 20782 @@ -20212,7 +20246,6 @@ entities: - uid: 2578 components: - type: Transform - rot: 3.141592653589793 rad pos: -17.5,1.5 parent: 13329 - uid: 2612 @@ -20267,7 +20300,6 @@ entities: - type: MetaData name: Tool Storage - type: Transform - rot: 3.141592653589793 rad pos: 7.5,22.5 parent: 13329 - uid: 6928 @@ -20275,7 +20307,6 @@ entities: - type: MetaData name: Tool Storage - type: Transform - rot: 3.141592653589793 rad pos: 7.5,29.5 parent: 13329 - uid: 6993 @@ -20306,7 +20337,6 @@ entities: - uid: 11002 components: - type: Transform - rot: -1.5707963267948966 rad pos: 21.5,-21.5 parent: 13329 - uid: 12145 @@ -20548,7 +20578,6 @@ entities: - uid: 11004 components: - type: Transform - rot: -1.5707963267948966 rad pos: 20.5,-23.5 parent: 13329 - proto: AirlockMaintSecLocked @@ -20697,6 +20726,14 @@ entities: - type: Transform pos: 9.5,60.5 parent: 13329 +- proto: AirlockMedicalMorgueGlassLocked + entities: + - uid: 9391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,0.5 + parent: 13329 - proto: AirlockQuartermasterGlassLocked entities: - uid: 11640 @@ -20886,6 +20923,17 @@ entities: - type: Transform pos: -36.5,46.5 parent: 13329 + - uid: 7144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,7.5 + parent: 13329 + - uid: 8131 + components: + - type: Transform + pos: 30.5,4.5 + parent: 13329 - uid: 9413 components: - type: MetaData @@ -20923,35 +20971,23 @@ entities: - type: Transform pos: 52.5,5.5 parent: 13329 - - uid: 10296 + - uid: 10309 components: - type: Transform - pos: 42.5,8.5 + rot: 3.141592653589793 rad + pos: 37.5,5.5 parent: 13329 - - uid: 10297 + - uid: 10312 components: - type: Transform - pos: 43.5,8.5 + rot: -1.5707963267948966 rad + pos: 44.5,9.5 parent: 13329 - - uid: 10298 + - uid: 10360 components: - type: Transform - pos: 42.5,12.5 - parent: 13329 - - uid: 10299 - components: - - type: Transform - pos: 45.5,12.5 - parent: 13329 - - uid: 10300 - components: - - type: Transform - pos: 47.5,12.5 - parent: 13329 - - uid: 10301 - components: - - type: Transform - pos: 50.5,12.5 + rot: 1.5707963267948966 rad + pos: 34.5,4.5 parent: 13329 - uid: 15264 components: @@ -20970,11 +21006,21 @@ entities: parent: 13329 - proto: AirlockSecurityLocked entities: - - uid: 9360 + - uid: 7165 components: - type: Transform pos: 35.5,8.5 parent: 13329 + - uid: 7596 + components: + - type: Transform + pos: 40.5,7.5 + parent: 13329 + - uid: 8460 + components: + - type: Transform + pos: 44.5,6.5 + parent: 13329 - uid: 9416 components: - type: MetaData @@ -20996,10 +21042,20 @@ entities: - type: Transform pos: 33.5,25.5 parent: 13329 - - uid: 10293 + - uid: 10311 components: - type: Transform - pos: 50.5,8.5 + pos: 48.5,9.5 + parent: 13329 + - uid: 10323 + components: + - type: Transform + pos: 50.5,11.5 + parent: 13329 + - uid: 10696 + components: + - type: Transform + pos: 43.5,0.5 parent: 13329 - uid: 10911 components: @@ -21016,6 +21072,11 @@ entities: - type: Transform pos: 72.5,-11.5 parent: 13329 + - uid: 35972 + components: + - type: Transform + pos: 40.5,5.5 + parent: 13329 - proto: AirlockServiceGlassLocked entities: - uid: 895 @@ -21052,7 +21113,6 @@ entities: - type: MetaData name: Evac Service - type: Transform - rot: -1.5707963267948966 rad pos: -28.5,29.5 parent: 13329 - uid: 6348 @@ -21139,7 +21199,6 @@ entities: - uid: 2088 components: - type: Transform - rot: 3.141592653589793 rad pos: -0.5,-6.5 parent: 13329 - uid: 2204 @@ -21197,6 +21256,14 @@ entities: - type: Transform pos: 4.5,26.5 parent: 13329 + - uid: 7540 + components: + - type: Transform + pos: 46.5,24.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 10591 - uid: 8614 components: - type: Transform @@ -21227,6 +21294,38 @@ entities: - type: Transform pos: 28.5,13.5 parent: 13329 + - uid: 8932 + components: + - type: Transform + pos: 46.5,9.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8902 + - uid: 8955 + components: + - type: Transform + pos: 29.5,2.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 9002 + - uid: 10362 + components: + - type: Transform + pos: 49.5,14.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 9461 + - uid: 10585 + components: + - type: Transform + pos: 34.5,2.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 7415 - uid: 11024 components: - type: Transform @@ -21302,6 +21401,10 @@ entities: - type: Transform pos: 32.5,-1.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8396 + - 8417 - uid: 14602 components: - type: Transform @@ -21392,11 +21495,17 @@ entities: - type: Transform pos: 49.5,-10.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8882 - uid: 25507 components: - type: Transform pos: 48.5,-1.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8417 - uid: 25508 components: - type: Transform @@ -21547,6 +21656,31 @@ entities: - type: Transform pos: 66.5,39.5 parent: 13329 + - uid: 35466 + components: + - type: Transform + pos: 45.5,15.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 10591 + - 9459 + - uid: 35986 + components: + - type: Transform + pos: 42.5,2.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8168 + - uid: 36033 + components: + - type: Transform + pos: 42.5,9.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 9459 - proto: AltarConvertMaint entities: - uid: 32248 @@ -21847,6 +21981,14 @@ entities: - type: Transform pos: 6.5,31.5 parent: 13329 + - uid: 8479 + components: + - type: MetaData + name: Genpop APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,7.5 + parent: 13329 - uid: 8678 components: - type: MetaData @@ -21859,22 +22001,6 @@ entities: - type: Transform pos: 30.5,15.5 parent: 13329 - - uid: 8680 - components: - - type: MetaData - name: Perma Brig APC - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,16.5 - parent: 13329 - - uid: 8681 - components: - - type: MetaData - name: Security Brig Medical APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,6.5 - parent: 13329 - uid: 8682 components: - type: MetaData @@ -28954,56 +29080,31 @@ entities: - type: Transform pos: -21.5,61.5 parent: 13329 - - uid: 9345 + - uid: 7247 components: - type: Transform - pos: 28.5,1.5 + pos: 49.5,15.5 parent: 13329 - - uid: 9346 + - uid: 7249 components: - type: Transform - pos: 31.5,1.5 - parent: 13329 - - uid: 9347 - components: - - type: Transform - pos: 34.5,1.5 - parent: 13329 - - uid: 9348 - components: - - type: Transform - pos: 39.5,3.5 - parent: 13329 - - uid: 9349 - components: - - type: Transform - pos: 39.5,1.5 - parent: 13329 - - uid: 10302 - components: - - type: Transform - pos: 41.5,15.5 - parent: 13329 - - uid: 10303 - components: - - type: Transform - pos: 44.5,15.5 - parent: 13329 - - uid: 10304 - components: - - type: Transform - pos: 48.5,15.5 - parent: 13329 - - uid: 10305 - components: - - type: Transform - pos: 51.5,15.5 + pos: 51.5,12.5 parent: 13329 - uid: 10463 components: - type: Transform pos: 47.5,6.5 parent: 13329 + - uid: 10468 + components: + - type: Transform + pos: 51.5,15.5 + parent: 13329 + - uid: 10469 + components: + - type: Transform + pos: 49.5,12.5 + parent: 13329 - uid: 10503 components: - type: Transform @@ -29179,53 +29280,6 @@ entities: - type: Transform pos: 28.5,46.5 parent: 13329 -- proto: BedsheetBrown - entities: - - uid: 9350 - components: - - type: Transform - pos: 28.5,1.5 - parent: 13329 - - uid: 9351 - components: - - type: Transform - pos: 31.5,1.5 - parent: 13329 - - uid: 9352 - components: - - type: Transform - pos: 34.5,1.5 - parent: 13329 - - uid: 9353 - components: - - type: Transform - pos: 39.5,1.5 - parent: 13329 - - uid: 9354 - components: - - type: Transform - pos: 39.5,3.5 - parent: 13329 - - uid: 10306 - components: - - type: Transform - pos: 41.5,15.5 - parent: 13329 - - uid: 10307 - components: - - type: Transform - pos: 44.5,15.5 - parent: 13329 - - uid: 10308 - components: - - type: Transform - pos: 48.5,15.5 - parent: 13329 - - uid: 10309 - components: - - type: Transform - pos: 51.5,15.5 - parent: 13329 - proto: BedsheetCaptain entities: - uid: 30688 @@ -29320,16 +29374,17 @@ entities: - type: Transform pos: 15.5,51.5 parent: 13329 - - uid: 9647 + - uid: 8875 components: - type: Transform - pos: 42.5,1.5 + rot: -1.5707963267948966 rad + pos: 34.5,1.5 parent: 13329 - - uid: 10560 + - uid: 10587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,1.5 + rot: -1.5707963267948966 rad + pos: 36.5,1.5 parent: 13329 - uid: 15511 components: @@ -29395,6 +29450,18 @@ entities: - type: Transform pos: 66.5,-51.5 parent: 13329 +- proto: BedsheetOrange + entities: + - uid: 7248 + components: + - type: Transform + pos: 51.5,12.5 + parent: 13329 + - uid: 10306 + components: + - type: Transform + pos: 49.5,15.5 + parent: 13329 - proto: BedsheetPurple entities: - uid: 34638 @@ -29433,6 +29500,11 @@ entities: - type: Transform pos: -21.5,61.5 parent: 13329 + - uid: 10300 + components: + - type: Transform + pos: 49.5,12.5 + parent: 13329 - uid: 29232 components: - type: Transform @@ -29493,6 +29565,13 @@ entities: - type: Transform pos: -30.5,17.5 parent: 13329 +- proto: BedsheetSyndie + entities: + - uid: 10470 + components: + - type: Transform + pos: 51.5,15.5 + parent: 13329 - proto: BigBox entities: - uid: 11622 @@ -29671,54 +29750,6 @@ entities: parent: 13329 - proto: BlastDoorOpen entities: - - uid: 9391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,0.5 - parent: 13329 - - uid: 9392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,0.5 - parent: 13329 - - uid: 9393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,0.5 - parent: 13329 - - uid: 9394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,0.5 - parent: 13329 - - uid: 9395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,0.5 - parent: 13329 - - uid: 9396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,0.5 - parent: 13329 - - uid: 9397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,0.5 - parent: 13329 - - uid: 9398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,0.5 - parent: 13329 - uid: 9400 components: - type: Transform @@ -29729,11 +29760,6 @@ entities: - type: Transform pos: 52.5,21.5 parent: 13329 - - uid: 9403 - components: - - type: Transform - pos: 52.5,22.5 - parent: 13329 - uid: 9404 components: - type: Transform @@ -29744,18 +29770,6 @@ entities: - type: Transform pos: 52.5,24.5 parent: 13329 - - uid: 10638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,0.5 - parent: 13329 - - uid: 10645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,0.5 - parent: 13329 - uid: 14605 components: - type: Transform @@ -29925,11 +29939,6 @@ entities: - type: Transform pos: 30.594751,19.522747 parent: 13329 - - uid: 10445 - components: - - type: Transform - pos: 42.459343,18.408422 - parent: 13329 - uid: 26089 components: - type: Transform @@ -30004,16 +30013,6 @@ entities: - type: Transform pos: -8.5,66.5 parent: 13329 - - uid: 10341 - components: - - type: Transform - pos: 41.5,17.5 - parent: 13329 - - uid: 10342 - components: - - type: Transform - pos: 41.5,18.5 - parent: 13329 - uid: 12127 components: - type: Transform @@ -30211,6 +30210,21 @@ entities: - type: Transform pos: -18.5,53.5 parent: 13329 + - uid: 8112 + components: + - type: Transform + pos: 43.5,18.5 + parent: 13329 + - uid: 8113 + components: + - type: Transform + pos: 41.5,18.5 + parent: 13329 + - uid: 8114 + components: + - type: Transform + pos: 42.5,18.5 + parent: 13329 - uid: 13390 components: - type: Transform @@ -30348,11 +30362,6 @@ entities: - type: Transform pos: 7.559045,47.574802 parent: 13329 - - uid: 35992 - components: - - type: Transform - pos: 45.68641,3.780618 - parent: 13329 - proto: BoxBottle entities: - uid: 18489 @@ -30407,6 +30416,20 @@ entities: - type: Transform pos: 15.4645405,-8.841671 parent: 13329 +- proto: BoxCleanerGrenades + entities: + - uid: 1422 + components: + - type: Transform + pos: 2.5008028,10.611293 + parent: 13329 +- proto: BoxEvidenceMarkers + entities: + - uid: 9105 + components: + - type: Transform + pos: 31.541664,2.1613898 + parent: 13329 - proto: BoxFlashbang entities: - uid: 10688 @@ -30808,6 +30831,11 @@ entities: parent: 13329 - proto: BoxZiptie entities: + - uid: 9109 + components: + - type: Transform + pos: 32.50941,7.655998 + parent: 13329 - uid: 10264 components: - type: Transform @@ -30879,62 +30907,26 @@ entities: parent: 13329 - proto: BrigTimer entities: + - uid: 9464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,5.5 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 8460: + - - Start + - Close + - - Timer + - Open + - - Timer + - AutoClose - uid: 10576 components: - type: Transform pos: 26.5,4.5 parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 9333: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - - uid: 10578 - components: - - type: Transform - pos: 35.5,4.5 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 9336: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - - uid: 10583 - components: - - type: Transform - pos: 29.5,4.5 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 9334: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - - uid: 10586 - components: - - type: Transform - pos: 32.5,4.5 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 9335: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - proto: BrokenBottle entities: - uid: 18218 @@ -30942,12 +30934,19 @@ entities: - type: Transform pos: -38.343266,62.530876 parent: 13329 +- proto: Brutepack + entities: + - uid: 9146 + components: + - type: Transform + pos: 35.691887,1.5591729 + parent: 13329 - proto: Bucket entities: - uid: 1650 components: - type: Transform - pos: 6.4752116,12.454929 + pos: 2.4258099,10.281957 parent: 13329 - uid: 10143 components: @@ -30988,6 +30987,29 @@ entities: parent: 13329 - proto: ButtonFrameCaution entities: + - uid: 8110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 13329 + - uid: 8126 + components: + - type: Transform + pos: 45.5,10.5 + parent: 13329 + - uid: 10314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,18.5 + parent: 13329 + - uid: 10441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,0.5 + parent: 13329 - uid: 10692 components: - type: Transform @@ -31019,6 +31041,11 @@ entities: parent: 13329 - proto: ButtonFrameCautionSecurity entities: + - uid: 8125 + components: + - type: Transform + pos: 47.5,10.5 + parent: 13329 - uid: 8648 components: - type: Transform @@ -31041,6 +31068,11 @@ entities: parent: 13329 - proto: CableApcExtension entities: + - uid: 653 + components: + - type: Transform + pos: 46.5,24.5 + parent: 13329 - uid: 674 components: - type: Transform @@ -31851,6 +31883,11 @@ entities: - type: Transform pos: -14.5,28.5 parent: 13329 + - uid: 918 + components: + - type: Transform + pos: 46.5,23.5 + parent: 13329 - uid: 1508 components: - type: Transform @@ -34921,6 +34958,161 @@ entities: - type: Transform pos: -1.5,45.5 parent: 13329 + - uid: 7145 + components: + - type: Transform + pos: 41.5,7.5 + parent: 13329 + - uid: 7170 + components: + - type: Transform + pos: 42.5,17.5 + parent: 13329 + - uid: 7171 + components: + - type: Transform + pos: 43.5,16.5 + parent: 13329 + - uid: 7412 + components: + - type: Transform + pos: 30.5,4.5 + parent: 13329 + - uid: 7413 + components: + - type: Transform + pos: 30.5,3.5 + parent: 13329 + - uid: 7414 + components: + - type: Transform + pos: 30.5,2.5 + parent: 13329 + - uid: 7419 + components: + - type: Transform + pos: 27.5,1.5 + parent: 13329 + - uid: 7420 + components: + - type: Transform + pos: 28.5,2.5 + parent: 13329 + - uid: 7421 + components: + - type: Transform + pos: 27.5,2.5 + parent: 13329 + - uid: 7518 + components: + - type: Transform + pos: 30.5,0.5 + parent: 13329 + - uid: 7523 + components: + - type: Transform + pos: 31.5,0.5 + parent: 13329 + - uid: 7527 + components: + - type: Transform + pos: 39.5,9.5 + parent: 13329 + - uid: 7541 + components: + - type: Transform + pos: 43.5,7.5 + parent: 13329 + - uid: 7542 + components: + - type: Transform + pos: 44.5,7.5 + parent: 13329 + - uid: 7543 + components: + - type: Transform + pos: 43.5,5.5 + parent: 13329 + - uid: 7544 + components: + - type: Transform + pos: 43.5,4.5 + parent: 13329 + - uid: 7545 + components: + - type: Transform + pos: 37.5,6.5 + parent: 13329 + - uid: 7551 + components: + - type: Transform + pos: 43.5,6.5 + parent: 13329 + - uid: 8124 + components: + - type: Transform + pos: 45.5,22.5 + parent: 13329 + - uid: 8140 + components: + - type: Transform + pos: 38.5,6.5 + parent: 13329 + - uid: 8142 + components: + - type: Transform + pos: 47.5,2.5 + parent: 13329 + - uid: 8145 + components: + - type: Transform + pos: 46.5,2.5 + parent: 13329 + - uid: 8148 + components: + - type: Transform + pos: 45.5,2.5 + parent: 13329 + - uid: 8149 + components: + - type: Transform + pos: 44.5,2.5 + parent: 13329 + - uid: 8150 + components: + - type: Transform + pos: 43.5,3.5 + parent: 13329 + - uid: 8151 + components: + - type: Transform + pos: 42.5,2.5 + parent: 13329 + - uid: 8152 + components: + - type: Transform + pos: 43.5,2.5 + parent: 13329 + - uid: 8157 + components: + - type: Transform + pos: 43.5,8.5 + parent: 13329 + - uid: 8464 + components: + - type: Transform + pos: 47.5,8.5 + parent: 13329 + - uid: 8471 + components: + - type: Transform + pos: 45.5,15.5 + parent: 13329 + - uid: 8472 + components: + - type: Transform + pos: 44.5,15.5 + parent: 13329 - uid: 8664 components: - type: Transform @@ -35804,72 +35996,27 @@ entities: - uid: 8865 components: - type: Transform - pos: 27.5,5.5 - parent: 13329 - - uid: 8866 - components: - - type: Transform - pos: 27.5,4.5 - parent: 13329 - - uid: 8867 - components: - - type: Transform - pos: 27.5,3.5 - parent: 13329 - - uid: 8868 - components: - - type: Transform - pos: 27.5,2.5 - parent: 13329 - - uid: 8869 - components: - - type: Transform - pos: 27.5,1.5 + pos: 46.5,5.5 parent: 13329 - uid: 8870 components: - type: Transform - pos: 27.5,0.5 + pos: 43.5,13.5 parent: 13329 - uid: 8871 components: - type: Transform - pos: 28.5,0.5 + pos: 43.5,15.5 parent: 13329 - uid: 8872 components: - type: Transform pos: 30.5,5.5 parent: 13329 - - uid: 8873 - components: - - type: Transform - pos: 30.5,4.5 - parent: 13329 - - uid: 8874 - components: - - type: Transform - pos: 30.5,3.5 - parent: 13329 - - uid: 8875 - components: - - type: Transform - pos: 30.5,2.5 - parent: 13329 - uid: 8876 components: - type: Transform - pos: 30.5,1.5 - parent: 13329 - - uid: 8877 - components: - - type: Transform - pos: 30.5,0.5 - parent: 13329 - - uid: 8878 - components: - - type: Transform - pos: 31.5,0.5 + pos: 43.5,14.5 parent: 13329 - uid: 8879 components: @@ -35881,36 +36028,6 @@ entities: - type: Transform pos: 33.5,5.5 parent: 13329 - - uid: 8881 - components: - - type: Transform - pos: 33.5,4.5 - parent: 13329 - - uid: 8882 - components: - - type: Transform - pos: 33.5,3.5 - parent: 13329 - - uid: 8883 - components: - - type: Transform - pos: 33.5,2.5 - parent: 13329 - - uid: 8884 - components: - - type: Transform - pos: 33.5,1.5 - parent: 13329 - - uid: 8885 - components: - - type: Transform - pos: 33.5,0.5 - parent: 13329 - - uid: 8886 - components: - - type: Transform - pos: 34.5,0.5 - parent: 13329 - uid: 8887 components: - type: Transform @@ -35926,70 +36043,10 @@ entities: - type: Transform pos: 36.5,6.5 parent: 13329 - - uid: 8890 - components: - - type: Transform - pos: 37.5,6.5 - parent: 13329 - - uid: 8891 - components: - - type: Transform - pos: 37.5,5.5 - parent: 13329 - uid: 8892 components: - type: Transform - pos: 37.5,4.5 - parent: 13329 - - uid: 8893 - components: - - type: Transform - pos: 37.5,3.5 - parent: 13329 - - uid: 8894 - components: - - type: Transform - pos: 37.5,2.5 - parent: 13329 - - uid: 8895 - components: - - type: Transform - pos: 37.5,1.5 - parent: 13329 - - uid: 8896 - components: - - type: Transform - pos: 37.5,0.5 - parent: 13329 - - uid: 8897 - components: - - type: Transform - pos: 36.5,0.5 - parent: 13329 - - uid: 8898 - components: - - type: Transform - pos: 38.5,0.5 - parent: 13329 - - uid: 8899 - components: - - type: Transform - pos: 39.5,0.5 - parent: 13329 - - uid: 8900 - components: - - type: Transform - pos: 38.5,4.5 - parent: 13329 - - uid: 8901 - components: - - type: Transform - pos: 39.5,4.5 - parent: 13329 - - uid: 8902 - components: - - type: Transform - pos: 36.5,4.5 + pos: 43.5,12.5 parent: 13329 - uid: 8903 components: @@ -36131,6 +36188,11 @@ entities: - type: Transform pos: 34.5,13.5 parent: 13329 + - uid: 8933 + components: + - type: Transform + pos: 43.5,9.5 + parent: 13329 - uid: 8934 components: - type: Transform @@ -36151,41 +36213,11 @@ entities: - type: Transform pos: 37.5,13.5 parent: 13329 - - uid: 8941 - components: - - type: Transform - pos: 44.5,6.5 - parent: 13329 - uid: 8943 components: - type: Transform pos: 38.5,13.5 parent: 13329 - - uid: 8944 - components: - - type: Transform - pos: 43.5,6.5 - parent: 13329 - - uid: 8945 - components: - - type: Transform - pos: 42.5,6.5 - parent: 13329 - - uid: 8946 - components: - - type: Transform - pos: 41.5,6.5 - parent: 13329 - - uid: 8947 - components: - - type: Transform - pos: 40.5,6.5 - parent: 13329 - - uid: 8948 - components: - - type: Transform - pos: 40.5,7.5 - parent: 13329 - uid: 8949 components: - type: Transform @@ -36196,116 +36228,11 @@ entities: - type: Transform pos: 39.5,8.5 parent: 13329 - - uid: 8951 - components: - - type: Transform - pos: 42.5,5.5 - parent: 13329 - - uid: 8952 - components: - - type: Transform - pos: 42.5,4.5 - parent: 13329 - - uid: 8953 - components: - - type: Transform - pos: 42.5,3.5 - parent: 13329 - - uid: 8954 - components: - - type: Transform - pos: 42.5,2.5 - parent: 13329 - - uid: 8955 - components: - - type: Transform - pos: 42.5,1.5 - parent: 13329 - - uid: 8956 - components: - - type: Transform - pos: 43.5,2.5 - parent: 13329 - - uid: 8957 - components: - - type: Transform - pos: 44.5,2.5 - parent: 13329 - - uid: 8958 - components: - - type: Transform - pos: 45.5,2.5 - parent: 13329 - - uid: 8959 - components: - - type: Transform - pos: 46.5,2.5 - parent: 13329 - - uid: 8960 - components: - - type: Transform - pos: 47.5,2.5 - parent: 13329 - uid: 8961 components: - type: Transform pos: 42.5,7.5 parent: 13329 - - uid: 8962 - components: - - type: Transform - pos: 42.5,8.5 - parent: 13329 - - uid: 8963 - components: - - type: Transform - pos: 42.5,9.5 - parent: 13329 - - uid: 8964 - components: - - type: Transform - pos: 42.5,10.5 - parent: 13329 - - uid: 8965 - components: - - type: Transform - pos: 43.5,10.5 - parent: 13329 - - uid: 8966 - components: - - type: Transform - pos: 44.5,10.5 - parent: 13329 - - uid: 8967 - components: - - type: Transform - pos: 45.5,10.5 - parent: 13329 - - uid: 8968 - components: - - type: Transform - pos: 47.5,10.5 - parent: 13329 - - uid: 8969 - components: - - type: Transform - pos: 48.5,10.5 - parent: 13329 - - uid: 8970 - components: - - type: Transform - pos: 49.5,10.5 - parent: 13329 - - uid: 8971 - components: - - type: Transform - pos: 50.5,10.5 - parent: 13329 - - uid: 8972 - components: - - type: Transform - pos: 50.5,9.5 - parent: 13329 - uid: 8973 components: - type: Transform @@ -36331,11 +36258,6 @@ entities: - type: Transform pos: 49.5,6.5 parent: 13329 - - uid: 8978 - components: - - type: Transform - pos: 48.5,6.5 - parent: 13329 - uid: 8979 components: - type: Transform @@ -36356,120 +36278,25 @@ entities: - type: Transform pos: 50.5,3.5 parent: 13329 - - uid: 8983 - components: - - type: Transform - pos: 50.5,11.5 - parent: 13329 - - uid: 8984 - components: - - type: Transform - pos: 50.5,12.5 - parent: 13329 - - uid: 8985 - components: - - type: Transform - pos: 50.5,13.5 - parent: 13329 - - uid: 8986 - components: - - type: Transform - pos: 50.5,14.5 - parent: 13329 - uid: 8987 components: - type: Transform - pos: 50.5,15.5 - parent: 13329 - - uid: 8988 - components: - - type: Transform - pos: 47.5,11.5 - parent: 13329 - - uid: 8989 - components: - - type: Transform - pos: 47.5,12.5 - parent: 13329 - - uid: 8990 - components: - - type: Transform - pos: 47.5,13.5 - parent: 13329 - - uid: 8991 - components: - - type: Transform - pos: 47.5,14.5 - parent: 13329 - - uid: 8992 - components: - - type: Transform - pos: 47.5,15.5 - parent: 13329 - - uid: 8993 - components: - - type: Transform - pos: 45.5,11.5 - parent: 13329 - - uid: 8994 - components: - - type: Transform - pos: 45.5,12.5 + pos: 43.5,11.5 parent: 13329 - uid: 8995 components: - type: Transform - pos: 45.5,13.5 - parent: 13329 - - uid: 8996 - components: - - type: Transform - pos: 45.5,14.5 - parent: 13329 - - uid: 8997 - components: - - type: Transform - pos: 45.5,15.5 - parent: 13329 - - uid: 8998 - components: - - type: Transform - pos: 42.5,11.5 - parent: 13329 - - uid: 8999 - components: - - type: Transform - pos: 42.5,12.5 - parent: 13329 - - uid: 9000 - components: - - type: Transform - pos: 42.5,13.5 + pos: 43.5,10.5 parent: 13329 - uid: 9001 components: - type: Transform - pos: 42.5,14.5 - parent: 13329 - - uid: 9002 - components: - - type: Transform - pos: 42.5,15.5 - parent: 13329 - - uid: 9003 - components: - - type: Transform - pos: 43.5,16.5 + pos: 29.5,2.5 parent: 13329 - uid: 9004 components: - type: Transform - pos: 43.5,17.5 - parent: 13329 - - uid: 9005 - components: - - type: Transform - pos: 43.5,18.5 + pos: 28.5,0.5 parent: 13329 - uid: 9006 components: @@ -36506,16 +36333,6 @@ entities: - type: Transform pos: 43.5,25.5 parent: 13329 - - uid: 9013 - components: - - type: Transform - pos: 44.5,25.5 - parent: 13329 - - uid: 9014 - components: - - type: Transform - pos: 45.5,25.5 - parent: 13329 - uid: 9015 components: - type: Transform @@ -36641,16 +36458,6 @@ entities: - type: Transform pos: 46.5,17.5 parent: 13329 - - uid: 9040 - components: - - type: Transform - pos: 45.5,17.5 - parent: 13329 - - uid: 9041 - components: - - type: Transform - pos: 44.5,17.5 - parent: 13329 - uid: 9042 components: - type: Transform @@ -36676,6 +36483,11 @@ entities: - type: Transform pos: 46.5,22.5 parent: 13329 + - uid: 9106 + components: + - type: Transform + pos: 30.5,1.5 + parent: 13329 - uid: 9420 components: - type: Transform @@ -36686,11 +36498,76 @@ entities: - type: Transform pos: 32.5,10.5 parent: 13329 + - uid: 9437 + components: + - type: Transform + pos: 46.5,16.5 + parent: 13329 - uid: 9445 components: - type: Transform pos: 33.5,10.5 parent: 13329 + - uid: 10313 + components: + - type: Transform + pos: 45.5,6.5 + parent: 13329 + - uid: 10318 + components: + - type: Transform + pos: 46.5,15.5 + parent: 13329 + - uid: 10365 + components: + - type: Transform + pos: 44.5,22.5 + parent: 13329 + - uid: 10373 + components: + - type: Transform + pos: 48.5,14.5 + parent: 13329 + - uid: 10377 + components: + - type: Transform + pos: 50.5,14.5 + parent: 13329 + - uid: 10431 + components: + - type: Transform + pos: 27.5,0.5 + parent: 13329 + - uid: 10558 + components: + - type: Transform + pos: 47.5,14.5 + parent: 13329 + - uid: 10560 + components: + - type: Transform + pos: 50.5,13.5 + parent: 13329 + - uid: 10564 + components: + - type: Transform + pos: 49.5,14.5 + parent: 13329 + - uid: 10645 + components: + - type: Transform + pos: 50.5,12.5 + parent: 13329 + - uid: 10772 + components: + - type: Transform + pos: 46.5,8.5 + parent: 13329 + - uid: 10773 + components: + - type: Transform + pos: 45.5,8.5 + parent: 13329 - uid: 10794 components: - type: Transform @@ -43046,6 +42923,16 @@ entities: - type: Transform pos: 22.5,52.5 parent: 13329 + - uid: 18860 + components: + - type: Transform + pos: 50.5,10.5 + parent: 13329 + - uid: 19133 + components: + - type: Transform + pos: 50.5,9.5 + parent: 13329 - uid: 19284 components: - type: Transform @@ -44036,6 +43923,11 @@ entities: - type: Transform pos: 86.5,-20.5 parent: 13329 + - uid: 23874 + components: + - type: Transform + pos: 46.5,12.5 + parent: 13329 - uid: 23964 components: - type: Transform @@ -47411,6 +47303,16 @@ entities: - type: Transform pos: 47.5,-55.5 parent: 13329 + - uid: 25905 + components: + - type: Transform + pos: 46.5,13.5 + parent: 13329 + - uid: 26038 + components: + - type: Transform + pos: 41.5,17.5 + parent: 13329 - uid: 26179 components: - type: Transform @@ -55006,6 +54908,41 @@ entities: - type: Transform pos: 124.5,57.5 parent: 13329 + - uid: 35854 + components: + - type: Transform + pos: 43.5,17.5 + parent: 13329 + - uid: 35971 + components: + - type: Transform + pos: 46.5,14.5 + parent: 13329 + - uid: 35987 + components: + - type: Transform + pos: 45.5,7.5 + parent: 13329 + - uid: 35990 + components: + - type: Transform + pos: 41.5,2.5 + parent: 13329 + - uid: 35991 + components: + - type: Transform + pos: 45.5,5.5 + parent: 13329 + - uid: 35992 + components: + - type: Transform + pos: 47.5,5.5 + parent: 13329 + - uid: 36004 + components: + - type: Transform + pos: 48.5,6.5 + parent: 13329 - uid: 36005 components: - type: Transform @@ -55021,6 +54958,31 @@ entities: - type: Transform pos: 24.5,37.5 parent: 13329 + - uid: 36021 + components: + - type: Transform + pos: 44.5,10.5 + parent: 13329 + - uid: 36047 + components: + - type: Transform + pos: 39.5,6.5 + parent: 13329 + - uid: 36062 + components: + - type: Transform + pos: 45.5,10.5 + parent: 13329 + - uid: 36063 + components: + - type: Transform + pos: 46.5,10.5 + parent: 13329 + - uid: 36064 + components: + - type: Transform + pos: 47.5,10.5 + parent: 13329 - proto: CableApcStack entities: - uid: 12137 @@ -58457,6 +58419,16 @@ entities: - type: Transform pos: 13.5,29.5 parent: 13329 + - uid: 8127 + components: + - type: Transform + pos: 53.5,23.5 + parent: 13329 + - uid: 8129 + components: + - type: Transform + pos: 54.5,22.5 + parent: 13329 - uid: 9144 components: - type: Transform @@ -58467,11 +58439,6 @@ entities: - type: Transform pos: 52.5,21.5 parent: 13329 - - uid: 9146 - components: - - type: Transform - pos: 52.5,22.5 - parent: 13329 - uid: 9147 components: - type: Transform @@ -58482,16 +58449,6 @@ entities: - type: Transform pos: 52.5,24.5 parent: 13329 - - uid: 9149 - components: - - type: Transform - pos: 53.5,22.5 - parent: 13329 - - uid: 9150 - components: - - type: Transform - pos: 54.5,22.5 - parent: 13329 - uid: 9151 components: - type: Transform @@ -58947,6 +58904,11 @@ entities: - type: Transform pos: 25.5,-0.5 parent: 13329 + - uid: 9463 + components: + - type: Transform + pos: 53.5,21.5 + parent: 13329 - uid: 9478 components: - type: Transform @@ -59487,11 +59449,6 @@ entities: - type: Transform pos: 17.5,-21.5 parent: 13329 - - uid: 10696 - components: - - type: Transform - pos: 28.5,0.5 - parent: 13329 - uid: 11012 components: - type: Transform @@ -68692,51 +68649,6 @@ entities: - type: Transform pos: 86.5,3.5 parent: 13329 - - uid: 35979 - components: - - type: Transform - pos: 27.5,0.5 - parent: 13329 - - uid: 35980 - components: - - type: Transform - pos: 30.5,0.5 - parent: 13329 - - uid: 35981 - components: - - type: Transform - pos: 31.5,0.5 - parent: 13329 - - uid: 35982 - components: - - type: Transform - pos: 33.5,0.5 - parent: 13329 - - uid: 35983 - components: - - type: Transform - pos: 34.5,0.5 - parent: 13329 - - uid: 35984 - components: - - type: Transform - pos: 36.5,0.5 - parent: 13329 - - uid: 35985 - components: - - type: Transform - pos: 37.5,0.5 - parent: 13329 - - uid: 35986 - components: - - type: Transform - pos: 38.5,0.5 - parent: 13329 - - uid: 35987 - components: - - type: Transform - pos: 39.5,0.5 - parent: 13329 - uid: 36015 components: - type: Transform @@ -70411,6 +70323,21 @@ entities: - type: Transform pos: -16.5,71.5 parent: 13329 + - uid: 7168 + components: + - type: Transform + pos: 43.5,9.5 + parent: 13329 + - uid: 7528 + components: + - type: Transform + pos: 37.5,7.5 + parent: 13329 + - uid: 7546 + components: + - type: Transform + pos: 35.5,7.5 + parent: 13329 - uid: 7750 components: - type: Transform @@ -70731,6 +70658,56 @@ entities: - type: Transform pos: 7.5,29.5 parent: 13329 + - uid: 8083 + components: + - type: Transform + pos: 48.5,6.5 + parent: 13329 + - uid: 8090 + components: + - type: Transform + pos: 50.5,9.5 + parent: 13329 + - uid: 8108 + components: + - type: Transform + pos: 47.5,9.5 + parent: 13329 + - uid: 8109 + components: + - type: Transform + pos: 48.5,9.5 + parent: 13329 + - uid: 8153 + components: + - type: Transform + pos: 43.5,8.5 + parent: 13329 + - uid: 8155 + components: + - type: Transform + pos: 46.5,9.5 + parent: 13329 + - uid: 8580 + components: + - type: Transform + pos: 43.5,7.5 + parent: 13329 + - uid: 8680 + components: + - type: Transform + pos: 44.5,7.5 + parent: 13329 + - uid: 8944 + components: + - type: Transform + pos: 45.5,9.5 + parent: 13329 + - uid: 8948 + components: + - type: Transform + pos: 44.5,9.5 + parent: 13329 - uid: 9047 components: - type: Transform @@ -70976,121 +70953,6 @@ entities: - type: Transform pos: 34.5,6.5 parent: 13329 - - uid: 9096 - components: - - type: Transform - pos: 35.5,6.5 - parent: 13329 - - uid: 9097 - components: - - type: Transform - pos: 36.5,6.5 - parent: 13329 - - uid: 9098 - components: - - type: Transform - pos: 37.5,6.5 - parent: 13329 - - uid: 9099 - components: - - type: Transform - pos: 38.5,6.5 - parent: 13329 - - uid: 9100 - components: - - type: Transform - pos: 39.5,6.5 - parent: 13329 - - uid: 9101 - components: - - type: Transform - pos: 40.5,6.5 - parent: 13329 - - uid: 9102 - components: - - type: Transform - pos: 41.5,6.5 - parent: 13329 - - uid: 9103 - components: - - type: Transform - pos: 42.5,6.5 - parent: 13329 - - uid: 9104 - components: - - type: Transform - pos: 43.5,6.5 - parent: 13329 - - uid: 9105 - components: - - type: Transform - pos: 44.5,6.5 - parent: 13329 - - uid: 9106 - components: - - type: Transform - pos: 42.5,7.5 - parent: 13329 - - uid: 9107 - components: - - type: Transform - pos: 42.5,8.5 - parent: 13329 - - uid: 9108 - components: - - type: Transform - pos: 42.5,9.5 - parent: 13329 - - uid: 9109 - components: - - type: Transform - pos: 42.5,10.5 - parent: 13329 - - uid: 9110 - components: - - type: Transform - pos: 42.5,11.5 - parent: 13329 - - uid: 9111 - components: - - type: Transform - pos: 42.5,12.5 - parent: 13329 - - uid: 9112 - components: - - type: Transform - pos: 42.5,13.5 - parent: 13329 - - uid: 9113 - components: - - type: Transform - pos: 42.5,14.5 - parent: 13329 - - uid: 9114 - components: - - type: Transform - pos: 42.5,15.5 - parent: 13329 - - uid: 9115 - components: - - type: Transform - pos: 42.5,16.5 - parent: 13329 - - uid: 9116 - components: - - type: Transform - pos: 42.5,17.5 - parent: 13329 - - uid: 9117 - components: - - type: Transform - pos: 43.5,17.5 - parent: 13329 - - uid: 9118 - components: - - type: Transform - pos: 43.5,16.5 - parent: 13329 - uid: 9124 components: - type: Transform @@ -71121,11 +70983,6 @@ entities: - type: Transform pos: 21.5,17.5 parent: 13329 - - uid: 9130 - components: - - type: Transform - pos: 21.5,18.5 - parent: 13329 - uid: 9131 components: - type: Transform @@ -71191,6 +71048,16 @@ entities: - type: Transform pos: 15.5,29.5 parent: 13329 + - uid: 9392 + components: + - type: Transform + pos: 40.5,7.5 + parent: 13329 + - uid: 9397 + components: + - type: Transform + pos: 39.5,7.5 + parent: 13329 - uid: 9869 components: - type: Transform @@ -71536,6 +71403,16 @@ entities: - type: Transform pos: 22.5,19.5 parent: 13329 + - uid: 10331 + components: + - type: Transform + pos: 38.5,7.5 + parent: 13329 + - uid: 10426 + components: + - type: Transform + pos: 49.5,9.5 + parent: 13329 - uid: 10643 components: - type: Transform @@ -71986,11 +71863,6 @@ entities: - type: Transform pos: 15.5,-21.5 parent: 13329 - - uid: 11553 - components: - - type: Transform - pos: 48.5,6.5 - parent: 13329 - uid: 11554 components: - type: Transform @@ -72011,46 +71883,6 @@ entities: - type: Transform pos: 50.5,8.5 parent: 13329 - - uid: 11558 - components: - - type: Transform - pos: 50.5,9.5 - parent: 13329 - - uid: 11559 - components: - - type: Transform - pos: 49.5,9.5 - parent: 13329 - - uid: 11560 - components: - - type: Transform - pos: 48.5,9.5 - parent: 13329 - - uid: 11561 - components: - - type: Transform - pos: 47.5,9.5 - parent: 13329 - - uid: 11562 - components: - - type: Transform - pos: 46.5,9.5 - parent: 13329 - - uid: 11563 - components: - - type: Transform - pos: 45.5,9.5 - parent: 13329 - - uid: 11564 - components: - - type: Transform - pos: 44.5,9.5 - parent: 13329 - - uid: 11565 - components: - - type: Transform - pos: 43.5,9.5 - parent: 13329 - uid: 11856 components: - type: Transform @@ -79151,6 +78983,21 @@ entities: - type: Transform pos: 93.5,-0.5 parent: 13329 + - uid: 36044 + components: + - type: Transform + pos: 36.5,7.5 + parent: 13329 + - uid: 36045 + components: + - type: Transform + pos: 41.5,7.5 + parent: 13329 + - uid: 36046 + components: + - type: Transform + pos: 42.5,7.5 + parent: 13329 - proto: CableMVStack entities: - uid: 26655 @@ -79349,10 +79196,10 @@ entities: parent: 13329 - proto: CargoMailTeleporter entities: - - uid: 36004 + - uid: 1503 components: - type: Transform - pos: 15.5,-14.5 + pos: 15.5,-13.5 parent: 13329 - proto: Carpet entities: @@ -80079,127 +79926,106 @@ entities: - uid: 29571 components: - type: Transform - rot: 1.5707963267948966 rad pos: 74.5,31.5 parent: 13329 - uid: 29572 components: - type: Transform - rot: 1.5707963267948966 rad pos: 74.5,32.5 parent: 13329 - uid: 29573 components: - type: Transform - rot: 1.5707963267948966 rad pos: 74.5,33.5 parent: 13329 - uid: 29574 components: - type: Transform - rot: 1.5707963267948966 rad pos: 75.5,31.5 parent: 13329 - uid: 29575 components: - type: Transform - rot: 1.5707963267948966 rad pos: 75.5,32.5 parent: 13329 - uid: 29576 components: - type: Transform - rot: 1.5707963267948966 rad pos: 75.5,33.5 parent: 13329 - uid: 29577 components: - type: Transform - rot: 1.5707963267948966 rad pos: 76.5,31.5 parent: 13329 - uid: 29578 components: - type: Transform - rot: 1.5707963267948966 rad pos: 76.5,32.5 parent: 13329 - uid: 29579 components: - type: Transform - rot: 1.5707963267948966 rad pos: 76.5,33.5 parent: 13329 - uid: 29580 components: - type: Transform - rot: 1.5707963267948966 rad pos: 78.5,33.5 parent: 13329 - uid: 29581 components: - type: Transform - rot: 1.5707963267948966 rad pos: 78.5,32.5 parent: 13329 - uid: 29582 components: - type: Transform - rot: 1.5707963267948966 rad pos: 78.5,31.5 parent: 13329 - uid: 29583 components: - type: Transform - rot: 1.5707963267948966 rad pos: 79.5,33.5 parent: 13329 - uid: 29584 components: - type: Transform - rot: 1.5707963267948966 rad pos: 79.5,32.5 parent: 13329 - uid: 29585 components: - type: Transform - rot: 1.5707963267948966 rad pos: 79.5,31.5 parent: 13329 - uid: 32688 components: - type: Transform - rot: 1.5707963267948966 rad pos: 97.5,23.5 parent: 13329 - uid: 32689 components: - type: Transform - rot: 1.5707963267948966 rad pos: 97.5,24.5 parent: 13329 - uid: 32690 components: - type: Transform - rot: 1.5707963267948966 rad pos: 98.5,23.5 parent: 13329 - uid: 32691 components: - type: Transform - rot: 1.5707963267948966 rad pos: 98.5,24.5 parent: 13329 - uid: 32692 components: - type: Transform - rot: 1.5707963267948966 rad pos: 99.5,23.5 parent: 13329 - uid: 32693 components: - type: Transform - rot: 1.5707963267948966 rad pos: 99.5,24.5 parent: 13329 - uid: 33833 @@ -80789,37 +80615,31 @@ entities: - uid: 29545 components: - type: Transform - rot: -1.5707963267948966 rad pos: 69.5,34.5 parent: 13329 - uid: 29546 components: - type: Transform - rot: -1.5707963267948966 rad pos: 69.5,35.5 parent: 13329 - uid: 29547 components: - type: Transform - rot: -1.5707963267948966 rad pos: 70.5,34.5 parent: 13329 - uid: 29548 components: - type: Transform - rot: -1.5707963267948966 rad pos: 70.5,35.5 parent: 13329 - uid: 29549 components: - type: Transform - rot: -1.5707963267948966 rad pos: 71.5,34.5 parent: 13329 - uid: 29550 components: - type: Transform - rot: -1.5707963267948966 rad pos: 71.5,35.5 parent: 13329 - uid: 29563 @@ -81107,25 +80927,21 @@ entities: - uid: 26223 components: - type: Transform - rot: 1.5707963267948966 rad pos: 85.5,-16.5 parent: 13329 - uid: 26224 components: - type: Transform - rot: 1.5707963267948966 rad pos: 85.5,-15.5 parent: 13329 - uid: 26225 components: - type: Transform - rot: 1.5707963267948966 rad pos: 86.5,-16.5 parent: 13329 - uid: 26226 components: - type: Transform - rot: 1.5707963267948966 rad pos: 86.5,-15.5 parent: 13329 - uid: 29222 @@ -81168,6 +80984,26 @@ entities: - type: Transform pos: 64.5,8.5 parent: 13329 + - uid: 36038 + components: + - type: Transform + pos: 41.5,16.5 + parent: 13329 + - uid: 36039 + components: + - type: Transform + pos: 41.5,15.5 + parent: 13329 + - uid: 36040 + components: + - type: Transform + pos: 42.5,16.5 + parent: 13329 + - uid: 36041 + components: + - type: Transform + pos: 42.5,15.5 + parent: 13329 - proto: CarpetPink entities: - uid: 29218 @@ -83148,6 +82984,18 @@ entities: - type: Transform pos: 38.5,28.5 parent: 13329 + - uid: 8120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,28.5 + parent: 13329 + - uid: 8968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,28.5 + parent: 13329 - uid: 9833 components: - type: Transform @@ -83158,6 +83006,12 @@ entities: - type: Transform pos: 13.5,-36.5 parent: 13329 + - uid: 10425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,28.5 + parent: 13329 - uid: 10704 components: - type: Transform @@ -89265,6 +89119,42 @@ entities: rot: 3.141592653589793 rad pos: 99.5,52.5 parent: 13329 + - uid: 36036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,26.5 + parent: 13329 + - uid: 36037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,26.5 + parent: 13329 + - uid: 36050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,10.5 + parent: 13329 + - uid: 36051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,9.5 + parent: 13329 + - uid: 36057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 13329 + - uid: 36058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 13329 - proto: Chair entities: - uid: 2323 @@ -89498,6 +89388,11 @@ entities: rot: 3.141592653589793 rad pos: 2.5,17.5 parent: 13329 + - uid: 9149 + components: + - type: Transform + pos: 33.5,3.5 + parent: 13329 - uid: 9457 components: - type: Transform @@ -89519,17 +89414,6 @@ entities: - type: Transform pos: 42.5,29.5 parent: 13329 - - uid: 10377 - components: - - type: Transform - pos: 43.5,29.5 - parent: 13329 - - uid: 10378 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,27.5 - parent: 13329 - uid: 10379 components: - type: Transform @@ -89541,6 +89425,30 @@ entities: - type: Transform pos: 45.5,29.5 parent: 13329 + - uid: 10474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,1.5 + parent: 13329 + - uid: 10670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,1.5 + parent: 13329 + - uid: 11564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,21.5 + parent: 13329 + - uid: 11565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,23.5 + parent: 13329 - uid: 11677 components: - type: Transform @@ -89624,6 +89532,12 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-24.5 parent: 13329 + - uid: 14593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,5.5 + parent: 13329 - uid: 15538 components: - type: Transform @@ -89981,6 +89895,18 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,-10.5 parent: 13329 + - uid: 36042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 13329 + - uid: 36043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,5.5 + parent: 13329 - proto: ChairFolding entities: - uid: 897 @@ -89989,12 +89915,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.420344,26.658598 parent: 13329 - - uid: 1502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,11.5 - parent: 13329 - uid: 3735 components: - type: Transform @@ -90307,6 +90227,12 @@ entities: rot: 3.141592653589793 rad pos: 34.5223,-29.434305 parent: 13329 + - uid: 8971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,9.5 + parent: 13329 - uid: 9384 components: - type: Transform @@ -90582,12 +90508,6 @@ entities: - type: Transform pos: 83.5,-41.5 parent: 13329 - - uid: 36021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,21.5 - parent: 13329 - proto: ChairOfficeLight entities: - uid: 15343 @@ -90883,6 +90803,40 @@ entities: rot: 3.141592653589793 rad pos: -8.5,70.5 parent: 13329 + - uid: 7234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,14.5 + parent: 13329 + - uid: 8159 + components: + - type: Transform + pos: 41.5,17.5 + parent: 13329 + - uid: 8160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,16.5 + parent: 13329 + - uid: 8162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,15.5 + parent: 13329 + - uid: 10475 + components: + - type: Transform + pos: 42.5,17.5 + parent: 13329 + - uid: 11560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,14.5 + parent: 13329 - uid: 29256 components: - type: Transform @@ -91054,6 +91008,13 @@ entities: rot: 3.141592653589793 rad pos: 80.5,-48.5 parent: 13329 +- proto: CheapLighter + entities: + - uid: 7173 + components: + - type: Transform + pos: 46.6966,20.050323 + parent: 13329 - proto: CheapRollerBed entities: - uid: 18570 @@ -91156,10 +91117,10 @@ entities: - type: Transform pos: -4.3961477,10.577835 parent: 13329 - - uid: 10426 + - uid: 10918 components: - type: Transform - pos: 46.518105,20.451113 + pos: 41.491898,16.546383 parent: 13329 - uid: 13611 components: @@ -91183,6 +91144,18 @@ entities: - type: Transform pos: 84.62421,-10.556693 parent: 13329 +- proto: Cigarette + entities: + - uid: 7172 + components: + - type: Transform + pos: 51.394516,14.043486 + parent: 13329 + - uid: 10567 + components: + - type: Transform + pos: 51.467434,14.178997 + parent: 13329 - proto: CigaretteSpent entities: - uid: 12139 @@ -91298,6 +91271,13 @@ entities: - type: Transform pos: -23.315784,41.777092 parent: 13329 +- proto: CigPackBlack + entities: + - uid: 9403 + components: + - type: Transform + pos: 46.35285,20.008629 + parent: 13329 - proto: CircuitImprinter entities: - uid: 15506 @@ -91397,6 +91377,11 @@ entities: - 0 - 0 - 0 + - uid: 10586 + components: + - type: Transform + pos: 49.5,25.5 + parent: 13329 - proto: ClosetEmergencyFilledRandom entities: - uid: 2609 @@ -93402,6 +93387,11 @@ entities: - 0 - 0 - 0 + - uid: 10302 + components: + - type: Transform + pos: 4.5,13.5 + parent: 13329 - proto: ClosetL3Filled entities: - uid: 18846 @@ -94941,6 +94931,20 @@ entities: - 0 - 0 - 0 +- proto: ClosetWallOrange + entities: + - uid: 7244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,12.5 + parent: 13329 + - uid: 7245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,15.5 + parent: 13329 - proto: ClothingBackpackClown entities: - uid: 34574 @@ -94964,6 +94968,16 @@ entities: parent: 13329 - proto: ClothingBackpackDuffelSurgeryFilled entities: + - uid: 7408 + components: + - type: Transform + pos: 37.43726,3.6698418 + parent: 13329 + - uid: 10563 + components: + - type: Transform + pos: 8.477257,56.609226 + parent: 13329 - uid: 14372 components: - type: Transform @@ -95074,6 +95088,13 @@ entities: - type: Transform pos: 56.473743,-16.515564 parent: 13329 +- proto: ClothingEyesGlassesCheapSunglasses + entities: + - uid: 7238 + components: + - type: Transform + pos: 46.455315,20.615892 + parent: 13329 - proto: ClothingEyesGlassesGarGiga entities: - uid: 32723 @@ -95312,10 +95333,10 @@ entities: - type: Transform pos: -19.45746,69.26101 parent: 13329 - - uid: 10568 + - uid: 8082 components: - type: Transform - pos: 43.459335,1.59483 + pos: 37.535637,1.7989228 parent: 13329 - uid: 18482 components: @@ -95365,6 +95386,13 @@ entities: - type: Transform pos: 29.491692,-22.491154 parent: 13329 +- proto: ClothingHeadBandBlack + entities: + - uid: 7416 + components: + - type: Transform + pos: 51.529934,13.603227 + parent: 13329 - proto: ClothingHeadBandRed entities: - uid: 34062 @@ -95586,10 +95614,10 @@ entities: parent: 13329 - proto: ClothingHeadHatPaper entities: - - uid: 34247 + - uid: 10304 components: - type: Transform - pos: 46.47809,19.997993 + pos: 41.523148,16.076572 parent: 13329 - proto: ClothingHeadHatPumpkin entities: @@ -95984,10 +96012,10 @@ entities: - type: Transform pos: -19.485485,68.55882 parent: 13329 - - uid: 10567 + - uid: 8074 components: - type: Transform - pos: 45.50621,1.547955 + pos: 35.514805,1.757227 parent: 13329 - uid: 18750 components: @@ -96006,13 +96034,6 @@ entities: - type: Transform pos: 90.33867,46.51819 parent: 13329 -- proto: ClothingNeckCloakMiner - entities: - - uid: 33335 - components: - - type: Transform - pos: 12.603026,74.274254 - parent: 13329 - proto: ClothingNeckCloakTrans entities: - uid: 34255 @@ -96065,6 +96086,11 @@ entities: parent: 13329 - proto: ClothingNeckStethoscope entities: + - uid: 8075 + components: + - type: Transform + pos: 35.368973,1.6217161 + parent: 13329 - uid: 19016 components: - type: Transform @@ -96241,6 +96267,13 @@ entities: - type: Transform pos: -9.515972,-16.273252 parent: 13329 +- proto: ClothingOuterCoatGentle + entities: + - uid: 9538 + components: + - type: Transform + pos: 51.498684,14.551803 + parent: 13329 - proto: ClothingOuterCoatLab entities: - uid: 19754 @@ -97453,37 +97486,18 @@ entities: parent: 13329 - proto: ComputerCargoOrdersSecurity entities: - - uid: 18860 + - uid: 8434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,23.5 + pos: 32.5,26.5 parent: 13329 - proto: ComputerCargoOrdersService entities: - - uid: 1292 - components: - - type: Transform - pos: -21.5,22.5 - parent: 13329 -- proto: ComputerCargoShuttle - entities: - - uid: 2671 + - uid: 35873 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-16.5 - parent: 13329 - - uid: 11717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-27.5 - parent: 13329 - - uid: 11748 - components: - - type: Transform - pos: -1.5,-24.5 + pos: -10.5,28.5 parent: 13329 - proto: ComputerComms entities: @@ -97529,11 +97543,6 @@ entities: - type: Transform pos: 20.5,3.5 parent: 13329 - - uid: 9649 - components: - - type: Transform - pos: 46.5,3.5 - parent: 13329 - uid: 11812 components: - type: Transform @@ -97640,6 +97649,11 @@ entities: rot: 3.141592653589793 rad pos: 21.5,1.5 parent: 13329 + - uid: 9647 + components: + - type: Transform + pos: 33.5,7.5 + parent: 13329 - uid: 10148 components: - type: Transform @@ -97907,19 +97921,43 @@ entities: - type: Transform pos: 14.5,-29.5 parent: 13329 +- proto: ComputerSalvageJobBoard + entities: + - uid: 33335 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 13329 - proto: ComputerShuttleCargo entities: + - uid: 2671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 13329 - uid: 11569 components: - type: Transform pos: 5.5,-36.5 parent: 13329 + - uid: 11717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-27.5 + parent: 13329 - uid: 11721 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-27.5 parent: 13329 + - uid: 11748 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 13329 - proto: ComputerSolarControl entities: - uid: 26230 @@ -98033,11 +98071,6 @@ entities: - type: Transform pos: 21.5,3.5 parent: 13329 - - uid: 10141 - components: - - type: Transform - pos: 32.5,26.5 - parent: 13329 - uid: 10268 components: - type: Transform @@ -98104,25 +98137,11 @@ entities: - type: Transform pos: 15.5,39.5 parent: 13329 - - uid: 10771 + - uid: 9466 components: - type: Transform - pos: 30.5,3.5 - parent: 13329 - - uid: 10772 - components: - - type: Transform - pos: 27.5,3.5 - parent: 13329 - - uid: 10773 - components: - - type: Transform - pos: 33.5,3.5 - parent: 13329 - - uid: 10774 - components: - - type: Transform - pos: 36.5,3.5 + rot: 1.5707963267948966 rad + pos: 46.5,21.5 parent: 13329 - uid: 26083 components: @@ -99242,10 +99261,10 @@ entities: parent: 13329 - proto: CrateLockBoxSecurity entities: - - uid: 36024 + - uid: 35973 components: - type: Transform - pos: 26.5,7.5 + pos: 32.5,24.5 parent: 13329 - proto: CrateLockBoxService entities: @@ -99259,6 +99278,11 @@ entities: - type: Transform pos: -19.5,7.5 parent: 13329 + - uid: 36068 + components: + - type: Transform + pos: -10.5,30.5 + parent: 13329 - proto: CrateMaterialSteel entities: - uid: 11674 @@ -99511,6 +99535,13 @@ entities: - type: Transform pos: 14.5,12.5 parent: 13329 +- proto: CrateServiceCustomSmokable + entities: + - uid: 8425 + components: + - type: Transform + pos: 43.5,27.5 + parent: 13329 - proto: CrateServiceJanitorialSupplies entities: - uid: 1445 @@ -99536,6 +99567,11 @@ entities: - 0 - 0 - 0 + - uid: 35872 + components: + - type: Transform + pos: 5.5,9.5 + parent: 13329 - proto: CrateTrashCartJani entities: - uid: 10779 @@ -99587,10 +99623,10 @@ entities: - type: Transform pos: -28.52797,54.547684 parent: 13329 - - uid: 10425 + - uid: 13327 components: - type: Transform - pos: 49.53625,25.598843 + pos: 46.470737,18.612787 parent: 13329 - uid: 29080 components: @@ -99943,10 +99979,10 @@ entities: parent: 13329 - proto: DefaultStationBeaconBrig entities: - - uid: 27903 + - uid: 8458 components: - type: Transform - pos: 32.5,2.5 + pos: 46.5,15.5 parent: 13329 - proto: DefaultStationBeaconCaptainsQuarters entities: @@ -100282,11 +100318,6 @@ entities: parent: 13329 - type: NavMapBeacon text: Prison Yard - - uid: 30690 - components: - - type: Transform - pos: 47.5,17.5 - parent: 13329 - proto: DefaultStationBeaconPowerBank entities: - uid: 26347 @@ -100397,25 +100428,11 @@ entities: - type: Transform pos: 22.5,2.5 parent: 13329 - - uid: 23874 - components: - - type: Transform - pos: 44.5,2.5 - parent: 13329 - - type: NavMapBeacon - text: Infirmary - uid: 23884 components: - type: Transform pos: 26.5,29.5 parent: 13329 - - uid: 26291 - components: - - type: Transform - pos: 46.5,8.5 - parent: 13329 - - type: NavMapBeacon - text: Solitary - uid: 26293 components: - type: Transform @@ -100602,6 +100619,12 @@ entities: parent: 13329 - proto: DefibrillatorCabinetFilled entities: + - uid: 9346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 13329 - uid: 11850 components: - type: Transform @@ -100622,11 +100645,6 @@ entities: - type: Transform pos: 5.5,64.5 parent: 13329 - - uid: 13353 - components: - - type: Transform - pos: 44.5,4.5 - parent: 13329 - uid: 13462 components: - type: Transform @@ -100680,10 +100698,10 @@ entities: - type: Transform pos: -26.47236,54.50081 parent: 13329 - - uid: 10428 + - uid: 7164 components: - type: Transform - pos: 46.56498,18.665491 + pos: 41.960648,16.494263 parent: 13329 - uid: 29185 components: @@ -100960,17 +100978,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-2.5 parent: 13329 - - uid: 7410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,1.5 - parent: 13329 - - uid: 7411 - components: - - type: Transform - pos: 42.5,6.5 - parent: 13329 - uid: 7433 components: - type: Transform @@ -101005,34 +101012,39 @@ entities: - type: Transform pos: 24.5,33.5 parent: 13329 + - uid: 8473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,20.5 + parent: 13329 + - uid: 8474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,24.5 + parent: 13329 + - uid: 8868 + components: + - type: Transform + pos: 34.5,6.5 + parent: 13329 + - uid: 9110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 13329 - uid: 10225 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-10.5 parent: 13329 - - uid: 10360 + - uid: 10317 components: - type: Transform - pos: 42.5,20.5 - parent: 13329 - - uid: 10363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,20.5 - parent: 13329 - - uid: 10364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,24.5 - parent: 13329 - - uid: 10365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,24.5 + pos: 43.5,24.5 parent: 13329 - uid: 10858 components: @@ -101382,6 +101394,12 @@ entities: rot: 3.141592653589793 rad pos: 68.5,-25.5 parent: 13329 + - uid: 26291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,20.5 + parent: 13329 - uid: 26979 components: - type: Transform @@ -101691,6 +101709,12 @@ entities: rot: -1.5707963267948966 rad pos: 82.5,50.5 parent: 13329 + - uid: 35985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,3.5 + parent: 13329 - proto: DisposalJunction entities: - uid: 965 @@ -101966,6 +101990,12 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-2.5 parent: 13329 + - uid: 8869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,6.5 + parent: 13329 - uid: 11680 components: - type: Transform @@ -103881,73 +103911,23 @@ entities: - type: Transform pos: 24.5,5.5 parent: 13329 - - uid: 7412 + - uid: 7409 components: - type: Transform - pos: 42.5,2.5 + rot: 3.141592653589793 rad + pos: 31.5,5.5 parent: 13329 - - uid: 7413 + - uid: 7410 components: - type: Transform - pos: 42.5,3.5 + rot: 3.141592653589793 rad + pos: 31.5,4.5 parent: 13329 - - uid: 7414 + - uid: 7411 components: - type: Transform - pos: 42.5,4.5 - parent: 13329 - - uid: 7415 - components: - - type: Transform - pos: 42.5,5.5 - parent: 13329 - - uid: 7416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,6.5 - parent: 13329 - - uid: 7417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,6.5 - parent: 13329 - - uid: 7418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,6.5 - parent: 13329 - - uid: 7419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,6.5 - parent: 13329 - - uid: 7420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 13329 - - uid: 7421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,6.5 - parent: 13329 - - uid: 7422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,6.5 - parent: 13329 - - uid: 7423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,6.5 + rot: 3.141592653589793 rad + pos: 34.5,5.5 parent: 13329 - uid: 7424 components: @@ -103961,12 +103941,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,6.5 parent: 13329 - - uid: 7426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,6.5 - parent: 13329 - uid: 7427 components: - type: Transform @@ -104368,6 +104342,24 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-5.5 parent: 13329 + - uid: 8454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,23.5 + parent: 13329 + - uid: 9353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,3.5 + parent: 13329 + - uid: 9354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,4.5 + parent: 13329 - uid: 9545 components: - type: Transform @@ -104566,15 +104558,11 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,-10.5 parent: 13329 - - uid: 10359 + - uid: 10445 components: - type: Transform - pos: 41.5,23.5 - parent: 13329 - - uid: 10361 - components: - - type: Transform - pos: 41.5,21.5 + rot: 3.141592653589793 rad + pos: 34.5,2.5 parent: 13329 - uid: 10862 components: @@ -107539,6 +107527,12 @@ entities: - type: Transform pos: 55.5,-0.5 parent: 13329 + - uid: 27903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,21.5 + parent: 13329 - uid: 28962 components: - type: Transform @@ -109547,6 +109541,12 @@ entities: rot: 3.141592653589793 rad pos: 82.5,52.5 parent: 13329 + - uid: 35982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,3.5 + parent: 13329 - proto: DisposalRouter entities: - uid: 11006 @@ -109736,18 +109736,18 @@ entities: - type: Transform pos: 21.5,-0.5 parent: 13329 + - uid: 7280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 13329 - uid: 7407 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,11.5 parent: 13329 - - uid: 7409 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,1.5 - parent: 13329 - uid: 7462 components: - type: Transform @@ -109758,6 +109758,12 @@ entities: - type: Transform pos: 29.5,26.5 parent: 13329 + - uid: 8874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,22.5 + parent: 13329 - uid: 10356 components: - type: Transform @@ -109769,12 +109775,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,19.5 parent: 13329 - - uid: 10358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,22.5 - parent: 13329 - uid: 10856 components: - type: Transform @@ -110112,6 +110112,12 @@ entities: rot: -1.5707963267948966 rad pos: 83.5,53.5 parent: 13329 + - uid: 35984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 13329 - proto: DisposalUnit entities: - uid: 57 @@ -110234,10 +110240,15 @@ entities: - type: Transform pos: 27.5,11.5 parent: 13329 - - uid: 7408 + - uid: 7537 components: - type: Transform - pos: 41.5,1.5 + pos: 29.5,3.5 + parent: 13329 + - uid: 8877 + components: + - type: Transform + pos: 33.5,1.5 parent: 13329 - uid: 10125 components: @@ -110510,11 +110521,11 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-1.5 parent: 13329 - - uid: 10362 + - uid: 8422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,22.5 + rot: -1.5707963267948966 rad + pos: 43.5,22.5 parent: 13329 - uid: 11616 components: @@ -110898,6 +110909,13 @@ entities: - type: Transform pos: 90.63146,46.774357 parent: 13329 +- proto: DrinkHotCoffee + entities: + - uid: 7308 + components: + - type: Transform + pos: 47.082146,10.460889 + parent: 13329 - proto: DrinkLithiumFlask entities: - uid: 32501 @@ -111250,15 +111268,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 11016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,5.5 - parent: 13329 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 11017 components: - type: Transform @@ -111267,15 +111276,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 11018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,17.5 - parent: 13329 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 11019 components: - type: Transform @@ -111899,6 +111899,13 @@ entities: parent: 13329 - type: FaxMachine name: Security + - uid: 10562 + components: + - type: Transform + pos: 45.5,12.5 + parent: 13329 + - type: FaxMachine + name: Prison - uid: 11750 components: - type: Transform @@ -112168,6 +112175,11 @@ entities: - type: Transform pos: -28.5,17.5 parent: 13329 + - uid: 36059 + components: + - type: Transform + pos: 44.5,12.5 + parent: 13329 - proto: filingCabinetRandom entities: - uid: 2211 @@ -112328,7 +112340,6 @@ entities: - 665 - 629 - 20458 - - 653 - 20459 - uid: 663 components: @@ -112554,6 +112565,50 @@ entities: - 6820 - 6821 - 6917 + - uid: 7142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-4.5 + parent: 13329 + - type: DeviceList + devices: + - 7157 + - 7158 + - 7156 + - 21371 + - 21370 + - 21369 + - 14472 + - 14473 + - 14474 + - 7589 + - 9345 + - 36052 + - uid: 8396 + components: + - type: Transform + pos: 35.5,0.5 + parent: 13329 + - type: DeviceList + devices: + - 8144 + - 8147 + - 8167 + - 7157 + - 7158 + - 7156 + - 7589 + - 9345 + - 36052 + - 8049 + - 8048 + - 7089 + - 7090 + - 10118 + - 10117 + - 10116 + - 14589 - uid: 8620 components: - type: Transform @@ -112653,6 +112708,21 @@ entities: - 8059 - 8060 - 8614 + - uid: 9459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,9.5 + parent: 13329 + - type: DeviceList + devices: + - 10297 + - 10435 + - 35466 + - 36033 + - 7558 + - 35981 + - 8477 - uid: 11472 components: - type: Transform @@ -112884,24 +112954,6 @@ entities: - 2049 - 2050 - 14588 - - uid: 14592 - components: - - type: Transform - pos: 35.5,0.5 - parent: 13329 - - type: DeviceList - devices: - - 10116 - - 10117 - - 10118 - - 7089 - - 7090 - - 14589 - - 8049 - - 8048 - - 14566 - - 14567 - - 14568 - uid: 17758 components: - type: Transform @@ -113074,27 +113126,6 @@ entities: - 17584 - 17585 - 17785 - - uid: 25906 - components: - - type: Transform - pos: 48.5,0.5 - parent: 13329 - - type: DeviceList - devices: - - 14566 - - 14567 - - 14568 - - 14474 - - 14473 - - 14472 - - 21369 - - 21370 - - 21371 - - 8167 - - 8147 - - 8144 - - 25507 - - 25506 - uid: 25909 components: - type: Transform @@ -113680,15 +113711,6 @@ entities: - type: Transform pos: -12.5,25.5 parent: 13329 - - uid: 653 - components: - - type: Transform - pos: -10.5,27.5 - parent: 13329 - - type: DeviceNetwork - deviceLists: - - 662 - - 611 - uid: 654 components: - type: Transform @@ -113927,19 +113949,16 @@ entities: - uid: 4603 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,48.5 parent: 13329 - uid: 4604 components: - type: Transform - rot: 1.5707963267948966 rad pos: -31.5,41.5 parent: 13329 - uid: 4605 components: - type: Transform - rot: 1.5707963267948966 rad pos: -32.5,41.5 parent: 13329 - uid: 4802 @@ -114025,25 +114044,21 @@ entities: - uid: 6820 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,28.5 parent: 13329 - uid: 6821 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,29.5 parent: 13329 - uid: 6822 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,22.5 parent: 13329 - uid: 6823 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,23.5 parent: 13329 - uid: 7089 @@ -114051,21 +114066,90 @@ entities: - type: Transform pos: 17.5,-3.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8396 + - 8417 - uid: 7090 components: - type: Transform pos: 16.5,-3.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8396 + - 8417 + - uid: 7156 + components: + - type: Transform + pos: 54.5,-3.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8417 + - 8396 + - 8882 + - 7142 + - uid: 7157 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8417 + - 8396 + - 8882 + - 7142 + - uid: 7158 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8417 + - 8396 + - 8882 + - 7142 + - uid: 7558 + components: + - type: Transform + pos: 41.5,4.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8168 + - 9459 + - uid: 7589 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8417 + - 8396 + - 8882 + - 7142 - uid: 8048 components: - type: Transform pos: 23.5,0.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8396 + - 8417 - uid: 8049 components: - type: Transform pos: 25.5,0.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8396 + - 8417 - uid: 8050 components: - type: Transform @@ -114176,6 +114260,10 @@ entities: - type: Transform pos: 54.5,1.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8417 + - 8396 - uid: 8146 components: - type: Transform @@ -114186,11 +114274,19 @@ entities: - type: Transform pos: 55.5,1.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8417 + - 8396 - uid: 8167 components: - type: Transform pos: 56.5,1.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8417 + - 8396 - uid: 8170 components: - type: Transform @@ -114216,6 +114312,15 @@ entities: - type: Transform pos: 22.5,26.5 parent: 13329 + - uid: 8477 + components: + - type: Transform + pos: 43.5,4.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8168 + - 9459 - uid: 8634 components: - type: Transform @@ -114231,6 +114336,26 @@ entities: - type: Transform pos: 22.5,13.5 parent: 13329 + - uid: 8941 + components: + - type: Transform + pos: 38.5,0.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 7415 + - 8417 + - uid: 9345 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8417 + - 8396 + - 8882 + - 7142 - uid: 9456 components: - type: Transform @@ -114356,16 +114481,54 @@ entities: - type: Transform pos: 23.5,-3.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8396 + - 8417 - uid: 10117 components: - type: Transform pos: 24.5,-3.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8396 + - 8417 - uid: 10118 components: - type: Transform pos: 25.5,-3.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8396 + - 8417 + - uid: 10297 + components: + - type: Transform + pos: 41.5,8.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 10591 + - 9459 + - uid: 10435 + components: + - type: Transform + pos: 43.5,8.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 10591 + - 9459 + - uid: 10671 + components: + - type: Transform + pos: 41.5,0.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8168 - uid: 10968 components: - type: Transform @@ -114596,16 +114759,25 @@ entities: - type: Transform pos: 41.5,-12.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 7142 - uid: 14473 components: - type: Transform pos: 42.5,-12.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 7142 - uid: 14474 components: - type: Transform pos: 43.5,-12.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 7142 - uid: 14475 components: - type: Transform @@ -114636,21 +114808,6 @@ entities: - type: Transform pos: 26.5,-15.5 parent: 13329 - - uid: 14566 - components: - - type: Transform - pos: 40.5,-2.5 - parent: 13329 - - uid: 14567 - components: - - type: Transform - pos: 40.5,-1.5 - parent: 13329 - - uid: 14568 - components: - - type: Transform - pos: 40.5,-0.5 - parent: 13329 - uid: 17560 components: - type: Transform @@ -115014,16 +115171,25 @@ entities: - type: Transform pos: 57.5,-11.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 7142 - uid: 21370 components: - type: Transform pos: 57.5,-10.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 7142 - uid: 21371 components: - type: Transform pos: 57.5,-9.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 7142 - uid: 21372 components: - type: Transform @@ -115244,7 +115410,6 @@ entities: - uid: 22720 components: - type: Transform - rot: 3.141592653589793 rad pos: 88.5,0.5 parent: 13329 - type: DeviceNetwork @@ -115254,7 +115419,6 @@ entities: - uid: 22730 components: - type: Transform - rot: 3.141592653589793 rad pos: 88.5,1.5 parent: 13329 - type: DeviceNetwork @@ -115528,6 +115692,26 @@ entities: deviceLists: - 28840 - 28841 + - uid: 35981 + components: + - type: Transform + pos: 42.5,4.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8168 + - 9459 + - uid: 36052 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8417 + - 8396 + - 8882 + - 7142 - proto: Fireplace entities: - uid: 6349 @@ -117068,7 +117252,7 @@ entities: pos: 28.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 19788 components: - type: Transform @@ -117972,6 +118156,30 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' + - uid: 7160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,3.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,2.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,17.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8029 components: - type: Transform @@ -117987,49 +118195,11 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8106 + - uid: 8079 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,9.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,25.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8145 - components: - - type: Transform - pos: 50.5,25.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8168 - components: - - type: Transform - pos: 44.5,25.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,25.5 + pos: 31.5,2.5 parent: 13329 - type: AtmosPipeColor color: '#990000FF' @@ -118110,6 +118280,14 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' + - uid: 9099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,15.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9262 components: - type: Transform @@ -118255,6 +118433,22 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,17.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,14.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11042 components: - type: Transform @@ -118379,6 +118573,14 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' + - uid: 11561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,3.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12670 components: - type: Transform @@ -119610,13 +119812,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8082 - components: - - type: Transform - pos: 28.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8098 components: - type: Transform @@ -125931,6 +126126,86 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,19.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,2.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,22.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,13.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,18.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,19.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,17.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,20.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,17.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,18.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7881 components: - type: Transform @@ -127032,51 +127307,11 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' - - uid: 8073 + - uid: 8080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,5.5 + rot: 3.141592653589793 rad + pos: 31.5,3.5 parent: 13329 - type: AtmosPipeColor color: '#990000FF' @@ -127088,22 +127323,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' - - uid: 8085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8087 components: - type: Transform @@ -127200,110 +127419,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,7.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,11.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,8.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,9.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,6.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,7.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,8.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,9.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,9.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,9.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,9.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,9.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,9.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8121 components: - type: Transform @@ -127318,212 +127433,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' - - uid: 8124 - components: - - type: Transform - pos: 50.5,11.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8125 - components: - - type: Transform - pos: 50.5,12.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8126 - components: - - type: Transform - pos: 50.5,13.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8127 - components: - - type: Transform - pos: 50.5,14.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8128 - components: - - type: Transform - pos: 50.5,15.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8129 - components: - - type: Transform - pos: 50.5,16.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8130 - components: - - type: Transform - pos: 42.5,12.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8131 - components: - - type: Transform - pos: 42.5,13.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8132 - components: - - type: Transform - pos: 42.5,14.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8133 - components: - - type: Transform - pos: 42.5,15.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8134 - components: - - type: Transform - pos: 42.5,16.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8148 - components: - - type: Transform - pos: 42.5,18.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8149 - components: - - type: Transform - pos: 42.5,19.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8150 - components: - - type: Transform - pos: 42.5,20.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8151 - components: - - type: Transform - pos: 42.5,21.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8152 - components: - - type: Transform - pos: 42.5,22.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8153 - components: - - type: Transform - pos: 42.5,23.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8154 - components: - - type: Transform - pos: 42.5,24.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,25.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,25.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,25.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,24.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,23.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,22.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,21.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,20.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,19.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,18.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8171 components: - type: Transform @@ -128853,66 +128762,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' - - uid: 8417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,6.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,4.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,3.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8422 - components: - - type: Transform - pos: 27.5,6.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8423 - components: - - type: Transform - pos: 27.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8424 - components: - - type: Transform - pos: 27.5,4.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8425 - components: - - type: Transform - pos: 27.5,3.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8426 components: - type: Transform @@ -128920,27 +128769,14 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8427 - components: - - type: Transform - pos: 30.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8428 components: - type: Transform - pos: 30.5,4.5 + rot: 3.141592653589793 rad + pos: 34.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8429 - components: - - type: Transform - pos: 30.5,3.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 8430 components: - type: Transform @@ -128948,52 +128784,19 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8431 - components: - - type: Transform - pos: 33.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8432 - components: - - type: Transform - pos: 33.5,4.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8433 - components: - - type: Transform - pos: 33.5,3.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8434 - components: - - type: Transform - pos: 37.5,6.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8435 components: - type: Transform - pos: 37.5,5.5 + rot: 3.141592653589793 rad + pos: 45.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 8436 components: - type: Transform - pos: 37.5,4.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8437 - components: - - type: Transform - pos: 37.5,3.5 + rot: 1.5707963267948966 rad + pos: 48.5,14.5 parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' @@ -129091,80 +128894,11 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' - - uid: 8454 - components: - - type: Transform - pos: 38.5,4.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8455 - components: - - type: Transform - pos: 38.5,3.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8456 - components: - - type: Transform - pos: 34.5,4.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8457 components: - type: Transform - pos: 34.5,3.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8458 - components: - - type: Transform - pos: 34.5,2.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8459 - components: - - type: Transform - pos: 31.5,4.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8460 - components: - - type: Transform - pos: 31.5,3.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8461 - components: - - type: Transform - pos: 31.5,2.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8462 - components: - - type: Transform - pos: 28.5,4.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8463 - components: - - type: Transform - pos: 28.5,3.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8464 - components: - - type: Transform - pos: 28.5,2.5 + rot: -1.5707963267948966 rad + pos: 43.5,16.5 parent: 13329 - type: AtmosPipeColor color: '#990000FF' @@ -129210,14 +128944,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,2.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8480 components: - type: Transform @@ -129910,6 +129636,270 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' + - uid: 8894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,9.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,4.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,7.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,12.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,11.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,10.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,9.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,7.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,6.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,4.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,3.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,4.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,8.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,10.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,15.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,15.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,12.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,15.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,16.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,4.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,4.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,7.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9255 components: - type: Transform @@ -130325,6 +130315,92 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' + - uid: 9334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,3.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,9.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,15.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,17.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,23.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,21.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9528 + components: + - type: Transform + pos: 43.5,11.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9529 + components: + - type: Transform + pos: 43.5,12.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,14.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9872 components: - type: Transform @@ -131216,6 +131292,116 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10303 + components: + - type: Transform + pos: 43.5,13.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,14.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,22.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,11.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,17.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,14.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10471 + components: + - type: Transform + pos: 43.5,10.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,6.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,7.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,9.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,6.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,6.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,8.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,3.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11011 components: - type: Transform @@ -143596,6 +143782,14 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 25906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,21.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27637 components: - type: Transform @@ -147209,6 +147403,38 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' + - uid: 35792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,16.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 35793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,16.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 35856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,20.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 35993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,6.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 322 @@ -148226,20 +148452,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8072 - components: - - type: Transform - pos: 38.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8075 - components: - - type: Transform - pos: 34.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8076 components: - type: Transform @@ -148247,28 +148459,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8078 - components: - - type: Transform - pos: 31.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8090 - components: - - type: Transform - pos: 37.5,7.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8093 components: - type: Transform @@ -148284,61 +148474,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8100 - components: - - type: Transform - pos: 27.5,7.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,7.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,9.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,10.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,10.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,17.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,17.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8176 components: - type: Transform @@ -148603,14 +148738,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,5.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8583 components: - type: Transform @@ -148626,6 +148753,45 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' + - uid: 8895 + components: + - type: Transform + pos: 34.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,7.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,6.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,15.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9265 components: - type: Transform @@ -148673,6 +148839,38 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' + - uid: 9352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,9.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,16.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9878 components: - type: Transform @@ -148782,6 +148980,29 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10333 + components: + - type: Transform + pos: 31.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,5.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,9.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11052 components: - type: Transform @@ -151086,6 +151307,14 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' + - uid: 35791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,14.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPort entities: - uid: 4697 @@ -151367,7 +151596,7 @@ entities: pos: 26.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 15382 components: - type: Transform @@ -152087,28 +152316,15 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,10.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,17.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8165 + - uid: 8105 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,24.5 + pos: 28.5,2.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 9002 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8256 @@ -152119,14 +152335,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,2.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8452 components: - type: Transform @@ -152135,38 +152343,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,2.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,2.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,2.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,2.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8531 components: - type: Transform @@ -152260,6 +152436,28 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,9.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8902 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,14.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 9461 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9294 components: - type: Transform @@ -152290,6 +152488,27 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,2.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8168 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9460 + components: + - type: Transform + pos: 47.5,24.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 10591 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9948 components: - type: Transform @@ -152330,6 +152549,28 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,2.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 7415 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,14.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 10591 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11041 components: - type: Transform @@ -152652,6 +152893,9 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-7.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8882 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14563 @@ -152660,6 +152904,9 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-4.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8882 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14584 @@ -152676,6 +152923,9 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-1.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8417 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16672 @@ -153921,30 +154171,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' - - uid: 8137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,10.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,17.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,24.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8263 components: - type: Transform @@ -153968,38 +154194,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' - - uid: 8475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,1.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,1.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,1.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,1.5 - parent: 13329 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8533 components: - type: Transform @@ -154092,6 +154286,27 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' + - uid: 8893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,9.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8902 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8985 + components: + - type: Transform + pos: 50.5,13.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 9461 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9329 components: - type: Transform @@ -154154,6 +154369,57 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' + - uid: 10363 + components: + - type: Transform + pos: 45.5,24.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 10591 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,2.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 9002 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,6.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,16.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 10591 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,2.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 7415 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11040 components: - type: Transform @@ -154469,6 +154735,9 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-4.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8882 - type: AtmosPipeColor color: '#990000FF' - uid: 14565 @@ -154477,6 +154746,9 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-7.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8882 - type: AtmosPipeColor color: '#990000FF' - uid: 14585 @@ -154491,6 +154763,9 @@ entities: - type: Transform pos: 35.5,-1.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8417 - type: AtmosPipeColor color: '#990000FF' - uid: 16674 @@ -155349,6 +155624,17 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#990000FF' + - uid: 35979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,2.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 8168 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVolumePump entities: - uid: 23693 @@ -155781,7 +156067,6 @@ entities: - uid: 2868 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,-9.5 parent: 13329 - uid: 2921 @@ -155792,7 +156077,6 @@ entities: - uid: 2927 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,-22.5 parent: 13329 - uid: 2941 @@ -155803,7 +156087,6 @@ entities: - uid: 2943 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,-9.5 parent: 13329 - uid: 2944 @@ -155999,13 +156282,11 @@ entities: - uid: 3066 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,-21.5 parent: 13329 - uid: 3067 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,-8.5 parent: 13329 - uid: 3068 @@ -157041,37 +157322,31 @@ entities: - uid: 6813 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 13329 - uid: 6814 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,24.5 parent: 13329 - uid: 6815 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,27.5 parent: 13329 - uid: 6816 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,30.5 parent: 13329 - uid: 6817 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,31.5 parent: 13329 - uid: 6818 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,31.5 parent: 13329 - uid: 7098 @@ -157084,85 +157359,10 @@ entities: - type: Transform pos: 20.5,-3.5 parent: 13329 - - uid: 7161 + - uid: 7159 components: - type: Transform - pos: 27.5,0.5 - parent: 13329 - - uid: 7162 - components: - - type: Transform - pos: 28.5,0.5 - parent: 13329 - - uid: 7163 - components: - - type: Transform - pos: 30.5,0.5 - parent: 13329 - - uid: 7164 - components: - - type: Transform - pos: 31.5,0.5 - parent: 13329 - - uid: 7165 - components: - - type: Transform - pos: 33.5,0.5 - parent: 13329 - - uid: 7166 - components: - - type: Transform - pos: 34.5,0.5 - parent: 13329 - - uid: 7167 - components: - - type: Transform - pos: 36.5,0.5 - parent: 13329 - - uid: 7168 - components: - - type: Transform - pos: 37.5,0.5 - parent: 13329 - - uid: 7169 - components: - - type: Transform - pos: 38.5,0.5 - parent: 13329 - - uid: 7170 - components: - - type: Transform - pos: 39.5,0.5 - parent: 13329 - - uid: 7171 - components: - - type: Transform - pos: 39.5,4.5 - parent: 13329 - - uid: 7172 - components: - - type: Transform - pos: 38.5,4.5 - parent: 13329 - - uid: 7173 - components: - - type: Transform - pos: 36.5,4.5 - parent: 13329 - - uid: 7174 - components: - - type: Transform - pos: 33.5,4.5 - parent: 13329 - - uid: 7175 - components: - - type: Transform - pos: 30.5,4.5 - parent: 13329 - - uid: 7176 - components: - - type: Transform - pos: 27.5,4.5 + pos: 37.5,6.5 parent: 13329 - uid: 7177 components: @@ -157174,10 +157374,15 @@ entities: - type: Transform pos: 24.5,4.5 parent: 13329 - - uid: 7309 + - uid: 7252 components: - type: Transform - pos: 40.5,6.5 + pos: 31.5,4.5 + parent: 13329 + - uid: 7255 + components: + - type: Transform + pos: 28.5,0.5 parent: 13329 - uid: 7310 components: @@ -157284,6 +157489,41 @@ entities: - type: Transform pos: 24.5,15.5 parent: 13329 + - uid: 7534 + components: + - type: Transform + pos: 30.5,0.5 + parent: 13329 + - uid: 7536 + components: + - type: Transform + pos: 27.5,4.5 + parent: 13329 + - uid: 7595 + components: + - type: Transform + pos: 46.5,8.5 + parent: 13329 + - uid: 8104 + components: + - type: Transform + pos: 44.5,10.5 + parent: 13329 + - uid: 8136 + components: + - type: Transform + pos: 31.5,0.5 + parent: 13329 + - uid: 8137 + components: + - type: Transform + pos: 27.5,0.5 + parent: 13329 + - uid: 8138 + components: + - type: Transform + pos: 28.5,4.5 + parent: 13329 - uid: 8390 components: - type: Transform @@ -157314,11 +157554,6 @@ entities: - type: Transform pos: 52.5,21.5 parent: 13329 - - uid: 8396 - components: - - type: Transform - pos: 52.5,22.5 - parent: 13329 - uid: 8397 components: - type: Transform @@ -157344,6 +157579,31 @@ entities: - type: Transform pos: 19.5,23.5 parent: 13329 + - uid: 8960 + components: + - type: Transform + pos: 46.5,11.5 + parent: 13329 + - uid: 8962 + components: + - type: Transform + pos: 45.5,11.5 + parent: 13329 + - uid: 8963 + components: + - type: Transform + pos: 47.5,11.5 + parent: 13329 + - uid: 8964 + components: + - type: Transform + pos: 48.5,13.5 + parent: 13329 + - uid: 8965 + components: + - type: Transform + pos: 48.5,15.5 + parent: 13329 - uid: 9242 components: - type: Transform @@ -157369,10 +157629,14 @@ entities: - type: Transform pos: 52.5,6.5 parent: 13329 + - uid: 9390 + components: + - type: Transform + pos: 33.5,0.5 + parent: 13329 - uid: 9562 components: - type: Transform - rot: -1.5707963267948966 rad pos: 21.5,-3.5 parent: 13329 - uid: 9676 @@ -157515,16 +157779,39 @@ entities: - type: Transform pos: 20.5,-33.5 parent: 13329 + - uid: 10325 + components: + - type: Transform + pos: 47.5,8.5 + parent: 13329 + - uid: 10359 + components: + - type: Transform + pos: 34.5,0.5 + parent: 13329 + - uid: 10361 + components: + - type: Transform + pos: 33.5,4.5 + parent: 13329 + - uid: 10588 + components: + - type: Transform + pos: 37.5,0.5 + parent: 13329 + - uid: 10590 + components: + - type: Transform + pos: 36.5,0.5 + parent: 13329 - uid: 11000 components: - type: Transform - rot: -1.5707963267948966 rad pos: -39.5,12.5 parent: 13329 - uid: 11001 components: - type: Transform - rot: -1.5707963267948966 rad pos: -39.5,13.5 parent: 13329 - uid: 11695 @@ -157835,109 +158122,91 @@ entities: - uid: 14369 components: - type: Transform - rot: 1.5707963267948966 rad pos: 31.5,-20.5 parent: 13329 - uid: 14370 components: - type: Transform - rot: 1.5707963267948966 rad pos: 31.5,-19.5 parent: 13329 - uid: 14371 components: - type: Transform - rot: 1.5707963267948966 rad pos: 31.5,-25.5 parent: 13329 - uid: 14377 components: - type: Transform - rot: 1.5707963267948966 rad pos: 35.5,-14.5 parent: 13329 - uid: 14378 components: - type: Transform - rot: 1.5707963267948966 rad pos: 33.5,-18.5 parent: 13329 - uid: 14379 components: - type: Transform - rot: 1.5707963267948966 rad pos: 37.5,-18.5 parent: 13329 - uid: 14380 components: - type: Transform - rot: 1.5707963267948966 rad pos: 40.5,-12.5 parent: 13329 - uid: 14381 components: - type: Transform - rot: 1.5707963267948966 rad pos: 44.5,-12.5 parent: 13329 - uid: 14382 components: - type: Transform - rot: 1.5707963267948966 rad pos: 46.5,-3.5 parent: 13329 - uid: 14383 components: - type: Transform - rot: 1.5707963267948966 rad pos: 48.5,-3.5 parent: 13329 - uid: 14384 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,-3.5 parent: 13329 - uid: 14385 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-3.5 parent: 13329 - uid: 14386 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-8.5 parent: 13329 - uid: 14387 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,-8.5 parent: 13329 - uid: 14388 components: - type: Transform - rot: 1.5707963267948966 rad pos: 48.5,-8.5 parent: 13329 - uid: 14389 components: - type: Transform - rot: 1.5707963267948966 rad pos: 46.5,-8.5 parent: 13329 - uid: 14390 components: - type: Transform - rot: 1.5707963267948966 rad pos: 52.5,-13.5 parent: 13329 - uid: 14391 components: - type: Transform - rot: 1.5707963267948966 rad pos: 54.5,-13.5 parent: 13329 - uid: 14392 @@ -159208,7 +159477,6 @@ entities: - uid: 22372 components: - type: Transform - rot: 3.141592653589793 rad pos: 113.5,52.5 parent: 13329 - uid: 22529 @@ -159434,13 +159702,11 @@ entities: - uid: 22729 components: - type: Transform - rot: 3.141592653589793 rad pos: 88.5,2.5 parent: 13329 - uid: 22731 components: - type: Transform - rot: 3.141592653589793 rad pos: 88.5,-0.5 parent: 13329 - uid: 23367 @@ -160441,13 +160707,11 @@ entities: - uid: 27935 components: - type: Transform - rot: 3.141592653589793 rad pos: 122.5,-20.5 parent: 13329 - uid: 27936 components: - type: Transform - rot: 3.141592653589793 rad pos: 122.5,-19.5 parent: 13329 - uid: 27937 @@ -161048,7 +161312,6 @@ entities: - uid: 29379 components: - type: Transform - rot: 3.141592653589793 rad pos: 114.5,52.5 parent: 13329 - uid: 30070 @@ -161099,7 +161362,6 @@ entities: - uid: 30174 components: - type: Transform - rot: 3.141592653589793 rad pos: 112.5,52.5 parent: 13329 - uid: 31706 @@ -161825,351 +162087,303 @@ entities: - uid: 35653 components: - type: Transform - rot: 3.141592653589793 rad pos: 115.5,52.5 parent: 13329 - uid: 35654 components: - type: Transform - rot: 3.141592653589793 rad pos: 116.5,52.5 parent: 13329 - uid: 35655 components: - type: Transform - rot: 3.141592653589793 rad pos: 116.5,53.5 parent: 13329 - uid: 35656 components: - type: Transform - rot: 3.141592653589793 rad pos: 116.5,55.5 parent: 13329 - uid: 35657 components: - type: Transform - rot: 3.141592653589793 rad pos: 116.5,54.5 parent: 13329 - uid: 35658 components: - type: Transform - rot: 3.141592653589793 rad pos: 117.5,55.5 parent: 13329 - uid: 35659 components: - type: Transform - rot: 3.141592653589793 rad pos: 117.5,56.5 parent: 13329 - uid: 35660 components: - type: Transform - rot: 3.141592653589793 rad pos: 118.5,56.5 parent: 13329 - uid: 35661 components: - type: Transform - rot: 3.141592653589793 rad pos: 119.5,56.5 parent: 13329 - uid: 35662 components: - type: Transform - rot: 3.141592653589793 rad pos: 120.5,56.5 parent: 13329 - uid: 35663 components: - type: Transform - rot: 3.141592653589793 rad pos: 121.5,56.5 parent: 13329 - uid: 35664 components: - type: Transform - rot: 3.141592653589793 rad pos: 122.5,56.5 parent: 13329 - uid: 35665 components: - type: Transform - rot: 3.141592653589793 rad pos: 123.5,56.5 parent: 13329 - uid: 35666 components: - type: Transform - rot: 3.141592653589793 rad pos: 124.5,56.5 parent: 13329 - uid: 35667 components: - type: Transform - rot: 3.141592653589793 rad pos: 125.5,56.5 parent: 13329 - uid: 35668 components: - type: Transform - rot: 3.141592653589793 rad pos: 127.5,56.5 parent: 13329 - uid: 35669 components: - type: Transform - rot: 3.141592653589793 rad pos: 128.5,56.5 parent: 13329 - uid: 35670 components: - type: Transform - rot: 3.141592653589793 rad pos: 126.5,56.5 parent: 13329 - uid: 35671 components: - type: Transform - rot: 3.141592653589793 rad pos: 128.5,55.5 parent: 13329 - uid: 35672 components: - type: Transform - rot: 3.141592653589793 rad pos: 129.5,55.5 parent: 13329 - uid: 35673 components: - type: Transform - rot: 3.141592653589793 rad pos: 129.5,54.5 parent: 13329 - uid: 35674 components: - type: Transform - rot: 3.141592653589793 rad pos: 130.5,54.5 parent: 13329 - uid: 35675 components: - type: Transform - rot: 3.141592653589793 rad pos: 130.5,53.5 parent: 13329 - uid: 35676 components: - type: Transform - rot: 3.141592653589793 rad pos: 130.5,52.5 parent: 13329 - uid: 35677 components: - type: Transform - rot: 3.141592653589793 rad pos: 130.5,51.5 parent: 13329 - uid: 35678 components: - type: Transform - rot: 3.141592653589793 rad pos: 130.5,50.5 parent: 13329 - uid: 35679 components: - type: Transform - rot: 3.141592653589793 rad pos: 130.5,49.5 parent: 13329 - uid: 35680 components: - type: Transform - rot: 3.141592653589793 rad pos: 130.5,47.5 parent: 13329 - uid: 35681 components: - type: Transform - rot: 3.141592653589793 rad pos: 130.5,46.5 parent: 13329 - uid: 35682 components: - type: Transform - rot: 3.141592653589793 rad pos: 130.5,45.5 parent: 13329 - uid: 35683 components: - type: Transform - rot: 3.141592653589793 rad pos: 130.5,44.5 parent: 13329 - uid: 35684 components: - type: Transform - rot: 3.141592653589793 rad pos: 130.5,48.5 parent: 13329 - uid: 35685 components: - type: Transform - rot: 3.141592653589793 rad pos: 129.5,44.5 parent: 13329 - uid: 35686 components: - type: Transform - rot: 3.141592653589793 rad pos: 129.5,43.5 parent: 13329 - uid: 35687 components: - type: Transform - rot: 3.141592653589793 rad pos: 128.5,43.5 parent: 13329 - uid: 35688 components: - type: Transform - rot: 3.141592653589793 rad pos: 128.5,42.5 parent: 13329 - uid: 35689 components: - type: Transform - rot: 3.141592653589793 rad pos: 127.5,42.5 parent: 13329 - uid: 35690 components: - type: Transform - rot: 3.141592653589793 rad pos: 126.5,42.5 parent: 13329 - uid: 35691 components: - type: Transform - rot: 3.141592653589793 rad pos: 125.5,42.5 parent: 13329 - uid: 35692 components: - type: Transform - rot: 3.141592653589793 rad pos: 124.5,42.5 parent: 13329 - uid: 35693 components: - type: Transform - rot: 3.141592653589793 rad pos: 123.5,42.5 parent: 13329 - uid: 35694 components: - type: Transform - rot: 3.141592653589793 rad pos: 122.5,42.5 parent: 13329 - uid: 35695 components: - type: Transform - rot: 3.141592653589793 rad pos: 121.5,42.5 parent: 13329 - uid: 35696 components: - type: Transform - rot: 3.141592653589793 rad pos: 120.5,42.5 parent: 13329 - uid: 35697 components: - type: Transform - rot: 3.141592653589793 rad pos: 119.5,42.5 parent: 13329 - uid: 35698 components: - type: Transform - rot: 3.141592653589793 rad pos: 118.5,42.5 parent: 13329 - uid: 35699 components: - type: Transform - rot: 3.141592653589793 rad pos: 117.5,42.5 parent: 13329 - uid: 35700 components: - type: Transform - rot: 3.141592653589793 rad pos: 117.5,43.5 parent: 13329 - uid: 35701 components: - type: Transform - rot: 3.141592653589793 rad pos: 116.5,43.5 parent: 13329 - uid: 35702 components: - type: Transform - rot: 3.141592653589793 rad pos: 115.5,43.5 parent: 13329 - uid: 35703 components: - type: Transform - rot: 3.141592653589793 rad pos: 115.5,44.5 parent: 13329 - uid: 35704 components: - type: Transform - rot: 3.141592653589793 rad pos: 116.5,44.5 parent: 13329 - uid: 35705 components: - type: Transform - rot: 3.141592653589793 rad pos: 116.5,45.5 parent: 13329 - uid: 35706 components: - type: Transform - rot: 3.141592653589793 rad pos: 115.5,45.5 parent: 13329 - uid: 35707 components: - type: Transform - rot: 3.141592653589793 rad pos: 116.5,46.5 parent: 13329 - uid: 35708 components: - type: Transform - rot: 3.141592653589793 rad pos: 115.5,46.5 parent: 13329 - uid: 35709 components: - type: Transform - rot: 3.141592653589793 rad pos: 114.5,46.5 parent: 13329 - uid: 35710 components: - type: Transform - rot: 3.141592653589793 rad pos: 113.5,46.5 parent: 13329 + - uid: 35858 + components: + - type: Transform + pos: -10.5,27.5 + parent: 13329 + - uid: 35988 + components: + - type: Transform + pos: 45.5,8.5 + parent: 13329 - proto: GrilleBroken entities: - uid: 2603 @@ -162447,6 +162661,11 @@ entities: parent: 13329 - proto: HandheldHealthAnalyzer entities: + - uid: 8957 + components: + - type: Transform + pos: 37.445076,1.5016695 + parent: 13329 - uid: 27915 components: - type: Transform @@ -162459,6 +162678,11 @@ entities: - type: Transform pos: -7.2316008,34.45331 parent: 13329 + - uid: 9096 + components: + - type: Transform + pos: 31.52083,2.9327593 + parent: 13329 - uid: 11782 components: - type: Transform @@ -162504,6 +162728,13 @@ entities: - type: Transform pos: 37.581806,-4.4282417 parent: 13329 +- proto: HarmonicaInstrument + entities: + - uid: 8419 + components: + - type: Transform + pos: 46.524384,19.382435 + parent: 13329 - proto: HeatExchanger entities: - uid: 23635 @@ -162529,13 +162760,6 @@ entities: - type: Transform pos: 22.5,14.5 parent: 13329 - - uid: 10295 - components: - - type: MetaData - name: Solitary Confinement - - type: Transform - pos: 46.5,8.5 - parent: 13329 - proto: HighSecCommandLocked entities: - uid: 24000 @@ -162600,17 +162824,6 @@ entities: parent: 13329 - proto: Holopad entities: - - uid: 35873 - components: - - type: MetaData - name: holopad (Security - Evidence Room) - - type: Transform - pos: 19.5,18.5 - parent: 13329 - - type: Label - currentLabel: Security - Evidence Room - - type: NameModifier - baseName: holopad - uid: 35887 components: - type: MetaData @@ -163179,28 +163392,17 @@ entities: parent: 13329 - proto: HolopadSecurityBrig entities: - - uid: 35858 + - uid: 9014 components: - type: Transform - pos: 29.5,6.5 + pos: 46.5,15.5 parent: 13329 - - uid: 35872 - components: - - type: MetaData - name: holopad (Security - Locker Room South) - - type: Transform - pos: 35.5,11.5 - parent: 13329 - - type: Label - currentLabel: Security - Locker Room South - - type: NameModifier - baseName: holopad - proto: HolopadSecurityBrigMed entities: - - uid: 35856 + - uid: 10141 components: - type: Transform - pos: 44.5,2.5 + pos: 35.5,2.5 parent: 13329 - proto: HolopadSecurityCourtroom entities: @@ -163218,6 +163420,11 @@ entities: parent: 13329 - proto: HolopadSecurityFront entities: + - uid: 1506 + components: + - type: Transform + pos: 29.5,6.5 + parent: 13329 - uid: 35862 components: - type: MetaData @@ -163248,12 +163455,12 @@ entities: - type: Transform pos: 71.5,34.5 parent: 13329 -- proto: HolopadSecurityPerma +- proto: HolopadSecurityLockerRoom entities: - - uid: 35854 + - uid: 9013 components: - type: Transform - pos: 46.5,21.5 + pos: 35.5,11.5 parent: 13329 - proto: HolopadSecurityWarden entities: @@ -163478,6 +163685,13 @@ entities: - type: Transform pos: 81.5,53.5 parent: 13329 +- proto: HydroponicsToolClippers + entities: + - uid: 7242 + components: + - type: Transform + pos: 51.53753,23.203178 + parent: 13329 - proto: HydroponicsToolMiniHoe entities: - uid: 35340 @@ -163485,6 +163699,13 @@ entities: - type: Transform pos: 50.485313,18.484766 parent: 13329 +- proto: HydroponicsToolSpade + entities: + - uid: 7243 + components: + - type: Transform + pos: 51.55836,20.367876 + parent: 13329 - proto: hydroponicsTray entities: - uid: 1318 @@ -163901,10 +164122,10 @@ entities: parent: 13329 - proto: JanitorialTrolley entities: - - uid: 1506 + - uid: 18924 components: - type: Transform - pos: 4.5,13.5 + pos: 5.5,11.5 parent: 13329 - proto: JetpackBlueFilled entities: @@ -164128,6 +164349,12 @@ entities: - type: Transform pos: -26.46547,56.93831 parent: 13329 + - uid: 8086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.584198,10.830557 + parent: 13329 - uid: 10495 components: - type: Transform @@ -164270,6 +164497,12 @@ entities: - type: Transform pos: -21.410488,56.800785 parent: 13329 + - uid: 8423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,13.5 + parent: 13329 - uid: 10550 components: - type: Transform @@ -164378,6 +164611,11 @@ entities: parent: 13329 - proto: Lighter entities: + - uid: 9398 + components: + - type: Transform + pos: 51.738266,13.991366 + parent: 13329 - uid: 9645 components: - type: Transform @@ -164581,6 +164819,28 @@ entities: currentLabel: Close Armory - type: NameModifier baseName: lockable button +- proto: LockableButtonSecurity + entities: + - uid: 36030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,18.5 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 9400: + - - Pressed + - Toggle + 9401: + - - Pressed + - Toggle + 9404: + - - Pressed + - Toggle + 9405: + - - Pressed + - Toggle - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 23864 @@ -165143,17 +165403,31 @@ entities: - 0 - 0 - 0 - - uid: 8933 + - uid: 7253 components: - - type: MetaData - name: evidence locker (Cell 3) - type: Transform - pos: 33.5,7.5 + pos: 28.5,3.5 + parent: 13329 + - uid: 7281 + components: + - type: Transform + pos: 27.5,1.5 + parent: 13329 + - uid: 7426 + components: + - type: Transform + pos: 28.5,1.5 + parent: 13329 + - uid: 8133 + components: + - type: Transform + pos: 29.5,1.5 + parent: 13329 + - uid: 8139 + components: + - type: Transform + pos: 27.5,3.5 parent: 13329 - - type: Label - currentLabel: Cell 3 - - type: NameModifier - baseName: evidence locker - uid: 9515 components: - type: Transform @@ -165384,120 +165658,6 @@ entities: - 0 - 0 - 0 - - uid: 10430 - components: - - type: Transform - pos: 41.5,10.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10431 - components: - - type: Transform - pos: 41.5,11.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10432 - components: - - type: Transform - pos: 51.5,10.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10433 - components: - - type: Transform - pos: 51.5,11.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10670 - components: - - type: MetaData - name: evidence locker (Cell 1) - - type: Transform - pos: 31.5,7.5 - parent: 13329 - - type: Label - currentLabel: Cell 1 - - type: NameModifier - baseName: evidence locker - - uid: 10671 - components: - - type: MetaData - name: evidence locker (Cell 2) - - type: Transform - pos: 32.5,7.5 - parent: 13329 - - type: Label - currentLabel: Cell 2 - - type: NameModifier - baseName: evidence locker - uid: 15348 components: - type: Transform @@ -165567,17 +165727,6 @@ entities: - 0 - 0 - 0 - - uid: 35995 - components: - - type: MetaData - name: evidence locker (Cell 4) - - type: Transform - pos: 34.5,7.5 - parent: 13329 - - type: Label - currentLabel: Cell 4 - - type: NameModifier - baseName: evidence locker - proto: LockerFreezer entities: - uid: 1209 @@ -165813,13 +165962,11 @@ entities: - 0 - proto: LockerMedicineFilled entities: - - uid: 13352 + - uid: 8431 components: - type: Transform - pos: 43.5,3.5 + pos: 35.5,3.5 parent: 13329 - - type: Lock - locked: False - uid: 18592 components: - type: Transform @@ -165970,6 +166117,62 @@ entities: - type: Transform pos: 5.5,50.5 parent: 13329 +- proto: LockerPrisoner + entities: + - uid: 8475 + components: + - type: Transform + pos: 44.5,3.5 + parent: 13329 +- proto: LockerPrisoner2 + entities: + - uid: 8461 + components: + - type: Transform + pos: 45.5,3.5 + parent: 13329 +- proto: LockerPrisoner3 + entities: + - uid: 8476 + components: + - type: Transform + pos: 46.5,3.5 + parent: 13329 +- proto: LockerPrisoner4 + entities: + - uid: 8998 + components: + - type: Transform + pos: 47.5,3.5 + parent: 13329 +- proto: LockerPrisoner5 + entities: + - uid: 7594 + components: + - type: Transform + pos: 44.5,1.5 + parent: 13329 +- proto: LockerPrisoner6 + entities: + - uid: 7593 + components: + - type: Transform + pos: 45.5,1.5 + parent: 13329 +- proto: LockerPrisoner7 + entities: + - uid: 7591 + components: + - type: Transform + pos: 46.5,1.5 + parent: 13329 +- proto: LockerPrisoner8 + entities: + - uid: 7592 + components: + - type: Transform + pos: 47.5,1.5 + parent: 13329 - proto: LockerQuarterMasterFilled entities: - uid: 11709 @@ -167234,15 +167437,10 @@ entities: parent: 13329 - proto: MedicalBed entities: - - uid: 7234 + - uid: 10466 components: - type: Transform - pos: 44.5,1.5 - parent: 13329 - - uid: 7238 - components: - - type: Transform - pos: 42.5,1.5 + pos: 34.5,1.5 parent: 13329 - uid: 13321 components: @@ -167284,6 +167482,11 @@ entities: - type: Transform pos: 9.5,51.5 parent: 13329 + - uid: 35994 + components: + - type: Transform + pos: 36.5,1.5 + parent: 13329 - uid: 35997 components: - type: Transform @@ -167312,6 +167515,11 @@ entities: parent: 13329 - proto: MedkitBruteFilled entities: + - uid: 8954 + components: + - type: Transform + pos: 37.028408,3.5864506 + parent: 13329 - uid: 18832 components: - type: Transform @@ -167322,17 +167530,12 @@ entities: - type: Transform pos: 4.605341,67.929634 parent: 13329 - - uid: 35993 - components: - - type: Transform - pos: 44.62391,3.593118 - parent: 13329 - proto: MedkitBurnFilled entities: - - uid: 10566 + - uid: 8085 components: - type: Transform - pos: 44.90516,3.655618 + pos: 37.028408,3.7115378 parent: 13329 - uid: 18830 components: @@ -167368,10 +167571,10 @@ entities: - type: Transform pos: 5.497531,27.629694 parent: 13329 - - uid: 10565 + - uid: 8956 components: - type: Transform - pos: 44.452034,3.639993 + pos: 36.528408,3.5968742 parent: 13329 - uid: 11784 components: @@ -167405,6 +167608,11 @@ entities: parent: 13329 - proto: MedkitOxygenFilled entities: + - uid: 8078 + components: + - type: Transform + pos: 36.528408,3.7115378 + parent: 13329 - uid: 18834 components: - type: Transform @@ -167444,11 +167652,6 @@ entities: - type: Transform pos: 4.636591,67.00776 parent: 13329 - - uid: 35994 - components: - - type: Transform - pos: 45.09266,3.530618 - parent: 13329 - proto: MicroManipulatorStockPart entities: - uid: 15531 @@ -167562,11 +167765,21 @@ entities: parent: 13329 - proto: MopBucket entities: + - uid: 1292 + components: + - type: Transform + pos: 8.5,12.5 + parent: 13329 - uid: 1649 components: - type: Transform pos: 5.5689616,8.470554 parent: 13329 + - uid: 8072 + components: + - type: Transform + pos: 49.5,10.5 + parent: 13329 - uid: 15331 components: - type: Transform @@ -167599,6 +167812,11 @@ entities: - type: Transform pos: 5.4127116,8.611179 parent: 13329 + - uid: 8156 + components: + - type: Transform + pos: 49.5,10.5 + parent: 13329 - uid: 10144 components: - type: Transform @@ -167624,6 +167842,11 @@ entities: - type: Transform pos: 114.39373,20.545967 parent: 13329 + - uid: 36065 + components: + - type: Transform + pos: 8.382533,12.508444 + parent: 13329 - proto: Morgue entities: - uid: 6623 @@ -167674,54 +167897,12 @@ entities: - 0 - 0 - 0 - - uid: 10561 + - uid: 8901 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,1.5 + pos: 39.5,1.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,2.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16937 components: - type: Transform @@ -168036,6 +168217,12 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-26.5 parent: 13329 + - uid: 35983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,2.5 + parent: 13329 - proto: MouseTimedSpawner entities: - uid: 32253 @@ -168060,6 +168247,13 @@ entities: - type: Transform pos: 67.48685,60.561733 parent: 13329 +- proto: NewtonCradle + entities: + - uid: 8970 + components: + - type: Transform + pos: 47.490448,10.559536 + parent: 13329 - proto: NitrogenCanister entities: - uid: 13605 @@ -168558,25 +168752,20 @@ entities: parent: 13329 - proto: Paper entities: - - uid: 10318 + - uid: 7246 components: - type: Transform - pos: 41.5,13.5 + pos: 46.1489,12.533037 parent: 13329 - - uid: 10319 + - uid: 8165 components: - type: Transform - pos: 44.5,13.5 + pos: 46.011284,10.588079 parent: 13329 - - uid: 10320 + - uid: 10467 components: - type: Transform - pos: 48.5,13.5 - parent: 13329 - - uid: 10321 - components: - - type: Transform - pos: 51.5,13.5 + pos: 46.20098,12.606005 parent: 13329 - uid: 18896 components: @@ -168688,11 +168877,6 @@ entities: - type: Transform pos: 26.5,30.5 parent: 13329 - - uid: 10444 - components: - - type: Transform - pos: 51.5,9.5 - parent: 13329 - uid: 10549 components: - type: Transform @@ -168723,6 +168907,11 @@ entities: - type: Transform pos: 8.5,-2.5 parent: 13329 + - uid: 13326 + components: + - type: Transform + pos: 47.5,12.5 + parent: 13329 - uid: 15349 components: - type: Transform @@ -168823,6 +169012,38 @@ entities: - type: Transform pos: 45.5,42.5 parent: 13329 +- proto: PaperCNCSheet + entities: + - uid: 7162 + components: + - type: Transform + pos: 42.575233,16.452568 + parent: 13329 + - uid: 7163 + components: + - type: Transform + pos: 42.471066,16.556807 + parent: 13329 + - uid: 10571 + components: + - type: Transform + pos: 42.460648,15.764589 + parent: 13329 + - uid: 11558 + components: + - type: Transform + pos: 42.637733,16.358751 + parent: 13329 + - uid: 11562 + components: + - type: Transform + pos: 42.627316,15.587383 + parent: 13329 + - uid: 11563 + components: + - type: Transform + pos: 42.533566,15.681198 + parent: 13329 - proto: PaperWrittenAMEScribbles entities: - uid: 29085 @@ -168832,10 +169053,10 @@ entities: parent: 13329 - proto: ParchisBoard entities: - - uid: 10427 + - uid: 10578 components: - type: Transform - pos: 46.50248,19.462366 + pos: 41.481483,15.629079 parent: 13329 - uid: 19748 components: @@ -168957,31 +169178,26 @@ entities: parent: 13329 - proto: Pen entities: + - uid: 8164 + components: + - type: Transform + pos: 45.969616,10.421297 + parent: 13329 + - uid: 8427 + components: + - type: Transform + pos: 42.304398,16.146572 + parent: 13329 + - uid: 8462 + components: + - type: Transform + pos: 41.346066,16.146572 + parent: 13329 - uid: 9380 components: - type: Transform pos: 31.24836,9.434689 parent: 13329 - - uid: 10322 - components: - - type: Transform - pos: 41.5,13.5 - parent: 13329 - - uid: 10323 - components: - - type: Transform - pos: 44.5,13.5 - parent: 13329 - - uid: 10324 - components: - - type: Transform - pos: 48.5,13.5 - parent: 13329 - - uid: 10325 - components: - - type: Transform - pos: 51.5,13.5 - parent: 13329 - uid: 11763 components: - type: Transform @@ -168992,6 +169208,11 @@ entities: - type: Transform pos: -41.511772,-51.484776 parent: 13329 + - uid: 13325 + components: + - type: Transform + pos: 47.07598,12.69982 + parent: 13329 - uid: 26568 components: - type: Transform @@ -169308,13 +169529,6 @@ entities: - type: Transform pos: 124.5,49.5 parent: 13329 -- proto: Plunger - entities: - - uid: 18924 - components: - - type: Transform - pos: 5.4847407,11.716763 - parent: 13329 - proto: PlushieArachind entities: - uid: 36012 @@ -169613,6 +169827,13 @@ entities: - type: Transform pos: 87.5,17.5 parent: 13329 +- proto: PosterContrabandFunPolice + entities: + - uid: 10430 + components: + - type: Transform + pos: 29.5,4.5 + parent: 13329 - proto: PosterContrabandGreyTide entities: - uid: 31596 @@ -169865,6 +170086,11 @@ entities: - type: Transform pos: 14.5,-18.5 parent: 13329 + - uid: 14592 + components: + - type: Transform + pos: 48.5,16.5 + parent: 13329 - uid: 26098 components: - type: Transform @@ -169935,6 +170161,11 @@ entities: - type: Transform pos: -37.5,51.5 parent: 13329 + - uid: 14568 + components: + - type: Transform + pos: 40.5,13.5 + parent: 13329 - proto: PosterLegitPeriodicTable entities: - uid: 20052 @@ -170013,6 +170244,11 @@ entities: parent: 13329 - proto: PosterLegitSafetyReport entities: + - uid: 14566 + components: + - type: Transform + pos: 40.5,22.5 + parent: 13329 - uid: 29515 components: - type: Transform @@ -170080,6 +170316,11 @@ entities: parent: 13329 - proto: PottedPlant1 entities: + - uid: 10293 + components: + - type: Transform + pos: 39.5,3.5 + parent: 13329 - uid: 18710 components: - type: Transform @@ -170755,11 +170996,22 @@ entities: - type: Transform pos: 3.5,30.5 parent: 13329 + - uid: 9005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,3.5 + parent: 13329 - uid: 9626 components: - type: Transform pos: 68.5,-7.5 parent: 13329 + - uid: 10321 + components: + - type: Transform + pos: 49.5,8.5 + parent: 13329 - uid: 11762 components: - type: Transform @@ -170892,6 +171144,23 @@ entities: parent: 13329 - proto: PoweredDimSmallLight entities: + - uid: 10326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,21.5 + parent: 13329 + - uid: 10327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-30.5 + parent: 13329 + - uid: 10328 + components: + - type: Transform + pos: 115.5,6.5 + parent: 13329 - uid: 35388 components: - type: Transform @@ -171382,6 +171651,16 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 + - uid: 9097 + components: + - type: Transform + pos: 35.5,3.5 + parent: 13329 + - uid: 9098 + components: + - type: Transform + pos: 29.5,3.5 + parent: 13329 - uid: 9531 components: - type: Transform @@ -171436,13 +171715,6 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9538 - components: - - type: Transform - pos: 37.5,7.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 9539 components: - type: Transform @@ -171557,14 +171829,6 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,28.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10389 components: - type: Transform @@ -171612,37 +171876,6 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,9.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,9.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,6.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10476 - components: - - type: Transform - pos: 44.5,3.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10479 components: - type: Transform @@ -171666,6 +171899,18 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 + - uid: 10566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,12.5 + parent: 13329 + - uid: 10771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,6.5 + parent: 13329 - uid: 10905 components: - type: Transform @@ -173816,6 +174061,18 @@ entities: rot: 1.5707963267948966 rad pos: 123.5,49.5 parent: 13329 + - uid: 36029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,2.5 + parent: 13329 + - uid: 36035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,5.5 + parent: 13329 - proto: PoweredlightExterior entities: - uid: 34307 @@ -174309,12 +174566,36 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,16.5 + parent: 13329 + - uid: 8463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,2.5 + parent: 13329 - uid: 8644 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,1.5 parent: 13329 + - uid: 8969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,10.5 + parent: 13329 + - uid: 9113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,2.5 + parent: 13329 - uid: 9525 components: - type: Transform @@ -174323,46 +174604,6 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,2.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,9.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10175 components: - type: Transform @@ -174386,38 +174627,24 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10326 + - uid: 10310 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,14.5 + pos: 51.5,28.5 parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,14.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10328 + - uid: 10320 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,14.5 + pos: 41.5,16.5 parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10329 + - uid: 10324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,14.5 + rot: 3.141592653589793 rad + pos: 46.5,5.5 parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10385 components: - type: Transform @@ -174441,22 +174668,6 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,5.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,1.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10478 components: - type: Transform @@ -174488,6 +174699,12 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,9.5 + parent: 13329 - uid: 11545 components: - type: Transform @@ -174620,6 +174837,12 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 + - uid: 13350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,14.5 + parent: 13329 - uid: 13371 components: - type: Transform @@ -175608,14 +175831,6 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 - - uid: 32192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,21.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 32193 components: - type: Transform @@ -175672,14 +175887,6 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 - - uid: 32291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 32323 components: - type: Transform @@ -175755,13 +175962,6 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 - - uid: 32504 - components: - - type: Transform - pos: 115.5,6.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 32505 components: - type: Transform @@ -176077,6 +176277,23 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 + - uid: 36024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,11.5 + parent: 13329 + - uid: 36048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 13329 + - uid: 36049 + components: + - type: Transform + pos: 38.5,10.5 + parent: 13329 - proto: PoweredSmallLightEmpty entities: - uid: 12130 @@ -177186,6 +177403,11 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,57.5 parent: 13329 + - uid: 7175 + components: + - type: Transform + pos: 49.5,8.5 + parent: 13329 - uid: 10189 components: - type: Transform @@ -177276,12 +177498,6 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,24.5 parent: 13329 - - uid: 10494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,7.5 - parent: 13329 - uid: 10613 components: - type: Transform @@ -177312,6 +177528,11 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,13.5 parent: 13329 + - uid: 10774 + components: + - type: Transform + pos: 51.5,8.5 + parent: 13329 - uid: 13322 components: - type: Transform @@ -178437,18 +178658,27 @@ entities: rot: 3.141592653589793 rad pos: 98.5,-20.5 parent: 13329 + - uid: 36031 + components: + - type: Transform + pos: 44.5,23.5 + parent: 13329 + - uid: 36032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,21.5 + parent: 13329 - proto: RandomArcade entities: - uid: 13298 components: - type: Transform - rot: 1.5707963267948966 rad pos: -38.5,-6.5 parent: 13329 - uid: 13299 components: - type: Transform - rot: 1.5707963267948966 rad pos: -38.5,-5.5 parent: 13329 - uid: 32716 @@ -178676,6 +178906,11 @@ entities: - type: Transform pos: -25.5,24.5 parent: 13329 + - uid: 11553 + components: + - type: Transform + pos: 43.5,26.5 + parent: 13329 - uid: 11884 components: - type: Transform @@ -178691,11 +178926,21 @@ entities: - type: Transform pos: 17.5,-22.5 parent: 13329 + - uid: 13352 + components: + - type: Transform + pos: 52.5,13.5 + parent: 13329 - uid: 13697 components: - type: Transform pos: -14.5,1.5 parent: 13329 + - uid: 14567 + components: + - type: Transform + pos: 42.5,30.5 + parent: 13329 - uid: 14807 components: - type: Transform @@ -178848,6 +179093,16 @@ entities: parent: 13329 - proto: RandomPosterContraband entities: + - uid: 11018 + components: + - type: Transform + pos: 50.5,16.5 + parent: 13329 + - uid: 13324 + components: + - type: Transform + pos: 49.5,28.5 + parent: 13329 - uid: 13693 components: - type: Transform @@ -179594,19 +179849,16 @@ entities: - uid: 5633 components: - type: Transform - rot: -1.5707963267948966 rad pos: -30.5,72.5 parent: 13329 - uid: 5634 components: - type: Transform - rot: -1.5707963267948966 rad pos: -30.5,73.5 parent: 13329 - uid: 5635 components: - type: Transform - rot: -1.5707963267948966 rad pos: -30.5,74.5 parent: 13329 - uid: 13916 @@ -179832,79 +180084,66 @@ entities: - uid: 20658 components: - type: Transform - rot: 1.5707963267948966 rad pos: 105.5,-34.5 parent: 13329 - uid: 20660 components: - type: Transform - rot: 1.5707963267948966 rad pos: 106.5,-34.5 parent: 13329 - uid: 20662 components: - type: Transform - rot: 1.5707963267948966 rad pos: 107.5,-34.5 parent: 13329 - uid: 22522 components: - type: Transform - rot: 1.5707963267948966 rad pos: 106.5,-38.5 parent: 13329 - uid: 22523 components: - type: Transform - rot: 1.5707963267948966 rad pos: 107.5,-38.5 parent: 13329 - uid: 22524 components: - type: Transform - rot: 1.5707963267948966 rad pos: 108.5,-37.5 parent: 13329 - uid: 22525 components: - type: Transform - rot: 1.5707963267948966 rad pos: 105.5,-38.5 parent: 13329 - uid: 22526 components: - type: Transform - rot: 1.5707963267948966 rad pos: 108.5,-35.5 parent: 13329 - uid: 22716 components: - type: Transform - rot: 3.141592653589793 rad pos: 88.5,2.5 parent: 13329 - uid: 22721 components: - type: Transform - rot: 3.141592653589793 rad pos: 88.5,-0.5 parent: 13329 - uid: 22806 components: - type: Transform - rot: 1.5707963267948966 rad pos: 92.5,-6.5 parent: 13329 - uid: 22809 components: - type: Transform - rot: 1.5707963267948966 rad pos: 92.5,-5.5 parent: 13329 - uid: 22810 components: - type: Transform - rot: 1.5707963267948966 rad pos: 92.5,-4.5 parent: 13329 - uid: 22831 @@ -180084,6 +180323,11 @@ entities: - type: Transform pos: 1.5,21.5 parent: 13329 + - uid: 1502 + components: + - type: Transform + pos: -10.5,27.5 + parent: 13329 - uid: 2055 components: - type: Transform @@ -180102,13 +180346,11 @@ entities: - uid: 2089 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,-7.5 parent: 13329 - uid: 2090 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-7.5 parent: 13329 - uid: 2126 @@ -180379,7 +180621,6 @@ entities: - uid: 2863 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,-21.5 parent: 13329 - uid: 2864 @@ -180400,7 +180641,6 @@ entities: - uid: 2871 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,-22.5 parent: 13329 - uid: 2872 @@ -180581,13 +180821,11 @@ entities: - uid: 3024 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,-9.5 parent: 13329 - uid: 3025 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,-8.5 parent: 13329 - uid: 3655 @@ -180838,31 +181076,26 @@ entities: - uid: 5140 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,52.5 parent: 13329 - uid: 5141 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,54.5 parent: 13329 - uid: 5142 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,55.5 parent: 13329 - uid: 5143 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,56.5 parent: 13329 - uid: 5144 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,58.5 parent: 13329 - uid: 5171 @@ -181020,85 +181253,10 @@ entities: - type: Transform pos: 39.5,8.5 parent: 13329 - - uid: 7242 - components: - - type: Transform - pos: 34.5,0.5 - parent: 13329 - - uid: 7243 - components: - - type: Transform - pos: 33.5,0.5 - parent: 13329 - - uid: 7244 - components: - - type: Transform - pos: 39.5,0.5 - parent: 13329 - - uid: 7245 - components: - - type: Transform - pos: 38.5,0.5 - parent: 13329 - - uid: 7246 - components: - - type: Transform - pos: 37.5,0.5 - parent: 13329 - - uid: 7247 - components: - - type: Transform - pos: 36.5,0.5 - parent: 13329 - - uid: 7248 - components: - - type: Transform - pos: 31.5,0.5 - parent: 13329 - - uid: 7249 - components: - - type: Transform - pos: 30.5,0.5 - parent: 13329 - - uid: 7250 - components: - - type: Transform - pos: 28.5,0.5 - parent: 13329 - - uid: 7251 - components: - - type: Transform - pos: 27.5,0.5 - parent: 13329 - - uid: 7252 - components: - - type: Transform - pos: 27.5,4.5 - parent: 13329 - - uid: 7253 - components: - - type: Transform - pos: 30.5,4.5 - parent: 13329 - uid: 7254 components: - type: Transform - pos: 33.5,4.5 - parent: 13329 - - uid: 7255 - components: - - type: Transform - pos: 36.5,4.5 - parent: 13329 - - uid: 7256 - components: - - type: Transform - pos: 39.5,4.5 - parent: 13329 - - uid: 7257 - components: - - type: Transform - pos: 38.5,4.5 + pos: 28.5,4.5 parent: 13329 - uid: 7258 components: @@ -181120,10 +181278,15 @@ entities: - type: Transform pos: 36.5,8.5 parent: 13329 - - uid: 7308 + - uid: 7299 components: - type: Transform - pos: 40.5,6.5 + pos: 28.5,0.5 + parent: 13329 + - uid: 7302 + components: + - type: Transform + pos: 31.5,0.5 parent: 13329 - uid: 7333 components: @@ -181175,11 +181338,31 @@ entities: - type: Transform pos: 34.5,19.5 parent: 13329 + - uid: 7417 + components: + - type: Transform + pos: 30.5,0.5 + parent: 13329 + - uid: 7418 + components: + - type: Transform + pos: 31.5,4.5 + parent: 13329 - uid: 7519 components: - type: Transform pos: 52.5,6.5 parent: 13329 + - uid: 7525 + components: + - type: Transform + pos: 33.5,0.5 + parent: 13329 + - uid: 7533 + components: + - type: Transform + pos: 27.5,4.5 + parent: 13329 - uid: 7556 components: - type: Transform @@ -181190,11 +181373,6 @@ entities: - type: Transform pos: 52.5,21.5 parent: 13329 - - uid: 7558 - components: - - type: Transform - pos: 52.5,22.5 - parent: 13329 - uid: 7559 components: - type: Transform @@ -181205,6 +181383,31 @@ entities: - type: Transform pos: 52.5,24.5 parent: 13329 + - uid: 8100 + components: + - type: Transform + pos: 44.5,10.5 + parent: 13329 + - uid: 8130 + components: + - type: Transform + pos: 27.5,0.5 + parent: 13329 + - uid: 8134 + components: + - type: Transform + pos: 34.5,0.5 + parent: 13329 + - uid: 8141 + components: + - type: Transform + pos: 37.5,6.5 + parent: 13329 + - uid: 8169 + components: + - type: Transform + pos: 45.5,8.5 + parent: 13329 - uid: 8387 components: - type: Transform @@ -181225,6 +181428,26 @@ entities: - type: Transform pos: 19.5,23.5 parent: 13329 + - uid: 8681 + components: + - type: Transform + pos: 46.5,8.5 + parent: 13329 + - uid: 8866 + components: + - type: Transform + pos: 47.5,8.5 + parent: 13329 + - uid: 8958 + components: + - type: Transform + pos: 46.5,11.5 + parent: 13329 + - uid: 8959 + components: + - type: Transform + pos: 47.5,11.5 + parent: 13329 - uid: 9246 components: - type: Transform @@ -181235,6 +181458,16 @@ entities: - type: Transform pos: 22.5,19.5 parent: 13329 + - uid: 9360 + components: + - type: Transform + pos: 33.5,4.5 + parent: 13329 + - uid: 9394 + components: + - type: Transform + pos: 37.5,0.5 + parent: 13329 - uid: 9477 components: - type: Transform @@ -181425,6 +181658,16 @@ entities: - type: Transform pos: 46.5,-3.5 parent: 13329 + - uid: 10358 + components: + - type: Transform + pos: 36.5,0.5 + parent: 13329 + - uid: 10437 + components: + - type: Transform + pos: 45.5,11.5 + parent: 13329 - uid: 12192 components: - type: Transform @@ -183533,31 +183776,26 @@ entities: - uid: 22819 components: - type: Transform - rot: 1.5707963267948966 rad pos: 99.5,-7.5 parent: 13329 - uid: 22820 components: - type: Transform - rot: 1.5707963267948966 rad pos: 99.5,-6.5 parent: 13329 - uid: 22821 components: - type: Transform - rot: 1.5707963267948966 rad pos: 99.5,-5.5 parent: 13329 - uid: 22822 components: - type: Transform - rot: 1.5707963267948966 rad pos: 99.5,-4.5 parent: 13329 - uid: 22823 components: - type: Transform - rot: 1.5707963267948966 rad pos: 99.5,-3.5 parent: 13329 - uid: 22828 @@ -183905,14 +184143,6 @@ entities: - type: Transform pos: 16.323153,13.377749 parent: 13329 - - type: Blocking - blockingToggleActionEntity: 10647 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 10647 - uid: 13391 components: - type: Transform @@ -184197,11 +184427,23 @@ entities: - type: Transform pos: 15.5,15.5 parent: 13329 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - uid: 10140 components: - type: Transform pos: 31.5,26.5 parent: 13329 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: SeedExtractor entities: - uid: 1359 @@ -184556,6 +184798,16 @@ entities: - type: Transform pos: 4.5,7.5 parent: 13329 + - uid: 8154 + components: + - type: Transform + pos: 46.5,8.5 + parent: 13329 + - uid: 8867 + components: + - type: Transform + pos: 45.5,8.5 + parent: 13329 - uid: 9595 components: - type: Transform @@ -184595,6 +184847,11 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-19.5 parent: 13329 + - uid: 35989 + components: + - type: Transform + pos: 47.5,8.5 + parent: 13329 - proto: ShuttersNormalOpen entities: - uid: 921 @@ -184777,25 +185034,66 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,32.5 parent: 13329 - - uid: 10588 + - uid: 7307 components: - type: Transform - pos: 42.5,16.5 + pos: 47.5,11.5 parent: 13329 - - uid: 10589 + - uid: 7309 components: - type: Transform - pos: 45.5,16.5 + rot: -1.5707963267948966 rad + pos: 44.5,10.5 parent: 13329 - - uid: 10590 + - uid: 8073 components: - type: Transform - pos: 47.5,16.5 + pos: 34.5,0.5 parent: 13329 - - uid: 10591 + - uid: 8890 components: - type: Transform - pos: 50.5,16.5 + pos: 37.5,0.5 + parent: 13329 + - uid: 8945 + components: + - type: Transform + pos: 28.5,0.5 + parent: 13329 + - uid: 8951 + components: + - type: Transform + pos: 27.5,0.5 + parent: 13329 + - uid: 8952 + components: + - type: Transform + pos: 30.5,0.5 + parent: 13329 + - uid: 8953 + components: + - type: Transform + pos: 31.5,0.5 + parent: 13329 + - uid: 9150 + components: + - type: Transform + pos: 36.5,0.5 + parent: 13329 + - uid: 9333 + components: + - type: Transform + pos: 45.5,11.5 + parent: 13329 + - uid: 9336 + components: + - type: Transform + pos: 33.5,0.5 + parent: 13329 + - uid: 9342 + components: + - type: Transform + pos: 46.5,11.5 parent: 13329 - uid: 10658 components: @@ -185294,27 +185592,6 @@ entities: 9776: - - Pressed - Toggle - - uid: 10587 - components: - - type: MetaData - name: Room Shutters - - type: Transform - pos: 46.5,12.5 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 10588: - - - Pressed - - Toggle - 10589: - - - Pressed - - Toggle - 10590: - - - Pressed - - Toggle - 10591: - - - Pressed - - Toggle - uid: 10877 components: - type: Transform @@ -185643,6 +185920,81 @@ entities: - Toggle - proto: SignalButtonDirectional entities: + - uid: 8077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,0.5 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 8951: + - - Pressed + - Toggle + 8945: + - - Pressed + - Toggle + 8952: + - - Pressed + - Toggle + 8953: + - - Pressed + - Toggle + - uid: 8115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 9336: + - - Pressed + - Toggle + 8073: + - - Pressed + - Toggle + 9150: + - - Pressed + - Toggle + 8890: + - - Pressed + - Toggle + - uid: 8123 + components: + - type: Transform + pos: 45.5,10.5 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 7309: + - - Pressed + - Toggle + 9333: + - - Pressed + - Toggle + 9342: + - - Pressed + - Toggle + 7307: + - - Pressed + - Toggle + - uid: 8972 + components: + - type: Transform + pos: 47.5,10.5 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 35989: + - - Pressed + - Toggle + 8154: + - - Pressed + - Toggle + 8867: + - - Pressed + - Toggle - uid: 20551 components: - type: Transform @@ -185782,113 +186134,6 @@ entities: currentLabel: Front Shutters - type: NameModifier baseName: Switch (Front Shutters) - - uid: 9389 - components: - - type: MetaData - name: Switch (Front Blast Doors) - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.571575,9.73718 - parent: 13329 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 10638: - - - On - - Open - - - Off - - Close - 10645: - - - On - - Open - - - Off - - Close - 9397: - - - On - - Open - - - Off - - Close - 9398: - - - On - - Open - - - Off - - Close - 9396: - - - On - - Open - - - Off - - Close - 9395: - - - On - - Open - - - Off - - Close - 9394: - - - On - - Open - - - Off - - Close - 9393: - - - On - - Open - - - Off - - Close - 9392: - - - On - - Open - - - Off - - Close - 9391: - - - On - - Open - - - Off - - Close - - type: Label - currentLabel: Front Blast Doors - - type: NameModifier - baseName: Switch - - uid: 9390 - components: - - type: MetaData - name: Switch (Perma Blast Doors) - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.571575,9.466347 - parent: 13329 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 9405: - - - On - - Open - - - Off - - Close - 9404: - - - On - - Open - - - Off - - Close - 9403: - - - On - - Open - - - Off - - Close - 9401: - - - On - - Open - - - Off - - Close - 9400: - - - On - - Open - - - Off - - Close - - type: Label - currentLabel: Perma Blast Doors - - type: NameModifier - baseName: Switch - uid: 10662 components: - type: MetaData @@ -185960,30 +186205,6 @@ entities: currentLabel: Window Shutters - type: NameModifier baseName: Switch - - uid: 13350 - components: - - type: MetaData - name: Switch (Cell Blast Doors) (Cell Blast Doors) - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,4.5 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 10638: - - - On - - Open - - - Off - - Close - 10645: - - - On - - Open - - - Off - - Close - - type: Label - currentLabel: Cell Blast Doors - - type: NameModifier - baseName: Switch (Cell Blast Doors) - uid: 35390 components: - type: Transform @@ -186006,92 +186227,6 @@ entities: - Open - - Off - Close - - uid: 35971 - components: - - type: MetaData - name: Switch (Cell Blast Doors) (Cell Blast Doors) - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,4.5 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 9397: - - - On - - Open - - - Off - - Close - 9398: - - - On - - Open - - - Off - - Close - - type: Label - currentLabel: Cell Blast Doors - - type: NameModifier - baseName: Switch (Cell Blast Doors) - - uid: 35972 - components: - - type: MetaData - name: Switch (Cell Blast Doors) (Cell Blast Doors) - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,4.5 - parent: 13329 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 9396: - - - On - - Open - - - Off - - Close - 9395: - - - On - - Open - - - Off - - Close - - type: Label - currentLabel: Cell Blast Doors - - type: NameModifier - baseName: Switch (Cell Blast Doors) - - uid: 35973 - components: - - type: MetaData - name: Switch (Cell Blast Doors) (Cell Blast Doors) - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,4.5 - parent: 13329 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 9394: - - - On - - Open - - - Off - - Close - 9393: - - - On - - Open - - - Off - - Close - 9392: - - - On - - Open - - - Off - - Close - 9391: - - - On - - Open - - - Off - - Close - - type: Label - currentLabel: Cell Blast Doors - - type: NameModifier - baseName: Switch (Cell Blast Doors) - uid: 36009 components: - type: Transform @@ -186331,6 +186466,12 @@ entities: parent: 13329 - proto: SignDirectionalBrig entities: + - uid: 10434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-3.5 + parent: 13329 - uid: 10574 components: - type: Transform @@ -186497,11 +186638,11 @@ entities: parent: 13329 - proto: SignDirectionalHop entities: - - uid: 26038 + - uid: 36034 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-3.5 + pos: 53.499214,-3.3088872 parent: 13329 - proto: SignDirectionalLibrary entities: @@ -186646,6 +186787,12 @@ entities: - type: Transform pos: 1.5164549,14.357265 parent: 13329 + - uid: 8437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.499214,-3.6887553 + parent: 13329 - uid: 19116 components: - type: Transform @@ -186849,6 +186996,19 @@ entities: - type: Transform pos: 119.5,-18.5 parent: 13329 +- proto: SignGenpop + entities: + - uid: 7588 + components: + - type: Transform + pos: 42.5,0.5 + parent: 13329 + - uid: 10378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,6.5 + parent: 13329 - proto: SignGravity entities: - uid: 26207 @@ -187059,15 +187219,15 @@ entities: parent: 13329 - proto: SignPrison entities: - - uid: 9342 + - uid: 7282 components: - type: Transform - pos: 41.5,8.5 + pos: 52.5,22.5 parent: 13329 - - uid: 9343 + - uid: 10442 components: - type: Transform - pos: 51.5,8.5 + pos: 44.5,11.5 parent: 13329 - proto: SignRadiationMed entities: @@ -187125,17 +187285,6 @@ entities: parent: 13329 - proto: SignRedFour entities: - - uid: 10575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,12.5 - parent: 13329 - - uid: 13327 - components: - - type: Transform - pos: 35.5,3.5 - parent: 13329 - uid: 24289 components: - type: Transform @@ -187143,17 +187292,6 @@ entities: parent: 13329 - proto: SignRedOne entities: - - uid: 10579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,12.5 - parent: 13329 - - uid: 13324 - components: - - type: Transform - pos: 26.5,3.5 - parent: 13329 - uid: 24286 components: - type: Transform @@ -187173,17 +187311,6 @@ entities: parent: 13329 - proto: SignRedThree entities: - - uid: 10584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,12.5 - parent: 13329 - - uid: 13326 - components: - - type: Transform - pos: 32.5,3.5 - parent: 13329 - uid: 24288 components: - type: Transform @@ -187191,17 +187318,6 @@ entities: parent: 13329 - proto: SignRedTwo entities: - - uid: 10585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,12.5 - parent: 13329 - - uid: 13325 - components: - - type: Transform - pos: 29.5,3.5 - parent: 13329 - uid: 14376 components: - type: Transform @@ -187335,11 +187451,23 @@ entities: - type: Transform pos: -45.5,68.5 parent: 13329 + - uid: 8873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,2.5 + parent: 13329 - uid: 10259 components: - type: Transform pos: 34.5,31.5 parent: 13329 + - uid: 10429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,8.5 + parent: 13329 - uid: 10488 components: - type: Transform @@ -187412,12 +187540,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,0.5 parent: 13329 - - uid: 19133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,0.5 - parent: 13329 - uid: 26769 components: - type: Transform @@ -190756,7 +190878,6 @@ entities: - uid: 13383 components: - type: Transform - rot: -1.5707963267948966 rad pos: 47.5,54.5 parent: 13329 - proto: SpawnMobMcGriff @@ -191640,11 +191761,6 @@ entities: parent: 13329 - proto: StasisBed entities: - - uid: 8932 - components: - - type: Transform - pos: 46.5,1.5 - parent: 13329 - uid: 18576 components: - type: Transform @@ -191885,31 +192001,10 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,13.5 parent: 13329 - - uid: 1422 + - uid: 7153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,31.5 - parent: 13329 - - uid: 10314 - components: - - type: Transform - pos: 41.5,14.5 - parent: 13329 - - uid: 10315 - components: - - type: Transform - pos: 44.5,14.5 - parent: 13329 - - uid: 10316 - components: - - type: Transform - pos: 48.5,14.5 - parent: 13329 - - uid: 10317 - components: - - type: Transform - pos: 51.5,14.5 + pos: 46.5,13.5 parent: 13329 - uid: 10400 components: @@ -192572,13 +192667,6 @@ entities: - type: Transform pos: 106.5,16.5 parent: 13329 -- proto: Stunbaton - entities: - - uid: 10442 - components: - - type: Transform - pos: 41.39552,9.469629 - parent: 13329 - proto: SubstationBasic entities: - uid: 2337 @@ -192857,10 +192945,15 @@ entities: parent: 13329 - proto: SuitStorageEVAPrisoner entities: - - uid: 13404 + - uid: 7166 components: - type: Transform - pos: 46.5,11.5 + pos: 51.5,9.5 + parent: 13329 + - uid: 10329 + components: + - type: Transform + pos: 51.5,10.5 parent: 13329 - proto: SuitStorageHOS entities: @@ -194238,16 +194331,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Cargo - - uid: 35351 - components: - - type: Transform - pos: 35.5,-2.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Mail Hall Security - uid: 35352 components: - type: Transform @@ -194454,17 +194537,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Cryosleep - - uid: 35462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,15.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Dorms - uid: 35463 components: - type: Transform @@ -195099,6 +195171,20 @@ entities: id: Science Shooting Range - proto: SurveillanceCameraSecurity entities: + - uid: 8418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,6.5 + parent: 13329 + - type: SurveillanceCamera + id: Security East Entrance + - uid: 8997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,3.5 + parent: 13329 - uid: 10160 components: - type: Transform @@ -195110,61 +195196,32 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Interrogation - - uid: 10467 + - uid: 10298 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,6.5 + pos: 38.5,9.5 parent: 13329 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True + id: Genpop Entrance + - uid: 10307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,13.5 + parent: 13329 + - type: SurveillanceCamera + id: Genpop Front + - uid: 10308 + components: + - type: Transform + pos: 46.5,5.5 + parent: 13329 + - type: SurveillanceCamera id: Solitary - - uid: 10468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,15.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Cell 1 - - uid: 10469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,15.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Cell 2 - - uid: 10470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,15.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Cell 3 - - uid: 10471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,15.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Cell 4 - uid: 10472 components: - type: Transform @@ -195175,18 +195232,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Perma Brig - - uid: 10558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,7.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell Block + id: Genpop - uid: 10559 components: - type: Transform @@ -195198,27 +195244,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Warden's Office - - uid: 10570 - components: - - type: Transform - pos: 43.5,1.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig Med - - uid: 10571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,11.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Entrance - uid: 10572 components: - type: Transform @@ -195284,17 +195309,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Security Breakroom - - uid: 10914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,19.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: HoS Office - uid: 10916 components: - type: Transform @@ -195316,17 +195330,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: North Entrance - - uid: 10918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-0.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: South Entrance - uid: 10919 components: - type: Transform @@ -195490,27 +195493,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: HOS Bedroom - - uid: 34915 - components: - - type: Transform - pos: 22.5,5.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Entrance - - uid: 34916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,4.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Secondary Entrance - uid: 35102 components: - type: Transform @@ -195522,17 +195504,12 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Security Cargo Checkpoint - - uid: 35466 + - uid: 35980 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,27.5 + pos: 45.5,26.5 parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma North - proto: SurveillanceCameraService entities: - uid: 1627 @@ -195990,25 +195967,21 @@ entities: - uid: 4601 components: - type: Transform - rot: 1.5707963267948966 rad pos: -37.5,45.5 parent: 13329 - uid: 4670 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,30.5 parent: 13329 - uid: 4671 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,31.5 parent: 13329 - uid: 4672 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,32.5 parent: 13329 - uid: 4718 @@ -196054,25 +196027,21 @@ entities: - uid: 6626 components: - type: Transform - rot: 1.5707963267948966 rad pos: -19.5,67.5 parent: 13329 - uid: 6627 components: - type: Transform - rot: 1.5707963267948966 rad pos: -19.5,68.5 parent: 13329 - uid: 6628 components: - type: Transform - rot: 1.5707963267948966 rad pos: -19.5,69.5 parent: 13329 - uid: 6629 components: - type: Transform - rot: 1.5707963267948966 rad pos: -19.5,70.5 parent: 13329 - uid: 6940 @@ -196140,16 +196109,31 @@ entities: - type: Transform pos: 5.5,27.5 parent: 13329 + - uid: 7174 + components: + - type: Transform + pos: 47.5,13.5 + parent: 13329 + - uid: 7176 + components: + - type: Transform + pos: 45.5,12.5 + parent: 13329 + - uid: 7590 + components: + - type: Transform + pos: 48.5,1.5 + parent: 13329 + - uid: 8459 + components: + - type: Transform + pos: 48.5,2.5 + parent: 13329 - uid: 8643 components: - type: Transform pos: 27.5,9.5 parent: 13329 - - uid: 9355 - components: - - type: Transform - pos: 39.5,2.5 - parent: 13329 - uid: 9376 components: - type: Transform @@ -196168,7 +196152,6 @@ entities: - uid: 9452 components: - type: Transform - rot: 1.5707963267948966 rad pos: 19.5,1.5 parent: 13329 - uid: 9523 @@ -196181,20 +196164,20 @@ entities: - type: Transform pos: 17.5,19.5 parent: 13329 + - uid: 9526 + components: + - type: Transform + pos: 31.5,7.5 + parent: 13329 - uid: 9627 components: - type: Transform pos: 68.5,-7.5 parent: 13329 - - uid: 9650 + - uid: 9649 components: - type: Transform - pos: 43.5,1.5 - parent: 13329 - - uid: 9652 - components: - - type: Transform - pos: 45.5,1.5 + pos: 32.5,7.5 parent: 13329 - uid: 10126 components: @@ -196241,26 +196224,21 @@ entities: - type: Transform pos: -1.5,49.5 parent: 13329 - - uid: 10310 - components: - - type: Transform - pos: 41.5,13.5 - parent: 13329 - - uid: 10311 - components: - - type: Transform - pos: 44.5,13.5 - parent: 13329 - - uid: 10312 - components: - - type: Transform - pos: 48.5,13.5 - parent: 13329 - - uid: 10313 + - uid: 10301 components: - type: Transform pos: 51.5,13.5 parent: 13329 + - uid: 10305 + components: + - type: Transform + pos: 51.5,14.5 + parent: 13329 + - uid: 10322 + components: + - type: Transform + pos: 46.5,12.5 + parent: 13329 - uid: 10338 components: - type: Transform @@ -196296,15 +196274,10 @@ entities: - type: Transform pos: 49.5,22.5 parent: 13329 - - uid: 10429 + - uid: 10436 components: - type: Transform - pos: 41.5,9.5 - parent: 13329 - - uid: 10439 - components: - - type: Transform - pos: 51.5,9.5 + pos: 47.5,12.5 parent: 13329 - uid: 10460 components: @@ -196419,7 +196392,6 @@ entities: - uid: 11699 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,-9.5 parent: 13329 - uid: 11715 @@ -196535,19 +196507,16 @@ entities: - uid: 11891 components: - type: Transform - rot: 1.5707963267948966 rad pos: 20.5,-2.5 parent: 13329 - uid: 12077 components: - type: Transform - rot: -1.5707963267948966 rad pos: -18.5,-21.5 parent: 13329 - uid: 12078 components: - type: Transform - rot: -1.5707963267948966 rad pos: -18.5,-20.5 parent: 13329 - uid: 12084 @@ -196558,7 +196527,6 @@ entities: - uid: 12157 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-14.5 parent: 13329 - uid: 13045 @@ -196594,31 +196562,26 @@ entities: - uid: 13117 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,-39.5 parent: 13329 - uid: 13118 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,-39.5 parent: 13329 - uid: 13119 components: - type: Transform - rot: 3.141592653589793 rad pos: -36.5,-39.5 parent: 13329 - uid: 13120 components: - type: Transform - rot: 3.141592653589793 rad pos: -30.5,-44.5 parent: 13329 - uid: 13121 components: - type: Transform - rot: 3.141592653589793 rad pos: -31.5,-44.5 parent: 13329 - uid: 13152 @@ -196714,31 +196677,26 @@ entities: - uid: 15512 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,-14.5 parent: 13329 - uid: 15513 components: - type: Transform - rot: -1.5707963267948966 rad pos: 51.5,-14.5 parent: 13329 - uid: 15515 components: - type: Transform - rot: -1.5707963267948966 rad pos: 54.5,-20.5 parent: 13329 - uid: 15516 components: - type: Transform - rot: -1.5707963267948966 rad pos: 55.5,-20.5 parent: 13329 - uid: 15517 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,-20.5 parent: 13329 - uid: 15520 @@ -196784,7 +196742,6 @@ entities: - uid: 18348 components: - type: Transform - rot: -1.5707963267948966 rad pos: 21.5,39.5 parent: 13329 - uid: 18352 @@ -196825,7 +196782,6 @@ entities: - uid: 18506 components: - type: Transform - rot: -1.5707963267948966 rad pos: 20.5,39.5 parent: 13329 - uid: 18566 @@ -196836,7 +196792,6 @@ entities: - uid: 18597 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,48.5 parent: 13329 - uid: 18611 @@ -196932,19 +196887,16 @@ entities: - uid: 19032 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,39.5 parent: 13329 - uid: 19033 components: - type: Transform - rot: 1.5707963267948966 rad pos: 28.5,39.5 parent: 13329 - uid: 19038 components: - type: Transform - rot: 1.5707963267948966 rad pos: 30.5,46.5 parent: 13329 - uid: 19180 @@ -197100,13 +197052,11 @@ entities: - uid: 26682 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,-17.5 parent: 13329 - uid: 26683 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,-17.5 parent: 13329 - uid: 26713 @@ -197177,7 +197127,6 @@ entities: - uid: 27860 components: - type: Transform - rot: -1.5707963267948966 rad pos: 91.5,36.5 parent: 13329 - uid: 27862 @@ -197193,13 +197142,11 @@ entities: - uid: 28176 components: - type: Transform - rot: 3.141592653589793 rad pos: 122.5,-2.5 parent: 13329 - uid: 28177 components: - type: Transform - rot: 3.141592653589793 rad pos: 122.5,-1.5 parent: 13329 - uid: 29076 @@ -197370,7 +197317,6 @@ entities: - uid: 31633 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,-17.5 parent: 13329 - uid: 31646 @@ -197738,6 +197684,11 @@ entities: - type: Transform pos: 27.5,36.5 parent: 13329 + - uid: 36060 + components: + - type: Transform + pos: 53.5,22.5 + parent: 13329 - proto: TableCarpet entities: - uid: 209 @@ -198011,7 +197962,6 @@ entities: - uid: 1356 components: - type: Transform - rot: -1.5707963267948966 rad pos: -15.5,42.5 parent: 13329 - uid: 1784 @@ -198029,16 +197979,6 @@ entities: - type: Transform pos: 2.5,18.5 parent: 13329 - - uid: 10563 - components: - - type: Transform - pos: 44.5,3.5 - parent: 13329 - - uid: 10564 - components: - - type: Transform - pos: 45.5,3.5 - parent: 13329 - uid: 10601 components: - type: Transform @@ -198268,11 +198208,6 @@ entities: - type: Transform pos: -8.5,27.5 parent: 13329 - - uid: 918 - components: - - type: Transform - pos: -10.5,27.5 - parent: 13329 - uid: 1161 components: - type: Transform @@ -198311,21 +198246,23 @@ entities: - uid: 4598 components: - type: Transform - rot: 1.5707963267948966 rad pos: -35.5,49.5 parent: 13329 - uid: 4599 components: - type: Transform - rot: 1.5707963267948966 rad pos: -35.5,50.5 parent: 13329 - uid: 4602 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,48.5 parent: 13329 + - uid: 7152 + components: + - type: Transform + pos: 49.5,8.5 + parent: 13329 - uid: 7179 components: - type: Transform @@ -198351,6 +198288,11 @@ entities: - type: Transform pos: 28.5,15.5 parent: 13329 + - uid: 8111 + components: + - type: Transform + pos: 45.5,10.5 + parent: 13329 - uid: 8388 components: - type: Transform @@ -198361,16 +198303,51 @@ entities: - type: Transform pos: 26.5,30.5 parent: 13329 + - uid: 8433 + components: + - type: Transform + pos: 37.5,1.5 + parent: 13329 + - uid: 8455 + components: + - type: Transform + pos: 30.5,23.5 + parent: 13329 - uid: 8639 components: - type: Transform pos: 22.5,13.5 parent: 13329 + - uid: 9107 + components: + - type: Transform + pos: 31.5,2.5 + parent: 13329 + - uid: 9108 + components: + - type: Transform + pos: 31.5,1.5 + parent: 13329 + - uid: 9111 + components: + - type: Transform + pos: 31.5,3.5 + parent: 13329 - uid: 9402 components: - type: Transform pos: 31.5,9.5 parent: 13329 + - uid: 9465 + components: + - type: Transform + pos: 36.5,3.5 + parent: 13329 + - uid: 9652 + components: + - type: Transform + pos: 37.5,3.5 + parent: 13329 - uid: 9654 components: - type: Transform @@ -198446,6 +198423,16 @@ entities: - type: Transform pos: 51.5,25.5 parent: 13329 + - uid: 10428 + components: + - type: Transform + pos: 46.5,10.5 + parent: 13329 + - uid: 10444 + components: + - type: Transform + pos: 47.5,10.5 + parent: 13329 - uid: 10592 components: - type: Transform @@ -198474,37 +198461,31 @@ entities: - uid: 14363 components: - type: Transform - rot: 1.5707963267948966 rad pos: 38.5,-18.5 parent: 13329 - uid: 14364 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,-17.5 parent: 13329 - uid: 14365 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,-15.5 parent: 13329 - uid: 14366 components: - type: Transform - rot: 1.5707963267948966 rad pos: 53.5,-13.5 parent: 13329 - uid: 14367 components: - type: Transform - rot: 1.5707963267948966 rad pos: 50.5,-21.5 parent: 13329 - uid: 14368 components: - type: Transform - rot: 1.5707963267948966 rad pos: 37.5,-24.5 parent: 13329 - uid: 15344 @@ -198567,6 +198548,11 @@ entities: - type: Transform pos: -21.5,73.5 parent: 13329 + - uid: 20451 + components: + - type: Transform + pos: -10.5,29.5 + parent: 13329 - uid: 24019 components: - type: Transform @@ -198710,7 +198696,6 @@ entities: - uid: 26614 components: - type: Transform - rot: 3.141592653589793 rad pos: 73.5,-8.5 parent: 13329 - uid: 26635 @@ -198756,55 +198741,46 @@ entities: - uid: 30230 components: - type: Transform - rot: 3.141592653589793 rad pos: 113.5,44.5 parent: 13329 - uid: 30231 components: - type: Transform - rot: 3.141592653589793 rad pos: 110.5,42.5 parent: 13329 - uid: 30232 components: - type: Transform - rot: 3.141592653589793 rad pos: 99.5,42.5 parent: 13329 - uid: 30233 components: - type: Transform - rot: 3.141592653589793 rad pos: 99.5,55.5 parent: 13329 - uid: 30234 components: - type: Transform - rot: 3.141592653589793 rad pos: 99.5,56.5 parent: 13329 - uid: 30235 components: - type: Transform - rot: 3.141592653589793 rad pos: 107.5,54.5 parent: 13329 - uid: 30236 components: - type: Transform - rot: 3.141592653589793 rad pos: 105.5,54.5 parent: 13329 - uid: 30239 components: - type: Transform - rot: 1.5707963267948966 rad pos: 104.5,42.5 parent: 13329 - uid: 30240 components: - type: Transform - rot: 1.5707963267948966 rad pos: 105.5,42.5 parent: 13329 - uid: 30736 @@ -199042,6 +199018,11 @@ entities: - type: Transform pos: 73.5,-10.5 parent: 13329 + - uid: 35995 + components: + - type: Transform + pos: 35.5,1.5 + parent: 13329 - proto: TableReinforcedGlass entities: - uid: 13334 @@ -199067,25 +199048,21 @@ entities: - uid: 18920 components: - type: Transform - rot: -1.5707963267948966 rad pos: 23.5,57.5 parent: 13329 - uid: 18921 components: - type: Transform - rot: -1.5707963267948966 rad pos: 23.5,58.5 parent: 13329 - uid: 18928 components: - type: Transform - rot: -1.5707963267948966 rad pos: 26.5,57.5 parent: 13329 - uid: 18930 components: - type: Transform - rot: -1.5707963267948966 rad pos: 23.5,60.5 parent: 13329 - uid: 19081 @@ -199492,6 +199469,18 @@ entities: - type: Transform pos: -5.5,69.5 parent: 13329 + - uid: 7161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 13329 + - uid: 8161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,16.5 + parent: 13329 - uid: 9543 components: - type: Transform @@ -199512,7 +199501,8 @@ entities: - uid: 10424 components: - type: Transform - pos: 49.5,25.5 + rot: -1.5707963267948966 rad + pos: 42.5,16.5 parent: 13329 - uid: 10509 components: @@ -199559,6 +199549,12 @@ entities: - type: Transform pos: 37.5,16.5 parent: 13329 + - uid: 10570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,15.5 + parent: 13329 - uid: 10699 components: - type: Transform @@ -200598,6 +200594,16 @@ entities: - type: Transform pos: -19.5,71.5 parent: 13329 + - uid: 8163 + components: + - type: Transform + pos: 48.5,15.5 + parent: 13329 + - uid: 8166 + components: + - type: Transform + pos: 48.5,13.5 + parent: 13329 - uid: 9244 components: - type: Transform @@ -201111,6 +201117,13 @@ entities: - type: Transform pos: 2.2475312,26.675041 parent: 13329 +- proto: ToyFigurineThief + entities: + - uid: 8429 + components: + - type: Transform + pos: 42.043983,15.920214 + parent: 13329 - proto: ToyRubberDuck entities: - uid: 1127 @@ -201118,6 +201131,11 @@ entities: - type: Transform pos: -13.416338,8.47282 parent: 13329 + - uid: 8158 + components: + - type: Transform + pos: 51.276905,27.336767 + parent: 13329 - uid: 29275 components: - type: Transform @@ -201169,6 +201187,11 @@ entities: parent: 13329 - proto: TrashBag entities: + - uid: 8106 + components: + - type: Transform + pos: 42.111565,29.374323 + parent: 13329 - uid: 26153 components: - type: Transform @@ -201208,6 +201231,26 @@ entities: - type: Transform pos: 128.49329,50.518593 parent: 13329 +- proto: TurnstileGenpopEnter + entities: + - uid: 36061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,8.5 + parent: 13329 +- proto: TurnstileGenpopLeave + entities: + - uid: 10388 + components: + - type: Transform + pos: 41.5,8.5 + parent: 13329 + - uid: 36053 + components: + - type: Transform + pos: 41.5,0.5 + parent: 13329 - proto: TwoWayLever entities: - uid: 11497 @@ -201597,6 +201640,12 @@ entities: - type: Transform pos: 64.5,48.5 parent: 13329 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: UniformScrubsColorBlue entities: - uid: 18748 @@ -201975,6 +202024,11 @@ entities: - type: Transform pos: -24.5,58.5 parent: 13329 + - uid: 8420 + components: + - type: Transform + pos: 47.5,15.5 + parent: 13329 - proto: VendingMachineGeneDrobe entities: - uid: 18640 @@ -202012,11 +202066,6 @@ entities: parent: 13329 - proto: VendingMachineMedical entities: - - uid: 9437 - components: - - type: Transform - pos: 41.5,3.5 - parent: 13329 - uid: 10261 components: - type: Transform @@ -202146,6 +202195,13 @@ entities: - type: Transform pos: 109.5,36.5 parent: 13329 +- proto: VendingMachineSustenance + entities: + - uid: 8456 + components: + - type: Transform + pos: 47.5,16.5 + parent: 13329 - proto: VendingMachineTankDispenserEngineering entities: - uid: 26010 @@ -202160,6 +202216,11 @@ entities: - type: Transform pos: 39.5,14.5 parent: 13329 + - uid: 10914 + components: + - type: Transform + pos: 51.5,8.5 + parent: 13329 - uid: 13086 components: - type: Transform @@ -202309,6 +202370,11 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,41.5 parent: 13329 + - uid: 8878 + components: + - type: Transform + pos: 46.5,10.5 + parent: 13329 - uid: 30724 components: - type: Transform @@ -202446,151 +202512,126 @@ entities: - uid: 2091 components: - type: Transform - rot: 3.141592653589793 rad pos: -15.5,-7.5 parent: 13329 - uid: 2092 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-7.5 parent: 13329 - uid: 2093 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-8.5 parent: 13329 - uid: 2094 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-9.5 parent: 13329 - uid: 2095 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-10.5 parent: 13329 - uid: 2096 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-11.5 parent: 13329 - uid: 2097 components: - type: Transform - rot: 3.141592653589793 rad pos: -15.5,-11.5 parent: 13329 - uid: 2098 components: - type: Transform - rot: 3.141592653589793 rad pos: -14.5,-11.5 parent: 13329 - uid: 2099 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-11.5 parent: 13329 - uid: 2100 components: - type: Transform - rot: 3.141592653589793 rad pos: -12.5,-11.5 parent: 13329 - uid: 2101 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,-11.5 parent: 13329 - uid: 2102 components: - type: Transform - rot: 3.141592653589793 rad pos: -10.5,-11.5 parent: 13329 - uid: 2103 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-11.5 parent: 13329 - uid: 2104 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-11.5 parent: 13329 - uid: 2105 components: - type: Transform - rot: 3.141592653589793 rad pos: -7.5,-11.5 parent: 13329 - uid: 2106 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-11.5 parent: 13329 - uid: 2107 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-10.5 parent: 13329 - uid: 2109 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-8.5 parent: 13329 - uid: 2110 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-7.5 parent: 13329 - uid: 2111 components: - type: Transform - rot: 3.141592653589793 rad pos: -7.5,-7.5 parent: 13329 - uid: 2112 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-7.5 parent: 13329 - uid: 2113 components: - type: Transform - rot: 3.141592653589793 rad pos: -12.5,-10.5 parent: 13329 - uid: 2114 components: - type: Transform - rot: 3.141592653589793 rad pos: -12.5,-8.5 parent: 13329 - uid: 2115 components: - type: Transform - rot: 3.141592653589793 rad pos: -12.5,-7.5 parent: 13329 - uid: 2116 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-7.5 parent: 13329 - uid: 2325 @@ -204041,25 +204082,21 @@ entities: - uid: 5145 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,53.5 parent: 13329 - uid: 5146 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,57.5 parent: 13329 - uid: 5147 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,59.5 parent: 13329 - uid: 5148 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,60.5 parent: 13329 - uid: 5154 @@ -204997,30 +205034,10 @@ entities: - type: Transform pos: 29.5,0.5 parent: 13329 - - uid: 7142 - components: - - type: Transform - pos: 29.5,4.5 - parent: 13329 - - uid: 7143 - components: - - type: Transform - pos: 32.5,0.5 - parent: 13329 - - uid: 7144 - components: - - type: Transform - pos: 32.5,4.5 - parent: 13329 - - uid: 7145 - components: - - type: Transform - pos: 35.5,0.5 - parent: 13329 - uid: 7146 components: - type: Transform - pos: 35.5,4.5 + pos: 49.5,11.5 parent: 13329 - uid: 7147 components: @@ -205047,6 +205064,11 @@ entities: - type: Transform pos: 40.5,4.5 parent: 13329 + - uid: 7167 + components: + - type: Transform + pos: 44.5,11.5 + parent: 13329 - uid: 7190 components: - type: Transform @@ -205197,6 +205219,16 @@ entities: - type: Transform pos: 37.5,15.5 parent: 13329 + - uid: 7256 + components: + - type: Transform + pos: 32.5,2.5 + parent: 13329 + - uid: 7257 + components: + - type: Transform + pos: 35.5,0.5 + parent: 13329 - uid: 7260 components: - type: Transform @@ -205272,21 +205304,6 @@ entities: - type: Transform pos: 38.5,11.5 parent: 13329 - - uid: 7280 - components: - - type: Transform - pos: 41.5,0.5 - parent: 13329 - - uid: 7281 - components: - - type: Transform - pos: 42.5,0.5 - parent: 13329 - - uid: 7282 - components: - - type: Transform - pos: 43.5,0.5 - parent: 13329 - uid: 7283 components: - type: Transform @@ -205367,11 +205384,6 @@ entities: - type: Transform pos: 44.5,5.5 parent: 13329 - - uid: 7299 - components: - - type: Transform - pos: 44.5,6.5 - parent: 13329 - uid: 7300 components: - type: Transform @@ -205382,11 +205394,6 @@ entities: - type: Transform pos: 44.5,8.5 parent: 13329 - - uid: 7302 - components: - - type: Transform - pos: 45.5,8.5 - parent: 13329 - uid: 7303 components: - type: Transform @@ -205407,11 +205414,6 @@ entities: - type: Transform pos: 48.5,8.5 parent: 13329 - - uid: 7307 - components: - - type: Transform - pos: 47.5,8.5 - parent: 13329 - uid: 7354 components: - type: Transform @@ -205652,6 +205654,11 @@ entities: - type: Transform pos: 40.5,16.5 parent: 13329 + - uid: 7423 + components: + - type: Transform + pos: 32.5,0.5 + parent: 13329 - uid: 7503 components: - type: Transform @@ -205722,16 +205729,6 @@ entities: - type: Transform pos: 52.5,9.5 parent: 13329 - - uid: 7517 - components: - - type: Transform - pos: 51.5,8.5 - parent: 13329 - - uid: 7518 - components: - - type: Transform - pos: 49.5,8.5 - parent: 13329 - uid: 7520 components: - type: Transform @@ -205747,126 +205744,16 @@ entities: - type: Transform pos: 52.5,12.5 parent: 13329 - - uid: 7523 - components: - - type: Transform - pos: 51.5,12.5 - parent: 13329 - - uid: 7524 - components: - - type: Transform - pos: 49.5,12.5 - parent: 13329 - - uid: 7525 - components: - - type: Transform - pos: 48.5,12.5 - parent: 13329 - uid: 7526 components: - type: Transform - pos: 46.5,12.5 - parent: 13329 - - uid: 7527 - components: - - type: Transform - pos: 44.5,12.5 - parent: 13329 - - uid: 7528 - components: - - type: Transform - pos: 43.5,12.5 - parent: 13329 - - uid: 7529 - components: - - type: Transform - pos: 41.5,12.5 - parent: 13329 - - uid: 7530 - components: - - type: Transform - pos: 41.5,8.5 - parent: 13329 - - uid: 7531 - components: - - type: Transform - pos: 43.5,13.5 - parent: 13329 - - uid: 7532 - components: - - type: Transform - pos: 43.5,14.5 - parent: 13329 - - uid: 7533 - components: - - type: Transform - pos: 43.5,15.5 - parent: 13329 - - uid: 7534 - components: - - type: Transform - pos: 43.5,16.5 + pos: 32.5,3.5 parent: 13329 - uid: 7535 components: - type: Transform pos: 53.5,16.5 parent: 13329 - - uid: 7536 - components: - - type: Transform - pos: 44.5,16.5 - parent: 13329 - - uid: 7537 - components: - - type: Transform - pos: 41.5,16.5 - parent: 13329 - - uid: 7538 - components: - - type: Transform - pos: 46.5,13.5 - parent: 13329 - - uid: 7539 - components: - - type: Transform - pos: 46.5,14.5 - parent: 13329 - - uid: 7540 - components: - - type: Transform - pos: 46.5,15.5 - parent: 13329 - - uid: 7541 - components: - - type: Transform - pos: 46.5,16.5 - parent: 13329 - - uid: 7542 - components: - - type: Transform - pos: 49.5,13.5 - parent: 13329 - - uid: 7543 - components: - - type: Transform - pos: 49.5,14.5 - parent: 13329 - - uid: 7544 - components: - - type: Transform - pos: 49.5,15.5 - parent: 13329 - - uid: 7545 - components: - - type: Transform - pos: 49.5,16.5 - parent: 13329 - - uid: 7546 - components: - - type: Transform - pos: 48.5,16.5 - parent: 13329 - uid: 7547 components: - type: Transform @@ -205887,11 +205774,6 @@ entities: - type: Transform pos: 52.5,16.5 parent: 13329 - - uid: 7551 - components: - - type: Transform - pos: 51.5,16.5 - parent: 13329 - uid: 7552 components: - type: Transform @@ -206067,18 +205949,86 @@ entities: - type: Transform pos: 7.5,19.5 parent: 13329 + - uid: 8107 + components: + - type: Transform + pos: 48.5,11.5 + parent: 13329 + - uid: 8116 + components: + - type: Transform + pos: 48.5,16.5 + parent: 13329 + - uid: 8117 + components: + - type: Transform + pos: 49.5,16.5 + parent: 13329 + - uid: 8118 + components: + - type: Transform + pos: 48.5,12.5 + parent: 13329 + - uid: 8128 + components: + - type: Transform + pos: 52.5,22.5 + parent: 13329 + - uid: 8132 + components: + - type: Transform + pos: 32.5,1.5 + parent: 13329 + - uid: 8135 + components: + - type: Transform + pos: 32.5,4.5 + parent: 13329 + - uid: 8478 + components: + - type: Transform + pos: 42.5,0.5 + parent: 13329 - uid: 8654 components: - type: Transform - rot: 1.5707963267948966 rad pos: 34.5,15.5 parent: 13329 - uid: 8665 components: - type: Transform - rot: -1.5707963267948966 rad pos: 22.5,12.5 parent: 13329 + - uid: 8881 + components: + - type: Transform + pos: 29.5,4.5 + parent: 13329 + - uid: 8966 + components: + - type: Transform + pos: 50.5,16.5 + parent: 13329 + - uid: 8967 + components: + - type: Transform + pos: 51.5,16.5 + parent: 13329 + - uid: 9389 + components: + - type: Transform + pos: 35.5,4.5 + parent: 13329 + - uid: 9393 + components: + - type: Transform + pos: 39.5,0.5 + parent: 13329 + - uid: 9462 + components: + - type: Transform + pos: 40.5,6.5 + parent: 13329 - uid: 9614 components: - type: Transform @@ -206439,6 +206389,36 @@ entities: - type: Transform pos: 52.5,-3.5 parent: 13329 + - uid: 10319 + components: + - type: Transform + pos: 42.5,8.5 + parent: 13329 + - uid: 10330 + components: + - type: Transform + pos: 37.5,4.5 + parent: 13329 + - uid: 10332 + components: + - type: Transform + pos: 38.5,4.5 + parent: 13329 + - uid: 10342 + components: + - type: Transform + pos: 39.5,4.5 + parent: 13329 + - uid: 10427 + components: + - type: Transform + pos: 48.5,10.5 + parent: 13329 + - uid: 10638 + components: + - type: Transform + pos: 36.5,4.5 + parent: 13329 - uid: 10698 components: - type: Transform @@ -206449,6 +206429,11 @@ entities: - type: Transform pos: -28.5,-59.5 parent: 13329 + - uid: 11559 + components: + - type: Transform + pos: 51.5,11.5 + parent: 13329 - uid: 12190 components: - type: Transform @@ -215132,25 +215117,21 @@ entities: - uid: 22811 components: - type: Transform - rot: 1.5707963267948966 rad pos: 92.5,-3.5 parent: 13329 - uid: 22812 components: - type: Transform - rot: 1.5707963267948966 rad pos: 92.5,-7.5 parent: 13329 - uid: 22813 components: - type: Transform - rot: 1.5707963267948966 rad pos: 92.5,-8.5 parent: 13329 - uid: 22815 components: - type: Transform - rot: 1.5707963267948966 rad pos: 92.5,-2.5 parent: 13329 - uid: 22816 @@ -215161,31 +215142,26 @@ entities: - uid: 22817 components: - type: Transform - rot: 1.5707963267948966 rad pos: 99.5,-8.5 parent: 13329 - uid: 22818 components: - type: Transform - rot: 1.5707963267948966 rad pos: 99.5,-2.5 parent: 13329 - uid: 22824 components: - type: Transform - rot: 1.5707963267948966 rad pos: 99.5,-9.5 parent: 13329 - uid: 22825 components: - type: Transform - rot: 1.5707963267948966 rad pos: 99.5,-10.5 parent: 13329 - uid: 22826 components: - type: Transform - rot: 1.5707963267948966 rad pos: 99.5,-1.5 parent: 13329 - uid: 22829 @@ -215211,43 +215187,36 @@ entities: - uid: 22836 components: - type: Transform - rot: 1.5707963267948966 rad pos: 91.5,-13.5 parent: 13329 - uid: 22837 components: - type: Transform - rot: 1.5707963267948966 rad pos: 96.5,-13.5 parent: 13329 - uid: 22838 components: - type: Transform - rot: 1.5707963267948966 rad pos: 95.5,-13.5 parent: 13329 - uid: 22839 components: - type: Transform - rot: 1.5707963267948966 rad pos: 96.5,-16.5 parent: 13329 - uid: 22840 components: - type: Transform - rot: 1.5707963267948966 rad pos: 96.5,-17.5 parent: 13329 - uid: 22841 components: - type: Transform - rot: 1.5707963267948966 rad pos: 96.5,-15.5 parent: 13329 - uid: 22842 components: - type: Transform - rot: 1.5707963267948966 rad pos: 96.5,-14.5 parent: 13329 - uid: 22905 @@ -215860,11 +215829,31 @@ entities: - type: Transform pos: 56.5,51.5 parent: 13329 + - uid: 30690 + components: + - type: Transform + pos: 51.5,26.5 + parent: 13329 - uid: 31003 components: - type: Transform pos: 59.5,61.5 parent: 13329 + - uid: 32192 + components: + - type: Transform + pos: 50.5,26.5 + parent: 13329 + - uid: 32291 + components: + - type: Transform + pos: 49.5,26.5 + parent: 13329 + - uid: 32504 + components: + - type: Transform + pos: 48.5,26.5 + parent: 13329 - uid: 33242 components: - type: Transform @@ -216370,6 +216359,31 @@ entities: - type: Transform pos: 48.5,48.5 parent: 13329 + - uid: 34247 + components: + - type: Transform + pos: 47.5,26.5 + parent: 13329 + - uid: 34915 + components: + - type: Transform + pos: 47.5,29.5 + parent: 13329 + - uid: 34916 + components: + - type: Transform + pos: 47.5,28.5 + parent: 13329 + - uid: 35351 + components: + - type: Transform + pos: 49.5,28.5 + parent: 13329 + - uid: 35462 + components: + - type: Transform + pos: 49.5,29.5 + parent: 13329 - uid: 35760 components: - type: Transform @@ -216610,7 +216624,6 @@ entities: - uid: 62 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,0.5 parent: 13329 - uid: 66 @@ -217391,13 +217404,11 @@ entities: - uid: 299 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,-1.5 parent: 13329 - uid: 302 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,1.5 parent: 13329 - uid: 860 @@ -217743,13 +217754,11 @@ entities: - uid: 1630 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,3.5 parent: 13329 - uid: 1740 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,-2.5 parent: 13329 - uid: 1761 @@ -217830,7 +217839,6 @@ entities: - uid: 1972 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,-0.5 parent: 13329 - uid: 1973 @@ -217841,73 +217849,61 @@ entities: - uid: 1974 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,3.5 parent: 13329 - uid: 1975 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,3.5 parent: 13329 - uid: 1976 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,3.5 parent: 13329 - uid: 1977 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 13329 - uid: 1978 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,3.5 parent: 13329 - uid: 1979 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,2.5 parent: 13329 - uid: 1980 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 13329 - uid: 1981 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-2.5 parent: 13329 - uid: 1982 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-2.5 parent: 13329 - uid: 1983 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 13329 - uid: 1984 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-1.5 parent: 13329 - uid: 1985 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,-2.5 parent: 13329 - uid: 2040 @@ -219673,19 +219669,16 @@ entities: - uid: 6548 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,61.5 parent: 13329 - uid: 6549 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,65.5 parent: 13329 - uid: 6551 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,63.5 parent: 13329 - uid: 7094 @@ -219693,96 +219686,6 @@ entities: - type: Transform pos: 18.5,-3.5 parent: 13329 - - uid: 7152 - components: - - type: Transform - pos: 35.5,1.5 - parent: 13329 - - uid: 7153 - components: - - type: Transform - pos: 35.5,2.5 - parent: 13329 - - uid: 7154 - components: - - type: Transform - pos: 35.5,3.5 - parent: 13329 - - uid: 7155 - components: - - type: Transform - pos: 29.5,1.5 - parent: 13329 - - uid: 7156 - components: - - type: Transform - pos: 29.5,2.5 - parent: 13329 - - uid: 7157 - components: - - type: Transform - pos: 29.5,3.5 - parent: 13329 - - uid: 7158 - components: - - type: Transform - pos: 32.5,1.5 - parent: 13329 - - uid: 7159 - components: - - type: Transform - pos: 32.5,2.5 - parent: 13329 - - uid: 7160 - components: - - type: Transform - pos: 32.5,3.5 - parent: 13329 - - uid: 7588 - components: - - type: Transform - pos: 51.5,26.5 - parent: 13329 - - uid: 7589 - components: - - type: Transform - pos: 50.5,26.5 - parent: 13329 - - uid: 7590 - components: - - type: Transform - pos: 49.5,26.5 - parent: 13329 - - uid: 7591 - components: - - type: Transform - pos: 48.5,26.5 - parent: 13329 - - uid: 7592 - components: - - type: Transform - pos: 47.5,26.5 - parent: 13329 - - uid: 7593 - components: - - type: Transform - pos: 47.5,29.5 - parent: 13329 - - uid: 7594 - components: - - type: Transform - pos: 47.5,28.5 - parent: 13329 - - uid: 7595 - components: - - type: Transform - pos: 49.5,28.5 - parent: 13329 - - uid: 7596 - components: - - type: Transform - pos: 49.5,29.5 - parent: 13329 - uid: 7598 components: - type: Transform @@ -221541,7 +221444,6 @@ entities: - uid: 18642 components: - type: Transform - rot: 3.141592653589793 rad pos: 14.5,17.5 parent: 13329 - uid: 18747 @@ -224597,7 +224499,6 @@ entities: - uid: 36000 components: - type: Transform - rot: 3.141592653589793 rad pos: 14.5,18.5 parent: 13329 - proto: WallSolidRust @@ -225326,130 +225227,26 @@ entities: - 0 - proto: WardrobePrisonFilled entities: - - uid: 10434 + - uid: 10299 components: - type: Transform - pos: 44.5,11.5 + pos: 50.5,15.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10435 + - uid: 10364 components: - type: Transform - pos: 43.5,11.5 + pos: 41.5,13.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 1.8541656 - - 6.9751945 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10436 + - uid: 10575 components: - type: Transform - pos: 49.5,11.5 + pos: 41.5,11.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10437 + - uid: 13353 components: - type: Transform - pos: 48.5,11.5 + pos: 41.5,12.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 35988 - components: - - type: Transform - anchored: True - pos: 33.5,1.5 - parent: 13329 - - type: Physics - bodyType: Static - - uid: 35989 - components: - - type: Transform - anchored: True - pos: 30.5,1.5 - parent: 13329 - - type: Physics - bodyType: Static - - uid: 35990 - components: - - type: Transform - anchored: True - pos: 27.5,1.5 - parent: 13329 - - type: Physics - bodyType: Static - - uid: 35991 - components: - - type: Transform - anchored: True - pos: 36.5,1.5 - parent: 13329 - - type: Physics - bodyType: Static - proto: WardrobeRobotics entities: - uid: 35999 @@ -225591,10 +225388,10 @@ entities: - type: Transform pos: -26.5,58.5 parent: 13329 - - uid: 10154 + - uid: 8432 components: - type: Transform - pos: 32.5,24.5 + pos: 33.5,19.5 parent: 13329 - uid: 11770 components: @@ -225638,11 +225435,6 @@ entities: parent: 13329 - proto: WaterTankFull entities: - - uid: 1503 - components: - - type: Transform - pos: 5.5,9.5 - parent: 13329 - uid: 4875 components: - type: Transform @@ -225653,6 +225445,11 @@ entities: - type: Transform pos: -37.5,68.5 parent: 13329 + - uid: 8424 + components: + - type: Transform + pos: 43.5,29.5 + parent: 13329 - uid: 10190 components: - type: Transform @@ -225718,6 +225515,16 @@ entities: - type: Transform pos: 67.5,-44.5 parent: 13329 + - uid: 36066 + components: + - type: Transform + pos: 8.5,13.5 + parent: 13329 + - uid: 36067 + components: + - type: Transform + pos: 8.5,11.5 + parent: 13329 - proto: WaterTankHighCapacity entities: - uid: 1438 @@ -225749,6 +225556,12 @@ entities: - type: Transform pos: 36.5,12.5 parent: 13329 + - uid: 9347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 13329 - uid: 9387 components: - type: Transform @@ -225779,11 +225592,6 @@ entities: - type: Transform pos: 30.5,17.5 parent: 13329 - - uid: 10443 - components: - - type: Transform - pos: 41.5,9.5 - parent: 13329 - uid: 10482 components: - type: Transform @@ -226272,12 +226080,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,3.5 parent: 13329 - - uid: 10458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,27.5 - parent: 13329 - uid: 10459 components: - type: Transform @@ -226442,12 +226244,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,27.5 parent: 13329 - - uid: 20451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,27.5 - parent: 13329 - uid: 20452 components: - type: Transform @@ -226461,6 +226257,16 @@ entities: - type: Transform pos: -10.5,0.5 parent: 13329 + - uid: 9650 + components: + - type: Transform + pos: 36.5,3.5 + parent: 13329 + - uid: 10296 + components: + - type: Transform + pos: 37.5,3.5 + parent: 13329 - proto: WindoorSecureArmoryLocked entities: - uid: 9364 @@ -226584,12 +226390,6 @@ entities: - type: Transform pos: 38.5,8.5 parent: 13329 - - uid: 10487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,4.5 - parent: 13329 - uid: 29451 components: - type: Transform @@ -226886,38 +226686,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,48.5 parent: 13329 - - uid: 9333 - components: - - type: MetaData - name: cell 1 - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,4.5 - parent: 13329 - - uid: 9334 - components: - - type: MetaData - name: cell 2 - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,4.5 - parent: 13329 - - uid: 9335 - components: - - type: MetaData - name: cell 3 - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,4.5 - parent: 13329 - - uid: 9336 - components: - - type: MetaData - name: Drunk Tank - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,4.5 - parent: 13329 - uid: 9361 components: - type: Transform @@ -226947,12 +226715,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,29.5 parent: 13329 - - uid: 10441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,9.5 - parent: 13329 - uid: 18683 components: - type: Transform @@ -227150,19 +226912,16 @@ entities: - uid: 9563 components: - type: Transform - rot: -1.5707963267948966 rad pos: 21.5,-3.5 parent: 13329 - uid: 9771 components: - type: Transform - rot: 1.5707963267948966 rad pos: 10.5,-17.5 parent: 13329 - uid: 9772 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-19.5 parent: 13329 - uid: 13793 @@ -227694,6 +227453,11 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-0.5 parent: 13329 + - uid: 7154 + components: + - type: Transform + pos: 51.5,7.5 + parent: 13329 - uid: 7278 components: - type: Transform @@ -227706,6 +227470,11 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,3.5 parent: 13329 + - uid: 8081 + components: + - type: Transform + pos: 39.5,3.5 + parent: 13329 - uid: 8668 components: - type: Transform @@ -227772,40 +227541,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,13.5 parent: 13329 - - uid: 9461 - components: - - type: Transform - pos: 41.5,4.5 - parent: 13329 - - uid: 9462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,4.5 - parent: 13329 - - uid: 9463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,4.5 - parent: 13329 - - uid: 9464 - components: - - type: Transform - pos: 43.5,4.5 - parent: 13329 - - uid: 9465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,4.5 - parent: 13329 - - uid: 9466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,4.5 - parent: 13329 - uid: 9467 components: - type: Transform @@ -227835,12 +227570,24 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 13329 + - uid: 10154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,3.5 + parent: 13329 - uid: 10243 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,30.5 parent: 13329 + - uid: 10295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,3.5 + parent: 13329 - uid: 10411 components: - type: Transform @@ -227865,24 +227612,6 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,21.5 parent: 13329 - - uid: 10440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,9.5 - parent: 13329 - - uid: 10486 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,3.5 - parent: 13329 - - uid: 10569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,1.5 - parent: 13329 - uid: 10619 components: - type: Transform @@ -227969,6 +227698,12 @@ entities: rot: 3.141592653589793 rad pos: 17.5,0.5 parent: 13329 + - uid: 13404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,7.5 + parent: 13329 - uid: 13818 components: - type: Transform diff --git a/Resources/Maps/loop.yml b/Resources/Maps/loop.yml index 2f3eba04e8..f1072a72ea 100644 --- a/Resources/Maps/loop.yml +++ b/Resources/Maps/loop.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 254.1.0 + engineVersion: 260.0.0 forkId: "" forkVersion: "" - time: 04/26/2025 04:37:53 - entityCount: 17819 + time: 05/19/2025 20:28:42 + entityCount: 17820 maps: - 1 grids: @@ -75,284 +75,284 @@ entities: chunks: 0,0: ind: 0,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHgAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHgAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHgAAAAABHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAA - version: 6 + tiles: HQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAgAAAAAAAAIAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIAAAAAAAACAAAAAAAAAeAAAAAAEAHgAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAgAAAAAAAAIAAAAAAAAB4AAAAAAQAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAIAHgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAHgAAAAABAB4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIAAAAAAAACAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAABAB4AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAgAAAAAAAAIAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: HQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHQAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHQAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAACHQAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHgAAAAADHgAAAAABHgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAAB - version: 6 + tiles: HQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAB0AAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAQAeAAAAAAAAHgAAAAABAB4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAB0AAAAAAAAeAAAAAAIAHgAAAAACAB4AAAAAAAAeAAAAAAAAHgAAAAACAB4AAAAAAwAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAIAHgAAAAABAB4AAAAAAAAeAAAAAAIAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAIAHgAAAAACAB4AAAAAAQAeAAAAAAMAHgAAAAAAAB4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAABAB4AAAAAAwAeAAAAAAEAHgAAAAABAB4AAAAAAgAeAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAQAeAAAAAAMAHgAAAAADAB4AAAAAAAAeAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAMAHgAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAIAHgAAAAACAB4AAAAAAQAeAAAAAAEAHgAAAAAAAB4AAAAAAQAeAAAAAAIAHgAAAAACAB4AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAQAeAAAAAAMAHgAAAAADAB4AAAAAAQAeAAAAAAMAHgAAAAABAB4AAAAAAgAeAAAAAAMAHgAAAAABAB4AAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAQAeAAAAAAAAHQAAAAAAAB4AAAAAAgAeAAAAAAEAHgAAAAADAB4AAAAAAQAeAAAAAAAAHgAAAAADAB4AAAAAAAAeAAAAAAIAHgAAAAACAB4AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAMAHgAAAAADAB0AAAAAAAAeAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAMAHgAAAAADAB4AAAAAAQAeAAAAAAIAHgAAAAAAAB4AAAAAAQAeAAAAAAAAHgAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAABAB4AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAAAeAAAAAAIAHgAAAAADAB4AAAAAAgAeAAAAAAMAHgAAAAAAAB4AAAAAAgAeAAAAAAIAHQAAAAAAAB4AAAAAAwAeAAAAAAIAHgAAAAADAB4AAAAAAQAeAAAAAAAAHgAAAAAAAB4AAAAAAwAeAAAAAAIAHgAAAAADAB4AAAAAAwAeAAAAAAIAHgAAAAABAB4AAAAAAwAeAAAAAAMAHgAAAAACAB0AAAAAAAAeAAAAAAEAHgAAAAABAB4AAAAAAwAeAAAAAAIAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAEAHQAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAAAAB0AAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAwAeAAAAAAEAHgAAAAABAA== + version: 7 0,-1: ind: 0,-1 - tiles: HwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA - version: 6 + tiles: HwAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIAAAAAAAACAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 -2,0: ind: -2,0 - tiles: IgAAAAAAHQAAAAAAJQAAAAADJQAAAAACJQAAAAAAJQAAAAABHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAJQAAAAADJQAAAAADJQAAAAABJQAAAAABHQAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHQAAAAAAIAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAACHQAAAAAAIAAAAAAAHwAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADHQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAACHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAACHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHgAAAAACHgAAAAACIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHQAAAAAAHgAAAAACHgAAAAABIwAAAAAAIwAAAAAAHgAAAAACHgAAAAAAHgAAAAABHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABIwAAAAAAIwAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAABIwAAAAAAIwAAAAAAHgAAAAABHgAAAAADHgAAAAACHQAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAACHgAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHQAAAAAAHgAAAAAA - version: 6 + tiles: IgAAAAAAAB0AAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAAAlAAAAAAEAHQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAQAdAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAJQAAAAADACUAAAAAAwAlAAAAAAEAJQAAAAABAB0AAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAQAeAAAAAAMAHgAAAAAAAB4AAAAAAAAeAAAAAAIAHQAAAAAAACAAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAgAeAAAAAAIAHgAAAAACAB0AAAAAAAAgAAAAAAAAHwAAAAAAAB0AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAgAeAAAAAAMAHQAAAAAAAB4AAAAAAQAeAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAwAdAAAAAAAAIAAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAQAeAAAAAAIAHgAAAAAAAB0AAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAwAeAAAAAAIAHgAAAAABAB4AAAAAAQAeAAAAAAIAHQAAAAAAACAAAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAMAHgAAAAAAAB4AAAAAAQAeAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAIAHgAAAAACAB0AAAAAAAAgAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAADAB4AAAAAAwAeAAAAAAIAHQAAAAAAAB4AAAAAAAAeAAAAAAMAHgAAAAADAB4AAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAQAeAAAAAAMAHgAAAAACAB4AAAAAAAAeAAAAAAMAHQAAAAAAAB4AAAAAAgAeAAAAAAIAIwAAAAAAACMAAAAAAAAeAAAAAAAAHgAAAAACAB4AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAEAHgAAAAAAAB4AAAAAAQAeAAAAAAMAHgAAAAACAB0AAAAAAAAeAAAAAAIAHgAAAAABACMAAAAAAAAjAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAEAHQAAAAAAAB4AAAAAAQAeAAAAAAEAHgAAAAACAB4AAAAAAgAeAAAAAAIAHgAAAAABAB4AAAAAAAAeAAAAAAAAHgAAAAABAB4AAAAAAQAjAAAAAAAAIwAAAAAAAB4AAAAAAQAeAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAMAHgAAAAADAB4AAAAAAgAeAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAMAHgAAAAAAAB4AAAAAAgAeAAAAAAEAIwAAAAAAACMAAAAAAAAeAAAAAAEAHgAAAAADAB4AAAAAAgAdAAAAAAAAHgAAAAACAB4AAAAAAQAeAAAAAAMAHgAAAAADAB4AAAAAAgAeAAAAAAIAHgAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAABAB4AAAAAAgAeAAAAAAIAHQAAAAAAAB4AAAAAAQAeAAAAAAAAHgAAAAADAB4AAAAAAgAeAAAAAAEAHgAAAAABAB4AAAAAAAAdAAAAAAAAHgAAAAACAB0AAAAAAAAeAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAIAHgAAAAADAB4AAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAQAeAAAAAAEAHgAAAAADAB4AAAAAAgAeAAAAAAEAHgAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAACAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAIAHgAAAAADAB4AAAAAAgAeAAAAAAAAHgAAAAABAB4AAAAAAwAdAAAAAAAAHgAAAAAAAA== + version: 7 -2,-1: ind: -2,-1 - tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAABHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHwAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAA - version: 6 + tiles: HwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAAAeAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAiAAAAAAAAHQAAAAAAAB4AAAAAAgAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAeAAAAAAEAHQAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAHwAAAAAAAB0AAAAAAAAeAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAmAAAAAAAAHgAAAAACAB0AAAAAAAAdAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAAB4AAAAAAAAdAAAAAAAAHQAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAACAB4AAAAAAgAeAAAAAAIAHgAAAAADAB4AAAAAAgAeAAAAAAIAHQAAAAAAAB0AAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: HQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAJgAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHgAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA - version: 6 + tiles: HQAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAAAHgAAAAACACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAgAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAB0AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHQAAAAAAACYAAAAAAAAdAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAIAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAeAAAAAAEAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAdAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAB0AAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 -2,-2: ind: -2,-2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: HgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAADHQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAABBQAAAAAABQAAAAAABQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMAAAAAADMAAAAAADMAAAAAABMAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKAAAAAACKAAAAAADKAAAAAADKAAAAAAAKAAAAAADKAAAAAAAHQAAAAAAAgAAAAACAgAAAAAAAgAAAAACAgAAAAACHQAAAAAAKAAAAAACKAAAAAABKAAAAAADKAAAAAABKAAAAAADKAAAAAACKAAAAAACKAAAAAAAKAAAAAABKAAAAAABHQAAAAAAAgAAAAADAgAAAAABAgAAAAABAgAAAAADHQAAAAAAKAAAAAACKAAAAAAAKAAAAAABHQAAAAAAKAAAAAABKAAAAAADKAAAAAADKAAAAAAAKAAAAAABKAAAAAABHQAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAACAgAAAAABAgAAAAABAgAAAAAAAgAAAAADAgAAAAADAgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAACAgAAAAAAAgAAAAACAgAAAAADAgAAAAABAgAAAAADAgAAAAACAgAAAAAAAgAAAAADAgAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADAgAAAAABAgAAAAADAgAAAAACAgAAAAACAgAAAAABHQAAAAAAAgAAAAADHQAAAAAAAgAAAAABAgAAAAACAgAAAAACAgAAAAACAgAAAAAAAgAAAAACHQAAAAAAAgAAAAADAgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAAAHQAAAAAAAgAAAAABHQAAAAAAAgAAAAABAgAAAAABAgAAAAACAgAAAAACAgAAAAABAgAAAAAAHQAAAAAA - version: 6 + tiles: HgAAAAAAAB4AAAAAAQAeAAAAAAIAHgAAAAADAB4AAAAAAQAeAAAAAAMAHQAAAAAAAB4AAAAAAAAeAAAAAAMAHgAAAAAAAB0AAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAQAeAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAABAB0AAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAwAdAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAAAHgAAAAABAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAgAeAAAAAAMAHgAAAAABAB4AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAEABQAAAAAAAAUAAAAAAAAFAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAIAHgAAAAACAB4AAAAAAwAeAAAAAAMAHgAAAAABAB4AAAAAAgAeAAAAAAIAHgAAAAABAB4AAAAAAgAeAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAEAHgAAAAADAB4AAAAAAQAeAAAAAAIAHgAAAAABAB4AAAAAAQAeAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAADAAAAAAAwAwAAAAAAMAMAAAAAABADAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAgACAAAAAAIAAgAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACgAAAAAAgAoAAAAAAMAKAAAAAADACgAAAAAAAAoAAAAAAMAKAAAAAAAAB0AAAAAAAACAAAAAAIAAgAAAAAAAAIAAAAAAgACAAAAAAIAHQAAAAAAACgAAAAAAgAoAAAAAAEAKAAAAAADACgAAAAAAQAoAAAAAAMAKAAAAAACACgAAAAAAgAoAAAAAAAAKAAAAAABACgAAAAAAQAdAAAAAAAAAgAAAAADAAIAAAAAAQACAAAAAAEAAgAAAAADAB0AAAAAAAAoAAAAAAIAKAAAAAAAACgAAAAAAQAdAAAAAAAAKAAAAAABACgAAAAAAwAoAAAAAAMAKAAAAAAAACgAAAAAAQAoAAAAAAEAHQAAAAAAAAIAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAACAAAAAAIAAgAAAAAAAAIAAAAAAQACAAAAAAIAAgAAAAABAAIAAAAAAgACAAAAAAEAAgAAAAABAAIAAAAAAAACAAAAAAMAAgAAAAADAAIAAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAgAAAAAAAAIAAAAAAgACAAAAAAAAAgAAAAACAAIAAAAAAwACAAAAAAEAAgAAAAADAAIAAAAAAgACAAAAAAAAAgAAAAADAAIAAAAAAAACAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAACAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAACAAAAAAMAAgAAAAABAAIAAAAAAwACAAAAAAIAAgAAAAACAAIAAAAAAQAdAAAAAAAAAgAAAAADAB0AAAAAAAACAAAAAAEAAgAAAAACAAIAAAAAAgACAAAAAAIAAgAAAAAAAAIAAAAAAgAdAAAAAAAAAgAAAAADAAIAAAAAAAACAAAAAAEAAgAAAAABAAIAAAAAAwACAAAAAAAAHQAAAAAAAAIAAAAAAQAdAAAAAAAAAgAAAAABAAIAAAAAAQACAAAAAAIAAgAAAAACAAIAAAAAAQACAAAAAAAAHQAAAAAAAA== + version: 7 -2,1: ind: -2,1 - tiles: HgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAACAgAAAAADAgAAAAAAAgAAAAADHQAAAAAAAgAAAAADAgAAAAAAAgAAAAADAgAAAAABAgAAAAADAgAAAAACAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAACAgAAAAABAgAAAAAAAgAAAAACAgAAAAABHQAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAACAgAAAAADAgAAAAADAgAAAAADAgAAAAACAgAAAAADAgAAAAACAgAAAAADHQAAAAAAAgAAAAACAgAAAAADHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAAAAgAAAAAAAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAACAgAAAAADHQAAAAAAAgAAAAACAgAAAAACAgAAAAABAgAAAAAAAgAAAAABAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAACAgAAAAACAgAAAAACAgAAAAAAHQAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAABAgAAAAADAgAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAABAgAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAADAgAAAAACAgAAAAADAgAAAAADAgAAAAABAgAAAAADHQAAAAAA - version: 6 + tiles: HgAAAAAAAB4AAAAAAwAeAAAAAAMAHgAAAAABAB4AAAAAAgAdAAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAEAHgAAAAADAB4AAAAAAQAeAAAAAAEAHgAAAAADAB4AAAAAAgAdAAAAAAAAHgAAAAAAAB4AAAAAAwAeAAAAAAMAHgAAAAADAB4AAAAAAQAeAAAAAAIAHQAAAAAAAB4AAAAAAAAeAAAAAAIAHgAAAAACAB4AAAAAAAAeAAAAAAEAHgAAAAABAB4AAAAAAgAeAAAAAAEAHQAAAAAAAB4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAIAHgAAAAAAAB4AAAAAAgAeAAAAAAEAHgAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAADAB4AAAAAAwAeAAAAAAEAHgAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAACAB4AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAQAeAAAAAAIAHgAAAAADAB4AAAAAAAAeAAAAAAMABQAAAAAAAAUAAAAAAAAFAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAMAHgAAAAADAB4AAAAAAwAeAAAAAAMAHgAAAAAAAB4AAAAAAQAeAAAAAAMAHgAAAAABAB4AAAAAAAAeAAAAAAMAHgAAAAADAB4AAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAwAeAAAAAAAAHQAAAAAAAB0AAAAAAAACAAAAAAIAAgAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAACAAAAAAMAAgAAAAADAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAADAAIAAAAAAgACAAAAAAMAAgAAAAAAAAIAAAAAAwAdAAAAAAAAAgAAAAADAAIAAAAAAAACAAAAAAMAAgAAAAABAAIAAAAAAwACAAAAAAIAAgAAAAABAAIAAAAAAQACAAAAAAMAAgAAAAABAAIAAAAAAgACAAAAAAEAAgAAAAAAAAIAAAAAAgACAAAAAAEAHQAAAAAAAAIAAAAAAwACAAAAAAIAAgAAAAAAAAIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAIAAgAAAAADAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAwACAAAAAAIAAgAAAAADAB0AAAAAAAACAAAAAAIAAgAAAAADAB0AAAAAAAAdAAAAAAAAAgAAAAAAAAIAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAACAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAgAAAAACAAIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAgACAAAAAAIAAgAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAADAAIAAAAAAQACAAAAAAAAAgAAAAABAAIAAAAAAgACAAAAAAMAHQAAAAAAAAIAAAAAAgACAAAAAAIAAgAAAAABAAIAAAAAAAACAAAAAAEAAgAAAAACAAIAAAAAAAACAAAAAAIAAgAAAAAAAAIAAAAAAQACAAAAAAMAAgAAAAACAAIAAAAAAgACAAAAAAIAAgAAAAAAAB0AAAAAAAACAAAAAAEAAgAAAAADAAIAAAAAAwACAAAAAAEAAgAAAAADAAIAAAAAAAACAAAAAAEAAgAAAAACAAIAAAAAAQACAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAgAAAAAAAAIAAAAAAQACAAAAAAAAAgAAAAACAAIAAAAAAAACAAAAAAEAAgAAAAADAAIAAAAAAwACAAAAAAMAAgAAAAABAAIAAAAAAAACAAAAAAEAAgAAAAAAAAIAAAAAAgACAAAAAAEAAgAAAAAAAAIAAAAAAwACAAAAAAIAAgAAAAAAAAIAAAAAAQACAAAAAAMAAgAAAAADAAIAAAAAAQACAAAAAAAAAgAAAAADAAIAAAAAAgACAAAAAAMAAgAAAAADAAIAAAAAAQACAAAAAAMAHQAAAAAAAA== + version: 7 -3,1: ind: -3,1 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACJQAAAAADHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAADHQAAAAAAAgAAAAAAAgAAAAABAgAAAAACAgAAAAADAgAAAAABAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAABHQAAAAAAHgAAAAABBQAAAAAAHgAAAAADAgAAAAADAgAAAAADAgAAAAAAAgAAAAACAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAACAgAAAAADAgAAAAAAHQAAAAAAHQAAAAAAHgAAAAABBQAAAAAAHgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAABAgAAAAABAgAAAAADJQAAAAABHQAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHQAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAADJwAAAAACHQAAAAAAAgAAAAACAgAAAAAAJwAAAAADJQAAAAAAHQAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAADJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAADAgAAAAABAgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAHgAAAAAAHgAAAAABBQAAAAAAHgAAAAACHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAACAgAAAAACAgAAAAACAgAAAAABJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAHQAAAAAAHgAAAAADBQAAAAAAHgAAAAADHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAADJQAAAAAAJQAAAAAAJQAAAAAA - version: 6 + tiles: HQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAQAeAAAAAAIAHgAAAAAAAB4AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAIAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAMAHgAAAAAAAB4AAAAAAgAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAACAB4AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAABAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAQAeAAAAAAAAHgAAAAACAB4AAAAAAwAeAAAAAAIAHgAAAAAAAB4AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAAAeAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAIAHgAAAAACAB4AAAAAAwAeAAAAAAMAHgAAAAACAB4AAAAAAwAeAAAAAAMABQAAAAAAAAUAAAAAAAAFAAAAAAAAHgAAAAAAAB4AAAAAAwAdAAAAAAAAHQAAAAAAAB4AAAAAAgAeAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAMAHgAAAAADAB4AAAAAAAAeAAAAAAIAHgAAAAACAB4AAAAAAgAeAAAAAAIAHgAAAAABAB4AAAAAAAAeAAAAAAIAJQAAAAADAB0AAAAAAAAeAAAAAAAAHgAAAAABAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACUAAAAAAwAdAAAAAAAAHgAAAAACAB4AAAAAAwAeAAAAAAMAHQAAAAAAAAIAAAAAAAACAAAAAAEAAgAAAAACAAIAAAAAAwACAAAAAAEAAgAAAAACAAIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAlAAAAAAEAHQAAAAAAAB4AAAAAAQAFAAAAAAAAHgAAAAADAAIAAAAAAwACAAAAAAMAAgAAAAAAAAIAAAAAAgACAAAAAAMAAgAAAAADAAIAAAAAAQACAAAAAAAAAgAAAAACAAIAAAAAAwACAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAEABQAAAAAAAB4AAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAAAAAIAAAAAAwACAAAAAAMAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAADACUAAAAAAQAdAAAAAAAAHgAAAAAAAAUAAAAAAAAeAAAAAAAAHQAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAMAAgAAAAADAAIAAAAAAwACAAAAAAMAAgAAAAABAAIAAAAAAAAlAAAAAAMAHQAAAAAAAB4AAAAAAgAeAAAAAAAAHgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACcAAAAAAwAnAAAAAAIAHQAAAAAAAAIAAAAAAgACAAAAAAAAJwAAAAADACUAAAAAAAAdAAAAAAAAJQAAAAADAB0AAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAwAdAAAAAAAAAgAAAAADAAIAAAAAAwACAAAAAAAAAgAAAAADAAIAAAAAAwACAAAAAAAAAgAAAAADACUAAAAAAAAlAAAAAAAAJQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHQAAAAAAAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAEAAgAAAAABAAIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAApAAAAAAAAHgAAAAAAAB4AAAAAAQAFAAAAAAAAHgAAAAACAB0AAAAAAAACAAAAAAAAAgAAAAADAAIAAAAAAAACAAAAAAIAAgAAAAACAAIAAAAAAgACAAAAAAEAJQAAAAAAACUAAAAAAAAlAAAAAAAAKQAAAAAAAB0AAAAAAAAeAAAAAAMABQAAAAAAAB4AAAAAAwAdAAAAAAAAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAADACUAAAAAAAAlAAAAAAAAJQAAAAAAAA== + version: 7 -3,0: ind: -3,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAAwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAAwAAAAABNwAAAAACAwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAADKwAAAAADKwAAAAABKwAAAAAAKwAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAAAKwAAAAABKwAAAAADKwAAAAADKwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADIwAAAAAAIwAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAABKwAAAAADKwAAAAADKwAAAAACKwAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADIwAAAAAAIwAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADIwAAAAAAIwAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACIwAAAAAAIwAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAA - version: 6 + tiles: HQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAAwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAAwAAAAABADcAAAAAAgADAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKwAAAAADACsAAAAAAwArAAAAAAEAKwAAAAAAACsAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACsAAAAAAAArAAAAAAEAKwAAAAADACsAAAAAAwArAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAArAAAAAAEAKwAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAMAIwAAAAAAACMAAAAAAAAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKwAAAAABACsAAAAAAwArAAAAAAMAKwAAAAACACsAAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADACMAAAAAAAAjAAAAAAAAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAwAjAAAAAAAAIwAAAAAAAB4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAIAIwAAAAAAACMAAAAAAAAeAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAMAHgAAAAACAB4AAAAAAgAeAAAAAAIAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAACAB4AAAAAAgAeAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAEAHgAAAAABAB4AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAwAeAAAAAAMAHgAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: HgAAAAADHgAAAAAAHgAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAABHgAAAAABHgAAAAABHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAADHgAAAAADBQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAADHgAAAAAABQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAACHgAAAAABBQAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAABHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHgAAAAACLAAAAAAALAAAAAAALAAAAAAAHgAAAAACHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAACHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAADLAAAAAAALAAAAAAALAAAAAAAHgAAAAABHQAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABLAAAAAAALAAAAAAALAAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAADLAAAAAAALAAAAAAALAAAAAAAHgAAAAADHgAAAAADHgAAAAAB - version: 6 + tiles: HgAAAAADAB4AAAAAAAAeAAAAAAEAHgAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAQAeAAAAAAEAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIAAAAAAAACAAAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAwAeAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB4AAAAAAQAeAAAAAAEAHgAAAAABAB0AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAgAeAAAAAAEAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAADAB0AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAABAB4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAgAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACcAAAAAAAAnAAAAAAMAHgAAAAADAAUAAAAAAAAeAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAnAAAAAAAAJwAAAAADAB4AAAAAAAAFAAAAAAAAHgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACcAAAAAAgAeAAAAAAEABQAAAAAAAB4AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAgAAAAAAAAIAAAAAAAAB0AAAAAAAAeAAAAAAMAHgAAAAADAB4AAAAAAQAeAAAAAAIAHgAAAAADAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAEAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHgAAAAACACwAAAAAAAAsAAAAAAAALAAAAAAAAB4AAAAAAgAdAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAIAHgAAAAACAB0AAAAAAAAfAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAHQAAAAAAAB4AAAAAAwAsAAAAAAAALAAAAAAAACwAAAAAAAAeAAAAAAEAHQAAAAAAAB4AAAAAAwAeAAAAAAIAHgAAAAABAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAEALAAAAAAAACwAAAAAAAAsAAAAAAAAHgAAAAADAB0AAAAAAAAeAAAAAAMAHgAAAAADAB4AAAAAAQAeAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIAAAAAAAACAAAAAAAAAdAAAAAAAAHgAAAAADACwAAAAAAAAsAAAAAAAALAAAAAAAAB4AAAAAAwAeAAAAAAMAHgAAAAABAA== + version: 7 1,0: ind: 1,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAANwAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAANwAAAAACKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAAEKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAANwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAAwAAAAACKgAAAAAAHQAAAAAANwAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: HQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIAAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAgAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACAAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAA3AAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAANwAAAAACACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIAAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAANwAAAAAEACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAgAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACAAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAA3AAAAAAMAKgAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAIAAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAADAAAAAAIAKgAAAAAAAB0AAAAAAAA3AAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 1,1: ind: 1,1 - tiles: HQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAANwAAAAAEKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAJwAAAAACJwAAAAACIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAJwAAAAADJwAAAAADIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAJwAAAAADJwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAACNwAAAAADNwAAAAAEHQAAAAAA - version: 6 + tiles: HQAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAwAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACAAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAA3AAAAAAQAKgAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAnAAAAAAIAJwAAAAACACMAAAAAAAAjAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAJwAAAAADACcAAAAAAwAjAAAAAAAAIwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACcAAAAAAwAnAAAAAAAAIwAAAAAAACMAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAgAeAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAABAB0AAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAEAHgAAAAAAAB4AAAAAAwAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAQAeAAAAAAIAHgAAAAAAAB4AAAAAAwAeAAAAAAMAHgAAAAAAAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAANwAAAAACADcAAAAAAwA3AAAAAAQAHQAAAAAAAA== + version: 7 -3,-1: ind: -3,-1 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAANwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAA3AAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 -3,-2: ind: -3,-2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 -4,0: ind: -4,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAABKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAABHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAACHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAAAHQAAAAAALAAAAAACHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAAHQAAAAAAHQAAAAAALAAAAAACLAAAAAACHQAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAABHQAAAAAALAAAAAADHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAADLAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA - version: 6 + tiles: HQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAANwAAAAABACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAA3AAAAAAEAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAsAAAAAAMALAAAAAACAB0AAAAAAAAdAAAAAAAALAAAAAAAAB0AAAAAAAAdAAAAAAAALAAAAAADACwAAAAAAAAsAAAAAAAALAAAAAACACwAAAAAAQAsAAAAAAIALAAAAAADACwAAAAAAQAsAAAAAAEALAAAAAABACwAAAAAAAAdAAAAAAAALAAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAACwAAAAAAAAsAAAAAAEALAAAAAADACwAAAAAAQAsAAAAAAIALAAAAAAAACwAAAAAAgAsAAAAAAAALAAAAAADACwAAAAAAgAsAAAAAAAAHQAAAAAAAB0AAAAAAAAsAAAAAAIALAAAAAACAB0AAAAAAAAsAAAAAAIALAAAAAACACwAAAAAAQAsAAAAAAIALAAAAAABACwAAAAAAgAsAAAAAAMALAAAAAAAACwAAAAAAwAsAAAAAAMALAAAAAABAB0AAAAAAAAdAAAAAAAALAAAAAAAAB0AAAAAAAAsAAAAAAAALAAAAAABACwAAAAAAgAsAAAAAAAALAAAAAACACwAAAAAAgAsAAAAAAIALAAAAAABACwAAAAAAgAsAAAAAAEALAAAAAADACwAAAAAAQAdAAAAAAAALAAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAACwAAAAAAwAsAAAAAAMALAAAAAACACwAAAAAAAAsAAAAAAEALAAAAAADACwAAAAAAgAsAAAAAAAALAAAAAACACwAAAAAAgAsAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAsAAAAAAAALAAAAAADACwAAAAAAQAsAAAAAAIALAAAAAAAACwAAAAAAgAsAAAAAAIALAAAAAACACwAAAAAAAAsAAAAAAMALAAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAALAAAAAAAACwAAAAAAQAsAAAAAAIALAAAAAADACwAAAAAAAAsAAAAAAIALAAAAAACACwAAAAAAQAsAAAAAAAALAAAAAADACwAAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACwAAAAAAAAsAAAAAAIALAAAAAACACwAAAAAAQAsAAAAAAMALAAAAAAAACwAAAAAAQAsAAAAAAIALAAAAAAAACwAAAAAAAAsAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 -4,1: ind: -4,1 - tiles: HQAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABHQAAAAAALAAAAAADLAAAAAABLAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHgAAAAABHQAAAAAAJQAAAAADJQAAAAAAJQAAAAACHQAAAAAAHgAAAAABHgAAAAADHQAAAAAAJQAAAAADJQAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAADHQAAAAAAJQAAAAABJQAAAAAAJQAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADJQAAAAACJQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAACHQAAAAAAJQAAAAABJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHQAAAAAAJQAAAAAAJQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHQAAAAAAJQAAAAABJQAAAAABJQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHQAAAAAAJQAAAAACJQAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAACHQAAAAAAJQAAAAAAJQAAAAADJQAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAABJQAAAAABJQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHQAAAAAAJQAAAAADJQAAAAABJQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHQAAAAAAJQAAAAADJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAALgAAAAAALgAAAAABLgAAAAADLgAAAAABLgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAA - version: 6 + tiles: HQAAAAAAACwAAAAAAQAsAAAAAAIALAAAAAADACwAAAAAAgAsAAAAAAAALAAAAAAAACwAAAAAAgAsAAAAAAAALAAAAAADACwAAAAAAQAsAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACwAAAAAAgAsAAAAAAMALAAAAAAAACwAAAAAAwAsAAAAAAMALAAAAAAAACwAAAAAAgAsAAAAAAEALAAAAAABACwAAAAAAQAsAAAAAAMALAAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAsAAAAAAEAHQAAAAAAACwAAAAAAwAsAAAAAAEALAAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAMAHgAAAAAAAB4AAAAAAwAeAAAAAAMAHgAAAAACAB4AAAAAAgAeAAAAAAMAHgAAAAADAB4AAAAAAwAeAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAAAHgAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAgAeAAAAAAAAHgAAAAADAB4AAAAAAQAeAAAAAAIAHgAAAAABAB4AAAAAAwAeAAAAAAAAHgAAAAADAB4AAAAAAAAeAAAAAAEAHgAAAAABAB4AAAAAAwAeAAAAAAAAHgAAAAADAB4AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAQAeAAAAAAMAHgAAAAAAAB4AAAAAAAAeAAAAAAEAHQAAAAAAACUAAAAAAwAlAAAAAAAAJQAAAAACAB0AAAAAAAAeAAAAAAEAHgAAAAADAB0AAAAAAAAlAAAAAAMAJQAAAAACAB4AAAAAAgAeAAAAAAMAHgAAAAACAB4AAAAAAwAeAAAAAAMAHgAAAAADAB0AAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAgAeAAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAMAJQAAAAACACUAAAAAAAAeAAAAAAMAHgAAAAADAB4AAAAAAwAeAAAAAAEAHgAAAAADAB4AAAAAAgAdAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAAAHQAAAAAAAB4AAAAAAQAeAAAAAAIAHQAAAAAAACUAAAAAAAAlAAAAAAAAHgAAAAADAB4AAAAAAwAeAAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAMAHgAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAIAHgAAAAACAB0AAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAgAdAAAAAAAAJQAAAAACACUAAAAAAQAeAAAAAAEAHgAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAACAB4AAAAAAgAdAAAAAAAAJQAAAAAAACUAAAAAAwAlAAAAAAMAHgAAAAADAB4AAAAAAQAeAAAAAAIAHgAAAAABACUAAAAAAQAlAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAAAHgAAAAADAB4AAAAAAAAeAAAAAAMAHQAAAAAAACUAAAAAAwAlAAAAAAEAJQAAAAAAAB0AAAAAAAAeAAAAAAMAHgAAAAABAB0AAAAAAAAlAAAAAAMAJQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAdAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAHQAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAALgAAAAAAAC4AAAAAAQAuAAAAAAMALgAAAAABAC4AAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAA== + version: 7 1,2: ind: 1,2 - tiles: HgAAAAABHQAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAAAAwAAAAACNwAAAAADNwAAAAACHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAAANwAAAAAAKgAAAAAAAwAAAAABHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAABAwAAAAABNwAAAAADHQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAAAHQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHQAAAAAALQAAAAAALQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAABHQAAAAAAJQAAAAAAJQAAAAACJQAAAAABJQAAAAACJQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAADHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAJQAAAAADJQAAAAAAJQAAAAADJQAAAAABJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAJQAAAAACJQAAAAABJQAAAAABJQAAAAADJQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAJQAAAAABJQAAAAABJQAAAAACJQAAAAABJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAA - version: 6 + tiles: HgAAAAABAB0AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAADAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAANwAAAAAAAAMAAAAAAgA3AAAAAAMANwAAAAACAB4AAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAwAeAAAAAAMAHgAAAAADAB4AAAAAAQAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAMAAAAAAAA3AAAAAAAAKgAAAAAAAAMAAAAAAQAeAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAADAAAAAAEAAwAAAAABADcAAAAAAwAdAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAEAHgAAAAAAAB4AAAAAAQAeAAAAAAAAHgAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAABAB4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAeAAAAAAMAHgAAAAACAB4AAAAAAwAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHgAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAB4AAAAAAAAdAAAAAAAALQAAAAAAAC0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAeAAAAAAIAHgAAAAADAB4AAAAAAQAeAAAAAAAAHQAAAAAAAC0AAAAAAAAtAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAJQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAB4AAAAAAQAdAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAEAJQAAAAACACUAAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAeAAAAAAMAHQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAACACUAAAAAAwAlAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAHgAAAAAAAB0AAAAAAAAlAAAAAAMAJQAAAAAAACUAAAAAAwAlAAAAAAEAJQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAB4AAAAAAwAdAAAAAAAAHQAAAAAAACUAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAACUAAAAAAgAlAAAAAAEAJQAAAAABACUAAAAAAwAlAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAgAlAAAAAAEAJQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAIgAAAAAAAA== + version: 7 -4,2: ind: -4,2 - tiles: HQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAADHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAADLgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAADJQAAAAADHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAABJQAAAAADJQAAAAACJQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADJQAAAAADJQAAAAADJQAAAAABHQAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAADJQAAAAACJQAAAAACJQAAAAABHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABJQAAAAABJQAAAAACJQAAAAADHQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAACJQAAAAABJQAAAAAAJQAAAAABJQAAAAABJQAAAAAAJQAAAAADJQAAAAADJQAAAAACHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAACMAAAAAAAMAAAAAABJQAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACHQAAAAAAMAAAAAABMAAAAAAAMAAAAAADMAAAAAADMAAAAAAAMAAAAAADJQAAAAADJQAAAAACJQAAAAACJQAAAAACJQAAAAAAJQAAAAABJQAAAAADJQAAAAABJQAAAAABMAAAAAABMAAAAAAAMAAAAAADMAAAAAACMAAAAAAAMAAAAAACMAAAAAAA - version: 6 + tiles: HQAAAAAAAB0AAAAAAAAdAAAAAAAALQAAAAAAAB0AAAAAAAAtAAAAAAAAHQAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAADAB0AAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAC0AAAAAAAAdAAAAAAAALQAAAAAAAB0AAAAAAAAuAAAAAAAALgAAAAADAC4AAAAAAAAdAAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAQAeAAAAAAEAHgAAAAAAAB4AAAAAAgAeAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAMAHgAAAAAAAB4AAAAAAgAeAAAAAAAAHgAAAAACAB4AAAAAAQAeAAAAAAIAHgAAAAADAB4AAAAAAwAeAAAAAAEAHgAAAAADAB4AAAAAAgAeAAAAAAEAHgAAAAACAB4AAAAAAQAeAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAAAHgAAAAADAB4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAJQAAAAAAACUAAAAAAwAlAAAAAAMAHQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAwAeAAAAAAMAHgAAAAAAAB4AAAAAAwAeAAAAAAMAHgAAAAABACUAAAAAAwAlAAAAAAIAJQAAAAAAAB0AAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAEAHgAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAADAB4AAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAEAHQAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAACAB4AAAAAAwAeAAAAAAIAHgAAAAAAAB4AAAAAAQAeAAAAAAMAJQAAAAADACUAAAAAAwAlAAAAAAEAHQAAAAAAAB4AAAAAAAAeAAAAAAIAHgAAAAAAAB0AAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAwAeAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAADACUAAAAAAgAlAAAAAAIAJQAAAAABAB0AAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAACAB4AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAQAlAAAAAAEAJQAAAAACACUAAAAAAwAdAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAEAHQAAAAAAAB4AAAAAAQAeAAAAAAIAHgAAAAAAAB4AAAAAAgAeAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAAAHQAAAAAAACUAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAAAACUAAAAAAgAlAAAAAAEAJQAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAAAACUAAAAAAwAlAAAAAAMAJQAAAAACAB0AAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAIAMAAAAAAAADAAAAAAAQAlAAAAAAAAJQAAAAACACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAgAdAAAAAAAAMAAAAAABADAAAAAAAAAwAAAAAAMAMAAAAAADADAAAAAAAAAwAAAAAAMAJQAAAAADACUAAAAAAgAlAAAAAAIAJQAAAAACACUAAAAAAAAlAAAAAAEAJQAAAAADACUAAAAAAQAlAAAAAAEAMAAAAAABADAAAAAAAAAwAAAAAAMAMAAAAAACADAAAAAAAAAwAAAAAAIAMAAAAAAAAA== + version: 7 -3,2: ind: -3,2 - tiles: KQAAAAAAHQAAAAAAHgAAAAABBQAAAAAAHgAAAAABHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAABHQAAAAAAAgAAAAACAgAAAAADAgAAAAACAgAAAAADAgAAAAABAgAAAAABAgAAAAADJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAAJQAAAAABJQAAAAACHQAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAACJQAAAAABHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAACBQAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAABHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACBQAAAAAAHgAAAAABHQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAACJQAAAAADHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHgAAAAADBQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHQAAAAAALAAAAAABHgAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHQAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACHgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAABHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAAMAAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHQAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAADMAAAAAADMAAAAAABHgAAAAADBQAAAAAAHgAAAAABHQAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAAAHQAAAAAALAAAAAACLAAAAAACMAAAAAABMAAAAAAAHgAAAAADBQAAAAAAHgAAAAACHQAAAAAAHQAAAAAALAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABLAAAAAAC - version: 6 + tiles: KQAAAAAAAB0AAAAAAAAeAAAAAAEABQAAAAAAAB4AAAAAAQAdAAAAAAAAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAgACAAAAAAIAAgAAAAADACUAAAAAAAAlAAAAAAAAJQAAAAAAACkAAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAwAeAAAAAAEAHQAAAAAAAAIAAAAAAgACAAAAAAMAAgAAAAACAAIAAAAAAwACAAAAAAEAAgAAAAABAAIAAAAAAwAlAAAAAAAAJQAAAAAAACUAAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAQAeAAAAAAEAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAABAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAQAeAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAgAeAAAAAAEAHgAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB0AAAAAAAAeAAAAAAMAHgAAAAAAAB4AAAAAAgAdAAAAAAAAJQAAAAABACUAAAAAAgAdAAAAAAAAJQAAAAACACUAAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAQAdAAAAAAAAHQAAAAAAAB4AAAAAAAAdAAAAAAAAHgAAAAACAAUAAAAAAAAeAAAAAAAAHQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAACACUAAAAAAAAlAAAAAAAAJQAAAAACACUAAAAAAwAlAAAAAAEAHQAAAAAAAB0AAAAAAAAeAAAAAAMAHgAAAAAAAB4AAAAAAgAFAAAAAAAAHgAAAAABAB0AAAAAAAAlAAAAAAIAJQAAAAAAAB0AAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAQAlAAAAAAIAJQAAAAADAB0AAAAAAAAdAAAAAAAAHgAAAAACAB0AAAAAAAAeAAAAAAMABQAAAAAAAB4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAALAAAAAADAB0AAAAAAAAdAAAAAAAALAAAAAABAB4AAAAAAwAdAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAIAHQAAAAAAACwAAAAAAAAsAAAAAAMALAAAAAADACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAgAsAAAAAAMALAAAAAAAACwAAAAAAgAeAAAAAAAAHQAAAAAAAB4AAAAAAQAeAAAAAAEAHgAAAAACAB0AAAAAAAAsAAAAAAIALAAAAAADACwAAAAAAAAsAAAAAAMALAAAAAABACwAAAAAAQAsAAAAAAAALAAAAAACACwAAAAAAgAsAAAAAAEAHQAAAAAAAB0AAAAAAAAeAAAAAAMAHgAAAAAAAB4AAAAAAgAdAAAAAAAALAAAAAABACwAAAAAAQAsAAAAAAAALAAAAAACACwAAAAAAwAsAAAAAAAALAAAAAACACwAAAAAAwAsAAAAAAIALAAAAAAAADAAAAAAAgAdAAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAEAHQAAAAAAACwAAAAAAgAsAAAAAAAALAAAAAADACwAAAAAAgAsAAAAAAMALAAAAAADACwAAAAAAQAsAAAAAAMALAAAAAAAACwAAAAAAwAwAAAAAAMAMAAAAAABAB4AAAAAAwAFAAAAAAAAHgAAAAABAB0AAAAAAAAsAAAAAAMALAAAAAACACwAAAAAAwAsAAAAAAIALAAAAAADACwAAAAAAQAsAAAAAAAAHQAAAAAAACwAAAAAAgAsAAAAAAIAMAAAAAABADAAAAAAAAAeAAAAAAMABQAAAAAAAB4AAAAAAgAdAAAAAAAAHQAAAAAAACwAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAsAAAAAAEALAAAAAACAA== + version: 7 -5,1: ind: -5,1 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAANwAAAAAEHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAANwAAAAADNwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAANwAAAAACHQAAAAAAAwAAAAACKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAANwAAAAAEHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAAgAAAAACHQAAAAAAHQAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA - version: 6 + tiles: HQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAANwAAAAAEAB0AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAADcAAAAAAwA3AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAADcAAAAAAgAdAAAAAAAAAwAAAAACACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAMAAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAANwAAAAAEAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAACAAAAAAIAHQAAAAAAAB0AAAAAAAACAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 -5,2: ind: -5,2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAACIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABAQAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABAQAAAAAAHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAABAQAAAAAAHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAACAQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAADHgAAAAADAQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAAQAAAAAAHgAAAAACHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADAQAAAAAAHgAAAAADHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAQAeAAAAAAMAHgAAAAABAB4AAAAAAgAeAAAAAAIAHgAAAAABAB4AAAAAAgAeAAAAAAIAHgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB4AAAAAAgAeAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAEAHgAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAABAB4AAAAAAgAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAIAHgAAAAADAB4AAAAAAQAeAAAAAAIAHgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAwAeAAAAAAIAHgAAAAABAB4AAAAAAgAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAQAeAAAAAAIAHgAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAABAAEAAAAAAAAeAAAAAAAAHgAAAAACAB4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAABAB4AAAAAAQABAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAEAAQAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB0AAAAAAAAeAAAAAAAAHgAAAAACAAEAAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAwABAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAAAAQAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAMAHgAAAAADAAEAAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAIAHgAAAAABAB4AAAAAAAAeAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 -5,0: ind: -5,0 - tiles: MQAAAAADHQAAAAAAJQAAAAAAMQAAAAABHQAAAAAAJQAAAAADMQAAAAAEHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAABJQAAAAAAMQAAAAADJQAAAAABHQAAAAAAJQAAAAADHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAADHQAAAAAAJQAAAAACMQAAAAACHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAABMQAAAAADJQAAAAAAHQAAAAAAJQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAACJQAAAAACHQAAAAAAMQAAAAAFJQAAAAACMQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADHQAAAAAAMQAAAAADJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAACMQAAAAABHQAAAAAAMQAAAAAEJQAAAAADMQAAAAAGHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAJQAAAAADJQAAAAAAMQAAAAAFHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAABJQAAAAACJQAAAAADJQAAAAAAMQAAAAAFJQAAAAAAMQAAAAACHQAAAAAAMQAAAAADMQAAAAAAJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAACJQAAAAAAJQAAAAADHQAAAAAAMQAAAAAEJQAAAAACHQAAAAAAJQAAAAADMQAAAAAGHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAMQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAABJQAAAAABJQAAAAACMQAAAAAGJQAAAAAAJQAAAAABHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADJQAAAAAAJQAAAAACJQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAABJQAAAAACJQAAAAADJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA - version: 6 + tiles: MQAAAAADAB0AAAAAAAAlAAAAAAAAMQAAAAABAB0AAAAAAAAlAAAAAAMAMQAAAAAEAB0AAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAJQAAAAABACUAAAAAAAAxAAAAAAMAJQAAAAABAB0AAAAAAAAlAAAAAAMAHQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAxAAAAAAMAHQAAAAAAACUAAAAAAgAxAAAAAAIAHQAAAAAAAB0AAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAlAAAAAAEAMQAAAAADACUAAAAAAAAdAAAAAAAAJQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAxAAAAAAIAJQAAAAACAB0AAAAAAAAxAAAAAAUAJQAAAAACADEAAAAAAAAxAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAlAAAAAAMAHQAAAAAAADEAAAAAAwAlAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACUAAAAAAgAxAAAAAAEAHQAAAAAAADEAAAAABAAlAAAAAAMAMQAAAAAGAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAADEAAAAAAAAdAAAAAAAAJQAAAAADACUAAAAAAAAxAAAAAAUAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAlAAAAAAEAJQAAAAACACUAAAAAAwAlAAAAAAAAMQAAAAAFACUAAAAAAAAxAAAAAAIAHQAAAAAAADEAAAAAAwAxAAAAAAAAJQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAAAJQAAAAADAB0AAAAAAAAxAAAAAAQAJQAAAAACAB0AAAAAAAAlAAAAAAMAMQAAAAAGAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACUAAAAAAgAlAAAAAAMAJQAAAAADACUAAAAAAAAlAAAAAAAAHQAAAAAAACUAAAAAAAAxAAAAAAAAMQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAlAAAAAAAAJQAAAAABACUAAAAAAQAlAAAAAAIAMQAAAAAGACUAAAAAAAAlAAAAAAEAHQAAAAAAAB0AAAAAAAAlAAAAAAAAJQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAJQAAAAADACUAAAAAAAAlAAAAAAIAJQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACUAAAAAAQAlAAAAAAIAJQAAAAADACUAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAAAlAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 -1,2: ind: -1,2 - tiles: AgAAAAADAgAAAAACAgAAAAACAgAAAAABAgAAAAACAgAAAAABHQAAAAAAAgAAAAACHQAAAAAAAgAAAAADAgAAAAABAgAAAAADAgAAAAADAgAAAAAAAgAAAAADHQAAAAAAAgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAADAgAAAAADHQAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACAgAAAAABAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAABHQAAAAAAJQAAAAACJQAAAAACJQAAAAAAHgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACHQAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABHQAAAAAAJQAAAAAAJQAAAAACJQAAAAAAHQAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAADHQAAAAAAJQAAAAACJQAAAAACJQAAAAAAHQAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAADHQAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAAJQAAAAAAJQAAAAABJQAAAAACHQAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAAHQAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAACHQAAAAAAJQAAAAAAJQAAAAACJQAAAAACHQAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAACHQAAAAAAHQAAAAAALAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADHgAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAALAAAAAABHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMAAAAAADHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMAAAAAAA - version: 6 + tiles: AgAAAAADAAIAAAAAAgACAAAAAAIAAgAAAAABAAIAAAAAAgACAAAAAAEAHQAAAAAAAAIAAAAAAgAdAAAAAAAAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAADAAIAAAAAAAACAAAAAAMAHQAAAAAAAAIAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAMAAgAAAAADAB0AAAAAAAACAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACwAAAAAAwAsAAAAAAIALAAAAAAAACwAAAAAAwAsAAAAAAAALAAAAAABAB0AAAAAAAAlAAAAAAIAJQAAAAACACUAAAAAAAAeAAAAAAAALAAAAAADACwAAAAAAQAsAAAAAAAALAAAAAACAB0AAAAAAAAsAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAEALAAAAAADACwAAAAAAQAdAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAAAHQAAAAAAACwAAAAAAgAsAAAAAAIALAAAAAADACwAAAAAAAAsAAAAAAMALAAAAAACACwAAAAAAgAsAAAAAAMALAAAAAADACwAAAAAAgAsAAAAAAMAHQAAAAAAACUAAAAAAgAlAAAAAAIAJQAAAAAAAB0AAAAAAAAsAAAAAAEALAAAAAADACwAAAAAAQAsAAAAAAMAHQAAAAAAACwAAAAAAQAsAAAAAAEALAAAAAACACwAAAAAAAAsAAAAAAAALAAAAAADACwAAAAAAAAlAAAAAAAAJQAAAAABACUAAAAAAgAdAAAAAAAALAAAAAADACwAAAAAAgAsAAAAAAIALAAAAAAAAB0AAAAAAAAsAAAAAAMALAAAAAADACwAAAAAAQAsAAAAAAEALAAAAAABACwAAAAAAgAdAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAIAHQAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAACACwAAAAAAgAdAAAAAAAAHQAAAAAAACwAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACwAAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAsAAAAAAEALAAAAAADACwAAAAAAAAsAAAAAAEALAAAAAACACwAAAAAAAAsAAAAAAEALAAAAAAAACwAAAAAAAAsAAAAAAEALAAAAAABACwAAAAAAAAsAAAAAAMALAAAAAACACwAAAAAAwAeAAAAAAMALAAAAAADACwAAAAAAwAsAAAAAAIALAAAAAAAACwAAAAAAQAsAAAAAAEALAAAAAADACwAAAAAAQAsAAAAAAAALAAAAAABACwAAAAAAwAsAAAAAAAALAAAAAABACwAAAAAAwAsAAAAAAAALAAAAAAAACwAAAAAAAAdAAAAAAAALAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAAAsAAAAAAEAHQAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAwAAAAAAMAHQAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAMAAAAAAAAA== + version: 7 -2,2: ind: -2,2 - tiles: HQAAAAAAAgAAAAADAgAAAAADAgAAAAADAgAAAAACAgAAAAACAgAAAAAAAgAAAAADAgAAAAACAgAAAAABAgAAAAACAgAAAAAAAgAAAAADAgAAAAAAAgAAAAADHQAAAAAAHQAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAABAgAAAAAAAgAAAAADAgAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAADAgAAAAABAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAADAgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABIAAAAAAAHQAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAABHQAAAAAALAAAAAABHQAAAAAAIAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAACIAAAAAAAHQAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAACHQAAAAAALAAAAAABHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAALAAAAAADLAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHQAAAAAAHQAAAAAALAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAA - version: 6 + tiles: HQAAAAAAAAIAAAAAAwACAAAAAAMAAgAAAAADAAIAAAAAAgACAAAAAAIAAgAAAAAAAAIAAAAAAwACAAAAAAIAAgAAAAABAAIAAAAAAgACAAAAAAAAAgAAAAADAAIAAAAAAAACAAAAAAMAHQAAAAAAAB0AAAAAAAACAAAAAAEAAgAAAAABAAIAAAAAAwACAAAAAAEAAgAAAAABAAIAAAAAAAACAAAAAAMAAgAAAAAAAAIAAAAAAQACAAAAAAIAAgAAAAABAAIAAAAAAwACAAAAAAEAAgAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAACAAAAAAIAAgAAAAADAAIAAAAAAQACAAAAAAAAAgAAAAABAAIAAAAAAwACAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAsAAAAAAIALAAAAAACACwAAAAAAwAsAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAdAAAAAAAALAAAAAAAACwAAAAAAQAsAAAAAAMALAAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAACAAAAAAAAAsAAAAAAMALAAAAAAAACwAAAAAAQAsAAAAAAMALAAAAAAAACwAAAAAAQAgAAAAAAAAHQAAAAAAACwAAAAAAwAsAAAAAAAALAAAAAACACwAAAAAAQAdAAAAAAAALAAAAAABAB0AAAAAAAAgAAAAAAAALAAAAAABACwAAAAAAQAsAAAAAAMALAAAAAADACwAAAAAAAAsAAAAAAIAIAAAAAAAAB0AAAAAAAAsAAAAAAIALAAAAAACACwAAAAAAAAsAAAAAAIAHQAAAAAAACwAAAAAAQAdAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAALAAAAAADACwAAAAAAwAgAAAAAAAAIAAAAAAAACAAAAAAAAAdAAAAAAAAHQAAAAAAACwAAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAsAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAsAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACwAAAAAAgAsAAAAAAMALAAAAAACACwAAAAAAwAsAAAAAAMALAAAAAADACwAAAAAAQAsAAAAAAMALAAAAAABACwAAAAAAwAsAAAAAAEALAAAAAAAACwAAAAAAgAsAAAAAAAALAAAAAABACwAAAAAAQAsAAAAAAIALAAAAAACACwAAAAAAQAsAAAAAAMALAAAAAABACwAAAAAAgAsAAAAAAAALAAAAAADACwAAAAAAAAsAAAAAAEALAAAAAADACwAAAAAAgAsAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAEALAAAAAAAACwAAAAAAQAsAAAAAAMALAAAAAABACwAAAAAAAAsAAAAAAIALAAAAAADACwAAAAAAAAsAAAAAAAALAAAAAABACwAAAAAAAAsAAAAAAIALAAAAAAAACwAAAAAAgAsAAAAAAMALAAAAAAAACwAAAAAAwAsAAAAAAEALAAAAAADACwAAAAAAQAsAAAAAAIALAAAAAADACwAAAAAAwAsAAAAAAAAHQAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: HgAAAAADHgAAAAABHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHgAAAAACLAAAAAAALAAAAAAALAAAAAAAHgAAAAADHQAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAADHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAADLAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAABLAAAAAAALAAAAAAALAAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAADBQAAAAAAHgAAAAABLAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHgAAAAADHgAAAAACAAAAAAAAAAAAAAABHgAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAACBQAAAAAAHgAAAAADLAAAAAAALAAAAAAALAAAAAAAHgAAAAACHgAAAAAAHgAAAAAAAAAAAAACAAAAAAABHgAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAACBQAAAAAAHgAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAAAHgAAAAADHgAAAAADLAAAAAAALAAAAAAALAAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAADLAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAABHgAAAAABBQAAAAAABQAAAAAABQAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAABHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHQAAAAAAHgAAAAAAHgAAAAABHQAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAABQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA - version: 6 + tiles: HgAAAAADAB4AAAAAAQAeAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHgAAAAACACwAAAAAAAAsAAAAAAAALAAAAAAAAB4AAAAAAwAdAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAMAHgAAAAADAB0AAAAAAAAfAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAMAHgAAAAABAB4AAAAAAwAeAAAAAAAAHQAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAACAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAgAeAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAACAB4AAAAAAwAeAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAAAHgAAAAABACwAAAAAAAAsAAAAAAAALAAAAAAAAB4AAAAAAQAeAAAAAAMAHgAAAAADAB4AAAAAAwAeAAAAAAEAHgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAeAAAAAAMABQAAAAAAAB4AAAAAAQAsAAAAAAAALAAAAAAAACwAAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAgAAAAAAAAAAAAAAAAABAB4AAAAAAwAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHgAAAAACAAUAAAAAAAAeAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAAAAAAAAAACAAAAAAAAAQAeAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAB4AAAAAAgAFAAAAAAAAHgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAB4AAAAAAQAeAAAAAAEAHgAAAAABAB4AAAAAAQAeAAAAAAMAHgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAwAsAAAAAAAALAAAAAAAACwAAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAABAB4AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAQAeAAAAAAEAHgAAAAADAB4AAAAAAwAeAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAMAHQAAAAAAAB0AAAAAAAAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAgAeAAAAAAAAHgAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAIAHgAAAAADAB0AAAAAAAAeAAAAAAIAHgAAAAADAB4AAAAAAQAeAAAAAAMAHgAAAAADAB4AAAAAAwAeAAAAAAAAHgAAAAACAB4AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAAAdAAAAAAAAHgAAAAABAB4AAAAAAQAFAAAAAAAABQAAAAAAAAUAAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAQAeAAAAAAMAHgAAAAACAB4AAAAAAgAeAAAAAAEAHgAAAAACAB4AAAAAAwAeAAAAAAEAHQAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAQAeAAAAAAMAHgAAAAADAB4AAAAAAQAeAAAAAAAAHgAAAAABAB0AAAAAAAAeAAAAAAAAHgAAAAABAB0AAAAAAAAeAAAAAAMAHgAAAAAAAB0AAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAwAeAAAAAAAAHgAAAAADAB4AAAAAAgAeAAAAAAMAHgAAAAACAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAAAAAUAAAAAAAAeAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 -3,3: ind: -3,3 - tiles: MAAAAAABMAAAAAACHgAAAAABBQAAAAAAHgAAAAACHQAAAAAAHgAAAAABHgAAAAABHQAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAADLAAAAAABLAAAAAACLAAAAAAAMAAAAAABHQAAAAAAHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAACHQAAAAAALAAAAAADLAAAAAACHQAAAAAAHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHQAAAAAAHgAAAAABHgAAAAACHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAABLQAAAAAALQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAABAQAAAAAAHgAAAAABHgAAAAACAQAAAAAAAQAAAAAAHgAAAAACMwAAAAABMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAADAQAAAAAAHgAAAAABHgAAAAABAQAAAAAAAQAAAAAAHgAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAADMwAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAADMwAAAAACMwAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAAAMwAAAAACMwAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHQAAAAAAJQAAAAADJQAAAAABJQAAAAADJQAAAAAAHgAAAAADMwAAAAADMwAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHQAAAAAAJQAAAAABJQAAAAABJQAAAAABJQAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHQAAAAAAJQAAAAABJQAAAAADJQAAAAAAJQAAAAABHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHQAAAAAAJQAAAAADJQAAAAADJQAAAAADJQAAAAAB - version: 6 + tiles: MAAAAAABADAAAAAAAgAeAAAAAAEABQAAAAAAAB4AAAAAAgAdAAAAAAAAHgAAAAABAB4AAAAAAQAdAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAMAHgAAAAADACwAAAAAAQAsAAAAAAIALAAAAAAAADAAAAAAAQAdAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAEAHQAAAAAAAB4AAAAAAwAeAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAIAHgAAAAACAB4AAAAAAgAdAAAAAAAALAAAAAADACwAAAAAAgAdAAAAAAAAHQAAAAAAAB4AAAAAAQAeAAAAAAAAHgAAAAABAB0AAAAAAAAeAAAAAAEAHgAAAAACAB0AAAAAAAAeAAAAAAIAHgAAAAADAB4AAAAAAAAeAAAAAAAAHQAAAAAAACwAAAAAAAAsAAAAAAEALQAAAAAAAC0AAAAAAAAeAAAAAAAAHgAAAAABAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAC0AAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAEAHgAAAAACAB4AAAAAAgAeAAAAAAIAHgAAAAACAB4AAAAAAwAeAAAAAAAAHgAAAAAAAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAIAHgAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAACAB4AAAAAAQAeAAAAAAMAHgAAAAADAB4AAAAAAgAeAAAAAAEAHgAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAACAB4AAAAAAwAeAAAAAAMAHgAAAAABAB4AAAAAAQAeAAAAAAAAHgAAAAADAB4AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAQAeAAAAAAAAHgAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAABAB4AAAAAAgAeAAAAAAIAHgAAAAAAAB4AAAAAAQAeAAAAAAMAHgAAAAABAB4AAAAAAwAeAAAAAAEAHgAAAAAAAB4AAAAAAQAeAAAAAAEAAQAAAAAAAB4AAAAAAQAeAAAAAAIAAQAAAAAAAAEAAAAAAAAeAAAAAAIAMwAAAAABADMAAAAAAgAzAAAAAAIAMwAAAAADADMAAAAAAAAzAAAAAAEAHgAAAAABAB4AAAAAAQAeAAAAAAAAHgAAAAADAAEAAAAAAAAeAAAAAAEAHgAAAAABAAEAAAAAAAABAAAAAAAAHgAAAAAAADMAAAAAAgAzAAAAAAIAMwAAAAACADMAAAAAAAAzAAAAAAMAMwAAAAAAAB4AAAAAAwAeAAAAAAMAHgAAAAADAB4AAAAAAwAeAAAAAAAAHgAAAAACAB4AAAAAAQAeAAAAAAIAHgAAAAADAB4AAAAAAwAzAAAAAAMAMwAAAAADADMAAAAAAQAzAAAAAAMAMwAAAAACADMAAAAAAQAeAAAAAAMAHgAAAAABAB4AAAAAAwAeAAAAAAAAHgAAAAADAB4AAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAgAeAAAAAAAAMwAAAAADADMAAAAAAwAzAAAAAAMAMwAAAAAAADMAAAAAAgAzAAAAAAMAHgAAAAADAB4AAAAAAQAeAAAAAAAAHgAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADADMAAAAAAgAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAMAMwAAAAACAB4AAAAAAAAeAAAAAAMAHgAAAAACAB4AAAAAAwAdAAAAAAAAJQAAAAADACUAAAAAAQAlAAAAAAMAJQAAAAAAAB4AAAAAAwAzAAAAAAMAMwAAAAAAADMAAAAAAwAzAAAAAAAAMwAAAAACADMAAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAQAeAAAAAAEAHQAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAABACUAAAAAAwAeAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAAAHgAAAAACAB4AAAAAAwAeAAAAAAAAHgAAAAACAB4AAAAAAwAeAAAAAAAAHgAAAAABAB0AAAAAAAAlAAAAAAEAJQAAAAADACUAAAAAAAAlAAAAAAEAHgAAAAADAB4AAAAAAwAeAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAIAHgAAAAADAB4AAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAgAdAAAAAAAAJQAAAAADACUAAAAAAwAlAAAAAAMAJQAAAAABAA== + version: 7 -4,3: ind: -4,3 - tiles: JQAAAAAAJQAAAAAAJQAAAAABJQAAAAABJQAAAAAAJQAAAAADJQAAAAAAJQAAAAADJQAAAAABMAAAAAACMAAAAAADMAAAAAADMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACJQAAAAACJQAAAAADJQAAAAABJQAAAAACJQAAAAADJQAAAAAAJQAAAAAAJQAAAAADJQAAAAADHQAAAAAAMAAAAAACMAAAAAADMAAAAAAAMAAAAAADMAAAAAACMAAAAAADJQAAAAABJQAAAAABJQAAAAACJQAAAAABJQAAAAABJQAAAAAAJQAAAAACJQAAAAAAJQAAAAABMAAAAAADMAAAAAAAMAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAABJQAAAAABJQAAAAABJQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAMAAAAAABMAAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAAJQAAAAADJQAAAAABJQAAAAACJQAAAAACJQAAAAABJQAAAAABJQAAAAAAJQAAAAABJQAAAAAAHQAAAAAAMAAAAAADMAAAAAACHQAAAAAALQAAAAAALQAAAAAALQAAAAAAJQAAAAACJQAAAAABJQAAAAABJQAAAAADJQAAAAACJQAAAAABJQAAAAADJQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAABJQAAAAAAJQAAAAADJQAAAAABJQAAAAADJQAAAAABJQAAAAABJQAAAAACHgAAAAACJQAAAAAAJQAAAAABJQAAAAAAJQAAAAADJQAAAAADJQAAAAABJQAAAAABJQAAAAADJQAAAAAAJQAAAAACJQAAAAABJQAAAAACJQAAAAABJQAAAAABJQAAAAADHgAAAAAAJQAAAAACJQAAAAACJQAAAAACJQAAAAACJQAAAAACJQAAAAABJQAAAAABJQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAADJQAAAAABJQAAAAACJQAAAAADJQAAAAADJQAAAAABJQAAAAACJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAJQAAAAADJQAAAAADJQAAAAABJQAAAAABJQAAAAACJQAAAAACJQAAAAABJQAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAABJQAAAAADJQAAAAAAJQAAAAACJQAAAAACHQAAAAAAHgAAAAABHgAAAAABBQAAAAAABQAAAAAABQAAAAAAHgAAAAABHgAAAAABJQAAAAABJQAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAAD - version: 6 + tiles: JQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAAAlAAAAAAMAJQAAAAAAACUAAAAAAwAlAAAAAAEAMAAAAAACADAAAAAAAwAwAAAAAAMAMAAAAAAAADAAAAAAAQAwAAAAAAAAMAAAAAACACUAAAAAAgAlAAAAAAMAJQAAAAABACUAAAAAAgAlAAAAAAMAJQAAAAAAACUAAAAAAAAlAAAAAAMAJQAAAAADAB0AAAAAAAAwAAAAAAIAMAAAAAADADAAAAAAAAAwAAAAAAMAMAAAAAACADAAAAAAAwAlAAAAAAEAJQAAAAABACUAAAAAAgAlAAAAAAEAJQAAAAABACUAAAAAAAAlAAAAAAIAJQAAAAAAACUAAAAAAQAwAAAAAAMAMAAAAAAAADAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAABACUAAAAAAQAlAAAAAAEAJQAAAAAAACUAAAAAAgAlAAAAAAAAHQAAAAAAADAAAAAAAQAwAAAAAAIALQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAACUAAAAAAwAlAAAAAAEAJQAAAAACACUAAAAAAgAlAAAAAAEAJQAAAAABACUAAAAAAAAlAAAAAAEAJQAAAAAAAB0AAAAAAAAwAAAAAAMAMAAAAAACAB0AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAlAAAAAAIAJQAAAAABACUAAAAAAQAlAAAAAAMAJQAAAAACACUAAAAAAQAlAAAAAAMAJQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAACACUAAAAAAQAlAAAAAAAAJQAAAAADACUAAAAAAQAlAAAAAAMAJQAAAAABACUAAAAAAQAlAAAAAAIAHgAAAAACACUAAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAwAlAAAAAAMAJQAAAAABACUAAAAAAQAlAAAAAAMAJQAAAAAAACUAAAAAAgAlAAAAAAEAJQAAAAACACUAAAAAAQAlAAAAAAEAJQAAAAADAB4AAAAAAAAlAAAAAAIAJQAAAAACACUAAAAAAgAlAAAAAAIAJQAAAAACACUAAAAAAQAlAAAAAAEAJQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAAAJQAAAAADACUAAAAAAQAlAAAAAAIAJQAAAAADACUAAAAAAwAlAAAAAAEAJQAAAAACACUAAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAIAHgAAAAAAACUAAAAAAwAlAAAAAAMAJQAAAAABACUAAAAAAQAlAAAAAAIAJQAAAAACACUAAAAAAQAlAAAAAAMAHQAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAAAAB4AAAAAAAAeAAAAAAIAHgAAAAADAB4AAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAwAlAAAAAAEAJQAAAAADACUAAAAAAAAlAAAAAAIAJQAAAAACAB0AAAAAAAAeAAAAAAEAHgAAAAABAAUAAAAAAAAFAAAAAAAABQAAAAAAAB4AAAAAAQAeAAAAAAEAJQAAAAABACUAAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAQAlAAAAAAAAJQAAAAAAACUAAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAwAFAAAAAAAABQAAAAAAAAUAAAAAAAAeAAAAAAEAHgAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAQAeAAAAAAAAHgAAAAACAB4AAAAAAwAeAAAAAAEAHgAAAAACAB4AAAAAAgAeAAAAAAMAHgAAAAADAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAEAHgAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAIAHgAAAAADAB4AAAAAAQAeAAAAAAIAHgAAAAABAB4AAAAAAwAeAAAAAAEAHgAAAAACAB4AAAAAAwAeAAAAAAAAHgAAAAADAA== + version: 7 -5,3: ind: -5,3 - tiles: IgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHQAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAABJQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHQAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAACJQAAAAADHQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAADJQAAAAACJQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAACHQAAAAAAJQAAAAADJQAAAAAAJQAAAAADJQAAAAAAJQAAAAABHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAADJQAAAAADHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAABJQAAAAABHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHQAAAAAAJQAAAAABJQAAAAABJQAAAAADJQAAAAABJQAAAAADHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAADIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAAD - version: 6 + tiles: IgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAwAeAAAAAAMAHgAAAAACAB4AAAAAAAAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAQAeAAAAAAIAHgAAAAABAB4AAAAAAgAeAAAAAAMAHgAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAMAHgAAAAACAB4AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAIAHgAAAAACAB4AAAAAAQAeAAAAAAEAHgAAAAACAB4AAAAAAAAeAAAAAAIAHQAAAAAAACUAAAAAAgAlAAAAAAAAJQAAAAADACUAAAAAAQAlAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAIAHgAAAAACAB4AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAIAHgAAAAACAB0AAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAwAlAAAAAAIAJQAAAAADAB0AAAAAAAAeAAAAAAEAHgAAAAADAB4AAAAAAQAeAAAAAAIAHgAAAAACAB4AAAAAAQAeAAAAAAEAHgAAAAABAB4AAAAAAAAdAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAgAeAAAAAAIAHQAAAAAAACUAAAAAAwAlAAAAAAAAJQAAAAADACUAAAAAAAAlAAAAAAEAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB4AAAAAAgAeAAAAAAAAHgAAAAADAB0AAAAAAAAlAAAAAAAAJQAAAAABACUAAAAAAgAlAAAAAAMAJQAAAAADAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAABAB4AAAAAAgAdAAAAAAAAJQAAAAABACUAAAAAAgAlAAAAAAAAJQAAAAABACUAAAAAAQAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAAAHQAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAADACUAAAAAAQAlAAAAAAMAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAABAB4AAAAAAgAeAAAAAAAAHgAAAAACAB4AAAAAAQAeAAAAAAEAHgAAAAADAB4AAAAAAgAeAAAAAAMAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAgAeAAAAAAAAHgAAAAADAA== + version: 7 -2,3: ind: -2,3 - tiles: LAAAAAACHQAAAAAALAAAAAABHQAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAKgAAAAAAKgAAAAAALAAAAAACHQAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAKgAAAAAAKgAAAAAALAAAAAACHQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAALAAAAAABHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAHgAAAAADBQAAAAAABQAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAACHgAAAAACBQAAAAAABQAAAAAAHgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAABBQAAAAAABQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADJQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHQAAAAAAJQAAAAACJQAAAAABJQAAAAADJQAAAAACJQAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHQAAAAAAHgAAAAADHgAAAAACAQAAAAAAHgAAAAAAHgAAAAADHQAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAADJQAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHQAAAAAAHgAAAAABHgAAAAABAQAAAAAAHgAAAAABHgAAAAABHQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAACJQAAAAACHQAAAAAAHgAAAAABHgAAAAABHgAAAAABHQAAAAAAHgAAAAABHgAAAAAAAQAAAAAAHgAAAAACHgAAAAADHQAAAAAAJQAAAAAAJQAAAAADJQAAAAAD - version: 6 + tiles: LAAAAAACAB0AAAAAAAAsAAAAAAEAHQAAAAAAACwAAAAAAQAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAqAAAAAAAAKgAAAAAAACwAAAAAAgAdAAAAAAAALAAAAAABACwAAAAAAAAsAAAAAAEALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAKgAAAAAAACoAAAAAAAAsAAAAAAIAHQAAAAAAACwAAAAAAgAsAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAsAAAAAAEAHQAAAAAAACwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAQAeAAAAAAIAHgAAAAACAB4AAAAAAwAeAAAAAAAAHgAAAAADAB4AAAAAAgAeAAAAAAAAHgAAAAACAB4AAAAAAwAeAAAAAAMAHgAAAAADAB4AAAAAAQAeAAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAADAB4AAAAAAQAeAAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAMAHgAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAABAB4AAAAAAwAeAAAAAAMAHgAAAAAAAB4AAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAeAAAAAAIAHgAAAAADAB4AAAAAAwAeAAAAAAMAHgAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAAAAB4AAAAAAAAeAAAAAAMABQAAAAAAAAUAAAAAAAAeAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAHgAAAAAAAAUAAAAAAAAFAAAAAAAAHgAAAAAAAB4AAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAAeAAAAAAIAHgAAAAACAAUAAAAAAAAFAAAAAAAAHgAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAAAAB4AAAAAAQAFAAAAAAAABQAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAAAeAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAIAHgAAAAABAB4AAAAAAQAeAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAwAeAAAAAAEAHgAAAAACAB4AAAAAAAAeAAAAAAIAHgAAAAACAB4AAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAQAeAAAAAAIAHgAAAAAAAB4AAAAAAwAeAAAAAAIAHgAAAAAAAB4AAAAAAgAeAAAAAAEAHgAAAAABAB4AAAAAAwAlAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAQAeAAAAAAMAHgAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAJQAAAAADACUAAAAAAwAdAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAQAeAAAAAAMAHQAAAAAAACUAAAAAAgAlAAAAAAEAJQAAAAADACUAAAAAAgAlAAAAAAMAHQAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAAAAB0AAAAAAAAeAAAAAAMAHgAAAAACAAEAAAAAAAAeAAAAAAAAHgAAAAADAB0AAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAAAlAAAAAAMAJQAAAAACAB0AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAQAdAAAAAAAAHgAAAAABAB4AAAAAAQABAAAAAAAAHgAAAAABAB4AAAAAAQAdAAAAAAAAJQAAAAABACUAAAAAAgAlAAAAAAAAJQAAAAACACUAAAAAAgAdAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAEAHQAAAAAAAB4AAAAAAQAeAAAAAAAAAQAAAAAAAB4AAAAAAgAeAAAAAAMAHQAAAAAAACUAAAAAAAAlAAAAAAMAJQAAAAADAA== + version: 7 -1,3: ind: -1,3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAACHgAAAAADAQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAACHgAAAAACAQAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAADHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAACJQAAAAABJQAAAAADHQAAAAAAJQAAAAABJQAAAAABJQAAAAACHQAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAABJQAAAAACJQAAAAADJQAAAAADJQAAAAADHQAAAAAAJQAAAAABJQAAAAABJQAAAAABHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAADJQAAAAACJQAAAAACJQAAAAABJQAAAAAAHQAAAAAAJQAAAAABJQAAAAABJQAAAAABHQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABJQAAAAADJQAAAAADJQAAAAABJQAAAAADHQAAAAAAJQAAAAAAJQAAAAADJQAAAAACHQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHgAAAAAB - version: 6 + tiles: KgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAQAeAAAAAAMAHgAAAAABAB4AAAAAAgAeAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAACAB4AAAAAAwAeAAAAAAAAHgAAAAAAAB4AAAAAAQAeAAAAAAMAHgAAAAACAB4AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAgAeAAAAAAAAHgAAAAAAAB4AAAAAAQAeAAAAAAIAHgAAAAACAB4AAAAAAwAeAAAAAAMABQAAAAAAAAUAAAAAAAAFAAAAAAAAHgAAAAAAAB4AAAAAAwAeAAAAAAIAHgAAAAACAB4AAAAAAwAeAAAAAAEAHgAAAAABAB4AAAAAAAAeAAAAAAIAHgAAAAACAB4AAAAAAAAeAAAAAAIAHgAAAAACAB4AAAAAAQAeAAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAB4AAAAAAgAeAAAAAAMAAQAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAAAAB4AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAEAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAeAAAAAAIAHgAAAAACAAEAAAAAAAAeAAAAAAMAHgAAAAACAB4AAAAAAwAeAAAAAAMAHgAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAAAAB4AAAAAAQAeAAAAAAEAHgAAAAADAB4AAAAAAwAeAAAAAAIAHgAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAACAB4AAAAAAQAdAAAAAAAAHQAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAACAB4AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAACAB4AAAAAAAAeAAAAAAMAHQAAAAAAAB0AAAAAAAAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAMAHQAAAAAAAB0AAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAgAeAAAAAAMAHgAAAAADAB0AAAAAAAAdAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAEAJQAAAAADAB0AAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAgAdAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAABAB4AAAAAAgAdAAAAAAAAHgAAAAABACUAAAAAAgAlAAAAAAMAJQAAAAADACUAAAAAAwAdAAAAAAAAJQAAAAABACUAAAAAAQAlAAAAAAEAHQAAAAAAAB4AAAAAAQAeAAAAAAIAHgAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAADAB4AAAAAAwAlAAAAAAIAJQAAAAACACUAAAAAAQAlAAAAAAAAHQAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAABAB0AAAAAAAAeAAAAAAEAHgAAAAABAB4AAAAAAAAeAAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAEAJQAAAAADACUAAAAAAwAlAAAAAAEAJQAAAAADAB0AAAAAAAAlAAAAAAAAJQAAAAADACUAAAAAAgAdAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAAAHgAAAAAAAB4AAAAAAwAdAAAAAAAAHgAAAAABAA== + version: 7 -4,4: ind: -4,4 - tiles: HQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAADJQAAAAABJQAAAAAAJQAAAAADNAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACJQAAAAABNAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: HQAAAAAAAB0AAAAAAAAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAAAHQAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAHQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAAA1AAAAAAAAHQAAAAAAACUAAAAAAwAlAAAAAAEAJQAAAAAAACUAAAAAAwA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAB0AAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAB0AAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAEANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAdAAAAAAAANQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAAAdAAAAAAAAJQAAAAABACUAAAAAAgAlAAAAAAAAJQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 -5,4: ind: -5,4 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAABHQAAAAAAHgAAAAABHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAAAHQAAAAAAAB4AAAAAAQAdAAAAAAAAHgAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAIAHgAAAAABAB0AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAwAdAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAQAeAAAAAAEAHgAAAAACAB4AAAAAAAAeAAAAAAMAHgAAAAADAB4AAAAAAgAeAAAAAAAAHgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAIAHgAAAAADAB4AAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAgAeAAAAAAMAHgAAAAAAAB4AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAwAeAAAAAAEAHgAAAAADAB4AAAAAAgAeAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 -3,4: ind: -3,4 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAACJQAAAAAAJQAAAAACJQAAAAAAJQAAAAACHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: HQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAJQAAAAACACUAAAAAAAAlAAAAAAIAJQAAAAAAACUAAAAAAgAdAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAlAAAAAAAAHQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAdAAAAAAAAJQAAAAAAAB0AAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAALQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 1,3: ind: 1,3 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: HQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 0,3: ind: 0,3 - tiles: HgAAAAADBQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADBQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHgAAAAADHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAADJAAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAAAHgAAAAABHQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAADJAAAAAACHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHQAAAAAA - version: 6 + tiles: HgAAAAADAAUAAAAAAAAeAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAwAFAAAAAAAAHgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHgAAAAADAB4AAAAAAAAeAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAwAeAAAAAAMAHgAAAAADAB4AAAAAAgAeAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAACAB4AAAAAAwAeAAAAAAIAHgAAAAABAB0AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAAAeAAAAAAMAHQAAAAAAAB4AAAAAAwAeAAAAAAMAHgAAAAAAAB4AAAAAAwAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB4AAAAAAQAeAAAAAAAAHgAAAAACAB4AAAAAAQAeAAAAAAAAHgAAAAAAAB0AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAgAeAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAAAeAAAAAAEAHgAAAAABAB4AAAAAAwAkAAAAAAEAHgAAAAACAB4AAAAAAwAeAAAAAAMAHgAAAAABAB4AAAAAAgAdAAAAAAAAHgAAAAAAAB4AAAAAAQAdAAAAAAAAHgAAAAADAB4AAAAAAwAeAAAAAAMAHgAAAAADAB4AAAAAAAAeAAAAAAMAJAAAAAACAB4AAAAAAgAeAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAMAHgAAAAADAB4AAAAAAQAeAAAAAAAAHQAAAAAAAA== + version: 7 0,4: ind: 0,4 - tiles: HgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAACJAAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHQAAAAAAHgAAAAACHgAAAAABHQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJAAAAAADHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAADJAAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAADJAAAAAADJAAAAAADJAAAAAABJAAAAAAAJAAAAAADJAAAAAAAHgAAAAACHQAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAABJAAAAAACJAAAAAABJAAAAAACJAAAAAACJAAAAAADJAAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAADJAAAAAADJAAAAAACHQAAAAAAHgAAAAABJAAAAAACJAAAAAACJAAAAAABJAAAAAABJAAAAAADJAAAAAADHgAAAAADHQAAAAAAHgAAAAABHgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAABJAAAAAADJAAAAAADJAAAAAADJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHgAAAAACJAAAAAACJAAAAAABJAAAAAADJAAAAAAAJAAAAAADJAAAAAACJAAAAAACJAAAAAACJAAAAAACJAAAAAACHgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHQAAAAAAHgAAAAADJAAAAAACJAAAAAABJAAAAAACJAAAAAACJAAAAAAAJAAAAAACJAAAAAABJAAAAAABJAAAAAAAJAAAAAADHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACJAAAAAAAJAAAAAABJAAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAADJAAAAAABJAAAAAACJAAAAAABHgAAAAAAHQAAAAAAJQAAAAADJQAAAAADHQAAAAAAHgAAAAABJAAAAAACJAAAAAABJAAAAAADJAAAAAAAJAAAAAACJAAAAAACJAAAAAABJAAAAAACJAAAAAACJAAAAAABHgAAAAAAHQAAAAAAJQAAAAACJQAAAAACHQAAAAAAHgAAAAACJAAAAAADJAAAAAACJAAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACJAAAAAACJAAAAAADJAAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABJAAAAAADJAAAAAADJAAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAACJAAAAAACJAAAAAACJAAAAAADHgAAAAABHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA - version: 6 + tiles: HgAAAAAAAB4AAAAAAQAeAAAAAAMAHgAAAAABAB4AAAAAAgAeAAAAAAIAJAAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAQAeAAAAAAEAHQAAAAAAAB4AAAAAAgAeAAAAAAEAHQAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAACAB4AAAAAAgAeAAAAAAAAHgAAAAADAB0AAAAAAAAeAAAAAAMAHgAAAAADAB4AAAAAAAAeAAAAAAIAHgAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAABAB0AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAAAAB4AAAAAAAAdAAAAAAAAHQAAAAAAACQAAAAAAwAeAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAgAeAAAAAAMAHgAAAAAAAB4AAAAAAwAeAAAAAAMAJAAAAAAAAB4AAAAAAQAeAAAAAAEAHgAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAMAHQAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAAAeAAAAAAMAJAAAAAADACQAAAAAAwAkAAAAAAEAJAAAAAAAACQAAAAAAwAkAAAAAAAAHgAAAAACAB0AAAAAAAAeAAAAAAMAHgAAAAABAB4AAAAAAAAeAAAAAAMAHgAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAABACQAAAAAAgAkAAAAAAEAJAAAAAACACQAAAAAAgAkAAAAAAMAJAAAAAABAB4AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAJAAAAAADACQAAAAAAwAkAAAAAAIAHQAAAAAAAB4AAAAAAQAkAAAAAAIAJAAAAAACACQAAAAAAQAkAAAAAAEAJAAAAAADACQAAAAAAwAeAAAAAAMAHQAAAAAAAB4AAAAAAQAeAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAACAB4AAAAAAQAeAAAAAAEAJAAAAAADACQAAAAAAwAkAAAAAAMAJAAAAAAAACQAAAAAAAAkAAAAAAAAHgAAAAADAB0AAAAAAAAeAAAAAAMAHgAAAAAAAB0AAAAAAAAeAAAAAAIAJAAAAAACACQAAAAAAQAkAAAAAAMAJAAAAAAAACQAAAAAAwAkAAAAAAIAJAAAAAACACQAAAAAAgAkAAAAAAIAJAAAAAACAB4AAAAAAAAdAAAAAAAAHgAAAAADAB4AAAAAAQAdAAAAAAAAHgAAAAADACQAAAAAAgAkAAAAAAEAJAAAAAACACQAAAAAAgAkAAAAAAAAJAAAAAACACQAAAAAAQAkAAAAAAEAJAAAAAAAACQAAAAAAwAeAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAgAkAAAAAAAAJAAAAAABACQAAAAAAAAkAAAAAAMAJAAAAAABACQAAAAAAAAkAAAAAAMAJAAAAAABACQAAAAAAgAkAAAAAAEAHgAAAAAAAB0AAAAAAAAlAAAAAAMAJQAAAAADAB0AAAAAAAAeAAAAAAEAJAAAAAACACQAAAAAAQAkAAAAAAMAJAAAAAAAACQAAAAAAgAkAAAAAAIAJAAAAAABACQAAAAAAgAkAAAAAAIAJAAAAAABAB4AAAAAAAAdAAAAAAAAJQAAAAACACUAAAAAAgAdAAAAAAAAHgAAAAACACQAAAAAAwAkAAAAAAIAJAAAAAACACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAgAkAAAAAAIAJAAAAAADACQAAAAAAAAeAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAQAkAAAAAAMAJAAAAAADACQAAAAAAAAkAAAAAAMAJAAAAAABACQAAAAAAAAkAAAAAAIAJAAAAAACACQAAAAAAgAkAAAAAAMAHgAAAAABAB0AAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAQAeAAAAAAIAHgAAAAAAAB4AAAAAAwAeAAAAAAIAHgAAAAABAB4AAAAAAgAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAeAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 -1,4: ind: -1,4 - tiles: JQAAAAACJQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAJQAAAAADJQAAAAADJQAAAAABHQAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAABJQAAAAACJQAAAAACJQAAAAACJQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAANgAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAKAAAAAABKAAAAAADKAAAAAADKAAAAAACHQAAAAAAHQAAAAAAKAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHgAAAAACKAAAAAABKAAAAAADKAAAAAADKAAAAAACHQAAAAAAKAAAAAADKAAAAAABKAAAAAABHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAABKAAAAAADKAAAAAADKAAAAAADKAAAAAABKAAAAAABKAAAAAADKAAAAAABKAAAAAACHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHgAAAAABHgAAAAAAHQAAAAAAHgAAAAADKAAAAAADKAAAAAAAKAAAAAABKAAAAAABHQAAAAAAKAAAAAACKAAAAAADKAAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABLAAAAAABLAAAAAACHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAABLAAAAAACLAAAAAAALAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAANwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAANwAAAAADKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAA - version: 6 + tiles: JQAAAAACACUAAAAAAAAlAAAAAAIAJQAAAAAAAB0AAAAAAAAlAAAAAAMAJQAAAAADACUAAAAAAQAdAAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAQAeAAAAAAMAHgAAAAABACUAAAAAAgAlAAAAAAIAJQAAAAACACUAAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAADAB4AAAAAAQAeAAAAAAIAHgAAAAAAAB4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAC0AAAAAAAAtAAAAAAAANgAAAAAAAB0AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAwAeAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAAAKAAAAAABACgAAAAAAwAoAAAAAAMAKAAAAAACAB0AAAAAAAAdAAAAAAAAKAAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAACAB0AAAAAAAAdAAAAAAAAHgAAAAACACgAAAAAAQAoAAAAAAMAKAAAAAADACgAAAAAAgAdAAAAAAAAKAAAAAADACgAAAAAAQAoAAAAAAEAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAgAeAAAAAAIAHgAAAAABAB4AAAAAAQAoAAAAAAMAKAAAAAADACgAAAAAAwAoAAAAAAEAKAAAAAABACgAAAAAAwAoAAAAAAEAKAAAAAACAB0AAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAeAAAAAAEAHgAAAAAAAB0AAAAAAAAeAAAAAAMAKAAAAAADACgAAAAAAAAoAAAAAAEAKAAAAAABAB0AAAAAAAAoAAAAAAIAKAAAAAADACgAAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAABAB4AAAAAAQAsAAAAAAEALAAAAAACAB0AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAEALAAAAAACACwAAAAAAAAsAAAAAAMAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAeAAAAAAAAHgAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACUAAAAAAgAlAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAlAAAAAAIAJQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAADcAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAA3AAAAAAMAKgAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAA== + version: 7 -2,4: ind: -2,4 - tiles: JQAAAAAAJQAAAAACHQAAAAAAHgAAAAABHgAAAAADHgAAAAADHQAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAACJQAAAAADJQAAAAACJQAAAAADJQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAABJQAAAAADJQAAAAADJQAAAAAAHQAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAABJQAAAAABHQAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABHQAAAAAAKAAAAAACJQAAAAAAJQAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACHQAAAAAAKAAAAAACJQAAAAABJQAAAAADHQAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACBgAAAAAABgAAAAAABgAAAAAALAAAAAACLAAAAAAALAAAAAACHQAAAAAAKAAAAAACHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAALAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAAALAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAALAAAAAABLAAAAAABLAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAACLAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAALAAAAAADLAAAAAAALAAAAAABHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAADIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: JQAAAAAAACUAAAAAAgAdAAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAMAHQAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAADAB4AAAAAAwAeAAAAAAEAHgAAAAACACUAAAAAAwAlAAAAAAIAJQAAAAADACUAAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAEAHQAAAAAAAB0AAAAAAAAlAAAAAAAAJQAAAAABACUAAAAAAwAlAAAAAAMAJQAAAAAAAB0AAAAAAAAsAAAAAAMALAAAAAACACwAAAAAAAAsAAAAAAMALAAAAAABACwAAAAAAwAsAAAAAAIALAAAAAABACwAAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAJQAAAAABACUAAAAAAQAdAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAEALAAAAAADACwAAAAAAQAdAAAAAAAAKAAAAAACACUAAAAAAAAlAAAAAAMALAAAAAABACwAAAAAAAAsAAAAAAEALAAAAAAAACwAAAAAAQAsAAAAAAAALAAAAAADACwAAAAAAwAsAAAAAAEALAAAAAADACwAAAAAAwAsAAAAAAIAHQAAAAAAACgAAAAAAgAlAAAAAAEAJQAAAAADAB0AAAAAAAAsAAAAAAMALAAAAAABACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAgAsAAAAAAAALAAAAAACACwAAAAAAAAsAAAAAAEALAAAAAACACwAAAAAAAAoAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACwAAAAAAQAsAAAAAAIALAAAAAACACwAAAAAAgAGAAAAAAAABgAAAAAAAAYAAAAAAAAsAAAAAAIALAAAAAAAACwAAAAAAgAdAAAAAAAAKAAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAACwAAAAAAwAsAAAAAAMALAAAAAAAACwAAAAAAQAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAsAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAALAAAAAADACwAAAAAAAAsAAAAAAMABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAALAAAAAABACwAAAAAAQAsAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACwAAAAAAAAsAAAAAAIALAAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAACwAAAAAAwAsAAAAAAAALAAAAAABAB0AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAALAAAAAACACwAAAAAAwAsAAAAAAMALAAAAAABACwAAAAAAgAsAAAAAAAALAAAAAADACwAAAAAAAAsAAAAAAEALAAAAAABACwAAAAAAQAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAsAAAAAAMALAAAAAACACwAAAAAAAAsAAAAAAMALAAAAAAAACwAAAAAAQAsAAAAAAAALAAAAAACACwAAAAAAQAsAAAAAAMAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 -6,3: ind: -6,3 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAADIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAADIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAMAHQAAAAAAAB4AAAAAAgAeAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAMAHgAAAAACAB4AAAAAAgAeAAAAAAEAHgAAAAADACIAAAAAAAAiAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAADAB0AAAAAAAAeAAAAAAIAHgAAAAADAB4AAAAAAAAeAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAwAiAAAAAAAAIgAAAAAAAB0AAAAAAAAeAAAAAAAAHgAAAAACAB4AAAAAAgAdAAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 -6,4: ind: -6,4 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAABIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAACAB0AAAAAAAAeAAAAAAAAHgAAAAADAB4AAAAAAwAeAAAAAAIAHgAAAAAAAB4AAAAAAwAeAAAAAAMAHgAAAAADAB4AAAAAAQAiAAAAAAAAIgAAAAAAAB0AAAAAAAAeAAAAAAMAHgAAAAAAAB4AAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAABAB4AAAAAAwAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAIAIgAAAAAAACIAAAAAAAAdAAAAAAAAHgAAAAAAAB4AAAAAAgAeAAAAAAIAHQAAAAAAAB4AAAAAAgAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAEAHgAAAAACAB4AAAAAAgAeAAAAAAIAHgAAAAABACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 -1,5: ind: -1,5 - tiles: HwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKwAAAAABKwAAAAAAKwAAAAADHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAANwAAAAAAKgAAAAAANwAAAAABHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAOAAAAAABOAAAAAACHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAOAAAAAAAOAAAAAABHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: HwAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAACsAAAAAAQArAAAAAAAAKwAAAAADAB8AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAA3AAAAAAAAKgAAAAAAADcAAAAAAQAdAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAA4AAAAAAEAOAAAAAACAB0AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAOAAAAAAAADgAAAAAAQAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACMAAAAAAAAjAAAAAAAAHQAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAjAAAAAAAAIwAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 0,5: ind: 0,5 - tiles: NwAAAAACKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAANwAAAAACKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAANwAAAAAEHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAANwAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: NwAAAAACACoAAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAANwAAAAACACoAAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAA3AAAAAAQAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAA3AAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 -3,-3: ind: -3,-3 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAA== + version: 7 -2,-3: ind: -2,-3 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAAA== + version: 7 2,1: ind: 2,1 - tiles: HQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAA - version: 6 + tiles: HQAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAA== + version: 7 3,1: ind: 3,1 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 2,2: ind: 2,2 - tiles: HQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: HQAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 3,2: ind: 3,2 - tiles: HQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: HQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 -5,-1: ind: -5,-1 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAABAAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAABAAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAABAAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAABAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAJQAAAAACMQAAAAAGJQAAAAAAJQAAAAADJQAAAAABMQAAAAABHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAAAQAAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAABAAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAEAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAAQAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAJQAAAAACADEAAAAABgAlAAAAAAAAJQAAAAADACUAAAAAAQAxAAAAAAEAHQAAAAAAAB0AAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 -4,-1: ind: -4,-1 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAABAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAAgAAAAABAgAAAAADHQAAAAAAAgAAAAACAgAAAAABHQAAAAAAAgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAgAAAAABHQAAAAAAAgAAAAACAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAANwAAAAABKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAANwAAAAACNwAAAAACKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAAIAAAAAAAAdAAAAAAAAAgAAAAADAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAQACAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAAgAAAAABAAIAAAAAAwAdAAAAAAAAAgAAAAACAAIAAAAAAQAdAAAAAAAAAgAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAAgAAAAABAB0AAAAAAAACAAAAAAIAAgAAAAAAAB0AAAAAAAAdAAAAAAAAAgAAAAADAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAANwAAAAABACoAAAAAAAAdAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAACoAAAAAAAAdAAAAAAAANwAAAAACADcAAAAAAgAqAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAA== + version: 7 -4,5: ind: -4,5 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 -2,5: ind: -2,5 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOAAAAAADOAAAAAAAOAAAAAAAOAAAAAADOAAAAAABOAAAAAABOAAAAAADOAAAAAADOAAAAAADHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAADOAAAAAADOAAAAAADOAAAAAABOAAAAAACOAAAAAABOAAAAAADOAAAAAACOAAAAAAAOAAAAAACHwAAAAAAIgAAAAAAHQAAAAAAOAAAAAABOAAAAAACOAAAAAADHQAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAACOAAAAAACOAAAAAADOAAAAAAAOAAAAAADOAAAAAABHwAAAAAAIgAAAAAAHQAAAAAAOAAAAAABOAAAAAADOAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOAAAAAACHwAAAAAAIgAAAAAAHQAAAAAAOAAAAAAAOAAAAAACOAAAAAADHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAIwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAOAAAAAACOAAAAAAAOAAAAAACHQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAOQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAIwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAOQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAADgAAAAAAwA4AAAAAAAAOAAAAAAAADgAAAAAAwA4AAAAAAEAOAAAAAABADgAAAAAAwA4AAAAAAMAOAAAAAADAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAwA4AAAAAAMAOAAAAAADADgAAAAAAQA4AAAAAAIAOAAAAAABADgAAAAAAwA4AAAAAAIAOAAAAAAAADgAAAAAAgAfAAAAAAAAIgAAAAAAAB0AAAAAAAA4AAAAAAEAOAAAAAACADgAAAAAAwAdAAAAAAAAOAAAAAADADgAAAAAAQA4AAAAAAIAOAAAAAACADgAAAAAAgA4AAAAAAMAOAAAAAAAADgAAAAAAwA4AAAAAAEAHwAAAAAAACIAAAAAAAAdAAAAAAAAOAAAAAABADgAAAAAAwA4AAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAOAAAAAACAB8AAAAAAAAiAAAAAAAAHQAAAAAAADgAAAAAAAA4AAAAAAIAOAAAAAADAB0AAAAAAAA5AAAAAAAAOQAAAAAAADkAAAAAAAA5AAAAAAAAOQAAAAAAADkAAAAAAAA5AAAAAAAAHQAAAAAAACMAAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAA4AAAAAAIAOAAAAAAAADgAAAAAAgAdAAAAAAAAOQAAAAAAADkAAAAAAAAdAAAAAAAAOQAAAAAAAB0AAAAAAAA5AAAAAAAAOQAAAAAAAB0AAAAAAAAjAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAADkAAAAAAAA5AAAAAAAAHQAAAAAAADkAAAAAAAAdAAAAAAAAOQAAAAAAADkAAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAA5AAAAAAAAOQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAADkAAAAAAAA5AAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAADkAAAAAAAA5AAAAAAAAOQAAAAAAADkAAAAAAAA5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAA== + version: 7 -2,6: ind: -2,6 - tiles: IgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 1,4: ind: 1,4 - tiles: HwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: HwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 -5,5: ind: -5,5 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 1,-1: ind: 1,-1 - tiles: HwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAANwAAAAADKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAA - version: 6 + tiles: HwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAA3AAAAAAMAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAqAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAKgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAAA== + version: 7 -1,6: ind: -1,6 - tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: HwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 -3,5: ind: -3,5 - tiles: HwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: HwAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 1,-2: ind: 1,-2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 -6,-1: ind: -6,-1 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAA== + version: 7 -6,0: ind: -6,0 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAMQAAAAAFMQAAAAADHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAJQAAAAAAJQAAAAADHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAMQAAAAABHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAMQAAAAAAMQAAAAAFHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAMQAAAAABHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAxAAAAAAUAMQAAAAADAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAJQAAAAAAACUAAAAAAwAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAADEAAAAAAQAdAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAxAAAAAAAAMQAAAAAFAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAACUAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAdAAAAAAAAHQAAAAAAADEAAAAAAQAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 -6,1: ind: -6,1 - tiles: IgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 -7,0: ind: -7,0 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAdAAAAAAAAHwAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAHQAAAAAAAB8AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAAB0AAAAAAAAfAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAA== + version: 7 -7,1: ind: -7,1 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAHwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 -7,4: ind: -7,4 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 2,0: ind: 2,0 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAfAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -365,6 +365,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -5203,6 +5204,7 @@ entities: - type: NavMap - type: BecomesStation id: Loop + - type: ImplicitRoof - proto: AcousticGuitarInstrument entities: - uid: 2659 @@ -5220,110 +5222,6 @@ entities: - type: Transform pos: -17.44476,38.603394 parent: 2 -- proto: ActionToggleInternals - entities: - - uid: 5996 - components: - - type: Transform - parent: 5994 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5994 - - uid: 13520 - components: - - type: Transform - parent: 5511 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5511 - - uid: 13768 - components: - - type: Transform - parent: 5512 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5512 - - uid: 13953 - components: - - type: Transform - parent: 4429 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 4429 - - uid: 13956 - components: - - type: Transform - parent: 4857 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 4857 -- proto: ActionToggleJetpack - entities: - - uid: 5995 - components: - - type: Transform - parent: 5994 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5994 - - uid: 13519 - components: - - type: Transform - parent: 5511 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5511 - - uid: 13532 - components: - - type: Transform - parent: 5512 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5512 - - uid: 13952 - components: - - type: Transform - parent: 4429 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 4429 - - uid: 13955 - components: - - type: Transform - parent: 4857 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 4857 -- proto: ActionToggleLight - entities: - - uid: 2206 - components: - - type: Transform - parent: 5578 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5578 - - uid: 6242 - components: - - type: Transform - parent: 6530 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6530 - - uid: 6714 - components: - - type: Transform - parent: 6713 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6713 - - uid: 6717 - components: - - type: Transform - parent: 6715 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6715 - proto: AirAlarm entities: - uid: 21 @@ -7285,7 +7183,7 @@ entities: pos: -30.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -56414.664 + secondsUntilStateChange: -56496.08 state: Opening - type: DeviceLinkSource lastSignals: @@ -40334,7 +40232,7 @@ entities: - type: Transform pos: -8.440418,73.640205 parent: 2 -- proto: CigPackMixedMedical +- proto: CigPackMixed entities: - uid: 5579 components: @@ -42254,13 +42152,6 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,51.5 parent: 2 -- proto: ComputerCargoShuttle - entities: - - uid: 2716 - components: - - type: Transform - pos: 0.5,73.5 - parent: 2 - proto: ComputerComms entities: - uid: 5401 @@ -42428,17 +42319,17 @@ entities: parent: 2 - proto: ComputerRadar entities: - - uid: 443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,57.5 - parent: 2 - uid: 6657 components: - type: Transform pos: -17.5,75.5 parent: 2 + - uid: 17820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,58.5 + parent: 2 - proto: ComputerResearchAndDevelopment entities: - uid: 2558 @@ -42485,8 +42376,21 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,62.5 parent: 2 +- proto: ComputerSalvageJobBoard + entities: + - uid: 443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,57.5 + parent: 2 - proto: ComputerShuttleCargo entities: + - uid: 2716 + components: + - type: Transform + pos: 0.5,73.5 + parent: 2 - uid: 16433 components: - type: Transform @@ -44025,7 +43929,7 @@ entities: pos: -9.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -304170.22 + secondsUntilStateChange: -304251.62 state: Opening - uid: 6747 components: @@ -44033,7 +43937,7 @@ entities: pos: -8.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -304170.94 + secondsUntilStateChange: -304252.34 state: Opening - uid: 6749 components: @@ -44041,7 +43945,7 @@ entities: pos: -6.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -304169.5 + secondsUntilStateChange: -304250.9 state: Opening - uid: 6750 components: @@ -44049,7 +43953,7 @@ entities: pos: -5.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -304168.88 + secondsUntilStateChange: -304250.28 state: Opening - uid: 9721 components: @@ -52822,39 +52726,11 @@ entities: - type: Transform pos: -21.436565,3.4491062 parent: 2 - - type: HandheldLight - toggleActionEntity: 6714 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 6714 - - type: ActionsContainer - uid: 6715 components: - type: Transform pos: -21.636318,3.7964506 parent: 2 - - type: HandheldLight - toggleActionEntity: 6717 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 6717 - - type: ActionsContainer - proto: Floodlight entities: - uid: 16953 @@ -76448,49 +76324,16 @@ entities: - type: Transform pos: -26.550102,62.775665 parent: 2 - - type: GasTank - toggleActionEntity: 13520 - - type: Jetpack - toggleActionEntity: 13519 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 13519 - - 13520 - uid: 5512 components: - type: Transform pos: -26.409477,62.431915 parent: 2 - - type: GasTank - toggleActionEntity: 13768 - - type: Jetpack - toggleActionEntity: 13532 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 13532 - - 13768 - uid: 5994 components: - type: Transform pos: 13.317186,62.392735 parent: 2 - - type: GasTank - toggleActionEntity: 5996 - - type: Jetpack - toggleActionEntity: 5995 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 5995 - - 5996 - proto: JetpackSecurityFilled entities: - uid: 4429 @@ -76498,33 +76341,11 @@ entities: - type: Transform pos: -28.271185,39.501156 parent: 2 - - type: GasTank - toggleActionEntity: 13953 - - type: Jetpack - toggleActionEntity: 13952 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 13952 - - 13953 - uid: 4857 components: - type: Transform pos: -28.271185,39.688656 parent: 2 - - type: GasTank - toggleActionEntity: 13956 - - type: Jetpack - toggleActionEntity: 13955 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 13955 - - 13956 - proto: Jukebox entities: - uid: 15425 @@ -76653,43 +76474,15 @@ entities: - type: Transform pos: -10.649839,25.551523 parent: 2 - - type: HandheldLight - toggleActionEntity: 2206 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 2206 - type: Physics canCollide: True - - type: ActionsContainer - uid: 6530 components: - type: Transform pos: -6.7891417,11.615683 parent: 2 - - type: HandheldLight - toggleActionEntity: 6242 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 6242 - type: Physics canCollide: True - - type: ActionsContainer - uid: 7128 components: - type: Transform @@ -88536,6 +88329,12 @@ entities: - type: Transform pos: -24.5,42.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: SeedExtractor entities: - uid: 2914 @@ -98316,6 +98115,12 @@ entities: - type: Transform pos: -35.5,60.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: UniformShortsRed entities: - uid: 17542 diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 87c9c7cb2f..feaf12eb5e 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 254.1.0 + engineVersion: 260.1.0 forkId: "" forkVersion: "" - time: 04/19/2025 17:06:58 - entityCount: 23203 + time: 05/20/2025 22:06:11 + entityCount: 23240 maps: - 5350 grids: @@ -85,356 +85,360 @@ entities: chunks: -1,0: ind: -1,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAYAAAAAACYAAAAAABYAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAABHwAAAAAAfgAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADfgAAAAAAXQAAAAAAHwAAAAADXQAAAAAAHwAAAAACXQAAAAACHwAAAAABXQAAAAAAHwAAAAABXQAAAAADHwAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAACfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAAAHwAAAAADXQAAAAADHwAAAAADXQAAAAABHwAAAAACXQAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADfgAAAAAAXQAAAAAAHwAAAAACXQAAAAAAHwAAAAABXQAAAAAAHwAAAAADXQAAAAADHwAAAAAAXQAAAAADHwAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAfgAAAAAAHwAAAAADXQAAAAADHwAAAAACXQAAAAABHwAAAAACXQAAAAAAHwAAAAABXQAAAAADHwAAAAACXQAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADfgAAAAAAXQAAAAACHwAAAAAAXQAAAAABHwAAAAACXQAAAAABHwAAAAAAXQAAAAAAHwAAAAACXQAAAAAAHwAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAAAHwAAAAAAXQAAAAADHwAAAAADXQAAAAADHwAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABLgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAACegAAAAABLgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAADegAAAAACLgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAH4AAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAXQAAAAAAAB8AAAAAAwB+AAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQB+AAAAAAAAXQAAAAADAB8AAAAAAQBdAAAAAAEAHwAAAAABAF0AAAAAAAAfAAAAAAIAXQAAAAABAB8AAAAAAABdAAAAAAAAHwAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAIAfgAAAAAAAB8AAAAAAgBdAAAAAAEAHwAAAAACAF0AAAAAAgAfAAAAAAEAXQAAAAADAB8AAAAAAwBdAAAAAAIAHwAAAAAAAF0AAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAwBgAAAAAAAAYAAAAAAAAH4AAAAAAABdAAAAAAMAHwAAAAACAF0AAAAAAwAfAAAAAAMAXQAAAAACAB8AAAAAAQBdAAAAAAIAHwAAAAABAF0AAAAAAQAfAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAwB+AAAAAAAAHwAAAAAAAF0AAAAAAwAfAAAAAAEAXQAAAAACAB8AAAAAAgBdAAAAAAIAHwAAAAAAAF0AAAAAAgAfAAAAAAAAXQAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAADAGAAAAAAAABgAAAAAAEAfgAAAAAAAF0AAAAAAAAfAAAAAAAAXQAAAAACAB8AAAAAAgBdAAAAAAIAHwAAAAADAF0AAAAAAgAfAAAAAAIAXQAAAAACAB8AAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAAAAH4AAAAAAAAfAAAAAAIAXQAAAAACAB8AAAAAAwBdAAAAAAEAHwAAAAAAAF0AAAAAAgAfAAAAAAMAXQAAAAABAB8AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAABAC4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAQB6AAAAAAIAegAAAAADAHoAAAAAAwAuAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAegAAAAABAHoAAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAQB6AAAAAAAALgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAABAA== + version: 7 0,0: ind: 0,0 - tiles: XQAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAADXQAAAAACHwAAAAADXQAAAAADHwAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADHwAAAAACXQAAAAADHwAAAAABXQAAAAACHwAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAABXQAAAAADHwAAAAAAXQAAAAADHwAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACXQAAAAACHwAAAAADfgAAAAAAHwAAAAADXQAAAAACHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACXQAAAAAAfgAAAAAAXQAAAAABHwAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAHwAAAAABHwAAAAABXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAcAAAAAABHwAAAAAAcAAAAAAAHwAAAAABegAAAAACfgAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABHwAAAAAA - version: 6 + tiles: XQAAAAACAF0AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAB8AAAAAAQBdAAAAAAEAHwAAAAADAF0AAAAAAQAfAAAAAAIAXQAAAAABAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAMAHwAAAAABAF0AAAAAAQAfAAAAAAIAXQAAAAAAAB8AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAHwAAAAADAF0AAAAAAAAfAAAAAAEAXQAAAAABAB8AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAABAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAHwAAAAAAAF0AAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAwBdAAAAAAEAHwAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwAfAAAAAAIAXQAAAAADAH4AAAAAAABdAAAAAAIAHwAAAAABAF0AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAfgAAAAAAAHAAAAAAAwBwAAAAAAMAcAAAAAAAAB8AAAAAAQAfAAAAAAMAXQAAAAADAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAMAHwAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAAcAAAAAAAAB8AAAAAAABwAAAAAAIAHwAAAAADAHoAAAAAAwB+AAAAAAAAGwAAAAAAABsAAAAAAABDAAAAAAAAQwAAAAAAAEMAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAEMAAAAAAABDAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAgB+AAAAAAAAbQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAIAHwAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: cAAAAAAAcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAABTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAABcAAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcAAAAAACcAAAAAABfgAAAAAAcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAAAcAAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAADcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAA - version: 6 + tiles: cAAAAAAAAHAAAAAAAgBwAAAAAAAAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAAAAHAAAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAgBwAAAAAAEAcAAAAAADAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAMAcAAAAAACAHAAAAAAAgBwAAAAAAEAfgAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAAAAHAAAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAgBwAAAAAAEAcAAAAAADAHAAAAAAAwBwAAAAAAAAcAAAAAADAHAAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAgBwAAAAAAMAcAAAAAADAHAAAAAAAABwAAAAAAAAcAAAAAACAHAAAAAAAQBwAAAAAAAAcAAAAAACAHAAAAAAAQBwAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAHAAAAAAAgBwAAAAAAMAcAAAAAADAHAAAAAAAABwAAAAAAIAcAAAAAACAHAAAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAABwAAAAAAEAcAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAEAcAAAAAAAAH4AAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAwBwAAAAAAIAcAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAcAAAAAAAAHAAAAAAAgB+AAAAAAAAcAAAAAAAAHAAAAAAAgB+AAAAAAAAcAAAAAADAHAAAAAAAwBwAAAAAAAAcAAAAAACAHAAAAAAAwB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAACAHAAAAAAAABwAAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAIAfgAAAAAAAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAIAcAAAAAACAHAAAAAAAgBwAAAAAAEAcAAAAAACAHAAAAAAAQBwAAAAAAIAcAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAAAAHAAAAAAAgBwAAAAAAMAcAAAAAADAHAAAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAABAH4AAAAAAABwAAAAAAEAcAAAAAACAHAAAAAAAABwAAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAMAcAAAAAADAHAAAAAAAwBwAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAcAAAAAADAHAAAAAAAwBwAAAAAAEAcAAAAAAAAHAAAAAAAwBwAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAMAcAAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAIAcAAAAAAAAHAAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: fgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAAAegAAAAACMwAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABegAAAAABegAAAAAAegAAAAABJgAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABHwAAAAAAXQAAAAACHwAAAAADHwAAAAAAHwAAAAABegAAAAABegAAAAABegAAAAACJgAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACegAAAAAAegAAAAADegAAAAADJgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAACMwAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABHwAAAAABHwAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABMwAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAADgAAAAABDgAAAAAADgAAAAAAMwAAAAAAJgAAAAAAMwAAAAAAMwAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAABsAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAegAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAQAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAABAHoAAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAwB6AAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAB8AAAAAAQB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAADMAAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAgAmAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAB8AAAAAAABdAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAMAegAAAAABAHoAAAAAAQB6AAAAAAMAJgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgAfAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAHoAAAAAAAB6AAAAAAAAegAAAAACACYAAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAQAzAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAIAHwAAAAAAAB8AAAAAAQB+AAAAAAAAegAAAAADAHoAAAAAAgB6AAAAAAMAMwAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAQAOAAAAAAMADgAAAAAAAA4AAAAAAAAzAAAAAAAAJgAAAAACADMAAAAAAAAzAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAADAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -2,0: ind: -2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAYAAAAAADYAAAAAADHwAAAAACHwAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAAYAAAAAADYAAAAAAAJAAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAYAAAAAABYAAAAAAAJAAAAAABHwAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAADYAAAAAABJAAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAYAAAAAADYAAAAAACHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAYAAAAAAAYAAAAAADHwAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADYAAAAAABYAAAAAAAHwAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAHwAAAAADPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAAAfgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAfgAAAAAAAGAAAAAAAgBgAAAAAAEAHwAAAAAAAB8AAAAAAwB+AAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAwBgAAAAAAAAYAAAAAACACQAAAAAAAAfAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAYAAAAAAAAGAAAAAAAwAkAAAAAAAAHwAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGAAAAAAAgBgAAAAAAMAJAAAAAACAB8AAAAAAgB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAH4AAAAAAABgAAAAAAMAYAAAAAADAB8AAAAAAwAfAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAIAYAAAAAAAAGAAAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAGAAAAAAAABgAAAAAAAAHwAAAAABAB8AAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAEAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAJgAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAB8AAAAAAgA8AAAAAAAAPAAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACHwAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAABfgAAAAAAXQAAAAADHwAAAAADHwAAAAADHwAAAAADXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAHwAAAAABXQAAAAABXQAAAAABHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAADHwAAAAABXQAAAAADfgAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAAAHwAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAgAfAAAAAAAAXQAAAAACAF0AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAH4AAAAAAAAfAAAAAAIAfgAAAAAAAF0AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAwBdAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAH4AAAAAAABdAAAAAAAAHwAAAAABAF0AAAAAAABdAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAACAB8AAAAAAABdAAAAAAEAfgAAAAAAAB8AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAAAfAAAAAAEAXQAAAAAAAF0AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAQB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAQB6AAAAAAEAegAAAAADAHoAAAAAAgB6AAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: LgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAHwAAAAAAegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAABDAAAAAADDAAAAAAADAAAAAACfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABegAAAAAD - version: 6 + tiles: LgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAAAfAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAAB6AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAHoAAAAAAQB6AAAAAAMAegAAAAADAHoAAAAAAQBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAACAB8AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAwAMAAAAAAIADAAAAAAAAAwAAAAAAgB+AAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAIAHwAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAADAB8AAAAAAAAfAAAAAAIAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAwAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAACAH4AAAAAAAAfAAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAEAegAAAAACAA== + version: 7 -2,1: ind: -2,1 - tiles: fgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAACegAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAACegAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAGwAAAAAAAB+AAAAAAAAPAAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAwAfAAAAAAIAPAAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAABAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAgB+AAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAABAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAMAfgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAQB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAOAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAgB6AAAAAAEAegAAAAACAHoAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAegAAAAACAHoAAAAAAQB6AAAAAAAAfgAAAAAAAA== + version: 7 -3,0: ind: -3,0 - tiles: AAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADHwAAAAABHwAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABHwAAAAADHwAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAHwAAAAADXQAAAAABbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABbQAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAIAfgAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAQAAAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAIAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAAfAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAwB+AAAAAAAAHwAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAIAHwAAAAADAB8AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAB8AAAAAAAAfAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgB+AAAAAAAAHwAAAAABAF0AAAAAAABtAAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAIAfgAAAAAAAB8AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAgBtAAAAAAAAfgAAAAAAAA== + version: 7 -3,1: ind: -3,1 - tiles: fgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAACXQAAAAABXQAAAAACXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAACXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAACegAAAAACegAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABHwAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAADegAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAegAAAAABegAAAAACegAAAAABegAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAD - version: 6 + tiles: fgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAH4AAAAAAAAfAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABtAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgB+AAAAAAAAHwAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAB8AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAEAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAAB6AAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAADAHoAAAAAAgB6AAAAAAAAegAAAAABAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQB+AAAAAAAAegAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAfgAAAAAAAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAHwAAAAACAB8AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAHwAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAAB8AAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAABAHoAAAAAAwB+AAAAAAAAMQAAAAAAADEAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAG0AAAAAAAB6AAAAAAEAegAAAAAAAHoAAAAAAQB6AAAAAAMAfgAAAAAAADEAAAAAAAAxAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAQB6AAAAAAIAegAAAAADAH4AAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAAAAA== + version: 7 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAMgAAAAABfgAAAAAANAAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAD - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAABtAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAwAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAMAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAAAyAAAAAAAAfgAAAAAAADQAAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAA== + version: 7 -3,-1: ind: -3,-1 - tiles: fgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAHwAAAAAALwAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAABLwAAAAAAHwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAACcAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACcAAAAAADAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAEAcAAAAAACAH4AAAAAAAAfAAAAAAEALwAAAAAAAB8AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAfgAAAAAAAB8AAAAAAAAvAAAAAAIAHwAAAAABAH4AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAB8AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQB+AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAcAAAAAABAAAAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAH4AAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQB+AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAMAfgAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAABAH4AAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABwAAAAAAIAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAA== + version: 7 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,-1: ind: -2,-1 - tiles: fgAAAAAAcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAcAAAAAADcAAAAAABcAAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAcAAAAAABcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADHwAAAAAAHwAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADcAAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAADfgAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAADcAAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXwAAAAACXwAAAAABegAAAAACegAAAAACegAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXwAAAAADXwAAAAACegAAAAABegAAAAABegAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXwAAAAABXwAAAAAAegAAAAADegAAAAADegAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAD - version: 6 + tiles: fgAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAACAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAAB+AAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAMAcAAAAAACAHAAAAAAAQBwAAAAAAEAcAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAABAH4AAAAAAABwAAAAAAEAcAAAAAABAHAAAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAACAH4AAAAAAABwAAAAAAMAcAAAAAABAH4AAAAAAAB+AAAAAAAAcAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAcAAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAADAHAAAAAAAABwAAAAAAEAcAAAAAACAHAAAAAAAABwAAAAAAMAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAMAfgAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAADAHAAAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAQBwAAAAAAAAcAAAAAABAH4AAAAAAAAfAAAAAAEAHwAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgBwAAAAAAAAcAAAAAABAHAAAAAAAwBwAAAAAAIAcAAAAAADAHAAAAAAAQBwAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAMAHwAAAAABAB8AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAwBwAAAAAAEAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAADAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAADAHAAAAAAAQBwAAAAAAIAcAAAAAABAHAAAAAAAQBwAAAAAAIAcAAAAAACAH4AAAAAAABwAAAAAAIAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAACAH4AAAAAAABwAAAAAAMAcAAAAAADAHAAAAAAAwBwAAAAAAMAcAAAAAACAHAAAAAAAQBwAAAAAAEAcAAAAAABAHAAAAAAAwB+AAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAIAcAAAAAADAHAAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAACAHAAAAAAAABwAAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAMAcAAAAAACAHAAAAAAAwBwAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAADAHAAAAAAAQBwAAAAAAIAcAAAAAABAHAAAAAAAgBwAAAAAAIAfgAAAAAAAH4AAAAAAABwAAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAABAH4AAAAAAABwAAAAAAMAcAAAAAADAHAAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAF8AAAAAAgBfAAAAAAIAegAAAAADAHoAAAAAAgB6AAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBfAAAAAAIAXwAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAEAXwAAAAABAF8AAAAAAQB6AAAAAAAAegAAAAACAHoAAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAA== + version: 7 -2,2: ind: -2,2 - tiles: XQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADJgAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAADegAAAAABegAAAAADegAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAACegAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAcAAAAAAAcAAAAAABcAAAAAADUgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADJAAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADJAAAAAACHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAA - version: 6 + tiles: XQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAegAAAAABACYAAAAAAwB6AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAADAHoAAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAwB6AAAAAAEAegAAAAAAAHoAAAAAAgB6AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAABAHoAAAAAAwB6AAAAAAAAegAAAAACAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAACAFIAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABtAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAAAACQAAAAAAwAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAwAkAAAAAAIAHwAAAAABAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAfQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAACAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAMAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgBtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAA== + version: 7 -3,2: ind: -3,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAHwAAAAAAXQAAAAADHwAAAAADHwAAAAABHwAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAHwAAAAADXQAAAAAAHwAAAAADHwAAAAAAHwAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAMQAAAAAAADEAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAfgAAAAAAAF0AAAAAAgB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAgB+AAAAAAAAHwAAAAABAF0AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAgBdAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAMAfgAAAAAAAB8AAAAAAwBdAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAIAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAH4AAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAwB+AAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAADAA== + version: 7 -4,1: ind: -4,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAACXQAAAAADHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAANAAAAAADfgAAAAAAMQAAAAAAfgAAAAAAXQAAAAABXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAAAegAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAACegAAAAADegAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAADegAAAAAAegAAAAAB - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADADEAAAAAAAAxAAAAAAAAMQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAB8AAAAAAwB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQAxAAAAAAAAMQAAAAAAADEAAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAAAfAAAAAAEAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAMQAAAAAAADEAAAAAAAAxAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAQAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAANAAAAAACAH4AAAAAAAAxAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAwB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAEAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAADAHoAAAAAAwB6AAAAAAAAegAAAAADAHoAAAAAAwAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAIAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAAAegAAAAABAHoAAAAAAwB6AAAAAAEAegAAAAAAAA== + version: 7 -4,2: ind: -4,2 - tiles: AAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAD - version: 6 + tiles: AAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbQAAAAAAAHoAAAAAAQB6AAAAAAIAegAAAAABAHoAAAAAAAB6AAAAAAIAegAAAAABAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAgAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAbQAAAAAAAH4AAAAAAABdAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGQAAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAZAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAA== + version: 7 -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcAAAAAADcAAAAAABcAAAAAADXQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcAAAAAABcAAAAAADcAAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABfQAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAABwAAAAAAIAcAAAAAADAHAAAAAAAABdAAAAAAEAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAcAAAAAADAHAAAAAAAgBwAAAAAAMAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAADAHAAAAAAAwBwAAAAAAMAcAAAAAAAAF0AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAEAcAAAAAADAHAAAAAAAgBdAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAfgAAAAAAAF0AAAAAAwAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAfQAAAAAAAH4AAAAAAAB+AAAAAAAAMAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAACAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAABAA== + version: 7 -3,3: ind: -3,3 - tiles: XQAAAAACXQAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABHwAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: XQAAAAABAF0AAAAAAAB+AAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAMATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAADAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAgAfAAAAAAIAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAFIAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAXQAAAAAAAFIAAAAAAABSAAAAAAAAfgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAABSAAAAAAAAUgAAAAAAAC4AAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAfgAAAAAAAC4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAABdAAAAAAIAUgAAAAAAAFIAAAAAAAB+AAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAH4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAALgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEALgAAAAAAAC4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 -2,3: ind: -2,3 - tiles: XQAAAAABXQAAAAADXQAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: XQAAAAACAF0AAAAAAwBdAAAAAAIAHwAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAwB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAB8AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAEAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAACAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAHwAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAgB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAB8AAAAAAgB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAABAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,4: ind: -3,4 - tiles: XQAAAAABXQAAAAAAXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAACPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: XQAAAAADAF0AAAAAAgBdAAAAAAMALgAAAAAAAC4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgA/AAAAAAAAPwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAPwAAAAAAAD8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,2: ind: -1,2 - tiles: HwAAAAAAHwAAAAACHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAADHwAAAAABJAAAAAAAHwAAAAADegAAAAAAHwAAAAADHwAAAAACfgAAAAAAQAAAAAAAegAAAAABegAAAAABegAAAAADegAAAAACegAAAAADQAAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAACegAAAAABHwAAAAABHwAAAAABfgAAAAAAQAAAAAAAegAAAAACLwAAAAABLwAAAAAALwAAAAABegAAAAAAQAAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAQAAAAAAAegAAAAABegAAAAADegAAAAADegAAAAABegAAAAACQAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAADHwAAAAABHwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACbAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACJAAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACJAAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAADAAAAAADDAAAAAABDAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAADJAAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAA - version: 6 + tiles: HwAAAAADAB8AAAAAAQAfAAAAAAMAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAABACQAAAAAAgAfAAAAAAAAegAAAAAAAB8AAAAAAQAfAAAAAAIAfgAAAAAAAEAAAAAAAAB6AAAAAAIAegAAAAADAHoAAAAAAgB6AAAAAAMAegAAAAAAAEAAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAAHwAAAAABAHoAAAAAAwAfAAAAAAIAHwAAAAACAH4AAAAAAABAAAAAAAAAegAAAAADAC8AAAAAAQAvAAAAAAMALwAAAAABAHoAAAAAAwBAAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAAB+AAAAAAAAQAAAAAAAAHoAAAAAAgB6AAAAAAMAegAAAAACAHoAAAAAAgB6AAAAAAEAQAAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAAB6AAAAAAMAegAAAAACAB8AAAAAAQAfAAAAAAEAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAADAGwAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAAAHwAAAAADAH4AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAACAB8AAAAAAQB+AAAAAAAAfgAAAAAAAG0AAAAAAAAfAAAAAAIAHwAAAAACACQAAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAEAJAAAAAADAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAB8AAAAAAgAMAAAAAAMADAAAAAADAAwAAAAAAwAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAIAAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAwAkAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAADAB8AAAAAAQB+AAAAAAAAAAAAAAAAAH0AAAAAAAACAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAIAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAACAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAgAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: egAAAAACegAAAAADegAAAAADegAAAAABegAAAAACegAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAOAAAAAAAHwAAAAABOAAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAA - version: 6 + tiles: egAAAAACAHoAAAAAAQB6AAAAAAIAegAAAAABAHoAAAAAAgB6AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAMAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAABAHoAAAAAAwB6AAAAAAIAegAAAAADAB8AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAADAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAegAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAABAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAgB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAfAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAEAOAAAAAAAAB8AAAAAAwA4AAAAAAAAHwAAAAADAH4AAAAAAABsAAAAAAAAbQAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAACADgAAAAAAAA4AAAAAAAAOAAAAAAAAB8AAAAAAwB+AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABtAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAA== + version: 7 -1,3: ind: -1,3 - tiles: AAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAACHwAAAAAA - version: 6 + tiles: AAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAAAfAAAAAAMAHwAAAAABAA== + version: 7 1,1: ind: 1,1 - tiles: HwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAABJAAAAAAAXQAAAAADXQAAAAACHwAAAAAAHwAAAAABHwAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAACJAAAAAACJAAAAAABXQAAAAADXQAAAAABHwAAAAACHwAAAAACHwAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAJAAAAAABJAAAAAADJAAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAALgAAAAAALgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADcAAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 + tiles: HwAAAAABAB8AAAAAAgAfAAAAAAIAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAcAAAAAABAHAAAAAAAwBwAAAAAAIAcAAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAMAfgAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAACAHAAAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAIAfgAAAAAAACQAAAAAAgAkAAAAAAEAJAAAAAAAAF0AAAAAAQBdAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAACAH4AAAAAAAAkAAAAAAIAJAAAAAABACQAAAAAAABdAAAAAAMAXQAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAAB+AAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAIAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAEAfgAAAAAAAC4AAAAAAAAuAAAAAAAAEAAAAAAAABAAAAAAAAB+AAAAAAAAbAAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAADAHAAAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAwB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAEAAAAAAAAH4AAAAAAAAQAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAABAAAAAAAAB+AAAAAAAAEAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAQB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + version: 7 1,2: ind: 1,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACfgAAAAAAZwAAAAABZwAAAAAAZwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAZwAAAAAAZwAAAAACZwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADegAAAAABegAAAAAAegAAAAABegAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAZwAAAAAAZwAAAAAAZwAAAAABegAAAAADegAAAAADegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAbAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAACAH4AAAAAAABnAAAAAAAAZwAAAAACAGcAAAAAAwBAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAwB+AAAAAAAAZwAAAAACAGcAAAAAAQBnAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAHoAAAAAAgB6AAAAAAEAegAAAAABAHoAAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwB6AAAAAAAAegAAAAADAHoAAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAHoAAAAAAwB6AAAAAAMAegAAAAADAHoAAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAH4AAAAAAABnAAAAAAAAZwAAAAADAGcAAAAAAgB6AAAAAAMAegAAAAABAHoAAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAGwAAAAAAAB+AAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAbQAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 2,2: ind: 2,2 - tiles: fgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAJgAAAAABJgAAAAACJgAAAAABJgAAAAADJgAAAAADJgAAAAAAJgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABJgAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADJgAAAAADJgAAAAADfgAAAAAAXQAAAAAAHwAAAAABfgAAAAAAZwAAAAACZwAAAAAAfgAAAAAAJgAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAABJgAAAAADHwAAAAACHwAAAAADXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAJgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABJgAAAAADfgAAAAAAXQAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAegAAAAADegAAAAABegAAAAACegAAAAABegAAAAADegAAAAABegAAAAADegAAAAABfgAAAAAAXQAAAAABHwAAAAACfgAAAAAAXQAAAAACXQAAAAACHwAAAAABHwAAAAACegAAAAADegAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAADegAAAAADegAAAAAAHwAAAAABHwAAAAACXQAAAAACfgAAAAAAZwAAAAAAZwAAAAACfgAAAAAAHwAAAAABegAAAAACegAAAAACegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAAAfgAAAAAAXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAACegAAAAADegAAAAACegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAAAegAAAAADegAAAAABegAAAAADegAAAAABegAAAAACegAAAAABegAAAAABHwAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAegAAAAADfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAACfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: fgAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAADACYAAAAAAwAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAMAJgAAAAABACYAAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAACYAAAAAAwAmAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgAmAAAAAAIAJgAAAAACAH4AAAAAAABdAAAAAAMAHwAAAAACAH4AAAAAAABnAAAAAAIAZwAAAAAAAH4AAAAAAAAmAAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAACACYAAAAAAQAfAAAAAAIAHwAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAJgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAQAmAAAAAAMAfgAAAAAAAF0AAAAAAAAfAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAABAH4AAAAAAAAfAAAAAAIAegAAAAABAHoAAAAAAgB6AAAAAAMAegAAAAACAHoAAAAAAgB6AAAAAAAAegAAAAAAAHoAAAAAAwB+AAAAAAAAXQAAAAABAB8AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwAfAAAAAAIAHwAAAAADAHoAAAAAAgB6AAAAAAIAegAAAAADAHoAAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAQB6AAAAAAAAHwAAAAACAB8AAAAAAQBdAAAAAAEAfgAAAAAAAGcAAAAAAwBnAAAAAAIAfgAAAAAAAB8AAAAAAgB6AAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAEAegAAAAABAHoAAAAAAwB6AAAAAAIAegAAAAAAAH4AAAAAAABdAAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAegAAAAABAHoAAAAAAQB6AAAAAAAAegAAAAADAHoAAAAAAwB6AAAAAAAAegAAAAAAAHoAAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAHwAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAABAHoAAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAAAfAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAEAfgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAACAH4AAAAAAAB+AAAAAAAAegAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAH4AAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAACAH4AAAAAAAB6AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 2,1: ind: 2,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAB8AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAABkAAAAAAAAZAAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAZAAAAAAAAGQAAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGQAAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAACsAAAAAAAArAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAArAAAAAAAAKwAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAKwAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAACsAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 1,0: ind: 1,0 - tiles: XQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACcAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAHwAAAAADHwAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABcAAAAAABcAAAAAADcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACcAAAAAADcAAAAAAAXQAAAAABXQAAAAACXQAAAAAAcAAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAADcAAAAAAAcAAAAAADXQAAAAADXQAAAAABXQAAAAAAcAAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADcAAAAAABcAAAAAADcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAADegAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAABegAAAAABegAAAAAAfgAAAAAAEQAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAACegAAAAABegAAAAADfgAAAAAAEQAAAAAA - version: 6 + tiles: XQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAIAfgAAAAAAAHoAAAAAAwB6AAAAAAIAegAAAAABAHoAAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAH4AAAAAAAB6AAAAAAMAegAAAAABAHoAAAAAAQB6AAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAegAAAAADAHoAAAAAAwB6AAAAAAMAegAAAAAAAF0AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAcAAAAAACAHAAAAAAAwBwAAAAAAEAcAAAAAAAAHAAAAAAAQBwAAAAAAIAHwAAAAADAB8AAAAAAgBsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAHAAAAAAAQBwAAAAAAIAcAAAAAAAAHAAAAAAAQBwAAAAAAMAcAAAAAADAB8AAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgBwAAAAAAEAcAAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAHAAAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAAAcAAAAAADAHAAAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAABwAAAAAAIAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAADAHAAAAAAAgBwAAAAAAMAcAAAAAABAHAAAAAAAQBwAAAAAAMAcAAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAAAfAAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAAAegAAAAACAHoAAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAABAHoAAAAAAgB6AAAAAAMAegAAAAACAH4AAAAAAAARAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAgB+AAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAAAegAAAAADAHoAAAAAAwB+AAAAAAAAEQAAAAAAAA== + version: 7 1,-1: ind: 1,-1 - tiles: fQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAADbQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAA - version: 6 + tiles: fQAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAADAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAEAbQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: HwAAAAAAfgAAAAAAXQAAAAACEQAAAAAAXQAAAAADEQAAAAAAXQAAAAAAEQAAAAAAXQAAAAAAEQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAABXQAAAAAAEQAAAAAAXQAAAAADEQAAAAAAXQAAAAACEQAAAAAAXQAAAAADEQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACHwAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADHwAAAAABfgAAAAAAXQAAAAAAEQAAAAAAXQAAAAABEQAAAAAAXQAAAAACEQAAAAAAXQAAAAADEQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADEQAAAAAAXQAAAAACEQAAAAAAXQAAAAAAEQAAAAAAXQAAAAACEQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA - version: 6 + tiles: HwAAAAACAH4AAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAAARAAAAAAAAXQAAAAAAABEAAAAAAABdAAAAAAEAEQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAMAXQAAAAABABEAAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAQARAAAAAAAAXQAAAAADABEAAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAwAfAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAHwAAAAAAAH4AAAAAAABdAAAAAAAAEQAAAAAAAF0AAAAAAgARAAAAAAAAXQAAAAAAABEAAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAgB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAH4AAAAAAAB+AAAAAAAAXQAAAAACABEAAAAAAABdAAAAAAAAEQAAAAAAAF0AAAAAAQARAAAAAAAAXQAAAAACABEAAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAwBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQB+AAAAAAAAcAAAAAACAHAAAAAAAwBwAAAAAAEAcAAAAAACAH4AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAACAHAAAAAAAQB+AAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAH4AAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAQBwAAAAAAEAfgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAcAAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAHAAAAAAAQBwAAAAAAMAcAAAAAABAHAAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAA== + version: 7 -2,-2: ind: -2,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAAAcAAAAAADcAAAAAABcAAAAAABDAAAAAADcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAABDAAAAAABcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAcAAAAAABcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAACDAAAAAABcAAAAAACcAAAAAABcAAAAAADfgAAAAAAcAAAAAADcAAAAAADcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAADAAAAAACcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAABcAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAAB - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAABAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAACAHAAAAAAAwBwAAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAACAH4AAAAAAABwAAAAAAEAcAAAAAACAHAAAAAAAgB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAIAcAAAAAADAHAAAAAAAQBwAAAAAAIADAAAAAABAHAAAAAAAgBwAAAAAAAAcAAAAAABAH4AAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAIAcAAAAAABAAwAAAAAAgBwAAAAAAAAcAAAAAACAHAAAAAAAgB+AAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAEAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAABwAAAAAAEAcAAAAAADAHAAAAAAAwBwAAAAAAEAfgAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAACAHAAAAAAAwBwAAAAAAEADAAAAAACAHAAAAAAAABwAAAAAAIAcAAAAAACAH4AAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAQB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAIAcAAAAAADAAwAAAAAAgBwAAAAAAMAcAAAAAACAHAAAAAAAQBwAAAAAAEAcAAAAAACAHAAAAAAAgBwAAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAEAcAAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAMAcAAAAAADAHAAAAAAAgBwAAAAAAIAfgAAAAAAAHAAAAAAAwBwAAAAAAIAcAAAAAABAA== + version: 7 -3,-2: ind: -3,-2 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAHwAAAAADLwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAHwAAAAADLwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAADfgAAAAAAHwAAAAACLwAAAAABHwAAAAADbQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAB - version: 6 + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAADAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAIAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAwB6AAAAAAEAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAwB+AAAAAAAAHwAAAAADAC8AAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAEAcAAAAAAAAH4AAAAAAAAfAAAAAAMALwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAEAcAAAAAADAHAAAAAAAgB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAACAHAAAAAAAwBwAAAAAAMAfgAAAAAAAB8AAAAAAwAvAAAAAAIAHwAAAAACAG0AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAEAcAAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: fgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAADfgAAAAAA - version: 6 + tiles: fgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAADAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAAAfAAAAAAIAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAEAHwAAAAADAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAMAegAAAAABAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgAfAAAAAAAAfgAAAAAAAA== + version: 7 1,-2: ind: 1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAADHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAAHwAAAAADAB8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAQAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAAAHwAAAAABAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,-1: ind: 2,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAQB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAMAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-3: ind: 0,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAADHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACXQAAAAABXQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAgBtAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAXQAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAADAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAB8AAAAAAwB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwAfAAAAAAEAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAB8AAAAAAQBdAAAAAAIAXQAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAACAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 -1,-3: ind: -1,-3 - tiles: XQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAAAHwAAAAACfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAAAXQAAAAABHwAAAAAAHwAAAAACHwAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAATwAAAAAAfgAAAAAAHwAAAAADXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADHwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADHwAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAA - version: 6 + tiles: XQAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAAAXQAAAAADAB8AAAAAAgB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAHwAAAAADAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAgBdAAAAAAEAHwAAAAABAB8AAAAAAQAfAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAAAfgAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAADAF0AAAAAAgAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBdAAAAAAMAHwAAAAACAH4AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAACAB8AAAAAAgB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAQB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAIAfgAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwAfAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwAfAAAAAAMAHwAAAAADAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAABAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAHwAAAAACAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAfgAAAAAAAA== + version: 7 -2,-3: ind: -2,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACZgAAAAACZgAAAAAAZgAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACZgAAAAACHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAZgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADXQAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAABegAAAAADfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAHwAAAAABAGYAAAAAAwBmAAAAAAEAZgAAAAADAB8AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAADAH4AAAAAAABdAAAAAAIAfgAAAAAAAB8AAAAAAwAfAAAAAAMAZgAAAAABAB8AAAAAAgAfAAAAAAAAfgAAAAAAAB8AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGYAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgBdAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABtAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAADAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwAfAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAGQAAAAAAABkAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAGQAAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAgB+AAAAAAAAegAAAAABAHoAAAAAAwB+AAAAAAAAegAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAAB+AAAAAAAAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAA== + version: 7 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAADHwAAAAADHwAAAAACAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAABHwAAAAACHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAACHwAAAAADHwAAAAACfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACXQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAHwAAAAADZgAAAAADZgAAAAADZgAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABZgAAAAABZgAAAAACZgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAAAXQAAAAAB - version: 6 + tiles: AAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAwBdAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAMAfQAAAAAAAH4AAAAAAABsAAAAAAAAbQAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAAAAH0AAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAIAXQAAAAACAB8AAAAAAAB9AAAAAAAAfgAAAAAAAGwAAAAAAABtAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAMAZgAAAAACAGYAAAAAAgBmAAAAAAEAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAGYAAAAAAgBmAAAAAAAAZgAAAAACAB8AAAAAAAB+AAAAAAAAHwAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAACAA== + version: 7 -1,-4: ind: -1,-4 - tiles: fQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAB8AAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAADAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAADAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAIAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAA== + version: 7 -1,-5: ind: -1,-5 - tiles: AAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,4: ind: -2,4 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,0: ind: 2,0 - tiles: fgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADEQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fgAAAAAAAHoAAAAAAwB6AAAAAAAAegAAAAABAHoAAAAAAgB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG0AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAfgAAAAAAAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAQAfAAAAAAEAfgAAAAAAAHAAAAAAAgBwAAAAAAEAcAAAAAACAHAAAAAAAwBwAAAAAAAAcAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAEAHwAAAAACAHAAAAAAAgBwAAAAAAEAcAAAAAAAAHAAAAAAAgBwAAAAAAMAcAAAAAAAAHAAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAACAB8AAAAAAgB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAIAEQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAACABEAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,-2: ind: 2,-2 - tiles: fgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,-4: ind: 2,-4 - tiles: BwAAAAAAfwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAABwAAAAAJBwAAAAAABwAAAAAEBwAAAAADCQAAAAAACQAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAHfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAALBwAAAAAABwAAAAAGBwAAAAAAfwAAAAAABwAAAAADAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAACQAAAAAABwAAAAACBwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAABwAAAAAIAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALfwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAADfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAALfwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: BwAAAAADAH8AAAAAAAAHAAAAAAoABwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAwABwAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAAAH8AAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAkAAAAAAAAJAAAAAAAABwAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAQAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAAJAAAAAAAABwAAAAAAAAcAAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAABwAAAAADAH8AAAAAAAAHAAAAAAcAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAgABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAAAAAcAAAAACQAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAQABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAIAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAFAAcAAAAAAAAHAAAAAAgABwAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAgABwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,3: ind: 1,3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADegAAAAADfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAABegAAAAADfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADAHoAAAAAAQB+AAAAAAAAZAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAgB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAMAegAAAAADAH4AAAAAAABkAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,3: ind: 0,3 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABegAAAAABegAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAwB6AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAADAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAACAH4AAAAAAAB6AAAAAAEAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAQB+AAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 3,2: ind: 3,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,1: ind: 3,1 - tiles: fgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA - version: 6 + tiles: bQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABkAAAAAAAAZAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAA== + version: 7 4,1: ind: 4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALwAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAC8AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,2: ind: 4,2 - tiles: fgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAA== + version: 7 -5,3: ind: -5,3 - tiles: AAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -6,2: ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAvAAAAAAMAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAA== + version: 7 -6,3: ind: -6,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + version: 7 -4,-2: ind: -4,-2 - tiles: BwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAJBwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAACHwAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAATgAAAAAATgAAAAADTgAAAAABTgAAAAACTgAAAAACTgAAAAADTgAAAAABXQAAAAADHwAAAAADHwAAAAACXQAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACXQAAAAADXQAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADfgAAAAAATgAAAAAATgAAAAABTgAAAAADTgAAAAAATgAAAAAATgAAAAADTgAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA - version: 6 + tiles: BwAAAAAGAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAACAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAGAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAADAAcAAAAAAAAHAAAAAAwAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAFAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgAfAAAAAAEAHwAAAAACAF0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAMAfgAAAAAAAE4AAAAAAQBOAAAAAAIATgAAAAABAE4AAAAAAgBOAAAAAAMATgAAAAABAE4AAAAAAgBdAAAAAAMAHwAAAAACAB8AAAAAAwBdAAAAAAMAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAABAF0AAAAAAwBdAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAgB+AAAAAAAATgAAAAAAAE4AAAAAAgBOAAAAAAIATgAAAAADAE4AAAAAAQBOAAAAAAMATgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAwB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAA== + version: 7 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAJBwAAAAAIBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAFAAcAAAAAAAAHAAAAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -5,-3: ind: -5,-3 - tiles: HwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACfgAAAAAAHwAAAAABfgAAAAAAfwAAAAAABwAAAAAABwAAAAAKBwAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADQAAAAAAAQAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAACBwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAA - version: 6 + tiles: HwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAQALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAIAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAcAAAAAAgB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAwB+AAAAAAAAHwAAAAAAAH4AAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAEAHwAAAAADAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgBAAAAAAAAAQAAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAAAQAAAAAAAAEAAAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAwABwAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABgAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAEAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAAKAAcAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAcABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAcABwAAAAAAAA== + version: 7 -4,-3: ind: -4,-3 - tiles: fgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAABwAAAAAGCwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADfgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAABwAAAAAFCwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAABwAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADfgAAAAAABwAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAABwAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAGBwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAABBwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAFBwAAAAABBwAAAAAABwAAAAAGCwAAAAAACwAAAAAACwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAKCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAB8AAAAAAwAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAHAAsAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAMAfgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAHAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAABAH4AAAAAAAAHAAAAAAIACwAAAAAAAAcAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAAB+AAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAMAfgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAMAfgAAAAAAAAcAAAAAAQALAAAAAAAACwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAcABwAAAAAAAAsAAAAAAAAHAAAAAAgABwAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAABQB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAMAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -4,-4: ind: -4,-4 - tiles: egAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAJgAAAAABJgAAAAACJgAAAAACJgAAAAAAJgAAAAACJgAAAAAAJgAAAAADIgAAAAACbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAABagAAAAACagAAAAABagAAAAACagAAAAADagAAAAAAagAAAAACZQAAAAACJwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAAATAAAAAACTAAAAAADTAAAAAADTAAAAAACTAAAAAAAfgAAAAAAawAAAAADJwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAACKgAAAAACTAAAAAACTAAAAAABTAAAAAABTAAAAAAAfgAAAAAAawAAAAADJwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAADKgAAAAAATAAAAAABTAAAAAACTAAAAAABTAAAAAACfgAAAAAAawAAAAADJwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAKgAAAAABKgAAAAABKgAAAAACKgAAAAADKgAAAAADKgAAAAACHwAAAAAAawAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAACTAAAAAACKgAAAAACTAAAAAABTAAAAAACTAAAAAABfgAAAAAAawAAAAABJwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAACTAAAAAACTAAAAAABTAAAAAACTAAAAAABTAAAAAAAfgAAAAAAawAAAAADJwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAAATAAAAAACTAAAAAABTAAAAAADTAAAAAACTAAAAAAAfgAAAAAAawAAAAABJwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAADJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAADagAAAAAAagAAAAABagAAAAAAagAAAAADagAAAAACagAAAAACZQAAAAAAJwAAAAACfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAJgAAAAAAJgAAAAADJgAAAAABJgAAAAAAJgAAAAAAJgAAAAADJgAAAAACJgAAAAADIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAA - version: 6 + tiles: egAAAAABAHoAAAAAAAB6AAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAJgAAAAAAACYAAAAAAgAmAAAAAAIAJgAAAAABACYAAAAAAQAmAAAAAAAAJgAAAAAAACYAAAAAAAAiAAAAAAMAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGoAAAAAAwBqAAAAAAMAagAAAAABAGoAAAAAAwBqAAAAAAMAagAAAAACAGoAAAAAAgBlAAAAAAMAJwAAAAADAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAGAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAawAAAAACACcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATAAAAAABAEwAAAAAAwBMAAAAAAIATAAAAAABAEwAAAAAAgBMAAAAAAEAfgAAAAAAAGsAAAAAAQAnAAAAAAEAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAuAAAAAAAAfgAAAAAAAEwAAAAAAgAqAAAAAAIATAAAAAADAEwAAAAAAQBMAAAAAAIATAAAAAACAH4AAAAAAABrAAAAAAMAJwAAAAADAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABMAAAAAAMAKgAAAAADAEwAAAAAAABMAAAAAAMATAAAAAACAEwAAAAAAQB+AAAAAAAAawAAAAABACcAAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAC4AAAAAAAB+AAAAAAAAKgAAAAADACoAAAAAAgAqAAAAAAMAKgAAAAAAACoAAAAAAgAqAAAAAAMAHwAAAAACAGsAAAAAAAAnAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEwAAAAAAQBMAAAAAAMAKgAAAAACAEwAAAAAAABMAAAAAAMATAAAAAACAH4AAAAAAABrAAAAAAAAJwAAAAADAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAALgAAAAAAAH4AAAAAAABMAAAAAAEATAAAAAAAAEwAAAAAAQBMAAAAAAEATAAAAAABAEwAAAAAAAB+AAAAAAAAawAAAAACACcAAAAAAQBAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAATAAAAAACAEwAAAAAAQBMAAAAAAEATAAAAAABAEwAAAAAAABMAAAAAAAAfgAAAAAAAGsAAAAAAAAnAAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABrAAAAAAEAJwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABqAAAAAAIAagAAAAAAAGoAAAAAAQBqAAAAAAEAagAAAAABAGoAAAAAAQBqAAAAAAAAZQAAAAABACcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAB+AAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAIAJgAAAAAAACYAAAAAAAAmAAAAAAIAJgAAAAABACYAAAAAAQAiAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAAfgAAAAAAAA== + version: 7 -3,-3: ind: -3,-3 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAABHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAABHwAAAAAA - version: 6 + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAIAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAMAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAADAA== + version: 7 -5,-4: ind: -5,-4 - tiles: fgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAABfgAAAAAAegAAAAACegAAAAAAegAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAADJwAAAAADJwAAAAACIgAAAAAAJgAAAAABJgAAAAAAJgAAAAABJgAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAJwAAAAAAJwAAAAAAJwAAAAADZQAAAAAAagAAAAACagAAAAAAagAAAAACHwAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAJwAAAAAAJwAAAAABJwAAAAACawAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAADawAAAAADfgAAAAAATAAAAAAATAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAACfgAAAAAAJwAAAAADawAAAAAAfgAAAAAATAAAAAACTAAAAAABPgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAACfgAAAAAAJwAAAAACawAAAAABfgAAAAAATAAAAAABTAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADHwAAAAACegAAAAACegAAAAABegAAAAABegAAAAABHwAAAAABJwAAAAABawAAAAAAHwAAAAACKgAAAAAAKgAAAAACPAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAACegAAAAAAfgAAAAAAJwAAAAAAawAAAAACfgAAAAAATAAAAAADTAAAAAACPAAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAfgAAAAAAJwAAAAADawAAAAABfgAAAAAATAAAAAABTAAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAABfgAAAAAAJwAAAAABawAAAAABfgAAAAAATAAAAAACTAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAADawAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAACZQAAAAAAagAAAAADagAAAAABagAAAAADHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAACJgAAAAAAJgAAAAABJgAAAAACJgAAAAAB - version: 6 + tiles: fgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAMAfgAAAAAAAHoAAAAAAAB6AAAAAAIAfgAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAABAH4AAAAAAAB6AAAAAAMAegAAAAACAHoAAAAAAwB6AAAAAAEAegAAAAABAHoAAAAAAgB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAIAJwAAAAAAACcAAAAAAQAiAAAAAAAAJgAAAAABACYAAAAAAgAmAAAAAAMAJgAAAAABAB8AAAAAAwB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAAAACcAAAAAAAAnAAAAAAEAJwAAAAAAAGUAAAAAAABqAAAAAAIAagAAAAACAGoAAAAAAwAfAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAABAH4AAAAAAAAnAAAAAAAAJwAAAAACACcAAAAAAABrAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAnAAAAAAMAawAAAAACAH4AAAAAAABMAAAAAAAATAAAAAACAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAMAegAAAAABAHoAAAAAAwB+AAAAAAAAJwAAAAACAGsAAAAAAgB+AAAAAAAATAAAAAACAEwAAAAAAQA+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAACAH4AAAAAAAB6AAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAEAfgAAAAAAACcAAAAAAgBrAAAAAAEAfgAAAAAAAEwAAAAAAwBMAAAAAAEAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQAfAAAAAAAAegAAAAADAHoAAAAAAgB6AAAAAAIAegAAAAAAAB8AAAAAAgAnAAAAAAAAawAAAAACAB8AAAAAAAAqAAAAAAMAKgAAAAABADwAAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAHoAAAAAAQB6AAAAAAMAegAAAAAAAHoAAAAAAQB+AAAAAAAAJwAAAAADAGsAAAAAAQB+AAAAAAAATAAAAAAAAEwAAAAAAgA8AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAADAH4AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAgB6AAAAAAEAfgAAAAAAACcAAAAAAQBrAAAAAAMAfgAAAAAAAEwAAAAAAABMAAAAAAMAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAwB6AAAAAAMAegAAAAADAH4AAAAAAAAnAAAAAAMAawAAAAADAH4AAAAAAABMAAAAAAEATAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAJwAAAAADAGsAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAACcAAAAAAQBlAAAAAAMAagAAAAAAAGoAAAAAAQBqAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAiAAAAAAIAJgAAAAABACYAAAAAAAAmAAAAAAAAJgAAAAAAAA== + version: 7 -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAIfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAC - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAA== + version: 7 -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAQAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAAB - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAwB6AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAAAegAAAAACAA== + version: 7 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAABBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAegAAAAABegAAAAABegAAAAADegAAAAAAegAAAAAAegAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAIABwAAAAAFAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAHAAAAAAEABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAACgAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAIAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAgB6AAAAAAAAegAAAAABAHoAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAABAHoAAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAwB6AAAAAAMAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAA== + version: 7 -6,-5: ind: -6,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -3,-4: ind: -3,-4 - tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA - version: 6 + tiles: fQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAA== + version: 7 0,4: ind: 0,4 - tiles: HwAAAAACQAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACQAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: HwAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAfAAAAAAAAQAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAMATwAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAcAAAAAACAHAAAAAAAQB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,4: ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAQAAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAADcAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAAAfAAAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAQAAAAAAAAB8AAAAAAgAfAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAHAAAAAAAwBwAAAAAAMAcAAAAAABAHAAAAAAAABwAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAA== + version: 7 -1,5: ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADEQAAAAAAcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADEQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwARAAAAAAAAEQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAIAEQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABABEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQARAAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAMAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAAAEQAAAAAAAH4AAAAAAAB+AAAAAAAAEQAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAADABEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgARAAAAAAAAEQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAACABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,5: ind: 0,5 - tiles: fgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAADcAAAAAACcAAAAAACEQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAARAAAAAAAAEQAAAAAAAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAABEAAAAAAABwAAAAAAIAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAARAAAAAAAAcAAAAAADAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAAAEQAAAAAAAHAAAAAAAwB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAB+AAAAAAAAfgAAAAAAABEAAAAAAABwAAAAAAEAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAARAAAAAAAAcAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAARAAAAAAAAEQAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHAAAAAAAwBwAAAAAAEAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAABwAAAAAAIATwAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,3: ind: 2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAALfwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAKfwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAMBwAAAAAHfwAAAAAABwAAAAAAfwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAwAHAAAAAAcABwAAAAAAAAcAAAAAAAAHAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAEABwAAAAACAAcAAAAAAAAHAAAAAAoABwAAAAAAAAcAAAAABAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAEAAcAAAAAAAAHAAAAAAAABwAAAAAGAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACQAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAwAHAAAAAAQABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAsABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAALAAcAAAAAAAAHAAAAAAsABwAAAAAGAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAKAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAsABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAADAH4AAAAAAAB+AAAAAAAAfwAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAJAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAAcAAAAABQB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAsAfwAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAkAAAAAAAAHAAAAAAMABwAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAHAH8AAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAJAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAAAfwAAAAAAAA== + version: 7 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAA== + version: 7 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,0: ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,4: ind: 1,4 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 3,3: + ind: 3,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -482,6 +486,8 @@ entities: 2374: 20,-32 2375: 20,-34 2376: 20,-36 + 3203: -3,-53 + 3204: 3.4070768,-49.001 - node: color: '#FFFFFFFF' id: Arrows @@ -503,11 +509,17 @@ entities: 2367: 21,-27 2368: 21,-25 2369: 21,-23 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Bot + decals: + 3205: -5,-57 + 3206: -3,-57 - node: color: '#FFFFFFFF' id: Bot decals: - 0: -14,15 1: 4,12 56: -34,19 57: -34,4 @@ -620,7 +632,6 @@ entities: 2978: -4,-48 2979: -3,-48 3010: 12,14 - 3015: 2,-51 3114: -21,-15 3176: -35,56 3177: -34,56 @@ -630,6 +641,8 @@ entities: 3181: -34,60 3182: -33,60 3183: -32,60 + 3197: -13,16 + 3198: -14,17 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -677,10 +690,7 @@ entities: 2837: -14,-38 2838: -12,-38 2972: -5,-54 - 2973: -4,-54 - 2975: -4,-50 2976: 4,-49 - 2977: 4,-50 3113: 20,-3 3148: -13,-50 - node: @@ -1893,6 +1903,12 @@ entities: id: CheckerNWSE decals: 1019: 3,-28 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 3207: -4,-57 - node: color: '#FFFFFFFF' id: Delivery @@ -4352,7 +4368,6 @@ entities: 1733: 5,21 2070: 2,-35 2818: -8,-53 - 2843: -5,-52 2940: -17,-56 2982: 12,12 3171: 29,41 @@ -4374,6 +4389,7 @@ entities: 2805: 14,-19 3039: 3,87 3051: 10,39 + 3202: -3,-52 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -4467,8 +4483,6 @@ entities: 2073: 2,-34 2135: -2,-1 2822: -8,-52 - 2844: -5,-51 - 2845: -5,-50 2846: -5,-49 2847: -5,-48 2866: -3,-51 @@ -4555,6 +4569,12 @@ entities: 2604: -14,-17 2685: -14,-13 2693: -22,-13 + - node: + color: '#79150096' + id: WarnLineGreyscaleS + decals: + 3199: -14,15 + 3200: -13,15 - node: color: '#D381C996' id: WarnLineGreyscaleS @@ -4649,7 +4669,6 @@ entities: 2825: -11,-53 2826: -10,-53 2827: -9,-53 - 2848: -6,-52 2849: -3,-47 2850: 1,-47 2851: 2,-47 @@ -4725,6 +4744,7 @@ entities: 3143: -1,-42 3169: 33,42 3187: -38,51 + 3201: 1,-51 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5143,13 +5163,13 @@ entities: 0: 65532 -4,3: 1: 4368 - 0: 19652 + 0: 52420 -5,3: 0: 9 1: 65472 -4,4: 1: 17 - 0: 28740 + 0: 28748 -4,-1: 0: 61160 -3,0: @@ -5159,11 +5179,11 @@ entities: -3,2: 0: 65535 -3,3: - 0: 12272 + 0: 20464 -3,-1: 0: 65535 -3,4: - 0: 65399 + 0: 65518 -2,0: 0: 65534 -2,1: @@ -6114,6 +6134,7 @@ entities: 7,10: 0: 61160 7,11: + 2: 16 0: 17608 7,12: 0: 17476 @@ -6126,6 +6147,8 @@ entities: 8,11: 0: 248 2: 61440 + 8,12: + 2: 228 9,8: 0: 65535 9,9: @@ -6135,8 +6158,8 @@ entities: 9,11: 0: 255 2: 61440 - 8,12: - 2: 200 + 9,12: + 2: 242 10,8: 0: 65535 10,9: @@ -6144,8 +6167,9 @@ entities: 10,10: 0: 57599 10,11: - 0: 239 - 2: 61440 + 0: 58607 + 10,12: + 0: 1262 10,7: 0: 19925 11,8: @@ -6156,17 +6180,20 @@ entities: 0: 58484 11,11: 0: 239 - 2: 61440 + 2: 57344 11,7: 0: 61408 - 11,12: - 2: 114 12,8: 2: 4368 12,9: 2: 4369 12,10: 2: 17 + 11,12: + 2: 232 + 12,11: + 2: 4096 + 4: 2 8,3: 0: 13211 2: 32768 @@ -6425,18 +6452,18 @@ entities: 2: 34952 6,-6: 2: 61440 - 4: 224 + 6: 224 6,-5: 0: 112 2: 2184 6,-8: 3: 224 - 5: 57344 + 4: 57344 6,-7: - 5: 224 - 6: 57344 + 4: 224 + 5: 57344 6,-9: - 5: 57568 + 4: 57568 7,-5: 2: 4080 7,-8: @@ -6865,8 +6892,6 @@ entities: 2: 12834 3,16: 2: 242 - 12,11: - 5: 2 14,9: 2: 39304 0: 17476 @@ -7457,10 +7482,8 @@ entities: 2: 3 2,21: 2: 8738 - 9,12: - 2: 240 - 10,12: - 2: 240 + 12,12: + 2: 16 9,-18: 0: 33078 9,-19: @@ -7492,8 +7515,8 @@ entities: - volume: 2500 temperature: 235 moles: - - 21.824879 - - 82.10312 + - 27.225372 + - 102.419266 - 0 - 0 - 0 @@ -7534,21 +7557,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -7579,17 +7587,34 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: BecomesStation id: Marathon - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: RadiationGridResistance - type: GravityShake shakeTimes: 10 - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding + - type: ImplicitRoof - uid: 5350 components: - type: MetaData @@ -7608,15 +7633,6 @@ entities: - type: Transform pos: -0.39634466,12.638008 parent: 30 -- proto: ActionToggleLight - entities: - - uid: 11287 - components: - - type: Transform - parent: 20092 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 20092 - proto: AirAlarm entities: - uid: 682 @@ -9029,6 +9045,16 @@ entities: - 2648 - 2647 - 2646 + - uid: 22286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,17.5 + parent: 30 + - type: DeviceList + devices: + - 3480 + - 3483 - uid: 22553 components: - type: Transform @@ -9080,16 +9106,6 @@ entities: devices: - 13079 - 13005 - - uid: 22704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,17.5 - parent: 30 - - type: DeviceList - devices: - - 3480 - - 3483 - uid: 22705 components: - type: Transform @@ -9741,21 +9757,19 @@ entities: - uid: 9978 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,-18.5 parent: 30 - uid: 9989 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,-18.5 parent: 30 - proto: AirlockBarLocked entities: - - uid: 455 + - uid: 20708 components: - type: Transform - pos: -10.5,15.5 + pos: -9.5,15.5 parent: 30 - proto: AirlockBrigGlassLocked entities: @@ -10031,13 +10045,11 @@ entities: - uid: 20883 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,73.5 parent: 30 - uid: 20885 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,67.5 parent: 30 - proto: AirlockDetectiveLocked @@ -10179,7 +10191,6 @@ entities: - uid: 10786 components: - type: Transform - rot: 1.5707963267948966 rad pos: -17.5,-49.5 parent: 30 - uid: 11033 @@ -10287,7 +10298,6 @@ entities: - uid: 9501 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-55.5 parent: 30 - type: DeviceLinkSink @@ -10300,7 +10310,6 @@ entities: - uid: 9879 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,-55.5 parent: 30 - type: DeviceLinkSink @@ -10313,7 +10322,6 @@ entities: - uid: 10789 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,-57.5 parent: 30 - type: DeviceLinkSink @@ -10326,7 +10334,6 @@ entities: - uid: 11117 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,-57.5 parent: 30 - type: DeviceLinkSink @@ -10738,12 +10745,17 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-3.5 parent: 30 + - uid: 15244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,50.5 + parent: 30 - proto: AirlockExternalLocked entities: - uid: 5070 components: - type: Transform - rot: 3.141592653589793 rad pos: -18.5,46.5 parent: 30 - type: DeviceLinkSink @@ -11332,19 +11344,16 @@ entities: - uid: 6716 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-14.5 parent: 30 - uid: 6894 components: - type: Transform - rot: 1.5707963267948966 rad pos: -37.5,-30.5 parent: 30 - uid: 8312 components: - type: Transform - rot: 1.5707963267948966 rad pos: -31.5,-33.5 parent: 30 - proto: AirlockMaintBarLocked @@ -11390,19 +11399,16 @@ entities: - uid: 20265 components: - type: Transform - rot: 1.5707963267948966 rad pos: -3.5,66.5 parent: 30 - uid: 20266 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,66.5 parent: 30 - uid: 20267 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,74.5 parent: 30 - uid: 20279 @@ -11413,7 +11419,6 @@ entities: - uid: 20736 components: - type: Transform - rot: 1.5707963267948966 rad pos: -3.5,74.5 parent: 30 - uid: 20981 @@ -11555,7 +11560,6 @@ entities: - uid: 1723 components: - type: Transform - rot: 3.141592653589793 rad pos: 31.5,44.5 parent: 30 - uid: 5325 @@ -11576,7 +11580,6 @@ entities: - uid: 7076 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,-16.5 parent: 30 - uid: 8292 @@ -11597,11 +11600,10 @@ entities: - uid: 9626 components: - type: Transform - rot: -1.5707963267948966 rad pos: 34.5,45.5 parent: 30 - type: Door - secondsUntilStateChange: -10106.782 + secondsUntilStateChange: -11578.886 state: Opening - type: DeviceLinkSource lastSignals: @@ -11661,6 +11663,11 @@ entities: - type: Transform pos: 43.5,26.5 parent: 30 + - uid: 15267 + components: + - type: Transform + pos: 42.5,46.5 + parent: 30 - uid: 16199 components: - type: Transform @@ -11679,7 +11686,6 @@ entities: - uid: 18992 components: - type: Transform - rot: 3.141592653589793 rad pos: -19.5,-28.5 parent: 30 - uid: 19815 @@ -12182,7 +12188,6 @@ entities: - uid: 2547 components: - type: Transform - rot: 1.5707963267948966 rad pos: -47.5,40.5 parent: 30 - type: DeviceNetwork @@ -12191,7 +12196,6 @@ entities: - uid: 2548 components: - type: Transform - rot: 1.5707963267948966 rad pos: -43.5,40.5 parent: 30 - type: DeviceNetwork @@ -12200,7 +12204,6 @@ entities: - uid: 4353 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,-26.5 parent: 30 - type: DeviceNetwork @@ -12266,7 +12269,6 @@ entities: - uid: 9995 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,-51.5 parent: 30 - type: DeviceNetwork @@ -12794,7 +12796,6 @@ entities: - uid: 22702 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,11.5 parent: 30 - type: DeviceNetwork @@ -12803,7 +12804,6 @@ entities: - uid: 22744 components: - type: Transform - rot: -1.5707963267948966 rad pos: -15.5,-5.5 parent: 30 - type: DeviceNetwork @@ -12812,7 +12812,6 @@ entities: - uid: 22789 components: - type: Transform - rot: 1.5707963267948966 rad pos: -39.5,40.5 parent: 30 - type: DeviceNetwork @@ -12821,7 +12820,6 @@ entities: - uid: 22795 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,61.5 parent: 30 - type: DeviceNetwork @@ -12830,7 +12828,6 @@ entities: - uid: 22796 components: - type: Transform - rot: 3.141592653589793 rad pos: -46.5,61.5 parent: 30 - type: DeviceNetwork @@ -12839,7 +12836,6 @@ entities: - uid: 22814 components: - type: Transform - rot: -1.5707963267948966 rad pos: 34.5,-13.5 parent: 30 - type: DeviceNetwork @@ -12848,7 +12844,6 @@ entities: - uid: 22815 components: - type: Transform - rot: -1.5707963267948966 rad pos: 37.5,-2.5 parent: 30 - type: DeviceNetwork @@ -12857,7 +12852,6 @@ entities: - uid: 22816 components: - type: Transform - rot: -1.5707963267948966 rad pos: 37.5,-6.5 parent: 30 - type: DeviceNetwork @@ -12866,7 +12860,6 @@ entities: - uid: 22864 components: - type: Transform - rot: -1.5707963267948966 rad pos: 40.5,14.5 parent: 30 - type: DeviceNetwork @@ -14154,6 +14147,12 @@ entities: - type: Transform pos: -59.5,2.5 parent: 30 + - uid: 23220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,50.5 + parent: 30 - proto: AtmosDeviceFanTiny entities: - uid: 9123 @@ -14703,11 +14702,6 @@ entities: - type: Transform pos: 39.5,45.5 parent: 30 - - uid: 15250 - components: - - type: Transform - pos: 43.5,43.5 - parent: 30 - uid: 15251 components: - type: Transform @@ -14868,6 +14862,11 @@ entities: parent: 30 - proto: BedsheetSpawner entities: + - uid: 451 + components: + - type: Transform + pos: 39.5,45.5 + parent: 30 - uid: 6438 components: - type: Transform @@ -14883,11 +14882,6 @@ entities: - type: Transform pos: 16.5,40.5 parent: 30 - - uid: 15253 - components: - - type: Transform - pos: 43.5,43.5 - parent: 30 - uid: 15254 components: - type: Transform @@ -14950,13 +14944,6 @@ entities: - type: Transform pos: -49.5,61.5 parent: 30 -- proto: BedsheetWiz - entities: - - uid: 15247 - components: - - type: Transform - pos: 39.5,45.5 - parent: 30 - proto: BikeHorn entities: - uid: 668 @@ -15523,6 +15510,13 @@ entities: - type: Transform pos: -25.5,-0.5 parent: 30 +- proto: BoxFlare + entities: + - uid: 23240 + components: + - type: Transform + pos: 0.5552447,-53.26765 + parent: 30 - proto: BoxFlashbang entities: - uid: 2002 @@ -32096,6 +32090,31 @@ entities: - type: Transform pos: -53.5,-64.5 parent: 30 + - uid: 23209 + components: + - type: Transform + pos: 42.5,45.5 + parent: 30 + - uid: 23210 + components: + - type: Transform + pos: 42.5,46.5 + parent: 30 + - uid: 23211 + components: + - type: Transform + pos: 42.5,47.5 + parent: 30 + - uid: 23212 + components: + - type: Transform + pos: 42.5,49.5 + parent: 30 + - uid: 23213 + components: + - type: Transform + pos: 42.5,48.5 + parent: 30 - proto: CableApcStack entities: - uid: 1637 @@ -44653,7 +44672,6 @@ entities: - uid: 560 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,8.5 parent: 30 - uid: 568 @@ -44874,25 +44892,21 @@ entities: - uid: 6434 components: - type: Transform - rot: 1.5707963267948966 rad pos: 16.5,36.5 parent: 30 - uid: 6435 components: - type: Transform - rot: 1.5707963267948966 rad pos: 16.5,37.5 parent: 30 - uid: 6436 components: - type: Transform - rot: 1.5707963267948966 rad pos: 17.5,37.5 parent: 30 - uid: 6437 components: - type: Transform - rot: 1.5707963267948966 rad pos: 17.5,36.5 parent: 30 - uid: 15205 @@ -45422,67 +45436,56 @@ entities: - uid: 5011 components: - type: Transform - rot: 3.141592653589793 rad pos: -17.5,34.5 parent: 30 - uid: 5012 components: - type: Transform - rot: 3.141592653589793 rad pos: -18.5,34.5 parent: 30 - uid: 5013 components: - type: Transform - rot: 3.141592653589793 rad pos: -19.5,34.5 parent: 30 - uid: 5015 components: - type: Transform - rot: 3.141592653589793 rad pos: -18.5,35.5 parent: 30 - uid: 5016 components: - type: Transform - rot: 3.141592653589793 rad pos: -17.5,35.5 parent: 30 - uid: 5043 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,35.5 parent: 30 - uid: 5044 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,36.5 parent: 30 - uid: 5045 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,36.5 parent: 30 - uid: 5046 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,35.5 parent: 30 - uid: 5047 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,35.5 parent: 30 - uid: 5048 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,36.5 parent: 30 - uid: 5058 @@ -46034,18 +46037,6 @@ entities: - type: Transform pos: -62.5,-63.5 parent: 30 -- proto: CarpetPink - entities: - - uid: 15267 - components: - - type: Transform - pos: 41.5,43.5 - parent: 30 - - uid: 15268 - components: - - type: Transform - pos: 42.5,43.5 - parent: 30 - proto: CarpetPurple entities: - uid: 5053 @@ -46281,6 +46272,12 @@ entities: - type: Transform pos: -49.5,-8.5 parent: 30 + - uid: 1944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,44.5 + parent: 30 - uid: 4852 components: - type: Transform @@ -47341,6 +47338,18 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,7.5 parent: 30 + - uid: 15247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-44.5 + parent: 30 + - uid: 15256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,44.5 + parent: 30 - uid: 15437 components: - type: Transform @@ -49374,6 +49383,57 @@ entities: - type: Transform pos: -4.5,-44.5 parent: 30 + - uid: 23205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,44.5 + parent: 30 + - uid: 23206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,47.5 + parent: 30 + - uid: 23207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,48.5 + parent: 30 + - uid: 23208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,49.5 + parent: 30 + - uid: 23223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-56.5 + parent: 30 + - uid: 23224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-55.5 + parent: 30 + - uid: 23231 + components: + - type: Transform + pos: -4.5,-51.5 + parent: 30 + - uid: 23232 + components: + - type: Transform + pos: -4.5,-50.5 + parent: 30 + - uid: 23233 + components: + - type: Transform + pos: -4.5,-49.5 + parent: 30 - proto: Chair entities: - uid: 586 @@ -51979,6 +52039,11 @@ entities: - 0 - 0 - 0 + - uid: 23219 + components: + - type: Transform + pos: 41.5,48.5 + parent: 30 - proto: ClosetEmergencyN2FilledRandom entities: - uid: 6704 @@ -52574,6 +52639,11 @@ entities: - 0 - 0 - 0 + - uid: 23216 + components: + - type: Transform + pos: 41.5,47.5 + parent: 30 - proto: ClosetRadiationSuitFilled entities: - uid: 9058 @@ -52763,11 +52833,6 @@ entities: parent: 30 - proto: ClothingBeltHolster entities: - - uid: 727 - components: - - type: Transform - pos: -7.5304756,16.51597 - parent: 30 - uid: 15997 components: - type: Transform @@ -53203,13 +53268,6 @@ entities: - type: Transform pos: -28.699547,16.50104 parent: 30 -- proto: ClothingHeadHatRedwizard - entities: - - uid: 15244 - components: - - type: Transform - pos: 39.5393,43.86121 - parent: 30 - proto: ClothingHeadHatRichard entities: - uid: 15218 @@ -53299,13 +53357,6 @@ entities: - type: Transform pos: -52.689133,41.472305 parent: 30 -- proto: ClothingHeadHatWizard - entities: - - uid: 15241 - components: - - type: Transform - pos: 35.44555,43.82996 - parent: 30 - proto: ClothingHeadHelmetEVALarge entities: - uid: 17784 @@ -53423,11 +53474,6 @@ entities: parent: 30 - proto: ClothingNeckScarfStripedBlue entities: - - uid: 728 - components: - - type: Transform - pos: -7.5304756,16.469095 - parent: 30 - uid: 15999 components: - type: Transform @@ -53708,20 +53754,6 @@ entities: - type: Transform pos: -1.5342877,-32.48201 parent: 30 -- proto: ClothingOuterWizard - entities: - - uid: 15240 - components: - - type: Transform - pos: 35.461174,43.595585 - parent: 30 -- proto: ClothingOuterWizardRed - entities: - - uid: 15243 - components: - - type: Transform - pos: 39.523674,43.658085 - parent: 30 - proto: ClothingOuterWizardViolet entities: - uid: 19693 @@ -53787,23 +53819,13 @@ entities: parent: 30 - proto: ClothingShoesSlippers entities: - - uid: 15256 + - uid: 20662 components: - type: Transform - pos: 42.543846,45.290394 + pos: 38.480247,43.490612 parent: 30 - proto: ClothingShoesWizard entities: - - uid: 15242 - components: - - type: Transform - pos: 35.492424,43.408085 - parent: 30 - - uid: 15245 - components: - - type: Transform - pos: 39.523674,43.39246 - parent: 30 - uid: 19695 components: - type: Transform @@ -54469,18 +54491,10 @@ entities: parent: 30 - proto: ComputerCargoOrdersService entities: - - uid: 2177 + - uid: 22904 components: - type: Transform - pos: -6.5,11.5 - parent: 30 -- proto: ComputerCargoShuttle - entities: - - uid: 11718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,0.5 + pos: -12.5,16.5 parent: 30 - proto: ComputerComms entities: @@ -54724,8 +54738,21 @@ entities: - type: Transform pos: 29.5,-9.5 parent: 30 +- proto: ComputerSalvageJobBoard + entities: + - uid: 23204 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 30 - proto: ComputerShuttleCargo entities: + - uid: 11718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 30 - uid: 18001 components: - type: Transform @@ -55456,10 +55483,10 @@ entities: parent: 30 - proto: CrateLockBoxService entities: - - uid: 23198 + - uid: 1974 components: - type: Transform - pos: -13.5,19.5 + pos: -13.5,16.5 parent: 30 - uid: 23199 components: @@ -64783,7 +64810,6 @@ entities: - uid: 22863 components: - type: Transform - rot: -1.5707963267948966 rad pos: 49.5,19.5 parent: 30 - type: DeviceNetwork @@ -65249,7 +65275,6 @@ entities: - uid: 474 components: - type: Transform - rot: 1.5707963267948966 rad pos: -41.5,50.5 parent: 30 - type: DeviceNetwork @@ -65401,7 +65426,6 @@ entities: - uid: 2646 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,42.5 parent: 30 - type: DeviceNetwork @@ -65410,7 +65434,6 @@ entities: - uid: 2647 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,43.5 parent: 30 - type: DeviceNetwork @@ -65419,7 +65442,6 @@ entities: - uid: 2648 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,44.5 parent: 30 - type: DeviceNetwork @@ -65452,7 +65474,6 @@ entities: - uid: 4241 components: - type: Transform - rot: -1.5707963267948966 rad pos: 14.5,-24.5 parent: 30 - type: DeviceNetwork @@ -65860,7 +65881,6 @@ entities: - uid: 9618 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-24.5 parent: 30 - type: DeviceNetwork @@ -65875,7 +65895,6 @@ entities: - uid: 9769 components: - type: Transform - rot: -1.5707963267948966 rad pos: 14.5,-23.5 parent: 30 - type: DeviceNetwork @@ -65886,7 +65905,6 @@ entities: - uid: 9782 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-23.5 parent: 30 - type: DeviceNetwork @@ -66142,7 +66160,6 @@ entities: - uid: 13073 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,15.5 parent: 30 - uid: 13391 @@ -66252,7 +66269,6 @@ entities: - uid: 17724 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,16.5 parent: 30 - uid: 18069 @@ -66268,13 +66284,11 @@ entities: - uid: 18212 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,14.5 parent: 30 - uid: 18601 components: - type: Transform - rot: -1.5707963267948966 rad pos: 15.5,11.5 parent: 30 - uid: 19590 @@ -66486,7 +66500,6 @@ entities: - uid: 22778 components: - type: Transform - rot: 1.5707963267948966 rad pos: -38.5,50.5 parent: 30 - type: DeviceNetwork @@ -67319,8 +67332,18 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-48.5 parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasOutletInjector entities: + - uid: 1976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-56.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 8693 components: - type: Transform @@ -67438,14 +67461,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-56.5 parent: 30 - - uid: 9293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-56.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 12869 components: - type: Transform @@ -67456,14 +67471,6 @@ entities: - type: Transform pos: 38.5,12.5 parent: 30 - - uid: 20708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-57.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 21275 components: - type: Transform @@ -68160,6 +68167,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#947507FF' + - uid: 9216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9262 components: - type: Transform @@ -68302,11 +68317,11 @@ entities: - uid: 11130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-52.5 + rot: 3.141592653589793 rad + pos: 2.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 11167 components: - type: Transform @@ -68805,14 +68820,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 20647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 20663 components: - type: Transform @@ -68821,14 +68828,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 20667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 20671 components: - type: Transform @@ -68842,14 +68841,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-48.5 parent: 30 - - uid: 20674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-49.5 - parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 21262 components: - type: Transform @@ -68934,6 +68927,30 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' + - uid: 23226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-57.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-53.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-53.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeFourway entities: - uid: 2101 @@ -69260,11 +69277,10 @@ entities: color: '#03FCD3FF' - proto: GasPipeSensorTEGHot entities: - - uid: 11094 + - uid: 4425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-52.5 + pos: -1.5,-52.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' @@ -78437,7 +78453,7 @@ entities: pos: -3.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#947507FF' - uid: 9261 components: - type: Transform @@ -78445,6 +78461,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9294 components: - type: Transform @@ -78469,6 +78493,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9353 + components: + - type: Transform + pos: -4.5,-52.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9416 components: - type: Transform @@ -79542,6 +79573,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10309 + components: + - type: Transform + pos: -4.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10397 components: - type: Transform @@ -79679,7 +79717,7 @@ entities: pos: -3.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#947507FF' - uid: 11100 components: - type: Transform @@ -82500,6 +82538,29 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 13525 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-55.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 13635 components: - type: Transform @@ -85319,14 +85380,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 20640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 20643 components: - type: Transform @@ -85343,14 +85396,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 20650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 20651 components: - type: Transform @@ -85385,21 +85430,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 20662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 20669 components: - type: Transform pos: -3.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 21264 components: - type: Transform @@ -86441,6 +86478,29 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-57.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-54.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23230 + components: + - type: Transform + pos: -4.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeTJunction entities: - uid: 336 @@ -88234,12 +88294,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-50.5 - parent: 30 - uid: 9295 components: - type: Transform @@ -88248,13 +88302,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9353 - components: - - type: Transform - pos: 3.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 9444 components: - type: Transform @@ -88449,6 +88496,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' + - uid: 10310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-52.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 10388 components: - type: Transform @@ -88489,6 +88544,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11094 + components: + - type: Transform + pos: 2.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11180 components: - type: Transform @@ -89368,14 +89430,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 20668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 22014 components: - type: Transform @@ -89399,8 +89453,21 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23236 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPort entities: + - uid: 4454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-51.5 + parent: 30 - uid: 6757 components: - type: Transform @@ -89501,11 +89568,15 @@ entities: - type: Transform pos: -3.5,-47.5 parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 20656 components: - type: Transform pos: -2.5,-47.5 parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 20657 components: - type: Transform @@ -89634,10 +89705,33 @@ entities: - type: Transform pos: 38.5,10.5 parent: 30 - - uid: 20670 + - uid: 13524 components: - type: Transform - pos: -3.5,-49.5 + pos: -3.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23234 + components: + - type: Transform + pos: -3.5,-53.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-50.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' @@ -89728,16 +89822,6 @@ entities: open: False - type: AtmosPipeColor color: '#FF1212FF' - - uid: 20649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-53.5 - parent: 30 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 21274 components: - type: MetaData @@ -90247,7 +90331,7 @@ entities: parent: 30 - type: DeviceNetwork deviceLists: - - 22704 + - 22286 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3481 @@ -92087,7 +92171,7 @@ entities: parent: 30 - type: DeviceNetwork deviceLists: - - 22704 + - 22286 - type: AtmosPipeColor color: '#990000FF' - uid: 3484 @@ -93455,7 +93539,6 @@ entities: - uid: 194 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-54.5 parent: 30 - uid: 317 @@ -93593,6 +93676,16 @@ entities: - type: Transform pos: -7.5,-5.5 parent: 30 + - uid: 455 + components: + - type: Transform + pos: 46.5,49.5 + parent: 30 + - uid: 457 + components: + - type: Transform + pos: 33.5,49.5 + parent: 30 - uid: 478 components: - type: Transform @@ -93678,6 +93771,11 @@ entities: - type: Transform pos: 5.5,24.5 parent: 30 + - uid: 728 + components: + - type: Transform + pos: 40.5,50.5 + parent: 30 - uid: 784 components: - type: Transform @@ -94031,7 +94129,6 @@ entities: - uid: 1476 components: - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,37.5 parent: 30 - uid: 1494 @@ -94067,25 +94164,21 @@ entities: - uid: 1599 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,28.5 parent: 30 - uid: 1600 components: - type: Transform - rot: 3.141592653589793 rad pos: -30.5,28.5 parent: 30 - uid: 1601 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,28.5 parent: 30 - uid: 1602 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,28.5 parent: 30 - uid: 1697 @@ -94191,7 +94284,6 @@ entities: - uid: 1771 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,40.5 parent: 30 - uid: 1821 @@ -94317,19 +94409,14 @@ entities: - uid: 1965 components: - type: Transform - pos: 41.5,49.5 + pos: 41.5,50.5 parent: 30 - uid: 1968 components: - type: Transform - pos: 42.5,49.5 + pos: 43.5,50.5 parent: 30 - uid: 1969 - components: - - type: Transform - pos: 43.5,49.5 - parent: 30 - - uid: 1970 components: - type: Transform pos: 44.5,49.5 @@ -94337,7 +94424,7 @@ entities: - uid: 1971 components: - type: Transform - pos: 45.5,49.5 + pos: 40.5,49.5 parent: 30 - uid: 1972 components: @@ -94349,25 +94436,9 @@ entities: - type: Transform pos: 38.5,49.5 parent: 30 - - uid: 1974 - components: - - type: Transform - pos: 39.5,49.5 - parent: 30 - - uid: 1975 - components: - - type: Transform - pos: 40.5,49.5 - parent: 30 - - uid: 1976 - components: - - type: Transform - pos: 46.5,49.5 - parent: 30 - uid: 2024 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,50.5 parent: 30 - uid: 2052 @@ -94408,7 +94479,6 @@ entities: - uid: 2064 components: - type: Transform - rot: -1.5707963267948966 rad pos: -36.5,60.5 parent: 30 - uid: 2093 @@ -94489,13 +94559,11 @@ entities: - uid: 2589 components: - type: Transform - rot: 3.141592653589793 rad pos: -31.5,63.5 parent: 30 - uid: 2590 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,63.5 parent: 30 - uid: 2933 @@ -94541,7 +94609,6 @@ entities: - uid: 4789 components: - type: Transform - rot: -1.5707963267948966 rad pos: -36.5,58.5 parent: 30 - uid: 4792 @@ -94592,7 +94659,6 @@ entities: - uid: 4893 components: - type: Transform - rot: 3.141592653589793 rad pos: 1.5,-54.5 parent: 30 - uid: 5018 @@ -94603,7 +94669,6 @@ entities: - uid: 5025 components: - type: Transform - rot: 3.141592653589793 rad pos: -40.5,50.5 parent: 30 - uid: 5075 @@ -95014,7 +95079,6 @@ entities: - uid: 6496 components: - type: Transform - rot: -1.5707963267948966 rad pos: -85.5,40.5 parent: 30 - uid: 6534 @@ -95090,25 +95154,21 @@ entities: - uid: 6626 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,0.5 parent: 30 - uid: 6629 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,0.5 parent: 30 - uid: 6630 components: - type: Transform - rot: -1.5707963267948966 rad pos: -4.5,-4.5 parent: 30 - uid: 6631 components: - type: Transform - rot: -1.5707963267948966 rad pos: -0.5,-4.5 parent: 30 - uid: 6669 @@ -95134,7 +95194,6 @@ entities: - uid: 6717 components: - type: Transform - rot: -1.5707963267948966 rad pos: -88.5,40.5 parent: 30 - uid: 6746 @@ -95180,13 +95239,11 @@ entities: - uid: 6800 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-11.5 parent: 30 - uid: 6811 components: - type: Transform - rot: -1.5707963267948966 rad pos: -16.5,-11.5 parent: 30 - uid: 6971 @@ -95207,7 +95264,6 @@ entities: - uid: 7215 components: - type: Transform - rot: -1.5707963267948966 rad pos: -30.5,-8.5 parent: 30 - uid: 7241 @@ -95328,7 +95384,6 @@ entities: - uid: 7751 components: - type: Transform - rot: 3.141592653589793 rad pos: -21.5,-79.5 parent: 30 - uid: 7839 @@ -95354,7 +95409,6 @@ entities: - uid: 8020 components: - type: Transform - rot: -1.5707963267948966 rad pos: -28.5,-8.5 parent: 30 - uid: 8025 @@ -95440,31 +95494,26 @@ entities: - uid: 8386 components: - type: Transform - rot: 1.5707963267948966 rad pos: 3.5,-21.5 parent: 30 - uid: 8387 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-21.5 parent: 30 - uid: 8388 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-25.5 parent: 30 - uid: 8389 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-23.5 parent: 30 - uid: 8392 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,-26.5 parent: 30 - uid: 8423 @@ -95520,7 +95569,6 @@ entities: - uid: 8533 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,-37.5 parent: 30 - uid: 8577 @@ -95641,121 +95689,101 @@ entities: - uid: 8847 components: - type: Transform - rot: -1.5707963267948966 rad pos: 22.5,-36.5 parent: 30 - uid: 8848 components: - type: Transform - rot: -1.5707963267948966 rad pos: 22.5,-37.5 parent: 30 - uid: 8849 components: - type: Transform - rot: -1.5707963267948966 rad pos: 21.5,-37.5 parent: 30 - uid: 8851 components: - type: Transform - rot: -1.5707963267948966 rad pos: 18.5,-37.5 parent: 30 - uid: 8852 components: - type: Transform - rot: -1.5707963267948966 rad pos: 20.5,-37.5 parent: 30 - uid: 8997 components: - type: Transform - rot: -1.5707963267948966 rad pos: 17.5,-37.5 parent: 30 - uid: 8998 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,-36.5 parent: 30 - uid: 8999 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,-35.5 parent: 30 - uid: 9000 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,-34.5 parent: 30 - uid: 9001 components: - type: Transform - rot: -1.5707963267948966 rad pos: 15.5,-33.5 parent: 30 - uid: 9002 components: - type: Transform - rot: -1.5707963267948966 rad pos: 14.5,-33.5 parent: 30 - uid: 9003 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-33.5 parent: 30 - uid: 9004 components: - type: Transform - rot: -1.5707963267948966 rad pos: 13.5,-33.5 parent: 30 - uid: 9005 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,-33.5 parent: 30 - uid: 9006 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,-33.5 parent: 30 - uid: 9007 components: - type: Transform - rot: -1.5707963267948966 rad pos: 9.5,-33.5 parent: 30 - uid: 9008 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-34.5 parent: 30 - uid: 9009 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-35.5 parent: 30 - uid: 9010 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-36.5 parent: 30 - uid: 9011 components: - type: Transform - rot: -1.5707963267948966 rad pos: 7.5,-37.5 parent: 30 - uid: 9030 @@ -95771,13 +95799,11 @@ entities: - uid: 9034 components: - type: Transform - rot: 1.5707963267948966 rad pos: 10.5,-37.5 parent: 30 - uid: 9037 components: - type: Transform - rot: 1.5707963267948966 rad pos: 10.5,-36.5 parent: 30 - uid: 9044 @@ -95788,31 +95814,26 @@ entities: - uid: 9070 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,-37.5 parent: 30 - uid: 9071 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,-36.5 parent: 30 - uid: 9072 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-35.5 parent: 30 - uid: 9073 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-35.5 parent: 30 - uid: 9074 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,-35.5 parent: 30 - uid: 9105 @@ -95853,7 +95874,6 @@ entities: - uid: 9122 components: - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,35.5 parent: 30 - uid: 9165 @@ -95869,7 +95889,6 @@ entities: - uid: 9174 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,-54.5 parent: 30 - uid: 9185 @@ -95910,25 +95929,21 @@ entities: - uid: 9324 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,-60.5 parent: 30 - uid: 9326 components: - type: Transform - rot: 3.141592653589793 rad pos: -0.5,-60.5 parent: 30 - uid: 9328 components: - type: Transform - rot: 3.141592653589793 rad pos: 2.5,-60.5 parent: 30 - uid: 9329 components: - type: Transform - rot: 3.141592653589793 rad pos: 6.5,-60.5 parent: 30 - uid: 9348 @@ -95984,55 +95999,46 @@ entities: - uid: 9572 components: - type: Transform - rot: 3.141592653589793 rad pos: -18.5,-49.5 parent: 30 - uid: 9573 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-42.5 parent: 30 - uid: 9579 components: - type: Transform - rot: 3.141592653589793 rad pos: -14.5,-39.5 parent: 30 - uid: 9580 components: - type: Transform - rot: 3.141592653589793 rad pos: -22.5,-45.5 parent: 30 - uid: 9584 components: - type: Transform - rot: 3.141592653589793 rad pos: -18.5,-45.5 parent: 30 - uid: 9585 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,-45.5 parent: 30 - uid: 9586 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-45.5 parent: 30 - uid: 9587 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-49.5 parent: 30 - uid: 9588 components: - type: Transform - rot: 3.141592653589793 rad pos: -14.5,-44.5 parent: 30 - uid: 9645 @@ -96043,13 +96049,11 @@ entities: - uid: 9649 components: - type: Transform - rot: 3.141592653589793 rad pos: 1.5,-60.5 parent: 30 - uid: 9650 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,-60.5 parent: 30 - uid: 9662 @@ -96070,61 +96074,51 @@ entities: - uid: 9816 components: - type: Transform - rot: -1.5707963267948966 rad pos: -1.5,-42.5 parent: 30 - uid: 9819 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-42.5 parent: 30 - uid: 9823 components: - type: Transform - rot: 1.5707963267948966 rad pos: -16.5,-57.5 parent: 30 - uid: 9824 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-45.5 parent: 30 - uid: 9825 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-43.5 parent: 30 - uid: 9826 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-42.5 parent: 30 - uid: 9827 components: - type: Transform - rot: -1.5707963267948966 rad pos: -5.5,-42.5 parent: 30 - uid: 9828 components: - type: Transform - rot: 1.5707963267948966 rad pos: -17.5,-57.5 parent: 30 - uid: 9829 components: - type: Transform - rot: 1.5707963267948966 rad pos: -15.5,-57.5 parent: 30 - uid: 9867 components: - type: Transform - rot: 1.5707963267948966 rad pos: -18.5,-57.5 parent: 30 - uid: 9959 @@ -96185,13 +96179,11 @@ entities: - uid: 10191 components: - type: Transform - rot: -1.5707963267948966 rad pos: -14.5,-29.5 parent: 30 - uid: 10193 components: - type: Transform - rot: -1.5707963267948966 rad pos: -14.5,-28.5 parent: 30 - uid: 10221 @@ -96217,7 +96209,6 @@ entities: - uid: 10288 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-21.5 parent: 30 - uid: 10396 @@ -96243,7 +96234,6 @@ entities: - uid: 10582 components: - type: Transform - rot: 3.141592653589793 rad pos: 4.5,-60.5 parent: 30 - uid: 10614 @@ -96259,7 +96249,6 @@ entities: - uid: 10641 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,-61.5 parent: 30 - uid: 10649 @@ -96270,7 +96259,6 @@ entities: - uid: 10655 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,-19.5 parent: 30 - uid: 10657 @@ -96281,7 +96269,6 @@ entities: - uid: 10738 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-26.5 parent: 30 - uid: 10751 @@ -96397,7 +96384,6 @@ entities: - uid: 11085 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-57.5 parent: 30 - uid: 11105 @@ -96408,31 +96394,26 @@ entities: - uid: 11111 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,-32.5 parent: 30 - uid: 11136 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-54.5 parent: 30 - uid: 11137 components: - type: Transform - rot: 1.5707963267948966 rad pos: -19.5,-57.5 parent: 30 - uid: 11163 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,-17.5 parent: 30 - uid: 11173 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-72.5 parent: 30 - uid: 11194 @@ -96443,37 +96424,31 @@ entities: - uid: 11197 components: - type: Transform - rot: 1.5707963267948966 rad pos: 26.5,-12.5 parent: 30 - uid: 11264 components: - type: Transform - rot: 3.141592653589793 rad pos: -7.5,-78.5 parent: 30 - uid: 11265 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-78.5 parent: 30 - uid: 11266 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-78.5 parent: 30 - uid: 11267 components: - type: Transform - rot: 3.141592653589793 rad pos: -12.5,-79.5 parent: 30 - uid: 11276 components: - type: Transform - rot: 3.141592653589793 rad pos: -28.5,-76.5 parent: 30 - uid: 11278 @@ -96484,7 +96459,6 @@ entities: - uid: 11279 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-78.5 parent: 30 - uid: 11293 @@ -96510,25 +96484,21 @@ entities: - uid: 11297 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,-21.5 parent: 30 - uid: 11298 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-22.5 parent: 30 - uid: 11309 components: - type: Transform - rot: -1.5707963267948966 rad pos: -14.5,-31.5 parent: 30 - uid: 11580 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-24.5 parent: 30 - uid: 11605 @@ -96559,7 +96529,6 @@ entities: - uid: 11680 components: - type: Transform - rot: 1.5707963267948966 rad pos: 3.5,-26.5 parent: 30 - uid: 11688 @@ -96575,13 +96544,11 @@ entities: - uid: 11722 components: - type: Transform - rot: 1.5707963267948966 rad pos: 24.5,-12.5 parent: 30 - uid: 11740 components: - type: Transform - rot: 1.5707963267948966 rad pos: 28.5,-12.5 parent: 30 - uid: 11773 @@ -96607,7 +96574,6 @@ entities: - uid: 11994 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-26.5 parent: 30 - uid: 12025 @@ -96628,7 +96594,6 @@ entities: - uid: 12072 components: - type: Transform - rot: 1.5707963267948966 rad pos: 30.5,-12.5 parent: 30 - uid: 12102 @@ -96654,13 +96619,11 @@ entities: - uid: 12442 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,-57.5 parent: 30 - uid: 12650 components: - type: Transform - rot: -1.5707963267948966 rad pos: -88.5,42.5 parent: 30 - uid: 12662 @@ -96681,13 +96644,11 @@ entities: - uid: 12757 components: - type: Transform - rot: -1.5707963267948966 rad pos: 31.5,13.5 parent: 30 - uid: 12758 components: - type: Transform - rot: -1.5707963267948966 rad pos: 33.5,13.5 parent: 30 - uid: 12798 @@ -96713,7 +96674,6 @@ entities: - uid: 12860 components: - type: Transform - rot: 3.141592653589793 rad pos: -62.5,-71.5 parent: 30 - uid: 12863 @@ -96789,7 +96749,6 @@ entities: - uid: 13668 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,-71.5 parent: 30 - uid: 13670 @@ -96965,43 +96924,36 @@ entities: - uid: 13954 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,-54.5 parent: 30 - uid: 13973 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-72.5 parent: 30 - uid: 13979 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-71.5 parent: 30 - uid: 13980 components: - type: Transform - rot: 3.141592653589793 rad pos: -28.5,-77.5 parent: 30 - uid: 13981 components: - type: Transform - rot: 3.141592653589793 rad pos: -28.5,-78.5 parent: 30 - uid: 13982 components: - type: Transform - rot: 3.141592653589793 rad pos: -27.5,-78.5 parent: 30 - uid: 14358 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,12.5 parent: 30 - uid: 14514 @@ -97037,31 +96989,26 @@ entities: - uid: 14526 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,65.5 parent: 30 - uid: 14527 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,68.5 parent: 30 - uid: 14528 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,65.5 parent: 30 - uid: 14529 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,66.5 parent: 30 - uid: 14534 components: - type: Transform - rot: 3.141592653589793 rad pos: -31.5,65.5 parent: 30 - uid: 14536 @@ -97107,7 +97054,6 @@ entities: - uid: 14841 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,-71.5 parent: 30 - uid: 14842 @@ -97118,13 +97064,11 @@ entities: - uid: 14845 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,69.5 parent: 30 - uid: 14970 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,64.5 parent: 30 - uid: 14971 @@ -97140,19 +97084,16 @@ entities: - uid: 15073 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,66.5 parent: 30 - uid: 15166 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,65.5 parent: 30 - uid: 15180 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,69.5 parent: 30 - uid: 15207 @@ -97203,7 +97144,6 @@ entities: - uid: 15349 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,67.5 parent: 30 - uid: 15445 @@ -97489,7 +97429,6 @@ entities: - uid: 15985 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,65.5 parent: 30 - uid: 16103 @@ -97710,13 +97649,11 @@ entities: - uid: 16774 components: - type: Transform - rot: 3.141592653589793 rad pos: 36.5,11.5 parent: 30 - uid: 16795 components: - type: Transform - rot: 3.141592653589793 rad pos: -61.5,-71.5 parent: 30 - uid: 16807 @@ -97827,19 +97764,16 @@ entities: - uid: 17071 components: - type: Transform - rot: 3.141592653589793 rad pos: -56.5,64.5 parent: 30 - uid: 17072 components: - type: Transform - rot: 3.141592653589793 rad pos: -56.5,65.5 parent: 30 - uid: 17073 components: - type: Transform - rot: 3.141592653589793 rad pos: -56.5,67.5 parent: 30 - uid: 17263 @@ -98290,49 +98224,41 @@ entities: - uid: 17796 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-19.5 parent: 30 - uid: 17797 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-17.5 parent: 30 - uid: 17798 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-15.5 parent: 30 - uid: 17799 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-13.5 parent: 30 - uid: 17800 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,-24.5 parent: 30 - uid: 17801 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,-22.5 parent: 30 - uid: 17802 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-24.5 parent: 30 - uid: 17803 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-22.5 parent: 30 - uid: 17810 @@ -98558,7 +98484,6 @@ entities: - uid: 18206 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,10.5 parent: 30 - uid: 18261 @@ -98664,19 +98589,16 @@ entities: - uid: 18358 components: - type: Transform - rot: 3.141592653589793 rad pos: -65.5,-71.5 parent: 30 - uid: 18789 components: - type: Transform - rot: 3.141592653589793 rad pos: -65.5,-70.5 parent: 30 - uid: 18797 components: - type: Transform - rot: 3.141592653589793 rad pos: -64.5,-71.5 parent: 30 - uid: 18801 @@ -98687,7 +98609,6 @@ entities: - uid: 18802 components: - type: Transform - rot: -1.5707963267948966 rad pos: -81.5,40.5 parent: 30 - uid: 18803 @@ -98708,7 +98629,6 @@ entities: - uid: 18835 components: - type: Transform - rot: -1.5707963267948966 rad pos: -83.5,40.5 parent: 30 - uid: 19067 @@ -98719,91 +98639,76 @@ entities: - uid: 19190 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-77.5 parent: 30 - uid: 19191 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-62.5 parent: 30 - uid: 19192 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-76.5 parent: 30 - uid: 19193 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-64.5 parent: 30 - uid: 19194 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-63.5 parent: 30 - uid: 19231 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-63.5 parent: 30 - uid: 19232 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-64.5 parent: 30 - uid: 19233 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-62.5 parent: 30 - uid: 19236 components: - type: Transform - rot: 3.141592653589793 rad pos: -22.5,-79.5 parent: 30 - uid: 19237 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,-79.5 parent: 30 - uid: 19238 components: - type: Transform - rot: 3.141592653589793 rad pos: -14.5,-79.5 parent: 30 - uid: 19239 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-79.5 parent: 30 - uid: 19423 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-70.5 parent: 30 - uid: 19425 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-71.5 parent: 30 - uid: 19426 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-70.5 parent: 30 - uid: 19641 @@ -99101,6 +99006,11 @@ entities: - type: Transform pos: -6.5,-51.5 parent: 30 + - uid: 20640 + components: + - type: Transform + pos: 44.5,50.5 + parent: 30 - uid: 20641 components: - type: Transform @@ -99109,31 +99019,46 @@ entities: - uid: 20664 components: - type: Transform - rot: 3.141592653589793 rad pos: 2.5,-54.5 parent: 30 - uid: 20666 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-51.5 parent: 30 + - uid: 20667 + components: + - type: Transform + pos: 47.5,49.5 + parent: 30 + - uid: 20668 + components: + - type: Transform + pos: 48.5,49.5 + parent: 30 + - uid: 20670 + components: + - type: Transform + pos: 44.5,47.5 + parent: 30 + - uid: 20674 + components: + - type: Transform + pos: -10.5,15.5 + parent: 30 - uid: 20675 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-50.5 parent: 30 - uid: 20676 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-49.5 parent: 30 - uid: 20677 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-48.5 parent: 30 - uid: 20702 @@ -100019,43 +99944,36 @@ entities: - uid: 22966 components: - type: Transform - rot: 1.5707963267948966 rad pos: -75.5,-32.5 parent: 30 - uid: 22983 components: - type: Transform - rot: 1.5707963267948966 rad pos: -74.5,-32.5 parent: 30 - uid: 22984 components: - type: Transform - rot: 1.5707963267948966 rad pos: -77.5,-32.5 parent: 30 - uid: 22985 components: - type: Transform - rot: 1.5707963267948966 rad pos: -78.5,-33.5 parent: 30 - uid: 22986 components: - type: Transform - rot: 1.5707963267948966 rad pos: -82.5,-66.5 parent: 30 - uid: 22989 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,-57.5 parent: 30 - uid: 22990 components: - type: Transform - rot: 1.5707963267948966 rad pos: -79.5,-68.5 parent: 30 - uid: 22992 @@ -100066,333 +99984,283 @@ entities: - uid: 22997 components: - type: Transform - rot: 1.5707963267948966 rad pos: -73.5,-69.5 parent: 30 - uid: 22998 components: - type: Transform - rot: 1.5707963267948966 rad pos: -75.5,-69.5 parent: 30 - uid: 22999 components: - type: Transform - rot: 1.5707963267948966 rad pos: -76.5,-69.5 parent: 30 - uid: 23000 components: - type: Transform - rot: 1.5707963267948966 rad pos: -77.5,-69.5 parent: 30 - uid: 23001 components: - type: Transform - rot: 1.5707963267948966 rad pos: -84.5,-40.5 parent: 30 - uid: 23002 components: - type: Transform - rot: 1.5707963267948966 rad pos: -80.5,-68.5 parent: 30 - uid: 23003 components: - type: Transform - rot: 1.5707963267948966 rad pos: -80.5,-67.5 parent: 30 - uid: 23004 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,-67.5 parent: 30 - uid: 23005 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,-66.5 parent: 30 - uid: 23006 components: - type: Transform - rot: 1.5707963267948966 rad pos: -71.5,-68.5 parent: 30 - uid: 23008 components: - type: Transform - rot: 1.5707963267948966 rad pos: -84.5,-66.5 parent: 30 - uid: 23009 components: - type: Transform - rot: 1.5707963267948966 rad pos: -67.5,-70.5 parent: 30 - uid: 23010 components: - type: Transform - rot: 1.5707963267948966 rad pos: -84.5,-64.5 parent: 30 - uid: 23012 components: - type: Transform - rot: 1.5707963267948966 rad pos: -78.5,-68.5 parent: 30 - uid: 23013 components: - type: Transform - rot: 1.5707963267948966 rad pos: -79.5,-33.5 parent: 30 - uid: 23014 components: - type: Transform - rot: 1.5707963267948966 rad pos: -69.5,-70.5 parent: 30 - uid: 23015 components: - type: Transform - rot: 1.5707963267948966 rad pos: -72.5,-69.5 parent: 30 - uid: 23016 components: - type: Transform - rot: 1.5707963267948966 rad pos: -71.5,-69.5 parent: 30 - uid: 23018 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-71.5 parent: 30 - uid: 23019 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-71.5 parent: 30 - uid: 23020 components: - type: Transform - rot: 1.5707963267948966 rad pos: -55.5,-71.5 parent: 30 - uid: 23021 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,-63.5 parent: 30 - uid: 23022 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,-71.5 parent: 30 - uid: 23023 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,-70.5 parent: 30 - uid: 23024 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-69.5 parent: 30 - uid: 23025 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,-69.5 parent: 30 - uid: 23026 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,-68.5 parent: 30 - uid: 23027 components: - type: Transform - rot: 1.5707963267948966 rad pos: -70.5,-69.5 parent: 30 - uid: 23028 components: - type: Transform - rot: 1.5707963267948966 rad pos: -77.5,-33.5 parent: 30 - uid: 23029 components: - type: Transform - rot: 1.5707963267948966 rad pos: -47.5,-65.5 parent: 30 - uid: 23031 components: - type: Transform - rot: 1.5707963267948966 rad pos: -69.5,-69.5 parent: 30 - uid: 23032 components: - type: Transform - rot: 1.5707963267948966 rad pos: -45.5,-62.5 parent: 30 - uid: 23033 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-63.5 parent: 30 - uid: 23034 components: - type: Transform - rot: 1.5707963267948966 rad pos: -45.5,-61.5 parent: 30 - uid: 23035 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,-67.5 parent: 30 - uid: 23036 components: - type: Transform - rot: 1.5707963267948966 rad pos: -84.5,-38.5 parent: 30 - uid: 23037 components: - type: Transform - rot: 1.5707963267948966 rad pos: -46.5,-62.5 parent: 30 - uid: 23038 components: - type: Transform - rot: 1.5707963267948966 rad pos: -87.5,-47.5 parent: 30 - uid: 23039 components: - type: Transform - rot: 1.5707963267948966 rad pos: -87.5,-46.5 parent: 30 - uid: 23040 components: - type: Transform - rot: 1.5707963267948966 rad pos: -87.5,-45.5 parent: 30 - uid: 23041 components: - type: Transform - rot: 1.5707963267948966 rad pos: -87.5,-43.5 parent: 30 - uid: 23042 components: - type: Transform - rot: 1.5707963267948966 rad pos: -87.5,-41.5 parent: 30 - uid: 23043 components: - type: Transform - rot: 1.5707963267948966 rad pos: -86.5,-41.5 parent: 30 - uid: 23044 components: - type: Transform - rot: 1.5707963267948966 rad pos: -85.5,-40.5 parent: 30 - uid: 23045 components: - type: Transform - rot: 1.5707963267948966 rad pos: -84.5,-39.5 parent: 30 - uid: 23046 components: - type: Transform - rot: 1.5707963267948966 rad pos: -84.5,-36.5 parent: 30 - uid: 23047 components: - type: Transform - rot: 1.5707963267948966 rad pos: -83.5,-36.5 parent: 30 - uid: 23048 components: - type: Transform - rot: 1.5707963267948966 rad pos: -83.5,-35.5 parent: 30 - uid: 23050 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,-35.5 parent: 30 - uid: 23051 components: - type: Transform - rot: 1.5707963267948966 rad pos: -82.5,-35.5 parent: 30 - uid: 23052 components: - type: Transform - rot: 1.5707963267948966 rad pos: -80.5,-34.5 parent: 30 - uid: 23054 components: - type: Transform - rot: 1.5707963267948966 rad pos: -79.5,-34.5 parent: 30 - uid: 23062 components: - type: Transform - rot: 1.5707963267948966 rad pos: -78.5,-69.5 parent: 30 - uid: 23063 components: - type: Transform - rot: 1.5707963267948966 rad pos: -66.5,-70.5 parent: 30 - uid: 23168 components: - type: Transform - rot: 3.141592653589793 rad pos: -30.5,63.5 parent: 30 + - uid: 23217 + components: + - type: Transform + pos: 40.5,47.5 + parent: 30 - proto: GrilleBroken entities: - uid: 695 @@ -101044,6 +100912,14 @@ entities: parent: 30 - proto: HeatExchanger entities: + - uid: 2177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-56.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9159 components: - type: Transform @@ -101273,10 +101149,10 @@ entities: parent: 30 - proto: HolopadEngineeringAtmosTeg entities: - - uid: 22904 + - uid: 23238 components: - type: Transform - pos: 0.5,-47.5 + pos: 0.5,-45.5 parent: 30 - proto: HolopadEngineeringBreakroom entities: @@ -102157,10 +102033,10 @@ entities: rot: 3.141592653589793 rad pos: -12.5,5.5 parent: 30 - - uid: 22286 + - uid: 16175 components: - type: Transform - pos: -9.5,15.5 + pos: -7.5,15.5 parent: 30 - proto: IntercomSupply entities: @@ -103860,22 +103736,8 @@ entities: - type: Transform pos: -7.4727917,-35.277233 parent: 30 - - type: HandheldLight - toggleActionEntity: 11287 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 11287 - type: Physics canCollide: True - - type: ActionsContainer - uid: 21649 components: - type: Transform @@ -104092,29 +103954,6 @@ entities: - 0 - proto: LockerBoozeFilled entities: - - uid: 451 - components: - - type: Transform - pos: -8.5,19.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 453 components: - type: Transform @@ -104161,6 +104000,11 @@ entities: - 0 - 0 - 0 + - uid: 20650 + components: + - type: Transform + pos: -10.5,19.5 + parent: 30 - proto: LockerBotanistFilled entities: - uid: 419 @@ -105365,11 +105209,6 @@ entities: - type: Transform pos: 12.5,54.5 parent: 30 - - uid: 15160 - components: - - type: Transform - pos: -7.5,16.5 - parent: 30 - uid: 15206 components: - type: Transform @@ -105499,7 +105338,6 @@ entities: - uid: 14477 components: - type: Transform - rot: -1.5707963267948966 rad pos: -38.5,-22.5 parent: 30 - uid: 15080 @@ -105664,7 +105502,7 @@ entities: - uid: 20097 components: - type: Transform - pos: 30.48165,-9.547565 + pos: 28.49087,-11.486134 parent: 30 - proto: MedkitBurnFilled entities: @@ -106986,7 +106824,7 @@ entities: - uid: 15249 components: - type: Transform - pos: 43.525017,45.46227 + pos: 43.53425,43.62553 parent: 30 - uid: 16075 components: @@ -107471,13 +107309,6 @@ entities: - type: Transform pos: -36.5,57.5 parent: 30 -- proto: PosterContrabandBustyBackdoorExoBabes6 - entities: - - uid: 22102 - components: - - type: Transform - pos: -31.5,14.5 - parent: 30 - proto: PosterContrabandClown entities: - uid: 4445 @@ -107558,6 +107389,13 @@ entities: - type: Transform pos: 15.5,-15.5 parent: 30 +- proto: PosterContrabandRouny + entities: + - uid: 22102 + components: + - type: Transform + pos: -31.5,14.5 + parent: 30 - proto: PosterContrabandShamblersJuice entities: - uid: 6640 @@ -108683,6 +108521,14 @@ entities: - type: Transform pos: -27.504559,56.68259 parent: 30 +- proto: PoweredDimSmallLight + entities: + - uid: 23218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,43.5 + parent: 30 - proto: Poweredlight entities: - uid: 98 @@ -111125,13 +110971,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,15.5 parent: 30 - - uid: 4425 - components: - - type: Transform - pos: -11.5,19.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4427 components: - type: Transform @@ -111154,12 +110993,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,13.5 - parent: 30 - uid: 4810 components: - type: Transform @@ -111545,13 +111378,17 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 15253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,15.5 + parent: 30 - uid: 15257 components: - type: Transform - pos: 42.5,45.5 + pos: -9.5,19.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 15283 components: - type: Transform @@ -112350,6 +112187,18 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 21221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,13.5 + parent: 30 + - uid: 23214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,48.5 + parent: 30 - proto: PoweredSmallLightEmpty entities: - uid: 15072 @@ -112758,6 +112607,23 @@ entities: - type: Transform pos: -40.5,54.5 parent: 30 + - uid: 23215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,47.5 + parent: 30 + - uid: 23222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,43.5 + parent: 30 + - uid: 23239 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 30 - proto: RadiationCollectorFullTank entities: - uid: 9419 @@ -113337,7 +113203,6 @@ entities: - uid: 22996 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,44.5 parent: 30 - proto: RandomSoap @@ -113816,43 +113681,36 @@ entities: - uid: 8537 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,-36.5 parent: 30 - uid: 8539 components: - type: Transform - rot: -1.5707963267948966 rad pos: 14.5,-37.5 parent: 30 - uid: 8540 components: - type: Transform - rot: -1.5707963267948966 rad pos: 13.5,-35.5 parent: 30 - uid: 8541 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,-35.5 parent: 30 - uid: 8569 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,-37.5 parent: 30 - uid: 8572 components: - type: Transform - rot: -1.5707963267948966 rad pos: 14.5,-36.5 parent: 30 - uid: 8573 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-35.5 parent: 30 - uid: 8682 @@ -113908,7 +113766,6 @@ entities: - uid: 12920 components: - type: Transform - rot: 3.141592653589793 rad pos: 36.5,11.5 parent: 30 - uid: 12928 @@ -113954,37 +113811,31 @@ entities: - uid: 20678 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,-54.5 parent: 30 - uid: 20679 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,-54.5 parent: 30 - uid: 20680 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-54.5 parent: 30 - uid: 20681 components: - type: Transform - rot: 3.141592653589793 rad pos: 1.5,-54.5 parent: 30 - uid: 20682 components: - type: Transform - rot: 3.141592653589793 rad pos: 2.5,-54.5 parent: 30 - uid: 20683 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-54.5 parent: 30 - proto: ReinforcedWindow @@ -114029,6 +113880,11 @@ entities: - type: Transform pos: -21.5,8.5 parent: 30 + - uid: 152 + components: + - type: Transform + pos: 44.5,50.5 + parent: 30 - uid: 301 components: - type: Transform @@ -114069,6 +113925,11 @@ entities: - type: Transform pos: -56.5,5.5 parent: 30 + - uid: 445 + components: + - type: Transform + pos: 44.5,49.5 + parent: 30 - uid: 479 components: - type: Transform @@ -114367,13 +114228,11 @@ entities: - uid: 1326 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-13.5 parent: 30 - uid: 1327 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-15.5 parent: 30 - uid: 1329 @@ -114419,19 +114278,16 @@ entities: - uid: 1549 components: - type: Transform - rot: 1.5707963267948966 rad pos: -57.5,34.5 parent: 30 - uid: 1550 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,34.5 parent: 30 - uid: 1551 components: - type: Transform - rot: 1.5707963267948966 rad pos: -55.5,34.5 parent: 30 - uid: 1553 @@ -114732,7 +114588,6 @@ entities: - uid: 2066 components: - type: Transform - rot: -1.5707963267948966 rad pos: -36.5,58.5 parent: 30 - uid: 2294 @@ -114803,31 +114658,26 @@ entities: - uid: 4847 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,28.5 parent: 30 - uid: 4848 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,28.5 parent: 30 - uid: 4849 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,28.5 parent: 30 - uid: 4850 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,28.5 parent: 30 - uid: 4851 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,28.5 parent: 30 - uid: 5071 @@ -114853,7 +114703,6 @@ entities: - uid: 5248 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-21.5 parent: 30 - uid: 5250 @@ -115099,7 +114948,6 @@ entities: - uid: 5853 components: - type: Transform - rot: -1.5707963267948966 rad pos: -36.5,60.5 parent: 30 - uid: 6290 @@ -115145,13 +114993,11 @@ entities: - uid: 6360 components: - type: Transform - rot: 1.5707963267948966 rad pos: 24.5,43.5 parent: 30 - uid: 6363 components: - type: Transform - rot: 1.5707963267948966 rad pos: 26.5,43.5 parent: 30 - uid: 6523 @@ -115272,13 +115118,11 @@ entities: - uid: 6809 components: - type: Transform - rot: -1.5707963267948966 rad pos: -16.5,-11.5 parent: 30 - uid: 6810 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-11.5 parent: 30 - uid: 6887 @@ -115354,7 +115198,6 @@ entities: - uid: 7822 components: - type: Transform - rot: -1.5707963267948966 rad pos: -30.5,-8.5 parent: 30 - uid: 7828 @@ -115370,7 +115213,6 @@ entities: - uid: 7912 components: - type: Transform - rot: 1.5707963267948966 rad pos: 15.5,12.5 parent: 30 - uid: 7996 @@ -115396,7 +115238,6 @@ entities: - uid: 8064 components: - type: Transform - rot: -1.5707963267948966 rad pos: -28.5,-8.5 parent: 30 - uid: 8193 @@ -115417,7 +115258,6 @@ entities: - uid: 8377 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-24.5 parent: 30 - uid: 8378 @@ -115428,7 +115268,6 @@ entities: - uid: 8381 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-23.5 parent: 30 - uid: 8382 @@ -115444,31 +115283,26 @@ entities: - uid: 8390 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-21.5 parent: 30 - uid: 8391 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-22.5 parent: 30 - uid: 8395 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-25.5 parent: 30 - uid: 8398 components: - type: Transform - rot: 1.5707963267948966 rad pos: 3.5,-26.5 parent: 30 - uid: 8401 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-26.5 parent: 30 - uid: 8409 @@ -115549,31 +115383,26 @@ entities: - uid: 8545 components: - type: Transform - rot: -1.5707963267948966 rad pos: 18.5,-37.5 parent: 30 - uid: 8546 components: - type: Transform - rot: -1.5707963267948966 rad pos: 22.5,-36.5 parent: 30 - uid: 8548 components: - type: Transform - rot: -1.5707963267948966 rad pos: 20.5,-37.5 parent: 30 - uid: 8549 components: - type: Transform - rot: -1.5707963267948966 rad pos: 22.5,-37.5 parent: 30 - uid: 8550 components: - type: Transform - rot: -1.5707963267948966 rad pos: 21.5,-37.5 parent: 30 - uid: 8551 @@ -115659,7 +115488,6 @@ entities: - uid: 8605 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,-26.5 parent: 30 - uid: 8829 @@ -115675,97 +115503,81 @@ entities: - uid: 8982 components: - type: Transform - rot: -1.5707963267948966 rad pos: 7.5,-37.5 parent: 30 - uid: 8983 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-36.5 parent: 30 - uid: 8984 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-35.5 parent: 30 - uid: 8985 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-34.5 parent: 30 - uid: 8986 components: - type: Transform - rot: -1.5707963267948966 rad pos: 9.5,-33.5 parent: 30 - uid: 8987 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,-33.5 parent: 30 - uid: 8988 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,-33.5 parent: 30 - uid: 8989 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-33.5 parent: 30 - uid: 8990 components: - type: Transform - rot: -1.5707963267948966 rad pos: 13.5,-33.5 parent: 30 - uid: 8991 components: - type: Transform - rot: -1.5707963267948966 rad pos: 14.5,-33.5 parent: 30 - uid: 8992 components: - type: Transform - rot: -1.5707963267948966 rad pos: 15.5,-33.5 parent: 30 - uid: 8993 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,-34.5 parent: 30 - uid: 8994 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,-35.5 parent: 30 - uid: 8995 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,-36.5 parent: 30 - uid: 8996 components: - type: Transform - rot: -1.5707963267948966 rad pos: 17.5,-37.5 parent: 30 - uid: 9012 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,-37.5 parent: 30 - uid: 9042 @@ -115791,13 +115603,11 @@ entities: - uid: 9156 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-31.5 parent: 30 - uid: 9158 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,-31.5 parent: 30 - uid: 9277 @@ -115823,13 +115633,11 @@ entities: - uid: 9303 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-50.5 parent: 30 - uid: 9316 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-51.5 parent: 30 - uid: 9321 @@ -115875,13 +115683,11 @@ entities: - uid: 9679 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-48.5 parent: 30 - uid: 9680 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-49.5 parent: 30 - uid: 9702 @@ -115912,13 +115718,11 @@ entities: - uid: 9815 components: - type: Transform - rot: -1.5707963267948966 rad pos: -1.5,-42.5 parent: 30 - uid: 9820 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-42.5 parent: 30 - uid: 9848 @@ -115964,7 +115768,6 @@ entities: - uid: 10089 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-26.5 parent: 30 - uid: 10094 @@ -115985,7 +115788,6 @@ entities: - uid: 10124 components: - type: Transform - rot: -1.5707963267948966 rad pos: -14.5,-31.5 parent: 30 - uid: 10139 @@ -116001,7 +115803,6 @@ entities: - uid: 10185 components: - type: Transform - rot: -1.5707963267948966 rad pos: -14.5,-28.5 parent: 30 - uid: 10395 @@ -116012,7 +115813,6 @@ entities: - uid: 10623 components: - type: Transform - rot: -1.5707963267948966 rad pos: -14.5,-29.5 parent: 30 - uid: 10654 @@ -116023,13 +115823,11 @@ entities: - uid: 10656 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,-19.5 parent: 30 - uid: 10743 components: - type: Transform - rot: 1.5707963267948966 rad pos: 3.5,-21.5 parent: 30 - uid: 11073 @@ -116050,7 +115848,6 @@ entities: - uid: 11106 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,-32.5 parent: 30 - uid: 11125 @@ -116071,7 +115868,6 @@ entities: - uid: 11164 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,-17.5 parent: 30 - uid: 11270 @@ -116097,31 +115893,26 @@ entities: - uid: 11448 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,37.5 parent: 30 - uid: 11450 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,35.5 parent: 30 - uid: 11602 components: - type: Transform - rot: 3.141592653589793 rad pos: 24.5,-0.5 parent: 30 - uid: 11603 components: - type: Transform - rot: 3.141592653589793 rad pos: 25.5,-0.5 parent: 30 - uid: 11604 components: - type: Transform - rot: 3.141592653589793 rad pos: 26.5,-0.5 parent: 30 - uid: 11653 @@ -116157,7 +115948,6 @@ entities: - uid: 11760 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,-21.5 parent: 30 - uid: 11782 @@ -116188,7 +115978,6 @@ entities: - uid: 12656 components: - type: Transform - rot: 1.5707963267948966 rad pos: 15.5,10.5 parent: 30 - uid: 12695 @@ -116199,13 +115988,11 @@ entities: - uid: 12711 components: - type: Transform - rot: -1.5707963267948966 rad pos: 33.5,13.5 parent: 30 - uid: 12712 components: - type: Transform - rot: -1.5707963267948966 rad pos: 31.5,13.5 parent: 30 - uid: 12729 @@ -116518,6 +116305,11 @@ entities: - type: Transform pos: 17.5,63.5 parent: 30 + - uid: 14729 + components: + - type: Transform + pos: 40.5,49.5 + parent: 30 - uid: 14735 components: - type: Transform @@ -116538,6 +116330,26 @@ entities: - type: Transform pos: -22.5,-45.5 parent: 30 + - uid: 15160 + components: + - type: Transform + pos: 40.5,50.5 + parent: 30 + - uid: 15241 + components: + - type: Transform + pos: 43.5,50.5 + parent: 30 + - uid: 15243 + components: + - type: Transform + pos: 40.5,47.5 + parent: 30 + - uid: 15245 + components: + - type: Transform + pos: 41.5,50.5 + parent: 30 - uid: 15328 components: - type: Transform @@ -116656,13 +116468,11 @@ entities: - uid: 17120 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-17.5 parent: 30 - uid: 17122 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-19.5 parent: 30 - uid: 17125 @@ -117123,7 +116933,6 @@ entities: - uid: 17593 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,-44.5 parent: 30 - uid: 18006 @@ -117544,7 +117353,6 @@ entities: - uid: 22136 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,40.5 parent: 30 - uid: 22366 @@ -117602,6 +117410,11 @@ entities: - type: Transform pos: -8.5,-46.5 parent: 30 + - uid: 23198 + components: + - type: Transform + pos: 44.5,47.5 + parent: 30 - proto: ResearchAndDevelopmentServer entities: - uid: 12746 @@ -117835,6 +117648,12 @@ entities: - type: Transform pos: -37.5,55.5 parent: 30 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: SeedExtractor entities: - uid: 2345 @@ -122412,7 +122231,6 @@ entities: - uid: 18819 components: - type: Transform - rot: 1.5707963267948966 rad pos: -26.5,6.5 parent: 30 - proto: SpawnMobCrabAtmos @@ -122434,7 +122252,6 @@ entities: - uid: 14336 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,5.5 parent: 30 - proto: SpawnMobKangarooWillow @@ -122442,7 +122259,6 @@ entities: - uid: 10987 components: - type: Transform - rot: -1.5707963267948966 rad pos: -36.5,-34.5 parent: 30 - proto: SpawnMobMcGriff @@ -125645,16 +125461,22 @@ entities: id: Court Room - proto: SurveillanceCameraService entities: - - uid: 1944 + - uid: 142 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,14.5 + pos: -8.5,16.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraService nameSet: True + id: Bartender Room + - uid: 15248 + components: + - type: Transform + pos: -9.5,13.5 + parent: 30 + - type: SurveillanceCamera id: Service Hall - uid: 15926 components: @@ -125665,17 +125487,6 @@ entities: parent: 30 - type: Physics bodyType: Dynamic - - uid: 21221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,17.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bartender Room - uid: 21222 components: - type: Transform @@ -125880,7 +125691,6 @@ entities: - uid: 312 components: - type: Transform - rot: -1.5707963267948966 rad pos: -18.5,10.5 parent: 30 - uid: 325 @@ -126241,7 +126051,6 @@ entities: - uid: 4987 components: - type: Transform - rot: 3.141592653589793 rad pos: -15.5,-32.5 parent: 30 - uid: 5026 @@ -126432,13 +126241,11 @@ entities: - uid: 9591 components: - type: Transform - rot: 3.141592653589793 rad pos: -17.5,-32.5 parent: 30 - uid: 10123 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,-29.5 parent: 30 - uid: 10407 @@ -126459,7 +126266,6 @@ entities: - uid: 10680 components: - type: Transform - rot: 3.141592653589793 rad pos: -10.5,-47.5 parent: 30 - uid: 10790 @@ -126475,13 +126281,11 @@ entities: - uid: 11063 components: - type: Transform - rot: -1.5707963267948966 rad pos: -24.5,-50.5 parent: 30 - uid: 11174 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-47.5 parent: 30 - uid: 11247 @@ -126527,7 +126331,6 @@ entities: - uid: 11651 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,0.5 parent: 30 - uid: 11707 @@ -126578,7 +126381,6 @@ entities: - uid: 12657 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,13.5 parent: 30 - uid: 12761 @@ -126594,13 +126396,11 @@ entities: - uid: 12838 components: - type: Transform - rot: 1.5707963267948966 rad pos: 16.5,16.5 parent: 30 - uid: 12839 components: - type: Transform - rot: 1.5707963267948966 rad pos: 16.5,15.5 parent: 30 - uid: 12841 @@ -126621,7 +126421,6 @@ entities: - uid: 13357 components: - type: Transform - rot: 3.141592653589793 rad pos: 37.5,7.5 parent: 30 - uid: 13362 @@ -126694,11 +126493,6 @@ entities: - type: Transform pos: 19.5,46.5 parent: 30 - - uid: 15248 - components: - - type: Transform - pos: 43.5,45.5 - parent: 30 - uid: 15260 components: - type: Transform @@ -126707,7 +126501,6 @@ entities: - uid: 15988 components: - type: Transform - rot: 1.5707963267948966 rad pos: 16.5,14.5 parent: 30 - uid: 16117 @@ -126783,7 +126576,6 @@ entities: - uid: 17726 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-33.5 parent: 30 - uid: 18084 @@ -126804,13 +126596,11 @@ entities: - uid: 18215 components: - type: Transform - rot: 3.141592653589793 rad pos: 19.5,13.5 parent: 30 - uid: 18696 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-33.5 parent: 30 - uid: 18770 @@ -126821,13 +126611,11 @@ entities: - uid: 18815 components: - type: Transform - rot: 3.141592653589793 rad pos: 18.5,13.5 parent: 30 - uid: 18858 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-33.5 parent: 30 - uid: 18996 @@ -126843,7 +126631,6 @@ entities: - uid: 19178 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-47.5 parent: 30 - uid: 19399 @@ -126859,7 +126646,6 @@ entities: - uid: 19402 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-47.5 parent: 30 - uid: 19403 @@ -126880,7 +126666,6 @@ entities: - uid: 19409 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-48.5 parent: 30 - uid: 19528 @@ -126926,7 +126711,6 @@ entities: - uid: 19782 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,-26.5 parent: 30 - uid: 20087 @@ -126937,7 +126721,6 @@ entities: - uid: 20264 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,63.5 parent: 30 - uid: 20289 @@ -127025,6 +126808,11 @@ entities: - type: Transform pos: -49.5,50.5 parent: 30 + - uid: 23221 + components: + - type: Transform + pos: 43.5,43.5 + parent: 30 - proto: TableCarpet entities: - uid: 1535 @@ -127272,7 +127060,6 @@ entities: - uid: 9980 components: - type: Transform - rot: 3.141592653589793 rad pos: -28.5,8.5 parent: 30 - uid: 12653 @@ -127452,7 +127239,6 @@ entities: - uid: 1989 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,46.5 parent: 30 - uid: 4357 @@ -127583,7 +127369,6 @@ entities: - uid: 8439 components: - type: Transform - rot: -1.5707963267948966 rad pos: -3.5,64.5 parent: 30 - uid: 8469 @@ -127689,13 +127474,11 @@ entities: - uid: 11821 components: - type: Transform - rot: -1.5707963267948966 rad pos: -3.5,63.5 parent: 30 - uid: 12227 components: - type: Transform - rot: -1.5707963267948966 rad pos: -3.5,62.5 parent: 30 - uid: 12847 @@ -128724,6 +128507,11 @@ entities: - type: Transform pos: 10.5,-14.5 parent: 30 + - uid: 22704 + components: + - type: Transform + pos: -10.5,15.5 + parent: 30 - proto: ToiletDirtyWater entities: - uid: 754 @@ -129344,6 +129132,12 @@ entities: - type: Transform pos: 1.5,31.5 parent: 30 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - type: MaterialStorage materialWhiteList: - Cloth @@ -129378,10 +129172,10 @@ entities: parent: 30 - proto: VendingBarDrobe entities: - - uid: 10310 + - uid: 146 components: - type: Transform - pos: -11.5,17.5 + pos: -10.5,16.5 parent: 30 - proto: VendingMachineAtmosDrobe entities: @@ -129397,16 +129191,16 @@ entities: - type: Transform pos: -0.5,15.5 parent: 30 + - uid: 725 + components: + - type: Transform + pos: -7.5,16.5 + parent: 30 - uid: 4957 components: - type: Transform pos: -23.5,35.5 parent: 30 - - uid: 10309 - components: - - type: Transform - pos: -11.5,16.5 - parent: 30 - uid: 13438 components: - type: Transform @@ -129470,13 +129264,6 @@ entities: - type: Transform pos: -25.5,33.5 parent: 30 - - uid: 457 - components: - - type: MetaData - name: cigarette machine - - type: Transform - pos: -10.5,19.5 - parent: 30 - uid: 1110 components: - type: MetaData @@ -129533,6 +129320,11 @@ entities: - type: Transform pos: -0.5,-15.5 parent: 30 + - uid: 15250 + components: + - type: Transform + pos: -8.5,19.5 + parent: 30 - uid: 20491 components: - type: MetaData @@ -129676,10 +129468,10 @@ entities: parent: 30 - proto: VendingMachineGames entities: - - uid: 16175 + - uid: 727 components: - type: Transform - pos: 41.5,45.5 + pos: 36.5,43.5 parent: 30 - uid: 16176 components: @@ -130603,25 +130395,21 @@ entities: - uid: 1474 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,34.5 parent: 30 - uid: 1477 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,37.5 parent: 30 - uid: 1478 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,38.5 parent: 30 - uid: 1479 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,34.5 parent: 30 - uid: 1540 @@ -131612,13 +131400,11 @@ entities: - uid: 2543 components: - type: Transform - rot: 1.5707963267948966 rad pos: -37.5,50.5 parent: 30 - uid: 3153 components: - type: Transform - rot: 1.5707963267948966 rad pos: -12.5,-26.5 parent: 30 - uid: 3200 @@ -132479,19 +132265,16 @@ entities: - uid: 6272 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-57.5 parent: 30 - uid: 6273 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,-57.5 parent: 30 - uid: 6274 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-58.5 parent: 30 - uid: 6294 @@ -132677,13 +132460,11 @@ entities: - uid: 6466 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-60.5 parent: 30 - uid: 6468 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,-54.5 parent: 30 - uid: 6486 @@ -132829,25 +132610,21 @@ entities: - uid: 6600 components: - type: Transform - rot: -1.5707963267948966 rad pos: -24.5,-55.5 parent: 30 - uid: 6601 components: - type: Transform - rot: -1.5707963267948966 rad pos: -24.5,-54.5 parent: 30 - uid: 6602 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-57.5 parent: 30 - uid: 6603 components: - type: Transform - rot: -1.5707963267948966 rad pos: -24.5,-56.5 parent: 30 - uid: 6607 @@ -132888,7 +132665,6 @@ entities: - uid: 6639 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,-57.5 parent: 30 - uid: 6647 @@ -132979,19 +132755,16 @@ entities: - uid: 6670 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-61.5 parent: 30 - uid: 6684 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-56.5 parent: 30 - uid: 6699 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,-54.5 parent: 30 - uid: 6706 @@ -133007,13 +132780,11 @@ entities: - uid: 6711 components: - type: Transform - rot: -1.5707963267948966 rad pos: -24.5,-57.5 parent: 30 - uid: 6714 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,-53.5 parent: 30 - uid: 6735 @@ -133154,7 +132925,6 @@ entities: - uid: 7094 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-62.5 parent: 30 - uid: 7127 @@ -133265,7 +133035,6 @@ entities: - uid: 7444 components: - type: Transform - rot: 3.141592653589793 rad pos: -22.5,-76.5 parent: 30 - uid: 7469 @@ -133281,55 +133050,46 @@ entities: - uid: 7667 components: - type: Transform - rot: 3.141592653589793 rad pos: -21.5,-76.5 parent: 30 - uid: 7669 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,-76.5 parent: 30 - uid: 7670 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-67.5 parent: 30 - uid: 7671 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-68.5 parent: 30 - uid: 7672 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-69.5 parent: 30 - uid: 7713 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 30 - uid: 7714 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 30 - uid: 7720 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-12.5 parent: 30 - uid: 7721 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-13.5 parent: 30 - uid: 7733 @@ -133340,43 +133100,36 @@ entities: - uid: 7765 components: - type: Transform - rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 30 - uid: 7766 components: - type: Transform - rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 30 - uid: 7767 components: - type: Transform - rot: 3.141592653589793 rad pos: 0.5,-12.5 parent: 30 - uid: 7768 components: - type: Transform - rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 30 - uid: 7770 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-71.5 parent: 30 - uid: 7771 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-72.5 parent: 30 - uid: 7772 components: - type: Transform - rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 30 - uid: 7872 @@ -133387,7 +133140,6 @@ entities: - uid: 7914 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-73.5 parent: 30 - uid: 7959 @@ -133398,7 +133150,6 @@ entities: - uid: 7965 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-74.5 parent: 30 - uid: 7969 @@ -133414,13 +133165,11 @@ entities: - uid: 8004 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-75.5 parent: 30 - uid: 8005 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-76.5 parent: 30 - uid: 8014 @@ -133441,7 +133190,6 @@ entities: - uid: 8137 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,-76.5 parent: 30 - uid: 8225 @@ -133452,49 +133200,41 @@ entities: - uid: 8226 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-64.5 parent: 30 - uid: 8228 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-63.5 parent: 30 - uid: 8230 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-65.5 parent: 30 - uid: 8231 components: - type: Transform - rot: 3.141592653589793 rad pos: -17.5,-28.5 parent: 30 - uid: 8255 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-76.5 parent: 30 - uid: 8258 components: - type: Transform - rot: 3.141592653589793 rad pos: -19.5,-76.5 parent: 30 - uid: 8260 components: - type: Transform - rot: 3.141592653589793 rad pos: -18.5,-76.5 parent: 30 - uid: 8263 components: - type: Transform - rot: 3.141592653589793 rad pos: -17.5,-76.5 parent: 30 - uid: 8275 @@ -133605,7 +133345,6 @@ entities: - uid: 8399 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-21.5 parent: 30 - uid: 8412 @@ -133706,19 +133445,16 @@ entities: - uid: 8487 components: - type: Transform - rot: 3.141592653589793 rad pos: 22.5,0.5 parent: 30 - uid: 8489 components: - type: Transform - rot: 3.141592653589793 rad pos: 22.5,2.5 parent: 30 - uid: 8490 components: - type: Transform - rot: 3.141592653589793 rad pos: 22.5,3.5 parent: 30 - uid: 8508 @@ -133789,31 +133525,26 @@ entities: - uid: 8535 components: - type: Transform - rot: -1.5707963267948966 rad pos: 14.5,-38.5 parent: 30 - uid: 8536 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,-35.5 parent: 30 - uid: 8542 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-37.5 parent: 30 - uid: 8567 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,-38.5 parent: 30 - uid: 8568 components: - type: Transform - rot: -1.5707963267948966 rad pos: 14.5,-35.5 parent: 30 - uid: 8571 @@ -133824,7 +133555,6 @@ entities: - uid: 8574 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,-37.5 parent: 30 - uid: 8592 @@ -133875,25 +133605,21 @@ entities: - uid: 8621 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-31.5 parent: 30 - uid: 8622 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-30.5 parent: 30 - uid: 8623 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-28.5 parent: 30 - uid: 8624 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-27.5 parent: 30 - uid: 8629 @@ -133919,25 +133645,21 @@ entities: - uid: 8633 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-31.5 parent: 30 - uid: 8634 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-31.5 parent: 30 - uid: 8635 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-31.5 parent: 30 - uid: 8636 components: - type: Transform - rot: 1.5707963267948966 rad pos: 3.5,-31.5 parent: 30 - uid: 8637 @@ -134113,19 +133835,16 @@ entities: - uid: 8794 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-66.5 parent: 30 - uid: 8795 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-76.5 parent: 30 - uid: 8799 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-59.5 parent: 30 - uid: 8816 @@ -134151,13 +133870,11 @@ entities: - uid: 8980 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-33.5 parent: 30 - uid: 8981 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,-33.5 parent: 30 - uid: 9027 @@ -134208,37 +133925,31 @@ entities: - uid: 9102 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-57.5 parent: 30 - uid: 9103 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-58.5 parent: 30 - uid: 9104 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-52.5 parent: 30 - uid: 9129 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-58.5 parent: 30 - uid: 9132 components: - type: Transform - rot: 3.141592653589793 rad pos: 28.5,-20.5 parent: 30 - uid: 9133 components: - type: Transform - rot: 3.141592653589793 rad pos: 28.5,-19.5 parent: 30 - uid: 9134 @@ -134249,145 +133960,121 @@ entities: - uid: 9135 components: - type: Transform - rot: 3.141592653589793 rad pos: 26.5,-19.5 parent: 30 - uid: 9136 components: - type: Transform - rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 30 - uid: 9137 components: - type: Transform - rot: 3.141592653589793 rad pos: 24.5,-19.5 parent: 30 - uid: 9138 components: - type: Transform - rot: 3.141592653589793 rad pos: 23.5,-19.5 parent: 30 - uid: 9139 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-35.5 parent: 30 - uid: 9140 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-34.5 parent: 30 - uid: 9141 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-33.5 parent: 30 - uid: 9142 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-32.5 parent: 30 - uid: 9143 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-31.5 parent: 30 - uid: 9144 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-30.5 parent: 30 - uid: 9145 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-29.5 parent: 30 - uid: 9146 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-28.5 parent: 30 - uid: 9147 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-27.5 parent: 30 - uid: 9148 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-26.5 parent: 30 - uid: 9149 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-25.5 parent: 30 - uid: 9150 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-24.5 parent: 30 - uid: 9151 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-23.5 parent: 30 - uid: 9152 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-22.5 parent: 30 - uid: 9153 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-21.5 parent: 30 - uid: 9154 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-20.5 parent: 30 - uid: 9155 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-19.5 parent: 30 - uid: 9183 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-26.5 parent: 30 - uid: 9234 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-53.5 parent: 30 - uid: 9244 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-54.5 parent: 30 - uid: 9255 @@ -134458,13 +134145,11 @@ entities: - uid: 9288 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-58.5 parent: 30 - uid: 9289 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-58.5 parent: 30 - uid: 9296 @@ -134535,7 +134220,6 @@ entities: - uid: 9339 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-45.5 parent: 30 - uid: 9340 @@ -134616,13 +134300,11 @@ entities: - uid: 9367 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-54.5 parent: 30 - uid: 9368 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-54.5 parent: 30 - uid: 9374 @@ -134723,13 +134405,11 @@ entities: - uid: 9402 components: - type: Transform - rot: 3.141592653589793 rad pos: -12.5,-57.5 parent: 30 - uid: 9413 components: - type: Transform - rot: -1.5707963267948966 rad pos: -10.5,-33.5 parent: 30 - uid: 9423 @@ -134825,73 +134505,61 @@ entities: - uid: 9487 components: - type: Transform - rot: -1.5707963267948966 rad pos: -10.5,-53.5 parent: 30 - uid: 9507 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-55.5 parent: 30 - uid: 9508 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-55.5 parent: 30 - uid: 9509 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-54.5 parent: 30 - uid: 9510 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-57.5 parent: 30 - uid: 9511 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-57.5 parent: 30 - uid: 9513 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-57.5 parent: 30 - uid: 9514 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-55.5 parent: 30 - uid: 9515 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-43.5 parent: 30 - uid: 9516 components: - type: Transform - rot: 3.141592653589793 rad pos: -10.5,-76.5 parent: 30 - uid: 9517 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,-76.5 parent: 30 - uid: 9528 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-53.5 parent: 30 - uid: 9582 @@ -134912,31 +134580,26 @@ entities: - uid: 9601 components: - type: Transform - rot: 3.141592653589793 rad pos: -14.5,-76.5 parent: 30 - uid: 9602 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-76.5 parent: 30 - uid: 9603 components: - type: Transform - rot: 3.141592653589793 rad pos: -12.5,-76.5 parent: 30 - uid: 9604 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-76.5 parent: 30 - uid: 9605 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-61.5 parent: 30 - uid: 9606 @@ -134947,31 +134610,26 @@ entities: - uid: 9607 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 30 - uid: 9609 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-74.5 parent: 30 - uid: 9641 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-56.5 parent: 30 - uid: 9642 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-58.5 parent: 30 - uid: 9643 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-58.5 parent: 30 - uid: 9663 @@ -134982,13 +134640,11 @@ entities: - uid: 9692 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-45.5 parent: 30 - uid: 9693 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-46.5 parent: 30 - uid: 9714 @@ -135004,13 +134660,11 @@ entities: - uid: 9798 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,34.5 parent: 30 - uid: 9822 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-42.5 parent: 30 - uid: 9855 @@ -135021,19 +134675,16 @@ entities: - uid: 9863 components: - type: Transform - rot: -1.5707963267948966 rad pos: -6.5,-53.5 parent: 30 - uid: 9877 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,-53.5 parent: 30 - uid: 9878 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,-53.5 parent: 30 - uid: 9881 @@ -135044,67 +134695,56 @@ entities: - uid: 9991 components: - type: Transform - rot: 3.141592653589793 rad pos: -7.5,-57.5 parent: 30 - uid: 10002 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-57.5 parent: 30 - uid: 10012 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-70.5 parent: 30 - uid: 10013 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-73.5 parent: 30 - uid: 10014 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-69.5 parent: 30 - uid: 10050 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,-56.5 parent: 30 - uid: 10051 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,-57.5 parent: 30 - uid: 10052 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,-54.5 parent: 30 - uid: 10092 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-62.5 parent: 30 - uid: 10096 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-53.5 parent: 30 - uid: 10097 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-53.5 parent: 30 - uid: 10112 @@ -135115,7 +134755,6 @@ entities: - uid: 10113 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-60.5 parent: 30 - uid: 10114 @@ -135126,49 +134765,41 @@ entities: - uid: 10115 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-67.5 parent: 30 - uid: 10116 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-65.5 parent: 30 - uid: 10117 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-71.5 parent: 30 - uid: 10118 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-63.5 parent: 30 - uid: 10119 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-66.5 parent: 30 - uid: 10121 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-59.5 parent: 30 - uid: 10122 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-58.5 parent: 30 - uid: 10134 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-43.5 parent: 30 - uid: 10208 @@ -135204,13 +134835,11 @@ entities: - uid: 10558 components: - type: Transform - rot: 3.141592653589793 rad pos: 7.5,-44.5 parent: 30 - uid: 10640 components: - type: Transform - rot: 3.141592653589793 rad pos: 6.5,-43.5 parent: 30 - uid: 10648 @@ -135221,31 +134850,26 @@ entities: - uid: 10651 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-75.5 parent: 30 - uid: 10676 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-57.5 parent: 30 - uid: 10678 components: - type: Transform - rot: 3.141592653589793 rad pos: -10.5,-57.5 parent: 30 - uid: 10726 components: - type: Transform - rot: -1.5707963267948966 rad pos: -6.5,-55.5 parent: 30 - uid: 10727 components: - type: Transform - rot: -1.5707963267948966 rad pos: -6.5,-54.5 parent: 30 - uid: 10768 @@ -135291,37 +134915,31 @@ entities: - uid: 11067 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-47.5 parent: 30 - uid: 11107 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-56.5 parent: 30 - uid: 11123 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-54.5 parent: 30 - uid: 11126 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-54.5 parent: 30 - uid: 11127 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-53.5 parent: 30 - uid: 11144 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-51.5 parent: 30 - uid: 11146 @@ -135387,67 +135005,56 @@ entities: - uid: 11590 components: - type: Transform - rot: 3.141592653589793 rad pos: 24.5,3.5 parent: 30 - uid: 11591 components: - type: Transform - rot: 3.141592653589793 rad pos: 23.5,3.5 parent: 30 - uid: 11592 components: - type: Transform - rot: 3.141592653589793 rad pos: 25.5,3.5 parent: 30 - uid: 11593 components: - type: Transform - rot: 3.141592653589793 rad pos: 26.5,3.5 parent: 30 - uid: 11594 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,3.5 parent: 30 - uid: 11595 components: - type: Transform - rot: 3.141592653589793 rad pos: 28.5,3.5 parent: 30 - uid: 11596 components: - type: Transform - rot: 3.141592653589793 rad pos: 28.5,2.5 parent: 30 - uid: 11598 components: - type: Transform - rot: 3.141592653589793 rad pos: 28.5,0.5 parent: 30 - uid: 11599 components: - type: Transform - rot: 3.141592653589793 rad pos: 28.5,-0.5 parent: 30 - uid: 11600 components: - type: Transform - rot: 3.141592653589793 rad pos: 23.5,-0.5 parent: 30 - uid: 11601 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,-0.5 parent: 30 - uid: 11655 @@ -135693,43 +135300,36 @@ entities: - uid: 12663 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-52.5 parent: 30 - uid: 12670 components: - type: Transform - rot: 3.141592653589793 rad pos: 18.5,9.5 parent: 30 - uid: 12671 components: - type: Transform - rot: 3.141592653589793 rad pos: 19.5,9.5 parent: 30 - uid: 12672 components: - type: Transform - rot: 3.141592653589793 rad pos: 20.5,6.5 parent: 30 - uid: 12673 components: - type: Transform - rot: 3.141592653589793 rad pos: 20.5,9.5 parent: 30 - uid: 12674 components: - type: Transform - rot: 3.141592653589793 rad pos: 20.5,7.5 parent: 30 - uid: 12675 components: - type: Transform - rot: 3.141592653589793 rad pos: 20.5,8.5 parent: 30 - uid: 12681 @@ -136332,11 +135932,6 @@ entities: - type: Transform pos: 31.5,47.5 parent: 30 - - uid: 13503 - components: - - type: Transform - pos: 28.5,45.5 - parent: 30 - uid: 13504 components: - type: Transform @@ -136392,21 +135987,6 @@ entities: - type: Transform pos: 34.5,42.5 parent: 30 - - uid: 13524 - components: - - type: Transform - pos: 41.5,46.5 - parent: 30 - - uid: 13525 - components: - - type: Transform - pos: 42.5,46.5 - parent: 30 - - uid: 13526 - components: - - type: Transform - pos: 43.5,46.5 - parent: 30 - uid: 13527 components: - type: Transform @@ -136615,7 +136195,6 @@ entities: - uid: 13643 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-57.5 parent: 30 - uid: 13647 @@ -136696,7 +136275,6 @@ entities: - uid: 13901 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-53.5 parent: 30 - uid: 14506 @@ -136717,7 +136295,6 @@ entities: - uid: 14538 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-51.5 parent: 30 - uid: 14539 @@ -136728,7 +136305,6 @@ entities: - uid: 14590 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,-51.5 parent: 30 - uid: 14646 @@ -136826,52 +136402,54 @@ entities: - type: Transform pos: 10.5,54.5 parent: 30 + - uid: 15240 + components: + - type: Transform + pos: 40.5,48.5 + parent: 30 + - uid: 15242 + components: + - type: Transform + pos: 44.5,48.5 + parent: 30 - uid: 15285 components: - type: Transform - rot: -1.5707963267948966 rad pos: 49.5,28.5 parent: 30 - uid: 15286 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,28.5 parent: 30 - uid: 15287 components: - type: Transform - rot: -1.5707963267948966 rad pos: 51.5,28.5 parent: 30 - uid: 15288 components: - type: Transform - rot: -1.5707963267948966 rad pos: 52.5,28.5 parent: 30 - uid: 15289 components: - type: Transform - rot: -1.5707963267948966 rad pos: 52.5,32.5 parent: 30 - uid: 15290 components: - type: Transform - rot: -1.5707963267948966 rad pos: 51.5,32.5 parent: 30 - uid: 15291 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,32.5 parent: 30 - uid: 15292 components: - type: Transform - rot: -1.5707963267948966 rad pos: 49.5,32.5 parent: 30 - uid: 15617 @@ -136942,7 +136520,6 @@ entities: - uid: 16040 components: - type: Transform - rot: -1.5707963267948966 rad pos: 4.5,-42.5 parent: 30 - uid: 16104 @@ -137038,55 +136615,46 @@ entities: - uid: 16728 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,38.5 parent: 30 - uid: 16729 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,38.5 parent: 30 - uid: 16730 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,38.5 parent: 30 - uid: 16731 components: - type: Transform - rot: 1.5707963267948966 rad pos: -55.5,38.5 parent: 30 - uid: 16732 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,38.5 parent: 30 - uid: 16733 components: - type: Transform - rot: 1.5707963267948966 rad pos: -57.5,38.5 parent: 30 - uid: 16734 components: - type: Transform - rot: 1.5707963267948966 rad pos: -58.5,38.5 parent: 30 - uid: 16735 components: - type: Transform - rot: 1.5707963267948966 rad pos: -58.5,35.5 parent: 30 - uid: 16737 components: - type: Transform - rot: 1.5707963267948966 rad pos: -58.5,37.5 parent: 30 - uid: 16777 @@ -137472,85 +137040,71 @@ entities: - uid: 17676 components: - type: Transform - rot: 1.5707963267948966 rad pos: -48.5,-50.5 parent: 30 - uid: 17677 components: - type: Transform - rot: 1.5707963267948966 rad pos: -48.5,-51.5 parent: 30 - uid: 17678 components: - type: Transform - rot: 1.5707963267948966 rad pos: -48.5,-52.5 parent: 30 - uid: 17679 components: - type: Transform - rot: 1.5707963267948966 rad pos: -48.5,-53.5 parent: 30 - uid: 17680 components: - type: Transform - rot: 1.5707963267948966 rad pos: -48.5,-54.5 parent: 30 - uid: 17681 components: - type: Transform - rot: 1.5707963267948966 rad pos: -48.5,-55.5 parent: 30 - uid: 17682 components: - type: Transform - rot: 1.5707963267948966 rad pos: -48.5,-56.5 parent: 30 - uid: 17683 components: - type: Transform - rot: 1.5707963267948966 rad pos: -48.5,-57.5 parent: 30 - uid: 17684 components: - type: Transform - rot: 1.5707963267948966 rad pos: -48.5,-58.5 parent: 30 - uid: 17710 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-58.5 parent: 30 - uid: 17711 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,-58.5 parent: 30 - uid: 17712 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,-58.5 parent: 30 - uid: 17713 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,-59.5 parent: 30 - uid: 17728 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,13.5 parent: 30 - uid: 17775 @@ -137566,7 +137120,6 @@ entities: - uid: 17804 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,-25.5 parent: 30 - uid: 17805 @@ -137582,13 +137135,11 @@ entities: - uid: 17807 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,-25.5 parent: 30 - uid: 17809 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,-23.5 parent: 30 - uid: 18002 @@ -137654,7 +137205,6 @@ entities: - uid: 18081 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,13.5 parent: 30 - uid: 18103 @@ -137790,13 +137340,11 @@ entities: - uid: 18775 components: - type: Transform - rot: 1.5707963267948966 rad pos: -65.5,-66.5 parent: 30 - uid: 18860 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,-51.5 parent: 30 - uid: 18925 @@ -139037,13 +138585,11 @@ entities: - uid: 22780 components: - type: Transform - rot: 1.5707963267948966 rad pos: -36.5,49.5 parent: 30 - uid: 22787 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,53.5 parent: 30 - uid: 22805 @@ -139498,11 +139044,6 @@ entities: - type: Transform pos: -12.5,20.5 parent: 30 - - uid: 142 - components: - - type: Transform - pos: -12.5,16.5 - parent: 30 - uid: 143 components: - type: Transform @@ -139513,11 +139054,6 @@ entities: - type: Transform pos: -11.5,15.5 parent: 30 - - uid: 146 - components: - - type: Transform - pos: -9.5,15.5 - parent: 30 - uid: 147 components: - type: Transform @@ -139543,11 +139079,6 @@ entities: - type: Transform pos: -4.5,16.5 parent: 30 - - uid: 152 - components: - - type: Transform - pos: -8.5,16.5 - parent: 30 - uid: 153 components: - type: Transform @@ -140123,11 +139654,6 @@ entities: - type: Transform pos: -19.5,-24.5 parent: 30 - - uid: 725 - components: - - type: Transform - pos: -8.5,17.5 - parent: 30 - uid: 801 components: - type: Transform @@ -140476,37 +140002,31 @@ entities: - uid: 1264 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,22.5 parent: 30 - uid: 1265 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,22.5 parent: 30 - uid: 1266 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,22.5 parent: 30 - uid: 1268 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,14.5 parent: 30 - uid: 1269 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,14.5 parent: 30 - uid: 1270 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,14.5 parent: 30 - uid: 1315 @@ -140567,115 +140087,96 @@ entities: - uid: 1393 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,44.5 parent: 30 - uid: 1463 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,28.5 parent: 30 - uid: 1464 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,29.5 parent: 30 - uid: 1465 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,30.5 parent: 30 - uid: 1466 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,31.5 parent: 30 - uid: 1467 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,32.5 parent: 30 - uid: 1468 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,33.5 parent: 30 - uid: 1469 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,34.5 parent: 30 - uid: 1470 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,28.5 parent: 30 - uid: 1471 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,28.5 parent: 30 - uid: 1472 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,28.5 parent: 30 - uid: 1473 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,28.5 parent: 30 - uid: 1480 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,31.5 parent: 30 - uid: 1481 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,33.5 parent: 30 - uid: 1483 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,30.5 parent: 30 - uid: 1484 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,29.5 parent: 30 - uid: 1485 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,28.5 parent: 30 - uid: 1486 components: - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,28.5 parent: 30 - uid: 1487 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,28.5 parent: 30 - uid: 1561 @@ -140853,6 +140354,16 @@ entities: - type: Transform pos: -15.5,-17.5 parent: 30 + - uid: 1970 + components: + - type: Transform + pos: 41.5,46.5 + parent: 30 + - uid: 1975 + components: + - type: Transform + pos: 43.5,46.5 + parent: 30 - uid: 1994 components: - type: Transform @@ -140861,7 +140372,6 @@ entities: - uid: 2075 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,55.5 parent: 30 - uid: 2211 @@ -141332,97 +140842,81 @@ entities: - uid: 6590 components: - type: Transform - rot: 3.141592653589793 rad pos: 33.5,44.5 parent: 30 - uid: 6591 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,44.5 parent: 30 - uid: 6611 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,9.5 parent: 30 - uid: 6612 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,8.5 parent: 30 - uid: 6613 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,7.5 parent: 30 - uid: 6614 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,6.5 parent: 30 - uid: 6615 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,5.5 parent: 30 - uid: 6617 components: - type: Transform - rot: -1.5707963267948966 rad pos: 13.5,5.5 parent: 30 - uid: 6620 components: - type: Transform - rot: -1.5707963267948966 rad pos: 14.5,0.5 parent: 30 - uid: 6621 components: - type: Transform - rot: -1.5707963267948966 rad pos: 14.5,-0.5 parent: 30 - uid: 6622 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 30 - uid: 6623 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,0.5 parent: 30 - uid: 6624 components: - type: Transform - rot: -1.5707963267948966 rad pos: 9.5,0.5 parent: 30 - uid: 6633 components: - type: Transform - rot: -1.5707963267948966 rad pos: -3.5,-5.5 parent: 30 - uid: 6634 components: - type: Transform - rot: -1.5707963267948966 rad pos: -0.5,-5.5 parent: 30 - uid: 6635 components: - type: Transform - rot: -1.5707963267948966 rad pos: -1.5,-5.5 parent: 30 - uid: 6642 @@ -141463,25 +140957,21 @@ entities: - uid: 6798 components: - type: Transform - rot: -1.5707963267948966 rad pos: -16.5,-8.5 parent: 30 - uid: 6815 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 30 - uid: 6817 components: - type: Transform - rot: -1.5707963267948966 rad pos: -16.5,-13.5 parent: 30 - uid: 6818 components: - type: Transform - rot: -1.5707963267948966 rad pos: -16.5,-12.5 parent: 30 - uid: 6865 @@ -141527,7 +141017,6 @@ entities: - uid: 7041 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-13.5 parent: 30 - uid: 7042 @@ -141568,7 +141057,6 @@ entities: - uid: 7199 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,-13.5 parent: 30 - uid: 7206 @@ -141639,7 +141127,6 @@ entities: - uid: 7277 components: - type: Transform - rot: -1.5707963267948966 rad pos: -15.5,-13.5 parent: 30 - uid: 7279 @@ -141715,133 +141202,111 @@ entities: - uid: 7709 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-6.5 parent: 30 - uid: 7710 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 30 - uid: 7711 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 30 - uid: 7712 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-9.5 parent: 30 - uid: 7715 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,-17.5 parent: 30 - uid: 7716 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-17.5 parent: 30 - uid: 7718 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-16.5 parent: 30 - uid: 7719 components: - type: Transform - rot: 3.141592653589793 rad pos: 2.5,-17.5 parent: 30 - uid: 7722 components: - type: Transform - rot: 3.141592653589793 rad pos: 0.5,-17.5 parent: 30 - uid: 7723 components: - type: Transform - rot: 3.141592653589793 rad pos: -0.5,-17.5 parent: 30 - uid: 7724 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-17.5 parent: 30 - uid: 7725 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-18.5 parent: 30 - uid: 7726 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-19.5 parent: 30 - uid: 7727 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-20.5 parent: 30 - uid: 7728 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-21.5 parent: 30 - uid: 7729 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-22.5 parent: 30 - uid: 7730 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-23.5 parent: 30 - uid: 7732 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-25.5 parent: 30 - uid: 7734 components: - type: Transform - rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 30 - uid: 7735 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-17.5 parent: 30 - uid: 7736 components: - type: Transform - rot: 3.141592653589793 rad pos: 4.5,-17.5 parent: 30 - uid: 7737 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-17.5 parent: 30 - uid: 7738 @@ -141872,7 +141337,6 @@ entities: - uid: 7758 components: - type: Transform - rot: 3.141592653589793 rad pos: 6.5,-5.5 parent: 30 - uid: 7760 @@ -142108,7 +141572,6 @@ entities: - uid: 8278 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,-45.5 parent: 30 - uid: 8283 @@ -142414,7 +141877,6 @@ entities: - uid: 9128 components: - type: Transform - rot: -1.5707963267948966 rad pos: 22.5,-8.5 parent: 30 - uid: 9273 @@ -142510,7 +141972,6 @@ entities: - uid: 9844 components: - type: Transform - rot: -1.5707963267948966 rad pos: 34.5,44.5 parent: 30 - uid: 9870 @@ -142916,7 +142377,6 @@ entities: - uid: 12638 components: - type: Transform - rot: 1.5707963267948966 rad pos: -64.5,-61.5 parent: 30 - uid: 12660 @@ -142932,13 +142392,11 @@ entities: - uid: 12877 components: - type: Transform - rot: 1.5707963267948966 rad pos: 26.5,23.5 parent: 30 - uid: 12878 components: - type: Transform - rot: 1.5707963267948966 rad pos: 26.5,22.5 parent: 30 - uid: 13408 @@ -143306,11 +142764,6 @@ entities: - type: Transform pos: 14.5,52.5 parent: 30 - - uid: 14729 - components: - - type: Transform - pos: -12.5,15.5 - parent: 30 - uid: 14730 components: - type: Transform @@ -143351,6 +142804,11 @@ entities: - type: Transform pos: 29.5,-8.5 parent: 30 + - uid: 15268 + components: + - type: Transform + pos: -11.5,16.5 + parent: 30 - uid: 16004 components: - type: Transform @@ -143379,7 +142837,6 @@ entities: - uid: 16739 components: - type: Transform - rot: 1.5707963267948966 rad pos: -57.5,28.5 parent: 30 - uid: 16741 @@ -143445,13 +142902,11 @@ entities: - uid: 17078 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,45.5 parent: 30 - uid: 17079 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,44.5 parent: 30 - uid: 17093 @@ -143877,121 +143332,101 @@ entities: - uid: 17687 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,-50.5 parent: 30 - uid: 17688 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-50.5 parent: 30 - uid: 17689 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,-50.5 parent: 30 - uid: 17690 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,-50.5 parent: 30 - uid: 17691 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-50.5 parent: 30 - uid: 17692 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-50.5 parent: 30 - uid: 17693 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-51.5 parent: 30 - uid: 17694 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-53.5 parent: 30 - uid: 17695 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-54.5 parent: 30 - uid: 17696 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-54.5 parent: 30 - uid: 17697 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,-54.5 parent: 30 - uid: 17698 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,-54.5 parent: 30 - uid: 17699 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-54.5 parent: 30 - uid: 17700 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,-54.5 parent: 30 - uid: 17701 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-53.5 parent: 30 - uid: 17702 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-51.5 parent: 30 - uid: 17703 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-55.5 parent: 30 - uid: 17704 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 30 - uid: 17705 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-55.5 parent: 30 - uid: 17706 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-57.5 parent: 30 - uid: 17719 @@ -144337,7 +143772,6 @@ entities: - uid: 18283 components: - type: Transform - rot: 3.141592653589793 rad pos: 32.5,44.5 parent: 30 - uid: 19651 @@ -144393,19 +143827,16 @@ entities: - uid: 19680 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-26.5 parent: 30 - uid: 19683 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,-27.5 parent: 30 - uid: 19684 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,-28.5 parent: 30 - uid: 19814 @@ -144418,6 +143849,11 @@ entities: - type: Transform pos: -29.5,-42.5 parent: 30 + - uid: 20647 + components: + - type: Transform + pos: -11.5,17.5 + parent: 30 - uid: 20660 components: - type: Transform @@ -144451,7 +143887,6 @@ entities: - uid: 22994 components: - type: Transform - rot: 1.5707963267948966 rad pos: 29.5,40.5 parent: 30 - proto: WallSolidRust @@ -145850,17 +145285,18 @@ entities: parent: 30 - proto: WindoorSecureCommandLocked entities: - - uid: 445 - components: - - type: Transform - pos: -13.5,16.5 - parent: 30 - uid: 20088 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,42.5 parent: 30 + - uid: 20649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,16.5 + parent: 30 - uid: 21680 components: - type: Transform @@ -146194,25 +145630,21 @@ entities: - uid: 1267 components: - type: Transform - rot: 3.141592653589793 rad pos: -54.5,22.5 parent: 30 - uid: 1271 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,22.5 parent: 30 - uid: 1272 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,14.5 parent: 30 - uid: 1273 components: - type: Transform - rot: 3.141592653589793 rad pos: -54.5,14.5 parent: 30 - uid: 1354 @@ -146263,37 +145695,31 @@ entities: - uid: 6542 components: - type: Transform - rot: 1.5707963267948966 rad pos: 28.5,34.5 parent: 30 - uid: 6543 components: - type: Transform - rot: 1.5707963267948966 rad pos: 28.5,35.5 parent: 30 - uid: 6544 components: - type: Transform - rot: 1.5707963267948966 rad pos: 28.5,39.5 parent: 30 - uid: 6545 components: - type: Transform - rot: 1.5707963267948966 rad pos: 28.5,38.5 parent: 30 - uid: 6625 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,0.5 parent: 30 - uid: 6628 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,0.5 parent: 30 - uid: 8329 diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index 0541469ef5..f85ca5a21d 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -8970,117 +8970,6 @@ entities: - type: Transform pos: -42.541283,-55.258762 parent: 5350 -- proto: ActionToggleInternals - entities: - - uid: 4778 - components: - - type: Transform - parent: 4777 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 4777 - - uid: 7201 - components: - - type: Transform - parent: 7614 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 7614 - - uid: 9404 - components: - - type: Transform - parent: 9284 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 9284 - - uid: 15198 - components: - - type: Transform - parent: 15120 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 15120 - - uid: 15592 - components: - - type: Transform - parent: 15483 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 15483 - - uid: 16296 - components: - - type: Transform - parent: 16295 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 16295 - - uid: 16298 - components: - - type: Transform - parent: 16297 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 16297 - - uid: 18711 - components: - - type: Transform - parent: 18691 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 18691 -- proto: ActionToggleJetpack - entities: - - uid: 7200 - components: - - type: Transform - parent: 7614 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 7614 - - uid: 15196 - components: - - type: Transform - parent: 15120 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 15120 - - uid: 15521 - components: - - type: Transform - parent: 15483 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 15483 - - uid: 18692 - components: - - type: Transform - parent: 18691 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 18691 -- proto: ActionToggleLight - entities: - - uid: 9671 - components: - - type: Transform - parent: 9670 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 9670 - - uid: 28315 - components: - - type: Transform - parent: 28314 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 28314 - - uid: 28317 - components: - - type: Transform - parent: 28316 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 28316 - proto: AirAlarm entities: - uid: 67 @@ -86406,39 +86295,11 @@ entities: - type: Transform pos: 0.747241,-48.310314 parent: 5350 - - type: HandheldLight - toggleActionEntity: 28315 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 28315 - - type: ActionsContainer - uid: 28316 components: - type: Transform pos: 0.48161602,-48.51344 parent: 5350 - - type: HandheldLight - toggleActionEntity: 28317 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 28317 - - type: ActionsContainer - proto: FlashlightSeclite entities: - uid: 9670 @@ -86446,20 +86307,6 @@ entities: - type: Transform pos: 9.450002,23.638304 parent: 5350 - - type: HandheldLight - toggleActionEntity: 9671 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 9672 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 9671 - - type: ActionsContainer - uid: 10450 components: - type: Transform @@ -130519,17 +130366,6 @@ entities: - type: Transform pos: -16.37137,-14.418222 parent: 5350 - - type: GasTank - toggleActionEntity: 15198 - - type: Jetpack - toggleActionEntity: 15196 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 15196 - - 15198 - uid: 15431 components: - type: Transform @@ -130545,33 +130381,11 @@ entities: - type: Transform pos: -16.55887,-14.105722 parent: 5350 - - type: GasTank - toggleActionEntity: 15592 - - type: Jetpack - toggleActionEntity: 15521 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 15521 - - 15592 - uid: 18691 components: - type: Transform pos: -16.540573,-13.293222 parent: 5350 - - type: GasTank - toggleActionEntity: 18711 - - type: Jetpack - toggleActionEntity: 18692 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 18692 - - 18711 - uid: 18712 components: - type: Transform @@ -130594,17 +130408,6 @@ entities: - type: Transform pos: -9.570677,44.593655 parent: 5350 - - type: GasTank - toggleActionEntity: 7201 - - type: Jetpack - toggleActionEntity: 7200 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 7200 - - 7201 - proto: Jug entities: - uid: 20922 @@ -133458,14 +133261,6 @@ entities: - type: Transform pos: 48.344383,30.593039 parent: 5350 - - type: GasTank - toggleActionEntity: 16296 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 16296 - uid: 24449 components: - type: Transform @@ -133494,14 +133289,6 @@ entities: - type: Transform pos: 18.413866,-29.368267 parent: 5350 - - type: GasTank - toggleActionEntity: 4778 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 4778 - uid: 22678 components: - type: Transform @@ -133699,14 +133486,6 @@ entities: - type: Transform pos: 52.344383,30.608664 parent: 5350 - - type: GasTank - toggleActionEntity: 9404 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 9404 - uid: 15057 components: - type: Transform @@ -133722,14 +133501,6 @@ entities: - type: Transform pos: 52.625633,30.499289 parent: 5350 - - type: GasTank - toggleActionEntity: 16298 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 16298 - proto: PaintingAmogusTriptych entities: - uid: 24635 diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index f186d05be0..9d8b2a7832 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -9739,50 +9739,6 @@ entities: - type: Transform pos: 19.476593,-4.469906 parent: 21002 -- proto: ActionToggleInternals - entities: - - uid: 8791 - components: - - type: Transform - parent: 23838 - - type: InstantAction - container: 23838 - - uid: 8792 - components: - - type: Transform - parent: 23832 - - type: InstantAction - container: 23832 - - uid: 8794 - components: - - type: Transform - parent: 23836 - - type: InstantAction - container: 23836 - - uid: 8795 - components: - - type: Transform - parent: 23834 - - type: InstantAction - container: 23834 - - uid: 8796 - components: - - type: Transform - parent: 23830 - - type: InstantAction - container: 23830 - - uid: 8807 - components: - - type: Transform - parent: 8806 - - type: InstantAction - container: 8806 - - uid: 8992 - components: - - type: Transform - parent: 8991 - - type: InstantAction - container: 8991 - proto: AirAlarm entities: - uid: 2121 @@ -17338,27 +17294,11 @@ entities: - type: Transform pos: -23.668444,37.633034 parent: 2 - - type: GasTank - toggleActionEntity: 8807 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8807 - uid: 8991 components: - type: Transform pos: -30.637194,35.58095 parent: 2 - - type: GasTank - toggleActionEntity: 8992 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8992 - proto: AlertsComputerCircuitboard entities: - uid: 4080 @@ -92617,14 +92557,6 @@ entities: - type: Transform pos: -23.365643,29.375084 parent: 2 - - type: GasTank - toggleActionEntity: 8791 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8791 - proto: DoubleEmergencyOxygenTankFilled entities: - uid: 23832 @@ -92632,14 +92564,6 @@ entities: - type: Transform pos: -23.646893,29.614668 parent: 2 - - type: GasTank - toggleActionEntity: 8792 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8792 - proto: Dresser entities: - uid: 22340 @@ -94538,14 +94462,6 @@ entities: - type: Transform pos: -27.349743,13.441146 parent: 2 - - type: GasTank - toggleActionEntity: 8794 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8794 - uid: 28423 components: - type: Transform @@ -94578,14 +94494,6 @@ entities: - type: Transform pos: -27.683077,13.784896 parent: 2 - - type: GasTank - toggleActionEntity: 8795 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8795 - uid: 28281 components: - type: Transform @@ -94802,14 +94710,6 @@ entities: - type: Transform pos: -27.422659,13.732813 parent: 2 - - type: GasTank - toggleActionEntity: 8796 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8796 - proto: ExtinguisherCabinetFilled entities: - uid: 5804 diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 0b99150480..fec3c994c1 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -1,10 +1,10 @@ meta: format: 7 category: Map - engineVersion: 255.1.0 + engineVersion: 260.1.0 forkId: "" forkVersion: "" - time: 05/03/2025 20:11:06 + time: 05/20/2025 22:07:43 entityCount: 14184 maps: - 473 @@ -70,216 +70,216 @@ entities: chunks: -1,0: ind: -1,0 - tiles: PgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAAAdgAAAAADHQAAAAADeQAAAAAADgAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAADdgAAAAADHQAAAAAAeQAAAAAADgAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAABdgAAAAAAdgAAAAABHQAAAAADDgAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAABdgAAAAABdgAAAAACHQAAAAACDgAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAACdgAAAAABdgAAAAAAHQAAAAACDgAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAABHQAAAAACDgAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAADdgAAAAAAHQAAAAADDgAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAADHQAAAAABDgAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAACdgAAAAACdgAAAAACHQAAAAAADgAAAAADDgAAAAACWQAAAAABWQAAAAAAWQAAAAADDgAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACDgAAAAADWQAAAAADWQAAAAAAWQAAAAACDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACDgAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAABQAAAAADHQAAAAADHQAAAAABHQAAAAAABQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAA - version: 6 + tiles: PgAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAdgAAAAAAAHYAAAAAAwAdAAAAAAMAeQAAAAAAAA4AAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHYAAAAAAwB2AAAAAAMAHQAAAAAAAHkAAAAAAAAOAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAADgAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAMAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAdgAAAAABAHYAAAAAAAB2AAAAAAEAHQAAAAADAA4AAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAACAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHYAAAAAAQB2AAAAAAEAdgAAAAACAB0AAAAAAgAOAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAwBoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB2AAAAAAIAdgAAAAABAHYAAAAAAAAdAAAAAAIADgAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAdgAAAAACAHYAAAAAAQB2AAAAAAEAHQAAAAACAA4AAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHYAAAAAAgB2AAAAAAMAdgAAAAAAAB0AAAAAAwAOAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB2AAAAAAEAdgAAAAAAAHYAAAAAAwAdAAAAAAEADgAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAdgAAAAACAHYAAAAAAgB2AAAAAAIAHQAAAAAAAA4AAAAAAwAOAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAMADgAAAAABAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIADgAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAACAA4AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAHQAAAAACAA4AAAAAAAAOAAAAAAEADgAAAAADAA4AAAAAAQAOAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAIAeQAAAAAAAAUAAAAAAwAdAAAAAAMAHQAAAAABAB0AAAAAAAAFAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAeQAAAAAAAA== + version: 7 0,0: ind: 0,0 - tiles: DgAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAADaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAADWQAAAAACaQAAAAAAeQAAAAAADgAAAAABeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAALAAAAAAALAAAAAAADgAAAAADHQAAAAACHQAAAAACHQAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAACaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADaQAAAAAALAAAAAAALAAAAAAADgAAAAABHQAAAAABHQAAAAADHQAAAAABeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAALAAAAAAALAAAAAAADgAAAAABHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAABWQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACHQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAB - version: 6 + tiles: DgAAAAADAHkAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA4AAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAAOAAAAAAEADgAAAAACAA4AAAAAAgAOAAAAAAMAaQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAADgAAAAAAAA4AAAAAAgAOAAAAAAIADgAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAgBpAAAAAAAAeQAAAAAAAA4AAAAAAQB5AAAAAAAAHQAAAAABAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAAOAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAADgAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAwAdAAAAAAIAHQAAAAACAB0AAAAAAgB2AAAAAAEAdgAAAAADAHYAAAAAAwB2AAAAAAIAaQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBpAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAEAHQAAAAABAB0AAAAAAwAdAAAAAAEAeQAAAAAAAHYAAAAAAwB2AAAAAAEAdgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAACAHYAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBpAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAQBpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAQAdAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAACAB0AAAAAAABZAAAAAAAAHQAAAAADAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAABAA== + version: 7 -1,1: ind: -1,1 - tiles: eQAAAAAABQAAAAAAHQAAAAADHQAAAAABHQAAAAAABQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAABQAAAAAAHQAAAAACHQAAAAAAHQAAAAAABQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADAgAAAAABAgAAAAAAAgAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAADeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAADNgAAAAAAHQAAAAAAHQAAAAAAHQAAAAACNgAAAAAAHQAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAABdgAAAAADHQAAAAADHQAAAAADeQAAAAAAHQAAAAACNgAAAAAAHQAAAAAAHQAAAAACHQAAAAADNgAAAAAAHQAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAABNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAANgAAAAAAHQAAAAACHQAAAAADUAAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAAA - version: 6 + tiles: eQAAAAAAAAUAAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAAAFAAAAAAEAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAAAAHkAAAAAAAAFAAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAAABQAAAAADAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAMAAgAAAAABAAIAAAAAAAACAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAHQAAAAABAHYAAAAAAwB2AAAAAAIAdgAAAAABAHYAAAAAAwB2AAAAAAMAeQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAB0AAAAAAwA2AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIANgAAAAAAAB0AAAAAAgB2AAAAAAAAdgAAAAADAHYAAAAAAQB2AAAAAAEAdgAAAAABAHYAAAAAAwAdAAAAAAMAHQAAAAADAHkAAAAAAAAdAAAAAAIANgAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAADADYAAAAAAAAdAAAAAAIAdgAAAAAAAHYAAAAAAAB2AAAAAAMAdgAAAAABAHYAAAAAAwB5AAAAAAAAHQAAAAABAB0AAAAAAwB5AAAAAAAAHQAAAAADADYAAAAAAAA2AAAAAAAANgAAAAAAADYAAAAAAAA2AAAAAAAAHQAAAAADAHkAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAAB2AAAAAAEAeQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAB0AAAAAAQA2AAAAAAAANgAAAAAAADYAAAAAAAA2AAAAAAAANgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAeQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAABAHkAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAAA2AAAAAAAAHQAAAAACAB0AAAAAAwBQAAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAEAdgAAAAABAHYAAAAAAgB5AAAAAAAAHQAAAAACAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAALAAAAAAAACwAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAgA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAACwAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAEAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAGAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAHkAAAAAAAAHAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: WQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABWQAAAAABHQAAAAADWQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADLwAAAAAALwAAAAAALwAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAADHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAADHQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAHQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAACdgAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACdgAAAAAAdgAAAAAAdgAAAAACUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAACdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAD - version: 6 + tiles: WQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAAdAAAAAAEAWQAAAAABAB0AAAAAAwBZAAAAAAAAHQAAAAADAHkAAAAAAABZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwB5AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAHQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAACAB0AAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAeQAAAAAAAFkAAAAAAwAvAAAAAAAALwAAAAAAAC8AAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAHQAAAAACAHkAAAAAAAAdAAAAAAIAHQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAABAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAB0AAAAAAwB5AAAAAAAAHQAAAAABAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAAAdAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAMAdgAAAAADAHYAAAAAAgB2AAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAAaQAAAAAAAFkAAAAAAQBZAAAAAAAAHQAAAAABAHkAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQB2AAAAAAMAdgAAAAABAHYAAAAAAAB2AAAAAAIAdgAAAAACAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAB0AAAAAAgB5AAAAAAAAHQAAAAADAB0AAAAAAQB5AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAHQAAAAADAB0AAAAAAwAdAAAAAAAAHQAAAAADAHkAAAAAAAAdAAAAAAIAdgAAAAAAAHYAAAAAAAB2AAAAAAIAUAAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAB0AAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgB5AAAAAAAAHQAAAAACAHYAAAAAAAB2AAAAAAEAdgAAAAACAHkAAAAAAABQAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAUAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAADAHkAAAAAAAAdAAAAAAIAHQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAACAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAA== + version: 7 0,-1: ind: 0,-1 - tiles: WQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAADeQAAAAAAHQAAAAADHQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAHQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADaQAAAAAAeQAAAAAADgAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAADgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAADgAAAAACeQAAAAAAJAAAAAACJAAAAAACJAAAAAABJAAAAAADJAAAAAABJAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABDgAAAAADeQAAAAAAJAAAAAABJAAAAAADJAAAAAABJAAAAAADJAAAAAADJAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAJAAAAAAAJAAAAAAAJAAAAAABJAAAAAAAJAAAAAACJAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAA - version: 6 + tiles: WQAAAAACAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAB0AAAAAAwB5AAAAAAAAHQAAAAADAB0AAAAAAQBpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAwAdAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAAAAB0AAAAAAQB5AAAAAAAAeAAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAdAAAAAAMAeQAAAAAAAHgAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAAB5AAAAAAAAeAAAAAAAAB0AAAAAAQBpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAAOAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAADAGkAAAAAAAB5AAAAAAAADgAAAAAAAHkAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAA4AAAAAAwB5AAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAGgAAAAAAAAOAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAADgAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAAAAA4AAAAAAgB5AAAAAAAAJAAAAAACACQAAAAAAgAkAAAAAAEAJAAAAAADACQAAAAAAQAkAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQAOAAAAAAMAeQAAAAAAACQAAAAAAQAkAAAAAAMAJAAAAAABACQAAAAAAwAkAAAAAAMAJAAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAADgAAAAAAAHkAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAQAkAAAAAAAAJAAAAAACACQAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: bAAAAAADbAAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAWQAAAAABWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAADOgAAAAAAHQAAAAACLwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAACDgAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAADgAAAAAADgAAAAACWQAAAAAAWQAAAAACWQAAAAACDgAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABDgAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABWQAAAAACDgAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAADgAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAADgAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAADHQAAAAAAHQAAAAABDgAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAC - version: 6 + tiles: bAAAAAADAGwAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAwBsAAAAAAMAbAAAAAAAAGwAAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAgA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAAAAGwAAAAAAABsAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAADoAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAwA6AAAAAAAAHQAAAAACAC8AAAAAAAAvAAAAAAAALwAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAeQAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAAvAAAAAAAALwAAAAAAAHkAAAAAAAB5AAAAAAAADgAAAAADAA4AAAAAAAAOAAAAAAEADgAAAAACAA4AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAADADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAABZAAAAAAAADgAAAAAAAA4AAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAgAOAAAAAAIAOgAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWQAAAAABAA4AAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAFkAAAAAAgAOAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAADgAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAA4AAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAADAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAOAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAgA+AAAAAAAAPgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQB5AAAAAAAADgAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAIAPgAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAdgAAAAABAHYAAAAAAwAdAAAAAAAAHQAAAAABAA4AAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAA== + version: 7 -2,1: ind: -2,1 - tiles: WQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAABWQAAAAADWQAAAAAAWQAAAAACHQAAAAAAWQAAAAACWQAAAAABWQAAAAAAHQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABWQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAADHQAAAAACHQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAACHQAAAAADHQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAEBwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAA - version: 6 + tiles: WQAAAAAAAFkAAAAAAQBZAAAAAAIAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAADAHkAAAAAAABZAAAAAAEAWQAAAAACAHYAAAAAAgB2AAAAAAAAdgAAAAACAHYAAAAAAgB2AAAAAAMAdgAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAgB5AAAAAAAAdgAAAAADAHYAAAAAAgB2AAAAAAIAdgAAAAAAAHYAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAgAdAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAAAHQAAAAADAFkAAAAAAwBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAADAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAeQAAAAAAAGkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAQBZAAAAAAEAHQAAAAABAHkAAAAAAAAdAAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAACAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAgAdAAAAAAMAeQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAACAHkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAABwAAAAAAAAcAAAAABAAHAAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAA== + version: 7 -2,0: ind: -2,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACPQAAAAAAaQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACKQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAAC - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAIAeQAAAAAAAHYAAAAAAgB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAPQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAACAD0AAAAAAABpAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAABAHkAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAgApAAAAAAAAeQAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAgB5AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAMAKQAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAMAeQAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAgB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAHYAAAAAAQB2AAAAAAMAdgAAAAADAHYAAAAAAQB2AAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAB2AAAAAAIAdgAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAACAA== + version: 7 -2,-1: ind: -2,-1 - tiles: HQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAACdgAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAbAAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACOgAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAHQAAAAABOgAAAAAAOgAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAADWQAAAAABWQAAAAABHQAAAAAAeQAAAAAAHQAAAAACOgAAAAAAHQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAADOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAADeQAAAAAA - version: 6 + tiles: HQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAAAdAAAAAAIAdgAAAAACAHYAAAAAAQB2AAAAAAIAdgAAAAACAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAgB5AAAAAAAAbAAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAAAAHYAAAAAAgB2AAAAAAMAdgAAAAACAHYAAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAAdAAAAAAIAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAB0AAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAAdAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAADoAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAADAHkAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAMAeQAAAAAAAB0AAAAAAgA6AAAAAAAAHQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAAB5AAAAAAAAHQAAAAABAFkAAAAAAABZAAAAAAMAHQAAAAADAHkAAAAAAAAdAAAAAAEAOgAAAAAAADoAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAB0AAAAAAwBZAAAAAAEAWQAAAAABAB0AAAAAAAB5AAAAAAAAHQAAAAACADoAAAAAAAAdAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAB0AAAAAAwA6AAAAAAAAOgAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQB5AAAAAAAAdgAAAAACAHYAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHYAAAAAAwB2AAAAAAMAeQAAAAAAAA== + version: 7 -1,2: ind: -1,2 - tiles: eQAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAACeQAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eQAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAAAHQAAAAACAHkAAAAAAAAHAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAADAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: HQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAEeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 + tiles: HQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAEQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAACAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAMAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHoAAAAAAAB6AAAAAAAABwAAAAAAAHkAAAAAAABZAAAAAAEAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAegAAAAAAAAcAAAAABAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACQAHAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAMAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAQAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAcAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwB5AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAHAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAADAHkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAABwAAAAAAAAcAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 1,2: ind: 1,2 - tiles: HQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAALAAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAGBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: HQAAAAABAB0AAAAAAwB5AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAMAWQAAAAADAHkAAAAAAAAsAAAAAAAAeQAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAFkAAAAAAAAsAAAAAAAALAAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAACwAAAAAAAB5AAAAAAAABwAAAAAGAAcAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAcAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAegAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,1: ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAIAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAgB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAMAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAQAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAHQAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAHAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAAB0AAAAAAAB5AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAMBwAAAAAABwAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAAdAAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAALAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB4AAAAAAAAeAAAAAAAACwAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAEAeQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAcAAAAADAAHAAAAAAAABwAAAAAAAHgAAAAAAAAsAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAHkAAAAAAAAHAAAAAAgABwAAAAAAAAcAAAAAAAAHAAAAAAMABwAAAAAAAAcAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAegAAAAAAAHoAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAABwAAAAAAAAcAAAAABgAHAAAAAAAABwAAAAAAAAcAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAcAAAAAAAAHAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAwBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 0,3: ind: 0,3 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIeQAAAAAAeQAAAAAAHQAAAAABEQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAFeQAAAAAAeQAAAAAANgAAAAAAHQAAAAACEQAAAAAAHQAAAAAAEQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAAeQAAAAAANgAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAACHQAAAAAANgAAAAAAHQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAGBwAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAAFBwAAAAAABwAAAAAMBwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAgAeQAAAAAAAHkAAAAAAAAdAAAAAAEAEQAAAAAAABEAAAAAAAAdAAAAAAMAEQAAAAAAABEAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAKAAcAAAAAAAAHAAAAAAAABwAAAAAFAHkAAAAAAAB5AAAAAAAANgAAAAAAAB0AAAAAAgARAAAAAAAAHQAAAAAAABEAAAAAAAAdAAAAAAMANgAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAcAAAAAAAB5AAAAAAAAeQAAAAAAADYAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABADYAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAADAAHAAAAAAAAeQAAAAAAAHkAAAAAAAA2AAAAAAAAHQAAAAAAAHkAAAAAAAA2AAAAAAAAeQAAAAAAAB0AAAAAAQA2AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAANgAAAAAAAB0AAAAAAgAdAAAAAAAANgAAAAAAAB0AAAAAAAAdAAAAAAMANgAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB5AAAAAAAAeQAAAAAAADYAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADADYAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEAAcAAAAABgAHAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAHAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAACAAHAAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAADAAHAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAcAAAAAAAAHAAAAAAgABwAAAAAHAAcAAAAAAAAHAAAAAAUABwAAAAAAAAcAAAAADAAHAAAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAABQAHAAAAAAQABwAAAAAAAAcAAAAAAAAHAAAAAAQABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,3: ind: 1,3 - tiles: eQAAAAAABwAAAAAABwAAAAAEBwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eQAAAAAAAAcAAAAAAAAHAAAAAAQABwAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,2: ind: -2,2 - tiles: eQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAABQAAAAABeQAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAABeQAAAAAABwAAAAAGAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAGeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAEBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAACAHkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAQAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAAUAAAAAAQB5AAAAAAAAdgAAAAABAHYAAAAAAQB2AAAAAAEAdgAAAAADAHYAAAAAAQB5AAAAAAAABwAAAAAGAAAAAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAEAeQAAAAAAAHYAAAAAAAB2AAAAAAAAeQAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACgAHAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAYAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAABwAAAAAGAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABgAHAAAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAcABwAAAAAEAAcAAAAACQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAQABwAAAAABAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,0: ind: 2,0 - tiles: eQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,-1: ind: 2,-1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA - version: 6 + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAA== + version: 7 1,-1: ind: 1,-1 - tiles: eQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAAgAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAD - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAADAHYAAAAAAQB5AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAUABwAAAAAGAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAMAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAAAAAcAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAA+AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAHQAAAAACAFkAAAAAAgBZAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAB0AAAAAAQBZAAAAAAEAWQAAAAABAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAAACAAAAAAEAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAA== + version: 7 0,-2: ind: 0,-2 - tiles: WQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAANgAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAADbAAAAAABbAAAAAAAWQAAAAABWQAAAAADHQAAAAAAWQAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABbAAAAAABbAAAAAACWQAAAAACWQAAAAADHQAAAAABWQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAWQAAAAABEQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADHQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAADHQAAAAADeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACWQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 + tiles: WQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAAAADYAAAAAAABZAAAAAAMAWQAAAAADAHkAAAAAAAAdAAAAAAMAHQAAAAADAHkAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAwBsAAAAAAEAbAAAAAAAAFkAAAAAAQBZAAAAAAMAHQAAAAAAAFkAAAAAAAA2AAAAAAAANgAAAAAAADYAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAgB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAbAAAAAABAGwAAAAAAgBZAAAAAAIAWQAAAAADAB0AAAAAAQBZAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAAAdAAAAAAAAWQAAAAABABEAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAMAHQAAAAABAB0AAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAACAHkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAMAeQAAAAAAAB0AAAAAAAAdAAAAAAMAeQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAQAdAAAAAAIAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAIAWQAAAAABAFkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAEAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAQAdAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAEAeQAAAAAAABEAAAAAAAAdAAAAAAAAEQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAgBZAAAAAAMAHQAAAAADAHkAAAAAAAAdAAAAAAIAHQAAAAADAHkAAAAAAAARAAAAAAAAHQAAAAAAABEAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAIAWQAAAAADAB0AAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAbAAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABbAAAAAABbAAAAAADeQAAAAAAbAAAAAABbAAAAAADbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAACeQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAABeQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAgB5AAAAAAAAbAAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAHkAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAMAeQAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAACAGwAAAAAAwB5AAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAEAeQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAADAHkAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAEAbAAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAgB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAEAbAAAAAABAHkAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAwB5AAAAAAAAbAAAAAADAGwAAAAAAwB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAADAHkAAAAAAABsAAAAAAMAbAAAAAACAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAQBsAAAAAAAAbAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAwBsAAAAAAIAbAAAAAACAGwAAAAAAABsAAAAAAEAbAAAAAABAGwAAAAAAwBsAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAACAGwAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAgBsAAAAAAEAbAAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAQBsAAAAAAEAbAAAAAADAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAABsAAAAAAEAbAAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAGwAAAAAAQBsAAAAAAEAeQAAAAAAAGwAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAgBsAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAABZAAAAAAMAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAQBsAAAAAAMAbAAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAADAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAWQAAAAABAGwAAAAAAgB5AAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAIAbAAAAAADAGwAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAwA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAA== + version: 7 -1,-3: ind: -1,-3 - tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADPgAAAAAAPgAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAD - version: 6 + tiles: AAAAAAAAAHgAAAAAAAAvAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAABAC8AAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAALwAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAwAvAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAC8AAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEALwAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAEAWQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAABAFkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAADAD4AAAAAAAA+AAAAAAAAHQAAAAADAB0AAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAADAA== + version: 7 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACNgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAcAAAAAAAAHAAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAAB5AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAgB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgA2AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAABsAAAAAAIAeQAAAAAAAB0AAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAADAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAHQAAAAABADYAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAEAWQAAAAACAGgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAvAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAC8AAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,-2: ind: 1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAABHQAAAAABeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAADbAAAAAAAbAAAAAABbAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAADbAAAAAABbAAAAAACbAAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAHQAAAAABaAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAKHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABWQAAAAACWQAAAAADWQAAAAADdgAAAAADdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAABeQAAAAAABwAAAAAABwAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAAAdgAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAaQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAABwAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAMeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAA - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAE0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAATQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAQAdAAAAAAEAeQAAAAAAAGgAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAwBsAAAAAAAAbAAAAAABAGwAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAADAHkAAAAAAABZAAAAAAEAHQAAAAADAHkAAAAAAABoAAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAMAbAAAAAABAGwAAAAAAgBsAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAACAB0AAAAAAAAdAAAAAAEAaAAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAB0AAAAAAQAdAAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAQB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAABAB0AAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAcAAAAACgAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAMAdgAAAAADAHYAAAAAAwB2AAAAAAEAdgAAAAAAAHYAAAAAAwB2AAAAAAEAeQAAAAAAAAcAAAAAAAAHAAAAAAEAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAACAHYAAAAAAQB2AAAAAAAAdgAAAAACAHkAAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAgB2AAAAAAMAeQAAAAAAAAcAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAEAdgAAAAACAHYAAAAAAQB5AAAAAAAABwAAAAAAAAcAAAAAAAB5AAAAAAAAaQAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAACAHkAAAAAAAAHAAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAMAdgAAAAAAAHYAAAAAAAB5AAAAAAAAeQAAAAAAAAcAAAAAAAAHAAAAAAwAeQAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAAAAHYAAAAAAQB5AAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + version: 7 2,-2: ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAJBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAcAAAAAAAAHAAAAAAkABwAAAAAAAAcAAAAACQAHAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAAAHQAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAEAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAAB5AAAAAAAABwAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAEAeQAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAMAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAAB5AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAMAeQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAcAAAAAAAAHAAAAAAUABwAAAAAAAAcAAAAABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAegAAAAAAAHoAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMAAcAAAAACgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAoABwAAAAAMAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAQABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAABwAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAACgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAIAeQAAAAAAAAcAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAA== + version: 7 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAHBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAEAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAABAAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAJAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAEAAcAAAAABwAHAAAAAAYABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAgABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAACAHkAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAgB5AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAA== + version: 7 -3,-1: ind: -3,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAD - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAB0AAAAAAQBZAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAEAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAgB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAABAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAaAAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAADAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAADAA== + version: 7 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAABAAAAAADdgAAAAAAdgAAAAABdgAAAAACdgAAAAACAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABBAAAAAACdgAAAAAAdgAAAAACdgAAAAACAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABAAAAAAGdgAAAAACdgAAAAACdgAAAAADdgAAAAADBAAAAAAGBAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAB - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAHAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAHkAAAAAAAA6AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAOgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAAAAAQAAAAAAwB2AAAAAAAAdgAAAAABAHYAAAAAAgB2AAAAAAIAAAAAAAAAAAAAAAAAAAB5AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAEABAAAAAACAHYAAAAAAAB2AAAAAAIAdgAAAAACAAAAAAAAAAAAAAAAAAAAeQAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAQAAAAABgB2AAAAAAIAdgAAAAACAHYAAAAAAwB2AAAAAAMABAAAAAAGAAQAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAACAHYAAAAAAgB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAA+AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAD4AAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAAAACIAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAAAiAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAGkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAHQAAAAABAA== + version: 7 -2,-2: ind: -2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAABPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAABPgAAAAAAPgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADPgAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAACHQAAAAACHQAAAAADHQAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAADdgAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAHQAAAAAAHQAAAAACHQAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADbAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAbAAAAAAD - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAABAHkAAAAAAABsAAAAAAAAbAAAAAADAHkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAQB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAeQAAAAAAAGwAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAwBsAAAAAAMAbAAAAAADAGwAAAAAAgB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAADAHkAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgB5AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAADAHkAAAAAAABsAAAAAAIAbAAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAgA+AAAAAAAAPgAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAGwAAAAAAgBsAAAAAAIAbAAAAAABAGwAAAAAAgBsAAAAAAMAbAAAAAADAGwAAAAAAQBsAAAAAAAAbAAAAAACAGwAAAAAAgBsAAAAAAEAPgAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAABAD4AAAAAAAA+AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAABAGwAAAAAAwA+AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAAAAHYAAAAAAwB2AAAAAAAAdgAAAAADAHYAAAAAAwB2AAAAAAMAeQAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAIAdgAAAAACAHYAAAAAAgB2AAAAAAIAdgAAAAACAHYAAAAAAgB2AAAAAAAAdgAAAAACAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAADAHYAAAAAAQB2AAAAAAIAdgAAAAABAHYAAAAAAQB2AAAAAAMAdgAAAAADAHYAAAAAAgB5AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAAAeQAAAAAAAGwAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAgB2AAAAAAEAdgAAAAABAHYAAAAAAgB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAIAeQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAABAB0AAAAAAwBsAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAAAdgAAAAABAHYAAAAAAwB2AAAAAAAAdgAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQB5AAAAAAAAbAAAAAADAA== + version: 7 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABDgAAAAACeQAAAAAADgAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABDgAAAAABDgAAAAAADgAAAAAADgAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAIQAAAAABIQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAABDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAIQAAAAAAIQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAADdgAAAAADdgAAAAACeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAB - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAgAOAAAAAAEADgAAAAACAHkAAAAAAAAOAAAAAAAADgAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAIADgAAAAABAA4AAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAwB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAAAACEAAAAAAQAhAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABAA4AAAAAAQAOAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAhAAAAAAAAIQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHYAAAAAAQB2AAAAAAAAdgAAAAADAHkAAAAAAAAdAAAAAAAAHQAAAAADAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAwB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAdgAAAAADAHYAAAAAAwB2AAAAAAIAeQAAAAAAAHYAAAAAAgB2AAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAABAB0AAAAAAwB5AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAMAHQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAUAAAAAAAAHkAAAAAAAB2AAAAAAMAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAiAAAAAAAAHQAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAB0AAAAAAgAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAIgAAAAADAB0AAAAAAQB5AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAABAA== + version: 7 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAeQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAKBwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAIBwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAIBwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAADAAcAAAAAAAB5AAAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAAAAAcAAAAACgAHAAAAAAAAeQAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAACwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAEAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAgAHAAAAAAYABwAAAAAAAAcAAAAAAAAHAAAAAAgABwAAAAAKAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABAAHAAAAAAgABwAAAAAAAAcAAAAABAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALAAcAAAAAAAAHAAAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,1: ind: -3,1 - tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAJeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAaQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAaQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAADaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACHQAAAAABHQAAAAACaQAAAAAAeQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAABHQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAALeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAB - version: 6 + tiles: eQAAAAAAAE0AAAAAAAB5AAAAAAAATQAAAAAAAHkAAAAAAABNAAAAAAAAeQAAAAAAAAcAAAAACQB5AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAAAdgAAAAAAAHYAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABNAAAAAAAAeQAAAAAAAE0AAAAAAAB5AAAAAAAATQAAAAAAAHkAAAAAAAAHAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAATQAAAAAAAHkAAAAAAABNAAAAAAAAeQAAAAAAAE0AAAAAAAB5AAAAAAAABwAAAAAAAHkAAAAAAABpAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAeQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAcAAAAAAAB5AAAAAAAAaQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAHAAAAAAAAeQAAAAAAAGkAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAwB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAGkAAAAAAAAdAAAAAAMAaQAAAAAAAGkAAAAAAAB5AAAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAgBpAAAAAAAAeQAAAAAAAGkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAsAeQAAAAAAAHkAAAAAAABpAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAAAaQAAAAAAAHkAAAAAAABpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAADAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAQB5AAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAcABwAAAAAAAAcAAAAAAAAHAAAAAAsAeQAAAAAAAFkAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAKAHkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB5AAAAAAAAWQAAAAABAA== + version: 7 -3,0: ind: -3,0 - tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAACaAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAADWQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAKeQAAAAAAHQAAAAABHQAAAAADHQAAAAABdgAAAAADdgAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAWQAAAAAB - version: 6 + tiles: aAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAGgAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgBoAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAHkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaQAAAAAAAGkAAAAAAABZAAAAAAMAWQAAAAABAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAWQAAAAADAFkAAAAAAABpAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAMAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAwB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAABwAAAAAKAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAQB2AAAAAAMAdgAAAAADAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAcAAAAABwB5AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAAAdgAAAAABAHYAAAAAAAB5AAAAAAAAWQAAAAABAA== + version: 7 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAABWQAAAAABWQAAAAAAeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAAAWQAAAAADWQAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAUABwAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAegAAAAAAAHkAAAAAAAAsAAAAAAAALAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAACwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAAAbAAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAQBZAAAAAAEAWQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAAAWQAAAAADAFkAAAAAAgBsAAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 -4,0: ind: -4,0 - tiles: eAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAAwAAAAAAaQAAAAAAaQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAABQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 + tiles: eAAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAHgAAAAAAAADAAAAAAAAaQAAAAAAAGkAAAAAAAAFAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAwAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAAUAAAAAAwB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAMeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAIeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACAAAAAAAABwAAAAADBwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAHBwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAABAAcAAAAAAAAHAAAAAAwAeQAAAAAAAGgAAAAAAABpAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAEAHQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAYAeQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAACAB5AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAABAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAgAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAIAAAAAAAAAAAcAAAAAAwAHAAAAAAoABwAAAAAIAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAABAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAegAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAGAAcAAAAACQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAegAAAAAAAHoAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAABwAAAAAAAAcAAAAACAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAUABwAAAAAKAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAkABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAeQAAAAAAAHkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAHAAcAAAAABwAHAAAAAAAABwAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAA== + version: 7 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAwABwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAYABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACQB5AAAAAAAAaAAAAAAAAGkAAAAAAABoAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABgAHAAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAA== + version: 7 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAA== + version: 7 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAABNAAAAAAAAeQAAAAAAAE0AAAAAAAB5AAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAATQAAAAAAAHkAAAAAAABNAAAAAAAAeQAAAAAAAE0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAE0AAAAAAAB5AAAAAAAATQAAAAAAAHkAAAAAAABNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAAgAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABAgAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAwB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAEAaAAAAAAAAAIAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAEAAgAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + version: 7 4,-1: ind: 4,-1 - tiles: eAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAHBwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAoABwAAAAAAAAcAAAAABwAHAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,0: ind: 3,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,0: ind: 4,0 - tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,1: ind: 2,1 - tiles: eQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: eQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAABwAAAAAAAA== + version: 7 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -2172,11 +2172,6 @@ entities: 1411: -27,3 1412: -27,4 1413: -27,5 - 1420: -27,7 - 1421: -27,8 - 1422: -26,8 - 1423: -25,8 - 1424: -24,8 1425: -24,9 1428: -18,20 1429: -17,20 @@ -4683,7 +4678,7 @@ entities: 4: 2184 -13,4: 3: 2184 - 6: 546 + 5: 546 -12,5: 0: 1 1: 3856 @@ -4692,7 +4687,7 @@ entities: -11,5: 1: 272 -11,4: - 5: 546 + 6: 546 -11,7: 0: 35904 -11,3: @@ -5016,6 +5011,8 @@ entities: temperature: 293.15 moles: - 0 + - 0 + - 0 - 6666.982 - 0 - 0 @@ -5025,14 +5022,10 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: - 0 - - 0 - - 0 - 6666.982 - 0 - 0 @@ -5042,11 +5035,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 chunkSize: 4 - type: BecomesStation id: Omega - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: RadiationGridResistance - type: GravityShake shakeTimes: 10 @@ -5054,6 +5050,7 @@ entities: - type: SpreaderGrid - type: GridPathfinding - type: NavMap + - type: ImplicitRoof - proto: AcousticGuitarInstrument entities: - uid: 1755 @@ -5066,55 +5063,6 @@ entities: - type: Transform pos: -49.383278,-8.450993 parent: 4812 -- proto: ActionStethoscope - entities: - - uid: 917 - mapInit: true - paused: true - components: - - type: Transform - parent: 7580 - - type: EntityTargetAction - originalIconColor: '#FFFFFFFF' - container: 7580 -- proto: ActionToggleLight - entities: - - uid: 6594 - components: - - type: Transform - parent: 12120 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 12120 - - uid: 7927 - mapInit: true - paused: true - components: - - type: Transform - parent: 7926 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 7926 - - uid: 8328 - components: - - type: Transform - parent: 6409 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6409 - - uid: 8638 - components: - - type: Transform - parent: 1481 - - type: InstantAction - container: 1481 - - uid: 9825 - components: - - type: Transform - parent: 10704 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 10704 - proto: AirAlarm entities: - uid: 729 @@ -33826,20 +33774,6 @@ entities: - type: Transform pos: -42.855858,-7.1805997 parent: 4812 - - type: HandheldLight - toggleActionEntity: 6594 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 6594 - - type: ActionsContainer - proto: ClothingHeadHatOutlawHat entities: - uid: 9510 @@ -34046,13 +33980,6 @@ entities: - type: Transform pos: -5.415262,24.019829 parent: 4812 -- proto: ClothingNeckCloakMiner - entities: - - uid: 12989 - components: - - type: Transform - pos: 65.5,-25.5 - parent: 4812 - proto: ClothingNeckCloakTrans entities: - uid: 4827 @@ -34133,14 +34060,6 @@ entities: - type: Transform pos: -18.519077,-23.380693 parent: 4812 - - type: Stethoscope - actionEntity: 917 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 917 - proto: ClothingNeckTieRed entities: - uid: 10922 @@ -34999,12 +34918,6 @@ entities: - type: Transform pos: -8.5,34.5 parent: 4812 - - uid: 12672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 - parent: 4812 - uid: 12975 components: - type: Transform @@ -35051,6 +34964,14 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,16.5 parent: 4812 +- proto: ComputerSalvageJobBoard + entities: + - uid: 12672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,13.5 + parent: 4812 - proto: ComputerShuttleCargo entities: - uid: 2754 @@ -42170,20 +42091,6 @@ entities: - type: Transform pos: -30.505053,10.627045 parent: 4812 - - type: HandheldLight - toggleActionEntity: 7927 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 7927 - - type: ActionsContainer - proto: Floodlight entities: - uid: 11744 @@ -63478,22 +63385,8 @@ entities: - type: Transform pos: 24.580408,-19.166311 parent: 4812 - - type: HandheldLight - toggleActionEntity: 8638 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 8638 - type: Physics canCollide: True - - type: ActionsContainer - uid: 1520 components: - type: Transform @@ -63595,26 +63488,8 @@ entities: - type: Transform pos: -4.4936132,-15.203495 parent: 4812 - - type: HandheldLight - toggleActionEntity: 8328 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 8328 - type: Physics canCollide: True - - type: ActionsContainer - uid: 7077 components: - type: Transform @@ -63650,26 +63525,8 @@ entities: - type: Transform pos: -28.458933,-5.183518 parent: 4812 - - type: HandheldLight - toggleActionEntity: 9825 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 9825 - type: Physics canCollide: True - - type: ActionsContainer - uid: 10811 components: - type: Transform @@ -63846,39 +63703,6 @@ entities: 9455: - - Pressed - Toggle - - uid: 8728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-0.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 9828: - - - Pressed - - Toggle - - uid: 13618 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,7.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 9455: - - - Pressed - - Toggle - - uid: 13619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,2.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 9828: - - - Pressed - - Toggle - proto: LockableButtonChiefEngineer entities: - uid: 13776 @@ -63920,6 +63744,19 @@ entities: 7635: - - Pressed - Toggle +- proto: LockableButtonEngineering + entities: + - uid: 8332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,2.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9828: + - - Pressed + - Toggle - proto: LockableButtonHeadOfPersonnel entities: - uid: 13858 @@ -72814,6 +72651,12 @@ entities: - type: Transform pos: -35.5,18.5 parent: 4812 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: SeedExtractor entities: - uid: 1086 @@ -73612,6 +73455,28 @@ entities: 7858: - - Pressed - Open + - uid: 8185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-0.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9828: + - - Pressed + - Toggle + - uid: 8255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,7.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9455: + - - Pressed + - Toggle - uid: 8447 components: - type: Transform @@ -75951,6 +75816,11 @@ entities: - type: Transform pos: -30.5,18.5 parent: 4812 + - uid: 14185 + components: + - type: Transform + pos: -30.5,16.5 + parent: 4812 - proto: SpawnPointSecurityOfficer entities: - uid: 13981 @@ -76370,33 +76240,6 @@ entities: - type: Transform pos: -30.5,5.5 parent: 4812 -- proto: SuitStorageBase - entities: - - uid: 8185 - components: - - type: Transform - pos: -38.5,18.5 - parent: 4812 - - uid: 8255 - components: - - type: Transform - pos: -38.5,20.5 - parent: 4812 - - uid: 8332 - components: - - type: Transform - pos: -38.5,19.5 - parent: 4812 - - uid: 8423 - components: - - type: Transform - pos: -35.5,25.5 - parent: 4812 - - uid: 10463 - components: - - type: Transform - pos: -37.5,25.5 - parent: 4812 - proto: SuitStorageCaptain entities: - uid: 746 @@ -76476,6 +76319,33 @@ entities: - type: Transform pos: 27.5,-17.5 parent: 4812 +- proto: SuitStorageSec + entities: + - uid: 8423 + components: + - type: Transform + pos: -35.5,25.5 + parent: 4812 + - uid: 8728 + components: + - type: Transform + pos: -38.5,20.5 + parent: 4812 + - uid: 10463 + components: + - type: Transform + pos: -37.5,25.5 + parent: 4812 + - uid: 13618 + components: + - type: Transform + pos: -38.5,18.5 + parent: 4812 + - uid: 13619 + components: + - type: Transform + pos: -38.5,19.5 + parent: 4812 - proto: SuitStorageWarden entities: - uid: 7704 @@ -80030,6 +79900,12 @@ entities: - type: Transform pos: 5.5,24.5 parent: 4812 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - type: MaterialStorage materialWhiteList: - Cloth diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index 21316998bb..4b21699902 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 254.1.0 + engineVersion: 260.1.0 forkId: "" forkVersion: "" - time: 04/19/2025 11:10:37 - entityCount: 15485 + time: 05/20/2025 22:12:43 + entityCount: 15479 maps: - 126 grids: @@ -61,244 +61,244 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAADWwAAAAACewAAAAAAeAAAAAADeAAAAAADeAAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAeAAAAAADeAAAAAABeAAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAAAHQAAAAAAeAAAAAAAeAAAAAABeAAAAAACeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABewAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAABewAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAAB - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAQB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAMAWwAAAAABAFsAAAAAAwB7AAAAAAAAeAAAAAADAHgAAAAAAQB4AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAewAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAADAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAB0AAAAAAQB4AAAAAAEAeAAAAAACAHgAAAAAAgB4AAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAwB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAIAWwAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAA== + version: 7 -1,0: ind: -1,0 - tiles: WwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAADWwAAAAADewAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAWwAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAA - version: 6 + tiles: WwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAABAHsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwB7AAAAAAAAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAA== + version: 7 0,0: ind: 0,0 - tiles: WwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAADewAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAACeAAAAAACeAAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAADewAAAAAAeAAAAAADeAAAAAACeAAAAAAAeAAAAAACeAAAAAABeAAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAADeAAAAAACeAAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAACewAAAAAAeAAAAAABeAAAAAACeAAAAAAAeAAAAAABeAAAAAACewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACewAAAAAAeAAAAAACeAAAAAAAeAAAAAABeAAAAAADeAAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABewAAAAAALAAAAAAAUAAAAAAALAAAAAAAUAAAAAAALAAAAAAAewAAAAAAeAAAAAADeAAAAAABAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAACewAAAAAALAAAAAAAUAAAAAAALAAAAAAALAAAAAAAUAAAAAAAewAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAeAAAAAABeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAeAAAAAACeAAAAAAA - version: 6 + tiles: WwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAgBbAAAAAAEAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAABAHsAAAAAAAB4AAAAAAAAeAAAAAABAHgAAAAAAwB4AAAAAAAAeAAAAAAAAHgAAAAAAgB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAAAAFsAAAAAAwB7AAAAAAAAeAAAAAAAAHgAAAAAAwB4AAAAAAIAeAAAAAABAHgAAAAAAwB4AAAAAAMAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAewAAAAAAAHgAAAAAAwB4AAAAAAIAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAACAGsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAADAHsAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAQB4AAAAAAMAeAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAgB7AAAAAAAAeAAAAAADAHgAAAAAAwB4AAAAAAMAeAAAAAAAAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAAAAFsAAAAAAgBbAAAAAAIAewAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAgAAAAAAAAAAAAAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAABAHsAAAAAAAAsAAAAAAAAUAAAAAAAACwAAAAAAABQAAAAAAAALAAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAACAAAAAAAAAAAAAAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAACAFsAAAAAAAB7AAAAAAAALAAAAAAAAFAAAAAAAAAsAAAAAAAALAAAAAAAAFAAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB4AAAAAAEAeAAAAAABAA== + version: 7 0,-1: ind: 0,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAADewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAADewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAADewAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACewAAAAAAHQAAAAAAHQAAAAABawAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAACWwAAAAADWwAAAAABewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAADWwAAAAACWwAAAAADewAAAAAAHQAAAAADHQAAAAACewAAAAAAWwAAAAACWwAAAAAAHQAAAAABHQAAAAADHQAAAAADewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAAD - version: 6 + tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAgBrAAAAAAAAewAAAAAAAHsAAAAAAAA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAADAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAMAWwAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAADWwAAAAADWwAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: ewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAWwAAAAADWwAAAAACWwAAAAABegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAWwAAAAADWwAAAAADWwAAAAACegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAACAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAGoAAAAAAABrAAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAGsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAACeAAAAAABeAAAAAACeAAAAAADeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAACeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAABWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADewAAAAAAHQAAAAADHQAAAAACHQAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAABewAAAAAAIgAAAAABIgAAAAAAIgAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAADewAAAAAAIgAAAAADIgAAAAABIgAAAAAAewAAAAAAewAAAAAA - version: 6 + tiles: egAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAgBbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAwB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAEAewAAAAAAACIAAAAAAwAiAAAAAAEAIgAAAAACAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAAiAAAAAAEAIgAAAAADACIAAAAAAQB7AAAAAAAAewAAAAAAAA== + version: 7 1,0: ind: 1,0 - tiles: WwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAACewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAABewAAAAAABQAAAAACBQAAAAAABQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAPQAAAAAAbgAAAAAAbgAAAAADPQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAABewAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAPQAAAAAAbgAAAAADbgAAAAACPQAAAAAAawAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAPQAAAAAAbgAAAAADbgAAAAABPQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAPQAAAAAAbgAAAAABbgAAAAAAPQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAADDgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAHQAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADDgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADewAAAAAAWwAAAAACWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAACeAAAAAACewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAADeAAAAAADeAAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAADewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAA - version: 6 + tiles: WwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAQBbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAAAAFsAAAAAAwB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgB7AAAAAAAABQAAAAABAAUAAAAAAgAFAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAwB7AAAAAAAAPQAAAAAAAG4AAAAAAgBuAAAAAAMAPQAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAIAewAAAAAAAD0AAAAAAABuAAAAAAAAbgAAAAAAAD0AAAAAAABrAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAQBuAAAAAAIAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAA9AAAAAAAAbgAAAAACAG4AAAAAAQA9AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAHsAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB7AAAAAAAAPQAAAAAAAG4AAAAAAQBuAAAAAAAAPQAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAwB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAACAA4AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAHQAAAAADAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAAAOAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAADAHsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAwB7AAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAwBbAAAAAAMAWwAAAAACAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAAB4AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAMAeAAAAAAAAHgAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAgB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAA== + version: 7 1,-1: ind: 1,-1 - tiles: ewAAAAAAewAAAAAAawAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACHQAAAAACewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABeAAAAAABHQAAAAAAHQAAAAACewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAACHQAAAAABHQAAAAADHQAAAAACWwAAAAABWwAAAAAAWwAAAAABewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAABHQAAAAACHQAAAAADHQAAAAACWwAAAAACWwAAAAADWwAAAAABHQAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAACHQAAAAABHQAAAAABewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAADgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACewAAAAAAPgAAAAAAPgAAAAAADgAAAAACHQAAAAADHQAAAAABeAAAAAADeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAABQAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADDgAAAAADDgAAAAADDgAAAAABHQAAAAAAHQAAAAAAeAAAAAADeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAABQAAAAACWwAAAAABWwAAAAAAWwAAAAAAewAAAAAADgAAAAABDgAAAAADDgAAAAAAHQAAAAADHQAAAAAAeAAAAAACeAAAAAADeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAADgAAAAAADgAAAAADDgAAAAABWwAAAAADewAAAAAAeAAAAAAAeAAAAAABeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAADgAAAAADDgAAAAAADgAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAB0AAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB4AAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAIAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAIAeAAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAACAHsAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAHgAAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAgAdAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAAB4AAAAAAAAHQAAAAACAB0AAAAAAgB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAAB7AAAAAAAAPgAAAAAAAD4AAAAAAAAOAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAADgAAAAACAB0AAAAAAgAdAAAAAAAAeAAAAAACAHgAAAAAAwB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAABQAAAAACAFsAAAAAAQBbAAAAAAMAWwAAAAABAFsAAAAAAwAOAAAAAAMADgAAAAABAA4AAAAAAwAdAAAAAAIAHQAAAAADAHgAAAAAAAB4AAAAAAAAeAAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAAUAAAAAAwBbAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAADgAAAAABAA4AAAAAAAAOAAAAAAMAHQAAAAAAAB0AAAAAAwB4AAAAAAEAeAAAAAADAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAewAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAFsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAgB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAACAHsAAAAAAAAOAAAAAAMADgAAAAAAAA4AAAAAAgBbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAEAWwAAAAABAA== + version: 7 1,-2: ind: 1,-2 - tiles: agAAAAAAWwAAAAABWwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAADewAAAAAAWwAAAAAAWwAAAAABewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAWwAAAAABWwAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAADewAAAAAAWwAAAAADWwAAAAACWwAAAAADewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAADewAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAABWwAAAAADWwAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAACHQAAAAACewAAAAAAWwAAAAADWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAHQAAAAABewAAAAAAWwAAAAABWwAAAAAAWwAAAAACHQAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAawAAAAAAHQAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAHQAAAAACHQAAAAACWwAAAAACWwAAAAADWwAAAAADewAAAAAAWwAAAAADWwAAAAACWwAAAAADEQAAAAAAewAAAAAAHQAAAAADewAAAAAAWwAAAAADWwAAAAABWwAAAAABHQAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAAD - version: 6 + tiles: agAAAAAAAFsAAAAAAwBbAAAAAAEAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAHsAAAAAAABbAAAAAAIAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAwB7AAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAACAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAADAB0AAAAAAwB7AAAAAAAAWwAAAAABAFsAAAAAAwBbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABEAAAAAAAB7AAAAAAAAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAARAAAAAAAAawAAAAAAAB0AAAAAAwB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAHQAAAAACAB0AAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAEQAAAAAAAHsAAAAAAAAdAAAAAAEAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAB0AAAAAAwB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAA== + version: 7 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAeAAAAAABeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAeAAAAAACeAAAAAABeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAWwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAACewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAeAAAAAADeAAAAAAAeAAAAAABHQAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAeAAAAAACeAAAAAABeAAAAAAAHQAAAAADHQAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAADHQAAAAADewAAAAAAWwAAAAACewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAABAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAeAAAAAADAHgAAAAAAAB4AAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAQB4AAAAAAEAeAAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAwB7AAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAADAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAMAeAAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAgAdAAAAAAMAHQAAAAABAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAHQAAAAADAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + version: 7 1,-3: ind: 1,-3 - tiles: AAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACewAAAAAAHQAAAAACWwAAAAACWwAAAAADewAAAAAAWwAAAAABagAAAAAAagAAAAAAagAAAAAAWwAAAAACewAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAABHQAAAAADewAAAAAAHQAAAAADWwAAAAABWwAAAAADewAAAAAAWwAAAAABHQAAAAACewAAAAAAHQAAAAADWwAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAADHQAAAAACewAAAAAAHQAAAAACWwAAAAADWwAAAAAAewAAAAAAWwAAAAABHQAAAAACewAAAAAAHQAAAAAAWwAAAAADewAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAACHQAAAAADewAAAAAAHQAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADHQAAAAABewAAAAAAHQAAAAACWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAAAewAAAAAAHQAAAAACagAAAAAAWwAAAAADewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACewAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAACewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAABWwAAAAABewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAAB - version: 6 + tiles: AAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAIAewAAAAAAAB0AAAAAAwBbAAAAAAEAWwAAAAAAAHsAAAAAAABbAAAAAAMAagAAAAAAAGoAAAAAAABqAAAAAAAAWwAAAAACAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAADAHsAAAAAAAAdAAAAAAAAWwAAAAADAFsAAAAAAQB7AAAAAAAAWwAAAAAAAB0AAAAAAgB7AAAAAAAAHQAAAAADAFsAAAAAAwB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAwB7AAAAAAAAHQAAAAABAFsAAAAAAwBbAAAAAAEAewAAAAAAAFsAAAAAAgAdAAAAAAAAewAAAAAAAB0AAAAAAQBbAAAAAAMAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAIAewAAAAAAAB0AAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAHQAAAAACAHsAAAAAAAAdAAAAAAEAWwAAAAADAFsAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAABAHsAAAAAAAAdAAAAAAIAagAAAAAAAFsAAAAAAQB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAMAWwAAAAABAFsAAAAAAQB7AAAAAAAAWwAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAwB7AAAAAAAAewAAAAAAAFsAAAAAAgB7AAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAFsAAAAAAABbAAAAAAMAewAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAADAA== + version: 7 2,-2: ind: 2,-2 - tiles: WwAAAAACewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAWwAAAAADewAAAAAAagAAAAAABgAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADagAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACagAAAAAAHQAAAAABTQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAA - version: 6 + tiles: WwAAAAABAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAagAAAAAAAAYAAAAAAQBqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAEAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAwBbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBqAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAADAGoAAAAAAAAdAAAAAAMATQAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAA== + version: 7 2,-3: ind: 2,-3 - tiles: ewAAAAAAagAAAAAAWwAAAAADagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAawAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABgAAAAACBgAAAAABHQAAAAADewAAAAAAawAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAHQAAAAAAewAAAAAAawAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAWwAAAAADagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAABewAAAAAAHQAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAHQAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAADawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAWwAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAWwAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAWwAAAAABewAAAAAAagAAAAAABgAAAAADagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAA - version: 6 + tiles: ewAAAAAAAGoAAAAAAABbAAAAAAEAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAYAAAAAAQAGAAAAAAIAHQAAAAADAHsAAAAAAABrAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAB0AAAAAAwB7AAAAAAAAawAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAEAewAAAAAAAFsAAAAAAgBqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAHQAAAAABAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAABAHsAAAAAAAAdAAAAAAEAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABbAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAwB7AAAAAAAAHQAAAAADAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAADAHsAAAAAAABbAAAAAAIAWwAAAAABAGsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAAAewAAAAAAAB0AAAAAAwB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAHsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAFsAAAAAAgB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAEAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAADAHsAAAAAAABqAAAAAAAABgAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAA== + version: 7 1,1: ind: 1,1 - tiles: eAAAAAACewAAAAAABQAAAAABewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAABQAAAAACWwAAAAAAWwAAAAADWwAAAAABewAAAAAAWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAABQAAAAADWwAAAAACWwAAAAAAWwAAAAABewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAABewAAAAAAWwAAAAABWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAACHQAAAAABHQAAAAADHQAAAAACewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAABewAAAAAAeAAAAAABeAAAAAACeAAAAAAAeAAAAAABeAAAAAADeAAAAAACeAAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAABewAAAAAAHQAAAAACHQAAAAACHQAAAAADewAAAAAAeAAAAAADeAAAAAACeAAAAAAAeAAAAAADeAAAAAAAeAAAAAACeAAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAABewAAAAAAHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAeAAAAAAAeAAAAAABeAAAAAADeAAAAAAAeAAAAAAAeAAAAAADeAAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAA - version: 6 + tiles: eAAAAAABAHsAAAAAAAAFAAAAAAEAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAwB7AAAAAAAABQAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAABbAAAAAAMAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAAUAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAQBbAAAAAAMAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAgB7AAAAAAAAWwAAAAAAAFsAAAAAAwB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAABAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAADAHsAAAAAAAB4AAAAAAIAeAAAAAACAHgAAAAAAgB4AAAAAAMAeAAAAAAAAHgAAAAAAAB4AAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAIAWwAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAwB7AAAAAAAAeAAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAAAAHgAAAAAAAB4AAAAAAIAeAAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAewAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAACAHgAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + version: 7 2,0: ind: 2,0 - tiles: WwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAABQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADewAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAABewAAAAAAewAAAAAAPgAAAAAAewAAAAAAPgAAAAAAewAAAAAAPgAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAABewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADHQAAAAABewAAAAAAHQAAAAAAewAAAAAAHQAAAAADewAAAAAAPgAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACHQAAAAABewAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADewAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWwAAAAADWwAAAAAAWwAAAAAAawAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAABewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAANgAAAAAANgAAAAAAHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAABWwAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACewAAAAAAawAAAAAAawAAAAAAewAAAAAAHQAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAAB - version: 6 + tiles: WwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAAFAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAA+AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAEAbgAAAAACAB0AAAAAAQB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAEAewAAAAAAAD4AAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAwAdAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAEAewAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAPgAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAEAawAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAA+AAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgB7AAAAAAAANgAAAAAAADYAAAAAAAAdAAAAAAMAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAHQAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAEAWwAAAAACAA== + version: 7 2,-1: ind: 2,-1 - tiles: WwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAADTQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAABawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAHQAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAADWwAAAAABewAAAAAAeAAAAAADeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABewAAAAAALwAAAAAALwAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAACeAAAAAACewAAAAAAWwAAAAACWwAAAAADWwAAAAACewAAAAAALwAAAAAALwAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAALwAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADDgAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAACWwAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAABDgAAAAADDgAAAAAADgAAAAADDgAAAAABDgAAAAABHQAAAAACHQAAAAACHQAAAAAAewAAAAAAWwAAAAAAOgAAAAAAWwAAAAABWwAAAAABWwAAAAAAOgAAAAAAWwAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAACHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAWwAAAAACOgAAAAAAHQAAAAADHQAAAAABHQAAAAADOgAAAAAAWwAAAAACDgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAADWwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAAADgAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAOgAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAAD - version: 6 + tiles: WwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIATQAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAACAE0AAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAAdAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAMAewAAAAAAAC8AAAAAAAAvAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAeAAAAAACAHgAAAAAAwB4AAAAAAMAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAAAvAAAAAAAALwAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAALwAAAAAAAC8AAAAAAAAOAAAAAAAADgAAAAADAA4AAAAAAwAOAAAAAAIADgAAAAABAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAAADgAAAAABAA4AAAAAAwAOAAAAAAIADgAAAAACAA4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAWwAAAAABADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAABAA4AAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAMAewAAAAAAAFsAAAAAAwA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAOgAAAAAAAFsAAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAQAOAAAAAAIADgAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAABAHsAAAAAAABbAAAAAAAAOgAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAADoAAAAAAABbAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAMADgAAAAABAA4AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAWwAAAAACADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAAAAA4AAAAAAgAOAAAAAAIADgAAAAACAA4AAAAAAAAOAAAAAAMAewAAAAAAAB0AAAAAAQAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQB7AAAAAAAAOgAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAA== + version: 7 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + version: 7 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAewAAAAAAWwAAAAABagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAEAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAA== + version: 7 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAA== + version: 7 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAA== + version: 7 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAA== + version: 7 3,-1: ind: 3,-1 - tiles: ewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAeAAAAAABeAAAAAACeAAAAAACeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAADbgAAAAACewAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAADewAAAAAAWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAADewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAewAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAADewAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADewAAAAAAbgAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAADewAAAAAAewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAADUAAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAACewAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAbgAAAAADbgAAAAAAewAAAAAAbgAAAAACbgAAAAADbgAAAAACewAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAAAbgAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABbgAAAAACewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAADbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAbgAAAAAAewAAAAAA - version: 6 + tiles: ewAAAAAAAAMAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAAAAHgAAAAAAQB4AAAAAAMAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAAAAG4AAAAAAQBuAAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAwB7AAAAAAAAWwAAAAACAFsAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAADAG4AAAAAAQBuAAAAAAAAbgAAAAADAHsAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAAAbgAAAAACAG4AAAAAAwB7AAAAAAAAbgAAAAADAG4AAAAAAQBuAAAAAAAAbgAAAAAAAHsAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAABuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAgB7AAAAAAAAbgAAAAADAG4AAAAAAwBuAAAAAAIAewAAAAAAAG4AAAAAAgBuAAAAAAIAbgAAAAABAG4AAAAAAwB7AAAAAAAAewAAAAAAAG4AAAAAAgBuAAAAAAMAbgAAAAADAG4AAAAAAwBuAAAAAAEAbgAAAAADAG4AAAAAAgBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAEAbgAAAAADAG4AAAAAAgBuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAAAbgAAAAADAG4AAAAAAwBuAAAAAAEAbgAAAAADAG4AAAAAAwBuAAAAAAEAbgAAAAADAFAAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAABAG4AAAAAAQBuAAAAAAMAbgAAAAACAG4AAAAAAQBuAAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAewAAAAAAAG4AAAAAAABuAAAAAAMAewAAAAAAAG4AAAAAAwBuAAAAAAMAbgAAAAABAHsAAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAwBuAAAAAAEAewAAAAAAAHsAAAAAAABuAAAAAAEAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAIAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAAAAG4AAAAAAgBuAAAAAAAAbgAAAAADAHsAAAAAAABuAAAAAAAAbgAAAAABAG4AAAAAAABuAAAAAAAAbgAAAAACAG4AAAAAAQBuAAAAAAEAbgAAAAAAAG4AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAACAG4AAAAAAgB7AAAAAAAAbgAAAAACAG4AAAAAAQBuAAAAAAIAbgAAAAAAAG4AAAAAAwB7AAAAAAAAbgAAAAABAG4AAAAAAABuAAAAAAMAHQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQBuAAAAAAAAewAAAAAAAA== + version: 7 3,-2: ind: 3,-2 - tiles: TQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAABewAAAAAAeAAAAAAA - version: 6 + tiles: TQAAAAAAAE0AAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAAMAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAABAHgAAAAAAgB7AAAAAAAAeAAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABAAAAAAAAegAAAAAAegAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAABAAAAAAAAegAAAAAAegAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAABAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAACAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAACAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAwAAAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAADAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAACAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAA== + version: 7 1,2: ind: 1,2 - tiles: ewAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADeAAAAAACeAAAAAABeAAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAABeAAAAAADeAAAAAABeAAAAAABeAAAAAACeAAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAADewAAAAAANgAAAAAANgAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAACHQAAAAADHQAAAAADHQAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAAAewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABeAAAAAADewAAAAAAHQAAAAABHQAAAAAAHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAACewAAAAAAHQAAAAACeAAAAAAAewAAAAAAHQAAAAACNgAAAAAAHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAewAAAAAAHQAAAAABeAAAAAADewAAAAAAHQAAAAADNgAAAAAAHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABewAAAAAAHQAAAAADeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAABewAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAAC - version: 6 + tiles: ewAAAAAAAHgAAAAAAwB4AAAAAAMAeAAAAAABAHgAAAAAAAB4AAAAAAEAeAAAAAADAHgAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAIAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAADAHgAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAA2AAAAAAAANgAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAAAewAAAAAAABEAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQB7AAAAAAAAHQAAAAABAHgAAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAewAAAAAAAB0AAAAAAQB4AAAAAAEAewAAAAAAAB0AAAAAAQA2AAAAAAAAHQAAAAAAAHsAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAHsAAAAAAAAdAAAAAAAAeAAAAAAAAHsAAAAAAAAdAAAAAAMANgAAAAAAAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwB7AAAAAAAAHQAAAAADAHgAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAMAewAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAQAAAAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAABAA== + version: 7 2,1: ind: 2,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADewAAAAAAHQAAAAACHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABewAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAACewAAAAAATQAAAAAAHQAAAAABHQAAAAADTQAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAAAHQAAAAADewAAAAAAewAAAAAAHQAAAAADHQAAAAADewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACHQAAAAAAewAAAAAATQAAAAAAHQAAAAACHQAAAAABHQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAADHQAAAAADewAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACHQAAAAACewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAagAAAAAAewAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAAAdAAAAAAIAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAMAHQAAAAACAB0AAAAAAQAdAAAAAAAAHQAAAAACAHsAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAGsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAABAHsAAAAAAAAdAAAAAAEAHQAAAAADAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAADAFsAAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAgB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAewAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAMAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABNAAAAAAAAHQAAAAABAB0AAAAAAgBNAAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAB0AAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAwB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAQAdAAAAAAAAewAAAAAAAE0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgBNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAMAHQAAAAABAHsAAAAAAABNAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEATQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAB0AAAAAAAB7AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBrAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAawAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAA== + version: 7 2,2: ind: 2,2 - tiles: ewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAACNgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAAHQAAAAADewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADeAAAAAACeAAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAAAewAAAAAAeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAADewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAADeAAAAAAAeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA - version: 6 + tiles: ewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABrAAAAAAAANgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAawAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAAAAHgAAAAAAgB4AAAAAAMAeAAAAAACAHgAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB4AAAAAAMAewAAAAAAAHgAAAAAAAB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHgAAAAAAwB4AAAAAAEAeAAAAAACAHsAAAAAAAB4AAAAAAIAeAAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAQB7AAAAAAAAHQAAAAAAAHgAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQB7AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAawAAAAAAAGoAAAAAAABqAAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + version: 7 1,3: ind: 1,3 - tiles: AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAACAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,3: ind: 2,3 - tiles: HQAAAAADewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: HQAAAAADAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,-1: ind: 4,-1 - tiles: ewAAAAAAeAAAAAADeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAABeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAABewAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADewAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAABewAAAAAAbgAAAAABagAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACewAAAAAAbgAAAAAAagAAAAAAewAAAAAA - version: 6 + tiles: ewAAAAAAAHgAAAAAAAB4AAAAAAMAeAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAACAHgAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAgB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAG4AAAAAAgBuAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFAAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAEAbgAAAAAAAG4AAAAAAABuAAAAAAEAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAIAbgAAAAADAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAEAbgAAAAABAG4AAAAAAwBQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAgBuAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAgB7AAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAIAbgAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAEAewAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAgB7AAAAAAAAbgAAAAABAGoAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAMAewAAAAAAAG4AAAAAAgBqAAAAAAAAewAAAAAAAA== + version: 7 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAAAeAAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAA== + version: 7 3,0: ind: 3,0 - tiles: bgAAAAACbgAAAAABbgAAAAABbgAAAAACbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABbgAAAAACbgAAAAADewAAAAAAbgAAAAABbgAAAAAAbgAAAAACewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAABbgAAAAACbgAAAAACbgAAAAACbgAAAAAAbgAAAAACbgAAAAADewAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAABbgAAAAABbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAACbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAAAbgAAAAADewAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAHQAAAAACbgAAAAADbgAAAAACbgAAAAADewAAAAAAHQAAAAABHQAAAAAAewAAAAAAHQAAAAAAeAAAAAADeAAAAAAAeAAAAAACHQAAAAADawAAAAAAawAAAAAAawAAAAAAHQAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAHQAAAAAAawAAAAAAewAAAAAAHQAAAAAAeAAAAAAAeAAAAAACeAAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACewAAAAAAHQAAAAACawAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAHQAAAAABawAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAACHQAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAACbgAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAAD - version: 6 + tiles: bgAAAAABAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAwBuAAAAAAAAbgAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAbgAAAAACAG4AAAAAAQBuAAAAAAEAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAADAG4AAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAwBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAIAbgAAAAABAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAAAHQAAAAABAG4AAAAAAABuAAAAAAEAbgAAAAABAHsAAAAAAAAdAAAAAAEAHQAAAAAAAHsAAAAAAAAdAAAAAAAAeAAAAAADAHgAAAAAAwB4AAAAAAMAHQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAB0AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAgB7AAAAAAAAHQAAAAABAGsAAAAAAAB7AAAAAAAAHQAAAAABAHgAAAAAAQB4AAAAAAMAeAAAAAACAB0AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAABrAAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAMAawAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAEAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAADAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAwBuAAAAAAEAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAAAAB0AAAAAAgBuAAAAAAEAbgAAAAABAG4AAAAAAQBuAAAAAAEAbgAAAAADAG4AAAAAAwBuAAAAAAAAbgAAAAACAG4AAAAAAwBuAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAdAAAAAAMAbgAAAAAAAG4AAAAAAgBuAAAAAAMAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAABAA== + version: 7 4,0: ind: 4,0 - tiles: bgAAAAADbgAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAACewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABbgAAAAABbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAABbgAAAAACbgAAAAADbgAAAAABbgAAAAACbgAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAADewAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAACewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAABewAAAAAAHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABbgAAAAADewAAAAAAHQAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABWwAAAAABbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAWwAAAAACWwAAAAACWwAAAAADHQAAAAADHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAAAbgAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: bgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAABAG4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAIAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAwBuAAAAAAIAewAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAgBuAAAAAAMAbgAAAAADAHsAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAACAFsAAAAAAgBuAAAAAAEAbgAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAMAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAACAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAIAewAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAbgAAAAABAG4AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,0: ind: 5,0 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAeAAAAAACewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAADewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAQAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHsAAAAAAAB4AAAAAAIAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,1: ind: 3,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAbgAAAAACbgAAAAACewAAAAAAbgAAAAADbgAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAAAbgAAAAACbgAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAABbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAbgAAAAACbgAAAAAAbgAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAACewAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAABABEAAAAAAAAdAAAAAAMAEQAAAAAAAG4AAAAAAABuAAAAAAIAbgAAAAABAG4AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAbgAAAAACAG4AAAAAAgARAAAAAAAAHQAAAAADABEAAAAAAABuAAAAAAEAbgAAAAAAAG4AAAAAAgBuAAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAADAG4AAAAAAwBuAAAAAAEAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAQBuAAAAAAIAbgAAAAACAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAEAEQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAACAG4AAAAAAQBuAAAAAAMAbgAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAADAHsAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAQBuAAAAAAAAbgAAAAABAG4AAAAAAABuAAAAAAEAbgAAAAADAG4AAAAAAgB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAQBuAAAAAAIAbgAAAAACAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAgBuAAAAAAIAewAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAE0AAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABNAAAAAAAATQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAQAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAQB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAA== + version: 7 3,3: ind: 3,3 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,2: ind: 3,2 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAABHQAAAAACHQAAAAACewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADWwAAAAABWwAAAAABWwAAAAADWwAAAAAAWwAAAAADewAAAAAAHQAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACWwAAAAABWwAAAAADWwAAAAABAgAAAAABWwAAAAABewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAABWwAAAAABWwAAAAADHQAAAAACHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAAAWwAAAAADWwAAAAACewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAABWwAAAAABWwAAAAAAewAAAAAAHQAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAABWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAACWwAAAAAAWwAAAAABHQAAAAACHQAAAAACewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAABewAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAB0AAAAAAQAdAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAACAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAMAewAAAAAAAB0AAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAgACAAAAAAIAWwAAAAACAHsAAAAAAAAdAAAAAAMAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAIAWwAAAAAAAFsAAAAAAwAdAAAAAAAAHQAAAAACAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAFsAAAAAAQBbAAAAAAAAewAAAAAAAB0AAAAAAwB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwBbAAAAAAIAWwAAAAABAHsAAAAAAAAdAAAAAAIAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAACAFsAAAAAAQBbAAAAAAIAHQAAAAAAAB0AAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAgB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + version: 7 4,1: ind: 4,1 - tiles: bgAAAAACewAAAAAAWwAAAAADWwAAAAADWwAAAAACHQAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWwAAAAACWwAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAHQAAAAACHQAAAAABewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAbgAAAAACewAAAAAAWwAAAAABWwAAAAAAewAAAAAAHQAAAAABewAAAAAAHQAAAAAAHQAAAAADAQAAAAABAQAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAACewAAAAAAewAAAAAAYgAAAAAAHQAAAAACHQAAAAADewAAAAAAHQAAAAADHQAAAAAAAQAAAAABAQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAbgAAAAABewAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAABegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAC - version: 6 + tiles: bgAAAAADAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAWwAAAAADAFsAAAAAAgB7AAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAADAGoAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgB7AAAAAAAAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAbgAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAIAAQAAAAACAAEAAAAAAwB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAGIAAAAAAABrAAAAAAAAHQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAAEAAAAAAAABAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAewAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAeAAAAAACAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAATQAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAGsAAAAAAAB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAAQAAAAAAAB7AAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAEAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAB6AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAEAeAAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAegAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAADAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAACAA== + version: 7 4,2: ind: 4,2 - tiles: AAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAeAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAACewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAACegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAABewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAAD - version: 6 + tiles: AAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAGsAAAAAAAB4AAAAAAMAeAAAAAAAAHgAAAAAAgB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHsAAAAAAAB4AAAAAAIAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAgB7AAAAAAAAeAAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABrAAAAAAAAeAAAAAACAHgAAAAAAgB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAAB6AAAAAAAATAAAAAADAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAMAegAAAAAAAEwAAAAAAgBrAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABAHoAAAAAAABMAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgB6AAAAAAAATAAAAAABAA== + version: 7 4,3: ind: 4,3 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgB6AAAAAAAATAAAAAACAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAEAegAAAAAAAEwAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,-1: ind: 5,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAACbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABAG4AAAAAAQBuAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAQBuAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAABuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,2: ind: 5,2 - tiles: ewAAAAAAHQAAAAACewAAAAAAewAAAAAATQAAAAAANgAAAAAATQAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAHQAAAAAAHQAAAAACHQAAAAACewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAABAAAAAAAATAAAAAADegAAAAAATAAAAAACAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAATAAAAAACegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAABegAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAADAAAAAAAATAAAAAADegAAAAAATAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ewAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAE0AAAAAAAA2AAAAAAAATQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAIAHQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAHoAAAAAAABMAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAQB6AAAAAAAATAAAAAACAAAAAAAAAABMAAAAAAEAegAAAAAAAEwAAAAAAQAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAEAegAAAAAAAEwAAAAAAgB6AAAAAAAATAAAAAACAHoAAAAAAABMAAAAAAMAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABAHoAAAAAAABMAAAAAAIAegAAAAAAAEwAAAAAAQB6AAAAAAAATAAAAAABAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAAB6AAAAAAAATAAAAAACAAAAAAAAAABMAAAAAAAAegAAAAAAAEwAAAAAAQB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,3: ind: 5,3 - tiles: egAAAAAATAAAAAACegAAAAAATAAAAAAAegAAAAAATAAAAAAAegAAAAAATAAAAAABAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATAAAAAABegAAAAAATAAAAAADAAAAAAAATAAAAAACegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATAAAAAACegAAAAAATAAAAAACegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: egAAAAAAAEwAAAAAAwB6AAAAAAAATAAAAAADAHoAAAAAAABMAAAAAAAAegAAAAAAAEwAAAAAAQAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABMAAAAAAIAegAAAAAAAEwAAAAAAgAAAAAAAAAATAAAAAAAAHoAAAAAAABMAAAAAAIAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAATAAAAAACAHoAAAAAAABMAAAAAAEAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,-3: ind: 3,-3 - tiles: agAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: agAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAIABgAAAAADAHsAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAATAAAAAABTAAAAAABTAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAewAAAAAATAAAAAABTAAAAAACTAAAAAACewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACHQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAEwAAAAAAwBMAAAAAAEATAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAgBMAAAAAAAATAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAwBuAAAAAAAAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAAAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + version: 7 6,-1: ind: 6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAACbgAAAAACewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAewAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAWwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAgBuAAAAAAMAbgAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABQAAAAAAAAUAAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAUAAAAAAAAFAAAAAAAABbAAAAAAIAFQAAAAAAABUAAAAAAAAVAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 7,-2: ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAQB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 7,-1: ind: 7,-1 - tiles: ewAAAAAAHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ewAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,1: ind: 5,1 - tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAHQAAAAADHQAAAAAAHQAAAAABewAAAAAAagAAAAAAewAAAAAAewAAAAAAEQAAAAAANgAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACHQAAAAACTQAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACewAAAAAAEQAAAAAAHQAAAAABHQAAAAACHQAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAIgAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADNgAAAAAAHQAAAAABIgAAAAABHQAAAAABEQAAAAAAewAAAAAAewAAAAAANgAAAAAAHQAAAAACHQAAAAABTQAAAAAAewAAAAAAEQAAAAAAHQAAAAADEQAAAAAAewAAAAAAEQAAAAAAHQAAAAAAHQAAAAADHQAAAAABNgAAAAAAewAAAAAAewAAAAAAewAAAAAA - version: 6 + tiles: egAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAABEAAAAAAAA2AAAAAAAAEQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAAB0AAAAAAgAdAAAAAAIATQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB7AAAAAAAAEQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABADYAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAiAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAADADYAAAAAAAAdAAAAAAIAIgAAAAAAAB0AAAAAAgARAAAAAAAAewAAAAAAAHsAAAAAAAA2AAAAAAAAHQAAAAACAB0AAAAAAwBNAAAAAAAAewAAAAAAABEAAAAAAAAdAAAAAAEAEQAAAAAAAHsAAAAAAAARAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMANgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + version: 7 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAACWwAAAAADWwAAAAAAWwAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAACWwAAAAABWwAAAAACWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADIgAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAIgAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAgB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADACIAAAAAAgB7AAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAABQAAAAADWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAABQAAAAACWwAAAAABWwAAAAAAWwAAAAADWwAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAABQAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAABQAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAAAIgAAAAADewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAAD - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAUAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAIAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAFAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAMAWwAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAABQAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAwB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAUAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAABACIAAAAAAgB7AAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAAAAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAADAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAwB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAIAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAMAWwAAAAACAFsAAAAAAQBbAAAAAAMAWwAAAAACAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAABAA== + version: 7 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAIgAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAA== + version: 7 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: egAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 6,1: ind: 6,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 6,2: ind: 6,2 - tiles: NgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: NgAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,3: ind: 0,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -1937,8 +1937,8 @@ entities: - volume: 2500 temperature: 235 moles: - - 21.824879 - - 82.10312 + - 27.225372 + - 102.419266 - 0 - 0 - 0 @@ -6608,10 +6608,12 @@ entities: 2292: 57.111843,-16.250092 - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: GasTileOverlay - type: RadiationGridResistance - type: SpreaderGrid + - type: ImplicitRoof - uid: 126 components: - type: MetaData @@ -6637,117 +6639,6 @@ entities: - type: Transform pos: 12.501018,-34.058125 parent: 2 -- proto: ActionToggleBlock - entities: - - uid: 2409 - components: - - type: Transform - parent: 2404 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 2404 - - uid: 7583 - components: - - type: Transform - parent: 6422 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6422 - - uid: 7822 - components: - - type: Transform - parent: 7584 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 7584 - - uid: 8350 - components: - - type: Transform - parent: 8348 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 8348 - - uid: 8413 - components: - - type: Transform - parent: 8351 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 8351 - - uid: 8418 - components: - - type: Transform - parent: 8417 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 8417 - - uid: 8420 - components: - - type: Transform - parent: 8419 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 8419 - - uid: 8423 - components: - - type: Transform - parent: 8422 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 8422 - - uid: 15461 - components: - - type: Transform - parent: 14664 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 14664 -- proto: ActionToggleInternals - entities: - - uid: 5500 - components: - - type: Transform - parent: 5530 - - type: InstantAction - container: 5530 - - uid: 10848 - components: - - type: Transform - parent: 9478 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 9478 - - uid: 15468 - components: - - type: Transform - parent: 15462 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 15462 -- proto: ActionToggleJetpack - entities: - - uid: 10847 - components: - - type: Transform - parent: 9478 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 9478 - - uid: 15467 - components: - - type: Transform - parent: 15462 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 15462 -- proto: ActionToggleLight - entities: - - uid: 13568 - components: - - type: Transform - parent: 13567 - - type: InstantAction - container: 13567 - proto: AirAlarm entities: - uid: 5 @@ -9634,7 +9525,7 @@ entities: pos: 44.5,30.5 parent: 2 - type: Door - secondsUntilStateChange: -3771.7566 + secondsUntilStateChange: -4038.7175 state: Opening - type: DeviceLinkSource lastSignals: @@ -9717,7 +9608,6 @@ entities: - uid: 371 components: - type: Transform - rot: 3.141592653589793 rad pos: 11.5,25.5 parent: 2 - type: DeviceNetwork @@ -9727,7 +9617,6 @@ entities: - uid: 1812 components: - type: Transform - rot: -1.5707963267948966 rad pos: 39.5,35.5 parent: 2 - type: DeviceNetwork @@ -9808,7 +9697,6 @@ entities: - uid: 9456 components: - type: Transform - rot: -1.5707963267948966 rad pos: 40.5,30.5 parent: 2 - type: DeviceNetwork @@ -10004,7 +9892,6 @@ entities: - uid: 13511 components: - type: Transform - rot: 1.5707963267948966 rad pos: 48.5,35.5 parent: 2 - type: DeviceNetwork @@ -10021,7 +9908,6 @@ entities: - uid: 14061 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,-13.5 parent: 2 - type: DeviceNetwork @@ -10031,7 +9917,6 @@ entities: - uid: 14062 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,-1.5 parent: 2 - type: DeviceNetwork @@ -10041,7 +9926,6 @@ entities: - uid: 14063 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,-20.5 parent: 2 - type: DeviceNetwork @@ -10051,7 +9935,6 @@ entities: - uid: 14064 components: - type: Transform - rot: -1.5707963267948966 rad pos: -6.5,-14.5 parent: 2 - type: DeviceNetwork @@ -10061,7 +9944,6 @@ entities: - uid: 14065 components: - type: Transform - rot: -1.5707963267948966 rad pos: -5.5,-8.5 parent: 2 - type: DeviceNetwork @@ -10071,7 +9953,6 @@ entities: - uid: 14066 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,-0.5 parent: 2 - type: DeviceNetwork @@ -10081,7 +9962,6 @@ entities: - uid: 14547 components: - type: Transform - rot: 3.141592653589793 rad pos: 80.5,30.5 parent: 2 - type: DeviceNetwork @@ -10090,13 +9970,11 @@ entities: - uid: 14548 components: - type: Transform - rot: 3.141592653589793 rad pos: 90.5,30.5 parent: 2 - uid: 14549 components: - type: Transform - rot: 3.141592653589793 rad pos: 96.5,30.5 parent: 2 - type: DeviceNetwork @@ -10113,7 +9991,6 @@ entities: - uid: 14671 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,32.5 parent: 2 - type: DeviceNetwork @@ -12074,6 +11951,10 @@ entities: showEnts: False occludes: True ent: null + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 6525 components: - type: Transform @@ -33462,79 +33343,66 @@ entities: - uid: 2698 components: - type: Transform - rot: -1.5707963267948966 rad pos: 23.5,31.5 parent: 2 - uid: 2699 components: - type: Transform - rot: -1.5707963267948966 rad pos: 22.5,31.5 parent: 2 - uid: 2700 components: - type: Transform - rot: -1.5707963267948966 rad pos: 21.5,31.5 parent: 2 - uid: 2701 components: - type: Transform - rot: -1.5707963267948966 rad pos: 20.5,31.5 parent: 2 - uid: 2702 components: - type: Transform - rot: -1.5707963267948966 rad pos: 19.5,31.5 parent: 2 - uid: 2703 components: - type: Transform - rot: -1.5707963267948966 rad pos: 19.5,30.5 parent: 2 - uid: 2704 components: - type: Transform - rot: -1.5707963267948966 rad pos: 18.5,30.5 parent: 2 - uid: 2705 components: - type: Transform - rot: -1.5707963267948966 rad pos: 17.5,30.5 parent: 2 - uid: 2706 components: - type: Transform - rot: -1.5707963267948966 rad pos: 17.5,31.5 parent: 2 - uid: 2707 components: - type: Transform - rot: -1.5707963267948966 rad pos: 17.5,32.5 parent: 2 - uid: 2708 components: - type: Transform - rot: -1.5707963267948966 rad pos: 18.5,32.5 parent: 2 - uid: 2709 components: - type: Transform - rot: -1.5707963267948966 rad pos: 19.5,32.5 parent: 2 - uid: 2710 components: - type: Transform - rot: -1.5707963267948966 rad pos: 18.5,31.5 parent: 2 - uid: 2761 @@ -33712,13 +33580,11 @@ entities: - uid: 430 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,18.5 parent: 2 - uid: 2011 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,15.5 parent: 2 - uid: 5459 @@ -33729,19 +33595,16 @@ entities: - uid: 7586 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,18.5 parent: 2 - uid: 7587 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,18.5 parent: 2 - uid: 7949 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,16.5 parent: 2 - proto: CarpetBlue @@ -33935,19 +33798,16 @@ entities: - uid: 5514 components: - type: Transform - rot: 3.141592653589793 rad pos: 67.5,31.5 parent: 2 - uid: 5515 components: - type: Transform - rot: 3.141592653589793 rad pos: 67.5,32.5 parent: 2 - uid: 5516 components: - type: Transform - rot: 3.141592653589793 rad pos: 67.5,33.5 parent: 2 - uid: 12679 @@ -33995,19 +33855,16 @@ entities: - uid: 97 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,-41.5 parent: 2 - uid: 611 components: - type: Transform - rot: -1.5707963267948966 rad pos: 9.5,-41.5 parent: 2 - uid: 619 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,-41.5 parent: 2 - uid: 3431 @@ -38117,6 +37974,10 @@ entities: showEnts: False occludes: True ent: null + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 5051 components: - type: Transform @@ -38144,6 +38005,10 @@ entities: showEnts: False occludes: True ent: null + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] - proto: ChemistryHotplate entities: - uid: 11028 @@ -38920,13 +38785,6 @@ entities: rot: 0.00038670882349833846 rad pos: 89.44564,-12.263381 parent: 2 -- proto: ClothingHeadHatRedwizard - entities: - - uid: 6798 - components: - - type: Transform - pos: 86.44191,12.5807 - parent: 2 - proto: ClothingHeadHatSkub entities: - uid: 13076 @@ -38981,13 +38839,6 @@ entities: - type: Transform pos: 83.46587,-12.720913 parent: 2 -- proto: ClothingHeadHatWizard - entities: - - uid: 11158 - components: - - type: Transform - pos: 86.44739,10.61898 - parent: 2 - proto: ClothingHeadHelmetRiot entities: - uid: 6197 @@ -39095,13 +38946,6 @@ entities: - type: Transform pos: 91.43456,-0.49069238 parent: 2 -- proto: ClothingNeckCloakMiner - entities: - - uid: 697 - components: - - type: Transform - pos: 9.5,36.5 - parent: 2 - proto: ClothingNeckCloakMoth entities: - uid: 9368 @@ -39304,20 +39148,6 @@ entities: - type: Transform pos: 11.523725,20.510695 parent: 2 -- proto: ClothingOuterWizard - entities: - - uid: 11159 - components: - - type: Transform - pos: 86.47864,10.71273 - parent: 2 -- proto: ClothingOuterWizardRed - entities: - - uid: 6797 - components: - - type: Transform - pos: 86.50441,12.690075 - parent: 2 - proto: ClothingShoesBootsJack entities: - uid: 3615 @@ -39376,18 +39206,6 @@ entities: - type: Transform pos: 70.5,37.5 parent: 2 -- proto: ClothingShoesWizard - entities: - - uid: 6796 - components: - - type: Transform - pos: 86.50441,12.3932 - parent: 2 - - uid: 11160 - components: - - type: Transform - pos: 86.46301,10.540855 - parent: 2 - proto: ClothingUnderSocksBee entities: - uid: 12287 @@ -39753,14 +39571,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-7.5 parent: 2 -- proto: ComputerCargoShuttle - entities: - - uid: 14770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 2 - proto: ComputerComms entities: - uid: 405 @@ -39962,11 +39772,19 @@ entities: parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 5046 + - uid: 705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,31.5 + rot: 3.141592653589793 rad + pos: 6.5,30.5 + parent: 2 +- proto: ComputerSalvageJobBoard + entities: + - uid: 6796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,30.5 parent: 2 - proto: ComputerShuttleCargo entities: @@ -39976,6 +39794,12 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,25.5 parent: 2 + - uid: 14770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2 - proto: ComputerSolarControl entities: - uid: 4305 @@ -44218,14 +44042,6 @@ entities: - type: Transform pos: 74.515,18.613554 parent: 2 - - type: GasTank - toggleActionEntity: 5500 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 5500 - proto: DresserCaptainFilled entities: - uid: 10279 @@ -46794,7 +46610,6 @@ entities: - uid: 29 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,21.5 parent: 2 - type: DeviceNetwork @@ -46944,7 +46759,6 @@ entities: - uid: 8106 components: - type: Transform - rot: 3.141592653589793 rad pos: 8.5,20.5 parent: 2 - type: DeviceNetwork @@ -47051,7 +46865,6 @@ entities: - uid: 11016 components: - type: Transform - rot: -1.5707963267948966 rad pos: 29.5,-23.5 parent: 2 - uid: 11243 @@ -47247,7 +47060,6 @@ entities: - uid: 11754 components: - type: Transform - rot: -1.5707963267948966 rad pos: 23.5,-23.5 parent: 2 - uid: 11810 @@ -47311,31 +47123,26 @@ entities: - uid: 13442 components: - type: Transform - rot: -1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 - uid: 13452 components: - type: Transform - rot: -1.5707963267948966 rad pos: 29.5,-24.5 parent: 2 - uid: 13971 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-22.5 parent: 2 - uid: 13972 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-23.5 parent: 2 - uid: 14672 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 - type: DeviceNetwork @@ -68653,33 +68460,11 @@ entities: - type: Transform pos: 39.649494,28.741974 parent: 2 - - type: GasTank - toggleActionEntity: 10848 - - type: Jetpack - toggleActionEntity: 10847 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 10847 - - 10848 - uid: 15462 components: - type: Transform pos: 39.63387,28.898224 parent: 2 - - type: GasTank - toggleActionEntity: 15468 - - type: Jetpack - toggleActionEntity: 15467 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 15467 - - 15468 - proto: KitchenElectricGrill entities: - uid: 13167 @@ -68827,22 +68612,8 @@ entities: - type: Transform pos: 40.512142,35.84228 parent: 2 - - type: HandheldLight - toggleActionEntity: 13568 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 13568 - type: Physics canCollide: True - - type: ActionsContainer - proto: LargeBeaker entities: - uid: 5323 @@ -69372,15 +69143,15 @@ entities: - 0 - proto: LockerSalvageSpecialistFilledHardsuit entities: - - uid: 705 + - uid: 697 components: - type: Transform - pos: 6.5,30.5 + pos: 9.5,31.5 parent: 2 - - uid: 8202 + - uid: 5046 components: - type: Transform - pos: 7.5,30.5 + pos: 9.5,30.5 parent: 2 - proto: LockerScienceFilled entities: @@ -74144,7 +73915,6 @@ entities: - uid: 7827 components: - type: Transform - rot: 3.141592653589793 rad pos: 68.5,33.5 parent: 2 - uid: 8584 @@ -74160,7 +73930,6 @@ entities: - uid: 14779 components: - type: Transform - rot: 3.141592653589793 rad pos: 10.5,31.5 parent: 2 - proto: RandomPosterContraband @@ -74183,7 +73952,6 @@ entities: - uid: 5624 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,-9.5 parent: 2 - uid: 11176 @@ -77094,40 +76862,16 @@ entities: - type: Transform pos: 40.60262,28.679474 parent: 2 - - type: Blocking - blockingToggleActionEntity: 2409 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 2409 - uid: 7584 components: - type: Transform pos: 40.594807,28.656036 parent: 2 - - type: Blocking - blockingToggleActionEntity: 7822 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 7822 - uid: 8351 components: - type: Transform pos: 40.57918,28.913849 parent: 2 - - type: Blocking - blockingToggleActionEntity: 8413 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8413 - proto: RiotLaserShield entities: - uid: 6422 @@ -77135,40 +76879,16 @@ entities: - type: Transform pos: 40.04793,28.648224 parent: 2 - - type: Blocking - blockingToggleActionEntity: 7583 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 7583 - uid: 8419 components: - type: Transform pos: 40.04012,28.835724 parent: 2 - - type: Blocking - blockingToggleActionEntity: 8420 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8420 - uid: 8422 components: - type: Transform pos: 40.063557,28.726349 parent: 2 - - type: Blocking - blockingToggleActionEntity: 8423 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8423 - proto: RiotShield entities: - uid: 8348 @@ -77176,40 +76896,16 @@ entities: - type: Transform pos: 40.368244,28.741974 parent: 2 - - type: Blocking - blockingToggleActionEntity: 8350 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8350 - uid: 8417 components: - type: Transform pos: 40.368244,28.609161 parent: 2 - - type: Blocking - blockingToggleActionEntity: 8418 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8418 - uid: 14664 components: - type: Transform pos: 40.336994,28.882599 parent: 2 - - type: Blocking - blockingToggleActionEntity: 15461 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 15461 - proto: RobocopCircuitBoard entities: - uid: 14284 @@ -77369,6 +77065,12 @@ entities: - type: Transform pos: 38.5,21.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: SeedExtractor entities: - uid: 3159 @@ -79554,6 +79256,10 @@ entities: showEnts: False occludes: True ent: null + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 6526 components: - type: Transform @@ -80458,25 +80164,21 @@ entities: - uid: 15 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-12.5 parent: 2 - uid: 98 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-13.5 parent: 2 - uid: 3343 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,-12.5 parent: 2 - uid: 12169 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,-13.5 parent: 2 - proto: SpawnPointLawyer @@ -82748,7 +82450,6 @@ entities: - uid: 679 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,-19.5 parent: 2 - uid: 778 @@ -82784,25 +82485,21 @@ entities: - uid: 1033 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-24.5 parent: 2 - uid: 1034 components: - type: Transform - rot: 3.141592653589793 rad pos: 23.5,-24.5 parent: 2 - uid: 1035 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,-23.5 parent: 2 - uid: 1331 components: - type: Transform - rot: 3.141592653589793 rad pos: 20.5,5.5 parent: 2 - uid: 1507 @@ -82883,7 +82580,6 @@ entities: - uid: 1857 components: - type: Transform - rot: 3.141592653589793 rad pos: 19.5,5.5 parent: 2 - uid: 2146 @@ -82894,7 +82590,6 @@ entities: - uid: 2151 components: - type: Transform - rot: 3.141592653589793 rad pos: 11.5,20.5 parent: 2 - uid: 2156 @@ -82935,7 +82630,6 @@ entities: - uid: 3430 components: - type: Transform - rot: -1.5707963267948966 rad pos: 74.5,18.5 parent: 2 - uid: 3474 @@ -82966,7 +82660,6 @@ entities: - uid: 4001 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,20.5 parent: 2 - uid: 4117 @@ -82977,7 +82670,6 @@ entities: - uid: 4141 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,-9.5 parent: 2 - uid: 4280 @@ -83008,7 +82700,6 @@ entities: - uid: 4767 components: - type: Transform - rot: -1.5707963267948966 rad pos: 20.5,24.5 parent: 2 - uid: 5003 @@ -83029,7 +82720,6 @@ entities: - uid: 5125 components: - type: Transform - rot: 3.141592653589793 rad pos: 23.5,-23.5 parent: 2 - uid: 5135 @@ -83095,13 +82785,11 @@ entities: - uid: 5317 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,19.5 parent: 2 - uid: 5318 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,17.5 parent: 2 - uid: 5368 @@ -83192,13 +82880,11 @@ entities: - uid: 7978 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - uid: 8383 components: - type: Transform - rot: 1.5707963267948966 rad pos: 54.5,36.5 parent: 2 - uid: 8538 @@ -83239,7 +82925,6 @@ entities: - uid: 9956 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,40.5 parent: 2 - uid: 10072 @@ -83290,7 +82975,6 @@ entities: - uid: 10763 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,40.5 parent: 2 - uid: 10803 @@ -83331,7 +83015,6 @@ entities: - uid: 11191 components: - type: Transform - rot: 1.5707963267948966 rad pos: 46.5,11.5 parent: 2 - uid: 11302 @@ -83362,25 +83045,21 @@ entities: - uid: 11427 components: - type: Transform - rot: 1.5707963267948966 rad pos: 76.5,4.5 parent: 2 - uid: 11428 components: - type: Transform - rot: 1.5707963267948966 rad pos: 76.5,5.5 parent: 2 - uid: 11432 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,4.5 parent: 2 - uid: 11522 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,9.5 parent: 2 - uid: 11736 @@ -83436,13 +83115,11 @@ entities: - uid: 12582 components: - type: Transform - rot: 1.5707963267948966 rad pos: 20.5,-19.5 parent: 2 - uid: 13105 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,24.5 parent: 2 - uid: 13564 @@ -83468,13 +83145,11 @@ entities: - uid: 13624 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,31.5 parent: 2 - uid: 13625 components: - type: Transform - rot: -1.5707963267948966 rad pos: 55.5,31.5 parent: 2 - uid: 14068 @@ -83519,25 +83194,21 @@ entities: - uid: 9735 components: - type: Transform - rot: 1.5707963267948966 rad pos: 19.5,-12.5 parent: 2 - uid: 9736 components: - type: Transform - rot: 1.5707963267948966 rad pos: 19.5,-11.5 parent: 2 - uid: 9737 components: - type: Transform - rot: 1.5707963267948966 rad pos: 19.5,-10.5 parent: 2 - uid: 9738 components: - type: Transform - rot: 1.5707963267948966 rad pos: 19.5,-9.5 parent: 2 - proto: TableGlass @@ -83545,25 +83216,21 @@ entities: - uid: 12696 components: - type: Transform - rot: -1.5707963267948966 rad pos: 104.5,-15.5 parent: 2 - uid: 12697 components: - type: Transform - rot: -1.5707963267948966 rad pos: 103.5,-15.5 parent: 2 - uid: 12698 components: - type: Transform - rot: -1.5707963267948966 rad pos: 102.5,-15.5 parent: 2 - uid: 12699 components: - type: Transform - rot: -1.5707963267948966 rad pos: 102.5,-16.5 parent: 2 - proto: TablePlasmaGlass @@ -83571,19 +83238,16 @@ entities: - uid: 5708 components: - type: Transform - rot: 1.5707963267948966 rad pos: 70.5,13.5 parent: 2 - uid: 5861 components: - type: Transform - rot: 1.5707963267948966 rad pos: 71.5,13.5 parent: 2 - uid: 6476 components: - type: Transform - rot: 1.5707963267948966 rad pos: 71.5,14.5 parent: 2 - uid: 12690 @@ -83636,7 +83300,6 @@ entities: - uid: 564 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,-2.5 parent: 2 - uid: 572 @@ -83697,13 +83360,11 @@ entities: - uid: 2431 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,27.5 parent: 2 - uid: 2432 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,26.5 parent: 2 - uid: 2991 @@ -83789,13 +83450,11 @@ entities: - uid: 4994 components: - type: Transform - rot: -1.5707963267948966 rad pos: 32.5,48.5 parent: 2 - uid: 4995 components: - type: Transform - rot: -1.5707963267948966 rad pos: 22.5,48.5 parent: 2 - uid: 5031 @@ -83851,13 +83510,11 @@ entities: - uid: 8445 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,28.5 parent: 2 - uid: 8518 components: - type: Transform - rot: 3.141592653589793 rad pos: 40.5,28.5 parent: 2 - uid: 8675 @@ -83873,19 +83530,16 @@ entities: - uid: 11413 components: - type: Transform - rot: -1.5707963267948966 rad pos: 17.5,42.5 parent: 2 - uid: 11475 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,17.5 parent: 2 - uid: 11800 components: - type: Transform - rot: 3.141592653589793 rad pos: 61.5,-0.5 parent: 2 - uid: 11839 @@ -83901,7 +83555,6 @@ entities: - uid: 13103 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,28.5 parent: 2 - uid: 14245 @@ -83922,25 +83575,21 @@ entities: - uid: 14554 components: - type: Transform - rot: -1.5707963267948966 rad pos: 89.5,28.5 parent: 2 - uid: 14555 components: - type: Transform - rot: -1.5707963267948966 rad pos: 90.5,28.5 parent: 2 - uid: 14556 components: - type: Transform - rot: -1.5707963267948966 rad pos: 90.5,32.5 parent: 2 - uid: 14557 components: - type: Transform - rot: -1.5707963267948966 rad pos: 89.5,32.5 parent: 2 - uid: 14661 @@ -83956,7 +83605,6 @@ entities: - uid: 15376 components: - type: Transform - rot: -1.5707963267948966 rad pos: 19.5,42.5 parent: 2 - proto: TableReinforcedGlass @@ -83964,7 +83612,6 @@ entities: - uid: 14145 components: - type: Transform - rot: 3.141592653589793 rad pos: 74.5,22.5 parent: 2 - uid: 14152 @@ -84911,6 +84558,12 @@ entities: - type: Transform pos: 20.5,-4.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: Vaccinator entities: - uid: 12157 @@ -86749,7 +86402,6 @@ entities: - uid: 2117 components: - type: Transform - rot: 3.141592653589793 rad pos: 43.5,25.5 parent: 2 - uid: 2122 @@ -92810,7 +92462,6 @@ entities: - uid: 14797 components: - type: Transform - rot: 3.141592653589793 rad pos: 57.5,-20.5 parent: 2 - uid: 14809 diff --git a/Resources/Maps/plasma.yml b/Resources/Maps/plasma.yml index e1c2da78be..7d6183dd5e 100644 --- a/Resources/Maps/plasma.yml +++ b/Resources/Maps/plasma.yml @@ -9829,24 +9829,6 @@ entities: - type: Transform pos: -131.49832,-18.377594 parent: 2 -- proto: ActionSleep - entities: - - uid: 2905 - components: - - type: Transform - parent: 2904 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 2904 -- proto: ActionToggleLight - entities: - - uid: 17811 - components: - - type: Transform - parent: 17810 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 17810 - proto: AirAlarm entities: - uid: 346 @@ -76523,14 +76505,6 @@ entities: - type: Transform pos: -46.5,-9.5 parent: 2 - - type: HealOnBuckle - sleepAction: 2905 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 2905 - uid: 2953 components: - type: Transform @@ -81375,20 +81349,6 @@ entities: - type: Transform pos: -93.54334,-31.573391 parent: 2 - - type: HandheldLight - toggleActionEntity: 17811 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 17811 - - type: ActionsContainer - proto: FleshBlocker entities: - uid: 23372 @@ -148880,26 +148840,6 @@ entities: parent: 2 - type: PointLight color: '#FF3300FF' -- proto: TelecomServer - entities: - - uid: 15019 - components: - - type: MetaData - desc: An old server, stuck compiling an unknown program... - name: Computron - - type: Transform - pos: -57.5,-78.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 500 - missingComponents: - - Destructible - - Machine - - WiresPanel - - EncryptionKeyHolder - - TelecomServer - - ContainerContainer - - Construction - proto: TelecomServerCircuitboard entities: - uid: 4499 diff --git a/Resources/Maps/reach.yml b/Resources/Maps/reach.yml index 971468410d..9d4b1aa8fc 100644 --- a/Resources/Maps/reach.yml +++ b/Resources/Maps/reach.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Map + engineVersion: 260.1.0 + forkId: "" + forkVersion: "" + time: 05/21/2025 05:14:05 + entityCount: 2639 +maps: +- 1 +grids: +- 2 +orphans: [] +nullspace: [] tilemap: 0: Space 1: FloorBlueCircuit @@ -38,7 +49,6 @@ entities: - type: MovedGrids - type: Broadphase - type: OccluderTree - - type: LoadedMap - uid: 2 components: - type: MetaData @@ -49,48 +59,52 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAegAAAAABegAAAAABegAAAAACMQAAAAAAegAAAAAAegAAAAACegAAAAABMQAAAAAAegAAAAABegAAAAACegAAAAABegAAAAABfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAACMQAAAAAAegAAAAAAegAAAAAAegAAAAAAMQAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADMQAAAAAAegAAAAACegAAAAADegAAAAAAMQAAAAAAegAAAAABegAAAAABegAAAAABegAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAATgAAAAABTgAAAAABTgAAAAADTgAAAAADTgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAACTgAAAAACTgAAAAACTgAAAAAAHwAAAAADHwAAAAACHwAAAAAC - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAG0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAMAbQAAAAAAAB8AAAAAAAAfAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQB+AAAAAAAAegAAAAABAHoAAAAAAgB6AAAAAAEAMQAAAAAAAHoAAAAAAgB6AAAAAAIAegAAAAABADEAAAAAAAB6AAAAAAMAegAAAAABAHoAAAAAAgB6AAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAAHoAAAAAAgB6AAAAAAMAegAAAAAAADEAAAAAAAB6AAAAAAIAegAAAAABAHoAAAAAAQAxAAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAMAegAAAAADAH4AAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAAB6AAAAAAAAegAAAAADAHoAAAAAAQAxAAAAAAAAegAAAAACAHoAAAAAAwB6AAAAAAEAMQAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAACAHoAAAAAAgB+AAAAAAAAHwAAAAAAAB8AAAAAAQB+AAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAMAfgAAAAAAAHoAAAAAAwB6AAAAAAAAegAAAAABAH4AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAgB6AAAAAAMAfgAAAAAAAB8AAAAAAwAfAAAAAAIAfgAAAAAAAE4AAAAAAgBOAAAAAAMATgAAAAACAE4AAAAAAgBOAAAAAAEATgAAAAACAE4AAAAAAgBOAAAAAAIATgAAAAACAE4AAAAAAwBOAAAAAAIATgAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAABAA== + version: 7 0,0: ind: 0,0 - tiles: HwAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAACfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAALwAAAAACegAAAAACegAAAAACegAAAAACLwAAAAACHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACfgAAAAAAHwAAAAABegAAAAABegAAAAADegAAAAABHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAALwAAAAACegAAAAADegAAAAADegAAAAADLwAAAAADMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADfgAAAAAAHwAAAAABegAAAAABegAAAAAAegAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADfgAAAAAALwAAAAABegAAAAACegAAAAADegAAAAADLwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAABegAAAAADegAAAAABegAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALwAAAAADegAAAAABegAAAAABegAAAAAALwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAACegAAAAADHwAAAAACMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAALwAAAAABegAAAAACegAAAAABegAAAAADLwAAAAACHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: HwAAAAADAHAAAAAAAgBwAAAAAAMAcAAAAAADAHAAAAAAAwB+AAAAAAAAcAAAAAADAHAAAAAAAQBwAAAAAAMAcAAAAAAAAHAAAAAAAQBwAAAAAAEAcAAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAwB+AAAAAAAAcAAAAAACAHAAAAAAAABwAAAAAAEAfgAAAAAAAHAAAAAAAABwAAAAAAEAcAAAAAACAH4AAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAALwAAAAADAHoAAAAAAAB6AAAAAAAAegAAAAACAC8AAAAAAABtAAAAAAAAbgAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAG4AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAEAfgAAAAAAAB8AAAAAAgB6AAAAAAMAegAAAAACAHoAAAAAAgAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAG4AAAAAAgBtAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAH4AAAAAAAAvAAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAIALwAAAAACAB8AAAAAAwB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAAHwAAAAACAHoAAAAAAQB6AAAAAAAAegAAAAACAB8AAAAAAQAfAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAAAfgAAAAAAAC8AAAAAAwB6AAAAAAAAegAAAAACAHoAAAAAAQAvAAAAAAMAMAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAAAAH4AAAAAAAAfAAAAAAIAegAAAAACAHoAAAAAAAB6AAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAAB+AAAAAAAALwAAAAACAHoAAAAAAAB6AAAAAAMAegAAAAADAC8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAwBtAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB6AAAAAAIAegAAAAACAHoAAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAIAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAvAAAAAAAAegAAAAADAHoAAAAAAwB6AAAAAAEALwAAAAACADAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: bQAAAAAATgAAAAABLwAAAAABLwAAAAADLwAAAAAALwAAAAADLwAAAAABLwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAABTgAAAAACHwAAAAAAHwAAAAADHwAAAAABfgAAAAAATgAAAAABTgAAAAABTgAAAAACTgAAAAADTgAAAAADTgAAAAADTgAAAAADTgAAAAABTgAAAAAATgAAAAAATgAAAAADTgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAPAAAAAAATQAAAAAAPAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAPAAAAAAATQAAAAAATQAAAAADHwAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAACHwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAPAAAAAAATQAAAAAAPAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAJAAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABJAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABJAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADJAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: bQAAAAAAAE4AAAAAAQAvAAAAAAAALwAAAAAAAC8AAAAAAgAvAAAAAAAALwAAAAACAC8AAAAAAQAvAAAAAAAALwAAAAAAAC8AAAAAAQAvAAAAAAEATgAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAADAH4AAAAAAABOAAAAAAIATgAAAAAAAE4AAAAAAABOAAAAAAIATgAAAAACAE4AAAAAAABOAAAAAAAATgAAAAADAE4AAAAAAgBOAAAAAAAATgAAAAADAE4AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAADAHoAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAfgAAAAAAADwAAAAAAABNAAAAAAAAPAAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAAAAHoAAAAAAQB6AAAAAAMAfgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAH4AAAAAAAA8AAAAAAAATQAAAAAAAE0AAAAAAQAfAAAAAAAAegAAAAADAHoAAAAAAAB6AAAAAAMAegAAAAACAB8AAAAAAQA+AAAAAAAAPgAAAAAAAD4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAgB+AAAAAAAAPAAAAAAAAE0AAAAAAgA8AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAABAB8AAAAAAAB+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAABACQAAAAAAgB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAQAkAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAABACQAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAwAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAEAAAAAAAABAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAXQAAAAABAgAAAAAAAgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAAgAAAAAAAgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAACfgAAAAAAHwAAAAADegAAAAADHwAAAAACfgAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAHwAAAAADegAAAAABHwAAAAABfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAACcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAHwAAAAAAegAAAAADHwAAAAACfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAACfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADfgAAAAAAHwAAAAABHwAAAAAC - version: 6 + tiles: fgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUAAAAAAAAFAAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAEAfgAAAAAAAAIAAAAAAQACAAAAAAEAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABQAAAAAAAAUAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAF0AAAAAAwACAAAAAAIAAgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwB+AAAAAAAAAgAAAAAAAAIAAAAAAQBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAAHAAAAAAAwBwAAAAAAIAcAAAAAAAAHAAAAAAAQBwAAAAAAEAcAAAAAACAHAAAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAQBwAAAAAAIAfgAAAAAAAB8AAAAAAgB6AAAAAAIAHwAAAAADAH4AAAAAAABwAAAAAAEAcAAAAAABAHAAAAAAAABwAAAAAAAAcAAAAAACAHAAAAAAAABwAAAAAAIAcAAAAAADAHAAAAAAAABwAAAAAAAAcAAAAAAAAH4AAAAAAAAfAAAAAAAAegAAAAAAAB8AAAAAAwB+AAAAAAAAcAAAAAABAHAAAAAAAwBwAAAAAAEAcAAAAAADAHAAAAAAAgBwAAAAAAMAcAAAAAACAHAAAAAAAABwAAAAAAEAcAAAAAAAAHAAAAAAAwB+AAAAAAAAHwAAAAACAHoAAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAABwAAAAAAMAcAAAAAADAHAAAAAAAQB+AAAAAAAAcAAAAAACAHAAAAAAAwBwAAAAAAEAfgAAAAAAAHAAAAAAAgBwAAAAAAEAcAAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAADAA== + version: 7 -2,0: ind: -2,0 - tiles: AAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAAbgAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABsAAAAAAAAbgAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAbAAAAAAAAG4AAAAAAQBtAAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAAbgAAAAABbQAAAAAAbQAAAAAAbQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAAAAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABsAAAAAAAAbgAAAAABAG0AAAAAAABtAAAAAAAAbQAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADegAAAAABegAAAAADegAAAAADHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAEAegAAAAADAHoAAAAAAwB6AAAAAAAAHwAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,0: ind: 1,0 - tiles: HwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: HwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAwB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAQB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAIAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAMAHwAAAAACAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAADAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAACAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG0AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAG4AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAwB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwAfAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADegAAAAAAegAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADegAAAAADegAAAAACHwAAAAADfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAABegAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAACegAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAEAegAAAAAAAHoAAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADAHoAAAAAAAB6AAAAAAMAHwAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAAAAHoAAAAAAwB6AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAgB6AAAAAAAAegAAAAADAB8AAAAAAwB+AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAQB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAgB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAG0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAABtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -104,6 +118,7 @@ entities: id: Reach - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -139,6 +154,9 @@ entities: 399: -23,-1 400: -23,1 413: -24,0 + 425: 19,5 + 426: 17,7 + 432: 17,4 - node: color: '#334E6DC8' id: BotGreyscale @@ -178,6 +196,13 @@ entities: 133: 9,15 134: 5,15 135: 5,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 422: 13,8 + 423: 14,8 + 424: 15,8 - node: color: '#D381C996' id: BrickTileSteelCornerNe @@ -262,13 +287,11 @@ entities: id: BrickTileWhiteCornerNe decals: 360: 19,1 - 362: 16,5 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 335: 21,3 - 336: 22,4 + 458: 21,4 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw @@ -280,7 +303,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 361: 14,5 + 444: 14,1 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe @@ -326,16 +349,6 @@ entities: id: BrickTileWhiteInnerNe decals: 94: 4,-3 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNe - decals: - 374: 16,1 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNw - decals: - 344: 22,3 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw @@ -372,18 +385,12 @@ entities: 75: 4,-4 82: 12,-2 83: 12,-1 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 370: 16,4 - 371: 16,3 - 372: 16,2 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: 345: 23,4 + 459: 22,4 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -400,6 +407,7 @@ entities: id: BrickTileWhiteLineN decals: 373: 17,1 + 443: 16,1 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -428,6 +436,7 @@ entities: decals: 346: 21,1 347: 21,2 + 460: 21,3 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -442,13 +451,6 @@ entities: id: BrickTileWhiteLineW decals: 57: -2,-8 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 367: 14,1 - 368: 14,2 - 369: 14,3 - node: color: '#FFFFFFFF' id: Bushd1 @@ -550,6 +552,8 @@ entities: 5: 4,-16 6: 4,-15 256: 0,11 + 427: 17,5 + 428: 19,7 - node: cleanable: True color: '#FFFFFFFF' @@ -613,6 +617,13 @@ entities: decals: 116: 13,0 117: 9,0 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 468: 15,2 + 470: 16,-2 + 471: 17,-2 - node: color: '#EFB34196' id: FullTileOverlayGreyscale @@ -652,6 +663,9 @@ entities: 42: 11,5 43: 12,5 352: 25,2 + 452: 13,5 + 454: 15,5 + 465: 14,5 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -685,6 +699,13 @@ entities: 54: 2,3 55: 1,3 353: 25,-1 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 456: 14,3 + 457: 13,3 + 469: 18,2 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -699,8 +720,6 @@ entities: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 24: -2,-12 - 25: -2,-11 26: -2,-10 27: -2,-9 28: -2,-7 @@ -713,6 +732,19 @@ entities: 35: -2,4 36: -2,3 356: 24,1 + 474: -3,-14 + 475: -3,-13 + 476: -3,-12 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 473: 13,0 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 467: 20,0 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -746,6 +778,12 @@ entities: 235: 0,-12 354: 26,0 355: 26,1 + 466: 20,0 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 472: 13,0 - node: color: '#EFB34128' id: HalfTileOverlayGreyscale90 @@ -765,12 +803,34 @@ entities: decals: 232: 1,0 233: -3,-8 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 431: 19,5 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 430: 17,4 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 429: 17,7 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: 261: 2,13 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 478: -2,-11 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -782,6 +842,16 @@ entities: 247: 0,11 248: 0,12 249: 0,13 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 446: 12,10 + 447: 13,10 + 448: 14,10 + 449: 15,10 + 450: 16,10 + 451: 17,10 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 @@ -824,6 +894,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 349: 24,2 + 477: -3,-11 - node: color: '#EFD58F96' id: ThreeQuarterTileOverlayGreyscale @@ -884,6 +955,17 @@ entities: id: WarnCornerSmallSW decals: 203: -21,2 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 435: 19,6 + 436: 17,6 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleE + decals: + 463: 23,0 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -915,12 +997,24 @@ entities: id: WarnLineGreyscaleN decals: 359: 18,1 + 445: 15,1 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleS + decals: + 462: 22,-1 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: 357: 17,-1 358: 16,-1 + 440: 15,3 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleW + decals: + 461: 21,0 - node: color: '#52B4E996' id: WarnLineGreyscaleW @@ -931,7 +1025,6 @@ entities: id: WarnLineGreyscaleW decals: 375: 14,0 - 376: 14,4 - node: color: '#FFFFFFFF' id: WarnLineN @@ -939,6 +1032,7 @@ entities: 194: -24,2 195: -23,2 196: -22,2 + 433: 16,4 - node: color: '#FFFFFFFF' id: WarnLineS @@ -948,6 +1042,8 @@ entities: 199: -21,-1 205: -19,-1 206: -19,1 + 437: 17,6 + 438: 19,6 - node: color: '#FFFFFFFF' id: WarnLineW @@ -955,6 +1051,7 @@ entities: 200: -24,-2 201: -23,-2 202: -22,-2 + 434: 16,4 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -1040,215 +1137,212 @@ entities: data: tiles: -4,-2: - 0: 57344 + 0: 240 + 1: 57344 -5,-2: - 0: 58368 + 1: 58436 -4,-1: - 0: 61166 + 1: 61166 -5,-1: - 0: 65263 + 1: 65263 -4,0: - 0: 59119 + 1: 59119 -3,-2: - 0: 61440 + 0: 240 + 1: 61440 -3,-1: - 0: 65279 + 1: 65279 -3,0: - 0: 61183 + 1: 61183 -2,-2: - 0: 61676 + 1: 61676 -2,-1: - 0: 65279 + 1: 65279 -2,0: - 0: 63999 + 1: 63999 -2,-3: - 0: 32768 - 1: 128 + 0: 200 + 1: 32768 + -2,-4: + 0: 34952 -1,-3: - 0: 56556 + 1: 56558 -1,-2: - 0: 56543 + 1: 56543 -1,-1: - 0: 64989 - -1,0: - 0: 56831 + 1: 64989 -1,-4: - 0: 32768 + 1: 61102 + -1,0: + 1: 56831 + -1,-5: + 1: 59904 0,-4: - 0: 64768 - 1: 4 + 1: 64768 + 0: 6 0,-3: - 0: 21791 + 1: 21791 0,-2: - 0: 55805 + 1: 55805 0,-1: - 0: 55773 + 1: 55773 0,0: - 0: 61919 + 1: 61919 0,1: - 0: 62975 + 1: 62975 -1,1: - 0: 62685 + 1: 62685 0,2: - 0: 65535 + 1: 65535 -1,2: - 0: 65407 + 1: 65407 0,3: - 0: 29439 + 1: 29439 0,4: - 0: 7 + 1: 7 -1,3: - 0: 58886 + 1: 58886 1,0: - 0: 61663 + 1: 61663 1,1: - 0: 60671 + 1: 60671 1,3: - 0: 65262 + 1: 65262 1,-1: - 0: 55807 + 1: 55807 1,2: - 0: 61166 + 1: 61166 1,4: - 0: 34959 + 1: 35471 + 0: 256 2,0: - 0: 61663 + 1: 61663 2,1: - 0: 61951 + 1: 61951 2,2: - 0: 65399 + 1: 30579 2,3: - 0: 30719 + 1: 32767 2,-1: - 0: 56831 + 1: 56831 2,4: - 0: 7 + 1: 519 + 0: 1024 3,0: - 0: 56543 + 1: 63711 3,1: - 0: 223 + 1: 57599 3,2: - 0: 4864 + 1: 4094 3,3: - 0: 4115 + 1: 305 + 0: 16384 3,-1: - 0: 53725 + 1: 53725 3,4: 1: 1 + 0: 16 4,0: - 0: 54783 + 1: 58623 4,1: - 0: 221 + 1: 64239 + 4,2: + 1: 895 -5,0: - 0: 61183 + 1: 61183 -4,1: - 0: 3822 + 1: 3822 -5,1: - 0: 19534 - 1: 4352 + 1: 19534 + 0: 4352 -4,2: - 1: 243 + 0: 243 -5,2: - 1: 15 + 0: 15 -3,1: - 0: 239 - 1: 57344 + 1: 239 + 0: 57344 -3,2: - 1: 241 + 0: 241 -2,1: - 0: 57567 + 1: 57567 -2,2: - 0: 61166 + 1: 61166 -1,4: - 0: 174 + 1: 174 1,-4: - 0: 65535 + 1: 65535 1,-3: - 0: 61695 + 1: 61695 1,-2: - 0: 61695 + 1: 61695 1,-5: - 0: 33280 + 1: 33280 2,-3: - 0: 28895 + 1: 28895 2,-2: - 0: 61687 + 1: 61687 2,-4: 2: 6 3: 1536 3,-4: - 1: 8737 - 0: 256 - 3,-3: - 0: 4097 - 1: 8738 - 3,-2: - 0: 53248 - 1: 34 - 4,-2: - 0: 61440 - 4,-1: - 0: 62463 - -8,0: - 1: 4160 - 0: 8750 - -8,1: - 0: 1 - 1: 8 - -8,-1: 0: 8737 - 1: 16408 + 1: 256 + 3,-3: + 1: 4097 + 0: 8738 + 3,-2: + 1: 53248 + 0: 34 + 4,-2: + 1: 61440 + 4,-1: + 1: 62463 + -8,0: + 0: 4160 + 1: 8750 + -8,1: + 1: 1 + 0: 8 + -8,-1: + 1: 8737 + 0: 16408 -7,0: - 0: 29799 + 1: 29799 -7,1: - 1: 143 + 0: 143 -7,-1: - 0: 25712 - 1: 15 + 1: 25712 + 0: 15 -6,0: - 0: 61439 + 1: 61439 -6,1: - 1: 3184 + 0: 3184 -6,-1: - 0: 65504 + 1: 65504 -7,-2: - 1: 32768 + 0: 32768 -6,-2: - 1: 31744 + 0: 31744 0,-5: - 1: 2048 + 0: 2048 2,-5: - 0: 512 - 1: 2048 + 1: 512 + 0: 2048 5,0: - 0: 61167 + 1: 61167 5,1: - 0: 14 + 1: 46 5,-1: - 0: 58606 + 1: 58606 6,0: - 0: 14199 + 1: 14199 6,1: - 0: 1 + 1: 1 6,-1: - 0: 28721 - 1: 128 + 1: 28721 + 0: 128 uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 immutable: True moles: @@ -1264,6 +1358,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -1298,6 +1407,7 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: SpreaderGrid + - type: ImplicitRoof - proto: AirAlarm entities: - uid: 3 @@ -1387,34 +1497,6 @@ entities: - 1478 - 1474 - 1477 - - uid: 10 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,8.5 - parent: 2 - - type: DeviceList - devices: - - 1506 - - 1507 - - 1470 - - uid: 11 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,3.5 - parent: 2 - - type: DeviceList - devices: - - 1468 - - 1511 - - 1457 - - 1513 - - 1483 - - 1456 - - 1091 - - 1090 - - 1089 - uid: 12 components: - type: Transform @@ -1449,6 +1531,30 @@ entities: - 1097 - 1096 - 1083 + - uid: 1753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 1507 + - 1470 + - 1100 + - 1098 + - 1099 + - uid: 2366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 1443 + - 1483 + - 2562 - uid: 2500 components: - type: Transform @@ -1460,6 +1566,41 @@ entities: - 1453 - 1454 - 1486 + - uid: 2575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 551 + - 2330 + - 2563 + - 2564 + - uid: 2621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 2562 + - 2563 + - 2564 + - 1456 + - 1512 + - uid: 2623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 2622 + - 1457 - proto: AirCanister entities: - uid: 15 @@ -1481,18 +1622,18 @@ entities: parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 19 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,4.5 - parent: 2 - uid: 20 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,0.5 parent: 2 + - uid: 333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 2 - proto: AirlockCaptainLocked entities: - uid: 21 @@ -1523,6 +1664,11 @@ entities: parent: 2 - proto: AirlockEngineeringLocked entities: + - uid: 11 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 - uid: 25 components: - type: Transform @@ -1535,6 +1681,16 @@ entities: - type: Transform pos: 7.5,17.5 parent: 2 + - uid: 1571 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 27 @@ -1545,7 +1701,8 @@ entities: - type: DeviceLinkSource linkedPorts: 28: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 28 components: - type: Transform @@ -1554,7 +1711,8 @@ entities: - type: DeviceLinkSource linkedPorts: 27: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 29 @@ -1564,6 +1722,12 @@ entities: parent: 2 - proto: AirlockExternalGlassEngineeringLocked entities: + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-5.5 + parent: 2 - uid: 30 components: - type: Transform @@ -1572,7 +1736,8 @@ entities: - type: DeviceLinkSource linkedPorts: 31: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 31 components: - type: Transform @@ -1581,20 +1746,35 @@ entities: - type: DeviceLinkSource linkedPorts: 30: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 32 + - uid: 73 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,10.5 + rot: 3.141592653589793 rad + pos: 7.5,19.5 parent: 2 - - uid: 33 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 2196 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 74 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,12.5 + pos: 13.5,13.5 parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: @@ -1610,12 +1790,10 @@ entities: rot: 3.141592653589793 rad pos: -2.5,17.5 parent: 2 -- proto: AirlockExternalShuttleLocked - entities: - - uid: 2036 + - uid: 2544 components: - type: Transform - pos: -17.5,-5.5 + pos: -17.5,-7.5 parent: 2 - proto: AirlockGlass entities: @@ -1654,14 +1832,6 @@ entities: - type: Transform pos: -2.5,1.5 parent: 2 -- proto: AirlockGlassShuttle - entities: - - uid: 43 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,19.5 - parent: 2 - proto: AirlockHydroponicsLocked entities: - uid: 2060 @@ -1825,6 +1995,14 @@ entities: - type: Transform pos: -4.390625,7.619689 parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 2639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,17.5 + parent: 2 - proto: Ashtray entities: - uid: 70 @@ -1832,37 +2010,46 @@ entities: - type: Transform pos: -3.2747555,-3.4928942 parent: 2 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - - uid: 71 + - uid: 33 components: - type: Transform + rot: 3.141592653589793 rad pos: 7.5,19.5 parent: 2 - - uid: 72 - components: - - type: Transform - pos: 13.5,10.5 - parent: 2 - - uid: 73 - components: - - type: Transform - pos: 13.5,12.5 - parent: 2 - - uid: 74 + - uid: 83 components: - type: Transform + rot: 3.141592653589793 rad pos: -2.5,17.5 parent: 2 - - uid: 75 + - uid: 84 components: - type: Transform + rot: 3.141592653589793 rad pos: -0.5,17.5 parent: 2 - - uid: 1685 + - uid: 885 components: - type: Transform - pos: -17.5,-5.5 + pos: -2.5,-17.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: -17.5,-7.5 parent: 2 - proto: AtmosFixNitrogenMarker entities: @@ -1911,16 +2098,6 @@ entities: parent: 2 - proto: Bed entities: - - uid: 83 - components: - - type: Transform - pos: 19.5,3.5 - parent: 2 - - uid: 84 - components: - - type: Transform - pos: 19.5,4.5 - parent: 2 - uid: 85 components: - type: Transform @@ -1952,18 +2129,6 @@ entities: - type: Transform pos: 5.5,-4.5 parent: 2 -- proto: BedsheetOrange - entities: - - uid: 90 - components: - - type: Transform - pos: 19.5,3.5 - parent: 2 - - uid: 91 - components: - - type: Transform - pos: 19.5,4.5 - parent: 2 - proto: BlastDoor entities: - uid: 910 @@ -1980,6 +2145,13 @@ entities: - type: Transform pos: 6.3718643,-0.34468752 parent: 2 +- proto: BookshelfFilled + entities: + - uid: 2574 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 - proto: BoozeDispenser entities: - uid: 94 @@ -2034,6 +2206,18 @@ entities: - type: Transform pos: -12.730633,3.8739996 parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 +- proto: ButtonFrameCaution + entities: + - uid: 2616 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 - proto: ButtonFrameCautionSecurity entities: - uid: 2456 @@ -3178,31 +3362,6 @@ entities: - type: Transform pos: 17.5,2.5 parent: 2 - - uid: 329 - components: - - type: Transform - pos: 16.5,2.5 - parent: 2 - - uid: 330 - components: - - type: Transform - pos: 16.5,3.5 - parent: 2 - - uid: 331 - components: - - type: Transform - pos: 16.5,4.5 - parent: 2 - - uid: 332 - components: - - type: Transform - pos: 16.5,5.5 - parent: 2 - - uid: 333 - components: - - type: Transform - pos: 16.5,6.5 - parent: 2 - uid: 334 components: - type: Transform @@ -3213,11 +3372,6 @@ entities: - type: Transform pos: 14.5,6.5 parent: 2 - - uid: 336 - components: - - type: Transform - pos: 16.5,1.5 - parent: 2 - uid: 337 components: - type: Transform @@ -3313,16 +3467,6 @@ entities: - type: Transform pos: 20.5,2.5 parent: 2 - - uid: 356 - components: - - type: Transform - pos: 19.5,2.5 - parent: 2 - - uid: 357 - components: - - type: Transform - pos: 21.5,2.5 - parent: 2 - uid: 358 components: - type: Transform @@ -3483,11 +3627,6 @@ entities: - type: Transform pos: 24.5,5.5 parent: 2 - - uid: 390 - components: - - type: Transform - pos: 24.5,4.5 - parent: 2 - uid: 391 components: - type: Transform @@ -3521,7 +3660,7 @@ entities: - uid: 397 components: - type: Transform - pos: 19.5,6.5 + pos: 20.5,7.5 parent: 2 - uid: 398 components: @@ -3706,12 +3845,12 @@ entities: - uid: 434 components: - type: Transform - pos: 10.5,11.5 + pos: 19.5,7.5 parent: 2 - uid: 435 components: - type: Transform - pos: 11.5,11.5 + pos: 18.5,7.5 parent: 2 - uid: 436 components: @@ -3838,6 +3977,61 @@ entities: - type: Transform pos: 10.5,-8.5 parent: 2 + - uid: 554 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 - uid: 1879 components: - type: Transform @@ -3853,6 +4047,111 @@ entities: - type: Transform pos: -4.5,10.5 parent: 2 + - uid: 2522 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 17.5,4.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 - proto: CableHV entities: - uid: 461 @@ -4305,26 +4604,6 @@ entities: - type: Transform pos: 15.5,4.5 parent: 2 - - uid: 551 - components: - - type: Transform - pos: 16.5,4.5 - parent: 2 - - uid: 552 - components: - - type: Transform - pos: 16.5,3.5 - parent: 2 - - uid: 553 - components: - - type: Transform - pos: 16.5,2.5 - parent: 2 - - uid: 554 - components: - - type: Transform - pos: 16.5,1.5 - parent: 2 - uid: 555 components: - type: Transform @@ -4620,6 +4899,26 @@ entities: - type: Transform pos: 23.5,4.5 parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 - proto: CableMV entities: - uid: 614 @@ -5307,6 +5606,11 @@ entities: - type: Transform pos: -1.5,8.5 parent: 2 + - uid: 2626 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 - proto: CableTerminal entities: - uid: 752 @@ -5320,25 +5624,21 @@ entities: - uid: 753 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,-3.5 parent: 2 - uid: 754 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,-3.5 parent: 2 - uid: 755 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,-3.5 parent: 2 - uid: 756 components: - type: Transform - rot: 3.141592653589793 rad pos: 18.5,-3.5 parent: 2 - proto: CarpetBlue @@ -5363,55 +5663,46 @@ entities: - uid: 760 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-4.5 parent: 2 - uid: 761 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-3.5 parent: 2 - uid: 762 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-2.5 parent: 2 - uid: 763 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-4.5 parent: 2 - uid: 764 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-3.5 parent: 2 - uid: 765 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-2.5 parent: 2 - uid: 766 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 2 - uid: 767 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-3.5 parent: 2 - uid: 768 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-2.5 parent: 2 - proto: CarpetSBlue @@ -5788,23 +6079,122 @@ entities: - type: Transform pos: 8.5,-6.5 parent: 2 - - uid: 843 + - uid: 892 components: - type: Transform - pos: -1.5,14.5 + rot: -1.5707963267948966 rad + pos: 9.5,-17.5 parent: 2 - - uid: 844 + - uid: 904 components: - type: Transform - pos: -2.5,14.5 + rot: -1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,3.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,4.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: -2.5,-15.5 parent: 2 - proto: Chair entities: - - uid: 845 - components: - - type: Transform - pos: -1.5,-11.5 - parent: 2 - uid: 846 components: - type: Transform @@ -5852,6 +6242,51 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 + - uid: 1904 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,11.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 2 - proto: ChairFolding entities: - uid: 853 @@ -5918,12 +6353,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,0.5 parent: 2 - - uid: 863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,16.5 - parent: 2 - uid: 864 components: - type: Transform @@ -6020,13 +6449,13 @@ entities: - type: Transform pos: -4.5,5.5 parent: 2 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 879 + - uid: 2608 components: - type: Transform - pos: 12.5,13.5 + pos: 16.5,10.5 parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: - uid: 880 components: - type: Transform @@ -6047,6 +6476,11 @@ entities: - type: Transform pos: -16.5,6.5 parent: 2 + - uid: 2216 + components: + - type: Transform + pos: 12.5,14.5 + parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: - uid: 881 @@ -6054,17 +6488,17 @@ entities: - type: Transform pos: 5.5,-8.5 parent: 2 - - uid: 885 + - uid: 1750 components: - type: Transform - pos: 11.5,13.5 + pos: 11.5,14.5 parent: 2 - proto: ClosetFireFilled entities: - - uid: 1739 + - uid: 899 components: - type: Transform - pos: 12.5,11.5 + pos: 12.5,12.5 parent: 2 - proto: ClosetJanitorFilled entities: @@ -6100,13 +6534,6 @@ entities: - type: Transform pos: -18.5,-0.5 parent: 2 -- proto: ClosetToolFilled - entities: - - uid: 892 - components: - - type: Transform - pos: -16.5,1.5 - parent: 2 - proto: ClosetWallEmergencyFilledRandom entities: - uid: 893 @@ -6143,31 +6570,6 @@ entities: - type: Transform pos: 6.5,-5.5 parent: 2 -- proto: ClosetWallOrange - entities: - - uid: 899 - components: - - type: Transform - pos: 18.5,6.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClothingBackpackERTJanitor entities: - uid: 887 @@ -6203,13 +6605,6 @@ entities: - type: Transform pos: 18.531456,-2.5905745 parent: 2 -- proto: ClothingHeadsetMedicalScience - entities: - - uid: 904 - components: - - type: Transform - pos: -2.3716664,7.587408 - parent: 2 - proto: ClothingHeadsetMining entities: - uid: 905 @@ -6217,13 +6612,6 @@ entities: - type: Transform pos: 1.6413194,11.748624 parent: 2 -- proto: ClothingNeckCloakMiner - entities: - - uid: 906 - components: - - type: Transform - pos: 1.5246525,11.641014 - parent: 2 - proto: ClothingNeckCloakTrans entities: - uid: 907 @@ -6357,11 +6745,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-2.5 parent: 2 - - uid: 929 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 2 - uid: 930 components: - type: Transform @@ -6380,17 +6763,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-2.5 parent: 2 - - uid: 933 - components: - - type: Transform - pos: 16.5,5.5 - parent: 2 - - uid: 934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,3.5 - parent: 2 - proto: ComputerAlert entities: - uid: 2081 @@ -6410,7 +6782,8 @@ entities: - type: DeviceLinkSource linkedPorts: 1070: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + - - ArtifactAnalyzerSender + - ArtifactAnalyzerReceiver - proto: ComputerAtmosMonitoring entities: - uid: 1289 @@ -6435,13 +6808,45 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,7.5 parent: 2 -- proto: ComputerCargoShuttle +- proto: ComputerCargoOrdersEngineering entities: - - uid: 938 + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,1.5 + parent: 2 +- proto: ComputerCargoOrdersMedical + entities: + - uid: 1837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 2 +- proto: ComputerCargoOrdersScience + entities: + - uid: 1749 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,10.5 + pos: -6.5,8.5 + parent: 2 +- proto: ComputerCargoOrdersSecurity + entities: + - uid: 1058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-0.5 + parent: 2 +- proto: ComputerCargoOrdersService + entities: + - uid: 954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 parent: 2 - proto: ComputerComms entities: @@ -6467,6 +6872,14 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-0.5 parent: 2 +- proto: ComputerFundingAllocation + entities: + - uid: 943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,1.5 + parent: 2 - proto: ComputerId entities: - uid: 942 @@ -6476,11 +6889,10 @@ entities: parent: 2 - proto: ComputerMassMedia entities: - - uid: 943 + - uid: 1653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,1.5 + pos: 22.5,4.5 parent: 2 - proto: ComputerMedicalRecords entities: @@ -6526,6 +6938,13 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,15.5 parent: 2 +- proto: ComputerSalvageJobBoard + entities: + - uid: 2502 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 - proto: ComputerShuttle entities: - uid: 951 @@ -6536,19 +6955,17 @@ entities: parent: 2 - proto: ComputerShuttleCargo entities: + - uid: 938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 2 - uid: 952 components: - type: Transform pos: 2.5,11.5 parent: 2 -- proto: ComputerStationRecords - entities: - - uid: 954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-0.5 - parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - uid: 955 @@ -6633,6 +7050,13 @@ entities: - type: Transform pos: -18.519308,1.468835 parent: 2 +- proto: CryogenicSleepUnit + entities: + - uid: 2606 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - uid: 967 @@ -6643,10 +7067,10 @@ entities: parent: 2 - proto: DefaultStationBeaconArrivals entities: - - uid: 968 + - uid: 43 components: - type: Transform - pos: 6.5,13.5 + pos: 7.5,16.5 parent: 2 - proto: DefaultStationBeaconAtmospherics entities: @@ -6676,13 +7100,6 @@ entities: - type: Transform pos: 22.5,0.5 parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 973 - components: - - type: Transform - pos: 18.5,4.5 - parent: 2 - proto: DefaultStationBeaconCargoBay entities: - uid: 974 @@ -6711,6 +7128,13 @@ entities: - type: Transform pos: -17.5,0.5 parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 1867 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: - uid: 978 @@ -7193,6 +7617,13 @@ entities: - type: Transform pos: 24.577494,2.096348 parent: 2 +- proto: DrinkMugRainbow + entities: + - uid: 2605 + components: + - type: Transform + pos: 15.158241,10.521398 + parent: 2 - proto: DrinkVodkaBottleFull entities: - uid: 1057 @@ -7200,13 +7631,6 @@ entities: - type: Transform pos: -20.785645,3.762307 parent: 2 -- proto: DrinkWaterBottleFull - entities: - - uid: 1058 - components: - - type: Transform - pos: 18.26465,5.6096234 - parent: 2 - proto: EmergencyLight entities: - uid: 1059 @@ -7298,6 +7722,8 @@ entities: - type: Transform pos: 11.5,3.5 parent: 2 + - type: FaxMachine + name: Reach - proto: FirelockEdge entities: - uid: 1073 @@ -7401,30 +7827,6 @@ entities: - type: DeviceNetwork deviceLists: - 13 - - uid: 1089 - components: - - type: Transform - pos: 16.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11 - - uid: 1090 - components: - - type: Transform - pos: 15.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11 - - uid: 1091 - components: - - type: Transform - pos: 14.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11 - uid: 1092 components: - type: Transform @@ -7466,21 +7868,57 @@ entities: - type: Transform pos: 7.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1753 - uid: 1099 components: - type: Transform pos: 8.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1753 - uid: 1100 components: - type: Transform pos: 6.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1753 - uid: 1101 components: - type: Transform pos: -0.5,8.5 parent: 2 + - uid: 2562 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2366 + - 2621 + - uid: 2563 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2621 + - 2575 + - uid: 2564 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2621 + - 2575 - proto: Fireplace entities: - uid: 1103 @@ -7530,6 +7968,20 @@ entities: parent: 2 - type: Fixtures fixtures: {} +- proto: FoodBowlBig + entities: + - uid: 2441 + components: + - type: Transform + pos: 15.580446,10.595212 + parent: 2 +- proto: ForkPlastic + entities: + - uid: 2440 + components: + - type: Transform + pos: 15.726279,10.605636 + parent: 2 - proto: FuelDispenser entities: - uid: 2453 @@ -7975,14 +8427,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1166 components: - type: Transform @@ -7999,6 +8443,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,4.5 + parent: 2 - proto: GasPipeFourway entities: - uid: 1168 @@ -8064,6 +8522,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1444 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 - proto: GasPipeSensorDistribution entities: - uid: 1183 @@ -8085,6 +8558,36 @@ entities: color: '#990000FF' - proto: GasPipeStraight entities: + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 2 + - uid: 329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 2 + - uid: 330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 2 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,5.5 + parent: 2 + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 2 - uid: 1177 components: - type: Transform @@ -9479,53 +9982,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1359 - components: - - type: Transform - pos: 6.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1365 components: - type: Transform @@ -9590,14 +10046,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1374 components: - type: Transform @@ -9777,6 +10225,36 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,8.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,4.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,6.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 2 - proto: GasPipeTJunction entities: - uid: 1397 @@ -9908,14 +10386,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1415 components: - type: Transform @@ -10119,28 +10589,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1443 - components: - - type: Transform - pos: 14.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1444 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1445 components: - type: Transform @@ -10248,7 +10696,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11 + - 2621 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1457 @@ -10258,7 +10706,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11 + - 2623 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1458 @@ -10365,9 +10813,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 11 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1469 @@ -10388,7 +10833,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10 + - 1753 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1471 @@ -10522,7 +10967,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11 + - 2366 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1484 @@ -10547,8 +10992,33 @@ entities: - 7 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2330 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2575 - proto: GasVentScrubber entities: + - uid: 551 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2575 + - uid: 1443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2366 - uid: 1486 components: - type: Transform @@ -10759,17 +11229,6 @@ entities: - 3 - type: AtmosPipeColor color: '#990000FF' - - uid: 1506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1507 components: - type: Transform @@ -10778,7 +11237,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10 + - 1753 - type: AtmosPipeColor color: '#990000FF' - uid: 1508 @@ -10813,9 +11272,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 11 - type: AtmosPipeColor color: '#990000FF' - uid: 1512 @@ -10823,17 +11279,9 @@ entities: - type: Transform pos: 19.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,3.5 - parent: 2 - type: DeviceNetwork deviceLists: - - 11 + - 2621 - type: AtmosPipeColor color: '#990000FF' - uid: 1514 @@ -10868,6 +11316,14 @@ entities: - 13 - type: AtmosPipeColor color: '#990000FF' + - uid: 2622 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2623 - proto: GeigerCounter entities: - uid: 1517 @@ -10935,11 +11391,41 @@ entities: radius: 175.75 - proto: Grille entities: + - uid: 19 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 - uid: 1072 components: - type: Transform pos: -7.5,8.5 parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 - uid: 1522 components: - type: Transform @@ -10980,11 +11466,6 @@ entities: - type: Transform pos: 2.5,17.5 parent: 2 - - uid: 1530 - components: - - type: Transform - pos: 16.5,6.5 - parent: 2 - uid: 1531 components: - type: Transform @@ -10995,16 +11476,6 @@ entities: - type: Transform pos: 14.5,6.5 parent: 2 - - uid: 1533 - components: - - type: Transform - pos: 13.5,5.5 - parent: 2 - - uid: 1534 - components: - - type: Transform - pos: 13.5,3.5 - parent: 2 - uid: 1535 components: - type: Transform @@ -11095,11 +11566,6 @@ entities: - type: Transform pos: 24.5,5.5 parent: 2 - - uid: 1553 - components: - - type: Transform - pos: 19.5,6.5 - parent: 2 - uid: 1554 components: - type: Transform @@ -11165,31 +11631,6 @@ entities: - type: Transform pos: 3.5,-15.5 parent: 2 - - uid: 1567 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 2 - - uid: 1568 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 2 - - uid: 1569 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 2 - - uid: 1570 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 2 - - uid: 1571 - components: - - type: Transform - pos: -1.5,-12.5 - parent: 2 - uid: 1572 components: - type: Transform @@ -11410,6 +11851,91 @@ entities: - type: Transform pos: -7.5,7.5 parent: 2 + - uid: 1799 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 - proto: Gyroscope entities: - uid: 1618 @@ -11462,6 +11988,20 @@ entities: - type: Transform pos: 24.549932,2.4577096 parent: 2 +- proto: HydroponicsToolClippers + entities: + - uid: 2603 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 2604 + components: + - type: Transform + pos: 12.522824,9.656214 + parent: 2 - proto: hydroponicsTray entities: - uid: 1624 @@ -11480,6 +12020,18 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,5.5 parent: 2 + - uid: 2571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,7.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 - proto: Hypospray entities: - uid: 1628 @@ -11520,6 +12072,13 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-0.5 parent: 2 +- proto: IntercomSecurity + entities: + - uid: 2554 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 - proto: JanitorialTrolley entities: - uid: 1634 @@ -11549,6 +12108,11 @@ entities: - type: Transform pos: -3.5,4.5 parent: 2 + - uid: 2598 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 - proto: KitchenReagentGrinder entities: - uid: 1638 @@ -11561,6 +12125,11 @@ entities: - type: Transform pos: 12.5,1.5 parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 - proto: KitchenSpike entities: - uid: 1640 @@ -11568,13 +12137,6 @@ entities: - type: Transform pos: -5.5,3.5 parent: 2 -- proto: Lamp - entities: - - uid: 1641 - components: - - type: Transform - pos: 16.296532,4.957177 - parent: 2 - proto: LampGold entities: - uid: 1642 @@ -11590,6 +12152,36 @@ entities: - type: Transform pos: -3.43964,5.3541145 parent: 2 +- proto: LockableButtonSecurity + entities: + - uid: 2617 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2596: + - - Pressed + - Toggle + 2610: + - - Pressed + - Toggle + 2611: + - - Pressed + - Toggle + 2612: + - - Pressed + - Toggle + 2613: + - - Pressed + - Toggle + 2614: + - - Pressed + - Toggle + 2615: + - - Pressed + - Toggle - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 2499 @@ -11653,10 +12245,10 @@ entities: parent: 2 - proto: LockerHeadOfSecurityFilledHardsuit entities: - - uid: 1653 + - uid: 2628 components: - type: Transform - pos: 22.5,4.5 + pos: 21.5,3.5 parent: 2 - proto: LockerMedicalFilled entities: @@ -11667,17 +12259,31 @@ entities: parent: 2 - proto: LockerMedicineFilled entities: - - uid: 1655 + - uid: 1739 components: - type: Transform pos: 12.5,-2.5 parent: 2 -- proto: LockerScienceFilled +- proto: LockerPrisoner entities: - - uid: 1805 + - uid: 2558 components: - type: Transform - pos: -6.5,8.5 + pos: 17.5,3.5 + parent: 2 +- proto: LockerPrisoner2 + entities: + - uid: 2559 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 879 + components: + - type: Transform + pos: -6.5,9.5 parent: 2 - proto: LockerSecurityFilled entities: @@ -11693,6 +12299,13 @@ entities: - type: Transform pos: 5.5,-1.5 parent: 2 +- proto: LootSpawnerRandomLockbox + entities: + - uid: 1841 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 - proto: MachineArtifactAnalyzer entities: - uid: 1070 @@ -11714,6 +12327,13 @@ entities: - type: Transform pos: 8.5,1.5 parent: 2 +- proto: MachineMaterialSilo + entities: + - uid: 2036 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 - proto: MaintenanceFluffSpawner entities: - uid: 1661 @@ -12184,12 +12804,12 @@ entities: - type: Transform pos: 10.2875805,-1.5445261 parent: 2 -- proto: PottedPlantBioluminscent +- proto: PottedPlantRandom entities: - - uid: 1734 + - uid: 1567 components: - type: Transform - pos: 14.5,5.5 + pos: 13.5,3.5 parent: 2 - proto: PowerCellHyper entities: @@ -12229,11 +12849,21 @@ entities: parent: 2 - proto: Poweredlight entities: + - uid: 75 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 - uid: 876 components: - type: Transform pos: -3.5,11.5 parent: 2 + - uid: 1568 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 - uid: 1740 components: - type: Transform @@ -12294,22 +12924,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,14.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1751 components: - type: Transform @@ -12317,21 +12931,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1752 - components: - - type: Transform - pos: 10.5,5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,4.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1754 components: - type: Transform @@ -12356,14 +12955,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1758 components: - type: Transform @@ -12465,12 +13056,47 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 1805 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,15.5 + parent: 2 - uid: 1943 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-3.5 parent: 2 + - uid: 2099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,4.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-16.5 + parent: 2 - proto: PoweredlightLED entities: - uid: 1771 @@ -12583,13 +13209,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1787 - components: - - type: Transform - pos: 18.5,5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1788 components: - type: Transform @@ -12620,6 +13239,12 @@ entities: - type: Transform pos: 4.5,-6.5 parent: 2 + - uid: 2609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 2 - proto: Protolathe entities: - uid: 1792 @@ -12659,11 +13284,6 @@ entities: - type: Transform pos: -4.5,7.5 parent: 2 - - uid: 1799 - components: - - type: Transform - pos: 18.5,5.5 - parent: 2 - uid: 1800 components: - type: Transform @@ -12671,76 +13291,76 @@ entities: parent: 2 - proto: Railing entities: - - uid: 1807 + - uid: 552 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - uid: 553 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,8.5 - parent: 2 - - uid: 1808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,9.5 - parent: 2 - - uid: 1809 - components: - - type: Transform pos: 10.5,10.5 parent: 2 - - uid: 1810 - components: - - type: Transform - pos: 10.5,15.5 - parent: 2 - - uid: 1811 + - uid: 1363 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,14.5 - parent: 2 - - uid: 1812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,13.5 - parent: 2 -- proto: RailingCornerSmall - entities: - - uid: 1813 - components: - - type: Transform - pos: 11.5,13.5 - parent: 2 - - uid: 1814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,10.5 + pos: 9.5,11.5 parent: 2 - uid: 1815 components: - type: Transform - rot: 3.141592653589793 rad + pos: 10.5,16.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,15.5 parent: 2 - - uid: 1816 + - uid: 2006 components: - type: Transform rot: 3.141592653589793 rad + pos: 10.5,14.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 1361 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,10.5 parent: 2 - - uid: 1817 + - uid: 1362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,13.5 + rot: 3.141592653589793 rad + pos: 9.5,12.5 parent: 2 - - uid: 1818 + - uid: 1364 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,12.5 + parent: 2 + - uid: 1811 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,8.5 + pos: 9.5,14.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,16.5 parent: 2 - proto: RandomArtifactSpawner entities: @@ -12756,6 +13376,13 @@ entities: - type: Transform pos: -16.5,-4.5 parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 2618 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 - proto: RCD entities: - uid: 1821 @@ -12770,6 +13397,11 @@ entities: - type: Transform pos: -3.642765,5.4634895 parent: 2 + - uid: 2619 + components: + - type: Transform + pos: 15.327541,10.68051 + parent: 2 - proto: Recycler entities: - uid: 1823 @@ -12811,6 +13443,9 @@ entities: - type: Transform pos: 10.483304,-6.5229325 parent: 2 + - type: CollisionWake + enabled: False + - type: Conveyed - proto: SalvageMagnet entities: - uid: 1829 @@ -12853,6 +13488,12 @@ entities: - type: Transform pos: 15.5,-4.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: SeedExtractor entities: - uid: 1836 @@ -12860,6 +13501,11 @@ entities: - type: Transform pos: -12.5,6.5 parent: 2 + - uid: 2569 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 - proto: SheetGlass entities: - uid: 1594 @@ -12867,16 +13513,6 @@ entities: - type: Transform pos: -21.352695,-2.519871 parent: 2 - - uid: 1837 - components: - - type: Transform - pos: -3.0838065,7.537944 - parent: 2 - - uid: 1838 - components: - - type: Transform - pos: -3.0838065,7.537944 - parent: 2 - uid: 1839 components: - type: Transform @@ -12892,17 +13528,27 @@ entities: - type: Transform pos: -21.352695,-2.519871 parent: 2 + - uid: 2507 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 - proto: SheetPlastic entities: - - uid: 1841 + - uid: 863 components: - type: Transform - pos: -2.6463065,7.537944 + pos: -2.5,7.5 parent: 2 - - uid: 1842 + - uid: 934 components: - type: Transform - pos: -2.6463065,7.537944 + pos: -2.5,7.5 parent: 2 - uid: 1843 components: @@ -12926,16 +13572,6 @@ entities: - type: Transform pos: 7.5296574,-16.509167 parent: 2 - - uid: 1846 - components: - - type: Transform - pos: -3.5525565,7.506694 - parent: 2 - - uid: 1847 - components: - - type: Transform - pos: -3.5525565,7.506694 - parent: 2 - uid: 1848 components: - type: Transform @@ -12951,6 +13587,16 @@ entities: - type: Transform pos: -21.64957,-2.504246 parent: 2 + - uid: 2509 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 - proto: SheetUranium entities: - uid: 948 @@ -12987,6 +13633,45 @@ entities: - type: Transform pos: -14.5,2.5 parent: 2 + - uid: 2596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,8.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,7.5 + parent: 2 - proto: ShuttersWindowOpen entities: - uid: 1857 @@ -12996,16 +13681,51 @@ entities: parent: 2 - proto: ShuttleWindow entities: + - uid: 71 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 - uid: 913 components: - type: Transform pos: -5.5,12.5 parent: 2 + - uid: 973 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 - uid: 1803 components: - type: Transform pos: -6.5,12.5 parent: 2 + - uid: 1814 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 - uid: 1858 components: - type: Transform @@ -13044,27 +13764,17 @@ entities: - uid: 1866 components: - type: Transform - pos: 0.5,-14.5 - parent: 2 - - uid: 1867 - components: - - type: Transform - pos: -0.5,-14.5 + pos: 0.5,-16.5 parent: 2 - uid: 1868 components: - type: Transform - pos: -0.5,-13.5 + pos: -1.5,-14.5 parent: 2 - uid: 1869 components: - type: Transform - pos: -1.5,-13.5 - parent: 2 - - uid: 1870 - components: - - type: Transform - pos: -1.5,-12.5 + pos: -3.5,-12.5 parent: 2 - uid: 1871 components: @@ -13136,11 +13846,6 @@ entities: - type: Transform pos: 0.5,14.5 parent: 2 - - uid: 1889 - components: - - type: Transform - pos: 13.5,11.5 - parent: 2 - uid: 1890 components: - type: Transform @@ -13206,16 +13911,6 @@ entities: - type: Transform pos: 13.5,1.5 parent: 2 - - uid: 1903 - components: - - type: Transform - pos: 13.5,3.5 - parent: 2 - - uid: 1904 - components: - - type: Transform - pos: 13.5,5.5 - parent: 2 - uid: 1905 components: - type: Transform @@ -13226,11 +13921,6 @@ entities: - type: Transform pos: 15.5,6.5 parent: 2 - - uid: 1907 - components: - - type: Transform - pos: 16.5,6.5 - parent: 2 - uid: 1908 components: - type: Transform @@ -13296,11 +13986,6 @@ entities: - type: Transform pos: 24.5,5.5 parent: 2 - - uid: 1921 - components: - - type: Transform - pos: 19.5,6.5 - parent: 2 - uid: 1922 components: - type: Transform @@ -13406,21 +14091,86 @@ entities: - type: Transform pos: 6.5,19.5 parent: 2 + - uid: 2047 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 - uid: 2061 components: - type: Transform pos: -7.5,7.5 parent: 2 + - uid: 2126 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 - uid: 2172 components: - type: Transform pos: -7.5,8.5 parent: 2 + - uid: 2214 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 - uid: 2269 components: - type: Transform pos: -7.5,10.5 parent: 2 + - uid: 2326 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 - proto: SignalButtonDirectional entities: - uid: 1946 @@ -13432,11 +14182,14 @@ entities: - type: DeviceLinkSource linkedPorts: 1850: - - Pressed: Toggle + - - Pressed + - Toggle 1857: - - Pressed: Toggle + - - Pressed + - Toggle 1849: - - Pressed: Toggle + - - Pressed + - Toggle - uid: 1947 components: - type: Transform @@ -13446,7 +14199,8 @@ entities: - type: DeviceLinkSource linkedPorts: 1853: - - Pressed: Toggle + - - Pressed + - Toggle - uid: 1948 components: - type: Transform @@ -13456,9 +14210,11 @@ entities: - type: DeviceLinkSource linkedPorts: 1851: - - Pressed: Toggle + - - Pressed + - Toggle 1852: - - Pressed: Toggle + - - Pressed + - Toggle - proto: SignalSwitchDirectional entities: - uid: 1802 @@ -13469,7 +14225,8 @@ entities: - type: DeviceLinkSource linkedPorts: 910: - - Status: Toggle + - - Status + - Toggle - proto: SignAtmos entities: - uid: 2296 @@ -13526,6 +14283,14 @@ entities: - type: Transform pos: -15.5,6.5 parent: 2 +- proto: SignGenpop + entities: + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 2 - proto: SignHydro1 entities: - uid: 81 @@ -13547,13 +14312,6 @@ entities: - type: Transform pos: 24.5,-1.5 parent: 2 -- proto: SignPrison - entities: - - uid: 1959 - components: - - type: Transform - pos: 17.5,4.5 - parent: 2 - proto: SignScience entities: - uid: 1960 @@ -13568,6 +14326,12 @@ entities: - type: Transform pos: 20.5,-1.5 parent: 2 + - uid: 2576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,6.5 + parent: 2 - proto: SignSecureSmallRed entities: - uid: 1962 @@ -13582,6 +14346,13 @@ entities: - type: Transform pos: 13.5,2.5 parent: 2 +- proto: SignShipDock + entities: + - uid: 1359 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 - proto: SignToolStorage entities: - uid: 1964 @@ -13589,6 +14360,13 @@ entities: - type: Transform pos: -19.5,4.5 parent: 2 +- proto: Sink + entities: + - uid: 2620 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 - proto: SinkWide entities: - uid: 1965 @@ -13615,12 +14393,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-0.5 parent: 2 - - uid: 1969 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,4.5 - parent: 2 - proto: SmartFridge entities: - uid: 1970 @@ -13745,6 +14517,21 @@ entities: parent: 2 - proto: SpawnPointLatejoin entities: + - uid: 1838 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 - uid: 1988 components: - type: Transform @@ -13755,10 +14542,10 @@ entities: - type: Transform pos: 4.5,16.5 parent: 2 - - uid: 1990 + - uid: 2048 components: - type: Transform - pos: 10.5,16.5 + pos: 6.5,13.5 parent: 2 - proto: SpawnPointMedicalDoctor entities: @@ -13869,17 +14656,19 @@ entities: parent: 2 - proto: StatueVenusBlue entities: - - uid: 2005 + - uid: 1842 components: - type: Transform - pos: 10.5,9.5 + rot: 1.5707963267948966 rad + pos: 10.5,11.5 parent: 2 - proto: StatueVenusRed entities: - - uid: 2006 + - uid: 1810 components: - type: Transform - pos: 10.5,14.5 + rot: 3.141592653589793 rad + pos: 10.5,15.5 parent: 2 - proto: StoolBar entities: @@ -13929,13 +14718,6 @@ entities: - type: Transform pos: 11.5,7.5 parent: 2 - - uid: 2014 - components: - - type: MetaData - name: Bow Substation - - type: Transform - pos: 21.5,4.5 - parent: 2 - uid: 2015 components: - type: MetaData @@ -13957,7 +14739,14 @@ entities: - type: Transform pos: -21.5,3.5 parent: 2 -- proto: SuitStorageBasic + - uid: 2368 + components: + - type: MetaData + name: Bow Substation + - type: Transform + pos: 21.5,5.5 + parent: 2 +- proto: SuitStorageEVA entities: - uid: 2018 components: @@ -13998,17 +14787,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Bridge - - uid: 2023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig - uid: 2024 components: - type: Transform @@ -14129,6 +14907,16 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Off the Port Quarter + - uid: 2624 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Genpop - proto: SyringeInaprovaline entities: - uid: 2035 @@ -14186,25 +14974,32 @@ entities: - uid: 2045 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,11.5 parent: 2 - uid: 2046 components: - type: Transform - rot: -1.5707963267948966 rad pos: -2.5,7.5 parent: 2 - - uid: 2047 + - uid: 2566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,7.5 + pos: 12.5,9.5 parent: 2 - - uid: 2048 + - uid: 2595 components: - type: Transform - pos: 16.5,4.5 + pos: 14.5,10.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 16.5,7.5 parent: 2 - proto: TableCarpet entities: @@ -14253,13 +15048,11 @@ entities: - uid: 2057 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-0.5 parent: 2 - uid: 2058 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 - uid: 2059 @@ -14280,31 +15073,26 @@ entities: - uid: 2064 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-4.5 parent: 2 - uid: 2065 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,-3.5 parent: 2 - uid: 2066 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,3.5 parent: 2 - uid: 2067 components: - type: Transform - rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 2 - uid: 2068 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,3.5 parent: 2 - uid: 2069 @@ -14322,7 +15110,6 @@ entities: - uid: 1887 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,-11.5 parent: 2 - uid: 2070 @@ -14353,13 +15140,11 @@ entities: - uid: 2075 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,5.5 parent: 2 - uid: 2076 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,5.5 parent: 2 - uid: 2077 @@ -14483,11 +15268,21 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,4.5 parent: 2 - - uid: 2099 + - uid: 2406 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,15.5 + pos: 12.5,16.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 5.5,18.5 parent: 2 - proto: ToolboxEmergencyFilled entities: @@ -14520,6 +15315,27 @@ entities: - type: Transform pos: -4.498433,-6.6936054 parent: 2 +- proto: TurnstileGenpopEnter + entities: + - uid: 2557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,6.5 + parent: 2 +- proto: TurnstileGenpopLeave + entities: + - uid: 2555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 - proto: TwoWayLever entities: - uid: 2105 @@ -14530,13 +15346,19 @@ entities: - type: DeviceLinkSource linkedPorts: 956: - - Right: Forward - - Left: Reverse - - Middle: Off + - - Right + - Forward + - - Left + - Reverse + - - Middle + - Off 957: - - Left: Reverse - - Right: Forward - - Middle: Off + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off - uid: 2106 components: - type: Transform @@ -14545,9 +15367,12 @@ entities: - type: DeviceLinkSource linkedPorts: 1823: - - Left: Reverse - - Right: Forward - - Middle: Off + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off - uid: 2107 components: - type: Transform @@ -14556,25 +15381,40 @@ entities: - type: DeviceLinkSource linkedPorts: 958: - - Middle: Off - - Right: Forward - - Left: Reverse + - - Middle + - Off + - - Right + - Forward + - - Left + - Reverse 959: - - Left: Reverse - - Right: Forward - - Middle: Off + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off 960: - - Left: Reverse - - Right: Forward - - Middle: Off + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off 961: - - Left: Reverse - - Right: Forward - - Middle: Off + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off 962: - - Left: Reverse - - Right: Forward - - Middle: Off + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off - proto: VendingMachineBooze entities: - uid: 2108 @@ -14646,6 +15486,11 @@ entities: - type: Transform pos: 0.5,-13.5 parent: 2 + - uid: 2601 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 - proto: VendingMachineJaniDrobe entities: - uid: 2118 @@ -14695,6 +15540,13 @@ entities: - type: Transform pos: -14.5,6.5 parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 2570 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 - proto: VendingMachineSnack entities: - uid: 2125 @@ -14704,10 +15556,10 @@ entities: parent: 2 - proto: VendingMachineSustenance entities: - - uid: 2126 + - uid: 2561 components: - type: Transform - pos: 19.5,5.5 + pos: 18.5,5.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: @@ -14756,6 +15608,16 @@ entities: parent: 2 - proto: WallShuttle entities: + - uid: 32 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 - uid: 672 components: - type: Transform @@ -14766,16 +15628,66 @@ entities: - type: Transform pos: -7.5,9.5 parent: 2 + - uid: 968 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 - uid: 1076 components: - type: Transform pos: -8.5,6.5 parent: 2 + - uid: 1165 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 - uid: 1616 components: - type: Transform pos: -7.5,12.5 parent: 2 + - uid: 1752 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 - uid: 2134 components: - type: Transform @@ -15076,20 +15988,10 @@ entities: - type: Transform pos: 3.5,-8.5 parent: 2 - - uid: 2196 - components: - - type: Transform - pos: -2.5,-12.5 - parent: 2 - uid: 2197 components: - type: Transform - pos: -2.5,-11.5 - parent: 2 - - uid: 2198 - components: - - type: Transform - pos: -3.5,-11.5 + pos: 0.5,-17.5 parent: 2 - uid: 2199 components: @@ -15166,21 +16068,11 @@ entities: - type: Transform pos: -15.5,-5.5 parent: 2 - - uid: 2214 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 2 - uid: 2215 components: - type: Transform pos: -4.5,12.5 parent: 2 - - uid: 2216 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 2 - uid: 2217 components: - type: Transform @@ -15696,11 +16588,6 @@ entities: - type: Transform pos: -3.5,15.5 parent: 2 - - uid: 2326 - components: - - type: Transform - pos: 11.5,14.5 - parent: 2 - uid: 2327 components: - type: Transform @@ -15716,11 +16603,6 @@ entities: - type: Transform pos: -3.5,13.5 parent: 2 - - uid: 2330 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - uid: 2331 components: - type: Transform @@ -15886,31 +16768,11 @@ entities: - type: Transform pos: 27.5,-1.5 parent: 2 - - uid: 2364 - components: - - type: Transform - pos: 17.5,6.5 - parent: 2 - uid: 2365 components: - type: Transform pos: 17.5,2.5 parent: 2 - - uid: 2366 - components: - - type: Transform - pos: 17.5,5.5 - parent: 2 - - uid: 2367 - components: - - type: Transform - pos: 17.5,3.5 - parent: 2 - - uid: 2368 - components: - - type: Transform - pos: 17.5,4.5 - parent: 2 - uid: 2369 components: - type: Transform @@ -15944,7 +16806,7 @@ entities: - uid: 2375 components: - type: Transform - pos: 21.5,5.5 + pos: 13.5,15.5 parent: 2 - uid: 2376 components: @@ -16064,54 +16926,86 @@ entities: - uid: 2399 components: - type: Transform - rot: 3.141592653589793 rad pos: -7.5,-1.5 parent: 2 - uid: 2400 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,-1.5 parent: 2 - uid: 2401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,14.5 + pos: 14.5,15.5 parent: 2 - uid: 2402 components: - type: Transform pos: 5.5,17.5 parent: 2 - - uid: 2403 - components: - - type: Transform - pos: 12.5,9.5 - parent: 2 - - uid: 2404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 2 - - uid: 2405 - components: - - type: Transform - pos: 13.5,9.5 - parent: 2 - - uid: 2406 - components: - - type: Transform - pos: 13.5,13.5 - parent: 2 - uid: 2407 components: - type: Transform pos: 1.5,17.5 parent: 2 + - uid: 2412 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 - proto: WallShuttleDiagonal entities: + - uid: 906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 2 - uid: 2409 components: - type: Transform @@ -16130,11 +17024,16 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-17.5 parent: 2 - - uid: 2412 + - uid: 2517 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,16.5 + pos: 10.5,18.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 4.5,18.5 parent: 2 - proto: WallWeaponCapacitorRecharger entities: @@ -16164,6 +17063,13 @@ entities: - type: Transform pos: 8.5,-12.5 parent: 2 +- proto: WaterTankFull + entities: + - uid: 2573 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 - proto: WaterTankHighCapacity entities: - uid: 2417 @@ -16342,6 +17248,12 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,0.5 parent: 2 + - uid: 2014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 2 - uid: 2437 components: - type: Transform @@ -16359,18 +17271,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 2 - - uid: 2440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 2 - - uid: 2441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,3.5 - parent: 2 - proto: WindoorSecureMedicalLocked entities: - uid: 2444 @@ -16646,12 +17546,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,2.5 parent: 2 - - uid: 2494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,4.5 - parent: 2 - proto: Wrench entities: - uid: 2442 diff --git a/Resources/Prototypes/Access/misc.yml b/Resources/Prototypes/Access/misc.yml index 1143b3edf0..4a17affcfe 100644 --- a/Resources/Prototypes/Access/misc.yml +++ b/Resources/Prototypes/Access/misc.yml @@ -42,3 +42,8 @@ - Mail # Sunrise-edit - CargoPurchaseAccess # Sunrise-edit - ResearchConsoleAccess # Sunrise-edit + +- type: accessGroup + id: General + tags: + - Maintenance diff --git a/Resources/Prototypes/AppearanceCustomization/station_ai.yml b/Resources/Prototypes/AppearanceCustomization/station_ai.yml new file mode 100644 index 0000000000..465cfdf648 --- /dev/null +++ b/Resources/Prototypes/AppearanceCustomization/station_ai.yml @@ -0,0 +1,163 @@ +# Groups +- type: stationAiCustomizationGroup + id: StationAiCoreIconography + name: station-ai-customization-core + category: CoreIconography + protoIds: + - StationAiIconAi + - StationAiIconAngel + - StationAiIconBliss + - StationAiIconClown + - StationAiIconDorf + - StationAiIconHeartline + - StationAiIconSmiley + +- type: stationAiCustomizationGroup + id: StationAiHolograms + name: station-ai-customization-hologram + category: Hologram + protoIds: + - StationAiHologramFemale + - StationAiHologramMale + - StationAiHologramFace + - StationAiHologramCat + - StationAiHologramDog + +# Iconography +- type: stationAiCustomization + abstract: true + id: StationAiIconBase + previewKey: Occupied + previewBackground: + sprite: Mobs/Silicon/station_ai.rsi + state: base + +- type: stationAiCustomization + parent: StationAiIconBase + id: StationAiIconAi + name: station-ai-icon-ai + layerData: + Occupied: + sprite: Mobs/Silicon/station_ai.rsi + state: ai + Dead: + sprite: Mobs/Silicon/station_ai.rsi + state: ai_dead + +- type: stationAiCustomization + parent: StationAiIconBase + id: StationAiIconAngel + name: station-ai-icon-angel + layerData: + Occupied: + sprite: Mobs/Silicon/station_ai.rsi + state: ai_angel + Dead: + sprite: Mobs/Silicon/station_ai.rsi + state: ai_angel_dead + +- type: stationAiCustomization + parent: StationAiIconBase + id: StationAiIconBliss + name: station-ai-icon-bliss + layerData: + Occupied: + sprite: Mobs/Silicon/station_ai.rsi + state: ai_bliss + Dead: + sprite: Mobs/Silicon/station_ai.rsi + state: ai_dead + +- type: stationAiCustomization + parent: StationAiIconBase + id: StationAiIconClown + name: station-ai-icon-clown + layerData: + Occupied: + sprite: Mobs/Silicon/station_ai.rsi + state: ai_clown + Dead: + sprite: Mobs/Silicon/station_ai.rsi + state: ai_clown_dead + +- type: stationAiCustomization + parent: StationAiIconBase + id: StationAiIconDorf + name: station-ai-icon-dorf + layerData: + Occupied: + sprite: Mobs/Silicon/station_ai.rsi + state: ai_dorf + Dead: + sprite: Mobs/Silicon/station_ai.rsi + state: ai_dead + +- type: stationAiCustomization + parent: StationAiIconBase + id: StationAiIconHeartline + name: station-ai-icon-heartline + layerData: + Occupied: + sprite: Mobs/Silicon/station_ai.rsi + state: "ai_heartline" + Dead: + sprite: Mobs/Silicon/station_ai.rsi + state: "ai_heartline_dead" + +- type: stationAiCustomization + parent: StationAiIconBase + id: StationAiIconSmiley + name: station-ai-icon-smiley + layerData: + Occupied: + sprite: Mobs/Silicon/station_ai.rsi + state: "ai_smiley" + Dead: + sprite: Mobs/Silicon/station_ai.rsi + state: "ai_dead" + +# Holograms +- type: stationAiCustomization + id: StationAiHologramFemale + name: station-ai-hologram-female + previewKey: Hologram + layerData: + Hologram: + sprite: Mobs/Silicon/holograms.rsi + state: ai_female + +- type: stationAiCustomization + id: StationAiHologramMale + name: station-ai-hologram-male + previewKey: Hologram + layerData: + Hologram: + sprite: Mobs/Silicon/holograms.rsi + state: ai_male + +- type: stationAiCustomization + id: StationAiHologramFace + name: station-ai-hologram-face + previewKey: Hologram + layerData: + Hologram: + sprite: Mobs/Silicon/holograms.rsi + state: ai_face + +- type: stationAiCustomization + id: StationAiHologramCat + name: station-ai-hologram-cat + previewKey: Hologram + layerData: + Hologram: + sprite: Mobs/Silicon/holograms.rsi + state: ai_cat + +- type: stationAiCustomization + id: StationAiHologramDog + name: station-ai-hologram-dog + previewKey: Hologram + layerData: + Hologram: + sprite: Mobs/Silicon/holograms.rsi + state: ai_dog diff --git a/Resources/Prototypes/Body/Organs/vox.yml b/Resources/Prototypes/Body/Organs/vox.yml index 8b38bb8d0b..3dbb65c928 100644 --- a/Resources/Prototypes/Body/Organs/vox.yml +++ b/Resources/Prototypes/Body/Organs/vox.yml @@ -27,14 +27,7 @@ specialDigestible: tags: - Trash - - Fruit - - ReptilianFood - - Meat - - Pill - - Crayon - - Paper - - VoxFood - - Vegetable + isSpecialDigestibleExclusive: false - type: entity parent: OrganHumanLiver diff --git a/Resources/Prototypes/Body/Parts/animal.yml b/Resources/Prototypes/Body/Parts/animal.yml index 347b052c8b..c9ea293cb6 100644 --- a/Resources/Prototypes/Body/Parts/animal.yml +++ b/Resources/Prototypes/Body/Parts/animal.yml @@ -94,3 +94,28 @@ - ReagentId: Blood Quantity: 20 +- type: entity + parent: PartAnimal + id: LeftHandSmartCorgi + name: corgi hand + categories: [ HideSpawnMenu ] + components: + - type: Sprite + layers: + - state: l_hand + - type: BodyPart + partType: Hand + symmetry: Left + +- type: entity + parent: PartAnimal + id: RightHandSmartCorgi + name: corgi hand + categories: [ HideSpawnMenu ] + components: + - type: Sprite + layers: + - state: r_hand + - type: BodyPart + partType: Hand + symmetry: Right diff --git a/Resources/Prototypes/Body/Prototypes/Specific/smartcorgi.yml b/Resources/Prototypes/Body/Prototypes/Specific/smartcorgi.yml new file mode 100644 index 0000000000..89c374ccdd --- /dev/null +++ b/Resources/Prototypes/Body/Prototypes/Specific/smartcorgi.yml @@ -0,0 +1,28 @@ +- type: body + id: SmartCorgi + name: corgi + root: torso + slots: + torso: + part: TorsoAnimal + connections: + - righthand + - lefthand + - legs + organs: + brain: OrganHumanBrain # feels strange but it is what it is + lungs: OrganAnimalLungs + stomach: OrganAnimalStomach + liver: OrganAnimalLiver + heart: OrganAnimalHeart + kidneys: OrganAnimalKidneys + lefthand: + part: LeftHandSmartCorgi + righthand: + part: RightHandSmartCorgi + legs: + part: LegsAnimal + connections: + - feet + feet: + part: FeetAnimal diff --git a/Resources/Prototypes/Catalog/Bounties/bounties.yml b/Resources/Prototypes/Catalog/Bounties/bounties.yml index 0d889c48bf..28adfb16ac 100644 --- a/Resources/Prototypes/Catalog/Bounties/bounties.yml +++ b/Resources/Prototypes/Catalog/Bounties/bounties.yml @@ -750,23 +750,12 @@ - Flash - type: cargoBounty - id: BountyTeethSpaceCarp - reward: 800 - description: bounty-description-tooth-space-carp + id: BountyRing + reward: 12500 + description: bounty-description-ring entries: - - name: bounty-item-tooth-space-carp - amount: 8 + - name: bounty-item-ring + amount: 2 whitelist: tags: - - ToothSpaceCarp - -- type: cargoBounty - id: BountyTeethSharkminnow - reward: 1500 - description: bounty-description-tooth-sharkminnow - entries: - - name: bounty-item-tooth-sharkminnow - amount: 5 - whitelist: - tags: - - ToothSharkminnow + - Ring diff --git a/Resources/Prototypes/Catalog/Bounties/groups.yml b/Resources/Prototypes/Catalog/Bounties/groups.yml new file mode 100644 index 0000000000..54010b96bf --- /dev/null +++ b/Resources/Prototypes/Catalog/Bounties/groups.yml @@ -0,0 +1,11 @@ +- type: cargoBountyGroup + id: StationBounty + +- type: cargoBountyGroup + id: SalvageJobTier1 + +- type: cargoBountyGroup + id: SalvageJobTier2 + +- type: cargoBountyGroup + id: SalvageJobTier3 diff --git a/Resources/Prototypes/Catalog/Bounties/salvage_jobs.yml b/Resources/Prototypes/Catalog/Bounties/salvage_jobs.yml new file mode 100644 index 0000000000..d1f7a002c5 --- /dev/null +++ b/Resources/Prototypes/Catalog/Bounties/salvage_jobs.yml @@ -0,0 +1,173 @@ +# NOTE: if you add any bounties to this, you need to go to Resources/Prototypes/Entities/Stations/base.yml and adjust the thresholds on BaseStationSalvageJobs. +# If you don't do this, you won't raise the limit for completing a given rank and may throw off some balance. + +# Tier 1 + +- type: cargoBounty + id: BountyTeethSpaceCarp + reward: 7500 + description: bounty-description-tooth-space-carp + group: SalvageJobTier1 + sprite: + sprite: Mobs/Aliens/Carps/space.rsi + state: icon + entries: + - name: bounty-item-tooth-space-carp + amount: 10 + whitelist: + tags: + - ToothSpaceCarp + +- type: cargoBounty + id: BountySalvageScrap + reward: 7500 + description: bounty-description-salvage-scrap + group: SalvageJobTier1 + sprite: + sprite: Objects/Materials/Scrap/generic.rsi + state: metal-1 + entries: + - name: bounty-item-scrap + amount: 10 + whitelist: + tags: + - SalvageScrap + +- type: cargoBounty + id: BountySalvageOreGold + reward: 7500 + description: bounty-description-salvage-ore-gold + group: SalvageJobTier1 + sprite: + sprite: Objects/Materials/ore.rsi + state: gold + entries: + - name: bounty-item-ore-gold + amount: 45 + whitelist: + tags: + - OreGold + +- type: cargoBounty + id: BountySalvageOreSilver + reward: 7500 + description: bounty-description-salvage-ore-silver + group: SalvageJobTier1 + sprite: + sprite: Objects/Materials/ore.rsi + state: silver + entries: + - name: bounty-item-ore-silver + amount: 45 + whitelist: + tags: + - OreSilver + +# Tier 2 + +- type: cargoBounty + id: BountyTeethSharkminnow + reward: 12500 + description: bounty-description-tooth-sharkminnow + group: SalvageJobTier2 + sprite: + sprite: Mobs/Aliens/Carps/sharkminnow.rsi + state: icon + entries: + - name: bounty-item-tooth-sharkminnow + amount: 3 + whitelist: + tags: + - ToothSharkminnow + +- type: cargoBounty + id: BountySalvageOrePlasma + reward: 12500 + description: bounty-description-salvage-ore-plasma + group: SalvageJobTier2 + sprite: + sprite: Objects/Materials/ore.rsi + state: plasma + entries: + - name: bounty-item-ore-plasma + amount: 45 + whitelist: + tags: + - OrePlasma + +- type: cargoBounty + id: BountySalvageOreUranium + reward: 12500 + description: bounty-description-salvage-ore-uranium + group: SalvageJobTier2 + sprite: + sprite: Objects/Materials/ore.rsi + state: uranium + entries: + - name: bounty-item-ore-uranium + amount: 30 + whitelist: + tags: + - OreUranium + +- type: cargoBounty + id: BountySalvageOreBananium + reward: 12500 + description: bounty-description-salvage-ore-bananium + group: SalvageJobTier2 + sprite: + sprite: Objects/Materials/ore.rsi + state: bananium + entries: + - name: bounty-item-ore-bananium + amount: 30 + whitelist: + tags: + - OreBananium + +# Tier 3 + +- type: cargoBounty + id: BountyGoliathPlates + reward: 20000 + description: bounty-description-plates + group: SalvageJobTier3 + sprite: + sprite: Mobs/Aliens/Asteroid/goliath.rsi + state: goliath + entries: + - name: bounty-item-plates + amount: 6 + whitelist: + tags: + - GoliathPlate + +- type: cargoBounty + id: BountyHivelordRemains + reward: 20000 + description: bounty-description-remains + group: SalvageJobTier3 + sprite: + sprite: Mobs/Aliens/Asteroid/hivelord.rsi + state: hivelord + entries: + - name: bounty-item-remains + amount: 3 + whitelist: + tags: + - HivelordRemains + +- type: cargoBounty + id: BountySalvageDiamond + reward: 20000 + description: bounty-description-diamond + group: SalvageJobTier3 + sprite: + sprite: Objects/Materials/materials.rsi + state: diamond + entries: + - name: bounty-item-diamond + amount: 3 + whitelist: + tags: + - Diamond diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_atmospherics.yml b/Resources/Prototypes/Catalog/Cargo/cargo_atmospherics.yml index 47831e09ab..2c06cbdb3d 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_atmospherics.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_atmospherics.yml @@ -4,7 +4,7 @@ sprite: Structures/Storage/canister.rsi state: grey product: AirCanister - cost: 300 + cost: 600 category: cargoproduct-category-name-atmospherics group: market @@ -14,7 +14,7 @@ sprite: Structures/Storage/canister.rsi state: blue product: OxygenCanister - cost: 300 + cost: 600 category: cargoproduct-category-name-atmospherics group: market @@ -34,7 +34,7 @@ sprite: Structures/Storage/canister.rsi state: red product: NitrogenCanister - cost: 300 + cost: 500 category: cargoproduct-category-name-atmospherics group: market @@ -54,7 +54,7 @@ sprite: Structures/Storage/canister.rsi state: black product: CarbonDioxideCanister - cost: 400 # even though it's poisonous, it comes locked and only damages you slowly even with high amounts (tested) + cost: 670 # even though it's poisonous, it comes locked and only damages you slowly even with high amounts (tested) category: cargoproduct-category-name-atmospherics group: market @@ -94,7 +94,7 @@ sprite: Structures/Storage/canister.rsi state: orange product: PlasmaCanister - cost: 2500 # for reference, bagel's 3x1 roundstart plasma chamber contains ~16kmol for free, this is $2.5k for 1870mol, so $20k to nearly refill a 3x1 (some are 3x3) chamber + cost: 4200 # for reference, bagel's 3x1 roundstart plasma chamber contains ~16kmol for free, this is $4.2k for 2769 mol category: cargoproduct-category-name-atmospherics group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml b/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml index e415953a0d..050aa647b8 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml @@ -27,3 +27,13 @@ cost: 750 category: cargoproduct-category-name-cargo group: market + +- type: cargoProduct + id: CargoCrusherDagger + icon: + sprite: Objects/Weapons/Melee/crusher_dagger.rsi + state: icon + product: CrateCrusherDagger + cost: 2500 + category: cargoproduct-category-name-cargo + group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml b/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml index 36b12ffa03..42474dc2ec 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml @@ -48,6 +48,26 @@ category: cargoproduct-category-name-materials group: market +- type: cargoProduct + id: MaterialGold + icon: + sprite: Objects/Materials/ingots.rsi + state: gold_3 + product: CrateMaterialGold + cost: 3225 + category: cargoproduct-category-name-materials + group: market + +- type: cargoProduct + id: MaterialSilver + icon: + sprite: Objects/Materials/ingots.rsi + state: silver_3 + product: CrateMaterialSilver + cost: 2580 + category: cargoproduct-category-name-materials + group: market + - type: cargoProduct id: MaterialTextiles icon: @@ -74,7 +94,7 @@ sprite: Objects/Materials/materials.rsi state: cardboard_3 product: CrateMaterialCardboard - cost: 750 + cost: 330 category: cargoproduct-category-name-materials group: market @@ -84,7 +104,7 @@ sprite: Objects/Materials/Sheets/other.rsi state: paper_3 product: CrateMaterialPaper - cost: 1000 + cost: 185 category: cargoproduct-category-name-materials group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_security.yml b/Resources/Prototypes/Catalog/Cargo/cargo_security.yml index 36f4b472ba..9ff3488a43 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_security.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_security.yml @@ -77,3 +77,13 @@ cost: 2500 category: cargoproduct-category-name-security group: market + +- type: cargoProduct + id: SecurityGenPopCloset + icon: + sprite: Structures/Storage/closet.rsi + state: genpop + product: LockerPrisoner + cost: 250 + category: cargoproduct-category-name-security + group: market diff --git a/Resources/Prototypes/Catalog/Cargo/markets.yml b/Resources/Prototypes/Catalog/Cargo/markets.yml new file mode 100644 index 0000000000..e1fd3de738 --- /dev/null +++ b/Resources/Prototypes/Catalog/Cargo/markets.yml @@ -0,0 +1,11 @@ +- type: cargoMarket + id: market + +- type: cargoMarket + id: SalvageJobReward2 + +- type: cargoMarket + id: SalvageJobReward3 + +- type: cargoMarket + id: SalvageJobRewardMAX diff --git a/Resources/Prototypes/Catalog/Cargo/salvage_rewards.yml b/Resources/Prototypes/Catalog/Cargo/salvage_rewards.yml new file mode 100644 index 0000000000..19fea1f55f --- /dev/null +++ b/Resources/Prototypes/Catalog/Cargo/salvage_rewards.yml @@ -0,0 +1,83 @@ +# Rank 2 +- type: cargoProduct + id: CargoDoubleEmergencyTank + icon: + sprite: Objects/Tanks/emergency_double.rsi + state: icon + product: CrateDoubleEmergencyTank + cost: 2400 + category: cargoproduct-category-name-cargo + group: SalvageJobReward2 + +- type: cargoProduct + id: CargoSeismicCharge + icon: + sprite: Objects/Weapons/Bombs/seismic.rsi + state: icon + product: CrateSeismicCharge + cost: 1800 + category: cargoproduct-category-name-cargo + group: SalvageJobReward2 + +- type: cargoProduct + id: CargoCrusher + icon: + sprite: Objects/Weapons/Melee/crusher.rsi + state: icon + product: CrateCrusher + cost: 5000 + category: cargoproduct-category-name-cargo + group: SalvageJobReward2 + +- type: cargoProduct + id: CargoSalvageHardsuit + icon: + sprite: Clothing/OuterClothing/Hardsuits/salvage.rsi + state: icon + product: CrateSalvageHardsuit + cost: 7500 + category: cargoproduct-category-name-cargo + group: SalvageJobReward2 + +# Rank 3 +- type: cargoProduct + id: CargoFulton + icon: + sprite: /Textures/Objects/Tools/fulton.rsi + state: extraction_pack + product: CrateFulton + cost: 3000 + category: cargoproduct-category-name-cargo + group: SalvageJobReward3 + +- type: cargoProduct + id: CargoVoidJetpack + icon: + sprite: Objects/Tanks/Jetpacks/void.rsi + state: icon + product: CrateVoidJetpack + cost: 4000 + category: cargoproduct-category-name-cargo + group: SalvageJobReward3 + +- type: cargoProduct + id: CargoCrusherGlaive + icon: + sprite: Objects/Weapons/Melee/crusher_glaive.rsi + state: icon + product: CrateCrusherGlaive + cost: 8000 + category: cargoproduct-category-name-cargo + group: SalvageJobReward3 + +# Max Rank + +- type: cargoProduct + id: CargoSupremeSalvagerCloak + icon: + sprite: Clothing/Neck/Cloaks/miner.rsi + state: icon + product: CrateSupremeSalvagerCloak + cost: 25000 + category: cargoproduct-category-name-cargo + group: SalvageJobRewardMAX diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml index 817c3b62f5..7a70fb3e3e 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml @@ -362,3 +362,23 @@ amount: 2 - id: SyndieTrickyBomb amount: 2 + +- type: entity + parent: ClothingBackpackDuffelSyndicateBundle + id: ClothingBackpackDuffelSyndicateFilledStarterKit + name: basic operative bundle + description: "Contains a weapon, medical supplies, breaching tools, spare ammo, and some simple utilities." + components: + - type: StorageFill + contents: + - id: WeaponSubMachineGunC20r + - id: MagazinePistolSubMachineGun + amount: 3 + - id: MagazinePistol + - id: SyndicateJawsOfLife + - id: C4 + amount: 2 + - id: MedkitCombatFilled + - id: EmpImplanter + - id: ClothingShoesBootsMagSyndie + - id: AgentIDCard diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/emergency.yml b/Resources/Prototypes/Catalog/Fills/Boxes/emergency.yml index 05a546c577..259863aafd 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/emergency.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/emergency.yml @@ -1,5 +1,5 @@ - type: entity - parent: BoxSurvivalBase + parent: BoxSurvivalBase # Sunrise-Edit id: BoxSurvival name: survival box description: It's a box with basic internals inside. @@ -10,6 +10,7 @@ - id: ClothingMaskBreath - id: EmergencyOxygenTankFilled - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -19,6 +20,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodSnackNutribrick - id: DrinkWaterBottleFull - type: Sprite @@ -36,6 +38,7 @@ - id: ClothingMaskBreath - id: EmergencyNitrogenTankFilled - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -45,6 +48,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodSnackNutribrick - id: DrinkWaterBottleFull - type: Sprite @@ -55,7 +59,7 @@ currentLabel: reagent-name-nitrogen - type: entity - parent: BoxSurvivalBase + parent: BoxSurvivalBase # Sunrise-Edit id: BoxSurvivalEngineering name: extended-capacity survival box description: It's a box with basic internals inside. This one is labelled to contain an extended-capacity tank. @@ -66,6 +70,7 @@ - id: ClothingMaskBreath - id: ExtendedEmergencyOxygenTankFilled - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -75,6 +80,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodSnackNutribrick - id: DrinkWaterBottleFull - type: Sprite @@ -92,6 +98,7 @@ - id: ClothingMaskBreath - id: ExtendedEmergencyNitrogenTankFilled - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -101,6 +108,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodSnackNutribrick - id: DrinkWaterBottleFull - type: Sprite @@ -111,7 +119,7 @@ currentLabel: reagent-name-nitrogen - type: entity - parent: BoxSurvivalBase + parent: BoxSurvivalBase # Sunrise-Edit id: BoxSurvivalSecurity name: survival box description: It's a box with basic internals inside. @@ -122,6 +130,7 @@ - id: ClothingMaskGasSecurity - id: ExtendedEmergencyOxygenTankFilled #Sunrise-Edit - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -131,6 +140,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodSnackNutribrick - id: DrinkWaterBottleFull - type: Sprite @@ -148,6 +158,7 @@ - id: ClothingMaskGasSecurity - id: ExtendedEmergencyNitrogenTankFilled #Sunrise-Edit - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -157,6 +168,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodSnackNutribrick - id: DrinkWaterBottleFull - type: Sprite @@ -167,7 +179,7 @@ currentLabel: reagent-name-nitrogen - type: entity - parent: BoxSurvivalBase + parent: BoxSurvivalBase # Sunrise-Edit id: BoxSurvivalMedical name: survival box description: It's a box with basic internals inside. @@ -178,6 +190,7 @@ - id: ClothingMaskBreathMedical - id: EmergencyOxygenTankFilled - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -187,6 +200,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodSnackNutribrick - id: DrinkWaterBottleFull - type: Sprite @@ -204,6 +218,7 @@ - id: ClothingMaskBreathMedical - id: EmergencyNitrogenTankFilled - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -213,6 +228,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodSnackNutribrick - id: DrinkWaterBottleFull - type: Sprite @@ -223,7 +239,7 @@ currentLabel: reagent-name-nitrogen - type: entity - parent: BoxSurvivalBase + parent: BoxSurvivalBase # Sunrise-Edit id: BoxHug name: box of hugs description: A special box for sensitive people. @@ -240,6 +256,7 @@ - id: ClothingMaskBreath - id: EmergencyFunnyOxygenTankFilled - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -249,6 +266,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodSnackNutribrick - id: DrinkWaterBottleFull - type: Tag @@ -265,6 +283,7 @@ - id: ClothingMaskBreath - id: EmergencyNitrogenTankFilled - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -274,6 +293,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodSnackNutribrick - id: DrinkWaterBottleFull - type: Label @@ -289,6 +309,7 @@ - id: ClothingMaskBreath - id: EmergencyOxygenTankFilled - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -298,6 +319,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodBreadBaguette - id: DrinkWaterBottleFull @@ -311,6 +333,7 @@ - id: ClothingMaskBreath - id: EmergencyNitrogenTankFilled - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -320,6 +343,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodBreadBaguette - id: DrinkWaterBottleFull - type: Sprite @@ -330,7 +354,31 @@ currentLabel: reagent-name-nitrogen - type: entity - parent: BoxSurvivalBase + parent: BoxSurvivalBase # Sunrise-Edit + id: BoxMimeMoth + suffix: Mime, Emergency moth + components: + - type: StorageFill + contents: + - id: ClothingMaskBreath + - id: EmergencyOxygenTankFilled + - id: EmergencyMedipen + # Sunrise-Start + - id: SpaceMedipen + - id: GlowstickRed + orGroup: Glowstick + - id: GlowstickPurple + orGroup: Glowstick + - id: GlowstickYellow + orGroup: Glowstick + - id: GlowstickBlue + orGroup: Glowstick + # Sunrise-End + - id: FoodBreadBaguetteCotton + - id: DrinkWaterBottleFull + +- type: entity + parent: BoxSurvivalBase # Sunrise-Edit id: BoxSurvivalSyndicate name: extended-capacity survival box description: It's a box with basic internals inside. This one is labelled to contain an extended-capacity tank. @@ -341,6 +389,7 @@ - id: ClothingMaskGasSyndicate - id: ExtendedEmergencyOxygenTankFilled - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -350,6 +399,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodSnackNutribrick - type: Sprite layers: @@ -366,6 +416,7 @@ - id: ClothingMaskGasSyndicate - id: ExtendedEmergencyNitrogenTankFilled - id: EmergencyMedipen + # Sunrise-Start - id: SpaceMedipen - id: GlowstickRed orGroup: Glowstick @@ -375,6 +426,7 @@ orGroup: Glowstick - id: GlowstickBlue orGroup: Glowstick + # Sunrise-End - id: FoodSnackNutribrick - type: Sprite layers: diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml index cc0d3e6e13..0bdeba2590 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml @@ -507,3 +507,20 @@ contents: - id: Envelope amount: 9 + +- type: entity + name: utensil box + parent: BoxCardboard + id: BoxUtensil + description: A box filled with forks and spoons. + components: + - type: Sprite + layers: + - state: box + - state: utensils + - type: StorageFill + contents: + - id: Fork + amount: 2 + - id: Spoon + amount: 2 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml b/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml index 3d6b095b02..a01ba7c3ff 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml @@ -179,7 +179,7 @@ - id: ClothingOuterHardsuitCBURN prob: 0.001 orGroup: Clothes - - id: ClothingOuterHardsuitBasic + - id: ClothingOuterHardsuitSanta prob: 0.001 orGroup: Clothes - id: ClothingBackpackERTClown diff --git a/Resources/Prototypes/Catalog/Fills/Crates/food.yml b/Resources/Prototypes/Catalog/Fills/Crates/food.yml index 23d1b2f795..54e94c6ca5 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/food.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/food.yml @@ -84,12 +84,12 @@ amount: 1 - id: DrinkGlass amount: 4 + - id: FoodPlateMuffinTin + amount: 4 - id: FoodPlateTin amount: 4 - - id: Fork - amount: 2 - - id: Spoon - amount: 2 + - id: BoxUtensil + amount: 1 - type: entity id: CrateFoodBarSupply diff --git a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml index cbc2330e3c..50620ec140 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml @@ -84,16 +84,36 @@ contents: - id: SheetPlasma +- type: entity + id: CrateMaterialGold + parent: CrateGenericSteel + name: gold crate + description: 30 bars of gold. + components: + - type: StorageFill + contents: + - id: IngotGold + +- type: entity + id: CrateMaterialSilver + parent: CrateGenericSteel + name: silver crate + description: 30 bars of silver. + components: + - type: StorageFill + contents: + - id: IngotSilver + - type: entity id: CrateMaterialCardboard parent: CrateGenericSteel name: cardboard crate - description: 60 pieces of cardboard. + description: 90 pieces of cardboard. components: - type: StorageFill contents: - id: MaterialCardboard - amount: 2 + amount: 3 - type: entity id: CrateMaterialPaper diff --git a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml index 7bae4ecd77..020fc71a8c 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml @@ -90,6 +90,119 @@ - id: WeaponRevolverMateba prob: 0.0001 +- type: entity + parent: CrateGenericSteel + id: CrateCrusherDagger + name: crusher dagger crate + description: Contains 4 crusher daggers for use by salvage. + components: + - type: EntityTableContainerFill + containers: + entity_storage: + id: WeaponCrusherDagger + amount: 4 + +# Salvage rewards +- type: entity + parent: CrateGenericSteel + id: CrateSeismicCharge + name: seismic charge crate + description: Contains 6 seismic charges for use by salvage. + components: + - type: EntityTableContainerFill + containers: + entity_storage: + id: SeismicCharge + amount: 6 + +- type: entity + parent: CrateGenericSteel + id: CrateDoubleEmergencyTank + name: double emergency tank crate + description: Contains 2 double emergency oxygen tanks and 2 double emergency nitrogen tanks + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:AllSelector + children: + - id: DoubleEmergencyOxygenTankFilled + amount: 2 + - id: DoubleEmergencyNitrogenTankFilled + amount: 2 + +- type: entity + parent: CrateGenericSteel + id: CrateCrusher + name: crusher crate + description: Contains 2 crushers for use by salvage. + components: + - type: EntityTableContainerFill + containers: + entity_storage: + id: WeaponCrusher + amount: 2 + +- type: entity + parent: CrateGenericSteel + id: CrateFulton + name: fulton crate + description: Contains a fulton beacon and 8 fultons. + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:AllSelector + children: + - id: FultonBeacon + - id: Fulton + amount: 8 + +- type: entity + parent: CrateGenericSteel + id: CrateVoidJetpack + name: void jetpack crate + description: Contains a single void jetpack. + components: + - type: EntityTableContainerFill + containers: + entity_storage: + id: JetpackVoidFilled + +- type: entity + parent: CrateGenericSteel + id: CrateSalvageHardsuit + name: salvage hardsuit crate + description: Contains a salvage hardsuit, breath mask, and oxygen tank. + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:AllSelector + children: + - id: ClothingOuterHardsuitSalvage + - id: ClothingMaskBreath + - id: OxygenTankFilled + +- type: entity + parent: CrateGenericSteel + id: CrateCrusherGlaive + name: crusher glaive crate + description: Contains a crusher glaive for use by salvage. + components: + - type: EntityTableContainerFill + containers: + entity_storage: + id: WeaponCrusherGlaive + +- type: entity + parent: CrateGenericSteel + id: CrateSupremeSalvagerCloak + name: supreme salvager cloak crate + description: Contains a cloak only to be worn by supreme salvagers. Wearing it undeservedly will result in your doom. + components: + - type: EntityTableContainerFill + containers: + entity_storage: + id: ClothingNeckCloakSalvagerSupreme + - type: entity parent: CrateGenericSteel id: CratePartsT3 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/biohazard.yml b/Resources/Prototypes/Catalog/Fills/Lockers/biohazard.yml index 0cd271fb7c..59596505ef 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/biohazard.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/biohazard.yml @@ -1,49 +1,84 @@ - - type: entity - id: ClosetL3Filled - suffix: Filled, Generic - parent: ClosetL3 - components: - - type: StorageFill - contents: - - id: ClothingOuterBioGeneral - - id: ClothingHeadHatHoodBioGeneral +- type: entity + id: ClosetL3Filled + suffix: Filled, Generic + parent: ClosetL3 + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillBiohazardGearGeneric - - type: entity - id: ClosetL3VirologyFilled - suffix: Filled, Virology - parent: ClosetL3Virology - components: - - type: StorageFill - contents: - - id: ClothingOuterBioVirology - - id: ClothingHeadHatHoodBioVirology +- type: entityTable + id: FillBiohazardGearGeneric + table: !type:AllSelector + children: + - id: ClothingOuterBioGeneral + - id: ClothingHeadHatHoodBioGeneral - - type: entity - id: ClosetL3SecurityFilled - suffix: Filled, Security - parent: ClosetL3Security - components: - - type: StorageFill - contents: - - id: ClothingOuterBioSecurity - - id: ClothingHeadHatHoodBioSecurity +- type: entity + id: ClosetL3VirologyFilled + suffix: Filled, Virology + parent: ClosetL3Virology + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillBiohazardGearVirology - - type: entity - id: ClosetL3JanitorFilled - suffix: Filled, Janitor - parent: ClosetL3Janitor - components: - - type: StorageFill - contents: - - id: ClothingOuterBioJanitor - - id: ClothingHeadHatHoodBioJanitor +- type: entityTable + id: FillBiohazardGearVirology + table: !type:AllSelector + children: + - id: ClothingOuterBioVirology + - id: ClothingHeadHatHoodBioVirology - - type: entity - id: ClosetL3ScienceFilled - suffix: Filled, Science - parent: ClosetL3Science - components: - - type: StorageFill - contents: - - id: ClothingOuterBioScientist - - id: ClothingHeadHatHoodBioScientist +- type: entity + id: ClosetL3SecurityFilled + suffix: Filled, Security + parent: ClosetL3Security + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillBiohazardGearSecurity + +- type: entityTable + id: FillBiohazardGearSecurity + table: !type:AllSelector + children: + - id: ClothingOuterBioSecurity + - id: ClothingHeadHatHoodBioSecurity + +- type: entity + id: ClosetL3JanitorFilled + suffix: Filled, Janitor + parent: ClosetL3Janitor + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillBiohazardGearJanitor + +- type: entityTable + id: FillBiohazardGearJanitor + table: !type:AllSelector + children: + - id: ClothingOuterBioJanitor + - id: ClothingHeadHatHoodBioJanitor + +- type: entity + id: ClosetL3ScienceFilled + suffix: Filled, Science + parent: ClosetL3Science + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillBiohazardGearScience + +- type: entityTable + id: FillBiohazardGearScience + table: !type:AllSelector + children: + - id: ClothingOuterBioScientist + - id: ClothingHeadHatHoodBioScientist diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml index cbcec6c6ba..abf4457ea4 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml @@ -3,153 +3,233 @@ parent: ClosetTool suffix: Filled components: - - type: StorageFill - contents: - - id: ClothingOuterVestHazard - prob: 0.4 - - id: FlashlightLantern - prob: 0.7 - - id: Screwdriver - prob: 0.7 - - id: Wrench - prob: 0.7 - - id: Welder - prob: 0.7 - - id: Crowbar - prob: 0.7 - - id: Wirecutter - prob: 0.7 - - id: Multitool - prob: 0.2 - - id: trayScanner - prob: 0.7 - - id: GasAnalyzer - prob: 0.7 - - id: ClothingBeltUtility - prob: 0.2 - - id: ClothingHandsGlovesColorYellow - prob: 0.05 + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillClosetTool + +- type: entityTable + id: FillClosetTool + table: !type:AllSelector + children: + - id: ClothingOuterVestHazard + prob: 0.4 + - id: FlashlightLantern + prob: 0.7 + - id: Screwdriver + prob: 0.7 + - id: Wrench + prob: 0.7 + - id: Welder + prob: 0.7 + - id: Crowbar + prob: 0.7 + - id: Wirecutter + prob: 0.7 + - id: Multitool + prob: 0.2 + - id: trayScanner + prob: 0.7 + - id: GasAnalyzer + prob: 0.7 + - id: ClothingBeltUtility + prob: 0.2 + - id: ClothingHandsGlovesColorYellow + prob: 0.05 + - !type:GroupSelector + prob: 0.4 + children: - id: ClothingHeadHatHardhatRed - prob: 0.4 - - id: CableApcStack - prob: 0.3 - - id: CableApcStack - prob: 0.3 - - id: CableApcStack - prob: 0.3 - - id: SprayPainter - prob: 0.7 + - id: ClothingHeadHatHardhatBlue + - id: ClothingHeadHatHardhatOrange + - id: ClothingHeadHatHardhatWhite + - id: ClothingHeadHatHardhatYellow + - id: ClothingHeadHatHardhatYellowDark + - id: CableApcStack + prob: 0.3 + rolls: !type:ConstantNumberSelector + value: 3 + - id: SprayPainter + prob: 0.7 - type: entity id: LockerElectricalSuppliesFilled suffix: Filled parent: LockerElectricalSupplies components: - - type: StorageFill - contents: - - id: ToolboxElectricalFilled - prob: 0.7 - - id: FirelockElectronics - prob: 0.05 - - id: APCElectronics - prob: 0.1 - - id: CableMVStack - prob: 0.2 + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillElectricalSupplies + +- type: entityTable + id: FillElectricalSupplies + table: !type:AllSelector + children: + - id: ToolboxElectricalFilled + prob: 0.7 + - id: FirelockElectronics + prob: 0.05 + - id: APCElectronics + prob: 0.1 + - !type:GroupSelector + prob: 0.5 + children: - id: CableApcStack - prob: 0.3 + weight: 5 + - id: CableMVStack + - id: CableHVStack + weight: 0.5 - type: entity id: LockerWeldingSuppliesFilled suffix: Filled parent: LockerWeldingSupplies components: - - type: StorageFill - contents: - - id: ClothingHeadHatWelding - - id: ClothingHeadHatWelding - - id: ClothingHeadHatWelding - prob: 0.5 - - id: Welder - - id: Welder - - id: WelderMini - orGroup: thirdWelder - - id: Welder - prob: 0.33 - orGroup: thirdWelder - - id: WelderIndustrial - prob: 0.33 - orGroup: thirdWelder + - type: EntityTableContainerFill + containers: + entity_storage: !type:AllSelector + children: + - !type:NestedSelector + tableId: FillWelderSupplies + rolls: !type:ConstantNumberSelector + value: 3 + - !type:NestedSelector + tableId: FillWelderSuppliesMask + rolls: !type:ConstantNumberSelector + value: 3 + +- type: entityTable + id: FillWelderSupplies + table: !type:GroupSelector + children: + - id: ClothingHeadHatWelding + - id: ClothingHeadHatWeldingMaskFlame + weight: 0.25 + - id: ClothingHeadHatWeldingMaskFlameBlue + weight: 0.25 + - id: ClothingHeadHatWeldingMaskPainted + weight: 0.25 + +- type: entityTable + id: FillWelderSuppliesMask + table: !type:GroupSelector + children: + - id: WelderMini + - id: Welder + - id: WelderIndustrial + weight: 0.25 + - id: WelderIndustrialAdvanced + weight: 0.05 - type: entity id: LockerAtmosphericsFilledHardsuit suffix: Filled, Hardsuit parent: LockerAtmospherics components: - - type: StorageFill - contents: - - id: ClothingOuterHardsuitAtmos - - id: ClothingMaskGasAtmos - - id: ClothingOuterSuitAtmosFire - - id: ClothingHeadHelmetAtmosFire - - id: GasAnalyzer - - id: MedkitOxygenFilled - - id: HolofanProjector - - id: RCD - - id: RCDAmmo - - id: InsulatedGlovesAtmos #sunrise-edit + - type: EntityTableContainerFill + containers: + entity_storage: !type:AllSelector + children: + - !type:NestedSelector + tableId: FillLockerAtmospherics + - !type:NestedSelector + tableId: FillAtmosphericsHardsuit - type: entity id: LockerAtmosphericsFilled suffix: Filled parent: LockerAtmospherics components: - - type: StorageFill - contents: - - id: ClothingMaskGasAtmos - - id: ClothingOuterSuitAtmosFire - - id: ClothingHeadHelmetAtmosFire - - id: GasAnalyzer - - id: MedkitOxygenFilled - - id: HolofanProjector - - id: RCD - - id: RCDAmmo - - id: InsulatedGlovesAtmos #sunrise-edit + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillLockerAtmospherics + +- type: entityTable + id: FillLockerAtmospherics + table: !type:AllSelector + children: + - id: ClothingMaskGasAtmos + - id: ClothingOuterSuitAtmosFire + - id: ClothingHeadHelmetAtmosFire + - id: GasAnalyzer + - id: MedkitOxygenFilled + - id: HolofanProjector + - id: RCD + - id: RCDAmmo + - id: AirGrenade + - id: InsulatedGlovesAtmos #sunrise-edit + +- type: entityTable + id: FillAtmosphericsHardsuit + table: !type:AllSelector + children: + - id: ClothingOuterHardsuitAtmos + - id: OxygenTankFilled + - id: ClothingMaskBreath - type: entity id: LockerEngineerFilledHardsuit suffix: Filled, Hardsuit parent: LockerEngineer components: - - type: StorageFill - contents: - - id: ClothingOuterHardsuitEngineering - - id: ClothingHandsGlovesColorYellow - - id: ClothingMaskGas - - id: ClothingShoesBootsMag - - id: RCD - - id: RCDAmmo + - type: EntityTableContainerFill + containers: + entity_storage: !type:AllSelector + children: + - !type:NestedSelector + tableId: FillLockerEngineer + - !type:NestedSelector + tableId: FillEngineerHardsuit - type: entity id: LockerEngineerFilled suffix: Filled parent: LockerEngineer components: - - type: StorageFill - contents: - - id: ClothingHandsGlovesColorYellow - - id: ClothingMaskGas - - id: trayScanner - - id: RCD - - id: RCDAmmo + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillLockerEngineer + +- type: entityTable + id: FillLockerEngineer + table: !type:AllSelector + children: + - id: ClothingHandsGlovesColorYellow + - id: ClothingMaskGas + - id: trayScanner + - id: RCD + - id: RCDAmmo + - id: MetalFoamGrenade + +- type: entityTable + id: FillEngineerHardsuit + table: !type:AllSelector + children: + - id: ClothingOuterHardsuitEngineering + - id: OxygenTankFilled + - id: ClothingShoesBootsMag + - id: ClothingMaskBreath - type: entity id: ClosetRadiationSuitFilled parent: ClosetRadiationSuit suffix: Filled components: - - type: StorageFill - contents: - - id: ClothingOuterSuitRad - amount: 2 - - id: GeigerCounter - amount: 2 + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillRadiationSuit + +- type: entityTable + id: FillRadiationSuit + table: !type:AllSelector + children: + - id: ClothingOuterSuitRad + amount: !type:ConstantNumberSelector + value: 2 + - id: GeigerCounter + amount: !type:ConstantNumberSelector + value: 2 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 7c43f8aacf..a603df611d 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -9,6 +9,7 @@ - id: CargoSaleComputerCircuitboard - id: CargoShuttleConsoleCircuitboard - id: SalvageMagnetMachineCircuitboard + - id: SalvageJobBoardComputerCircuitboard - id: CigPackGreen prob: 0.50 - id: ClothingHeadsetAltCargo @@ -179,6 +180,7 @@ - id: RCDAdvancedSunrise # Sunrise-RCD - id: RCDAmmo - id: RubberStampCE + - id: MetalFoamGrenade - id: FlippoLighterSunriseCe # Sunrise-Flippo # Hardsuit table, used for suit storage as well @@ -414,7 +416,6 @@ - type: StorageFill contents: - id: WeaponRevolverDeckard - - id: ClothingOuterHardsuitBasic - id: JetpackBlue - id: SpaceCash1000 - id: BeachBall diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/science.yml b/Resources/Prototypes/Catalog/Fills/Lockers/science.yml index 4f09061f9a..318206b27f 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/science.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/science.yml @@ -3,13 +3,20 @@ suffix: Filled parent: LockerScientist components: - - type: StorageFill - contents: - - id: ClothingHandsGlovesLatex - - id: ClothingHeadsetScience - - id: ClothingMaskSterile - - id: ClothingOuterCoatRnd - - id: AnomalyScanner - - id: NodeScanner - - id: NetworkConfigurator - prob: 0.5 + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillLockerScientist + +- type: entityTable + id: FillLockerScientist + table: !type:AllSelector + children: + - id: ClothingHandsGlovesLatex + - id: ClothingHeadsetScience + - id: ClothingMaskSterile + - id: ClothingOuterCoatRnd + - id: AnomalyScanner + - id: NodeScanner + - id: NetworkConfigurator + prob: 0.5 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml index 16d50cd62c..8c0d42c62d 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml @@ -34,10 +34,6 @@ components: - type: StorageFill contents: - - id: CrowbarRed - - id: Screwdriver #Sunrise-add - - id: Wrench #Sunrise-add - - id: PaperBin20 #Sunrise-add - id: VariantCubeBox - id: BoxMousetrap amount: 2 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml b/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml index 61be8e8310..36061f2df7 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml @@ -90,30 +90,16 @@ - id: ClothingMaskBreath #HARDSUITS -#Basic hardsuit -- type: entity - id: SuitStorageBasic - parent: SuitStorageBase - suffix: Basic Hardsuit - components: - - type: StorageFill - contents: - - id: OxygenTankFilled - - id: ClothingOuterHardsuitBasic - - id: ClothingMaskBreath - #Engineering hardsuit - type: entity id: SuitStorageEngi parent: SuitStorageBase suffix: Station Engineer components: - - type: StorageFill - contents: - - id: OxygenTankFilled - - id: ClothingShoesBootsMag - - id: ClothingOuterHardsuitEngineering - - id: ClothingMaskBreath + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillEngineerHardsuit - type: AccessReader access: [["Engineering"]] # Sunrise-start @@ -129,12 +115,10 @@ parent: SuitStorageBase suffix: Atmospheric Technician components: - - type: StorageFill - contents: - - id: OxygenTankFilled - - id: ClothingOuterHardsuitAtmos - - id: ClothingMaskBreath - - id: ClothingShoesBootsMagAtmos #sunrise-edit + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillAtmosphericsHardsuit - type: AccessReader access: [["Atmospherics"]] # Sunrise-start diff --git a/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml b/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml deleted file mode 100644 index 4689e26f8e..0000000000 --- a/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml +++ /dev/null @@ -1,38 +0,0 @@ -- type: reagentDispenserInventory - id: SodaDispenserInventory - inventory: - - DrinkCoconutWaterJug - - DrinkCoffeeJug - - DrinkColaBottleFull - - DrinkCreamCartonXL - - DrinkDrGibbJug - - DrinkEnergyDrinkJug - - DrinkGreenTeaJug - - DrinkIceJug - - DrinkJuiceLimeCartonXL - - DrinkJuiceOrangeCartonXL - - DrinkLemonLimeJug - - DrinkRootBeerJug - - DrinkSodaWaterBottleFull - - DrinkSpaceMountainWindBottleFull - - DrinkSpaceUpBottleFull - - DrinkSugarJug - - DrinkTeaJug - - DrinkTonicWaterBottleFull - - DrinkWaterMelonJuiceJug - -- type: reagentDispenserInventory - id: BoozeDispenserInventory - inventory: - - DrinkAleBottleFullGrowler - - DrinkBeerGrowler - - DrinkCoffeeLiqueurBottleFull - - DrinkCognacBottleFull - - DrinkGinBottleFull - - DrinkMeadJug - - DrinkRumBottleFull - - DrinkTequilaBottleFull - - DrinkVermouthBottleFull - - DrinkVodkaBottleFull - - DrinkWhiskeyBottleFull - - DrinkWineBottleFull diff --git a/Resources/Prototypes/Catalog/ReagentDispensers/chemical.yml b/Resources/Prototypes/Catalog/ReagentDispensers/chemical.yml deleted file mode 100644 index 2b0fdfae6c..0000000000 --- a/Resources/Prototypes/Catalog/ReagentDispensers/chemical.yml +++ /dev/null @@ -1,26 +0,0 @@ -- type: reagentDispenserInventory - id: ChemDispenserStandardInventory - inventory: - - JugAluminium - - JugCarbon - - JugChlorine - - JugCopper - - JugEthanol - - JugFluorine - - JugSugar - - JugHydrogen - - JugIodine - - JugIron - - JugLithium - - JugMercury - - JugNitrogen - - JugOxygen - - JugPhosphorus - - JugPotassium - - JugRadium - - JugSilicon - - JugSodium - - JugSulfur - -- type: reagentDispenserInventory - id: EmptyInventory diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml index 92057ab21c..23d836b7c1 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml @@ -42,3 +42,4 @@ ClothingUnderSocksBee: 2 contrabandInventory: ClothingNeckScarfStripedLesbianLong: 2 + ClothingUniformJumpskirtColorRainbow: 2 diff --git a/Resources/Prototypes/Catalog/cargo_accounts.yml b/Resources/Prototypes/Catalog/cargo_accounts.yml index 7ddc07e65b..1b366de8c6 100644 --- a/Resources/Prototypes/Catalog/cargo_accounts.yml +++ b/Resources/Prototypes/Catalog/cargo_accounts.yml @@ -4,6 +4,7 @@ code: cargo-account-cargo-code color: "#b48b57" radioChannel: Supply + acquisitionSlip: PaperAcquisitionSlipCargo - type: cargoAccount id: Engineering @@ -11,6 +12,7 @@ code: cargo-account-engineering-code color: "#ff733c" radioChannel: Engineering + acquisitionSlip: PaperAcquisitionSlipEngineering - type: cargoAccount id: Medical @@ -18,6 +20,7 @@ code: cargo-account-medical-code color: "#57b8f0" radioChannel: Medical + acquisitionSlip: PaperAcquisitionSlipMedical - type: cargoAccount id: Science @@ -25,6 +28,7 @@ code: cargo-account-science-code color: "#cd7ccd" radioChannel: Science + acquisitionSlip: PaperAcquisitionSlipScience - type: cargoAccount id: Security @@ -32,6 +36,7 @@ code: cargo-account-security-code color: "#ff4242" radioChannel: Security + acquisitionSlip: PaperAcquisitionSlipSecurity - type: cargoAccount id: Service @@ -39,4 +44,4 @@ code: cargo-account-service-code color: "#539c00" radioChannel: Service - + acquisitionSlip: PaperAcquisitionSlipService diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 747f2ba144..0006f4cf05 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -1235,6 +1235,26 @@ components: - SurplusBundle +- type: listing + id: UplinkStarterKit + name: uplink-starter-kit-name + description: uplink-starter-kit-desc + productEntity: ClothingBackpackDuffelSyndicateFilledStarterKit + cost: + Telecrystal: 40 + categories: + - UplinkDisruption + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + - !type:BuyerWhitelistCondition + blacklist: + components: + - SurplusBundle + + - type: listing id: UplinkSingarityBeacon name: uplink-singularity-beacon-name diff --git a/Resources/Prototypes/Datasets/Names/wizard.yml b/Resources/Prototypes/Datasets/Names/wizard.yml index ac143b924b..aea4ee1111 100644 --- a/Resources/Prototypes/Datasets/Names/wizard.yml +++ b/Resources/Prototypes/Datasets/Names/wizard.yml @@ -2,10 +2,10 @@ id: NamesWizardFirst values: prefix: names-wizard-first-dataset- - count: 30 + count: 44 - type: localizedDataset id: NamesWizardLast values: prefix: names-wizard-last-dataset- - count: 46 + count: 69 #nice diff --git a/Resources/Prototypes/DeviceLinking/source_ports.yml b/Resources/Prototypes/DeviceLinking/source_ports.yml index adbf4df134..4a460e722d 100644 --- a/Resources/Prototypes/DeviceLinking/source_ports.yml +++ b/Resources/Prototypes/DeviceLinking/source_ports.yml @@ -25,13 +25,13 @@ id: Left name: signal-port-name-left description: signal-port-description-left - defaultLinks: [ On, Open, Forward, Trigger, Timer ] + defaultLinks: [ On, Open, Reverse, Trigger, Timer ] - type: sourcePort id: Right name: signal-port-name-right description: signal-port-description-right - defaultLinks: [ On, Open, Reverse, Trigger, Timer ] + defaultLinks: [ On, Open, Forward, Trigger, Timer ] - type: sourcePort id: Middle @@ -156,3 +156,9 @@ id: PowerDischarging name: signal-port-name-power-discharging description: signal-port-description-power-discharging + +- type: sourcePort + id: ItemDetected + name: signal-port-name-item-detected + description: signal-port-description-item-detected + defaultLinks: [ Toggle, Trigger, Timer ] diff --git a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml index e40d8bda23..b43db1e386 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml @@ -385,14 +385,14 @@ - 0,0,0,3 - 0,0,2,0 - 0,3,2,3 - - 2,1,2,1 - - 4,0,4,2 - - 6,0,6,2 - - 5,1,5,1 - - 5,3,5,3 - - 9,0,9,1 - - 8,2,8,3 - - 10,2,10,3 + - 2,2,2,2 + - 4,1,4,3 + - 6,1,6,3 + - 5,2,5,2 + - 5,0,5,0 + - 9,2,9,3 + - 8,0,8,1 + - 10,0,10,1 - type: entity parent: ClothingBackpack diff --git a/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml b/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml index 9196a8d445..95814eb051 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml @@ -45,6 +45,14 @@ spawned: - id: MaterialCloth1 amount: 1 + - type: PhysicalComposition # 50% of the amount of cloth you'd obtain upon butchering + materialComposition: + Cloth: 50 + - type: Tag + tags: + - ClothMade + - Recyclable + - WhitelistChameleon # gloves that cover the fingertips and have synthetic fibers - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index a62e33ba40..c70d18f966 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -156,7 +156,7 @@ - type: Fiber fiberMaterial: fibers-nitrile - type: FingerprintMask -#### + - type: entity parent: ClothingHandsButcherable id: ClothingHandsGlovesLeather @@ -422,6 +422,10 @@ type: MeleeSpeechBoundUserInterface - type: StaticPrice price: 0 + - type: Tag + tags: + - Kangaroo + - WhitelistChameleon - type: entity parent: [ClothingHandsBase, BaseSecurityContraband] @@ -480,6 +484,7 @@ - type: Tag tags: - WhitelistChameleon + - Kangaroo - type: entity parent: [ClothingHandsKnuckleDusters, BaseMinorContraband] #Craftable version of base knuckledusters @@ -498,6 +503,7 @@ - type: Tag tags: - WhitelistChameleon + - Kangaroo - type: entity parent: [ClothingHandsBase, BaseGrandTheftContraband] @@ -524,6 +530,7 @@ - type: Tag tags: - WhitelistChameleon + - Kangaroo - type: StealTarget stealGroup: ClothingHandsKnuckleDustersQM @@ -551,6 +558,7 @@ - type: Tag tags: - WhitelistChameleon + - Kangaroo - type: entity name: stun knuckle dusters @@ -642,5 +650,5 @@ collection: Punch animation: WeaponArcFist - type: Tag - tags: [] # ignore "WhitelistChameleon" tag - + tags: + - Kangaroo diff --git a/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml b/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml index a813e862be..eb37027999 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml @@ -28,6 +28,7 @@ tags: - Bandana - ClothMade + - Recyclable - type: entity parent: [ClothingHeadBandBase, ClothingMaskBandBlack] diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index 646a555037..1898bb0038 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -22,8 +22,8 @@ Quantity: 10 - type: Tag tags: - - ClothMade - - WhitelistChameleon + - ClothMade + - WhitelistChameleon - type: entity abstract: true @@ -35,10 +35,14 @@ spawned: - id: MaterialCloth1 amount: 1 + - type: PhysicalComposition # 50% of the amount of cloth you'd obtain upon butchering + materialComposition: + Cloth: 50 - type: Tag tags: - - ClothMade - - WhitelistChameleon + - ClothMade + - Recyclable + - WhitelistChameleon - type: entity abstract: true @@ -105,6 +109,9 @@ id: ClothingHeadEVAHelmetBase name: base space helmet components: +# SlotBlocker blocked until UI change +# - type: SlotBlock +# slots: [ears, eyes, mask] - type: BreathMask - type: Item size: Normal @@ -140,6 +147,9 @@ name: base hardsuit helmet categories: [ HideSpawnMenu ] components: +# SlotBlocker blocked until UI change +# - type: SlotBlock +# slots: [ears, eyes, mask] - type: BreathMask - type: Sprite state: icon # default state used by most inheritors @@ -181,11 +191,14 @@ - type: entity abstract: true # No parent since it isn't an item - # must parent both this and the desired helmet base when using + # must parent both this and the desired helmet base when using id: ClothingHeadSuitWithLightBase name: base hardsuit helmet with light categories: [ HideSpawnMenu ] components: +# SlotBlocker blocked until UI change +# - type: SlotBlock +# slots: [ears, eyes, mask] - type: Sprite layers: - state: icon diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml b/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml index 15cda5a69f..ea987ddda1 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml @@ -65,6 +65,11 @@ - type: Tag tags: - WhitelistChameleon + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD - type: entity parent: ClothingHeadHatHardhatBase diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index cac17145d1..2ee22e87ce 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -5,24 +5,6 @@ #Generally, unless you're adding something like caustic damage, you should probably avoid messing with armor here outside of the above scenario. #CREW HARDSUITS -#Standard Hardsuit -- type: entity - parent: ClothingHeadHardsuitBase - id: ClothingHeadHelmetHardsuitBasic - name: basic hardsuit helmet - description: A basic-looking hardsuit helmet that provides minor protection against most sources of damage. - components: - - type: Sprite - sprite: Clothing/Head/Hardsuits/basic.rsi - - type: Clothing - sprite: Clothing/Head/Hardsuits/basic.rsi - - type: HideLayerClothing - slots: - - Hair - - Snout - - HeadTop - - HeadSide - #Atmospherics Hardsuit - type: entity parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 260a1c385f..a97941b389 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -22,6 +22,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -40,6 +41,7 @@ - type: Tag tags: - ClothMade + - Recyclable - WhitelistChameleon - type: entity @@ -55,6 +57,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -97,6 +100,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -113,6 +117,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -129,6 +134,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -145,6 +151,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -232,6 +239,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -288,6 +296,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -304,6 +313,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -342,6 +352,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -358,6 +369,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -419,11 +431,12 @@ tags: - WhitelistChameleon - ClothMade + - Recyclable - type: HideLayerClothing - slots: - - Hair - - HeadTop - - HeadSide + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD - type: entity parent: ClothingHeadHatWizardBase @@ -445,6 +458,12 @@ - type: Clothing sprite: Clothing/Head/Hats/santahat.rsi - type: Appearance + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD + slots: [] - type: Foldable canFoldInsideContainer: true - type: FoldableClothing @@ -458,6 +477,7 @@ - state: icon-nobeard map: [ "foldedLayer" ] visible: true + - type: entity @@ -486,8 +506,14 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD - type: entity parent: ClothingHeadBase @@ -499,6 +525,11 @@ sprite: Clothing/Head/Hats/surgcap_green.rsi - type: Clothing sprite: Clothing/Head/Hats/surgcap_green.rsi + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD - type: entity parent: ClothingHeadBase @@ -510,6 +541,12 @@ sprite: Clothing/Head/Hats/surgcap_purple.rsi - type: Clothing sprite: Clothing/Head/Hats/surgcap_purple.rsi + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD + - type: entity parent: ClothingHeadBase @@ -524,6 +561,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -629,6 +667,7 @@ tags: - WhitelistChameleon - ClothMade + - Recyclable - type: HideLayerClothing slots: - Hair @@ -643,6 +682,11 @@ sprite: Clothing/Head/Hats/wizard_fake.rsi - type: Clothing sprite: Clothing/Head/Hats/wizard_fake.rsi + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD - type: entity abstract: true @@ -664,6 +708,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -699,6 +744,11 @@ sprite: Clothing/Head/Hats/pyjamasyndicateblack.rsi - type: Clothing sprite: Clothing/Head/Hats/pyjamasyndicateblack.rsi + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD - type: entity parent: [ ClothingHeadBase, BaseSyndicateContraband ] @@ -710,6 +760,11 @@ sprite: Clothing/Head/Hats/pyjamasyndicatepink.rsi - type: Clothing sprite: Clothing/Head/Hats/pyjamasyndicatepink.rsi + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD - type: entity parent: [ ClothingHeadBase, BaseSyndicateContraband ] @@ -721,6 +776,11 @@ sprite: Clothing/Head/Hats/pyjamasyndicatered.rsi - type: Clothing sprite: Clothing/Head/Hats/pyjamasyndicatered.rsi + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD - type: entity parent: ClothingHeadBase @@ -733,6 +793,11 @@ - type: Clothing sprite: Clothing/Head/Hats/papersack.rsi - type: IdentityBlocker + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD - type: entity parent: ClothingHeadBase @@ -745,6 +810,11 @@ - type: Clothing sprite: Clothing/Head/Hats/papersacksmile.rsi - type: IdentityBlocker + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD - type: entity parent: ClothingHeadBase @@ -781,6 +851,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -794,6 +865,11 @@ sprite: Clothing/Head/Hats/rasta.rsi - type: Clothing sprite: Clothing/Head/Hats/rasta.rsi + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD - type: entity parent: ClothingHeadBase @@ -825,6 +901,11 @@ sprite: Clothing/Head/Hats/jester2.rsi - type: Clothing sprite: Clothing/Head/Hats/jester2.rsi + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD - type: entity parent: [ClothingHeadBase, BaseCommandContraband] @@ -839,6 +920,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -976,6 +1058,7 @@ - type: Tag tags: - ClothMade + - Recyclable - WhitelistChameleon - HamsterWearable - type: SentienceTarget @@ -998,6 +1081,7 @@ - type: Tag tags: - ClothMade + - Recyclable - WhitelistChameleon - HamsterWearable @@ -1011,6 +1095,11 @@ sprite: Clothing/Head/Hats/gladiator.rsi - type: Clothing sprite: Clothing/Head/Hats/gladiator.rsi + - type: HideLayerClothing + layers: + Hair: HEAD + HeadTop : HEAD + HeadSide : HEAD - type: entity parent: ClothingHeadBase diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index dba5a78f3b..90f28065ab 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -10,9 +10,9 @@ tags: - WhitelistChameleon - type: HideLayerClothing - slots: - - HeadTop - - HeadSide + layers: + HeadTop : HEAD + HeadSide : HEAD - type: entity parent: ClothingHeadHelmetBase @@ -42,6 +42,9 @@ tags: - WhitelistChameleon - SecurityHelmet + - type: HideLayerClothing + layers: + Hair: HEAD #Mercenary Helmet - type: entity @@ -54,6 +57,9 @@ sprite: Clothing/Head/Helmets/merc_helmet.rsi - type: Clothing sprite: Clothing/Head/Helmets/merc_helmet.rsi + - type: HideLayerClothing + layers: + Hair: HEAD #SWAT Helmet - type: entity @@ -71,9 +77,16 @@ coefficients: Blunt: 0.9 Slash: 0.9 + Piercing: 0.9 + Heat: 0.9 Piercing: 0.80 + Radiation: 0.80 + Caustic: 0.95 - type: ExplosionResistance - damageCoefficient: 0.9 + damageCoefficient: 0.75 + - type: HideLayerClothing + layers: + Hair: HEAD #Syndicate SWAT Helmet - type: entity @@ -87,6 +100,9 @@ sprite: Clothing/Head/Helmets/swat_syndicate.rsi - type: Clothing sprite: Clothing/Head/Helmets/swat_syndicate.rsi + - type: HideLayerClothing + layers: + Hair: HEAD #Light Riot Helmet - type: entity @@ -105,6 +121,10 @@ coefficients: Blunt: 0.8 Slash: 0.8 + Piercing: 0.95 + - type: HideLayerClothing + layers: + Hair: HEAD #Bombsuit Helmet - type: entity @@ -127,11 +147,9 @@ Slash: 0.95 Piercing: 0.95 - type: HideLayerClothing - slots: - - Hair - - Snout - - HeadTop - - HeadSide + layers: + Hair: HEAD + Snout: HEAD #Janitorial Bombsuit Helmet - type: entity @@ -145,6 +163,9 @@ sprite: Clothing/Head/Helmets/janitor_bombsuit.rsi - type: Clothing sprite: Clothing/Head/Helmets/janitor_bombsuit.rsi + - type: HideLayerClothing + layers: + Hair: HEAD #Cult Helmet - type: entity @@ -165,6 +186,9 @@ Slash: 0.8 Piercing: 0.9 Heat: 0.9 + - type: HideLayerClothing + layers: + Hair: HEAD #Space Ninja Helmet - type: entity @@ -183,11 +207,9 @@ - type: IngestionBlocker - type: IdentityBlocker - type: HideLayerClothing - slots: - - Hair - - Snout - - HeadTop - - HeadSide + layers: + Hair: HEAD + Snout: HEAD #Knight Helmet - type: entity @@ -202,6 +224,9 @@ sprite: Clothing/Head/Helmets/templar.rsi - type: IngestionBlocker - type: IdentityBlocker + - type: HideLayerClothing + layers: + Hair: HEAD #Thunderdome Helmet - type: entity @@ -214,6 +239,9 @@ sprite: Clothing/Head/Helmets/thunderdome.rsi - type: Clothing sprite: Clothing/Head/Helmets/thunderdome.rsi + - type: HideLayerClothing + layers: + Hair: HEAD #Wizard Helmet - type: entity @@ -228,6 +256,9 @@ sprite: Clothing/Head/Helmets/wizardhelm.rsi - type: IngestionBlocker - type: IdentityBlocker + - type: HideLayerClothing + layers: + Hair: HEAD #Fire Helmet - type: entity @@ -253,11 +284,9 @@ - WhitelistChameleon - FireHelmet - type: HideLayerClothing - slots: - - Hair - - Snout - - HeadTop - - HeadSide + layers: + Hair: HEAD + Snout: HEAD #Atmos Fire Helmet - type: entity @@ -286,11 +315,9 @@ - WhitelistChameleon - FireHelmet - type: HideLayerClothing - slots: - - Hair - - Snout - - HeadTop - - HeadSide + layers: + Hair: HEAD + Snout: HEAD - type: BreathMask #Chitinous Helmet @@ -311,6 +338,9 @@ Slash: 0.5 Piercing: 0.5 Heat: 0.9 + - type: HideLayerClothing + layers: + Hair: HEAD #ERT HELMETS #ERT Leader Helmet @@ -324,6 +354,9 @@ sprite: Clothing/Head/Helmets/ert_leader.rsi - type: Clothing sprite: Clothing/Head/Helmets/ert_leader.rsi + - type: HideLayerClothing + layers: + Hair: HEAD #ERT Security Helmet - type: entity @@ -336,6 +369,9 @@ sprite: Clothing/Head/Helmets/ert_security.rsi - type: Clothing sprite: Clothing/Head/Helmets/ert_security.rsi + - type: HideLayerClothing + layers: + Hair: HEAD #ERT Medic Helmet - type: entity @@ -348,6 +384,9 @@ sprite: Clothing/Head/Helmets/ert_medic.rsi - type: Clothing sprite: Clothing/Head/Helmets/ert_medic.rsi + - type: HideLayerClothing + layers: + Hair: HEAD #ERT Engineer Helmet - type: entity @@ -360,6 +399,9 @@ sprite: Clothing/Head/Helmets/ert_engineer.rsi - type: Clothing sprite: Clothing/Head/Helmets/ert_engineer.rsi + - type: HideLayerClothing + layers: + Hair: HEAD #ERT Janitor Helmet - type: entity @@ -372,6 +414,9 @@ sprite: Clothing/Head/Helmets/ert_janitor.rsi - type: Clothing sprite: Clothing/Head/Helmets/ert_janitor.rsi + - type: HideLayerClothing + layers: + Hair: HEAD - type: entity parent: [ BaseSyndicateContraband, ClothingHeadHelmetBase ] @@ -390,9 +435,12 @@ Slash: 0.9 Piercing: 0.9 Heat: 0.9 - + - type: HideLayerClothing + layers: + Hair: HEAD #Bone Helmet +#No need to hide the hair on this one - type: entity parent: [ ClothingHeadHelmetArmoredBase, BaseMinorContraband ] id: ClothingHeadHelmetBone @@ -407,6 +455,7 @@ graph: BoneHelmet node: helmet +#Ironclad II Helmet - type: entity parent: [ ClothingHeadHelmetArmoredBase, BaseMinorContraband ] id: ClothingHeadHelmetPodWars @@ -417,6 +466,9 @@ sprite: Clothing/Head/Helmets/podwars_helmet.rsi - type: Clothing sprite: Clothing/Head/Helmets/podwars_helmet.rsi + - type: HideLayerClothing + layers: + Hair: HEAD #Justice Helmet - type: entity @@ -487,6 +539,9 @@ - type: Construction graph: HelmetJustice node: helmet + - type: HideLayerClothing + layers: + Hair: HEAD - type: entity parent: ClothingHeadHelmetJustice @@ -497,6 +552,9 @@ slots: cell_slot: name: power-cell-slot-component-slot-name-default + - type: HideLayerClothing + layers: + Hair: HEAD - type: entity id: ActionToggleJusticeHelm diff --git a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml index 42ec4335c8..b713e0434a 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml @@ -22,11 +22,11 @@ tags: - WhitelistChameleon - type: HideLayerClothing - slots: - - Hair - - Snout - - HeadTop - - HeadSide + layers: + Hair: HEAD + Snout: HEAD + HeadTop: HEAD + HeadSide: HEAD - type: entity parent: ClothingHeadHatHoodBioGeneral diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 9068bb576a..a7c9e701ba 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -32,6 +32,11 @@ sprite: Clothing/Head/Misc/chickenhead.rsi - type: IngestionBlocker - type: IdentityBlocker + - type: HideLayerClothing + slots: + - Hair + - HeadTop + - HeadSide - type: entity parent: ClothingHeadBase @@ -74,6 +79,12 @@ slots: cell_slot: name: power-cell-slot-component-slot-name-default + - type: HideLayerClothing + slots: + - Hair + - HeadTop + - HeadSide + - FacialHair - type: entity parent: ClothingHeadBase @@ -85,6 +96,9 @@ sprite: Clothing/Head/Misc/pwig.rsi - type: Clothing sprite: Clothing/Head/Misc/pwig.rsi + - type: HideLayerClothing + slots: + - HeadTop - type: entity parent: ClothingHeadBase @@ -109,6 +123,12 @@ sprite: Clothing/Head/Misc/richard.rsi - type: IngestionBlocker - type: IdentityBlocker + - type: HideLayerClothing + slots: + - Hair + - HeadTop + - HeadSide + - FacialHair - type: entity parent: ClothingHeadBase @@ -122,6 +142,11 @@ sprite: Clothing/Head/Misc/skubhead.rsi - type: IngestionBlocker - type: IdentityBlocker + - type: HideLayerClothing + slots: + - Hair + - HeadTop + - HeadSide - type: entity parent: ClothingHeadBase @@ -137,6 +162,11 @@ tags: - HamsterWearable - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair + - HeadTop + - HeadSide - type: entity parent: ClothingHeadBase @@ -166,6 +196,8 @@ sprite: Clothing/Head/Misc/fancycrown.rsi - type: Clothing sprite: Clothing/Head/Misc/fancycrown.rsi + - type: TypingIndicatorClothing + proto: regal - type: MobPrice price: 3000 - type: AddAccentClothing @@ -244,6 +276,12 @@ sprite: Clothing/Head/Misc/squiddy.rsi - type: IngestionBlocker - type: IdentityBlocker + - type: HideLayerClothing + slots: + - Hair + - HeadTop + - HeadSide + - FacialHair - type: entity parent: ClothingHeadBase @@ -255,6 +293,12 @@ sprite: Clothing/Head/Misc/red_racoon.rsi - type: Clothing sprite: Clothing/Head/Misc/red_racoon.rsi + - type: HideLayerClothing + slots: + - Hair + - HeadTop + - HeadSide + - FacialHair - type: entity parent: Clothing @@ -338,3 +382,5 @@ - type: HideLayerClothing slots: - Hair + - HeadTop + - HeadSide diff --git a/Resources/Prototypes/Entities/Clothing/Head/soft.yml b/Resources/Prototypes/Entities/Clothing/Head/soft.yml index db50463978..8b6955fd52 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/soft.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/soft.yml @@ -69,6 +69,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -80,6 +81,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -224,6 +226,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -235,6 +238,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -315,6 +319,7 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon @@ -326,5 +331,6 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml index 871f434579..5075002d72 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml @@ -31,6 +31,7 @@ tags: - Bandana - ClothMade + - Recyclable - type: HideLayerClothing slots: - Snout @@ -72,6 +73,7 @@ tags: - WhitelistChameleon - ClothMade + - Recyclable - type: entity parent: ClothingMaskBandanaBase diff --git a/Resources/Prototypes/Entities/Clothing/Masks/base_clothingmask.yml b/Resources/Prototypes/Entities/Clothing/Masks/base_clothingmask.yml index de49de3054..31e91df4a7 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/base_clothingmask.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/base_clothingmask.yml @@ -39,6 +39,9 @@ spawned: - id: MaterialCloth1 amount: 1 + - type: PhysicalComposition # 50% of the amount of cloth you'd obtain upon butchering + materialComposition: + Cloth: 50 - type: Food requiresSpecialDigestion: true - type: SolutionContainerManager @@ -50,4 +53,5 @@ Quantity: 10 - type: Tag tags: - - ClothMade + - ClothMade + - Recyclable diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 7489da9ee0..a945279080 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -176,7 +176,10 @@ - WhitelistChameleon - type: HideLayerClothing slots: + - Hair - Snout + - HeadTop + - HeadSide - type: entity parent: ClothingMaskClownBase @@ -189,7 +192,10 @@ - WhitelistChameleon - type: HideLayerClothing slots: + - Hair - Snout + - HeadTop + - HeadSide - type: entity parent: ClothingMaskClown @@ -343,6 +349,8 @@ slots: - Hair - Snout + - HeadTop + - HeadSide hideOnToggle: true - type: FlashImmunity #BALANCE PR @@ -388,6 +396,11 @@ sprite: Clothing/Mask/squadron.rsi - type: Clothing sprite: Clothing/Mask/squadron.rsi + - type: HideLayerClothing + slots: + - Hair + - HeadTop + - HeadSide - type: entity parent: ClothingMaskBase diff --git a/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml b/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml index 608f061dd8..949575eaf5 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml @@ -16,6 +16,9 @@ spawned: - id: MaterialCloth1 amount: 2 + - type: PhysicalComposition # 50% of the amount of cloth you'd obtain upon butchering + materialComposition: + Cloth: 100 - type: Food requiresSpecialDigestion: true - type: SolutionContainerManager @@ -28,6 +31,7 @@ - type: Tag tags: - ClothMade + - Recyclable - WhitelistChameleon - type: entity @@ -39,4 +43,5 @@ tags: - Scarf - ClothMade + - Recyclable - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml index facafd0458..10c2a0f3e6 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml @@ -128,9 +128,9 @@ - type: entity parent: ClothingNeckBase - id: ClothingNeckCloakMiner - name: miner's cloak - description: Worn by the most skilled miners, for one who has moved mountains and filled valleys. + id: ClothingNeckCloakSalvagerSupreme + name: supereme salvager's cloak + description: Worn by the most skilled salvagers, for one who has mastered space and made the mining asteroid his domain. They don't just hand these things out, y'know? components: - type: Sprite sprite: Clothing/Neck/Cloaks/miner.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml index e579ec38fb..1724186bc2 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml @@ -191,8 +191,8 @@ - type: entity parent: ClothingNeckPinBase id: ClothingNeckAutismPin - name: autism pin - description: Be autism do crime. + name: neurodivergent pin + description: Be neurodivergent, do crime. components: - type: Sprite state: autism @@ -202,8 +202,8 @@ - type: entity parent: ClothingNeckPinBase id: ClothingNeckGoldAutismPin - name: golden autism pin - description: Be autism do warcrime. + name: autism pin + description: Be autistic, do crime. components: - type: Sprite state: goldautism diff --git a/Resources/Prototypes/Entities/Clothing/Neck/ties.yml b/Resources/Prototypes/Entities/Clothing/Neck/ties.yml index 9e361d5919..bf1772dc81 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/ties.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/ties.yml @@ -13,6 +13,7 @@ - HamsterWearable - WhitelistChameleon - ClothMade + - Recyclable - type: entity parent: ClothingNeckBase @@ -38,5 +39,6 @@ - type: Tag tags: - ClothMade + - Recyclable - HamsterWearable - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml index fd4f3047cd..58405c3d55 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml @@ -127,6 +127,9 @@ id: ClothingOuterHardsuitBase name: base hardsuit components: +# SlotBlocker blocked until UI change +# - type: SlotBlock +# slots: [innerclothing, feet] - type: PressureProtection highPressureMultiplier: 0.3 lowPressureMultiplier: 1000 @@ -173,6 +176,9 @@ id: ClothingOuterEVASuitBase name: base EVA Suit components: +# SlotBlocker blocked until UI change +# - type: SlotBlock +# slots: [innerclothing, feet] - type: PressureProtection highPressureMultiplier: 0.6 lowPressureMultiplier: 1000 diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index ca6bdada4c..a087219a64 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -1,35 +1,6 @@ #When adding new hardsuits, please try to keep the organization consistent with hardsuit-helmets.yml (if possible.) #CREW HARDSUITS -#Basic Hardsuit -- type: entity - parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitBasic - name: basic hardsuit - description: A basic, universal hardsuit that protects the wearer against the horrors of life in space. Beats not having a hardsuit, at least. - components: - - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/basic.rsi - - type: DiseaseImmuneClothing - prob: 0.25 - - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/basic.rsi - - type: ExplosionResistance - damageCoefficient: 0.9 - - type: Armor - modifiers: - coefficients: - Blunt: 0.9 - Slash: 0.9 - Piercing: 0.9 - Caustic: 0.9 - - type: ClothingSpeedModifier - walkModifier: 0.80 - sprintModifier: 0.80 - - type: HeldSpeedModifier - - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitBasic - #Atmospherics Hardsuit - type: entity parent: [ClothingOuterHardsuitBase, BaseEngineeringContraband] diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index ad8d4e49ef..a679a58946 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -33,7 +33,7 @@ parent: ClothingOuterSuitBomb id: ClothingOuterSuitJanitorBomb name: janitorial bomb suit - description: A heavy helmet designed to withstand explosions formed from reactions between chemicals. + description: Heavy body armor designed to withstand explosions formed from reactions between chemicals. categories: [ DoNotMap ] components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index a0b49d48d5..4227e52518 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -33,6 +33,7 @@ - type: Tag tags: - ClothMade + - Recyclable - WhitelistChameleon - type: StaticPrice price: 50 diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml index b06c1f6831..a124712a1f 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml @@ -39,6 +39,7 @@ - type: Tag tags: - ClothMade + - Recyclable - WhitelistChameleon - type: ProtectedFromStepTriggers @@ -52,6 +53,9 @@ spawned: - id: MaterialCloth1 amount: 1 + - type: PhysicalComposition # 50% of the amount of cloth you'd obtain upon butchering + materialComposition: + Cloth: 50 # stuff common to all military boots - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml index 89d87a8a10..7af19544ee 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml @@ -78,6 +78,7 @@ footstepSoundCollection: collection: FootstepHighHeels params: + volume: -6 variation: 0.09 - type: entity @@ -218,6 +219,7 @@ collection: FootstepSpurs params: variation: 0.09 + volume: -6 - type: entity parent: ClothingShoesBootsCowboyBrown diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml index 3870a11b44..8ed0f2fc60 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -35,8 +35,7 @@ parent: ClothingShoesBaseButcherable id: ClothingShoeSlippersDuck name: ducky slippers - # description: You wish these made quacking sounds as you walked. - description: Comfy, yet haunted by the ghosts of ducks you fed bread to as a child. + description: You wish these made quacking sounds as you walked. It's a good thing they don't, though. components: - type: Sprite sprite: Clothing/Shoes/Misc/duck-slippers.rsi @@ -44,7 +43,7 @@ sprite: Clothing/Shoes/Misc/duck-slippers.rsi - type: FootstepModifier footstepSoundCollection: - collection: FootstepDuck + collection: FootstepCarpet params: variation: 0.07 - type: Construction @@ -63,7 +62,7 @@ sprite: Clothing/Shoes/Misc/lizard-slippers.rsi - type: FootstepModifier footstepSoundCollection: - collection: FootstepLizardSlippers + collection: FootstepCarpet params: variation: 0.02 - type: Construction diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index 9d106ac608..439545541f 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -58,11 +58,12 @@ sprite: Clothing/Shoes/Specific/clown_banana.rsi - type: Clothing sprite: Clothing/Shoes/Specific/clown_banana.rsi - - type: FootstepModifier - footstepSoundCollection: - collection: FootstepSlip - params: - variation: 0.10 + #- type: FootstepModifier You can add a sound effect when you make one that doesn't sound like a dog dying. -emo + # footstepSoundCollection: + # collection: FootstepSlip + # params: + # volume: -10 + # variation: 0.10 - type: Construction graph: BananaClownShoes node: shoes diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml index f5ae6c39bc..72ab6843cd 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml @@ -14,6 +14,9 @@ spawned: - id: MaterialCloth1 amount: 3 + - type: PhysicalComposition # 50% of the amount of cloth you'd obtain upon butchering + materialComposition: + Cloth: 150 - type: Food requiresSpecialDigestion: true - type: SolutionContainerManager @@ -26,6 +29,7 @@ - type: Tag tags: - ClothMade + - Recyclable - WhitelistChameleon - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml index 3f48b0260f..3add5b5875 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml @@ -489,3 +489,15 @@ - state: equipped-INNERCLOTHING color: "#cc295f" - state: trinkets-equipped-INNERCLOTHING + +# Rainbow Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorRainbow + name: rainbow jumpskirt + description: A multi-colored jumpskirt! + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/rainbow.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/rainbow.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml index 13b269ce04..33bb03a0e3 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -334,6 +334,7 @@ - type: Tag tags: - ClothMade + - Recyclable - PrisonUniform - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 0caa9c6c1d..b250b3fbd7 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -520,6 +520,7 @@ - type: Tag tags: - ClothMade + - Recyclable - PrisonUniform - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml index 2f4646e001..650179d182 100644 --- a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml +++ b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml @@ -213,7 +213,7 @@ - type: entity id: FoamedAluminiumMetal name: foamed aluminium metal - description: "For sealing hull breaches." + description: "Leftover sparse foam from an aluminum foam grenade. Easily destroyed." parent: BaseFoamedMetal components: - type: Sprite @@ -231,6 +231,17 @@ state: metal_foam-north - map: [ "enum.EdgeLayer.West" ] state: metal_foam-west + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: FlimsyMetallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 1 # Intentionally very weak to encourage speedy repair, think of it as thin webbing + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] - type: entity id: ReactionFlash diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Mobs/animals.yml b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/animals.yml new file mode 100644 index 0000000000..5691d984b7 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/animals.yml @@ -0,0 +1,272 @@ +- type: entity + parent: MarkerBase + id: SpawnMobBee + name: Bee Spawner + components: + - type: Sprite + layers: + - state: green + - state: 0 + sprite: Mobs/Animals/bee.rsi + - type: ConditionalSpawner + prototypes: + - MobBee + +- type: entity + parent: MarkerBase + id: SpawnMobButterfly + name: Butterfly Spawner + components: + - type: Sprite + layers: + - state: green + - state: butterfly + sprite: Mobs/Animals/butterfly.rsi + - type: ConditionalSpawner + prototypes: + - MobButterfly + +- type: entity + parent: MarkerBase + id: SpawnMobCatGeneric + name: Generic Cat Spawner + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: RandomSpawner + prototypes: + - MobCat + - MobCatCalico + - MobCatCaracal + - MobCatKitten + rarePrototypes: + - MobCatSpace + rareChance: 0.05 + +- type: entity + parent: MarkerBase + id: SpawnMobCatKitten + name: Kitten Spawner + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCatKitten + +- type: entity + parent: MarkerBase + id: SpawnMobCatSpace + name: Space Cat Spawner + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCatSpace + +- type: entity + parent: MarkerBase + id: SpawnMobCockroach + name: Cockroach Spawner + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Animals/cockroach.rsi + state: cockroach_icon + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCockroach + +- type: entity + parent: MarkerBase + id: SpawnMobCow + name: Cow Spawner + components: + - type: Sprite + layers: + - state: green + - state: cow + sprite: Mobs/Animals/cow.rsi + - type: ConditionalSpawner + prototypes: + - MobCow + +- type: entity + parent: MarkerBase + id: SpawnMobCrab + name: Crab Spawner + components: + - type: Sprite + layers: + - state: green + - state: crab + sprite: Mobs/Animals/crab.rsi + - type: ConditionalSpawner + prototypes: + - MobCrab + +- type: entity + parent: MarkerBase + id: SpawnMobFrog + name: Frog Spawner + components: + - type: Sprite + layers: + - state: green + - state: frog + sprite: Mobs/Animals/frog.rsi + - type: ConditionalSpawner + prototypes: + - MobFrog + +- type: entity + parent: MarkerBase + id: SpawnMobGoat + name: Goat Spawner + components: + - type: Sprite + layers: + - state: green + - state: goat + sprite: Mobs/Animals/goat.rsi + - type: ConditionalSpawner + prototypes: + - MobGoat + +- type: entity + parent: MarkerBase + id: SpawnMobGorilla + name: Gorilla Spawner + components: + - type: Sprite + layers: + - state: green + - state: crawling + sprite: Mobs/Animals/gorilla.rsi + - type: ConditionalSpawner + prototypes: + - MobGorilla + +- type: entity + parent: MarkerBase + id: SpawnMobLizard + name: Lizard Spawner + components: + - type: Sprite + layers: + - state: green + - state: lizard + sprite: Mobs/Animals/lizard.rsi + - type: ConditionalSpawner + prototypes: + - MobLizard + +- type: entity + parent: MarkerBase + id: SpawnMobMonkey + name: Monkey Spawner + components: + - type: Sprite + layers: + - state: green + - state: monkey + sprite: Mobs/Animals/monkey.rsi + - type: ConditionalSpawner + prototypes: + - MobMonkey + +- type: entity + parent: MarkerBase + id: SpawnMobMouse + name: Mouse Spawner + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Animals/mouse.rsi + state: icon-2 + - state: ai + - type: ConditionalSpawner + prototypes: + - MobMouse + - MobMouse1 + - MobMouse2 + +- type: entity + parent: MarkerBase + id: SpawnMobParrot + name: Parrot Spawner + components: + - type: Sprite + layers: + - state: green + - state: parrot + sprite: Mobs/Animals/parrot.rsi + - type: ConditionalSpawner + prototypes: + - MobParrot + +- type: entity + parent: MarkerBase + id: SpawnMobPenguin + name: Penguin Spawner + components: + - type: Sprite + layers: + - state: green + - state: penguin + sprite: Mobs/Animals/penguin.rsi + - type: ConditionalSpawner + prototypes: + - MobPenguin + +- type: entity + parent: MarkerBase + id: SpawnMobReindeerBuck + name: Reindeer Buck Spawner + components: + - type: Sprite + layers: + - state: green + - state: reindeer_buck_still + sprite: Mobs/Animals/reindeer_buck.rsi + - type: ConditionalSpawner + prototypes: + - MobReindeerBuck + +- type: entity + parent: MarkerBase + id: SpawnMobReindeerDoe + name: Reindeer Doe Spawner + components: + - type: Sprite + layers: + - state: green + - state: reindeer_doe_still + sprite: Mobs/Animals/reindeer_doe.rsi + - type: ConditionalSpawner + prototypes: + - MobReindeerDoe + +- type: entity + parent: MarkerBase + id: SpawnMobSlug + name: Slug Spawner + components: + - type: Sprite + layers: + - state: green + - state: slug + sprite: Mobs/Animals/slug.rsi + - type: ConditionalSpawner + prototypes: + - MobSlug diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Mobs/carp.yml b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/carp.yml new file mode 100644 index 0000000000..e995ee6483 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/carp.yml @@ -0,0 +1,55 @@ +- type: entity + parent: MarkerBase + id: SpawnMobCarp + name: Space Carp Spawner + components: + - type: Sprite + layers: + - state: green + - state: icon + sprite: Mobs/Aliens/Carps/space.rsi + - type: ConditionalSpawner + prototypes: + - MobCarp + +- type: entity + parent: MarkerBase + id: SpawnMobCarpHolo + name: Holocarp Spawner + components: + - type: Sprite + layers: + - state: green + - state: icon + sprite: Mobs/Aliens/Carps/holo.rsi + - type: ConditionalSpawner + prototypes: + - MobCarpHolo + +- type: entity + parent: MarkerBase + id: SpawnMobCarpMagic + name: Magicarp Spawner + components: + - type: Sprite + layers: + - state: green + - state: icon + sprite: Mobs/Aliens/Carps/magic.rsi + - type: ConditionalSpawner + prototypes: + - MobCarpMagic + +- type: entity + parent: MarkerBase + id: SpawnMobShark + name: Space Sharkminnow Spawner + components: + - type: Sprite + layers: + - state: green + - state: icon + sprite: Mobs/Aliens/Carps/sharkminnow.rsi + - type: ConditionalSpawner + prototypes: + - MobShark diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Mobs/hostile.yml b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/hostile.yml new file mode 100644 index 0000000000..959d0449f0 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/hostile.yml @@ -0,0 +1,265 @@ +- type: entity + parent: MarkerBase + id: SpawnClownSpider + name: clown spider spawner + components: + - type: Sprite + layers: + - state: green + - state: clown + sprite: Mobs/Animals/clownspider.rsi + - type: ConditionalSpawner + prototypes: + - MobClownSpider + +- type: entity + parent: MarkerBase + id: SpawnMobBear + name: Space Bear Spawner + components: + - type: Sprite + layers: + - state: green + - state: bear + sprite: Mobs/Animals/bear.rsi + - type: ConditionalSpawner + prototypes: + - MobBearSpace + +- type: entity + parent: MarkerBase + id: SpawnMobBehonker + name: behonker Spawner + components: + - type: Sprite + layers: + - state: green + - state: base + sprite: Objects/Weapons/Guns/Battery/behonker_eye.rsi + - type: ConditionalSpawner + prototypes: + - MobBehonkerIce + - MobBehonkerPyro + - MobBehonkerElectrical + - MobBehonkerGrav + +- type: entity + parent: MarkerBase + id: SpawnMobBoxingKangaroo + name: Boxing Kangaroo Spawner + suffix: Hostile + components: + - type: Sprite + layers: + - state: green + - state: kangaroo + sprite: Mobs/Animals/kangaroo.rsi + - type: ConditionalSpawner + prototypes: + - MobBoxingKangaroo + +- type: entity + parent: MarkerBase + id: SpawnMobHellspawn + name: Hellspawn Spawner + components: + - type: Sprite + layers: + - state: green + - state: hellspawn + sprite: Markers/mobs.rsi + - type: ConditionalSpawner + prototypes: + - MobHellspawn + +- type: entity + parent: MarkerBase + id: SpawnMobKangaroo + name: Space Kangaroo Spawner + components: + - type: Sprite + layers: + - state: green + - state: kangaroo-space + sprite: Mobs/Animals/kangaroo.rsi + - type: ConditionalSpawner + prototypes: + - MobKangarooSpace + +- type: entity + parent: MarkerBase + id: SpawnMobLuminousEntity + name: luminous entity spawner + components: + - type: Sprite + layers: + - state: green + - state: luminous_entity + sprite: Mobs/Elemental/living_light/luminous_entity.rsi + - type: ConditionalSpawner + prototypes: + - MobLuminousEntity + +- type: entity + parent: MarkerBase + id: SpawnMobLuminousObject + name: luminous object spawner + components: + - type: Sprite + layers: + - state: green + - state: luminous_object + sprite: Mobs/Elemental/living_light/luminous_object.rsi + - type: ConditionalSpawner + prototypes: + - MobLuminousObject + +- type: entity + parent: MarkerBase + id: SpawnMobLuminousPerson + name: luminous person spawner + components: + - type: Sprite + layers: + - state: green + - state: luminous_person + sprite: Mobs/Elemental/living_light/luminous_person.rsi + - type: ConditionalSpawner + prototypes: + - MobLuminousPerson + +- type: entity + parent: MarkerBase + id: SpawnMobOreCrab + name: ore crab spawner + components: + - type: Sprite + layers: + - state: green + - state: quartz_crab + sprite: Mobs/Elemental/orecrab.rsi + - type: RandomSpawner + prototypes: + - MobSpawnCrabUranium + - MobSpawnCrabIron + - MobSpawnCrabQuartz + - MobSpawnCrabSilver + +- type: entity + parent: MarkerBase + id: SpawnMobPurpleSnake + name: Purple Snake Spawner + components: + - type: Sprite + layers: + - state: green + - state: purple_snake + sprite: Mobs/Aliens/Xenos/purple_snake.rsi + - type: ConditionalSpawner + prototypes: + - MobPurpleSnake + +- type: entity + parent: MarkerBase + id: SpawnMobSmallPurpleSnake + name: Small Purple Snake Spawner + components: + - type: Sprite + layers: + - state: green + - state: small_purple_snake + sprite: Mobs/Aliens/Xenos/purple_snake.rsi + - type: ConditionalSpawner + prototypes: + - MobSmallPurpleSnake + +- type: entity + parent: MarkerBase + id: SpawnMobSpaceCobra + name: Space Cobra Spawner + components: + - type: Sprite + layers: + - state: green + - state: spacecobra + sprite: Mobs/Animals/spacecobra.rsi + - type: ConditionalSpawner + prototypes: + - MobCobraSpace + +- type: entity + parent: MarkerBase + id: SpawnMobSpaceSpider + name: Space Spider Spawner + components: + - type: Sprite + layers: + - state: green + - state: spacespider + sprite: Mobs/Animals/spacespider.rsi + - type: ConditionalSpawner + prototypes: + - MobSpiderSpace + +- type: entity + parent: MarkerBase + id: SpawnMobWatcherIcewing + name: Watcher Icewing Spawner + components: + - type: Sprite + layers: + - state: green + - state: unshaded + sprite: Mobs/Aliens/Lavaland/watcher.rsi + color: deepskyblue + - state: ai + - type: ConditionalSpawner + prototypes: + - MobWatcherIcewing + +- type: entity + parent: MarkerBase + id: SpawnMobWatcherLavaland + name: Watcher Lavaland Spawner + components: + - type: Sprite + layers: + - state: green + - state: unshaded + sprite: Mobs/Aliens/Lavaland/watcher.rsi + color: red + - state: ai + - type: ConditionalSpawner + prototypes: + - MobWatcherLavaland + +- type: entity + parent: MarkerBase + id: SpawnMobWatcherMagmawing + name: Watcher Magmawing Spawner + components: + - type: Sprite + layers: + - state: green + - state: unshaded + sprite: Mobs/Aliens/Lavaland/watcher.rsi + color: orangered + - state: ai + - type: ConditionalSpawner + prototypes: + - MobWatcherMagmawing + +- type: entity + parent: MarkerBase + id: SpawnMobWatcherPride + name: Watcher Pride Spawner + components: + - type: Sprite + layers: + - state: green + - state: unshaded + sprite: Mobs/Aliens/Lavaland/watcher.rsi + - state: ai + - type: ConditionalSpawner + prototypes: + - MobWatcherPride diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Mobs/misc.yml b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/misc.yml new file mode 100644 index 0000000000..cd77ecc5f0 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/misc.yml @@ -0,0 +1,28 @@ +- type: entity + parent: MarkerBase + id: SpawnMobGingerbreadAI + name: gingerbread man Spawner + suffix: Ghostrole + components: + - type: Sprite + layers: + - state: green + - state: full + sprite: Mobs/Species/Gingerbread/parts.rsi + - type: ConditionalSpawner + prototypes: + - MobGingerbreadAI + +- type: entity + parent: MarkerBase + id: SpawnHonkBot + name: honk bot spawner + components: + - type: Sprite + layers: + - state: green + - state: honkbot + sprite: Mobs/Silicon/Bots/honkbot.rsi + - type: ConditionalSpawner + prototypes: + - MobHonkBot diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Mobs/pets.yml b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/pets.yml new file mode 100644 index 0000000000..0708f9a108 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/pets.yml @@ -0,0 +1,304 @@ +- type: entity + parent: MarkerBase + id: SpawnMobAlexander + name: Alexander Spawner + suffix: Chef Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobAlexander + +- type: entity + parent: MarkerBase + id: SpawnMobBandito + name: Bandito Spawner + suffix: RD Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobBandito + +- type: entity + parent: MarkerBase + id: SpawnMobCat + name: Random Cat Spawner + suffix: CMO Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCatRuntime + - MobCatException + - MobCatFloppa + - MobBingus + +- type: entity + parent: MarkerBase + id: SpawnMobCatBingus + name: Bingus Spawner + suffix: CMO Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobBingus + +- type: entity + parent: MarkerBase + id: SpawnMobCatException + name: Exception Spawner + suffix: CMO Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCatException + +- type: entity + parent: MarkerBase + id: SpawnMobCatFloppa + name: Floppa Spawner + suffix: CMO Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCatFloppa + +- type: entity + parent: MarkerBase + id: SpawnMobCatRuntime + name: Runtime Spawner + suffix: CMO Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCatRuntime + +- type: entity + parent: MarkerBase + id: SpawnMobCorgi + name: Corgi Spawner + suffix: HoP Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCorgiIan + - MobCorgiIanOld + - MobCorgiLisa + - MobCorgiIanPup + +- type: entity + parent: MarkerBase + id: SpawnMobCorgiMouse + name: Dev Mouse Spawner + suffix: Dev Map Pet, Admeme + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCorgiMouse + +- type: entity + parent: MarkerBase + id: SpawnMobCrabAtmos + name: Tropico Spawner + suffix: Atmos Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCrabAtmos + +- type: entity + parent: MarkerBase + id: SpawnMobFoxRenault + name: Fox Renault Spawner + suffix: Captain Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobFoxRenault + +- type: entity + parent: MarkerBase + id: SpawnMobMcGriff + name: McGriff Spawner + suffix: Warden Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobMcGriff + +- type: entity + parent: MarkerBase + id: SpawnMobHamsterHamlet + name: Hamster Hamlet Spawner + suffix: Bridge Pet (crate) + components: + - type: Sprite + layers: + - state: green + - state: icon-0 + sprite: Mobs/Animals/hamster.rsi + - state: ai + - type: ConditionalSpawner + prototypes: + - CrateNPCHamlet + +- type: entity + parent: MarkerBase + id: SpawnMobKangarooWillow + name: Willow Spawner + suffix: Boxer Pet + components: + - type: Sprite + layers: + - state: green + - state: kangaroo + sprite: Mobs/Animals/kangaroo.rsi + - type: ConditionalSpawner + prototypes: + - MobKangarooWillow + +- type: entity + parent: MarkerBase + id: SpawnMobMonkeyPunpun + name: Pun Pun Spawner + suffix: Bartender Pet + components: + - type: Sprite + layers: + - state: green + - state: monkey + sprite: Mobs/Animals/monkey.rsi + - type: ConditionalSpawner + prototypes: + - MobMonkeyPunpun + +- type: entity + parent: MarkerBase + id: SpawnMobPossumMorty + name: Possum Morty Spawner + suffix: Morgue Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobPossumMortyOld + +- type: entity + parent: MarkerBase + id: SpawnMobRaccoonMorticia + name: Raccoon Morticia Spawner + suffix: QM Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobRaccoonMorticia + +- type: entity + parent: MarkerBase + id: SpawnMobShiva + name: Shiva Spawner + suffix: Security Pet + components: + - type: Sprite + layers: + - state: green + - state: shiva + sprite: Mobs/Pets/shiva.rsi + - type: ConditionalSpawner + prototypes: + - MobSpiderShiva + +- type: entity + parent: MarkerBase + id: SpawnMobSlothPaperwork + name: Sloth Paperwork Spawner + suffix: Librarian Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobPaperwork + +- type: entity + parent: MarkerBase + id: SpawnMobSmile + name: Smile Spawner + suffix: Science Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobSlimesPet + +- type: entity + parent: MarkerBase + id: SpawnMobWalter + name: Walter Spawner + suffix: Chemistry Pet + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobWalter diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Mobs/slimes.yml b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/slimes.yml new file mode 100644 index 0000000000..7e8009ee02 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/slimes.yml @@ -0,0 +1,77 @@ +- type: entity + parent: MarkerBase + id: SpawnMobAdultSlimesBlue + name: Slimes Spawner Blue + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobAdultSlimesBlue + +- type: entity + parent: MarkerBase + id: SpawnMobAdultSlimesBlueAngry + name: Slimes Spawner Blue Angry + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobAdultSlimesBlueAngry + +- type: entity + parent: MarkerBase + id: SpawnMobAdultSlimesGreen + name: Slimes Spawner Green + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobAdultSlimesGreen + +- type: entity + parent: MarkerBase + id: SpawnMobAdultSlimesGreenAngry + name: Slimes Spawner Green Angry + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobAdultSlimesGreenAngry + +- type: entity + parent: MarkerBase + id: SpawnMobAdultSlimesYellow + name: Slimes Spawner Yellow + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobAdultSlimesYellow + +- type: entity + parent: MarkerBase + id: SpawnMobAdultSlimesYellowAngry + name: Slimes Spawner Yellow Angry + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobAdultSlimesYellowAngry diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Mobs/xenos.yml b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/xenos.yml new file mode 100644 index 0000000000..36a6480e36 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Mobs/xenos.yml @@ -0,0 +1,111 @@ +- type: entity + parent: MarkerBase + id: SpawnMobXenoBurrower + name: Xeno Spawner + suffix: Burrower + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Aliens/Xenos/burrower.rsi + state: running + - state: ai + - type: ConditionalSpawner + prototypes: + - MobXeno + +- type: entity + parent: MarkerBase + id: SpawnMobXenoDrone + name: Xeno Spawner + suffix: Drone + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Aliens/Xenos/drone.rsi + state: running + - state: ai + - type: ConditionalSpawner + prototypes: + - MobXenoDrone + +- type: entity + parent: MarkerBase + id: SpawnMobXenoPraetorian + name: Xeno Spawner + suffix: Praetorian + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Aliens/Xenos/praetorian.rsi + state: running + - state: ai + - type: ConditionalSpawner + prototypes: + - MobXenoPraetorian + +- type: entity + parent: MarkerBase + id: SpawnMobXenoQueen + name: Xeno Spawner + suffix: Queen + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Aliens/Xenos/queen.rsi + state: running + - state: ai + - type: ConditionalSpawner + prototypes: + - MobXenoQueen + +- type: entity + parent: MarkerBase + id: SpawnMobXenoRavager + name: Xeno Spawner + suffix: Ravager + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Aliens/Xenos/ravager.rsi + state: running + - state: ai + - type: ConditionalSpawner + prototypes: + - MobXenoRavager + +- type: entity + parent: MarkerBase + id: SpawnMobXenoRunner + name: Xeno Spawner + suffix: Runner + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Aliens/Xenos/runner.rsi + state: running + - state: ai + - type: ConditionalSpawner + prototypes: + - MobXenoRunner + +- type: entity + parent: MarkerBase + id: SpawnMobXenoSpitter + name: Xeno Spawner + suffix: Spitter + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Aliens/Xenos/spitter.rsi + state: running + - state: ai + - type: ConditionalSpawner + prototypes: + - MobXenoSpitter diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Mobs/xenos.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Mobs/xenos.yml new file mode 100644 index 0000000000..cf7a39a599 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Mobs/xenos.yml @@ -0,0 +1,35 @@ +- type: entity + parent: MarkerBase + id: SpawnMobXenoEasy + name: Xeno Spawner + suffix: Easy, Random + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Aliens/Xenos/drone.rsi + state: running + - state: ai + - type: ConditionalSpawner + prototypes: + - MobXeno + - MobXenoDrone + - MobXenoRunner + +- type: entity + parent: MarkerBase + id: SpawnMobXenoHard + name: Xeno Spawner + suffix: Hard, Random + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Aliens/Xenos/ravager.rsi + state: running + - state: ai + - type: ConditionalSpawner + prototypes: + - MobXenoPraetorian + - MobXenoRavager + - MobXenoSpitter diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/spawners.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/spawners.yml index f1d632c186..a5f002f221 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/spawners.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/spawners.yml @@ -236,8 +236,7 @@ - !type:NestedSelector tableId: MaintFluffTable weight: 5 - rolls: !type:RangeNumberSelector - range: 1, 2 + rolls: 1, 2 - type: entity parent: MarkerBase @@ -426,18 +425,16 @@ children: - id: MobSharkSalvage - id: MobCarpSalvage - amount: !type:ConstantNumberSelector - value: 2 + amount: 2 - !type:NestedSelector - rolls: !type:RangeNumberSelector - range: 1, 3 + rolls: 1, 3 tableId: SalvageTreasureSpawnerValuable - !type:NestedSelector - rolls: !type:RangeNumberSelector - range: 7, 10 + rolls: 7, 10 tableId: TreasureCoinPileRare #- id: MobHivebot (solo hivebot spawn) + - type: entity parent: MarkerBase id: SalvageSpawnerMobMagnet @@ -525,8 +522,7 @@ children: - id: MobSharkSalvage - id: MobCarpSalvage - amount: !type:ConstantNumberSelector - value: 3 + amount: 3 - type: entity parent: MarkerBase @@ -542,7 +538,8 @@ table: !type:GroupSelector children: - id: MobGoliath - weight: 65 + weight: 45 - id: MobHivelord weight: 35 - + - id: MobBasilisk + weight: 20 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml index dba4ec6789..65f8f66106 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml @@ -77,6 +77,15 @@ weight: 0.5 - id: ScrapMopBucket weight: 0.5 + - !type:GroupSelector + weight: 2 + children: + - !type:NestedSelector + weight: 3 + tableId: RandomChemicalBarrel + - !type:NestedSelector + weight: 1 + tableId: RandomChemicalBarrelRadioactive # Treasure: High-value scatterables that don't do a ton. diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml index a62fa3fc04..3830cbc03a 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml @@ -95,6 +95,9 @@ - PosterContrabandInterdyne - PosterContrabandWaffleCorp - PosterContrabandMissingSpacepen + - PosterContrabandExoAcid + - PosterContrabandExoRun + - PosterContrabandExoChomp chance: 1 - type: entity diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/smokables.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/smokables.yml index 9c8c76de22..f142197465 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/smokables.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/smokables.yml @@ -32,7 +32,7 @@ state: unlit-icon - type: EntityTableSpawner table: !type:NestedSelector - tableId: SoakedSmokesTable + tableId: RandomSoakedSmokeTable #Tables - type: entityTable @@ -75,34 +75,6 @@ weight: 0.5 - !type:GroupSelector children: - - id: CigPackMixedMedical - id: CigPackMixed - - id: CigPackMixedNasty - id: CigarGold weight: 0.10 - -- type: entityTable - id: SoakedSmokesTable - table: !type:GroupSelector - children: - - id: CigaretteOmnizine - - id: CigaretteIron - - id: CigaretteDylovene - - id: CigaretteDermaline - - id: CigaretteIpecac - - id: CigaretteBicaridine - - id: CigaretteDexalin - - id: CigarettePax - - id: CigaretteBbqSauce - - id: CigaretteBlackPepper - - id: CigaretteOmnizine - - id: CigaretteCapsaicinOil - - id: CigaretteBread - - id: CigaretteMilk - - id: CigaretteBanana - - id: CigaretteSpaceDrugs - - id: CigaretteMuteToxin - - id: CigaretteMold - - id: CigaretteLicoxide - - id: CigaretteWeldingFuel - - id: CigaretteTHC diff --git a/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml b/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml deleted file mode 100644 index c75b7056f2..0000000000 --- a/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml +++ /dev/null @@ -1,925 +0,0 @@ -# Base - -- type: entity - name: Mouse Spawner - id: SpawnMobMouse - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - sprite: Mobs/Animals/mouse.rsi - state: icon-2 - - state: ai - - type: ConditionalSpawner - prototypes: - - MobMouse - - MobMouse1 - - MobMouse2 - -- type: entity - name: Cockroach Spawner - id: SpawnMobCockroach - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - sprite: Mobs/Animals/cockroach.rsi - state: cockroach_icon - - state: ai - - type: ConditionalSpawner - prototypes: - - MobCockroach - -- type: entity - name: HoP Corgi Spawner - id: SpawnMobCorgi - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobCorgiIan - - MobCorgiIanOld - - MobCorgiLisa - - MobCorgiIanPup - -- type: entity - name: Dev Mouse Spawner - id: SpawnMobCorgiMouse - suffix: Admeme - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobCorgiMouse - -- type: entity - name: Possum Morty Spawner - id: SpawnMobPossumMorty - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobPossumMortyOld - -- type: entity - name: Raccoon Morticia Spawner - id: SpawnMobRaccoonMorticia - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobRaccoonMorticia - -- type: entity - name: Fox Renault Spawner - id: SpawnMobFoxRenault - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobFoxRenault - -- type: entity - name: Runtime Spawner - id: SpawnMobCatRuntime - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobCatRuntime - -- type: entity - name: Exception Spawner - id: SpawnMobCatException - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobCatException - -- type: entity - name: Tropico Spawner - id: SpawnMobCrabAtmos - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobCrabAtmos - -- type: entity - name: Floppa Spawner - id: SpawnMobCatFloppa - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobCatFloppa - -- type: entity - name: Bingus Spawner - id: SpawnMobCatBingus - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobBingus - -- type: entity - name: Space Cat Spawner - id: SpawnMobCatSpace - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobCatSpace - -- type: entity - name: Kitten Spawner - id: SpawnMobCatKitten - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobCatKitten - -- type: entity - name: Cat Spawner - id: SpawnMobCat - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobCatRuntime - - MobCatException - - MobCatFloppa - - MobBingus - -- type: entity - name: Generic Cat Spawner - id: SpawnMobCatGeneric - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: RandomSpawner - prototypes: - - MobCat - - MobCatCalico - - MobCatCaracal - - MobCatKitten - rarePrototypes: - - MobCatSpace - rareChance: 0.05 - -- type: entity - name: Bandito Spawner - id: SpawnMobBandito - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobBandito - -- type: entity - name: McGriff Spawner - id: SpawnMobMcGriff - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobMcGriff - -- type: entity - name: Sloth Paperwork Spawner - id: SpawnMobSlothPaperwork - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobPaperwork - -- type: entity - name: Walter Spawner - id: SpawnMobWalter - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobWalter - -- type: entity - name: Space Bear Spawner - id: SpawnMobBear - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: bear - sprite: Mobs/Animals/bear.rsi - - type: ConditionalSpawner - prototypes: - - MobBearSpace - -- type: entity - name: Space Carp Spawner - id: SpawnMobCarp - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: icon - sprite: Mobs/Aliens/Carps/space.rsi - - type: ConditionalSpawner - prototypes: - - MobCarp - -- type: entity - name: Magicarp Spawner - id: SpawnMobCarpMagic - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: icon - sprite: Mobs/Aliens/Carps/magic.rsi - - type: ConditionalSpawner - prototypes: - - MobCarpMagic - -- type: entity - name: Holocarp Spawner - id: SpawnMobCarpHolo - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: icon - sprite: Mobs/Aliens/Carps/holo.rsi - - type: ConditionalSpawner - prototypes: - - MobCarpHolo - -- type: entity - name: Space Sharkminnow Spawner - id: SpawnMobShark - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: icon - sprite: Mobs/Aliens/Carps/sharkminnow.rsi - - type: ConditionalSpawner - prototypes: - - MobShark - -- type: entity - name: Hamster Hamlet Spawner - id: SpawnMobHamsterHamlet - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: icon-0 - sprite: Mobs/Animals/hamster.rsi - - state: ai - - type: ConditionalSpawner - prototypes: - - CrateNPCHamlet - -- type: entity - name: Alexander Spawner - id: SpawnMobAlexander - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobAlexander - -- type: entity - name: Shiva Spawner - id: SpawnMobShiva - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: shiva - sprite: Mobs/Pets/shiva.rsi - - type: ConditionalSpawner - prototypes: - - MobSpiderShiva - -- type: entity - name: Willow Spawner - id: SpawnMobKangarooWillow - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: kangaroo - sprite: Mobs/Animals/kangaroo.rsi - - type: ConditionalSpawner - prototypes: - - MobKangarooWillow - -- type: entity - name: Space Kangaroo Spawner - id: SpawnMobKangaroo - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: kangaroo-space - sprite: Mobs/Animals/kangaroo.rsi - - type: ConditionalSpawner - prototypes: - - MobKangarooSpace - -- type: entity - name: Boxing Kangaroo Spawner - id: SpawnMobBoxingKangaroo - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: kangaroo - sprite: Mobs/Animals/kangaroo.rsi - - type: ConditionalSpawner - prototypes: - - MobBoxingKangaroo - -- type: entity - name: Space Spider Spawner - id: SpawnMobSpaceSpider - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: spacespider - sprite: Mobs/Animals/spacespider.rsi - - type: ConditionalSpawner - prototypes: - - MobSpiderSpace - -- type: entity - name: Space Cobra Spawner - id: SpawnMobSpaceCobra - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: spacecobra - sprite: Mobs/Animals/spacecobra.rsi - - type: ConditionalSpawner - prototypes: - - MobCobraSpace - -- type: entity - name: Slimes Spawner Blue - id: SpawnMobAdultSlimesBlue - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobAdultSlimesBlue - -- type: entity - name: Slimes Spawner Blue Angry - id: SpawnMobAdultSlimesBlueAngry - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobAdultSlimesBlueAngry - -- type: entity - name: Slimes Spawner Green - id: SpawnMobAdultSlimesGreen - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobAdultSlimesGreen - -- type: entity - name: Slimes Spawner Green Angry - id: SpawnMobAdultSlimesGreenAngry - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobAdultSlimesGreenAngry - -- type: entity - name: Slimes Spawner Yellow - id: SpawnMobAdultSlimesYellow - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobAdultSlimesYellow - -- type: entity - name: Slimes Spawner Yellow Angry - id: SpawnMobAdultSlimesYellowAngry - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobAdultSlimesYellowAngry - -- type: entity - name: Smile Spawner - id: SpawnMobSmile - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: ai - - type: ConditionalSpawner - prototypes: - - MobSlimesPet - -- type: entity - name: Pun Pun Spawner - id: SpawnMobMonkeyPunpun - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: monkey - sprite: Mobs/Animals/monkey.rsi - - type: ConditionalSpawner - prototypes: - - MobMonkeyPunpun - -- type: entity - name: behonker Spawner - id: SpawnMobBehonker - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: base - sprite: Objects/Weapons/Guns/Battery/behonker_eye.rsi - - type: ConditionalSpawner - prototypes: - - MobBehonkerIce - - MobBehonkerPyro - - MobBehonkerElectrical - - MobBehonkerGrav - -- type: entity - name: Monkey Spawner - id: SpawnMobMonkey - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: monkey - sprite: Mobs/Animals/monkey.rsi - - type: ConditionalSpawner - prototypes: - - MobMonkey - -- type: entity - name: Purple Snake Spawner - id: SpawnMobPurpleSnake - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: purple_snake - sprite: Mobs/Aliens/Xenos/purple_snake.rsi - - type: ConditionalSpawner - prototypes: - - MobPurpleSnake - -- type: entity - name: Small Purple Snake Spawner - id: SpawnMobSmallPurpleSnake - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: small_purple_snake - sprite: Mobs/Aliens/Xenos/purple_snake.rsi - - type: ConditionalSpawner - prototypes: - - MobSmallPurpleSnake - -- type: entity - name: Slug Spawner - id: SpawnMobSlug - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: slug - sprite: Mobs/Animals/slug.rsi - - type: ConditionalSpawner - prototypes: - - MobSlug - -- type: entity - name: Lizard Spawner - id: SpawnMobLizard - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: lizard - sprite: Mobs/Animals/lizard.rsi - - type: ConditionalSpawner - prototypes: - - MobLizard - -- type: entity - name: Crab Spawner - id: SpawnMobCrab - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: crab - sprite: Mobs/Animals/crab.rsi - - type: ConditionalSpawner - prototypes: - - MobCrab - -- type: entity - name: Goat Spawner - id: SpawnMobGoat - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: goat - sprite: Mobs/Animals/goat.rsi - - type: ConditionalSpawner - prototypes: - - MobGoat - -- type: entity - name: Frog Spawner - id: SpawnMobFrog - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: frog - sprite: Mobs/Animals/frog.rsi - - type: ConditionalSpawner - prototypes: - - MobFrog - -- type: entity - name: Bee Spawner - id: SpawnMobBee - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: 0 - sprite: Mobs/Animals/bee.rsi - - type: ConditionalSpawner - prototypes: - - MobBee - -- type: entity - name: Parrot Spawner - id: SpawnMobParrot - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: parrot - sprite: Mobs/Animals/parrot.rsi - - type: ConditionalSpawner - prototypes: - - MobParrot - -- type: entity - name: Butterfly Spawner - id: SpawnMobButterfly - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: butterfly - sprite: Mobs/Animals/butterfly.rsi - - type: ConditionalSpawner - prototypes: - - MobButterfly - -- type: entity - name: Cow Spawner - id: SpawnMobCow - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: cow - sprite: Mobs/Animals/cow.rsi - - type: ConditionalSpawner - prototypes: - - MobCow - -- type: entity - name: Gorilla Spawner - id: SpawnMobGorilla - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: crawling - sprite: Mobs/Animals/gorilla.rsi - - type: ConditionalSpawner - prototypes: - - MobGorilla - -- type: entity - name: Penguin Spawner - id: SpawnMobPenguin - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: penguin - sprite: Mobs/Animals/penguin.rsi - - type: ConditionalSpawner - prototypes: - - MobPenguin - - -- type: entity - name: Hellspawn Spawner - id: SpawnMobHellspawn - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: hellspawn - sprite: Markers/mobs.rsi - - type: ConditionalSpawner - prototypes: - - MobHellspawn - -- type: entity - name: ore crab spawner - id: SpawnMobOreCrab - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: quartz_crab - sprite: Mobs/Elemental/orecrab.rsi - - type: RandomSpawner - prototypes: - - MobSpawnCrabUranium - - MobSpawnCrabIron - - MobSpawnCrabQuartz - - MobSpawnCrabSilver - -- type: entity - name: luminous person spawner - id: SpawnMobLuminousPerson - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: luminous_person - sprite: Mobs/Elemental/living_light/luminous_person.rsi - - type: ConditionalSpawner - prototypes: - - MobLuminousPerson - -- type: entity - name: luminous object spawner - id: SpawnMobLuminousObject - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: luminous_object - sprite: Mobs/Elemental/living_light/luminous_object.rsi - - type: ConditionalSpawner - prototypes: - - MobLuminousObject - -- type: entity - name: luminous entity spawner - id: SpawnMobLuminousEntity - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: luminous_entity - sprite: Mobs/Elemental/living_light/luminous_entity.rsi - - type: ConditionalSpawner - prototypes: - - MobLuminousEntity - -- type: entity - name: clown spider spawner - id: SpawnClownSpider - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: clown - sprite: Mobs/Animals/clownspider.rsi - - type: ConditionalSpawner - prototypes: - - MobClownSpider - -- type: entity - name: honk bot spawner - id: SpawnHonkBot - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: honkbot - sprite: Mobs/Silicon/Bots/honkbot.rsi - - type: ConditionalSpawner - prototypes: - - MobHonkBot - -- type: entity - name: gingerbread man Spawner - id: SpawnMobGingerbreadAI - suffix: Ghostrole - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: full - sprite: Mobs/Species/Gingerbread/parts.rsi - - type: ConditionalSpawner - prototypes: - - MobGingerbreadAI - -- type: entity - name: Reindeer Buck Spawner - id: SpawnMobReindeerBuck - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: reindeer_buck_still - sprite: Mobs/Animals/reindeer_buck.rsi - - type: ConditionalSpawner - prototypes: - - MobReindeerBuck - -- type: entity - name: Reindeer Doe Spawner - id: SpawnMobReindeerDoe - parent: MarkerBase - components: - - type: Sprite - layers: - - state: green - - state: reindeer_doe_still - sprite: Mobs/Animals/reindeer_doe.rsi - - type: ConditionalSpawner - prototypes: - - MobReindeerDoe diff --git a/Resources/Prototypes/Entities/Markers/tile.yml b/Resources/Prototypes/Entities/Markers/tile.yml index 2ced9e9958..5f195409b9 100644 --- a/Resources/Prototypes/Entities/Markers/tile.yml +++ b/Resources/Prototypes/Entities/Markers/tile.yml @@ -1,20 +1,8 @@ -- type: entity - id: BaseRoofMarker - abstract: true - placement: - mode: SnapgridCenter - components: - - type: Transform - anchored: true - - type: Sprite - drawdepth: Overdoors - sprite: Markers/cross.rsi - - type: entity id: RoofMarker name: Roof suffix: Enabled - parent: BaseRoofMarker + parent: MarkerBase components: - type: SetRoof value: true @@ -27,7 +15,7 @@ id: NoRoofMarker name: Roof suffix: Disabled - parent: BaseRoofMarker + parent: MarkerBase components: - type: SetRoof value: false diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml index 0af782a6a5..b67eb7631c 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml @@ -1384,3 +1384,10 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: longbow +- type: marking + id: HumanHairLongWithBangs + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: longwithbangs diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index fa2517bdf3..d6c4557787 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -1,6 +1,6 @@ - type: entity parent: [BaseMob, StripableInventoryBase] - id: BaseBorgChassis + id: BaseBorgChassisNotIonStormable name: cyborg description: A man-machine hybrid that assists in station activity. They love being asked to state their laws over and over. save: false @@ -83,8 +83,7 @@ - type: EmagSiliconLaw stunTime: 5 - type: SiliconLawProvider - laws: NTDefault - - type: IonStormTarget + laws: NTDefault # Sunrise-Edit - type: Inventory templateId: borg - type: Hands @@ -170,7 +169,7 @@ - type: Vocal sounds: Unsexed: UnisexSilicon - screamAction: null + wilhelmProbability: 0 - type: DamagedSiliconAccent - type: UnblockableSpeech - type: FootstepModifier @@ -280,6 +279,13 @@ useDragDrop: false # Sunrise-end +- type: entity + abstract: true + parent: BaseBorgChassisNotIonStormable + id: BaseBorgChassis + components: + - type: IonStormTarget + - type: entity abstract: true id: BaseBorgTransponder @@ -309,6 +315,26 @@ maxIntensity: 20 canCreateVacuum: false # its for killing the borg not the station +- type: entity + abstract: true + parent: BaseBorgTransponder + id: BaseXenoborgTransponder + components: + - type: DeviceNetwork + receiveFrequencyId: Xenoborg + transmitFrequencyId: Mothership + - type: SurveillanceCamera # they act like cameras for the mothership + networkSet: true + nameSet: True + id: Xenoborg + - type: Explosive + explosionType: Minibomb + deleteAfterExplosion: false # let damage threshold gib the borg + totalIntensity: 200 # bigger kaboom + intensitySlope: 20 + maxIntensity: 100 + canCreateVacuum: false + - type: entity id: BaseBorgChassisNT parent: [BaseBorgChassis, BaseBorgTransponder] @@ -430,3 +456,115 @@ - type: IonStormTarget chance: 1 - type: ShowJobIcons + +- type: entity + parent: BaseBorgChassisNotIonStormable + id: BaseXenoborgChassis + name: xenoborg + description: A man-machine hybrid that aims to replicate itself. They love extracting brains to insert into fresh xenoborg chassis to grow their army. + save: false + abstract: true + components: + - type: RandomMetadata + nameSegments: + - NamesXenoborg + - type: Sprite + sprite: Mobs/Silicon/chassis.rsi + - type: MobThresholds + thresholds: # slightly tankier than a normal borg + 0: Alive + 125: Critical + 250: Dead + - type: EmagSiliconLaw # should xenoborgs be emagable? + stunTime: 5 + - type: SiliconLawProvider + laws: XenoborgLawset # custom laws here + subverted: true + - type: IntrinsicRadioTransmitter # can only use binary and xenoborg channel + channels: + - Xenoborg + - Binary + - type: ActiveRadio # but can hear the mothership channel + channels: + - Mothership + - Xenoborg + - Binary + - type: Repairable + doAfterDelay: 13 # 25% more HP, so 30% more time to heal + - type: BorgChassis + maxModules: 0 + hasMindState: robot_e + noMindState: robot_e_r + moduleWhitelist: + tags: + - XenoborgModuleGeneric + - type: TypingIndicator + proto: xenoborg + - type: Speech + speechVerb: Robotic + speechSounds: Xenoborg + allowedEmotes: + - Laugh + - type: Vocal + sounds: + Unsexed: UnisexSiliconXenoborg + screamAction: null + - type: DamagedSiliconAccent + - type: UnblockableSpeech + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepXenoborg + # - type: SpamEmitSound # makes a creppy noise randomly + # minInterval: 30 + # maxInterval: 45 + # sound: + # path: /Audio/Machines/genetics.ogg + # params: + # volume: -8 + # maxDistance: 5 + # variation: 0.05 + - type: NpcFactionMember + factions: + - Xenoborg + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 90 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Machines/warning_buzzer.ogg + params: + volume: 5 + - trigger: + !type:DamageTrigger + damage: 375 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:EmptyContainersBehaviour + containers: + - borg_brain + - borg_module + - cell_slot + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: PointLight + color: "#0033ff" + - type: GuideHelp + guides: + - Cyborgs + - Robotics + # TODO: add Xenoborg guide (part 7 spoilers) + - type: Access + enabled: false + tags: + - Xenoborg + - type: AccessReader + access: [["Xenoborg"]] + - type: ShowJobIcons # not sure if it is needed + - type: InteractionPopup + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/xenoborgs.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/xenoborgs.yml new file mode 100644 index 0000000000..5bd6929bfe --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/xenoborgs.yml @@ -0,0 +1,333 @@ +- type: entity + parent: [ BaseXenoborgChassis, BaseXenoborgTransponder ] + id: XenoborgEngi + name: engi xenoborg + suffix: with brain + description: A man-machine hybrid that aims to replicate itself. They love extracting brains to insert into fresh xenoborg chassis to grow their army. This one seems to be an engineering type, as it has more tools for supporting the other xenoborgs. + components: + - type: BorgTransponder + name: engi xenoborg + sprite: + sprite: Mobs/Silicon/chassis.rsi + state: xenoborg_engi + - type: Sprite + layers: + - state: xenoborg_engi + - state: xenoborg_engi_e + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: xenoborg_engi_l + shader: unshaded + map: ["light"] + visible: false + - type: BorgChassis + maxModules: 7 + hasMindState: xenoborg_engi_e + noMindState: xenoborg_engi_e_r + moduleWhitelist: + tags: + - XenoborgModuleGeneric + - XenoborgModuleEngi + - BorgModuleEngineering + - type: ContainerFill + containers: + borg_brain: + - MMIFilled + borg_module: + - XenoborgModuleBasic + - BorgModuleAdvancedTool + - BorgModuleConstruction + - BorgModuleRCD + - BorgModuleCable + - XenoborgModuleAccessBreaker + - XenoborgModuleFireExtinguisher + - type: ShowHealthBars + damageContainers: + - Inorganic + - Silicon + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHigh + +- type: entity + parent: [ BaseXenoborgChassis, BaseXenoborgTransponder ] + id: XenoborgHeavy + name: heavy xenoborg + suffix: with brain + description: A man-machine hybrid that aims to replicate itself. They love extracting brains to insert into fresh xenoborg chassis to grow their army. This type is has heavy lasers and is covered in thick armor plates. It may be tougher, but its speed matches its brawn. + components: + - type: BorgTransponder + name: heavy xenoborg + sprite: + sprite: Mobs/Silicon/chassis.rsi + state: xenoborg_heavy + - type: Sprite + layers: + - state: xenoborg_heavy + - state: xenoborg_heavy_e + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: xenoborg_heavy_l + shader: unshaded + map: ["light"] + visible: false + - type: BorgChassis + maxModules: 4 + hasMindState: xenoborg_heavy_e + noMindState: xenoborg_heavy_e_r + moduleWhitelist: + tags: + - XenoborgModuleGeneric + - XenoborgModuleHeavy + - type: MovementSpeedModifier # slower + baseWalkSpeed : 1.2 + baseSprintSpeed : 2.2 + - type: FlashImmunity + - type: MobThresholds # tankier + thresholds: + 0: Alive + 250: Critical + 500: Dead + stateAlertDict: + Alive: BorgHealth + Critical: BorgCrit + Dead: BorgDead + showOverlays: false + allowRevives: true + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 190 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Machines/warning_buzzer.ogg + params: + volume: 5 + - trigger: + !type:DamageTrigger + damage: 750 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:EmptyContainersBehaviour + containers: + - borg_brain + - cell_slot + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Repairable + doAfterDelay: 25 # more HP, more time to heal + - type: ContainerFill + containers: + borg_brain: + - MMIFilled + borg_module: + - XenoborgModuleBasic + - XenoborgModuleTool + - XenoborgModuleLaser + - XenoborgModuleJammer + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHigh + +- type: entity + parent: [ BaseXenoborgChassis, BaseXenoborgTransponder ] + id: XenoborgScout + name: scout xenoborg + suffix: with brain + description: A man-machine hybrid that aims to replicate itself. They love extracting brains to insert into fresh xenoborg chassis to grow their army. This is a scout type, its nimble thrusters allow it to move quickly through space. + components: + - type: BorgTransponder + name: scout xenoborg + sprite: + sprite: Mobs/Silicon/chassis.rsi + state: xenoborg_scout + - type: Sprite + layers: + - state: xenoborg_scout + - state: xenoborg_scout_e + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: xenoborg_scout_l + shader: unshaded + map: ["light"] + visible: false + - type: FootstepModifier # it flies instead of walking + footstepSoundCollection: + collection: FootstepHoverXenoborg + - type: FlashImmunity + - type: BorgChassis + maxModules: 4 + hasMindState: xenoborg_scout_e + noMindState: xenoborg_scout_e_r + moduleWhitelist: + tags: + - XenoborgModuleGeneric + - XenoborgModuleScout + - type: MovementSpeedModifier # faster + baseWalkSpeed : 3 + baseSprintSpeed : 6 + - type: ContainerFill + containers: + borg_brain: + - MMIFilled + borg_module: + - XenoborgModuleBasic + - XenoborgModuleTool + - XenoborgModuleSword + - XenoborgModuleSpaceMovement + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHigh + +- type: entity + parent: [ BaseXenoborgChassis, BaseXenoborgTransponder ] + id: XenoborgStealth + name: stealth xenoborg + suffix: with brain + description: A man-machine hybrid that aims to replicate itself. They love extracting brains to insert into fresh xenoborg chassis to grow their army. This one is a stealth type. Its armor shimmers in the light like no other material you've seen. + components: + - type: BorgTransponder + name: stealth xenoborg + sprite: + sprite: Mobs/Silicon/chassis.rsi + state: xenoborg_stealth + - type: Sprite + layers: + - state: xenoborg_stealth + - state: xenoborg_stealth_e + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: xenoborg_stealth_l + shader: unshaded + map: ["light"] + visible: false + - type: FootstepModifier # it flies instead of walking + footstepSoundCollection: + collection: FootstepHoverXenoborg + - type: BorgChassis + maxModules: 5 + hasMindState: xenoborg_stealth_e + noMindState: xenoborg_stealth_e_r + moduleWhitelist: + tags: + - XenoborgModuleGeneric + - XenoborgModuleStealth + - type: MovementAlwaysTouching # it flies in space with tiny thrusters + # - type: SpamEmitSound # longer interval to make the creppy sound + # minInterval: 50 + # maxInterval: 150 + - type: ContainerFill + containers: + borg_brain: + - MMIFilled + borg_module: + - XenoborgModuleBasic + - XenoborgModuleTool + - XenoborgModuleHypo + - XenoborgModuleChameleonProjector + - XenoborgModuleCloakDevice + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHigh + + +# xenoborgs empty +- type: entity + parent: XenoborgEngi + id: XenoborgEngiPrinted + suffix: no brain + components: + - type: ContainerFill + containers: + borg_brain: + - MMI + borg_module: + - XenoborgModuleBasic + - BorgModuleAdvancedTool + - BorgModuleConstruction + - BorgModuleRCD + - BorgModuleCable + - XenoborgModuleAccessBreaker + - XenoborgModuleFireExtinguisher + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHighPrinted + +- type: entity + parent: XenoborgHeavy + id: XenoborgHeavyPrinted + suffix: no brain + components: + - type: ContainerFill + containers: + borg_brain: + - MMI + borg_module: + - XenoborgModuleBasic + - XenoborgModuleTool + - XenoborgModuleLaser + - XenoborgModuleJammer + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHighPrinted + +- type: entity + parent: XenoborgScout + id: XenoborgScoutPrinted + suffix: no brain + components: + - type: ContainerFill + containers: + borg_brain: + - MMI + borg_module: + - XenoborgModuleBasic + - XenoborgModuleTool + - XenoborgModuleSword + - XenoborgModuleSpaceMovement + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHighPrinted + +- type: entity + parent: XenoborgStealth + id: XenoborgStealthPrinted + suffix: no brain + components: + - type: ContainerFill + containers: + borg_brain: + - MMI + borg_module: + - XenoborgModuleBasic + - XenoborgModuleTool + - XenoborgModuleHypo + - XenoborgModuleChameleonProjector + - XenoborgModuleCloakDevice + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHighPrinted diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 17dc18f2f1..d4c7009a38 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -61,6 +61,20 @@ damage: types: Piercing: 5 + - type: MobThresholds + thresholds: + 0: Alive + 30: Critical + 60: Dead + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 120 + behaviors: + - !type:GibBehavior + recursive: false - type: Tag tags: - VimPilot @@ -147,6 +161,15 @@ rootTask: task: SimpleHostileCompound - type: ZombieImmune + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 20 + behaviors: + - !type:GibBehavior + recursive: false - type: entity name: bee @@ -418,7 +441,8 @@ damageType: Blunt damage: 10 behaviors: - - !type:GibBehavior { } + - !type:GibBehavior + recursive: false - type: NonSpreaderZombie - type: SentienceTarget flavorKind: station-event-random-sentience-flavor-organic @@ -588,7 +612,8 @@ damageType: Blunt damage: 60 behaviors: - - !type:GibBehavior { } + - !type:GibBehavior + recursive: false - type: FireVisuals sprite: Mobs/Effects/onfire.rsi normalState: Mouse_burning @@ -832,6 +857,15 @@ bloodMaxVolume: 0.1 - type: MobPrice price: 50 + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 20 + behaviors: + - !type:GibBehavior + recursive: false - type: entity name: cow @@ -1221,6 +1255,28 @@ - type: HTN rootTask: task: SimpleHostileCompound + blackboard: + NavClimb: !type:Bool + true + NavInteract: !type:Bool + true + NavPry: !type:Bool + true + NavSmash: !type:Bool + true + - type: Prying + pryPowered: true + force: true + speedModifier: 1.5 + useSound: + path: /Audio/Items/crowbar.ogg + - type: MobThresholds + thresholds: + 0: Alive + 200: Critical + 250: Dead + - type: StaminaResistance + damageCoefficient: 0.40 # Sunrise-start - type: InteractionPopup successChance: 0.2 @@ -1291,9 +1347,6 @@ - type: Vocal sounds: Unsexed: Kangaroo - - type: FootstepModifier - footstepSoundCollection: - collection: FootstepBounce - type: Puller needsHands: false - type: StaminaDamageOnHit @@ -1892,6 +1945,15 @@ Taco: RatTaco Burger: RatBurger Skewer: RatSkewer + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 60 + behaviors: + - !type:GibBehavior + recursive: false # Sunrise-Start - type: NightVision isToggle: true @@ -2207,6 +2269,15 @@ - type: Tag tags: - VimPilot + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 60 + behaviors: + - !type:GibBehavior + recursive: false # Sunrise-Start - type: AttackOnInteractionFail attackMemoryLength: 10 @@ -2395,6 +2466,7 @@ Brute: 5 - type: Item size: Normal + sprite: Mobs/Animals/grenadepenguin.rsi - type: OnUseTimerTrigger delay: 10 beepSound: @@ -2946,9 +3018,10 @@ # Sunrise-end - type: entity - name: corgi + abstract: true parent: [SimpleMobBase, StripableInventoryBase] - id: MobCorgi + id: MobCorgiBase + name: corgi description: Finally, a space corgi! components: - type: Sprite @@ -2975,7 +3048,23 @@ - type: Inventory speciesId: dog templateId: pet + - type: InteractionPopup + interactSuccessString: petting-success-dog + interactFailureString: petting-failure-generic + interactSuccessSpawn: EffectHearts + interactSuccessSound: + path: /Audio/Animals/small_dog_bark_happy.ogg + - type: Grammar + attributes: + gender: epicene + - type: MobPrice + price: 200 - type: DogVision # Sunrise-DogVision + +- type: entity + parent: MobCorgiBase + id: MobCorgi + components: - type: DamageStateVisuals states: Alive: @@ -2990,19 +3079,8 @@ amount: 2 - type: ReplacementAccent accent: dog - - type: InteractionPopup - interactSuccessString: petting-success-dog - interactFailureString: petting-failure-generic - interactSuccessSpawn: EffectHearts - interactSuccessSound: - path: /Audio/Animals/small_dog_bark_happy.ogg - - type: Grammar - attributes: - gender: epicene - type: SentienceTarget flavorKind: station-event-random-sentience-flavor-corgi - - type: MobPrice - price: 200 - type: Tag tags: - VimPilot @@ -3615,6 +3693,15 @@ - type: FireVisuals sprite: Mobs/Effects/onfire.rsi normalState: Mouse_burning + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 120 + behaviors: + - !type:GibBehavior + recursive: false # Sunrise-Start - type: AttackOnInteractionFail attackMemoryLength: 10 @@ -3889,3 +3976,64 @@ Base: reindeer_doe_dead Dead: Base: reindeer_doe_dead + +- type: entity + parent: MobCorgiBase + id: MobCorgiSmart + name: smart corgi + description: An unusually smart dog. + components: + # Use corgi sprite, need to add handcuff layer + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: corgi + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi # Would do a custom dog handcuff sprite but unfortunately handcuffs have their overlay baked-in to the cuff itself so this is mostly filler + state: body-overlay-2 + visible: false + - type: UserInterface + interfaces: + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + # Custom inventory template + - type: Inventory + speciesId: dog + templateId: SmartCorgi + displacements: + belt: + sizeMaps: + 32: + sprite: Mobs/Pets/corgi.rsi + state: belt_displacement + ears: + sizeMaps: + 32: + sprite: Mobs/Pets/corgi.rsi + state: belt_displacement + - type: Hands # HANDS! + - type: Puller + - type: Cuffable # bad dog! + - type: BlockWriting # dogs can't write, paws unwieldy; mouth-writing is a myth + - type: Stripping + - type: ComplexInteraction + # Implement custom borgi body type + - type: Body + prototype: SmartCorgi + - type: RotationVisuals + defaultRotation: 90 + horizontalRotation: 180 + - type: Grammar + attributes: + gender: epicene # Gender neutral + proper: true + - type: Tag + tags: + - VimPilot + - CanPilot + - DoorBumpOpener + - type: StatusIcon # marks them as crew + bounds: -0.5,-0.5,0.5,0.5 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml index 849927b2e5..c4c131a7ab 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml @@ -81,6 +81,8 @@ 6 AggroVisionRadius: !type:Single 10 + NavSmash: !type:Bool + true - type: NPCUseActionOnTarget actionId: ActionGoliathTentacle - type: Tag @@ -241,6 +243,8 @@ 4 AggroVisionRadius: !type:Single 9 + NavSmash: !type:Bool + true - type: Butcherable spawned: - id: FoodHivelordRemains @@ -293,6 +297,8 @@ 15 AggroVisionRadius: !type:Single 15 + NavSmash: !type:Bool + true - type: TimedDespawn lifetime: 100 @@ -323,6 +329,9 @@ stage: 1 - type: StaticPrice price: 5000 + - type: Tag + tags: + - HivelordRemains - type: entity id: FoodHivelordRemainsInert @@ -339,3 +348,80 @@ size: Normal - type: StaticPrice price: 500 + - type: Tag + tags: + - HivelordRemains + + +- type: entity + id: MobBasilisk + parent: [ BaseMobAsteroid, MobBloodstream ] + name: basilisk + description: A territorial beast, covered in a thick shell that absorbs energy. Its stare causes victims to freeze from the inside. + components: + - type: Sprite + sprite: Mobs/Aliens/Asteroid/basilisk.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: basilisk + - type: DamageStateVisuals + states: + Alive: + Base: basilisk + Dead: + Base: basilisk_dead + - type: MovementSpeedModifier + baseWalkSpeed : 3 + baseSprintSpeed : 3.5 + - type: MobThresholds + thresholds: + 0: Alive + 80: Dead + - type: MeleeWeapon + angle: 0 + animation: WeaponArcBite + soundHit: + path: /Audio/Effects/bite.ogg + damage: + types: + Slash: 7 + Piercing: 5 + - type: Gun + fireRate: 0.75 + selectedMode: SemiAuto + showExamineText: false + availableModes: [ SemiAuto ] + soundGunshot: /Audio/Weapons/Guns/Gunshots/syringe_gun.ogg + - type: RechargeBasicEntityAmmo + showExamineText: false + rechargeCooldown: 0 + rechargeSound: null + - type: BasicEntityAmmoProvider + proto: BasiliskRay + capacity: 1 + count: 1 + - type: Bloodstream + bloodMaxVolume: 200 + chemicalMaxVolume: 0 + - type: NpcFactionMember + factions: + - SimpleHostile + - type: HTN + rootTask: + task: BasiliskCompound + blackboard: + VisionRadius: !type:Single + 7 + AggroVisionRadius: !type:Single + 12 + NavSmash: !type:Bool + true + - type: Reflect + reflectProb: 1 + reflects: + - Energy + - type: Butcherable + spawned: + - id: DiamondOre1 + amount: 1 + maxAmount: 3 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml index 9a372c9042..094eb0e6b0 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml @@ -260,8 +260,7 @@ - id: FoodMeatFish amount: 4 - id: MaterialToothSharkminnow1 - amount: 1 - maxAmount: 3 + amount: 3 - type: MeleeWeapon damage: types: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/hivebot.yml b/Resources/Prototypes/Entities/Mobs/NPCs/hivebot.yml new file mode 100644 index 0000000000..784b5dcc43 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/hivebot.yml @@ -0,0 +1,123 @@ +# Base hivebot +- type: entity + parent: [ BaseSimpleMob, MobCombat, MobRobotic ] + id: MobHivebot + name: hivebot + description: Agitating, mechanized pests. + components: + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/hivebot.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: basic_attack + - type: HTN + rootTask: + task: SimpleHostileCompound + blackboard: + NavSmash: !type:Bool + true + - type: NpcFactionMember + factions: + - SimpleHostile + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.50 + density: 80 + mask: + - MobMask + layer: + - MobLayer + - type: MobThresholds + thresholds: + 0: Alive + 20: Dead + stateAlertDict: + Alive: BorgHealth + Dead: BorgDead + showOverlays: false + - type: SlowOnDamage + speedModifierThresholds: + 10: 0.7 + - type: MeleeWeapon + altDisarm: false + angle: 0 + soundHit: + path: /Audio/Weapons/bladeslice.ogg + animation: WeaponArcClaw + damage: + types: + Slash: 6 # Pretty whatever on their own, but their strength is in numbers + - type: Tag + tags: + - DoorBumpOpener + - Unimplantable + - type: MovementSpeedModifier + baseWalkSpeed: 1.5 + baseSprintSpeed: 2.5 +# Doesn't seem to work for some reason? +# - type: PointLight +# radius: 1.0 +# energy: 1 +# castShadows: false +# color: "#bc5858" + - type: RotationVisuals + horizontalRotation: 90 + - type: Speech + speechVerb: Robotic + speechSounds: Borg + +- type: entity + parent: MobHivebot + id: MobHivebotRanged + name: hivebot + suffix: Ranged + description: Agitating, mechanized pests. This one has a gun. + components: + - type: Sprite + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: ranged_attack + - type: HTN + rootTask: + task: SimpleRangedHostileCompound + - type: RechargeBasicEntityAmmo + rechargeCooldown: 0.50 + - type: BasicEntityAmmoProvider + proto: BulletHivebot + capacity: 1 + count: 1 + - type: Gun + fireRate: 0.50 + useKey: false + selectedMode: FullAuto + availableModes: + - FullAuto + soundGunshot: /Audio/Weapons/Guns/Gunshots/smg.ogg + - type: MovementSpeedModifier #Slower then normal to make them easier to hit + baseWalkSpeed: 1 + baseSprintSpeed: 2 + +- type: entity + parent: MobHivebotRanged + id: MobHivebotStrong + name: strong hivebot + description: Agitating, mechanized pests. This one looks much stronger then normal. + components: + - type: Sprite + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: strong_attack + - type: MobThresholds + thresholds: + 0: Alive + 60: Dead + - type: MovementSpeedModifier #Even slower then the ranged variant, to make them even easier to hit + baseWalkSpeed: 0.75 + baseSprintSpeed: 1.75 + - type: SlowOnDamage + speedModifierThresholds: + 25: 0.7 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml b/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml index f13a02943d..1b08756c80 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml @@ -212,9 +212,7 @@ group: GenericNumber - type: FootstepModifier footstepSoundCollection: - path: /Audio/Effects/Footsteps/slime1.ogg - params: - volume: 3 + collection: FootstepSlime - type: Tag tags: - FootstepSound diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index ba097dd881..b4ceb60c15 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -788,9 +788,7 @@ 200: Dead - type: FootstepModifier footstepSoundCollection: - path: /Audio/Effects/Footsteps/slime1.ogg - params: - volume: -6 + collection: FootstepSlime - type: Tag tags: - FootstepSound diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml index b9f107544d..f122c893a7 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml @@ -35,6 +35,8 @@ - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] state: eyes shader: unshaded + - type: TypingIndicator + proto: regal - type: Physics bodyType: KinematicController - type: Fixtures @@ -248,8 +250,17 @@ - type: MobThresholds thresholds: 0: Alive - 40: Critical # Sunrise-edit + 50: Critical # Sunrise-edit 60: Dead # Sunrise-edit + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 60 + behaviors: + - !type:GibBehavior + recursive: false - type: Stamina critThreshold: 60 - type: MeleeWeapon diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index f06f805e6f..dc436fb63a 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -1,17 +1,75 @@ +# Used for generic robotic entities (like Hivelords) - type: entity save: false abstract: true parent: BaseMob - id: MobSiliconBase + id: MobRobotic components: - type: Reactive groups: Acidic: [Touch] - type: Damageable damageContainer: Inorganic - - type: MovementSpeedModifier - baseWalkSpeed : 3 - baseSprintSpeed : 4 + - type: MovedByPressure + - type: Physics + bodyType: KinematicController # Same for all inheritors + - type: StatusEffects + allowed: + - Stun + - KnockedDown + - SlowedDown + - Stutter + - Electrocution + - Jump # Sunrise-Edit + - Fall # Sunrise-Edit + - type: Repairable + # Sunrise-Start + doAfterDelay: 3 + damage: + types: + Blunt: -15 + Slash: -15 + Piercing: -15 + # Sunrise-End + - type: Pullable + - type: Tag + tags: + - DoorBumpOpener + - SiliconEmotes + - Unimplantable + - type: MobState + allowedStates: + - Alive + - Dead + - type: MobThresholds + thresholds: + 0: Alive + 120: Dead + stateAlertDict: + Alive: BorgHealth + Dead: BorgDead + showOverlays: false + - type: Speech + speechVerb: Robotic + speechSounds: Borg + - type: TypingIndicator + proto: robot + - type: Vocal + sounds: + Unsexed: UnisexSilicon + - type: Emoting + - type: ZombieImmune + - type: ProtectedFromStepTriggers + - type: NoSlip + - type: Insulated + +# Used for bots +- type: entity + save: false + abstract: true + parent: MobRobotic + id: MobSiliconBase + components: - type: NpcFactionMember factions: - SimpleNeutral @@ -30,47 +88,11 @@ - Heat - Shock locPrefix: silicon - - type: MovedByPressure - - type: Physics - bodyType: KinematicController # Same for all inheritors - - type: StatusEffects - allowed: - - Stun - - KnockedDown - - SlowedDown - - Stutter - - Electrocution - - Jump # Sunrise-Edit - - Fall # Sunrise-Edit - type: NameIdentifier group: Silicon - - type: Repairable - # Sunrise-Start - doAfterDelay: 3 - damage: - types: - Blunt: -15 - Slash: -15 - Piercing: -15 - # Sunrise-End - - type: Pullable - - type: Tag - tags: - - DoorBumpOpener - - SiliconEmotes - - Bot - - Unimplantable - - type: MobState - allowedStates: - - Alive - - Dead - - type: MobThresholds - thresholds: - 0: Alive - 120: Dead - stateAlertDict: - Alive: BorgHealth - showOverlays: false + - type: MovementSpeedModifier + baseWalkSpeed : 3 + baseSprintSpeed : 4 - type: Stamina critThreshold: 120 - type: Destructible @@ -86,24 +108,20 @@ behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] - - type: Body - prototype: Bot - type: GuideHelp guides: - Robotics + - type: Tag + tags: + - DoorBumpOpener + - SiliconEmotes + - Bot + - Unimplantable + - type: Body + prototype: Bot - type: Speech speechVerb: Robotic speechSounds: Pai #couldn't decide if this should be borg or pai sounds so I flipped a coin. - - type: TypingIndicator - proto: robot - - type: Vocal - sounds: - Unsexed: UnisexSilicon - - type: Emoting - - type: ZombieImmune - - type: ProtectedFromStepTriggers - - type: NoSlip - - type: Insulated - type: TTS voice: FactCore # Sunrise-TTS @@ -476,5 +494,7 @@ channels: - Common - Supply + - type: Puller + needsHands: false - type: StationAiVision # Sunrise-edit range: 1 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml index 8ea86d8e5f..120b1c4b7a 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml @@ -4,7 +4,6 @@ - BaseMob - MobDamageable - MobPolymorphable - - MobAtmosExposed id: BaseSimpleMob suffix: AI abstract: true @@ -44,6 +43,7 @@ abstract: true parent: - BaseSimpleMob + - MobAtmosExposed - MobCombat - MobBloodstream - MobFlammable diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index b29f74acf0..1e10e45857 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -32,9 +32,7 @@ baseSprintSpeed: 4 - type: FootstepModifier footstepSoundCollection: - path: /Audio/Effects/Footsteps/slime1.ogg - params: - volume: 3 + collection: FootstepSlime - type: Tag tags: - FootstepSound diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml index 53307499d9..6e8f436215 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml @@ -162,9 +162,6 @@ - type: Vocal sounds: Unsexed: Kangaroo - - type: FootstepModifier - footstepSoundCollection: - collection: FootstepBounce - type: ReplacementAccent accent: kangaroo - type: Butcherable @@ -435,6 +432,15 @@ 0: Alive 10: Critical 20: Dead + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 40 + behaviors: + - !type:GibBehavior + recursive: false - type: MovementSpeedModifier baseWalkSpeed : 2 baseSprintSpeed : 3 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml b/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml index 6c34dff7d9..44945c9a95 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml @@ -43,6 +43,15 @@ thresholds: 0: Alive 15: Dead + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 30 + behaviors: + - !type:GibBehavior + recursive: false - type: Stamina critThreshold: 15 - type: MovementAlwaysTouching diff --git a/Resources/Prototypes/Entities/Mobs/Player/clone.yml b/Resources/Prototypes/Entities/Mobs/Player/clone.yml index 5a913674e5..7131d6d1dd 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/clone.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/clone.yml @@ -17,11 +17,13 @@ # traits # - LegsParalyzed (you get healed) - LightweightDrunk + - Muted - Narcolepsy - Pacified - PainNumbness - Paracusia - PermanentBlindness + - Snoring - Unrevivable # job specific - BibleUser @@ -37,6 +39,7 @@ - BleatingAccent - DamagedSiliconAccent - FrenchAccent + - FrontalLisp - GermanAccent - LizardAccent - MobsterAccent diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index 3d3472d8fb..3b999e18cf 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -64,6 +64,7 @@ tags: - BypassInteractionRangeChecks - type: PointLight + netsync: false radius: 6 castShadows: false enabled: false diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 3a271b4eb7..1aa6d40747 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -74,10 +74,6 @@ color: "#5ed7aa" announceVoice: PortalGlados # Sunrise-Edit sound: /Audio/_Sunrise/Announcements/announce_dig.ogg # Sunrise-Edit - - type: HolographicAvatar - layerData: - - sprite: Mobs/Silicon/station_ai.rsi - state: default - type: ShowJobIcons - type: Speech # Sunrise-Edit speechVerb: Robotic # Sunrise-Edit @@ -131,31 +127,6 @@ # anyway it's just a quality of life thing. showEnts: True -# Boards -- type: entity - id: AsimovCircuitBoard - parent: BaseElectronics - name: law board (Crewsimov) - description: An electronics board containing the Crewsimov lawset. - components: - - type: Sprite - sprite: Objects/Misc/module.rsi - state: std_mod - - type: SiliconLawProvider - laws: Crewsimov - -- type: entity - id: CorporateCircuitBoard - parent: BaseElectronics - name: law board (Corporate) - description: An electronics board containing the Corporate lawset. - components: - - type: Sprite - sprite: Objects/Misc/module.rsi - state: std_mod - - type: SiliconLawProvider - laws: Corporate - # Items - type: entity id: Intellicard @@ -233,8 +204,11 @@ layers: - state: base - state: ai_empty - map: ["unshaded"] shader: unshaded + - state: ai + map: ["enum.StationAiVisualState.Key"] + shader: unshaded + visible: false - type: Appearance - type: InteractionPopup interactSuccessString: petting-success-station-ai @@ -242,12 +216,6 @@ messagePerceivedByOthers: petting-success-station-ai-others # Otherwise AI cannot tell its being pet as It's just a brain inside of the core, not the core itself. interactSuccessSound: path: /Audio/Ambience/Objects/periodic_beep.ogg - - type: GenericVisualizer - visuals: - enum.StationAiVisualState.Key: - unshaded: - Empty: { state: ai_empty } - Occupied: { state: ai } - type: Telephone compatibleRanges: - Grid @@ -261,10 +229,12 @@ - type: StationAiWhitelist - type: UserInterface interfaces: - enum.HolopadUiKey.AiRequestWindow: - type: HolopadBoundUserInterface - enum.HolopadUiKey.AiActionWindow: - type: HolopadBoundUserInterface + enum.HolopadUiKey.AiRequestWindow: + type: HolopadBoundUserInterface + enum.HolopadUiKey.AiActionWindow: + type: HolopadBoundUserInterface + enum.StationAiCustomizationUiKey.Key: + type: StationAiCustomizationBoundUserInterface # The job-ready version of an AI spawn. - type: entity @@ -275,12 +245,6 @@ - type: ContainerSpawnPoint containerId: station_ai_mind_slot job: StationAi - - type: Sprite - sprite: Mobs/Silicon/station_ai.rsi - layers: - - state: base - - state: ai - shader: unshaded # The actual brain inside the core - type: entity @@ -325,6 +289,14 @@ - type: StartingMindRole mindRole: "MindRoleSiliconBrain" silent: true + - type: StationAiCustomization + protoIds: + StationAiCoreIconography: StationAiIconAi + StationAiHolograms: StationAiHologramFemale + - type: HolographicAvatar + layerData: + - sprite: Mobs/Silicon/holograms.rsi + state: ai_female - type: NameIdentifier group: StationAi diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index d24e0162d6..07440ef828 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -101,9 +101,6 @@ - map: ["enum.HumanoidVisualLayers.RHand"] - map: [ "gloves" ] - map: [ "shoes" ] - - map: [ "ears" ] - - map: [ "outerClothing" ] #Sunrise-edit - - map: [ "eyes" ] - map: [ "belt" ] - map: [ "id" ] - map: [ "enum.HumanoidVisualLayers.Tail" ] # Mentioned in moth code: This needs renaming lol. @@ -112,6 +109,8 @@ - map: [ "enum.HumanoidVisualLayers.FacialHair" ] - map: [ "enum.HumanoidVisualLayers.Hair" ] # Do these need to be here? (arachnid hair arachnid hair) - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "ears" ] + - map: [ "eyes" ] - map: [ "enum.HumanoidVisualLayers.HeadTop" ] - map: [ "mask" ] - map: [ "head" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index 80cb281381..51e3157cf6 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -131,14 +131,59 @@ jumpsuit: sizeMaps: 32: - sprite: Mobs/Species/Human/displacement.rsi + sprite: Mobs/Species/Moth/displacement.rsi state: jumpsuit-female + back: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: back + outerClothing: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: outerclothing + gloves: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: hand + shoes: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: shoes + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: jumpsuit-male + back: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: back + outerClothing: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: outerclothing + gloves: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: hand + shoes: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: shoes # Sunrise edit ;3 - type: FootprintEmitter - type: Carriable # Sunrise edit end 0_0 - - type: entity parent: BaseSpeciesDummy id: MobMothDummy @@ -152,6 +197,51 @@ jumpsuit: sizeMaps: 32: - sprite: Mobs/Species/Human/displacement.rsi + sprite: Mobs/Species/Moth/displacement.rsi state: jumpsuit-female - + back: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: back + outerClothing: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: outerclothing + gloves: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: hand + shoes: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: shoes + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: jumpsuit-male + back: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: back + outerClothing: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: outerclothing + gloves: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: hand + shoes: + sizeMaps: + 32: + sprite: Mobs/Species/Moth/displacement.rsi + state: shoes diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index b0f06813f3..13160aa328 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -21,7 +21,6 @@ # they like eat it idk lol - type: Storage clickInsert: false - openOnActivate: false grid: - 0,0,1,2 maxItemSize: Large diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index 97dc820692..1f97b93af1 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -148,6 +148,8 @@ - type: SolutionContainerVisuals maxFillLevels: 5 fillBaseName: fill + inHandsMaxFillLevels: 1 + inHandsFillBaseName: -fill- - type: entity parent: DrinkGlass diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml index 0a712faa09..00303bfb8b 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml @@ -44,6 +44,97 @@ solution: drink - type: Shakeable +- type: entity + parent: DrinkBase + id: DrinkBottlePlasticSmallBaseFull + abstract: true + suffix: Full + components: + - type: Item + size: Small + - type: Tag + tags: + - DrinkCup + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + - type: FitsInDispenser + solution: drink + - type: Openable + sound: + collection: bottleOpenSounds + closeable: true + closeSound: + collection: bottleCloseSounds + - type: Sprite + state: icon + sprite: Objects/Consumable/Drinks/waterbottle.rsi + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 5 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:SpillBehavior { } + - type: DnaSubstanceTrace + - type: PressurizedSolution + solution: drink + - type: TrashOnSolutionEmpty + solution: drink + - type: Shakeable + - type: PhysicalComposition + materialComposition: + Plastic: 100 + +- type: entity + parent: DrinkBottlePlasticSmallBaseFull + id: DrinkBottleGlassSmallBaseFull + abstract: true + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 50 + - type: Sprite + sprite: Objects/Consumable/Drinks/beer.rsi + - type: DamageOnLand + damage: + types: + Blunt: 5 + - type: DamageOtherOnHit + damage: + types: + Blunt: 4 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 5 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpillBehavior { } + - !type:SpawnEntitiesBehavior + spawn: + BrokenBottle: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Tool + qualities: + - Rolling + speedModifier: 0.75 + - type: PhysicalComposition + materialComposition: + Glass: 100 + - type: entity parent: DrinkBottlePlasticBaseFull id: DrinkBottleGlassBaseFull @@ -125,6 +216,8 @@ maxFillLevels: 5 fillBaseName: fill- +# Large Glass Bottles + - type: entity parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull] id: DrinkAbsintheBottleFull @@ -224,24 +317,6 @@ sprite: Objects/Consumable/Drinks/cognacbottle.rsi - type: Sealable -- type: entity - parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull] - id: DrinkColaBottleFull - name: Space Cola bottle - description: Cola. In spaaace! - components: - - type: SolutionContainerManager - solutions: - drink: - reagents: - - ReagentId: Cola - Quantity: 100 - - type: Label - currentLabel: reagent-name-cola - - type: Sprite - sprite: Objects/Consumable/Drinks/colabottle.rsi - - type: Sealable - - type: entity parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull] id: DrinkGrenadineBottleFull @@ -399,44 +474,6 @@ sprite: Objects/Consumable/Drinks/rumbottle.rsi - type: Sealable -- type: entity - parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull] - id: DrinkSpaceMountainWindBottleFull - name: Space Solar Wind bottle - description: Blows right through you like a solar wind. - components: - - type: SolutionContainerManager - solutions: - drink: - reagents: - - ReagentId: SpaceMountainWind - Quantity: 100 - - type: Drink - - type: Label - currentLabel: reagent-name-space-mountain-wind - - type: Sprite - sprite: Objects/Consumable/Drinks/space_mountain_wind_bottle.rsi - - type: Sealable - -- type: entity - parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull] - id: DrinkSpaceUpBottleFull - name: Space-Up bottle - description: Tastes like a hull breach in your mouth. - components: - - type: SolutionContainerManager - solutions: - drink: - reagents: - - ReagentId: SpaceUp - Quantity: 100 - - type: Drink - - type: Label - currentLabel: reagent-name-space-up - - type: Sprite - sprite: Objects/Consumable/Drinks/space-up_bottle.rsi - - type: Sealable - - type: entity parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull] id: DrinkTequilaBottleFull @@ -531,34 +568,6 @@ - Wine - DrinkBottle -# Small Bottles - -- type: entity - parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull] - id: DrinkBeerBottleFull - name: beer bottle # beer it is. coffee. beer? coff-ee? be-er? c-o... b-e - description: An alcoholic beverage made from malted grains, hops, yeast, and water. - components: - - type: Item - size: Small - - type: SolutionContainerManager - solutions: - drink: - maxVol: 50 - reagents: - - ReagentId: Beer - Quantity: 50 - - type: Label - currentLabel: reagent-name-beer - - type: Sprite - sprite: Objects/Consumable/Drinks/beer.rsi - - type: Openable - closeable: false - - type: Tag - tags: - - Beer - - DrinkBottle - - type: entity parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull] id: DrinkBeerGrowler # Needs to be renamed DrinkBeerBottleFull @@ -584,29 +593,7 @@ - DrinkBottle - type: entity - parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull] - id: DrinkAleBottleFull - name: Magm-Ale bottle - description: A true dorf's drink of choice. - components: - - type: Item - size: Small - - type: SolutionContainerManager - solutions: - drink: - maxVol: 50 - reagents: - - ReagentId: Ale - Quantity: 50 - - type: Label - currentLabel: reagent-name-ale - - type: Sprite - sprite: Objects/Consumable/Drinks/alebottle.rsi - - type: Openable - closeable: false - -- type: entity - parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull] + parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull] id: DrinkAleBottleFullGrowler name: Magm-Ale growler description: A true dorf's drink of choice. XL growler bottle. @@ -625,42 +612,64 @@ - type: Openable closeable: false +# Large Plastic Bottles + - type: entity - parent: [DrinkBottleVisualsOpenable, DrinkBottlePlasticBaseFull] - id: DrinkWaterBottleFull - name: water bottle - description: Simple clean water of unknown origin. You think that maybe you dont want to know it. + parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull] + id: DrinkColaBottleFull + name: Space Cola bottle + description: Cola. In spaaace! components: - - type: Item - size: Small - type: SolutionContainerManager solutions: drink: - maxVol: 30 reagents: - - ReagentId: Water - Quantity: 30 + - ReagentId: Cola + Quantity: 100 - type: Label - currentLabel: reagent-name-water - - type: Drink + currentLabel: reagent-name-cola - type: Sprite - sprite: Objects/Consumable/Drinks/waterbottle.rsi - layers: - - state: icon - map: ["enum.OpenableVisuals.Layer"] - - state: icon-1 - map: ["enum.SolutionContainerLayers.Fill"] - visible: false - - type: Appearance - - type: SolutionContainerVisuals - maxFillLevels: 5 - fillBaseName: icon- - inHandsMaxFillLevels: 2 - inHandsFillBaseName: -fill- + sprite: Objects/Consumable/Drinks/colabottle.rsi - type: Sealable - type: entity - parent: DrinkWaterBottleFull + parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull] + id: DrinkSpaceMountainWindBottleFull + name: Space Solar Wind bottle + description: Blows right through you like a solar wind. + components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: SpaceMountainWind + Quantity: 100 + - type: Label + currentLabel: reagent-name-space-mountain-wind + - type: Sprite + sprite: Objects/Consumable/Drinks/space_mountain_wind_bottle.rsi + - type: Sealable + +- type: entity + parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull] + id: DrinkSpaceUpBottleFull + name: Space-Up bottle + description: Tastes like a hull breach in your mouth. + components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: SpaceUp + Quantity: 100 + - type: Label + currentLabel: reagent-name-space-up + - type: Sprite + sprite: Objects/Consumable/Drinks/space-up_bottle.rsi + - type: Sealable + +- type: entity + parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull] id: DrinkSodaWaterBottleFull name: soda water bottle description: Like water, but angry! @@ -668,15 +677,18 @@ - type: SolutionContainerManager solutions: drink: - maxVol: 150 + maxVol: 100 reagents: - ReagentId: SodaWater - Quantity: 150 + Quantity: 100 + - type: Sprite + sprite: Objects/Consumable/Drinks/sodawater-bottle.rsi - type: Label currentLabel: reagent-name-soda-water + - type: Sealable - type: entity - parent: DrinkWaterBottleFull + parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull] id: DrinkTonicWaterBottleFull name: tonic water bottle description: Like soda water, but angrier maybe? Often sweeter. @@ -684,15 +696,82 @@ - type: SolutionContainerManager solutions: drink: - maxVol: 150 + maxVol: 100 reagents: - ReagentId: TonicWater - Quantity: 150 + Quantity: 100 + - type: Sprite + sprite: Objects/Consumable/Drinks/tonic-bottle.rsi - type: Label currentLabel: reagent-name-tonic-water + - type: Sealable + +# Small Bottles - type: entity - parent: [DrinkBottleVisualsOpenable, DrinkBottleGlassBaseFull] + parent: [DrinkBottleVisualsAll, DrinkBottlePlasticSmallBaseFull] + id: DrinkWaterBottleFull + name: water bottle + description: Simple clean water of unknown origin. You think that maybe you dont want to know it. + components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: Water + Quantity: 30 + - type: Sprite + sprite: Objects/Consumable/Drinks/waterbottle.rsi + - type: SolutionContainerVisuals + inHandsMaxFillLevels: 2 + inHandsFillBaseName: -fill- + - type: Label + currentLabel: reagent-name-water + - type: Sealable + +- type: entity + parent: [DrinkBottleVisualsAll, DrinkBottleGlassSmallBaseFull] + id: DrinkBeerBottleFull + name: beer bottle # beer it is. coffee. beer? coff-ee? be-er? c-o... b-e + description: An alcoholic beverage made from malted grains, hops, yeast, and water. + components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: Beer + Quantity: 50 + - type: Label + currentLabel: reagent-name-beer + - type: Sprite + sprite: Objects/Consumable/Drinks/beer.rsi + - type: Openable + closeable: false + - type: Tag + tags: + - Beer + +- type: entity + parent: [DrinkBottleVisualsAll, DrinkBottleGlassSmallBaseFull] + id: DrinkAleBottleFull + name: Magm-Ale bottle + description: A true dorf's drink of choice. + components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: Ale + Quantity: 50 + - type: Label + currentLabel: reagent-name-ale + - type: Sprite + sprite: Objects/Consumable/Drinks/alebottle.rsi + - type: Openable + closeable: false + +- type: entity + parent: [DrinkBottleVisualsOpenable, DrinkBottleGlassSmallBaseFull] id: DrinkSakeBottleFull name: small sake bottle description: The regret of the next morning seems to be nipping on the bottle too. diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml index 912ff51047..3c8211ba48 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml @@ -127,14 +127,13 @@ sprite: Objects/Consumable/Drinks/mug_green.rsi - type: entity - parent: DrinkBaseCup #this one doesn't have the proper layers in the rsi + parent: DrinkBaseMug id: DrinkMugDog name: funny dog mug description: It looks like a cartoon beagle. components: - type: Sprite sprite: Objects/Consumable/Drinks/mug_dog.rsi - state: icon-3 - type: entity parent: DrinkBaseMug diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_flasks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_flasks.yml index efd594ccdd..2ebc20e365 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_flasks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_flasks.yml @@ -113,6 +113,7 @@ sprite: Objects/Consumable/Drinks/pitcher.rsi layers: - state: icon + map: ["enum.SolutionContainerLayers.Base"] - state: fill-6 map: ["enum.SolutionContainerLayers.Fill"] visible: false @@ -120,3 +121,5 @@ - type: SolutionContainerVisuals maxFillLevels: 6 fillBaseName: fill- + inHandsMaxFillLevels: 2 + inHandsFillBaseName: -fill- diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml index 24e7d1b0e9..a7e3bf18cf 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml @@ -70,6 +70,8 @@ - type: SolutionContainerVisuals maxFillLevels: 2 fillBaseName: fill + inHandsMaxFillLevels: 1 + inHandsFillBaseName: -fill- - type: entity parent: DrinkGlassBase @@ -142,6 +144,10 @@ solutions: drink: maxVol: 20 + - type: SolutionTransfer + canChangeTransferAmount: true + minTransferAmount: 1 + maxTransferAmount: 20 - type: MixableSolution solution: drink - type: FitsInDispenser diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml index ef0d43be3f..114b3e01f2 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml @@ -20,9 +20,6 @@ reagents: - ReagentId: Nutriment Quantity: 5 - - type: Tag - tags: - - VoxFood - type: entity id: FoodBagel diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml index 1945da67f3..d817d53b18 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml @@ -15,7 +15,6 @@ - type: Tag tags: - Bread - - VoxFood - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml index 763e8d3580..d33eabed37 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml @@ -15,18 +15,17 @@ - type: SolutionContainerManager solutions: food: - maxVol: 30 + maxVol: 55 # flavored cakes have less room for spiking reagents: - ReagentId: Nutriment - Quantity: 20 + Quantity: 40 - ReagentId: Vitamin - Quantity: 5 + Quantity: 10 - type: Item size: Normal - type: Tag tags: - Cake - - VoxFood - type: SecretStash maxItemSize: "Normal" secretStashName: secret-stash-cake @@ -54,12 +53,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 10 + maxVol: 12 reagents: - ReagentId: Nutriment - Quantity: 4 + Quantity: 8 - ReagentId: Vitamin - Quantity: 1 + Quantity: 2 - type: Item size: Tiny - type: Tag @@ -116,6 +115,15 @@ state: plain - type: SliceableFood slice: FoodCakePlainSlice + - type: SolutionContainerManager + solutions: + food: + maxVol: 55 + reagents: + - ReagentId: Nutriment + Quantity: 20 + - ReagentId: Vitamin + Quantity: 5 # Added in type lines above @@ -126,6 +134,15 @@ components: - type: Sprite state: plain-slice + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Nutriment + Quantity: 4 + - ReagentId: Vitamin + Quantity: 1 # Tastes like sweetness, cake. - type: entity @@ -336,14 +353,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 30 + maxVol: 70 reagents: - ReagentId: Nutriment - Quantity: 15 + Quantity: 40 - ReagentId: Vitamin - Quantity: 5 + Quantity: 20 - ReagentId: Milk - Quantity: 5 + Quantity: 10 - type: Tag tags: - Cake @@ -367,11 +384,11 @@ maxVol: 15 reagents: - ReagentId: Nutriment - Quantity: 3 + Quantity: 8 - ReagentId: Vitamin - Quantity: 1 + Quantity: 4 - ReagentId: Milk - Quantity: 1 + Quantity: 2 - type: Tag tags: - Cake @@ -391,10 +408,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 35 + maxVol: 55 reagents: - ReagentId: Nutriment - Quantity: 20 + Quantity: 40 - ReagentId: Theobromine Quantity: 5 - ReagentId: Vitamin @@ -410,14 +427,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 8 + maxVol: 15 reagents: - ReagentId: Nutriment - Quantity: 4 + Quantity: 8 - ReagentId: Theobromine Quantity: 1 - ReagentId: Vitamin - Quantity: 1 + Quantity: 2 # Tastes like sweetness, cake, chocolate. - type: entity @@ -493,12 +510,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 50 + maxVol: 60 reagents: - ReagentId: Nutriment - Quantity: 32 + Quantity: 35 - ReagentId: Vitamin - Quantity: 11 + Quantity: 15 - type: Tag tags: - Cake @@ -518,9 +535,9 @@ maxVol: 15 reagents: - ReagentId: Nutriment - Quantity: 6.4 + Quantity: 7 - ReagentId: Vitamin - Quantity: 2.2 + Quantity: 3 - type: Tag tags: - Cake @@ -591,10 +608,10 @@ - type: SolutionContainerManager #TODO Sprinkles solutions: food: - maxVol: 45 + maxVol: 55 reagents: - ReagentId: Nutriment - Quantity: 20 + Quantity: 25 - ReagentId: Vitamin Quantity: 5 - ReagentId: Sugar @@ -611,14 +628,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 45 + maxVol: 15 reagents: - ReagentId: Nutriment - Quantity: 4 + Quantity: 6 - ReagentId: Vitamin - Quantity: 1 + Quantity: 2 - ReagentId: Sugar - Quantity: 3 + Quantity: 5 # Tastes like sweetness, cake, vanilla. - type: entity @@ -634,10 +651,10 @@ - type: SolutionContainerManager #TODO Sprinkles solutions: food: - maxVol: 45 + maxVol: 55 reagents: - ReagentId: Nutriment - Quantity: 20 + Quantity: 30 - ReagentId: Vitamin Quantity: 5 - ReagentId: Sugar @@ -654,14 +671,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 45 + maxVol: 15 reagents: - ReagentId: Nutriment - Quantity: 4 + Quantity: 8 - ReagentId: Vitamin Quantity: 1 - ReagentId: Sugar - Quantity: 3 + Quantity: 5 # Tastes like sweetness, cake, clown. - type: entity @@ -677,10 +694,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 45 + maxVol: 55 reagents: - ReagentId: Nutriment - Quantity: 20 + Quantity: 30 - ReagentId: Vitamin Quantity: 5 - ReagentId: PolypyryliumOligomers @@ -697,10 +714,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 10 + maxVol: 15 reagents: - ReagentId: Nutriment - Quantity: 4 + Quantity: 8 - ReagentId: Vitamin Quantity: 1 - ReagentId: PolypyryliumOligomers @@ -812,10 +829,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 48 + maxVol: 125 # SUPER dense cake reagents: - ReagentId: Nutriment - Quantity: 48 + Quantity: 80 + - ReagentId: Sugar + Quantity: 30 - type: Food transferAmount: 12 - type: Item @@ -836,10 +855,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 25 reagents: - ReagentId: Nutriment - Quantity: 12 + Quantity: 10 + - ReagentId: Sugar + Quantity: 5 - type: Food transferAmount: 3 - type: PointLight diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml index 4cdca4799c..52ac7b2fe9 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml @@ -10,7 +10,6 @@ - type: Tag tags: - Donut - - VoxFood - type: Sprite sprite: Objects/Consumable/Food/Baked/donut.rsi - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index 7776906b75..c7a10d4212 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -18,9 +18,6 @@ Quantity: 5 - type: Item size: Tiny - - type: Tag - tags: - - VoxFood # Muffins diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml index 8633d0f718..2748462abc 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml @@ -16,11 +16,13 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 50 reagents: #Most of these are this with slight variations, not worth changing until we have the rest of the reagents - ReagentId: Nutriment - Quantity: 11 + Quantity: 30 - ReagentId: Vitamin + Quantity: 14 + - ReagentId: Sugar Quantity: 5 - type: Food #All pies here made with a pie tin; unless you're some kind of savage, you're probably not destroying this when you eat or slice the pie! trash: @@ -30,7 +32,6 @@ - type: Tag tags: - Pie - - VoxFood - type: entity parent: FoodInjectableBase # Not sliceable @@ -48,12 +49,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 6 + maxVol: 7 reagents: - ReagentId: Nutriment - Quantity: 1.2 + Quantity: 7.5 - ReagentId: Vitamin - Quantity: 1 + Quantity: 3.5 + - ReagentId: Sugar + Quantity: 1.25 - type: Tag tags: - Pie @@ -510,6 +513,17 @@ - sweet - type: Sprite state: grape + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Nutriment + Quantity: 15 + - ReagentId: Vitamin + Quantity: 5 + - ReagentId: Sugar + Quantity: 5 - type: Tag tags: - Fruit @@ -547,10 +561,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 26 + maxVol: 35 reagents: - ReagentId: Nutriment - Quantity: 15 + Quantity: 25 - ReagentId: Theobromine Quantity: 2 # Tastes like tart, dark chocolate. diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml index 6bb88bf9b5..b226620953 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml @@ -254,12 +254,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 33 + maxVol: 45 reagents: - ReagentId: Nutriment - Quantity: 17 + Quantity: 18 + - ReagentId: Protein + Quantity: 18 - ReagentId: Vitamin - Quantity: 9 + Quantity: 6 - type: Sprite state: bigbite - type: Tag @@ -339,14 +341,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 26 reagents: - ReagentId: Nutriment - Quantity: 3 + Quantity: 7 - ReagentId: Vitamin Quantity: 7 - ReagentId: Protein - Quantity: 1 + Quantity: 10 - type: Tag tags: - Meat @@ -375,10 +377,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 20 reagents: - ReagentId: Nutriment - Quantity: 3 + Quantity: 5 - ReagentId: Protein Quantity: 7 - ReagentId: Vitamin @@ -486,16 +488,18 @@ - type: SolutionContainerManager solutions: food: - maxVol: 25 + maxVol: 65 reagents: - ReagentId: Nutriment - Quantity: 4 + Quantity: 31 - ReagentId: Protein - Quantity: 6 + Quantity: 15 - ReagentId: CapsaicinOil Quantity: 3 - ReagentId: Vitamin - Quantity: 6 + Quantity: 8 + - ReagentId: Sulfur # What you get for eating something with a flare in it + Quantity: 5 - type: Tag tags: - Meat @@ -515,14 +519,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 20 reagents: - ReagentId: Nutriment - Quantity: 3 + Quantity: 15 - ReagentId: Protein - Quantity: 7 - - ReagentId: Vitamin - Quantity: 1 + Quantity: 5 - type: Tag tags: - Meat @@ -583,16 +585,18 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 55 reagents: - ReagentId: Nutriment - Quantity: 6 + Quantity: 25 + - ReagentId: Protein + Quantity: 5 - ReagentId: CapsaicinOil Quantity: 5 - ReagentId: Blackpepper Quantity: 5 - ReagentId: Vitamin - Quantity: 1 + Quantity: 12 - type: Tag tags: - Meat @@ -641,10 +645,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 20 reagents: - ReagentId: Nutriment - Quantity: 2 + Quantity: 5 - ReagentId: Protein Quantity: 6 - ReagentId: Vitamin @@ -668,14 +672,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 20 reagents: - ReagentId: Nutriment - Quantity: 2 + Quantity: 5 - ReagentId: Protein - Quantity: 7 + Quantity: 8 - ReagentId: Vitamin - Quantity: 1 + Quantity: 3 - type: Tag tags: - Meat @@ -698,16 +702,16 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 30 reagents: - ReagentId: Nutriment - Quantity: 2 + Quantity: 11 - ReagentId: Protein - Quantity: 7 + Quantity: 10 - ReagentId: Vitamin Quantity: 4 - ReagentId: BbqSauce - Quantity: 1 + Quantity: 5 - type: Tag tags: - Meat @@ -782,10 +786,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 20 reagents: - ReagentId: Nutriment - Quantity: 3 + Quantity: 6 - ReagentId: Protein Quantity: 6 - ReagentId: Vitamin @@ -837,14 +841,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 20 reagents: - ReagentId: Nutriment - Quantity: 4 - - ReagentId: Protein - Quantity: 6 + Quantity: 13 - ReagentId: Vitamin - Quantity: 4 + Quantity: 5 # Tastes like bun, redditors. - type: entity @@ -921,10 +923,8 @@ maxVol: 15 reagents: - ReagentId: Nutriment - Quantity: 3 + Quantity: 8 - ReagentId: Protein - Quantity: 6 - - ReagentId: Vitamin Quantity: 3 # Tastes like bun, tofu. diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml index 3576fdfc15..4be9b9f600 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml @@ -22,9 +22,6 @@ reagents: - ReagentId: Nutriment Quantity: 20 - - type: Tag - tags: - - VoxFood # Meals @@ -112,14 +109,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 11 + maxVol: 20 reagents: - ReagentId: Nutriment - Quantity: 4 - - ReagentId: Vitamin - Quantity: 1 + Quantity: 15 - ReagentId: TableSalt - Quantity: 1 + Quantity: 2 # Tastes like nachos. - type: entity @@ -140,14 +135,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 25 reagents: - ReagentId: Nutriment - Quantity: 6 - - ReagentId: Vitamin - Quantity: 3 + Quantity: 20 - ReagentId: TableSalt - Quantity: 1 + Quantity: 2 # Tastes like nachos, cheese. - type: entity @@ -169,10 +162,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 25 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 8 + Quantity: 25 - ReagentId: CapsaicinOil Quantity: 7 - ReagentId: Vitamin @@ -256,12 +249,16 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 55 reagents: - ReagentId: Nutriment - Quantity: 6 + Quantity: 40 - ReagentId: CarpoToxin Quantity: 3 + - ReagentId: Vitamin + Quantity: 5 + - ReagentId: CapsaicinOil + Quantity: 4 - type: Tag tags: - CubanCarp @@ -353,7 +350,7 @@ description: BBQ ribs, slathered in a healthy coating of BBQ sauce. The least vegan thing to ever exist. components: - type: Food - trash: + trash: - FoodKebabSkewer - type: FlavorProfile flavors: @@ -364,12 +361,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 25 + maxVol: 35 reagents: - ReagentId: Nutriment Quantity: 3 - ReagentId: Protein - Quantity: 10 + Quantity: 20 - ReagentId: BbqSauce Quantity: 10 - type: Tag @@ -566,12 +563,16 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 35 reagents: - ReagentId: Nutriment - Quantity: 8 + Quantity: 20 + - ReagentId: Protein + Quantity: 5 - ReagentId: CapsaicinOil Quantity: 6 + - ReagentId: Vitamin + Quantity: 6 - type: Tag tags: - Meat @@ -615,7 +616,7 @@ description: Buttery. components: - type: Food - trash: + trash: - FoodPlate - type: FlavorProfile flavors: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml index b11b38be1c..580038115f 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml @@ -18,10 +18,7 @@ reagents: - ReagentId: Nutriment Quantity: 20 - - type: Tag - tags: - - VoxFood - + # Noodles - type: entity @@ -49,6 +46,13 @@ - tomato - type: Sprite state: tomato + - type: SolutionContainerManager + solutions: + food: + maxVol: 40 + reagents: + - ReagentId: Nutriment + Quantity: 35 - type: Tag tags: - Fruit @@ -72,12 +76,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 25 + maxVol: 80 reagents: - ReagentId: Nutriment - Quantity: 12 - - ReagentId: Vitamin - Quantity: 8 + Quantity: 70 # Tastes like pasta, bad humor. - type: entity @@ -95,12 +97,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 25 reagents: - ReagentId: Nutriment - Quantity: 8 - - ReagentId: Vitamin - Quantity: 4 + Quantity: 15 + - ReagentId: Protein + Quantity: 6 - type: Tag tags: - Meat @@ -146,12 +148,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 50 reagents: - ReagentId: Nutriment - Quantity: 7 - - ReagentId: Vitamin + Quantity: 20 + - ReagentId: Protein Quantity: 6 + - ReagentId: Vitamin + Quantity: 20 # Tastes like pasta, tomato. - type: entity @@ -169,10 +173,8 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 25 reagents: - ReagentId: Nutriment - Quantity: 8 - - ReagentId: Vitamin - Quantity: 1 + Quantity: 23 # Tastes like pasta, butter. diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 762b5728b6..4fc61f9830 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -1312,6 +1312,7 @@ - type: Tag tags: - Vegetable + - Mushroom # Slices @@ -1623,6 +1624,9 @@ entries: Taco: Lingzhi Burger: Lingzhi + - type: Tag + tags: + - Mushroom - type: entity name: ambrosia vulgaris @@ -1844,6 +1848,9 @@ entries: Taco: FlyAmanita Burger: FlyAmanita + - type: Tag + tags: + - Mushroom - type: entity name: gatfruit diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index 72243b6d06..9147a79158 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -10,7 +10,6 @@ - type: Tag tags: - FoodSnack - - VoxFood - type: Sprite sprite: Objects/Consumable/Food/snacks.rsi - type: SolutionContainerManager @@ -42,7 +41,7 @@ state: boritos - type: Item - type: Food - trash: + trash: - FoodPacketBoritosTrash - type: entity @@ -58,7 +57,7 @@ state: cnds - type: Item - type: Food - trash: + trash: - FoodPacketCnDsTrash - type: entity @@ -75,7 +74,7 @@ state: cheesiehonkers - type: Item - type: Food - trash: + trash: - FoodPacketCheesieTrash - type: entity @@ -93,7 +92,7 @@ state: chips - type: Item - type: Food - trash: + trash: - FoodPacketChipsTrash - type: entity @@ -192,7 +191,7 @@ state: pistachio - type: Item - type: Food - trash: + trash: - FoodPacketPistachioTrash - type: Tag tags: @@ -215,7 +214,7 @@ - type: Item heldPrefix: popcorn - type: Food - trash: + trash: - FoodPacketPopcornTrash - type: entity @@ -231,7 +230,7 @@ state: raisins - type: Item - type: Food - trash: + trash: - FoodPacketRaisinsTrash - type: Tag tags: @@ -250,7 +249,7 @@ state: semki - type: Item - type: Food - trash: + trash: - FoodPacketSemkiTrash - type: entity @@ -266,7 +265,7 @@ state: susjerky - type: Item - type: Food - trash: + trash: - FoodPacketSusTrash - type: Tag tags: @@ -285,7 +284,7 @@ state: syndicakes - type: Item - type: Food - trash: + trash: - FoodPacketSyndiTrash - type: entity @@ -310,7 +309,7 @@ - type: Sprite state: ramen - type: Food - trash: + trash: - FoodPacketCupRamenTrash - type: entity @@ -353,7 +352,7 @@ - ReagentId: Soysauce Quantity: 2 - type: Food - trash: + trash: - FoodPacketChowMeinTrash - type: entity @@ -382,7 +381,7 @@ - ReagentId: Soysauce Quantity: 2 - type: Food - trash: + trash: - FoodPacketDanDanTrash - type: entity @@ -408,7 +407,7 @@ heldPrefix: packet size: Tiny - type: Food - trash: + trash: - FoodCookieFortune - type: entity @@ -498,9 +497,6 @@ Quantity: 10 - ReagentId: Theobromine Quantity: 3 - - type: Tag - tags: - - VoxFood # Trash diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml index 2450f6ab4f..ecc4b22894 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml @@ -8,7 +8,7 @@ - type: Item storedRotation: -90 - type: Food - trash: + trash: - FoodBowlBig utensil: Spoon - type: SolutionContainerManager @@ -42,7 +42,6 @@ - type: Tag tags: - Soup - - VoxFood - type: Destructible thresholds: - trigger: @@ -139,12 +138,16 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 70 reagents: - ReagentId: Nutriment - Quantity: 8 + Quantity: 20 + - ReagentId: Kelotane + Quantity: 12 + - ReagentId: Bicaridine + Quantity: 12 - ReagentId: Vitamin - Quantity: 2 + Quantity: 20 - type: Tag tags: - Fruit @@ -169,14 +172,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 50 reagents: - ReagentId: Nutriment - Quantity: 8 + Quantity: 10 - ReagentId: Vitamin - Quantity: 2 + Quantity: 25 - ReagentId: DoctorsDelight - Quantity: 5 + Quantity: 10 - type: Tag tags: - Meat @@ -201,14 +204,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 45 reagents: - ReagentId: Nutriment - Quantity: 8 + Quantity: 20 - ReagentId: Vitamin - Quantity: 2 + Quantity: 10 - ReagentId: Allicin - Quantity: 3 + Quantity: 8 - type: entity name: caesar salad @@ -229,12 +232,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 50 reagents: - ReagentId: Nutriment - Quantity: 8 + Quantity: 15 - ReagentId: Vitamin - Quantity: 6 + Quantity: 30 - type: entity name: kimchi salad @@ -254,12 +257,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 30 reagents: - ReagentId: Nutriment Quantity: 8 - ReagentId: Vitamin - Quantity: 2 + Quantity: 15 - ReagentId: Allicin Quantity: 2 @@ -279,12 +282,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 10 + maxVol: 35 reagents: - - ReagentId: Nutriment - Quantity: 2 + - ReagentId: Sugar + Quantity: 10 - ReagentId: Vitamin - Quantity: 4 + Quantity: 15 - type: Tag tags: - Fruit @@ -307,12 +310,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 35 reagents: - - ReagentId: Nutriment - Quantity: 7 + - ReagentId: Sugar + Quantity: 8 - ReagentId: Vitamin - Quantity: 4 + Quantity: 17 - type: Tag tags: - Fruit @@ -405,12 +408,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 35 reagents: - ReagentId: Nutriment - Quantity: 4 + Quantity: 25 - ReagentId: Vitamin Quantity: 4 + - ReagentId: Protein + Quantity: 4 - type: Tag tags: - Meat @@ -495,12 +500,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 30 reagents: - ReagentId: Nutriment - Quantity: 5 + Quantity: 10 - ReagentId: Vitamin - Quantity: 3 + Quantity: 15 - ReagentId: CapsaicinOil Quantity: 2 - type: Tag @@ -592,14 +597,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 30 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 7 - - ReagentId: Vitamin Quantity: 8 + - ReagentId: Vitamin + Quantity: 17 - ReagentId: Water - Quantity: 10 + Quantity: 5 - type: Tag tags: - Meat @@ -621,7 +626,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 40 reagents: - ReagentId: Nutriment Quantity: 1 @@ -647,10 +652,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 3 + Quantity: 10 - ReagentId: Iron Quantity: 10 - ReagentId: Blood @@ -677,14 +682,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 30 + maxVol: 40 reagents: - ReagentId: Protein - Quantity: 9 + Quantity: 15 - ReagentId: Soysauce Quantity: 10 - ReagentId: Vitamin - Quantity: 7 + Quantity: 10 - type: entity name: clown's tears @@ -702,7 +707,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 25 + maxVol: 55 reagents: - ReagentId: Nutriment Quantity: 2 @@ -710,6 +715,8 @@ Quantity: 9 - ReagentId: Water Quantity: 10 + - ReagentId: Razorium + Quantity: 1 # silly - type: entity name: vegetable soup @@ -728,16 +735,16 @@ - type: SolutionContainerManager solutions: food: - maxVol: 25 + maxVol: 40 reagents: - ReagentId: Nutriment Quantity: 5 - ReagentId: Vitamin - Quantity: 7 + Quantity: 15 - ReagentId: Water Quantity: 10 - ReagentId: Oculine - Quantity: 1 + Quantity: 4 - type: entity name: nettle soup @@ -755,18 +762,18 @@ - type: SolutionContainerManager solutions: food: - maxVol: 30.5 + maxVol: 40 reagents: - ReagentId: Nutriment Quantity: 5 - ReagentId: Vitamin - Quantity: 8 + Quantity: 15 - ReagentId: Water Quantity: 10 - ReagentId: Omnizine Quantity: 5 - ReagentId: Histamine - Quantity: 0.5 + Quantity: 4 - type: entity name: mystery soup @@ -798,14 +805,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 25 + maxVol: 40 reagents: - ReagentId: Nutriment Quantity: 8 - ReagentId: CapsaicinOil Quantity: 5 - ReagentId: Vitamin - Quantity: 4 + Quantity: 20 - ReagentId: Allicin Quantity: 3 - type: Tag @@ -830,12 +837,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 40 reagents: - ReagentId: Nutriment Quantity: 8 - ReagentId: Vitamin - Quantity: 4 + Quantity: 25 - type: Tag tags: - ChiliBowl @@ -859,14 +866,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 6 + Quantity: 12 - ReagentId: CapsaicinOil Quantity: 5 - ReagentId: Vitamin - Quantity: 4 + Quantity: 20 - ReagentId: Allicin Quantity: 3 - type: Tag @@ -890,10 +897,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 10 + Quantity: 15 - ReagentId: Vitamin Quantity: 5 - ReagentId: TableSalt @@ -921,12 +928,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 22 + maxVol: 40 reagents: - ReagentId: Nutriment Quantity: 3 - ReagentId: Vitamin - Quantity: 5 + Quantity: 20 - ReagentId: Water Quantity: 10 - type: Tag @@ -951,12 +958,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 5 + Quantity: 10 # Eyes are yummy - ReagentId: Vitamin - Quantity: 3 + Quantity: 15 - type: Tag tags: - Meat @@ -972,7 +979,7 @@ flavors: - miso - type: Food - trash: + trash: - FoodBowlFancy - type: Sprite layers: @@ -982,7 +989,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 30 + maxVol: 40 reagents: - ReagentId: Nutriment Quantity: 9 @@ -1011,12 +1018,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 25 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 2 + Quantity: 5 - ReagentId: Vitamin - Quantity: 6 + Quantity: 20 - ReagentId: Water Quantity: 5 - ReagentId: Milk @@ -1035,10 +1042,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 25 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 3 + Quantity: 15 - ReagentId: Vitamin Quantity: 7 - ReagentId: Water @@ -1058,12 +1065,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 4 + Quantity: 15 - ReagentId: Vitamin - Quantity: 6 + Quantity: 15 # Tastes like beet. - type: entity @@ -1084,14 +1091,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 25 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 15 - - ReagentId: Protein Quantity: 5 + - ReagentId: Protein + Quantity: 20 - ReagentId: Vitamin - Quantity: 2 + Quantity: 15 - type: Tag tags: - Meat @@ -1114,12 +1121,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 4 + Quantity: 15 - ReagentId: Vitamin - Quantity: 5 + Quantity: 15 # Tastes like sweet potato. - type: entity @@ -1138,12 +1145,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 1 - - ReagentId: Vitamin Quantity: 5 + - ReagentId: Vitamin + Quantity: 25 - ReagentId: Allicin Quantity: 5 @@ -1163,14 +1170,14 @@ - type: SolutionContainerManager solutions: food: - maxVol: 30 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 6 + Quantity: 5 - ReagentId: Vitamin - Quantity: 6 + Quantity: 15 - ReagentId: Protein - Quantity: 6 + Quantity: 5 - ReagentId: Water Quantity: 5 # Tastes like crab. @@ -1192,10 +1199,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 10 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 3 + Quantity: 15 - ReagentId: Licoxide Quantity: 6 @@ -1215,12 +1222,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 6 + Quantity: 10 - ReagentId: Vitamin - Quantity: 5 + Quantity: 15 - ReagentId: CapsaicinOil Quantity: 5 - type: Tag @@ -1246,12 +1253,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 40 reagents: - ReagentId: Nutriment - Quantity: 6 + Quantity: 15 - ReagentId: Vitamin - Quantity: 6 + Quantity: 15 - ReagentId: Allicin Quantity: 3 - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml index 2a83b14d03..d715704770 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml @@ -34,7 +34,7 @@ nameGeneration: food-sequence-taco-gen contentSeparator: ", " - type: Appearance - + # Old tacos - type: entity @@ -140,10 +140,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 26 + maxVol: 30 reagents: - ReagentId: Nutriment - Quantity: 14 + Quantity: 22 - ReagentId: Vitamin Quantity: 6 @@ -159,11 +159,38 @@ - type: SolutionContainerManager solutions: food: - maxVol: 26 + maxVol: 30 + reagents: + - ReagentId: Nutriment + Quantity: 22 + - ReagentId: Vitamin + Quantity: 6 + +- type: entity + name: draco + parent: FoodTacoBase + id: FoodTacoDragon + description: A dragon taco, which is technically also a fish taco. + components: + - type: FlavorProfile + flavors: + - meaty + - spicy + - type: Food + - type: Sprite + state: dragontaco + - type: SolutionContainerManager + solutions: + food: + maxVol: 32 reagents: - ReagentId: Nutriment Quantity: 14 - ReagentId: Vitamin + Quantity: 4 + - ReagentId: Ichor + Quantity: 4 + - ReagentId: CapsaicinOil Quantity: 6 - type: entity @@ -180,6 +207,15 @@ - onion - type: Sprite state: softtaco + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Nutriment + Quantity: 10 + - ReagentId: Vitamin + Quantity: 18 - type: Tag tags: - - Meat \ No newline at end of file + - Meat diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cartons.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cartons.yml index 869cb34180..8c55fd740e 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cartons.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cartons.yml @@ -86,6 +86,5 @@ sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi - type: StorageFill contents: - - id: CigPackMixedMedical - - id: CigPackMixed - - id: CigPackMixedNasty + - id: CigPackMixed + amount: 3 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml index 818e56a37a..e9a54e6867 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml @@ -175,7 +175,7 @@ Quantity: 10 - type: entity - id: CigaretteIpecac + id: CigaretteNutriment parent: SoakedCigarette name: Grandma's Christmas Fruitcake components: @@ -186,8 +186,8 @@ reagents: - ReagentId: Nicotine Quantity: 10 - - ReagentId: Ipecac - Quantity: 2 + - ReagentId: Nutriment + Quantity: 10 - type: entity id: CigaretteBicaridine @@ -220,9 +220,9 @@ Quantity: 10 - type: entity - id: CigarettePax + id: CigaretteSaline parent: SoakedCigarette - name: Switzerland Express + name: North Atlantic Cruise components: - type: SolutionContainerManager solutions: @@ -231,8 +231,8 @@ reagents: - ReagentId: Nicotine Quantity: 10 - - ReagentId: Pax - Quantity: 2 + - ReagentId: Saline + Quantity: 10 - type: entity id: CigaretteBbqSauce @@ -250,9 +250,9 @@ Quantity: 10 - type: entity - id: CigaretteBlackPepper + id: CigaretteFrezon parent: SoakedCigarette - name: English Spice + name: Atmospheric Adventure components: - type: SolutionContainerManager solutions: @@ -261,7 +261,7 @@ reagents: - ReagentId: Nicotine Quantity: 10 - - ReagentId: Blackpepper + - ReagentId: Frezon Quantity: 10 - type: entity @@ -280,9 +280,9 @@ Quantity: 10 - type: entity - id: CigaretteBread + id: CigaretteRadium parent: SoakedCigarette - name: Double Toasted + name: Ex Ray components: - type: SolutionContainerManager solutions: @@ -291,11 +291,13 @@ reagents: - ReagentId: Nicotine Quantity: 10 + - ReagentId: Radium + Quantity: 10 - type: entity - id: CigaretteMilk + id: CigaretteHaloperidol parent: SoakedCigarette - name: Bovine Extract + name: Warm Bovine Extract components: - type: SolutionContainerManager solutions: @@ -304,13 +306,13 @@ reagents: - ReagentId: Nicotine Quantity: 10 - - ReagentId: Milk + - ReagentId: Haloperidol Quantity: 10 - type: entity - id: CigaretteBanana + id: CigaretteLaughter parent: SoakedCigarette - name: Clown Adjancency Bonus + name: Clown Adjacency Bonus components: - type: SolutionContainerManager solutions: @@ -319,13 +321,13 @@ reagents: - ReagentId: Nicotine Quantity: 10 - - ReagentId: BananaHonk + - ReagentId: Laughter Quantity: 10 - type: entity - id: CigaretteSpaceDrugs + id: CigaretteLipolicide parent: SoakedCigarette - name: 80's Power Hour + name: 80's Workout Routine components: - type: SolutionContainerManager solutions: @@ -334,13 +336,13 @@ reagents: - ReagentId: Nicotine Quantity: 10 - - ReagentId: SpaceDrugs + - ReagentId: Lipolicide Quantity: 10 - type: entity - id: CigaretteMuteToxin + id: CigaretteSodiumPolyacrylate parent: SoakedCigarette - name: Mixed Lozenges + name: Unhealthy Habits components: - type: SolutionContainerManager solutions: @@ -349,8 +351,8 @@ reagents: - ReagentId: Nicotine Quantity: 10 - - ReagentId: MuteToxin - Quantity: 2 + - ReagentId: SodiumPolyacrylate + Quantity: 10 - type: entity id: CigaretteMold @@ -365,7 +367,7 @@ - ReagentId: Nicotine Quantity: 10 - ReagentId: Mold - Quantity: 2 + Quantity: 10 - type: entity id: CigaretteLicoxide @@ -380,7 +382,7 @@ - ReagentId: Nicotine Quantity: 10 - ReagentId: Licoxide - Quantity: 5 + Quantity: 10 - type: entity id: CigaretteWeldingFuel @@ -395,12 +397,12 @@ - ReagentId: Nicotine Quantity: 10 - ReagentId: WeldingFuel - Quantity: 5 + Quantity: 10 - type: entity - id: CigaretteTHC + id: CigaretteRobustHarvest parent: SoakedCigarette - name: Hippy Romance Novel + name: Hippie Romance Novel components: - type: SolutionContainerManager solutions: @@ -409,5 +411,50 @@ reagents: - ReagentId: Nicotine Quantity: 10 - - ReagentId: THC - Quantity: 5 + - ReagentId: RobustHarvest + Quantity: 10 + +- type: entity + id: CigarettePhlogiston + parent: SoakedCigarette + name: Dragon Dating Sim + components: + - type: SolutionContainerManager + solutions: + smokable: + maxVol: 40 + reagents: + - ReagentId: Nicotine + Quantity: 10 + - ReagentId: Phlogiston + Quantity: 10 + +- type: entity + id: CigaretteBanana + parent: SoakedCigarette + name: Pun Pun's Tropical Getaway + components: + - type: SolutionContainerManager + solutions: + smokable: + maxVol: 40 + reagents: + - ReagentId: Nicotine + Quantity: 10 + - ReagentId: Potassium + Quantity: 10 + +- type: entity + id: CigaretteBlackPepper + parent: SoakedCigarette + name: English Spice + components: + - type: SolutionContainerManager + solutions: + smokable: + maxVol: 40 + reagents: + - ReagentId: Nicotine + Quantity: 10 + - ReagentId: Blackpepper + Quantity: 10 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml index 1ea01e26ab..1dd9bb814b 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml @@ -119,10 +119,6 @@ - type: Storage grid: - 0,0,4,1 - - type: StorageFill - contents: - - id: CigaretteRandom - amount: 10 - type: ItemCounter count: tags: [Cigarette] @@ -195,34 +191,6 @@ - id: CigaretteSyndicate amount: 10 -- type: entity - id: CigPackMixedMedical - parent: CigPackMixedBase - name: Dan's soaked smokes - suffix: Medical - description: Dan worked with NT chemistry to dispose of excess chemicals, ENJOY. - components: - - type: Sprite - sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/mixed.rsi - - type: Item - sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/mixed.rsi - - type: StorageFill - contents: - - id: CigaretteIron - - id: CigaretteTricordrazine - - id: CigaretteDylovene - - id: CigaretteDermaline - - id: CigaretteArithrazine - - id: CigaretteBicaridine - - id: CigaretteIpecac - - id: CigaretteOmnizine - prob: 0.25 - - id: CigaretteDexalin - prob: 0.25 - - id: CigarettePax - prob: 0.10 - - - type: entity id: CigPackMixed parent: CigPackMixedBase @@ -234,52 +202,67 @@ sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/mixed.rsi - type: Item sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/mixed.rsi - - type: StorageFill - contents: - - id: CigaretteBbqSauce - prob: 0.70 - - id: CigaretteBlackPepper - prob: 0.70 - - id: CigaretteCapsaicinOil - prob: 0.70 - - id: CigaretteBread - prob: 0.70 - - id: CigaretteMilk - prob: 0.70 - - id: CigaretteBanana - prob: 0.10 - - id: CigaretteTHC - prob: 0.70 - - id: CigaretteTricordrazine - prob: 0.25 - - id: CigaretteSpaceDrugs - prob: 0.50 - - id: CigaretteLicoxide - prob: 0.10 + - type: EntityTableContainerFill + containers: + storagebase: !type:NestedSelector + rolls: !type:RangeNumberSelector + range: 2, 9 + tableId: RandomSoakedSmokeTable -- type: entity - id: CigPackMixedNasty - parent: CigPackMixedBase - name: Dan's soaked smokes - suffix: Nasty - description: Dan worked with NT chemistry to dispose of excess chemicals, ENJOY. - components: - - type: Sprite - sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/mixed.rsi - - type: Item - sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/mixed.rsi - - type: StorageFill - contents: - - id: CigaretteSpaceDrugs - amount: 2 - - id: CigaretteWeldingFuel - amount: 2 - - id: CigaretteMold - amount: 2 - - id: CigaretteTHC +# Entity tables + +- type: entityTable + id: RandomSoakedSmokeTable + table: !type:GroupSelector + children: - id: CigaretteLicoxide - prob: 0.50 - - id: CigarettePax - prob: 0.10 - - id: CigaretteMuteToxin - prob: 0.05 + weight: 1 + - id: CigaretteFrezon + weight: 1 + - id: CigarettePhlogiston + weight: 1 + - id: CigaretteWeldingFuel + weight: 3 + - id: CigaretteMold + weight: 3 + - id: CigaretteRadium + weight: 3 + - id: CigaretteOmnizine + weight: 4 + - id: CigaretteTricordrazine + weight: 4 + - id: CigaretteIron + weight: 4 + - id: CigaretteDylovene + weight: 4 + - id: CigaretteDermaline + weight: 4 + - id: CigaretteArithrazine + weight: 4 + - id: CigaretteBicaridine + weight: 4 + - id: CigaretteDexalin + weight: 4 + - id: CigaretteHaloperidol + weight: 6 + - id: CigaretteLaughter + weight: 6 + - id: CigaretteLipolicide + weight: 6 + - id: CigaretteSodiumPolyacrylate + weight: 6 + - id: CigaretteRobustHarvest + weight: 6 + - id: CigaretteBanana + weight: 7 + - id: CigaretteBlackPepper + weight: 7 + - id: CigaretteCapsaicinOil + weight: 7 + - id: CigaretteBbqSauce + weight: 7 + - id: CigaretteNutriment + weight: 7 + - id: CigaretteSaline + weight: 7 + diff --git a/Resources/Prototypes/Entities/Objects/Decoration/present.yml b/Resources/Prototypes/Entities/Objects/Decoration/present.yml index 9a08e3983e..de25ec9eb4 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/present.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/present.yml @@ -322,6 +322,8 @@ orGroup: GiftPool - id: ClothingUniformColorRainbow orGroup: GiftPool + - id: ClothingUniformJumpskirtColorRainbow + orGroup: GiftPool - id: ClothingUniformOveralls orGroup: GiftPool - id: ClothingUniformJumpskirtDetectiveGrey diff --git a/Resources/Prototypes/Entities/Objects/Deliveries/deliveries.yml b/Resources/Prototypes/Entities/Objects/Deliveries/deliveries.yml index a209f5c6f7..acf88fc8b3 100644 --- a/Resources/Prototypes/Entities/Objects/Deliveries/deliveries.yml +++ b/Resources/Prototypes/Entities/Objects/Deliveries/deliveries.yml @@ -27,6 +27,15 @@ enum.DeliveryVisualLayers.Trash: True: { visible: true } False: { visible: false } + enum.DeliveryVisuals.IsBomb: + enum.DeliveryVisualLayers.Bomb: + Off: { visible: false } + Inactive: { visible: true } + Primed: { visible: true } + enum.DeliveryVisualLayers.BombPrimed: + Off: { visible: false } + Inactive: { visible: false } + Primed: { visible: true } - type: Label examinable: false - type: FingerprintReader @@ -74,6 +83,13 @@ - state: broken map: [ "enum.DeliveryVisualLayers.Breakage" ] visible: false + - state: bomb + map: [ "enum.DeliveryVisualLayers.Bomb" ] + visible: false + - state: bomb_unshaded + map: [ "enum.DeliveryVisualLayers.BombPrimed" ] + shader: unshaded + visible: false - type: MultiHandedItem - type: Item size: Huge @@ -117,6 +133,13 @@ - state: broken map: [ "enum.DeliveryVisualLayers.Breakage" ] visible: false + - state: bomb + map: [ "enum.DeliveryVisualLayers.Bomb" ] + visible: false + - state: bomb_unshaded + map: [ "enum.DeliveryVisualLayers.BombPrimed" ] + shader: unshaded + visible: false - type: Item storedRotation: 90 - type: Delivery @@ -139,6 +162,8 @@ prob: 0.25 - id: DeliveryModifierFragile prob: 0.25 + - id: DeliveryModifierBomb + prob: 0.02 # Should happen maybe once or twice per game. - type: entity id: DeliveryModifierPriority @@ -177,3 +202,21 @@ collection: DeliveryOpenSounds - !type:DoActsBehavior acts: [ "Breakage" ] + +- type: entity + id: DeliveryModifierBomb + description: Components to add when a delivery is rolled as a bomb. + categories: [ HideSpawnMenu ] + components: + - type: DeliveryBomb + - type: AmbientSound + enabled: false + range: 8 + sound: + path: /Audio/Effects/lightburn.ogg + - type: Explosive + explosionType: MicroBomb + totalIntensity: 120 + intensitySlope: 4 + maxIntensity: 30 + canCreateVacuum: false diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index 172d0665be..9257de049c 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -203,6 +203,17 @@ prototype: ComputerCargoBounty - type: StaticPrice +- type: entity + parent: BaseComputerCircuitboard + id: SalvageJobBoardComputerCircuitboard + name: salvage job board computer board + description: A computer printed circuit board for a salvage job board computer. + components: + - type: Sprite + state: cpu_supply + - type: ComputerBoard + prototype: ComputerSalvageJobBoard + - type: entity parent: BaseComputerCircuitboard id: SalvageExpeditionsComputerCircuitboard @@ -311,7 +322,7 @@ prototype: ComputerCrewMonitoring - type: entity - parent: [BaseComputerCircuitboard, BaseGrandTheftContraband] + parent: [BaseComputerCircuitboard, BaseCommandContraband] id: IDComputerCircuitboard name: ID card computer board description: A computer printed circuit board for an ID card console. @@ -338,7 +349,7 @@ prototype: computerBodyScanner - type: entity - parent: [ BaseComputerCircuitboard, BaseGrandTheftContraband ] + parent: [ BaseComputerCircuitboard, BaseCommandContraband ] id: CommsComputerCircuitboard name: communications computer board description: A computer printed circuit board for a communications console. diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/law_boards.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/law_boards.yml index a4d3f63706..3a0b885a8c 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/law_boards.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/law_boards.yml @@ -10,6 +10,30 @@ - type: SiliconLawProvider laws: NTDefault +- type: entity + id: AsimovCircuitBoard + parent: BaseElectronics + name: law board (Crewsimov) + description: An electronics board containing the Crewsimov lawset. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: std_mod + - type: SiliconLawProvider + laws: Crewsimov + +- type: entity + id: CorporateCircuitBoard + parent: BaseElectronics + name: law board (Corporate) + description: An electronics board containing the Corporate lawset. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: std_mod + - type: SiliconLawProvider + laws: Corporate + - type: entity id: CommandmentCircuitBoard parent: BaseElectronics diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/singularity_beacon.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/singularity_beacon.yml index 96b3c4f4d8..fd24a1dc1a 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/singularity_beacon.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/singularity_beacon.yml @@ -10,6 +10,10 @@ - state: icon - type: Item size: Huge + - type: MultiHandedItem #huge device + - type: HeldSpeedModifier + walkModifier: 0.75 + sprintModifier: 0.75 - type: Fixtures fixtures: fix1: diff --git a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml index 2d23885bca..1dd77a7a78 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml @@ -25,6 +25,9 @@ layers: - state: crypt_gray - state: common_label + - type: Tag + tags: + - EncryptionCommon - type: entity parent: [ EncryptionKey, BaseCargoContraband ] @@ -40,6 +43,9 @@ layers: - state: crypt_gray - state: cargo_label + - type: Tag + tags: + - EncryptionCargo - type: entity parent: [ EncryptionKey, BaseCentcommContraband ] @@ -92,6 +98,9 @@ layers: - state: crypt_silver - state: com_label + - type: Tag + tags: + - EncryptionCommand - type: entity parent: [ EncryptionKey, BaseEngineeringContraband ] @@ -107,6 +116,9 @@ layers: - state: crypt_gray - state: eng_label + - type: Tag + tags: + - EncryptionEngineering - type: entity parent: [ EncryptionKey, BaseMedicalContraband ] @@ -122,6 +134,9 @@ layers: - state: crypt_gray - state: med_label + - type: Tag + tags: + - EncryptionMedical - type: entity parent: [ EncryptionKey, BaseMedicalScienceContraband ] @@ -153,6 +168,9 @@ layers: - state: crypt_gray - state: sci_label + - type: Tag + tags: + - EncryptionScience - type: entity parent: [ EncryptionKey, BaseScienceContraband ] @@ -183,6 +201,9 @@ layers: - state: crypt_gray - state: sec_label + - type: Tag + tags: + - EncryptionSecurity - type: entity parent: [ EncryptionKey, BaseCivilianContraband ] @@ -198,6 +219,9 @@ layers: - state: crypt_gray - state: service_label + - type: Tag + tags: + - EncryptionService - type: entity parent: [ EncryptionKey, BaseSyndicateContraband ] diff --git a/Resources/Prototypes/Entities/Objects/Devices/station_map.yml b/Resources/Prototypes/Entities/Objects/Devices/station_map.yml index 54fc4a70c5..e440cec09a 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/station_map.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/station_map.yml @@ -36,7 +36,7 @@ parent: - BaseHandheldStationMap - BaseHandheldComputer - suffix: Handheld, Powered + suffix: Handheld - type: entity id: HandheldStationMapEmpty @@ -51,4 +51,4 @@ - type: entity id: HandheldStationMapUnpowered parent: BaseHandheldStationMap - suffix: Handheld, Unpowered + suffix: Handheld, Always Powered diff --git a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml index f21de4c79e..c4be0aa453 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml @@ -138,9 +138,9 @@ price: 1000 - type: PointLight radius: 1.2 - energy: 1 + energy: 2.2 castShadows: false - color: "#eef066" + color: "#ffca1b" - type: entity parent: BikeHorn @@ -219,14 +219,13 @@ - type: EmitSoundOnLand sound: "/Audio/Items/Toys/pushHornFloor.ogg" - type: UseDelay - delay: 6 + delay: 10 - type: TriggerOnUse - type: RepulseAttractOnTrigger speed: 50 - range: 2 + range: 3.5 whitelist: components: - MobMover - - Item - type: SpawnOnTrigger proto: EffectGravityPulse diff --git a/Resources/Prototypes/Entities/Objects/Fun/spectral_locator.yml b/Resources/Prototypes/Entities/Objects/Fun/spectral_locator.yml index 930b9c4926..5bae35c4ac 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/spectral_locator.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/spectral_locator.yml @@ -3,7 +3,7 @@ parent: BaseItem name: spectral locator description: Appears to be a modified anomaly locator. Seems very old. - suffix: Unpowered + suffix: Always Powered components: - type: Sprite sprite: Objects/Fun/spectrallocator.rsi @@ -24,9 +24,8 @@ - type: ProximityBeeper - type: ProximityDetector range: 12 - criteria: - components: - - Spectral # reacts to AI eye, intentional + components: + - type: Spectral # reacts to AI eye, intentional - type: Beeper isMuted: true minBeepInterval: 0.25 @@ -40,7 +39,7 @@ - type: entity id: SpectralLocator parent: [ SpectralLocatorUnpowered, PowerCellSlotSmallItem ] - suffix: Powered + suffix: "" components: - type: PowerCellDraw drawRate: 1 diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 5de2ab84b6..c30f10cdc3 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -718,7 +718,7 @@ sound: path: /Audio/Items/Toys/rawr.ogg - type: MeleeWeapon - wideAnimationRotation: 180 + wideAnimationRotation: 90 soundHit: path: /Audio/Items/Toys/rawr.ogg - type: Item @@ -829,7 +829,7 @@ useSound: path: /Audio/Effects/bite.ogg - type: MeleeWeapon - wideAnimationRotation: -90 + wideAnimationRotation: 90 soundHit: path: /Audio/Effects/bite.ogg angle: 0 @@ -947,7 +947,7 @@ useSound: path: /Audio/Items/Toys/rattle.ogg - type: MeleeWeapon - wideAnimationRotation: 180 + wideAnimationRotation: 90 soundHit: path: /Audio/Items/Toys/rattle.ogg - type: Clothing diff --git a/Resources/Prototypes/Entities/Objects/Materials/crafting_parts.yml b/Resources/Prototypes/Entities/Objects/Materials/crafting_parts.yml deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index 1ad4250cea..aa73e2f650 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -423,6 +423,10 @@ - type: PhysicalComposition materialComposition: Diamond: 100 + - type: Tag + tags: + - RawMaterial + - Diamond - type: entity parent: MaterialDiamond @@ -834,6 +838,9 @@ sprite: Objects/Materials/hide.rsi shape: - 0,0,2,2 + - type: Tag + tags: + - GoliathPlate - type: entity parent: MaterialGoliathHide diff --git a/Resources/Prototypes/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/Entities/Objects/Materials/ore.yml index 9d07aed853..9535eb3dbd 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ore.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ore.yml @@ -48,6 +48,10 @@ Quantity: 10 - type: Item heldPrefix: gold + - type: Tag + tags: + - Ore + - OreGold - type: entity parent: GoldOre @@ -152,6 +156,10 @@ Quantity: 10 - type: Item heldPrefix: plasma + - type: Tag + tags: + - Ore + - OrePlasma - type: entity parent: PlasmaOre @@ -185,6 +193,10 @@ Quantity: 10 - type: Item heldPrefix: silver + - type: Tag + tags: + - Ore + - OreSilver - type: entity parent: SilverOre @@ -259,6 +271,10 @@ canReact: false - type: Item heldPrefix: uranium + - type: Tag + tags: + - Ore + - OreUranium - type: entity parent: UraniumOre @@ -301,6 +317,10 @@ Quantity: 5 - type: Item heldPrefix: bananium + - type: Tag + tags: + - Ore + - OreBananium - type: entity parent: BananiumOre diff --git a/Resources/Prototypes/Entities/Objects/Materials/scrap.yml b/Resources/Prototypes/Entities/Objects/Materials/scrap.yml index c4ec20465e..7e8efe5770 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/scrap.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/scrap.yml @@ -25,6 +25,7 @@ - type: Tag tags: - Recyclable + - SalvageScrap - type: entity parent: BaseStructure diff --git a/Resources/Prototypes/Entities/Objects/Misc/acquisition_slips.yml b/Resources/Prototypes/Entities/Objects/Misc/acquisition_slips.yml new file mode 100644 index 0000000000..1591af6bda --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/acquisition_slips.yml @@ -0,0 +1,141 @@ +- type: entity + abstract: true + parent: Paper + id: PaperAcquisitionSlip + name: acquisition slip + description: A slip with order details on it. It can be given to Cargo to complete the order. + components: + - type: Sprite + layers: + - state: acquisition_form + - state: acquisition_form_words + map: ["enum.PaperVisualLayers.Writing"] + visible: false + - state: acquisition_form_header + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: Tag + tags: + - Trash + - Document + - Paper + - type: Paper + editingDisabled: true + - type: PaperVisuals + footerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/barcode.svg.192dpi.png" + maxWritableArea: 512.0, 512.0 + +- type: entity + parent: PaperAcquisitionSlip + id: PaperAcquisitionSlipMedical + suffix: Medical + components: + - type: Sprite + layers: + - state: acquisition_form + - state: acquisition_form_words + map: ["enum.PaperVisualLayers.Writing"] + visible: false + - state: acquisition_form_header + color: "#57b8f0" + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: PaperVisuals + headerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/medical.svg.192dpi.png" + +- type: entity + parent: PaperAcquisitionSlip + id: PaperAcquisitionSlipScience + suffix: Science + components: + - type: Sprite + layers: + - state: acquisition_form + - state: acquisition_form_words + map: ["enum.PaperVisualLayers.Writing"] + visible: false + - state: acquisition_form_header + color: "#cd7ccd" + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: PaperVisuals + headerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/science.svg.192dpi.png" + +- type: entity + parent: PaperAcquisitionSlip + id: PaperAcquisitionSlipSecurity + suffix: Security + components: + - type: Sprite + layers: + - state: acquisition_form + - state: acquisition_form_words + map: ["enum.PaperVisualLayers.Writing"] + visible: false + - state: acquisition_form_header + color: "#ff4242" + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: PaperVisuals + headerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/security.svg.192dpi.png" + +- type: entity + parent: PaperAcquisitionSlip + id: PaperAcquisitionSlipService + suffix: Service + components: + - type: Sprite + layers: + - state: acquisition_form + - state: acquisition_form_words + map: ["enum.PaperVisualLayers.Writing"] + visible: false + - state: acquisition_form_header + color: "#539c00" + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: PaperVisuals + headerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/service.svg.192dpi.png" + +- type: entity + parent: PaperAcquisitionSlip + id: PaperAcquisitionSlipCargo + suffix: Cargo + components: + - type: Sprite + layers: + - state: acquisition_form + - state: acquisition_form_words + map: ["enum.PaperVisualLayers.Writing"] + visible: false + - state: acquisition_form_header + color: "#b48b57" + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: PaperVisuals + headerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/cargo.svg.192dpi.png" + +- type: entity + parent: PaperAcquisitionSlip + id: PaperAcquisitionSlipEngineering + suffix: Engineering + components: + - type: Sprite + layers: + - state: acquisition_form + - state: acquisition_form_words + map: ["enum.PaperVisualLayers.Writing"] + visible: false + - state: acquisition_form_header + color: "#ff733c" + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: PaperVisuals + headerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/engineering.svg.192dpi.png" diff --git a/Resources/Prototypes/Entities/Objects/Misc/candles.yml b/Resources/Prototypes/Entities/Objects/Misc/candles.yml index b33d83f218..1220ea4051 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/candles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/candles.yml @@ -75,7 +75,6 @@ left: - state: inhand-left color: "#a12349" - - state: inhand-left-flame right: - state: inhand-right color: "#a12349" diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index f691486c8b..a08f067839 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -270,6 +270,41 @@ - CargoBounties - Cargo +- type: entity + id: PaperSalvageJobLabel + parent: PaperCargoInvoice + name: salvage job shipment label + description: A paper label designating a crate as containing a shipment to fulfill a salvage job. Selling a crate with this will fulfill the job. + components: + - type: Sprite + layers: + - state: paper + color: "#f7e574" + - state: paper_words + map: ["enum.PaperVisualLayers.Writing"] + color: "#f7e574" + visible: false + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: PaperLabelType + paperType: Bounty + - type: Tag + tags: + - Document + - Trash + - Paper + - type: PaperVisuals + backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png" + contentImagePath: "/Textures/Interface/Paper/paper_content_lined.svg.96dpi.png" + backgroundModulate: "#f7e574" + contentImageModulate: "#f7e574" + backgroundPatchMargin: 16.0, 16.0, 16.0, 16.0 + contentMargin: 16.0, 16.0, 16.0, 16.0 + - type: JobBoardLabel + - type: StaticPrice #infinitely printable + price: 0 + - type: entity name: character sheet parent: Paper diff --git a/Resources/Prototypes/Entities/Objects/Misc/spaceshroom.yml b/Resources/Prototypes/Entities/Objects/Misc/spaceshroom.yml index c6d27dba67..e73d13e2cb 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/spaceshroom.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/spaceshroom.yml @@ -24,7 +24,9 @@ components: - Hands loot: - All: SpaceshroomGather + All: !type:GroupSelector + children: + - id: FoodSpaceshroom - type: Damageable damageContainer: StructuralInorganic damageModifierSet: Wood @@ -37,13 +39,6 @@ - !type:DoActsBehavior acts: [ "Destruction" ] -- type: entityLootTable - id: SpaceshroomGather - entries: - - id: FoodSpaceshroom - amount: 1 - maxAmount: 1 - - type: entity name: spaceshroom parent: FoodProduceBase @@ -98,6 +93,9 @@ thickness: 0.02 area: 0.02 conductivity: 0.43 + - type: Tag + tags: + - Mushroom - type: weightedRandomFillSolution id: RandomFillSpaceshroom diff --git a/Resources/Prototypes/Entities/Objects/Power/powercells.yml b/Resources/Prototypes/Entities/Objects/Power/powercells.yml index 9e7c327867..e666e441c9 100644 --- a/Resources/Prototypes/Entities/Objects/Power/powercells.yml +++ b/Resources/Prototypes/Entities/Objects/Power/powercells.yml @@ -180,7 +180,7 @@ - type: entity name: hyper-capacity power cell - description: A rechargeable standardized power cell. This one looks like a rare and powerful prototype. + description: A rechargeable standardized power cell. This iteration pushes the upper limits of portable power storage, boasting 66% more capacity than its predecessor. id: PowerCellHyper suffix: Full parent: BasePowerCell diff --git a/Resources/Prototypes/Entities/Objects/Power/powersink.yml b/Resources/Prototypes/Entities/Objects/Power/powersink.yml index 5d1043f08c..883483b645 100644 --- a/Resources/Prototypes/Entities/Objects/Power/powersink.yml +++ b/Resources/Prototypes/Entities/Objects/Power/powersink.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity id: PowerSink parent: [BaseMachine, BaseSyndicateContraband] name: power sink @@ -6,6 +6,10 @@ components: - type: Item size: Huge + - type: MultiHandedItem + - type: HeldSpeedModifier #verrryy heavy + walkModifier: 0.60 + sprintModifier: 0.60 - type: NodeContainer examinable: true nodes: diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index f39d5ecdec..825d354377 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -432,7 +432,7 @@ - type: entity name: mirror shield - parent: BaseShield + parent: [ BaseShield, BaseMagicalContraband ] id: MirrorShield description: Eerily glows red... you hear the geometer whispering components: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml index f6651335af..4f6c758c60 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml @@ -34,6 +34,7 @@ size: Large sprite: Objects/Specific/Janitorial/mop.rsi - type: Absorbent + useAbsorberSolution: true - type: SolutionContainerManager solutions: absorbed: @@ -89,6 +90,7 @@ sprite: Objects/Specific/Janitorial/advmop.rsi - type: Absorbent pickupAmount: 100 + useAbsorberSolution: true - type: UseDelay delay: 0.5 - type: SolutionRegeneration @@ -322,6 +324,7 @@ sprite: Objects/Specific/Janitorial/rag.rsi - type: Absorbent pickupAmount: 15 + useAbsorberSolution: true - type: Construction graph: Rag node: rag diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml index 59f355e7c3..72945a923b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml @@ -236,3 +236,25 @@ - type: Residue residueAdjective: residue-slippery residueColor: residue-blue + +- type: entity + name: soap + id: SoapBorg # Intended for borg internals, not slippery or food, not a container for soap reagent + parent: BaseItem + description: A Nanotrasen brand bar of soap. Smells of plasma and machines. + components: + - type: Sprite + sprite: Objects/Specific/Janitorial/soap.rsi + layers: + - state: nt-4 + - type: Appearance + - type: Item + sprite: Objects/Specific/Janitorial/soap.rsi + storedRotation: -90 + - type: CleansForensics + - type: Residue + residueAdjective: residue-slippery + residueColor: residue-grey + - type: Tag + tags: + - Soap diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml index c2f7bef65b..83cbd86bdf 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml @@ -63,7 +63,7 @@ - type: entity id: DefibrillatorOneHandedUnpowered parent: BaseDefibrillator - suffix: One-Handed, Unpowered + suffix: One-Handed, Always Powered - type: entity id: DefibrillatorCompact # This should be a research item at some point diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml index f5a57d0918..cc38f81af8 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml @@ -2,6 +2,7 @@ id: HandheldHealthAnalyzerUnpowered parent: BaseItem name: health analyzer + suffix: Always Powered description: A hand-held body scanner capable of distinguishing vital signs of the subject. components: - type: Sprite @@ -46,7 +47,7 @@ - type: entity id: HandheldHealthAnalyzer parent: [ HandheldHealthAnalyzerUnpowered, PowerCellSlotSmallItem] - suffix: Powered + suffix: "" components: - type: PowerCellDraw drawRate: 1.2 #Calculated for 5 minutes on a small cell diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index 375a0cab3e..83c6389dbf 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -154,9 +154,6 @@ maxFillLevels: 1 changeColor: false emptySpriteName: firstaid_empty - - type: Tag - tags: - - Trash - type: PhysicalComposition materialComposition: Plastic: 50 @@ -190,8 +187,6 @@ Quantity: 12 - ReagentId: TranexamicAcid Quantity: 3 - - type: Tag - tags: [] - type: entity name: poison auto-injector @@ -229,8 +224,6 @@ Quantity: 10 - ReagentId: Epinephrine Quantity: 5 - - type: Tag - tags: [] - type: entity name: brute auto-injector @@ -273,8 +266,6 @@ Quantity: 15 - ReagentId: TranexamicAcid Quantity: 5 - - type: Tag - tags: [] - type: entity name: burn auto-injector @@ -317,8 +308,6 @@ Quantity: 10 - ReagentId: Leporazine Quantity: 10 - - type: Tag - tags: [] - type: entity name: rad auto-injector @@ -361,8 +350,6 @@ Quantity: 15 - ReagentId: Bicaridine Quantity: 5 - - type: Tag - tags: [] - type: entity name: puncturase auto-injector @@ -405,8 +392,6 @@ Quantity: 10 - ReagentId: TranexamicAcid Quantity: 5 - - type: Tag - tags: [] - type: entity name: pyrazine auto-injector @@ -449,8 +434,6 @@ Quantity: 10 - ReagentId: Dermaline Quantity: 10 - - type: Tag - tags: [] - type: entity name: airloss auto-injector @@ -493,8 +476,6 @@ Quantity: 20 - ReagentId: DexalinPlus Quantity: 20 - - type: Tag - tags: [] - type: entity name: space medipen @@ -538,8 +519,6 @@ Quantity: 10 - ReagentId: Barozine Quantity: 20 - - type: Tag - tags: [] - type: entity name: hyperzine injector @@ -584,8 +563,6 @@ injectOnly: true - type: StaticPrice price: 500 - - type: Tag - tags: [] - type: entity name: hyperzine microinjector @@ -625,8 +602,6 @@ emptySpriteName: microstimpen_empty - type: StaticPrice price: 100 - - type: Tag - tags: [] - type: entity name: combat medipen @@ -671,8 +646,6 @@ injectOnly: true - type: StaticPrice price: 500 - - type: Tag - tags: [] - type: entity name: pen @@ -740,5 +713,3 @@ transferAmount: 1 onlyAffectsMobs: false injectOnly: true - - type: Tag - tags: [] diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml index 0872f0fc3e..21971dda32 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml @@ -27,7 +27,7 @@ parent: BaseItem name: anomaly locator description: A device designed to aid in the locating of anomalies. Did you check the gas miners? - suffix: Unpowered + suffix: Always Powered components: - type: Sprite sprite: Objects/Specific/Research/anomalylocator.rsi @@ -48,9 +48,8 @@ - type: ProximityBeeper - type: ProximityDetector range: 20 - criteria: - components: - - Anomaly + components: + - type: Anomaly - type: Beeper isMuted: true minBeepInterval: 0.15 @@ -64,7 +63,7 @@ - type: entity id: AnomalyLocator parent: [ AnomalyLocatorUnpowered, PowerCellSlotSmallItem ] - suffix: Powered + suffix: "" components: - type: PowerCellDraw drawRate: 1 @@ -86,7 +85,7 @@ parent: AnomalyLocatorUnpowered name: wide-spectrum anomaly locator description: A device that looks for anomalies from an extended distance, but has no way to determine the distance to them. - suffix: Unpowered + suffix: Always Powered components: - type: Sprite sprite: Objects/Specific/Research/anomalylocatorwide.rsi @@ -95,10 +94,11 @@ maxBeepInterval: 0.5 - type: ProximityDetector range: 40 + - type: entity id: AnomalyLocatorWide parent: [ AnomalyLocatorWideUnpowered, PowerCellSlotSmallItem ] - suffix: Powered + suffix: "" components: - type: PowerCellDraw drawRate: 1 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index bec478bbde..a36f22489e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -623,7 +623,7 @@ - LightReplacer - CrowbarBorg # Sunrise-Edit - ScrewdriverBorg # Sunrise-Edit - - SoapNT + - SoapBorg - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: light-replacer-module } @@ -638,7 +638,7 @@ - state: icon-mop - type: ItemBorgModule items: - - Bucket + - Bucket # Sunrise-Edit - BorgSprayBottle - HoloprojectorJanitorBorg # Sunrise-Edit - type: BorgModuleIcon @@ -656,7 +656,7 @@ - state: icon-mop-adv - type: ItemBorgModule items: - - BorgBucket + - BorgBucket # Sunrise-Edit - HoloprojectorJanitorBorg # Sunrise-Edit - SprayBottleSpaceCleanerBorg # Sunrise-Edit - BorgDropper @@ -748,7 +748,7 @@ - state: icon-chemist - type: ItemBorgModule items: - - HypoBorgMedical + - HypoBorgMedical # Sunrise-Edit - Syringe - BorgDropper - BorgBeaker @@ -1155,7 +1155,7 @@ parent: [ BaseXenoborgModuleScout, BaseProviderBorgModule, BaseXenoborgContraband ] id: XenoborgModuleSword name: sword xenoborg module - description: Module with an energy dagger. + description: Module with a kukri knife. components: - type: Sprite layers: @@ -1163,16 +1163,16 @@ - state: icon-xenoborg-sword - type: ItemBorgModule items: - - EnergyDaggerLoudBlue + - KukriKnife - JetpackXenoborg - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-sword-module } - type: entity parent: [ BaseXenoborgModuleScout, BaseProviderBorgModule, BaseXenoborgContraband ] - id: XenoborgModuleFastSword - name: fast sword xenoborg module - description: Module with a crusher dagger. + id: XenoborgModuleEnergySword + name: energy sword xenoborg module + description: Module with an energy dagger. components: - type: Sprite layers: @@ -1180,7 +1180,7 @@ - state: icon-xenoborg-sword2 - type: ItemBorgModule items: - - WeaponCrusherDagger + - EnergyDaggerLoudBlue - JetpackXenoborg - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-sword2-module } diff --git a/Resources/Prototypes/Entities/Objects/Specific/Salvage/scanner.yml b/Resources/Prototypes/Entities/Objects/Specific/Salvage/scanner.yml index d65c1e8bff..c9248553bc 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Salvage/scanner.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Salvage/scanner.yml @@ -3,7 +3,7 @@ parent: BaseItem name: mineral scanner description: A scanner that checks surrounding rock for useful minerals. It must be in your hand or pocket to work. - suffix: Unpowered + suffix: Always Powered components: - type: Sprite sprite: Objects/Specific/Mining/mineral_scanner.rsi @@ -36,7 +36,7 @@ - type: entity id: MineralScanner parent: [ MineralScannerUnpowered, PowerCellSlotMediumItem ] - suffix: Powered + suffix: "" components: - type: ToggleCellDraw - type: PowerCellDraw @@ -58,7 +58,7 @@ parent: MineralScannerUnpowered name: advanced mineral scanner description: A scanner that checks surrounding rock for useful minerals. It must be in your hand or pocket to work. This one has an extended range. - suffix: Unpowered + suffix: Always Powered components: - type: Sprite layers: @@ -75,7 +75,7 @@ - type: entity id: AdvancedMineralScanner parent: [ AdvancedMineralScannerUnpowered, PowerCellSlotMediumItem ] - suffix: Powered + suffix: "" components: - type: ToggleCellDraw - type: PowerCellDraw diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index 82072f5e61..4cdf5d7b8f 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -459,6 +459,14 @@ map: ["enum.SolutionContainerLayers.Fill"] visible: false - state: syringeproj + - type: SolutionContainerManager + solutions: + injector: + maxVol: 5 + - type: Injector + minTransferAmount: 1 + maxTransferAmount: 5 + transferAmount: 5 - type: SolutionContainerVisuals maxFillLevels: 3 fillBaseName: minisyringe @@ -474,7 +482,7 @@ solution: injector updateInterval: 2 - type: SolutionInjectOnEmbed - transferAmount: 2 + transferAmount: 1 solution: injector - type: SolutionContainerManager #BALANCE PR-START solutions: diff --git a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml index 7b33a4fb1a..08159ecc21 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml @@ -58,7 +58,7 @@ temperature: 293.15 tankLowPressure: 30.0 - type: Explosive - explosionType: Default + explosionType: MicroBomb maxIntensity: 20 - type: MeleeWeapon wideAnimationRotation: 45 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml index a9474cedea..27a6188584 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml @@ -11,7 +11,8 @@ - state: icon map: ["base"] - type: Item - sprite: Objects/Weapons/Bombs/hot_potato.rsi + sprite: Objects/Specific/Hydroponics/potato.rsi + heldPrefix: produce size: Small - type: AmbientSound enabled: false diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/spraynozzle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/spraynozzle.yml index 616a799aff..b6e48f701b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/spraynozzle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/spraynozzle.yml @@ -21,9 +21,18 @@ - FullAuto soundGunshot: path: /Audio/Weapons/Guns/Gunshots/water_spray.ogg + - type: Absorbent + pickupAmount: 35 + solutionName: tank + useAbsorberSolution: false + pickupSound: + path: /Audio/Effects/Fluids/vacuum-cleaner-fast.ogg - type: Appearance - type: ClothingSlotAmmoProvider + - type: SlotBasedConnectedContainer targetSlot: BACK - providerWhitelist: + containerWhitelist: tags: - NozzleBackTank + - type: UseDelay + delay: 1.0 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml index 66e380c8d4..ab78c00190 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml @@ -43,6 +43,8 @@ maxIntensity: 100 maxTileBreak: 1 tileBreakScale: 2 + - type: TileFrictionModifier + modifier: 0 - type: entity @@ -223,4 +225,131 @@ volume: 10 - !type:SpillBehavior solution: blood + - !type:SpawnEntitiesBehavior + spawn: + FoodMeatHuman: + min: 1 + max: 2 + - !type:ExplodeBehavior + +# Cow Meteor +- type: entity + parent: BaseMeteor + id: MeteorCow + name: Cosmic cow + description: Moo-ving at relativistic speeds! + suffix: Meteor + components: + - type: Sprite + state: cow_pixel + - type: Explosive + totalIntensity: 25 + - type: SolutionContainerManager + solutions: + milk: + maxVol: 500 + reagents: + - ReagentId: Milk + Quantity: 500 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 3000 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + path: /Audio/Animals/cow_moo.ogg + - !type:SpillBehavior + solution: milk + - !type:SpawnEntitiesBehavior + spawn: + FoodMeat: + min: 1 + max: 2 + FoodCheeseSlice: + min: 1 + max: 2 + - !type:ExplodeBehavior + +# Clown Meteor +- type: entity + parent: BaseMeteor + id: MeteorClown + name: Honksteroid + description: The final honkening! + suffix: Meteor + components: + - type: Sprite + state: clown_pixel + - type: Explosive + totalIntensity: 25 + - type: SolutionContainerManager + solutions: + laughter: + maxVol: 500 + reagents: + - ReagentId: Laughter + Quantity: 500 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 3000 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + path: /Audio/Items/bikehorn.ogg + - !type:SpillBehavior + solution: laughter + - !type:SpawnEntitiesBehavior + spawn: + FoodMeatClown: + min: 1 + max: 2 + TrashBananaPeel: + min: 1 + max: 4 + RubberChicken: + min: 0 + max: 1 + - !type:ExplodeBehavior + +# Potato Meteor +- type: entity + parent: BaseMeteor + id: MeteorPotato + name: Space potato + description: A starchy threat from the depths of the space. Contains 200% of your daily sodium intake! + components: + - type: Sprite + state: potato + - type: Explosive + totalIntensity: 25 + - type: SolutionContainerManager + solutions: + ketchup: + maxVol: 100 + reagents: + - ReagentId: Ketchup + Quantity: 100 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 3000 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:SpillBehavior + solution: ketchup + - !type:SpawnEntitiesBehavior + spawn: + FoodMealFries: + min: 1 + max: 5 - !type:ExplodeBehavior diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 4471096c8f..30f99f7f99 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -441,6 +441,45 @@ - type: ChangeTemperatureOnCollide heat: 100000 #This may be a bit underpowered, but in testing, 130000 was RIDICULOUS and killed in seconds. +- type: entity + parent: BaseBullet + id: BasiliskRay + name: basilisk ray + categories: [ HideSpawnMenu ] + components: + - type: FlyBySound + sound: + collection: EnergyMiss + params: + volume: 5 + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi + layers: + - state: ice + shader: unshaded + - type: Ammo + muzzleFlash: null + - type: Physics + - type: Fixtures + fixtures: + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + hard: false + mask: + - Opaque + fly-by: *flybyfixture + - type: Projectile + impactEffect: BulletImpactEffectDisabler + damage: + types: + Cold: 5 + - type: TimedDespawn + lifetime: 3 + - type: ChangeTemperatureOnCollide + heat: -50000 + - type: entity id: BulletKinetic name: kinetic bolt @@ -945,6 +984,17 @@ - type: Appearance - type: VaporVisuals +- type: entity + id: BulletHivebot + name: hivebot bullet + parent: BaseBullet + categories: [ HideSpawnMenu ] + components: + - type: Projectile + damage: + types: + Piercing: 10 + - type: entity id: BulletCannonBall name: cannonball diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml index 426eaa40ca..32e004a0b9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -199,7 +199,7 @@ gun_chamber: !type:ContainerSlot - type: MagazineVisuals magState: mag - steps: 1 + steps: 5 zeroVisible: true - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml index 7411e7de68..e064d84b45 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml @@ -186,7 +186,7 @@ - CartridgePistol - type: MagazineVisuals magState: mag - steps: 1 + steps: 5 zeroVisible: true - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml index 299eda5f51..4557cb3ea7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml @@ -193,6 +193,10 @@ - type: Clothing sprite: Objects/Weapons/Guns/Shotguns/pump.rsi - type: GunRequiresWield #remove when inaccuracy on spreads is fixed + - type: Gun + fireRate: 1 + - type: GunSpreadModifier + spread: 0.6 - type: Tag tags: - WeaponShotgunKammerer diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml index bb265857f0..a9726df013 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml @@ -61,6 +61,7 @@ components: - type: Sprite sprite: Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi + - type: GunRequiresWield - type: entity name: Hristov @@ -131,6 +132,7 @@ animation: WeaponArcThrust soundHit: path: /Audio/Weapons/bladeslice.ogg + - type: GunRequiresWield - type: entity name: flintlock pistol diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml index 66860ae98c..a8b3c9a88c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml @@ -1,11 +1,9 @@ - type: entity parent: [BaseWeaponEnergyTurret, ConstructibleMachine] id: WeaponEnergyTurretStation - name: sentry turret + name: security turret description: A high-tech autonomous weapons system designed to keep unauthorized personnel out of sensitive areas. components: - - # Physics - type: Fixtures fixtures: body: @@ -25,8 +23,6 @@ layer: - MachineLayer hard: false - - # Sprites and appearance - type: Sprite sprite: Objects/Weapons/Guns/Turrets/sentry_turret.rsi drawdepth: HighFloorObjects @@ -70,20 +66,14 @@ enum.WiresVisualLayers.MaintenancePanel: True: { visible: false } False: { visible: true } - - # HTN - type: HTN enabled: false - - # Faction / control - type: StationAiWhitelist - type: NpcFactionMember factions: - AllHostile - type: AccessReader access: [["Security"]] - - # Weapon systems - type: ProjectileBatteryAmmoProvider proto: BulletEnergyTurretDisabler fireCost: 100 @@ -98,8 +88,6 @@ - Security - Borg - BasicSilicon - - # Defenses / destruction - type: DeployableTurret retractedDamageModifierSetId: Metallic deployedDamageModifierSetId: FlimsyMetallic @@ -130,8 +118,6 @@ node: machineFrame - !type:DoActsBehavior acts: ["Destruction"] - - # Device network - type: DeviceNetwork deviceNetId: Wired receiveFrequencyId: TurretControl @@ -141,8 +127,6 @@ examinableAddress: true - type: DeviceNetworkRequiresPower - type: WiredNetworkConnection - - # Wires - type: UserInterface interfaces: enum.WiresUiKey.Key: @@ -156,8 +140,6 @@ locked: true unlockOnClick: false - type: LockedWiresPanel - - # General properties - type: Machine board: WeaponEnergyTurretStationMachineCircuitboard - type: UseDelay @@ -170,7 +152,7 @@ description: A high-tech autonomous weapons system under the direct control of a local artifical intelligence. components: - type: AccessReader - access: [["StationAi"]] + access: [["StationAi"], ["ResearchDirector"]] - type: TurretTargetSettings exemptAccessLevels: - Borg @@ -180,3 +162,4 @@ - type: DeviceNetwork receiveFrequencyId: TurretControlAI transmitFrequencyId: TurretAI + diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml index 9ba60192f6..daabb661cf 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml @@ -98,6 +98,8 @@ description: An early design of the proto-kinetic accelerator. components: - type: Sharp + - type: Execution + doAfterDuration: 4.0 - type: UnpoweredFlashlight - type: PointLight color: "#ffeead" diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index eb13df02ad..997d3f6e24 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -453,19 +453,51 @@ parent: [ BaseEngineeringContraband, SmokeGrenade ] id: MetalFoamGrenade name: metal foam grenade - description: An emergency tool used for patching breaches with special quick-set metal foam. Almost as good as real walls. + description: An emergency tool used for patching hull breaches with special quick-set metal foam. Almost as good as real floors! components: - type: Sprite sprite: Objects/Weapons/Grenades/metalfoam.rsi - type: OnUseTimerTrigger - delay: 1.5 + delay: 5 - type: SmokeOnTrigger - duration: 2 - spreadAmount: 5 + duration: 10 + spreadAmount: 20 smokePrototype: AluminiumMetalFoam - type: StaticPrice price: 350 +- type: entity + parent: [ BaseEngineeringContraband, GrenadeBase ] # Prevent inheriting DeleteOnTrigger from SmokeGrenade + id: AirGrenade + name: air grenade + description: A special solid state chemical grenade used for quickly releasing standard air into a spaced area. Fills up to 30 tiles! + components: + - type: Sprite + sprite: Objects/Weapons/Grenades/airboom.rsi + - type: SoundOnTrigger + sound: /Audio/Items/smoke_grenade_smoke.ogg + - type: TimerTriggerVisuals + primingSound: + path: /Audio/Items/smoke_grenade_prime.ogg + - type: OnUseTimerTrigger + delay: 3 + - type: ReleaseGasOnTrigger + removeFraction: 0.25 + air: + volume: 1000 + moles: # Target is 3117.84 mols total for filling 30 tiles (goal is 101.325 kPa @ 20C) + - 654.7464 # oxygen + - 2463.0936 # nitrogen + temperature: 293.15 + - type: StaticPrice + price: 350 + - type: GenericVisualizer + visuals: + enum.ReleaseGasOnTriggerVisuals.Key: + enabled: + True: { state: active } + False: { state: spent } + # Non-explosive "dummy" grenades to use as a distraction. - type: entity diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index a67dd19e95..c55dcdd229 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -159,9 +159,6 @@ - type: Gravity enabled: true inherent: true - - type: IFF - flags: HideLabel - color: "#d67e27" protos: - VGRoid @@ -197,6 +194,27 @@ components: - type: SalvageMagnetData +- type: entity + id: BaseStationSalvageJobs + abstract: true + components: + - type: SalvageJobsData + rankThresholds: + 0: + title: salvage-job-rank-title-0 + bountyGroup: SalvageJobTier1 + 3: + title: salvage-job-rank-title-1 + bountyGroup: SalvageJobTier2 + unlockedMarket: SalvageJobReward2 + 6: + title: salvage-job-rank-title-2 + bountyGroup: SalvageJobTier3 + unlockedMarket: SalvageJobReward3 + maxRank: + title: salvage-job-rank-title-MAX + unlockedMarket: SalvageJobRewardMAX + - type: entity id: BaseStationSiliconLawCrewsimov abstract: true diff --git a/Resources/Prototypes/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Entities/Stations/nanotrasen.yml index 291f1d8df3..eaa2a4f8bc 100644 --- a/Resources/Prototypes/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Entities/Stations/nanotrasen.yml @@ -24,6 +24,7 @@ - BaseStationAlertLevels - BaseStationMagnet - BaseStationExpeditions + - BaseStationSalvageJobs - BaseStationSiliconLawCrewsimov - BaseStationAllEventsEligible - BaseStationNanotrasen diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml index 31e233625a..e9797ee24a 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml @@ -32,6 +32,8 @@ interfaces: enum.ReagentDispenserUiKey.Key: type: ReagentDispenserBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: Anchorable - type: Pullable - type: Damageable @@ -54,10 +56,11 @@ - !type:PlaySoundBehavior sound: collection: MetalGlassBreak + - type: Storage + maxItemSize: Normal + grid: + - 0,0,19,5 - type: ReagentDispenser - storageWhitelist: - tags: - - Bottle beakerSlot: whitelistFailPopup: reagent-dispenser-component-cannot-put-entity-message whitelist: @@ -70,6 +73,7 @@ machine_board: !type:Container machine_parts: !type:Container beakerSlot: !type:ContainerSlot + storagebase: !type:Container - type: StaticPrice price: 1000 - type: WiresPanel diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml b/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml index b0f238c303..ea394c3c1b 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml @@ -10,11 +10,25 @@ sprite: Structures/smalldispensers.rsi drawdepth: SmallObjects state: booze - - type: ReagentDispenser - storageWhitelist: + - type: Storage + openOnActivate: false + whitelist: tags: - DrinkBottle - pack: BoozeDispenserInventory + - type: StorageFill + contents: + - id: DrinkAleBottleFullGrowler + - id: DrinkBeerGrowler + - id: DrinkCoffeeLiqueurBottleFull + - id: DrinkCognacBottleFull + - id: DrinkGinBottleFull + - id: DrinkMeadJug + - id: DrinkRumBottleFull + - id: DrinkTequilaBottleFull + - id: DrinkVermouthBottleFull + - id: DrinkVodkaBottleFull + - id: DrinkWhiskeyBottleFull + - id: DrinkWineBottleFull - type: Transform noRot: false - type: Machine @@ -31,8 +45,7 @@ suffix: Empty parent: BoozeDispenser components: - - type: ReagentDispenser - storageWhitelist: + - type: Storage + whitelist: tags: - DrinkBottle - pack: EmptyInventory diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml index cf51ca9b1f..36d9a41195 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml @@ -1,7 +1,7 @@ - type: entity - id: ChemDispenser + id: ChemDispenserEmpty name: chemical dispenser - suffix: Filled + suffix: Empty parent: ReagentDispenserBase description: An industrial grade chemical dispenser. components: @@ -9,11 +9,11 @@ sprite: Structures/dispensers.rsi state: industrial-working snapCardinals: true - - type: ReagentDispenser - storageWhitelist: + - type: Storage + openOnActivate: false + whitelist: tags: - ChemDispensable - pack: ChemDispenserStandardInventory - type: ApcPowerReceiver - type: ExtensionCableReceiver - type: Destructible @@ -50,10 +50,31 @@ - MachineLayer - type: entity - id: ChemDispenserEmpty + id: ChemDispenser name: chemical dispenser - suffix: Empty - parent: ChemDispenser + suffix: Filled + parent: ChemDispenserEmpty components: - type: ReagentDispenser - pack: EmptyInventory + - type: StorageFill + contents: + - id: JugAluminium + - id: JugCarbon + - id: JugChlorine + - id: JugCopper + - id: JugEthanol + - id: JugFluorine + - id: JugSugar + - id: JugHydrogen + - id: JugIodine + - id: JugIron + - id: JugLithium + - id: JugMercury + - id: JugNitrogen + - id: JugOxygen + - id: JugPhosphorus + - id: JugPotassium + - id: JugRadium + - id: JugSilicon + - id: JugSodium + - id: JugSulfur diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml b/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml index f44745cdd2..75a1a485aa 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml @@ -10,11 +10,32 @@ sprite: Structures/smalldispensers.rsi drawdepth: SmallObjects state: soda - - type: ReagentDispenser - storageWhitelist: + - type: Storage + openOnActivate: false + whitelist: tags: - DrinkBottle - pack: SodaDispenserInventory + - type: StorageFill + contents: + - id: DrinkCoconutWaterJug + - id: DrinkCoffeeJug + - id: DrinkColaBottleFull + - id: DrinkCreamCartonXL + - id: DrinkDrGibbJug + - id: DrinkEnergyDrinkJug + - id: DrinkGreenTeaJug + - id: DrinkIceJug + - id: DrinkJuiceLimeCartonXL + - id: DrinkJuiceOrangeCartonXL + - id: DrinkLemonLimeJug + - id: DrinkRootBeerJug + - id: DrinkSodaWaterBottleFull + - id: DrinkSpaceMountainWindBottleFull + - id: DrinkSpaceUpBottleFull + - id: DrinkSugarJug + - id: DrinkTeaJug + - id: DrinkTonicWaterBottleFull + - id: DrinkWaterMelonJuiceJug - type: Transform noRot: false - type: Machine @@ -28,9 +49,3 @@ parent: SodaDispenser id: SodaDispenserEmpty suffix: Empty - components: - - type: ReagentDispenser - storageWhitelist: - tags: - - DrinkBottle - pack: EmptyInventory diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml index 1dab0d573f..84dc99cc17 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml @@ -11,6 +11,8 @@ layers: - state: closed map: ["enum.DoorVisualLayers.Base"] + - state: welded + map: ["enum.WeldableLayers.BaseWelded"] - type: Door closeTimeOne: 0.4 closeTimeTwo: 0.4 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml index f322de7283..7becad94bf 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml @@ -14,6 +14,8 @@ layers: - state: closed map: ["enum.DoorVisualLayers.Base"] + - state: welded + map: ["enum.WeldableLayers.BaseWelded"] - type: AnimationPlayer - type: Physics - type: Fixtures @@ -140,6 +142,8 @@ layers: - state: closed map: ["enum.DoorVisualLayers.Base"] + - state: welded + map: ["enum.WeldableLayers.BaseWelded"] - type: Occluder - type: Construction graph: Shutters @@ -176,6 +180,8 @@ layers: - state: closed map: ["enum.DoorVisualLayers.Base"] + - state: welded + map: ["enum.WeldableLayers.BaseWelded"] - type: Construction graph: Shutters node: ShuttersWindow diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index c3c6cf6b45..d4fa4159a6 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -800,6 +800,7 @@ canShuttle: false announceVoice: Sentrybot global: true #announce to everyone they're about to fuck shit up + announceSentBy: false # The title already says who they are. sound: /Audio/Announcements/war.ogg - type: Computer board: SyndicateCommsComputerCircuitboard @@ -833,6 +834,7 @@ color: "#ff00ff" canShuttle: false global: true #announce to everyone they're about to fuck shit up + announceSentBy: false sound: /Audio/Announcements/war.ogg - type: Computer board: WizardCommsComputerCircuitboard @@ -1020,6 +1022,7 @@ account: Engineering announcementChannel: Engineering removeLimitAccess: [ "ChiefEngineer" ] + slipPrinter: true - type: ActiveRadio channels: - Engineering @@ -1052,6 +1055,7 @@ account: Medical announcementChannel: Medical removeLimitAccess: [ "ChiefMedicalOfficer" ] + slipPrinter: true - type: ActiveRadio channels: - Medical @@ -1084,6 +1088,7 @@ account: Science announcementChannel: Science removeLimitAccess: [ "ResearchDirector" ] + slipPrinter: true - type: ActiveRadio channels: - Science @@ -1116,6 +1121,7 @@ account: Security announcementChannel: Security removeLimitAccess: [ "HeadOfSecurity" ] + slipPrinter: true - type: ActiveRadio channels: - Security @@ -1148,6 +1154,7 @@ account: Service announcementChannel: Service removeLimitAccess: [ "HeadOfPersonnel" ] + slipPrinter: true - type: ActiveRadio channels: - Service @@ -1288,6 +1295,42 @@ guides: - Cloning +- type: entity + parent: BaseComputerAiAccess + id: ComputerSalvageJobBoard + name: salvage job board + description: Console for accessing salvage jobs, if you're tough enough. + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: salvjob # givin em a salvjob like hawk tuah + - map: ["computerLayerKeys"] + state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open + - type: SalvageJobBoardConsole + - type: ActivatableUI + key: enum.SalvageJobBoardUiKey.Key + - type: UserInterface + interfaces: + enum.SalvageJobBoardUiKey.Key: + type: SalvageJobBoardBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface + - type: ActiveRadio + channels: [ Supply ] + - type: Computer + board: SalvageJobBoardComputerCircuitboard + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#b89f25" + - type: entity id: ComputerSalvageExpedition parent: BaseComputerAiAccess diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/chemistry_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/chemistry_machines.yml index 65eaf04d78..9a237937c5 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/chemistry_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/chemistry_machines.yml @@ -54,6 +54,7 @@ - Electrolysis - type: Sprite sprite: Structures/Machines/Medical/electrolysis.rsi + noRot: true offset: "0.0,0.4" layers: - state: base @@ -93,6 +94,7 @@ - Centrifuge - type: Sprite sprite: Structures/Machines/Medical/centrifuge.rsi + noRot: true offset: "0.0,0.4" layers: - state: base diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml index 00b60c56ba..bdfbc39678 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml @@ -30,7 +30,7 @@ fix1: shape: !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.90" + bounds: "-0.5,-0.5,0.5,0.5" density: 200 mask: - MachineMask diff --git a/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml b/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml index 64ad3a30da..369f068149 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml @@ -1,14 +1,20 @@ -- type: entity +- type: entity id: CrewMonitoringServer - parent: BaseMachinePowered + parent: [ BaseMachinePowered, ConstructibleMachine ] name: crew monitoring server description: Receives and relays the status of all active suit sensors on the station. components: - type: Sprite sprite: Structures/Machines/server.rsi + snapCardinals: true layers: - - state: server + - state: server-off + - state: server-on + visible: false + map: [ "enum.PowerDeviceVisualLayers.Powered" ] - state: variant-crew + - state: server_o + map: ["enum.WiresVisualLayers.MaintenancePanel"] - type: Construction graph: Machine node: machine @@ -34,6 +40,8 @@ - type: ApcPowerReceiver powerLoad: 200 - type: ExtensionCableReceiver + - type: WiresPanel + - type: WiresVisuals - type: Destructible thresholds: - trigger: @@ -56,9 +64,20 @@ SheetSteel1: min: 1 max: 2 + - type: Appearance + - type: GenericVisualizer + visuals: + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + True: {visible: true} + False: {visible: false} - type: AmbientOnPowered - type: AmbientSound volume: -9 range: 5 + enabled: false sound: path: /Audio/Ambience/Objects/server_fans.ogg + - type: GuideHelp + guides: + - Medical diff --git a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml index bce31a6fff..ba1a67b7f5 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml @@ -48,6 +48,9 @@ whitelist: components: - FaxableObject #used to be PaperComponent - brainfood1183 + blacklist: + components: + - CargoSlip - type: GenericVisualizer visuals: enum.PowerDeviceVisuals.Powered: diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 2fdbb353f5..cd29002d4b 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -552,6 +552,7 @@ - Sheet - RawMaterial - Ingot + - type: OreSiloClient - type: entity id: Biogenerator @@ -714,3 +715,4 @@ - Wooden - RawMaterial - Plastic + - type: OreSiloClient diff --git a/Resources/Prototypes/Entities/Structures/Machines/research.yml b/Resources/Prototypes/Entities/Structures/Machines/research.yml index b10689335c..da9f4018b1 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/research.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/research.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity id: ResearchAndDevelopmentServer parent: [ BaseMachinePowered, ConstructibleMachine ] name: R&D server @@ -6,11 +6,22 @@ components: - type: Sprite sprite: Structures/Machines/server.rsi + snapCardinals: true layers: - - state: server + - state: server-off + - state: server-on + visible: false + map: ["enum.PowerDeviceVisualLayers.Powered"] - state: variant-research - state: server_o map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: PointLight + enabled: false + castShadows: false + radius: 1.5 + energy: 1.6 + color: "#b211b2" + - type: LitOnPowered - type: ResearchServer - type: TechnologyDatabase supportedDisciplines: @@ -49,10 +60,17 @@ min: 1 max: 2 - type: Appearance + - type: GenericVisualizer + visuals: + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + True: {visible: true} + False: {visible: false} - type: AmbientOnPowered - type: AmbientSound volume: -9 range: 5 + enabled: false sound: path: /Audio/Ambience/Objects/server_fans.ogg - type: GuideHelp diff --git a/Resources/Prototypes/Entities/Structures/Machines/silo.yml b/Resources/Prototypes/Entities/Structures/Machines/silo.yml index 6bc08c9004..ccd2bb4658 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/silo.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/silo.yml @@ -22,6 +22,7 @@ whitelist: tags: - Sheet + - RawMaterial - Ingot - type: ActivatableUI key: enum.OreSiloUiKey.Key diff --git a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml index 28331a683a..975d893c0f 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml @@ -21,13 +21,28 @@ sprite: Structures/Machines/server.rsi snapCardinals: true layers: - - state: server + - state: server-off + - state: server-on + visible: false + map: ["enum.PowerDeviceVisualLayers.Powered"] + - state: server_o + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: GenericVisualizer + visuals: + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + True: { visible: true } + False: { visible: false } + - type: Appearance - type: AmbientOnPowered - type: AmbientSound volume: -9 range: 5 + enabled: false sound: path: /Audio/Ambience/Objects/server_fans.ogg + - type: WiresVisuals + - type: WiresPanel - type: entity parent: SurveillanceCameraRouterBase @@ -149,13 +164,28 @@ - type: Sprite sprite: Structures/Machines/server.rsi layers: - - state: server + - state: server-off + - state: server-on + visible: false + map: ["enum.PowerDeviceVisualLayers.Powered"] + - state: server_o + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: GenericVisualizer + visuals: + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + True: { visible: true } + False: { visible: false } + - type: Appearance - type: AmbientOnPowered - type: AmbientSound volume: -9 range: 5 + enabled: false sound: path: /Audio/Ambience/Objects/server_fans.ogg + - type: WiresVisuals + - type: WiresPanel - type: entity parent: SurveillanceCameraWirelessRouterBase diff --git a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml index 1c14e36da9..876e08acd2 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml @@ -8,23 +8,138 @@ sprite: Structures/Machines/telecomms.rsi snapCardinals: true layers: - - state: icon - - state: unlit + - state: telecom-nopower + - state: telecom-stripe + - state: telecom-on shader: unshaded - map: ["enum.PowerDeviceVisualLayers.Powered"] - - state: panel + visible: false + map: ["telecom-on"] + - state: variant-nokey + map: ["variant-nokey"] + - state: variant-default + map: ["variant-default"] + - state: variant-common + map: ["variant-common"] + - state: variant-cargo + map: ["variant-cargo"] + - state: variant-engineering + map: ["variant-engineering"] + - state: variant-medical + map: ["variant-medical"] + - state: variant-science + map: ["variant-science"] + - state: variant-sec + map: ["variant-sec"] + - state: variant-service + map: ["variant-service"] + - state: variant-command + map: ["variant-command"] + - state: variant-multiple + map: ["variant-multiple"] + - state: telecom-open map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: ItemMapper + sprite: Structures/Machines/telecomms.rsi + mapLayers: + variant-nokey: + whitelist: + components: + - EncryptionKey #Shown when no keys are present + minCount: 0 + variant-default: + whitelist: + components: + - EncryptionKey + minCount: 1 + variant-common: + whitelist: + tags: + - EncryptionCommon + variant-cargo: + whitelist: + tags: + - EncryptionCargo + variant-engineering: + whitelist: + tags: + - EncryptionEngineering + variant-medical: + whitelist: + tags: + - EncryptionMedical + variant-science: + whitelist: + tags: + - EncryptionScience + variant-sec: + whitelist: + tags: + - EncryptionSecurity + variant-service: + whitelist: + tags: + - EncryptionService + variant-command: + whitelist: + tags: + - EncryptionCommand + variant-multiple: + whitelist: + components: + - EncryptionKey #Shown when multiple keys are present + minCount: 2 + - type: PointLight + enabled: false + castShadows: false + radius: 1.5 + energy: 1.6 + color: "#39b8ee" + - type: LitOnPowered - type: GenericVisualizer visuals: enum.PowerDeviceVisuals.Powered: - enum.PowerDeviceVisualLayers.Powered: + telecom-on: True: { visible: true } False: { visible: false } + variant-common: + True: { shader: unshaded } + False: { shader: shaded } + variant-cargo: + True: { shader: unshaded } + False: { shader: shaded } + variant-engineering: + True: { shader: unshaded } + False: { shader: shaded } + variant-medical: + True: { shader: unshaded } + False: { shader: shaded } + variant-science: + True: { shader: unshaded } + False: { shader: shaded } + variant-sec: + True: { shader: unshaded } + False: { shader: shaded } + variant-service: + True: { shader: unshaded } + False: { shader: shaded } + variant-command: + True: { shader: unshaded } + False: { shader: shaded } + variant-default: + True: { shader: unshaded } + False: { shader: shaded } + variant-multiple: + True: { shader: unshaded } + False: { shader: shaded } + variant-nokey: + True: { shader: unshaded } + False: { shader: shaded } - type: Appearance - type: AmbientOnPowered - type: AmbientSound volume: -9 range: 5 + enabled: false sound: path: /Audio/Ambience/Objects/server_fans.ogg - type: WiresVisuals diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml index d6d5454384..839247fc3f 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml @@ -151,6 +151,43 @@ containers: - DisposalTagger +- type: entity + id: DisposalSignaller + parent: DisposalPipeBase + name: disposal signaller + description: A pipe that emits a signal when in item goes through it. + components: + - type: Sprite + layers: + - map: [ "pipe" ] + state: conpipe-signaller + - type: DisposalTube + containerId: DisposalTransit + - type: DisposalTransit + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: BasicDevice + - type: DeviceLinkSource + ports: + - ItemDetected + - type: WirelessNetworkConnection + range: 200 + - type: DisposalSignaller + - type: ContainerContainer + containers: + DisposalTransit: !type:Container + - type: GenericVisualizer + visuals: + enum.DisposalTubeVisuals.VisualState: + pipe: + Free: { state: conpipe-signaller } + Anchored: { state: pipe-signaller } + - type: Construction + graph: DisposalPipe + node: pipe + containers: + - DisposalTransit + - type: entity id: DisposalTrunk parent: DisposalPipeBase @@ -356,6 +393,7 @@ mask: - SubfloorMask - type: Construction + graph: DisposalPipe node: junctionflipped containers: - DisposalJunction @@ -400,6 +438,48 @@ containers: - DisposalJunction +- type: entity + id: DisposalXJunction + parent: DisposalPipeBase + name: disposal x-junction + description: A four-way junction. The arrow indicates where items exit. + components: + - type: Sprite + layers: + - map: [ "pipe" ] + state: conpipe-x + visible: true + - type: DisposalTube + containerId: DisposalJunction + - type: DisposalJunction + degrees: + - 0 + - -90 + - 180 + - 90 + - type: ContainerContainer + containers: + DisposalJunction: !type:Container + - type: GenericVisualizer + visuals: + enum.DisposalTubeVisuals.VisualState: + pipe: + Free: { state: conpipe-x } + Anchored: { state: pipe-x } + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - SubfloorMask + - type: Construction + graph: DisposalPipe + node: xJunction + containers: + - DisposalJunction + - type: entity id: DisposalBend parent: DisposalPipeBase diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml index 6b8de781b8..eb70dcfacf 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml @@ -57,7 +57,7 @@ sprite: Structures/Power/Generation/Singularity/collector.rsi state: static - type: RadiationCollector - chargeModifier: 7500 + chargeModifier: 15000 radiationReactiveGases: - reactantPrototype: Plasma powerGenerationEfficiency: 1 diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml index fbb1d8c1b0..741132919b 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml @@ -56,19 +56,19 @@ sprite: Structures/Power/Generation/Tesla/coil.rsi state: coil - type: Battery - maxCharge: 1000000 + maxCharge: 5000000 startingCharge: 0 - type: BatteryDischarger - type: TeslaCoil - chargeFromLightning: 2000000 + chargeFromLightning: 5000000 - type: LightningTarget priority: 4 hitProbability: 0.5 lightningResistance: 10 lightningExplode: false - type: PowerNetworkBattery - maxSupply: 1000000 - supplyRampTolerance: 1000000 + maxSupply: 350000 + supplyRampTolerance: 350000 - type: Anchorable - type: Rotatable - type: Pullable diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml index e6e4b6b72b..debc07b6eb 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml @@ -62,6 +62,7 @@ # It fires processing on behalf of its connected circulators. - type: AtmosDevice - type: TegGenerator + thermalEfficiency: 0.1 - type: DeviceNetwork deviceNetId: AtmosDevices diff --git a/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml b/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml index 30c9ca3d38..38ec164551 100644 --- a/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml +++ b/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml @@ -46,7 +46,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 100 # Considering we need a lot of thrusters didn't want to make an individual one too tanky + damage: 300 # Changed 100->300 because impact damage is real behaviors: - !type:DoActsBehavior acts: ["Destruction"] @@ -72,13 +72,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 300 + damage: 600 behaviors: - !type:DoActsBehavior acts: ["Destruction"] - trigger: !type:DamageTrigger - damage: 100 + damage: 300 behaviors: - !type:DoActsBehavior acts: ["Destruction"] diff --git a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml index aa507c421d..9b409dcaed 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml @@ -109,6 +109,7 @@ volume: -3 # Sunrise added end name: comp-gas-canister-slot-name-gas-tank + ejectOnBreak: true whitelist: components: - GasTank @@ -132,7 +133,7 @@ - state: yellow - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: # List of gasses for easy reference - 0 # oxygen - 0 # nitrogen @@ -181,10 +182,10 @@ - state: grey - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: - - 393.0592071 # oxygen 21% - - 1478.6513029 # nitrogen 79% + - 581.56 # oxygen 21% + - 2187.79 # nitrogen 79% temperature: 293.15 - type: Destructible thresholds: @@ -221,9 +222,9 @@ - state: blue - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: - - 1871.71051 # oxygen + - 2769.36 # oxygen temperature: 293.15 - type: Destructible thresholds: @@ -257,7 +258,7 @@ components: - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: - 18710.71051 # oxygen temperature: 72 @@ -275,10 +276,10 @@ - state: red - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: - 0 # oxygen - - 1871.71051 # nitrogen + - 2769.36 # nitrogen temperature: 293.15 - type: Destructible thresholds: @@ -312,7 +313,7 @@ components: - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: - 0 # oxygen - 18710.71051 # nitrogen @@ -331,11 +332,11 @@ - state: black - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: - 0 # oxygen - 0 # nitrogen - - 1871.71051 # CO2 + - 2769.36 # CO2 temperature: 293.15 - type: Destructible thresholds: @@ -371,7 +372,7 @@ components: - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: - 0 # oxygen - 0 # nitrogen @@ -391,12 +392,12 @@ - state: orange - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: - 0 # oxygen - 0 # nitrogen - 0 # carbon dioxide - - 1871.71051 # plasma + - 2769.36 # plasma temperature: 293.15 - type: Destructible thresholds: @@ -435,13 +436,13 @@ - state: green - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: - 0 # oxygen - 0 # nitrogen - 0 # CO2 - 0 # Plasma - - 1871.71051 # Tritium + - 2769.36 # Tritium temperature: 293.15 - type: Destructible thresholds: @@ -480,14 +481,14 @@ - state: water_vapor - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: - 0 # oxygen - 0 # nitrogen - 0 # CO2 - 0 # Plasma - 0 # Tritium - - 1871.71051 # Water vapor + - 2769.36 # Water vapor temperature: 293.15 - type: Destructible thresholds: @@ -524,7 +525,7 @@ - state: greenys - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: - 0 # oxygen - 0 # nitrogen @@ -532,7 +533,7 @@ - 0 # Plasma - 0 # Tritium - 0 # Water vapor - - 1871.71051 # Ammonia + - 2769.36 # Ammonia temperature: 293.15 - type: Destructible thresholds: @@ -571,7 +572,7 @@ - state: redws - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: - 0 # oxygen - 0 # nitrogen @@ -580,7 +581,7 @@ - 0 # Tritium - 0 # Water vapor - 0 # Ammonia - - 1871.71051 # N2O + - 2769.36 # N2O temperature: 293.15 - type: Destructible thresholds: @@ -619,7 +620,7 @@ - state: frezon - type: GasCanister gasMixture: - volume: 1000 + volume: 1500 moles: - 0 # oxygen - 0 # nitrogen @@ -629,7 +630,7 @@ - 0 # Water vapor - 0 # Ammonia - 0 # N2O - - 1871.71051 # Frezon + - 2769.36 # Frezon temperature: 293.15 - type: Destructible thresholds: diff --git a/Resources/Prototypes/Entities/Structures/Storage/barrels.yml b/Resources/Prototypes/Entities/Structures/Storage/barrels.yml new file mode 100644 index 0000000000..cbc71babe0 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Storage/barrels.yml @@ -0,0 +1,233 @@ +- type: entity + parent: [ StorageTank ] + id: BaseBarrelChem + abstract: true + name: chemical barrel + description: A small metal drum. How tropical. + components: + - type: Sprite + sprite: Structures/Storage/barrels.rsi + state: metalbarrel + noRot: true + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.18,-0.48,0.18,0.28" + density: 200 + mask: + - MachineMask + layer: + - MachineLayer + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 25 + behaviors: + - !type:SpillBehavior + solution: tank + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:DoActsBehavior + acts: ["Destruction"] + - type: SolutionContainerManager + solutions: + tank: + maxVol: 500 + - type: PhysicalComposition + materialComposition: + Steel: 3000 # 30 sheets, 1 stack + - type: ExaminableSolution + solution: tank + - type: StaticPrice + price: 500 + +- type: entity + parent: BaseBarrelChem + id: BaseBarrelChemRadioactive + abstract: true + name: radioactive barrel + description: It seems to be leaking a bit. I don't think you'd want to be around this for long. + components: + - type: Sprite + state: radbarrel + - type: RadiationSource + intensity: 1.0 + slope: 0.25 + +- type: entityTable + id: RandomChemicalBarrel + table: !type:GroupSelector + children: + - id: BarrelChemFilledIodine + - id: BarrelChemFilledFluorine + - id: BarrelChemFilledChlorine + - id: BarrelChemFilledEthanol + - id: BarrelChemFilledPhosphorus + - id: BarrelChemFilledSilicon + - id: BarrelChemFilledMercury + - id: BarrelChemFilledLube # oiled up... + weight: 0.1 + +- type: entityTable + id: RandomChemicalBarrelRadioactive + table: !type:GroupSelector + children: + - id: BaseBarrelChemRadioactiveEmpty + weight: 2 + - id: BaseBarrelChemRadioactiveFilledRadium + - id: BaseBarrelChemRadioactiveFilledUranium + +- type: entity + parent: BaseBarrelChem + id: BarrelChemEmpty + suffix: Empty + +- type: entity + parent: BaseBarrelChem + id: BarrelChemFilledIodine + suffix: Iodine + components: + - type: SolutionContainerManager + solutions: + tank: + maxVol: 500 + reagents: + - ReagentId: Iodine + Quantity: 500 + +- type: entity + parent: BaseBarrelChem + id: BarrelChemFilledFluorine + suffix: Fluorine + components: + - type: SolutionContainerManager + solutions: + tank: + maxVol: 500 + reagents: + - ReagentId: Fluorine + Quantity: 500 + +- type: entity + parent: BaseBarrelChem + id: BarrelChemFilledChlorine + suffix: Chlorine + components: + - type: SolutionContainerManager + solutions: + tank: + maxVol: 500 + reagents: + - ReagentId: Chlorine + Quantity: 500 + +- type: entity + parent: BaseBarrelChem + id: BarrelChemFilledEthanol + suffix: Ethanol + components: + - type: SolutionContainerManager + solutions: + tank: + maxVol: 500 + reagents: + - ReagentId: Ethanol + Quantity: 500 + +- type: entity + parent: BaseBarrelChem + id: BarrelChemFilledPhosphorus + suffix: Phosphorus + components: + - type: SolutionContainerManager + solutions: + tank: + maxVol: 500 + reagents: + - ReagentId: Phosphorus + Quantity: 500 + +- type: entity + parent: BaseBarrelChem + id: BarrelChemFilledMercury + suffix: Mercury + components: + - type: SolutionContainerManager + solutions: + tank: + maxVol: 500 + reagents: + - ReagentId: Mercury + Quantity: 500 + +- type: entity + parent: BaseBarrelChem + id: BarrelChemFilledSilicon + suffix: Silicon + components: + - type: Sprite + state: silicatebarrel + - type: SolutionContainerManager + solutions: + tank: + maxVol: 500 + reagents: + - ReagentId: Silicon + Quantity: 500 + +- type: entity + parent: BaseBarrelChem + id: BarrelChemFilledLube + suffix: Lube + description: Slippery... + components: + - type: Sprite + state: silicatebarrel + - type: SolutionContainerManager + solutions: + tank: + maxVol: 500 + reagents: + - ReagentId: SpaceLube + Quantity: 500 + +- type: entity + parent: BaseBarrelChemRadioactive + id: BaseBarrelChemRadioactiveEmpty + suffix: Empty + +- type: entity + parent: BaseBarrelChemRadioactive + id: BaseBarrelChemRadioactiveFilledRadium + suffix: Radium + components: + - type: SolutionContainerManager + solutions: + tank: + maxVol: 500 + reagents: + - ReagentId: Radium + Quantity: 500 + +- type: entity + parent: BaseBarrelChemRadioactive + id: BaseBarrelChemRadioactiveFilledUranium + suffix: Uranium + components: + - type: SolutionContainerManager + solutions: + tank: + maxVol: 500 + reagents: + - ReagentId: Uranium + Quantity: 500 diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/atmos_plaque.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/atmos_plaque.yml index 3f6dd3723d..08e0d4fb75 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/atmos_plaque.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/atmos_plaque.yml @@ -1,28 +1,60 @@ - type: entity - parent: BaseSign + parent: MarkerBase id: PlaqueAtmos - name: atmos plaque + name: atmos plaque spawner + suffix: Spawner components: - - type: WallMount - - type: Physics - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.3,-0.3,0.3,0.3" - layer: - - MidImpassable - type: Sprite - drawdepth: WallMountedItems layers: - - state: atmosplaque - map: ["plaque"] - - type: Appearance - - type: GenericVisualizer - visuals: - enum.AtmosPlaqueVisuals.State: - plaque: - zumosplaque: { state: zumosplaque } - atmosplaque: { state: atmosplaque } - - type: AtmosPlaque + - state: green + - sprite: Structures/Wallmounts/signs.rsi + state: atmosplaque + - type: EntityTableSpawner + table: !type:GroupSelector + children: + - id: PlaqueAtmosZUM + weight: 1 + - id: PlaqueAtmosFEA + weight: 9 + - id: PlaqueAtmosZAS + weight: 45 + - id: PlaqueAtmosLINDA + weight: 45 + offset: 0.0 + +# individual plaques aren't placeable. you will not defy the randomness. + +- type: entity + parent: BaseSign + id: PlaqueAtmosFEA + name: FEA Atmospherics Division plaque + description: This plaque commemorates the fall of the Atmos FEA division. For all the charred, dizzy, and brittle men who have died in its hands. + categories: [ HideSpawnMenu ] + components: + - type: Sprite + state: atmosplaque + +- type: entity + parent: PlaqueAtmosFEA + id: PlaqueAtmosLINDA + name: LINDA Atmospherics Division plaque + description: This plaque commemorates the fall of the Atmos LINDA division. For all the charred, dizzy, and brittle men who have died in its hands. + categories: [ HideSpawnMenu ] + +- type: entity + parent: PlaqueAtmosFEA + id: PlaqueAtmosZAS + name: ZAS Atmospherics Division plaque + description: This plaque commemorates the fall of the Atmos ZAS division. For all the charred, dizzy, and brittle men who have died in its hands. + categories: [ HideSpawnMenu ] + +# If you get the ZUM plaque it means your round will be blessed with good engineering luck. +- type: entity + parent: PlaqueAtmosFEA + id: PlaqueAtmosZUM + name: ZUM Atmospherics Division plaque + description: This plaque commemorates the rise of the Atmos ZUM division. May they carry the torch that the Atmos ZAS, LINDA and FEA divisions left behind. + categories: [ HideSpawnMenu ] + components: + - type: Sprite + state: zumosplaque diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml index f00216393b..05611d04c4 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml @@ -1,7 +1,6 @@ - type: entity id: BaseBarSign parent: BaseStructure - name: bar sign abstract: true components: - type: MeleeSound @@ -10,6 +9,18 @@ collection: GlassSmash - type: WallMount arc: 360 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.95,-0.45,0.95,0.45" + density: 60 + mask: + - MachineMask + layer: + - MidImpassable + - LowImpassable - type: Sprite drawdepth: WallMountedItems sprite: Structures/Wallmounts/barsign.rsi @@ -50,12 +61,39 @@ boardName: wires-board-name-barsign layoutId: BarSign +- type: entity + id: BaseBarSignAlignTile + parent: BaseBarSign + sufix: AlignTile + abstract: true + components: + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,1.45,0.45" + density: 60 + mask: + - MachineMask + layer: + - MidImpassable + - LowImpassable + - type: Sprite + offset: 0.5,0 + - type: entity parent: BaseBarSign id: BarSign name: bar sign suffix: Random +- type: entity + parent: BaseBarSignAlignTile + id: BarSignAlignTile + name: bar sign + suffix: Random, AlignTile + # Missing appearance components & various other sprite issues. #- type: entity # id: LargeBarSign @@ -81,6 +119,11 @@ - type: BarSign current: ComboCafe +- type: entity + parent: [BaseBarSignAlignTile, BarSignComboCafe] + id: BarSignComboCafeAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignEmergencyRumParty @@ -90,6 +133,11 @@ - type: BarSign current: EmergencyRumParty +- type: entity + parent: [BaseBarSignAlignTile, BarSignEmergencyRumParty] + id: BarSignEmergencyRumPartyAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignLV426 @@ -99,6 +147,11 @@ - type: BarSign current: LV426 +- type: entity + parent: [BaseBarSignAlignTile, BarSignLV426] + id: BarSignLV426AlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignMaidCafe @@ -108,6 +161,11 @@ - type: BarSign current: MaidCafe +- type: entity + parent: [BaseBarSignAlignTile, BarSignMaidCafe] + id: BarSignMaidCafeAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignMalteseFalcon @@ -117,6 +175,11 @@ - type: BarSign current: MalteseFalcon +- type: entity + parent: [BaseBarSignAlignTile, BarSignMalteseFalcon] + id: BarSignMalteseFalconAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignOfficerBeersky @@ -126,6 +189,11 @@ - type: BarSign current: OfficerBeersky +- type: entity + parent: [BaseBarSignAlignTile, BarSignOfficerBeersky] + id: BarSignOfficerBeerskyAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignRobustaCafe @@ -135,6 +203,11 @@ - type: BarSign current: RobustaCafe +- type: entity + parent: [BaseBarSignAlignTile, BarSignRobustaCafe] + id: BarSignRobustaCafeAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignTheAleNath @@ -144,6 +217,11 @@ - type: BarSign current: TheAleNath +- type: entity + parent: [BaseBarSignAlignTile, BarSignTheAleNath] + id: BarSignTheAleNathAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignTheBirdCage @@ -153,6 +231,11 @@ - type: BarSign current: TheBirdCage +- type: entity + parent: [BaseBarSignAlignTile, BarSignTheBirdCage] + id: BarSignTheBirdCageAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignTheCoderbus @@ -162,6 +245,11 @@ - type: BarSign current: TheCoderbus +- type: entity + parent: [BaseBarSignAlignTile, BarSignTheCoderbus] + id: BarSignTheCoderbusAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignTheDrunkCarp @@ -171,6 +259,11 @@ - type: BarSign current: TheDrunkCarp +- type: entity + parent: [BaseBarSignAlignTile, BarSignTheDrunkCarp] + id: BarSignTheDrunkCarpAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignEngineChange @@ -180,6 +273,11 @@ - type: BarSign current: EngineChange +- type: entity + parent: [BaseBarSignAlignTile, BarSignEngineChange] + id: BarSignEngineChangeAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignTheHarmbaton @@ -189,6 +287,11 @@ - type: BarSign current: Harmbaton +- type: entity + parent: [BaseBarSignAlignTile, BarSignTheHarmbaton] + id: BarSignTheHarmbatonAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignTheLightbulb @@ -198,6 +301,11 @@ - type: BarSign current: TheLightbulb +- type: entity + parent: [BaseBarSignAlignTile, BarSignTheLightbulb] + id: BarSignTheLightbulbAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignTheLooseGoose @@ -207,6 +315,11 @@ - type: BarSign current: Goose +- type: entity + parent: [BaseBarSignAlignTile, BarSignTheLooseGoose] + id: BarSignTheLooseGooseAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignTheNet @@ -216,6 +329,11 @@ - type: BarSign current: TheNet +- type: entity + parent: [BaseBarSignAlignTile, BarSignTheNet] + id: BarSignTheNetAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignTheOuterSpess @@ -225,6 +343,11 @@ - type: BarSign current: TheOuterSpess +- type: entity + parent: [BaseBarSignAlignTile, BarSignTheOuterSpess] + id: BarSignTheOuterSpessAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignTheSingulo @@ -234,6 +357,11 @@ - type: BarSign current: TheSingulo +- type: entity + parent: [BaseBarSignAlignTile, BarSignTheSingulo] + id: BarSignTheSinguloAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignTheSun @@ -243,6 +371,11 @@ - type: BarSign current: TheSun +- type: entity + parent: [BaseBarSignAlignTile, BarSignTheSun] + id: BarSignTheSunAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignWiggleRoom @@ -252,6 +385,11 @@ - type: BarSign current: WiggleRoom +- type: entity + parent: [BaseBarSignAlignTile, BarSignWiggleRoom] + id: BarSignWiggleRoomAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignZocalo @@ -261,6 +399,11 @@ - type: BarSign current: Zocalo +- type: entity + parent: [BaseBarSignAlignTile, BarSignZocalo] + id: BarSignZocaloAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignEmprah @@ -270,6 +413,11 @@ - type: BarSign current: Emprah +- type: entity + parent: [BaseBarSignAlignTile, BarSignEmprah] + id: BarSignEmprahAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignSpacebucks @@ -279,6 +427,11 @@ - type: BarSign current: Spacebucks +- type: entity + parent: [BaseBarSignAlignTile, BarSignSpacebucks] + id: BarSignSpacebucksAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignMaltroach @@ -288,6 +441,11 @@ - type: BarSign current: Maltroach +- type: entity + parent: [BaseBarSignAlignTile, BarSignMaltroach] + id: BarSignMaltroachAlignTile + suffix: AlignTile + - type: entity parent: BaseBarSign id: BarSignWhiskeyEchoes @@ -296,3 +454,8 @@ components: - type: BarSign current: WhiskeyEchoes + +- type: entity + parent: [BaseBarSignAlignTile, BarSignWhiskeyEchoes] + id: BarSignWhiskeyEchoesAlignTile + suffix: AlignTile diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml index 132318ee47..3aeae766c5 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml @@ -600,6 +600,33 @@ - type: Sprite state: poster63_contraband +- type: entity + parent: PosterBase + id: PosterContrabandExoAcid + name: "Exomorph Warning: Acid Spit!" + description: "This poster warns you about an exomorph's acidic spit. Not that such exomorphs are real... Right?" + components: + - type: Sprite + state: poster64_contraband + +- type: entity + parent: PosterBase + id: PosterContrabandExoRun + name: "Exomorph Warning: Run Away!" + description: "This poster warns you about an athletic exomorph capable of dragging away anyone who gets caught; so don't get caught!" + components: + - type: Sprite + state: poster65_contraband + +- type: entity + parent: PosterBase + id: PosterContrabandExoChomp + name: "Exomorph Warning: Dangerous Bites!" + description: "This poster warns you about the lethal bites exomorphs can have. Don't become an alien snack!" + components: + - type: Sprite + state: poster66_contraband + # Legit - type: entity parent: PosterBase diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml index b7595baac9..b77fbc3547 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml @@ -1245,6 +1245,15 @@ - type: Sprite state: security +- type: entity + parent: BaseSign + id: SignDetective + name: Detective sign + description: A sign depicting the detective's office. + components: + - type: Sprite + state: detective + - type: entity parent: BaseSign id: SignPlaque diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/turret_controls.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/turret_controls.yml new file mode 100644 index 0000000000..95a3e74b1f --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/turret_controls.yml @@ -0,0 +1,198 @@ +- type: entity + id: WeaponEnergyTurretControlPanelFrame + name: sentry turret control panel assembly + description: An incomplete wall-mounted assembly for a sentry turret control panel. + categories: [ HideSpawnMenu ] + components: + - type: Sprite + noRot: false + drawdepth: SmallObjects + sprite: Structures/Wallmounts/turret_controls.rsi + layers: + - state: base + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: StructuralMetallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalGlassBreak + params: + volume: -4 + #- !type:ChangeConstructionNodeBehavior - To be added in a later PR + # node: machineFrame + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Transform + anchored: true + - type: WallMount + - type: Clickable + - type: InteractionOutline + - type: ContainerContainer + containers: + board: !type:Container + #- type: Construction - To be added in a later PR + # graph: WeaponEnergyTurretControlPanel + # node: frame + placement: + mode: SnapgridCenter + snap: + - Wallmount + +- type: entity + parent: WeaponEnergyTurretControlPanelFrame + id: WeaponEnergyTurretStationControlPanel + name: security turret control panel + description: A wall-mounted interface for remotely configuring the operational parameters of linked security turrets. + components: + - type: Appearance + - type: Sprite + noRot: false + drawdepth: SmallObjects + sprite: Structures/Wallmounts/turret_controls.rsi + layers: + - state: base + - state: safe + map: ["enum.PowerDeviceVisualLayers.Powered"] + shader: unshaded + - state: wires + map: ["enum.WiresVisualLayers.MaintenancePanel"] + visible: false + - type: GenericVisualizer + visuals: + enum.WiresVisualLayers.MaintenancePanel: + enum.WiresVisualLayers.MaintenancePanel: + True: { visible: true } + False: { visible: false } + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + True: { visible: true } + False: { visible: false } + enum.TurretControllerVisuals.ControlPanel: + enum.PowerDeviceVisualLayers.Powered: + -1: { state: safe } + 0: { state: stun } + 1: { state: lethal } + - type: StationAiWhitelist + - type: AccessReader + access: [["Security"]] + - type: TurretTargetSettings + exemptAccessLevels: + - Security + - Borg + - BasicSilicon + - type: DeployableTurretController + accessGroups: + - Cargo + - Command + - Engineering + - General + - Medical + - Research + - Security + - Service + - Silicon + accessLevels: + - Armory + - Atmospherics + - Bar + - BasicSilicon + - Borg + - Brig + - Detective + - Captain + - Cargo + - Chapel + - Chemistry + - ChiefEngineer + - ChiefMedicalOfficer + - Command + - Cryogenics + - Engineering + - External + - HeadOfPersonnel + - HeadOfSecurity + - Hydroponics + - Janitor + - Kitchen + - Lawyer + - Maintenance + - Medical + - Quartermaster + - Research + - ResearchDirector + - Salvage + - Security + - Service + - Theatre + - type: DeviceList + isAllowList: true + - type: DeviceNetwork + deviceNetId: Wired + receiveFrequencyId: Turret + transmitFrequencyId: TurretControl + sendBroadcastAttemptEvent: true + prefix: device-address-prefix-console + - type: DeviceNetworkRequiresPower + - type: WiredNetworkConnection + - type: ActivatableUI + key: enum.DeployableTurretControllerUiKey.Key + - type: ActivatableUIRequiresPower + - type: UserInterface + interfaces: + enum.DeployableTurretControllerUiKey.Key: + type: TurretControllerWindowBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface + - type: WiresPanel + - type: WiresVisuals + - type: Wires + boardName: wires-board-name-turret-controls + layoutId: TurretControls + - type: Lock + locked: true + unlockOnClick: false + - type: LockedWiresPanel + - type: ApcPowerReceiver + - type: ExtensionCableReceiver + - type: Electrified + enabled: false + usesApcPower: true + #- type: ContainerFill - Will be added in a later PR + # containers: + # board: + # - WeaponEnergyTurretStationControlPanelElectronics + #- type: Construction - Will be added in a later PR + # graph: WeaponEnergyTurretControlPanel + # node: finish + +- type: entity + parent: WeaponEnergyTurretStationControlPanel + id: WeaponEnergyTurretAIControlPanel + name: AI sentry turret control panel + description: A wall-mounted interface that allows a local artifical intelligence to adjust the operational parameters of linked sentry turrets. + components: + - type: AccessReader + access: [["StationAi"], ["ResearchDirector"]] + #- type: ContainerFill - Will be added in a later PR + # containers: + # board: + # - WeaponEnergyTurretAIControlPanelElectronics + - type: DeviceNetwork + receiveFrequencyId: TurretAI + transmitFrequencyId: TurretControlAI + - type: TurretTargetSettings + exemptAccessLevels: + - BasicSilicon + - Borg + - type: DeployableTurretController + accessGroups: + - Silicon + accessLevels: + - BasicSilicon + - Borg diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index 184620f2b2..bdf1e6e197 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -48,6 +48,17 @@ path: /Audio/Effects/break_stone.ogg params: volume: -6 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 2000 - type: entity abstract: true diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index bb3f104add..c94f43c766 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -1,7 +1,7 @@ - type: entity abstract: true parent: BaseStructure - id: BaseWall + id: BaseStructureWall name: basewall description: Keeps the air in and the greytide out. placement: @@ -44,7 +44,6 @@ layer: - WallLayer density: 1000 - - type: Occluder - type: Airtight - type: StaticPrice price: 75 @@ -53,6 +52,46 @@ - type: BlockWeather - type: SunShadowCast +- type: entity + abstract: true + parent: BaseStructureWall + id: BaseWall + components: + - type: Occluder # Breaks on diagonal walls + +- type: entity + abstract: true + parent: BaseStructureWall + id: WallDiagonalBase + suffix: Diagonal + components: + - type: Tag + tags: + - Wall + - Diagonal + - type: IconSmooth + mode: Diagonal + key: walls + base: state + - type: Airtight + noAirWhenFullyAirBlocked: false + airBlockedDirection: + - South + - East + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - WallLayer + - type: entity parent: BaseWall id: WallBrick @@ -79,7 +118,6 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: IconSmooth key: walls base: brick @@ -89,9 +127,6 @@ id: WallClock name: clock wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/clock.rsi - type: Icon @@ -121,9 +156,6 @@ id: WallClown name: bananium wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/clown.rsi - type: Icon @@ -151,6 +183,17 @@ - type: IconSmooth key: walls base: clown + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 8000 # really good ramming wall, bananium is rare so it's probably fine - type: entity parent: BaseWall @@ -191,9 +234,6 @@ id: WallCult name: cult wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/cult.rsi - type: Icon @@ -257,9 +297,6 @@ id: WallDiamond name: diamond wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/diamond.rsi - type: Icon @@ -290,9 +327,6 @@ id: WallGold name: gold wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/gold.rsi - type: Icon @@ -326,6 +360,17 @@ node: girder - !type:DoActsBehavior acts: ["Destruction"] + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 4000 - type: IconSmooth key: walls base: gold @@ -335,9 +380,6 @@ id: WallIce name: ice wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/ice.rsi - type: Icon @@ -364,9 +406,6 @@ id: WallPlasma name: plasma wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/plasma.rsi - type: Icon @@ -411,9 +450,6 @@ id: WallPlastic name: plastic wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/plastic.rsi - type: Icon @@ -457,9 +493,6 @@ name: plastitanium wall suffix: indestructible components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/plastitanium.rsi - type: Icon @@ -467,6 +500,22 @@ - type: IconSmooth key: walls base: plastitanium + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 4000 + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: StructuralMetallicStrong + - type: RadiationBlocker + resistance: 5 - type: entity parent: WallPlastitaniumIndestructible @@ -474,9 +523,6 @@ name: plastitanium wall suffix: "" components: - - type: Tag - tags: - - Wall - type: Destructible thresholds: - trigger: @@ -492,23 +538,34 @@ acts: [ "Destruction" ] - type: entity - parent: WallShuttleDiagonal - id: WallPlastitaniumDiagonal + parent: WallDiagonalBase + id: WallPlastitaniumDiagonalIndestructible name: plastitanium wall - suffix: diagonal - placement: - mode: SnapgridCenter - snap: - - Wall + suffix: diagonal, indestructible + components: + - type: Sprite + drawdepth: Walls + sprite: Structures/Walls/plastitanium_diagonal.rsi + state: state0 + - type: Icon + sprite: Structures/Walls/plastitanium_diagonal.rsi + state: state0 + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: StructuralMetallicStrong + - type: RadiationBlocker + resistance: 5 + +- type: entity + parent: WallPlastitaniumDiagonalIndestructible + id: WallPlastitaniumDiagonal + name: plastitanium wall + suffix: diagonal components: - type: Sprite drawdepth: Walls sprite: Structures/Walls/plastitanium_diagonal.rsi state: state0 - - type: IconSmooth - mode: Diagonal - key: walls - base: state - type: Icon sprite: Structures/Walls/plastitanium_diagonal.rsi state: state0 @@ -516,73 +573,18 @@ thresholds: - trigger: !type:DamageTrigger - damage: 2000 + damage: 1000 behaviors: + - !type:SpawnEntitiesBehavior + spawn: + Girder: + min: 1 + max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] - !type:PlaySoundBehavior sound: collection: MetalSlam - - trigger: - !type:DamageTrigger - damage: 1000 - behaviors: - - !type:ChangeConstructionNodeBehavior - node: girder - - !type:PlaySoundBehavior - sound: - collection: MetalSlam - - !type:DoActsBehavior - acts: ["Destruction"] - -- type: entity - id: WallPlastitaniumDiagonalIndestructible - name: plastitanium wall - suffix: diagonal, indestructible - description: Keeps the air in and the greytide out. - placement: - mode: SnapgridCenter - snap: - - Wall - components: - - type: Transform - anchored: true - - type: Clickable - - type: Tag - tags: - - Wall - - Diagonal - - type: Sprite - drawdepth: Walls - sprite: Structures/Walls/plastitanium_diagonal.rsi - state: state0 - - type: IconSmooth - mode: Diagonal - key: walls - base: state - - type: Icon - sprite: Structures/Walls/plastitanium_diagonal.rsi - state: state0 - - type: Physics - bodyType: Static - - type: Airtight - noAirWhenFullyAirBlocked: false - airBlockedDirection: - - South - - East - - type: Fixtures - fixtures: - fix1: - shape: - !type:PolygonShape - vertices: - - "-0.5,-0.5" - - "0.5,0.5" - - "0.5,-0.5" - mask: - - FullTileMask - layer: - - WallLayer - type: entity parent: BaseWall @@ -642,6 +644,17 @@ price: 250 - type: RadiationBlocker resistance: 5 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 2000 - type: entity parent: WallReinforced @@ -682,31 +695,45 @@ - !type:DoActsBehavior acts: ["Destruction"] - - type: entity - parent: WallShuttleDiagonal + parent: WallDiagonalBase id: WallReinforcedDiagonal name: reinforced wall - suffix: diagonal - placement: - mode: SnapgridCenter - snap: - - Wall components: - - type: Tag - tags: - - Diagonal - type: Sprite drawdepth: Walls sprite: Structures/Walls/reinforced_diagonal.rsi state: state0 - - type: IconSmooth - mode: Diagonal - key: walls - base: state - type: Icon sprite: Structures/Walls/reinforced_diagonal.rsi state: state0 + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: StructuralMetallicStrong + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 600 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: MetalSlam + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:ChangeConstructionNodeBehavior + node: girder + - !type:PlaySoundBehavior + sound: + collection: MetalSlam + - !type:DoActsBehavior + acts: ["Destruction"] + - type: RadiationBlocker + resistance: 5 # Riveting - type: entity @@ -714,9 +741,6 @@ id: WallRiveted name: riveted wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/riveted.rsi - type: Icon @@ -748,9 +772,6 @@ id: WallSandstone name: sandstone wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/sandstone.rsi - type: Icon @@ -781,9 +802,6 @@ id: WallSilver name: silver wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/silver.rsi - type: Icon @@ -823,38 +841,17 @@ #shuttle walls - type: entity + parent: WallDiagonalBase id: WallShuttleDiagonal name: shuttle wall - suffix: Diagonal - description: Keeps the air in and the greytide out. - placement: - mode: SnapgridCenter - snap: - - Wall components: - - type: Transform - anchored: true - - type: Clickable - - type: Tag - tags: - - Wall - - Diagonal - type: Sprite drawdepth: Walls sprite: Structures/Walls/shuttle_diagonal.rsi state: state0 - - type: IconSmooth - mode: Diagonal - key: walls - base: state - type: Icon sprite: Structures/Walls/shuttle_diagonal.rsi state: state0 - - type: Damageable - damageContainer: StructuralInorganic - damageModifierSet: StructuralMetallic - - type: Physics - bodyType: Static - type: Reflect reflectProb: 1 - type: Pullable @@ -876,6 +873,10 @@ - FullTileMask layer: - WallLayer + density: 2000 + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: StructuralMetallicStrong - type: Destructible thresholds: - trigger: @@ -901,6 +902,10 @@ - type: Construction graph: Girder node: diagonalshuttleWall + - type: RadiationBlocker + resistance: 5 + - type: StaticPrice + price: 200 - type: entity parent: BaseWall @@ -961,15 +966,23 @@ 5: { state: shuttle_construct-5, visible: true} - type: Reflect reflectProb: 1 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 2000 - type: entity parent: BaseWall id: WallSolid name: solid wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/solid.rsi - type: WallReplacementMarker @@ -1009,26 +1022,39 @@ base: solid - type: entity - parent: WallShuttleDiagonal + parent: WallDiagonalBase id: WallSolidDiagonal name: solid wall - suffix: diagonal - placement: - mode: SnapgridCenter - snap: - - Wall components: - type: Sprite drawdepth: Walls sprite: Structures/Walls/solid_diagonal.rsi state: state0 - - type: IconSmooth - mode: Diagonal - key: walls - base: state - type: Icon sprite: Structures/Walls/solid_diagonal.rsi state: state0 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 400 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: MetalSlam + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:ChangeConstructionNodeBehavior + node: girder + - !type:PlaySoundBehavior + sound: + collection: MetalSlam + - !type:DoActsBehavior + acts: ["Destruction"] - type: entity parent: WallSolid @@ -1103,6 +1129,17 @@ node: girder - !type:DoActsBehavior acts: ["Destruction"] + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 6000 - type: IconSmooth key: walls base: uranium @@ -1154,7 +1191,6 @@ name: web wall description: Keeps the spiders in and the greytide out. components: - - type: Clickable - type: MeleeSound soundGroups: Brute: @@ -1162,9 +1198,6 @@ "/Audio/Weapons/slash.ogg" - type: Damageable damageModifierSet: Web - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/web.rsi - type: Icon @@ -1200,9 +1233,6 @@ id: WallNecropolis name: stone wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/necropolis.rsi - type: Icon @@ -1224,9 +1254,6 @@ id: WallMining name: mining wall components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/mining.rsi - type: Icon @@ -1248,26 +1275,45 @@ - type: Appearance - type: entity - parent: WallShuttleDiagonal + parent: WallDiagonalBase id: WallMiningDiagonal name: mining wall - suffix: diagonal - placement: - mode: SnapgridCenter - snap: - - Wall components: - type: Sprite drawdepth: Walls sprite: Structures/Walls/mining_diagonal.rsi state: state0 - - type: IconSmooth - mode: Diagonal - key: walls - base: state - type: Icon sprite: Structures/Walls/mining_diagonal.rsi state: state0 + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: StructuralMetallicStrong + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 600 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: MetalSlam + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + Girder: + min: 1 + max: 1 + - !type:PlaySoundBehavior + sound: + collection: MetalSlam + - !type:DoActsBehavior + acts: ["Destruction"] # Vault Walls @@ -1346,30 +1392,30 @@ id: WallForce name: force wall components: - - type: TimedDespawn - lifetime: 12 - - type: Tag - tags: - - Wall - - type: Physics - bodyType: Static - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - mask: - - FullTileMask - layer: - - WallLayer - - type: Airtight - - type: Sprite - sprite: Structures/Magic/forcewall.rsi - state: forcewall - - type: Icon - sprite: Structures/Magic/forcewall.rsi - state: forcewall + - type: TimedDespawn + lifetime: 10 + - type: Tag + tags: + - Wall + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - SpecialWallLayer + layer: + - SpecialWallLayer + - type: Airtight + - type: Sprite + sprite: Structures/Magic/forcewall.rsi + state: forcewall + - type: Icon + sprite: Structures/Magic/forcewall.rsi + state: forcewall - type: entity parent: BaseWall @@ -1377,9 +1423,6 @@ name: cobblestone brick wall description: Stone by stone, perfectly fitted together to form a wall. components: - - type: Tag - tags: - - Wall - type: Sprite sprite: Structures/Walls/cobblebrick.rsi - type: Icon diff --git a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml index f91d12e8fc..6db8426bf6 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml @@ -34,6 +34,17 @@ - type: StaticPrice price: 100 - type: BlockWeather + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 4000 - type: entity id: PlastitaniumWindowSquareBase @@ -143,6 +154,7 @@ - FullTileMask layer: - GlassLayer + density: 4000 - type: Airtight noAirWhenFullyAirBlocked: false airBlockedDirection: diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml index a4386a7979..cadff77e54 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml @@ -55,6 +55,17 @@ sprite: Structures/Windows/cracks.rsi - type: StaticPrice price: 132 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 2000 - type: entity id: PlasmaReinforcedWindowDirectional @@ -148,6 +159,7 @@ - FullTileMask layer: - GlassLayer + density: 2000 - type: Airtight noAirWhenFullyAirBlocked: false airBlockedDirection: diff --git a/Resources/Prototypes/Entities/Structures/soil.yml b/Resources/Prototypes/Entities/Structures/soil.yml index c5c8f2e61f..725ab0c6ff 100644 --- a/Resources/Prototypes/Entities/Structures/soil.yml +++ b/Resources/Prototypes/Entities/Structures/soil.yml @@ -1,6 +1,7 @@ - type: entity - name: soil id: hydroponicsSoil + name: soil + description: A mix of organic matter and minerals creating a soil to grow your plant in space. Seems to be dry. placement: mode: SnapgridCenter components: @@ -55,3 +56,20 @@ solution: soil - type: Appearance - type: PlantHolderVisuals + +- type: entity + parent: hydroponicsSoil + id: FungalSoil + name: fungal soil + description: A mix of organic matter and fungal root creating a soil to grow your plant in space. Seems to be dry. + components: + - type: Construction + graph: Soil + node: fungalSoil + - type: Sprite + sprite: Structures/Hydroponics/misc.rsi + state: fungal_soil + noRot: true + - type: PlantHolder + waterLevel: 0 + nutritionLevel: 0 diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index b9fd39bdae..0f61016987 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -546,7 +546,7 @@ earliestStart: 35 weight: 5.5 minimumPlayers: 20 - duration: 1 + duration: null # LoneOpsSpawn needs an infinite duration so that it inherits the NukeOpsRule things of an actually appropriate end scrreen (not always "Neutral outcome!") and... ending the game if the station is nuked. - type: RuleGrids - type: LoadMapRule gridPath: /Maps/Shuttles/ShuttleEvent/striker.yml diff --git a/Resources/Prototypes/GameRules/meteorswarms.yml b/Resources/Prototypes/GameRules/meteorswarms.yml index 5332c8128c..eacf64fc80 100644 --- a/Resources/Prototypes/GameRules/meteorswarms.yml +++ b/Resources/Prototypes/GameRules/meteorswarms.yml @@ -33,6 +33,10 @@ - id: GameRuleMeteorSwarmMedium - id: GameRuleMeteorSwarmLarge - id: GameRuleUristSwarm + - id: GameRuleClownSwarm + - id: GameRuleCowSwarm + - id: GameRulePotatoSwarm + - id: GameRuleFunSwarm - id: ImmovableRodSpawn - type: weightedRandomEntity @@ -263,3 +267,78 @@ - id: ImmovableRodWeh prob: 0.0075 orGroup: rodProto + +- type: entity + parent: GameRuleMeteorSwarm + id: GameRuleCowSwarm + components: + - type: StationEvent + weight: 0.05 + - type: MeteorSwarm + announcement: station-event-meteor-cow-start-announcement + announcementSound: /Audio/Announcements/attention.ogg + meteors: + MeteorCow: 1 + waves: + min: 3 + max: 3 + meteorsPerWave: + min: 10 + max: 10 + +- type: entity + parent: GameRuleMeteorSwarm + id: GameRuleClownSwarm + components: + - type: StationEvent + weight: 0.05 + - type: MeteorSwarm + announcement: station-event-meteor-clown-start-announcement + announcementSound: /Audio/Announcements/attention.ogg + meteors: + MeteorClown: 1 + waves: + min: 3 + max: 3 + meteorsPerWave: + min: 10 + max: 10 + +- type: entity + parent: GameRuleMeteorSwarm + id: GameRulePotatoSwarm + components: + - type: StationEvent + weight: 0.05 + - type: MeteorSwarm + announcement: station-event-meteor-potato-start-announcement + announcementSound: /Audio/Announcements/attention.ogg + meteors: + MeteorPotato: 1 + waves: + min: 3 + max: 3 + meteorsPerWave: + min: 10 + max: 10 + +- type: entity + parent: GameRuleMeteorSwarm + id: GameRuleFunSwarm + components: + - type: StationEvent + weight: 0.03 + - type: MeteorSwarm + announcement: station-event-fun-swarm-start-announcement + announcementSound: /Audio/Announcements/attention.ogg + meteors: + MeteorClown: 1 + MeteorCow: 1 + MeteorPotato: 1 + MeteorUrist: 1 + waves: + min: 3 + max: 3 + meteorsPerWave: + min: 8 + max: 12 diff --git a/Resources/Prototypes/InventoryTemplates/smartcorgi_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/smartcorgi_inventory_template.yml new file mode 100644 index 0000000000..069637800a --- /dev/null +++ b/Resources/Prototypes/InventoryTemplates/smartcorgi_inventory_template.yml @@ -0,0 +1,76 @@ +# Borgi Inventory Template +- type: inventoryTemplate + id: SmartCorgi + slots: + - name: ears + slotTexture: ears + slotFlags: EARS + stripTime: 3 + uiWindowPos: 2,2 + strippingWindowPos: 2,0 + displayName: Ears + - name: mask + slotTexture: mask + slotFlags: MASK + uiWindowPos: 0,2 + strippingWindowPos: 1,2 + displayName: Mask + whitelist: + tags: + - PetWearable + - name: suitstorage + slotTexture: suit_storage + slotFlags: SUITSTORAGE + stripTime: 3 + uiWindowPos: 0,1 + strippingWindowPos: 2,5 + displayName: Suit Storage + whitelist: + components: + - GasTank + - name: id + slotTexture: id + fullTextureName: template_small + slotFlags: IDCARD + slotGroup: SecondHotbar + stripTime: 2 + uiWindowPos: 2,1 + strippingWindowPos: 2,4 + displayName: ID + - name: belt + slotTexture: belt + fullTextureName: template_small + slotFlags: BELT + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 3,1 + strippingWindowPos: 1,5 + displayName: Belt + - name: outerClothing + slotTexture: suit + slotFlags: OUTERCLOTHING + stripTime: 6 + uiWindowPos: 1,1 + strippingWindowPos: 1,3 + displayName: Suit + whitelist: + tags: + - CorgiWearable + - name: eyes + slotTexture: glasses + slotFlags: EYES + uiWindowPos: 1,2 + strippingWindowPos: 1,1 + displayName: Eyes + whitelist: + tags: + - CorgiWearable + - name: head + slotTexture: head + slotFlags: HEAD + uiWindowPos: 1,3 + strippingWindowPos: 1,0 + displayName: Head + whitelist: + tags: + - CorgiWearable diff --git a/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml b/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml index 535c2aacf3..edb9c8d1fc 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml @@ -48,6 +48,15 @@ equipment: jumpsuit: ClothingUniformColorRainbow +# Rainbow Jumpskirt +- type: loadout + id: RainbowJumpskirt + effects: + - !type:GroupLoadoutEffect + proto: GreyTider + equipment: + jumpsuit: ClothingUniformJumpskirtColorRainbow + # Ancient - type: loadout id: AncientJumpsuit diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml b/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml index 525b3f77c8..3c16bb40e4 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml @@ -70,11 +70,29 @@ - BoxHugNitrogen # Mime +- type: loadoutEffectGroup + id: OxygenBreatherMime + effects: + - !type:SpeciesLoadoutEffect + species: + - Arachnid + - Diona + - Dwarf + - Human + - Reptilian + +- type: loadoutEffectGroup + id: OxygenBreatherMimeMoth + effects: + - !type:SpeciesLoadoutEffect + species: + - Moth + - type: loadout id: EmergencyOxygenMime effects: - !type:GroupLoadoutEffect - proto: OxygenBreather + proto: OxygenBreatherMime storage: back: - BoxMime @@ -88,6 +106,14 @@ back: - BoxMimeNitrogen +- type: loadout + id: EmergencySpeciesMothMime + effects: + - !type:GroupLoadoutEffect + proto: OxygenBreatherMimeMoth + storage: + back: + - BoxMimeMoth # Engineering / Extended - type: loadout diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index 0048a8a8d0..111b53af17 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -213,6 +213,7 @@ - GreyJumpskirt - AncientJumpsuit - RainbowJumpsuit + - RainbowJumpskirt - type: loadoutGroup id: PassengerFace @@ -563,6 +564,7 @@ loadouts: - EmergencyNitrogenMime - EmergencyOxygenMime + - EmergencySpeciesMothMime - LoadoutSpeciesVoxNitrogen - EmergencyWithoutGasMime # Sunrise-Edit - EmergencyDwarfMime # Sunrise-Edit diff --git a/Resources/Prototypes/LootTables/suspicion_loot_table.yml b/Resources/Prototypes/LootTables/suspicion_loot_table.yml index 0635061c25..e69de29bb2 100644 --- a/Resources/Prototypes/LootTables/suspicion_loot_table.yml +++ b/Resources/Prototypes/LootTables/suspicion_loot_table.yml @@ -1,148 +0,0 @@ -# These will be spawned randomly around the station -- type: entityLootTable - id: SuspicionRule - entries: - - id: WeaponRifleAk - amount: 0 - maxAmount: 5 - - id: WeaponRifleM90GrenadeLauncher - amount: 0 - maxAmount: 5 - - id: WeaponRifleM16A4 # Sunrise-Edit - amount: 0 - maxAmount: 5 - - id: WeaponPistolViper - amount: 0 - maxAmount: 5 - - id: WeaponPistolCobra - amount: 0 - maxAmount: 5 - - id: WeaponPistolMk58 - amount: 0 - maxAmount: 5 - - id: ButchCleaver - maxAmount: 5 - - id: Pickaxe - maxAmount: 5 - - id: Spear - maxAmount: 5 - - id: ToolboxEmergency - maxAmount: 5 - - id: CrowbarRed - maxAmount: 5 - - id: Stunbaton - maxAmount: 10 - - - id: WeaponRevolverDeckard - amount: 0 - maxAmount: 5 - - id: WeaponRevolverInspector - amount: 0 - maxAmount: 5 - - id: WeaponRevolverMateba - amount: 0 - maxAmount: 5 - - - id: WeaponShotgunBulldog - amount: 0 - maxAmount: 5 - - id: WeaponShotgunDoubleBarreled - amount: 0 - maxAmount: 5 - - id: WeaponShotgunEnforcer - amount: 0 - maxAmount: 5 - - id: WeaponShotgunTrenchgun4034 # Sunrise-Edit - amount: 0 - maxAmount: 5 - - id: WeaponShotgunSawn - amount: 0 - maxAmount: 5 - - id: WeaponShotgunHandmade - amount: 0 - maxAmount: 5 - - - id: WeaponSubMachineGunAtreides - amount: 0 - maxAmount: 5 - - id: WeaponSubMachineGunC20r - amount: 0 - maxAmount: 5 - - id: WeaponSubMachineGunSkorpion # Sunrise-Edit - amount: 0 - maxAmount: 5 - - - id: WeaponSniperMosin - amount: 0 - maxAmount: 5 - - id: WeaponSniperHristov - amount: 0 - maxAmount: 5 - - id: WeaponLaserGun - amount: 0 - maxAmount: 1 - - id: WeaponLaserCannon - amount: 0 - maxAmount: 1 - - id: WeaponXrayCannon - amount: 0 - maxAmount: 2 - - id: WeaponDisabler - amount: 0 - maxAmount: 4 - - - id: WeaponLauncherChinaLake - prob: 0.30 - maxAmount: 3 - - - id: WeaponLauncherRocket - prob: 0.20 - maxAmount: 3 - - - id: LidSalami - amount: 0 - maxAmount: 10 - - - id: ExGrenade - prob: 0.10 - amount: 0 - maxAmount: 2 - - - id: GrenadeFlashBang - - id: SyndieMiniBomb - prob: 0.05 - amount: 0 - maxAmount: 5 - - - id: GrenadeFlash - - id: GrenadeBlast - - id: GrenadeFrag - - id: GrenadeBaton - - id: SoapSyndie - amount: 0 - maxAmount: 3 - - - # Spawn a bunch of ammo around! - - id: MagazineRifle - maxAmount: 15 - - id: MagazineCaselessRifle - maxAmount: 15 - - id: MagazineCaselessRifle10x24 - maxAmount: 15 - - id: MagazinePistolCaselessRifle - maxAmount: 15 - - id: MagazineLightRifle - maxAmount: 15 - - id: MagazineShotgun - maxAmount: 15 - - id: MagazinePistol - maxAmount: 15 - - id: MagazinePistolHighCapacity - maxAmount: 15 - - id: MagazinePistolSubMachineGun - maxAmount: 15 - - id: CartridgeRocket - maxAmount: 15 - - id: GrenadeFrag - maxAmount: 15 diff --git a/Resources/Prototypes/Magic/forcewall_spells.yml b/Resources/Prototypes/Magic/forcewall_spells.yml index 7f501ae59b..ae71d81526 100644 --- a/Resources/Prototypes/Magic/forcewall_spells.yml +++ b/Resources/Prototypes/Magic/forcewall_spells.yml @@ -4,7 +4,7 @@ description: Creates a magical barrier. components: - type: InstantAction - useDelay: 10 + useDelay: 15 itemIconStyle: BigAction sound: !type:SoundPathSpecifier path: /Audio/Magic/forcewall.ogg diff --git a/Resources/Prototypes/NPCs/basilisk.yml b/Resources/Prototypes/NPCs/basilisk.yml new file mode 100644 index 0000000000..601d048b79 --- /dev/null +++ b/Resources/Prototypes/NPCs/basilisk.yml @@ -0,0 +1,22 @@ +- type: htnCompound + id: BasiliskCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: BasiliskMeleeCombatCompound + - tasks: + - !type:HTNCompoundTask + task: InnateRangedCombatCompound + - tasks: + - !type:HTNCompoundTask + task: IdleCompound + +- type: htnCompound + id: BasiliskMeleeCombatCompound + branches: + - tasks: + - !type:HTNPrimitiveTask + operator: !type:UtilityOperator + proto: NearbyColdMeleeTargets + - !type:HTNCompoundTask + task: BeforeMeleeAttackTargetCompound diff --git a/Resources/Prototypes/NPCs/utility_queries.yml b/Resources/Prototypes/NPCs/utility_queries.yml index 69ae4a337d..23ad7a59a1 100644 --- a/Resources/Prototypes/NPCs/utility_queries.yml +++ b/Resources/Prototypes/NPCs/utility_queries.yml @@ -99,6 +99,27 @@ - !type:TargetInLOSOrCurrentCon curve: !type:BoolCurve +- type: utilityQuery + id: NearbyColdMeleeTargets + query: + - !type:NearbyHostilesQuery + considerations: + - !type:TargetLowTempCon + curve: !type:BoolCurve + minTemp: 250 + - !type:TargetIsAliveCon + curve: !type:BoolCurve + - !type:TargetDistanceCon + curve: !type:PresetCurve + preset: TargetDistance + - !type:TargetHealthCon + curve: !type:PresetCurve + preset: TargetHealth + - !type:TargetAccessibleCon + curve: !type:BoolCurve + - !type:TargetInLOSOrCurrentCon + curve: !type:BoolCurve + - type: utilityQuery id: OrderedTargets query: @@ -191,7 +212,7 @@ - !type:TargetIsCritCon curve: !type:InverseBoolCurve - !type:TargetIsStunnedCon - curve: !type:InverseBoolCurve + curve: !type:InverseBoolCurve - !type:TurretTargetingCon curve: !type:BoolCurve - !type:TargetDistanceCon diff --git a/Resources/Prototypes/Procedural/Magnet/space_debris_templates.yml b/Resources/Prototypes/Procedural/Magnet/space_debris_templates.yml index cc08f51755..47aa47fce4 100644 --- a/Resources/Prototypes/Procedural/Magnet/space_debris_templates.yml +++ b/Resources/Prototypes/Procedural/Magnet/space_debris_templates.yml @@ -96,10 +96,7 @@ entities: - SalvageSpawnerTreasure - SalvageSpawnerTreasure - - SalvageSpawnerEquipment - - SalvageSpawnerEquipment - SalvageSpawnerTreasureValuable - - SalvageSpawnerEquipmentValuable - !type:BiomeEntityLayer allowedTiles: - FloorSteel diff --git a/Resources/Prototypes/Procedural/dungeon_configs.yml b/Resources/Prototypes/Procedural/dungeon_configs.yml index c296aafad6..5da9592995 100644 --- a/Resources/Prototypes/Procedural/dungeon_configs.yml +++ b/Resources/Prototypes/Procedural/dungeon_configs.yml @@ -1,8 +1,11 @@ -# Base configs +# Setups - type: dungeonConfig - id: PlanetBase + id: Experiment layers: - !type:PrefabDunGen + roomWhitelist: + tags: + - SalvageExperiment presets: - Bucket - Wow @@ -11,28 +14,49 @@ - !type:CorridorDunGen width: 3 + tile: FloorSteel - !type:DungeonEntranceDunGen count: 2 + tile: FloorSteel + contents: BaseAirlock - !type:RoomEntranceDunGen + tile: FloorSteel + contents: BaseAirlock - !type:EntranceFlankDunGen + tile: FloorSteel + contents: BaseWindow - !type:ExternalWindowDunGen + tile: FloorSteel + contents: BaseWindow - !type:WallMountDunGen + contents: ScienceLabsWalls + tile: FloorSteel - !type:BoundaryWallDunGen + wall: WallSolid + cornerWall: WallReinforced + tile: FloorSteel - !type:JunctionDunGen width: 1 + tile: FloorSteel + contents: BaseAirlock - !type:JunctionDunGen + width: 3 + tile: FloorSteel + contents: BaseAirlock - !type:AutoCablingDunGen + entity: CableApcExtension - !type:CornerClutterDunGen + contents: BaseClutter - !type:CorridorDecalSkirtingDunGen cardinalDecals: @@ -51,44 +75,8 @@ NorthWest: BrickTileWhiteInnerNw NorthEast: BrickTileWhiteInnerNe -# Setups -- type: dungeonConfig - id: Experiment - data: - colors: - Decals: "#D381C996" - entities: - Cabling: CableApcExtension - CornerWalls: WallReinforced - Walls: WallSolid - spawnGroups: - CornerClutter: BaseClutter - Entrance: BaseAirlock - EntranceFlank: BaseWindow - Junction: BaseAirlock - WallMounts: ScienceLabsWalls - Window: BaseWindow - tiles: - FallbackTile: FloorSteel - whitelists: - Rooms: - tags: - - SalvageExperiment - layers: - - !type:PrototypeDunGen - proto: PlanetBase - - type: dungeonConfig id: Haunted - data: - entities: - Walls: WallRock - tiles: - FallbackTile: FloorCaveDrought - whitelists: - Rooms: - tags: - - Mineshaft layers: - !type:PrefabDunGen presets: @@ -99,183 +87,304 @@ - !type:WormCorridorDunGen width: 3 + tile: FloorCaveDrought - !type:CorridorClutterDunGen - contents: - - id: FloraStalagmite + contents: HauntedClutter - !type:BoundaryWallDunGen + tile: FloorCaveDrought + wall: WallRock + +- type: entityTable + id: HauntedClutter + table: !type:GroupSelector + children: + - id: FloraStalagmite - type: dungeonConfig id: LavaBrig - data: - colors: - Decals: "#DE3A3A96" - entities: - Cabling: CableApcExtension - CornerWalls: WallReinforced - Walls: WallSolid - spawnGroups: - CornerClutter: BaseClutter - Entrance: LavaBrigEntrance - EntranceFlank: BaseWindow - Junction: BaseAirlock - WallMounts: ScienceLabsWalls - Window: BaseWindow - tiles: - FallbackTile: FloorDark - whitelists: - Rooms: - tags: - - LavaBrig layers: - - !type:PrototypeDunGen - proto: PlanetBase + - !type:PrefabDunGen + roomWhitelist: + tags: + - LavaBrig + presets: + - Bucket + - Wow + - SpaceShip + - Tall + + - !type:CorridorDunGen + width: 3 + tile: FloorDark + + - !type:DungeonEntranceDunGen + count: 2 + tile: FloorDark + contents: LavaBrigEntrance + + - !type:RoomEntranceDunGen + tile: FloorDark + contents: BaseAirlock + + - !type:EntranceFlankDunGen + tile: FloorDark + contents: BaseWindow + + - !type:ExternalWindowDunGen + tile: FloorDark + contents: BaseWindow + + - !type:WallMountDunGen + contents: ScienceLabsWalls + tile: FloorDark + + - !type:BoundaryWallDunGen + wall: WallSolid + cornerWall: WallReinforced + tile: FloorDark + + - !type:JunctionDunGen + width: 1 + tile: FloorDark + contents: BaseAirlock + + - !type:JunctionDunGen + width: 3 + tile: FloorDark + contents: BaseAirlock + + - !type:AutoCablingDunGen + entity: CableApcExtension + + - !type:CornerClutterDunGen + contents: BaseClutter + + - !type:CorridorDecalSkirtingDunGen + cardinalDecals: + South: BrickTileWhiteLineS + East: BrickTileWhiteLineE + North: BrickTileWhiteLineN + West: BrickTileWhiteLineW + cornerDecals: + SouthEast: BrickTileWhiteCornerSe + SouthWest: BrickTileWhiteCornerSw + NorthEast: BrickTileWhiteCornerNe + NorthWest: BrickTileWhiteCornerNw + pocketDecals: + SouthWest: BrickTileWhiteInnerSw + SouthEast: BrickTileWhiteInnerSe + NorthWest: BrickTileWhiteInnerNw + NorthEast: BrickTileWhiteInnerNe - type: dungeonConfig id: Mineshaft - data: - entities: - Cabling: Catwalk - spawnGroups: - CornerClutter: MineshaftClutter - Entrance: BaseWoodWall - EntranceFlank: BaseWoodWall - Junction: BaseWoodSupport - Window: BaseWoodWall - tiles: - FallbackTile: FloorCaveDrought - whitelists: - Rooms: - tags: - - Mineshaft layers: - - !type:PrototypeDunGen - proto: PlanetBase + - !type:PrefabDunGen + roomWhitelist: + tags: + - Mineshaft + presets: + - Bucket + - Wow + - SpaceShip + - Tall + + - !type:CorridorDunGen + width: 3 + tile: FloorCaveDrought + + - !type:DungeonEntranceDunGen + count: 2 + tile: FloorCaveDrought + contents: BaseWoodWall + + - !type:RoomEntranceDunGen + tile: FloorCaveDrought + contents: BaseWoodWall + + - !type:EntranceFlankDunGen + tile: FloorCaveDrought + contents: BaseWoodWall + + - !type:ExternalWindowDunGen + tile: FloorCaveDrought + contents: BaseWoodWall + + # No wallmounts + + # No boundary wall + + - !type:JunctionDunGen + width: 1 + tile: FloorCaveDrought + contents: BaseWoodSupport + + - !type:JunctionDunGen + width: 3 + tile: FloorCaveDrought + contents: BaseWoodSupport + + - !type:AutoCablingDunGen + entity: Catwalk + + - !type:CornerClutterDunGen + contents: MineshaftClutter + +# TODO: Check decal skirting fix contents in code. - type: dungeonConfig id: SnowyLabs - data: - colors: - Decals: "#4cc7aa96" - entities: - Cabling: CableApcExtension - CornerWalls: WallSilver - Walls: WallSilver - spawnGroups: - CornerClutter: BaseClutter - Entrance: SnowyLabsEntrance - EntranceFlank: BaseWindow - Junction: BaseAirlock - WallMounts: SnowyLabsWalls - Window: BaseWindow - tiles: - FallbackTile: FloorSteel - whitelists: - Rooms: - tags: - - SnowyLabs layers: - - !type:PrototypeDunGen - proto: PlanetBase + - !type:PrefabDunGen + roomWhitelist: + tags: + - SnowyLabs + presets: + - Bucket + - Wow + - SpaceShip + - Tall + + - !type:CorridorDunGen + width: 3 + tile: FloorSteel + + - !type:DungeonEntranceDunGen + count: 2 + tile: FloorSteel + contents: BaseAirlock + + - !type:RoomEntranceDunGen + tile: FloorSteel + contents: BaseAirlock + + - !type:EntranceFlankDunGen + tile: FloorSteel + contents: BaseWindow + + - !type:ExternalWindowDunGen + tile: FloorSteel + contents: BaseWindow + + - !type:WallMountDunGen + contents: SnowyLabsWalls + tile: FloorSteel + + - !type:BoundaryWallDunGen + wall: WallSilver + tile: FloorSteel + + - !type:JunctionDunGen + width: 1 + tile: FloorSteel + contents: BaseAirlock + + - !type:JunctionDunGen + width: 3 + tile: FloorSteel + contents: BaseAirlock + + - !type:AutoCablingDunGen + entity: CableApcExtension # Spawn groups # Basic -- type: entitySpawnEntry +- type: entityTable id: BaseClutter - entries: - - id: PottedPlantRandom - amount: 1 + table: !type:GroupSelector + children: + - id: PottedPlantRandom + amount: 1 -- type: entitySpawnEntry +- type: entityTable id: BaseAirlock - entries: - - id: CableApcExtension - - id: AirlockGlass + table: !type:GroupSelector + children: + - id: CableApcExtension + - id: AirlockGlass -- type: entitySpawnEntry +- type: entityTable id: BaseWindow - entries: - - id: Grille - - id: Window + table: !type:GroupSelector + children: + - id: Grille + - id: Window # Lava brig -- type: entitySpawnEntry +- type: entityTable id: LavaBrigEntrance - entries: - - id: CableApcExtension - - id: AirlockSecurityGlassLocked + table: !type:GroupSelector + children: + - id: CableApcExtension + - id: AirlockSecurityGlassLocked # Mineshaft -- type: entitySpawnEntry +- type: entityTable id: BaseWoodWall - entries: - - id: RandomWoodenWall + table: !type:GroupSelector + children: + - id: RandomWoodenWall -- type: entitySpawnEntry +- type: entityTable id: BaseWoodSupport - entries: - - id: RandomWoodenSupport + table: !type:GroupSelector + children: + - id: RandomWoodenSupport -- type: entitySpawnEntry +- type: entityTable id: MineshaftClutter - entries: - - id: RandomStalagmiteOrCrystal - amount: 1 + table: !type:GroupSelector + children: + - id: RandomStalagmiteOrCrystal + amount: 1 -- type: entitySpawnEntry +- type: entityTable id: MineshaftWalls - entries: - # Ore - - id: WallRockSalt - prob: 0.6 - orGroup: content - - id: WallRockCoal - prob: 0.6 - orGroup: content - - id: WallRockTin - prob: 0.4 - orGroup: content - - id: WallMining - prob: 0.8 - orGroup: content + table: !type:GroupSelector + children: + # Ore + - id: WallRockSalt + prob: 0.6 + - id: WallRockCoal + prob: 0.6 + - id: WallRockTin + prob: 0.4 + - id: WallMining + prob: 0.8 # Science lab -- type: entitySpawnEntry +- type: entityTable id: ScienceLabsWalls - entries: - # Posters - - id: RandomPosterLegit - orGroup: content - - id: ExtinguisherCabinetFilled - prob: 0.2 - orGroup: content - - id: RandomPainting - prob: 0.05 - orGroup: content - - id: IntercomCommon - prob: 0.1 - orGroup: content + table: !type:GroupSelector + children: + # Posters + - id: RandomPosterLegit + - id: ExtinguisherCabinetFilled + prob: 0.2 + - id: RandomPainting + prob: 0.05 + - id: IntercomCommon + prob: 0.1 # Snowy labs -- type: entitySpawnEntry +- type: entityTable id: SnowyLabsEntrance - entries: - - id: CableApcExtension - - id: AirlockFreezerHydroponicsLocked + table: !type:GroupSelector + children: + - id: CableApcExtension + - id: AirlockFreezerHydroponicsLocked -- type: entitySpawnEntry +- type: entityTable id: SnowyLabsWalls - entries: - # Posters - - id: RandomPosterLegit - orGroup: content - - id: ExtinguisherCabinetFilled - prob: 0.2 - orGroup: content - - id: RandomPainting - prob: 0.05 - orGroup: content - - id: IntercomScience - prob: 0.1 - orGroup: content + table: !type:GroupSelector + children: + # Posters + - id: RandomPosterLegit + - id: ExtinguisherCabinetFilled + prob: 0.2 + - id: RandomPainting + prob: 0.05 + - id: IntercomScience + prob: 0.1 diff --git a/Resources/Prototypes/Procedural/vgroid.yml b/Resources/Prototypes/Procedural/vgroid.yml index e9044720cc..0caa9f0e1f 100644 --- a/Resources/Prototypes/Procedural/vgroid.yml +++ b/Resources/Prototypes/Procedural/vgroid.yml @@ -18,6 +18,7 @@ proto: VGRoidSmaller - !type:PrototypeDunGen proto: VGRoidSmallPaths + inheritDungeons: All - !type:EntityTableDunGen minCount: 7 maxCount: 12 @@ -26,6 +27,7 @@ # Fill - !type:PrototypeDunGen proto: VGRoidFill + inheritDungeons: All # Ores - !type:OreDunGen replacement: IronRock @@ -135,14 +137,12 @@ - type: dungeonConfig id: VGRoidExterior reserveTiles: true - data: - tiles: - FallbackTile: PlatingAsteroid - WidenTile: FloorAsteroidSand layers: - !type:PrototypeDunGen proto: VGRoidExteriorDungeons - !type:SplineDungeonConnectorDunGen + tile: PlatingAsteroid + widenTile: FloorAsteroidSand - type: dungeonConfig id: VGRoidExteriorDungeons @@ -163,29 +163,24 @@ table: !type:NestedSelector tableId: SalvageScrapSpawnerValuable - !type:EntityTableDunGen - minCount: 15 - maxCount: 25 + minCount: 30 + maxCount: 45 table: !type:NestedSelector tableId: SalvageTreasureSpawnerCommon - !type:EntityTableDunGen - minCount: 15 - maxCount: 25 - table: !type:NestedSelector - tableId: SalvageEquipmentSpawnerCommon - - !type:EntityTableDunGen - minCount: 15 - maxCount: 20 + minCount: 30 + maxCount: 45 table: !type:NestedSelector tableId: SalvageTreasureSpawnerValuable - - !type:EntityTableDunGen - minCount: 15 - maxCount: 20 - table: !type:NestedSelector - tableId: SalvageEquipmentSpawnerValuable - !type:MobsDunGen minCount: 8 maxCount: 15 - groups: + contents: VGRoidExteriorDungeonsMobs + +- type: entityTable + id: VGRoidExteriorDungeonsMobs + table: !type:GroupSelector + children: - id: SalvageSpawnerMobMiningAsteroid amount: 1 @@ -215,7 +210,12 @@ - !type:MobsDunGen minCount: 25 maxCount: 35 - groups: + contents: VGRoidSmallPathsMobs + +- type: entityTable + id: VGRoidSmallPathsMobs + table: !type:GroupSelector + children: - id: SalvageSpawnerMobMiningAsteroid amount: 1 @@ -225,10 +225,8 @@ # Fill with rocks. - type: dungeonConfig id: VGRoidFill - data: - entities: - Fill: IronRock layers: - !type:FillGridDunGen + entity: IronRock allowedTiles: - FloorAsteroidSand diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml b/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml index 75b5f9dd14..584c32f47a 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml @@ -46,9 +46,7 @@ - !type:PlantAdjustHealth amount: -0.1 footstepSound: - collection: FootstepSticky - params: - volume: 6 + collection: FootstepSlime fizziness: 0.5 - type: reagent @@ -86,6 +84,4 @@ abstract: true flavor: sweet footstepSound: - collection: FootstepSticky - params: - volume: 6 + collection: FootstepSlime diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml index 806f9b4a36..a037f83b28 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml @@ -164,9 +164,7 @@ metamorphicFillBaseName: fill- metamorphicChangeColor: true footstepSound: - collection: FootstepSticky - params: - volume: 6 + collection: FootstepSlime - type: reagent id: IcedCoffee @@ -517,6 +515,18 @@ - !type:OrganType type: Dwarf shouldHave: false + Gas: + effects: + - !type:HealthChange + scaleByQuantity: true + ignoreResistances: true + conditions: + - !type:OrganType + type: Slime + shouldHave: true + damage: + types: + Heat: 3 - type: reagent id: Ice diff --git a/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml b/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml index addc85096d..a7c40e5533 100644 --- a/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml +++ b/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml @@ -184,6 +184,6 @@ - !type:SatiateHunger factor: 6.0 #Stronger than cookedramen footstepSound: - collection: FootstepBlood + collection: FootstepSlime params: volume: 6 diff --git a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml index d2cf44e6d6..6e4114cecf 100644 --- a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml @@ -104,6 +104,25 @@ flavor: peppery color: black recognizable: true + metabolisms: + Food: + effects: + - !type:Emote + emote: Cough + showInChat: true + showInGuidebook: true + probability: 0.05 + reactiveEffects: + Acidic: + methods: [ Touch ] + effects: + - !type:Emote + emote: Cough + showInGuidebook: true + conditions: + - !type:Breathing + - !type:Internals + usingInternals: false - type: reagent id: Vinegar diff --git a/Resources/Prototypes/Reagents/biological.yml b/Resources/Prototypes/Reagents/biological.yml index 80cfb24405..e750329689 100644 --- a/Resources/Prototypes/Reagents/biological.yml +++ b/Resources/Prototypes/Reagents/biological.yml @@ -75,7 +75,7 @@ - !type:SatiateHunger factor: 1 footstepSound: - collection: FootstepBlood + collection: FootstepSlime # makes sense params: volume: 6 @@ -104,7 +104,7 @@ type: Dwarf shouldHave: false footstepSound: - collection: FootstepBlood + collection: FootstepSlime params: volume: 6 @@ -172,8 +172,6 @@ type: Dwarf shouldHave: false # Dragon doesn't require airloss healing, so omnizine is still best for humans. - Medicine: - effects: - !type:ModifyBloodLevel amount: 3 - !type:HealthChange diff --git a/Resources/Prototypes/Reagents/chemicals.yml b/Resources/Prototypes/Reagents/chemicals.yml index 425db8aa8b..4542c97565 100644 --- a/Resources/Prototypes/Reagents/chemicals.yml +++ b/Resources/Prototypes/Reagents/chemicals.yml @@ -185,13 +185,3 @@ key: Adrenaline component: IgnoreSlowOnDamage time: 120 - -- type: reagent - id: SalicylicAcid - name: reagent-name-salicylic-acid - desc: reagent-desc-salicylic-acid - physicalDesc: reagent-physical-desc-powdery - flavor: bitter - color: "#FFFFFF" - boilingPoint: 55.5 - meltingPoint: -50.0 diff --git a/Resources/Prototypes/Reagents/cleaning.yml b/Resources/Prototypes/Reagents/cleaning.yml index 3f289d0486..f61bc73526 100644 --- a/Resources/Prototypes/Reagents/cleaning.yml +++ b/Resources/Prototypes/Reagents/cleaning.yml @@ -48,6 +48,9 @@ recognizable: true boilingPoint: 100.0 meltingPoint: 60.0 + slipData: + requiredSlipSpeed: 3.5 + friction: 0.3 # Slightly less friction than water, but not as bad as space lube metabolisms: Food: effects: @@ -118,6 +121,4 @@ time: 5 refresh: false footstepSound: - collection: FootstepSticky - params: - volume: 6 + collection: FootstepSlime diff --git a/Resources/Prototypes/Reagents/fun.yml b/Resources/Prototypes/Reagents/fun.yml index 631471208e..04f7749f83 100644 --- a/Resources/Prototypes/Reagents/fun.yml +++ b/Resources/Prototypes/Reagents/fun.yml @@ -317,6 +317,7 @@ effects: - !type:Emote emote: Laugh + showInGuidebook: true probability: 0.3 - !type:PopupMessage type: Local @@ -339,6 +340,7 @@ - !type:Emote emote: Weh showInChat: true + showInGuidebook: true force: true probability: 0.5 - !type:Polymorph @@ -371,6 +373,7 @@ - !type:Emote emote: Hew showInChat: true + showInGuidebook: true force: true probability: 0.5 - !type:Polymorph diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index 13b11577a3..a6d824f234 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -316,6 +316,13 @@ metabolisms: Medicine: effects: + - !type:AdjustReagent + conditions: + - !type:ReagentThreshold + reagent: Histamine + min: 45 + reagent: Histamine + amount: -5 - !type:HealthChange conditions: # they gotta be in crit first @@ -826,13 +833,12 @@ metabolisms: Medicine: effects: - - !type:HealthChange + - !type:EvenHealthChange damage: - groups: - Burn: -2 - Toxin: -2 - Airloss: -2 - Brute: -2 + Burn: -2 + Toxin: -2 + Airloss: -2 + Brute: -2 - type: reagent id: Ultravasculine @@ -1090,6 +1096,7 @@ name: reagent-name-holywater group: Medicine desc: reagent-desc-holywater + evaporationSpeed: 0.3 physicalDesc: reagent-physical-desc-holy flavor: holy color: "#91C3F7" @@ -1129,11 +1136,13 @@ shouldHave: false damage: types: + # Sunrise-Start Blunt: -0.5 Poison: -0.5 Heat: -0.5 Shock: -0.5 Cold: -0.5 + # Sunrise-End reactiveEffects: Unholy: methods: [ Touch ] @@ -1294,7 +1303,7 @@ Poison: -2 - type: reagent - id: Aloxadone + id : Aloxadone name: reagent-name-aloxadone group: Medicine desc: reagent-desc-aloxadone @@ -1311,29 +1320,10 @@ max: 213.0 damage: types: - Heat: -3.0 - Shock: -3.0 - Caustic: -1.0 - -- type: reagent - id: Traumoxadone - name: reagent-name-traumoxadone - group: Medicine - desc: reagent-desc-traumoxadone - physicalDesc: reagent-physical-desc-cloudy - flavor: medicine - color: "#69304D" - worksOnTheDead: true - metabolisms: - Medicine: - effects: - - !type:HealthChange - conditions: - - !type:Temperature - max: 213.0 - damage: - groups: - Brute: -6 + Cold: -4.0 + Heat: -4.0 + Shock: -4.0 + Caustic: -1.5 - type: reagent id : Mannitol # currently this is just a way to create psicodine diff --git a/Resources/Prototypes/Reagents/toxins.yml b/Resources/Prototypes/Reagents/toxins.yml index 1da0633988..00e544023f 100644 --- a/Resources/Prototypes/Reagents/toxins.yml +++ b/Resources/Prototypes/Reagents/toxins.yml @@ -371,8 +371,9 @@ damage: groups: Brute: 2 - Toxin: 2 Airloss: 2 + types: + Poison: 2 - !type:PopupMessage type: Local messages: [ "histamine-effect-light-itchiness" ] @@ -586,6 +587,7 @@ - !type:Emote emote: Honk showInChat: true + showInGuidebook: true force: true probability: 0.2 - !type:HealthChange diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/soil.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/soil.yml new file mode 100644 index 0000000000..b16d86aec0 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/soil.yml @@ -0,0 +1,23 @@ +- type: constructionGraph + id: Soil + start: start + graph: + - node: start + actions: + - !type:DeleteEntity {} + edges: + - to: fungalSoil + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WoodPlank + amount: 10 + doAfter: 10 + - tag: Mushroom + name: soil-construction-graph-any-mushroom + icon: + sprite: Objects/Misc/spaceshroom.rsi + state: object + - node: fungalSoil + entity: FungalSoil diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/disposal_pipes.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/disposal_pipes.yml index 1b3aa3105b..83c562fc96 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/disposal_pipes.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/disposal_pipes.yml @@ -14,6 +14,14 @@ - material: Steel amount: 2 doAfter: 1 + - to: signaller + steps: + - material: Steel + amount: 2 + doAfter: 1 + - material: Cable + amount: 1 + doAfter: 1 - to: trunk steps: - material: Steel @@ -46,6 +54,11 @@ - material: Steel amount: 2 doAfter: 1 + - to: xJunction + steps: + - material: Steel + amount: 2 + doAfter: 1 - to: bend steps: - material: Steel @@ -103,6 +116,20 @@ steps: - tool: Welding doAfter: 1 + - node: signaller + entity: DisposalSignaller + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 2 + - !type:SpawnPrototype + prototype: CableApcStack1 # I have no idea why this does not work + - !type:DeleteEntity + steps: + - tool: Welding + doAfter: 1 - node: trunk entity: DisposalTrunk edges: @@ -157,6 +184,22 @@ steps: - tool: Screwing doAfter: 1 + - node: yJunction + entity: DisposalYJunction + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 2 + - !type:DeleteEntity + steps: + - tool: Welding + doAfter: 1 + - to: junctionflipped + steps: + - tool: Screwing + doAfter: 1 - node: junctionflipped entity: DisposalJunctionFlipped edges: @@ -169,12 +212,12 @@ steps: - tool: Welding doAfter: 1 - - to: yJunction + - to: xJunction steps: - tool: Screwing doAfter: 1 - - node: yJunction - entity: DisposalYJunction + - node: xJunction + entity: DisposalXJunction edges: - to: start completed: @@ -189,10 +232,7 @@ steps: - tool: Screwing doAfter: 1 - - to: junctionflipped - steps: - - tool: Screwing - doAfter: 1 + # DisposalBend - node: bend entity: DisposalBend edges: diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 2ea7641bd8..c756e0ff53 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -1253,3 +1253,15 @@ canBuildInImpassable: false conditions: - !type:TileNotBlocked + +- type: construction + id: FungalSoil + graph: Soil + startNode: start + targetNode: fungalSoil + category: construction-category-structures + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked diff --git a/Resources/Prototypes/Recipes/Construction/utilities.yml b/Resources/Prototypes/Recipes/Construction/utilities.yml index 680bc4e36b..575ca3ae4e 100644 --- a/Resources/Prototypes/Recipes/Construction/utilities.yml +++ b/Resources/Prototypes/Recipes/Construction/utilities.yml @@ -119,6 +119,15 @@ placementMode: SnapgridCenter canBuildInImpassable: false +- type: construction + id: DisposalSignaller + graph: DisposalPipe + startNode: start + targetNode: signaller + category: construction-category-utilities + placementMode: SnapgridCenter + canBuildInImpassable: false + - type: construction id: DisposalTrunk graph: DisposalPipe @@ -200,6 +209,15 @@ placementMode: SnapgridCenter canBuildInImpassable: false +- type: construction + id: DisposalXJunction + graph: DisposalPipe + startNode: start + targetNode: xJunction + category: construction-category-utilities + placementMode: SnapgridCenter + canBuildInImpassable: false + - type: construction id: DisposalBend graph: DisposalPipe diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 9ac9ee1ed8..c1c61a9036 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -2306,6 +2306,17 @@ FoodCabbage: 1 FoodOnionSlice: 2 +- type: microwaveMealRecipe + id: RecipeTacoDragon + name: draco recipe + result: FoodTacoDragon + time: 10 + group: Savory + solids: + FoodTacoShell: 1 + FoodMeatDragonCutlet: 2 + FoodChiliPepper: 1 + - type: microwaveMealRecipe id: RecipeCroissant name: croissant recipe diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/medical.yml b/Resources/Prototypes/Recipes/Lathes/Packs/medical.yml index fa4ab055c8..7391df8d76 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/medical.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/medical.yml @@ -95,6 +95,8 @@ - SyringeCryostasis - BluespaceBeaker - SyringeBluespace + - LauncherSyringe + - MiniSyringe - type: latheRecipePack id: MedicalBoards diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml b/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml index e94d27e612..94ed0cc27b 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml @@ -13,6 +13,7 @@ id: BorgModulesStatic recipes: - BorgModuleTool + - BorgModuleCable - BorgModuleFireExtinguisher - type: latheRecipePack diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/science.yml b/Resources/Prototypes/Recipes/Lathes/Packs/science.yml index a19e9e00b0..3c29165cfd 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/science.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/science.yml @@ -47,6 +47,7 @@ recipes: - PowerCellMicroreactor - PowerCellHigh + - PowerCellHyper - PowerCageSmall # Sunrise-edit - type: latheRecipePack diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/service.yml b/Resources/Prototypes/Recipes/Lathes/Packs/service.yml index a2dc3a9e12..48975043b6 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/service.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/service.yml @@ -20,6 +20,7 @@ - FoodPlateMuffinTin - FoodKebabSkewer - SprayBottle + - TrashBag - LightReplacer - MopItem - Holoprojector diff --git a/Resources/Prototypes/Recipes/Lathes/medical.yml b/Resources/Prototypes/Recipes/Lathes/medical.yml index 80ea202104..298890ec40 100644 --- a/Resources/Prototypes/Recipes/Lathes/medical.yml +++ b/Resources/Prototypes/Recipes/Lathes/medical.yml @@ -218,81 +218,22 @@ Steel: 100 Plastic: 100 -#Sunrise-start +- type: latheRecipe + id: LauncherSyringe + result: LauncherSyringe + completetime: 10 + materials: + Silver: 200 + Steel: 1000 + Plastic: 200 + Glass: 100 - type: latheRecipe - id: ClothingHandsGlovesNitrileBlack - result: ClothingHandsGlovesNitrileBlack + id: MiniSyringe + result: MiniSyringe completetime: 2 materials: + Steel: 200 + Glass: 100 Plastic: 100 - Durathread: 200 -- type: latheRecipe - id: ClothingHandsGlovesNitrileOrange - result: ClothingHandsGlovesNitrileOrange - completetime: 2 - materials: - Plastic: 100 - Durathread: 200 - -- type: latheRecipe - id: ClothingHandsGlovesNitrileRed - result: ClothingHandsGlovesNitrileRed - completetime: 2 - materials: - Plastic: 100 - Durathread: 200 - -- type: latheRecipe - id: ClothingHandsGlovesNitrileGreen - result: ClothingHandsGlovesNitrileGreen - completetime: 2 - materials: - Plastic: 100 - Durathread: 200 - -- type: latheRecipe - id: ClothingHandsGlovesNitrileBlue - result: ClothingHandsGlovesNitrileBlue - completetime: 2 - materials: - Plastic: 100 - Durathread: 200 - -- type: latheRecipe - id: ClothingMaskSterileBlue - result: ClothingMaskSterileBlue - completetime: 2 - materials: - Plastic: 50 - -- type: latheRecipe - id: ClothingMaskSterileGreen - result: ClothingMaskSterileGreen - completetime: 2 - materials: - Plastic: 50 - -- type: latheRecipe - id: ClothingMaskSterileRed - result: ClothingMaskSterileRed - completetime: 2 - materials: - Plastic: 50 - -- type: latheRecipe - id: ClothingMaskSterileOrange - result: ClothingMaskSterileOrange - completetime: 2 - materials: - Plastic: 50 - -- type: latheRecipe - id: ClothingMaskSterileBlack - result: ClothingMaskSterileBlack - completetime: 2 - materials: - Plastic: 50 - -#Sunrise-end diff --git a/Resources/Prototypes/Recipes/Lathes/powercells.yml b/Resources/Prototypes/Recipes/Lathes/powercells.yml index 3b9270201d..9f800f397d 100644 --- a/Resources/Prototypes/Recipes/Lathes/powercells.yml +++ b/Resources/Prototypes/Recipes/Lathes/powercells.yml @@ -32,6 +32,19 @@ Plastic: 200 Gold: 50 +- type: latheRecipe + id: PowerCellHyper + result: PowerCellHyperPrinted + categories: + - Parts + completetime: 10 + materials: + Steel: 800 + Glass: 700 + Plasma: 300 + Gold: 200 + Silver: 300 + - type: latheRecipe id: PowerCellMicroreactor result: PowerCellMicroreactorPrinted diff --git a/Resources/Prototypes/Recipes/Lathes/robotics.yml b/Resources/Prototypes/Recipes/Lathes/robotics.yml index 07d125f5a6..b8965b81d8 100644 --- a/Resources/Prototypes/Recipes/Lathes/robotics.yml +++ b/Resources/Prototypes/Recipes/Lathes/robotics.yml @@ -127,6 +127,11 @@ id: BorgModuleTool result: BorgModuleTool +- type: latheRecipe + parent: BaseBorgModuleRecipe + id: BorgModuleCable + result: BorgModuleCable + - type: latheRecipe parent: BaseBorgModuleRecipe id: BorgModuleFireExtinguisher diff --git a/Resources/Prototypes/Recipes/Lathes/security.yml b/Resources/Prototypes/Recipes/Lathes/security.yml index 5a04fb7396..606e628669 100644 --- a/Resources/Prototypes/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/security.yml @@ -221,7 +221,8 @@ materials: Steel: 1500 Glass: 1000 - Gold: 850 + Gold: 500 + Uranium: 300 - type: latheRecipe parent: BaseWeaponRecipeLong @@ -230,7 +231,7 @@ materials: Steel: 1250 Plastic: 750 - Gold: 500 + Gold: 350 - type: latheRecipe parent: BaseWeaponRecipeLong @@ -240,7 +241,7 @@ Steel: 1500 Glass: 500 Plastic: 250 - Gold: 100 + Gold: 250 - type: latheRecipe parent: BaseWeaponRecipeLong diff --git a/Resources/Prototypes/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/Recipes/Reactions/chemicals.yml index 8020dd532b..f4900ac4aa 100644 --- a/Resources/Prototypes/Recipes/Reactions/chemicals.yml +++ b/Resources/Prototypes/Recipes/Reactions/chemicals.yml @@ -515,17 +515,3 @@ amount: 1 products: Tazinide: 1 - -- type: reaction - id: SalicylicAcid - reactants: - Carbon: - amount: 1 - Phenol: - amount: 1 - Bicaridine: - amount: 1 - SulfuricAcid: - amount: 1 - products: - SalicylicAcid: 4 diff --git a/Resources/Prototypes/Recipes/Reactions/medicine.yml b/Resources/Prototypes/Recipes/Reactions/medicine.yml index 8d0d8b1c91..d52671dc82 100644 --- a/Resources/Prototypes/Recipes/Reactions/medicine.yml +++ b/Resources/Prototypes/Recipes/Reactions/medicine.yml @@ -591,10 +591,10 @@ impact: Medium reactants: Cryoxadone: - amount: 1 - Aloe: amount: 2 - Sigynate: + Aloe: + amount: 1 + Leporazine: amount: 2 products: Aloxadone: 4 @@ -664,16 +664,3 @@ amount: 1 products: Haloperidol: 5 - -- type: reaction - id: Traumoxadone - impact: Medium - reactants: - Cryoxadone: - amount: 1 - SalicylicAcid: - amount: 1 - Lipozine: - amount: 1 - products: - Traumoxadone: 2 diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index cfaf0a5fdd..8dcef766b3 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -239,3 +239,16 @@ recipeUnlocks: - BluespaceBeaker - SyringeBluespace + +- type: technology + id: LauncherSyringe + name: research-technology-launcher-syringe + icon: + sprite: Objects/Weapons/Guns/Cannons/syringe_gun.rsi + state: syringe_gun + discipline: CivilianServices + tier: 3 + cost: 15000 + recipeUnlocks: + - LauncherSyringe + - MiniSyringe diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index c02678a373..6928a9935c 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -206,8 +206,8 @@ - PlantBagOfHolding # Sunrise-edit - type: technology - id: PortableFission - name: research-technology-portable-fission + id: OptimizedMicrogalvanism + name: research-technology-optimized-microgalvanism icon: sprite: Objects/Power/power_cells.rsi state: microreactor @@ -216,5 +216,6 @@ cost: 10000 recipeUnlocks: - PowerCellMicroreactor + - PowerCellHyper technologyPrerequisites: - AdvancedPowercells diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index bec5591365..1d4c6eb623 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -15,6 +15,7 @@ - !type:DepartmentTimeRequirement department: Medical time: 36000 #10 hrs + weight: 10 startingGear: CMOGear icon: "JobIconChiefMedicalOfficer" supervisors: job-supervisors-captain diff --git a/Resources/Prototypes/Roles/MindRoles/mind_roles.yml b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml index 687b7e17bf..79223ed67d 100644 --- a/Resources/Prototypes/Roles/MindRoles/mind_roles.yml +++ b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml @@ -144,8 +144,6 @@ subtype: role-subtype-dragon exclusiveAntag: true - type: DragonRole - - type: RoleBriefing - briefing: dragon-role-briefing # Ninja - type: entity diff --git a/Resources/Prototypes/SoundCollections/NukeMusic.yml b/Resources/Prototypes/SoundCollections/NukeMusic.yml index 6456c1d262..6c84d62d0e 100644 --- a/Resources/Prototypes/SoundCollections/NukeMusic.yml +++ b/Resources/Prototypes/SoundCollections/NukeMusic.yml @@ -4,4 +4,5 @@ - /Audio/StationEvents/running_out.ogg - /Audio/StationEvents/countdown.ogg - /Audio/StationEvents/sound_station_14.ogg + - /Audio/StationEvents/blatantly_nuclear.ogg - /Audio/_Sunrise/StationEvents/level.ogg diff --git a/Resources/Prototypes/SoundCollections/emotes.yml b/Resources/Prototypes/SoundCollections/emotes.yml index c93a46572b..0762c68cff 100644 --- a/Resources/Prototypes/SoundCollections/emotes.yml +++ b/Resources/Prototypes/SoundCollections/emotes.yml @@ -102,3 +102,41 @@ id: Hew files: - /Audio/Items/Toys/hew.ogg + +- type: soundCollection + id: XenoborgLaugh + files: + - /Audio/Voice/Xenoborg/xenoborg_laugh_1.ogg + - /Audio/Voice/Xenoborg/xenoborg_laugh_2.ogg + - /Audio/Voice/Xenoborg/xenoborg_laugh_3.ogg + - /Audio/Voice/Xenoborg/xenoborg_laugh_4.ogg + +- type: soundCollection + id: XenoborgBeep + files: + - /Audio/Voice/Xenoborg/xenoborg_twobeep.ogg + +- type: soundCollection + id: XenoborgChime + files: + - /Audio/Voice/Xenoborg/xenoborg_chime.ogg + +- type: soundCollection + id: XenoborgBuzz + files: + - /Audio/Voice/Xenoborg/xenoborg_buzz-sigh.ogg + +- type: soundCollection + id: XenoborgBuzzTwo + files: + - /Audio/Voice/Xenoborg/xenoborg_buzz-two.ogg + +- type: soundCollection + id: XenoborgBikeHorn + files: + - /Audio/Voice/Xenoborg/xenoborg_bikehorn.ogg + +- type: soundCollection + id: XenoborgPing + files: + - /Audio/Voice/Xenoborg/xenoborg_ping.ogg diff --git a/Resources/Prototypes/SoundCollections/footsteps.yml b/Resources/Prototypes/SoundCollections/footsteps.yml index 35aaf34316..26ecee5269 100644 --- a/Resources/Prototypes/SoundCollections/footsteps.yml +++ b/Resources/Prototypes/SoundCollections/footsteps.yml @@ -58,7 +58,14 @@ - /Audio/Effects/Footsteps/tile1.ogg - /Audio/Effects/Footsteps/tile2.ogg - /Audio/Effects/Footsteps/tile3.ogg - - /Audio/Effects/Footsteps/tile4.ogg + +- type: soundCollection + id: FootstepSlime + files: + - /Audio/Effects/Footsteps/slime1.ogg + - /Audio/Effects/Footsteps/slime2.ogg + - /Audio/Effects/Footsteps/slime3.ogg + - /Audio/Effects/Footsteps/slime4.ogg - type: soundCollection id: FootstepClown @@ -190,10 +197,23 @@ files: - /Audio/Effects/slip.ogg +- type: soundCollection + id: FootstepPuddle + files: + - /Audio/Effects/Footsteps/puddle1.ogg + - /Audio/Effects/Footsteps/puddle2.ogg + - /Audio/Effects/Footsteps/puddle3.ogg + - /Audio/Effects/Footsteps/puddle4.ogg + - /Audio/Effects/Footsteps/puddle5.ogg + - type: soundCollection id: FootstepBlood files: - - /Audio/Effects/Footsteps/gib_step.ogg + - /Audio/Effects/Footsteps/blood1.ogg + - /Audio/Effects/Footsteps/blood2.ogg + - /Audio/Effects/Footsteps/blood3.ogg + - /Audio/Effects/Footsteps/blood4.ogg + - /Audio/Effects/Footsteps/blood5.ogg - type: soundCollection id: FootstepSticky @@ -212,11 +232,21 @@ files: - /Audio/Effects/Footsteps/borgwalk1.ogg +- type: soundCollection + id: FootstepXenoborg + files: + - /Audio/Effects/Footsteps/borgwalk3.ogg + - type: soundCollection id: FootstepHoverBorg files: - /Audio/Effects/Footsteps/borgwalk2.ogg +- type: soundCollection + id: FootstepHoverXenoborg + files: + - /Audio/Effects/Footsteps/borgwalk4.ogg + - type: soundCollection id: FootstepHighHeels files: diff --git a/Resources/Prototypes/SoundCollections/machines.yml b/Resources/Prototypes/SoundCollections/machines.yml index 7848da0268..3c567ab7b3 100644 --- a/Resources/Prototypes/SoundCollections/machines.yml +++ b/Resources/Prototypes/SoundCollections/machines.yml @@ -1,3 +1,8 @@ +- type: soundCollection + id: PrinterPrint + files: + - /Audio/Machines/printer.ogg + - type: soundCollection id: CargoPing files: @@ -12,3 +17,8 @@ id: CargoToggleLimit files: - /Audio/Machines/quickbeep.ogg + +- type: soundCollection + id: CargoBeep + files: + - /Audio/Effects/Cargo/beep.ogg diff --git a/Resources/Prototypes/SoundCollections/screams.yml b/Resources/Prototypes/SoundCollections/screams.yml index 8fb39e9dc1..34cdeaf374 100644 --- a/Resources/Prototypes/SoundCollections/screams.yml +++ b/Resources/Prototypes/SoundCollections/screams.yml @@ -47,4 +47,17 @@ - /Audio/Voice/Human/femalescream_2.ogg - /Audio/Voice/Human/femalescream_3.ogg - /Audio/Voice/Human/femalescream_4.ogg - - /Audio/Voice/Human/femalescream_5.ogg \ No newline at end of file + - /Audio/Voice/Human/femalescream_5.ogg + +- type: soundCollection + id: SiliconScreams + files: + - /Audio/Machines/robotscream_1.ogg + - /Audio/Machines/robotscream_2.ogg + - /Audio/Machines/robotscream_3.ogg + - /Audio/Machines/robotscream_4.ogg + - /Audio/Machines/robotscream_5.ogg + - /Audio/Machines/robotscream_6.ogg + - /Audio/Machines/robotscream_7.ogg + - /Audio/Machines/robotscream_8.ogg + - /Audio/Machines/robotscream_9.ogg diff --git a/Resources/Prototypes/Species/arachnid.yml b/Resources/Prototypes/Species/arachnid.yml index a8bedef639..8503ae96f2 100644 --- a/Resources/Prototypes/Species/arachnid.yml +++ b/Resources/Prototypes/Species/arachnid.yml @@ -92,7 +92,7 @@ required: true defaultMarkings: [ ArachnidCheliceraeDownwards ] Chest: - points: 1 + points: 2 required: false Legs: points: 2 diff --git a/Resources/Prototypes/Species/diona.yml b/Resources/Prototypes/Species/diona.yml index 655b31f672..eb878e196d 100644 --- a/Resources/Prototypes/Species/diona.yml +++ b/Resources/Prototypes/Species/diona.yml @@ -48,7 +48,7 @@ points: 1 required: false Chest: - points: 1 + points: 2 required: false Legs: points: 2 diff --git a/Resources/Prototypes/Species/human.yml b/Resources/Prototypes/Species/human.yml index f10fc88656..0baeb6e9b5 100644 --- a/Resources/Prototypes/Species/human.yml +++ b/Resources/Prototypes/Species/human.yml @@ -83,7 +83,7 @@ points: 1 # Sunrise-Sponsors required: false Chest: - points: 1 + points: 2 required: false Legs: points: 2 diff --git a/Resources/Prototypes/Species/moth.yml b/Resources/Prototypes/Species/moth.yml index 5a95ec6d9c..8716ca677f 100644 --- a/Resources/Prototypes/Species/moth.yml +++ b/Resources/Prototypes/Species/moth.yml @@ -98,7 +98,7 @@ points: 1 required: false Chest: - points: 1 + points: 2 required: false Legs: points: 2 diff --git a/Resources/Prototypes/Species/slime.yml b/Resources/Prototypes/Species/slime.yml index 8239149f0c..53288dd7c3 100644 --- a/Resources/Prototypes/Species/slime.yml +++ b/Resources/Prototypes/Species/slime.yml @@ -70,7 +70,7 @@ points: 1 required: false Chest: - points: 1 + points: 2 required: false Legs: points: 4 diff --git a/Resources/Prototypes/Species/vox.yml b/Resources/Prototypes/Species/vox.yml index 67172c8bab..e37671f13a 100644 --- a/Resources/Prototypes/Species/vox.yml +++ b/Resources/Prototypes/Species/vox.yml @@ -62,7 +62,7 @@ required: true defaultMarkings: [ VoxLLegScales, VoxRLegScales, VoxRFootScales, VoxLFootScales ] Chest: - points: 1 + points: 2 required: false Tail: points: 1 diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 20fe8951f9..d34a9ccdf5 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -664,6 +664,12 @@ id: FloorSteelDirty name: tiles-dirty-steel-floor sprite: /Textures/Tiles/steel_dirty.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] diff --git a/Resources/Prototypes/Tiles/plating.yml b/Resources/Prototypes/Tiles/plating.yml index e3f4c89d94..2879272a59 100644 --- a/Resources/Prototypes/Tiles/plating.yml +++ b/Resources/Prototypes/Tiles/plating.yml @@ -72,6 +72,7 @@ isSpace: true itemDrop: PartRodMetal1 heatCapacity: 10000 + mass: 200 - type: tile id: TrainLattice @@ -87,3 +88,4 @@ isSpace: true itemDrop: PartRodMetal1 heatCapacity: 10000 + mass: 200 diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index 159b392f46..43164afdb5 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -433,6 +433,8 @@ params: variation: 0.05 sounds: + Scream: + collection: SiliconScreams Beep: path: /Audio/Machines/twobeep.ogg Chime: @@ -451,6 +453,8 @@ params: variation: 0.05 sounds: + Scream: + collection: SiliconScreams Laugh: path: /Audio/Voice/Silicon/syndieborg_laugh.ogg Beep: @@ -466,6 +470,26 @@ Ping: path: /Audio/Effects/Cargo/ping.ogg +- type: emoteSounds + id: UnisexSiliconXenoborg + params: + variation: 0.05 + sounds: + Laugh: + collection: XenoborgLaugh + Beep: + collection: XenoborgBeep + Chime: + collection: XenoborgChime + Buzz: + collection: XenoborgBuzz + Buzz-Two: + collection: XenoborgBuzzTwo + Honk: + collection: XenoborgBikeHorn + Ping: + collection: XenoborgPing + # body emotes - type: emoteSounds id: GeneralBodyEmotes diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index a32e462cdf..90db2f00b7 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -7,9 +7,6 @@ whitelist: components: - Vocal - blacklist: - tags: - - SiliconEmotes chatMessages: ["chat-emote-msg-scream"] chatTriggers: - scream diff --git a/Resources/Prototypes/Voice/speech_sounds.yml b/Resources/Prototypes/Voice/speech_sounds.yml index c1ad6b9e40..1c31dcc280 100644 --- a/Resources/Prototypes/Voice/speech_sounds.yml +++ b/Resources/Prototypes/Voice/speech_sounds.yml @@ -70,6 +70,15 @@ exclaimSound: path: /Audio/Voice/Talk/Silicon/syndieborg_exclaim.ogg +- type: speechSounds + id: Xenoborg + saySound: + path: /Audio/Voice/Xenoborg/xenoborg_talk.ogg + askSound: + path: /Audio/Voice/Xenoborg/xenoborg_ask.ogg + exclaimSound: + path: /Audio/Voice/Xenoborg/xenoborg_exclaim.ogg + - type: speechSounds id: Pai saySound: diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 045d316d0f..aed28d5fc1 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -353,6 +353,9 @@ - type: Tag id: CoordinatesDisk +- type: Tag # designed to let corgis wear things; at present only for SmartCorgi. View PR 33737 on upstream for more dog wearables + id: CorgiWearable + - type: Tag #Ohioans die happy id: Corn @@ -443,6 +446,9 @@ - type: Tag id: Diagonal +- type: Tag + id: Diamond + - type: Tag id: Dice @@ -512,6 +518,33 @@ - type: Tag id: EmitterBolt +- type: Tag + id: EncryptionCargo + +- type: Tag + id: EncryptionCommand + +- type: Tag + id: EncryptionCommon + +- type: Tag + id: EncryptionElse + +- type: Tag + id: EncryptionEngineering + +- type: Tag + id: EncryptionMedical + +- type: Tag + id: EncryptionScience + +- type: Tag + id: EncryptionSecurity + +- type: Tag + id: EncryptionService + - type: Tag id: Enzyme @@ -612,6 +645,9 @@ - type: Tag id: Goliath +- type: Tag + id: GoliathPlate + - type: Tag id: GPS @@ -705,6 +741,9 @@ - type: Tag id: HighSecDoor +- type: Tag + id: HivelordRemains + - type: Tag id: HiViz @@ -928,6 +967,9 @@ - type: Tag id: Multitool +- type: Tag + id: Mushroom + - type: Tag id: NoBlockAnchoring @@ -955,6 +997,21 @@ - type: Tag id: Ore +- type: Tag + id: OreBananium + +- type: Tag + id: OreGold + +- type: Tag + id: OrePlasma + +- type: Tag + id: OreSilver + +- type: Tag + id: OreUranium + - type: Tag id: Packet @@ -1133,6 +1190,9 @@ - type: Tag id: SalvageExperiment +- type: Tag + id: SalvageScrap + - type: Tag id: Scarf @@ -1364,9 +1424,6 @@ - type: Tag id: VoiceTrigger -- type: Tag # Eating fix tag - id: VoxFood - - type: Tag id: Wall diff --git a/Resources/Prototypes/typing_indicator.yml b/Resources/Prototypes/typing_indicator.yml index e82e50c6ac..91d9640951 100644 --- a/Resources/Prototypes/typing_indicator.yml +++ b/Resources/Prototypes/typing_indicator.yml @@ -1,62 +1,86 @@ - type: typingIndicator id: default typingState: default0 + idleState: default3 - type: typingIndicator id: robot typingState: robot0 + idleState: robot3 + +- type: typingIndicator + id: xenoborg + typingState: xenoborg0 + idleState: xenoborg3 - type: typingIndicator id: alien typingState: alien0 + idleState: alien3 - type: typingIndicator id: guardian typingState: guardian0 + idleState: guardian3 - type: typingIndicator id: holo typingState: holo0 + idleState: holo3 offset: 0, 0.0625 - type: typingIndicator id: lawyer typingState: lawyer0 + idleState: lawyer3 offset: 0, 0.125 - type: typingIndicator id: moth typingState: moth0 + idleState: moth3 offset: 0, 0.125 - type: typingIndicator id: spider typingState: spider0 + idleState: spider3 offset: 0, 0.125 - type: typingIndicator id: vox typingState: vox0 + idleState: vox0 # TODO add idle state sprite offset: -0.125, 0.125 - type: typingIndicator id: lizard typingState: lizard0 + idleState: lizard3 offset: 0, 0.0625 - type: typingIndicator id: slime typingState: slime0 + idleState: slime3 offset: 0, 0.125 - type: typingIndicator id: gingerbread typingState: gingerbread0 + idleState: gingerbread3 offset: 0, 0.125 - type: typingIndicator id: diona typingState: diona0 + idleState: diona3 + offset: 0, 0.125 + +- type: typingIndicator + id: regal + typingState: regal0 + idleState: regal3 offset: 0, 0.125 # Sunrise-Start diff --git a/Resources/ServerInfo/Guidebook/Cargo/Salvage.xml b/Resources/ServerInfo/Guidebook/Cargo/Salvage.xml index 3e7410d513..9e9c3833f9 100644 --- a/Resources/ServerInfo/Guidebook/Cargo/Salvage.xml +++ b/Resources/ServerInfo/Guidebook/Cargo/Salvage.xml @@ -1,57 +1,194 @@ -# Утилизация обломков + # Salvage -Утилизация пролетающих мимо станции обломков является одним из основных источников дохода отдела снабжения... пока крайней мере до того момента, когда атмосферные техники притащат канистру фризона, стоимостью в дофиглион кредитов. Однако до тех пор вашей основной задачей будет заработок кредитов, а не постройка шаттла. + [color=cyan]Salvage[/color] is one of Cargo's key, but also most dangerous, sources of income. Salvage extracts money from [color=cyan]Space Debris[/color] and the enigmatic [color=cyan]Mining Asteroid[/color]. -## Подготовка к утилизации + While the void of space is full of terrors, with proper preparation and coordination any Salvage Team can make a lot of money for Cargo. -Прежде чем приступить к утилизации обломков, вам понадобится несколько вещей. + ## Preparations - - - - -Без скафандра вам не обойтись, поскольку именно он защищает от космоса. С ним отсутствие давления и сверхнизкие температуры космического пространства вам не страшны. Кроме того, он обеспечивает вас дополнительной защитой от любых представителей космической фауны, с которыми вы можете столкнуться. Магнитные ботинки, будучи включёнными, дадут вам возможность спокойно ходить по обломку и передвигать предметы, и защитят вас от подскальзывания! + Before leaving the station, ensure you are prepared with all the required equipment. Otherwise, you will die before seeing any profits! - - - - -Для перемещения по космосу в отсутствии пола и гравитации вам потребуются джетпаки. Топливом джетпакам служат газы вроде кислорода, азота, водяного пара, или любые другие, которые можно найти в канистрах. + + + + + - - - - - -В космосе газов нет, всем расам необходимо чем-то дышать, следовательно, не обойтись без дыхательной экипировки. Дыхательная маска используется для подключения газового баллона к вашему дыхательному отверстию, рту; в газовом баллоне хранится потребляемый газ, и его запас можно пополнить, поместив баллон в канистру с газом. Все расы дышат кислородом (по умолчанию содержится в синих и жёлтых баллонах), кроме слаймолюдов, которым нужен азот (красные баллоны). + Everything needed before leaving the station is provided inside Salvage's starting room. While Science can research better weapons and equipment, it is best to be equipped with something rather than nothing. - - - - - -Крушители это ваша первая и последняя линия обороны от космической фауны и всего остального, желающего вам навредить. Кинжал представляет собой обычный нож, а вот крашер обладает особым свойством: если вы выстрелите из неё во что-то, а затем нанесёте удар в ближнем бою, то цель получит двойной урон. Протокинетический ускоритель - это оружие дальнего боя, обладающее автоматической перезарядкой, которым можно копать руду, и которое может придать вам ускорение в случае, если ваш джетпак закончится в космосе. + + + + + - - - - - - -Кирка и горный бур полезны для быстрой добычи камней или разрушения конструкций. -Мешок с рудой автоматически подбирает ближайшую руду, если он находится на поясе. -Пояс для инструментов может быть полезен для хранения различных предметов, если уже не занято сумкой с рудой. + The most basic equipment you need is the EVA setup. -## Как утилизаторы делают деньги - - - - - - -Магнит обломков и Экспедиции - два основных способа утилизаторам проявить себя и принести прибыль станции. -Магнит обломков, если его активировать, "притянет" и сгенерирует около станции случайный обломок из списка доступных. Найдя и добравшись до обломка, Вам придётся сразиться с космической фауной, охраняющей его, после чего вы сможете приступить к его разграблению. Обломок просуществует всего 4 минуты, после чего исчезнет, унеся с собой всё что утилизаторы не успели утащить. В худшем случае он прихватит с собой тела мёртвых и критически раненых утилизаторов. После этого магниту потребуется некоторое время на остывание-перезарядку, чтобы вновь стать доступным к использованию. -Экспедиции это своего рода приключения, в которых вы можете участвовать вместе со своими товарищами-утилизаторами. Для начала вы должны выбрать задание на консоли утилизаторских экспедиций. Все они различаются по своей сложности и обещанному за выполнение вознаграждению. После этого вы должны прибыть в зону экспедиции на шаттле, совершив БСС-перемещение. По прибытии в чате появится сообщение с указанием направления, в котором находится подземелье, куда вы должны отправиться, чтобы преодолеть опасности и захватить добычу! + - [color=cyan]Spationaut Hardsuit[/color]: This keeps you alive in space. [italic]Remember to activate the helmet so you can breathe and turn on its built-in flashlight[/italic]. + - [color=cyan]Magboots[/color]: These provide you with gravity when exploring space debris while also making you slip-proof. + - [color=cyan]Oxygen/Nitrogen[/color]: Depending on your species, you will need [color=cyan]Nitrogen[/color] (slimes & vox) or [color=cyan]Oxygen[/color] (every other species). The [color=cyan]Gas Tank Dispenser[/color] has all the tanks needed, so stock up. + + + + + All Salvage Specialists must be armed, in case they need to defend themselves from hostiles. + + - [color=cyan]Proto-Kinetic Accelerator[/color]: This gun has infinite ammunition, allowing you to slowly mine and fly through space. Science can print upgrades to make it hit harder, shoot farther, and cycle faster. + + + + + + + While you can technically mine and gather ore with just a PKA and a Backpack, Salvagers start with more specialized gear for the task. + + - [color=cyan]Pickaxe[/color]: This is required for mining at any reasonable speed when wielded. Also, it works as a melee weapon! + - [color=cyan]Ore Bag[/color]: When equipped in your belt slot, this magnetizes nearby ore and automatically picks it up for you. + + + + + + + + + Although you can acquire more advanced forms of travel, you'll begin with more humble methods. + + - [color=cyan]Fire Extinguisher[/color]: The poor man's Jetpack. While in space, you can use a Fire Extinguisher's knockback to propel yourself in the opposite direction. It can be refilled with any liquid. + - [color=cyan]Grappling Gun[/color]: A movement tool with infinite potential. It's fired like any other gun, and can be retracted by reloading. Once you hook onto something, click [color=yellow][bold][keybind="UseSecondary"][/bold][/color] to reel yourself in. + - [color=cyan]Salvage PDA[/color]: Your PDA spawns with the AstroNav GPS program installed, allowing you to use it as a GPS when held in hand. Be sure to note the station's coordinates before you head out! + - [color=cyan]Mass Scanner Computer[/color]: A computer console which provides a top-down view of the station and nearby entities in space. Use it to double-check the location and direction of debris or asteroids before you travel to them. + + + + + + + + Finally, there are also some helpful but not required equipment that is available to Salvage. + + - [color=cyan]Handheld Radio[/color]: This lets you communicate with other Salvage Specialists even if regular radio communications are unavailable. + - [color=cyan]Global Positioning System[/color]: A spare GPS system, identical to the one pre-installed in your PDA. Useful as a backup option or as equipment from newly-hired Salvagers. + - [color=cyan]Utility Belt[/color]: This holds all the equipment you will need to loot machines and the like from Salvage Wrecks and the Mining Asteroid. Wear it anytime you aren't planning on mining. + + ## Salvage Magnet Pulls + + Once prepared, it is time to go and explore the stars. + + + + + + The [color=cyan]Salvage Magnet[/color] is the machine that brings space debris into nearby space. + + The Salvage Magnet provides five offers: they will be a random mix of [color=cyan]Asteroids[/color], [color=cyan]Salvage Wrecks[/color], and [color=cyan]Space Debris[/color]. After choosing one of the offers, the selected chunk will be pulled in for the next [bold]6 minutes[/bold]. At the end of this time, any loot remaining on the pulled grid will disappear. If none of the offers look appealing to you, they refresh every [bold]3 minutes[/bold] if unclaimed. + + During the 6 minutes, fly to the pulled grid, extract all profit possible, and then fly back to the station. + +### Asteroids + + + + + + + + The Salvage Magnet provides information on the types of resources on an asteroid, which can help you decide which to prioritize based on the current needs of the station. This is a relatively safe option for mining as there are no hostile creatures on asteroids - though there are certainly still threats... + + All you need to do is fly around and mine the ore with your [color=cyan]Pickaxe[/color] and [color=cyan]Ore Bag[/color]. Once you have collected all the ore, you can refine it into materials through the [color=cyan]Ore Processor[/color]. + + Tread lightly - hidden in seemingly normal rock, chunks of [color=red]Gibtonite[/color] hide, ready to explode at the slightest disturbance. + +### Space Debris + + + + + + + + [color=cyan]Space Debris[/color] is a versatile option, providing vital basic materials (such as steel, glass, etc) in short supply at the start of the shift. Items and scrap are scattered across the debris, and must be collected. Consider dragging along one of the lockers or crates aboard the debris for easier storage. + + Debris is sprinkled with numerous threats. Bloodthirsty [color=red]Space Carp[/color] and [color=red]Sharkminnows[/color] infest them, eager to rush any Salvagers that come nearby. [color=red]Landmines[/color] are also rarely found aboard debris, capable of incapacitating the unwary explorer. + + Once you return from the Debris, place any scrap you found aboard the debris into your department's [color=cyan]Recycler[/color] to transform it into useful materials and give it to Cargo to distribute to the station. Should you find valuables aboard the Debris, like [color=yellow]Coins, Rings, and Watches,[/color] give them to Cargo so they can be sold at the [color=cyan]Automated Trade Station[/color] for profit. + + ### Salvage Wrecks + + + + + + + + The Salvage Magnet provides information on the size of a Wreck. Salvage Wrecks vary wildly in both threat and value, but they often have more diverse threats than [color=cyan]Space Debris[/color]. Keep your distance from hostiles and shoot at them with the [color=cyan]Proto-Kinetic Accelerator[/color]. Look out for valuable loot and machinery, and use your [color=cyan]Appraisal Tool[/color] to check the value of different things. + + ## Progression & Upgrades + + While your starting equipment is all you need to do your job at a basic level, advanced gear makes your work far easier, and gives you the equipment necessary to let you tackle the dreaded [color=red]Mining Asteroid[/color] + + ### Salvage Job Board + + + + + + The [color=cyan]Salvage Job Board[/color] is a computer located in the Salvage Bay. It serves as Salvage's version of the [color=cyan]Cargo Bounty Computer[/color], allowing Salvagers to fulfill specific jobs with Salvage-specific materials in order to earn Spesos and unlock [color=yellow]Advanced Salvage Gear[/color]. + + Once you gather the supplies necessary to complete a job, print out a [color=cyan]Salvage Job Shipment Label[/color] and attach it to the crate or locker containing the goods. You can use your [color=cyan]Appraisal Tool[/color] to double-check that it's ready for sale. The prepared bounty can then be brought to the [color=cyan]Automated Trade Station[/color] to earn Cargo Spesos and to unlock new Salvage-specific crates in the [color=cyan]Cargo Request Computer[/color]. + + + + + + + + Completing Salvage Jobs will upgrade your rank and unlock new equipment purchases in the [color=cyan]Cargo Request Computer[/color], including: + + - [color=cyan]Fultons[/color]: Once a Fulton has been linked to a Fulton Beacon, they can be attached to unanchored structures like crates or machines to teleport them back to the Beacon after a short wait. Exceptionally useful for moving both items and people. + - [color=cyan]Crusher Weapons[/color]: A series of upgraded melee options for Salvagers to purchase. The [color=red]Crusher Dagger[/color] is an upgrade to your Survival knife, swinging automatically and far faster than a regular knife. The [color=red]Crusher[/color] and upgraded [color=red]Crusher Glaive[/color] are gigantic polearms which can fire special projectiles when wielded. These projectiles do no damage on their own, but if a marked enemy is meleed quickly enough, you'll leech some of their life away to heal yourself. All Crusher weaponry comes with a built-in floodlamp. + - [color=cyan]Seismic Charges[/color]: Mining explosives intended to be used to break up asteroids or breach into dangerous wrecks. Remember that you can link them to a remote detonator or set them to start detonating when attached to a wall for safer demolition. + + ### Working with Science + + + + + + + The [color=purple]Science Department[/color] is a crucial partner for Salvage. Science depends on Salvage for both basic materials (steel, plastic, glass) and advanced materials (silver, gold, plasma, and uranium), and Salvage relies on Science for the upgraded equipment that makes their work easier. + + Whenever possible, communicate with Science and try to prioritize their requests. While Science will need large quantities of basic materials, they rely entirely on you for their supply of [color=yellow]Gold, Silver and Uranium,[/color] all of which are required for your advanced gear. If you want Science to help you, you have to help them - and vice-versa. + + + + + + + + Science is the only source for a variety of extremely useful gear, including: + + - [color=cyan]Mining Gear[/color]: Science can provide you with [color=yellow]Mining Drills and Mineral Scanners[/color], which make mining faster and easier. They can also build you an [color=yellow]Industrial Ore Processor[/color], which processes ore into finished materials at a much better rate. + - [color=cyan]Handheld Mass Scanner[/color]: A pocket-portable Mass Scanner Computer. Though it requires a battery to use, it lets you view your position anywhere in space. + - [color=cyan]PKA Upgrades[/color]: You can upgrade your PKA with up to two unique upgrades from a pool of three: [color=red]Damage,[/color] [color=yellow]Fire Rate,[/color] and [color=green]Range[/color]. + + ## The Mining Asteroid + + Once you feel that you've mastered the Salvage Magnet, the distant [color=red]Mining Asteroid[/color] serves as the next step in a Salvager's journey. Reaching the Mining Asteroid generally requires a shuttle or jetpacks, and it should generally not be explored alone due to the exceptional dangers within. + + + + + + + + The Mining Asteroid consists of two sections: the [color=cyan]Dungeon[/color], a randomly-generated structure filled with enemies and material loot, and the [color=cyan]Asteroid[/color], which contains vast deposits of mineral wealth dotted with pockets of loot and monsters. + + Beware of the monsters aboard the Mining Asteroid, as they stand head and shoulders above the threats present on Wrecks and Debris. + + - [color=cyan]Goliaths[/color]: Titanic beasts which can incapacitate targets with writhing tendrils, leaving them helpless against their massive claws and gnashing teeth. They're a pain to take down, but they can be butchered for valuable [color=cyan]Goliath Hide Plating,[/color] useful in both completing Salvage Jobs and upgrading your Spationaut Suit. + - [color=cyan]Hivelords[/color]: Fast moving and erratic anomalies. They prefer to keep their distance in combat, spewing out small [color=cyan]Hivelord Brood[/color] to swarm Salvagers. They're not especially tough, so ambush them quickly before they can summon a horde to drown you in. They can be butchered for the quick-rotting [color=cyan]Hivelord Cores,[/color] which are used to complete Salvage Jobs and can also be eaten raw for quick healing. + - [color=cyan]Basilisks[/color]: An ice-encrusted terror that lurks in the shadows. Basilisks can fire freezing energy bolts which damage and slow their targets, and will often use them to soften up a target before moving in for the kill. Once defeated, they can be butchered for invaluable [color=cyan]Diamond Ore[/color]. diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR9MassSabotage.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR9MassSabotage.xml index 3f8272c551..d999c6c483 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR9MassSabotage.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR9MassSabotage.xml @@ -1,28 +1,37 @@ # Roleplay Rule 9 - As an antagonist, do not cause excessive death, damage, or destruction beyond your objectives - This rule is not intended to disallow reasonable steps taken to complete your objectives. As an antagonist, you can always kill in bona fide self defense. Taking steps to permanently round remove many people who are no longer an immediate threat to you is almost always excessive, even if it is done to prevent yourself from being discovered. - This rule is not intended to disallow all antagonist activity unrelated to objectives. Antagonists may cause a level of disruption to the station that is proportional to their objectives, even if it is unrelated to their objectives. As an antagonist, killing a single person in a round is not on its own be a violation of this rule. + This rule is not intended to disallow reasonable steps taken to complete your objectives. As an antagonist, you can always kill in bona fide self defense. You can kill if the action of killing could potentially advance your objectives. Taking steps to permanently round remove many people who are not a threat to you is almost always excessive. + + Unless told otherwise, antags should avoid causing disruption to the station or other players that could potentially cause entire departments to stop functioning, either permanently or for a significant portion of the round. Major disruptive actions are acceptable to get evac called if the objectives require that the antagonist escapes to Centcomm, this does not include singuloose/tesloose. Antagonists should also avoid round-removing a large number of players unnecessarily. + + As an antagonist, killing a few objective unrelated persons in a round is not on its own a violation of this rule. Pursuing a gimmick unrelated to the objectives entirely is also permissible as long as this gimmick does not cause nonantagonists to self antag. ## MRP Amendment As an antagonist, do not make the Emergency Shuttle uninhabitable or otherwise cause excessive death, damage, or destruction to the Emergency Shuttle. ## Exemptions - The "die a glorious death" objective allows antagonists to ignore this rule entirely. + The Syndicate Agent “die a glorious death” objective allows antagonists to ignore this rule entirely. Nuclear Operatives and Wizards are also exempt from this rule as of the time of writing. ## Examples Acceptable: - Permanently round removing people who you have the objective to kill. - Causing massive station damage and chaos as an antagonist with the "die a glorious death" objective. - - Killing anyone you see as a nuclear operative. + - Killing anyone you see while playing as nuclear operative(s). - Permanently round removing a single person so that you can impersonate them to make it easier for you to complete a steal objective. - - Sabotaging station power 10 minutes into the round to try to get the shuttle called because you've completed all of your other objectives and have one to escape on the shuttle alive. - - Sabotaging a department's power 10 minutes into the round to make a steal objective easier to accomplish. + - Sabotaging station power 10 minutes into the round to try to get the shuttle called because you’ve completed all of your other objectives and have one to escape on the shuttle alive. (Destroying the Particle Accelerator, TEG and all backup generation in Engineering but not loosing a singularity/tesla.) + - Sabotaging a department’s power 10 minutes into the round to make a steal objective easier to accomplish. (Such as cutting the departments MV power, or removing/destroying the substation.) - Permanently round removing many people who have demonstrated a persistence and a capability to either kill you or interfere with the completion of your objectives. + - Killing an unrelated person in order to steal items held by said person, such as killing an engineer for their hardsuit and tools. + - As a traitor, buying a singularity attractor to guide the singularity to a kill target when it is already loosed. + - Bombing an entire department provided it is an attempt to kill a designated target within said department. Prohibited: - As a traitor with 3 kill objectives, taking steps to permanently round remove many non-objective people who are no longer an immediate threat to you, even if it is done to prevent yourself from being discovered. - Setting up an electrified grille in maintenance and using it to kill anyone who walks into it with the hope that one of your objectives will be one of them. - - Sabotaging power station-wide 10 minutes into the round to make a steal objective easier to accomplish. + - Sabotaging power station-wide 10 minutes into the round to make a steal objective easier to accomplish. (Such as destroying the TEG, Particle Accelerator and all backup generators in Engineering.) + - Loosing the tesla or singularity in the hope that it kills your objectives. + - Seeking out and gibbing/round removing an entire department and random people for no actual reason. This includes the security department. + - Loosing the tesla or singularity in order to get evac called, even if objectives are already completed. diff --git a/Resources/Textures/Clothing/Back/Satchels/mime.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/mime.rsi/equipped-BACKPACK.png index ea4861dfc2..d40037aad7 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/mime.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Satchels/mime.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/mime.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/mime.rsi/icon.png index 52f7806cbb..04ccb19198 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/mime.rsi/icon.png and b/Resources/Textures/Clothing/Back/Satchels/mime.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/mime.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Satchels/mime.rsi/inhand-left.png index f471b672b2..7c034cef7e 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/mime.rsi/inhand-left.png and b/Resources/Textures/Clothing/Back/Satchels/mime.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/mime.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Satchels/mime.rsi/inhand-right.png index 4d23a7000a..fd54558b1e 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/mime.rsi/inhand-right.png and b/Resources/Textures/Clothing/Back/Satchels/mime.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING-monkey.png b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/brassknuckleduster.rsi/equipped-HAND-kangaroo.png similarity index 70% rename from Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING-monkey.png rename to Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/brassknuckleduster.rsi/equipped-HAND-kangaroo.png index 10358583f4..5089f8e72e 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/brassknuckleduster.rsi/equipped-HAND-kangaroo.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/brassknuckleduster.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/brassknuckleduster.rsi/meta.json index ac15590b67..ff57de9b8d 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/brassknuckleduster.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/brassknuckleduster.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Icon taken from ParadiseSS13 at commit https://github.com/ParadiseSS13/Paradise/commit/391f296ed9b06d9bd13daca5b51c68740e714f1f, and altered by Unkn0wnGh0st333; In hand sprites done by Unkn0wnGh0st333 on github", + "copyright": "Icon taken from ParadiseSS13 at commit https://github.com/ParadiseSS13/Paradise/commit/391f296ed9b06d9bd13daca5b51c68740e714f1f, and altered by Unkn0wnGh0st333; In hand sprites done by Unkn0wnGh0st333 on github, inhand-kangaroo by brainfood (github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HAND", "directions": 4 }, + { + "name": "equipped-HAND-kangaroo", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/goldenknuckleduster.rsi/equipped-HAND-kangaroo.png b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/goldenknuckleduster.rsi/equipped-HAND-kangaroo.png new file mode 100644 index 0000000000..36235b25f1 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/goldenknuckleduster.rsi/equipped-HAND-kangaroo.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/goldenknuckleduster.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/goldenknuckleduster.rsi/meta.json index 6623f6a5e7..779df3938d 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/goldenknuckleduster.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/goldenknuckleduster.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Icon taken from ParadiseSS13 at commit https://github.com/ParadiseSS13/Paradise/commit/391f296ed9b06d9bd13daca5b51c68740e714f1f; In hand sprites done by Unkn0wnGh0st333 on github", + "copyright": "Icon taken from ParadiseSS13 at commit https://github.com/ParadiseSS13/Paradise/commit/391f296ed9b06d9bd13daca5b51c68740e714f1f; In hand sprites done by Unkn0wnGh0st333 on github, inhand-kangaroo by brainfood (github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HAND", "directions": 4 }, + { + "name": "equipped-HAND-kangaroo", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/knuckleduster.rsi/equipped-HAND-kangaroo.png b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/knuckleduster.rsi/equipped-HAND-kangaroo.png new file mode 100644 index 0000000000..7bcd9d339c Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/knuckleduster.rsi/equipped-HAND-kangaroo.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/knuckleduster.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/knuckleduster.rsi/meta.json index cc850c7381..c59c2866f0 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/knuckleduster.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/knuckleduster.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Icon taken from ParadiseSS13 at commit https://github.com/ParadiseSS13/Paradise/commit/391f296ed9b06d9bd13daca5b51c68740e714f1f; In hand sprites done by Unkn0wnGh0st333 on github", + "copyright": "Icon taken from ParadiseSS13 at commit https://github.com/ParadiseSS13/Paradise/commit/391f296ed9b06d9bd13daca5b51c68740e714f1f; In hand sprites done by Unkn0wnGh0st333 on github, inhand-kangaroo by brainfood (github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HAND", "directions": 4 }, + { + "name": "equipped-HAND-kangaroo", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/syndicateknuckleduster.rsi/equipped-HAND-kangaroo.png b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/syndicateknuckleduster.rsi/equipped-HAND-kangaroo.png new file mode 100644 index 0000000000..0c6a471a5a Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/syndicateknuckleduster.rsi/equipped-HAND-kangaroo.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/syndicateknuckleduster.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/syndicateknuckleduster.rsi/meta.json index 7297aecddd..fae51fea4a 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/syndicateknuckleduster.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/KnuckleDusters/syndicateknuckleduster.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Icon taken from ParadiseSS13 at commit https://github.com/ParadiseSS13/Paradise/commit/391f296ed9b06d9bd13daca5b51c68740e714f1f; In hand sprites done by Unkn0wnGh0st333 on github", + "copyright": "Icon taken from ParadiseSS13 at commit https://github.com/ParadiseSS13/Paradise/commit/391f296ed9b06d9bd13daca5b51c68740e714f1f; In hand sprites done by Unkn0wnGh0st333 on github, inhand-kangaroo by brainfood (github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HAND", "directions": 4 }, + { + "name": "equipped-HAND-kangaroo", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Hands/Gloves/northstar.rsi/equipped-HAND-kangaroo.png b/Resources/Textures/Clothing/Hands/Gloves/northstar.rsi/equipped-HAND-kangaroo.png new file mode 100644 index 0000000000..f554113b67 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/northstar.rsi/equipped-HAND-kangaroo.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/northstar.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/northstar.rsi/meta.json index 3d3bd865ea..a442600ce5 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/northstar.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/northstar.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/37864/commits/efdef3f1f997d1c0575c36cd31a5db575d1df0ca#diff-a4eb7c89f7231f0aaf0c2f69d730dea56383019f2aa5c6a1d91a82c781b528e6. Modified by hercoyote23 (github) for SS14, inhand sprites by SeamLesss (Github)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/37864/commits/efdef3f1f997d1c0575c36cd31a5db575d1df0ca#diff-a4eb7c89f7231f0aaf0c2f69d730dea56383019f2aa5c6a1d91a82c781b528e6. Modified by hercoyote23 (github) for SS14, inhand sprites by SeamLesss (Github), inhand-kangaroo sprite by brainfood (Github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HAND", "directions": 4 }, + { + "name": "equipped-HAND-kangaroo", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vox.png index 50d4ec39d5..f7ce01a4fd 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vox.png and b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET.png index 785dfd5da3..4292eb09c3 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/icon.png index b3927b1cba..386bbe4945 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/icon.png and b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/inhand-left.png index 801be1333e..27882d1ea7 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/inhand-right.png index 3d87b5cdb2..cea3e4529b 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vox.png index b5f224b98a..14d4e8fe9e 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vox.png and b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET.png index f6f0e58c6b..38cbd9bb43 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/icon.png index 25a7caf089..eeb4026632 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/icon.png and b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-left.png index 077fb62a2c..f323630b9e 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-right.png index 41261d9815..c7cdc263a6 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vox.png index 62ff233af1..af9b55c5c7 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vox.png and b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET.png index f5054f7fd5..b3193e46f3 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/icon.png index 93a7db32e6..b3fffdc601 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/icon.png and b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-left.png index 5274c94828..99a52d0c15 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-right.png index 93a06a90a7..5895c606b8 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json index 89a026869f..dd53b26fa7 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "copyright": "Sprite edited by Flareguy for SS14, modified from space suit sprites taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. Vox state based off of biosuit, taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/black.rsi/icon.png b/Resources/Textures/Clothing/Neck/Scarfs/black.rsi/icon.png index f5d0127c2e..7e7b1c56a5 100644 Binary files a/Resources/Textures/Clothing/Neck/Scarfs/black.rsi/icon.png and b/Resources/Textures/Clothing/Neck/Scarfs/black.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Scarfs/black.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/black.rsi/meta.json index 276ae36807..30a175e77f 100644 --- a/Resources/Textures/Clothing/Neck/Scarfs/black.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Scarfs/black.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by MrGreen06#0618 (discord)", + "copyright": "Sprited by MrGreen06#0618 (discord), resprited by SeamLesss (GitHub)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING-reptilian.png deleted file mode 100644 index 2222d58795..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 4bee6de2be..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/icon.png deleted file mode 100644 index 0e73a64eec..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/inhand-left.png deleted file mode 100644 index b9cf69845c..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/inhand-right.png deleted file mode 100644 index 271fd3b31c..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/meta.json deleted file mode 100644 index 2a19e60919..0000000000 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. Further modifications and derivate works (inhand-left and inhand-right) under same license, derivative monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-reptilian", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-vox.png index 2fb7750843..82d302132e 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png index 48787f238c..3ef25607c0 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/icon.png index 62d95e0186..6f44bca600 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/inhand-left.png index ffea0dee65..5af55ca2d7 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/inhand-right.png index a5514767c4..856f95a0df 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json index e2d454f88c..b04533af16 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-vox.png index 99b555f7ac..90cd8f442f 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png index 8b85a77635..06739dbd23 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/icon.png index 3fd01918c6..49053015ca 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-left.png index 974a3be3a7..25308334aa 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-right.png index bd076ae1d7..580db90db0 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json index 5a43e4755b..08ba5874c2 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, reptilian made by denlemp(692533587760906270)", + "copyright": "Sprites by Flareguy & cboyjet, modified from space suit sprites taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34. Vox state based off of biosuit, taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-reptilian", - "directions": 4 - }, { "name": "equipped-OUTERCLOTHING-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-vox.png index 9601695dac..b24ba8bb73 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING.png index 3f9884ee64..660c17d520 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png index 3fbb026d65..309948200d 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-left.png index 375d486e0f..47ec2e8841 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-right.png index 666db5a89e..e938240c40 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json index b73607f229..83045bbf06 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, monkey derivative made by brainfood1183 (github) for ss14, reptilian made by denlemp(692533587760906270)", + "copyright": "Sprites by Flareguy & cboyjet, modified from space suit sprites taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, monkey derivative made by brainfood1183 (github) for ss14. Vox state based off of biosuit, taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -22,10 +22,6 @@ "name": "equipped-OUTERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-vox.png index 7f71b04f1c..d8e39aa715 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png index 446f160a54..123a60fdc4 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png index 8e6e1c37a5..e8bbf118eb 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-left.png index 688af2beaf..3bb930beaf 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-right.png index 9181f8a1d0..d368eff133 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..145f1b336a Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/icon.png new file mode 100644 index 0000000000..5d80118067 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/inhand-left.png new file mode 100644 index 0000000000..34145fadf5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/inhand-right.png new file mode 100644 index 0000000000..5c552db8f0 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/meta.json new file mode 100644 index 0000000000..f03ba648ea --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/rainbow.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified by paige404 for SS14. Sprite adapted from https://github.com/space-wizards/space-station-14/blob/40044203e6ae7d7d2958c02e0d5e98dacdcd23d8/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/, with coloration from https://github.com/space-wizards/space-station-14/tree/f46a6a8d813dd20f4a86d5d0bc4a0c70cbd821dd/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Effects/speech.rsi/diona3.png b/Resources/Textures/Effects/speech.rsi/diona3.png new file mode 100644 index 0000000000..0b0e62e12d Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/diona3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/gingerbread3.png b/Resources/Textures/Effects/speech.rsi/gingerbread3.png new file mode 100644 index 0000000000..ef68fadf53 Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/gingerbread3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/meta.json b/Resources/Textures/Effects/speech.rsi/meta.json index fcd9d672c7..8d21a91865 100644 --- a/Resources/Textures/Effects/speech.rsi/meta.json +++ b/Resources/Textures/Effects/speech.rsi/meta.json @@ -379,6 +379,35 @@ { "name": "machine2" }, + { + "name": "regal0", + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.4 + ] + ] + }, + { + "name": "regal1" + }, + { + "name": "regal2" + }, + { + "name": "regal3", + "delays": [ + [ + 0.2, + 0.3, + 0.3, + 0.5, + 0.5 + ] + ] + }, { "name": "machine3", "delays": [ diff --git a/Resources/Textures/Effects/speech.rsi/regal0.png b/Resources/Textures/Effects/speech.rsi/regal0.png new file mode 100644 index 0000000000..7f877afff5 Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/regal0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/regal1.png b/Resources/Textures/Effects/speech.rsi/regal1.png new file mode 100644 index 0000000000..b900e4daf5 Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/regal1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/regal2.png b/Resources/Textures/Effects/speech.rsi/regal2.png new file mode 100644 index 0000000000..c87c16b6a3 Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/regal2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/regal3.png b/Resources/Textures/Effects/speech.rsi/regal3.png new file mode 100644 index 0000000000..7451dfa523 Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/regal3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/xenoborg0.png b/Resources/Textures/Effects/speech.rsi/xenoborg0.png new file mode 100644 index 0000000000..c5600d89cd Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/xenoborg0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/xenoborg1.png b/Resources/Textures/Effects/speech.rsi/xenoborg1.png new file mode 100644 index 0000000000..6c241e9063 Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/xenoborg1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/xenoborg2.png b/Resources/Textures/Effects/speech.rsi/xenoborg2.png new file mode 100644 index 0000000000..f4b388567b Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/xenoborg2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/xenoborg3.png b/Resources/Textures/Effects/speech.rsi/xenoborg3.png new file mode 100644 index 0000000000..3e543ccbe8 Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/xenoborg3.png differ diff --git a/Resources/Textures/Interface/Ashen/Slots/id.png b/Resources/Textures/Interface/Ashen/Slots/id.png index 02cd231604..c1c5bd79ef 100644 Binary files a/Resources/Textures/Interface/Ashen/Slots/id.png and b/Resources/Textures/Interface/Ashen/Slots/id.png differ diff --git a/Resources/Textures/Interface/Ashen/Slots/pda.png b/Resources/Textures/Interface/Ashen/Slots/pda.png deleted file mode 100644 index c1c5bd79ef..0000000000 Binary files a/Resources/Textures/Interface/Ashen/Slots/pda.png and /dev/null differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/id.png b/Resources/Textures/Interface/Clockwork/Slots/id.png index 63ace2fc65..c0951b6cd1 100644 Binary files a/Resources/Textures/Interface/Clockwork/Slots/id.png and b/Resources/Textures/Interface/Clockwork/Slots/id.png differ diff --git a/Resources/Textures/Interface/Default/Slots/id.png b/Resources/Textures/Interface/Default/Slots/id.png index b50a9770a7..8781831c00 100644 Binary files a/Resources/Textures/Interface/Default/Slots/id.png and b/Resources/Textures/Interface/Default/Slots/id.png differ diff --git a/Resources/Textures/Interface/Default/filled_left_arrow.svg b/Resources/Textures/Interface/Default/filled_left_arrow.svg new file mode 100644 index 0000000000..23c7ace4ed --- /dev/null +++ b/Resources/Textures/Interface/Default/filled_left_arrow.svg @@ -0,0 +1,11 @@ + + + + + diff --git a/Resources/Textures/Interface/Default/filled_left_arrow.svg.192dpi.png b/Resources/Textures/Interface/Default/filled_left_arrow.svg.192dpi.png new file mode 100644 index 0000000000..02c05e303b Binary files /dev/null and b/Resources/Textures/Interface/Default/filled_left_arrow.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/Default/filled_left_arrow.svg.192dpi.png.yml b/Resources/Textures/Interface/Default/filled_left_arrow.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/Default/filled_left_arrow.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/Default/filled_right_arrow.svg b/Resources/Textures/Interface/Default/filled_right_arrow.svg new file mode 100644 index 0000000000..5551942522 --- /dev/null +++ b/Resources/Textures/Interface/Default/filled_right_arrow.svg @@ -0,0 +1,11 @@ + + + + + diff --git a/Resources/Textures/Interface/Default/filled_right_arrow.svg.192dpi.png b/Resources/Textures/Interface/Default/filled_right_arrow.svg.192dpi.png new file mode 100644 index 0000000000..d5db044d0e Binary files /dev/null and b/Resources/Textures/Interface/Default/filled_right_arrow.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/Default/filled_right_arrow.svg.192dpi.png.yml b/Resources/Textures/Interface/Default/filled_right_arrow.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/Default/filled_right_arrow.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/Default/meta.json b/Resources/Textures/Interface/Default/meta.json index 6111696883..42c81e97e6 100644 --- a/Resources/Textures/Interface/Default/meta.json +++ b/Resources/Textures/Interface/Default/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-NC-SA-3.0", - "copyright": "Taken from https://github.com/goonstation/goonstation at commit e77d85d9c1d93aa32da7702737ceeac2b56738ac, slightly modified by PixelTK", + "copyright": "Taken from https://github.com/goonstation/goonstation at commit e77d85d9c1d93aa32da7702737ceeac2b56738ac, slightly modified by PixelTK, ID slots made by YoungThugSS14", "states": [ { "name": "back" @@ -79,9 +79,6 @@ { "name": "inventory" }, - { - "name": "pda" - }, { "name": "web" } diff --git a/Resources/Textures/Interface/Minimalist/Slots/id.png b/Resources/Textures/Interface/Minimalist/Slots/id.png index bf3191cac1..bb52038fdd 100644 Binary files a/Resources/Textures/Interface/Minimalist/Slots/id.png and b/Resources/Textures/Interface/Minimalist/Slots/id.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/pda.png b/Resources/Textures/Interface/Minimalist/Slots/pda.png deleted file mode 100644 index bb52038fdd..0000000000 Binary files a/Resources/Textures/Interface/Minimalist/Slots/pda.png and /dev/null differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Boxer.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Boxer.png index f260c921e4..42fcfa89dc 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Boxer.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Boxer.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Chaplain.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Chaplain.png index 3aaa65194d..3a0070b150 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Chaplain.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Chaplain.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Janitor.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Janitor.png index 6f1e55b7de..e5bdc8fdd9 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Janitor.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Janitor.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Lawyer.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Lawyer.png index f153a95e5d..d51c905b11 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Lawyer.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Lawyer.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Librarian.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Librarian.png index b10b1ed71e..005d97a3f9 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Librarian.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Librarian.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json index 3bd2b3aae2..f8f8039170 100644 --- a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json @@ -184,9 +184,11 @@ }, { "name": "MindShield", - "delays": - [ - [1.0,1.0] + "delays": [ + [ + 1.0, + 1.0 + ] ] }, { diff --git a/Resources/Textures/Interface/Nano/circular_arrow.svg b/Resources/Textures/Interface/Nano/circular_arrow.svg new file mode 100644 index 0000000000..d68dea0440 --- /dev/null +++ b/Resources/Textures/Interface/Nano/circular_arrow.svg @@ -0,0 +1,55 @@ + + + + + + + diff --git a/Resources/Textures/Interface/Nano/circular_arrow.svg.96dpi.png b/Resources/Textures/Interface/Nano/circular_arrow.svg.96dpi.png new file mode 100644 index 0000000000..98f7d325d9 Binary files /dev/null and b/Resources/Textures/Interface/Nano/circular_arrow.svg.96dpi.png differ diff --git a/Resources/Textures/Interface/Nano/circular_arrow.svg.96dpi.png.yml b/Resources/Textures/Interface/Nano/circular_arrow.svg.96dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/Nano/circular_arrow.svg.96dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/barcode.svg b/Resources/Textures/Interface/Paper/AcquisitionSlips/barcode.svg new file mode 100644 index 0000000000..074df1ee36 --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/barcode.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/barcode.svg.192dpi.png b/Resources/Textures/Interface/Paper/AcquisitionSlips/barcode.svg.192dpi.png new file mode 100644 index 0000000000..8abdea9c47 Binary files /dev/null and b/Resources/Textures/Interface/Paper/AcquisitionSlips/barcode.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/barcode.svg.192dpi.png.yml b/Resources/Textures/Interface/Paper/AcquisitionSlips/barcode.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/barcode.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/cargo.svg b/Resources/Textures/Interface/Paper/AcquisitionSlips/cargo.svg new file mode 100644 index 0000000000..1e66e6425f --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/cargo.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/cargo.svg.192dpi.png b/Resources/Textures/Interface/Paper/AcquisitionSlips/cargo.svg.192dpi.png new file mode 100644 index 0000000000..94a016ec17 Binary files /dev/null and b/Resources/Textures/Interface/Paper/AcquisitionSlips/cargo.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/cargo.svg.192dpi.png.yml b/Resources/Textures/Interface/Paper/AcquisitionSlips/cargo.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/cargo.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/engineering.svg b/Resources/Textures/Interface/Paper/AcquisitionSlips/engineering.svg new file mode 100644 index 0000000000..9a3901a9e3 --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/engineering.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/engineering.svg.192dpi.png b/Resources/Textures/Interface/Paper/AcquisitionSlips/engineering.svg.192dpi.png new file mode 100644 index 0000000000..79beedb9ec Binary files /dev/null and b/Resources/Textures/Interface/Paper/AcquisitionSlips/engineering.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/engineering.svg.192dpi.png.yml b/Resources/Textures/Interface/Paper/AcquisitionSlips/engineering.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/engineering.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/medical.svg b/Resources/Textures/Interface/Paper/AcquisitionSlips/medical.svg new file mode 100644 index 0000000000..4912c9fc66 --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/medical.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/medical.svg.192dpi.png b/Resources/Textures/Interface/Paper/AcquisitionSlips/medical.svg.192dpi.png new file mode 100644 index 0000000000..aaa3ed92ef Binary files /dev/null and b/Resources/Textures/Interface/Paper/AcquisitionSlips/medical.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/medical.svg.192dpi.png.yml b/Resources/Textures/Interface/Paper/AcquisitionSlips/medical.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/medical.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/science.svg b/Resources/Textures/Interface/Paper/AcquisitionSlips/science.svg new file mode 100644 index 0000000000..6016bddc48 --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/science.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/science.svg.192dpi.png b/Resources/Textures/Interface/Paper/AcquisitionSlips/science.svg.192dpi.png new file mode 100644 index 0000000000..9de86a3970 Binary files /dev/null and b/Resources/Textures/Interface/Paper/AcquisitionSlips/science.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/science.svg.192dpi.png.yml b/Resources/Textures/Interface/Paper/AcquisitionSlips/science.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/science.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/security.svg b/Resources/Textures/Interface/Paper/AcquisitionSlips/security.svg new file mode 100644 index 0000000000..8051f1ef32 --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/security.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/security.svg.192dpi.png b/Resources/Textures/Interface/Paper/AcquisitionSlips/security.svg.192dpi.png new file mode 100644 index 0000000000..3e1608f3c5 Binary files /dev/null and b/Resources/Textures/Interface/Paper/AcquisitionSlips/security.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/security.svg.192dpi.png.yml b/Resources/Textures/Interface/Paper/AcquisitionSlips/security.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/security.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/service.svg b/Resources/Textures/Interface/Paper/AcquisitionSlips/service.svg new file mode 100644 index 0000000000..7028bb0f48 --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/service.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/service.svg.192dpi.png b/Resources/Textures/Interface/Paper/AcquisitionSlips/service.svg.192dpi.png new file mode 100644 index 0000000000..6cc1447e72 Binary files /dev/null and b/Resources/Textures/Interface/Paper/AcquisitionSlips/service.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/Paper/AcquisitionSlips/service.svg.192dpi.png.yml b/Resources/Textures/Interface/Paper/AcquisitionSlips/service.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/Paper/AcquisitionSlips/service.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/Plasmafire/Slots/id.png b/Resources/Textures/Interface/Plasmafire/Slots/id.png index 20fa70476f..4232a80498 100644 Binary files a/Resources/Textures/Interface/Plasmafire/Slots/id.png and b/Resources/Textures/Interface/Plasmafire/Slots/id.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/id.png b/Resources/Textures/Interface/Retro/Slots/id.png index 60fe216e7f..c2ec2d27e9 100644 Binary files a/Resources/Textures/Interface/Retro/Slots/id.png and b/Resources/Textures/Interface/Retro/Slots/id.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/id.png b/Resources/Textures/Interface/Slimecore/Slots/id.png index 6509274514..03ae7f34fb 100644 Binary files a/Resources/Textures/Interface/Slimecore/Slots/id.png and b/Resources/Textures/Interface/Slimecore/Slots/id.png differ diff --git a/Resources/Textures/Mobs/Aliens/Asteroid/basilisk.rsi/basilisk.png b/Resources/Textures/Mobs/Aliens/Asteroid/basilisk.rsi/basilisk.png new file mode 100644 index 0000000000..5177522f4b Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Asteroid/basilisk.rsi/basilisk.png differ diff --git a/Resources/Textures/Mobs/Aliens/Asteroid/basilisk.rsi/basilisk_alert.png b/Resources/Textures/Mobs/Aliens/Asteroid/basilisk.rsi/basilisk_alert.png new file mode 100644 index 0000000000..3bd4e6e1a7 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Asteroid/basilisk.rsi/basilisk_alert.png differ diff --git a/Resources/Textures/Mobs/Aliens/Asteroid/basilisk.rsi/basilisk_dead.png b/Resources/Textures/Mobs/Aliens/Asteroid/basilisk.rsi/basilisk_dead.png new file mode 100644 index 0000000000..fcd6472c37 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Asteroid/basilisk.rsi/basilisk_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Asteroid/basilisk.rsi/meta.json b/Resources/Textures/Mobs/Aliens/Asteroid/basilisk.rsi/meta.json new file mode 100644 index 0000000000..73710c98cb --- /dev/null +++ b/Resources/Textures/Mobs/Aliens/Asteroid/basilisk.rsi/meta.json @@ -0,0 +1,48 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/9bd459b27c73575fd5e3bf2efea13b816d0ac7c8/icons/mob/animal.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "basilisk", + "directions": 4 + }, + { + "name": "basilisk_alert", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "basilisk_dead" + } + ] +} diff --git a/Resources/Textures/Mobs/Aliens/hivebot.rsi/EngBot.png b/Resources/Textures/Mobs/Aliens/hivebot.rsi/EngBot.png new file mode 100644 index 0000000000..250bec06cf Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/hivebot.rsi/EngBot.png differ diff --git a/Resources/Textures/Mobs/Aliens/hivebot.rsi/basic.png b/Resources/Textures/Mobs/Aliens/hivebot.rsi/basic.png new file mode 100644 index 0000000000..69e00a2de4 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/hivebot.rsi/basic.png differ diff --git a/Resources/Textures/Mobs/Aliens/hivebot.rsi/basic_attack.png b/Resources/Textures/Mobs/Aliens/hivebot.rsi/basic_attack.png new file mode 100644 index 0000000000..cfd14e4da3 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/hivebot.rsi/basic_attack.png differ diff --git a/Resources/Textures/Mobs/Aliens/hivebot.rsi/meta.json b/Resources/Textures/Mobs/Aliens/hivebot.rsi/meta.json new file mode 100644 index 0000000000..0b1c99fb26 --- /dev/null +++ b/Resources/Textures/Mobs/Aliens/hivebot.rsi/meta.json @@ -0,0 +1,81 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "basic", + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.6 + ] + ] + }, + { + "name": "basic_attack", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "ranged", + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.6 + ] + ] + }, + { + "name": "ranged_attack", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "strong", + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.6 + ] + ] + }, + { + "name": "strong_attack", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "EngBot", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Aliens/hivebot.rsi/ranged.png b/Resources/Textures/Mobs/Aliens/hivebot.rsi/ranged.png new file mode 100644 index 0000000000..98649fe87c Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/hivebot.rsi/ranged.png differ diff --git a/Resources/Textures/Mobs/Aliens/hivebot.rsi/ranged_attack.png b/Resources/Textures/Mobs/Aliens/hivebot.rsi/ranged_attack.png new file mode 100644 index 0000000000..00844ddbcf Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/hivebot.rsi/ranged_attack.png differ diff --git a/Resources/Textures/Mobs/Aliens/hivebot.rsi/strong.png b/Resources/Textures/Mobs/Aliens/hivebot.rsi/strong.png new file mode 100644 index 0000000000..38aee880f0 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/hivebot.rsi/strong.png differ diff --git a/Resources/Textures/Mobs/Aliens/hivebot.rsi/strong_attack.png b/Resources/Textures/Mobs/Aliens/hivebot.rsi/strong_attack.png new file mode 100644 index 0000000000..9b33cb31c0 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/hivebot.rsi/strong_attack.png differ diff --git a/Resources/Textures/Mobs/Animals/grenadepenguin.rsi/inhand-left.png b/Resources/Textures/Mobs/Animals/grenadepenguin.rsi/inhand-left.png new file mode 100644 index 0000000000..ac907a4eba Binary files /dev/null and b/Resources/Textures/Mobs/Animals/grenadepenguin.rsi/inhand-left.png differ diff --git a/Resources/Textures/Mobs/Animals/grenadepenguin.rsi/inhand-right.png b/Resources/Textures/Mobs/Animals/grenadepenguin.rsi/inhand-right.png new file mode 100644 index 0000000000..28c621d89b Binary files /dev/null and b/Resources/Textures/Mobs/Animals/grenadepenguin.rsi/inhand-right.png differ diff --git a/Resources/Textures/Mobs/Animals/grenadepenguin.rsi/meta.json b/Resources/Textures/Mobs/Animals/grenadepenguin.rsi/meta.json index 93c4f877cf..0572044d6f 100644 --- a/Resources/Textures/Mobs/Animals/grenadepenguin.rsi/meta.json +++ b/Resources/Textures/Mobs/Animals/grenadepenguin.rsi/meta.json @@ -1,21 +1,65 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Created by EmoGarbage404", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by EmoGarbage404, inhands by mubururu_ (github)", + "size": { + "x": 32, + "y": 32 }, - { - "name": "penguin", - "directions": 4 - }, - { - "name": "dead" - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "penguin", + "directions": 4 + }, + { + "name": "dead" + } + ] } diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/longwithbangs.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/longwithbangs.png new file mode 100644 index 0000000000..f1230241c0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/longwithbangs.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json index 3184166186..454b6870eb 100644 --- a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json @@ -4,7 +4,7 @@ "x": 32, "y": 32 }, - "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi ,resprited by Alekshhh, a modified by potato1234x, uneven and tailed is drawn by Ubaser, doublebun_long by Emisse, longbundled and bob5 sprited by github:DreamlyJack(624946166152298517), pulato.png made by DreamlyJack, b.png and b_alt.png modified and sprited by KingFroozy (github) for SS14", + "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi ,resprited by Alekshhh, a modified by potato1234x, uneven and tailed is drawn by Ubaser, doublebun_long by Emisse, longbundled and bob5 sprited by github:DreamlyJack(624946166152298517), pulato.png made by DreamlyJack, b.png and b_alt.png modified and sprited by KingFroozy (github), long_with_bangs shaped and longbow by Futuristic (and Pyvik) for SS14", "license": "CC-BY-SA-3.0", "states": [ { @@ -802,6 +802,10 @@ { "name": "longbow", "directions": 4 + }, + { + "name": "longwithbangs", + "directions": 4 } ] } diff --git a/Resources/Textures/Mobs/Pets/corgi.rsi/belt_displacement.png b/Resources/Textures/Mobs/Pets/corgi.rsi/belt_displacement.png new file mode 100644 index 0000000000..6e3cb09bcf Binary files /dev/null and b/Resources/Textures/Mobs/Pets/corgi.rsi/belt_displacement.png differ diff --git a/Resources/Textures/Mobs/Pets/corgi.rsi/meta.json b/Resources/Textures/Mobs/Pets/corgi.rsi/meta.json index 0e36d32316..9182c1d991 100644 --- a/Resources/Textures/Mobs/Pets/corgi.rsi/meta.json +++ b/Resources/Textures/Mobs/Pets/corgi.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/commit/53d1f1477d22a11a99c6c6924977cd431075761b , cerberus by Alekshhh, real mouse by TheShuEd", + "copyright": "https://github.com/tgstation/tgstation/commit/53d1f1477d22a11a99c6c6924977cd431075761b , cerberus by Alekshhh, real mouse by TheShuEd. belt_displacement by Sparlight.", "states": [ { "name": "corgi", @@ -152,6 +152,9 @@ }, { "name": "real_mouse_dead" + }, + { + "name": "belt_displacement" } ] } diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json b/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json index 87e3d89e86..898e5de172 100644 --- a/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json +++ b/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/faf6db214927874c19b8fa8585d26b5d40de1acc, derelict sprites modified by GoldenCan(GitHub).", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/faf6db214927874c19b8fa8585d26b5d40de1acc, derelict sprites modified by GoldenCan(GitHub), xenoborg sprites, created and modified by Samuka-C (github).", "states": [ { "name": "clown", @@ -324,8 +324,8 @@ ] }, { - "name": "synd_engi", - "directions": 4 + "name": "synd_engi", + "directions": 4 }, { "name": "synd_engi_e", @@ -335,6 +335,326 @@ "name": "synd_engi_l", "directions": 4 }, + { + "name": "xenoborg_heavy", + "directions": 4 + }, + { + "name": "xenoborg_heavy_e", + "directions": 4 + }, + { + "name": "xenoborg_heavy_e_r", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "xenoborg_heavy_l", + "directions": 4 + }, + { + "name": "xenoborg_scout", + "directions": 4 + }, + { + "name": "xenoborg_scout_l", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "xenoborg_scout_e", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "xenoborg_scout_e_r", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "xenoborg_engi", + "directions": 4 + }, + { + "name": "xenoborg_engi_e", + "directions": 4 + }, + { + "name": "xenoborg_engi_e_r", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "xenoborg_engi_l", + "directions": 4 + }, + { + "name": "xenoborg_stealth", + "directions": 4 + }, + { + "name": "xenoborg_stealth_e", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "xenoborg_stealth_e_r", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "xenoborg_stealth_l", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, { "name": "sec", "directions": 4 diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_engi.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_engi.png new file mode 100644 index 0000000000..ac544fb5bd Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_engi.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_engi_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_engi_e.png new file mode 100644 index 0000000000..069aa39280 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_engi_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_engi_e_r.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_engi_e_r.png new file mode 100644 index 0000000000..57b4d9620d Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_engi_e_r.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_engi_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_engi_l.png new file mode 100644 index 0000000000..5b23144ef1 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_engi_l.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_heavy.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_heavy.png new file mode 100644 index 0000000000..8c293a00b2 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_heavy.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_heavy_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_heavy_e.png new file mode 100644 index 0000000000..9f5dec16cc Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_heavy_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_heavy_e_r.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_heavy_e_r.png new file mode 100644 index 0000000000..7f30339ee0 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_heavy_e_r.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_heavy_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_heavy_l.png new file mode 100644 index 0000000000..eeabfef749 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_heavy_l.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_scout.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_scout.png new file mode 100644 index 0000000000..8825d5bf6f Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_scout.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_scout_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_scout_e.png new file mode 100644 index 0000000000..6527985802 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_scout_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_scout_e_r.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_scout_e_r.png new file mode 100644 index 0000000000..313b8fc82e Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_scout_e_r.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_scout_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_scout_l.png new file mode 100644 index 0000000000..fa07f69a06 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_scout_l.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_stealth.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_stealth.png new file mode 100644 index 0000000000..e06ec2e93d Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_stealth.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_stealth_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_stealth_e.png new file mode 100644 index 0000000000..a05ec9580a Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_stealth_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_stealth_e_r.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_stealth_e_r.png new file mode 100644 index 0000000000..e98212cf2a Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_stealth_e_r.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_stealth_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_stealth_l.png new file mode 100644 index 0000000000..5a407dd055 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/xenoborg_stealth_l.png differ diff --git a/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_cat.png b/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_cat.png new file mode 100644 index 0000000000..6413df0bf1 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_cat.png differ diff --git a/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_dog.png b/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_dog.png new file mode 100644 index 0000000000..de652a87a1 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_dog.png differ diff --git a/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_face.png b/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_face.png new file mode 100644 index 0000000000..f3a12a55c7 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_face.png differ diff --git a/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_female.png b/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_female.png new file mode 100644 index 0000000000..c871354f34 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_female.png differ diff --git a/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_male.png b/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_male.png new file mode 100644 index 0000000000..aedd762bee Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/holograms.rsi/ai_male.png differ diff --git a/Resources/Textures/Mobs/Silicon/holograms.rsi/meta.json b/Resources/Textures/Mobs/Silicon/holograms.rsi/meta.json new file mode 100644 index 0000000000..8eaf9165d3 --- /dev/null +++ b/Resources/Textures/Mobs/Silicon/holograms.rsi/meta.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/blob/e2923df112df8aa025846d0764697bad6506586a/icons/mob/AI.dmi - modified by chromiumboy.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ai_female" + }, + { + "name": "ai_male" + }, + { + "name": "ai_face", + "delays": [ + [ + 2.3, + 0.2 + ] + ] + }, + { + "name": "ai_cat", + "delays": [ + [ + 0.75, + 0.75 + ] + ] + }, + { + "name": "ai_dog" + } + ] +} diff --git a/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_angel.png b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_angel.png new file mode 100644 index 0000000000..fd9a601d21 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_angel.png differ diff --git a/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_angel_dead.png b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_angel_dead.png new file mode 100644 index 0000000000..2d959b8414 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_angel_dead.png differ diff --git a/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_bliss.png b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_bliss.png new file mode 100644 index 0000000000..d087d3baa4 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_bliss.png differ diff --git a/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_clown.png b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_clown.png new file mode 100644 index 0000000000..842b3f4387 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_clown.png differ diff --git a/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_clown_dead.png b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_clown_dead.png new file mode 100644 index 0000000000..1f1050ecc3 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_clown_dead.png differ diff --git a/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_dorf.png b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_dorf.png new file mode 100644 index 0000000000..e25aa6d1d2 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_dorf.png differ diff --git a/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_heartline.png b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_heartline.png new file mode 100644 index 0000000000..d4518fd423 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_heartline.png differ diff --git a/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_heartline_dead.png b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_heartline_dead.png new file mode 100644 index 0000000000..4b9f3f9d81 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_heartline_dead.png differ diff --git a/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_smiley.png b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_smiley.png new file mode 100644 index 0000000000..6e3c3e7e8f Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/station_ai.rsi/ai_smiley.png differ diff --git a/Resources/Textures/Mobs/Silicon/station_ai.rsi/meta.json b/Resources/Textures/Mobs/Silicon/station_ai.rsi/meta.json index c8d174c57b..bdce787a48 100644 --- a/Resources/Textures/Mobs/Silicon/station_ai.rsi/meta.json +++ b/Resources/Textures/Mobs/Silicon/station_ai.rsi/meta.json @@ -1,61 +1,215 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/2a19963297f91efb452dbb5c1d4eb28a14776b0a/icons/mob/silicon/ai.dmi", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "ai", - "delays": [ - [ - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.1 - ] - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/blob/e2923df112df8aa025846d0764697bad6506586a/icons/mob/AI.dmi - modified by chromiumboy.", + "size": { + "x": 32, + "y": 32 }, - { - "name": "ai_camera", - "delays": [ - [ - 1.0, - 1.0 - ] - ] - }, - { - "name": "ai_dead" - }, - { - "name": "ai_empty", - "delays": [ - [ - 0.7, - 0.7 - ] - ] - }, - { - "name": "default", - "directions": 4 - }, - { - "name": "base" - } - ] -} \ No newline at end of file + "states": [ + { + "name": "ai", + "delays": [ + [ + 0.2, + 0.2, + 0.1, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1 + ] + ] + }, + { + "name": "ai_angel", + "delays": [ + [ + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08 + ] + ] + }, + { + "name": "ai_angel_dead", + "delays": [ + [ + 1.00, + 0.08, + 0.50, + 0.20 + ] + ] + }, + { + "name": "ai_bliss" + }, + { + "name": "ai_clown", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "ai_clown_dead", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "ai_dorf", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "ai_heartline", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ai_heartline_dead", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "ai_smiley", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ai_camera", + "delays": [ + [ + 1.0, + 1.0 + ] + ] + }, + { + "name": "ai_dead" + }, + { + "name": "ai_empty", + "delays": [ + [ + 0.7, + 0.7 + ] + ] + }, + { + "name": "default", + "directions": 4 + }, + { + "name": "base" + } + ] +} diff --git a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/back.png b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/back.png new file mode 100644 index 0000000000..88fbc5582a Binary files /dev/null and b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/back.png differ diff --git a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/hand.png b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/hand.png new file mode 100644 index 0000000000..f632f80d19 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/hand.png differ diff --git a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-female.png b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-female.png new file mode 100644 index 0000000000..f4cf6def03 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-female.png differ diff --git a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-male.png b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-male.png new file mode 100644 index 0000000000..c3be6e6d9d Binary files /dev/null and b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-male.png differ diff --git a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/meta.json b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/meta.json new file mode 100644 index 0000000000..464ae7b119 --- /dev/null +++ b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/meta.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by Flareguy for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "load": { + "srgb": false + }, + "states": [ + { + "name": "jumpsuit-male", + "directions": 4 + }, + { + "name": "jumpsuit-female", + "directions": 4 + }, + { + "name": "hand", + "directions": 4 + }, + { + "name": "outerclothing", + "directions": 4 + }, + { + "name": "back", + "directions": 4 + }, + { + "name": "shoes", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/outerclothing.png b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/outerclothing.png new file mode 100644 index 0000000000..e4939fdb79 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/outerclothing.png differ diff --git a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/shoes.png b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/shoes.png new file mode 100644 index 0000000000..eb92ec29e3 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/shoes.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/full.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/full.png index 11c6100a6d..40eae795c3 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/full.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/full.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/head_f.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/head_f.png index fcd500afae..b4e9f80527 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/head_f.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/head_f.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/head_m.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/head_m.png index 95f6de4e52..335048ae41 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/head_m.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/head_m.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/barflask.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/barflask.rsi/inhand-left.png new file mode 100644 index 0000000000..89bf1799d4 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/barflask.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/barflask.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/barflask.rsi/inhand-right.png new file mode 100644 index 0000000000..edb6fc2f87 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/barflask.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/barflask.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/barflask.rsi/meta.json index db0ac608ed..ffcf3da666 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/barflask.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/barflask.rsi/meta.json @@ -1 +1,22 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]} \ No newline at end of file +{ + "version": 1, + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/generic_jug.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/generic_jug.rsi/inhand-left.png new file mode 100644 index 0000000000..2d97239eb2 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/generic_jug.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/generic_jug.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/generic_jug.rsi/inhand-right.png new file mode 100644 index 0000000000..4d1fc8757a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/generic_jug.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/generic_jug.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/generic_jug.rsi/meta.json index a4039a1dd1..2c665ef007 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/generic_jug.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/generic_jug.rsi/meta.json @@ -5,13 +5,21 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, icon_open modified from icon by Prole0 (GitHub)", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, icon_open modified from icon by Prole0 (GitHub), inhands by TiniestShark (github)", "states": [ { "name": "icon" }, { "name": "icon_open" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/inhand-left-fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/inhand-left-fill-1.png new file mode 100644 index 0000000000..e55862aa35 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/inhand-left.png new file mode 100644 index 0000000000..8d2361bbe6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/inhand-right-fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/inhand-right-fill-1.png new file mode 100644 index 0000000000..699236160a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/inhand-right.png new file mode 100644 index 0000000000..0ed241c688 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/meta.json index b42841a32d..6b42e9b9f7 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/meta.json @@ -27,6 +27,22 @@ }, { "name": "fill5" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-left-fill-1", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-right-fill-1", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/inhand-left.png new file mode 100644 index 0000000000..ab31ff6a04 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/inhand-right.png new file mode 100644 index 0000000000..283b9e75ed Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/meta.json index f55a85dc26..fcedd37c42 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/meta.json @@ -1,14 +1,22 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Dezzzix; Discord: dezzzix", + "copyright": "Made by Dezzzix; Discord: dezzzix, inhands by TiniestShark (github)", "size": { "x": 32, "y": 32 }, "states": [ - { - "name": "icon" - } + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/inhand-left.png new file mode 100644 index 0000000000..ded27898e9 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/inhand-right.png new file mode 100644 index 0000000000..f9f43687f9 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/meta.json index f55a85dc26..fcedd37c42 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/meta.json @@ -1,14 +1,22 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Dezzzix; Discord: dezzzix", + "copyright": "Made by Dezzzix; Discord: dezzzix, inhands by TiniestShark (github)", "size": { "x": 32, "y": 32 }, "states": [ - { - "name": "icon" - } + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/mreflask.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/mreflask.rsi/inhand-left.png new file mode 100644 index 0000000000..59a7824c78 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mreflask.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mreflask.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/mreflask.rsi/inhand-right.png new file mode 100644 index 0000000000..f33751eed4 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mreflask.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mreflask.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mreflask.rsi/meta.json index ceb7ea2651..ec2769b3b9 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mreflask.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mreflask.rsi/meta.json @@ -1 +1,22 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "Created by EmoGarbage", "states": [{"name": "icon"}]} \ No newline at end of file +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Created by EmoGarbage, inhands by TiniestShark (github)", + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/inhand-left.png new file mode 100644 index 0000000000..18e7891b56 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/inhand-right.png new file mode 100644 index 0000000000..7333f04e70 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/meta.json index 21ea2b2106..052ebf11aa 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { "name": "icon-0" @@ -18,6 +18,14 @@ }, { "name": "icon-3" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/inhand-left.png new file mode 100644 index 0000000000..75e52d93f4 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/inhand-right.png new file mode 100644 index 0000000000..78c3651271 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/meta.json index 21ea2b2106..052ebf11aa 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { "name": "icon-0" @@ -18,6 +18,14 @@ }, { "name": "icon-3" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/inhand-left.png new file mode 100644 index 0000000000..d45650eb5b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/inhand-right.png new file mode 100644 index 0000000000..7fc471293f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/meta.json index 21ea2b2106..052ebf11aa 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { "name": "icon-0" @@ -18,6 +18,14 @@ }, { "name": "icon-3" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-0.png new file mode 100644 index 0000000000..972df383dd Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-0.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-1.png new file mode 100644 index 0000000000..af27fd3485 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-2.png new file mode 100644 index 0000000000..39360e1cfd Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-3.png index b733d745fe..c46dd0db14 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-3.png and b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/inhand-left.png new file mode 100644 index 0000000000..9ffaa7c21b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/inhand-right.png new file mode 100644 index 0000000000..d628d47fbb Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/meta.json index f605d28ff7..d7e6f34541 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/meta.json @@ -5,10 +5,27 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/unitystation/unitystation/blob/221bbcc50edf4e63dc71ac6fd5152664a6b6745a/UnityProject/Assets/Textures/items/drinks/mug_gromit.png | Created By https://github.com/ksivte", + "copyright": "https://github.com/unitystation/unitystation/blob/221bbcc50edf4e63dc71ac6fd5152664a6b6745a/UnityProject/Assets/Textures/items/drinks/mug_gromit.png | Created By https://github.com/ksivte, inhands and modification by TiniestShark (github)", "states": [ + { + "name": "icon-0" + }, + { + "name": "icon-1" + }, + { + "name": "icon-2" + }, { "name": "icon-3" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/inhand-left.png new file mode 100644 index 0000000000..b8b4c81598 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/inhand-right.png new file mode 100644 index 0000000000..01bf1e17d9 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/meta.json index 21ea2b2106..052ebf11aa 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { "name": "icon-0" @@ -18,6 +18,14 @@ }, { "name": "icon-3" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/inhand-left.png new file mode 100644 index 0000000000..9cda7f0ce5 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/inhand-right.png new file mode 100644 index 0000000000..563187cdd0 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/meta.json index 21ea2b2106..052ebf11aa 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { "name": "icon-0" @@ -18,6 +18,14 @@ }, { "name": "icon-3" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/inhand-left.png new file mode 100644 index 0000000000..2fd0c6bb36 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/inhand-right.png new file mode 100644 index 0000000000..b6f127f2e5 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/meta.json index 21ea2b2106..052ebf11aa 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { "name": "icon-0" @@ -18,6 +18,14 @@ }, { "name": "icon-3" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/inhand-left.png new file mode 100644 index 0000000000..1d41798e58 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/inhand-right.png new file mode 100644 index 0000000000..1b4ee5e0b5 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/meta.json index 21ea2b2106..052ebf11aa 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { "name": "icon-0" @@ -18,6 +18,14 @@ }, { "name": "icon-3" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/inhand-left.png new file mode 100644 index 0000000000..f8b8787652 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/inhand-right.png new file mode 100644 index 0000000000..33e5a613cc Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/meta.json index 21ea2b2106..052ebf11aa 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { "name": "icon-0" @@ -18,6 +18,14 @@ }, { "name": "icon-3" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/inhand-left.png new file mode 100644 index 0000000000..044f1f5807 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/inhand-right.png new file mode 100644 index 0000000000..aa06a4b040 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/meta.json index 21ea2b2106..052ebf11aa 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { "name": "icon-0" @@ -18,6 +18,14 @@ }, { "name": "icon-3" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/inhand-left.png new file mode 100644 index 0000000000..4a1125cab1 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/inhand-right.png new file mode 100644 index 0000000000..9e2af908c1 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/meta.json index 21ea2b2106..052ebf11aa 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { "name": "icon-0" @@ -18,6 +18,14 @@ }, { "name": "icon-3" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-left-fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-left-fill-1.png new file mode 100644 index 0000000000..bba2ddd197 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-left-fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-left-fill-2.png new file mode 100644 index 0000000000..6094b8b76f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-left-fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-left.png new file mode 100644 index 0000000000..0e7ae7e5eb Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-right-fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-right-fill-1.png new file mode 100644 index 0000000000..a9f0394fa6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-right-fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-right-fill-2.png new file mode 100644 index 0000000000..6068875bcf Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-right-fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-right.png new file mode 100644 index 0000000000..7f463495a5 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/meta.json index b7a6eeee38..fd648b79cf 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/pitcher.rsi/meta.json @@ -1,50 +1,74 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/d23125a1b04ef77c00da9e7aa7110835672077bb", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/d23125a1b04ef77c00da9e7aa7110835672077bb, inhands by TiniestShark (github)", "size": { "x": 32, "y": 32 }, "states": [ - { - "name": "icon" - }, - { - "name": "icon-1" - }, - { - "name": "icon-2" - }, - { - "name": "icon-3" - }, - { - "name": "icon-4" - }, - { - "name": "icon-5" - }, - { - "name": "icon-6" - }, - { - "name": "fill-1" - }, - { - "name": "fill-2" - }, - { - "name": "fill-3" - }, - { - "name": "fill-4" - }, - { - "name": "fill-5" - }, - { - "name": "fill-6" - } + { + "name": "icon" + }, + { + "name": "icon-1" + }, + { + "name": "icon-2" + }, + { + "name": "icon-3" + }, + { + "name": "icon-4" + }, + { + "name": "icon-5" + }, + { + "name": "icon-6" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + }, + { + "name": "fill-6" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-left-fill-1", + "directions": 4 + }, + { + "name": "inhand-left-fill-2", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-right-fill-1", + "directions": 4 + }, + { + "name": "inhand-right-fill-2", + "directions": 4 + } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/inhand-left-fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/inhand-left-fill-1.png new file mode 100644 index 0000000000..fd0d15cdcd Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/inhand-left.png new file mode 100644 index 0000000000..efbb80be0c Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/inhand-right-fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/inhand-right-fill-1.png new file mode 100644 index 0000000000..e62f65f14e Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/inhand-right.png new file mode 100644 index 0000000000..29b2aaa7f6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/meta.json index 389f1b8b96..cf438684de 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, modified heavily by github user moonheart08.", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, modified heavily by github user moonheart08, inhands by TiniestShark (github).", "states": [ { "name": "icon" @@ -18,6 +18,22 @@ }, { "name": "fill2" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-left-fill-1", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-right-fill-1", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-1.png new file mode 100644 index 0000000000..995108596b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-2.png new file mode 100644 index 0000000000..78710f564c Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-3.png new file mode 100644 index 0000000000..c62c6b1f75 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-4.png new file mode 100644 index 0000000000..b63c0c0c56 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-5.png b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-5.png new file mode 100644 index 0000000000..07a3f829f5 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/fill-5.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/icon.png new file mode 100644 index 0000000000..a57d4b4aca Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/icon_empty.png new file mode 100644 index 0000000000..36a0e24c5e Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/icon_open.png b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/icon_open.png new file mode 100644 index 0000000000..056896120a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/icon_open.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/meta.json new file mode 100644 index 0000000000..1190465440 --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/sodawater-bottle.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "modified from space-up_bottle.rsi and inspired by sodawater.rsi by Prole0 (GitHub)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-1.png new file mode 100644 index 0000000000..6fbbd2f8bb Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-2.png new file mode 100644 index 0000000000..aea5ea2c09 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-3.png new file mode 100644 index 0000000000..1f20702592 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-4.png new file mode 100644 index 0000000000..42fd7dc5d4 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-5.png b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-5.png new file mode 100644 index 0000000000..945ebf7b49 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/fill-5.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/icon.png new file mode 100644 index 0000000000..e8ff0eafc3 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/icon_empty.png new file mode 100644 index 0000000000..6a4afaf315 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/icon_open.png b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/icon_open.png new file mode 100644 index 0000000000..6ff1cfd5de Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/icon_open.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/meta.json new file mode 100644 index 0000000000..7ef37142c7 --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/tonic-bottle.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "modified from space-up_bottle.rsi and inspired by tonic.rsi by Prole0 (GitHub)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/vacuumflask.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/vacuumflask.rsi/inhand-left.png new file mode 100644 index 0000000000..6e44346548 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/vacuumflask.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/vacuumflask.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/vacuumflask.rsi/inhand-right.png new file mode 100644 index 0000000000..721992a2f4 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/vacuumflask.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/vacuumflask.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/vacuumflask.rsi/meta.json index db0ac608ed..b45677f986 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/vacuumflask.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/vacuumflask.rsi/meta.json @@ -1 +1,24 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]} \ No newline at end of file +{ + "version": 1, + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", + "license": "CC-BY-SA-3.0", + "size": + { + "x": 32, + "y": 32 + }, + "states": + [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon-2.png rename to Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon-3.png rename to Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon-4.png b/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/fill-4.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon-4.png rename to Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/fill-4.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon-5.png b/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/fill-5.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon-5.png rename to Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/fill-5.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon.png index cf51fc8552..62ce8e736b 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon.png and b/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon_empty.png new file mode 100644 index 0000000000..cf51fc8552 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon_open.png b/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon_open.png index e38ba30650..aedfedaa0b 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon_open.png and b/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/icon_open.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/meta.json index 763da96dcb..e09aa519fc 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/waterbottle.rsi/meta.json @@ -1,5 +1,6 @@ { - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "version": 1, + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, icon, icon_empty, & icon_open modified from waterbottle.rsi by Prole0 (GitHub)", "license": "CC-BY-SA-3.0", "size": { @@ -15,19 +16,22 @@ "name": "icon_open" }, { - "name": "icon-1" + "name": "icon_empty" }, { - "name": "icon-2" + "name": "fill-1" }, { - "name": "icon-3" + "name": "fill-2" }, { - "name": "icon-4" + "name": "fill-3" }, { - "name": "icon-5" + "name": "fill-4" + }, + { + "name": "fill-5" }, { "name": "inhand-left", @@ -53,6 +57,5 @@ "name": "inhand-right-fill-2", "directions": 4 } - ], - "version": 1 + ] } diff --git a/Resources/Textures/Objects/Consumable/Food/taco.rsi/dragontaco.png b/Resources/Textures/Objects/Consumable/Food/taco.rsi/dragontaco.png new file mode 100644 index 0000000000..5ca031c4fa Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/taco.rsi/dragontaco.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/taco.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/taco.rsi/meta.json index 71bda2cd42..3358ad00ff 100644 --- a/Resources/Textures/Objects/Consumable/Food/taco.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/taco.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Added by Phunny", + "copyright": "Added by Phunny, dragon taco modified from beef taco by MisterImp (GitHub)", "size": { "x": 32, "y": 32 @@ -24,6 +24,9 @@ }, { "name": "rattaco" + }, + { + "name": "dragontaco" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Devices/singularity_beacon.rsi/inhand-left.png b/Resources/Textures/Objects/Devices/singularity_beacon.rsi/inhand-left.png new file mode 100644 index 0000000000..70839449bc Binary files /dev/null and b/Resources/Textures/Objects/Devices/singularity_beacon.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Devices/singularity_beacon.rsi/inhand-right.png b/Resources/Textures/Objects/Devices/singularity_beacon.rsi/inhand-right.png new file mode 100644 index 0000000000..70839449bc Binary files /dev/null and b/Resources/Textures/Objects/Devices/singularity_beacon.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Devices/singularity_beacon.rsi/meta.json b/Resources/Textures/Objects/Devices/singularity_beacon.rsi/meta.json index 2347b239a1..41a0e45b9e 100644 --- a/Resources/Textures/Objects/Devices/singularity_beacon.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/singularity_beacon.rsi/meta.json @@ -1,20 +1,65 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "tgstation at https://github.com/tgstation/tgstation/blob/c46d689e2b300bdc8c5b153855b1a5bbb2c5b168/icons/obj/singularity.dmi", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "delays": [ - [ - 0.1, - 0.1 - ] - ] - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "tgstation at https://github.com/tgstation/tgstation/blob/c46d689e2b300bdc8c5b153855b1a5bbb2c5b168/icons/obj/singularity.dmi, inhands by mubururu_ (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + } + + ] } diff --git a/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/equipped-BELT.png b/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/equipped-BELT.png index 95ff4de420..0de360401c 100644 Binary files a/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/icon.png b/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/icon.png index ea9fa956f2..81173a7056 100644 Binary files a/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/icon.png and b/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/inhand-left.png index 0987105109..589f0d8d68 100644 Binary files a/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/inhand-left.png and b/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/inhand-right.png index 252bb6565a..6c02afec0f 100644 Binary files a/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/inhand-right.png and b/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/meta.json b/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/meta.json index 19789a2562..c8672be7a7 100644 --- a/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Instruments/bike_horn.rsi/meta.json @@ -1,11 +1,11 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13 at 8d9c91e19cb52713c7f7f1804c2b6f7203f8d331, Modified by Archee1 (github)", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/vgstation-coders/vgstation13 at 8d9c91e19cb52713c7f7f1804c2b6f7203f8d331", "states": [ { "name": "icon" diff --git a/Resources/Textures/Objects/Fun/bananiumhorn.rsi/equipped-BELT.png b/Resources/Textures/Objects/Fun/bananiumhorn.rsi/equipped-BELT.png index 79fb8baed5..fe94af7c00 100644 Binary files a/Resources/Textures/Objects/Fun/bananiumhorn.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Fun/bananiumhorn.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Fun/bananiumhorn.rsi/icon.png b/Resources/Textures/Objects/Fun/bananiumhorn.rsi/icon.png index d204501bd5..ad26489f38 100644 Binary files a/Resources/Textures/Objects/Fun/bananiumhorn.rsi/icon.png and b/Resources/Textures/Objects/Fun/bananiumhorn.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Fun/bananiumhorn.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/bananiumhorn.rsi/inhand-left.png index 8f625dd67e..adeb59c415 100644 Binary files a/Resources/Textures/Objects/Fun/bananiumhorn.rsi/inhand-left.png and b/Resources/Textures/Objects/Fun/bananiumhorn.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/bananiumhorn.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/bananiumhorn.rsi/inhand-right.png index 7402fe46d3..6e5d8103f6 100644 Binary files a/Resources/Textures/Objects/Fun/bananiumhorn.rsi/inhand-right.png and b/Resources/Textures/Objects/Fun/bananiumhorn.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/bananiumhorn.rsi/meta.json b/Resources/Textures/Objects/Fun/bananiumhorn.rsi/meta.json index 25e7e61d32..05ec735e1a 100644 --- a/Resources/Textures/Objects/Fun/bananiumhorn.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/bananiumhorn.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14", + "copyright": "Made by brainfood1183 (github) for ss14, Modified by Archee1 (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Fun/bikehorn.rsi/equipped-BELT.png b/Resources/Textures/Objects/Fun/bikehorn.rsi/equipped-BELT.png index 4cd6eea346..96c47b9da7 100644 Binary files a/Resources/Textures/Objects/Fun/bikehorn.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Fun/bikehorn.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Fun/bikehorn.rsi/icon.png b/Resources/Textures/Objects/Fun/bikehorn.rsi/icon.png index f769aa0a20..dcdc71f9e7 100644 Binary files a/Resources/Textures/Objects/Fun/bikehorn.rsi/icon.png and b/Resources/Textures/Objects/Fun/bikehorn.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Fun/bikehorn.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/bikehorn.rsi/inhand-left.png index 5187c5e533..b88656b813 100644 Binary files a/Resources/Textures/Objects/Fun/bikehorn.rsi/inhand-left.png and b/Resources/Textures/Objects/Fun/bikehorn.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/bikehorn.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/bikehorn.rsi/inhand-right.png index 3e343a34f3..8be6d23fb5 100644 Binary files a/Resources/Textures/Objects/Fun/bikehorn.rsi/inhand-right.png and b/Resources/Textures/Objects/Fun/bikehorn.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/bikehorn.rsi/meta.json b/Resources/Textures/Objects/Fun/bikehorn.rsi/meta.json index 09d18d5852..706e83db6a 100644 --- a/Resources/Textures/Objects/Fun/bikehorn.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/bikehorn.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/125c975f1b3bf9826b37029e9ab5a5f89e975a7e", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/125c975f1b3bf9826b37029e9ab5a5f89e975a7e, Modified by Archee1 (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Fun/cluwnehorn.rsi/equipped-BELT.png b/Resources/Textures/Objects/Fun/cluwnehorn.rsi/equipped-BELT.png index 0bcdf15016..1405e21d95 100644 Binary files a/Resources/Textures/Objects/Fun/cluwnehorn.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Fun/cluwnehorn.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Fun/cluwnehorn.rsi/icon.png b/Resources/Textures/Objects/Fun/cluwnehorn.rsi/icon.png index 907d599672..25fa12ab5c 100644 Binary files a/Resources/Textures/Objects/Fun/cluwnehorn.rsi/icon.png and b/Resources/Textures/Objects/Fun/cluwnehorn.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Fun/cluwnehorn.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/cluwnehorn.rsi/inhand-left.png index 689538356d..f0d3d9b459 100644 Binary files a/Resources/Textures/Objects/Fun/cluwnehorn.rsi/inhand-left.png and b/Resources/Textures/Objects/Fun/cluwnehorn.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/cluwnehorn.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/cluwnehorn.rsi/inhand-right.png index eda778252f..98fd37c5e8 100644 Binary files a/Resources/Textures/Objects/Fun/cluwnehorn.rsi/inhand-right.png and b/Resources/Textures/Objects/Fun/cluwnehorn.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/cluwnehorn.rsi/meta.json b/Resources/Textures/Objects/Fun/cluwnehorn.rsi/meta.json index 25e7e61d32..05ec735e1a 100644 --- a/Resources/Textures/Objects/Fun/cluwnehorn.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/cluwnehorn.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14", + "copyright": "Made by brainfood1183 (github) for ss14, Modified by Archee1 (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Fun/goldbikehorn.rsi/equipped-BELT.png b/Resources/Textures/Objects/Fun/goldbikehorn.rsi/equipped-BELT.png index 6a334b3df9..6319ae682d 100644 Binary files a/Resources/Textures/Objects/Fun/goldbikehorn.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Fun/goldbikehorn.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Fun/goldbikehorn.rsi/icon.png b/Resources/Textures/Objects/Fun/goldbikehorn.rsi/icon.png index 9be524c789..3a1fc76e6e 100644 Binary files a/Resources/Textures/Objects/Fun/goldbikehorn.rsi/icon.png and b/Resources/Textures/Objects/Fun/goldbikehorn.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Fun/goldbikehorn.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/goldbikehorn.rsi/inhand-left.png index c2920bd89d..2416451924 100644 Binary files a/Resources/Textures/Objects/Fun/goldbikehorn.rsi/inhand-left.png and b/Resources/Textures/Objects/Fun/goldbikehorn.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/goldbikehorn.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/goldbikehorn.rsi/inhand-right.png index 456b4c1adc..f4be478071 100644 Binary files a/Resources/Textures/Objects/Fun/goldbikehorn.rsi/inhand-right.png and b/Resources/Textures/Objects/Fun/goldbikehorn.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/goldbikehorn.rsi/meta.json b/Resources/Textures/Objects/Fun/goldbikehorn.rsi/meta.json index 7f233404e0..32fcb53c80 100644 --- a/Resources/Textures/Objects/Fun/goldbikehorn.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/goldbikehorn.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/125c975f1b3bf9826b37029e9ab5a5f89e975a7e. Modified by brainfood1183 (github) for ss14", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/125c975f1b3bf9826b37029e9ab5a5f89e975a7e. Modified by brainfood1183 (github) for ss14 and later modified by Archee1 (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Fun/push_horn.rsi/equipped-BELT.png b/Resources/Textures/Objects/Fun/push_horn.rsi/equipped-BELT.png index ada82d1936..7b74f2d11c 100644 Binary files a/Resources/Textures/Objects/Fun/push_horn.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Fun/push_horn.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Fun/push_horn.rsi/icon.png b/Resources/Textures/Objects/Fun/push_horn.rsi/icon.png index 5c10c71554..aef349232d 100644 Binary files a/Resources/Textures/Objects/Fun/push_horn.rsi/icon.png and b/Resources/Textures/Objects/Fun/push_horn.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Fun/push_horn.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/push_horn.rsi/inhand-left.png index 498c3f4d7b..f55c5a5b0b 100644 Binary files a/Resources/Textures/Objects/Fun/push_horn.rsi/inhand-left.png and b/Resources/Textures/Objects/Fun/push_horn.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/push_horn.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/push_horn.rsi/inhand-right.png index 5741b385ab..68d53a7d10 100644 Binary files a/Resources/Textures/Objects/Fun/push_horn.rsi/inhand-right.png and b/Resources/Textures/Objects/Fun/push_horn.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/push_horn.rsi/meta.json b/Resources/Textures/Objects/Fun/push_horn.rsi/meta.json index 77fe8221c0..d4211af709 100644 --- a/Resources/Textures/Objects/Fun/push_horn.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/push_horn.rsi/meta.json @@ -1,26 +1,26 @@ { "version": 1, - "license": "CC0-1.0", - "copyright": "Made by Thinbug for ss14 :33", + "license": "CC-BY-SA-3.0", + "copyright": "sprites by mubururu_ (github)", "size": { - "x": 32, - "y": 32 + "x": 32, + "y": 32 }, "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BELT", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } ] } diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/acquisition_form.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/acquisition_form.png new file mode 100644 index 0000000000..f5b55f7706 Binary files /dev/null and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/acquisition_form.png differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/acquisition_form_header.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/acquisition_form_header.png new file mode 100644 index 0000000000..ab22e0e3c1 Binary files /dev/null and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/acquisition_form_header.png differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/acquisition_form_words.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/acquisition_form_words.png new file mode 100644 index 0000000000..3f7e0b7fbd Binary files /dev/null and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/acquisition_form_words.png differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json index 2d52452426..4653e5ebe3 100644 --- a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json @@ -1,12 +1,21 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. paper_stamp-syndicate by Veritius. paper_receipt, paper_receipt_horizontal by eoineoineoin. paper_stamp-greytide by ubaser. paper_stamp-psychologist by clinux. syndicate_card by Aserovich. paper_stamp_wizard by brassicaprime69 (Discord)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. paper_stamp-syndicate by Veritius. paper_receipt, paper_receipt_horizontal by eoineoineoin. paper_stamp-greytide by ubaser. paper_stamp-psychologist by clinux. syndicate_card by Aserovich. paper_stamp_wizard by brassicaprime69 (Discord), acquisition_form acquisition_form_words and acquisition_form_header by sowelipililimute (GitHub)", "size": { "x": 32, "y": 32 }, "states": [ + { + "name": "acquisition_form" + }, + { + "name": "acquisition_form_words" + }, + { + "name": "acquisition_form_header" + }, { "name": "envelope_closed" }, diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idboxer.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idboxer.png index 0c2b5298e5..5bd85696a6 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idboxer.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idboxer.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idlawyer.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idlawyer.png index 353138cd9e..388cf5f428 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idlawyer.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idlawyer.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json index 26470a48d4..50dc52c71e 100644 --- a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json @@ -1,293 +1,293 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github), pirate made by brainfood1183 (github), idadmin made by Arimah (github), idvisitor by IProduceWidgets (Github), idintern-service by spanky-spanky (Github) | service icons darkened by frobnic8 (Discord and Github), wizard and idwizard by ScarKy0", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "default" - }, - { - "name": "centcom" - }, - { - "name": "admin" - }, - { - "name": "ert_chaplain" - }, - { - "name": "ert_commander" - }, - { - "name": "ert_engineer" - }, - { - "name": "ert_janitor" - }, - { - "name": "ert_medic" - }, - { - "name": "ert_security" - }, - { - "name": "gold" - }, - { - "name": "idpassenger" - }, - { - "name": "idatmospherictechnician" - }, - { - "name": "idbartender" - }, - { - "name": "idbotanist" - }, - { - "name": "idboxer" - }, - { - "name": "idcaptain" - }, - { - "name": "idcargotechnician" - }, - { - "name": "idcentcom" - }, - { - "name": "idchaplain" - }, - { - "name": "idchemist" - }, - { - "name": "idchiefengineer" - }, - { - "name": "idchiefmedicalofficer" - }, - { - "name": "idclown" - }, - { - "name": "idcook" - }, - { - "name": "idcurator" - }, - { - "name": "iddetective" - }, - { - "name": "idgeneticist" - }, - { - "name": "idheadofpersonnel" - }, - { - "name": "idheadofsecurity" - }, - { - "name": "idbrigmedic" - }, - { - "name": "idjanitor" - }, - { - "name": "idlawyer" - }, - { - "name": "idiaa" - }, - { - "name": "idmagistrat" - }, - { - "name": "idmedicaldoctor" - }, - { - "name": "idmime" - }, - { - "name": "idparamedic" - }, - { - "name": "idpsychologist" - }, - { - "name": "idreporter" - }, - { - "name": "idprisoner" - }, - { - "name": "idquartermaster" - }, - { - "name": "idresearchdirector" - }, - { - "name": "idroboticist" - }, - { - "name": "idscientist" - }, - { - "name": "idsecurityofficer" - }, - { - "name": "idshaftminer" - }, - { - "name": "idstationengineer" - }, - { - "name": "idunknown" - }, - { - "name": "idvirologist" - }, - { - "name": "idvisitor" - }, - { - "name": "idwarden" - }, - { - "name": "idmusician" - }, - { - "name": "idzookeeper" - }, - { - "name": "idintern-sci" - }, - { - "name": "idintern-cadet" - }, - { - "name": "idintern-med" - }, - { - "name": "idintern-service" - }, - { - "name": "idintern-tech" - }, - { - "name": "idadmin" - }, - { - "name": "orange" - }, - { - "name": "pirate" - }, - { - "name": "prisoner_001" - }, - { - "name": "prisoner_002" - }, - { - "name": "prisoner_003" - }, - { - "name": "prisoner_004" - }, - { - "name": "prisoner_005" - }, - { - "name": "prisoner_006" - }, - { - "name": "prisoner_007" - }, - { - "name": "silver" - }, - { - "name": "syndie" - }, - { - "name": "idcluwne" - }, - { - "name": "idseniorengineer" - }, - { - "name": "idseniorresearcher" - }, - { - "name": "idseniorphysician" - }, - { - "name": "idseniorofficer" - }, - { - "name": "idpilot" - }, - { - "name": "wizard" - }, - { - "name": "idwizard" - }, - { - "name": "gold-inhand-left", - "directions": 4 - }, - { - "name": "gold-inhand-right", - "directions": 4 - }, - { - "name": "default-inhand-left", - "directions": 4 - }, - { - "name": "default-inhand-right", - "directions": 4 - }, - { - "name": "silver-inhand-left", - "directions": 4 - }, - { - "name": "silver-inhand-right", - "directions": 4 - }, - { - "name": "orange-inhand-left", - "directions": 4 - }, - { - "name": "orange-inhand-right", - "directions": 4 - }, - { - "name": "blue-inhand-left", - "directions": 4 - }, - { - "name": "blue-inhand-right", - "directions": 4 - }, - { - "name": "green-inhand-left", - "directions": 4 - }, - { - "name": "green-inhand-right", - "directions": 4 - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github), pirate made by brainfood1183 (github), idadmin made by Arimah (github), idvisitor by IProduceWidgets (Github), idintern-service by spanky-spanky (Github) | service icons darkened by frobnic8 (Discord and Github), wizard and idwizard by ScarKy0 | idboxer and idlawyer recoloured by K-Dynamic (github).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "default" + }, + { + "name": "centcom" + }, + { + "name": "admin" + }, + { + "name": "ert_chaplain" + }, + { + "name": "ert_commander" + }, + { + "name": "ert_engineer" + }, + { + "name": "ert_janitor" + }, + { + "name": "ert_medic" + }, + { + "name": "ert_security" + }, + { + "name": "gold" + }, + { + "name": "idpassenger" + }, + { + "name": "idatmospherictechnician" + }, + { + "name": "idbartender" + }, + { + "name": "idbotanist" + }, + { + "name": "idboxer" + }, + { + "name": "idcaptain" + }, + { + "name": "idcargotechnician" + }, + { + "name": "idcentcom" + }, + { + "name": "idchaplain" + }, + { + "name": "idchemist" + }, + { + "name": "idchiefengineer" + }, + { + "name": "idchiefmedicalofficer" + }, + { + "name": "idclown" + }, + { + "name": "idcook" + }, + { + "name": "idcurator" + }, + { + "name": "iddetective" + }, + { + "name": "idgeneticist" + }, + { + "name": "idheadofpersonnel" + }, + { + "name": "idheadofsecurity" + }, + { + "name": "idbrigmedic" + }, + { + "name": "idjanitor" + }, + { + "name": "idlawyer" + }, + { + "name": "idmedicaldoctor" + }, + { + "name": "idmime" + }, + { + "name": "idparamedic" + }, + { + "name": "idpsychologist" + }, + { + "name": "idreporter" + }, + { + "name": "idprisoner" + }, + { + "name": "idquartermaster" + }, + { + "name": "idresearchdirector" + }, + { + "name": "idroboticist" + }, + { + "name": "idscientist" + }, + { + "name": "idsecurityofficer" + }, + { + "name": "idshaftminer" + }, + { + "name": "idstationengineer" + }, + { + "name": "idunknown" + }, + { + "name": "idvirologist" + }, + { + "name": "idvisitor" + }, + { + "name": "idwarden" + }, + { + "name": "idmusician" + }, + { + "name": "idzookeeper" + }, + { + "name": "idintern-sci" + }, + { + "name": "idintern-cadet" + }, + { + "name": "idintern-med" + }, + { + "name": "idintern-service" + }, + { + "name": "idintern-tech" + }, + { + "name": "idadmin" + }, + { + "name": "orange" + }, + { + "name": "pirate" + }, + { + "name": "prisoner_001" + }, + { + "name": "prisoner_002" + }, + { + "name": "prisoner_003" + }, + { + "name": "prisoner_004" + }, + { + "name": "prisoner_005" + }, + { + "name": "prisoner_006" + }, + { + "name": "prisoner_007" + }, + { + "name": "silver" + }, + { + "name": "syndie" + }, + { + "name": "idcluwne" + }, + { + "name": "idseniorengineer" + }, + { + "name": "idseniorresearcher" + }, + { + "name": "idseniorphysician" + }, + { + "name": "idseniorofficer" + }, + { + "name": "wizard" + }, + { + "name": "idwizard" + }, + { + "name": "gold-inhand-left", + "directions": 4 + }, + { + "name": "gold-inhand-right", + "directions": 4 + }, + { + "name": "default-inhand-left", + "directions": 4 + }, + { + "name": "default-inhand-right", + "directions": 4 + }, + { + "name": "silver-inhand-left", + "directions": 4 + }, + { + "name": "silver-inhand-right", + "directions": 4 + }, + { + "name": "orange-inhand-left", + "directions": 4 + }, + { + "name": "orange-inhand-right", + "directions": 4 + }, + { + "name": "blue-inhand-left", + "directions": 4 + }, + { + "name": "blue-inhand-right", + "directions": 4 + }, + { + "name": "green-inhand-left", + "directions": 4 + }, + { + "name": "green-inhand-right", + "directions": 4 + }, + { + "name": "idpilot" + }, + { + "name": "idiaa" + }, + { + "name": "idmagistrat" + } + ] } diff --git a/Resources/Textures/Objects/Misc/meteor.rsi/clown_pixel.png b/Resources/Textures/Objects/Misc/meteor.rsi/clown_pixel.png new file mode 100644 index 0000000000..c2587fb8f3 Binary files /dev/null and b/Resources/Textures/Objects/Misc/meteor.rsi/clown_pixel.png differ diff --git a/Resources/Textures/Objects/Misc/meteor.rsi/cow_pixel.png b/Resources/Textures/Objects/Misc/meteor.rsi/cow_pixel.png new file mode 100644 index 0000000000..bce553bceb Binary files /dev/null and b/Resources/Textures/Objects/Misc/meteor.rsi/cow_pixel.png differ diff --git a/Resources/Textures/Objects/Misc/meteor.rsi/meta.json b/Resources/Textures/Objects/Misc/meteor.rsi/meta.json index 1e857be2cb..986fed4345 100644 --- a/Resources/Textures/Objects/Misc/meteor.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/meteor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31dd6749bfe32810c46e7913efc99a187479cd51/icons/obj/meteor.dmi", + "copyright": "Taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31dd6749bfe32810c46e7913efc99a187479cd51/icons/obj/meteor.dmi. cow_pixel - taken from https://github.com/tgstation/tgstation/commit/53d1f1477d22a11a99c6c6924977cd431075761b and modified by B_Kirill. potato by Chaoticaa (GitHub), modified by B_Kirill. clown_pixel - assembly of [Human sprite - taken from https://github.com/tgstation/tgstation/blob/8024397cc81c5f47f74cf4279e35728487d0a1a7/icons/mob/human_parts_greyscale.dmi and modified by DrSmugleaf ; Clown wig and mask - taken from https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e ; Clown suit - taken from https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 ; Clown shoes - taken from https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe ; Giggles von honkerton - taken from https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1] by B_Kirill.", "size": { "x": 32, "y": 32 @@ -266,6 +266,43 @@ }, { "name": "firework" + }, + { + "name": "cow_pixel", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "clown_pixel", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "potato", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Misc/meteor.rsi/potato.png b/Resources/Textures/Objects/Misc/meteor.rsi/potato.png new file mode 100644 index 0000000000..98c12aba02 Binary files /dev/null and b/Resources/Textures/Objects/Misc/meteor.rsi/potato.png differ diff --git a/Resources/Textures/Objects/Power/powersink.rsi/inhand-left.png b/Resources/Textures/Objects/Power/powersink.rsi/inhand-left.png new file mode 100644 index 0000000000..6bb372c8c1 Binary files /dev/null and b/Resources/Textures/Objects/Power/powersink.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Power/powersink.rsi/inhand-right.png b/Resources/Textures/Objects/Power/powersink.rsi/inhand-right.png new file mode 100644 index 0000000000..6bb372c8c1 Binary files /dev/null and b/Resources/Textures/Objects/Power/powersink.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Power/powersink.rsi/meta.json b/Resources/Textures/Objects/Power/powersink.rsi/meta.json index b4bc0a63f1..f15e188a17 100644 --- a/Resources/Textures/Objects/Power/powersink.rsi/meta.json +++ b/Resources/Textures/Objects/Power/powersink.rsi/meta.json @@ -1,14 +1,23 @@ { - "version": 1, - "license": "CC-BY-NC-SA-3.0", - "copyright": "Drawn by Ubaser.", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "powersink" - } - ] + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Drawn by Ubaser. inhands by mubururu_ (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "powersink" + } + ] } diff --git a/Resources/Textures/Objects/Specific/Cargo/mail.rsi/bomb-unshaded.png b/Resources/Textures/Objects/Specific/Cargo/mail.rsi/bomb_unshaded.png similarity index 100% rename from Resources/Textures/Objects/Specific/Cargo/mail.rsi/bomb-unshaded.png rename to Resources/Textures/Objects/Specific/Cargo/mail.rsi/bomb_unshaded.png diff --git a/Resources/Textures/Objects/Specific/Cargo/mail.rsi/meta.json b/Resources/Textures/Objects/Specific/Cargo/mail.rsi/meta.json index 9aa97992b1..500d1632fc 100644 --- a/Resources/Textures/Objects/Specific/Cargo/mail.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Cargo/mail.rsi/meta.json @@ -43,7 +43,7 @@ "name": "bomb" }, { - "name": "bomb-unshaded", + "name": "bomb_unshaded", "delays": [ [ 0.2, diff --git a/Resources/Textures/Objects/Specific/Cargo/mail_large.rsi/bomb-unshaded.png b/Resources/Textures/Objects/Specific/Cargo/mail_large.rsi/bomb_unshaded.png similarity index 100% rename from Resources/Textures/Objects/Specific/Cargo/mail_large.rsi/bomb-unshaded.png rename to Resources/Textures/Objects/Specific/Cargo/mail_large.rsi/bomb_unshaded.png diff --git a/Resources/Textures/Objects/Specific/Cargo/mail_large.rsi/meta.json b/Resources/Textures/Objects/Specific/Cargo/mail_large.rsi/meta.json index a265c4aada..67fafe31b3 100644 --- a/Resources/Textures/Objects/Specific/Cargo/mail_large.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Cargo/mail_large.rsi/meta.json @@ -43,7 +43,7 @@ "name": "bomb" }, { - "name": "bomb-unshaded", + "name": "bomb_unshaded", "delays": [ [ 0.125, diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json b/Resources/Textures/Objects/Storage/boxes.rsi/meta.json index 8c3b060dfb..e5bd3349bb 100644 --- a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json +++ b/Resources/Textures/Objects/Storage/boxes.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/ca674eff9d23e04357b7609ef7e07eadfc1a993f and modified by Flareguy (github), encryptokey was taken from Baystation12 at https://github.com/infinitystation/Baystation12/blob/073f678cdce92edb8fcd55f9ffc9f0523bf31506/icons/obj/radio.dmi and modified by lapatison. boxwidetoy, shelltoy, swab, flare, inflatable, trashbag, magazine, holo and forensic created by potato1234x (github) for ss14 based on toys.rsi, mouth_swab.rsi, flare.rsi, inflatable_wall.rsi, trashbag.rsi, caseless_pistol_mag.rsi, guardians.rsi and bureaucracy.rsi respectively, candle and darts created by TheShuEd for ss14, throwing_knives and vials was drawn by Ubaser, evidence_markers by moomoobeef, nitrogentank modified from extendedtank by Errant, agrichemkit by Cerol, modified by ps3moira (github). sechud renamed to secglasses, new sechud, sunglasses by K-Dynamic (github).", + "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/ca674eff9d23e04357b7609ef7e07eadfc1a993f and modified by Flareguy (github), encryptokey was taken from Baystation12 at https://github.com/infinitystation/Baystation12/blob/073f678cdce92edb8fcd55f9ffc9f0523bf31506/icons/obj/radio.dmi and modified by lapatison. boxwidetoy, shelltoy, swab, flare, inflatable, trashbag, magazine, holo and forensic created by potato1234x (github) for ss14 based on toys.rsi, mouth_swab.rsi, flare.rsi, inflatable_wall.rsi, trashbag.rsi, caseless_pistol_mag.rsi, guardians.rsi and bureaucracy.rsi respectively, candle and darts created by TheShuEd for ss14, throwing_knives and vials was drawn by Ubaser, evidence_markers by moomoobeef, nitrogentank modified from extendedtank by Errant, agrichemkit by Cerol, modified by ps3moira (github). sechud renamed to secglasses, new sechud, sunglasses by K-Dynamic (github). utensils by gentleman-bird (github)", "size": { "x": 32, "y": 32 @@ -151,6 +151,9 @@ { "name": "trashbag" }, + { + "name": "utensils" + }, { "name": "writing" }, @@ -200,7 +203,7 @@ { "name": "france" }, - { + { "name": "agrichemkit" }, { diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/utensils.png b/Resources/Textures/Objects/Storage/boxes.rsi/utensils.png new file mode 100644 index 0000000000..60bdbbe1fe Binary files /dev/null and b/Resources/Textures/Objects/Storage/boxes.rsi/utensils.png differ diff --git a/Resources/Textures/Objects/Tools/thief_beacon.rsi/folded_extraction.png b/Resources/Textures/Objects/Tools/thief_beacon.rsi/folded_extraction.png index 43ead68bb2..fa6333e0b7 100644 Binary files a/Resources/Textures/Objects/Tools/thief_beacon.rsi/folded_extraction.png and b/Resources/Textures/Objects/Tools/thief_beacon.rsi/folded_extraction.png differ diff --git a/Resources/Textures/Objects/Tools/thief_beacon.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/thief_beacon.rsi/inhand-left.png new file mode 100644 index 0000000000..7e65f818ad Binary files /dev/null and b/Resources/Textures/Objects/Tools/thief_beacon.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tools/thief_beacon.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/thief_beacon.rsi/inhand-right.png new file mode 100644 index 0000000000..248d4a3dac Binary files /dev/null and b/Resources/Textures/Objects/Tools/thief_beacon.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tools/thief_beacon.rsi/meta.json b/Resources/Textures/Objects/Tools/thief_beacon.rsi/meta.json index ba7e003575..68e94c6964 100644 --- a/Resources/Textures/Objects/Tools/thief_beacon.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/thief_beacon.rsi/meta.json @@ -1,32 +1,41 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/austation/austation/commit/e2a4fefd01e702f48d3d4cc8d6a2686d54d104fa and edited by TheShuEd", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "folded_extraction" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/austation/austation/commit/e2a4fefd01e702f48d3d4cc8d6a2686d54d104fa and edited by TheShuEd, folded sprite modified by mubururu_, inhands by mubururu_ (github)", + "size": { + "x": 32, + "y": 32 }, - { - "name": "extraction_point", - "delays": [ - [ - 0.5, - 0.5 - ] - ] - }, - { - "name": "extraction_point_light", - "delays": [ - [ - 0.5, - 0.5 - ] - ] - } - ] -} \ No newline at end of file + "states": [ + { + "name": "folded_extraction" + }, + { + "name": "extraction_point", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "extraction_point_light", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + + ] +} diff --git a/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/active.png b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/active.png new file mode 100644 index 0000000000..69d3caf891 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/active.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/equipped-BELT.png new file mode 100644 index 0000000000..c0ec51c1cb Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/icon.png new file mode 100644 index 0000000000..c3c7f6fbe0 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/inhand-left.png new file mode 100644 index 0000000000..3ba282d6c1 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/inhand-right.png new file mode 100644 index 0000000000..84e4dc7578 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/meta.json new file mode 100644 index 0000000000..b2739f6b31 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/meta.json @@ -0,0 +1,44 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "primed" + }, + { + "name": "active", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "spent" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/primed.png new file mode 100644 index 0000000000..7acc406dba Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/spent.png b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/spent.png new file mode 100644 index 0000000000..c261eff5d1 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/airboom.rsi/spent.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-1.png index 1171c429cd..fcb04ff168 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-2.png index 6a537665b2..5dc3360bbd 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-2.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-4.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-4.png index c78ed3dfdd..510b8fe19e 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-4.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-4.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-5.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-5.png index 58a39a2981..842b8e5ebf 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-5.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/mag-5.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-1.png index 751c90c6d4..917b415486 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-2.png index 83cde54ae7..8a0c6aa651 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-2.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-3.png index fc56edb533..be2b506781 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-3.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-4.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-4.png index a95df7a2bc..105fd48a78 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-4.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-4.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-5.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-5.png index 9d5914aacb..ffe088a3d7 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-5.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/mag-5.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/base.png index a49a7a90f7..fd32caa5bd 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/base.png and b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/base.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/bolt-open.png index 2d1d1d0205..8308c4f5ec 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/bolt-open.png and b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/ice.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/ice.png new file mode 100644 index 0000000000..71633de682 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/ice.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json index d7b6a34f54..872a5ab721 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json @@ -55,6 +55,9 @@ }, { "name": "heavylaser_flash" + }, + { + "name": "ice" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/base.png index b9197c0717..79022c904b 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/base.png and b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/base.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/bolt-open.png index 55fc78d5dd..1004bdaea4 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/bolt-open.png and b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/icon.png index 129bebc43b..8cb2578cce 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-0.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-0.png index 4002c82378..272409ddc5 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-0.png and b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-0.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-1.png new file mode 100644 index 0000000000..878ed2bd44 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-2.png new file mode 100644 index 0000000000..714d3343c4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-3.png new file mode 100644 index 0000000000..6636521282 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-4.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-4.png new file mode 100644 index 0000000000..5b5ab4078a Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/mag-4.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json index 8bc8dfa99b..d2d6aaa217 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Original sprite by Emisse (GitHub), all altered sprites by https://github.com/august-sun.", + "copyright": "Original sprite by Emisse (GitHub), all altered sprites by https://github.com/august-sun. Magazine state sprites by RedBookcase on Github.", "size": { "x": 32, "y": 32 @@ -17,7 +17,49 @@ "name": "bolt-open" }, { - "name": "mag-0" + "name": "mag-0", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "mag-1", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "mag-2", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "mag-3", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "mag-4", + "delays": [ + [ + 0.5, + 0.5 + ] + ] }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/base.png index c0555d9ed3..48cf06c92b 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/base.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/base.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png index 5a96a55749..0231bfabf5 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-0.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-0.png index 8242a6d00a..99fec8cbea 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-0.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-0.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-1.png new file mode 100644 index 0000000000..c9520c87b1 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-2.png new file mode 100644 index 0000000000..b218d58bfd Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-3.png new file mode 100644 index 0000000000..84dcfb788b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-4.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-4.png new file mode 100644 index 0000000000..14065f9404 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-4.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json index 59312b5093..08577a04fe 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244, all sprites minus suppressor heavily edited by Emisse for SS14", + "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244, all sprites minus suppressor heavily edited by Emisse for SS14. Magazine state sprites by RedBookcase on Github.", "size": { "x": 32, "y": 32 @@ -17,7 +17,49 @@ "name": "bolt-open" }, { - "name": "mag-0" + "name": "mag-0", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "mag-1", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "mag-2", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "mag-3", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "mag-4", + "delays": [ + [ + 0.5, + 0.5 + ] + ] }, { "name": "suppressor" diff --git a/Resources/Textures/Parallaxes/AspidParallaxBG.png.yml b/Resources/Textures/Parallaxes/AspidParallaxBG.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/AspidParallaxBG.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Parallaxes/AspidParallaxNeb.png.yml b/Resources/Textures/Parallaxes/AspidParallaxNeb.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/AspidParallaxNeb.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Parallaxes/Asteroids.png.yml b/Resources/Textures/Parallaxes/Asteroids.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/Asteroids.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Parallaxes/KettleParallaxBG.png.yml b/Resources/Textures/Parallaxes/KettleParallaxBG.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/KettleParallaxBG.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Parallaxes/KettleParallaxNeb.png.yml b/Resources/Textures/Parallaxes/KettleParallaxNeb.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/KettleParallaxNeb.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Parallaxes/core_planet.png.yml b/Resources/Textures/Parallaxes/core_planet.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/core_planet.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Parallaxes/debris_large.png.yml b/Resources/Textures/Parallaxes/debris_large.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/debris_large.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Parallaxes/debris_small.png.yml b/Resources/Textures/Parallaxes/debris_small.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/debris_small.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Parallaxes/gas_giant.png.yml b/Resources/Textures/Parallaxes/gas_giant.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/gas_giant.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Parallaxes/land.png.yml b/Resources/Textures/Parallaxes/land.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/land.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Parallaxes/layer1.png.yml b/Resources/Textures/Parallaxes/layer1.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/layer1.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Parallaxes/noise.png.yml b/Resources/Textures/Parallaxes/noise.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/noise.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Parallaxes/planet.png.yml b/Resources/Textures/Parallaxes/planet.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/planet.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Parallaxes/space_map2.png.yml b/Resources/Textures/Parallaxes/space_map2.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/space_map2.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Shaders/rainbow.swsl b/Resources/Textures/Shaders/rainbow.swsl index 6e474abb1a..e622e1fa1a 100644 --- a/Resources/Textures/Shaders/rainbow.swsl +++ b/Resources/Textures/Shaders/rainbow.swsl @@ -1,12 +1,21 @@ uniform sampler2D SCREEN_TEXTURE; -uniform highp float effectScale; +// Strength of the rainbow color effect. Between 0 and 1. +uniform highp float colorScale; +// Strength of the screen warping effect. Between 0 and 1. +uniform highp float warpScale; +// How fast to do the rotating motion. +// 1 for normal effect. +// 0 for the reduced motion setting. +uniform highp float timeScale; +// starting phase for the rotation effect +// needed so it doesn't always look the same for 0 motion +uniform highp float phase; -const highp float TimeScale = 0.15; const highp float DistortionScale = 0.02; // how strongly to warp the screen const highp float NoiseScale = 4.0; // scale of the random noise const highp float MaxColorMix = 0.05; // rainbow effect strength. at 1.0, you wont be able to see the screen anymore const highp float BaseColorMult = 8.0; // multiplier of the underlying screen texture for the rainbow effect -const highp float BaseColorPow = 0.8; // exponent for the rainbow effect's +const highp float BaseColorPow = 0.8; // exponent for the rainbow effect's const highp float CenterRadius = 200.0; // radius of the gradient used to tone down the distortion effect const highp float CenterMinDist = 0.4; // minimum distance from the center of the screen for the distortion to appear at all const highp float CenterPow = 3.0; // the exponent used for the distortion center @@ -27,7 +36,7 @@ highp float noise( highp vec2 p ) { highp vec2 i = floor( p + (p.x+p.y)*K1 ); highp vec2 a = p - i + (i.x+i.y)*K2; - highp float m = step(a.y,a.x); + highp float m = step(a.y,a.x); highp vec2 o = vec2(m,1.0-m); highp vec2 b = a - o + K2; highp vec2 c = a - 1.0 + 2.0*K2; @@ -43,8 +52,8 @@ highp vec3 hsv2rgb_smooth( highp vec3 c ) { } -highp float mixNoise(highp vec2 point, highp float phase) { - highp float time = TIME * TimeScale + phase; +highp float mixNoise(highp vec2 point, highp float phase2) { + highp float time = TIME * timeScale * 0.15 + phase + phase2; highp float a = noise( NoiseScale * point - time); highp float b = noise( NoiseScale * point + time ); return mix(a,b,0.5); @@ -58,19 +67,16 @@ void fragment() { highp vec2 coord = FRAGCOORD.xy * SCREEN_PIXEL_SIZE.xy; highp vec2 aspect = vec2(1.0/SCREEN_PIXEL_SIZE.x, 1.0/SCREEN_PIXEL_SIZE.y); highp vec2 center = aspect * 0.5; - + // warp the screen. highp vec2 offset = vec2(mixNoise(coord, 0.), mixNoise(coord, 5.)); highp float centergradient = genGradient(center, FRAGCOORD.xy, CenterRadius, CenterMinDist, CenterPow); - COLOR = zTextureSpec(SCREEN_TEXTURE, coord + effectScale * (DistortionScale * centergradient) * offset); - + COLOR = zTextureSpec(SCREEN_TEXTURE, coord + warpScale * (DistortionScale * centergradient) * offset); + // apply rainbow effect. highp float hue = 1. + mixNoise(coord, 10.); highp vec3 color = hsv2rgb_smooth(vec3(hue,1.0,1.0)); highp float centercolor = genGradient(center, FRAGCOORD.xy, CenterColorRadius, CenterColorMinDist, CenterColorPow); highp float coloration = pow((COLOR.x + COLOR.y + COLOR.z) * BaseColorMult, BaseColorPow) * centercolor; - COLOR.xyz = mix(COLOR.xyz, color, MaxColorMix * effectScale * effectScale * coloration); + COLOR.xyz = mix(COLOR.xyz, color, MaxColorMix * colorScale * colorScale * coloration); } - - - diff --git a/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/meta.json b/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/meta.json index 905fe8a64e..958822457c 100644 --- a/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Tgstation at 97b4295aca9f31a750456e40730d05b5837e39fc", + "copyright": "Tgstation at 97b4295aca9f31a750456e40730d05b5837e39fc, welded taken from Paradise Station at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d and modified by K-Dynamic (github)", "size": { "x": 32, "y": 32 @@ -45,6 +45,9 @@ }, { "name": "closed" + }, + { + "name": "welded" } ] } diff --git a/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/welded.png b/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/welded.png new file mode 100644 index 0000000000..36da40c106 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Shutters/shutters.rsi/meta.json b/Resources/Textures/Structures/Doors/Shutters/shutters.rsi/meta.json index 130943aa80..9dd14958c7 100644 --- a/Resources/Textures/Structures/Doors/Shutters/shutters.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Shutters/shutters.rsi/meta.json @@ -1 +1,97 @@ -{"name":1,"size":{"x":32,"y":32},"states":[{"name":"closing","directions":1,"delays":[[0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05]]},{"name":"opening","directions":1,"delays":[[0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05]]},{"name":"open","directions":1},{"name":"frame","directions":1},{"name":"closed","directions":1}],"license":"CC-BY-SA-3.0","copyright":"Tgstation at 97b0.05295aca9f31a7500.0556e0.050730d05b5837e39fc","version":1} \ No newline at end of file +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Tgstation at 97b0.05295aca9f31a7500.0556e0.050730d05b5837e39fc, welded taken from Paradise Station at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d and modified by K-Dynamic (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "frame", + "directions": 1 + }, + { + "name": "open", + "directions": 1 + }, + { + "name": "closed", + "directions": 1 + }, + { + "name": "welded", + "directions": 1 + }, + { + "name": "closing", + "directions": 1, + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + }, + { + "name": "opening", + "directions": 1, + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Shutters/shutters.rsi/welded.png b/Resources/Textures/Structures/Doors/Shutters/shutters.rsi/welded.png new file mode 100644 index 0000000000..5063c6ca1a Binary files /dev/null and b/Resources/Textures/Structures/Doors/Shutters/shutters.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Shutters/shutters_radiation.rsi/meta.json b/Resources/Textures/Structures/Doors/Shutters/shutters_radiation.rsi/meta.json index c97082c061..af88fb32c0 100644 --- a/Resources/Textures/Structures/Doors/Shutters/shutters_radiation.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Shutters/shutters_radiation.rsi/meta.json @@ -1 +1,92 @@ -{"name":1,"size":{"x":32,"y":32},"states":[{"name":"closed","directions":1},{"name":"open","directions":1},{"name":"opening","directions":1,"delays":[[0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05]]},{"name":"closing","directions":1,"delays":[[0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05]]}],"license":"CC-BY-SA-3.0","copyright":"Tgstation at 97b0.05295aca9f31a7500.0556e0.050730d05b5837e39fc","version":1} \ No newline at end of file +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Tgstation at 97b0.05295aca9f31a7500.0556e0.050730d05b5837e39fc, welded taken from Paradise Station at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d and modified by K-Dynamic (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "open", + "directions": 1 + }, + { + "name": "closed", + "directions": 1 + }, + { + "name": "welded" + }, + { + "name": "opening", + "directions": 1, + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + }, + { + "name": "closing", + "directions": 1, + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Shutters/shutters_radiation.rsi/welded.png b/Resources/Textures/Structures/Doors/Shutters/shutters_radiation.rsi/welded.png new file mode 100644 index 0000000000..5063c6ca1a Binary files /dev/null and b/Resources/Textures/Structures/Doors/Shutters/shutters_radiation.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Shutters/shutters_window.rsi/meta.json b/Resources/Textures/Structures/Doors/Shutters/shutters_window.rsi/meta.json index 611cd681a8..76e841bf61 100644 --- a/Resources/Textures/Structures/Doors/Shutters/shutters_window.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Shutters/shutters_window.rsi/meta.json @@ -1 +1,93 @@ -{"name":1,"size":{"x":32,"y":32},"states":[{"name":"closed","directions":1},{"name":"opening","directions":1,"delays":[[0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05]]},{"name":"closing","directions":1,"delays":[[0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05]]},{"name":"open","directions":1}],"license":"CC-BY-SA-3.0","copyright":"Tgstation at 97b0.05295aca9f31a7500.0556e0.050730d05b5837e39fc, Edited to rectagular window by Pancake","version":1} \ No newline at end of file +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Tgstation at 97b0.05295aca9f31a7500.0556e0.050730d05b5837e39fc, Edited to rectagular window by Pancake, welded taken from Paradise Station at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d and modified by K-Dynamic (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "open", + "directions": 1 + }, + { + "name": "closed", + "directions": 1 + }, + { + "name": "welded", + "directions": 1 + }, + { + "name": "opening", + "directions": 1, + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + }, + { + "name": "closing", + "directions": 1, + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Shutters/shutters_window.rsi/welded.png b/Resources/Textures/Structures/Doors/Shutters/shutters_window.rsi/welded.png new file mode 100644 index 0000000000..5063c6ca1a Binary files /dev/null and b/Resources/Textures/Structures/Doors/Shutters/shutters_window.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Hydroponics/misc.rsi/fungal_soil.png b/Resources/Textures/Structures/Hydroponics/misc.rsi/fungal_soil.png new file mode 100644 index 0000000000..cf6bfc0e65 Binary files /dev/null and b/Resources/Textures/Structures/Hydroponics/misc.rsi/fungal_soil.png differ diff --git a/Resources/Textures/Structures/Hydroponics/misc.rsi/meta.json b/Resources/Textures/Structures/Hydroponics/misc.rsi/meta.json index 35b9d13cfa..f4f0e3fb49 100644 --- a/Resources/Textures/Structures/Hydroponics/misc.rsi/meta.json +++ b/Resources/Textures/Structures/Hydroponics/misc.rsi/meta.json @@ -7,6 +7,9 @@ "y": 32 }, "states": [ + { + "name": "fungal_soil" + }, { "name": "moldcreep0" }, diff --git a/Resources/Textures/Structures/Machines/Medical/cryopod.rsi/pod-off.png b/Resources/Textures/Structures/Machines/Medical/cryopod.rsi/pod-off.png index c3194e0451..eca594f1cd 100644 Binary files a/Resources/Textures/Structures/Machines/Medical/cryopod.rsi/pod-off.png and b/Resources/Textures/Structures/Machines/Medical/cryopod.rsi/pod-off.png differ diff --git a/Resources/Textures/Structures/Machines/Medical/cryopod.rsi/pod-on.png b/Resources/Textures/Structures/Machines/Medical/cryopod.rsi/pod-on.png index 2411bd3dab..aed28a5be2 100644 Binary files a/Resources/Textures/Structures/Machines/Medical/cryopod.rsi/pod-on.png and b/Resources/Textures/Structures/Machines/Medical/cryopod.rsi/pod-on.png differ diff --git a/Resources/Textures/Structures/Machines/Medical/cryopod.rsi/pod-open.png b/Resources/Textures/Structures/Machines/Medical/cryopod.rsi/pod-open.png index cd84d7b3d6..3f344181e3 100644 Binary files a/Resources/Textures/Structures/Machines/Medical/cryopod.rsi/pod-open.png and b/Resources/Textures/Structures/Machines/Medical/cryopod.rsi/pod-open.png differ diff --git a/Resources/Textures/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/Structures/Machines/computers.rsi/meta.json index 0502bd3661..65cba1211e 100644 --- a/Resources/Textures/Structures/Machines/computers.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/computers.rsi/meta.json @@ -1672,6 +1672,44 @@ "name": "robot", "directions": 4 }, + { + "name": "salvjob", + "directions": 4, + "delays": [ + [ + 1, + 0.1, + 1, + 0.1, + 1, + 0.1 + ], + [ + 1, + 0.1, + 1, + 0.1, + 1, + 0.1 + ], + [ + 1, + 0.1, + 1, + 0.1, + 1, + 0.1 + ], + [ + 1, + 0.1, + 1, + 0.1, + 1, + 0.1 + ] + ] + }, { "name": "security", "directions": 4, diff --git a/Resources/Textures/Structures/Machines/computers.rsi/salvjob.png b/Resources/Textures/Structures/Machines/computers.rsi/salvjob.png new file mode 100644 index 0000000000..ff8f12bb16 Binary files /dev/null and b/Resources/Textures/Structures/Machines/computers.rsi/salvjob.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/icon.png b/Resources/Textures/Structures/Machines/telecomms.rsi/icon.png deleted file mode 100644 index 0f78e94bdd..0000000000 Binary files a/Resources/Textures/Structures/Machines/telecomms.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/meta.json b/Resources/Textures/Structures/Machines/telecomms.rsi/meta.json index d26455cea6..97c4a26cf1 100644 --- a/Resources/Textures/Structures/Machines/telecomms.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/telecomms.rsi/meta.json @@ -1,34 +1,63 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/9c3494fd79e6bf8dc532300b9de4f688ff276ac9/icons/obj/machines/telecomms.dmi", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprites by Spangs04, based on servers taken from tgstation at commit https://github.com/tgstation/tgstation/blob/9c3494fd79e6bf8dc532300b9de4f688ff276ac9/icons/obj/machines/telecomms.dmi", + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon" - }, - { - "name": "panel" - } - ] -} \ No newline at end of file + "states": [ + { + "name": "telecom-on", + "delays": [ + [ + 0.35, + 0.35, + 0.35 + ] + ] + }, + { + "name": "telecom-nopower" + }, + { + "name": "telecom-stripe" + }, + { + "name": "variant-cargo" + }, + { + "name": "variant-common" + }, + { + "name": "variant-engineering" + }, + { + "name": "variant-service" + }, + { + "name": "variant-medical" + }, + { + "name": "variant-science" + }, + { + "name": "variant-sec" + }, + { + "name": "variant-command" + }, + { + "name": "variant-default" + }, + { + "name": "variant-multiple" + }, + { + "name": "variant-nokey" + }, + { + "name": "telecom-open" + } + ] +} diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/panel.png b/Resources/Textures/Structures/Machines/telecomms.rsi/panel.png deleted file mode 100644 index 1ab3cfb29c..0000000000 Binary files a/Resources/Textures/Structures/Machines/telecomms.rsi/panel.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/telecom-nopower.png b/Resources/Textures/Structures/Machines/telecomms.rsi/telecom-nopower.png new file mode 100644 index 0000000000..7a9d54293d Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/telecom-nopower.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/telecom-on.png b/Resources/Textures/Structures/Machines/telecomms.rsi/telecom-on.png new file mode 100644 index 0000000000..c5d763a4be Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/telecom-on.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/telecom-open.png b/Resources/Textures/Structures/Machines/telecomms.rsi/telecom-open.png new file mode 100644 index 0000000000..15d2ecd42f Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/telecom-open.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/telecom-stripe.png b/Resources/Textures/Structures/Machines/telecomms.rsi/telecom-stripe.png new file mode 100644 index 0000000000..bdbad39373 Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/telecom-stripe.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/unlit.png b/Resources/Textures/Structures/Machines/telecomms.rsi/unlit.png deleted file mode 100644 index b804f4c6c8..0000000000 Binary files a/Resources/Textures/Structures/Machines/telecomms.rsi/unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/variant-cargo.png b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-cargo.png new file mode 100644 index 0000000000..ff62282133 Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-cargo.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/variant-command.png b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-command.png new file mode 100644 index 0000000000..8ff59d075f Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-command.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/variant-common.png b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-common.png new file mode 100644 index 0000000000..7617fcb7fd Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-common.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/variant-default.png b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-default.png new file mode 100644 index 0000000000..282b3d97bf Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-default.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/variant-engineering.png b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-engineering.png new file mode 100644 index 0000000000..90bb1e5c19 Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-engineering.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/variant-medical.png b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-medical.png new file mode 100644 index 0000000000..127954e13c Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-medical.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/variant-multiple.png b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-multiple.png new file mode 100644 index 0000000000..282b3d97bf Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-multiple.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/variant-nokey.png b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-nokey.png new file mode 100644 index 0000000000..e608ac47ad Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-nokey.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/variant-science.png b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-science.png new file mode 100644 index 0000000000..c08a646f8f Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-science.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/variant-sec.png b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-sec.png new file mode 100644 index 0000000000..e2d304b4cd Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-sec.png differ diff --git a/Resources/Textures/Structures/Machines/telecomms.rsi/variant-service.png b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-service.png new file mode 100644 index 0000000000..517b68c91b Binary files /dev/null and b/Resources/Textures/Structures/Machines/telecomms.rsi/variant-service.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/conpipe-signaller.png b/Resources/Textures/Structures/Piping/disposal.rsi/conpipe-signaller.png new file mode 100644 index 0000000000..fe84a8977a Binary files /dev/null and b/Resources/Textures/Structures/Piping/disposal.rsi/conpipe-signaller.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/conpipe-x.png b/Resources/Textures/Structures/Piping/disposal.rsi/conpipe-x.png new file mode 100644 index 0000000000..bd67ab45e1 Binary files /dev/null and b/Resources/Textures/Structures/Piping/disposal.rsi/conpipe-x.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/meta.json b/Resources/Textures/Structures/Piping/disposal.rsi/meta.json index dfbbda1043..f66e27a443 100644 --- a/Resources/Textures/Structures/Piping/disposal.rsi/meta.json +++ b/Resources/Textures/Structures/Piping/disposal.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/blob/bbe32606902c90f5290b57d905a3f31b84dc6d7d/icons/obj/pipes/disposal.dmi and modified by DrSmugleaf and SonicHDC. Signal router sprites based on normal router modified by deltanedas (github).", + "copyright": "https://github.com/discordia-space/CEV-Eris/blob/bbe32606902c90f5290b57d905a3f31b84dc6d7d/icons/obj/pipes/disposal.dmi and modified by DrSmugleaf. Signal router sprites based on normal router modified by deltanedas (github). disposal bins by EmoGarbage404 (github). pipe-x pipe-xf, conpipe-x by K-Dynamic (github). Signaler sprites based on tagger modified by Wolfkey", "states": [ { "name": "condisposal", @@ -35,6 +35,10 @@ "name": "conpipe-j2s", "directions": 4 }, + { + "name": "conpipe-x", + "directions": 4 + }, { "name": "conpipe-s", "directions": 4 @@ -47,6 +51,10 @@ "name": "conpipe-tagger", "directions": 4 }, + { + "name": "conpipe-signaller", + "directions": 4 + }, { "name": "conpipe-y", "directions": 4 @@ -283,6 +291,14 @@ "name": "pipe-j2sf", "directions": 4 }, + { + "name": "pipe-x", + "directions": 4 + }, + { + "name": "pipe-xf", + "directions": 4 + }, { "name": "pipe-s", "directions": 4 @@ -304,11 +320,53 @@ "directions": 4 }, { - "name": "pipe-tf", - "directions": 4 + "name": "pipe-signaller", + "directions": 4, + "delays": [ + [ + 0.1, + 0.141, + 0.1, + 0.141, + 0.1, + 0.141, + 0.1, + 0.141 + ], + [ + 0.1, + 0.141, + 0.1, + 0.141, + 0.1, + 0.141, + 0.1, + 0.141 + ], + [ + 0.1, + 0.141, + 0.1, + 0.141, + 0.1, + 0.141, + 0.1, + 0.141 + ], + [ + 0.1, + 0.141, + 0.1, + 0.141, + 0.1, + 0.141, + 0.1, + 0.141 + ] + ] }, { - "name": "pipe-u", + "name": "pipe-tf", "directions": 4 }, { diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/pipe-signaller.png b/Resources/Textures/Structures/Piping/disposal.rsi/pipe-signaller.png new file mode 100644 index 0000000000..76b177234b Binary files /dev/null and b/Resources/Textures/Structures/Piping/disposal.rsi/pipe-signaller.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/pipe-u.png b/Resources/Textures/Structures/Piping/disposal.rsi/pipe-u.png deleted file mode 100644 index 021d067b7b..0000000000 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/pipe-u.png and /dev/null differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/pipe-x.png b/Resources/Textures/Structures/Piping/disposal.rsi/pipe-x.png new file mode 100644 index 0000000000..0f5085c11b Binary files /dev/null and b/Resources/Textures/Structures/Piping/disposal.rsi/pipe-x.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/pipe-xf.png b/Resources/Textures/Structures/Piping/disposal.rsi/pipe-xf.png new file mode 100644 index 0000000000..c590b89190 Binary files /dev/null and b/Resources/Textures/Structures/Piping/disposal.rsi/pipe-xf.png differ diff --git a/Resources/Textures/Structures/Storage/barrels.rsi/flamingmetalbarrel.png b/Resources/Textures/Structures/Storage/barrels.rsi/flamingmetalbarrel.png new file mode 100644 index 0000000000..12d583f44d Binary files /dev/null and b/Resources/Textures/Structures/Storage/barrels.rsi/flamingmetalbarrel.png differ diff --git a/Resources/Textures/Structures/Storage/barrels.rsi/iedweldbarrel.png b/Resources/Textures/Structures/Storage/barrels.rsi/iedweldbarrel.png new file mode 100644 index 0000000000..b1df05ade1 Binary files /dev/null and b/Resources/Textures/Structures/Storage/barrels.rsi/iedweldbarrel.png differ diff --git a/Resources/Textures/Structures/Storage/barrels.rsi/meta.json b/Resources/Textures/Structures/Storage/barrels.rsi/meta.json new file mode 100644 index 0000000000..cd8439513e --- /dev/null +++ b/Resources/Textures/Structures/Storage/barrels.rsi/meta.json @@ -0,0 +1,42 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/4d150fd98a7b067305c157ad79431fa150f2c145/icons/obj/objects.dmi, modified and adapted by EmoGarbage404 (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "waterbarrel" + }, + { + "name": "weldbarrel" + }, + { + "name": "silicatebarrel" + }, + { + "name": "woodenbarrel" + }, + { + "name": "metalbarrel" + }, + { + "name": "flamingmetalbarrel", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "iedweldbarrel" + }, + { + "name": "radbarrel" + } + ] +} diff --git a/Resources/Textures/Structures/Storage/barrels.rsi/metalbarrel.png b/Resources/Textures/Structures/Storage/barrels.rsi/metalbarrel.png new file mode 100644 index 0000000000..2955014c01 Binary files /dev/null and b/Resources/Textures/Structures/Storage/barrels.rsi/metalbarrel.png differ diff --git a/Resources/Textures/Structures/Storage/barrels.rsi/radbarrel.png b/Resources/Textures/Structures/Storage/barrels.rsi/radbarrel.png new file mode 100644 index 0000000000..02af552c7a Binary files /dev/null and b/Resources/Textures/Structures/Storage/barrels.rsi/radbarrel.png differ diff --git a/Resources/Textures/Structures/Storage/barrels.rsi/silicatebarrel.png b/Resources/Textures/Structures/Storage/barrels.rsi/silicatebarrel.png new file mode 100644 index 0000000000..9eb12b5387 Binary files /dev/null and b/Resources/Textures/Structures/Storage/barrels.rsi/silicatebarrel.png differ diff --git a/Resources/Textures/Structures/Storage/barrels.rsi/waterbarrel.png b/Resources/Textures/Structures/Storage/barrels.rsi/waterbarrel.png new file mode 100644 index 0000000000..41d81ba31a Binary files /dev/null and b/Resources/Textures/Structures/Storage/barrels.rsi/waterbarrel.png differ diff --git a/Resources/Textures/Structures/Storage/barrels.rsi/weldbarrel.png b/Resources/Textures/Structures/Storage/barrels.rsi/weldbarrel.png new file mode 100644 index 0000000000..3508523112 Binary files /dev/null and b/Resources/Textures/Structures/Storage/barrels.rsi/weldbarrel.png differ diff --git a/Resources/Textures/Structures/Storage/barrels.rsi/woodenbarrel.png b/Resources/Textures/Structures/Storage/barrels.rsi/woodenbarrel.png new file mode 100644 index 0000000000..5cb2ceefb9 Binary files /dev/null and b/Resources/Textures/Structures/Storage/barrels.rsi/woodenbarrel.png differ diff --git a/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json index e58aaad6d0..a45f465b54 100644 --- a/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from at commit https://github.com/tgstation/tgstation/commit/f01de25493e2bd2706ef9b0303cb0d7b5e3e471b. poster52_contraband, poster53_contraband and poster54_contraband taken from https://github.com/vgstation-coders/vgstation13/blob/435ed5f2a7926e91cc31abac3a0d47d7e9ad7ed4/icons/obj/posters.dmi. originmap, poster55_contraband, poster56_contraband, poster57_contraband and poster39_legit by discord brainfood#7460, poster63_contraband by discord foboscheshir_, poster4_contraband edited, poster36_contraband and poster52_legit made by SlamBamActionman, poster53_legit and the original version by @RCOI on discord, modified by Spessmann, poster54_legit by hex_reject on Discord.", + "copyright": "Taken from at commit https://github.com/tgstation/tgstation/commit/f01de25493e2bd2706ef9b0303cb0d7b5e3e471b. poster52_contraband, poster53_contraband and poster54_contraband taken from https://github.com/vgstation-coders/vgstation13/blob/435ed5f2a7926e91cc31abac3a0d47d7e9ad7ed4/icons/obj/posters.dmi. originmap, poster55_contraband, poster56_contraband, poster57_contraband and poster39_legit by discord brainfood#7460, poster63_contraband by discord foboscheshir_, poster4_contraband edited, poster36_contraband and poster52_legit made by SlamBamActionman, poster53_legit and the original version by @RCOI on discord, modified by Spessmann, poster54_legit by hex_reject on Discord, poster64_contraband, poster65_contraband, poster66_contraband by JuneSzalkowska (Discord).", "size": { "x": 32, "y": 32 @@ -228,6 +228,15 @@ { "name": "poster51_contraband" }, + { + "name": "poster64_contraband" + }, + { + "name": "poster65_contraband" + }, + { + "name": "poster66_contraband" + }, { "name": "poster1_legit" }, diff --git a/Resources/Textures/Structures/Wallmounts/posters.rsi/poster64_contraband.png b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster64_contraband.png new file mode 100644 index 0000000000..97b17e6380 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster64_contraband.png differ diff --git a/Resources/Textures/Structures/Wallmounts/posters.rsi/poster65_contraband.png b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster65_contraband.png new file mode 100644 index 0000000000..1bdad57a72 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster65_contraband.png differ diff --git a/Resources/Textures/Structures/Wallmounts/posters.rsi/poster66_contraband.png b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster66_contraband.png new file mode 100644 index 0000000000..d59cc9d781 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster66_contraband.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/detective.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/detective.png new file mode 100644 index 0000000000..d3e72c5388 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/detective.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json index 3a7caf0688..9da6753c35 100644 --- a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, Job signs by EmoGarbage404 (github) with inspiration from yogstation and tgstation, 'direction_exam' and 'direction_icu' made by rosieposieeee (github), 'direction_atmos' made by SlamBamActionman, 'vox' based on sprites taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/e7f005f8b8d3f7d89cbee3b87f76c23f9e951c27/icons/obj/decals.dmi, 'direction_pods' derived by WarPigeon from existing directional signs.", + "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, Job signs by EmoGarbage404 (github) with inspiration from yogstation and tgstation, 'direction_exam' and 'direction_icu' made by rosieposieeee (github), 'direction_atmos' made by SlamBamActionman, 'vox' based on sprites taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/e7f005f8b8d3f7d89cbee3b87f76c23f9e951c27/icons/obj/decals.dmi, 'direction_pods' derived by WarPigeon from existing directional signs., 'detective' derived by Soupkilove from existing security sign", "states": [ { "name": "ai" @@ -118,6 +118,9 @@ { "name": "deathsposal" }, + { + "name": "detective" + }, { "name": "direction_atmos", "directions": 4 diff --git a/Resources/Textures/Structures/conveyor.rsi/greenlight.png b/Resources/Textures/Structures/conveyor.rsi/greenlight.png deleted file mode 100644 index c50fb82d07..0000000000 Binary files a/Resources/Textures/Structures/conveyor.rsi/greenlight.png and /dev/null differ diff --git a/Resources/Textures/Structures/conveyor.rsi/meta.json b/Resources/Textures/Structures/conveyor.rsi/meta.json index 7dab3d111b..3bb9efe797 100644 --- a/Resources/Textures/Structures/conveyor.rsi/meta.json +++ b/Resources/Textures/Structures/conveyor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and modified by Swept", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and modified by Swept, switch-fwd and switch-rev modified by RedBookcase (Github)", "size": { "x": 32, "y": 32 @@ -234,12 +234,6 @@ "name": "conveyor_stopped_cw", "directions": 8 }, - { - "name": "greenlight" - }, - { - "name": "redlight" - }, { "name": "switch" }, diff --git a/Resources/Textures/Structures/conveyor.rsi/redlight.png b/Resources/Textures/Structures/conveyor.rsi/redlight.png deleted file mode 100644 index 812c1a6508..0000000000 Binary files a/Resources/Textures/Structures/conveyor.rsi/redlight.png and /dev/null differ diff --git a/Resources/Textures/Structures/conveyor.rsi/switch-fwd.png b/Resources/Textures/Structures/conveyor.rsi/switch-fwd.png index c13ef62ccc..5ea1aa9a16 100644 Binary files a/Resources/Textures/Structures/conveyor.rsi/switch-fwd.png and b/Resources/Textures/Structures/conveyor.rsi/switch-fwd.png differ diff --git a/Resources/Textures/Structures/conveyor.rsi/switch-rev.png b/Resources/Textures/Structures/conveyor.rsi/switch-rev.png index f753046833..15f8f0d7c3 100644 Binary files a/Resources/Textures/Structures/conveyor.rsi/switch-rev.png and b/Resources/Textures/Structures/conveyor.rsi/switch-rev.png differ diff --git a/Resources/Textures/Template/softsuits.png b/Resources/Textures/Template/softsuits.png index 66a1f7c6b9..3b11290e4d 100644 Binary files a/Resources/Textures/Template/softsuits.png and b/Resources/Textures/Template/softsuits.png differ diff --git a/Resources/Textures/Tiles/attributions.yml b/Resources/Textures/Tiles/attributions.yml index e49d658a68..8e748f8fb7 100644 --- a/Resources/Textures/Tiles/attributions.yml +++ b/Resources/Textures/Tiles/attributions.yml @@ -66,6 +66,11 @@ copyright: "Sprited by discord: odlieerr" source: "https://github.com/space-sunrise/space-station-14" +- files: [ "steel_dirty.png" ] + license: "CC-BY-SA-3.0" + copyright: "Originally created by github user @moonheart08, then modified by @Flareguy, then modified again by github user @moomoobeef." + source: "https://github.com/space-wizards/space-station-14/" + - files: ["arcadeblue.png", "arcadered.png"] license: "CLA" copyright: "Sprited by discord: odlieerr" diff --git a/Resources/keybinds.yml b/Resources/keybinds.yml index ad78cef86c..0ff7c368e5 100644 --- a/Resources/keybinds.yml +++ b/Resources/keybinds.yml @@ -163,6 +163,10 @@ binds: - function: SwapHands type: State key: X +- function: SwapHandsReverse + type: State + key: X + mod1: Shift - function: MoveStoredItem type: State key: MouseLeft diff --git a/Resources/migration.yml b/Resources/migration.yml index b5ccdc5e64..672a2adb24 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -622,6 +622,25 @@ AirlockMaintIntLocked: AirlockMaintLocked #ComputerCargoShuttle: ComputerShuttleCargo CargoShuttleComputerCircuitboard: CargoShuttleConsoleCircuitboard +# 2025-05-02 +CigPackMixedNasty: CigPackMixed +CigPackMixedMedical: CigPackMixed +CigaretteIpecac: CigaretteNutriment +CigarettePax: CigaretteSaline +CigaretteTHC: CigaretteRobustHarvest +CigaretteMuteToxin: CigaretteSodiumPolyacrylate +CigaretteSpaceDrugs: CigaretteLipolicide +CigaretteMilk: CigaretteHaloperidol +CigaretteBread: CigaretteBbqSauce + +# 2025-05-09 +ClothingOuterHardsuitBasic: ClothingOuterHardsuitEVA +ClothingHeadHelmetHardsuitBasic: null +SuitStorageBasic: SuitStorageEVA + +# 2025-05-18 +ClothingNeckCloakMiner: null + # Sunrise migrations AirlockExternalGlassShuttleArrivals: AirlockExternalGlassShuttleArrivalsLocked AirlockHatchSyndicate: AirlockHatchSyndicateLocked diff --git a/RobustToolbox b/RobustToolbox index 62b4714f1f..84dcd658aa 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 62b4714f1f260cf90db915776e6200c28e8018ff +Subproject commit 84dcd658aac847edcb45c629b20a21905fabc12f diff --git a/Tools/actions_changelogs_since_last_run.py b/Tools/actions_changelogs_since_last_run.py index f9b194e8e5..3eda72653c 100755 --- a/Tools/actions_changelogs_since_last_run.py +++ b/Tools/actions_changelogs_since_last_run.py @@ -13,6 +13,7 @@ from typing import Any, Iterable import requests import yaml +import time DEBUG = False DEBUG_CHANGELOG_FILE_OLD = Path("Resources/Changelog/Old.yml") @@ -148,9 +149,23 @@ def get_discord_body(content: str): def send_discord_webhook(lines: list[str]): content = "".join(lines) body = get_discord_body(content) + retry_attempt = 0 - response = requests.post(DISCORD_WEBHOOK_URL, json=body) - response.raise_for_status() + try: + response = requests.post(DISCORD_WEBHOOK_URL, json=body, timeout=10) + while response.status_code == 429: + retry_attempt += 1 + if retry_attempt > 20: + print("Too many retries on a single request despite following retry_after header... giving up") + exit(1) + retry_after = response.json().get("retry_after", 5) + print(f"Rate limited, retrying after {retry_after} seconds") + time.sleep(retry_after) + response = requests.post(DISCORD_WEBHOOK_URL, json=body, timeout=10) + response.raise_for_status() + except requests.exceptions.RequestException as e: + print(f"Failed to send message: {e}") + exit(1) def changelog_entries_to_message_lines(entries: Iterable[ChangelogEntry]) -> list[str]: diff --git a/runclient-Tools.bat b/runclient-Tools.bat index 1deff7a3bf..5c3da54611 100644 --- a/runclient-Tools.bat +++ b/runclient-Tools.bat @@ -1,3 +1,3 @@ @echo off dotnet run --project Content.Client --configuration Tools -pause \ No newline at end of file +pause diff --git a/runclient.bat b/runclient.bat index b961c9b3d7..2925ababb0 100644 --- a/runclient.bat +++ b/runclient.bat @@ -1,3 +1,3 @@ @echo off dotnet run --project Content.Client -pause \ No newline at end of file +pause